From 7acfabeed6788cb31a30ea41634cea292215902a Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Wed, 12 Nov 2025 17:25:00 +0100 Subject: [PATCH 01/17] [DURACOM-413] port custom url functionality --- src/app/core/data/item-data.service.ts | 56 ++++ src/app/core/router/utils/dso-route.utils.ts | 9 +- .../workspaceitem-section-custom-url.model.ts | 7 + src/app/core/submission/sections-type.ts | 1 + .../core/submission/submission-scope-type.ts | 1 + src/app/item-page/item-page.resolver.spec.ts | 68 +++++ src/app/item-page/item-page.resolver.ts | 29 +- ...bmission-section-custom-url.component.html | 38 +++ ...bmission-section-custom-url.component.scss | 22 ++ ...ssion-section-custom-url.component.spec.ts | 225 ++++++++++++++++ ...submission-section-custom-url.component.ts | 253 ++++++++++++++++++ 11 files changed, 698 insertions(+), 11 deletions(-) create mode 100644 src/app/core/submission/models/workspaceitem-section-custom-url.model.ts create mode 100644 src/app/submission/sections/custom-url/submission-section-custom-url.component.html create mode 100644 src/app/submission/sections/custom-url/submission-section-custom-url.component.scss create mode 100644 src/app/submission/sections/custom-url/submission-section-custom-url.component.spec.ts create mode 100644 src/app/submission/sections/custom-url/submission-section-custom-url.component.ts diff --git a/src/app/core/data/item-data.service.ts b/src/app/core/data/item-data.service.ts index cb7e62c8fe6..bb109ed1bc5 100644 --- a/src/app/core/data/item-data.service.ts +++ b/src/app/core/data/item-data.service.ts @@ -24,6 +24,7 @@ import { switchMap, take, } from 'rxjs/operators'; +import { validate as uuidValidate } from 'uuid'; import { BrowseService } from '../browse/browse.service'; import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service'; @@ -34,6 +35,7 @@ import { NotificationsService } from '../notification-system/notifications.servi import { Bundle } from '../shared/bundle.model'; import { Collection } from '../shared/collection.model'; import { ExternalSourceEntry } from '../shared/external-source-entry.model'; +import { FollowLinkConfig } from '../shared/follow-link-config.model'; import { GenericConstructor } from '../shared/generic-constructor'; import { HALEndpointService } from '../shared/hal-endpoint.service'; import { Item } from '../shared/item.model'; @@ -58,6 +60,7 @@ import { PatchData, PatchDataImpl, } from './base/patch-data'; +import { SearchDataImpl } from './base/search-data'; import { BundleDataService } from './bundle-data.service'; import { DSOChangeAnalyzer } from './dso-change-analyzer.service'; import { FindListOptions } from './find-list-options.model'; @@ -83,6 +86,7 @@ export abstract class BaseItemDataService extends IdentifiableDataService private createData: CreateData; private patchData: PatchData; private deleteData: DeleteData; + private searchData: SearchDataImpl; protected constructor( protected linkPath, @@ -101,6 +105,7 @@ export abstract class BaseItemDataService extends IdentifiableDataService this.createData = new CreateDataImpl(this.linkPath, requestService, rdbService, objectCache, halService, notificationsService, this.responseMsToLive); this.patchData = new PatchDataImpl(this.linkPath, requestService, rdbService, objectCache, halService, comparator, this.responseMsToLive, this.constructIdEndpoint); this.deleteData = new DeleteDataImpl(this.linkPath, requestService, rdbService, objectCache, halService, notificationsService, this.responseMsToLive, this.constructIdEndpoint); + this.searchData = new SearchDataImpl(this.linkPath, requestService, rdbService, objectCache, halService, this.responseMsToLive); } /** @@ -425,6 +430,57 @@ export abstract class BaseItemDataService extends IdentifiableDataService return this.createData.create(object, ...params); } + /** + * Returns an observable of {@link RemoteData} of an object, based on its CustomURL or ID, with a list of + * {@link FollowLinkConfig}, to automatically resolve {@link HALLink}s of the object + * @param id CustomUrl or UUID of object we want to retrieve + * @param useCachedVersionIfAvailable If this is true, the request will only be sent if there's + * no valid cached version. Defaults to true + * @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 + * @param projections List of {@link projections} used to pass as parameters + */ + private findByCustomUrl(id: string, useCachedVersionIfAvailable = true, reRequestOnStale = true, linksToFollow: FollowLinkConfig[], projections: string[] = []): Observable> { + const searchHref = 'findByCustomURL'; + + const options = Object.assign({}, { + searchParams: [ + new RequestParam('q', id), + ], + }); + + projections.forEach((projection) => { + options.searchParams.push(new RequestParam('projection', projection)); + }); + + const hrefObs = this.searchData.getSearchByHref(searchHref, options, ...linksToFollow); + + return this.findByHref(hrefObs, useCachedVersionIfAvailable, reRequestOnStale, ...linksToFollow); + } + + /** + * Returns an observable of {@link RemoteData} of an object, based on its ID, with a list of + * {@link FollowLinkConfig}, to automatically resolve {@link HALLink}s of the object + * @param id ID of object we want to retrieve + * @param useCachedVersionIfAvailable If this is true, the request will only be sent if there's + * no valid cached version. Defaults to true + * @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 + */ + findById(id: string, useCachedVersionIfAvailable = true, reRequestOnStale = true, ...linksToFollow: FollowLinkConfig[]): Observable> { + + if (uuidValidate(id)) { + const href$ = this.getIDHrefObs(encodeURIComponent(id), ...linksToFollow); + return this.findByHref(href$, useCachedVersionIfAvailable, reRequestOnStale, ...linksToFollow); + } else { + return this.findByCustomUrl(id, useCachedVersionIfAvailable, reRequestOnStale, linksToFollow); + } + } + } /** diff --git a/src/app/core/router/utils/dso-route.utils.ts b/src/app/core/router/utils/dso-route.utils.ts index d377610d08d..9833aaaaa3d 100644 --- a/src/app/core/router/utils/dso-route.utils.ts +++ b/src/app/core/router/utils/dso-route.utils.ts @@ -31,9 +31,16 @@ export function getCommunityPageRoute(communityId: string) { */ export function getItemPageRoute(item: Item) { const type = item.firstMetadataValue('dspace.entity.type'); - return getEntityPageRoute(type, item.uuid); + let url = item.uuid; + + if (isNotEmpty(item.metadata) && item.hasMetadata('cris.customurl')) { + url = item.firstMetadataValue('cris.customurl'); + } + + return getEntityPageRoute(type, url); } + export function getEntityPageRoute(entityType: string, itemId: string) { if (isNotEmpty(entityType)) { return new URLCombiner(`/${ENTITY_MODULE_PATH}`, encodeURIComponent(entityType.toLowerCase()), itemId).toString(); diff --git a/src/app/core/submission/models/workspaceitem-section-custom-url.model.ts b/src/app/core/submission/models/workspaceitem-section-custom-url.model.ts new file mode 100644 index 00000000000..81f28433711 --- /dev/null +++ b/src/app/core/submission/models/workspaceitem-section-custom-url.model.ts @@ -0,0 +1,7 @@ +/** + * An interface to represent the submission's custom url section data. + */ +export interface WorkspaceitemSectionCustomUrlObject { + 'redirected-urls': string[]; + 'url': string; +} diff --git a/src/app/core/submission/sections-type.ts b/src/app/core/submission/sections-type.ts index 60b4cedfdc9..253670c13b0 100644 --- a/src/app/core/submission/sections-type.ts +++ b/src/app/core/submission/sections-type.ts @@ -4,6 +4,7 @@ export enum SectionsType { Upload = 'upload', License = 'license', CcLicense = 'cclicense', + CustomUrl = 'custom-url', AccessesCondition = 'accessCondition', SherpaPolicies = 'sherpaPolicy', Identifiers = 'identifiers', diff --git a/src/app/core/submission/submission-scope-type.ts b/src/app/core/submission/submission-scope-type.ts index f319e5c473e..683472370d4 100644 --- a/src/app/core/submission/submission-scope-type.ts +++ b/src/app/core/submission/submission-scope-type.ts @@ -1,4 +1,5 @@ export enum SubmissionScopeType { WorkspaceItem = 'WORKSPACE', WorkflowItem = 'WORKFLOW', + EditItem = 'EDIT' } diff --git a/src/app/item-page/item-page.resolver.spec.ts b/src/app/item-page/item-page.resolver.spec.ts index e410fa271f1..68557b58ce3 100644 --- a/src/app/item-page/item-page.resolver.spec.ts +++ b/src/app/item-page/item-page.resolver.spec.ts @@ -101,4 +101,72 @@ describe('itemPageResolver', () => { }); }); + + describe('when item has cris.customurl metadata', () => { + + + const customUrl = 'my-custom-item'; + let resolver: any; + let itemService: any; + let store: any; + let router: Router; + let authService: AuthServiceStub; + + const uuid = '1234-65487-12354-1235'; + let item: DSpaceObject; + + beforeEach(() => { + router = TestBed.inject(Router); + item = Object.assign(new DSpaceObject(), { + uuid: uuid, + firstMetadataValue(_keyOrKeys: string | string[], _valueFilter?: MetadataValueFilter): string { + return _keyOrKeys === 'dspace.entity.type' ? 'person' : customUrl; + }, + hasMetadata(keyOrKeys: string | string[], valueFilter?: MetadataValueFilter): boolean { + return true; + }, + metadata: { + 'cris.customurl': customUrl, + }, + }); + itemService = { + findById: (_id: string) => createSuccessfulRemoteDataObject$(item), + }; + store = jasmine.createSpyObj('store', { + dispatch: {}, + }); + authService = new AuthServiceStub(); + resolver = itemPageResolver; + }); + + it('should navigate to the new custom URL if cris.customurl is defined and different from route param', (done) => { + spyOn(router, 'navigateByUrl').and.callThrough(); + + const route = { params: { id: uuid } } as any; + const state = { url: `/entities/person/${uuid}` } as any; + + resolver(route, state, router, itemService, store, authService) + .pipe(first()) + .subscribe((rd: any) => { + const expectedUrl = `/entities/person/${customUrl}`; + expect(router.navigateByUrl).toHaveBeenCalledWith(expectedUrl); + done(); + }); + }); + + it('should not navigate if cris.customurl matches the current route id', (done) => { + spyOn(router, 'navigateByUrl').and.callThrough(); + + const route = { params: { id: customUrl } } as any; + const state = { url: `/entities/person/${customUrl}` } as any; + + resolver(route, state, router, itemService, store, authService) + .pipe(first()) + .subscribe((rd: any) => { + expect(router.navigateByUrl).not.toHaveBeenCalled(); + done(); + }); + }); + }); + }); diff --git a/src/app/item-page/item-page.resolver.ts b/src/app/item-page/item-page.resolver.ts index 9851fc1a5a2..7131da9155a 100644 --- a/src/app/item-page/item-page.resolver.ts +++ b/src/app/item-page/item-page.resolver.ts @@ -59,18 +59,27 @@ export const itemPageResolver: ResolveFn> = ( return itemRD$.pipe( map((rd: RemoteData) => { if (rd.hasSucceeded && hasValue(rd.payload)) { - const thisRoute = state.url; + const isItemEditPage = state.url.includes('/edit'); + let itemRoute = isItemEditPage ? state.url : router.parseUrl(getItemPageRoute(rd.payload)).toString(); + if (hasValue(rd.payload.metadata) && rd.payload.hasMetadata('cris.customurl')) { + if (route.params.id !== rd.payload.firstMetadataValue('cris.customurl')) { + const newUrl = itemRoute.replace(route.params.id,rd.payload.firstMetadataValue('cris.customurl')); + router.navigateByUrl(newUrl); + } + } else { + const thisRoute = state.url; - // Angular uses a custom function for encodeURIComponent, (e.g. it doesn't encode commas - // or semicolons) and thisRoute has been encoded with that function. If we want to compare - // it with itemRoute, we have to run itemRoute through Angular's version as well to ensure - // the same characters are encoded the same way. - const itemRoute = router.parseUrl(getItemPageRoute(rd.payload)).toString(); + // Angular uses a custom function for encodeURIComponent, (e.g. it doesn't encode commas + // or semicolons) and thisRoute has been encoded with that function. If we want to compare + // it with itemRoute, we have to run itemRoute through Angular's version as well to ensure + // the same characters are encoded the same way. + itemRoute = router.parseUrl(getItemPageRoute(rd.payload)).toString(); - if (!thisRoute.startsWith(itemRoute)) { - const itemId = rd.payload.uuid; - const subRoute = thisRoute.substring(thisRoute.indexOf(itemId) + itemId.length, thisRoute.length); - void router.navigateByUrl(itemRoute + subRoute); + if (!thisRoute.startsWith(itemRoute)) { + const itemId = rd.payload.uuid; + const subRoute = thisRoute.substring(thisRoute.indexOf(itemId) + itemId.length, thisRoute.length); + void router.navigateByUrl(itemRoute + subRoute); + } } } return rd; diff --git a/src/app/submission/sections/custom-url/submission-section-custom-url.component.html b/src/app/submission/sections/custom-url/submission-section-custom-url.component.html new file mode 100644 index 00000000000..38c8fd4f6a4 --- /dev/null +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.html @@ -0,0 +1,38 @@ +
+ + + +
+ {{frontendUrl}}/ + @if (formModel) { + + } +
+ @if (isEditItemScope && !!customSectionData && !!redirectedUrls) { +
+ @if (redirectedUrls.length > 0) { +

{{'submission.sections.custom-url.label.previous-urls' | translate}}

+ } +
    + @for (redirectedUrl of redirectedUrls; let i = $index; track redirectedUrl) { +
  • +
    + {{frontendUrl+'/'+redirectedUrl}} +
    + + +
  • + } +
+
+ + } +
diff --git a/src/app/submission/sections/custom-url/submission-section-custom-url.component.scss b/src/app/submission/sections/custom-url/submission-section-custom-url.component.scss new file mode 100644 index 00000000000..0cd908e8978 --- /dev/null +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.scss @@ -0,0 +1,22 @@ +.options-select-menu { + max-height: 25vh; +} + +.frontend-url{ + margin-bottom: 1.3rem; +} + +.list-group{ + max-width: 600px; +} + +.list-group-item{ + width: 80%; + display: flex; + justify-content: space-between; +} + +.list-item{ + align-items: center; + display: flex; +} diff --git a/src/app/submission/sections/custom-url/submission-section-custom-url.component.spec.ts b/src/app/submission/sections/custom-url/submission-section-custom-url.component.spec.ts new file mode 100644 index 00000000000..1ee130e6518 --- /dev/null +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.spec.ts @@ -0,0 +1,225 @@ +import { DebugElement } from '@angular/core'; +import { + ComponentFixture, + TestBed, + waitForAsync, +} from '@angular/core/testing'; +import { + FormControl, + FormGroup, +} from '@angular/forms'; +import { By } from '@angular/platform-browser'; +import { JsonPatchOperationsBuilder } from '@dspace/core/json-patch/builder/json-patch-operations-builder'; +import { WorkspaceitemSectionCustomUrlObject } from '@dspace/core/submission/models/workspaceitem-section-custom-url.model'; +import { + DynamicFormControlEvent, + DynamicInputModel, +} from '@ng-dynamic-forms/core'; +import { TranslateModule } from '@ngx-translate/core'; +import { MockComponent } from 'ng-mocks'; +import { of } from 'rxjs'; + +import { FormBuilderService } from '../../../shared/form/builder/form-builder.service'; +import { FormService } from '../../../shared/form/form.service'; +import { SubmissionService } from '../../submission.service'; +import { SectionFormOperationsService } from '../form/section-form-operations.service'; +import { SectionDataObject } from '../models/section-data.model'; +import { SectionsService } from '../sections.service'; +import { SubmissionSectionCustomUrlComponent } from './submission-section-custom-url.component'; +import SpyObj = jasmine.SpyObj; +import { FormFieldMetadataValueObject } from '@dspace/core/shared/form/models/form-field-metadata-value.model'; +import { SectionsType } from '@dspace/core/submission/sections-type'; + +import { FormComponent } from '../../../shared/form/form.component'; +import { getMockFormBuilderService } from '../../../shared/form/testing/form-builder-service.mock'; +import { getMockFormOperationsService } from '../../../shared/form/testing/form-operations-service.mock'; +import { getMockFormService } from '../../../shared/form/testing/form-service.mock'; + +describe('SubmissionSectionCustomUrlComponent', () => { + + let component: SubmissionSectionCustomUrlComponent; + let fixture: ComponentFixture; + let de: DebugElement; + + const builderService: SpyObj = getMockFormBuilderService() as SpyObj; + const sectionFormOperationsService: SpyObj = getMockFormOperationsService() as SpyObj; + const customUrlData = { + 'url': 'test', + 'redirected-urls': [ + 'redirected1', + 'redirected2', + ], + } as WorkspaceitemSectionCustomUrlObject; + + let formService: any; + + const sectionService = jasmine.createSpyObj('sectionService', { + getSectionState: of({ data: customUrlData }), + setSectionStatus: () => undefined, + updateSectionData: (submissionId, sectionId, updatedData) => { + component.sectionData.data = updatedData; + }, + getSectionServerErrors: of([]), + checkSectionErrors: () => undefined, + }); + + const sectionObject: SectionDataObject = { + config: 'test config', + mandatory: true, + opened: true, + data: {}, + errorsToShow: [], + serverValidationErrors: [], + header: 'test header', + id: 'test section id', + sectionType: SectionsType.CustomUrl, + sectionVisibility: null, + }; + + const operationsBuilder = jasmine.createSpyObj('operationsBuilder', { + add: undefined, + remove: undefined, + replace: undefined, + }); + + const submissionService = jasmine.createSpyObj('SubmissionService', { + getSubmissionScope: jasmine.createSpy('getSubmissionScope'), + }); + + const changeEvent: DynamicFormControlEvent = { + $event: { + + type: 'change', + }, + context: null, + control: new FormControl({ + errors: null, + pristine: false, + status: 'VALID', + touched: true, + value: 'test-url', + _updateOn: 'change', + }), + group: new FormGroup({}), + model: new DynamicInputModel({ + additional: null, + asyncValidators: null, + controlTooltip: null, + errorMessages: null, + hidden: false, + hint: null, + id: 'url', + label: 'Url', + labelTooltip: null, + name: 'url', + relations: [], + required: false, + tabIndex: null, + updateOn: null, + }), + type: 'change', + }; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + imports: [ + TranslateModule.forRoot(), + SubmissionSectionCustomUrlComponent, + MockComponent(FormComponent), + ], + providers: [ + { provide: SectionsService, useValue: sectionService }, + { provide: SubmissionService, useValue: submissionService }, + { provide: JsonPatchOperationsBuilder, useValue: operationsBuilder }, + { provide: FormBuilderService, useValue: builderService }, + { provide: SectionFormOperationsService, useValue: sectionFormOperationsService }, + { provide: FormService, useValue: getMockFormService() }, + { provide: 'entityType', useValue: 'Person' }, + { provide: 'collectionIdProvider', useValue: 'test collection id' }, + { provide: 'sectionDataProvider', useValue: Object.assign({}, sectionObject) }, + { provide: 'submissionIdProvider', useValue: 'test submission id' }, + ], + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(SubmissionSectionCustomUrlComponent); + component = fixture.componentInstance; + + formService = TestBed.inject(FormService); + formService.validateAllFormFields.and.callFake(() => null); + formService.isValid.and.returnValue(of(true)); + formService.getFormData.and.returnValue(of({})); + + de = fixture.debugElement; + fixture.detectChanges(); + }); + + afterEach(() => { + sectionFormOperationsService.getFieldValueFromChangeEvent.calls.reset(); + operationsBuilder.replace.calls.reset(); + operationsBuilder.add.calls.reset(); + }); + + it('should display custom url section', () => { + expect(de.query(By.css('.custom-url'))).toBeTruthy(); + }); + + it('should have the right url formed', () => { + expect(component.frontendUrl).toContain('/entities/person'); + }); + + it('formModel should have length of 1', () => { + expect(component.formModel.length).toEqual(1); + }); + + it('formModel should have 1 DynamicInputModel', () => { + expect(component.formModel[0] instanceof DynamicInputModel).toBeTrue(); + }); + + it('if edit item true should show redirected urls managment', () => { + expect(de.query(By.css('.previous-urls'))).toBeFalsy(); + }); + + it('if edit item true should show redirected urls managment', () => { + component.isEditItemScope = true; + fixture.detectChanges(); + expect(de.query(By.css('.previous-urls'))).toBeTruthy(); + }); + + it('when input changed it should call operationsBuilder replace', () => { + component.onChange(changeEvent); + fixture.detectChanges(); + + expect(operationsBuilder.replace).toHaveBeenCalled(); + }); + + it('when input changed and is not empty it should call operationsBuilder add function for redirected urls', () => { + component.isEditItemScope = true; + component.customSectionData.url = 'url'; + sectionFormOperationsService.getFieldValueFromChangeEvent.and.returnValue(new FormFieldMetadataValueObject('testurl')); + component.onChange(changeEvent); + fixture.detectChanges(); + + expect(operationsBuilder.add).toHaveBeenCalled(); + }); + + it('when input changed and is empty it should not call operationsBuilder add function for redirected urls', () => { + component.isEditItemScope = true; + component.customSectionData.url = 'url'; + sectionFormOperationsService.getFieldValueFromChangeEvent.and.returnValue(new FormFieldMetadataValueObject('')); + component.onChange(changeEvent); + fixture.detectChanges(); + + expect(operationsBuilder.add).not.toHaveBeenCalled(); + }); + + + it('when remove button clicked it should call operationsBuilder remove function for redirected urls', () => { + component.remove(1); + fixture.detectChanges(); + expect(operationsBuilder.remove).toHaveBeenCalled(); + }); + +}); diff --git a/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts b/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts new file mode 100644 index 00000000000..281c7226dee --- /dev/null +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts @@ -0,0 +1,253 @@ +import { + Component, + Inject, +} from '@angular/core'; +import { JsonPatchOperationPathCombiner } from '@dspace/core/json-patch/builder/json-patch-operation-path-combiner'; +import { JsonPatchOperationsBuilder } from '@dspace/core/json-patch/builder/json-patch-operations-builder'; +import { SubmissionSectionError } from '@dspace/core/submission/models/submission-section-error.model'; +import { SubmissionSectionObject } from '@dspace/core/submission/models/submission-section-object.model'; +import { WorkspaceitemSectionCustomUrlObject } from '@dspace/core/submission/models/workspaceitem-section-custom-url.model'; +import { SectionsType } from '@dspace/core/submission/sections-type'; +import { SubmissionScopeType } from '@dspace/core/submission/submission-scope-type'; +import { URLCombiner } from '@dspace/core/url-combiner/url-combiner'; +import { + hasValue, + isEmpty, + isNotEmpty, +} from '@dspace/shared/utils/empty.util'; +import { + DynamicFormControlEvent, + DynamicFormControlModel, + DynamicInputModel, +} from '@ng-dynamic-forms/core'; +import { TranslateModule } from '@ngx-translate/core'; +import { + combineLatest as observableCombineLatest, + Observable, + Subscription, +} from 'rxjs'; +import { + distinctUntilChanged, + filter, + map, + take, +} from 'rxjs/operators'; + +import { FormComponent } from '../../../shared/form/form.component'; +import { FormService } from '../../../shared/form/form.service'; +import { SubmissionService } from '../../submission.service'; +import { SectionFormOperationsService } from '../form/section-form-operations.service'; +import { SectionModelComponent } from '../models/section.model'; +import { SectionDataObject } from '../models/section-data.model'; +import { SectionsService } from '../sections.service'; + +/** + * This component represents the submission section to select the Creative Commons license. + */ +@Component({ + selector: 'ds-submission-section-custom-url', + templateUrl: './submission-section-custom-url.component.html', + styleUrls: ['./submission-section-custom-url.component.scss'], + imports: [ + FormComponent, + TranslateModule, + ], + standalone: true, +}) +export class SubmissionSectionCustomUrlComponent extends SectionModelComponent { + + /** + * The form id + * @type {string} + */ + public formId: string; + + /** + * A boolean representing if this section is loading + * @type {boolean} + */ + public isLoading = true; + + /** + * The [JsonPatchOperationPathCombiner] object + * @type {JsonPatchOperationPathCombiner} + */ + protected pathCombiner: JsonPatchOperationPathCombiner; + + /** + * The list of Subscriptions this component subscribes to. + */ + private subs: Subscription[] = []; + + /** + * The current custom section data + */ + customSectionData: WorkspaceitemSectionCustomUrlObject; + + /** + * A list of all dynamic input models + */ + formModel: DynamicFormControlModel[]; + + /** + * Full path of the item page + */ + frontendUrl: string; + + /** + * Represents if the section is used in the editItem Scope of submission + */ + isEditItemScope = false; + + /** + * Represents the list of redirected urls to be managed + */ + redirectedUrls: string[] = []; + + constructor( + protected sectionService: SectionsService, + protected operationsBuilder: JsonPatchOperationsBuilder, + protected formOperationsService: SectionFormOperationsService, + protected formService: FormService, + protected submissionService: SubmissionService, + @Inject('entityType') public entityType: string, + @Inject('collectionIdProvider') public injectedCollectionId: string, + @Inject('sectionDataProvider') public injectedSectionData: SectionDataObject, + @Inject('submissionIdProvider') public injectedSubmissionId: string, + ) { + super( + injectedCollectionId, + injectedSectionData, + injectedSubmissionId, + ); + } + + /** + * Unsubscribe from all subscriptions + */ + onSectionDestroy(): void { + this.subs.forEach((subscription) => subscription.unsubscribe()); + } + + /** + * Initialize the section. + * Define if submission is in EditItem scope to allow user to manage redirect urls + * Setup the full path of the url that will be seen by the users + * Get current information and build the form + */ + onSectionInit(): void { + this.formId = this.formService.getUniqueId(this.sectionData.id); + this.setSubmissionScope(); + + this.frontendUrl = new URLCombiner(window.location.origin, '/entities', encodeURIComponent(this.entityType.toLowerCase())).toString(); + this.pathCombiner = new JsonPatchOperationPathCombiner('sections', this.sectionData.id); + + this.sectionService.getSectionState(this.submissionId, this.sectionData.id, SectionsType.CustomUrl).pipe( + take(1), + ).subscribe((state: SubmissionSectionObject) => { + this.initForm(state.data as WorkspaceitemSectionCustomUrlObject); + this.subscriptionOnSectionChange(); + }); + } + + setSubmissionScope() { + if (this.submissionService.getSubmissionScope() === SubmissionScopeType.EditItem) { + this.isEditItemScope = true; + } + } + + + /** + * Get section status + * + * @return Observable + * the section status + */ + protected getSectionStatus(): Observable { + const formStatus$ = this.formService.isValid(this.formId); + const serverValidationStatus$ = this.sectionService.getSectionServerErrors(this.submissionId, this.sectionData.id).pipe( + map((validationErrors) => isEmpty(validationErrors)), + ); + + return observableCombineLatest([formStatus$, serverValidationStatus$]).pipe( + map(([formValidation, serverSideValidation]: [boolean, boolean]) => { + return isEmpty(this.customSectionData.url) || formValidation && serverSideValidation; + }), + ); + } + + /** + * Initialize form model + * + * @param sectionData + * the section data retrieved from the server + */ + initForm(sectionData: WorkspaceitemSectionCustomUrlObject): void { + this.formModel = [ + new DynamicInputModel({ + id: 'url', + name: 'url', + value: sectionData.url, + placeholder: 'submission.sections.custom-url.url.placeholder', + }), + ]; + this.updateSectionData(sectionData); + } + + /** + * When an information is changed build the formOperations + * If the submission scope is in EditItem also manage redirected-urls formOperations + */ + onChange(event: DynamicFormControlEvent): void { + const path = this.formOperationsService.getFieldPathSegmentedFromChangeEvent(event); + const metadataValue = this.formOperationsService.getFieldValueFromChangeEvent(event); + this.operationsBuilder.replace(this.pathCombiner.getPath(path), metadataValue.value, true); + + if (isNotEmpty(metadataValue.value) && this.isEditItemScope && hasValue(this.customSectionData.url)) { + // Utilizing submissionCustomUrl.url as the last value saved we can add to the redirected-urls + this.operationsBuilder.add(this.pathCombiner.getPath(['redirected-urls']), this.customSectionData.url, false, true); + } + } + + /** + * When removing a redirected url build the formOperations + */ + remove(index: number): void { + this.operationsBuilder.remove(this.pathCombiner.getPath(['redirected-urls', index.toString()])); + this.redirectedUrls.splice(index, 1); + } + + /** + * Update section data + * + * @param sectionData + */ + private updateSectionData(sectionData: WorkspaceitemSectionCustomUrlObject): void { + this.customSectionData = sectionData; + // Remove sealed object so we can remove urls from array + if (hasValue(sectionData['redirected-urls']) && isNotEmpty(sectionData['redirected-urls'])) { + this.redirectedUrls = [...sectionData['redirected-urls']]; + } else { + this.redirectedUrls = []; + } + } + + private subscriptionOnSectionChange(): void { + this.subs.push( + this.sectionService.getSectionState(this.submissionId, this.sectionData.id, SectionsType.CustomUrl).pipe( + filter((sectionState) => { + return isNotEmpty(sectionState) && (isNotEmpty(sectionState.data) || isNotEmpty(sectionState.errorsToShow)); + }), + distinctUntilChanged(), + ).subscribe((state: SubmissionSectionObject) => { + this.updateSectionData(state.data as WorkspaceitemSectionCustomUrlObject); + const errors: SubmissionSectionError[] = state.errorsToShow; + + if (isNotEmpty(errors) || isNotEmpty(this.sectionData.errorsToShow)) { + this.sectionService.checkSectionErrors(this.submissionId, this.sectionData.id, this.formId, errors, this.sectionData.errorsToShow); + this.sectionData.errorsToShow = errors; + } + }), + ); + } +} From 7f9b625bea08becf36919f6c7c54be423e54b10e Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Thu, 13 Nov 2025 11:57:58 +0100 Subject: [PATCH 02/17] [DURACOM-413] additional tests --- src/app/core/data/item-data.service.spec.ts | 91 +++++++++++++++++++++ src/app/core/data/item-data.service.ts | 4 +- 2 files changed, 93 insertions(+), 2 deletions(-) diff --git a/src/app/core/data/item-data.service.spec.ts b/src/app/core/data/item-data.service.spec.ts index 0488a9631b9..a970a928566 100644 --- a/src/app/core/data/item-data.service.spec.ts +++ b/src/app/core/data/item-data.service.spec.ts @@ -1,4 +1,5 @@ import { HttpClient } from '@angular/common/http'; +import { createSuccessfulRemoteDataObject$ } from '@dspace/core/utilities/remote-data.utils'; import { Store } from '@ngrx/store'; import { cold, @@ -13,6 +14,7 @@ import { RestResponse } from '../cache/response.models'; import { CoreState } from '../core-state.model'; import { NotificationsService } from '../notification-system/notifications.service'; import { ExternalSourceEntry } from '../shared/external-source-entry.model'; +import { Item } from '../shared/item.model'; import { HALEndpointServiceStub } from '../testing/hal-endpoint-service.stub'; import { getMockRemoteDataBuildService } from '../testing/remote-data-build.service.mock'; import { getMockRequestService } from '../testing/request.service.mock'; @@ -209,4 +211,93 @@ describe('ItemDataService', () => { }); }); + describe('findByCustomUrl', () => { + let itemDataService: ItemDataService; + let searchData: any; + let findByHrefSpy: jasmine.Spy; + let getSearchByHrefSpy: jasmine.Spy; + const id = 'custom-id'; + const fakeHrefObs = of('https://rest.api/core/items/search/findByCustomURL?q=custom-id'); + const linksToFollow = []; + const projections = ['full', 'detailed']; + + beforeEach(() => { + searchData = jasmine.createSpyObj('searchData', ['getSearchByHref']); + getSearchByHrefSpy = searchData.getSearchByHref.and.returnValue(fakeHrefObs); + itemDataService = new ItemDataService( + requestService, + rdbService, + objectCache, + halEndpointService, + notificationsService, + comparator, + browseService, + bundleService, + ); + + (itemDataService as any).searchData = searchData; + findByHrefSpy = spyOn(itemDataService, 'findByHref').and.returnValue(createSuccessfulRemoteDataObject$(new Item())); + }); + + it('should call searchData.getSearchByHref with correct parameters', () => { + itemDataService.findByCustomUrl(id, true, true, linksToFollow, projections).subscribe(); + + expect(getSearchByHrefSpy).toHaveBeenCalledWith( + 'findByCustomURL', + jasmine.objectContaining({ + searchParams: jasmine.arrayContaining([ + jasmine.objectContaining({ fieldName: 'q', fieldValue: id }), + jasmine.objectContaining({ fieldName: 'projection', fieldValue: 'full' }), + jasmine.objectContaining({ fieldName: 'projection', fieldValue: 'detailed' }), + ]), + }), + ...linksToFollow, + ); + }); + + it('should call findByHref with the href observable returned from getSearchByHref', () => { + itemDataService.findByCustomUrl(id, true, false, linksToFollow, projections).subscribe(); + + expect(findByHrefSpy).toHaveBeenCalledWith(fakeHrefObs, true, false, ...linksToFollow); + }); + }); + + describe('findById', () => { + let itemDataService: ItemDataService; + + beforeEach(() => { + itemDataService = new ItemDataService( + requestService, + rdbService, + objectCache, + halEndpointService, + notificationsService, + comparator, + browseService, + bundleService, + ); + spyOn(itemDataService, 'findByCustomUrl').and.returnValue(createSuccessfulRemoteDataObject$(new Item())); + spyOn(itemDataService, 'findByHref').and.returnValue(createSuccessfulRemoteDataObject$(new Item())); + spyOn(itemDataService as any, 'getIDHrefObs').and.returnValue(of('uuid-href')); + }); + + it('should call findByHref when given a valid UUID', () => { + const validUuid = '4af28e99-6a9c-4036-a199-e1b587046d39'; + itemDataService.findById(validUuid).subscribe(); + + expect((itemDataService as any).getIDHrefObs).toHaveBeenCalledWith(encodeURIComponent(validUuid)); + expect(itemDataService.findByHref).toHaveBeenCalled(); + expect(itemDataService.findByCustomUrl).not.toHaveBeenCalled(); + }); + + it('should call findByCustomUrl when given a non-UUID id', () => { + const nonUuid = 'custom-url'; + itemDataService.findById(nonUuid).subscribe(); + + expect(itemDataService.findByCustomUrl).toHaveBeenCalledWith(nonUuid, true, true, []); + expect(itemDataService.findByHref).not.toHaveBeenCalled(); + }); + }); + + }); diff --git a/src/app/core/data/item-data.service.ts b/src/app/core/data/item-data.service.ts index bb109ed1bc5..c20dc0a1834 100644 --- a/src/app/core/data/item-data.service.ts +++ b/src/app/core/data/item-data.service.ts @@ -442,7 +442,7 @@ export abstract class BaseItemDataService extends IdentifiableDataService * {@link HALLink}s should be automatically resolved * @param projections List of {@link projections} used to pass as parameters */ - private findByCustomUrl(id: string, useCachedVersionIfAvailable = true, reRequestOnStale = true, linksToFollow: FollowLinkConfig[], projections: string[] = []): Observable> { + public findByCustomUrl(id: string, useCachedVersionIfAvailable = true, reRequestOnStale = true, linksToFollow: FollowLinkConfig[], projections: string[] = []): Observable> { const searchHref = 'findByCustomURL'; const options = Object.assign({}, { @@ -471,7 +471,7 @@ export abstract class BaseItemDataService extends IdentifiableDataService * @param linksToFollow List of {@link FollowLinkConfig} that indicate which * {@link HALLink}s should be automatically resolved */ - findById(id: string, useCachedVersionIfAvailable = true, reRequestOnStale = true, ...linksToFollow: FollowLinkConfig[]): Observable> { + public findById(id: string, useCachedVersionIfAvailable = true, reRequestOnStale = true, ...linksToFollow: FollowLinkConfig[]): Observable> { if (uuidValidate(id)) { const href$ = this.getIDHrefObs(encodeURIComponent(id), ...linksToFollow); From 88d13c7e933551962809e7c04e8eadca7b89c4b7 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Tue, 18 Nov 2025 17:59:48 +0100 Subject: [PATCH 03/17] [DURACOM-413] update labels, fix sync script, adapt section handling --- src/app/core/provide-core.ts | 2 + src/app/core/router/utils/dso-route.utils.ts | 4 +- .../models/submission-custom-url.model.ts | 27 + .../submission-custom-url.resource-type.ts | 9 + src/app/item-page/item-page.resolver.spec.ts | 8 +- src/app/item-page/item-page.resolver.ts | 6 +- .../edit/submission-edit.component.html | 3 +- .../edit/submission-edit.component.ts | 10 + .../form/submission-form.component.html | 1 + .../form/submission-form.component.ts | 6 + .../form/themed-submission-form.component.ts | 4 +- .../container/section-container.component.ts | 8 + .../themed-section-container.component.ts | 3 +- ...bmission-section-custom-url.component.html | 4 +- ...bmission-section-custom-url.component.scss | 4 - ...submission-section-custom-url.component.ts | 8 +- .../submission/sections/sections-decorator.ts | 2 + .../submission/sections/sections.service.ts | 1 - src/assets/i18n/ar.json5 | 53 +- src/assets/i18n/ca.json5 | 45 +- src/assets/i18n/cs.json5 | 47 +- src/assets/i18n/de.json5 | 47 +- src/assets/i18n/el.json5 | 45 +- src/assets/i18n/en.json5 | 16 +- src/assets/i18n/es.json5 | 49 +- src/assets/i18n/fi.json5 | 47 +- src/assets/i18n/fr.json5 | 57 +- src/assets/i18n/gd.json5 | 47 +- src/assets/i18n/gu.json5 | 5664 +++++++++++++---- src/assets/i18n/hi.json5 | 45 +- src/assets/i18n/it.json5 | 45 +- src/assets/i18n/ja.json5 | 44 +- src/assets/i18n/kk.json5 | 47 +- src/assets/i18n/lv.json5 | 45 +- src/assets/i18n/mr.json5 | 4636 ++++++++++++-- src/assets/i18n/nl.json5 | 45 +- src/assets/i18n/pl.json5 | 45 +- src/assets/i18n/pt-BR.json5 | 40 +- src/assets/i18n/pt-PT.json5 | 47 +- src/assets/i18n/ru.json5 | 1172 +++- src/assets/i18n/sr-cyr.json5 | 45 +- src/assets/i18n/sr-lat.json5 | 45 +- src/assets/i18n/sv.json5 | 47 +- src/assets/i18n/sw.json5 | 44 +- src/assets/i18n/tr.json5 | 47 +- src/assets/i18n/uk.json5 | 47 +- src/assets/i18n/vi.json5 | 45 +- src/config/default-app-config.ts | 3 + 48 files changed, 10836 insertions(+), 1925 deletions(-) create mode 100644 src/app/core/submission/models/submission-custom-url.model.ts create mode 100644 src/app/core/submission/models/submission-custom-url.resource-type.ts diff --git a/src/app/core/provide-core.ts b/src/app/core/provide-core.ts index 29181e4a0e8..2b83615c0c1 100644 --- a/src/app/core/provide-core.ts +++ b/src/app/core/provide-core.ts @@ -4,6 +4,7 @@ import { makeEnvironmentProviders, } from '@angular/core'; import { APP_CONFIG } from '@dspace/config/app-config.interface'; +import { SubmissionCustomUrl } from '@dspace/core/submission/models/submission-custom-url.model'; import { Audit } from './audit/model/audit.model'; import { AuthStatus } from './auth/models/auth-status.model'; @@ -230,4 +231,5 @@ export const models = StatisticsEndpoint, CorrectionType, SupervisionOrder, + SubmissionCustomUrl, ]; diff --git a/src/app/core/router/utils/dso-route.utils.ts b/src/app/core/router/utils/dso-route.utils.ts index 9833aaaaa3d..fc0f8b4ffda 100644 --- a/src/app/core/router/utils/dso-route.utils.ts +++ b/src/app/core/router/utils/dso-route.utils.ts @@ -33,8 +33,8 @@ export function getItemPageRoute(item: Item) { const type = item.firstMetadataValue('dspace.entity.type'); let url = item.uuid; - if (isNotEmpty(item.metadata) && item.hasMetadata('cris.customurl')) { - url = item.firstMetadataValue('cris.customurl'); + if (isNotEmpty(item.metadata) && item.hasMetadata('dspace.customurl')) { + url = item.firstMetadataValue('dspace.customurl'); } return getEntityPageRoute(type, url); diff --git a/src/app/core/submission/models/submission-custom-url.model.ts b/src/app/core/submission/models/submission-custom-url.model.ts new file mode 100644 index 00000000000..828080bac3f --- /dev/null +++ b/src/app/core/submission/models/submission-custom-url.model.ts @@ -0,0 +1,27 @@ +import { + autoserialize, + inheritSerialization, +} from 'cerialize'; + +import { typedObject } from '../../cache/builders/build-decorators'; +import { HALResource } from '../../shared/hal-resource.model'; +import { ResourceType } from '../../shared/resource-type'; +import { excludeFromEquals } from '../../utilities/equals.decorators'; +import { SUBMISSION_CUSTOM_URL } from './submission-custom-url.resource-type'; + +@typedObject +@inheritSerialization(HALResource) +export class SubmissionCustomUrl extends HALResource { + + static type = SUBMISSION_CUSTOM_URL; + + /** + * The object type + */ + @excludeFromEquals + @autoserialize + type: ResourceType; + + @autoserialize + url: string; +} diff --git a/src/app/core/submission/models/submission-custom-url.resource-type.ts b/src/app/core/submission/models/submission-custom-url.resource-type.ts new file mode 100644 index 00000000000..a3eae70f522 --- /dev/null +++ b/src/app/core/submission/models/submission-custom-url.resource-type.ts @@ -0,0 +1,9 @@ +import { ResourceType } from '../../shared/resource-type'; + +/** + * The resource type for License + * + * Needs to be in a separate file to prevent circular + * dependencies in webpack. + */ +export const SUBMISSION_CUSTOM_URL = new ResourceType('submissioncustomcurl'); diff --git a/src/app/item-page/item-page.resolver.spec.ts b/src/app/item-page/item-page.resolver.spec.ts index 68557b58ce3..7da5b8ff8bb 100644 --- a/src/app/item-page/item-page.resolver.spec.ts +++ b/src/app/item-page/item-page.resolver.spec.ts @@ -102,7 +102,7 @@ describe('itemPageResolver', () => { }); - describe('when item has cris.customurl metadata', () => { + describe('when item has dspace.customurl metadata', () => { const customUrl = 'my-custom-item'; @@ -126,7 +126,7 @@ describe('itemPageResolver', () => { return true; }, metadata: { - 'cris.customurl': customUrl, + 'dspace.customurl': customUrl, }, }); itemService = { @@ -139,7 +139,7 @@ describe('itemPageResolver', () => { resolver = itemPageResolver; }); - it('should navigate to the new custom URL if cris.customurl is defined and different from route param', (done) => { + it('should navigate to the new custom URL if dspace.customurl is defined and different from route param', (done) => { spyOn(router, 'navigateByUrl').and.callThrough(); const route = { params: { id: uuid } } as any; @@ -154,7 +154,7 @@ describe('itemPageResolver', () => { }); }); - it('should not navigate if cris.customurl matches the current route id', (done) => { + it('should not navigate if dspace.customurl matches the current route id', (done) => { spyOn(router, 'navigateByUrl').and.callThrough(); const route = { params: { id: customUrl } } as any; diff --git a/src/app/item-page/item-page.resolver.ts b/src/app/item-page/item-page.resolver.ts index 7131da9155a..d2c59f6e1b3 100644 --- a/src/app/item-page/item-page.resolver.ts +++ b/src/app/item-page/item-page.resolver.ts @@ -61,9 +61,9 @@ export const itemPageResolver: ResolveFn> = ( if (rd.hasSucceeded && hasValue(rd.payload)) { const isItemEditPage = state.url.includes('/edit'); let itemRoute = isItemEditPage ? state.url : router.parseUrl(getItemPageRoute(rd.payload)).toString(); - if (hasValue(rd.payload.metadata) && rd.payload.hasMetadata('cris.customurl')) { - if (route.params.id !== rd.payload.firstMetadataValue('cris.customurl')) { - const newUrl = itemRoute.replace(route.params.id,rd.payload.firstMetadataValue('cris.customurl')); + if (hasValue(rd.payload.metadata) && rd.payload.hasMetadata('dspace.customurl')) { + if (route.params.id !== rd.payload.firstMetadataValue('dspace.customurl')) { + const newUrl = itemRoute.replace(route.params.id,rd.payload.firstMetadataValue('dspace.customurl')); router.navigateByUrl(newUrl); } } else { diff --git a/src/app/submission/edit/submission-edit.component.html b/src/app/submission/edit/submission-edit.component.html index 9c0e9eae723..40b569c2020 100644 --- a/src/app/submission/edit/submission-edit.component.html +++ b/src/app/submission/edit/submission-edit.component.html @@ -6,5 +6,6 @@ [submissionErrors]="submissionErrors" [item]="item" [collectionModifiable]="collectionModifiable" - [submissionId]="submissionId"> + [submissionId]="submissionId" + [entityType]="entityType"> diff --git a/src/app/submission/edit/submission-edit.component.ts b/src/app/submission/edit/submission-edit.component.ts index 9eeb6aecd5e..3ac4638eeb6 100644 --- a/src/app/submission/edit/submission-edit.component.ts +++ b/src/app/submission/edit/submission-edit.component.ts @@ -66,6 +66,11 @@ export class SubmissionEditComponent implements OnDestroy, OnInit { */ public collectionModifiable: boolean | null = null; + /** + * The entity type of the submission + * @type {string} + */ + public entityType: string; /** * The list of submission's sections @@ -154,6 +159,11 @@ export class SubmissionEditComponent implements OnDestroy, OnInit { this.notificationsService.info(null, this.translate.get('submission.general.cannot_submit')); this.router.navigate(['/mydspace']); } else { + const collection = submissionObjectRD.payload.collection as Collection; + const entityType = collection.hasMetadata('dspace.entity.type') ? collection.firstMetadataValue('dspace.entity.type') : null; + if (hasValue(entityType)) { + this.entityType = entityType; + } const { errors } = submissionObjectRD.payload; this.submissionErrors = parseSectionErrors(errors); this.submissionId = submissionObjectRD.payload.id.toString(); diff --git a/src/app/submission/form/submission-form.component.html b/src/app/submission/form/submission-form.component.html index b193e551fc9..a8b3b5a5afe 100644 --- a/src/app/submission/form/submission-form.component.html +++ b/src/app/submission/form/submission-form.component.html @@ -36,6 +36,7 @@ @for (object of $any(submissionSections | async); track object) { } diff --git a/src/app/submission/form/submission-form.component.ts b/src/app/submission/form/submission-form.component.ts index 7097d63867e..89ca7286df0 100644 --- a/src/app/submission/form/submission-form.component.ts +++ b/src/app/submission/form/submission-form.component.ts @@ -115,6 +115,12 @@ export class SubmissionFormComponent implements OnChanges, OnDestroy { */ @Input() submissionId: string; + /** + * The entity type input used to create a new submission + * @type {string} + */ + @Input() entityType: string; + /** * The configuration id that define this submission * @type {string} diff --git a/src/app/submission/form/themed-submission-form.component.ts b/src/app/submission/form/themed-submission-form.component.ts index af3fe244c8c..20c4d375276 100644 --- a/src/app/submission/form/themed-submission-form.component.ts +++ b/src/app/submission/form/themed-submission-form.component.ts @@ -31,7 +31,9 @@ export class ThemedSubmissionFormComponent extends ThemedComponent (this.collectionId), deps: [] }, { provide: 'sectionDataProvider', useFactory: () => (this.sectionData), deps: [] }, { provide: 'submissionIdProvider', useFactory: () => (this.submissionId), deps: [] }, + { provide: 'entityType', useFactory: () => (this.entityType), deps: [] }, ], parent: this.injector, }); diff --git a/src/app/submission/sections/container/themed-section-container.component.ts b/src/app/submission/sections/container/themed-section-container.component.ts index f8bab3b932c..b904095c064 100644 --- a/src/app/submission/sections/container/themed-section-container.component.ts +++ b/src/app/submission/sections/container/themed-section-container.component.ts @@ -15,8 +15,9 @@ export class ThemedSubmissionSectionContainerComponent extends ThemedComponent -
+
{{frontendUrl}}/ @if (formModel) { - }
diff --git a/src/app/submission/sections/custom-url/submission-section-custom-url.component.scss b/src/app/submission/sections/custom-url/submission-section-custom-url.component.scss index 0cd908e8978..3bd4d0f522e 100644 --- a/src/app/submission/sections/custom-url/submission-section-custom-url.component.scss +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.scss @@ -2,10 +2,6 @@ max-height: 25vh; } -.frontend-url{ - margin-bottom: 1.3rem; -} - .list-group{ max-width: 600px; } diff --git a/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts b/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts index 281c7226dee..d1860bd1ad4 100644 --- a/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts @@ -40,7 +40,6 @@ import { SectionFormOperationsService } from '../form/section-form-operations.se import { SectionModelComponent } from '../models/section.model'; import { SectionDataObject } from '../models/section-data.model'; import { SectionsService } from '../sections.service'; - /** * This component represents the submission section to select the Creative Commons license. */ @@ -138,7 +137,6 @@ export class SubmissionSectionCustomUrlComponent extends SectionModelComponent { onSectionInit(): void { this.formId = this.formService.getUniqueId(this.sectionData.id); this.setSubmissionScope(); - this.frontendUrl = new URLCombiner(window.location.origin, '/entities', encodeURIComponent(this.entityType.toLowerCase())).toString(); this.pathCombiner = new JsonPatchOperationPathCombiner('sections', this.sectionData.id); @@ -183,12 +181,18 @@ export class SubmissionSectionCustomUrlComponent extends SectionModelComponent { * the section data retrieved from the server */ initForm(sectionData: WorkspaceitemSectionCustomUrlObject): void { + const model = this.formModel = [ new DynamicInputModel({ id: 'url', name: 'url', value: sectionData.url, placeholder: 'submission.sections.custom-url.url.placeholder', + errorMessages: { + 'conflict': 'error.validation.custom-url.conflict', + 'empty': 'error.validation.custom-url.empty', + 'invalid-characters': 'error.validation.custom-url.invalid-characters', + }, }), ]; this.updateSectionData(sectionData); diff --git a/src/app/submission/sections/sections-decorator.ts b/src/app/submission/sections/sections-decorator.ts index 5f584196cd6..471889d3b42 100644 --- a/src/app/submission/sections/sections-decorator.ts +++ b/src/app/submission/sections/sections-decorator.ts @@ -2,6 +2,7 @@ import { SectionsType } from '@dspace/core/submission/sections-type'; import { SubmissionSectionAccessesComponent } from './accesses/section-accesses.component'; import { SubmissionSectionCcLicensesComponent } from './cc-license/submission-section-cc-licenses.component'; +import { SubmissionSectionCustomUrlComponent } from './custom-url/submission-section-custom-url.component'; import { SubmissionSectionDuplicatesComponent } from './duplicates/section-duplicates.component'; import { SubmissionSectionFormComponent } from './form/section-form.component'; import { SubmissionSectionIdentifiersComponent } from './identifiers/section-identifiers.component'; @@ -21,6 +22,7 @@ submissionSectionsMap.set(SectionsType.SubmissionForm, SubmissionSectionFormComp submissionSectionsMap.set(SectionsType.Identifiers, SubmissionSectionIdentifiersComponent); submissionSectionsMap.set(SectionsType.CoarNotify, SubmissionSectionCoarNotifyComponent); submissionSectionsMap.set(SectionsType.Duplicates, SubmissionSectionDuplicatesComponent); +submissionSectionsMap.set(SectionsType.CustomUrl, SubmissionSectionCustomUrlComponent); /** * @deprecated diff --git a/src/app/submission/sections/sections.service.ts b/src/app/submission/sections/sections.service.ts index 3774f7e89ea..09e9d5d9cc0 100644 --- a/src/app/submission/sections/sections.service.ts +++ b/src/app/submission/sections/sections.service.ts @@ -128,7 +128,6 @@ export class SectionsService { // Iterate over the previous error list prevErrors.forEach((error: SubmissionSectionError) => { const errorPaths: SectionErrorPath[] = parseSectionErrorPaths(error.path); - errorPaths.forEach((path: SectionErrorPath) => { if (path.fieldId) { if (!dispatchedErrors.includes(path.fieldId)) { diff --git a/src/assets/i18n/ar.json5 b/src/assets/i18n/ar.json5 index 4a4f7589d4c..3390e4efbe4 100644 --- a/src/assets/i18n/ar.json5 +++ b/src/assets/i18n/ar.json5 @@ -2885,12 +2885,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "حدث خطأ أثناء جلب مجتمعات المستوى الأعلى", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "يجب عليك منح هذا الترخيص لإكمال عملية التقديم الخاصة بك. إذا لم تتمكن من منح هذا الترخيص في هذا الوقت، يمكنك حفظ عملك والعودة لاحقاً أو إزالة التقديم.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "يجب عليك منح رخصة المشاع الإبداعي هذه لإكمال تقديمك. إذا لم تتمكن من منح الرخصة في هذا الوقت، يمكنك حفظ عملك والعودة لاحقًا أو إزالة التقديم.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "هذا الإدخال مقيد بالنمط الحالي: {{ pattern }}.", @@ -4518,7 +4531,8 @@ "item.preview.dc.rights": "الحقوق", // "item.preview.dc.identifier.other": "Other Identifier", - "item.preview.dc.identifier.other": "معرف آخر", + // TODO Source message changed - Revise the translation + "item.preview.dc.identifier.other": "معرف آخر:", // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4608,7 +4622,8 @@ "item.preview.dc.identifier.openalex": "معرّف OpenAlex", // "item.preview.dc.description": "Description", - "item.preview.dc.description": "الوصف", + // TODO Source message changed - Revise the translation + "item.preview.dc.description": "الوصف:", // "item.select.confirm": "Confirm selected", "item.select.confirm": "تأكيد المحدد", @@ -8317,6 +8332,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "الإبداعية العامة", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "إعادة تدوير", @@ -8482,6 +8501,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "نجح التحميل", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "عند التحديد، ستكون هذه المادة قابلة للاكتشاف في البحث/الاستعراض. عند إلغاء التحديد، ستكون المادة متاحة فقط عبر رابط مباشر ولن تظهر أبدًا في البحث/الاستعراض.", @@ -10869,5 +10900,17 @@ // "file-download-link.request-copy": "Request a copy of ", "file-download-link.request-copy": "طلب نسخة من ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/ca.json5 b/src/assets/i18n/ca.json5 index a984fb254c7..fbd2c8361c4 100644 --- a/src/assets/i18n/ca.json5 +++ b/src/assets/i18n/ca.json5 @@ -2923,12 +2923,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Error en recuperar les comunitats de primer nivell", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Ha de concedir aquesta llicència de dipòsit per completar l'enviament. Si no podeu concedir aquesta llicència en aquest moment, podeu desar el vostre treball i tornar més tard o bé eliminar l'enviament.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Heu de concedir aquesta llicència CC per completar l'enviament. Si no podeu concedir aquesta llicència CC en aquest moment, podeu desar el vostre treball i tornar més tard o bé eliminar l'enviament.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Aquest camp d'entrada està restringit per aquest patró: {{ pattern }}.", @@ -8476,6 +8489,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Llicència Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8641,6 +8658,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Pujada completada amb èxit", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si el marca, l'ítem serà detectable al cercador/navegador. Si el desmarca, l'ítem només estarà disponible mitjançant l'enllaç directe, i no apareixerà al cercar/navegar.", @@ -11098,5 +11127,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/cs.json5 b/src/assets/i18n/cs.json5 index 544c1a63e29..3ddc8ddb9fc 100644 --- a/src/assets/i18n/cs.json5 +++ b/src/assets/i18n/cs.json5 @@ -2887,12 +2887,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Chyba při načítání komunit nejvyšší úrovně", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Bez udělení licence nelze záznam dokončit. Pokud v tuto chvíli nemůžete licenci udělit, uložte svou práci a vraťte se k příspěvku později nebo jej smažte.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Pro dokončení vkladu musíte udělit tuto licenci CC. Pokud v tuto chvíli nemůžete licenci CC udělit, můžete svou práci uložit a vrátit se později nebo vklad odstranit.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Toto zadání je omezeno aktuálním vzorcem: {{ pattern }}.", @@ -8319,6 +8332,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licence Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Opětovně použít", @@ -8484,6 +8501,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Úspěšně nahráno", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Když je zaškrtnuto, bude tento záznam zjistitelný ve vyhledávání/prohlížení. Když není zaškrtnuto, záznam bude dostupný pouze prostřednictvím přímého odkazu a nikdy se nezobrazí ve vyhledávání/přehledu.", @@ -10871,5 +10900,17 @@ // "file-download-link.request-copy": "Request a copy of ", "file-download-link.request-copy": "Požádat o kopii ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/de.json5 b/src/assets/i18n/de.json5 index 462b91bfd59..936596ca965 100644 --- a/src/assets/i18n/de.json5 +++ b/src/assets/i18n/de.json5 @@ -2918,13 +2918,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Hauptbereich konnte nicht geladen werden", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "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ückkehren, um zuzustimmen oder die Einreichung zu löschen.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Die Eingabe muss dem folgenden Muster entsprechen: {{ pattern }}.", @@ -8483,6 +8496,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons license", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Wiederverwerten", @@ -8648,6 +8665,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Hochladen erfolgreich", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Wenn ausgewählt, kann das Item in der Suche/im Browsing gefunden werden. Wenn nicht ausgewählt, ist das Item nur über einen direkten Link aufrufbar und erscheint nie in der Suche/im Browsing.", @@ -11111,5 +11140,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/el.json5 b/src/assets/i18n/el.json5 index 64f67ecec35..1dd9181ecd0 100644 --- a/src/assets/i18n/el.json5 +++ b/src/assets/i18n/el.json5 @@ -3213,13 +3213,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Σφάλμα κατά την ανάκτηση κοινοτήτων ανώτατου επιπέδου", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Πρέπει να χορηγήσετε αυτήν την άδεια για να ολοκληρώσετε την υποβολή σας. Εάν δεν μπορείτε να εκχωρήσετε αυτήν την άδεια αυτήν τη στιγμή, μπορείτε να αποθηκεύσετε την εργασία σας και να επιστρέψετε αργότερα ή να καταργήσετε την υποβολή.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9256,6 +9269,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Άδεια Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ανακυκλωνω", @@ -9427,6 +9444,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Επιτυχής μεταφόρτωση", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Όταν είναι επιλεγμένο, αυτό το τεκμήριο θα μπορεί να εντοπιστεί στην αναζήτηση/περιήγηση. Όταν δεν είναι επιλεγμένο, το τεκμήριο θα είναι διαθέσιμο μόνο μέσω απευθείας συνδέσμου και δεν θα εμφανίζεται ποτέ στην αναζήτηση/περιήγηση.", @@ -12402,5 +12431,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/en.json5 b/src/assets/i18n/en.json5 index c3bdb7b0374..d05cff9efec 100644 --- a/src/assets/i18n/en.json5 +++ b/src/assets/i18n/en.json5 @@ -1979,10 +1979,16 @@ "error.top-level-communities": "Error fetching top-level communities", - "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.filerequired": "The file upload is mandatory", @@ -5608,6 +5614,8 @@ "submission.sections.submit.progressbar.CClicense": "Creative commons license", + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.stepcustom": "Describe", @@ -5718,6 +5726,12 @@ "submission.sections.upload.upload-successful": "Upload successful", + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + "submission.sections.custom-url.url.placeholder": "Custom URL", + "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-label": "Discoverable", diff --git a/src/assets/i18n/es.json5 b/src/assets/i18n/es.json5 index 7f1b2f4d6f6..2623bf1d5a1 100644 --- a/src/assets/i18n/es.json5 +++ b/src/assets/i18n/es.json5 @@ -2899,12 +2899,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Error al recuperar las comunidades de primer nivel", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Debe conceder esta licencia de depósito para completar el envío. Si no puede conceder esta licencia en este momento, puede guardar su trabajo y regresar más tarde o bien eliminar el envío.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Debe conceder esta licencia CC para completar su envío. Si no puede conceder esta licencia CC en este momento, puede guardar su trabajo y regresar más tarde o bien eliminar el envío.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Esta entrada está restringida por este patrón: {{ pattern }}.", @@ -4571,6 +4584,7 @@ "item.preview.dc.rights": "Rights", // "item.preview.dc.identifier.other": "Other Identifier", + // TODO Source message changed - Revise the translation "item.preview.dc.identifier.other": "Otro identificador:", // "item.preview.dc.relation.issn": "ISSN", @@ -4661,6 +4675,7 @@ "item.preview.dc.identifier.openalex": "Identificador OpenAlex", // "item.preview.dc.description": "Description", + // TODO Source message changed - Revise the translation "item.preview.dc.description": "Descripción:", // "item.select.confirm": "Confirm selected", @@ -8420,6 +8435,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licencia Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8585,6 +8604,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Subida exitosa", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si lo marca, el ítem será detectable en el buscador/navegador. Si lo desmarca, el ítems solo estará disponible mediante el enlace directo, y no aparecerá en el buscador/navegador.", @@ -10975,5 +11006,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/fi.json5 b/src/assets/i18n/fi.json5 index a86f12487c5..5659fe9f6e4 100644 --- a/src/assets/i18n/fi.json5 +++ b/src/assets/i18n/fi.json5 @@ -3106,13 +3106,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Virhe ylätason yhteisöjä noudettaessa", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Tallennusprosessia ei voi päättää, ellet hyväksy julkaisulisenssiä. Voit myös tallentaa tiedot ja jatkaa tallennusta myöhemmin tai poistaa kaikki syöttämäsi tiedot.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Syötteen on noudatettava seuraavaa kaavaa: {{ pattern }}.", @@ -8971,6 +8984,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons -lisenssi", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Kierrätä", @@ -9139,6 +9156,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Lataus valmis", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Kun tämä on valittu, tietue on löydettävissä haussa ja selailtaessa. Kun tätä ei ole valittu, tietue on saatavilla vain suoran linkin kautta, eikä se näy haussa tai selailtaessa.", @@ -12015,5 +12044,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/fr.json5 b/src/assets/i18n/fr.json5 index 46daedcf7fd..b8c5aae9cf9 100644 --- a/src/assets/i18n/fr.json5 +++ b/src/assets/i18n/fr.json5 @@ -2917,12 +2917,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erreur lors de la récupération des communautés de 1er niveau", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Vous devez accepter cette licence pour terminer votre dépôt. Si vous êtes dans l'incapacité d'accepter cette licence actuellement, vous pouvez sauvegarder votre dépôt et y revenir ultérieurement ou le supprimer.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Vous devez approuver cette Licence Creative Commons afin de finaliser votre sumissions. Si vous n'êtes pas en mesure d'approuver la licence pour le moment, vous pouvez souvegarder votre travail pour y revenir plus tard ou supprimer la soumission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Cette entrée est invalide en vertu du modèle actuel : {{ pattern }}.", @@ -4579,6 +4592,10 @@ // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "Droits", + // "item.preview.dc.identifier.other": "Other Identifier", + // TODO Source message changed - Revise the translation + "item.preview.dc.identifier.other": "Autre identifiant :", + // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4666,6 +4683,10 @@ // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "Identifiant OpenAlex", + // "item.preview.dc.description": "Description", + // TODO Source message changed - Revise the translation + "item.preview.dc.description": "Description :", + // "item.select.confirm": "Confirm selected", "item.select.confirm": "Confirmer la sélection", @@ -6952,7 +6973,6 @@ // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "Description du fichier", - // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", "search.filters.applied.f.has_geospatial_metadata": "A l'emplacement géographique", @@ -8386,6 +8406,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licence Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Recycler", @@ -8551,6 +8575,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Téléchargement réussi", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si cette case est cochée, cet Item pourra être découvert dans la recherche/index parcourir. Si cette case n'est pas cochée, l'Item ne sera disponible que via un lien direct et n'apparaîtra jamais dans la recherche/index parcourir.", @@ -10944,4 +10980,17 @@ // "file-download-link.request-copy": "Request a copy of ", "file-download-link.request-copy": "Demander une copie de ", -} + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + + +} \ No newline at end of file diff --git a/src/assets/i18n/gd.json5 b/src/assets/i18n/gd.json5 index 82d1da5d741..ef034bd9478 100644 --- a/src/assets/i18n/gd.json5 +++ b/src/assets/i18n/gd.json5 @@ -3279,13 +3279,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Mearachd a' faighinn choimhearsnachdan sàr-ìre", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Feumaidh tu an cead seo a thoirt gus crìoch a chur air a' chur-a-steach. Mura h-urrainn dhut cead a thoirt an-dràsta is urrainn dhut an obair a shàbhaladh agus tilleadh aig àm eile no an cur-a-steach a thoirt air falbh.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9469,6 +9482,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Cead-cleachdaidh cruthachail", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ath-chuairtich", @@ -9648,6 +9665,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Dh'obraich an luchdachadh suas", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -12795,5 +12824,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/gu.json5 b/src/assets/i18n/gu.json5 index dd6cafa82aa..9a77081d611 100644 --- a/src/assets/i18n/gu.json5 +++ b/src/assets/i18n/gu.json5 @@ -1,8191 +1,11167 @@ { + // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "તમે આ પેજને ઍક્સેસ કરવા માટે અધિકૃત નથી. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", + // "401.link.home-page": "Take me to the home page", "401.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", + // "401.unauthorized": "Unauthorized", "401.unauthorized": "અનધિકૃત", + // "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.", "403.help": "તમને આ પેજને ઍક્સેસ કરવાની પરવાનગી નથી. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", + // "403.link.home-page": "Take me to the home page", "403.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", + // "403.forbidden": "Forbidden", "403.forbidden": "પ્રતિબંધિત", + // "500.page-internal-server-error": "Service unavailable", "500.page-internal-server-error": "સેવા ઉપલબ્ધ નથી", + // "500.help": "The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.", "500.help": "સર્વર અત્યારે જાળવણી ડાઉનટાઇમ અથવા ક્ષમતા સમસ્યાઓને કારણે તમારી વિનંતીને સેવા આપવા માટે અસમર્થ છે. કૃપા કરીને થોડીવાર પછી ફરી પ્રયાસ કરો.", + // "500.link.home-page": "Take me to the home page", "500.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", + // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ", "404.help": "અમે તે પેજ શોધી શકતા નથી જે તમે શોધી રહ્યા છો. પેજને ખસેડવામાં આવ્યું હશે અથવા કાઢી નાખવામાં આવ્યું હશે. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", + // "404.link.home-page": "Take me to the home page", "404.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", + // "404.page-not-found": "Page not found", "404.page-not-found": "પેજ મળ્યું નથી", + // "error-page.description.401": "Unauthorized", "error-page.description.401": "અનધિકૃત", + // "error-page.description.403": "Forbidden", "error-page.description.403": "પ્રતિબંધિત", + // "error-page.description.500": "Service unavailable", "error-page.description.500": "સેવા ઉપલબ્ધ નથી", + // "error-page.description.404": "Page not found", "error-page.description.404": "પેજ મળ્યું નથી", + // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "ORCID મારફતે લૉગિન દરમિયાન એક ભૂલ આવી. ખાતરી કરો કે તમે DSpace સાથે તમારા ORCID ખાતા ઇમેઇલ સરનામાને શેર કર્યું છે. જો ભૂલ ચાલુ રહે, તો એડમિનિસ્ટ્રેટરને સંપર્ક કરો", + // "listelement.badge.access-status": "Access status:", + // TODO New key - Add a translation + "listelement.badge.access-status": "Access status:", + + // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "એમ્બાર્ગો", + // "access-status.metadata.only.listelement.badge": "Metadata only", "access-status.metadata.only.listelement.badge": "મેટાડેટા માત્ર", + // "access-status.open.access.listelement.badge": "Open Access", "access-status.open.access.listelement.badge": "ઓપન ઍક્સેસ", + // "access-status.restricted.listelement.badge": "Restricted", "access-status.restricted.listelement.badge": "પ્રતિબંધિત", + // "access-status.unknown.listelement.badge": "Unknown", "access-status.unknown.listelement.badge": "અજ્ઞાત", + // "admin.curation-tasks.breadcrumbs": "System curation tasks", "admin.curation-tasks.breadcrumbs": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", + // "admin.curation-tasks.title": "System curation tasks", "admin.curation-tasks.title": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", + // "admin.curation-tasks.header": "System curation tasks", "admin.curation-tasks.header": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", + // "admin.registries.bitstream-formats.breadcrumbs": "Format registry", "admin.registries.bitstream-formats.breadcrumbs": "ફોર્મેટ રજિસ્ટ્રી", + // "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.create.breadcrumbs": "બિટસ્ટ્રીમ ફોર્મેટ", + // "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.", "admin.registries.bitstream-formats.create.failure.content": "નવું બિટસ્ટ્રીમ ફોર્મેટ બનાવતી વખતે એક ભૂલ આવી.", + // "admin.registries.bitstream-formats.create.failure.head": "Failure", "admin.registries.bitstream-formats.create.failure.head": "અસફળતા", + // "admin.registries.bitstream-formats.create.head": "Create bitstream format", "admin.registries.bitstream-formats.create.head": "બિટસ્ટ્રીમ ફોર્મેટ બનાવો", + // "admin.registries.bitstream-formats.create.new": "Add a new bitstream format", "admin.registries.bitstream-formats.create.new": "નવું બિટસ્ટ્રીમ ફોર્મેટ ઉમેરો", + // "admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.", "admin.registries.bitstream-formats.create.success.content": "નવું બિટસ્ટ્રીમ ફોર્મેટ સફળતાપૂર્વક બનાવવામાં આવ્યું.", + // "admin.registries.bitstream-formats.create.success.head": "Success", "admin.registries.bitstream-formats.create.success.head": "સફળતા", + // "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} ફોર્મેટ(ઓ) દૂર કરવામાં નિષ્ફળ", + // "admin.registries.bitstream-formats.delete.failure.head": "Failure", "admin.registries.bitstream-formats.delete.failure.head": "અસફળતા", + // "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} ફોર્મેટ(ઓ) સફળતાપૂર્વક દૂર કરવામાં આવ્યા", + // "admin.registries.bitstream-formats.delete.success.head": "Success", "admin.registries.bitstream-formats.delete.success.head": "સફળતા", + // "admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.", "admin.registries.bitstream-formats.description": "આ બિટસ્ટ્રીમ ફોર્મેટ્સની યાદી જાણીતા ફોર્મેટ્સ અને તેમની સપોર્ટ લેવલ વિશેની માહિતી પ્રદાન કરે છે.", + // "admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.edit.breadcrumbs": "બિટસ્ટ્રીમ ફોર્મેટ", + // "admin.registries.bitstream-formats.edit.description.hint": "", "admin.registries.bitstream-formats.edit.description.hint": "", + // "admin.registries.bitstream-formats.edit.description.label": "Description", "admin.registries.bitstream-formats.edit.description.label": "વર્ણન", + // "admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.", "admin.registries.bitstream-formats.edit.extensions.hint": "એક્સ્ટેન્શન્સ ફાઇલ એક્સ્ટેન્શન્સ છે જે અપલોડ કરેલી ફાઇલોના ફોર્મેટને આપમેળે ઓળખવા માટે વપરાય છે. તમે દરેક ફોર્મેટ માટે અનેક એક્સ્ટેન્શન્સ દાખલ કરી શકો છો.", + // "admin.registries.bitstream-formats.edit.extensions.label": "File extensions", "admin.registries.bitstream-formats.edit.extensions.label": "ફાઇલ એક્સ્ટેન્શન્સ", + // "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot", "admin.registries.bitstream-formats.edit.extensions.placeholder": "ડોટ વિના ફાઇલ એક્સ્ટેન્શન દાખલ કરો", + // "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.", "admin.registries.bitstream-formats.edit.failure.content": "બિટસ્ટ્રીમ ફોર્મેટ સંપાદિત કરતી વખતે એક ભૂલ આવી.", + // "admin.registries.bitstream-formats.edit.failure.head": "Failure", "admin.registries.bitstream-formats.edit.failure.head": "અસફળતા", - "admin.registries.bitstream-formats.edit.head": "બિટસ્ટ્રીમ ફોર્મેટ: {{ format }}", + // "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + // TODO New key - Add a translation + "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + // "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.", "admin.registries.bitstream-formats.edit.internal.hint": "આંતરિક તરીકે ચિહ્નિત ફોર્મેટ્સ વપરાશકર્તા માટે છુપાયેલા છે અને વહીવટી હેતુઓ માટે વપરાય છે.", + // "admin.registries.bitstream-formats.edit.internal.label": "Internal", "admin.registries.bitstream-formats.edit.internal.label": "આંતરિક", + // "admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.", "admin.registries.bitstream-formats.edit.mimetype.hint": "આ ફોર્મેટ સાથે સંકળાયેલ MIME પ્રકાર, અનન્ય હોવો જરૂરી નથી.", + // "admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type", "admin.registries.bitstream-formats.edit.mimetype.label": "MIME પ્રકાર", + // "admin.registries.bitstream-formats.edit.shortDescription.hint": "A unique name for this format, (e.g. Microsoft Word XP or Microsoft Word 2000)", "admin.registries.bitstream-formats.edit.shortDescription.hint": "આ ફોર્મેટ માટેનું અનન્ય નામ, (ઉદાહરણ તરીકે, Microsoft Word XP અથવા Microsoft Word 2000)", + // "admin.registries.bitstream-formats.edit.shortDescription.label": "Name", "admin.registries.bitstream-formats.edit.shortDescription.label": "નામ", + // "admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.", "admin.registries.bitstream-formats.edit.success.content": "બિટસ્ટ્રીમ ફોર્મેટ સફળતાપૂર્વક સંપાદિત કરવામાં આવ્યું.", + // "admin.registries.bitstream-formats.edit.success.head": "Success", "admin.registries.bitstream-formats.edit.success.head": "સફળતા", + // "admin.registries.bitstream-formats.edit.supportLevel.hint": "The level of support your institution pledges for this format.", "admin.registries.bitstream-formats.edit.supportLevel.hint": "આ ફોર્મેટ માટે તમારું સંસ્થા જે સપોર્ટ લેવલ વચન આપે છે.", + // "admin.registries.bitstream-formats.edit.supportLevel.label": "Support level", "admin.registries.bitstream-formats.edit.supportLevel.label": "સપોર્ટ લેવલ", + // "admin.registries.bitstream-formats.head": "Bitstream Format Registry", "admin.registries.bitstream-formats.head": "બિટસ્ટ્રીમ ફોર્મેટ રજિસ્ટ્રી", + // "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.", "admin.registries.bitstream-formats.no-items": "બિટસ્ટ્રીમ ફોર્મેટ્સ બતાવવા માટે નથી.", + // "admin.registries.bitstream-formats.table.delete": "Delete selected", "admin.registries.bitstream-formats.table.delete": "પસંદ કરેલને કાઢી નાખો", + // "admin.registries.bitstream-formats.table.deselect-all": "Deselect all", "admin.registries.bitstream-formats.table.deselect-all": "બધા પસંદ કરેલને દૂર કરો", + // "admin.registries.bitstream-formats.table.internal": "internal", "admin.registries.bitstream-formats.table.internal": "આંતરિક", + // "admin.registries.bitstream-formats.table.mimetype": "MIME Type", "admin.registries.bitstream-formats.table.mimetype": "MIME પ્રકાર", + // "admin.registries.bitstream-formats.table.name": "Name", "admin.registries.bitstream-formats.table.name": "નામ", + // "admin.registries.bitstream-formats.table.selected": "Selected bitstream formats", "admin.registries.bitstream-formats.table.selected": "પસંદ કરેલ બિટસ્ટ્રીમ ફોર્મેટ્સ", + // "admin.registries.bitstream-formats.table.id": "ID", "admin.registries.bitstream-formats.table.id": "ID", + // "admin.registries.bitstream-formats.table.return": "Back", "admin.registries.bitstream-formats.table.return": "પાછા", + // "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known", "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "જાણીતું", + // "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported", "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "સપોર્ટેડ", + // "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown", "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "અજ્ઞાત", + // "admin.registries.bitstream-formats.table.supportLevel.head": "Support Level", "admin.registries.bitstream-formats.table.supportLevel.head": "સપોર્ટ લેવલ", + // "admin.registries.bitstream-formats.title": "Bitstream Format Registry", "admin.registries.bitstream-formats.title": "બિટસ્ટ્રીમ ફોર્મેટ રજિસ્ટ્રી", + // "admin.registries.bitstream-formats.select": "Select", "admin.registries.bitstream-formats.select": "પસંદ કરો", + // "admin.registries.bitstream-formats.deselect": "Deselect", "admin.registries.bitstream-formats.deselect": "પસંદ કરેલને દૂર કરો", + // "admin.registries.metadata.breadcrumbs": "Metadata registry", "admin.registries.metadata.breadcrumbs": "મેટાડેટા રજિસ્ટ્રી", + // "admin.registries.metadata.description": "The metadata registry maintains a list of all metadata fields available in the repository. These fields may be divided amongst multiple schemas. However, DSpace requires the qualified Dublin Core schema.", "admin.registries.metadata.description": "મેટાડેટા રજિસ્ટ્રી રિપોઝિટરીમાં ઉપલબ્ધ તમામ મેટાડેટા ફીલ્ડ્સની યાદી જાળવે છે. આ ફીલ્ડ્સને અનેક સ્કીમા વચ્ચે વિભાજિત કરી શકાય છે. જો કે, DSpace ને લાયક ડબલિન કોર સ્કીમાની જરૂર છે.", + // "admin.registries.metadata.form.create": "Create metadata schema", "admin.registries.metadata.form.create": "મેટાડેટા સ્કીમા બનાવો", + // "admin.registries.metadata.form.edit": "Edit metadata schema", "admin.registries.metadata.form.edit": "મેટાડેટા સ્કીમા સંપાદિત કરો", + // "admin.registries.metadata.form.name": "Name", "admin.registries.metadata.form.name": "નામ", + // "admin.registries.metadata.form.namespace": "Namespace", "admin.registries.metadata.form.namespace": "નેમસ્પેસ", + // "admin.registries.metadata.head": "Metadata Registry", "admin.registries.metadata.head": "મેટાડેટા રજિસ્ટ્રી", + // "admin.registries.metadata.schemas.no-items": "No metadata schemas to show.", "admin.registries.metadata.schemas.no-items": "બતાવવા માટે કોઈ મેટાડેટા સ્કીમા નથી.", + // "admin.registries.metadata.schemas.select": "Select", "admin.registries.metadata.schemas.select": "પસંદ કરો", + // "admin.registries.metadata.schemas.deselect": "Deselect", "admin.registries.metadata.schemas.deselect": "પસંદ કરેલને દૂર કરો", + // "admin.registries.metadata.schemas.table.delete": "Delete selected", "admin.registries.metadata.schemas.table.delete": "પસંદ કરેલને કાઢી નાખો", + // "admin.registries.metadata.schemas.table.selected": "Selected schemas", "admin.registries.metadata.schemas.table.selected": "પસંદ કરેલ સ્કીમા", + // "admin.registries.metadata.schemas.table.id": "ID", "admin.registries.metadata.schemas.table.id": "ID", + // "admin.registries.metadata.schemas.table.name": "Name", "admin.registries.metadata.schemas.table.name": "નામ", + // "admin.registries.metadata.schemas.table.namespace": "Namespace", "admin.registries.metadata.schemas.table.namespace": "નેમસ્પેસ", + // "admin.registries.metadata.title": "Metadata Registry", "admin.registries.metadata.title": "મેટાડેટા રજિસ્ટ્રી", + // "admin.registries.schema.breadcrumbs": "Metadata schema", "admin.registries.schema.breadcrumbs": "મેટાડેટા સ્કીમા", + // "admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".", "admin.registries.schema.description": "આ {{namespace}} માટેનું મેટાડેટા સ્કીમા છે.", + // "admin.registries.schema.fields.select": "Select", "admin.registries.schema.fields.select": "પસંદ કરો", + // "admin.registries.schema.fields.deselect": "Deselect", "admin.registries.schema.fields.deselect": "પસંદ કરેલને દૂર કરો", + // "admin.registries.schema.fields.head": "Schema metadata fields", "admin.registries.schema.fields.head": "સ્કીમા મેટાડેટા ફીલ્ડ્સ", + // "admin.registries.schema.fields.no-items": "No metadata fields to show.", "admin.registries.schema.fields.no-items": "બતાવવા માટે કોઈ મેટાડેટા ફીલ્ડ્સ નથી.", + // "admin.registries.schema.fields.table.delete": "Delete selected", "admin.registries.schema.fields.table.delete": "પસંદ કરેલને કાઢી નાખો", + // "admin.registries.schema.fields.table.field": "Field", "admin.registries.schema.fields.table.field": "ફીલ્ડ", + // "admin.registries.schema.fields.table.selected": "Selected metadata fields", "admin.registries.schema.fields.table.selected": "પસંદ કરેલ મેટાડેટા ફીલ્ડ્સ", + // "admin.registries.schema.fields.table.id": "ID", "admin.registries.schema.fields.table.id": "ID", + // "admin.registries.schema.fields.table.scopenote": "Scope Note", "admin.registries.schema.fields.table.scopenote": "સ્કોપ નોંધ", + // "admin.registries.schema.form.create": "Create metadata field", "admin.registries.schema.form.create": "મેટાડેટા ફીલ્ડ બનાવો", + // "admin.registries.schema.form.edit": "Edit metadata field", "admin.registries.schema.form.edit": "મેટાડેટા ફીલ્ડ સંપાદિત કરો", + // "admin.registries.schema.form.element": "Element", "admin.registries.schema.form.element": "એલિમેન્ટ", + // "admin.registries.schema.form.qualifier": "Qualifier", "admin.registries.schema.form.qualifier": "ક્વોલિફાયર", + // "admin.registries.schema.form.scopenote": "Scope Note", "admin.registries.schema.form.scopenote": "સ્કોપ નોંધ", + // "admin.registries.schema.head": "Metadata Schema", "admin.registries.schema.head": "મેટાડેટા સ્કીમા", + // "admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.created": "સફળતાપૂર્વક મેટાડેટા સ્કીમા {{prefix}} બનાવ્યું", + // "admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.failure": "{{amount}} મેટાડેટા સ્કીમા કાઢી નાખવામાં નિષ્ફળ", + // "admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.success": "{{amount}} મેટાડેટા સ્કીમા સફળતાપૂર્વક કાઢી નાખ્યા", + // "admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.edited": "સફળતાપૂર્વક મેટાડેટા સ્કીમા {{prefix}} સંપાદિત કર્યું", + // "admin.registries.schema.notification.failure": "Error", "admin.registries.schema.notification.failure": "ભૂલ", + // "admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"", "admin.registries.schema.notification.field.created": "સફળતાપૂર્વક મેટાડેટા ફીલ્ડ {{field}} બનાવ્યું", + // "admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.failure": "{{amount}} મેટાડેટા ફીલ્ડ્સ કાઢી નાખવામાં નિષ્ફળ", + // "admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.success": "{{amount}} મેટાડેટા ફીલ્ડ્સ સફળતાપૂર્વક કાઢી નાખ્યા", + // "admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"", "admin.registries.schema.notification.field.edited": "સફળતાપૂર્વક મેટાડેટા ફીલ્ડ {{field}} સંપાદિત કર્યું", + // "admin.registries.schema.notification.success": "Success", "admin.registries.schema.notification.success": "સફળતા", + // "admin.registries.schema.return": "Back", "admin.registries.schema.return": "પાછા", + // "admin.registries.schema.title": "Metadata Schema Registry", "admin.registries.schema.title": "મેટાડેટા સ્કીમા રજિસ્ટ્રી", + // "admin.access-control.bulk-access.breadcrumbs": "Bulk Access Management", "admin.access-control.bulk-access.breadcrumbs": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", + // "administrativeBulkAccess.search.results.head": "Search Results", "administrativeBulkAccess.search.results.head": "શોધ પરિણામો", + // "admin.access-control.bulk-access": "Bulk Access Management", "admin.access-control.bulk-access": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", + // "admin.access-control.bulk-access.title": "Bulk Access Management", "admin.access-control.bulk-access.title": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", - "admin.access-control.bulk-access-browse.header": "પગલું 1: ઑબ્જેક્ટ્સ પસંદ કરો", + // "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + // TODO New key - Add a translation + "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + // "admin.access-control.bulk-access-browse.search.header": "Search", "admin.access-control.bulk-access-browse.search.header": "શોધ", + // "admin.access-control.bulk-access-browse.selected.header": "Current selection({{number}})", "admin.access-control.bulk-access-browse.selected.header": "વર્તમાન પસંદગી({{number}})", - "admin.access-control.bulk-access-settings.header": "પગલું 2: કરવા માટેની ક્રિયા", + // "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + // TODO New key - Add a translation + "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + // "admin.access-control.epeople.actions.delete": "Delete EPerson", "admin.access-control.epeople.actions.delete": "EPerson કાઢી નાખો", + // "admin.access-control.epeople.actions.impersonate": "Impersonate EPerson", "admin.access-control.epeople.actions.impersonate": "EPerson તરીકે કામ કરો", + // "admin.access-control.epeople.actions.reset": "Reset password", "admin.access-control.epeople.actions.reset": "પાસવર્ડ રીસેટ કરો", + // "admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson", "admin.access-control.epeople.actions.stop-impersonating": "EPerson તરીકે કામ કરવાનું બંધ કરો", + // "admin.access-control.epeople.breadcrumbs": "EPeople", "admin.access-control.epeople.breadcrumbs": "EPeople", + // "admin.access-control.epeople.title": "EPeople", "admin.access-control.epeople.title": "EPeople", + // "admin.access-control.epeople.edit.breadcrumbs": "New EPerson", "admin.access-control.epeople.edit.breadcrumbs": "નવું EPerson", + // "admin.access-control.epeople.edit.title": "New EPerson", "admin.access-control.epeople.edit.title": "નવું EPerson", + // "admin.access-control.epeople.add.breadcrumbs": "Add EPerson", "admin.access-control.epeople.add.breadcrumbs": "EPerson ઉમેરો", + // "admin.access-control.epeople.add.title": "Add EPerson", "admin.access-control.epeople.add.title": "EPerson ઉમેરો", + // "admin.access-control.epeople.head": "EPeople", "admin.access-control.epeople.head": "EPeople", + // "admin.access-control.epeople.search.head": "Search", "admin.access-control.epeople.search.head": "શોધ", + // "admin.access-control.epeople.button.see-all": "Browse All", "admin.access-control.epeople.button.see-all": "બધા બ્રાઉઝ કરો", + // "admin.access-control.epeople.search.scope.metadata": "Metadata", "admin.access-control.epeople.search.scope.metadata": "મેટાડેટા", + // "admin.access-control.epeople.search.scope.email": "Email (exact)", "admin.access-control.epeople.search.scope.email": "ઇમેઇલ (ચોક્કસ)", + // "admin.access-control.epeople.search.button": "Search", "admin.access-control.epeople.search.button": "શોધ", + // "admin.access-control.epeople.search.placeholder": "Search people...", "admin.access-control.epeople.search.placeholder": "લોકોને શોધો...", + // "admin.access-control.epeople.button.add": "Add EPerson", "admin.access-control.epeople.button.add": "EPerson ઉમેરો", + // "admin.access-control.epeople.table.id": "ID", "admin.access-control.epeople.table.id": "ID", + // "admin.access-control.epeople.table.name": "Name", "admin.access-control.epeople.table.name": "નામ", + // "admin.access-control.epeople.table.email": "Email (exact)", "admin.access-control.epeople.table.email": "ઇમેઇલ (ચોક્કસ)", + // "admin.access-control.epeople.table.edit": "Edit", "admin.access-control.epeople.table.edit": "સંપાદિત કરો", + // "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", + // "admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group", "admin.access-control.epeople.table.edit.buttons.edit-disabled": "તમે આ જૂથને સંપાદિત કરવા માટે અધિકૃત નથી", + // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "{{name}} ને કાઢી નાખો", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + + // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "બતાવવા માટે કોઈ EPeople નથી.", + // "admin.access-control.epeople.form.create": "Create EPerson", "admin.access-control.epeople.form.create": "EPerson બનાવો", + // "admin.access-control.epeople.form.edit": "Edit EPerson", "admin.access-control.epeople.form.edit": "EPerson સંપાદિત કરો", + // "admin.access-control.epeople.form.firstName": "First name", "admin.access-control.epeople.form.firstName": "પ્રથમ નામ", + // "admin.access-control.epeople.form.lastName": "Last name", "admin.access-control.epeople.form.lastName": "છેલ્લું નામ", + // "admin.access-control.epeople.form.email": "Email", "admin.access-control.epeople.form.email": "ઇમેઇલ", + // "admin.access-control.epeople.form.emailHint": "Must be a valid email address", "admin.access-control.epeople.form.emailHint": "માન્ય ઇમેઇલ સરનામું હોવું જોઈએ", + // "admin.access-control.epeople.form.canLogIn": "Can log in", "admin.access-control.epeople.form.canLogIn": "લૉગ ઇન કરી શકે છે", + // "admin.access-control.epeople.form.requireCertificate": "Requires certificate", "admin.access-control.epeople.form.requireCertificate": "પ્રમાણપત્રની જરૂર છે", + // "admin.access-control.epeople.form.return": "Back", "admin.access-control.epeople.form.return": "પાછા", + // "admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.success": "સફળતાપૂર્વક EPerson {{name}} બનાવ્યું", + // "admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.failure": "EPerson {{name}} બનાવવામાં નિષ્ફળ", + // "admin.access-control.epeople.form.notification.created.failure.emailInUse": "Failed to create EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson {{name}} બનાવવામાં નિષ્ફળ, ઇમેઇલ {{email}} પહેલેથી જ વપરાય છે.", + // "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Failed to edit EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson {{name}} સંપાદિત કરવામાં નિષ્ફળ, ઇમેઇલ {{email}} પહેલેથી જ વપરાય છે.", + // "admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.success": "સફળતાપૂર્વક EPerson {{name}} સંપાદિત કર્યું", + // "admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.failure": "EPerson {{name}} સંપાદિત કરવામાં નિષ્ફળ", + // "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.success": "સફળતાપૂર્વક EPerson {{name}} કાઢી નાખ્યું", + // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.failure": "EPerson {{name}} કાઢી નાખવામાં નિષ્ફળ", - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "આ જૂથોના સભ્ય:", + // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", + // TODO New key - Add a translation + "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", + // "admin.access-control.epeople.form.table.name": "Name", "admin.access-control.epeople.form.table.name": "નામ", + // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", "admin.access-control.epeople.form.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", + // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", "admin.access-control.epeople.form.memberOfNoGroups": "આ EPerson કોઈ જૂથનો સભ્ય નથી", + // "admin.access-control.epeople.form.goToGroups": "Add to groups", "admin.access-control.epeople.form.goToGroups": "જૂથોમાં ઉમેરો", - "admin.access-control.epeople.notification.deleted.failure": "ID {{id}} સાથે EPerson કાઢી નાખતી વખતે ભૂલ આવી, કોડ: {{statusCode}} અને મેસેજ: {{restResponse.errorMessage}}", - - "admin.access-control.epeople.notification.deleted.success": "સફળતાપૂર્વક EPerson: {{name}} કાઢી નાખ્યું", - - "admin.access-control.groups.title": "જૂથો", - - "admin.access-control.groups.breadcrumbs": "જૂથો", - - "admin.access-control.groups.singleGroup.breadcrumbs": "જૂથ સંપાદિત કરો", - - "admin.access-control.groups.title.singleGroup": "જૂથ સંપાદિત કરો", - - "admin.access-control.groups.title.addGroup": "નવું જૂથ", - - "admin.access-control.groups.addGroup.breadcrumbs": "નવું જૂથ", - - "admin.access-control.groups.head": "જૂથો", - - "admin.access-control.groups.button.add": "જૂથ ઉમેરો", - - "admin.access-control.groups.search.head": "જૂથો શોધો", - - "admin.access-control.groups.button.see-all": "બધા બ્રાઉઝ કરો", - - "admin.access-control.groups.search.button": "શોધો", - - "admin.access-control.groups.search.placeholder": "જૂથો શોધો...", - - "admin.access-control.groups.table.id": "ID", - - "admin.access-control.groups.table.name": "નામ", - - "admin.access-control.groups.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", - - "admin.access-control.groups.table.members": "સભ્યો", - - "admin.access-control.groups.table.edit": "સંપાદિત કરો", - - "admin.access-control.groups.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", - - "admin.access-control.groups.table.edit.buttons.remove": "{{name}} ને કાઢી નાખો", - - "admin.access-control.groups.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", - - "admin.access-control.groups.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{name}} કાઢી નાખ્યું", - - "admin.access-control.groups.notification.deleted.failure.title": "જૂથ {{name}} કાઢી નાખવામાં નિષ્ફળ", - - "admin.access-control.groups.notification.deleted.failure.content": "કારણ: {{cause}}", - - "admin.access-control.groups.form.alert.permanent": "આ જૂથ કાયમી છે, તેથી તેને સંપાદિત અથવા કાઢી શકાતું નથી. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", - - "admin.access-control.groups.form.alert.workflowGroup": "આ જૂથને સંપાદિત અથવા કાઢી શકાતું નથી કારણ કે તે {{name}} {{comcol}} માં સબમિશન અને વર્કફ્લો પ્રક્રિયામાં ભૂમિકા સાથે મેળ ખાતું છે. તમે તેને {{comcolEditRolesRoute}} પૃષ્ઠના સંપાદન {{comcol}} પર ભૂમિકા સોંપો ટેબમાંથી કાઢી શકો છો. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", - - "admin.access-control.groups.form.head.create": "જૂથ બનાવો", - - "admin.access-control.groups.form.head.edit": "જૂથ સંપાદિત કરો", - - "admin.access-control.groups.form.groupName": "જૂથનું નામ", - - "admin.access-control.groups.form.groupCommunity": "સમુદાય અથવા સંગ્રહ", - - "admin.access-control.groups.form.groupDescription": "વર્ણન", - - "admin.access-control.groups.form.notification.created.success": "સફળતાપૂર્વક જૂથ {{name}} બનાવ્યું", - - "admin.access-control.groups.form.notification.created.failure": "જૂથ {{name}} બનાવવામાં નિષ્ફળ", - - "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "જૂથ {{name}} બનાવવામાં નિષ્ફળ, ખાતરી કરો કે નામ પહેલેથી જ વપરાય નથી.", - - "admin.access-control.groups.form.notification.edited.failure": "જૂથ {{name}} સંપાદિત કરવામાં નિષ્ફળ", - - "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "નામ {{name}} પહેલેથી જ વપરાય છે!", - - "admin.access-control.groups.form.notification.edited.success": "સફળતાપૂર્વક જૂથ {{name}} સંપાદિત કર્યું", - - "admin.access-control.groups.form.actions.delete": "જૂથ કાઢી નાખો", - - "admin.access-control.groups.form.delete-group.modal.header": "જૂથ {{ dsoName }} કાઢી નાખો", - - "admin.access-control.groups.form.delete-group.modal.info": "શું તમે ખરેખર જૂથ {{ dsoName }} કાઢી નાખવા માંગો છો?", - - "admin.access-control.groups.form.delete-group.modal.cancel": "રદ કરો", - - "admin.access-control.groups.form.delete-group.modal.confirm": "કાઢી નાખો", - - "admin.access-control.groups.form.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{ name }} કાઢી નાખ્યું", - - "admin.access-control.groups.form.notification.deleted.failure.title": "જૂથ {{ name }} કાઢી નાખવામાં નિષ્ફળ", - - "admin.access-control.groups.form.notification.deleted.failure.content": "કારણ: {{ cause }}", - - "admin.access-control.groups.form.members-list.head": "EPeople", - - "admin.access-control.groups.form.members-list.search.head": "EPeople ઉમેરો", - - "admin.access-control.groups.form.members-list.button.see-all": "બધા બ્રાઉઝ કરો", - - "admin.access-control.groups.form.members-list.headMembers": "વર્તમાન સભ્યો", - - "admin.access-control.groups.form.members-list.search.button": "શોધો", - - "admin.access-control.groups.form.members-list.table.id": "ID", - - "admin.access-control.groups.form.members-list.table.name": "નામ", - - "admin.access-control.groups.form.members-list.table.identity": "ઓળખ", - - "admin.access-control.groups.form.members-list.table.email": "ઇમેઇલ", - - "admin.access-control.groups.form.members-list.table.netid": "NetID", - - "admin.access-control.groups.form.members-list.table.edit": "દૂર કરો / ઉમેરો", - - "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "{{name}} નામના સભ્યને દૂર કરો", - - "admin.access-control.groups.form.members-list.notification.success.addMember": "સફળતાપૂર્વક {{name}} સભ્ય ઉમેર્યું", - - "admin.access-control.groups.form.members-list.notification.failure.addMember": "{{name}} સભ્ય ઉમેરવામાં નિષ્ફળ", - - "admin.access-control.groups.form.members-list.notification.success.deleteMember": "સફળતાપૂર્વક {{name}} સભ્ય કાઢી નાખ્યું", - - "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "{{name}} સભ્ય કાઢી નાખવામાં નિષ્ફળ", - - "admin.access-control.groups.form.members-list.table.edit.buttons.add": "{{name}} નામના સભ્યને ઉમેરો", - - "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", - - "admin.access-control.groups.form.members-list.no-members-yet": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", - - "admin.access-control.groups.form.members-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", - - "admin.access-control.groups.form.subgroups-list.notification.failure": "કંઈક ખોટું થયું: {{cause}}", + // "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", - "admin.access-control.groups.form.subgroups-list.head": "જૂથો", - - "admin.access-control.groups.form.subgroups-list.search.head": "સબગ્રુપ ઉમેરો", - - "admin.access-control.groups.form.subgroups-list.button.see-all": "બધા બ્રાઉઝ કરો", - - "admin.access-control.groups.form.subgroups-list.headSubgroups": "વર્તમાન સબગ્રુપ્સ", - - "admin.access-control.groups.form.subgroups-list.search.button": "શોધો", - - "admin.access-control.groups.form.subgroups-list.table.id": "ID", - - "admin.access-control.groups.form.subgroups-list.table.name": "નામ", - - "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", - - "admin.access-control.groups.form.subgroups-list.table.edit": "દૂર કરો / ઉમેરો", - - "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "{{name}} નામના સબગ્રુપને દૂર કરો", - - "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "{{name}} નામના સબગ્રુપને ઉમેરો", - - "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ ઉમેર્યું", - - "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "{{name}} સબગ્રુપ ઉમેરવામાં નિષ્ફળ", - - "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ કાઢી નાખ્યું", - - "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "{{name}} સબગ્રુપ કાઢી નાખવામાં નિષ્ફળ", - - "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", - - "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "આ વર્તમાન જૂથ છે, તેને ઉમેરવામાં નથી.", - - "admin.access-control.groups.form.subgroups-list.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", - - "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "જૂથમાં હજી સુધી કોઈ સબગ્રુપ્સ નથી.", - - "admin.access-control.groups.form.return": "પાછા", - - "admin.quality-assurance.breadcrumbs": "ગુણવત્તા ખાતરી", - - "admin.notifications.event.breadcrumbs": "ગુણવત્તા ખાતરી સૂચનો", - - "admin.notifications.event.page.title": "ગુણવત્તા ખાતરી સૂચનો", - - "admin.quality-assurance.page.title": "ગુણવત્તા ખાતરી", - - "admin.notifications.source.breadcrumbs": "ગુણવત્તા ખાતરી", - - "admin.access-control.groups.form.tooltip.editGroupPage": "આ પૃષ્ઠ પર, તમે જૂથની ગુણધર્મો અને સભ્યોને ફેરફાર કરી શકો છો. ટોચના વિભાગમાં, તમે જૂથનું નામ અને વર્ણન સંપાદિત કરી શકો છો, જો કે આ સંગ્રહ અથવા સમુદાય માટેનું એડમિન જૂથ હોય, તો જૂથનું નામ અને વર્ણન આપમેળે જનરેટ થાય છે અને તેને સંપાદિત કરી શકાતું નથી. નીચેના વિભાગોમાં, તમે જૂથ સભ્યતાને ફેરફાર કરી શકો છો. વધુ વિગતો માટે [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) જુઓ.", - - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "આ જૂથમાં EPerson ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને વપરાશકર્તાઓને શોધો (શોધ બારની ડાબી બાજુના ડ્રોપડાઉનનો ઉપયોગ કરીને મેટાડેટા અથવા ઇમેઇલ દ્વારા શોધવાનું પસંદ કરો). પછી નીચેની યાદીમાં દરેક વપરાશકર્તા માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક વપરાશકર્તા માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", - - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "આ જૂથમાં સબગ્રુપ ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને જૂથોને શોધો. પછી નીચેની યાદીમાં દરેક જૂથ માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક જૂથ માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", - - "admin.reports.collections.title": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - - "admin.reports.collections.breadcrumbs": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - - "admin.reports.collections.head": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - - "admin.reports.button.show-collections": "સંગ્રહો બતાવો", - - "admin.reports.collections.collections-report": "સંગ્રહ રિપોર્ટ", - - "admin.reports.collections.item-results": "આઇટમ પરિણામો", - - "admin.reports.collections.community": "સમુદાય", - - "admin.reports.collections.collection": "સંગ્રહ", - - "admin.reports.collections.nb_items": "આઇટમ્સની સંખ્યા", - - "admin.reports.collections.match_all_selected_filters": "બધા પસંદ કરેલ ફિલ્ટર્સ સાથે મેળ ખાતું", - - "admin.reports.items.breadcrumbs": "મેટાડેટા ક્વેરી રિપોર્ટ", - - "admin.reports.items.head": "મેટાડેટા ક્વેરી રિપોર્ટ", - - "admin.reports.items.run": "આઇટમ ક્વેરી ચલાવો", - - "admin.reports.items.section.collectionSelector": "સંગ્રહ પસંદગીકાર", - - "admin.reports.items.section.metadataFieldQueries": "મેટાડેટા ફીલ્ડ ક્વેરીઝ", - - "admin.reports.items.predefinedQueries": "પૂર્વનિર્ધારિત ક્વેરીઝ", - - "admin.reports.items.section.limitPaginateQueries": "ક્વેરીઝ મર્યાદિત/પેજિનેટ", - - "admin.reports.items.limit": "મર્યાદા/", - - "admin.reports.items.offset": "ઓફસેટ", - - "admin.reports.items.wholeRepo": "સંપૂર્ણ રિપોઝિટરી", - - "admin.reports.items.anyField": "કોઈપણ ફીલ્ડ", - - "admin.reports.items.predicate.exists": "અસ્તિત્વમાં છે", - - "admin.reports.items.predicate.doesNotExist": "અસ્તિત્વમાં નથી", - - "admin.reports.items.predicate.equals": "સમાન છે", - - "admin.reports.items.predicate.doesNotEqual": "સમાન નથી", - - "admin.reports.items.predicate.like": "માટે", - - "admin.reports.items.predicate.notLike": "માટે નથી", - - "admin.reports.items.predicate.contains": "સમાવે છે", - - "admin.reports.items.predicate.doesNotContain": "સમાવિષ્ટ નથી", - - "admin.reports.items.predicate.matches": "મેળ ખાતું", - - "admin.reports.items.predicate.doesNotMatch": "મેળ ખાતું નથી", - - "admin.reports.items.preset.new": "નવી ક્વેરી", - - "admin.reports.items.preset.hasNoTitle": "કોઈ શીર્ષક નથી", - - "admin.reports.items.preset.hasNoIdentifierUri": "કોઈ dc.identifier.uri નથી", - - "admin.access-control.epeople.notification.deleted.failure": "ID {{id}} સાથે EPerson કાઢી નાખતી વખતે ભૂલ આવી, કોડ: {{statusCode}} અને મેસેજ: {{restResponse.errorMessage}}", - - "admin.access-control.epeople.notification.deleted.success": "સફળતાપૂર્વક EPerson: {{name}} કાઢી નાખ્યું", + // "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + // "admin.access-control.groups.title": "Groups", "admin.access-control.groups.title": "જૂથો", + // "admin.access-control.groups.breadcrumbs": "Groups", "admin.access-control.groups.breadcrumbs": "જૂથો", + // "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group", "admin.access-control.groups.singleGroup.breadcrumbs": "જૂથ સંપાદિત કરો", + // "admin.access-control.groups.title.singleGroup": "Edit Group", "admin.access-control.groups.title.singleGroup": "જૂથ સંપાદિત કરો", + // "admin.access-control.groups.title.addGroup": "New Group", "admin.access-control.groups.title.addGroup": "નવું જૂથ", + // "admin.access-control.groups.addGroup.breadcrumbs": "New Group", "admin.access-control.groups.addGroup.breadcrumbs": "નવું જૂથ", + // "admin.access-control.groups.head": "Groups", "admin.access-control.groups.head": "જૂથો", + // "admin.access-control.groups.button.add": "Add group", "admin.access-control.groups.button.add": "જૂથ ઉમેરો", + // "admin.access-control.groups.search.head": "Search groups", "admin.access-control.groups.search.head": "જૂથો શોધો", + // "admin.access-control.groups.button.see-all": "Browse all", "admin.access-control.groups.button.see-all": "બધા બ્રાઉઝ કરો", + // "admin.access-control.groups.search.button": "Search", "admin.access-control.groups.search.button": "શોધો", + // "admin.access-control.groups.search.placeholder": "Search groups...", "admin.access-control.groups.search.placeholder": "જૂથો શોધો...", + // "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": "નામ", + // "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", + // "admin.access-control.groups.table.members": "Members", "admin.access-control.groups.table.members": "સભ્યો", + // "admin.access-control.groups.table.edit": "Edit", "admin.access-control.groups.table.edit": "સંપાદિત કરો", + // "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", + // "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.remove": "{{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": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", + // "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"", "admin.access-control.groups.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{name}} કાઢી નાખ્યું", + // "admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"", "admin.access-control.groups.notification.deleted.failure.title": "જૂથ {{name}} કાઢી નાખવામાં નિષ્ફળ", - "admin.access-control.groups.notification.deleted.failure.content": "કારણ: {{cause}}", + // "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + // TODO New key - Add a translation + "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + // "admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.permanent": "આ જૂથ કાયમી છે, તેથી તેને સંપાદિત અથવા કાઢી શકાતું નથી. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", + // "admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the \"assign roles\" tab on the edit {{comcol}} page. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.workflowGroup": "આ જૂથને સંપાદિત અથવા કાઢી શકાતું નથી કારણ કે તે {{name}} {{comcol}} માં સબમિશન અને વર્કફ્લો પ્રક્રિયામાં ભૂમિકા સાથે મેળ ખાતું છે. તમે તેને {{comcolEditRolesRoute}} પૃષ્ઠના સંપાદન {{comcol}} પર ભૂમિકા સોંપો ટેબમાંથી કાઢી શકો છો. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", + // "admin.access-control.groups.form.head.create": "Create group", "admin.access-control.groups.form.head.create": "જૂથ બનાવો", + // "admin.access-control.groups.form.head.edit": "Edit group", "admin.access-control.groups.form.head.edit": "જૂથ સંપાદિત કરો", + // "admin.access-control.groups.form.groupName": "Group name", "admin.access-control.groups.form.groupName": "જૂથનું નામ", + // "admin.access-control.groups.form.groupCommunity": "Community or Collection", "admin.access-control.groups.form.groupCommunity": "સમુદાય અથવા સંગ્રહ", + // "admin.access-control.groups.form.groupDescription": "Description", "admin.access-control.groups.form.groupDescription": "વર્ણન", + // "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.success": "સફળતાપૂર્વક જૂથ {{name}} બનાવ્યું", + // "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.failure": "જૂથ {{name}} બનાવવામાં નિષ્ફળ", - "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "જૂથ {{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.", + // TODO New key - Add a translation + "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.edited.failure": "Failed to edit Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.failure": "જૂથ {{name}} સંપાદિત કરવામાં નિષ્ફળ", + // "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!", "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "નામ {{name}} પહેલેથી જ વપરાય છે!", + // "admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.success": "સફળતાપૂર્વક જૂથ {{name}} સંપાદિત કર્યું", + // "admin.access-control.groups.form.actions.delete": "Delete Group", "admin.access-control.groups.form.actions.delete": "જૂથ કાઢી નાખો", + // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "જૂથ {{ dsoName }} કાઢી નાખો", + // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", "admin.access-control.groups.form.delete-group.modal.info": "શું તમે ખરેખર જૂથ {{ dsoName }} કાઢી નાખવા માંગો છો?", + // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", "admin.access-control.groups.form.delete-group.modal.cancel": "રદ કરો", + // "admin.access-control.groups.form.delete-group.modal.confirm": "Delete", "admin.access-control.groups.form.delete-group.modal.confirm": "કાઢી નાખો", + // "admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{ name }} કાઢી નાખ્યું", + // "admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.failure.title": "જૂથ {{ name }} કાઢી નાખવામાં નિષ્ફળ", - "admin.access-control.groups.form.notification.deleted.failure.content": "કારણ: {{ cause }}", + // "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + // TODO New key - Add a translation + "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + // "admin.access-control.groups.form.members-list.head": "EPeople", "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": "EPeople ઉમેરો", + // "admin.access-control.groups.form.members-list.button.see-all": "Browse All", "admin.access-control.groups.form.members-list.button.see-all": "બધા બ્રાઉઝ કરો", + // "admin.access-control.groups.form.members-list.headMembers": "Current Members", "admin.access-control.groups.form.members-list.headMembers": "વર્તમાન સભ્યો", + // "admin.access-control.groups.form.members-list.search.button": "Search", "admin.access-control.groups.form.members-list.search.button": "શોધો", + // "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": "નામ", + // "admin.access-control.groups.form.members-list.table.identity": "Identity", "admin.access-control.groups.form.members-list.table.identity": "ઓળખ", + // "admin.access-control.groups.form.members-list.table.email": "Email", "admin.access-control.groups.form.members-list.table.email": "ઇમેઇલ", + // "admin.access-control.groups.form.members-list.table.netid": "NetID", "admin.access-control.groups.form.members-list.table.netid": "NetID", + // "admin.access-control.groups.form.members-list.table.edit": "Remove / Add", "admin.access-control.groups.form.members-list.table.edit": "દૂર કરો / ઉમેરો", + // "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": "{{name}} નામના સભ્યને દૂર કરો", - "admin.access-control.groups.form.members-list.notification.success.addMember": "સફળતાપૂર્વક {{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": "Successfully added member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.failure.addMember": "{{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": "Failed to add member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.success.deleteMember": "સફળતાપૂર્વક {{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": "Successfully deleted member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "{{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": "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": "{{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": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", + // "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": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", + // "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search", "admin.access-control.groups.form.members-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", - "admin.access-control.groups.form.subgroups-list.notification.failure": "કંઈક ખોટું થયું: {{cause}}", + // "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + // TODO New key - Add a translation + "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + // "admin.access-control.groups.form.subgroups-list.head": "Groups", "admin.access-control.groups.form.subgroups-list.head": "જૂથો", + // "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup", "admin.access-control.groups.form.subgroups-list.search.head": "સબગ્રુપ ઉમેરો", + // "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All", "admin.access-control.groups.form.subgroups-list.button.see-all": "બધા બ્રાઉઝ કરો", + // "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups", "admin.access-control.groups.form.subgroups-list.headSubgroups": "વર્તમાન સબગ્રુપ્સ", + // "admin.access-control.groups.form.subgroups-list.search.button": "Search", "admin.access-control.groups.form.subgroups-list.search.button": "શોધો", + // "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": "નામ", + // "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", + // "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add", "admin.access-control.groups.form.subgroups-list.table.edit": "દૂર કરો / ઉમેરો", + // "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": "{{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": "{{name}} નામના સબગ્રુપને ઉમેરો", - "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "સફળતાપૂર્વક {{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": "Successfully added subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "{{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": "Failed to add subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "સફળતાપૂર્વક {{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": "Successfully deleted subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "{{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": "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": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", + // "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": "આ વર્તમાન જૂથ છે, તેને ઉમેરવામાં નથી.", + // "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": "આ નામ અથવા 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": "જૂથમાં હજી સુધી કોઈ સબગ્રુપ્સ નથી.", + // "admin.access-control.groups.form.return": "Back", "admin.access-control.groups.form.return": "પાછા", + // "admin.quality-assurance.breadcrumbs": "Quality Assurance", "admin.quality-assurance.breadcrumbs": "ગુણવત્તા ખાતરી", + // "admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions", "admin.notifications.event.breadcrumbs": "ગુણવત્તા ખાતરી સૂચનો", + // "admin.notifications.event.page.title": "Quality Assurance Suggestions", "admin.notifications.event.page.title": "ગુણવત્તા ખાતરી સૂચનો", + // "admin.quality-assurance.page.title": "Quality Assurance", "admin.quality-assurance.page.title": "ગુણવત્તા ખાતરી", + // "admin.notifications.source.breadcrumbs": "Quality Assurance", "admin.notifications.source.breadcrumbs": "ગુણવત્તા ખાતરી", - "admin.access-control.groups.form.tooltip.editGroupPage": "આ પૃષ્ઠ પર, તમે જૂથની ગુણધર્મો અને સભ્યોને ફેરફાર કરી શકો છો. ટોચના વિભાગમાં, તમે જૂથનું નામ અને વર્ણન સંપાદિત કરી શકો છો, જો કે આ સંગ્રહ અથવા સમુદાય માટેનું એડમિન જૂથ હોય, તો જૂથનું નામ અને વર્ણન આપમેળે જનરેટ થાય છે અને તેને સંપાદિત કરી શકાતું નથી. નીચેના વિભાગોમાં, તમે જૂથ સભ્યતાને ફેરફાર કરી શકો છો. વધુ વિગતો માટે [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) જુઓ.", + // "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "આ જૂથમાં EPerson ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને વપરાશકર્તાઓને શોધો (શોધ બારની ડાબી બાજુના ડ્રોપડાઉનનો ઉપયોગ કરીને મેટાડેટા અથવા ઇમેઇલ દ્વારા શોધવાનું પસંદ કરો). પછી નીચેની યાદીમાં દરેક વપરાશકર્તા માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક વપરાશકર્તા માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", + // "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "આ જૂથમાં સબગ્રુપ ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને જૂથોને શોધો. પછી નીચેની યાદીમાં દરેક જૂથ માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક જૂથ માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", + // "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // "admin.reports.collections.title": "Collection Filter Report", "admin.reports.collections.title": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + // "admin.reports.collections.breadcrumbs": "Collection Filter Report", "admin.reports.collections.breadcrumbs": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + // "admin.reports.collections.head": "Collection Filter Report", "admin.reports.collections.head": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + // "admin.reports.button.show-collections": "Show Collections", "admin.reports.button.show-collections": "સંગ્રહો બતાવો", + // "admin.reports.collections.collections-report": "Collection Report", "admin.reports.collections.collections-report": "સંગ્રહ રિપોર્ટ", + // "admin.reports.collections.item-results": "Item Results", "admin.reports.collections.item-results": "આઇટમ પરિણામો", + // "admin.reports.collections.community": "Community", "admin.reports.collections.community": "સમુદાય", + // "admin.reports.collections.collection": "Collection", "admin.reports.collections.collection": "સંગ્રહ", + // "admin.reports.collections.nb_items": "Nb. Items", "admin.reports.collections.nb_items": "આઇટમ્સની સંખ્યા", + // "admin.reports.collections.match_all_selected_filters": "Matching all selected filters", "admin.reports.collections.match_all_selected_filters": "બધા પસંદ કરેલ ફિલ્ટર્સ સાથે મેળ ખાતું", + // "admin.reports.items.breadcrumbs": "Metadata Query Report", "admin.reports.items.breadcrumbs": "મેટાડેટા ક્વેરી રિપોર્ટ", + // "admin.reports.items.head": "Metadata Query Report", "admin.reports.items.head": "મેટાડેટા ક્વેરી રિપોર્ટ", + // "admin.reports.items.run": "Run Item Query", "admin.reports.items.run": "આઇટમ ક્વેરી ચલાવો", + // "admin.reports.items.section.collectionSelector": "Collection Selector", "admin.reports.items.section.collectionSelector": "સંગ્રહ પસંદગીકાર", + // "admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries", "admin.reports.items.section.metadataFieldQueries": "મેટાડેટા ફીલ્ડ ક્વેરીઝ", + // "admin.reports.items.predefinedQueries": "Predefined Queries", "admin.reports.items.predefinedQueries": "પૂર્વનિર્ધારિત ક્વેરીઝ", + // "admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries", "admin.reports.items.section.limitPaginateQueries": "ક્વેરીઝ મર્યાદિત/પેજિનેટ", + // "admin.reports.items.limit": "Limit/", "admin.reports.items.limit": "મર્યાદા/", + // "admin.reports.items.offset": "Offset", "admin.reports.items.offset": "ઓફસેટ", + // "admin.reports.items.wholeRepo": "Whole Repository", "admin.reports.items.wholeRepo": "સંપૂર્ણ રિપોઝિટરી", + // "admin.reports.items.anyField": "Any field", "admin.reports.items.anyField": "કોઈપણ ફીલ્ડ", + // "admin.reports.items.predicate.exists": "exists", "admin.reports.items.predicate.exists": "અસ્તિત્વમાં છે", + // "admin.reports.items.predicate.doesNotExist": "does not exist", "admin.reports.items.predicate.doesNotExist": "અસ્તિત્વમાં નથી", + // "admin.reports.items.predicate.equals": "equals", "admin.reports.items.predicate.equals": "સમાન છે", + // "admin.reports.items.predicate.doesNotEqual": "does not equal", "admin.reports.items.predicate.doesNotEqual": "સમાન નથી", + // "admin.reports.items.predicate.like": "like", "admin.reports.items.predicate.like": "માટે", + // "admin.reports.items.predicate.notLike": "not like", "admin.reports.items.predicate.notLike": "માટે નથી", + // "admin.reports.items.predicate.contains": "contains", "admin.reports.items.predicate.contains": "સમાવે છે", + // "admin.reports.items.predicate.doesNotContain": "does not contain", "admin.reports.items.predicate.doesNotContain": "સમાવિષ્ટ નથી", + // "admin.reports.items.predicate.matches": "matches", "admin.reports.items.predicate.matches": "મેળ ખાતું", + // "admin.reports.items.predicate.doesNotMatch": "does not match", "admin.reports.items.predicate.doesNotMatch": "મેળ ખાતું નથી", + // "admin.reports.items.preset.new": "New Query", "admin.reports.items.preset.new": "નવી ક્વેરી", + // "admin.reports.items.preset.hasNoTitle": "Has No Title", "admin.reports.items.preset.hasNoTitle": "કોઈ શીર્ષક નથી", + // "admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri", "admin.reports.items.preset.hasNoIdentifierUri": "કોઈ dc.identifier.uri નથી", + // "admin.reports.items.preset.hasCompoundSubject": "Has compound subject", "admin.reports.items.preset.hasCompoundSubject": "સંયુક્ત વિષય ધરાવે છે", + // "admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author", "admin.reports.items.preset.hasCompoundAuthor": "સંયુક્ત dc.contributor.author ધરાવે છે", + // "admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator", "admin.reports.items.preset.hasCompoundCreator": "સંયુક્ત dc.creator ધરાવે છે", + // "admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description", "admin.reports.items.preset.hasUrlInDescription": "dc.description માં URL ધરાવે છે", + // "admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance", "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance માં સંપૂર્ણ લખાણ ધરાવે છે", + // "admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance", "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance માં નોન-ફુલ ટેક્સ્ટ ધરાવે છે", + // "admin.reports.items.preset.hasEmptyMetadata": "Has empty metadata", "admin.reports.items.preset.hasEmptyMetadata": "ખાલી મેટાડેટા ધરાવે છે", + // "admin.reports.items.preset.hasUnbreakingDataInDescription": "Has unbreaking metadata in description", "admin.reports.items.preset.hasUnbreakingDataInDescription": "વર્ણન માં અનબ્રેકિંગ મેટાડેટા ધરાવે છે", + // "admin.reports.items.preset.hasXmlEntityInMetadata": "Has XML entity in metadata", "admin.reports.items.preset.hasXmlEntityInMetadata": "મેટાડેટા માં XML એન્ટિટી ધરાવે છે", + // "admin.reports.items.preset.hasNonAsciiCharInMetadata": "Has non-ascii character in metadata", "admin.reports.items.preset.hasNonAsciiCharInMetadata": "મેટાડેટા માં નોન-ASCII કૅરેક્ટર ધરાવે છે", + // "admin.reports.items.number": "No.", "admin.reports.items.number": "નંબર", + // "admin.reports.items.id": "UUID", "admin.reports.items.id": "UUID", + // "admin.reports.items.collection": "Collection", "admin.reports.items.collection": "સંગ્રહ", + // "admin.reports.items.handle": "URI", "admin.reports.items.handle": "URI", + // "admin.reports.items.title": "Title", "admin.reports.items.title": "શીર્ષક", + // "admin.reports.commons.filters": "Filters", "admin.reports.commons.filters": "ફિલ્ટર્સ", + // "admin.reports.commons.additional-data": "Additional data to return", "admin.reports.commons.additional-data": "વધારાની માહિતી પરત કરો", + // "admin.reports.commons.previous-page": "Prev Page", "admin.reports.commons.previous-page": "પાછલા પૃષ્ઠ", + // "admin.reports.commons.next-page": "Next Page", "admin.reports.commons.next-page": "આગલા પૃષ્ઠ", + // "admin.reports.commons.page": "Page", "admin.reports.commons.page": "પૃષ્ઠ", + // "admin.reports.commons.of": "of", "admin.reports.commons.of": "ના", + // "admin.reports.commons.export": "Export for Metadata Update", "admin.reports.commons.export": "મેટાડેટા અપડેટ માટે નિકાસ કરો", + // "admin.reports.commons.filters.deselect_all": "Deselect all filters", "admin.reports.commons.filters.deselect_all": "બધા ફિલ્ટર્સ દૂર કરો", + // "admin.reports.commons.filters.select_all": "Select all filters", "admin.reports.commons.filters.select_all": "બધા ફિલ્ટર્સ પસંદ કરો", + // "admin.reports.commons.filters.matches_all": "Matches all specified filters", "admin.reports.commons.filters.matches_all": "બધા નિર્દિષ્ટ ફિલ્ટર્સ સાથે મેળ ખાતું", + // "admin.reports.commons.filters.property": "Item Property Filters", "admin.reports.commons.filters.property": "આઇટમ પ્રોપર્ટી ફિલ્ટર્સ", + // "admin.reports.commons.filters.property.is_item": "Is Item - always true", "admin.reports.commons.filters.property.is_item": "આઇટમ છે - હંમેશા સાચું", + // "admin.reports.commons.filters.property.is_withdrawn": "Withdrawn Items", "admin.reports.commons.filters.property.is_withdrawn": "વિથડ્રોન આઇટમ્સ", + // "admin.reports.commons.filters.property.is_not_withdrawn": "Available Items - Not Withdrawn", "admin.reports.commons.filters.property.is_not_withdrawn": "ઉપલબ્ધ આઇટમ્સ - વિથડ્રોન નથી", + // "admin.reports.commons.filters.property.is_discoverable": "Discoverable Items - Not Private", "admin.reports.commons.filters.property.is_discoverable": "ડિસ્કવરેબલ આઇટમ્સ - પ્રાઇવેટ નથી", + // "admin.reports.commons.filters.property.is_not_discoverable": "Not Discoverable - Private Item", "admin.reports.commons.filters.property.is_not_discoverable": "ડિસ્કવરેબલ નથી - પ્રાઇવેટ આઇટમ", + // "admin.reports.commons.filters.bitstream": "Basic Bitstream Filters", "admin.reports.commons.filters.bitstream": "મૂળ બિટસ્ટ્રીમ ફિલ્ટર્સ", + // "admin.reports.commons.filters.bitstream.has_multiple_originals": "Item has Multiple Original Bitstreams", "admin.reports.commons.filters.bitstream.has_multiple_originals": "આઇટમમાં અનેક મૂળ બિટસ્ટ્રીમ્સ છે", + // "admin.reports.commons.filters.bitstream.has_no_originals": "Item has No Original Bitstreams", "admin.reports.commons.filters.bitstream.has_no_originals": "આઇટમમાં કોઈ મૂળ બિટસ્ટ્રીમ્સ નથી", + // "admin.reports.commons.filters.bitstream.has_one_original": "Item has One Original Bitstream", "admin.reports.commons.filters.bitstream.has_one_original": "આઇટમમાં એક મૂળ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", + // TODO New key - Add a translation + "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", + + // "admin.reports.commons.filters.bitstream_mime.has_doc_original": "Item has a Doc Original Bitstream (PDF, Office, Text, HTML, XML, etc)", "admin.reports.commons.filters.bitstream_mime.has_doc_original": "આઇટમમાં ડોક્યુમેન્ટ ઓરિજિનલ બિટસ્ટ્રીમ છે (PDF, Office, Text, HTML, XML, વગેરે)", + // "admin.reports.commons.filters.bitstream_mime.has_image_original": "Item has an Image Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_image_original": "આઇટમમાં ઇમેજ ઓરિજિનલ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "Has Other Bitstream Types (not Doc or Image)", "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "અન્ય બિટસ્ટ્રીમ પ્રકારો ધરાવે છે (ડોક્યુમેન્ટ અથવા ઇમેજ નથી)", + // "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "Item has multiple types of Original Bitstreams (Doc, Image, Other)", "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "આઇટમમાં ઓરિજિનલ બિટસ્ટ્રીમના અનેક પ્રકારો છે (ડોક્યુમેન્ટ, ઇમેજ, અન્ય)", + // "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "Item has a PDF Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "આઇટમમાં PDF ઓરિજિનલ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "Item has JPG Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "આઇટમમાં JPG ઓરિજિનલ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "Has unusually small PDF", "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "અસામાન્ય રીતે નાનું PDF ધરાવે છે", + // "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "Has unusually large PDF", "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "અસામાન્ય રીતે મોટું PDF ધરાવે છે", + // "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "Has document bitstream without TEXT item", "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "ટેક્સ્ટ આઇટમ વિના ડોક્યુમેન્ટ બિટસ્ટ્રીમ ધરાવે છે", + // "admin.reports.commons.filters.mime": "Supported MIME Type Filters", "admin.reports.commons.filters.mime": "સપોર્ટેડ MIME પ્રકાર ફિલ્ટર્સ", + // "admin.reports.commons.filters.mime.has_only_supp_image_type": "Item Image Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_image_type": "આઇટમ ઇમેજ બિટસ્ટ્રીમ્સ સપોર્ટેડ છે", + // "admin.reports.commons.filters.mime.has_unsupp_image_type": "Item has Image Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_image_type": "આઇટમમાં અસપોર્ટેડ ઇમેજ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.mime.has_only_supp_doc_type": "Item Document Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_doc_type": "આઇટમ ડોક્યુમેન્ટ બિટસ્ટ્રીમ્સ સપોર્ટેડ છે", + // "admin.reports.commons.filters.mime.has_unsupp_doc_type": "Item has Document Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_doc_type": "આઇટમમાં અસપોર્ટેડ ડોક્યુમેન્ટ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.bundle": "Bitstream Bundle Filters", "admin.reports.commons.filters.bundle": "બિટસ્ટ્રીમ બંડલ ફિલ્ટર્સ", + // "admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle", "admin.reports.commons.filters.bundle.has_unsupported_bundle": "અસપોર્ટેડ બંડલમાં બિટસ્ટ્રીમ ધરાવે છે", + // "admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail", "admin.reports.commons.filters.bundle.has_small_thumbnail": "અસામાન્ય રીતે નાનું થંબનેલ ધરાવે છે", + // "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail", "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "થંબનેલ વિના ઓરિજિનલ બિટસ્ટ્રીમ ધરાવે છે", + // "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)", "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "અમાન્ય થંબનેલ નામ ધરાવે છે (દરેક ઓરિજિનલ માટે એક થંબનેલ માન્ય છે)", + // "admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail", "admin.reports.commons.filters.bundle.has_non_generated_thumb": "જેનરેટ ન થયેલું થંબનેલ ધરાવે છે", + // "admin.reports.commons.filters.bundle.no_license": "Doesn't have a license", "admin.reports.commons.filters.bundle.no_license": "લાઇસન્સ નથી", + // "admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle", "admin.reports.commons.filters.bundle.has_license_documentation": "લાઇસન્સ બંડલમાં દસ્તાવેજીકરણ ધરાવે છે", + // "admin.reports.commons.filters.permission": "Permission Filters", "admin.reports.commons.filters.permission": "પરમિશન ફિલ્ટર્સ", + // "admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream", "admin.reports.commons.filters.permission.has_restricted_original": "આઇટમમાં પ્રતિબંધિત ઓરિજિનલ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "આઇટમમાં ઓછામાં ઓછું એક ઓરિજિનલ બિટસ્ટ્રીમ છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", + // "admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail", "admin.reports.commons.filters.permission.has_restricted_thumbnail": "આઇટમમાં પ્રતિબંધિત થંબનેલ છે", + // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "આઇટમમાં ઓછામાં ઓછું એક થંબનેલ છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", + // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", "admin.reports.commons.filters.permission.has_restricted_metadata": "આઇટમમાં પ્રતિબંધિત મેટાડેટા છે", + // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "આઇટમમાં મેટાડેટા છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", + // "admin.search.breadcrumbs": "Administrative Search", "admin.search.breadcrumbs": "વહીવટી શોધ", + // "admin.search.collection.edit": "Edit", "admin.search.collection.edit": "સંપાદિત કરો", + // "admin.search.community.edit": "Edit", "admin.search.community.edit": "સંપાદિત કરો", + // "admin.search.item.delete": "Delete", "admin.search.item.delete": "કાઢી નાખો", + // "admin.search.item.edit": "Edit", "admin.search.item.edit": "સંપાદિત કરો", + // "admin.search.item.make-private": "Make non-discoverable", "admin.search.item.make-private": "અપ્રકાશિત બનાવો", + // "admin.search.item.make-public": "Make discoverable", "admin.search.item.make-public": "પ્રકાશિત બનાવો", + // "admin.search.item.move": "Move", "admin.search.item.move": "ખસેડો", + // "admin.search.item.reinstate": "Reinstate", "admin.search.item.reinstate": "ફરી સ્થાપિત કરો", + // "admin.search.item.withdraw": "Withdraw", "admin.search.item.withdraw": "પાછું ખેંચો", + // "admin.search.title": "Administrative Search", "admin.search.title": "વહીવટી શોધ", + // "administrativeView.search.results.head": "Administrative Search", "administrativeView.search.results.head": "વહીવટી શોધ", + // "admin.workflow.breadcrumbs": "Administer Workflow", "admin.workflow.breadcrumbs": "વર્કફ્લો વહીવટ", + // "admin.workflow.title": "Administer Workflow", "admin.workflow.title": "વર્કફ્લો વહીવટ", + // "admin.workflow.item.workflow": "Workflow", "admin.workflow.item.workflow": "વર્કફ્લો", + // "admin.workflow.item.workspace": "Workspace", "admin.workflow.item.workspace": "વર્કસ્પેસ", + // "admin.workflow.item.delete": "Delete", "admin.workflow.item.delete": "કાઢી નાખો", + // "admin.workflow.item.send-back": "Send back", "admin.workflow.item.send-back": "પાછું મોકલો", + // "admin.workflow.item.policies": "Policies", "admin.workflow.item.policies": "પોલિસી", + // "admin.workflow.item.supervision": "Supervision", "admin.workflow.item.supervision": "સુપરવિઝન", + // "admin.metadata-import.breadcrumbs": "Import Metadata", "admin.metadata-import.breadcrumbs": "મેટાડેટા આયાત", + // "admin.batch-import.breadcrumbs": "Import Batch", "admin.batch-import.breadcrumbs": "બેચ આયાત", + // "admin.metadata-import.title": "Import Metadata", "admin.metadata-import.title": "મેટાડેટા આયાત", + // "admin.batch-import.title": "Import Batch", "admin.batch-import.title": "બેચ આયાત", + // "admin.metadata-import.page.header": "Import Metadata", "admin.metadata-import.page.header": "મેટાડેટા આયાત", + // "admin.batch-import.page.header": "Import Batch", "admin.batch-import.page.header": "બેચ આયાત", + // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "તમે અહીં બેચ મેટાડેટા ઓપરેશન્સ ધરાવતી CSV ફાઇલો ડ્રોપ અથવા બ્રાઉઝ કરી શકો છો", + // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", "admin.batch-import.page.help": "આયાત કરવા માટે સંગ્રહ પસંદ કરો. પછી, SAF ઝિપ ફાઇલ ડ્રોપ અથવા બ્રાઉઝ કરો જેમાં આયાત કરવા માટેની આઇટમ્સ શામેલ છે", + // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", "admin.batch-import.page.toggle.help": "આયાત ફાઇલ અપલોડ અથવા URL દ્વારા કરી શકાય છે, ઇનપુટ સોર્સ સેટ કરવા માટે ઉપરના ટૉગલનો ઉપયોગ કરો", + // "admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import", "admin.metadata-import.page.dropMsg": "મેટાડેટા CSV આયાત કરવા માટે ડ્રોપ કરો", + // "admin.batch-import.page.dropMsg": "Drop a batch ZIP to import", "admin.batch-import.page.dropMsg": "બેચ ઝિપ આયાત કરવા માટે ડ્રોપ કરો", + // "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import", "admin.metadata-import.page.dropMsgReplace": "મેટાડેટા CSV આયાત કરવા માટે બદલો", + // "admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import", "admin.batch-import.page.dropMsgReplace": "બેચ ઝિપ આયાત કરવા માટે બદલો", + // "admin.metadata-import.page.button.return": "Back", "admin.metadata-import.page.button.return": "પાછા", + // "admin.metadata-import.page.button.proceed": "Proceed", "admin.metadata-import.page.button.proceed": "આગળ વધો", + // "admin.metadata-import.page.button.select-collection": "Select Collection", "admin.metadata-import.page.button.select-collection": "સંગ્રહ પસંદ કરો", + // "admin.metadata-import.page.error.addFile": "Select file first!", "admin.metadata-import.page.error.addFile": "પ્રથમ ફાઇલ પસંદ કરો!", + // "admin.metadata-import.page.error.addFileUrl": "Insert file URL first!", "admin.metadata-import.page.error.addFileUrl": "પ્રથમ ફાઇલ URL દાખલ કરો!", + // "admin.batch-import.page.error.addFile": "Select ZIP file first!", "admin.batch-import.page.error.addFile": "પ્રથમ ઝિપ ફાઇલ પસંદ કરો!", + // "admin.metadata-import.page.toggle.upload": "Upload", "admin.metadata-import.page.toggle.upload": "અપલોડ", + // "admin.metadata-import.page.toggle.url": "URL", "admin.metadata-import.page.toggle.url": "URL", + // "admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import", "admin.metadata-import.page.urlMsg": "આયાત કરવા માટે બેચ ઝિપ URL દાખલ કરો", + // "admin.metadata-import.page.validateOnly": "Validate Only", "admin.metadata-import.page.validateOnly": "માત્ર માન્ય કરો", + // "admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.metadata-import.page.validateOnly.hint": "જ્યારે પસંદ કરેલ હોય, ત્યારે અપલોડ કરેલ CSV માન્ય કરવામાં આવશે. તમને શોધાયેલા ફેરફારોનો અહેવાલ મળશે, પરંતુ કોઈ ફેરફારો સાચવવામાં આવશે નહીં.", + // "advanced-workflow-action.rating.form.rating.label": "Rating", "advanced-workflow-action.rating.form.rating.label": "રેટિંગ", + // "advanced-workflow-action.rating.form.rating.error": "You must rate the item", "advanced-workflow-action.rating.form.rating.error": "તમે આઇટમને રેટ કરવું જ જોઈએ", + // "advanced-workflow-action.rating.form.review.label": "Review", "advanced-workflow-action.rating.form.review.label": "સમીક્ષા", + // "advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating", "advanced-workflow-action.rating.form.review.error": "આ રેટિંગ સબમિટ કરવા માટે તમારે સમીક્ષા દાખલ કરવી જ જોઈએ", + // "advanced-workflow-action.rating.description": "Please select a rating below", "advanced-workflow-action.rating.description": "કૃપા કરીને નીચે રેટિંગ પસંદ કરો", + // "advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review", "advanced-workflow-action.rating.description-requiredDescription": "કૃપા કરીને નીચે રેટિંગ પસંદ કરો અને સમીક્ષા ઉમેરો", + // "advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting", "advanced-workflow-action.select-reviewer.description-single": "સબમિટ કરતા પહેલા કૃપા કરીને નીચે એક રિવ્યુઅર પસંદ કરો", + // "advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting", "advanced-workflow-action.select-reviewer.description-multiple": "સબમિટ કરતા પહેલા કૃપા કરીને એક અથવા વધુ રિવ્યુઅર્સ પસંદ કરો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "EPeople ઉમેરો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "બધા બ્રાઉઝ કરો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "વર્તમાન સભ્યો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "શોધો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "નામ", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ઓળખ", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ઇમેઇલ", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "દૂર કરો / ઉમેરો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "{{name}} નામના સભ્યને દૂર કરો", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "સફળતાપૂર્વક {{name}} સભ્ય ઉમેર્યું", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "{{name}} સભ્ય ઉમેરવામાં નિષ્ફળ", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "સફળતાપૂર્વક {{name}} સભ્ય કાઢી નાખ્યું", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "{{name}} સભ્ય કાઢી નાખવામાં નિષ્ફળ", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "{{name}} નામના સભ્યને ઉમેરો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", + // "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.", "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "કોઈ રિવ્યુઅર પસંદ કરેલ નથી.", + // "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.batch-import.page.validateOnly.hint": "જ્યારે પસંદ કરેલ હોય, ત્યારે અપલોડ કરેલ ઝિપ માન્ય કરવામાં આવશે. તમને શોધાયેલા ફેરફારોનો અહેવાલ મળશે, પરંતુ કોઈ ફેરફારો સાચવવામાં આવશે નહીં.", + // "admin.batch-import.page.remove": "remove", "admin.batch-import.page.remove": "દૂર કરો", + // "auth.errors.invalid-user": "Invalid email address or password.", "auth.errors.invalid-user": "અમાન્ય ઇમેઇલ સરનામું અથવા પાસવર્ડ.", + // "auth.messages.expired": "Your session has expired. Please log in again.", "auth.messages.expired": "તમારો સત્ર સમાપ્ત થયો છે. કૃપા કરીને ફરી લૉગ ઇન કરો.", + // "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.", "auth.messages.token-refresh-failed": "તમારા સત્ર ટોકનને રિફ્રેશ કરવામાં નિષ્ફળ. કૃપા કરીને ફરી લૉગ ઇન કરો.", + // "bitstream.download.page": "Now downloading {{bitstream}}...", "bitstream.download.page": "હવે {{bitstream}} ડાઉનલોડ કરી રહ્યા છે...", + // "bitstream.download.page.back": "Back", "bitstream.download.page.back": "પાછા", + // "bitstream.edit.authorizations.link": "Edit bitstream's Policies", "bitstream.edit.authorizations.link": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો", + // "bitstream.edit.authorizations.title": "Edit bitstream's Policies", "bitstream.edit.authorizations.title": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો", + // "bitstream.edit.return": "Back", "bitstream.edit.return": "પાછા", - "bitstream.edit.bitstream": "બિટસ્ટ્રીમ: ", + // "bitstream.edit.bitstream": "Bitstream: ", + // TODO New key - Add a translation + "bitstream.edit.bitstream": "Bitstream: ", + // "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".", "bitstream.edit.form.description.hint": "વૈકલ્પિક રીતે, ફાઇલનું સંક્ષિપ્ત વર્ણન પ્રદાન કરો, ઉદાહરણ તરીકે \"મુખ્ય લેખ\" અથવા \"પ્રયોગ ડેટા રીડિંગ્સ\".", + // "bitstream.edit.form.description.label": "Description", "bitstream.edit.form.description.label": "વર્ણન", + // "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.", "bitstream.edit.form.embargo.hint": "પ્રવેશની મંજૂરી આપવામાં આવેલી પ્રથમ તારીખ. આ તારીખને આ ફોર્મ પર ફેરફાર કરી શકાતી નથી. બિટસ્ટ્રીમ માટે એમ્બાર્ગો તારીખ સેટ કરવા માટે, આઇટમ સ્ટેટસ ટેબ પર જાઓ, અધિકૃતતા... ક્લિક કરો, બિટસ્ટ્રીમની READ પોલિસી બનાવો અથવા સંપાદિત કરો, અને ઇચ્છિત પ્રારંભ તારીખ સેટ કરો.", + // "bitstream.edit.form.embargo.label": "Embargo until specific date", "bitstream.edit.form.embargo.label": "વિશિષ્ટ તારીખ સુધી એમ્બાર્ગો", + // "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": "બિટસ્ટ્રીમ માટે ફાઇલનું નામ બદલો. નોંધો કે આ બિટસ્ટ્રીમ URLને પ્રદર્શિત કરશે, પરંતુ જૂના લિંક્સ હજી પણ ઉકેલશે જો ક્રમ ID બદલાતું નથી.", + // "bitstream.edit.form.fileName.label": "Filename", "bitstream.edit.form.fileName.label": "ફાઇલનું નામ", + // "bitstream.edit.form.newFormat.label": "Describe new format", "bitstream.edit.form.newFormat.label": "નવું ફોર્મેટ વર્ણવો", + // "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"ACMESoft SuperApp version 1.5\").", "bitstream.edit.form.newFormat.hint": "ફાઇલ બનાવવા માટે તમે જે એપ્લિકેશનનો ઉપયોગ કર્યો છે, અને સંસ્કરણ નંબર (ઉદાહરણ તરીકે, \"ACMESoft SuperApp version 1.5\").", + // "bitstream.edit.form.primaryBitstream.label": "Primary File", "bitstream.edit.form.primaryBitstream.label": "પ્રાથમિક ફાઇલ", + // "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, select \"format not in list\" above and describe it under \"Describe new format\".", "bitstream.edit.form.selectedFormat.hint": "જો ફોર્મેટ ઉપરની યાદીમાં નથી, ઉપર \"યાદીમાં ફોર્મેટ નથી\" પસંદ કરો અને \"નવું ફોર્મેટ વર્ણવો\" હેઠળ તેને વર્ણવો.", + // "bitstream.edit.form.selectedFormat.label": "Selected Format", "bitstream.edit.form.selectedFormat.label": "પસંદ કરેલ ફોર્મેટ", + // "bitstream.edit.form.selectedFormat.unknown": "Format not in list", "bitstream.edit.form.selectedFormat.unknown": "યાદીમાં ફોર્મેટ નથી", + // "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format", "bitstream.edit.notifications.error.format.title": "બિટસ્ટ્રીમના ફોર્મેટને સાચવવામાં ભૂલ આવી", + // "bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream", "bitstream.edit.notifications.error.primaryBitstream.title": "પ્રાથમિક બિટસ્ટ્રીમને સાચવવામાં ભૂલ આવી", + // "bitstream.edit.form.iiifLabel.label": "IIIF Label", "bitstream.edit.form.iiifLabel.label": "IIIF લેબલ", + // "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.", "bitstream.edit.form.iiifLabel.hint": "આ છબી માટે કેનવાસ લેબલ. જો પ્રદાન ન કરવામાં આવે તો ડિફોલ્ટ લેબલનો ઉપયોગ કરવામાં આવશે.", + // "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents", "bitstream.edit.form.iiifToc.label": "IIIF ટેબલ ઓફ કન્ટેન્ટ્સ", + // "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.", "bitstream.edit.form.iiifToc.hint": "અહીં ટેક્સ્ટ ઉમેરવાથી આ નવું ટેબલ ઓફ કન્ટેન્ટ્સ રેન્જનું પ્રારંભ બને છે.", + // "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width", "bitstream.edit.form.iiifWidth.label": "IIIF કેનવાસ પહોળાઈ", + // "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.", "bitstream.edit.form.iiifWidth.hint": "કેનવાસની પહોળાઈ સામાન્ય રીતે છબીની પહોળાઈ સાથે મેળ ખાતી હોવી જોઈએ.", + // "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height", "bitstream.edit.form.iiifHeight.label": "IIIF કેનવાસ ઊંચાઈ", + // "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.", "bitstream.edit.form.iiifHeight.hint": "કેનવાસની ઊંચાઈ સામાન્ય રીતે છબીની ઊંચાઈ સાથે મેળ ખાતી હોવી જોઈએ.", + // "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.", "bitstream.edit.notifications.saved.content": "આ બિટસ્ટ્રીમ માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", + // "bitstream.edit.notifications.saved.title": "Bitstream saved", "bitstream.edit.notifications.saved.title": "બિટસ્ટ્રીમ સાચવ્યું", + // "bitstream.edit.title": "Edit bitstream", "bitstream.edit.title": "બિટસ્ટ્રીમ સંપાદિત કરો", + // "bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ", "bitstream-request-a-copy.alert.canDownload1": "તમને આ ફાઇલ ઍક્સેસ કરવાની મંજૂરી છે. જો તમે ફાઇલ ડાઉનલોડ કરવા માંગો છો, તો ક્લિક કરો ", + // "bitstream-request-a-copy.alert.canDownload2": "here", "bitstream-request-a-copy.alert.canDownload2": "અહીં", + // "bitstream-request-a-copy.header": "Request a copy of the file", "bitstream-request-a-copy.header": "ફાઇલની નકલ માટે વિનંતી કરો", - "bitstream-request-a-copy.intro": "નીચેની માહિતી દાખલ કરો જેથી નીચેના આઇટમ માટે નકલની વિનંતી કરી શકાય: ", + // "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", + // TODO New key - Add a translation + "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", - "bitstream-request-a-copy.intro.bitstream.one": "નીચેની ફાઇલ માટે વિનંતી કરી રહ્યા છે: ", + // "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + // TODO New key - Add a translation + "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + // "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ", "bitstream-request-a-copy.intro.bitstream.all": "બધી ફાઇલો માટે વિનંતી કરી રહ્યા છે. ", + // "bitstream-request-a-copy.name.label": "Name *", "bitstream-request-a-copy.name.label": "નામ *", + // "bitstream-request-a-copy.name.error": "The name is required", "bitstream-request-a-copy.name.error": "નામ જરૂરી છે", + // "bitstream-request-a-copy.email.label": "Your email address *", "bitstream-request-a-copy.email.label": "તમારું ઇમેઇલ સરનામું *", + // "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.", "bitstream-request-a-copy.email.hint": "આ ઇમેઇલ સરનામું ફાઇલ મોકલવા માટે વપરાય છે.", + // "bitstream-request-a-copy.email.error": "Please enter a valid email address.", "bitstream-request-a-copy.email.error": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું દાખલ કરો.", + // "bitstream-request-a-copy.allfiles.label": "Files", "bitstream-request-a-copy.allfiles.label": "ફાઇલો", + // "bitstream-request-a-copy.files-all-false.label": "Only the requested file", "bitstream-request-a-copy.files-all-false.label": "માત્ર વિનંતી કરેલ ફાઇલ", + // "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access", "bitstream-request-a-copy.files-all-true.label": "આઇટમની બધી ફાઇલો (પ્રતિબંધિત ઍક્સેસમાં)", + // "bitstream-request-a-copy.message.label": "Message", "bitstream-request-a-copy.message.label": "સંદેશ", + // "bitstream-request-a-copy.return": "Back", "bitstream-request-a-copy.return": "પાછા", + // "bitstream-request-a-copy.submit": "Request copy", "bitstream-request-a-copy.submit": "નકલ માટે વિનંતી કરો", + // "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.", "bitstream-request-a-copy.submit.success": "આઇટમ વિનંતી સફળતાપૂર્વક સબમિટ કરવામાં આવી.", + // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "આઇટમ વિનંતી સબમિટ કરતી વખતે કંઈક ખોટું થયું.", + // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", "bitstream-request-a-copy.access-by-token.warning": "તમે આ આઇટમને સુરક્ષિત ઍક્સેસ લિંક દ્વારા જોઈ રહ્યા છો જે તમને લેખક અથવા રિપોઝિટરી સ્ટાફ દ્વારા પ્રદાન કરવામાં આવી છે. આ લિંકને અનધિકૃત વપરાશકર્તાઓ સાથે શેર ન કરવું મહત્વપૂર્ણ છે.", + // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", "bitstream-request-a-copy.access-by-token.expiry-label": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ સમાપ્ત થશે", + // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", "bitstream-request-a-copy.access-by-token.expired": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ હવે શક્ય નથી. ઍક્સેસ સમાપ્ત થઈ ગઈ છે", + // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", "bitstream-request-a-copy.access-by-token.not-granted": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ શક્ય નથી. ઍક્સેસ είτε મંજુર કરવામાં આવી નથી, είτε રદ કરવામાં આવી છે.", + // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", "bitstream-request-a-copy.access-by-token.re-request": "ઍક્સેસ માટે નવી વિનંતી સબમિટ કરવા માટે પ્રતિબંધિત ડાઉનલોડ લિંક્સને અનુસરો.", + // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", "bitstream-request-a-copy.access-by-token.alt-text": "આ આઇટમ માટે ઍક્સેસ સુરક્ષિત ટોકન દ્વારા પ્રદાન કરવામાં આવે છે", + // "browse.back.all-results": "All browse results", "browse.back.all-results": "બધા બ્રાઉઝ પરિણામો", + // "browse.comcol.by.author": "By Author", "browse.comcol.by.author": "લેખક દ્વારા", + // "browse.comcol.by.dateissued": "By Issue Date", "browse.comcol.by.dateissued": "પ્રકાશન તારીખ દ્વારા", + // "browse.comcol.by.subject": "By Subject", "browse.comcol.by.subject": "વિષય દ્વારા", + // "browse.comcol.by.srsc": "By Subject Category", "browse.comcol.by.srsc": "વિષય શ્રેણી દ્વારા", + // "browse.comcol.by.nsi": "By Norwegian Science Index", "browse.comcol.by.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા", + // "browse.comcol.by.title": "By Title", "browse.comcol.by.title": "શીર્ષક દ્વારા", + // "browse.comcol.head": "Browse", "browse.comcol.head": "બ્રાઉઝ", + // "browse.empty": "No items to show.", "browse.empty": "બતાવવા માટે કોઈ આઇટમ્સ નથી.", + // "browse.metadata.author": "Author", "browse.metadata.author": "લેખક", + // "browse.metadata.dateissued": "Issue Date", "browse.metadata.dateissued": "પ્રકાશન તારીખ", + // "browse.metadata.subject": "Subject", "browse.metadata.subject": "વિષય", + // "browse.metadata.title": "Title", "browse.metadata.title": "શીર્ષક", + // "browse.metadata.srsc": "Subject Category", "browse.metadata.srsc": "વિષય શ્રેણી", + // "browse.metadata.author.breadcrumbs": "Browse by Author", "browse.metadata.author.breadcrumbs": "લેખક દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.dateissued.breadcrumbs": "Browse by Date", "browse.metadata.dateissued.breadcrumbs": "તારીખ દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.subject.breadcrumbs": "Browse by Subject", "browse.metadata.subject.breadcrumbs": "વિષય દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.srsc.breadcrumbs": "Browse by Subject Category", "browse.metadata.srsc.breadcrumbs": "વિષય શ્રેણી દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.srsc.tree.description": "Select a subject to add as search filter", "browse.metadata.srsc.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", + // "browse.metadata.nsi.breadcrumbs": "Browse by Norwegian Science Index", "browse.metadata.nsi.breadcrumbs": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.nsi.tree.description": "Select an index to add as search filter", "browse.metadata.nsi.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે ઇન્ડેક્સ પસંદ કરો", + // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "શીર્ષક દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.map": "Browse by Geolocation", "browse.metadata.map": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", "browse.metadata.map.breadcrumbs": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.map.count.items": "items", "browse.metadata.map.count.items": "આઇટમ્સ", + // "pagination.next.button": "Next", "pagination.next.button": "આગલું", + // "pagination.previous.button": "Previous", "pagination.previous.button": "પાછલું", + // "pagination.next.button.disabled.tooltip": "No more pages of results", "pagination.next.button.disabled.tooltip": "કોઈ વધુ પૃષ્ઠો નથી", - "pagination.page-number-bar": "પૃષ્ઠ નેવિગેશન માટે કંટ્રોલ બાર, ID સાથેના તત્વ માટે: ", + // "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + // TODO New key - Add a translation + "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + // "browse.startsWith": ", starting with {{ startsWith }}", "browse.startsWith": ", {{ startsWith }} થી શરૂ થાય છે", + // "browse.startsWith.choose_start": "(Choose start)", "browse.startsWith.choose_start": "(શરૂઆત પસંદ કરો)", + // "browse.startsWith.choose_year": "(Choose year)", "browse.startsWith.choose_year": "(વર્ષ પસંદ કરો)", + // "browse.startsWith.choose_year.label": "Choose the issue year", "browse.startsWith.choose_year.label": "પ્રકાશન વર્ષ પસંદ કરો", + // "browse.startsWith.jump": "Filter results by year or month", "browse.startsWith.jump": "વર્ષ અથવા મહિના દ્વારા પરિણામો ફિલ્ટર કરો", + // "browse.startsWith.months.april": "April", "browse.startsWith.months.april": "એપ્રિલ", + // "browse.startsWith.months.august": "August", "browse.startsWith.months.august": "ઑગસ્ટ", + // "browse.startsWith.months.december": "December", "browse.startsWith.months.december": "ડિસેમ્બર", + // "browse.startsWith.months.february": "February", "browse.startsWith.months.february": "ફેબ્રુઆરી", + // "browse.startsWith.months.january": "January", "browse.startsWith.months.january": "જાન્યુઆરી", + // "browse.startsWith.months.july": "July", "browse.startsWith.months.july": "જુલાઈ", + // "browse.startsWith.months.june": "June", "browse.startsWith.months.june": "જૂન", + // "browse.startsWith.months.march": "March", "browse.startsWith.months.march": "માર્ચ", + // "browse.startsWith.months.may": "May", "browse.startsWith.months.may": "મે", + // "browse.startsWith.months.none": "(Choose month)", "browse.startsWith.months.none": "(મહિનો પસંદ કરો)", + // "browse.startsWith.months.none.label": "Choose the issue month", "browse.startsWith.months.none.label": "પ્રકાશન મહિનો પસંદ કરો", + // "browse.startsWith.months.november": "November", "browse.startsWith.months.november": "નવેમ્બર", + // "browse.startsWith.months.october": "October", "browse.startsWith.months.october": "ઑક્ટોબર", + // "browse.startsWith.months.september": "September", "browse.startsWith.months.september": "સપ્ટેમ્બર", + // "browse.startsWith.submit": "Browse", "browse.startsWith.submit": "બ્રાઉઝ", + // "browse.startsWith.type_date": "Filter results by date", "browse.startsWith.type_date": "તારીખ દ્વારા પરિણામો ફિલ્ટર કરો", + // "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button", "browse.startsWith.type_date.label": "અથવા તારીખ (વર્ષ-મહિનો) દાખલ કરો અને બ્રાઉઝ બટન પર ક્લિક કરો", + // "browse.startsWith.type_text": "Filter results by typing the first few letters", "browse.startsWith.type_text": "પ્રથમ થોડા અક્ષરો ટાઇપ કરીને પરિણામો ફિલ્ટર કરો", + // "browse.startsWith.input": "Filter", "browse.startsWith.input": "ફિલ્ટર", + // "browse.taxonomy.button": "Browse", "browse.taxonomy.button": "બ્રાઉઝ", + // "browse.title": "Browsing by {{ field }}{{ startsWith }} {{ value }}", "browse.title": "{{ field }}{{ startsWith }} {{ value }} દ્વારા બ્રાઉઝિંગ", + // "browse.title.page": "Browsing by {{ field }} {{ value }}", "browse.title.page": "{{ field }} {{ value }} દ્વારા બ્રાઉઝિંગ", + // "search.browse.item-back": "Back to Results", "search.browse.item-back": "પરિણામો પર પાછા જાઓ", + // "chips.remove": "Remove chip", "chips.remove": "ચિપ દૂર કરો", + // "claimed-approved-search-result-list-element.title": "Approved", "claimed-approved-search-result-list-element.title": "મંજૂર", + // "claimed-declined-search-result-list-element.title": "Rejected, sent back to submitter", "claimed-declined-search-result-list-element.title": "નકારવામાં આવ્યું, સબમિટરને પાછું મોકલવામાં આવ્યું", + // "claimed-declined-task-search-result-list-element.title": "Declined, sent back to Review Manager's workflow", "claimed-declined-task-search-result-list-element.title": "નકારવામાં આવ્યું, રિવ્યુ મેનેજરના વર્કફ્લો પર પાછું મોકલવામાં આવ્યું", + // "collection.create.breadcrumbs": "Create collection", "collection.create.breadcrumbs": "સંગ્રહ બનાવો", + // "collection.browse.logo": "Browse for a collection logo", "collection.browse.logo": "સંગ્રહ લોગો માટે બ્રાઉઝ કરો", + // "collection.create.head": "Create a Collection", "collection.create.head": "સંગ્રહ બનાવો", + // "collection.create.notifications.success": "Successfully created the collection", "collection.create.notifications.success": "સંગ્રહ સફળતાપૂર્વક બનાવવામાં આવ્યો", + // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", "collection.create.sub-head": "સમુદાય {{ parent }} માટે સંગ્રહ બનાવો", - "collection.curate.header": "સંગ્રહ ક્યુરેટ કરો: {{collection}}", + // "collection.curate.header": "Curate Collection: {{collection}}", + // TODO New key - Add a translation + "collection.curate.header": "Curate Collection: {{collection}}", + // "collection.delete.cancel": "Cancel", "collection.delete.cancel": "રદ કરો", + // "collection.delete.confirm": "Confirm", "collection.delete.confirm": "ખાતરી કરો", + // "collection.delete.processing": "Deleting", "collection.delete.processing": "કાઢી રહ્યા છે", + // "collection.delete.head": "Delete Collection", "collection.delete.head": "સંગ્રહ કાઢી નાખો", + // "collection.delete.notification.fail": "Collection could not be deleted", "collection.delete.notification.fail": "સંગ્રહ કાઢી શકાતો નથી", + // "collection.delete.notification.success": "Successfully deleted collection", "collection.delete.notification.success": "સંગ્રહ સફળતાપૂર્વક કાઢી નાખ્યો", + // "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"", "collection.delete.text": "શું તમે ખરેખર સંગ્રહ \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", + // "collection.edit.delete": "Delete this collection", "collection.edit.delete": "આ સંગ્રહ કાઢી નાખો", + // "collection.edit.head": "Edit Collection", "collection.edit.head": "સંગ્રહ સંપાદિત કરો", + // "collection.edit.breadcrumbs": "Edit Collection", "collection.edit.breadcrumbs": "સંગ્રહ સંપાદિત કરો", + // "collection.edit.tabs.mapper.head": "Item Mapper", "collection.edit.tabs.mapper.head": "આઇટમ મેપર", + // "collection.edit.tabs.item-mapper.title": "Collection Edit - Item Mapper", "collection.edit.tabs.item-mapper.title": "સંગ્રહ સંપાદન - આઇટમ મેપર", + // "collection.edit.item-mapper.cancel": "Cancel", "collection.edit.item-mapper.cancel": "રદ કરો", - "collection.edit.item-mapper.collection": "સંગ્રહ: \\\"{{name}}\\\"", + // "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + // TODO New key - Add a translation + "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + // "collection.edit.item-mapper.confirm": "Map selected items", "collection.edit.item-mapper.confirm": "પસંદ કરેલ આઇટમ્સ મેપ કરો", + // "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.", "collection.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે સંગ્રહ વહીવટકર્તાઓને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરવાની મંજૂરી આપે છે. તમે અન્ય સંગ્રહોમાંથી આઇટમ્સ શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા હાલમાં મેપ કરેલ આઇટમ્સની યાદી બ્રાઉઝ કરી શકો છો.", + // "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections", "collection.edit.item-mapper.head": "આઇટમ મેપર - અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરો", + // "collection.edit.item-mapper.no-search": "Please enter a query to search", "collection.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", + // "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.", "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} આઇટમ્સના મેપિંગ માટે ભૂલો આવી.", + // "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors", "collection.edit.item-mapper.notifications.map.error.head": "મેપિંગ ભૂલો", + // "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.", "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} આઇટમ્સ સફળતાપૂર્વક મેપ કરવામાં આવ્યા.", + // "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed", "collection.edit.item-mapper.notifications.map.success.head": "મેપિંગ પૂર્ણ", + // "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} આઇટમ્સના મેપિંગ દૂર કરતી વખતે ભૂલો આવી.", + // "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors", "collection.edit.item-mapper.notifications.unmap.error.head": "મેપિંગ દૂર કરવાની ભૂલો", + // "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} આઇટમ્સના મેપિંગ સફળતાપૂર્વક દૂર કરવામાં આવ્યા.", + // "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed", "collection.edit.item-mapper.notifications.unmap.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", + // "collection.edit.item-mapper.remove": "Remove selected item mappings", "collection.edit.item-mapper.remove": "પસંદ કરેલ આઇટમ મેપિંગ્સ દૂર કરો", + // "collection.edit.item-mapper.search-form.placeholder": "Search items...", "collection.edit.item-mapper.search-form.placeholder": "આઇટમ્સ શોધો...", + // "collection.edit.item-mapper.tabs.browse": "Browse mapped items", "collection.edit.item-mapper.tabs.browse": "મેપ કરેલ આઇટમ્સ બ્રાઉઝ કરો", + // "collection.edit.item-mapper.tabs.map": "Map new items", "collection.edit.item-mapper.tabs.map": "નવા આઇટમ્સ મેપ કરો", + // "collection.edit.logo.delete.title": "Delete logo", "collection.edit.logo.delete.title": "લોગો કાઢી નાખો", + // "collection.edit.logo.delete-undo.title": "Undo delete", "collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "સંગ્રહ લોગો", + // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", "collection.edit.logo.notifications.add.error": "સંગ્રહ લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", + // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", "collection.edit.logo.notifications.add.success": "સંગ્રહ લોગો સફળતાપૂર્વક અપલોડ થયો.", + // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", "collection.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", + // "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo", "collection.edit.logo.notifications.delete.success.content": "સંગ્રહનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", + // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", + // "collection.edit.logo.upload": "Drop a collection logo to upload", "collection.edit.logo.upload": "અપલોડ કરવા માટે સંગ્રહ લોગો ડ્રોપ કરો", + // "collection.edit.notifications.success": "Successfully edited the collection", "collection.edit.notifications.success": "સંગ્રહ સફળતાપૂર્વક સંપાદિત કર્યો", + // "collection.edit.return": "Back", "collection.edit.return": "પાછા", + // "collection.edit.tabs.access-control.head": "Access Control", "collection.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", + // "collection.edit.tabs.access-control.title": "Collection Edit - Access Control", "collection.edit.tabs.access-control.title": "સંગ્રહ સંપાદન - ઍક્સેસ કંટ્રોલ", + // "collection.edit.tabs.curate.head": "Curate", "collection.edit.tabs.curate.head": "ક્યુરેટ", + // "collection.edit.tabs.curate.title": "Collection Edit - Curate", "collection.edit.tabs.curate.title": "સંગ્રહ સંપાદન - ક્યુરેટ", + // "collection.edit.tabs.authorizations.head": "Authorizations", "collection.edit.tabs.authorizations.head": "અધિકૃતતા", + // "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations", "collection.edit.tabs.authorizations.title": "સંગ્રહ સંપાદન - અધિકૃતતા", + // "collection.edit.item.authorizations.load-bundle-button": "Load more bundles", "collection.edit.item.authorizations.load-bundle-button": "વધુ બંડલ્સ લોડ કરો", + // "collection.edit.item.authorizations.load-more-button": "Load more", "collection.edit.item.authorizations.load-more-button": "વધુ લોડ કરો", + // "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle", "collection.edit.item.authorizations.show-bitstreams-button": "બંડલ માટે બિટસ્ટ્રીમ પોલિસી બતાવો", + // "collection.edit.tabs.metadata.head": "Edit Metadata", "collection.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", + // "collection.edit.tabs.metadata.title": "Collection Edit - Metadata", "collection.edit.tabs.metadata.title": "સંગ્રહ સંપાદન - મેટાડેટા", + // "collection.edit.tabs.roles.head": "Assign Roles", "collection.edit.tabs.roles.head": "ભૂમિકા સોંપો", + // "collection.edit.tabs.roles.title": "Collection Edit - Roles", "collection.edit.tabs.roles.title": "સંગ્રહ સંપાદન - ભૂમિકા", + // "collection.edit.tabs.source.external": "This collection harvests its content from an external source", "collection.edit.tabs.source.external": "આ સંગ્રહ તેની સામગ્રી બાહ્ય સ્ત્રોતમાંથી હાર્વેસ્ટ કરે છે", + // "collection.edit.tabs.source.form.errors.oaiSource.required": "You must provide a set id of the target collection.", "collection.edit.tabs.source.form.errors.oaiSource.required": "તમારે લક્ષ્ય સંગ્રહનો સેટ id પ્રદાન કરવો જ જોઈએ.", + // "collection.edit.tabs.source.form.harvestType": "Content being harvested", "collection.edit.tabs.source.form.harvestType": "હાર્વેસ્ટ થતી સામગ્રી", + // "collection.edit.tabs.source.form.head": "Configure an external source", "collection.edit.tabs.source.form.head": "બાહ્ય સ્ત્રોત કૉન્ફિગર કરો", + // "collection.edit.tabs.source.form.metadataConfigId": "Metadata Format", "collection.edit.tabs.source.form.metadataConfigId": "મેટાડેટા ફોર્મેટ", + // "collection.edit.tabs.source.form.oaiSetId": "OAI specific set id", "collection.edit.tabs.source.form.oaiSetId": "OAI વિશિષ્ટ સેટ id", + // "collection.edit.tabs.source.form.oaiSource": "OAI Provider", "collection.edit.tabs.source.form.oaiSource": "OAI પ્રદાતા", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Harvest metadata and bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "મેટાડેટા અને બિટસ્ટ્રીમ્સ હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Harvest metadata and references to bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "મેટાડેટા અને બિટસ્ટ્રીમ્સના સંદર્ભો હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Harvest metadata only", "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "મેટાડેટા માત્ર હાર્વેસ્ટ કરો", + // "collection.edit.tabs.source.head": "Content Source", "collection.edit.tabs.source.head": "સામગ્રી સ્ત્રોત", + // "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "collection.edit.tabs.source.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + // "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded", "collection.edit.tabs.source.notifications.discarded.title": "ફેરફારો રદ", + // "collection.edit.tabs.source.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "collection.edit.tabs.source.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", + // "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid", "collection.edit.tabs.source.notifications.invalid.title": "મેટાડેટા અમાન્ય", + // "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.", "collection.edit.tabs.source.notifications.saved.content": "આ સંગ્રહના સામગ્રી સ્ત્રોત માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", + // "collection.edit.tabs.source.notifications.saved.title": "Content Source saved", "collection.edit.tabs.source.notifications.saved.title": "સામગ્રી સ્ત્રોત સાચવ્યું", + // "collection.edit.tabs.source.title": "Collection Edit - Content Source", "collection.edit.tabs.source.title": "સંગ્રહ સંપાદન - સામગ્રી સ્ત્રોત", + // "collection.edit.template.add-button": "Add", "collection.edit.template.add-button": "ઉમેરો", + // "collection.edit.template.breadcrumbs": "Item template", "collection.edit.template.breadcrumbs": "આઇટમ ટેમ્પલેટ", + // "collection.edit.template.cancel": "Cancel", "collection.edit.template.cancel": "રદ કરો", + // "collection.edit.template.delete-button": "Delete", "collection.edit.template.delete-button": "કાઢી નાખો", + // "collection.edit.template.edit-button": "Edit", "collection.edit.template.edit-button": "સંપાદિત કરો", + // "collection.edit.template.error": "An error occurred retrieving the template item", "collection.edit.template.error": "ટેમ્પલેટ આઇટમ મેળવતી વખતે ભૂલ આવી", + // "collection.edit.template.head": "Edit Template Item for Collection \"{{ collection }}\"", "collection.edit.template.head": "સંગ્રહ \\\"{{ collection }}\\\" માટે ટેમ્પલેટ આઇટમ સંપાદિત કરો", + // "collection.edit.template.label": "Template item", "collection.edit.template.label": "ટેમ્પલેટ આઇટમ", + // "collection.edit.template.loading": "Loading template item...", "collection.edit.template.loading": "ટેમ્પલેટ આઇટમ લોડ કરી રહ્યું છે...", + // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "આઇટમ ટેમ્પલેટ કાઢી નાખવામાં નિષ્ફળ", + // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", "collection.edit.template.notifications.delete.success": "આઇટમ ટેમ્પલેટ સફળતાપૂર્વક કાઢી નાખ્યું", + // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "ટેમ્પલેટ આઇટમ સંપાદિત કરો", + // "collection.form.abstract": "Short Description", "collection.form.abstract": "સંક્ષિપ્ત વર્ણન", + // "collection.form.description": "Introductory text (HTML)", "collection.form.description": "પરિચયાત્મક લખાણ (HTML)", + // "collection.form.errors.title.required": "Please enter a collection name", "collection.form.errors.title.required": "કૃપા કરીને સંગ્રહનું નામ દાખલ કરો", + // "collection.form.license": "License", "collection.form.license": "લાઇસન્સ", + // "collection.form.provenance": "Provenance", "collection.form.provenance": "પ્રૂવનન્સ", + // "collection.form.rights": "Copyright text (HTML)", "collection.form.rights": "કૉપિરાઇટ લખાણ (HTML)", + // "collection.form.tableofcontents": "News (HTML)", "collection.form.tableofcontents": "સમાચાર (HTML)", + // "collection.form.title": "Name", "collection.form.title": "નામ", - "collection.form.entityType": "સત્તા પ્રકાર", - - "collection.listelement.badge": "સંગ્રહ", - - "collection.logo": "સંગ્રહ લોગો", - - "collection.page.browse.search.head": "શોધો", - - "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", - - "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", - - "collection.page.license": "લાઇસન્સ", - - "collection.page.news": "સમાચાર", - - "collection.page.options": "વિકલ્પો", - - "collection.search.breadcrumbs": "શોધો", - - "collection.search.results.head": "શોધ પરિણામો", - - "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", - - "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", - - "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", - - "collection.select.table.select": "સંગ્રહ પસંદ કરો", - - "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", - - "collection.select.table.title": "શીર્ષક", - - "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", - - "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", - - "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", - - "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", - - "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", - - "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - - "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "collection.source.controls.import.submit": "હવે આયાત કરો", - - "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", - - "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", - - "collection.source.controls.import.completed": "આયાત પૂર્ણ", - - "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - - "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "bitstream-request-a-copy.submit": "નકલ માટે વિનંતી કરો", - - "bitstream-request-a-copy.submit.success": "આઇટમ વિનંતી સફળતાપૂર્વક સબમિટ કરવામાં આવી.", - - "bitstream-request-a-copy.submit.error": "આઇટમ વિનંતી સબમિટ કરતી વખતે કંઈક ખોટું થયું.", - - "bitstream-request-a-copy.access-by-token.warning": "તમે આ આઇટમને સુરક્ષિત ઍક્સેસ લિંક દ્વારા જોઈ રહ્યા છો જે તમને લેખક અથવા રિપોઝિટરી સ્ટાફ દ્વારા પ્રદાન કરવામાં આવી છે. આ લિંકને અનધિકૃત વપરાશકર્તાઓ સાથે શેર ન કરવું મહત્વપૂર્ણ છે.", - - "bitstream-request-a-copy.access-by-token.expiry-label": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ સમાપ્ત થશે", - - "bitstream-request-a-copy.access-by-token.expired": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ હવે શક્ય નથી. ઍક્સેસ સમાપ્ત થઈ ગઈ છે", - - "bitstream-request-a-copy.access-by-token.not-granted": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ શક્ય નથી. ઍક્સેસ είτε મંજુર કરવામાં આવી નથી, είτε રદ કરવામાં આવી છે.", - - "bitstream-request-a-copy.access-by-token.re-request": "ઍક્સેસ માટે નવી વિનંતી સબમિટ કરવા માટે પ્રતિબંધિત ડાઉનલોડ લિંક્સને અનુસરો.", - - "bitstream-request-a-copy.access-by-token.alt-text": "આ આઇટમ માટે ઍક્સેસ સુરક્ષિત ટોકન દ્વારા પ્રદાન કરવામાં આવે છે", - - "browse.back.all-results": "બધા બ્રાઉઝ પરિણામો", - - "browse.comcol.by.author": "લેખક દ્વારા", - - "browse.comcol.by.dateissued": "પ્રકાશન તારીખ દ્વારા", - - "browse.comcol.by.subject": "વિષય દ્વારા", - - "browse.comcol.by.srsc": "વિષય શ્રેણી દ્વારા", - - "browse.comcol.by.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા", - - "browse.comcol.by.title": "શીર્ષક દ્વારા", - - "browse.comcol.head": "બ્રાઉઝ", - - "browse.empty": "બતાવવા માટે કોઈ આઇટમ્સ નથી.", - - "browse.metadata.author": "લેખક", - - "browse.metadata.dateissued": "પ્રકાશન તારીખ", - - "browse.metadata.subject": "વિષય", - - "browse.metadata.title": "શીર્ષક", - - "browse.metadata.srsc": "વિષય શ્રેણી", - - "browse.metadata.author.breadcrumbs": "લેખક દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.dateissued.breadcrumbs": "તારીખ દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.subject.breadcrumbs": "વિષય દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.srsc.breadcrumbs": "વિષય શ્રેણી દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.srsc.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", - - "browse.metadata.nsi.breadcrumbs": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.nsi.tree.description": "શોધ ફિલ્ટર તરીકે ઇન્ડેક્સ પસંદ કરો", - - "browse.metadata.title.breadcrumbs": "શીર્ષક દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.map": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.map.breadcrumbs": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.map.count.items": "આઇટમ્સ", - - "pagination.next.button": "આગલું", - - "pagination.previous.button": "પાછલું", - - "pagination.next.button.disabled.tooltip": "કોઈ વધુ પૃષ્ઠો નથી", - - "pagination.page-number-bar": "પૃષ્ઠ નેવિગેશન માટે કંટ્રોલ બાર, ID સાથેના તત્વ માટે: ", - - "browse.startsWith": ", {{ startsWith }} થી શરૂ થાય છે", - - "browse.startsWith.choose_start": "(શરૂઆત પસંદ કરો)", - - "browse.startsWith.choose_year": "(વર્ષ પસંદ કરો)", - - "browse.startsWith.choose_year.label": "પ્રકાશન વર્ષ પસંદ કરો", - - "browse.startsWith.jump": "વર્ષ અથવા મહિના દ્વારા પરિણામો ફિલ્ટર કરો", - - "browse.startsWith.months.april": "એપ્રિલ", - - "browse.startsWith.months.august": "ઑગસ્ટ", - - "browse.startsWith.months.december": "ડિસેમ્બર", - - "browse.startsWith.months.february": "ફેબ્રુઆરી", - - "browse.startsWith.months.january": "જાન્યુઆરી", - - "browse.startsWith.months.july": "જુલાઈ", - - "browse.startsWith.months.june": "જૂન", - - "browse.startsWith.months.march": "માર્ચ", - - "browse.startsWith.months.may": "મે", - - "browse.startsWith.months.none": "(મહિનો પસંદ કરો)", - - "browse.startsWith.months.none.label": "પ્રકાશન મહિનો પસંદ કરો", - - "browse.startsWith.months.november": "નવેમ્બર", - - "browse.startsWith.months.october": "ઑક્ટોબર", - - "browse.startsWith.months.september": "સપ્ટેમ્બર", - - "browse.startsWith.submit": "બ્રાઉઝ", - - "browse.startsWith.type_date": "તારીખ દ્વારા પરિણામો ફિલ્ટર કરો", - - "browse.startsWith.type_date.label": "અથવા તારીખ (વર્ષ-મહિનો) દાખલ કરો અને બ્રાઉઝ બટન પર ક્લિક કરો", - - "browse.startsWith.type_text": "પ્રથમ થોડા અક્ષરો ટાઇપ કરીને પરિણામો ફિલ્ટર કરો", - - "browse.startsWith.input": "ફિલ્ટર", - - "browse.taxonomy.button": "બ્રાઉઝ", - - "browse.title": "{{ field }}{{ startsWith }} {{ value }} દ્વારા બ્રાઉઝિંગ", - - "browse.title.page": "{{ field }} {{ value }} દ્વારા બ્રાઉઝિંગ", - - "search.browse.item-back": "પરિણામો પર પાછા જાઓ", - - "chips.remove": "ચિપ દૂર કરો", - - "claimed-approved-search-result-list-element.title": "મંજૂર", - - "claimed-declined-search-result-list-element.title": "નકારવામાં આવ્યું, સબમિટરને પાછું મોકલવામાં આવ્યું", - - "claimed-declined-task-search-result-list-element.title": "નકારવામાં આવ્યું, રિવ્યુ મેનેજરના વર્કફ્લો પર પાછું મોકલવામાં આવ્યું", - - "collection.create.breadcrumbs": "સંગ્રહ બનાવો", - - "collection.browse.logo": "સંગ્રહ લોગો માટે બ્રાઉઝ કરો", - - "collection.create.head": "સંગ્રહ બનાવો", - - "collection.create.notifications.success": "સંગ્રહ સફળતાપૂર્વક બનાવવામાં આવ્યો", - - "collection.create.sub-head": "સમુદાય {{ parent }} માટે સંગ્રહ બનાવો", - - "collection.curate.header": "સંગ્રહ ક્યુરેટ કરો: {{collection}}", - - "collection.delete.cancel": "રદ કરો", - - "collection.delete.confirm": "ખાતરી કરો", - - "collection.delete.processing": "કાઢી રહ્યા છે", - - "collection.delete.head": "સંગ્રહ કાઢી નાખો", - - "collection.delete.notification.fail": "સંગ્રહ કાઢી શકાતો નથી", - - "collection.delete.notification.success": "સંગ્રહ સફળતાપૂર્વક કાઢી નાખ્યો", - - "collection.delete.text": "શું તમે ખરેખર સંગ્રહ \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", - - "collection.edit.delete": "આ સંગ્રહ કાઢી નાખો", - - "collection.edit.head": "સંગ્રહ સંપાદિત કરો", - - "collection.edit.breadcrumbs": "સંગ્રહ સંપાદિત કરો", - - "collection.edit.tabs.mapper.head": "આઇટમ મેપર", - - "collection.edit.tabs.item-mapper.title": "સંગ્રહ સંપાદન - આઇટમ મેપર", - - "collection.edit.item-mapper.cancel": "રદ કરો", - - "collection.edit.item-mapper.collection": "સંગ્રહ: \\\"{{name}}\\\"", - - "collection.edit.item-mapper.confirm": "પસંદ કરેલ આઇટમ્સ મેપ કરો", - - "collection.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે સંગ્રહ વહીવટકર્તાઓને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરવાની મંજૂરી આપે છે. તમે અન્ય સંગ્રહોમાંથી આઇટમ્સ શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા હાલમાં મેપ કરેલ આઇટમ્સની યાદી બ્રાઉઝ કરી શકો છો.", - - "collection.edit.item-mapper.head": "આઇટમ મેપર - અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરો", - - "collection.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", - - "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} આઇટમ્સના મેપિંગ માટે ભૂલો આવી.", - - "collection.edit.item-mapper.notifications.map.error.head": "મેપિંગ ભૂલો", - - "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} આઇટમ્સ સફળતાપૂર્વક મેપ કરવામાં આવ્યા.", - - "collection.edit.item-mapper.notifications.map.success.head": "મેપિંગ પૂર્ણ", - - "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} આઇટમ્સના મેપિંગ દૂર કરતી વખતે ભૂલો આવી.", - - "collection.edit.item-mapper.notifications.unmap.error.head": "મેપિંગ દૂર કરવાની ભૂલો", - - "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} આઇટમ્સના મેપિંગ સફળતાપૂર્વક દૂર કરવામાં આવ્યા.", - - "collection.edit.item-mapper.notifications.unmap.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", - - "collection.edit.item-mapper.remove": "પસંદ કરેલ આઇટમ મેપિંગ્સ દૂર કરો", - - "collection.edit.item-mapper.search-form.placeholder": "આઇટમ્સ શોધો...", - - "collection.edit.item-mapper.tabs.browse": "મેપ કરેલ આઇટમ્સ બ્રાઉઝ કરો", - - "collection.edit.item-mapper.tabs.map": "નવા આઇટમ્સ મેપ કરો", - - "collection.edit.logo.delete.title": "લોગો કાઢી નાખો", - - "collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - - "collection.edit.logo.label": "સંગ્રહ લોગો", - - "collection.edit.logo.notifications.add.error": "સંગ્રહ લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", - - "collection.edit.logo.notifications.add.success": "સંગ્રહ લોગો સફળતાપૂર્વક અપલોડ થયો.", - - "collection.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", - - "collection.edit.logo.notifications.delete.success.content": "સંગ્રહનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", - - "collection.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", - - "collection.edit.logo.upload": "અપલોડ કરવા માટે સંગ્રહ લોગો ડ્રોપ કરો", - - "collection.edit.notifications.success": "સંગ્રહ સફળતાપૂર્વક સંપાદિત કર્યો", - - "collection.edit.return": "પાછા", - - "collection.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", - - "collection.edit.tabs.access-control.title": "સંગ્રહ સંપાદન - ઍક્સેસ કંટ્રોલ", - - "collection.edit.tabs.curate.head": "ક્યુરેટ", - - "collection.edit.tabs.curate.title": "સંગ્રહ સંપાદન - ક્યુરેટ", - - "collection.edit.tabs.authorizations.head": "અધિકૃતતા", - - "collection.edit.tabs.authorizations.title": "સંગ્રહ સંપાદન - અધિકૃતતા", - - "collection.edit.item.authorizations.load-bundle-button": "વધુ બંડલ્સ લોડ કરો", - - "collection.edit.item.authorizations.load-more-button": "વધુ લોડ કરો", - - "collection.edit.item.authorizations.show-bitstreams-button": "બંડલ માટે બિટસ્ટ્રીમ પોલિસી બતાવો", - - "collection.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", - - "collection.edit.tabs.metadata.title": "સંગ્રહ સંપાદન - મેટાડેટા", - - "collection.edit.tabs.roles.head": "ભૂમિકા સોંપો", - - "collection.edit.tabs.roles.title": "સંગ્રહ સંપાદન - ભૂમિકા", - - "collection.edit.tabs.source.external": "આ સંગ્રહ તેની સામગ્રી બાહ્ય સ્ત્રોતમાંથી હાર્વેસ્ટ કરે છે", - - "collection.edit.tabs.source.form.errors.oaiSource.required": "તમારે લક્ષ્ય સંગ્રહનો સેટ id પ્રદાન કરવો જ જોઈએ.", - - "collection.edit.tabs.source.form.harvestType": "હાર્વેસ્ટ થતી સામગ્રી", - - "collection.edit.tabs.source.form.head": "બાહ્ય સ્ત્રોત કૉન્ફિગર કરો", - - "collection.edit.tabs.source.form.metadataConfigId": "મેટાડેટા ફોર્મેટ", - - "collection.edit.tabs.source.form.oaiSetId": "OAI વિશિષ્ટ સેટ id", - - "collection.edit.tabs.source.form.oaiSource": "OAI પ્રદાતા", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "મેટાડેટા અને બિટસ્ટ્રીમ્સ હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "મેટાડેટા અને બિટસ્ટ્રીમ્સના સંદર્ભો હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "મેટાડેટા માત્ર હાર્વેસ્ટ કરો", - - "collection.edit.tabs.source.head": "સામગ્રી સ્ત્રોત", - - "collection.edit.tabs.source.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - - "collection.edit.tabs.source.notifications.discarded.title": "ફેરફારો રદ", - - "collection.edit.tabs.source.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", - - "collection.edit.tabs.source.notifications.invalid.title": "મેટાડેટા અમાન્ય", - - "collection.edit.tabs.source.notifications.saved.content": "આ સંગ્રહના સામગ્રી સ્ત્રોત માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", - - "collection.edit.tabs.source.notifications.saved.title": "સામગ્રી સ્ત્રોત સાચવ્યું", - - "collection.edit.tabs.source.title": "સંગ્રહ સંપાદન - સામગ્રી સ્ત્રોત", - - "collection.edit.template.add-button": "ઉમેરો", - - "collection.edit.template.breadcrumbs": "આઇટમ ટેમ્પલેટ", - - "collection.edit.template.cancel": "રદ કરો", - - "collection.edit.template.delete-button": "કાઢી નાખો", - - "collection.edit.template.edit-button": "સંપાદિત કરો", - - "collection.edit.template.error": "ટેમ્પલેટ આઇટમ મેળવતી વખતે ભૂલ આવી", - - "collection.edit.template.head": "સંગ્રહ \\\"{{ collection }}\\\" માટે ટેમ્પલેટ આઇટમ સંપાદિત કરો", - - "collection.edit.template.label": "ટેમ્પલેટ આઇટમ", - - "collection.edit.template.loading": "ટેમ્પલેટ આઇટમ લોડ કરી રહ્યું છે...", - - "collection.edit.template.notifications.delete.error": "આઇટમ ટેમ્પલેટ કાઢી નાખવામાં નિષ્ફળ", - - "collection.edit.template.notifications.delete.success": "આઇટમ ટેમ્પલેટ સફળતાપૂર્વક કાઢી નાખ્યું", - - "collection.edit.template.title": "ટેમ્પલેટ આઇટમ સંપાદિત કરો", - - "collection.form.abstract": "સંક્ષિપ્ત વર્ણન", - - "collection.form.description": "પરિચયાત્મક લખાણ (HTML)", - - "collection.form.errors.title.required": "કૃપા કરીને સંગ્રહનું નામ દાખલ કરો", - - "collection.form.license": "લાઇસન્સ", - - "collection.form.provenance": "પ્રૂવનન્સ", - - "collection.form.rights": "કૉપિરાઇટ લખાણ (HTML)", - - "collection.form.tableofcontents": "સમાચાર (HTML)", - - "collection.form.title": "નામ", - - "collection.form.entityType": "સત્તા પ્રકાર", - - "collection.listelement.badge": "સંગ્રહ", - - "collection.logo": "સંગ્રહ લોગો", - - "collection.page.browse.search.head": "શોધો", - - "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", - - "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", - - "collection.page.license": "લાઇસન્સ", - - "collection.page.news": "સમાચાર", - - "collection.page.options": "વિકલ્પો", - - "collection.search.breadcrumbs": "શોધો", - - "collection.search.results.head": "શોધ પરિણામો", - - "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", - - "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", - - "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", - - "collection.select.table.select": "સંગ્રહ પસંદ કરો", - - "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", - - "collection.select.table.title": "શીર્ષક", - - "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", - - "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", - - "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", - - "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", - - "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", - - "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - - "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "collection.source.controls.import.submit": "હવે આયાત કરો", - - "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", - - "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", - - "collection.source.controls.import.completed": "આયાત પૂર્ણ", - - "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - - "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "collection.source.controls.reset.failed": "રીસેટ અને ફરી આયાત દરમિયાન ભૂલ આવી", - - "collection.source.controls.reset.completed": "રીસેટ અને ફરી આયાત પૂર્ણ", - - "collection.source.controls.reset.submit": "રીસેટ અને ફરી આયાત", - - "collection.source.controls.reset.running": "રીસેટ અને ફરી આયાત કરી રહ્યું છે...", - - "collection.source.controls.harvest.status": "હાર્વેસ્ટ સ્થિતિ:", - - "collection.source.controls.harvest.start": "હાર્વેસ્ટ શરૂ સમય:", - - "collection.source.controls.harvest.last": "છેલ્લો હાર્વેસ્ટ સમય:", - - "collection.source.controls.harvest.message": "હાર્વેસ્ટ માહિતી:", - - "collection.source.controls.harvest.no-information": "N/A", - - "collection.source.update.notifications.error.content": "પ્રદાન કરેલ સેટિંગ્સનું પરીક્ષણ કરવામાં આવ્યું છે અને તે કાર્યરત નથી.", - - "collection.source.update.notifications.error.title": "સર્વર ભૂલ", - - "communityList.breadcrumbs": "સમુદાય યાદી", - - "communityList.tabTitle": "સમુદાય યાદી", - - "communityList.title": "સમુદાયોની યાદી", - - "communityList.showMore": "વધુ બતાવો", - - "communityList.expand": "{{ name }} વિસ્તારો", - - "communityList.collapse": "{{ name }} સંકોચો", - - "community.browse.logo": "સમુદાય લોગો માટે બ્રાઉઝ કરો", - - "community.subcoms-cols.breadcrumbs": "ઉપસમુદાયો અને સંગ્રહો", - - "community.create.breadcrumbs": "સમુદાય બનાવો", - - "community.create.head": "સમુદાય બનાવો", - - "community.create.notifications.success": "સમુદાય સફળતાપૂર્વક બનાવવામાં આવ્યો", - - "community.create.sub-head": "સમુદાય {{ parent }} માટે ઉપસમુદાય બનાવો", - - "community.curate.header": "સમુદાય ક્યુરેટ કરો: {{community}}", - - "community.delete.cancel": "રદ કરો", - - "community.delete.confirm": "ખાતરી કરો", - - "community.delete.processing": "કાઢી રહ્યા છે...", - - "community.delete.head": "સમુદાય કાઢી નાખો", - - "community.delete.notification.fail": "સમુદાય કાઢી શકાતો નથી", - - "community.delete.notification.success": "સમુદાય સફળતાપૂર્વક કાઢી નાખ્યો", - - "community.delete.text": "શું તમે ખરેખર સમુદાય \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", - - "community.edit.delete": "આ સમુદાય કાઢી નાખો", - - "community.edit.head": "સમુદાય સંપાદિત કરો", - - "community.edit.breadcrumbs": "સમુદાય સંપાદિત કરો", - - "community.edit.logo.delete.title": "લોગો કાઢી નાખો", - - "community-collection.edit.logo.delete.title": "કાઢી નાખવું ખાતરી કરો", - - "community.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - - "community-collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - - "community.edit.logo.label": "સમુદાય લોગો", - - "community.edit.logo.notifications.add.error": "સમુદાય લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", - - "community.edit.logo.notifications.add.success": "સમુદાય લોગો સફળતાપૂર્વક અપલોડ થયો.", - - "community.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", - - "community.edit.logo.notifications.delete.success.content": "સમુદાયનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", - - "community.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", - - "community.edit.logo.upload": "અપલોડ કરવા માટે સમુદાય લોગો ડ્રોપ કરો", - - "community.edit.notifications.success": "સમુદાય સફળતાપૂર્વક સંપાદિત કર્યો", - - "community.edit.notifications.unauthorized": "તમને આ ફેરફાર કરવાની પરવાનગી નથી", - - "community.edit.notifications.error": "સમુદાય સંપાદિત કરતી વખતે ભૂલ આવી", - - "community.edit.return": "પાછા", - - "community.edit.tabs.curate.head": "ક્યુરેટ", - - "community.edit.tabs.curate.title": "સમુદાય સંપાદન - ક્યુરેટ", - - "community.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", - - "community.edit.tabs.access-control.title": "સમુદાય સંપાદન - ઍક્સેસ કંટ્રોલ", - - "community.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", - - "community.edit.tabs.metadata.title": "સમુદાય સંપાદન - મેટાડેટા", - - "community.edit.tabs.roles.head": "ભૂમિકા સોંપો", - - "community.edit.tabs.roles.title": "સમુદાય સંપાદન - ભૂમિકા", - - "community.edit.tabs.authorizations.head": "અધિકૃતતા", - - "community.edit.tabs.authorizations.title": "સમુદાય સંપાદન - અધિકૃતતા", - - "community.listelement.badge": "સમુદાય", - - "community.logo": "સમુદાય લોગો", - - "comcol-role.edit.no-group": "કોઈ નથી", - - "comcol-role.edit.create": "બનાવો", - - "comcol-role.edit.create.error.title": "'{{ role }}' ભૂમિકા માટે જૂથ બનાવવામાં નિષ્ફળ", - - "comcol-role.edit.restrict": "પ્રતિબંધિત", - - "comcol-role.edit.delete": "કાઢી નાખો", - - "comcol-role.edit.delete.error.title": "'{{ role }}' ભૂમિકા માટેના જૂથને કાઢી નાખવામાં નિષ્ફળ", - - "comcol-role.edit.community-admin.name": "એડમિનિસ્ટ્રેટર્સ", - - "comcol-role.edit.collection-admin.name": "એડમિનિસ્ટ્રેટર્સ", - - "comcol-role.edit.community-admin.description": "સમુદાય એડમિનિસ્ટ્રેટર્સ ઉપસમુદાયો અથવા સંગ્રહો બનાવી શકે છે, અને તે ઉપસમુદાયો અથવા સંગ્રહો માટે મેનેજમેન્ટ સોંપી શકે છે. ઉપરાંત, તેઓ નક્કી કરે છે કે કોણ ઉપસંગ્રહોમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને અન્ય સંગ્રહોમાંથી (અધિકૃતતા મુજબ) આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે.", - - "comcol-role.edit.collection-admin.description": "સંગ્રહ એડમિનિસ્ટ્રેટર્સ નક્કી કરે છે કે કોણ સંગ્રહમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે (તે સંગ્રહ માટેની અધિકૃતતા મુજબ).", - - "comcol-role.edit.submitters.name": "સબમિટર્સ", - - "comcol-role.edit.submitters.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં નવા આઇટમ્સ સબમિટ કરવાની પરવાનગી છે.", - - "comcol-role.edit.item_read.name": "ડિફોલ્ટ આઇટમ વાંચન ઍક્સેસ", - - "comcol-role.edit.item_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા આઇટમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા આઇટમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", - - "comcol-role.edit.item_read.anonymous-group": "આવતા આઇટમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", - - "comcol-role.edit.bitstream_read.name": "ડિફોલ્ટ બિટસ્ટ્રીમ વાંચન ઍક્સેસ", - - "comcol-role.edit.bitstream_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા બિટસ્ટ્રીમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા બિટસ્ટ્રીમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", - - "comcol-role.edit.bitstream_read.anonymous-group": "આવતા બિટસ્ટ્રીમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", - - "comcol-role.edit.editor.name": "સંપાદકો", - - "comcol-role.edit.editor.description": "સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, અને પછી તેમને સ્વીકારી અથવા નકારી શકે છે.", - - "comcol-role.edit.finaleditor.name": "અંતિમ સંપાદકો", - - "comcol-role.edit.finaleditor.description": "અંતિમ સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, પરંતુ તેમને નકારી શકશે નહીં.", - - "comcol-role.edit.reviewer.name": "રિવ્યુઅર્સ", - - "comcol-role.edit.reviewer.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્વીકારી અથવા નકારી શકે છે. જો કે, તેઓ સબમિશનના મેટાડેટા સંપાદિત કરી શકશે નહીં.", - - "comcol-role.edit.scorereviewers.name": "સ્કોર રિવ્યુઅર્સ", - - "comcol-role.edit.scorereviewers.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્કોર આપી શકે છે, જે નક્કી કરશે કે સબમિશન નકારવામાં આવશે કે નહીં.", - - "community.form.abstract": "સંક્ષિપ્ત વર્ણન", - - "community.form.description": "પરિચયાત્મક લખાણ (HTML)", - - "community.form.errors.title.required": "કૃપા કરીને સમુદાયનું નામ દાખલ કરો", - - "community.form.rights": "કૉપિરાઇટ લખાણ (HTML)", - - "community.form.tableofcontents": "સમાચાર (HTML)", - - "community.form.title": "નામ", - - "community.page.edit": "આ સમુદાય સંપાદિત કરો", - - "community.page.handle": "આ સમુદાય માટે કાયમી URI", - - "community.page.license": "લાઇસન્સ", - - "community.page.news": "સમાચાર", - - "community.page.options": "વિકલ્પો", - - "community.all-lists.head": "ઉપસમુદાયો અને સંગ્રહો", - - "community.search.breadcrumbs": "શોધો", - - "community.search.results.head": "શોધ પરિણામો", - - "community.sub-collection-list.head": "આ સમુદાયમાં સંગ્રહો", - - "community.sub-community-list.head": "આ સમુદાયમાં સમુદાયો", - - "cookies.consent.accept-all": "બધા સ્વીકારો", - - "cookies.consent.accept-selected": "પસંદ કરેલ સ્વીકારો", - - "cookies.consent.app.opt-out.description": "આ એપ્લિકેશન ડિફોલ્ટ દ્વારા લોડ થાય છે (પરંતુ તમે તેને ઓપ્ટ આઉટ કરી શકો છો)", - - "cookies.consent.app.opt-out.title": "(ઓપ્ટ-આઉટ)", - - "cookies.consent.app.purpose": "હેતુ", - - "cookies.consent.app.required.description": "આ એપ્લિકેશન હંમેશા જરૂરી છે", - - "cookies.consent.app.required.title": "(હંમેશા જરૂરી)", - - "cookies.consent.update": "તમારા છેલ્લા મુલાકાત પછી ફેરફારો થયા છે, કૃપા કરીને તમારી સંમતિ અપડેટ કરો.", - - "cookies.consent.close": "બંધ કરો", - - "cookies.consent.decline": "નકારો", - - "cookies.consent.decline-all": "બધા નકારો", - - "cookies.consent.ok": "તે ઠીક છે", - - "cookies.consent.save": "સાચવો", - - "cookies.consent.content-notice.description": "અમે નીચેના હેતુઓ માટે તમારી વ્યક્તિગત માહિતી એકત્રિત અને પ્રક્રિયા કરીએ છીએ: {purposes}", - - "cookies.consent.content-notice.learnMore": "કસ્ટમાઇઝ કરો", - - "cookies.consent.content-modal.description": "અહીં તમે જોઈ શકો છો અને કસ્ટમાઇઝ કરી શકો છો કે અમે તમારા વિશે કઈ માહિતી એકત્રિત કરીએ છીએ.", - - "cookies.consent.content-modal.privacy-policy.name": "ગોપનીયતા નીતિ", - - "cookies.consent.content-modal.privacy-policy.text": "વધુ જાણવા માટે, કૃપા કરીને અમારી {privacyPolicy} વાંચો.", - - "cookies.consent.content-modal.no-privacy-policy.text": "", - - "cookies.consent.content-modal.title": "અમે જે માહિતી એકત્રિત કરીએ છીએ", - - "cookies.consent.app.title.authentication": "પ્રમાણન", - - "cookies.consent.app.description.authentication": "તમને સાઇન ઇન કરવા માટે જરૂરી છે", - - "cookies.consent.app.title.preferences": "પસંદગીઓ", - - "cookies.consent.app.description.preferences": "તમારી પસંદગીઓ સાચવવા માટે જરૂરી છે", - - "cookies.consent.app.title.acknowledgement": "સ્વીકાર", - - "cookies.consent.app.description.acknowledgement": "તમારા સ્વીકાર અને સંમતિઓ સાચવવા માટે જરૂરી છે", - - "cookies.consent.app.title.google-analytics": "Google Analytics", - - "cookies.consent.app.description.google-analytics": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", - - "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", - - "cookies.consent.app.description.google-recaptcha": "અમે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ દરમિયાન Google reCAPTCHA સેવા નો ઉપયોગ કરીએ છીએ", - - "cookies.consent.app.title.matomo": "Matomo", - - "cookies.consent.app.description.matomo": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", - - "cookies.consent.purpose.functional": "કાર્યાત્મક", - - "cookies.consent.purpose.statistical": "આંકડાકીય", - - "cookies.consent.purpose.registration-password-recovery": "નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ", - - "cookies.consent.purpose.sharing": "શેરિંગ", - - "curation-task.task.citationpage.label": "સાઇટેશન પેજ જનરેટ કરો", - - "curation-task.task.checklinks.label": "મેટાડેટામાં લિંક્સ તપાસો", - - "curation-task.task.noop.label": "NOOP", - - "curation-task.task.profileformats.label": "પ્રોફાઇલ બિટસ્ટ્રીમ ફોર્મેટ્સ", - - "curation-task.task.requiredmetadata.label": "જરૂરી મેટાડેટા માટે તપાસો", - - "curation-task.task.translate.label": "Microsoft Translator", - - "curation-task.task.vscan.label": "વાયરસ સ્કેન", - - "curation-task.task.registerdoi.label": "DOI નોંધણી કરો", - - "curation.form.task-select.label": "ટાસ્ક:", - - "curation.form.submit": "શરૂ કરો", - - "curation.form.submit.success.head": "ક્યુરેશન ટાસ્ક સફળતાપૂર્વક શરૂ કરવામાં આવી", - - "curation.form.submit.success.content": "તમને સંબંધિત પ્રક્રિયા પૃષ્ઠ પર રીડાયરેક્ટ કરવામાં આવશે.", - - "curation.form.submit.error.head": "ક્યુરેશન ટાસ્ક ચલાવતી વખતે નિષ્ફળ", + // "collection.form.entityType": "Entity Type", + "collection.form.entityType": "સત્તા પ્રકાર", - "curation.form.submit.error.content": "ક્યુરેશન ટાસ્ક શરૂ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી.", + // "collection.listelement.badge": "Collection", + "collection.listelement.badge": "સંગ્રહ", - "curation.form.submit.error.invalid-handle": "આ ઑબ્જેક્ટ માટે હેન્ડલ નક્કી કરી શક્યો નથી", + // "collection.logo": "Collection logo", + "collection.logo": "સંગ્રહ લોગો", - "curation.form.handle.label": "હેન્ડલ:", + // "collection.page.browse.search.head": "Search", + "collection.page.browse.search.head": "શોધો", - "curation.form.handle.hint": "સૂચન: [તમારા-હેન્ડલ-પ્રિફિક્સ]/0 દાખલ કરો જેથી સમગ્ર સાઇટ પર ટાસ્ક ચલાવી શકાય (બધા ટાસ્ક આ ક્ષમતા સપોર્ટ કરી શકે છે)", + // "collection.page.edit": "Edit this collection", + "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", - "deny-request-copy.email.message": "પ્રિય {{ recipientName }},\\nતમારી વિનંતીનો જવાબ આપતાં મને દુઃખ છે કે હું તમને વિનંતી કરેલ ફાઇલ(ઓ)ની નકલ મોકલી શકું નહીં, દસ્તાવેજ: \\\"{{ itemUrl }}\\\" ({{ itemName }}), જેનો હું લેખક છું.\\n\\nશ્રેષ્ઠ શુભેચ્છાઓ,\\n{{ authorName }} <{{ authorEmail }}>", + // "collection.page.handle": "Permanent URI for this collection", + "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", - "deny-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", + // "collection.page.license": "License", + "collection.page.license": "લાઇસન્સ", - "deny-request-copy.error": "ભૂલ આવી", + // "collection.page.news": "News", + "collection.page.news": "સમાચાર", - "deny-request-copy.header": "દસ્તાવેજની નકલ વિનંતી નકારી", + // "collection.page.options": "Options", + "collection.page.options": "વિકલ્પો", - "deny-request-copy.intro": "આ સંદેશા વિનંતી કરનારને મોકલવામાં આવશે", + // "collection.search.breadcrumbs": "Search", + "collection.search.breadcrumbs": "શોધો", - "deny-request-copy.success": "આઇટમ વિનંતી સફળતાપૂર્વક નકારી", + // "collection.search.results.head": "Search Results", + "collection.search.results.head": "શોધ પરિણામો", - "dynamic-list.load-more": "વધુ લોડ કરો", + // "collection.select.confirm": "Confirm selected", + "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", - "dropdown.clear": "પસંદગી સાફ કરો", + // "collection.select.empty": "No collections to show", + "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", - "dropdown.clear.tooltip": "પસંદ કરેલ વિકલ્પ દૂર કરો", + // "collection.select.table.selected": "Selected collections", + "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", - "dso.name.untitled": "શીર્ષક વિના", + // "collection.select.table.select": "Select collection", + "collection.select.table.select": "સંગ્રહ પસંદ કરો", - "dso.name.unnamed": "નામ વિના", + // "collection.select.table.deselect": "Deselect collection", + "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", - "dso-selector.create.collection.head": "નવો સંગ્રહ", + // "collection.select.table.title": "Title", + "collection.select.table.title": "શીર્ષક", - "dso-selector.create.collection.sub-level": "માં નવો સંગ્રહ બનાવો", + // "collection.source.controls.head": "Harvest Controls", + "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", - "dso-selector.create.community.head": "નવો સમુદાય", + // "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings", + "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", - "dso-selector.create.community.or-divider": "અથવા", + // "collection.source.controls.test.failed": "The script to test the settings has failed", + "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", - "dso-selector.create.community.sub-level": "માં નવો સમુદાય બનાવો", + // "collection.source.controls.test.completed": "The script to test the settings has successfully finished", + "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", - "dso-selector.create.community.top-level": "ટોપ-લેવલ સમુદાય બનાવો", + // "collection.source.controls.test.submit": "Test configuration", + "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", - "dso-selector.create.item.head": "નવું આઇટમ", + // "collection.source.controls.test.running": "Testing configuration...", + "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", - "dso-selector.create.item.sub-level": "માં નવું આઇટમ બનાવો", + // "collection.source.controls.import.submit.success": "The import has been successfully initiated", + "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - "dso-selector.create.submission.head": "નવું સબમિશન", + // "collection.source.controls.import.submit.error": "Something went wrong with initiating the import", + "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", - "dso-selector.edit.collection.head": "સંગ્રહ સંપાદિત કરો", + // "collection.source.controls.import.submit": "Import now", + "collection.source.controls.import.submit": "હવે આયાત કરો", - "dso-selector.edit.community.head": "સમુદાય સંપાદિત કરો", + // "collection.source.controls.import.running": "Importing...", + "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", - "dso-selector.edit.item.head": "આઇટમ સંપાદિત કરો", + // "collection.source.controls.import.failed": "An error occurred during the import", + "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", - "dso-selector.error.title": "{{ type }} માટે શોધ કરતી વખતે ભૂલ આવી", + // "collection.source.controls.import.completed": "The import completed", + "collection.source.controls.import.completed": "આયાત પૂર્ણ", - "dso-selector.export-metadata.dspaceobject.head": "મેટાડેટા નિકાસ કરો", + // "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated", + "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - "dso-selector.export-batch.dspaceobject.head": "બેચ (ZIP) નિકાસ કરો", + // "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport", + "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + // "collection.source.controls.reset.failed": "An error occurred during the reset and reimport", "collection.source.controls.reset.failed": "રીસેટ અને ફરી આયાત દરમિયાન ભૂલ આવી", + // "collection.source.controls.reset.completed": "The reset and reimport completed", "collection.source.controls.reset.completed": "રીસેટ અને ફરી આયાત પૂર્ણ", + // "collection.source.controls.reset.submit": "Reset and reimport", "collection.source.controls.reset.submit": "રીસેટ અને ફરી આયાત", + // "collection.source.controls.reset.running": "Resetting and reimporting...", "collection.source.controls.reset.running": "રીસેટ અને ફરી આયાત કરી રહ્યું છે...", - "collection.source.controls.harvest.status": "હાર્વેસ્ટ સ્થિતિ:", + // "collection.source.controls.harvest.status": "Harvest status:", + // TODO New key - Add a translation + "collection.source.controls.harvest.status": "Harvest status:", - "collection.source.controls.harvest.start": "હાર્વેસ્ટ શરૂ સમય:", + // "collection.source.controls.harvest.start": "Harvest start time:", + // TODO New key - Add a translation + "collection.source.controls.harvest.start": "Harvest start time:", - "collection.source.controls.harvest.last": "છેલ્લો હાર્વેસ્ટ સમય:", + // "collection.source.controls.harvest.last": "Last time harvested:", + // TODO New key - Add a translation + "collection.source.controls.harvest.last": "Last time harvested:", - "collection.source.controls.harvest.message": "હાર્વેસ્ટ માહિતી:", + // "collection.source.controls.harvest.message": "Harvest info:", + // TODO New key - Add a translation + "collection.source.controls.harvest.message": "Harvest info:", + // "collection.source.controls.harvest.no-information": "N/A", "collection.source.controls.harvest.no-information": "N/A", + // "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.", "collection.source.update.notifications.error.content": "પ્રદાન કરેલ સેટિંગ્સનું પરીક્ષણ કરવામાં આવ્યું છે અને તે કાર્યરત નથી.", + // "collection.source.update.notifications.error.title": "Server Error", "collection.source.update.notifications.error.title": "સર્વર ભૂલ", + // "communityList.breadcrumbs": "Community List", "communityList.breadcrumbs": "સમુદાય યાદી", + // "communityList.tabTitle": "Community List", "communityList.tabTitle": "સમુદાય યાદી", + // "communityList.title": "List of Communities", "communityList.title": "સમુદાયોની યાદી", + // "communityList.showMore": "Show More", "communityList.showMore": "વધુ બતાવો", + // "communityList.expand": "Expand {{ name }}", "communityList.expand": "{{ name }} વિસ્તારો", + // "communityList.collapse": "Collapse {{ name }}", "communityList.collapse": "{{ name }} સંકોચો", + // "community.browse.logo": "Browse for a community logo", "community.browse.logo": "સમુદાય લોગો માટે બ્રાઉઝ કરો", + // "community.subcoms-cols.breadcrumbs": "Subcommunities and Collections", "community.subcoms-cols.breadcrumbs": "ઉપસમુદાયો અને સંગ્રહો", + // "community.create.breadcrumbs": "Create Community", "community.create.breadcrumbs": "સમુદાય બનાવો", + // "community.create.head": "Create a Community", "community.create.head": "સમુદાય બનાવો", + // "community.create.notifications.success": "Successfully created the community", "community.create.notifications.success": "સમુદાય સફળતાપૂર્વક બનાવવામાં આવ્યો", + // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", "community.create.sub-head": "સમુદાય {{ parent }} માટે ઉપસમુદાય બનાવો", - "community.curate.header": "સમુદાય ક્યુરેટ કરો: {{community}}", + // "community.curate.header": "Curate Community: {{community}}", + // TODO New key - Add a translation + "community.curate.header": "Curate Community: {{community}}", + // "community.delete.cancel": "Cancel", "community.delete.cancel": "રદ કરો", + // "community.delete.confirm": "Confirm", "community.delete.confirm": "ખાતરી કરો", + // "community.delete.processing": "Deleting...", "community.delete.processing": "કાઢી રહ્યા છે...", + // "community.delete.head": "Delete Community", "community.delete.head": "સમુદાય કાઢી નાખો", + // "community.delete.notification.fail": "Community could not be deleted", "community.delete.notification.fail": "સમુદાય કાઢી શકાતો નથી", + // "community.delete.notification.success": "Successfully deleted community", "community.delete.notification.success": "સમુદાય સફળતાપૂર્વક કાઢી નાખ્યો", + // "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"", "community.delete.text": "શું તમે ખરેખર સમુદાય \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", + // "community.edit.delete": "Delete this community", "community.edit.delete": "આ સમુદાય કાઢી નાખો", + // "community.edit.head": "Edit Community", "community.edit.head": "સમુદાય સંપાદિત કરો", + // "community.edit.breadcrumbs": "Edit Community", "community.edit.breadcrumbs": "સમુદાય સંપાદિત કરો", + // "community.edit.logo.delete.title": "Delete logo", "community.edit.logo.delete.title": "લોગો કાઢી નાખો", + // "community-collection.edit.logo.delete.title": "Confirm deletion", "community-collection.edit.logo.delete.title": "કાઢી નાખવું ખાતરી કરો", + // "community.edit.logo.delete-undo.title": "Undo delete", "community.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + // "community-collection.edit.logo.delete-undo.title": "Undo delete", "community-collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + // "community.edit.logo.label": "Community logo", "community.edit.logo.label": "સમુદાય લોગો", + // "community.edit.logo.notifications.add.error": "Uploading community logo failed. Please verify the content before retrying.", "community.edit.logo.notifications.add.error": "સમુદાય લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", + // "community.edit.logo.notifications.add.success": "Upload community logo successful.", "community.edit.logo.notifications.add.success": "સમુદાય લોગો સફળતાપૂર્વક અપલોડ થયો.", + // "community.edit.logo.notifications.delete.success.title": "Logo deleted", "community.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", + // "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo", "community.edit.logo.notifications.delete.success.content": "સમુદાયનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", + // "community.edit.logo.notifications.delete.error.title": "Error deleting logo", "community.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", + // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "અપલોડ કરવા માટે સમુદાય લોગો ડ્રોપ કરો", + // "community.edit.notifications.success": "Successfully edited the community", "community.edit.notifications.success": "સમુદાય સફળતાપૂર્વક સંપાદિત કર્યો", + // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", "community.edit.notifications.unauthorized": "તમને આ ફેરફાર કરવાની પરવાનગી નથી", + // "community.edit.notifications.error": "An error occurred while editing the community", "community.edit.notifications.error": "સમુદાય સંપાદિત કરતી વખતે ભૂલ આવી", + // "community.edit.return": "Back", "community.edit.return": "પાછા", + // "community.edit.tabs.curate.head": "Curate", "community.edit.tabs.curate.head": "ક્યુરેટ", + // "community.edit.tabs.curate.title": "Community Edit - Curate", "community.edit.tabs.curate.title": "સમુદાય સંપાદન - ક્યુરેટ", + // "community.edit.tabs.access-control.head": "Access Control", "community.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", + // "community.edit.tabs.access-control.title": "Community Edit - Access Control", "community.edit.tabs.access-control.title": "સમુદાય સંપાદન - ઍક્સેસ કંટ્રોલ", + // "community.edit.tabs.metadata.head": "Edit Metadata", "community.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", + // "community.edit.tabs.metadata.title": "Community Edit - Metadata", "community.edit.tabs.metadata.title": "સમુદાય સંપાદન - મેટાડેટા", + // "community.edit.tabs.roles.head": "Assign Roles", "community.edit.tabs.roles.head": "ભૂમિકા સોંપો", + // "community.edit.tabs.roles.title": "Community Edit - Roles", "community.edit.tabs.roles.title": "સમુદાય સંપાદન - ભૂમિકા", + // "community.edit.tabs.authorizations.head": "Authorizations", "community.edit.tabs.authorizations.head": "અધિકૃતતા", + // "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", "community.edit.tabs.authorizations.title": "સમુદાય સંપાદન - અધિકૃતતા", + // "community.listelement.badge": "Community", "community.listelement.badge": "સમુદાય", + // "community.logo": "Community logo", "community.logo": "સમુદાય લોગો", + // "comcol-role.edit.no-group": "None", "comcol-role.edit.no-group": "કોઈ નથી", + // "comcol-role.edit.create": "Create", "comcol-role.edit.create": "બનાવો", + // "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role", "comcol-role.edit.create.error.title": "'{{ role }}' ભૂમિકા માટે જૂથ બનાવવામાં નિષ્ફળ", + // "comcol-role.edit.restrict": "Restrict", "comcol-role.edit.restrict": "પ્રતિબંધિત", + // "comcol-role.edit.delete": "Delete", "comcol-role.edit.delete": "કાઢી નાખો", + // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "'{{ role }}' ભૂમિકા માટેના જૂથને કાઢી નાખવામાં નિષ્ફળ", + // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + + // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + + // "comcol-role.edit.delete.modal.cancel": "Cancel", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.cancel": "Cancel", + + // "comcol-role.edit.delete.modal.confirm": "Delete", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.confirm": "Delete", + + // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "એડમિનિસ્ટ્રેટર્સ", + // "comcol-role.edit.collection-admin.name": "Administrators", "comcol-role.edit.collection-admin.name": "એડમિનિસ્ટ્રેટર્સ", + // "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).", "comcol-role.edit.community-admin.description": "સમુદાય એડમિનિસ્ટ્રેટર્સ ઉપસમુદાયો અથવા સંગ્રહો બનાવી શકે છે, અને તે ઉપસમુદાયો અથવા સંગ્રહો માટે મેનેજમેન્ટ સોંપી શકે છે. ઉપરાંત, તેઓ નક્કી કરે છે કે કોણ ઉપસંગ્રહોમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને અન્ય સંગ્રહોમાંથી (અધિકૃતતા મુજબ) આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે.", + // "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).", "comcol-role.edit.collection-admin.description": "સંગ્રહ એડમિનિસ્ટ્રેટર્સ નક્કી કરે છે કે કોણ સંગ્રહમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે (તે સંગ્રહ માટેની અધિકૃતતા મુજબ).", + // "comcol-role.edit.submitters.name": "Submitters", "comcol-role.edit.submitters.name": "સબમિટર્સ", + // "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.", "comcol-role.edit.submitters.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં નવા આઇટમ્સ સબમિટ કરવાની પરવાનગી છે.", + // "comcol-role.edit.item_read.name": "Default item read access", "comcol-role.edit.item_read.name": "ડિફોલ્ટ આઇટમ વાંચન ઍક્સેસ", + // "comcol-role.edit.item_read.description": "E-People and Groups that can read new items submitted to this collection. Changes to this role are not retroactive. Existing items in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.item_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા આઇટમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા આઇટમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", + // "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.", "comcol-role.edit.item_read.anonymous-group": "આવતા આઇટમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", + // "comcol-role.edit.bitstream_read.name": "Default bitstream read access", "comcol-role.edit.bitstream_read.name": "ડિફોલ્ટ બિટસ્ટ્રીમ વાંચન ઍક્સેસ", + // "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.bitstream_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા બિટસ્ટ્રીમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા બિટસ્ટ્રીમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", + // "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.", "comcol-role.edit.bitstream_read.anonymous-group": "આવતા બિટસ્ટ્રીમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", + // "comcol-role.edit.editor.name": "Editors", "comcol-role.edit.editor.name": "સંપાદકો", + // "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.", "comcol-role.edit.editor.description": "સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, અને પછી તેમને સ્વીકારી અથવા નકારી શકે છે.", + // "comcol-role.edit.finaleditor.name": "Final editors", "comcol-role.edit.finaleditor.name": "અંતિમ સંપાદકો", + // "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.", "comcol-role.edit.finaleditor.description": "અંતિમ સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, પરંતુ તેમને નકારી શકશે નહીં.", + // "comcol-role.edit.reviewer.name": "Reviewers", "comcol-role.edit.reviewer.name": "રિવ્યુઅર્સ", + // "comcol-role.edit.reviewer.description": "Reviewers are able to accept or reject incoming submissions. However, they are not able to edit the submission's metadata.", "comcol-role.edit.reviewer.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્વીકારી અથવા નકારી શકે છે. જો કે, તેઓ સબમિશનના મેટાડેટા સંપાદિત કરી શકશે નહીં.", + // "comcol-role.edit.scorereviewers.name": "Score Reviewers", "comcol-role.edit.scorereviewers.name": "સ્કોર રિવ્યુઅર્સ", + // "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.", "comcol-role.edit.scorereviewers.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્કોર આપી શકે છે, જે નક્કી કરશે કે સબમિશન નકારવામાં આવશે કે નહીં.", + // "community.form.abstract": "Short Description", "community.form.abstract": "સંક્ષિપ્ત વર્ણન", + // "community.form.description": "Introductory text (HTML)", "community.form.description": "પરિચયાત્મક લખાણ (HTML)", + // "community.form.errors.title.required": "Please enter a community name", "community.form.errors.title.required": "કૃપા કરીને સમુદાયનું નામ દાખલ કરો", + // "community.form.rights": "Copyright text (HTML)", "community.form.rights": "કૉપિરાઇટ લખાણ (HTML)", + // "community.form.tableofcontents": "News (HTML)", "community.form.tableofcontents": "સમાચાર (HTML)", + // "community.form.title": "Name", "community.form.title": "નામ", + // "community.page.edit": "Edit this community", "community.page.edit": "આ સમુદાય સંપાદિત કરો", + // "community.page.handle": "Permanent URI for this community", "community.page.handle": "આ સમુદાય માટે કાયમી URI", + // "community.page.license": "License", "community.page.license": "લાઇસન્સ", + // "community.page.news": "News", "community.page.news": "સમાચાર", + // "community.page.options": "Options", "community.page.options": "વિકલ્પો", + // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "ઉપસમુદાયો અને સંગ્રહો", + // "community.search.breadcrumbs": "Search", "community.search.breadcrumbs": "શોધો", + // "community.search.results.head": "Search Results", "community.search.results.head": "શોધ પરિણામો", + // "community.sub-collection-list.head": "Collections in this community", "community.sub-collection-list.head": "આ સમુદાયમાં સંગ્રહો", + // "community.sub-community-list.head": "Communities in this Community", "community.sub-community-list.head": "આ સમુદાયમાં સમુદાયો", + // "cookies.consent.accept-all": "Accept all", "cookies.consent.accept-all": "બધા સ્વીકારો", + // "cookies.consent.accept-selected": "Accept selected", "cookies.consent.accept-selected": "પસંદ કરેલ સ્વીકારો", + // "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)", "cookies.consent.app.opt-out.description": "આ એપ્લિકેશન ડિફોલ્ટ દ્વારા લોડ થાય છે (પરંતુ તમે તેને ઓપ્ટ આઉટ કરી શકો છો)", + // "cookies.consent.app.opt-out.title": "(opt-out)", "cookies.consent.app.opt-out.title": "(ઓપ્ટ-આઉટ)", + // "cookies.consent.app.purpose": "purpose", "cookies.consent.app.purpose": "હેતુ", + // "cookies.consent.app.required.description": "This application is always required", "cookies.consent.app.required.description": "આ એપ્લિકેશન હંમેશા જરૂરી છે", + // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(હંમેશા જરૂરી)", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "તમારા છેલ્લા મુલાકાત પછી ફેરફારો થયા છે, કૃપા કરીને તમારી સંમતિ અપડેટ કરો.", + // "cookies.consent.close": "Close", "cookies.consent.close": "બંધ કરો", + // "cookies.consent.decline": "Decline", "cookies.consent.decline": "નકારો", + // "cookies.consent.decline-all": "Decline all", "cookies.consent.decline-all": "બધા નકારો", + // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "તે ઠીક છે", + // "cookies.consent.save": "Save", "cookies.consent.save": "સાચવો", - "cookies.consent.content-notice.description": "અમે નીચેના હેતુઓ માટે તમારી વ્યક્તિગત માહિતી એકત્રિત અને પ્રક્રિયા કરીએ છીએ: {purposes}", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + // TODO New key - Add a translation + "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "કસ્ટમાઇઝ કરો", + // "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.", "cookies.consent.content-modal.description": "અહીં તમે જોઈ શકો છો અને કસ્ટમાઇઝ કરી શકો છો કે અમે તમારા વિશે કઈ માહિતી એકત્રિત કરીએ છીએ.", + // "cookies.consent.content-modal.privacy-policy.name": "privacy policy", "cookies.consent.content-modal.privacy-policy.name": "ગોપનીયતા નીતિ", + // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "વધુ જાણવા માટે, કૃપા કરીને અમારી {privacyPolicy} વાંચો.", + // "cookies.consent.content-modal.no-privacy-policy.text": "", "cookies.consent.content-modal.no-privacy-policy.text": "", + // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "અમે જે માહિતી એકત્રિત કરીએ છીએ", + // "cookies.consent.app.title.accessibility": "Accessibility Settings", + // TODO New key - Add a translation + "cookies.consent.app.title.accessibility": "Accessibility Settings", + + // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + // TODO New key - Add a translation + "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "પ્રમાણન", + // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "તમને સાઇન ઇન કરવા માટે જરૂરી છે", + // "cookies.consent.app.title.correlation-id": "Correlation ID", + // TODO New key - Add a translation + "cookies.consent.app.title.correlation-id": "Correlation ID", + + // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + // TODO New key - Add a translation + "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + + // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "પસંદગીઓ", + // "cookies.consent.app.description.preferences": "Required for saving your preferences", "cookies.consent.app.description.preferences": "તમારી પસંદગીઓ સાચવવા માટે જરૂરી છે", + // "cookies.consent.app.title.acknowledgement": "Acknowledgement", "cookies.consent.app.title.acknowledgement": "સ્વીકાર", + // "cookies.consent.app.description.acknowledgement": "Required for saving your acknowledgements and consents", "cookies.consent.app.description.acknowledgement": "તમારા સ્વીકાર અને સંમતિઓ સાચવવા માટે જરૂરી છે", + // "cookies.consent.app.title.google-analytics": "Google Analytics", "cookies.consent.app.title.google-analytics": "Google Analytics", + // "cookies.consent.app.description.google-analytics": "Allows us to track statistical data", "cookies.consent.app.description.google-analytics": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", + // "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", + // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "અમે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ દરમિયાન Google reCAPTCHA સેવા નો ઉપયોગ કરીએ છીએ", + // "cookies.consent.app.title.matomo": "Matomo", "cookies.consent.app.title.matomo": "Matomo", + // "cookies.consent.app.description.matomo": "Allows us to track statistical data", "cookies.consent.app.description.matomo": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", + // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "કાર્યાત્મક", + // "cookies.consent.purpose.statistical": "Statistical", "cookies.consent.purpose.statistical": "આંકડાકીય", + // "cookies.consent.purpose.registration-password-recovery": "Registration and Password recovery", "cookies.consent.purpose.registration-password-recovery": "નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ", + // "cookies.consent.purpose.sharing": "Sharing", "cookies.consent.purpose.sharing": "શેરિંગ", + // "curation-task.task.citationpage.label": "Generate Citation Page", "curation-task.task.citationpage.label": "સાઇટેશન પેજ જનરેટ કરો", + // "curation-task.task.checklinks.label": "Check Links in Metadata", "curation-task.task.checklinks.label": "મેટાડેટામાં લિંક્સ તપાસો", + // "curation-task.task.noop.label": "NOOP", "curation-task.task.noop.label": "NOOP", + // "curation-task.task.profileformats.label": "Profile Bitstream Formats", "curation-task.task.profileformats.label": "પ્રોફાઇલ બિટસ્ટ્રીમ ફોર્મેટ્સ", + // "curation-task.task.requiredmetadata.label": "Check for Required Metadata", "curation-task.task.requiredmetadata.label": "જરૂરી મેટાડેટા માટે તપાસો", + // "curation-task.task.translate.label": "Microsoft Translator", "curation-task.task.translate.label": "Microsoft Translator", + // "curation-task.task.vscan.label": "Virus Scan", "curation-task.task.vscan.label": "વાયરસ સ્કેન", + // "curation-task.task.registerdoi.label": "Register DOI", "curation-task.task.registerdoi.label": "DOI નોંધણી કરો", - "curation.form.task-select.label": "ટાસ્ક:", + // "curation.form.task-select.label": "Task:", + // TODO New key - Add a translation + "curation.form.task-select.label": "Task:", + // "curation.form.submit": "Start", "curation.form.submit": "શરૂ કરો", + // "curation.form.submit.success.head": "The curation task has been started successfully", "curation.form.submit.success.head": "ક્યુરેશન ટાસ્ક સફળતાપૂર્વક શરૂ કરવામાં આવી", + // "curation.form.submit.success.content": "You will be redirected to the corresponding process page.", "curation.form.submit.success.content": "તમને સંબંધિત પ્રક્રિયા પૃષ્ઠ પર રીડાયરેક્ટ કરવામાં આવશે.", + // "curation.form.submit.error.head": "Running the curation task failed", "curation.form.submit.error.head": "ક્યુરેશન ટાસ્ક ચલાવતી વખતે નિષ્ફળ", + // "curation.form.submit.error.content": "An error occurred when trying to start the curation task.", "curation.form.submit.error.content": "ક્યુરેશન ટાસ્ક શરૂ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી.", + // "curation.form.submit.error.invalid-handle": "Couldn't determine the handle for this object", "curation.form.submit.error.invalid-handle": "આ ઑબ્જેક્ટ માટે હેન્ડલ નક્કી કરી શક્યો નથી", - "curation.form.handle.label": "હેન્ડલ:", + // "curation.form.handle.label": "Handle:", + // TODO New key - Add a translation + "curation.form.handle.label": "Handle:", - "curation.form.handle.hint": "સૂચન: [તમારા-હેન્ડલ-પ્રિફિક્સ]/0 દાખલ કરો જેથી સમગ્ર સાઇટ પર ટાસ્ક ચલાવી શકાય (બધા ટાસ્ક આ ક્ષમતા સપોર્ટ કરી શકે છે)", + // "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", + // TODO New key - Add a translation + "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", - "deny-request-copy.email.message": "પ્રિય {{ recipientName }},\\nતમારી વિનંતીનો જવાબ આપતાં મને દુઃખ છે કે હું તમને વિનંતી કરેલ ફાઇલ(ઓ)ની નકલ મોકલી શકું નહીં, દસ્તાવેજ: \\\"{{ itemUrl }}\\\" ({{ itemName }}), જેનો હું લેખક છું.\\n\\nશ્રેષ્ઠ શુભેચ્છાઓ,\\n{{ authorName }} <{{ authorEmail }}>", + // "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + // TODO New key - Add a translation + "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + // "deny-request-copy.email.subject": "Request copy of document", "deny-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", + // "deny-request-copy.error": "An error occurred", "deny-request-copy.error": "ભૂલ આવી", + // "deny-request-copy.header": "Deny document copy request", "deny-request-copy.header": "દસ્તાવેજની નકલ વિનંતી નકારી", + // "deny-request-copy.intro": "This message will be sent to the applicant of the request", "deny-request-copy.intro": "આ સંદેશા વિનંતી કરનારને મોકલવામાં આવશે", + // "deny-request-copy.success": "Successfully denied item request", "deny-request-copy.success": "આઇટમ વિનંતી સફળતાપૂર્વક નકારી", + // "dynamic-list.load-more": "Load more", "dynamic-list.load-more": "વધુ લોડ કરો", + // "dropdown.clear": "Clear selection", "dropdown.clear": "પસંદગી સાફ કરો", + // "dropdown.clear.tooltip": "Clear the selected option", "dropdown.clear.tooltip": "પસંદ કરેલ વિકલ્પ દૂર કરો", + // "dso.name.untitled": "Untitled", "dso.name.untitled": "શીર્ષક વિના", + // "dso.name.unnamed": "Unnamed", "dso.name.unnamed": "નામ વિના", + // "dso-selector.create.collection.head": "New collection", "dso-selector.create.collection.head": "નવો સંગ્રહ", + // "dso-selector.create.collection.sub-level": "Create a new collection in", "dso-selector.create.collection.sub-level": "માં નવો સંગ્રહ બનાવો", + // "dso-selector.create.community.head": "New community", "dso-selector.create.community.head": "નવો સમુદાય", + // "dso-selector.create.community.or-divider": "or", "dso-selector.create.community.or-divider": "અથવા", + // "dso-selector.create.community.sub-level": "Create a new community in", "dso-selector.create.community.sub-level": "માં નવો સમુદાય બનાવો", + // "dso-selector.create.community.top-level": "Create a new top-level community", "dso-selector.create.community.top-level": "ટોપ-લેવલ સમુદાય બનાવો", + // "dso-selector.create.item.head": "New item", "dso-selector.create.item.head": "નવું આઇટમ", + // "dso-selector.create.item.sub-level": "Create a new item in", "dso-selector.create.item.sub-level": "માં નવું આઇટમ બનાવો", + // "dso-selector.create.submission.head": "New submission", "dso-selector.create.submission.head": "નવું સબમિશન", + // "dso-selector.edit.collection.head": "Edit collection", "dso-selector.edit.collection.head": "સંગ્રહ સંપાદિત કરો", + // "dso-selector.edit.community.head": "Edit community", "dso-selector.edit.community.head": "સમુદાય સંપાદિત કરો", + // "dso-selector.edit.item.head": "Edit item", "dso-selector.edit.item.head": "આઇટમ સંપાદિત કરો", + // "dso-selector.error.title": "An error occurred searching for a {{ type }}", "dso-selector.error.title": "{{ type }} માટે શોધ કરતી વખતે ભૂલ આવી", + // "dso-selector.export-metadata.dspaceobject.head": "Export metadata from", "dso-selector.export-metadata.dspaceobject.head": "મેટાડેટા નિકાસ કરો", + // "dso-selector.export-batch.dspaceobject.head": "Export Batch (ZIP) from", "dso-selector.export-batch.dspaceobject.head": "બેચ (ZIP) નિકાસ કરો", + // "dso-selector.import-batch.dspaceobject.head": "Import batch from", "dso-selector.import-batch.dspaceobject.head": "બેચ આયાત કરો", + // "dso-selector.no-results": "No {{ type }} found", "dso-selector.no-results": "કોઈ {{ type }} મળ્યું નથી", + // "dso-selector.placeholder": "Search for a {{ type }}", "dso-selector.placeholder": "{{ type }} માટે શોધો", + // "dso-selector.placeholder.type.community": "community", "dso-selector.placeholder.type.community": "સમુદાય", + // "dso-selector.placeholder.type.collection": "collection", "dso-selector.placeholder.type.collection": "સંગ્રહ", + // "dso-selector.placeholder.type.item": "item", "dso-selector.placeholder.type.item": "આઇટમ", + // "dso-selector.select.collection.head": "Select a collection", "dso-selector.select.collection.head": "સંગ્રહ પસંદ કરો", + // "dso-selector.set-scope.community.head": "Select a search scope", "dso-selector.set-scope.community.head": "શોધ સ્કોપ પસંદ કરો", + // "dso-selector.set-scope.community.button": "Search all of DSpace", "dso-selector.set-scope.community.button": "DSpace ના બધા શોધો", + // "dso-selector.set-scope.community.or-divider": "or", "dso-selector.set-scope.community.or-divider": "અથવા", + // "dso-selector.set-scope.community.input-header": "Search for a community or collection", "dso-selector.set-scope.community.input-header": "સમુદાય અથવા સંગ્રહ માટે શોધો", + // "dso-selector.claim.item.head": "Profile tips", "dso-selector.claim.item.head": "પ્રોફાઇલ ટીપ્સ", + // "dso-selector.claim.item.body": "These are existing profiles that may be related to you. If you recognize yourself in one of these profiles, select it and on the detail page, among the options, choose to claim it. Otherwise you can create a new profile from scratch using the button below.", "dso-selector.claim.item.body": "આ મોજુદા પ્રોફાઇલ્સ છે જે તમારા સંબંધિત હોઈ શકે છે. જો તમે આ પ્રોફાઇલ્સમાં પોતાને ઓળખો છો, તો તેને પસંદ કરો અને વિગત પૃષ્ઠ પર, વિકલ્પોમાંથી, તેને દાવો કરવા માટે પસંદ કરો. અન્યથા, તમે નીચેના બટનનો ઉપયોગ કરીને નવું પ્રોફાઇલ શરુ કરી શકો છો.", + // "dso-selector.claim.item.not-mine-label": "None of these are mine", "dso-selector.claim.item.not-mine-label": "આમાંથી કોઈપણ મારું નથી", + // "dso-selector.claim.item.create-from-scratch": "Create a new one", "dso-selector.claim.item.create-from-scratch": "નવું બનાવો", + // "dso-selector.results-could-not-be-retrieved": "Something went wrong, please refresh again ↻", "dso-selector.results-could-not-be-retrieved": "કંઈક ખોટું થયું, કૃપા કરીને ફરીથી રિફ્રેશ કરો ↻", + // "supervision-group-selector.header": "Supervision Group Selector", "supervision-group-selector.header": "સુપરવિઝન ગ્રુપ સિલેક્ટર", + // "supervision-group-selector.select.type-of-order.label": "Select a type of Order", "supervision-group-selector.select.type-of-order.label": "ઓર્ડરનો પ્રકાર પસંદ કરો", + // "supervision-group-selector.select.type-of-order.option.none": "NONE", "supervision-group-selector.select.type-of-order.option.none": "કોઈ નથી", + // "supervision-group-selector.select.type-of-order.option.editor": "EDITOR", "supervision-group-selector.select.type-of-order.option.editor": "સંપાદક", + // "supervision-group-selector.select.type-of-order.option.observer": "OBSERVER", "supervision-group-selector.select.type-of-order.option.observer": "નિરીક્ષક", + // "supervision-group-selector.select.group.label": "Select a Group", "supervision-group-selector.select.group.label": "જૂથ પસંદ કરો", + // "supervision-group-selector.button.cancel": "Cancel", "supervision-group-selector.button.cancel": "રદ કરો", + // "supervision-group-selector.button.save": "Save", "supervision-group-selector.button.save": "સાચવો", + // "supervision-group-selector.select.type-of-order.error": "Please select a type of order", "supervision-group-selector.select.type-of-order.error": "કૃપા કરીને ઓર્ડરનો પ્રકાર પસંદ કરો", + // "supervision-group-selector.select.group.error": "Please select a group", "supervision-group-selector.select.group.error": "કૃપા કરીને જૂથ પસંદ કરો", + // "supervision-group-selector.notification.create.success.title": "Successfully created supervision order for group {{ name }}", "supervision-group-selector.notification.create.success.title": "જૂથ {{ name }} માટે સુપરવિઝન ઓર્ડર સફળતાપૂર્વક બનાવવામાં આવ્યો", + // "supervision-group-selector.notification.create.failure.title": "Error", "supervision-group-selector.notification.create.failure.title": "ભૂલ", + // "supervision-group-selector.notification.create.already-existing": "A supervision order already exists on this item for selected group", "supervision-group-selector.notification.create.already-existing": "પસંદ કરેલ જૂથ માટે પહેલેથી જ સુપરવિઝન ઓર્ડર અસ્તિત્વમાં છે", + // "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.header": "{{ dsoName }} માટે મેટાડેટા નિકાસ કરો", + // "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.info": "શું તમે ખરેખર {{ dsoName }} માટે મેટાડેટા નિકાસ કરવા માંગો છો", + // "confirmation-modal.export-metadata.cancel": "Cancel", "confirmation-modal.export-metadata.cancel": "રદ કરો", + // "confirmation-modal.export-metadata.confirm": "Export", "confirmation-modal.export-metadata.confirm": "નિકાસ કરો", + // "confirmation-modal.export-batch.header": "Export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.header": "{{ dsoName }} માટે બેચ (ZIP) નિકાસ કરો", + // "confirmation-modal.export-batch.info": "Are you sure you want to export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.info": "શું તમે ખરેખર {{ dsoName }} માટે બેચ (ZIP) નિકાસ કરવા માંગો છો", + // "confirmation-modal.export-batch.cancel": "Cancel", "confirmation-modal.export-batch.cancel": "રદ કરો", + // "confirmation-modal.export-batch.confirm": "Export", "confirmation-modal.export-batch.confirm": "નિકાસ કરો", + // "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.header": "EPerson \\\"{{ dsoName }}\\\" કાઢી નાખો", + // "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.info": "શું તમે ખરેખર EPerson \\\"{{ dsoName }}\\\" કાઢી નાખવા માંગો છો", + // "confirmation-modal.delete-eperson.cancel": "Cancel", "confirmation-modal.delete-eperson.cancel": "રદ કરો", + // "confirmation-modal.delete-eperson.confirm": "Delete", "confirmation-modal.delete-eperson.confirm": "કાઢી નાખો", + // "confirmation-modal.delete-community-collection-logo.info": "Are you sure you want to delete the logo?", "confirmation-modal.delete-community-collection-logo.info": "શું તમે ખરેખર લોગો કાઢી નાખવા માંગો છો?", + // "confirmation-modal.delete-profile.header": "Delete Profile", "confirmation-modal.delete-profile.header": "પ્રોફાઇલ કાઢી નાખો", + // "confirmation-modal.delete-profile.info": "Are you sure you want to delete your profile", "confirmation-modal.delete-profile.info": "શું તમે ખરેખર તમારું પ્રોફાઇલ કાઢી નાખવા માંગો છો", + // "confirmation-modal.delete-profile.cancel": "Cancel", "confirmation-modal.delete-profile.cancel": "રદ કરો", + // "confirmation-modal.delete-profile.confirm": "Delete", "confirmation-modal.delete-profile.confirm": "કાઢી નાખો", + // "confirmation-modal.delete-subscription.header": "Delete Subscription", "confirmation-modal.delete-subscription.header": "સબ્સ્ક્રિપ્શન કાઢી નાખો", + // "confirmation-modal.delete-subscription.info": "Are you sure you want to delete subscription for \"{{ dsoName }}\"", "confirmation-modal.delete-subscription.info": "શું તમે ખરેખર \\\"{{ dsoName }}\\\" માટે સબ્સ્ક્રિપ્શન કાઢી નાખવા માંગો છો", + // "confirmation-modal.delete-subscription.cancel": "Cancel", "confirmation-modal.delete-subscription.cancel": "રદ કરો", + // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "કાઢી નાખો", + // "confirmation-modal.review-account-info.header": "Save the changes", "confirmation-modal.review-account-info.header": "ફેરફારો સાચવો", + // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", "confirmation-modal.review-account-info.info": "શું તમે ખરેખર તમારા પ્રોફાઇલમાં ફેરફારો સાચવવા માંગો છો", + // "confirmation-modal.review-account-info.cancel": "Cancel", "confirmation-modal.review-account-info.cancel": "રદ કરો", + // "confirmation-modal.review-account-info.confirm": "Confirm", "confirmation-modal.review-account-info.confirm": "ખાતરી કરો", + // "confirmation-modal.review-account-info.save": "Save", "confirmation-modal.review-account-info.save": "સાચવો", + // "error.bitstream": "Error fetching bitstream", "error.bitstream": "બિટસ્ટ્રીમ મેળવતી વખતે ભૂલ", + // "error.browse-by": "Error fetching items", "error.browse-by": "આઇટમ્સ મેળવતી વખતે ભૂલ", + // "error.collection": "Error fetching collection", "error.collection": "સંગ્રહ મેળવતી વખતે ભૂલ", + // "error.collections": "Error fetching collections", "error.collections": "સંગ્રહો મેળવતી વખતે ભૂલ", + // "error.community": "Error fetching community", "error.community": "સમુદાય મેળવતી વખતે ભૂલ", + // "error.identifier": "No item found for the identifier", "error.identifier": "આ ઓળખકર્તા માટે કોઈ આઇટમ મળ્યું નથી", + // "error.default": "Error", "error.default": "ભૂલ", + // "error.item": "Error fetching item", "error.item": "આઇટમ મેળવતી વખતે ભૂલ", + // "error.items": "Error fetching items", "error.items": "આઇટમ્સ મેળવતી વખતે ભૂલ", + // "error.objects": "Error fetching objects", "error.objects": "વસ્તુઓ મેળવતી વખતે ભૂલ", + // "error.recent-submissions": "Error fetching recent submissions", "error.recent-submissions": "તાજેતરના સબમિશન્સ મેળવતી વખતે ભૂલ", + // "error.profile-groups": "Error retrieving profile groups", "error.profile-groups": "પ્રોફાઇલ જૂથો મેળવતી વખતે ભૂલ", + // "error.search-results": "Error fetching search results", "error.search-results": "શોધ પરિણામો મેળવતી વખતે ભૂલ", - "error.invalid-search-query": "શોધ ક્વેરી માન્ય નથી. આ ભૂલ વિશે વધુ માહિતી માટે Solr ક્વેરી સિન્ટેક્સ શ્રેષ્ઠ પ્રથાઓ તપાસો.", + // "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + // TODO New key - Add a translation + "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + // "error.sub-collections": "Error fetching sub-collections", "error.sub-collections": "ઉપ-સંગ્રહો મેળવતી વખતે ભૂલ", + // "error.sub-communities": "Error fetching sub-communities", "error.sub-communities": "ઉપ-સમુદાયો મેળવતી વખતે ભૂલ", - "error.submission.sections.init-form-error": "વિભાગ આરંભ દરમિયાન ભૂલ આવી, કૃપા કરીને તમારા ઇનપુટ-ફોર્મ કૉન્ફિગરેશન તપાસો. વિગતો નીચે છે :

", + // "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + // TODO New key - Add a translation + "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "ટોપ-લેવલ સમુદાયો મેળવતી વખતે ભૂલ", - "error.validation.license.notgranted": "તમારે તમારા સબમિશનને પૂર્ણ કરવા માટે આ લાઇસન્સ આપવું જ જોઈએ. જો તમે આ સમયે આ લાઇસન્સ આપી શકતા નથી તો તમે તમારું કામ સાચવી શકો છો અને પછીથી પાછા આવી શકો છો અથવા સબમિશન દૂર કરી શકો છો.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "તમારે તમારા સબમિશનને પૂર્ણ કરવા માટે આ cclicense આપવું જ જોઈએ. જો તમે આ સમયે cclicense આપી શકતા નથી, તો તમે તમારું કામ સાચવી શકો છો અને પછીથી પાછા આવી શકો છો અથવા સબમિશન દૂર કરી શકો છો.", - "error.validation.pattern": "આ ઇનપુટ વર્તમાન પેટર્ન દ્વારા પ્રતિબંધિત છે: {{ pattern }}.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", + // TODO New key - Add a translation + "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", + + // "error.validation.filerequired": "The file upload is mandatory", "error.validation.filerequired": "ફાઇલ અપલોડ ફરજિયાત છે", + // "error.validation.required": "This field is required", "error.validation.required": "આ ફીલ્ડ જરૂરી છે", + // "error.validation.NotValidEmail": "This is not a valid email", "error.validation.NotValidEmail": "આ માન્ય ઇમેઇલ નથી", + // "error.validation.emailTaken": "This email is already taken", "error.validation.emailTaken": "આ ઇમેઇલ પહેલેથી જ લેવામાં આવી છે", + // "error.validation.groupExists": "This group already exists", "error.validation.groupExists": "આ જૂથ પહેલેથી જ અસ્તિત્વમાં છે", + // "error.validation.metadata.name.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Element & Qualifier fields instead", "error.validation.metadata.name.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી. કૃપા કરીને તેના બદલે એલિમેન્ટ અને ક્વોલિફાયર ફીલ્ડનો ઉપયોગ કરો", + // "error.validation.metadata.name.max-length": "This field may not contain more than 32 characters", "error.validation.metadata.name.max-length": "આ ફીલ્ડમાં 32 થી વધુ અક્ષરો હોઈ શકતા નથી", + // "error.validation.metadata.namespace.max-length": "This field may not contain more than 256 characters", "error.validation.metadata.namespace.max-length": "આ ફીલ્ડમાં 256 થી વધુ અક્ષરો હોઈ શકતા નથી", + // "error.validation.metadata.element.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Qualifier field instead", "error.validation.metadata.element.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી. કૃપા કરીને ક્વોલિફાયર ફીલ્ડનો ઉપયોગ કરો", + // "error.validation.metadata.element.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.element.max-length": "આ ફીલ્ડમાં 64 થી વધુ અક્ષરો હોઈ શકતા નથી", + // "error.validation.metadata.qualifier.invalid-pattern": "This field cannot contain dots, commas or spaces", "error.validation.metadata.qualifier.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી", + // "error.validation.metadata.qualifier.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.qualifier.max-length": "આ ફીલ્ડમાં 64 થી વધુ અક્ષરો હોઈ શકતા નથી", + // "feed.description": "Syndication feed", "feed.description": "સિન્ડિકેશન ફીડ", + // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "પ્રતિબંધિત બિટસ્ટ્રીમ", + // "file-download-link.secure-access": "Restricted bitstream available via secure access token", "file-download-link.secure-access": "સુરક્ષિત ઍક્સેસ ટોકન દ્વારા ઉપલબ્ધ પ્રતિબંધિત બિટસ્ટ્રીમ", + // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "આ આઇટમ માટે ફાઇલો મેળવતી વખતે ભૂલ", + // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "કૉપિરાઇટ © 2002-{{ year }}", + // "footer.link.accessibility": "Accessibility settings", + // TODO New key - Add a translation + "footer.link.accessibility": "Accessibility settings", + + // "footer.link.dspace": "DSpace software", "footer.link.dspace": "DSpace સોફ્ટવેર", + // "footer.link.lyrasis": "LYRASIS", "footer.link.lyrasis": "LYRASIS", + // "footer.link.cookies": "Cookie settings", "footer.link.cookies": "કૂકી સેટિંગ્સ", + // "footer.link.privacy-policy": "Privacy policy", "footer.link.privacy-policy": "ગોપનીયતા નીતિ", + // "footer.link.end-user-agreement": "End User Agreement", "footer.link.end-user-agreement": "અંતિમ વપરાશકર્તા કરાર", + // "footer.link.feedback": "Send Feedback", "footer.link.feedback": "પ્રતિસાદ મોકલો", + // "footer.link.coar-notify-support": "COAR Notify", "footer.link.coar-notify-support": "COAR Notify", + // "forgot-email.form.header": "Forgot Password", "forgot-email.form.header": "પાસવર્ડ ભૂલી ગયા", + // "forgot-email.form.info": "Enter the email address associated with the account.", "forgot-email.form.info": "ખાતાની સાથે જોડાયેલ ઇમેઇલ સરનામું દાખલ કરો.", + // "forgot-email.form.email": "Email Address *", "forgot-email.form.email": "ઇમેઇલ સરનામું *", + // "forgot-email.form.email.error.required": "Please fill in an email address", "forgot-email.form.email.error.required": "કૃપા કરીને ઇમેઇલ સરનામું દાખલ કરો", + // "forgot-email.form.email.error.not-email-form": "Please fill in a valid email address", "forgot-email.form.email.error.not-email-form": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું દાખલ કરો", + // "forgot-email.form.email.hint": "An email will be sent to this address with a further instructions.", "forgot-email.form.email.hint": "આ સરનામે વધુ સૂચનાઓ સાથે ઇમેઇલ મોકલવામાં આવશે.", + // "forgot-email.form.submit": "Reset password", "forgot-email.form.submit": "પાસવર્ડ રીસેટ કરો", + // "forgot-email.form.success.head": "Password reset email sent", "forgot-email.form.success.head": "પાસવર્ડ રીસેટ ઇમેઇલ મોકલ્યો", + // "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "forgot-email.form.success.content": "{{ email }} પર ઇમેઇલ મોકલવામાં આવ્યો છે જેમાં વિશેષ URL અને વધુ સૂચનાઓ શામેલ છે.", + // "forgot-email.form.error.head": "Error when trying to reset password", "forgot-email.form.error.head": "પાસવર્ડ રીસેટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - "forgot-email.form.error.content": "નીચેના ઇમેઇલ સરનામા સાથેના ખાતા માટે પાસવર્ડ રીસેટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી: {{ email }}", + // "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + // TODO New key - Add a translation + "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + // "forgot-password.title": "Forgot Password", "forgot-password.title": "પાસવર્ડ ભૂલી ગયા", + // "forgot-password.form.head": "Forgot Password", "forgot-password.form.head": "પાસવર્ડ ભૂલી ગયા", + // "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box.", "forgot-password.form.info": "નીચેના બોક્સમાં નવો પાસવર્ડ દાખલ કરો, અને તેને બીજી બોક્સમાં ફરીથી ટાઇપ કરીને તેની પુષ્ટિ કરો.", + // "forgot-password.form.card.security": "Security", "forgot-password.form.card.security": "સુરક્ષા", + // "forgot-password.form.identification.header": "Identify", "forgot-password.form.identification.header": "ઓળખો", - "forgot-password.form.identification.email": "ઇમેઇલ સરનામું: ", + // "forgot-password.form.identification.email": "Email address: ", + // TODO New key - Add a translation + "forgot-password.form.identification.email": "Email address: ", + // "forgot-password.form.label.password": "Password", "forgot-password.form.label.password": "પાસવર્ડ", + // "forgot-password.form.label.passwordrepeat": "Retype to confirm", "forgot-password.form.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી ટાઇપ કરો", + // "forgot-password.form.error.empty-password": "Please enter a password in the boxes above.", "forgot-password.form.error.empty-password": "કૃપા કરીને ઉપરના બોક્સમાં પાસવર્ડ દાખલ કરો.", + // "forgot-password.form.error.matching-passwords": "The passwords do not match.", "forgot-password.form.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", + // "forgot-password.form.notification.error.title": "Error when trying to submit new password", "forgot-password.form.notification.error.title": "નવો પાસવર્ડ સબમિટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ", + // "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.", "forgot-password.form.notification.success.content": "પાસવર્ડ રીસેટ સફળતાપૂર્વક પૂર્ણ થયું. તમે બનાવેલ વપરાશકર્તા તરીકે લૉગ ઇન થયા છો.", + // "forgot-password.form.notification.success.title": "Password reset completed", "forgot-password.form.notification.success.title": "પાસવર્ડ રીસેટ પૂર્ણ", + // "forgot-password.form.submit": "Submit password", "forgot-password.form.submit": "પાસવર્ડ સબમિટ કરો", + // "form.add": "Add more", "form.add": "વધુ ઉમેરો", + // "form.add-help": "Click here to add the current entry and to add another one", "form.add-help": "વર્તમાન એન્ટ્રી ઉમેરવા અને વધુ એક ઉમેરવા માટે અહીં ક્લિક કરો", + // "form.cancel": "Cancel", "form.cancel": "રદ કરો", + // "form.clear": "Clear", "form.clear": "સાફ કરો", + // "form.clear-help": "Click here to remove the selected value", "form.clear-help": "પસંદ કરેલ મૂલ્ય દૂર કરવા માટે અહીં ક્લિક કરો", + // "form.discard": "Discard", "form.discard": "રદ કરો", + // "form.drag": "Drag", "form.drag": "ડ્રેગ કરો", + // "form.edit": "Edit", "form.edit": "સંપાદિત કરો", + // "form.edit-help": "Click here to edit the selected value", "form.edit-help": "પસંદ કરેલ મૂલ્ય સંપાદિત કરવા માટે અહીં ક્લિક કરો", + // "form.first-name": "First name", "form.first-name": "પ્રથમ નામ", + // "form.group-collapse": "Collapse", "form.group-collapse": "સંકોચો", + // "form.group-collapse-help": "Click here to collapse", "form.group-collapse-help": "સંકોચવા માટે અહીં ક્લિક કરો", + // "form.group-expand": "Expand", "form.group-expand": "વિસ્તારો", + // "form.group-expand-help": "Click here to expand and add more elements", "form.group-expand-help": "વિસ્તારવા અને વધુ તત્વો ઉમેરવા માટે અહીં ક્લિક કરો", + // "form.last-name": "Last name", "form.last-name": "છેલ્લું નામ", + // "form.loading": "Loading...", "form.loading": "લોડ કરી રહ્યું છે...", + // "form.lookup": "Lookup", "form.lookup": "લુકઅપ", + // "form.lookup-help": "Click here to look up an existing relation", "form.lookup-help": "અસ્તિત્વમાં રહેલા સંબંધ માટે અહીં ક્લિક કરો", + // "form.no-results": "No results found", "form.no-results": "કોઈ પરિણામો મળ્યા નથી", + // "form.no-value": "No value entered", "form.no-value": "કોઈ મૂલ્ય દાખલ કરેલ નથી", + // "form.other-information.email": "Email", "form.other-information.email": "ઇમેઇલ", + // "form.other-information.first-name": "First Name", "form.other-information.first-name": "પ્રથમ નામ", + // "form.other-information.insolr": "In Solr Index", "form.other-information.insolr": "સોલર ઇન્ડેક્સમાં", + // "form.other-information.institution": "Institution", "form.other-information.institution": "સંસ્થા", + // "form.other-information.last-name": "Last Name", "form.other-information.last-name": "છેલ્લું નામ", + // "form.other-information.orcid": "ORCID", "form.other-information.orcid": "ORCID", + // "form.remove": "Remove", "form.remove": "દૂર કરો", + // "form.save": "Save", "form.save": "સાચવો", + // "form.save-help": "Save changes", "form.save-help": "ફેરફારો સાચવો", + // "form.search": "Search", "form.search": "શોધો", + // "form.search-help": "Click here to look for an existing correspondence", "form.search-help": "અસ્તિત્વમાં રહેલા પત્રવ્યવહાર માટે અહીં ક્લિક કરો", + // "form.submit": "Save", "form.submit": "સાચવો", + // "form.create": "Create", "form.create": "બનાવો", + // "form.number-picker.decrement": "Decrement {{field}}", "form.number-picker.decrement": "{{field}} ઘટાડો", + // "form.number-picker.increment": "Increment {{field}}", "form.number-picker.increment": "{{field}} વધારો", + // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "આઇટમને નવી સ્થિતિમાં ડ્રોપ કરો", + // "grant-deny-request-copy.deny": "Deny access request", "grant-deny-request-copy.deny": "ઍક્સેસ વિનંતી નકારી", + // "grant-deny-request-copy.revoke": "Revoke access", "grant-deny-request-copy.revoke": "ઍક્સેસ રદ કરો", + // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "પાછા", + // "grant-deny-request-copy.email.message": "Optional additional message", "grant-deny-request-copy.email.message": "વૈકલ્પિક વધારાનો સંદેશ", + // "grant-deny-request-copy.email.message.empty": "Please enter a message", "grant-deny-request-copy.email.message.empty": "કૃપા કરીને સંદેશ દાખલ કરો", + // "grant-deny-request-copy.email.permissions.info": "You may use this occasion to reconsider the access restrictions on the document, to avoid having to respond to these requests. If you’d like to ask the repository administrators to remove these restrictions, please check the box below.", "grant-deny-request-copy.email.permissions.info": "આ દસ્તાવેજ પર ઍક્સેસ પ્રતિબંધો દૂર કરવા માટે રિપોઝિટરી વહીવટકર્તાઓને પૂછવા માટે તમે આ પ્રસંગનો ઉપયોગ કરી શકો છો, જેથી આ વિનંતીઓને જવાબ આપવાની જરૂર ન પડે. જો તમે આ પ્રતિબંધો દૂર કરવા માટે રિપોઝિટરી વહીવટકર્તાઓને પૂછવા માંગતા હો, તો કૃપા કરીને નીચેના બોક્સને ચેક કરો.", + // "grant-deny-request-copy.email.permissions.label": "Change to open access", "grant-deny-request-copy.email.permissions.label": "ઓપન ઍક્સેસમાં બદલો", + // "grant-deny-request-copy.email.send": "Send", "grant-deny-request-copy.email.send": "મોકલો", + // "grant-deny-request-copy.email.subject": "Subject", "grant-deny-request-copy.email.subject": "વિષય", + // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "કૃપા કરીને વિષય દાખલ કરો", + // "grant-deny-request-copy.grant": "Grant access request", "grant-deny-request-copy.grant": "ઍક્સેસ વિનંતી મંજુર કરો", + // "grant-deny-request-copy.header": "Document copy request", "grant-deny-request-copy.header": "દસ્તાવેજ નકલ વિનંતી", + // "grant-deny-request-copy.home-page": "Take me to the home page", "grant-deny-request-copy.home-page": "મને હોમ પેજ પર લઈ જાઓ", + // "grant-deny-request-copy.intro1": "If you are one of the authors of the document {{ name }}, then please use one of the options below to respond to the user's request.", "grant-deny-request-copy.intro1": "જો તમે દસ્તાવેજના લેખકોમાંના એક છો {{ name }}, તો કૃપા કરીને વપરાશકર્તાની વિનંતીનો જવાબ આપવા માટે નીચેના વિકલ્પોનો ઉપયોગ કરો.", + // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "વિકલ્પ પસંદ કર્યા પછી, તમને સૂચિત ઇમેઇલ જવાબ રજૂ કરવામાં આવશે જે તમે સંપાદિત કરી શકો છો.", + // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", "grant-deny-request-copy.previous-decision": "આ વિનંતી અગાઉ સુરક્ષિત ઍક્સેસ ટોકન સાથે મંજુર કરવામાં આવી હતી. તમે આ ઍક્સેસને રદ કરી શકો છો જેથી ઍક્સેસ ટોકન તરત જ અમાન્ય થઈ જાય", + // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "આ વિનંતી પહેલેથી જ પ્રક્રિયા કરવામાં આવી છે. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", + // "grant-request-copy.email.subject": "Request copy of document", "grant-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", + // "grant-request-copy.error": "An error occurred", "grant-request-copy.error": "ભૂલ આવી", + // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "દસ્તાવેજ નકલ વિનંતી મંજુર કરો", + // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", "grant-request-copy.intro.attachment": "વિનંતી કરનારને સંદેશ મોકલવામાં આવશે. વિનંતી કરેલ દસ્તાવેજ(ઓ) જોડવામાં આવશે.", + // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", "grant-request-copy.intro.link": "વિનંતી કરનારને સંદેશ મોકલવામાં આવશે. વિનંતી કરેલ દસ્તાવેજ(ઓ)ને ઍક્સેસ પ્રદાન કરતી સુરક્ષિત લિંક જોડવામાં આવશે. લિંક નીચેના \\\"ઍક્સેસ પિરિયડ\\\" મેનુમાં પસંદ કરેલ સમયગાળા માટે ઍક્સેસ પ્રદાન કરશે.", - "grant-request-copy.intro.link.preview": "નીચે વિનંતી કરનારને મોકલવામાં આવનાર લિંકનું પૂર્વાવલોકન છે:", + // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // TODO New key - Add a translation + "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "વિનંતી કરેલ આઇટમ સફળતાપૂર્વક મંજુર કર્યું", + // "grant-request-copy.access-period.header": "Access period", "grant-request-copy.access-period.header": "ઍક્સેસ પિરિયડ", + // "grant-request-copy.access-period.+1DAY": "1 day", "grant-request-copy.access-period.+1DAY": "1 દિવસ", + // "grant-request-copy.access-period.+7DAYS": "1 week", "grant-request-copy.access-period.+7DAYS": "1 અઠવાડિયું", + // "grant-request-copy.access-period.+1MONTH": "1 month", "grant-request-copy.access-period.+1MONTH": "1 મહિનો", + // "grant-request-copy.access-period.+3MONTHS": "3 months", "grant-request-copy.access-period.+3MONTHS": "3 મહિના", + // "grant-request-copy.access-period.FOREVER": "Forever", "grant-request-copy.access-period.FOREVER": "કાયમ માટે", + // "health.breadcrumbs": "Health", "health.breadcrumbs": "હેલ્થ", + // "health-page.heading": "Health", "health-page.heading": "હેલ્થ", + // "health-page.info-tab": "Info", "health-page.info-tab": "માહિતી", + // "health-page.status-tab": "Status", "health-page.status-tab": "સ્થિતિ", + // "health-page.error.msg": "The health check service is temporarily unavailable", "health-page.error.msg": "હેલ્થ ચેક સેવા તાત્કાલિક ઉપલબ્ધ નથી", + // "health-page.property.status": "Status code", "health-page.property.status": "સ્થિતિ કોડ", + // "health-page.section.db.title": "Database", "health-page.section.db.title": "ડેટાબેઝ", + // "health-page.section.geoIp.title": "GeoIp", "health-page.section.geoIp.title": "GeoIp", - "health-page.section.solrAuthorityCore.title": "સોલર: ઓથોરિટી કોર", + // "health-page.section.solrAuthorityCore.title": "Solr: authority core", + // TODO New key - Add a translation + "health-page.section.solrAuthorityCore.title": "Solr: authority core", - "health-page.section.solrOaiCore.title": "સોલર: oai કોર", + // "health-page.section.solrOaiCore.title": "Solr: oai core", + // TODO New key - Add a translation + "health-page.section.solrOaiCore.title": "Solr: oai core", - "health-page.section.solrSearchCore.title": "સોલર: શોધ કોર", + // "health-page.section.solrSearchCore.title": "Solr: search core", + // TODO New key - Add a translation + "health-page.section.solrSearchCore.title": "Solr: search core", - "health-page.section.solrStatisticsCore.title": "સોલર: આંકડા કોર", + // "health-page.section.solrStatisticsCore.title": "Solr: statistics core", + // TODO New key - Add a translation + "health-page.section.solrStatisticsCore.title": "Solr: statistics core", + // "health-page.section-info.app.title": "Application Backend", "health-page.section-info.app.title": "એપ્લિકેશન બેકએન્ડ", + // "health-page.section-info.java.title": "Java", "health-page.section-info.java.title": "જાવા", + // "health-page.status": "Status", "health-page.status": "સ્થિતિ", + // "health-page.status.ok.info": "Operational", "health-page.status.ok.info": "સંચાલન", + // "health-page.status.error.info": "Problems detected", "health-page.status.error.info": "સમસ્યાઓ શોધવામાં આવી", + // "health-page.status.warning.info": "Possible issues detected", "health-page.status.warning.info": "શક્ય સમસ્યાઓ શોધવામાં આવી", + // "health-page.title": "Health", "health-page.title": "હેલ્થ", + // "health-page.section.no-issues": "No issues detected", "health-page.section.no-issues": "કોઈ સમસ્યાઓ શોધવામાં આવી નથી", + // "home.description": "", "home.description": "", + // "home.breadcrumbs": "Home", "home.breadcrumbs": "હોમ", + // "home.search-form.placeholder": "Search the repository ...", "home.search-form.placeholder": "રિપોઝિટરી શોધો ...", + // "home.title": "Home", "home.title": "હોમ", + // "home.top-level-communities.head": "Communities in DSpace", "home.top-level-communities.head": "DSpace માં સમુદાયો", + // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "તેના સંગ્રહોને બ્રાઉઝ કરવા માટે સમુદાય પસંદ કરો.", + // "info.accessibility-settings.breadcrumbs": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.breadcrumbs": "Accessibility settings", + + // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + // TODO New key - Add a translation + "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + + // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + + // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + + // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + + // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + // TODO New key - Add a translation + "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + + // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + + // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + + // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + + // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + + // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + + // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + + // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + + // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + + // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + + // "info.accessibility-settings.reset-notification": "Successfully reset settings.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-notification": "Successfully reset settings.", + + // "info.accessibility-settings.reset": "Reset accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.reset": "Reset accessibility settings", + + // "info.accessibility-settings.submit": "Save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.submit": "Save accessibility settings", + + // "info.accessibility-settings.title": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.title": "Accessibility settings", + + // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "મેં અંતિમ વપરાશકર્તા કરાર વાંચ્યો છે અને હું તેને સહમત છું", + // "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement", "info.end-user-agreement.accept.error": "અંતિમ વપરાશકર્તા કરાર સ્વીકારતી વખતે ભૂલ આવી", + // "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement", "info.end-user-agreement.accept.success": "અંતિમ વપરાશકર્તા કરાર સફળતાપૂર્વક અપડેટ કર્યો", + // "info.end-user-agreement.breadcrumbs": "End User Agreement", "info.end-user-agreement.breadcrumbs": "અંતિમ વપરાશકર્તા કરાર", + // "info.end-user-agreement.buttons.cancel": "Cancel", "info.end-user-agreement.buttons.cancel": "રદ કરો", + // "info.end-user-agreement.buttons.save": "Save", "info.end-user-agreement.buttons.save": "સાચવો", + // "info.end-user-agreement.head": "End User Agreement", "info.end-user-agreement.head": "અંતિમ વપરાશકર્તા કરાર", + // "info.end-user-agreement.title": "End User Agreement", "info.end-user-agreement.title": "અંતિમ વપરાશકર્તા કરાર", + // "info.end-user-agreement.hosting-country": "the United States", "info.end-user-agreement.hosting-country": "યુનાઇટેડ સ્ટેટ્સ", + // "info.privacy.breadcrumbs": "Privacy Statement", "info.privacy.breadcrumbs": "ગોપનીયતા નિવેદન", + // "info.privacy.head": "Privacy Statement", "info.privacy.head": "ગોપનીયતા નિવેદન", + // "info.privacy.title": "Privacy Statement", "info.privacy.title": "ગોપનીયતા નિવેદન", + // "info.feedback.breadcrumbs": "Feedback", "info.feedback.breadcrumbs": "પ્રતિસાદ", + // "info.feedback.head": "Feedback", "info.feedback.head": "પ્રતિસાદ", + // "info.feedback.title": "Feedback", "info.feedback.title": "પ્રતિસાદ", + // "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!", "info.feedback.info": "DSpace સિસ્ટમ વિશે તમારો પ્રતિસાદ શેર કરવા બદલ આભાર. તમારી ટિપ્પણીઓની પ્રશંસા કરવામાં આવે છે!", + // "info.feedback.email_help": "This address will be used to follow up on your feedback.", "info.feedback.email_help": "આ સરનામું તમારા પ્રતિસાદ પર અનુસરણ કરવા માટે વપરાશે.", + // "info.feedback.send": "Send Feedback", "info.feedback.send": "પ્રતિસાદ મોકલો", + // "info.feedback.comments": "Comments", "info.feedback.comments": "ટિપ્પણીઓ", + // "info.feedback.email-label": "Your Email", "info.feedback.email-label": "તમારું ઇમેઇલ", + // "info.feedback.create.success": "Feedback Sent Successfully!", "info.feedback.create.success": "પ્રતિસાદ સફળતાપૂર્વક મોકલ્યો!", + // "info.feedback.error.email.required": "A valid email address is required", "info.feedback.error.email.required": "માન્ય ઇમેઇલ સરનામું જરૂરી છે", + // "info.feedback.error.message.required": "A comment is required", "info.feedback.error.message.required": "ટિપ્પણી જરૂરી છે", + // "info.feedback.page-label": "Page", "info.feedback.page-label": "પૃષ્ઠ", + // "info.feedback.page_help": "The page related to your feedback", "info.feedback.page_help": "તમારા પ્રતિસાદ સાથે સંબંધિત પૃષ્ઠ", + // "info.coar-notify-support.title": "COAR Notify Support", "info.coar-notify-support.title": "COAR Notify Support", + // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "COAR Notify Support", + // "item.alerts.private": "This item is non-discoverable", "item.alerts.private": "આ આઇટમ નોન-ડિસ્કવરેબલ છે", + // "item.alerts.withdrawn": "This item has been withdrawn", "item.alerts.withdrawn": "આ આઇટમ પાછું ખેંચી લેવામાં આવ્યું છે", + // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "ફરી સ્થાપિત કરવાની વિનંતી કરો", + // "quality-assurance.event.table.person-who-requested": "Requested by", "quality-assurance.event.table.person-who-requested": "વિનંતી કરનાર", - "item.edit.authorizations.heading": "આ સંપાદક સાથે તમે આઇટમની પોલિસી જોઈ અને બદલાવી શકો છો, તેમજ વ્યક્તિગત આઇટમ ઘટકોની પોલિસી બદલી શકો છો: બંડલ્સ અને બિટસ્ટ્રીમ્સ. ટૂંકમાં, આઇટમ બંડલ્સનો કન્ટેનર છે, અને બંડલ્સ બિટસ્ટ્રીમ્સના કન્ટેનર છે. કન્ટેનર્સમાં સામાન્ય રીતે ADD/REMOVE/READ/WRITE પોલિસી હોય છે, જ્યારે બિટસ્ટ્રીમ્સમાં માત્ર READ/WRITE પોલિસી હોય છે.", + // "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + // TODO New key - Add a translation + "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "આઇટમની પોલિસી સંપાદિત કરો", + // "item.badge.status": "Item status:", + // TODO New key - Add a translation + "item.badge.status": "Item status:", + + // "item.badge.private": "Non-discoverable", "item.badge.private": "નોન-ડિસ્કવરેબલ", + // "item.badge.withdrawn": "Withdrawn", "item.badge.withdrawn": "પાછું ખેંચી લેવામાં આવ્યું", + // "item.bitstreams.upload.bundle": "Bundle", "item.bitstreams.upload.bundle": "બંડલ", + // "item.bitstreams.upload.bundle.placeholder": "Select a bundle or input new bundle name", "item.bitstreams.upload.bundle.placeholder": "બંડલ પસંદ કરો અથવા નવું બંડલ નામ દાખલ કરો", + // "item.bitstreams.upload.bundle.new": "Create bundle", "item.bitstreams.upload.bundle.new": "બંડલ બનાવો", + // "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.", "item.bitstreams.upload.bundles.empty": "આ આઇટમમાં અપલોડ કરવા માટે કોઈ બંડલ્સ નથી.", + // "item.bitstreams.upload.cancel": "Cancel", "item.bitstreams.upload.cancel": "રદ કરો", + // "item.bitstreams.upload.drop-message": "Drop a file to upload", "item.bitstreams.upload.drop-message": "અપલોડ કરવા માટે ફાઇલ ડ્રોપ કરો", - "item.bitstreams.upload.item": "આઇટમ: ", + // "item.bitstreams.upload.item": "Item: ", + // TODO New key - Add a translation + "item.bitstreams.upload.item": "Item: ", + // "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.", "item.bitstreams.upload.notifications.bundle.created.content": "નવું બંડલ સફળતાપૂર્વક બનાવવામાં આવ્યું.", + // "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle", "item.bitstreams.upload.notifications.bundle.created.title": "બંડલ બનાવ્યું", + // "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.", "item.bitstreams.upload.notifications.upload.failed": "અપલોડ નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", + // "item.bitstreams.upload.title": "Upload bitstream", "item.bitstreams.upload.title": "બિટસ્ટ્રીમ અપલોડ કરો", + // "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload", "item.edit.bitstreams.bundle.edit.buttons.upload": "અપલોડ કરો", + // "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.", "item.edit.bitstreams.bundle.displaying": "હાલમાં {{ amount }} બિટસ્ટ્રીમ્સ {{ total }} માંથી બતાવી રહ્યા છે.", + // "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})", "item.edit.bitstreams.bundle.load.all": "બધા લોડ કરો ({{ total }})", + // "item.edit.bitstreams.bundle.load.more": "Load more", "item.edit.bitstreams.bundle.load.more": "વધુ લોડ કરો", - "item.edit.bitstreams.bundle.name": "બંડલ: {{ name }}", + // "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + // TODO New key - Add a translation + "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle", "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} બંડલમાં બિટસ્ટ્રીમ્સ", + // "item.edit.bitstreams.bundle.tooltip": "You can move a bitstream to a different page by dropping it on the page number.", "item.edit.bitstreams.bundle.tooltip": "તમે બિટસ્ટ્રીમને પૃષ્ઠ નંબર પર ડ્રોપ કરીને તેને અલગ પૃષ્ઠ પર ખસેડી શકો છો.", + // "item.edit.bitstreams.discard-button": "Discard", "item.edit.bitstreams.discard-button": "રદ કરો", + // "item.edit.bitstreams.edit.buttons.download": "Download", "item.edit.bitstreams.edit.buttons.download": "ડાઉનલોડ કરો", + // "item.edit.bitstreams.edit.buttons.drag": "Drag", "item.edit.bitstreams.edit.buttons.drag": "ડ્રેગ કરો", + // "item.edit.bitstreams.edit.buttons.edit": "Edit", "item.edit.bitstreams.edit.buttons.edit": "સંપાદિત કરો", + // "item.edit.bitstreams.edit.buttons.remove": "Remove", "item.edit.bitstreams.edit.buttons.remove": "દૂર કરો", + // "item.edit.bitstreams.edit.buttons.undo": "Undo changes", "item.edit.bitstreams.edit.buttons.undo": "ફેરફારો રદ કરો", + // "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} was returned to position {{ toIndex }} and is no longer selected.", "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} ને સ્થિતિ {{ toIndex }} પર પાછું લાવવામાં આવ્યું છે અને હવે પસંદ કરેલ નથી.", + // "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} is no longer selected.", "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} હવે પસંદ કરેલ નથી.", + // "item.edit.bitstreams.edit.live.loading": "Waiting for move to complete.", "item.edit.bitstreams.edit.live.loading": "ખસેડવાનું પૂર્ણ થવાની રાહ જોઈ રહ્યા છે.", + // "item.edit.bitstreams.edit.live.select": "{{ bitstream }} is selected.", "item.edit.bitstreams.edit.live.select": "{{ bitstream }} પસંદ કરેલ છે.", + // "item.edit.bitstreams.edit.live.move": "{{ bitstream }} is now in position {{ toIndex }}.", "item.edit.bitstreams.edit.live.move": "{{ bitstream }} હવે સ્થિતિ {{ toIndex }} માં છે.", + // "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.", "item.edit.bitstreams.empty": "આ આઇટમમાં કોઈ બિટસ્ટ્રીમ્સ નથી. એક બનાવવા માટે અપલોડ બટન પર ક્લિક કરો.", - "item.edit.bitstreams.info-alert": "બિટસ્ટ્રીમ્સને તેમના બંડલ્સમાં ફરીથી ક્રમમાં ગોઠવવા માટે ડ્રેગ હેન્ડલ પકડીને અને માઉસ ખસેડીને ખસેડી શકાય છે. વૈકલ્પિક રીતે, બિટસ્ટ્રીમ્સને કીબોર્ડનો ઉપયોગ કરીને ખસેડી શકાય છે: બિટસ્ટ્રીમના ડ્રેગ હેન્ડલ પર ફોકસ હોવા પર એન્ટર દબાવીને બિટસ્ટ્રીમ પસંદ કરો. બિટસ્ટ્રીમને ખસેડવા માટે એરો કીઝનો ઉપયોગ કરો. બિટસ્ટ્રીમની વર્તમાન સ્થિતિની પુષ્ટિ કરવા માટે ફરીથી એન્ટર દબાવો.", + // "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + // TODO New key - Add a translation + "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + // "item.edit.bitstreams.headers.actions": "Actions", "item.edit.bitstreams.headers.actions": "ક્રિયાઓ", + // "item.edit.bitstreams.headers.bundle": "Bundle", "item.edit.bitstreams.headers.bundle": "બંડલ", + // "item.edit.bitstreams.headers.description": "Description", "item.edit.bitstreams.headers.description": "વર્ણન", + // "item.edit.bitstreams.headers.format": "Format", "item.edit.bitstreams.headers.format": "ફોર્મેટ", + // "item.edit.bitstreams.headers.name": "Name", "item.edit.bitstreams.headers.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": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + // "item.edit.bitstreams.notifications.discarded.title": "Changes discarded", "item.edit.bitstreams.notifications.discarded.title": "ફેરફારો રદ", + // "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams", "item.edit.bitstreams.notifications.move.failed.title": "બિટસ્ટ્રીમ્સ ખસેડવામાં ભૂલ", + // "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": "આ આઇટમના બિટસ્ટ્રીમ્સ અને બંડલ્સ માટેના તમારા ખસેડવાના ફેરફારો સાચવવામાં આવ્યા.", + // "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved", "item.edit.bitstreams.notifications.move.saved.title": "ખસેડવાના ફેરફારો સાચવ્યા", + // "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": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", + // "item.edit.bitstreams.notifications.outdated.title": "Changes outdated", "item.edit.bitstreams.notifications.outdated.title": "ફેરફારો જૂના છે", + // "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream", "item.edit.bitstreams.notifications.remove.failed.title": "બિટસ્ટ્રીમ કાઢી નાખવામાં ભૂલ", + // "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": "આ આઇટમના બિટસ્ટ્રીમ્સ માટેના તમારા દૂર કરવાના ફેરફારો સાચવવામાં આવ્યા.", + // "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved", "item.edit.bitstreams.notifications.remove.saved.title": "દૂર કરવાના ફેરફારો સાચવ્યા", + // "item.edit.bitstreams.reinstate-button": "Undo", "item.edit.bitstreams.reinstate-button": "Undo", + // "item.edit.bitstreams.save-button": "Save", "item.edit.bitstreams.save-button": "સાચવો", + // "item.edit.bitstreams.upload-button": "Upload", "item.edit.bitstreams.upload-button": "અપલોડ કરો", + // "item.edit.bitstreams.load-more.link": "Load more", "item.edit.bitstreams.load-more.link": "વધુ લોડ કરો", + // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "રદ કરો", + // "item.edit.delete.confirm": "Delete", "item.edit.delete.confirm": "કાઢી નાખો", - "item.edit.delete.description": "શું તમે ખરેખર આ આઇટમને સંપૂર્ણપણે કાઢી નાખવા માંગો છો? સાવચેત: હાલમાં, કોઈ ટોમ્બસ્ટોન બાકી રહેશે નહીં.", + // "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + // TODO New key - Add a translation + "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + // "item.edit.delete.error": "An error occurred while deleting the item", "item.edit.delete.error": "આઇટમ કાઢી નાખતી વખતે ભૂલ આવી", - "item.edit.delete.header": "આઇટમ કાઢી નાખો: {{ id }}", + // "item.edit.delete.header": "Delete item: {{ id }}", + // TODO New key - Add a translation + "item.edit.delete.header": "Delete item: {{ id }}", + // "item.edit.delete.success": "The item has been deleted", "item.edit.delete.success": "આઇટમ કાઢી નાખવામાં આવ્યું છે", + // "item.edit.head": "Edit Item", "item.edit.head": "આઇટમ સંપાદિત કરો", + // "item.edit.breadcrumbs": "Edit Item", "item.edit.breadcrumbs": "આઇટમ સંપાદિત કરો", + // "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab", "item.edit.tabs.disabled.tooltip": "તમે આ ટેબ ઍક્સેસ કરવા માટે અધિકૃત નથી", + // "item.edit.tabs.mapper.head": "Collection Mapper", "item.edit.tabs.mapper.head": "સંગ્રહ મેપર", + // "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper", "item.edit.tabs.item-mapper.title": "આઇટમ સંપાદન - સંગ્રહ મેપર", + // "item.edit.identifiers.doi.status.UNKNOWN": "Unknown", "item.edit.identifiers.doi.status.UNKNOWN": "અજ્ઞાત", + // "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "Queued for registration", "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "નોંધણી માટે કતારમાં", + // "item.edit.identifiers.doi.status.TO_BE_RESERVED": "Queued for reservation", "item.edit.identifiers.doi.status.TO_BE_RESERVED": "રિઝર્વેશન માટે કતારમાં", + // "item.edit.identifiers.doi.status.IS_REGISTERED": "Registered", "item.edit.identifiers.doi.status.IS_REGISTERED": "નોંધાયેલ", + // "item.edit.identifiers.doi.status.IS_RESERVED": "Reserved", "item.edit.identifiers.doi.status.IS_RESERVED": "રિઝર્વેશન", + // "item.edit.identifiers.doi.status.UPDATE_RESERVED": "Reserved (update queued)", "item.edit.identifiers.doi.status.UPDATE_RESERVED": "રિઝર્વેશન (અપડેટ કતારમાં)", + // "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Registered (update queued)", "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "નોંધાયેલ (અપડેટ કતારમાં)", + // "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "Queued for update and registration", "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "અપડેટ અને નોંધણી માટે કતારમાં", + // "item.edit.identifiers.doi.status.TO_BE_DELETED": "Queued for deletion", "item.edit.identifiers.doi.status.TO_BE_DELETED": "કાઢી નાખવા માટે કતારમાં", + // "item.edit.identifiers.doi.status.DELETED": "Deleted", "item.edit.identifiers.doi.status.DELETED": "કાઢી નાખ્યું", + // "item.edit.identifiers.doi.status.PENDING": "Pending (not registered)", "item.edit.identifiers.doi.status.PENDING": "બાકી (નોંધાયેલ નથી)", + // "item.edit.identifiers.doi.status.MINTED": "Minted (not registered)", "item.edit.identifiers.doi.status.MINTED": "મિન્ટેડ (નોંધાયેલ નથી)", + // "item.edit.tabs.status.buttons.register-doi.label": "Register a new or pending DOI", "item.edit.tabs.status.buttons.register-doi.label": "નવું અથવા બાકી DOI નોંધણી કરો", + // "item.edit.tabs.status.buttons.register-doi.button": "Register DOI...", "item.edit.tabs.status.buttons.register-doi.button": "DOI નોંધણી કરો...", + // "item.edit.register-doi.header": "Register a new or pending DOI", "item.edit.register-doi.header": "નવું અથવા બાકી DOI નોંધણી કરો", + // "item.edit.register-doi.description": "Review any pending identifiers and item metadata below and click Confirm to proceed with DOI registration, or Cancel to back out", "item.edit.register-doi.description": "કોઈ બાકી ઓળખકર્તાઓ અને આઇટમ મેટાડેટાની નીચે સમીક્ષા કરો અને DOI નોંધણી સાથે આગળ વધવા માટે પુષ્ટિ પર ક્લિક કરો, અથવા રદ કરવા માટે પાછા જાઓ", + // "item.edit.register-doi.confirm": "Confirm", "item.edit.register-doi.confirm": "પુષ્ટિ કરો", + // "item.edit.register-doi.cancel": "Cancel", "item.edit.register-doi.cancel": "રદ કરો", + // "item.edit.register-doi.success": "DOI queued for registration successfully.", "item.edit.register-doi.success": "DOI નોંધણી માટે કતારમાં સફળતાપૂર્વક મૂક્યું.", + // "item.edit.register-doi.error": "Error registering DOI", "item.edit.register-doi.error": "DOI નોંધણીમાં ભૂલ", + // "item.edit.register-doi.to-update": "The following DOI has already been minted and will be queued for registration online", "item.edit.register-doi.to-update": "નીચે આપેલ DOI પહેલેથી જ મિન્ટેડ છે અને ઓનલાઈન નોંધણી માટે કતારમાં મૂકવામાં આવશે", + // "item.edit.item-mapper.buttons.add": "Map item to selected collections", "item.edit.item-mapper.buttons.add": "આઇટમને પસંદ કરેલ સંગ્રહોમાં મેપ કરો", + // "item.edit.item-mapper.buttons.remove": "Remove item's mapping for selected collections", "item.edit.item-mapper.buttons.remove": "પસંદ કરેલ સંગ્રહો માટે આઇટમનું મેપિંગ દૂર કરો", + // "item.edit.item-mapper.cancel": "Cancel", "item.edit.item-mapper.cancel": "રદ કરો", + // "item.edit.item-mapper.description": "This is the item mapper tool that allows administrators to map this item to other collections. You can search for collections and map them, or browse the list of collections the item is currently mapped to.", "item.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે વહીવટકર્તાઓને આ આઇટમને અન્ય સંગ્રહોમાં મેપ કરવાની મંજૂરી આપે છે. તમે સંગ્રહો શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા આઇટમ હાલમાં જે સંગ્રહોમાં મેપ કરેલ છે તેની યાદી બ્રાઉઝ કરી શકો છો.", + // "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections", "item.edit.item-mapper.head": "આઇટમ મેપર - આઇટમને સંગ્રહોમાં મેપ કરો", - "item.edit.item-mapper.item": "આઇટમ: \\\"{{name}}\\\"", + // "item.edit.item-mapper.item": "Item: \"{{name}}\"", + // TODO New key - Add a translation + "item.edit.item-mapper.item": "Item: \"{{name}}\"", + // "item.edit.item-mapper.no-search": "Please enter a query to search", "item.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", + // "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": "આઇટમને {{amount}} સંગ્રહોમાં મેપ કરતી વખતે ભૂલો આવી.", + // "item.edit.item-mapper.notifications.add.error.head": "Mapping errors", "item.edit.item-mapper.notifications.add.error.head": "મેપિંગ ભૂલો", + // "item.edit.item-mapper.notifications.add.success.content": "Successfully mapped item to {{amount}} collections.", "item.edit.item-mapper.notifications.add.success.content": "આઇટમને {{amount}} સંગ્રહોમાં સફળતાપૂર્વક મેપ કર્યું.", + // "item.edit.item-mapper.notifications.add.success.head": "Mapping completed", "item.edit.item-mapper.notifications.add.success.head": "મેપિંગ પૂર્ણ", + // "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.error.content": "મેપિંગ {{amount}} સંગ્રહો માટે દૂર કરતી વખતે ભૂલો આવી.", + // "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors", "item.edit.item-mapper.notifications.remove.error.head": "મેપિંગ દૂર કરવાની ભૂલો", + // "item.edit.item-mapper.notifications.remove.success.content": "Successfully removed mapping of item to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.success.content": "આઇટમનું મેપિંગ {{amount}} સંગ્રહો માટે સફળતાપૂર્વક દૂર કર્યું.", + // "item.edit.item-mapper.notifications.remove.success.head": "Removal of mapping completed", "item.edit.item-mapper.notifications.remove.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", + // "item.edit.item-mapper.search-form.placeholder": "Search collections...", "item.edit.item-mapper.search-form.placeholder": "સંગ્રહો શોધો...", + // "item.edit.item-mapper.tabs.browse": "Browse mapped collections", "item.edit.item-mapper.tabs.browse": "મેપ કરેલ સંગ્રહો બ્રાઉઝ કરો", + // "item.edit.item-mapper.tabs.map": "Map new collections", "item.edit.item-mapper.tabs.map": "નવા સંગ્રહો મેપ કરો", + // "item.edit.metadata.add-button": "Add", "item.edit.metadata.add-button": "ઉમેરો", + // "item.edit.metadata.discard-button": "Discard", "item.edit.metadata.discard-button": "રદ કરો", + // "item.edit.metadata.edit.language": "Edit language", "item.edit.metadata.edit.language": "ભાષા સંપાદિત કરો", + // "item.edit.metadata.edit.value": "Edit value", "item.edit.metadata.edit.value": "મૂલ્ય સંપાદિત કરો", + // "item.edit.metadata.edit.authority.key": "Edit authority key", "item.edit.metadata.edit.authority.key": "અધિકૃતતા કી સંપાદિત કરો", + // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", "item.edit.metadata.edit.buttons.enable-free-text-editing": "મફત-ટેક્સ્ટ સંપાદન સક્ષમ કરો", + // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", "item.edit.metadata.edit.buttons.disable-free-text-editing": "મફત-ટેક્સ્ટ સંપાદન અક્ષમ કરો", + // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "પુષ્ટિ કરો", + // "item.edit.metadata.edit.buttons.drag": "Drag to reorder", "item.edit.metadata.edit.buttons.drag": "ફરીથી ક્રમમાં ગોઠવવા માટે ડ્રેગ કરો", + // "item.edit.metadata.edit.buttons.edit": "Edit", "item.edit.metadata.edit.buttons.edit": "સંપાદિત કરો", + // "item.edit.metadata.edit.buttons.remove": "Remove", "item.edit.metadata.edit.buttons.remove": "દૂર કરો", + // "item.edit.metadata.edit.buttons.undo": "Undo changes", "item.edit.metadata.edit.buttons.undo": "ફેરફારો રદ કરો", + // "item.edit.metadata.edit.buttons.unedit": "Stop editing", "item.edit.metadata.edit.buttons.unedit": "સંપાદન બંધ કરો", + // "item.edit.metadata.edit.buttons.virtual": "This is a virtual metadata value, i.e. a value inherited from a related entity. It can’t be modified directly. Add or remove the corresponding relationship in the \"Relationships\" tab", "item.edit.metadata.edit.buttons.virtual": "આ વર્ચ્યુઅલ મેટાડેટા મૂલ્ય છે, એટલે કે સંબંધિત સત્તાથી વારસામાં મળેલું મૂલ્ય. તેને સીધા રીતે બદલી શકાતું નથી. 'સંબંધો' ટેબમાં સંબંધ ઉમેરો અથવા દૂર કરો", + // "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.", "item.edit.metadata.empty": "આ આઇટમમાં હાલમાં કોઈ મેટાડેટા નથી. મેટાડેટા મૂલ્ય ઉમેરવાનું શરૂ કરવા માટે ઉમેરો પર ક્લિક કરો.", + // "item.edit.metadata.headers.edit": "Edit", "item.edit.metadata.headers.edit": "સંપાદિત કરો", + // "item.edit.metadata.headers.field": "Field", "item.edit.metadata.headers.field": "ફીલ્ડ", + // "item.edit.metadata.headers.language": "Lang", "item.edit.metadata.headers.language": "ભાષા", + // "item.edit.metadata.headers.value": "Value", "item.edit.metadata.headers.value": "મૂલ્ય", + // "item.edit.metadata.metadatafield": "Edit field", "item.edit.metadata.metadatafield": "ફીલ્ડ સંપાદિત કરો", + // "item.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "item.edit.metadata.metadatafield.error": "મેટાડેટા ફીલ્ડ માન્ય કરતી વખતે ભૂલ આવી", + // "item.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "item.edit.metadata.metadatafield.invalid": "કૃપા કરીને માન્ય મેટાડેટા ફીલ્ડ પસંદ કરો", + // "item.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.metadata.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + // "item.edit.metadata.notifications.discarded.title": "Changes discarded", "item.edit.metadata.notifications.discarded.title": "ફેરફારો રદ", + // "item.edit.metadata.notifications.error.title": "An error occurred", "item.edit.metadata.notifications.error.title": "ભૂલ આવી", + // "item.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "item.edit.metadata.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", + // "item.edit.metadata.notifications.invalid.title": "Metadata invalid", "item.edit.metadata.notifications.invalid.title": "મેટાડેટા અમાન્ય", + // "item.edit.metadata.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.metadata.notifications.outdated.content": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", + // "item.edit.metadata.notifications.outdated.title": "Changes outdated", "item.edit.metadata.notifications.outdated.title": "ફેરફારો જૂના છે", + // "item.edit.metadata.notifications.saved.content": "Your changes to this item's metadata were saved.", "item.edit.metadata.notifications.saved.content": "આ આઇટમના મેટાડેટા માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", + // "item.edit.metadata.notifications.saved.title": "Metadata saved", "item.edit.metadata.notifications.saved.title": "મેટાડેટા સાચવ્યા", + // "item.edit.metadata.reinstate-button": "Undo", "item.edit.metadata.reinstate-button": "Undo", + // "item.edit.metadata.reset-order-button": "Undo reorder", "item.edit.metadata.reset-order-button": "ફરીથી ક્રમમાં ગોઠવવું Undo", + // "item.edit.metadata.save-button": "Save", "item.edit.metadata.save-button": "સાચવો", - "item.edit.metadata.authority.label": "અધિકૃતતા: ", + // "item.edit.metadata.authority.label": "Authority: ", + // TODO New key - Add a translation + "item.edit.metadata.authority.label": "Authority: ", + // "item.edit.metadata.edit.buttons.open-authority-edition": "Unlock the authority key value for manual editing", "item.edit.metadata.edit.buttons.open-authority-edition": "મેન્યુઅલ સંપાદન માટે અધિકૃતતા કી મૂલ્યને અનલૉક કરો", + // "item.edit.metadata.edit.buttons.close-authority-edition": "Lock the authority key value for manual editing", "item.edit.metadata.edit.buttons.close-authority-edition": "મેન્યુઅલ સંપાદન માટે અધિકૃતતા કી મૂલ્યને લૉક કરો", + // "item.edit.modify.overview.field": "Field", "item.edit.modify.overview.field": "ફીલ્ડ", + // "item.edit.modify.overview.language": "Language", "item.edit.modify.overview.language": "ભાષા", + // "item.edit.modify.overview.value": "Value", "item.edit.modify.overview.value": "મૂલ્ય", + // "item.edit.move.cancel": "Back", "item.edit.move.cancel": "પાછા", + // "item.edit.move.save-button": "Save", "item.edit.move.save-button": "સાચવો", + // "item.edit.move.discard-button": "Discard", "item.edit.move.discard-button": "રદ કરો", + // "item.edit.move.description": "Select the collection you wish to move this item to. To narrow down the list of displayed collections, you can enter a search query in the box.", "item.edit.move.description": "આઇટમ ખસેડવા માટે તમે જે સંગ્રહમાં ખસેડવા માંગો છો તે પસંદ કરો. બતાવેલ સંગ્રહોની યાદી સંકોચવા માટે, તમે બોક્સમાં શોધ ક્વેરી દાખલ કરી શકો છો.", + // "item.edit.move.error": "An error occurred when attempting to move the item", "item.edit.move.error": "આઇટમ ખસેડવાનો પ્રયાસ કરતી વખતે ભૂલ આવી", - "item.edit.move.head": "આઇટમ ખસેડો: {{id}}", + // "item.edit.move.head": "Move item: {{id}}", + // TODO New key - Add a translation + "item.edit.move.head": "Move item: {{id}}", + // "item.edit.move.inheritpolicies.checkbox": "Inherit policies", "item.edit.move.inheritpolicies.checkbox": "પોલિસી વારસામાં મેળવો", + // "item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection", "item.edit.move.inheritpolicies.description": "લક્ષ્ય સંગ્રહની ડિફોલ્ટ પોલિસી વારસામાં મેળવો", - "item.edit.move.inheritpolicies.tooltip": "ચેતવણી: સક્ષમ હોવા પર, આઇટમ અને આઇટમ સાથે સંકળાયેલી કોઈપણ ફાઇલો માટેની વાંચન ઍક્સેસ પોલિસી લક્ષ્ય સંગ્રહની ડિફોલ્ટ વાંચન ઍક્સેસ પોલિસી દ્વારા બદલવામાં આવશે. આ પાછું લાવી શકાતું નથી.", + // "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + // TODO New key - Add a translation + "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + // "item.edit.move.move": "Move", "item.edit.move.move": "ખસેડો", + // "item.edit.move.processing": "Moving...", "item.edit.move.processing": "ખસેડી રહ્યા છે...", + // "item.edit.move.search.placeholder": "Enter a search query to look for collections", "item.edit.move.search.placeholder": "સંગ્રહો શોધવા માટે શોધ ક્વેરી દાખલ કરો", + // "item.edit.move.success": "The item has been moved successfully", "item.edit.move.success": "આ આઇટમ સફળતાપૂર્વક ખસેડવામાં આવ્યું છે", + // "item.edit.move.title": "Move item", "item.edit.move.title": "આઇટમ ખસેડો", + // "item.edit.private.cancel": "Cancel", "item.edit.private.cancel": "રદ કરો", + // "item.edit.private.confirm": "Make it non-discoverable", "item.edit.private.confirm": "તેને નોન-ડિસ્કવરેબલ બનાવો", + // "item.edit.private.description": "Are you sure this item should be made non-discoverable in the archive?", "item.edit.private.description": "શું તમે ખાતરી કરો છો કે આ આઇટમ આર્કાઇવમાં નોન-ડિસ્કવરેબલ બનાવવું જોઈએ?", + // "item.edit.private.error": "An error occurred while making the item non-discoverable", "item.edit.private.error": "આ આઇટમને નોન-ડિસ્કવરેબલ બનાવતી વખતે એક ભૂલ આવી", - "item.edit.private.header": "આઇટમ નોન-ડિસ્કવરેબલ બનાવો: {{ id }}", + // "item.edit.private.header": "Make item non-discoverable: {{ id }}", + // TODO New key - Add a translation + "item.edit.private.header": "Make item non-discoverable: {{ id }}", + // "item.edit.private.success": "The item is now non-discoverable", "item.edit.private.success": "આ આઇટમ હવે નોન-ડિસ્કવરેબલ છે", + // "item.edit.public.cancel": "Cancel", "item.edit.public.cancel": "રદ કરો", + // "item.edit.public.confirm": "Make it discoverable", "item.edit.public.confirm": "તેને ડિસ્કવરેબલ બનાવો", + // "item.edit.public.description": "Are you sure this item should be made discoverable in the archive?", "item.edit.public.description": "શું તમે ખાતરી કરો છો કે આ આઇટમ આર્કાઇવમાં ડિસ્કવરેબલ બનાવવું જોઈએ?", + // "item.edit.public.error": "An error occurred while making the item discoverable", "item.edit.public.error": "આ આઇટમને ડિસ્કવરેબલ બનાવતી વખતે એક ભૂલ આવી", - "item.edit.public.header": "આઇટમ ડિસ્કવરેબલ બનાવો: {{ id }}", + // "item.edit.public.header": "Make item discoverable: {{ id }}", + // TODO New key - Add a translation + "item.edit.public.header": "Make item discoverable: {{ id }}", + // "item.edit.public.success": "The item is now discoverable", "item.edit.public.success": "આ આઇટમ હવે ડિસ્કવરેબલ છે", + // "item.edit.reinstate.cancel": "Cancel", "item.edit.reinstate.cancel": "રદ કરો", + // "item.edit.reinstate.confirm": "Reinstate", "item.edit.reinstate.confirm": "ફરી સ્થાપિત કરો", + // "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?", "item.edit.reinstate.description": "શું તમે ખાતરી કરો છો કે આ આઇટમને આર્કાઇવમાં ફરી સ્થાપિત કરવું જોઈએ?", + // "item.edit.reinstate.error": "An error occurred while reinstating the item", "item.edit.reinstate.error": "આ આઇટમને ફરી સ્થાપિત કરતી વખતે એક ભૂલ આવી", - "item.edit.reinstate.header": "આઇટમ ફરી સ્થાપિત કરો: {{ id }}", + // "item.edit.reinstate.header": "Reinstate item: {{ id }}", + // TODO New key - Add a translation + "item.edit.reinstate.header": "Reinstate item: {{ id }}", + // "item.edit.reinstate.success": "The item was reinstated successfully", "item.edit.reinstate.success": "આ આઇટમ સફળતાપૂર્વક ફરી સ્થાપિત થયું", + // "item.edit.relationships.discard-button": "Discard", "item.edit.relationships.discard-button": "રદ કરો", + // "item.edit.relationships.edit.buttons.add": "Add", "item.edit.relationships.edit.buttons.add": "ઉમેરો", + // "item.edit.relationships.edit.buttons.remove": "Remove", "item.edit.relationships.edit.buttons.remove": "દૂર કરો", + // "item.edit.relationships.edit.buttons.undo": "Undo changes", "item.edit.relationships.edit.buttons.undo": "ફેરફારો રદ કરો", + // "item.edit.relationships.no-relationships": "No relationships", "item.edit.relationships.no-relationships": "કોઈ સંબંધો નથી", + // "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.relationships.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા હતા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + // "item.edit.relationships.notifications.discarded.title": "Changes discarded", "item.edit.relationships.notifications.discarded.title": "ફેરફારો રદ", + // "item.edit.relationships.notifications.failed.title": "Error editing relationships", "item.edit.relationships.notifications.failed.title": "સંબંધો સંપાદિત કરતી વખતે ભૂલ", + // "item.edit.relationships.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.relationships.notifications.outdated.content": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", + // "item.edit.relationships.notifications.outdated.title": "Changes outdated", "item.edit.relationships.notifications.outdated.title": "ફેરફારો જૂના", + // "item.edit.relationships.notifications.saved.content": "Your changes to this item's relationships were saved.", "item.edit.relationships.notifications.saved.content": "આ આઇટમના સંબંધો માટેના તમારા ફેરફારો સાચવવામાં આવ્યા હતા.", + // "item.edit.relationships.notifications.saved.title": "Relationships saved", "item.edit.relationships.notifications.saved.title": "સંબંધો સાચવ્યા", + // "item.edit.relationships.reinstate-button": "Undo", "item.edit.relationships.reinstate-button": "Undo", + // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "સાચવો", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", "item.edit.relationships.no-entity-type": "આ આઇટમ માટે સંબંધો સક્ષમ કરવા માટે 'dspace.entity.type' મેટાડેટા ઉમેરો", + // "item.edit.return": "Back", "item.edit.return": "પાછા", + // "item.edit.tabs.bitstreams.head": "Bitstreams", "item.edit.tabs.bitstreams.head": "બિટસ્ટ્રીમ્સ", + // "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams", "item.edit.tabs.bitstreams.title": "આઇટમ સંપાદન - બિટસ્ટ્રીમ્સ", + // "item.edit.tabs.curate.head": "Curate", "item.edit.tabs.curate.head": "ક્યુરેટ", + // "item.edit.tabs.curate.title": "Item Edit - Curate", "item.edit.tabs.curate.title": "આઇટમ ક્યુરેટ કરો: {{item}}", + // "item.edit.curate.title": "Curate Item: {{item}}", + // TODO New key - Add a translation + "item.edit.curate.title": "Curate Item: {{item}}", + + // "item.edit.tabs.access-control.head": "Access Control", "item.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", + // "item.edit.tabs.access-control.title": "Item Edit - Access Control", "item.edit.tabs.access-control.title": "આઇટમ સંપાદન - ઍક્સેસ કંટ્રોલ", + // "item.edit.tabs.metadata.head": "Metadata", "item.edit.tabs.metadata.head": "મેટાડેટા", + // "item.edit.tabs.metadata.title": "Item Edit - Metadata", "item.edit.tabs.metadata.title": "આઇટમ સંપાદન - મેટાડેટા", + // "item.edit.tabs.relationships.head": "Relationships", "item.edit.tabs.relationships.head": "સંબંધો", + // "item.edit.tabs.relationships.title": "Item Edit - Relationships", "item.edit.tabs.relationships.title": "આઇટમ સંપાદન - સંબંધો", + // "item.edit.tabs.status.buttons.authorizations.button": "Authorizations...", "item.edit.tabs.status.buttons.authorizations.button": "અધિકૃતતાઓ...", + // "item.edit.tabs.status.buttons.authorizations.label": "Edit item's authorization policies", "item.edit.tabs.status.buttons.authorizations.label": "આઇટમની અધિકૃતતા નીતિઓ સંપાદિત કરો", + // "item.edit.tabs.status.buttons.delete.button": "Permanently delete", "item.edit.tabs.status.buttons.delete.button": "કાયમ માટે કાઢી નાખો", + // "item.edit.tabs.status.buttons.delete.label": "Completely expunge item", "item.edit.tabs.status.buttons.delete.label": "આઇટમને સંપૂર્ણપણે કાઢી નાખો", + // "item.edit.tabs.status.buttons.mappedCollections.button": "Mapped collections", "item.edit.tabs.status.buttons.mappedCollections.button": "મૅપ કરેલ સંગ્રહો", + // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "મૅપ કરેલ સંગ્રહો મેનેજ કરો", + // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", "item.edit.tabs.status.buttons.move.button": "આ આઇટમને અલગ સંગ્રહમાં ખસેડો", + // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", "item.edit.tabs.status.buttons.move.label": "આઇટમને બીજા સંગ્રહમાં ખસેડો", + // "item.edit.tabs.status.buttons.private.button": "Make it non-discoverable...", "item.edit.tabs.status.buttons.private.button": "તેને નોન-ડિસ્કવરેબલ બનાવો...", + // "item.edit.tabs.status.buttons.private.label": "Make item non-discoverable", "item.edit.tabs.status.buttons.private.label": "આઇટમને નોન-ડિસ્કવરેબલ બનાવો", + // "item.edit.tabs.status.buttons.public.button": "Make it discoverable...", "item.edit.tabs.status.buttons.public.button": "તેને ડિસ્કવરેબલ બનાવો...", + // "item.edit.tabs.status.buttons.public.label": "Make item discoverable", "item.edit.tabs.status.buttons.public.label": "આઇટમને ડિસ્કવરેબલ બનાવો", + // "item.edit.tabs.status.buttons.reinstate.button": "Reinstate...", "item.edit.tabs.status.buttons.reinstate.button": "ફરી સ્થાપિત કરો...", + // "item.edit.tabs.status.buttons.reinstate.label": "Reinstate item into the repository", "item.edit.tabs.status.buttons.reinstate.label": "આઇટમને રિપોઝિટરીમાં ફરી સ્થાપિત કરો", + // "item.edit.tabs.status.buttons.unauthorized": "You're not authorized to perform this action", "item.edit.tabs.status.buttons.unauthorized": "તમે આ ક્રિયા કરવા માટે અધિકૃત નથી", + // "item.edit.tabs.status.buttons.withdraw.button": "Withdraw this item", "item.edit.tabs.status.buttons.withdraw.button": "આ આઇટમને પાછું ખેંચો", + // "item.edit.tabs.status.buttons.withdraw.label": "Withdraw item from the repository", "item.edit.tabs.status.buttons.withdraw.label": "આઇટમને રિપોઝિટરીમાંથી પાછું ખેંચો", + // "item.edit.tabs.status.description": "Welcome to the item management page. From here you can withdraw, reinstate, move or delete the item. You may also update or add new metadata / bitstreams on the other tabs.", "item.edit.tabs.status.description": "આઇટમ મેનેજમેન્ટ પેજમાં આપનું સ્વાગત છે. અહીંથી તમે આઇટમને પાછું ખેંચી શકો છો, ફરી સ્થાપિત કરી શકો છો, ખસેડી શકો છો અથવા કાઢી શકો છો. તમે અન્ય ટૅબ પર નવા મેટાડેટા / બિટસ્ટ્રીમ્સને અપડેટ અથવા ઉમેરવા માટે પણ કરી શકો છો.", + // "item.edit.tabs.status.head": "Status", "item.edit.tabs.status.head": "સ્થિતિ", + // "item.edit.tabs.status.labels.handle": "Handle", "item.edit.tabs.status.labels.handle": "હેન્ડલ", + // "item.edit.tabs.status.labels.id": "Item Internal ID", "item.edit.tabs.status.labels.id": "આઇટમ આંતરિક ID", + // "item.edit.tabs.status.labels.itemPage": "Item Page", "item.edit.tabs.status.labels.itemPage": "આઇટમ પેજ", + // "item.edit.tabs.status.labels.lastModified": "Last Modified", "item.edit.tabs.status.labels.lastModified": "છેલ્લે ફેરફાર", + // "item.edit.tabs.status.title": "Item Edit - Status", "item.edit.tabs.status.title": "આઇટમ સંપાદન - સ્થિતિ", + // "item.edit.tabs.versionhistory.head": "Version History", "item.edit.tabs.versionhistory.head": "આવૃત્તિ ઇતિહાસ", + // "item.edit.tabs.versionhistory.title": "Item Edit - Version History", "item.edit.tabs.versionhistory.title": "આઇટમ સંપાદન - આવૃત્તિ ઇતિહાસ", + // "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": "આ વપરાશકર્તા ઇન્ટરફેસમાં નવી આવૃત્તિઓ સંપાદિત કરવી અથવા ઉમેરવી હજી શક્ય નથી.", + // "item.edit.tabs.view.head": "View Item", "item.edit.tabs.view.head": "આઇટમ જુઓ", + // "item.edit.tabs.view.title": "Item Edit - View", "item.edit.tabs.view.title": "આઇટમ સંપાદન - જુઓ", + // "item.edit.withdraw.cancel": "Cancel", "item.edit.withdraw.cancel": "રદ કરો", + // "item.edit.withdraw.confirm": "Withdraw", "item.edit.withdraw.confirm": "પાછું ખેંચો", + // "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?", "item.edit.withdraw.description": "શું તમે ખાતરી કરો છો કે આ આઇટમને આર્કાઇવમાંથી પાછું ખેંચવું જોઈએ?", + // "item.edit.withdraw.error": "An error occurred while withdrawing the item", "item.edit.withdraw.error": "આ આઇટમને પાછું ખેંચતી વખતે એક ભૂલ આવી", - "item.edit.withdraw.header": "આઇટમ પાછું ખેંચો: {{ id }}", + // "item.edit.withdraw.header": "Withdraw item: {{ id }}", + // TODO New key - Add a translation + "item.edit.withdraw.header": "Withdraw item: {{ id }}", + // "item.edit.withdraw.success": "The item was withdrawn successfully", "item.edit.withdraw.success": "આ આઇટમ સફળતાપૂર્વક પાછું ખેંચવામાં આવ્યું", + // "item.orcid.return": "Back", "item.orcid.return": "પાછા", + // "item.listelement.badge": "Item", "item.listelement.badge": "આઇટમ", + // "item.page.description": "Description", "item.page.description": "વર્ણન", + // "item.page.org-unit": "Organizational Unit", + // TODO New key - Add a translation + "item.page.org-unit": "Organizational Unit", + + // "item.page.org-units": "Organizational Units", + // TODO New key - Add a translation + "item.page.org-units": "Organizational Units", + + // "item.page.project": "Research Project", + // TODO New key - Add a translation + "item.page.project": "Research Project", + + // "item.page.projects": "Research Projects", + // TODO New key - Add a translation + "item.page.projects": "Research Projects", + + // "item.page.publication": "Publications", + // TODO New key - Add a translation + "item.page.publication": "Publications", + + // "item.page.publications": "Publications", + // TODO New key - Add a translation + "item.page.publications": "Publications", + + // "item.page.article": "Article", + // TODO New key - Add a translation + "item.page.article": "Article", + + // "item.page.articles": "Articles", + // TODO New key - Add a translation + "item.page.articles": "Articles", + + // "item.page.journal": "Journal", + // TODO New key - Add a translation + "item.page.journal": "Journal", + + // "item.page.journals": "Journals", + // TODO New key - Add a translation + "item.page.journals": "Journals", + + // "item.page.journal-issue": "Journal Issue", + // TODO New key - Add a translation + "item.page.journal-issue": "Journal Issue", + + // "item.page.journal-issues": "Journal Issues", + // TODO New key - Add a translation + "item.page.journal-issues": "Journal Issues", + + // "item.page.journal-volume": "Journal Volume", + // TODO New key - Add a translation + "item.page.journal-volume": "Journal Volume", + + // "item.page.journal-volumes": "Journal Volumes", + // TODO New key - Add a translation + "item.page.journal-volumes": "Journal Volumes", + + // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "જર્નલ ISSN", + // "item.page.journal-title": "Journal Title", "item.page.journal-title": "જર્નલ શીર્ષક", + // "item.page.publisher": "Publisher", "item.page.publisher": "પ્રકાશક", - "item.page.titleprefix": "આઇટમ: ", + // "item.page.titleprefix": "Item: ", + // TODO New key - Add a translation + "item.page.titleprefix": "Item: ", + // "item.page.volume-title": "Volume Title", "item.page.volume-title": "વોલ્યુમ શીર્ષક", + // "item.page.dcterms.spatial": "Geospatial point", "item.page.dcterms.spatial": "ભૌગોલિક બિંદુ", + // "item.search.results.head": "Item Search Results", "item.search.results.head": "આઇટમ શોધ પરિણામો", + // "item.search.title": "Item Search", "item.search.title": "આઇટમ શોધ", + // "item.truncatable-part.show-more": "Show more", "item.truncatable-part.show-more": "વધુ બતાવો", + // "item.truncatable-part.show-less": "Collapse", "item.truncatable-part.show-less": "સંકોચો", + // "item.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "item.qa-event-notification.check.notification-info": "તમારા ખાતા સાથે સંબંધિત {{num}} પેન્ડિંગ સૂચનો છે", + // "item.qa-event-notification-info.check.button": "View", "item.qa-event-notification-info.check.button": "જુઓ", + // "mydspace.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "mydspace.qa-event-notification.check.notification-info": "તમારા ખાતા સાથે સંબંધિત {{num}} પેન્ડિંગ સૂચનો છે", + // "mydspace.qa-event-notification-info.check.button": "View", "mydspace.qa-event-notification-info.check.button": "જુઓ", + // "workflow-item.search.result.delete-supervision.modal.header": "Delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.header": "સુપરવિઝન ઓર્ડર કાઢી નાખો", + // "workflow-item.search.result.delete-supervision.modal.info": "Are you sure you want to delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.info": "શું તમે સુપરવિઝન ઓર્ડર કાઢી નાખવા માંગો છો?", + // "workflow-item.search.result.delete-supervision.modal.cancel": "Cancel", "workflow-item.search.result.delete-supervision.modal.cancel": "રદ કરો", + // "workflow-item.search.result.delete-supervision.modal.confirm": "Delete", "workflow-item.search.result.delete-supervision.modal.confirm": "કાઢી નાખો", + // "workflow-item.search.result.notification.deleted.success": "Successfully deleted supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.success": "સુપરવિઝન ઓર્ડર સફળતાપૂર્વક કાઢી નાખ્યો \"{{name}}\"", + // "workflow-item.search.result.notification.deleted.failure": "Failed to delete supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.failure": "સુપરવિઝન ઓર્ડર કાઢી શક્યો નહીં \"{{name}}\"", - "workflow-item.search.result.list.element.supervised-by": "સુપરવિઝન દ્વારા:", + // "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + // TODO New key - Add a translation + "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + // "workflow-item.search.result.list.element.supervised.remove-tooltip": "Remove supervision group", "workflow-item.search.result.list.element.supervised.remove-tooltip": "સુપરવિઝન જૂથ દૂર કરો", + // "confidence.indicator.help-text.accepted": "This authority value has been confirmed as accurate by an interactive user", "confidence.indicator.help-text.accepted": "આ અધિકૃત મૂલ્યને ઇન્ટરેક્ટિવ વપરાશકર્તા દ્વારા સચોટ તરીકે પુષ્ટિ આપવામાં આવી છે", + // "confidence.indicator.help-text.uncertain": "Value is singular and valid but has not been seen and accepted by a human so it is still uncertain", "confidence.indicator.help-text.uncertain": "મૂલ્ય એકલ અને માન્ય છે પરંતુ માનવ દ્વારા જોવામાં અને સ્વીકારવામાં આવ્યું નથી તેથી તે હજી પણ અનિશ્ચિત છે", + // "confidence.indicator.help-text.ambiguous": "There are multiple matching authority values of equal validity", "confidence.indicator.help-text.ambiguous": "સમાન માન્યતાના અનેક મેળ ખાતા અધિકૃત મૂલ્યો છે", + // "confidence.indicator.help-text.notfound": "There are no matching answers in the authority", "confidence.indicator.help-text.notfound": "અધિકૃતમાં કોઈ મેળ ખાતા જવાબો નથી", + // "confidence.indicator.help-text.failed": "The authority encountered an internal failure", "confidence.indicator.help-text.failed": "અધિકૃત આંતરિક નિષ્ફળતા અનુભવી", + // "confidence.indicator.help-text.rejected": "The authority recommends this submission be rejected", "confidence.indicator.help-text.rejected": "અધિકૃત આ સબમિશનને નકારી કાઢવાની ભલામણ કરે છે", + // "confidence.indicator.help-text.novalue": "No reasonable confidence value was returned from the authority", "confidence.indicator.help-text.novalue": "અધિકૃતમાંથી કોઈ યોગ્ય વિશ્વાસ મૂલ્ય પરત કરવામાં આવ્યું નથી", + // "confidence.indicator.help-text.unset": "Confidence was never recorded for this value", "confidence.indicator.help-text.unset": "આ મૂલ્ય માટે વિશ્વાસ ક્યારેય નોંધાયો નથી", + // "confidence.indicator.help-text.unknown": "Unknown confidence value", "confidence.indicator.help-text.unknown": "અજ્ઞાત વિશ્વાસ મૂલ્ય", + // "item.page.abstract": "Abstract", "item.page.abstract": "અભ્યાસ", + // "item.page.author": "Author", "item.page.author": "લેખકો", + // "item.page.authors": "Authors", + // TODO New key - Add a translation + "item.page.authors": "Authors", + + // "item.page.citation": "Citation", "item.page.citation": "ઉલ્લેખ", + // "item.page.collections": "Collections", "item.page.collections": "સંગ્રહો", + // "item.page.collections.loading": "Loading...", "item.page.collections.loading": "લોડ થઈ રહ્યું છે...", + // "item.page.collections.load-more": "Load more", "item.page.collections.load-more": "વધુ લોડ કરો", + // "item.page.date": "Date", "item.page.date": "તારીખ", + // "item.page.edit": "Edit this item", "item.page.edit": "આ આઇટમ સંપાદિત કરો", + // "item.page.files": "Files", "item.page.files": "ફાઇલો", - "item.page.filesection.description": "વર્ણન:", + // "item.page.filesection.description": "Description:", + // TODO New key - Add a translation + "item.page.filesection.description": "Description:", + // "item.page.filesection.download": "Download", "item.page.filesection.download": "ડાઉનલોડ", - "item.page.filesection.format": "ફોર્મેટ:", + // "item.page.filesection.format": "Format:", + // TODO New key - Add a translation + "item.page.filesection.format": "Format:", - "item.page.filesection.name": "નામ:", + // "item.page.filesection.name": "Name:", + // TODO New key - Add a translation + "item.page.filesection.name": "Name:", - "item.page.filesection.size": "કદ:", + // "item.page.filesection.size": "Size:", + // TODO New key - Add a translation + "item.page.filesection.size": "Size:", + // "item.page.journal.search.title": "Articles in this journal", "item.page.journal.search.title": "આ જર્નલમાં લેખો", + // "item.page.link.full": "Full item page", "item.page.link.full": "સંપૂર્ણ આઇટમ પેજ", + // "item.page.link.simple": "Simple item page", "item.page.link.simple": "સરળ આઇટમ પેજ", + // "item.page.options": "Options", "item.page.options": "વિકલ્પો", + // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", + // "item.page.orcid.tooltip": "Open ORCID setting page", "item.page.orcid.tooltip": "ORCID સેટિંગ પેજ ખોલો", + // "item.page.person.search.title": "Articles by this author", "item.page.person.search.title": "આ લેખક દ્વારા લેખો", + // "item.page.related-items.view-more": "Show {{ amount }} more", "item.page.related-items.view-more": "{{ amount }} વધુ બતાવો", + // "item.page.related-items.view-less": "Hide last {{ amount }}", "item.page.related-items.view-less": "છેલ્લા {{ amount }} છુપાવો", + // "item.page.relationships.isAuthorOfPublication": "Publications", "item.page.relationships.isAuthorOfPublication": "પ્રકાશનો લેખક છે", + // "item.page.relationships.isJournalOfPublication": "Publications", "item.page.relationships.isJournalOfPublication": "પ્રકાશનો જર્નલ છે", + // "item.page.relationships.isOrgUnitOfPerson": "Authors", "item.page.relationships.isOrgUnitOfPerson": "લેખકો", + // "item.page.relationships.isOrgUnitOfProject": "Research Projects", "item.page.relationships.isOrgUnitOfProject": "શોધ પ્રોજેક્ટ્સ", + // "item.page.subject": "Keywords", "item.page.subject": "કીવર્ડ્સ", + // "item.page.uri": "URI", "item.page.uri": "URI", + // "item.page.bitstreams.view-more": "Show more", "item.page.bitstreams.view-more": "વધુ બતાવો", + // "item.page.bitstreams.collapse": "Collapse", "item.page.bitstreams.collapse": "સંકોચો", + // "item.page.bitstreams.primary": "Primary", "item.page.bitstreams.primary": "પ્રાથમિક", + // "item.page.filesection.original.bundle": "Original bundle", "item.page.filesection.original.bundle": "મૂળ બંડલ", + // "item.page.filesection.license.bundle": "License bundle", "item.page.filesection.license.bundle": "લાઇસન્સ બંડલ", + // "item.page.return": "Back", "item.page.return": "પાછા", + // "item.page.version.create": "Create new version", "item.page.version.create": "નવી આવૃત્તિ બનાવો", + // "item.page.withdrawn": "Request a withdrawal for this item", "item.page.withdrawn": "આ આઇટમ માટે વિથડ્રૉલ વિનંતી કરો", + // "item.page.reinstate": "Request reinstatement", "item.page.reinstate": "ફરી સ્થાપિત કરવાની વિનંતી કરો", + // "item.page.version.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.page.version.hasDraft": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", + // "item.page.claim.button": "Claim", "item.page.claim.button": "દાવો", + // "item.page.claim.tooltip": "Claim this item as profile", "item.page.claim.tooltip": "આ આઇટમને પ્રોફાઇલ તરીકે દાવો", + // "item.page.image.alt.ROR": "ROR logo", "item.page.image.alt.ROR": "ROR લોગો", - "item.preview.dc.identifier.uri": "પરિચયકર્તા:", + // "item.preview.dc.identifier.uri": "Identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier.uri": "Identifier:", - "item.preview.dc.contributor.author": "લેખકો:", + // "item.preview.dc.contributor.author": "Authors:", + // TODO New key - Add a translation + "item.preview.dc.contributor.author": "Authors:", - "item.preview.dc.date.issued": "પ્રકાશિત તારીખ:", + // "item.preview.dc.date.issued": "Published date:", + // TODO New key - Add a translation + "item.preview.dc.date.issued": "Published date:", + // "item.preview.dc.description": "Description:", + // TODO Source message changed - Revise the translation "item.preview.dc.description": "વર્ણન:", - "item.preview.dc.description.abstract": "અભ્યાસ:", + // "item.preview.dc.description.abstract": "Abstract:", + // TODO New key - Add a translation + "item.preview.dc.description.abstract": "Abstract:", - "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા:", + // "item.preview.dc.identifier.other": "Other identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier.other": "Other identifier:", - "item.preview.dc.language.iso": "ભાષા:", + // "item.preview.dc.language.iso": "Language:", + // TODO New key - Add a translation + "item.preview.dc.language.iso": "Language:", - "item.preview.dc.subject": "વિષયો:", + // "item.preview.dc.subject": "Subjects:", + // TODO New key - Add a translation + "item.preview.dc.subject": "Subjects:", - "item.preview.dc.title": "શીર્ષક:", + // "item.preview.dc.title": "Title:", + // TODO New key - Add a translation + "item.preview.dc.title": "Title:", - "item.preview.dc.type": "પ્રકાર:", + // "item.preview.dc.type": "Type:", + // TODO New key - Add a translation + "item.preview.dc.type": "Type:", + // "item.preview.oaire.version": "Version", "item.preview.oaire.version": "આવૃત્તિ", + // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "મુદ્દો", + // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "વોલ્યુમ", + // "item.preview.oaire.citation.title": "Citation container", "item.preview.oaire.citation.title": "ઉલ્લેખ કન્ટેનર", + // "item.preview.oaire.citation.startPage": "Citation start page", "item.preview.oaire.citation.startPage": "ઉલ્લેખ પ્રારંભ પૃષ્ઠ", + // "item.preview.oaire.citation.endPage": "Citation end page", "item.preview.oaire.citation.endPage": "ઉલ્લેખ અંત પૃષ્ઠ", + // "item.preview.dc.relation.hasversion": "Has version", "item.preview.dc.relation.hasversion": "આવૃત્તિ છે", + // "item.preview.dc.relation.ispartofseries": "Is part of series", "item.preview.dc.relation.ispartofseries": "શ્રેણીનો ભાગ છે", + // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "હક્કો", - "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા", + // "item.preview.dc.identifier.other": "Other Identifier", + "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા:", + // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", + // "item.preview.dc.identifier.isbn": "ISBN", "item.preview.dc.identifier.isbn": "ISBN", - "item.preview.dc.identifier": "પરિચયકર્તા:", + // "item.preview.dc.identifier": "Identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier": "Identifier:", + // "item.preview.dc.relation.ispartof": "Journal or Series", "item.preview.dc.relation.ispartof": "જર્નલ અથવા શ્રેણી", + // "item.preview.dc.identifier.doi": "DOI", "item.preview.dc.identifier.doi": "DOI", - "item.preview.dc.publisher": "પ્રકાશક:", + // "item.preview.dc.publisher": "Publisher:", + // TODO New key - Add a translation + "item.preview.dc.publisher": "Publisher:", - "item.preview.person.familyName": "અટક:", + // "item.preview.person.familyName": "Surname:", + // TODO New key - Add a translation + "item.preview.person.familyName": "Surname:", - "item.preview.person.givenName": "નામ:", + // "item.preview.person.givenName": "Name:", + // TODO New key - Add a translation + "item.preview.person.givenName": "Name:", + // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", - "item.preview.person.affiliation.name": "સંબંધો:", + // "item.preview.person.affiliation.name": "Affiliations:", + // TODO New key - Add a translation + "item.preview.person.affiliation.name": "Affiliations:", - "item.preview.project.funder.name": "ફંડર:", + // "item.preview.project.funder.name": "Funder:", + // TODO New key - Add a translation + "item.preview.project.funder.name": "Funder:", - "item.preview.project.funder.identifier": "ફંડર પરિચયકર્તા:", + // "item.preview.project.funder.identifier": "Funder Identifier:", + // TODO New key - Add a translation + "item.preview.project.funder.identifier": "Funder Identifier:", + // "item.preview.project.investigator": "Project Investigator", "item.preview.project.investigator": "પ્રોજેક્ટ ઇન્વેસ્ટિગેટર", - "item.preview.oaire.awardNumber": "ફંડિંગ ID:", + // "item.preview.oaire.awardNumber": "Funding ID:", + // TODO New key - Add a translation + "item.preview.oaire.awardNumber": "Funding ID:", - "item.preview.dc.title.alternative": "અન્ય નામ:", + // "item.preview.dc.title.alternative": "Acronym:", + // TODO New key - Add a translation + "item.preview.dc.title.alternative": "Acronym:", - "item.preview.dc.coverage.spatial": "ક્ષેત્રાધિકાર:", + // "item.preview.dc.coverage.spatial": "Jurisdiction:", + // TODO New key - Add a translation + "item.preview.dc.coverage.spatial": "Jurisdiction:", - "item.preview.oaire.fundingStream": "ફંડિંગ સ્ટ્રીમ:", + // "item.preview.oaire.fundingStream": "Funding Stream:", + // TODO New key - Add a translation + "item.preview.oaire.fundingStream": "Funding Stream:", + // "item.preview.oairecerif.identifier.url": "URL", "item.preview.oairecerif.identifier.url": "URL", + // "item.preview.organization.address.addressCountry": "Country", "item.preview.organization.address.addressCountry": "દેશ", + // "item.preview.organization.foundingDate": "Founding Date", "item.preview.organization.foundingDate": "સ્થાપના તારીખ", + // "item.preview.organization.identifier.crossrefid": "Crossref ID", "item.preview.organization.identifier.crossrefid": "ક્રોસરેફ ID", + // "item.preview.organization.identifier.isni": "ISNI", "item.preview.organization.identifier.isni": "ISNI", + // "item.preview.organization.identifier.ror": "ROR ID", "item.preview.organization.identifier.ror": "ROR ID", + // "item.preview.organization.legalName": "Legal Name", "item.preview.organization.legalName": "કાનૂની નામ", - "item.preview.dspace.entity.type": "સત્તા પ્રકાર:", + // "item.preview.dspace.entity.type": "Entity Type:", + // TODO New key - Add a translation + "item.preview.dspace.entity.type": "Entity Type:", + // "item.preview.creativework.publisher": "Publisher", "item.preview.creativework.publisher": "પ્રકાશક", + // "item.preview.creativeworkseries.issn": "ISSN", "item.preview.creativeworkseries.issn": "ISSN", + // "item.preview.dc.identifier.issn": "ISSN", "item.preview.dc.identifier.issn": "ISSN", + // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "ઓપનએલેક્સ પરિચયકર્તા", - "item.preview.dc.description": "વર્ણન", + // "item.preview.dc.description": "Description", + "item.preview.dc.description": "વર્ણન:", + // "item.select.confirm": "Confirm selected", "item.select.confirm": "પસંદ કરેલને પુષ્ટિ કરો", + // "item.select.empty": "No items to show", "item.select.empty": "બતાવા માટે કોઈ આઇટમ નથી", + // "item.select.table.selected": "Selected items", "item.select.table.selected": "પસંદ કરેલ આઇટમ્સ", + // "item.select.table.select": "Select item", "item.select.table.select": "આઇટમ પસંદ કરો", + // "item.select.table.deselect": "Deselect item", "item.select.table.deselect": "આઇટમ પસંદ ન કરો", + // "item.select.table.author": "Author", "item.select.table.author": "લેખક", + // "item.select.table.collection": "Collection", "item.select.table.collection": "સંગ્રહ", + // "item.select.table.title": "Title", "item.select.table.title": "શીર્ષક", + // "item.version.history.empty": "There are no other versions for this item yet.", "item.version.history.empty": "આ આઇટમ માટે હજી સુધી અન્ય આવૃત્તિઓ નથી.", + // "item.version.history.head": "Version History", "item.version.history.head": "આવૃત્તિ ઇતિહાસ", + // "item.version.history.return": "Back", "item.version.history.return": "પાછા", + // "item.version.history.selected": "Selected version", "item.version.history.selected": "પસંદ કરેલ આવૃત્તિ", + // "item.version.history.selected.alert": "You are currently viewing version {{version}} of the item.", "item.version.history.selected.alert": "તમે હાલમાં આઇટમની આવૃત્તિ {{version}} જોઈ રહ્યા છો.", + // "item.version.history.table.version": "Version", "item.version.history.table.version": "આવૃત્તિ", + // "item.version.history.table.item": "Item", "item.version.history.table.item": "આઇટમ", + // "item.version.history.table.editor": "Editor", "item.version.history.table.editor": "સંપાદક", + // "item.version.history.table.date": "Date", "item.version.history.table.date": "તારીખ", + // "item.version.history.table.summary": "Summary", "item.version.history.table.summary": "સારાંશ", + // "item.version.history.table.workspaceItem": "Workspace item", "item.version.history.table.workspaceItem": "વર્કસ્પેસ આઇટમ", + // "item.version.history.table.workflowItem": "Workflow item", "item.version.history.table.workflowItem": "વર્કફ્લો આઇટમ", + // "item.version.history.table.actions": "Action", "item.version.history.table.actions": "ક્રિયા", + // "item.version.history.table.action.editWorkspaceItem": "Edit workspace item", "item.version.history.table.action.editWorkspaceItem": "વર્કસ્પેસ આઇટમ સંપાદિત કરો", + // "item.version.history.table.action.editSummary": "Edit summary", "item.version.history.table.action.editSummary": "સારાંશ સંપાદિત કરો", + // "item.version.history.table.action.saveSummary": "Save summary edits", "item.version.history.table.action.saveSummary": "સારાંશ ફેરફારો સાચવો", + // "item.version.history.table.action.discardSummary": "Discard summary edits", "item.version.history.table.action.discardSummary": "સારાંશ ફેરફારો રદ કરો", + // "item.version.history.table.action.newVersion": "Create new version from this one", "item.version.history.table.action.newVersion": "આમાંથી નવી આવૃત્તિ બનાવો", + // "item.version.history.table.action.deleteVersion": "Delete version", "item.version.history.table.action.deleteVersion": "આવૃત્તિ કાઢી નાખો", + // "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.history.table.action.hasDraft": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", + // "item.version.notice": "This is not the latest version of this item. The latest version can be found here.", "item.version.notice": "આ આઇટમની નવીનતમ આવૃત્તિ નથી. નવીનતમ આવૃત્તિ અહીં મળી શકે છે અહીં.", + // "item.version.create.modal.header": "New version", "item.version.create.modal.header": "નવી આવૃત્તિ", + // "item.qa.withdrawn.modal.header": "Request withdrawal", "item.qa.withdrawn.modal.header": "વિથડ્રૉલ વિનંતી", + // "item.qa.reinstate.modal.header": "Request reinstate", "item.qa.reinstate.modal.header": "ફરી સ્થાપિત કરવાની વિનંતી", + // "item.qa.reinstate.create.modal.header": "New version", "item.qa.reinstate.create.modal.header": "નવી આવૃત્તિ", + // "item.version.create.modal.text": "Create a new version for this item", "item.version.create.modal.text": "આ આઇટમ માટે નવી આવૃત્તિ બનાવો", + // "item.version.create.modal.text.startingFrom": "starting from version {{version}}", "item.version.create.modal.text.startingFrom": "આવૃત્તિ {{version}} થી શરૂ", + // "item.version.create.modal.button.confirm": "Create", "item.version.create.modal.button.confirm": "બનાવો", + // "item.version.create.modal.button.confirm.tooltip": "Create new version", "item.version.create.modal.button.confirm.tooltip": "નવી આવૃત્તિ બનાવો", + // "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "Send request", "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "વિનંતી મોકલો", + // "qa-withdrown.create.modal.button.confirm": "Withdraw", "qa-withdrown.create.modal.button.confirm": "વિથડ્રૉલ", + // "qa-reinstate.create.modal.button.confirm": "Reinstate", "qa-reinstate.create.modal.button.confirm": "ફરી સ્થાપિત કરો", + // "item.version.create.modal.button.cancel": "Cancel", "item.version.create.modal.button.cancel": "રદ કરો", + // "item.qa.withdrawn-reinstate.create.modal.button.cancel": "Cancel", "item.qa.withdrawn-reinstate.create.modal.button.cancel": "રદ કરો", + // "item.version.create.modal.button.cancel.tooltip": "Do not create new version", "item.version.create.modal.button.cancel.tooltip": "નવી આવૃત્તિ ન બનાવો", + // "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "Do not send request", "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "વિનંતી ન મોકલો", + // "item.version.create.modal.form.summary.label": "Summary", "item.version.create.modal.form.summary.label": "સારાંશ", + // "qa-withdrawn.create.modal.form.summary.label": "You are requesting to withdraw this item", "qa-withdrawn.create.modal.form.summary.label": "તમે આ આઇટમને પાછું ખેંચવાની વિનંતી કરી રહ્યા છો", + // "qa-withdrawn.create.modal.form.summary2.label": "Please enter the reason for the withdrawal", "qa-withdrawn.create.modal.form.summary2.label": "કૃપા કરીને વિથડ્રૉલ માટેનું કારણ દાખલ કરો", + // "qa-reinstate.create.modal.form.summary.label": "You are requesting to reinstate this item", "qa-reinstate.create.modal.form.summary.label": "તમે આ આઇટમને ફરી સ્થાપિત કરવાની વિનંતી કરી રહ્યા છો", + // "qa-reinstate.create.modal.form.summary2.label": "Please enter the reason for the reinstatment", "qa-reinstate.create.modal.form.summary2.label": "કૃપા કરીને ફરી સ્થાપન માટેનું કારણ દાખલ કરો", + // "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version", "item.version.create.modal.form.summary.placeholder": "નવી આવૃત્તિ માટેનો સારાંશ દાખલ કરો", + // "qa-withdrown.modal.form.summary.placeholder": "Enter the reason for the withdrawal", "qa-withdrown.modal.form.summary.placeholder": "વિથડ્રૉલ માટેનું કારણ દાખલ કરો", + // "qa-reinstate.modal.form.summary.placeholder": "Enter the reason for the reinstatement", "qa-reinstate.modal.form.summary.placeholder": "ફરી સ્થાપન માટેનું કારણ દાખલ કરો", + // "item.version.create.modal.submitted.header": "Creating new version...", "item.version.create.modal.submitted.header": "નવી આવૃત્તિ બનાવી રહી છે...", + // "item.qa.withdrawn.modal.submitted.header": "Sending withdrawn request...", "item.qa.withdrawn.modal.submitted.header": "વિથડ્રૉલ વિનંતી મોકલી રહી છે...", + // "correction-type.manage-relation.action.notification.reinstate": "Reinstate request sent.", "correction-type.manage-relation.action.notification.reinstate": "ફરી સ્થાપિત કરવાની વિનંતી મોકલવામાં આવી.", + // "correction-type.manage-relation.action.notification.withdrawn": "Withdraw request sent.", "correction-type.manage-relation.action.notification.withdrawn": "વિથડ્રૉલ વિનંતી મોકલવામાં આવી.", + // "item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.", "item.version.create.modal.submitted.text": "નવી આવૃત્તિ બનાવી રહી છે. આમાં થોડો સમય લાગી શકે છે જો આઇટમમાં ઘણા સંબંધો હોય.", + // "item.version.create.notification.success": "New version has been created with version number {{version}}", "item.version.create.notification.success": "નવી આવૃત્તિ આવૃત્તિ નંબર {{version}} સાથે બનાવવામાં આવી છે", + // "item.version.create.notification.failure": "New version has not been created", "item.version.create.notification.failure": "નવી આવૃત્તિ બનાવવામાં આવી નથી", + // "item.version.create.notification.inProgress": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.create.notification.inProgress": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", + // "item.version.delete.modal.header": "Delete version", "item.version.delete.modal.header": "આવૃત્તિ કાઢી નાખો", + // "item.version.delete.modal.text": "Do you want to delete version {{version}}?", "item.version.delete.modal.text": "શું તમે આવૃત્તિ {{version}} કાઢી નાખવા માંગો છો?", + // "item.version.delete.modal.button.confirm": "Delete", "item.version.delete.modal.button.confirm": "કાઢી નાખો", + // "item.version.delete.modal.button.confirm.tooltip": "Delete this version", "item.version.delete.modal.button.confirm.tooltip": "આ આવૃત્તિ કાઢી નાખો", + // "item.version.delete.modal.button.cancel": "Cancel", "item.version.delete.modal.button.cancel": "રદ કરો", + // "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version", "item.version.delete.modal.button.cancel.tooltip": "આ આવૃત્તિ ન કાઢી નાખો", + // "item.version.delete.notification.success": "Version number {{version}} has been deleted", "item.version.delete.notification.success": "આવૃત્તિ નંબર {{version}} કાઢી નાખવામાં આવી છે", + // "item.version.delete.notification.failure": "Version number {{version}} has not been deleted", "item.version.delete.notification.failure": "આવૃત્તિ નંબર {{version}} કાઢી શકાઈ નથી", + // "item.version.edit.notification.success": "The summary of version number {{version}} has been changed", "item.version.edit.notification.success": "આવૃત્તિ નંબર {{version}} નો સારાંશ બદલવામાં આવ્યો છે", + // "item.version.edit.notification.failure": "The summary of version number {{version}} has not been changed", "item.version.edit.notification.failure": "આવૃત્તિ નંબર {{version}} નો સારાંશ બદલવામાં આવ્યો નથી", + // "itemtemplate.edit.metadata.add-button": "Add", "itemtemplate.edit.metadata.add-button": "ઉમેરો", + // "itemtemplate.edit.metadata.discard-button": "Discard", "itemtemplate.edit.metadata.discard-button": "રદ કરો", + // "itemtemplate.edit.metadata.edit.language": "Edit language", "itemtemplate.edit.metadata.edit.language": "ભાષા સંપાદિત કરો", + // "itemtemplate.edit.metadata.edit.value": "Edit value", "itemtemplate.edit.metadata.edit.value": "મૂલ્ય સંપાદિત કરો", + // "itemtemplate.edit.metadata.edit.buttons.confirm": "Confirm", "itemtemplate.edit.metadata.edit.buttons.confirm": "પુષ્ટિ કરો", + // "itemtemplate.edit.metadata.edit.buttons.drag": "Drag to reorder", "itemtemplate.edit.metadata.edit.buttons.drag": "ફેરફાર કરવા માટે ખેંચો", + // "itemtemplate.edit.metadata.edit.buttons.edit": "Edit", "itemtemplate.edit.metadata.edit.buttons.edit": "સંપાદિત કરો", + // "itemtemplate.edit.metadata.edit.buttons.remove": "Remove", "itemtemplate.edit.metadata.edit.buttons.remove": "દૂર કરો", + // "itemtemplate.edit.metadata.edit.buttons.undo": "Undo changes", "itemtemplate.edit.metadata.edit.buttons.undo": "ફેરફારો રદ કરો", + // "itemtemplate.edit.metadata.edit.buttons.unedit": "Stop editing", "itemtemplate.edit.metadata.edit.buttons.unedit": "સંપાદન બંધ કરો", + // "itemtemplate.edit.metadata.empty": "The item template currently doesn't contain any metadata. Click Add to start adding a metadata value.", "itemtemplate.edit.metadata.empty": "આઇટમ ટેમ્પલેટમાં હાલમાં કોઈ મેટાડેટા નથી. મેટાડેટા મૂલ્ય ઉમેરવાનું શરૂ કરવા માટે ઉમેરો પર ક્લિક કરો.", + // "itemtemplate.edit.metadata.headers.edit": "Edit", "itemtemplate.edit.metadata.headers.edit": "સંપાદિત કરો", + // "itemtemplate.edit.metadata.headers.field": "Field", "itemtemplate.edit.metadata.headers.field": "ક્ષેત્ર", + // "itemtemplate.edit.metadata.headers.language": "Lang", "itemtemplate.edit.metadata.headers.language": "ભાષા", + // "itemtemplate.edit.metadata.headers.value": "Value", "itemtemplate.edit.metadata.headers.value": "મૂલ્ય", + // "itemtemplate.edit.metadata.metadatafield": "Edit field", "itemtemplate.edit.metadata.metadatafield": "ક્ષેત્ર સંપાદિત કરો", + // "itemtemplate.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "itemtemplate.edit.metadata.metadatafield.error": "મેટાડેટા ક્ષેત્ર માન્ય કરતી વખતે ભૂલ આવી", + // "itemtemplate.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "itemtemplate.edit.metadata.metadatafield.invalid": "કૃપા કરીને માન્ય મેટાડેટા ક્ષેત્ર પસંદ કરો", + // "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "itemtemplate.edit.metadata.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા હતા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + // "itemtemplate.edit.metadata.notifications.discarded.title": "Changes discarded", "itemtemplate.edit.metadata.notifications.discarded.title": "ફેરફારો રદ", + // "itemtemplate.edit.metadata.notifications.error.title": "An error occurred", "itemtemplate.edit.metadata.notifications.error.title": "ભૂલ આવી", + // "itemtemplate.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "itemtemplate.edit.metadata.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને સાચવતા પહેલા ખાતરી કરો કે બધા ક્ષેત્રો માન્ય છે.", + // "itemtemplate.edit.metadata.notifications.invalid.title": "Metadata invalid", "itemtemplate.edit.metadata.notifications.invalid.title": "મેટાડેટા અમાન્ય", + // "itemtemplate.edit.metadata.notifications.outdated.content": "The item template you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", "itemtemplate.edit.metadata.notifications.outdated.content": "આઇટમ ટેમ્પલેટ તમે હાલમાં કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", + // "itemtemplate.edit.metadata.notifications.outdated.title": "Changes outdated", "itemtemplate.edit.metadata.notifications.outdated.title": "ફેરફારો જૂના", + // "itemtemplate.edit.metadata.notifications.saved.content": "Your changes to this item template's metadata were saved.", "itemtemplate.edit.metadata.notifications.saved.content": "આ આઇટમ ટેમ્પલેટના મેટાડેટા માટેના તમારા ફેરફારો સાચવવામાં આવ્યા હતા.", + // "itemtemplate.edit.metadata.notifications.saved.title": "Metadata saved", "itemtemplate.edit.metadata.notifications.saved.title": "મેટાડેટા સાચવ્યા", + // "itemtemplate.edit.metadata.reinstate-button": "Undo", "itemtemplate.edit.metadata.reinstate-button": "Undo", + // "itemtemplate.edit.metadata.reset-order-button": "Undo reorder", "itemtemplate.edit.metadata.reset-order-button": "ફેરફાર રદ કરો", + // "itemtemplate.edit.metadata.save-button": "Save", "itemtemplate.edit.metadata.save-button": "સાચવો", + // "journal.listelement.badge": "Journal", "journal.listelement.badge": "જર્નલ", + // "journal.page.description": "Description", "journal.page.description": "વર્ણન", + // "journal.page.edit": "Edit this item", "journal.page.edit": "આ આઇટમ સંપાદિત કરો", + // "journal.page.editor": "Editor-in-Chief", "journal.page.editor": "મુખ્ય સંપાદક", + // "journal.page.issn": "ISSN", "journal.page.issn": "ISSN", + // "journal.page.publisher": "Publisher", "journal.page.publisher": "પ્રકાશક", + // "journal.page.options": "Options", "journal.page.options": "વિકલ્પો", - "journal.page.titleprefix": "જર્નલ: ", + // "journal.page.titleprefix": "Journal: ", + // TODO New key - Add a translation + "journal.page.titleprefix": "Journal: ", + // "journal.search.results.head": "Journal Search Results", "journal.search.results.head": "જર્નલ શોધ પરિણામો", + // "journal-relationships.search.results.head": "Journal Search Results", "journal-relationships.search.results.head": "જર્નલ શોધ પરિણામો", + // "journal.search.title": "Journal Search", "journal.search.title": "જર્નલ શોધ", + // "journalissue.listelement.badge": "Journal Issue", "journalissue.listelement.badge": "જર્નલ ઇશ્યુ", + // "journalissue.page.description": "Description", "journalissue.page.description": "વર્ણન", + // "journalissue.page.edit": "Edit this item", "journalissue.page.edit": "આ આઇટમ સંપાદિત કરો", + // "journalissue.page.issuedate": "Issue Date", "journalissue.page.issuedate": "ઇશ્યુ તારીખ", + // "journalissue.page.journal-issn": "Journal ISSN", "journalissue.page.journal-issn": "જર્નલ ISSN", + // "journalissue.page.journal-title": "Journal Title", "journalissue.page.journal-title": "જર્નલ શીર્ષક", + // "journalissue.page.keyword": "Keywords", "journalissue.page.keyword": "કીવર્ડ્સ", + // "journalissue.page.number": "Number", "journalissue.page.number": "નંબર", + // "journalissue.page.options": "Options", "journalissue.page.options": "વિકલ્પો", - "journalissue.page.titleprefix": "જર્નલ ઇશ્યુ: ", + // "journalissue.page.titleprefix": "Journal Issue: ", + // TODO New key - Add a translation + "journalissue.page.titleprefix": "Journal Issue: ", + // "journalissue.search.results.head": "Journal Issue Search Results", "journalissue.search.results.head": "જર્નલ ઇશ્યુ શોધ પરિણામો", + // "journalvolume.listelement.badge": "Journal Volume", "journalvolume.listelement.badge": "જર્નલ વોલ્યુમ", + // "journalvolume.page.description": "Description", "journalvolume.page.description": "વર્ણન", + // "journalvolume.page.edit": "Edit this item", "journalvolume.page.edit": "આ આઇટમ સંપાદિત કરો", + // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "ઇશ્યુ તારીખ", + // "journalvolume.page.options": "Options", "journalvolume.page.options": "વિકલ્પો", - "journalvolume.page.titleprefix": "જર્નલ વોલ્યુમ: ", + // "journalvolume.page.titleprefix": "Journal Volume: ", + // TODO New key - Add a translation + "journalvolume.page.titleprefix": "Journal Volume: ", + // "journalvolume.page.volume": "Volume", "journalvolume.page.volume": "વોલ્યુમ", + // "journalvolume.search.results.head": "Journal Volume Search Results", "journalvolume.search.results.head": "જર્નલ વોલ્યુમ શોધ પરિણામો", + // "iiifsearchable.listelement.badge": "Document Media", "iiifsearchable.listelement.badge": "દસ્તાવેજ મીડિયા", - "iiifsearchable.page.titleprefix": "દસ્તાવેજ: ", + // "iiifsearchable.page.titleprefix": "Document: ", + // TODO New key - Add a translation + "iiifsearchable.page.titleprefix": "Document: ", - "iiifsearchable.page.doi": "કાયમી લિંક: ", + // "iiifsearchable.page.doi": "Permanent Link: ", + // TODO New key - Add a translation + "iiifsearchable.page.doi": "Permanent Link: ", - "iiifsearchable.page.issue": "મુદ્દો: ", + // "iiifsearchable.page.issue": "Issue: ", + // TODO New key - Add a translation + "iiifsearchable.page.issue": "Issue: ", - "iiifsearchable.page.description": "વર્ણન: ", + // "iiifsearchable.page.description": "Description: ", + // TODO New key - Add a translation + "iiifsearchable.page.description": "Description: ", + // "iiifviewer.fullscreen.notice": "Use full screen for better viewing.", "iiifviewer.fullscreen.notice": "સારા જોવાના અનુભવ માટે સંપૂર્ણ સ્ક્રીનનો ઉપયોગ કરો.", + // "iiif.listelement.badge": "Image Media", "iiif.listelement.badge": "છબી મીડિયા", - "iiif.page.titleprefix": "છબી: ", + // "iiif.page.titleprefix": "Image: ", + // TODO New key - Add a translation + "iiif.page.titleprefix": "Image: ", - "iiif.page.doi": "કાયમી લિંક: ", + // "iiif.page.doi": "Permanent Link: ", + // TODO New key - Add a translation + "iiif.page.doi": "Permanent Link: ", - "iiif.page.issue": "મુદ્દો: ", + // "iiif.page.issue": "Issue: ", + // TODO New key - Add a translation + "iiif.page.issue": "Issue: ", - "iiif.page.description": "વર્ણન: ", + // "iiif.page.description": "Description: ", + // TODO New key - Add a translation + "iiif.page.description": "Description: ", + // "loading.bitstream": "Loading bitstream...", "loading.bitstream": "બિટસ્ટ્રીમ લોડ થઈ રહ્યું છે...", + // "loading.bitstreams": "Loading bitstreams...", "loading.bitstreams": "બિટસ્ટ્રીમ્સ લોડ થઈ રહ્યા છે...", + // "loading.browse-by": "Loading items...", "loading.browse-by": "આઇટમ્સ લોડ થઈ રહ્યા છે...", + // "loading.browse-by-page": "Loading page...", "loading.browse-by-page": "પૃષ્ઠ લોડ થઈ રહ્યું છે...", + // "loading.collection": "Loading collection...", "loading.collection": "સંગ્રહ લોડ થઈ રહ્યો છે...", + // "loading.collections": "Loading collections...", "loading.collections": "સંગ્રહો લોડ થઈ રહ્યા છે...", + // "loading.content-source": "Loading content source...", "loading.content-source": "સામગ્રી સ્ત્રોત લોડ થઈ રહ્યો છે...", + // "loading.community": "Loading community...", "loading.community": "સમુદાય લોડ થઈ રહ્યો છે...", + // "loading.default": "Loading...", "loading.default": "લોડ થઈ રહ્યું છે...", + // "loading.item": "Loading item...", "loading.item": "આઇટમ લોડ થઈ રહ્યું છે...", + // "loading.items": "Loading items...", "loading.items": "આઇટમ્સ લોડ થઈ રહ્યા છે...", + // "loading.mydspace-results": "Loading items...", "loading.mydspace-results": "આઇટમ્સ લોડ થઈ રહ્યા છે...", + // "loading.objects": "Loading...", "loading.objects": "લોડ થઈ રહ્યું છે...", + // "loading.recent-submissions": "Loading recent submissions...", "loading.recent-submissions": "તાજેતરના સબમિશન લોડ થઈ રહ્યા છે...", + // "loading.search-results": "Loading search results...", "loading.search-results": "શોધ પરિણામો લોડ થઈ રહ્યા છે...", + // "loading.sub-collections": "Loading sub-collections...", "loading.sub-collections": "ઉપ-સંગ્રહો લોડ થઈ રહ્યા છે...", + // "loading.sub-communities": "Loading sub-communities...", "loading.sub-communities": "ઉપ-સમુદાયો લોડ થઈ રહ્યા છે...", + // "loading.top-level-communities": "Loading top-level communities...", "loading.top-level-communities": "ટોપ-લેવલ સમુદાયો લોડ થઈ રહ્યા છે...", + // "login.form.email": "Email address", "login.form.email": "ઇમેઇલ સરનામું", + // "login.form.forgot-password": "Have you forgotten your password?", "login.form.forgot-password": "શું તમે તમારો પાસવર્ડ ભૂલી ગયા છો?", + // "login.form.header": "Please log in to DSpace", "login.form.header": "કૃપા કરીને DSpace માં લોગિન કરો", + // "login.form.new-user": "New user? Click here to register.", "login.form.new-user": "નવો વપરાશકર્તા? નોંધણી માટે અહીં ક્લિક કરો.", + // "login.form.oidc": "Log in with OIDC", "login.form.oidc": "OIDC સાથે લોગિન કરો", + // "login.form.orcid": "Log in with ORCID", "login.form.orcid": "ORCID સાથે લોગિન કરો", + // "login.form.password": "Password", "login.form.password": "પાસવર્ડ", + // "login.form.saml": "Log in with SAML", "login.form.saml": "SAML સાથે લોગિન કરો", + // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Shibboleth સાથે લોગિન કરો", + // "login.form.submit": "Log in", "login.form.submit": "લોગિન કરો", + // "login.title": "Login", "login.title": "લોગિન", + // "login.breadcrumbs": "Login", "login.breadcrumbs": "લોગિન", + // "logout.form.header": "Log out from DSpace", "logout.form.header": "DSpace માંથી લોગ આઉટ કરો", + // "logout.form.submit": "Log out", "logout.form.submit": "લોગ આઉટ", + // "logout.title": "Logout", "logout.title": "લોગ આઉટ", + // "menu.header.nav.description": "Admin navigation bar", "menu.header.nav.description": "એડમિન નેવિગેશન બાર", + // "menu.header.admin": "Management", "menu.header.admin": "મેનેજમેન્ટ", + // "menu.header.image.logo": "Repository logo", "menu.header.image.logo": "રિપોઝિટરી લોગો", + // "menu.header.admin.description": "Management menu", "menu.header.admin.description": "મેનેજમેન્ટ મેનુ", + // "menu.section.access_control": "Access Control", "menu.section.access_control": "ઍક્સેસ કંટ્રોલ", + // "menu.section.access_control_authorizations": "Authorizations", "menu.section.access_control_authorizations": "અધિકૃતતાઓ", + // "menu.section.access_control_bulk": "Bulk Access Management", "menu.section.access_control_bulk": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", + // "menu.section.access_control_groups": "Groups", "menu.section.access_control_groups": "ગ્રુપ્સ", + // "menu.section.access_control_people": "People", "menu.section.access_control_people": "લોકો", + // "menu.section.reports": "Reports", "menu.section.reports": "અહેવાલો", + // "menu.section.reports.collections": "Filtered Collections", "menu.section.reports.collections": "ફિલ્ટર કરેલ સંગ્રહો", + // "menu.section.reports.queries": "Metadata Query", "menu.section.reports.queries": "મેટાડેટા ક્વેરી", + // "menu.section.admin_search": "Admin Search", "menu.section.admin_search": "એડમિન શોધ", + // "menu.section.browse_community": "This Community", "menu.section.browse_community": "આ સમુદાય", + // "menu.section.browse_community_by_author": "By Author", "menu.section.browse_community_by_author": "લેખક દ્વારા", + // "menu.section.browse_community_by_issue_date": "By Issue Date", "menu.section.browse_community_by_issue_date": "પ્રશ્ન તારીખ દ્વારા", + // "menu.section.browse_community_by_title": "By Title", "menu.section.browse_community_by_title": "શીર્ષક દ્વારા", + // "menu.section.browse_global": "All of DSpace", "menu.section.browse_global": "DSpace ના બધા", + // "menu.section.browse_global_by_author": "By Author", "menu.section.browse_global_by_author": "લેખક દ્વારા", + // "menu.section.browse_global_by_dateissued": "By Issue Date", "menu.section.browse_global_by_dateissued": "પ્રશ્ન તારીખ દ્વારા", + // "menu.section.browse_global_by_subject": "By Subject", "menu.section.browse_global_by_subject": "વિષય દ્વારા", + // "menu.section.browse_global_by_srsc": "By Subject Category", "menu.section.browse_global_by_srsc": "વિષય શ્રેણી દ્વારા", + // "menu.section.browse_global_by_nsi": "By Norwegian Science Index", "menu.section.browse_global_by_nsi": "નોર્વેજીયન સાયન્સ ઇન્ડેક્સ દ્વારા", + // "menu.section.browse_global_by_title": "By Title", "menu.section.browse_global_by_title": "શીર્ષક દ્વારા", + // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "સમુદાયો અને સંગ્રહો", + // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", "menu.section.browse_global_geospatial_map": "ભૌગોલિક સ્થાન દ્વારા (નકશો)", + // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "કંટ્રોલ પેનલ", + // "menu.section.curation_task": "Curation Task", "menu.section.curation_task": "ક્યુરેશન ટાસ્ક", + // "menu.section.edit": "Edit", "menu.section.edit": "સંપાદિત કરો", + // "menu.section.edit_collection": "Collection", "menu.section.edit_collection": "સંગ્રહ", + // "menu.section.edit_community": "Community", "menu.section.edit_community": "સમુદાય", + // "menu.section.edit_item": "Item", "menu.section.edit_item": "આઇટમ", + // "menu.section.export": "Export", "menu.section.export": "નિકાસ", + // "menu.section.export_collection": "Collection", "menu.section.export_collection": "સંગ્રહ", + // "menu.section.export_community": "Community", "menu.section.export_community": "સમુદાય", + // "menu.section.export_item": "Item", "menu.section.export_item": "આઇટમ", + // "menu.section.export_metadata": "Metadata", "menu.section.export_metadata": "મેટાડેટા", + // "menu.section.export_batch": "Batch Export (ZIP)", "menu.section.export_batch": "બેચ નિકાસ (ZIP)", + // "menu.section.icon.access_control": "Access Control menu section", "menu.section.icon.access_control": "ઍક્સેસ કંટ્રોલ મેનુ વિભાગ", + // "menu.section.icon.reports": "Reports menu section", "menu.section.icon.reports": "અહેવાલો મેનુ વિભાગ", + // "menu.section.icon.admin_search": "Admin search menu section", "menu.section.icon.admin_search": "એડમિન શોધ મેનુ વિભાગ", + // "menu.section.icon.control_panel": "Control Panel menu section", "menu.section.icon.control_panel": "કંટ્રોલ પેનલ મેનુ વિભાગ", + // "menu.section.icon.curation_tasks": "Curation Task menu section", "menu.section.icon.curation_tasks": "ક્યુરેશન ટાસ્ક મેનુ વિભાગ", + // "menu.section.icon.edit": "Edit menu section", "menu.section.icon.edit": "સંપાદિત કરો મેનુ વિભાગ", + // "menu.section.icon.export": "Export menu section", "menu.section.icon.export": "નિકાસ મેનુ વિભાગ", + // "menu.section.icon.find": "Find menu section", "menu.section.icon.find": "મેનુ વિભાગ શોધો", + // "menu.section.icon.health": "Health check menu section", "menu.section.icon.health": "હેલ્થ ચેક મેનુ વિભાગ", + // "menu.section.icon.import": "Import menu section", "menu.section.icon.import": "આયાત મેનુ વિભાગ", + // "menu.section.icon.new": "New menu section", "menu.section.icon.new": "નવું મેનુ વિભાગ", + // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "સાઇડબાર પિન કરો", + // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "સાઇડબાર અનપિન કરો", + // "menu.section.icon.notifications": "Notifications menu section", "menu.section.icon.notifications": "સૂચનાઓ મેનુ વિભાગ", + // "menu.section.import": "Import", "menu.section.import": "આયાત", + // "menu.section.import_batch": "Batch Import (ZIP)", "menu.section.import_batch": "બેચ આયાત (ZIP)", + // "menu.section.import_metadata": "Metadata", "menu.section.import_metadata": "મેટાડેટા", + // "menu.section.new": "New", "menu.section.new": "નવું", + // "menu.section.new_collection": "Collection", "menu.section.new_collection": "સંગ્રહ", + // "menu.section.new_community": "Community", "menu.section.new_community": "સમુદાય", + // "menu.section.new_item": "Item", "menu.section.new_item": "આઇટમ", + // "menu.section.new_item_version": "Item Version", "menu.section.new_item_version": "આઇટમ આવૃત્તિ", + // "menu.section.new_process": "Process", "menu.section.new_process": "પ્રક્રિયા", + // "menu.section.notifications": "Notifications", "menu.section.notifications": "સૂચનાઓ", + // "menu.section.quality-assurance": "Quality Assurance", "menu.section.quality-assurance": "ગુણવત્તા ખાતરી", + // "menu.section.notifications_publication-claim": "Publication Claim", "menu.section.notifications_publication-claim": "પ્રકાશન દાવો", + // "menu.section.pin": "Pin sidebar", "menu.section.pin": "સાઇડબાર પિન કરો", + // "menu.section.unpin": "Unpin sidebar", "menu.section.unpin": "સાઇડબાર અનપિન કરો", + // "menu.section.processes": "Processes", "menu.section.processes": "પ્રક્રિયાઓ", + // "menu.section.health": "Health", "menu.section.health": "હેલ્થ", + // "menu.section.registries": "Registries", "menu.section.registries": "રજિસ્ટ્રીઓ", + // "menu.section.registries_format": "Format", "menu.section.registries_format": "ફોર્મેટ", + // "menu.section.registries_metadata": "Metadata", "menu.section.registries_metadata": "મેટાડેટા", + // "menu.section.statistics": "Statistics", "menu.section.statistics": "આંકડા", + // "menu.section.statistics_task": "Statistics Task", "menu.section.statistics_task": "આંકડા કાર્ય", + // "menu.section.toggle.access_control": "Toggle Access Control section", "menu.section.toggle.access_control": "ઍક્સેસ કંટ્રોલ વિભાગ ટૉગલ કરો", + // "menu.section.toggle.reports": "Toggle Reports section", "menu.section.toggle.reports": "અહેવાલો વિભાગ ટૉગલ કરો", + // "menu.section.toggle.control_panel": "Toggle Control Panel section", "menu.section.toggle.control_panel": "કંટ્રોલ પેનલ વિભાગ ટૉગલ કરો", + // "menu.section.toggle.curation_task": "Toggle Curation Task section", "menu.section.toggle.curation_task": "ક્યુરેશન ટાસ્ક વિભાગ ટૉગલ કરો", + // "menu.section.toggle.edit": "Toggle Edit section", "menu.section.toggle.edit": "સંપાદન વિભાગ ટૉગલ કરો", + // "menu.section.toggle.export": "Toggle Export section", "menu.section.toggle.export": "નિકાસ વિભાગ ટૉગલ કરો", + // "menu.section.toggle.find": "Toggle Find section", "menu.section.toggle.find": "વિભાગ શોધો ટૉગલ કરો", + // "menu.section.toggle.import": "Toggle Import section", "menu.section.toggle.import": "આયાત વિભાગ ટૉગલ કરો", + // "menu.section.toggle.new": "Toggle New section", "menu.section.toggle.new": "નવો વિભાગ ટૉગલ કરો", + // "menu.section.toggle.registries": "Toggle Registries section", "menu.section.toggle.registries": "રજિસ્ટ્રીઓ વિભાગ ટૉગલ કરો", + // "menu.section.toggle.statistics_task": "Toggle Statistics Task section", "menu.section.toggle.statistics_task": "આંકડા કાર્ય વિભાગ ટૉગલ કરો", + // "menu.section.workflow": "Administer Workflow", "menu.section.workflow": "વર્કફ્લો મેનેજ કરો", + // "metadata-export-search.tooltip": "Export search results as CSV", "metadata-export-search.tooltip": "શોધ પરિણામો CSV તરીકે નિકાસ કરો", + // "metadata-export-search.submit.success": "The export was started successfully", "metadata-export-search.submit.success": "નિકાસ સફળતાપૂર્વક શરૂ થયું", + // "metadata-export-search.submit.error": "Starting the export has failed", "metadata-export-search.submit.error": "નિકાસ શરૂ કરવામાં નિષ્ફળ", + // "mydspace.breadcrumbs": "MyDSpace", "mydspace.breadcrumbs": "MyDSpace", + // "mydspace.description": "", "mydspace.description": "", + // "mydspace.messages.controller-help": "Select this option to send a message to item's submitter.", "mydspace.messages.controller-help": "આ વિકલ્પ પસંદ કરો આઇટમના સબમિટરને સંદેશ મોકલવા માટે.", + // "mydspace.messages.description-placeholder": "Insert your message here...", "mydspace.messages.description-placeholder": "તમારો સંદેશ અહીં દાખલ કરો...", + // "mydspace.messages.hide-msg": "Hide message", "mydspace.messages.hide-msg": "સંદેશ છુપાવો", + // "mydspace.messages.mark-as-read": "Mark as read", "mydspace.messages.mark-as-read": "વાંચેલ તરીકે ચિહ્નિત કરો", + // "mydspace.messages.mark-as-unread": "Mark as unread", "mydspace.messages.mark-as-unread": "ન વાંચેલ તરીકે ચિહ્નિત કરો", + // "mydspace.messages.no-content": "No content.", "mydspace.messages.no-content": "કોઈ સામગ્રી નથી.", + // "mydspace.messages.no-messages": "No messages yet.", "mydspace.messages.no-messages": "હજી સુધી કોઈ સંદેશ નથી.", + // "mydspace.messages.send-btn": "Send", "mydspace.messages.send-btn": "મોકલો", + // "mydspace.messages.show-msg": "Show message", "mydspace.messages.show-msg": "સંદેશ બતાવો", + // "mydspace.messages.subject-placeholder": "Subject...", "mydspace.messages.subject-placeholder": "વિષય...", + // "mydspace.messages.submitter-help": "Select this option to send a message to controller.", "mydspace.messages.submitter-help": "આ વિકલ્પ પસંદ કરો નિયંત્રકને સંદેશ મોકલવા માટે.", + // "mydspace.messages.title": "Messages", "mydspace.messages.title": "સંદેશો", + // "mydspace.messages.to": "To", "mydspace.messages.to": "પ્રતિ", + // "mydspace.new-submission": "New submission", "mydspace.new-submission": "નવું સબમિશન", + // "mydspace.new-submission-external": "Import metadata from external source", "mydspace.new-submission-external": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", + // "mydspace.new-submission-external-short": "Import metadata", "mydspace.new-submission-external-short": "મેટાડેટા આયાત કરો", + // "mydspace.results.head": "Your submissions", "mydspace.results.head": "તમારા સબમિશન", + // "mydspace.results.no-abstract": "No Abstract", "mydspace.results.no-abstract": "કોઈ અભ્યાસ નથી", + // "mydspace.results.no-authors": "No Authors", "mydspace.results.no-authors": "કોઈ લેખકો નથી", + // "mydspace.results.no-collections": "No Collections", "mydspace.results.no-collections": "કોઈ સંગ્રહો નથી", + // "mydspace.results.no-date": "No Date", "mydspace.results.no-date": "કોઈ તારીખ નથી", + // "mydspace.results.no-files": "No Files", "mydspace.results.no-files": "કોઈ ફાઇલો નથી", + // "mydspace.results.no-results": "There were no items to show", "mydspace.results.no-results": "બતાવા માટે કોઈ આઇટમ નથી", + // "mydspace.results.no-title": "No title", "mydspace.results.no-title": "કોઈ શીર્ષક નથી", + // "mydspace.results.no-uri": "No URI", "mydspace.results.no-uri": "કોઈ URI નથી", + // "mydspace.search-form.placeholder": "Search in MyDSpace...", "mydspace.search-form.placeholder": "MyDSpace માં શોધો...", + // "mydspace.show.workflow": "Workflow tasks", "mydspace.show.workflow": "વર્કફ્લો કાર્ય", + // "mydspace.show.workspace": "Your submissions", "mydspace.show.workspace": "તમારા સબમિશન", + // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "સુપરવિઝ્ડ આઇટમ્સ", + // "mydspace.status": "My DSpace status:", + // TODO New key - Add a translation + "mydspace.status": "My DSpace status:", + + // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "આર્કાઇવ્ડ", + // "mydspace.status.mydspaceValidation": "Validation", "mydspace.status.mydspaceValidation": "માન્યતા", + // "mydspace.status.mydspaceWaitingController": "Waiting for reviewer", "mydspace.status.mydspaceWaitingController": "સમીક્ષકની રાહ જોવી", + // "mydspace.status.mydspaceWorkflow": "Workflow", "mydspace.status.mydspaceWorkflow": "વર્કફ્લો", + // "mydspace.status.mydspaceWorkspace": "Workspace", "mydspace.status.mydspaceWorkspace": "વર્કસ્પેસ", + // "mydspace.title": "MyDSpace", "mydspace.title": "MyDSpace", + // "mydspace.upload.upload-failed": "Error creating new workspace. Please verify the content uploaded before retry.", "mydspace.upload.upload-failed": "નવું વર્કસ્પેસ બનાવવામાં ભૂલ. કૃપા કરીને ફરી પ્રયાસ કરતા પહેલા અપલોડ કરેલ સામગ્રીને ચકાસો.", + // "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.", "mydspace.upload.upload-failed-manyentries": "અપ્રક્રિય ફાઇલ. ઘણી એન્ટ્રીઓ શોધવામાં આવી છે પરંતુ ફાઇલ માટે માત્ર એક જ મંજૂરી છે.", + // "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.", "mydspace.upload.upload-failed-moreonefile": "અપ્રક્રિય વિનંતી. ફક્ત એક જ ફાઇલ મંજૂર છે.", + // "mydspace.upload.upload-multiple-successful": "{{qty}} new workspace items created.", "mydspace.upload.upload-multiple-successful": "{{qty}} નવા વર્કસ્પેસ આઇટમ્સ બનાવવામાં આવ્યા.", + // "mydspace.view-btn": "View", "mydspace.view-btn": "જુઓ", + // "nav.expandable-navbar-section-suffix": "(submenu)", "nav.expandable-navbar-section-suffix": "(ઉપમેનુ)", + // "notification.suggestion": "We found {{count}} publications in the {{source}} that seems to be related to your profile.
", "notification.suggestion": "અમે {{source}} માં {{count}} પ્રકાશનો શોધ્યા છે જે તમારા પ્રોફાઇલ સાથે સંબંધિત લાગે છે.
", + // "notification.suggestion.review": "review the suggestions", "notification.suggestion.review": "સૂચનોની સમીક્ષા કરો", + // "notification.suggestion.please": "Please", "notification.suggestion.please": "કૃપા કરીને", + // "nav.browse.header": "All of DSpace", "nav.browse.header": "DSpace ના બધા", + // "nav.community-browse.header": "By Community", "nav.community-browse.header": "સમુદાય દ્વારા", + // "nav.context-help-toggle": "Toggle context help", "nav.context-help-toggle": "સંદર્ભ મદદ ટૉગલ કરો", + // "nav.language": "Language switch", "nav.language": "ભાષા સ્વિચ", + // "nav.login": "Log In", "nav.login": "લોગિન", + // "nav.user-profile-menu-and-logout": "User profile menu and log out", "nav.user-profile-menu-and-logout": "વપરાશકર્તા પ્રોફાઇલ મેનુ અને લોગ આઉટ", + // "nav.logout": "Log Out", "nav.logout": "લોગ આઉટ", + // "nav.main.description": "Main navigation bar", "nav.main.description": "મુખ્ય નેવિગેશન બાર", + // "nav.mydspace": "MyDSpace", "nav.mydspace": "MyDSpace", + // "nav.profile": "Profile", "nav.profile": "પ્રોફાઇલ", + // "nav.search": "Search", "nav.search": "શોધો", + // "nav.search.button": "Submit search", "nav.search.button": "શોધ સબમિટ કરો", + // "nav.statistics.header": "Statistics", "nav.statistics.header": "આંકડા", + // "nav.stop-impersonating": "Stop impersonating EPerson", "nav.stop-impersonating": "EPerson નું અનુસરણ બંધ કરો", + // "nav.subscriptions": "Subscriptions", "nav.subscriptions": "સબ્સ્ક્રિપ્શન્સ", + // "nav.toggle": "Toggle navigation", "nav.toggle": "નેવિગેશન ટૉગલ કરો", + // "nav.user.description": "User profile bar", "nav.user.description": "વપરાશકર્તા પ્રોફાઇલ બાર", + // "listelement.badge.dso-type": "Item type:", + // TODO New key - Add a translation + "listelement.badge.dso-type": "Item type:", + + // "none.listelement.badge": "Item", "none.listelement.badge": "આઇટમ", + // "publication-claim.title": "Publication claim", "publication-claim.title": "પ્રકાશન દાવો", + // "publication-claim.source.description": "Below you can see all the sources.", "publication-claim.source.description": "નીચે તમે બધા સ્ત્રોતો જોઈ શકો છો.", + // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "ગુણવત્તા ખાતરી", + // "quality-assurance.topics.description": "Below you can see all the topics received from the subscriptions to {{source}}.", "quality-assurance.topics.description": "નીચે તમે {{source}} માટેની સબ્સ્ક્રિપ્શન્સમાંથી પ્રાપ્ત થયેલા બધા વિષયો જોઈ શકો છો.", + // "quality-assurance.source.description": "Below you can see all the notification's sources.", "quality-assurance.source.description": "નીચે તમે સૂચના ના સ્ત્રોતો જોઈ શકો છો.", + // "quality-assurance.topics": "Current Topics", "quality-assurance.topics": "વર્તમાન વિષયો", + // "quality-assurance.source": "Current Sources", "quality-assurance.source": "વર્તમાન સ્ત્રોતો", + // "quality-assurance.table.topic": "Topic", "quality-assurance.table.topic": "વિષય", + // "quality-assurance.table.source": "Source", "quality-assurance.table.source": "સ્ત્રોત", + // "quality-assurance.table.last-event": "Last Event", "quality-assurance.table.last-event": "છેલ્લી ઘટના", + // "quality-assurance.table.actions": "Actions", "quality-assurance.table.actions": "ક્રિયાઓ", + // "quality-assurance.source-list.button.detail": "Show topics for {{param}}", "quality-assurance.source-list.button.detail": "{{param}} માટેના વિષયો બતાવો", + // "quality-assurance.topics-list.button.detail": "Show suggestions for {{param}}", "quality-assurance.topics-list.button.detail": "{{param}} માટેની સૂચનો બતાવો", + // "quality-assurance.noTopics": "No topics found.", "quality-assurance.noTopics": "કોઈ વિષયો મળ્યા નથી.", + // "quality-assurance.noSource": "No sources found.", "quality-assurance.noSource": "કોઈ સ્ત્રોતો મળ્યા નથી.", + // "notifications.events.title": "Quality Assurance Suggestions", "notifications.events.title": "ગુણવત્તા ખાતરી સૂચનો", + // "quality-assurance.topic.error.service.retrieve": "An error occurred while loading the Quality Assurance topics", "quality-assurance.topic.error.service.retrieve": "ગુણવત્તા ખાતરી વિષયો લોડ કરતી વખતે ભૂલ આવી", + // "quality-assurance.source.error.service.retrieve": "An error occurred while loading the Quality Assurance source", "quality-assurance.source.error.service.retrieve": "ગુણવત્તા ખાતરી સ્ત્રોત લોડ કરતી વખતે ભૂલ આવી", + // "quality-assurance.loading": "Loading ...", "quality-assurance.loading": "લોડ થઈ રહ્યું છે ...", - "quality-assurance.events.topic": "વિષય:", + // "quality-assurance.events.topic": "Topic:", + // TODO New key - Add a translation + "quality-assurance.events.topic": "Topic:", + // "quality-assurance.noEvents": "No suggestions found.", "quality-assurance.noEvents": "કોઈ સૂચનો મળ્યા નથી.", + // "quality-assurance.event.table.trust": "Trust", "quality-assurance.event.table.trust": "વિશ્વાસ", + // "quality-assurance.event.table.publication": "Publication", "quality-assurance.event.table.publication": "પ્રકાશન", + // "quality-assurance.event.table.details": "Details", "quality-assurance.event.table.details": "વિગતો", + // "quality-assurance.event.table.project-details": "Project details", "quality-assurance.event.table.project-details": "પ્રોજેક્ટ વિગતો", + // "quality-assurance.event.table.reasons": "Reasons", "quality-assurance.event.table.reasons": "કારણો", + // "quality-assurance.event.table.actions": "Actions", "quality-assurance.event.table.actions": "ક્રિયાઓ", + // "quality-assurance.event.action.accept": "Accept suggestion", "quality-assurance.event.action.accept": "સૂચન સ્વીકારો", + // "quality-assurance.event.action.ignore": "Ignore suggestion", "quality-assurance.event.action.ignore": "સૂચન અવગણો", + // "quality-assurance.event.action.undo": "Delete", "quality-assurance.event.action.undo": "કાઢી નાખો", + // "quality-assurance.event.action.reject": "Reject suggestion", "quality-assurance.event.action.reject": "સૂચન નકારી કાઢો", + // "quality-assurance.event.action.import": "Import project and accept suggestion", "quality-assurance.event.action.import": "પ્રોજેક્ટ આયાત કરો અને સૂચન સ્વીકારો", - "quality-assurance.event.table.pidtype": "PID પ્રકાર:", + // "quality-assurance.event.table.pidtype": "PID Type:", + // TODO New key - Add a translation + "quality-assurance.event.table.pidtype": "PID Type:", - "quality-assurance.event.table.pidvalue": "PID મૂલ્ય:", + // "quality-assurance.event.table.pidvalue": "PID Value:", + // TODO New key - Add a translation + "quality-assurance.event.table.pidvalue": "PID Value:", - "quality-assurance.event.table.subjectValue": "વિષય મૂલ્ય:", + // "quality-assurance.event.table.subjectValue": "Subject Value:", + // TODO New key - Add a translation + "quality-assurance.event.table.subjectValue": "Subject Value:", - "quality-assurance.event.table.abstract": "અભ્યાસ:", + // "quality-assurance.event.table.abstract": "Abstract:", + // TODO New key - Add a translation + "quality-assurance.event.table.abstract": "Abstract:", + // "quality-assurance.event.table.suggestedProject": "OpenAIRE Suggested Project data", "quality-assurance.event.table.suggestedProject": "OpenAIRE સૂચિત પ્રોજેક્ટ ડેટા", - "quality-assurance.event.table.project": "પ્રોજેક્ટ શીર્ષક:", + // "quality-assurance.event.table.project": "Project title:", + // TODO New key - Add a translation + "quality-assurance.event.table.project": "Project title:", - "quality-assurance.event.table.acronym": "અન્ય નામ:", + // "quality-assurance.event.table.acronym": "Acronym:", + // TODO New key - Add a translation + "quality-assurance.event.table.acronym": "Acronym:", - "quality-assurance.event.table.code": "કોડ:", + // "quality-assurance.event.table.code": "Code:", + // TODO New key - Add a translation + "quality-assurance.event.table.code": "Code:", - "quality-assurance.event.table.funder": "ફંડર:", + // "quality-assurance.event.table.funder": "Funder:", + // TODO New key - Add a translation + "quality-assurance.event.table.funder": "Funder:", - "quality-assurance.event.table.fundingProgram": "ફંડિંગ પ્રોગ્રામ:", + // "quality-assurance.event.table.fundingProgram": "Funding program:", + // TODO New key - Add a translation + "quality-assurance.event.table.fundingProgram": "Funding program:", - "quality-assurance.event.table.jurisdiction": "ક્ષેત્રાધિકાર:", + // "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + // TODO New key - Add a translation + "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + // "quality-assurance.events.back": "Back to topics", "quality-assurance.events.back": "વિષયો પર પાછા જાઓ", + // "quality-assurance.events.back-to-sources": "Back to sources", "quality-assurance.events.back-to-sources": "સ્ત્રોતો પર પાછા જાઓ", + // "quality-assurance.event.table.less": "Show less", "quality-assurance.event.table.less": "ઓછું બતાવો", + // "quality-assurance.event.table.more": "Show more", "quality-assurance.event.table.more": "વધુ બતાવો", - "quality-assurance.event.project.found": "સ્થાનિક રેકોર્ડ સાથે જોડાયેલ:", + // "quality-assurance.event.project.found": "Bound to the local record:", + // TODO New key - Add a translation + "quality-assurance.event.project.found": "Bound to the local record:", + // "quality-assurance.event.project.notFound": "No local record found", "quality-assurance.event.project.notFound": "કોઈ સ્થાનિક રેકોર્ડ મળ્યો નથી", + // "quality-assurance.event.sure": "Are you sure?", "quality-assurance.event.sure": "શું તમે ખાતરી કરો છો?", + // "quality-assurance.event.ignore.description": "This operation can't be undone. Ignore this suggestion?", "quality-assurance.event.ignore.description": "આ ક્રિયા પાછી ફરી શકશે નહીં. આ સૂચન અવગણો?", + // "quality-assurance.event.undo.description": "This operation can't be undone!", "quality-assurance.event.undo.description": "આ ક્રિયા પાછી ફરી શકશે નહીં!", + // "quality-assurance.event.reject.description": "This operation can't be undone. Reject this suggestion?", "quality-assurance.event.reject.description": "આ ક્રિયા પાછી ફરી શકશે નહીં. આ સૂચન નકારી કાઢો?", + // "quality-assurance.event.accept.description": "No DSpace project selected. A new project will be created based on the suggestion data.", "quality-assurance.event.accept.description": "કોઈ DSpace પ્રોજેક્ટ પસંદ કરેલ નથી. સૂચન ડેટા પર આધારિત નવો પ્રોજેક્ટ બનાવવામાં આવશે.", + // "quality-assurance.event.action.cancel": "Cancel", "quality-assurance.event.action.cancel": "રદ કરો", + // "quality-assurance.event.action.saved": "Your decision has been saved successfully.", "quality-assurance.event.action.saved": "તમારો નિર્ણય સફળતાપૂર્વક સાચવવામાં આવ્યો છે.", + // "quality-assurance.event.action.error": "An error has occurred. Your decision has not been saved.", "quality-assurance.event.action.error": "ભૂલ આવી. તમારો નિર્ણય સાચવવામાં આવ્યો નથી.", + // "quality-assurance.event.modal.project.title": "Choose a project to bound", "quality-assurance.event.modal.project.title": "જોડવા માટે પ્રોજેક્ટ પસંદ કરો", - "quality-assurance.event.modal.project.publication": "પ્રકાશન:", + // "quality-assurance.event.modal.project.publication": "Publication:", + // TODO New key - Add a translation + "quality-assurance.event.modal.project.publication": "Publication:", - "quality-assurance.event.modal.project.bountToLocal": "સ્થાનિક રેકોર્ડ સાથે જોડાયેલ:", + // "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + // TODO New key - Add a translation + "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + // "quality-assurance.event.modal.project.select": "Project search", "quality-assurance.event.modal.project.select": "પ્રોજેક્ટ શોધ", + // "quality-assurance.event.modal.project.search": "Search", "quality-assurance.event.modal.project.search": "શોધો", + // "quality-assurance.event.modal.project.clear": "Clear", "quality-assurance.event.modal.project.clear": "સાફ કરો", + // "quality-assurance.event.modal.project.cancel": "Cancel", "quality-assurance.event.modal.project.cancel": "રદ કરો", + // "quality-assurance.event.modal.project.bound": "Bound project", "quality-assurance.event.modal.project.bound": "જોડાયેલ પ્રોજેક્ટ", + // "quality-assurance.event.modal.project.remove": "Remove", "quality-assurance.event.modal.project.remove": "દૂર કરો", + // "quality-assurance.event.modal.project.placeholder": "Enter a project name", "quality-assurance.event.modal.project.placeholder": "પ્રોજેક્ટ નામ દાખલ કરો", + // "quality-assurance.event.modal.project.notFound": "No project found.", "quality-assurance.event.modal.project.notFound": "કોઈ પ્રોજેક્ટ મળ્યો નથી.", + // "quality-assurance.event.project.bounded": "The project has been linked successfully.", "quality-assurance.event.project.bounded": "પ્રોજેક્ટ સફળતાપૂર્વક જોડાયેલ છે.", + // "quality-assurance.event.project.removed": "The project has been successfully unlinked.", "quality-assurance.event.project.removed": "પ્રોજેક્ટ સફળતાપૂર્વક અનલિંક કરવામાં આવ્યો છે.", + // "quality-assurance.event.project.error": "An error has occurred. No operation performed.", "quality-assurance.event.project.error": "ભૂલ આવી. કોઈ ક્રિયા કરવામાં આવી નથી.", + // "quality-assurance.event.reason": "Reason", "quality-assurance.event.reason": "કારણ", + // "orgunit.listelement.badge": "Organizational Unit", "orgunit.listelement.badge": "સંસ્થાકીય એકમ", + // "orgunit.listelement.no-title": "Untitled", "orgunit.listelement.no-title": "શીર્ષક વિના", + // "orgunit.page.city": "City", "orgunit.page.city": "શહેર", + // "orgunit.page.country": "Country", "orgunit.page.country": "દેશ", + // "orgunit.page.dateestablished": "Date established", "orgunit.page.dateestablished": "સ્થાપના તારીખ", + // "orgunit.page.description": "Description", "orgunit.page.description": "વર્ણન", + // "orgunit.page.edit": "Edit this item", "orgunit.page.edit": "આ આઇટમ સંપાદિત કરો", + // "orgunit.page.id": "ID", "orgunit.page.id": "ID", + // "orgunit.page.options": "Options", "orgunit.page.options": "વિકલ્પો", - "orgunit.page.titleprefix": "સંસ્થાકીય એકમ: ", + // "orgunit.page.titleprefix": "Organizational Unit: ", + // TODO New key - Add a translation + "orgunit.page.titleprefix": "Organizational Unit: ", + // "orgunit.page.ror": "ROR Identifier", "orgunit.page.ror": "ROR Identifier", + // "orgunit.search.results.head": "Organizational Unit Search Results", "orgunit.search.results.head": "સંસ્થાકીય એકમ શોધ પરિણામો", + // "pagination.options.description": "Pagination options", "pagination.options.description": "પેજિનેશન વિકલ્પો", + // "pagination.results-per-page": "Results Per Page", "pagination.results-per-page": "પ્રતિ પૃષ્ઠ પરિણામો", + // "pagination.showing.detail": "{{ range }} of {{ total }}", "pagination.showing.detail": "{{ range }} માંથી {{ total }}", + // "pagination.showing.label": "Now showing ", "pagination.showing.label": "હાલમાં બતાવી રહ્યા છે ", + // "pagination.sort-direction": "Sort Options", "pagination.sort-direction": "સૉર્ટ વિકલ્પો", + // "person.listelement.badge": "Person", "person.listelement.badge": "વ્યક્તિ", + // "person.listelement.no-title": "No name found", "person.listelement.no-title": "કોઈ નામ મળ્યું નથી", + // "person.page.birthdate": "Birth Date", "person.page.birthdate": "જન્મ તારીખ", + // "person.page.edit": "Edit this item", "person.page.edit": "આ આઇટમ સંપાદિત કરો", + // "person.page.email": "Email Address", "person.page.email": "ઇમેઇલ સરનામું", + // "person.page.firstname": "First Name", "person.page.firstname": "પ્રથમ નામ", + // "person.page.jobtitle": "Job Title", "person.page.jobtitle": "નોકરીનું શીર્ષક", + // "person.page.lastname": "Last Name", "person.page.lastname": "છેલ્લું નામ", + // "person.page.name": "Name", "person.page.name": "નામ", + // "person.page.link.full": "Show all metadata", "person.page.link.full": "બધા મેટાડેટા બતાવો", + // "person.page.options": "Options", "person.page.options": "વિકલ્પો", + // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", + // "person.page.staffid": "Staff ID", "person.page.staffid": "સ્ટાફ ID", - "person.page.titleprefix": "વ્યક્તિ: ", + // "person.page.titleprefix": "Person: ", + // TODO New key - Add a translation + "person.page.titleprefix": "Person: ", + // "person.search.results.head": "Person Search Results", "person.search.results.head": "વ્યક્તિ શોધ પરિણામો", + // "person-relationships.search.results.head": "Person Search Results", "person-relationships.search.results.head": "વ્યક્તિ શોધ પરિણામો", + // "person.search.title": "Person Search", "person.search.title": "વ્યક્તિ શોધ", + // "process.new.select-parameters": "Parameters", "process.new.select-parameters": "પરિમાણો", + // "process.new.select-parameter": "Select parameter", "process.new.select-parameter": "પરિમાણ પસંદ કરો", + // "process.new.add-parameter": "Add a parameter...", "process.new.add-parameter": "પરિમાણ ઉમેરો...", + // "process.new.delete-parameter": "Delete parameter", "process.new.delete-parameter": "પરિમાણ કાઢી નાખો", + // "process.new.parameter.label": "Parameter value", "process.new.parameter.label": "પરિમાણ મૂલ્ય", + // "process.new.cancel": "Cancel", "process.new.cancel": "રદ કરો", + // "process.new.submit": "Save", "process.new.submit": "સાચવો", + // "process.new.select-script": "Script", "process.new.select-script": "સ્ક્રિપ્ટ", + // "process.new.select-script.placeholder": "Choose a script...", "process.new.select-script.placeholder": "સ્ક્રિપ્ટ પસંદ કરો...", + // "process.new.select-script.required": "Script is required", "process.new.select-script.required": "સ્ક્રિપ્ટ જરૂરી છે", + // "process.new.parameter.file.upload-button": "Select file...", "process.new.parameter.file.upload-button": "ફાઇલ પસંદ કરો...", + // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "કૃપા કરીને ફાઇલ પસંદ કરો", + // "process.new.parameter.integer.required": "Parameter value is required", "process.new.parameter.integer.required": "પરિમાણ મૂલ્ય જરૂરી છે", + // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "પરિમાણ મૂલ્ય જરૂરી છે", + // "process.new.parameter.type.value": "value", "process.new.parameter.type.value": "મૂલ્ય", + // "process.new.parameter.type.file": "file", "process.new.parameter.type.file": "ફાઇલ", - "process.new.parameter.required.missing": "નીચેના પરિમાણો જરૂરી છે પરંતુ હજી સુધી ગૂમ છે:", + // "process.new.parameter.required.missing": "The following parameters are required but still missing:", + // TODO New key - Add a translation + "process.new.parameter.required.missing": "The following parameters are required but still missing:", + // "process.new.notification.success.title": "Success", "process.new.notification.success.title": "સફળતા", + // "process.new.notification.success.content": "The process was successfully created", "process.new.notification.success.content": "પ્રક્રિયા સફળતાપૂર્વક બનાવવામાં આવી", + // "process.new.notification.error.title": "Error", "process.new.notification.error.title": "ભૂલ", + // "process.new.notification.error.content": "An error occurred while creating this process", "process.new.notification.error.content": "આ પ્રક્રિયા બનાવતી વખતે ભૂલ આવી", + // "process.new.notification.error.max-upload.content": "The file exceeds the maximum upload size", "process.new.notification.error.max-upload.content": "ફાઇલ મહત્તમ અપલોડ કદથી વધુ છે", + // "process.new.header": "Create a new process", "process.new.header": "નવી પ્રક્રિયા બનાવો", + // "process.new.title": "Create a new process", "process.new.title": "નવી પ્રક્રિયા બનાવો", + // "process.new.breadcrumbs": "Create a new process", "process.new.breadcrumbs": "નવી પ્રક્રિયા બનાવો", + // "process.detail.arguments": "Arguments", "process.detail.arguments": "દલીલો", + // "process.detail.arguments.empty": "This process doesn't contain any arguments", "process.detail.arguments.empty": "આ પ્રક્રિયામાં કોઈ દલીલો નથી", + // "process.detail.back": "Back", "process.detail.back": "પાછા", + // "process.detail.output": "Process Output", "process.detail.output": "પ્રક્રિયા આઉટપુટ", + // "process.detail.logs.button": "Retrieve process output", "process.detail.logs.button": "પ્રક્રિયા આઉટપુટ મેળવો", + // "process.detail.logs.loading": "Retrieving", "process.detail.logs.loading": "મેળવી રહ્યા છે", + // "process.detail.logs.none": "This process has no output", "process.detail.logs.none": "આ પ્રક્રિયામાં કોઈ આઉટપુટ નથી", + // "process.detail.output-files": "Output Files", "process.detail.output-files": "આઉટપુટ ફાઇલો", + // "process.detail.output-files.empty": "This process doesn't contain any output files", "process.detail.output-files.empty": "આ પ્રક્રિયામાં કોઈ આઉટપુટ ફાઇલો નથી", + // "process.detail.script": "Script", "process.detail.script": "સ્ક્રિપ્ટ", - "process.detail.title": "પ્રક્રિયા: {{ id }} - {{ name }}", + // "process.detail.title": "Process: {{ id }} - {{ name }}", + // TODO New key - Add a translation + "process.detail.title": "Process: {{ id }} - {{ name }}", + // "process.detail.start-time": "Start time", "process.detail.start-time": "પ્રારંભ સમય", + // "process.detail.end-time": "Finish time", "process.detail.end-time": "સમાપ્તિ સમય", + // "process.detail.status": "Status", "process.detail.status": "સ્થિતિ", + // "process.detail.create": "Create similar process", "process.detail.create": "સમાન પ્રક્રિયા બનાવો", + // "process.detail.actions": "Actions", "process.detail.actions": "ક્રિયાઓ", + // "process.detail.delete.button": "Delete process", "process.detail.delete.button": "પ્રક્રિયા કાઢી નાખો", + // "process.detail.delete.header": "Delete process", "process.detail.delete.header": "પ્રક્રિયા કાઢી નાખો", + // "process.detail.delete.body": "Are you sure you want to delete the current process?", "process.detail.delete.body": "શું તમે વર્તમાન પ્રક્રિયા કાઢી નાખવા માંગો છો?", + // "process.detail.delete.cancel": "Cancel", "process.detail.delete.cancel": "રદ કરો", + // "process.detail.delete.confirm": "Delete process", "process.detail.delete.confirm": "પ્રક્રિયા કાઢી નાખો", + // "process.detail.delete.success": "The process was successfully deleted.", "process.detail.delete.success": "પ્રક્રિયા સફળતાપૂર્વક કાઢી નાખવામાં આવી.", + // "process.detail.delete.error": "Something went wrong when deleting the process", "process.detail.delete.error": "પ્રક્રિયા કાઢી નાખતી વખતે કંઈક ખોટું થયું", + // "process.detail.refreshing": "Auto-refreshing…", "process.detail.refreshing": "ઓટો-રિફ્રેશ થઈ રહ્યું છે…", + // "process.overview.table.completed.info": "Finish time (UTC)", "process.overview.table.completed.info": "સમાપ્તિ સમય (UTC)", + // "process.overview.table.completed.title": "Succeeded processes", "process.overview.table.completed.title": "સફળ પ્રક્રિયાઓ", + // "process.overview.table.empty": "No matching processes found.", "process.overview.table.empty": "કોઈ મેળ ખાતી પ્રક્રિયાઓ મળી નથી.", + // "process.overview.table.failed.info": "Finish time (UTC)", "process.overview.table.failed.info": "સમાપ્તિ સમય (UTC)", + // "process.overview.table.failed.title": "Failed processes", "process.overview.table.failed.title": "નિષ્ફળ પ્રક્રિયાઓ", + // "process.overview.table.finish": "Finish time (UTC)", "process.overview.table.finish": "સમાપ્તિ સમય (UTC)", + // "process.overview.table.id": "Process ID", "process.overview.table.id": "પ્રક્રિયા ID", + // "process.overview.table.name": "Name", "process.overview.table.name": "નામ", + // "process.overview.table.running.info": "Start time (UTC)", "process.overview.table.running.info": "પ્રારંભ સમય (UTC)", + // "process.overview.table.running.title": "Running processes", "process.overview.table.running.title": "ચાલતી પ્રક્રિયાઓ", + // "process.overview.table.scheduled.info": "Creation time (UTC)", "process.overview.table.scheduled.info": "રચના સમય (UTC)", + // "process.overview.table.scheduled.title": "Scheduled processes", "process.overview.table.scheduled.title": "નિયત પ્રક્રિયાઓ", + // "process.overview.table.start": "Start time (UTC)", "process.overview.table.start": "પ્રારંભ સમય (UTC)", + // "process.overview.table.status": "Status", "process.overview.table.status": "સ્થિતિ", + // "process.overview.table.user": "User", "process.overview.table.user": "વપરાશકર્તા", + // "process.overview.title": "Processes Overview", "process.overview.title": "પ્રક્રિયાઓની ઝાંખી", + // "process.overview.breadcrumbs": "Processes Overview", "process.overview.breadcrumbs": "પ્રક્રિયાઓની ઝાંખી", + // "process.overview.new": "New", "process.overview.new": "નવું", + // "process.overview.table.actions": "Actions", "process.overview.table.actions": "ક્રિયાઓ", + // "process.overview.delete": "Delete {{count}} processes", "process.overview.delete": "{{count}} પ્રક્રિયાઓ કાઢી નાખો", + // "process.overview.delete-process": "Delete process", "process.overview.delete-process": "પ્રક્રિયા કાઢી નાખો", + // "process.overview.delete.clear": "Clear delete selection", "process.overview.delete.clear": "કાઢી નાખવાની પસંદગી સાફ કરો", + // "process.overview.delete.processing": "{{count}} process(es) are being deleted. Please wait for the deletion to fully complete. Note that this can take a while.", "process.overview.delete.processing": "{{count}} પ્રક્રિયા(ઓ) કાઢી નાખવામાં આવી રહી છે. કૃપા કરીને સંપૂર્ણ રીતે કાઢી નાખવા માટે રાહ જુઓ. નોંધો કે આમાં થોડો સમય લાગી શકે છે.", + // "process.overview.delete.body": "Are you sure you want to delete {{count}} process(es)?", "process.overview.delete.body": "શું તમે ખરેખર {{count}} પ્રક્રિયા(ઓ) કાઢી નાખવા માંગો છો?", + // "process.overview.delete.header": "Delete processes", "process.overview.delete.header": "પ્રક્રિયાઓ કાઢી નાખો", + // "process.overview.unknown.user": "Unknown", "process.overview.unknown.user": "અજ્ઞાત", + // "process.bulk.delete.error.head": "Error on deleteing process", "process.bulk.delete.error.head": "પ્રક્રિયા કાઢી નાખવામાં ભૂલ", + // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ", "process.bulk.delete.error.body": "પ્રક્રિયા ID {{processId}} સાથેની પ્રક્રિયા કાઢી શકાઈ નથી. બાકી રહેલી પ્રક્રિયાઓ કાઢી નાખવાનું ચાલુ રહેશે.", + // "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted", "process.bulk.delete.success": "{{count}} પ્રક્રિયા(ઓ) સફળતાપૂર્વક કાઢી નાખવામાં આવી છે", + // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "પ્રોફાઇલ અપડેટ કરો", + // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + // TODO New key - Add a translation + "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + + // "profile.card.accessibility.header": "Accessibility", + // TODO New key - Add a translation + "profile.card.accessibility.header": "Accessibility", + + // "profile.card.accessibility.link": "Go to Accessibility Settings Page", + // TODO New key - Add a translation + "profile.card.accessibility.link": "Go to Accessibility Settings Page", + + // "profile.card.identify": "Identify", "profile.card.identify": "ઓળખો", + // "profile.card.security": "Security", "profile.card.security": "સુરક્ષા", + // "profile.form.submit": "Save", "profile.form.submit": "સાચવો", + // "profile.groups.head": "Authorization groups you belong to", "profile.groups.head": "તમે જે અધિકૃતતા જૂથો સાથે જોડાયેલા છો", + // "profile.special.groups.head": "Authorization special groups you belong to", "profile.special.groups.head": "તમે જે અધિકૃતતા વિશેષ જૂથો સાથે જોડાયેલા છો", + // "profile.metadata.form.error.firstname.required": "First Name is required", "profile.metadata.form.error.firstname.required": "પ્રથમ નામ જરૂરી છે", + // "profile.metadata.form.error.lastname.required": "Last Name is required", "profile.metadata.form.error.lastname.required": "છેલ્લું નામ જરૂરી છે", + // "profile.metadata.form.label.email": "Email Address", "profile.metadata.form.label.email": "ઇમેઇલ સરનામું", + // "profile.metadata.form.label.firstname": "First Name", "profile.metadata.form.label.firstname": "પ્રથમ નામ", + // "profile.metadata.form.label.language": "Language", "profile.metadata.form.label.language": "ભાષા", + // "profile.metadata.form.label.lastname": "Last Name", "profile.metadata.form.label.lastname": "છેલ્લું નામ", + // "profile.metadata.form.label.phone": "Contact Telephone", "profile.metadata.form.label.phone": "સંપર્ક ટેલિફોન", + // "profile.metadata.form.notifications.success.content": "Your changes to the profile were saved.", "profile.metadata.form.notifications.success.content": "તમારા પ્રોફાઇલ માટેના ફેરફારો સાચવવામાં આવ્યા હતા.", + // "profile.metadata.form.notifications.success.title": "Profile saved", "profile.metadata.form.notifications.success.title": "પ્રોફાઇલ સાચવી", + // "profile.notifications.warning.no-changes.content": "No changes were made to the Profile.", "profile.notifications.warning.no-changes.content": "પ્રોફાઇલમાં કોઈ ફેરફારો કરવામાં આવ્યા નથી.", + // "profile.notifications.warning.no-changes.title": "No changes", "profile.notifications.warning.no-changes.title": "કોઈ ફેરફારો નથી", + // "profile.security.form.error.matching-passwords": "The passwords do not match.", "profile.security.form.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", + // "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.", "profile.security.form.info": "વૈકલ્પિક રીતે, તમે નીચેના બોક્સમાં નવો પાસવર્ડ દાખલ કરી શકો છો અને તેને ફરીથી تایپ કરીને પુષ્ટિ કરી શકો છો.", + // "profile.security.form.label.password": "Password", "profile.security.form.label.password": "પાસવર્ડ", + // "profile.security.form.label.passwordrepeat": "Retype to confirm", "profile.security.form.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી تایપ કરો", + // "profile.security.form.label.current-password": "Current password", "profile.security.form.label.current-password": "વર્તમાન પાસવર્ડ", + // "profile.security.form.notifications.success.content": "Your changes to the password were saved.", "profile.security.form.notifications.success.content": "તમારા પાસવર્ડ માટેના ફેરફારો સાચવવામાં આવ્યા હતા.", + // "profile.security.form.notifications.success.title": "Password saved", "profile.security.form.notifications.success.title": "પાસવર્ડ સાચવી", + // "profile.security.form.notifications.error.title": "Error changing passwords", "profile.security.form.notifications.error.title": "પાસવર્ડ બદલવામાં ભૂલ", + // "profile.security.form.notifications.error.change-failed": "An error occurred while trying to change the password. Please check if the current password is correct.", "profile.security.form.notifications.error.change-failed": "પાસવર્ડ બદલવાનો પ્રયાસ કરતી વખતે ભૂલ આવી. કૃપા કરીને તપાસો કે વર્તમાન પાસવર્ડ સાચો છે કે નહીં.", + // "profile.security.form.notifications.error.not-same": "The provided passwords are not the same.", "profile.security.form.notifications.error.not-same": "પ્રદાન કરેલા પાસવર્ડો એકસરખા નથી.", + // "profile.security.form.notifications.error.general": "Please fill required fields of security form.", "profile.security.form.notifications.error.general": "કૃપા કરીને સુરક્ષા ફોર્મના જરૂરી ક્ષેત્રો ભરો.", + // "profile.title": "Update Profile", "profile.title": "પ્રોફાઇલ અપડેટ કરો", + // "profile.card.researcher": "Researcher Profile", "profile.card.researcher": "શોધક પ્રોફાઇલ", + // "project.listelement.badge": "Research Project", "project.listelement.badge": "શોધ પ્રોજેક્ટ", + // "project.page.contributor": "Contributors", "project.page.contributor": "યોગદાનકર્તાઓ", + // "project.page.description": "Description", "project.page.description": "વર્ણન", + // "project.page.edit": "Edit this item", "project.page.edit": "આ આઇટમ સંપાદિત કરો", + // "project.page.expectedcompletion": "Expected Completion", "project.page.expectedcompletion": "અપેક્ષિત પૂર્ણતા", + // "project.page.funder": "Funders", "project.page.funder": "ફંડર્સ", + // "project.page.id": "ID", "project.page.id": "ID", + // "project.page.keyword": "Keywords", "project.page.keyword": "કીવર્ડ્સ", + // "project.page.options": "Options", "project.page.options": "વિકલ્પો", + // "project.page.status": "Status", "project.page.status": "સ્થિતિ", - "project.page.titleprefix": "શોધ પ્રોજેક્ટ: ", + // "project.page.titleprefix": "Research Project: ", + // TODO New key - Add a translation + "project.page.titleprefix": "Research Project: ", + // "project.search.results.head": "Project Search Results", "project.search.results.head": "પ્રોજેક્ટ શોધ પરિણામો", + // "project-relationships.search.results.head": "Project Search Results", "project-relationships.search.results.head": "પ્રોજેક્ટ શોધ પરિણામો", + // "publication.listelement.badge": "Publication", "publication.listelement.badge": "પ્રકાશન", + // "publication.page.description": "Description", "publication.page.description": "વર્ણન", + // "publication.page.edit": "Edit this item", "publication.page.edit": "આ આઇટમ સંપાદિત કરો", + // "publication.page.journal-issn": "Journal ISSN", "publication.page.journal-issn": "જર્નલ ISSN", + // "publication.page.journal-title": "Journal Title", "publication.page.journal-title": "જર્નલ શીર્ષક", + // "publication.page.publisher": "Publisher", "publication.page.publisher": "પ્રકાશક", + // "publication.page.options": "Options", "publication.page.options": "વિકલ્પો", - "publication.page.titleprefix": "પ્રકાશન: ", + // "publication.page.titleprefix": "Publication: ", + // TODO New key - Add a translation + "publication.page.titleprefix": "Publication: ", + // "publication.page.volume-title": "Volume Title", "publication.page.volume-title": "વોલ્યુમ શીર્ષક", + // "publication.search.results.head": "Publication Search Results", "publication.search.results.head": "પ્રકાશન શોધ પરિણામો", + // "publication-relationships.search.results.head": "Publication Search Results", "publication-relationships.search.results.head": "પ્રકાશન શોધ પરિણામો", + // "publication.search.title": "Publication Search", "publication.search.title": "પ્રકાશન શોધ", + // "media-viewer.next": "Next", "media-viewer.next": "આગલું", + // "media-viewer.previous": "Previous", "media-viewer.previous": "પાછલું", + // "media-viewer.playlist": "Playlist", "media-viewer.playlist": "પ્લેલિસ્ટ", + // "suggestion.loading": "Loading ...", "suggestion.loading": "લોડ થઈ રહ્યું છે ...", + // "suggestion.title": "Publication Claim", "suggestion.title": "પ્રકાશન દાવો", + // "suggestion.title.breadcrumbs": "Publication Claim", "suggestion.title.breadcrumbs": "પ્રકાશન દાવો", + // "suggestion.targets.description": "Below you can see all the suggestions ", "suggestion.targets.description": "નીચે તમે બધા સૂચનો જોઈ શકો છો", + // "suggestion.targets": "Current Suggestions", "suggestion.targets": "વર્તમાન સૂચનો", + // "suggestion.table.name": "Researcher Name", "suggestion.table.name": "શોધકનું નામ", + // "suggestion.table.actions": "Actions", "suggestion.table.actions": "ક્રિયાઓ", + // "suggestion.button.review": "Review {{ total }} suggestion(s)", "suggestion.button.review": "{{ total }} સૂચન(ઓ)ની સમીક્ષા કરો", + // "suggestion.button.review.title": "Review {{ total }} suggestion(s) for ", "suggestion.button.review.title": "{{ total }} સૂચન(ઓ) માટેની સમીક્ષા કરો", + // "suggestion.noTargets": "No target found.", "suggestion.noTargets": "કોઈ લક્ષ્ય મળ્યું નથી.", + // "suggestion.target.error.service.retrieve": "An error occurred while loading the Suggestion targets", "suggestion.target.error.service.retrieve": "સૂચન લક્ષ્યો લોડ કરતી વખતે ભૂલ આવી", + // "suggestion.evidence.type": "Type", "suggestion.evidence.type": "પ્રકાર", + // "suggestion.evidence.score": "Score", "suggestion.evidence.score": "સ્કોર", + // "suggestion.evidence.notes": "Notes", "suggestion.evidence.notes": "નોંધો", + // "suggestion.approveAndImport": "Approve & import", "suggestion.approveAndImport": "મંજૂર કરો અને આયાત કરો", + // "suggestion.approveAndImport.success": "The suggestion has been imported successfully. View.", "suggestion.approveAndImport.success": "સૂચન સફળતાપૂર્વક આયાત કરવામાં આવ્યું છે. જુઓ.", + // "suggestion.approveAndImport.bulk": "Approve & import Selected", "suggestion.approveAndImport.bulk": "પસંદ કરેલને મંજૂર કરો અને આયાત કરો", + // "suggestion.approveAndImport.bulk.success": "{{ count }} suggestions have been imported successfully ", "suggestion.approveAndImport.bulk.success": "{{ count }} સૂચનો સફળતાપૂર્વક આયાત કરવામાં આવ્યા છે", + // "suggestion.approveAndImport.bulk.error": "{{ count }} suggestions haven't been imported due to unexpected server errors", "suggestion.approveAndImport.bulk.error": "અનપેક્ષિત સર્વર ભૂલોને કારણે {{ count }} સૂચનો આયાત કરવામાં આવ્યા નથી", + // "suggestion.ignoreSuggestion": "Ignore Suggestion", "suggestion.ignoreSuggestion": "સૂચન અવગણો", + // "suggestion.ignoreSuggestion.success": "The suggestion has been discarded", "suggestion.ignoreSuggestion.success": "સૂચન રદ કરવામાં આવ્યું છે", + // "suggestion.ignoreSuggestion.bulk": "Ignore Suggestion Selected", "suggestion.ignoreSuggestion.bulk": "પસંદ કરેલ સૂચન અવગણો", + // "suggestion.ignoreSuggestion.bulk.success": "{{ count }} suggestions have been discarded ", "suggestion.ignoreSuggestion.bulk.success": "{{ count }} સૂચનો રદ કરવામાં આવ્યા છે", + // "suggestion.ignoreSuggestion.bulk.error": "{{ count }} suggestions haven't been discarded due to unexpected server errors", "suggestion.ignoreSuggestion.bulk.error": "અનપેક્ષિત સર્વર ભૂલોને કારણે {{ count }} સૂચનો રદ કરવામાં આવ્યા નથી", + // "suggestion.seeEvidence": "See evidence", "suggestion.seeEvidence": "પુરાવા જુઓ", + // "suggestion.hideEvidence": "Hide evidence", "suggestion.hideEvidence": "પુરાવા છુપાવો", + // "suggestion.suggestionFor": "Suggestions for", "suggestion.suggestionFor": "માટેના સૂચનો", + // "suggestion.suggestionFor.breadcrumb": "Suggestions for {{ name }}", "suggestion.suggestionFor.breadcrumb": "{{ name }} માટેના સૂચનો", + // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "OpenAIRE ગ્રાફ", + // "suggestion.source.openalex": "OpenAlex", "suggestion.source.openalex": "OpenAlex", + // "suggestion.from.source": "from the ", "suggestion.from.source": "થી", + // "suggestion.count.missing": "You have no publication claims left", "suggestion.count.missing": "તમારા પાસે કોઈ પ્રકાશન દાવા બાકી નથી", + // "suggestion.totalScore": "Total Score", "suggestion.totalScore": "કુલ સ્કોર", + // "suggestion.type.openaire": "OpenAIRE", "suggestion.type.openaire": "OpenAIRE", + // "register-email.title": "New user registration", "register-email.title": "નવા વપરાશકર્તા નોંધણી", + // "register-page.create-profile.header": "Create Profile", "register-page.create-profile.header": "પ્રોફાઇલ બનાવો", + // "register-page.create-profile.identification.header": "Identify", "register-page.create-profile.identification.header": "ઓળખો", + // "register-page.create-profile.identification.email": "Email Address", "register-page.create-profile.identification.email": "ઇમેઇલ સરનામું", + // "register-page.create-profile.identification.first-name": "First Name *", "register-page.create-profile.identification.first-name": "પ્રથમ નામ *", + // "register-page.create-profile.identification.first-name.error": "Please fill in a First Name", "register-page.create-profile.identification.first-name.error": "કૃપા કરીને પ્રથમ નામ ભરો", + // "register-page.create-profile.identification.last-name": "Last Name *", "register-page.create-profile.identification.last-name": "છેલ્લું નામ *", + // "register-page.create-profile.identification.last-name.error": "Please fill in a Last Name", "register-page.create-profile.identification.last-name.error": "કૃપા કરીને છેલ્લું નામ ભરો", + // "register-page.create-profile.identification.contact": "Contact Telephone", "register-page.create-profile.identification.contact": "સંપર્ક ટેલિફોન", + // "register-page.create-profile.identification.language": "Language", "register-page.create-profile.identification.language": "ભાષા", + // "register-page.create-profile.security.header": "Security", "register-page.create-profile.security.header": "સુરક્ષા", + // "register-page.create-profile.security.info": "Please enter a password in the box below, and confirm it by typing it again into the second box.", "register-page.create-profile.security.info": "કૃપા કરીને નીચેના બોક્સમાં પાસવર્ડ દાખલ કરો અને તેને ફરીથી تایપ કરીને પુષ્ટિ કરો.", + // "register-page.create-profile.security.label.password": "Password *", "register-page.create-profile.security.label.password": "પાસવર્ડ *", + // "register-page.create-profile.security.label.passwordrepeat": "Retype to confirm *", "register-page.create-profile.security.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી تایપ કરો *", + // "register-page.create-profile.security.error.empty-password": "Please enter a password in the box below.", "register-page.create-profile.security.error.empty-password": "કૃપા કરીને નીચેના બોક્સમાં પાસવર્ડ દાખલ કરો.", + // "register-page.create-profile.security.error.matching-passwords": "The passwords do not match.", "register-page.create-profile.security.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", + // "register-page.create-profile.submit": "Complete Registration", "register-page.create-profile.submit": "નોંધણી પૂર્ણ કરો", + // "register-page.create-profile.submit.error.content": "Something went wrong while registering a new user.", "register-page.create-profile.submit.error.content": "નવા વપરાશકર્તા નોંધણી કરતી વખતે કંઈક ખોટું થયું.", + // "register-page.create-profile.submit.error.head": "Registration failed", "register-page.create-profile.submit.error.head": "નોંધણી નિષ્ફળ", + // "register-page.create-profile.submit.success.content": "The registration was successful. You have been logged in as the created user.", "register-page.create-profile.submit.success.content": "નોંધણી સફળ રહી. તમે બનાવેલ વપરાશકર્તા તરીકે લોગિન થયા છો.", + // "register-page.create-profile.submit.success.head": "Registration completed", "register-page.create-profile.submit.success.head": "નોંધણી પૂર્ણ", + // "register-page.registration.header": "New user registration", "register-page.registration.header": "નવા વપરાશકર્તા નોંધણી", + // "register-page.registration.info": "Register an account to subscribe to collections for email updates, and submit new items to DSpace.", "register-page.registration.info": "ઇમેઇલ અપડેટ્સ માટે સંગ્રહો માટે સબ્સ્ક્રાઇબ કરવા અને DSpace માં નવા આઇટમ્સ સબમિટ કરવા માટે એકાઉન્ટ નોંધણી કરો.", + // "register-page.registration.email": "Email Address *", "register-page.registration.email": "ઇમેઇલ સરનામું *", + // "register-page.registration.email.error.required": "Please fill in an email address", "register-page.registration.email.error.required": "કૃપા કરીને ઇમેઇલ સરનામું ભરો", + // "register-page.registration.email.error.not-email-form": "Please fill in a valid email address.", "register-page.registration.email.error.not-email-form": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું ભરો.", - "register-page.registration.email.error.not-valid-domain": "અનુમતિ આપેલ ડોમેઇન સાથે ઇમેઇલનો ઉપયોગ કરો: {{ domains }}", + // "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + // TODO New key - Add a translation + "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + // "register-page.registration.email.hint": "This address will be verified and used as your login name.", "register-page.registration.email.hint": "આ સરનામું ચકાસવામાં આવશે અને તમારા લોગિન નામ તરીકે ઉપયોગમાં લેવામાં આવશે.", + // "register-page.registration.submit": "Register", "register-page.registration.submit": "નોંધણી કરો", + // "register-page.registration.success.head": "Verification email sent", "register-page.registration.success.head": "ચકાસણી ઇમેઇલ મોકલવામાં આવ્યું", + // "register-page.registration.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "register-page.registration.success.content": "{{ email }} પર એક ઇમેઇલ મોકલવામાં આવ્યું છે જેમાં વિશેષ URL અને વધુ સૂચનાઓ છે.", + // "register-page.registration.error.head": "Error when trying to register email", "register-page.registration.error.head": "ઇમેઇલ નોંધણી કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - "register-page.registration.error.content": "નીચેના ઇમેઇલ સરનામું નોંધણી કરતી વખતે ભૂલ આવી: {{ email }}", + // "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + // TODO New key - Add a translation + "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + // "register-page.registration.error.recaptcha": "Error when trying to authenticate with recaptcha", "register-page.registration.error.recaptcha": "recaptcha સાથે પ્રમાણિકતા કરવાનો પ્રયાસ કરતી વખતે ભૂલ", + // "register-page.registration.google-recaptcha.must-accept-cookies": "In order to register you must accept the Registration and Password recovery (Google reCaptcha) cookies.", "register-page.registration.google-recaptcha.must-accept-cookies": "નોંધણી કરવા માટે તમારે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ (Google reCaptcha) કૂકીઝ સ્વીકારવી પડશે.", + // "register-page.registration.error.maildomain": "This email address is not on the list of domains who can register. Allowed domains are {{ domains }}", "register-page.registration.error.maildomain": "આ ઇમેઇલ સરનામું તે ડોમેઇનની યાદીમાં નથી જે નોંધણી કરી શકે છે. અનુમતિ આપેલ ડોમેઇન છે {{ domains }}", + // "register-page.registration.google-recaptcha.open-cookie-settings": "Open cookie settings", "register-page.registration.google-recaptcha.open-cookie-settings": "કૂકી સેટિંગ્સ ખોલો", + // "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", + // "register-page.registration.google-recaptcha.notification.message.error": "An error occurred during reCaptcha verification", "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha ચકાસણી દરમિયાન ભૂલ આવી", + // "register-page.registration.google-recaptcha.notification.message.expired": "Verification expired. Please verify again.", "register-page.registration.google-recaptcha.notification.message.expired": "ચકાસણી સમાપ્ત થઈ. કૃપા કરીને ફરીથી ચકાસો.", + // "register-page.registration.info.maildomain": "Accounts can be registered for mail addresses of the domains", "register-page.registration.info.maildomain": "એકાઉન્ટ્સને ડોમેઇનના મેલ સરનામા માટે નોંધણી કરી શકાય છે", + // "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items", "relationships.add.error.relationship-type.content": "સંબંધ પ્રકાર {{ type }} માટે યોગ્ય મેળ નથી મળ્યો બે આઇટમ્સ વચ્ચે", + // "relationships.add.error.server.content": "The server returned an error", "relationships.add.error.server.content": "સર્વરે ભૂલ પરત કરી", + // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "સંબંધ ઉમેરવામાં અસમર્થ", - "relationships.isAuthorOf": "લેખકો", + // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + + // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + + // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - "relationships.isAuthorOf.Person": "લેખકો (વ્યક્તિઓ)", + // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - "relationships.isAuthorOf.OrgUnit": "લેખકો (સંસ્થાકીય એકમો)", + // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - "relationships.isIssueOf": "જર્નલ ઇશ્યુઝ", + // "relationships.Publication.isContributorOfPublication.Person": "Contributor", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.Person": "Contributor", - "relationships.isIssueOf.JournalIssue": "જર્નલ ઇશ્યુ", + // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - "relationships.isJournalIssueOf": "જર્નલ ઇશ્યુ", + // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - "relationships.isJournalOf": "જર્નલ્સ", + // "relationships.Person.isProjectOfPerson.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Person.isProjectOfPerson.Project": "Research Projects", - "relationships.isJournalVolumeOf": "જર્નલ વોલ્યુમ", + // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - "relationships.isOrgUnitOf": "સંસ્થાકીય એકમો", + // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - "relationships.isPersonOf": "લેખકો", + // "relationships.Project.isPublicationOfProject.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Project.isPublicationOfProject.Publication": "Publications", - "relationships.isProjectOf": "શોધ પ્રોજેક્ટ્સ", + // "relationships.Project.isPersonOfProject.Person": "Authors", + // TODO New key - Add a translation + "relationships.Project.isPersonOfProject.Person": "Authors", - "relationships.isPublicationOf": "પ્રકાશનો", + // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - "relationships.isPublicationOfJournalIssue": "લેખો", + // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + // TODO New key - Add a translation + "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - "relationships.isSingleJournalOf": "જર્નલ", + // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - "relationships.isSingleVolumeOf": "જર્નલ વોલ્યુમ", + // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + // TODO New key - Add a translation + "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - "relationships.isVolumeOf": "જર્નલ વોલ્યુમ", + // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - "relationships.isVolumeOf.JournalVolume": "જર્નલ વોલ્યુમ", + // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - "relationships.isContributorOf": "યોગદાનકર્તાઓ", + // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - "relationships.isContributorOf.OrgUnit": "યોગદાનકર્તા (સંસ્થાકીય એકમ)", + // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - "relationships.isContributorOf.Person": "યોગદાનકર્તા", + // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - "relationships.isFundingAgencyOf.OrgUnit": "ફંડર", + // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + // TODO New key - Add a translation + "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + // TODO New key - Add a translation + "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + + // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + + // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + + // "repository.image.logo": "Repository logo", "repository.image.logo": "રિપોઝિટરી લોગો", + // "repository.title": "DSpace Repository", "repository.title": "DSpace રિપોઝિટરી", - "repository.title.prefix": "DSpace રિપોઝિટરી :: ", + // "repository.title.prefix": "DSpace Repository :: ", + // TODO New key - Add a translation + "repository.title.prefix": "DSpace Repository :: ", + // "resource-policies.add.button": "Add", "resource-policies.add.button": "ઉમેરો", + // "resource-policies.add.for.": "Add a new policy", "resource-policies.add.for.": "નવી નીતિ ઉમેરો", + // "resource-policies.add.for.bitstream": "Add a new Bitstream policy", "resource-policies.add.for.bitstream": "નવી બિટસ્ટ્રીમ નીતિ ઉમેરો", + // "resource-policies.add.for.bundle": "Add a new Bundle policy", "resource-policies.add.for.bundle": "નવી બંડલ નીતિ ઉમેરો", + // "resource-policies.add.for.item": "Add a new Item policy", "resource-policies.add.for.item": "નવી આઇટમ નીતિ ઉમેરો", + // "resource-policies.add.for.community": "Add a new Community policy", "resource-policies.add.for.community": "નવી સમુદાય નીતિ ઉમેરો", + // "resource-policies.add.for.collection": "Add a new Collection policy", "resource-policies.add.for.collection": "નવી સંગ્રહ નીતિ ઉમેરો", + // "resource-policies.create.page.heading": "Create new resource policy for ", "resource-policies.create.page.heading": "માટે નવી સંસાધન નીતિ બનાવો", + // "resource-policies.create.page.failure.content": "An error occurred while creating the resource policy.", "resource-policies.create.page.failure.content": "સંસાધન નીતિ બનાવતી વખતે ભૂલ આવી.", + // "resource-policies.create.page.success.content": "Operation successful", "resource-policies.create.page.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", + // "resource-policies.create.page.title": "Create new resource policy", "resource-policies.create.page.title": "નવી સંસાધન નીતિ બનાવો", + // "resource-policies.delete.btn": "Delete selected", "resource-policies.delete.btn": "પસંદ કરેલને કાઢી નાખો", + // "resource-policies.delete.btn.title": "Delete selected resource policies", "resource-policies.delete.btn.title": "પસંદ કરેલ સંસાધન નીતિઓ કાઢી નાખો", + // "resource-policies.delete.failure.content": "An error occurred while deleting selected resource policies.", "resource-policies.delete.failure.content": "પસંદ કરેલ સંસાધન નીતિઓ કાઢી નાખતી વખતે ભૂલ આવી.", + // "resource-policies.delete.success.content": "Operation successful", "resource-policies.delete.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", + // "resource-policies.edit.page.heading": "Edit resource policy ", "resource-policies.edit.page.heading": "સંસાધન નીતિ સંપાદિત કરો", + // "resource-policies.edit.page.failure.content": "An error occurred while editing the resource policy.", "resource-policies.edit.page.failure.content": "સંસાધન નીતિ સંપાદિત કરતી વખતે ભૂલ આવી.", + // "resource-policies.edit.page.target-failure.content": "An error occurred while editing the target (ePerson or group) of the resource policy.", "resource-policies.edit.page.target-failure.content": "સંસાધન નીતિના લક્ષ્ય (ePerson અથવા જૂથ) સંપાદિત કરતી વખતે ભૂલ આવી.", + // "resource-policies.edit.page.other-failure.content": "An error occurred while editing the resource policy. The target (ePerson or group) has been successfully updated.", "resource-policies.edit.page.other-failure.content": "સંસાધન નીતિ સંપાદિત કરતી વખતે ભૂલ આવી. લક્ષ્ય (ePerson અથવા જૂથ) સફળતાપૂર્વક અપડેટ થયું છે.", + // "resource-policies.edit.page.success.content": "Operation successful", "resource-policies.edit.page.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", + // "resource-policies.edit.page.title": "Edit resource policy", "resource-policies.edit.page.title": "સંસાધન નીતિ સંપાદિત કરો", + // "resource-policies.form.action-type.label": "Select the action type", "resource-policies.form.action-type.label": "ક્રિયા પ્રકાર પસંદ કરો", + // "resource-policies.form.action-type.required": "You must select the resource policy action.", "resource-policies.form.action-type.required": "તમારે સંસાધન નીતિ ક્રિયા પસંદ કરવી પડશે.", + // "resource-policies.form.eperson-group-list.label": "The eperson or group that will be granted the permission", "resource-policies.form.eperson-group-list.label": "ePerson અથવા જૂથ જેને પરવાનગી આપવામાં આવશે", + // "resource-policies.form.eperson-group-list.select.btn": "Select", "resource-policies.form.eperson-group-list.select.btn": "પસંદ કરો", + // "resource-policies.form.eperson-group-list.tab.eperson": "Search for a ePerson", "resource-policies.form.eperson-group-list.tab.eperson": "ePerson માટે શોધો", + // "resource-policies.form.eperson-group-list.tab.group": "Search for a group", "resource-policies.form.eperson-group-list.tab.group": "જૂથ માટે શોધો", + // "resource-policies.form.eperson-group-list.table.headers.action": "Action", "resource-policies.form.eperson-group-list.table.headers.action": "ક્રિયા", + // "resource-policies.form.eperson-group-list.table.headers.id": "ID", "resource-policies.form.eperson-group-list.table.headers.id": "ID", + // "resource-policies.form.eperson-group-list.table.headers.name": "Name", "resource-policies.form.eperson-group-list.table.headers.name": "નામ", + // "resource-policies.form.eperson-group-list.modal.header": "Cannot change type", "resource-policies.form.eperson-group-list.modal.header": "પ્રકાર બદલી શકાતો નથી", + // "resource-policies.form.eperson-group-list.modal.text1.toGroup": "It is not possible to replace an ePerson with a group.", "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePerson ને જૂથ સાથે બદલી શકાતું નથી.", + // "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "It is not possible to replace a group with an ePerson.", "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "જૂથને ePerson સાથે બદલી શકાતું નથી.", + // "resource-policies.form.eperson-group-list.modal.text2": "Delete the current resource policy and create a new one with the desired type.", "resource-policies.form.eperson-group-list.modal.text2": "વાંછિત પ્રકાર સાથે નવી નીતિ બનાવવા માટે વર્તમાન સંસાધન નીતિ કાઢી નાખો.", + // "resource-policies.form.eperson-group-list.modal.close": "Ok", "resource-policies.form.eperson-group-list.modal.close": "બરાબર", + // "resource-policies.form.date.end.label": "End Date", "resource-policies.form.date.end.label": "અંતિમ તારીખ", + // "resource-policies.form.date.start.label": "Start Date", "resource-policies.form.date.start.label": "પ્રારંભ તારીખ", + // "resource-policies.form.description.label": "Description", "resource-policies.form.description.label": "વર્ણન", + // "resource-policies.form.name.label": "Name", "resource-policies.form.name.label": "નામ", + // "resource-policies.form.name.hint": "Max 30 characters", "resource-policies.form.name.hint": "મહત્તમ 30 અક્ષરો", + // "resource-policies.form.policy-type.label": "Select the policy type", "resource-policies.form.policy-type.label": "નીતિનો પ્રકાર પસંદ કરો", + // "resource-policies.form.policy-type.required": "You must select the resource policy type.", "resource-policies.form.policy-type.required": "તમારે સંસાધન નીતિનો પ્રકાર પસંદ કરવો પડશે.", + // "resource-policies.table.headers.action": "Action", "resource-policies.table.headers.action": "ક્રિયા", + // "resource-policies.table.headers.date.end": "End Date", "resource-policies.table.headers.date.end": "અંતિમ તારીખ", + // "resource-policies.table.headers.date.start": "Start Date", "resource-policies.table.headers.date.start": "પ્રારંભ તારીખ", + // "resource-policies.table.headers.edit": "Edit", "resource-policies.table.headers.edit": "સંપાદિત કરો", + // "resource-policies.table.headers.edit.group": "Edit group", "resource-policies.table.headers.edit.group": "જૂથ સંપાદિત કરો", + // "resource-policies.table.headers.edit.policy": "Edit policy", "resource-policies.table.headers.edit.policy": "નીતિ સંપાદિત કરો", + // "resource-policies.table.headers.eperson": "EPerson", "resource-policies.table.headers.eperson": "ePerson", + // "resource-policies.table.headers.group": "Group", "resource-policies.table.headers.group": "જૂથ", + // "resource-policies.table.headers.select-all": "Select all", "resource-policies.table.headers.select-all": "બધા પસંદ કરો", + // "resource-policies.table.headers.deselect-all": "Deselect all", "resource-policies.table.headers.deselect-all": "બધા પસંદ ન કરો", + // "resource-policies.table.headers.select": "Select", "resource-policies.table.headers.select": "પસંદ કરો", + // "resource-policies.table.headers.deselect": "Deselect", "resource-policies.table.headers.deselect": "પસંદ ન કરો", + // "resource-policies.table.headers.id": "ID", "resource-policies.table.headers.id": "ID", + // "resource-policies.table.headers.name": "Name", "resource-policies.table.headers.name": "નામ", + // "resource-policies.table.headers.policyType": "type", "resource-policies.table.headers.policyType": "પ્રકાર", + // "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream", "resource-policies.table.headers.title.for.bitstream": "બિટસ્ટ્રીમ માટેની નીતિઓ", + // "resource-policies.table.headers.title.for.bundle": "Policies for Bundle", "resource-policies.table.headers.title.for.bundle": "બંડલ માટેની નીતિઓ", + // "resource-policies.table.headers.title.for.item": "Policies for Item", "resource-policies.table.headers.title.for.item": "આઇટમ માટેની નીતિઓ", + // "resource-policies.table.headers.title.for.community": "Policies for Community", "resource-policies.table.headers.title.for.community": "સમુદાય માટેની નીતિઓ", + // "resource-policies.table.headers.title.for.collection": "Policies for Collection", "resource-policies.table.headers.title.for.collection": "સંગ્રહ માટેની નીતિઓ", + // "root.skip-to-content": "Skip to main content", "root.skip-to-content": "મુખ્ય સામગ્રી પર જાઓ", + // "search.description": "", "search.description": "", + // "search.switch-configuration.title": "Show", "search.switch-configuration.title": "બતાવો", + // "search.title": "Search", "search.title": "શોધ", + // "search.breadcrumbs": "Search", "search.breadcrumbs": "શોધ", + // "search.search-form.placeholder": "Search the repository ...", "search.search-form.placeholder": "રિપોઝિટરીમાં શોધો ...", + // "search.filters.remove": "Remove filter of type {{ type }} with value {{ value }}", "search.filters.remove": "પ્રકાર {{ type }} સાથેનું મૂલ્ય {{ value }} દૂર કરો", + // "search.filters.applied.f.title": "Title", "search.filters.applied.f.title": "શીર્ષક", + // "search.filters.applied.f.author": "Author", "search.filters.applied.f.author": "લેખક", + // "search.filters.applied.f.dateIssued.max": "End date", "search.filters.applied.f.dateIssued.max": "અંતિમ તારીખ", + // "search.filters.applied.f.dateIssued.min": "Start date", "search.filters.applied.f.dateIssued.min": "પ્રારંભ તારીખ", + // "search.filters.applied.f.dateSubmitted": "Date submitted", "search.filters.applied.f.dateSubmitted": "સબમિટ તારીખ", + // "search.filters.applied.f.discoverable": "Non-discoverable", "search.filters.applied.f.discoverable": "નોન-ડિસ્કવરેબલ", + // "search.filters.applied.f.entityType": "Item Type", "search.filters.applied.f.entityType": "આઇટમ પ્રકાર", + // "search.filters.applied.f.has_content_in_original_bundle": "Has files", "search.filters.applied.f.has_content_in_original_bundle": "ફાઇલો છે", + // "search.filters.applied.f.original_bundle_filenames": "File name", "search.filters.applied.f.original_bundle_filenames": "ફાઇલ નામ", + // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "ફાઇલ વર્ણન", - + // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", "search.filters.applied.f.has_geospatial_metadata": "ભૌગોલિક સ્થાન છે", + // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "પ્રકાર", + // "search.filters.applied.f.namedresourcetype": "Status", "search.filters.applied.f.namedresourcetype": "સ્થિતિ", + // "search.filters.applied.f.subject": "Subject", "search.filters.applied.f.subject": "વિષય", + // "search.filters.applied.f.submitter": "Submitter", "search.filters.applied.f.submitter": "સબમિટર", + // "search.filters.applied.f.jobTitle": "Job Title", "search.filters.applied.f.jobTitle": "નોકરીનું શીર્ષક", + // "search.filters.applied.f.birthDate.max": "End birth date", "search.filters.applied.f.birthDate.max": "અંતિમ જન્મ તારીખ", + // "search.filters.applied.f.birthDate.min": "Start birth date", "search.filters.applied.f.birthDate.min": "પ્રારંભ જન્મ તારીખ", + // "search.filters.applied.f.supervisedBy": "Supervised by", "search.filters.applied.f.supervisedBy": "સુપરવિઝન દ્વારા", + // "search.filters.applied.f.withdrawn": "Withdrawn", "search.filters.applied.f.withdrawn": "પાછું ખેંચાયેલ", + // "search.filters.applied.operator.equals": "", "search.filters.applied.operator.equals": "", + // "search.filters.applied.operator.notequals": " not equals", "search.filters.applied.operator.notequals": " સમાન નથી", + // "search.filters.applied.operator.authority": "", "search.filters.applied.operator.authority": "", + // "search.filters.applied.operator.notauthority": " not authority", "search.filters.applied.operator.notauthority": " અધિકૃત નથી", + // "search.filters.applied.operator.contains": " contains", "search.filters.applied.operator.contains": " સમાવે છે", + // "search.filters.applied.operator.notcontains": " not contains", "search.filters.applied.operator.notcontains": " સમાવે નથી", + // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", + // "search.filters.applied.f.point": "Coordinates", "search.filters.applied.f.point": "સ્થાનાંક", + // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "શીર્ષક", + // "search.filters.filter.title.placeholder": "Title", "search.filters.filter.title.placeholder": "શીર્ષક", + // "search.filters.filter.title.label": "Search Title", "search.filters.filter.title.label": "શીર્ષક શોધો", + // "search.filters.filter.author.head": "Author", "search.filters.filter.author.head": "લેખક", + // "search.filters.filter.author.placeholder": "Author name", "search.filters.filter.author.placeholder": "લેખકનું નામ", + // "search.filters.filter.author.label": "Search author name", "search.filters.filter.author.label": "લેખકનું નામ શોધો", + // "search.filters.filter.birthDate.head": "Birth Date", "search.filters.filter.birthDate.head": "જન્મ તારીખ", + // "search.filters.filter.birthDate.placeholder": "Birth Date", "search.filters.filter.birthDate.placeholder": "જન્મ તારીખ", + // "search.filters.filter.birthDate.label": "Search birth date", "search.filters.filter.birthDate.label": "જન્મ તારીખ શોધો", + // "search.filters.filter.collapse": "Collapse filter", "search.filters.filter.collapse": "ફિલ્ટર સંકોચો", + // "search.filters.filter.creativeDatePublished.head": "Date Published", "search.filters.filter.creativeDatePublished.head": "પ્રકાશિત તારીખ", + // "search.filters.filter.creativeDatePublished.placeholder": "Date Published", "search.filters.filter.creativeDatePublished.placeholder": "પ્રકાશિત તારીખ", + // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "પ્રકાશિત તારીખ શોધો", + // "search.filters.filter.creativeDatePublished.min.label": "Start", "search.filters.filter.creativeDatePublished.min.label": "પ્રારંભ", + // "search.filters.filter.creativeDatePublished.max.label": "End", "search.filters.filter.creativeDatePublished.max.label": "અંત", + // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "સંપાદક", + // "search.filters.filter.creativeWorkEditor.placeholder": "Editor", "search.filters.filter.creativeWorkEditor.placeholder": "સંપાદક", + // "search.filters.filter.creativeWorkEditor.label": "Search editor", "search.filters.filter.creativeWorkEditor.label": "સંપાદક શોધો", + // "search.filters.filter.creativeWorkKeywords.head": "Subject", "search.filters.filter.creativeWorkKeywords.head": "વિષય", + // "search.filters.filter.creativeWorkKeywords.placeholder": "Subject", "search.filters.filter.creativeWorkKeywords.placeholder": "વિષય", + // "search.filters.filter.creativeWorkKeywords.label": "Search subject", "search.filters.filter.creativeWorkKeywords.label": "વિષય શોધો", + // "search.filters.filter.creativeWorkPublisher.head": "Publisher", "search.filters.filter.creativeWorkPublisher.head": "પ્રકાશક", + // "search.filters.filter.creativeWorkPublisher.placeholder": "Publisher", "search.filters.filter.creativeWorkPublisher.placeholder": "પ્રકાશક", + // "search.filters.filter.creativeWorkPublisher.label": "Search publisher", "search.filters.filter.creativeWorkPublisher.label": "પ્રકાશક શોધો", + // "search.filters.filter.dateIssued.head": "Date", "search.filters.filter.dateIssued.head": "તારીખ", + // "search.filters.filter.dateIssued.max.placeholder": "Maximum Date", "search.filters.filter.dateIssued.max.placeholder": "મહત્તમ તારીખ", + // "search.filters.filter.dateIssued.max.label": "End", "search.filters.filter.dateIssued.max.label": "અંત", + // "search.filters.filter.dateIssued.min.placeholder": "Minimum Date", "search.filters.filter.dateIssued.min.placeholder": "ન્યૂનતમ તારીખ", + // "search.filters.filter.dateIssued.min.label": "Start", "search.filters.filter.dateIssued.min.label": "પ્રારંભ", + // "search.filters.filter.dateSubmitted.head": "Date submitted", "search.filters.filter.dateSubmitted.head": "સબમિટ તારીખ", + // "search.filters.filter.dateSubmitted.placeholder": "Date submitted", "search.filters.filter.dateSubmitted.placeholder": "સબમિટ તારીખ", + // "search.filters.filter.dateSubmitted.label": "Search date submitted", "search.filters.filter.dateSubmitted.label": "સબમિટ તારીખ શોધો", + // "search.filters.filter.discoverable.head": "Non-discoverable", "search.filters.filter.discoverable.head": "નોન-ડિસ્કવરેબલ", + // "search.filters.filter.withdrawn.head": "Withdrawn", "search.filters.filter.withdrawn.head": "પાછું ખેંચાયેલ", + // "search.filters.filter.entityType.head": "Item Type", "search.filters.filter.entityType.head": "આઇટમ પ્રકાર", + // "search.filters.filter.entityType.placeholder": "Item Type", "search.filters.filter.entityType.placeholder": "આઇટમ પ્રકાર", + // "search.filters.filter.entityType.label": "Search item type", "search.filters.filter.entityType.label": "આઇટમ પ્રકાર શોધો", + // "search.filters.filter.expand": "Expand filter", "search.filters.filter.expand": "ફિલ્ટર વિસ્તારો", + // "search.filters.filter.has_content_in_original_bundle.head": "Has files", "search.filters.filter.has_content_in_original_bundle.head": "ફાઇલો છે", + // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "ફાઇલ નામ", + // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", "search.filters.filter.has_geospatial_metadata.head": "ભૌગોલિક સ્થાન છે", + // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "ફાઇલ નામ", + // "search.filters.filter.original_bundle_filenames.label": "Search File name", "search.filters.filter.original_bundle_filenames.label": "ફાઇલ નામ શોધો", + // "search.filters.filter.original_bundle_descriptions.head": "File description", "search.filters.filter.original_bundle_descriptions.head": "ફાઇલ વર્ણન", + // "search.filters.filter.original_bundle_descriptions.placeholder": "File description", "search.filters.filter.original_bundle_descriptions.placeholder": "ફાઇલ વર્ણન", + // "search.filters.filter.original_bundle_descriptions.label": "Search File description", "search.filters.filter.original_bundle_descriptions.label": "ફાઇલ વર્ણન શોધો", + // "search.filters.filter.itemtype.head": "Type", "search.filters.filter.itemtype.head": "પ્રકાર", + // "search.filters.filter.itemtype.placeholder": "Type", "search.filters.filter.itemtype.placeholder": "પ્રકાર", + // "search.filters.filter.itemtype.label": "Search type", "search.filters.filter.itemtype.label": "પ્રકાર શોધો", + // "search.filters.filter.jobTitle.head": "Job Title", "search.filters.filter.jobTitle.head": "નોકરીનું શીર્ષક", + // "search.filters.filter.jobTitle.placeholder": "Job Title", "search.filters.filter.jobTitle.placeholder": "નોકરીનું શીર્ષક", + // "search.filters.filter.jobTitle.label": "Search job title", "search.filters.filter.jobTitle.label": "નોકરીનું શીર્ષક શોધો", + // "search.filters.filter.knowsLanguage.head": "Known language", "search.filters.filter.knowsLanguage.head": "જાણીતી ભાષા", + // "search.filters.filter.knowsLanguage.placeholder": "Known language", "search.filters.filter.knowsLanguage.placeholder": "જાણીતી ભાષા", + // "search.filters.filter.knowsLanguage.label": "Search known language", "search.filters.filter.knowsLanguage.label": "જાણીતી ભાષા શોધો", + // "search.filters.filter.namedresourcetype.head": "Status", "search.filters.filter.namedresourcetype.head": "સ્થિતિ", + // "search.filters.filter.namedresourcetype.placeholder": "Status", "search.filters.filter.namedresourcetype.placeholder": "સ્થિતિ", + // "search.filters.filter.namedresourcetype.label": "Search status", "search.filters.filter.namedresourcetype.label": "સ્થિતિ શોધો", + // "search.filters.filter.objectpeople.head": "People", "search.filters.filter.objectpeople.head": "લોકો", + // "search.filters.filter.objectpeople.placeholder": "People", "search.filters.filter.objectpeople.placeholder": "લોકો", + // "search.filters.filter.objectpeople.label": "Search people", "search.filters.filter.objectpeople.label": "લોકો શોધો", + // "search.filters.filter.organizationAddressCountry.head": "Country", "search.filters.filter.organizationAddressCountry.head": "દેશ", + // "search.filters.filter.organizationAddressCountry.placeholder": "Country", "search.filters.filter.organizationAddressCountry.placeholder": "દેશ", + // "search.filters.filter.organizationAddressCountry.label": "Search country", "search.filters.filter.organizationAddressCountry.label": "દેશ શોધો", + // "search.filters.filter.organizationAddressLocality.head": "City", "search.filters.filter.organizationAddressLocality.head": "શહેર", + // "search.filters.filter.organizationAddressLocality.placeholder": "City", "search.filters.filter.organizationAddressLocality.placeholder": "શહેર", + // "search.filters.filter.organizationAddressLocality.label": "Search city", "search.filters.filter.organizationAddressLocality.label": "શહેર શોધો", + // "search.filters.filter.organizationFoundingDate.head": "Date Founded", "search.filters.filter.organizationFoundingDate.head": "સ્થાપના તારીખ", + // "search.filters.filter.organizationFoundingDate.placeholder": "Date Founded", "search.filters.filter.organizationFoundingDate.placeholder": "સ્થાપના તારીખ", + // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "સ્થાપના તારીખ શોધો", + // "search.filters.filter.organizationFoundingDate.min.label": "Start", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.min.label": "Start", + + // "search.filters.filter.organizationFoundingDate.max.label": "End", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.max.label": "End", + + // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "વિસ્તાર", + // "search.filters.filter.scope.placeholder": "Scope filter", "search.filters.filter.scope.placeholder": "વિસ્તાર ફિલ્ટર", + // "search.filters.filter.scope.label": "Search scope filter", "search.filters.filter.scope.label": "વિસ્તાર ફિલ્ટર શોધો", + // "search.filters.filter.show-less": "Collapse", "search.filters.filter.show-less": "સંકોચો", + // "search.filters.filter.show-more": "Show more", "search.filters.filter.show-more": "વધુ બતાવો", + // "search.filters.filter.subject.head": "Subject", "search.filters.filter.subject.head": "વિષય", + // "search.filters.filter.subject.placeholder": "Subject", "search.filters.filter.subject.placeholder": "વિષય", + // "search.filters.filter.subject.label": "Search subject", "search.filters.filter.subject.label": "વિષય શોધો", + // "search.filters.filter.submitter.head": "Submitter", "search.filters.filter.submitter.head": "સબમિટર", + // "search.filters.filter.submitter.placeholder": "Submitter", "search.filters.filter.submitter.placeholder": "સબમિટર", + // "search.filters.filter.submitter.label": "Search submitter", "search.filters.filter.submitter.label": "સબમિટર શોધો", + // "search.filters.filter.show-tree": "Browse {{ name }} tree", "search.filters.filter.show-tree": "{{ name }} વૃક્ષ બ્રાઉઝ કરો", + // "search.filters.filter.funding.head": "Funding", "search.filters.filter.funding.head": "ફંડિંગ", + // "search.filters.filter.funding.placeholder": "Funding", "search.filters.filter.funding.placeholder": "ફંડિંગ", + // "search.filters.filter.supervisedBy.head": "Supervised By", "search.filters.filter.supervisedBy.head": "સુપરવિઝન દ્વારા", + // "search.filters.filter.supervisedBy.placeholder": "Supervised By", "search.filters.filter.supervisedBy.placeholder": "સુપરવિઝન દ્વારા", + // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "સુપરવિઝન દ્વારા શોધો", + // "search.filters.filter.access_status.head": "Access type", "search.filters.filter.access_status.head": "ઍક્સેસ પ્રકાર", + // "search.filters.filter.access_status.placeholder": "Access type", "search.filters.filter.access_status.placeholder": "ઍક્સેસ પ્રકાર", + // "search.filters.filter.access_status.label": "Search by access type", "search.filters.filter.access_status.label": "ઍક્સેસ પ્રકાર દ્વારા શોધો", + // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "જર્નલ ઇશ્યુ", + // "search.filters.entityType.JournalVolume": "Journal Volume", "search.filters.entityType.JournalVolume": "જર્નલ વોલ્યુમ", + // "search.filters.entityType.OrgUnit": "Organizational Unit", "search.filters.entityType.OrgUnit": "સંસ્થાકીય એકમ", + // "search.filters.entityType.Person": "Person", "search.filters.entityType.Person": "વ્યક્તિ", + // "search.filters.entityType.Project": "Project", "search.filters.entityType.Project": "પ્રોજેક્ટ", + // "search.filters.entityType.Publication": "Publication", "search.filters.entityType.Publication": "પ્રકાશન", + // "search.filters.has_content_in_original_bundle.true": "Yes", "search.filters.has_content_in_original_bundle.true": "હા", + // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "ના", + // "search.filters.has_geospatial_metadata.true": "Yes", "search.filters.has_geospatial_metadata.true": "હા", + // "search.filters.has_geospatial_metadata.false": "No", "search.filters.has_geospatial_metadata.false": "ના", + // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "ના", + // "search.filters.discoverable.false": "Yes", "search.filters.discoverable.false": "હા", + // "search.filters.namedresourcetype.Archived": "Archived", "search.filters.namedresourcetype.Archived": "આર્કાઇવ્ડ", + // "search.filters.namedresourcetype.Validation": "Validation", "search.filters.namedresourcetype.Validation": "માન્યતા", + // "search.filters.namedresourcetype.Waiting for Controller": "Waiting for reviewer", "search.filters.namedresourcetype.Waiting for Controller": "સમીક્ષકની રાહ જોવી", + // "search.filters.namedresourcetype.Workflow": "Workflow", "search.filters.namedresourcetype.Workflow": "વર્કફ્લો", + // "search.filters.namedresourcetype.Workspace": "Workspace", "search.filters.namedresourcetype.Workspace": "વર્કસ્પેસ", + // "search.filters.withdrawn.true": "Yes", "search.filters.withdrawn.true": "હા", + // "search.filters.withdrawn.false": "No", "search.filters.withdrawn.false": "ના", + // "search.filters.head": "Filters", "search.filters.head": "ફિલ્ટર્સ", + // "search.filters.reset": "Reset filters", "search.filters.reset": "ફિલ્ટર્સ રીસેટ કરો", + // "search.filters.search.submit": "Submit", "search.filters.search.submit": "સબમિટ કરો", + // "search.filters.operator.equals.text": "Equals", "search.filters.operator.equals.text": "સમાન છે", + // "search.filters.operator.notequals.text": "Not Equals", "search.filters.operator.notequals.text": "સમાન નથી", + // "search.filters.operator.authority.text": "Authority", "search.filters.operator.authority.text": "અધિકૃત", + // "search.filters.operator.notauthority.text": "Not Authority", "search.filters.operator.notauthority.text": "અધિકૃત નથી", + // "search.filters.operator.contains.text": "Contains", "search.filters.operator.contains.text": "સમાવે છે", + // "search.filters.operator.notcontains.text": "Not Contains", "search.filters.operator.notcontains.text": "સમાવે નથી", + // "search.filters.operator.query.text": "Query", "search.filters.operator.query.text": "ક્વેરી", + // "search.form.search": "Search", "search.form.search": "શોધો", + // "search.form.search_dspace": "All repository", "search.form.search_dspace": "બધા રિપોઝિટરી", + // "search.form.scope.all": "All of DSpace", "search.form.scope.all": "બધા DSpace", + // "search.results.head": "Search Results", "search.results.head": "શોધ પરિણામો", + // "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting", "search.results.no-results": "તમારી શોધે કોઈ પરિણામ આપ્યું નથી. તમે જે શોધી રહ્યા છો તે શોધવામાં મુશ્કેલી છે? પ્રયાસ કરો", + // "search.results.no-results-link": "quotes around it", "search.results.no-results-link": "તેની આસપાસ અવતરણ ચિહ્નો મૂકો", + // "search.results.empty": "Your search returned no results.", "search.results.empty": "તમારી શોધે કોઈ પરિણામ આપ્યું નથી.", + // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", "search.results.geospatial-map.empty": "આ પૃષ્ઠ પર કોઈ ભૌગોલિક સ્થાન સાથેના પરિણામો નથી", + // "search.results.view-result": "View", "search.results.view-result": "જુઓ", + // "search.results.response.500": "An error occurred during query execution, please try again later", "search.results.response.500": "ક્વેરી અમલમાં ભૂલ આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો", + // "default.search.results.head": "Search Results", "default.search.results.head": "શોધ પરિણામો", + // "default-relationships.search.results.head": "Search Results", "default-relationships.search.results.head": "શોધ પરિણામો", + // "search.sidebar.close": "Back to results", "search.sidebar.close": "પરિણામો પર પાછા જાઓ", + // "search.sidebar.filters.title": "Filters", "search.sidebar.filters.title": "ફિલ્ટર્સ", + // "search.sidebar.open": "Search Tools", "search.sidebar.open": "શોધ સાધનો", + // "search.sidebar.results": "results", "search.sidebar.results": "પરિણામો", + // "search.sidebar.settings.rpp": "Results per page", "search.sidebar.settings.rpp": "પ્રતિ પૃષ્ઠ પરિણામો", + // "search.sidebar.settings.sort-by": "Sort By", "search.sidebar.settings.sort-by": "દ્વારા ગોઠવો", + // "search.sidebar.advanced-search.title": "Advanced Search", "search.sidebar.advanced-search.title": "ઉન્નત શોધ", + // "search.sidebar.advanced-search.filter-by": "Filter by", "search.sidebar.advanced-search.filter-by": "દ્વારા ફિલ્ટર કરો", + // "search.sidebar.advanced-search.filters": "Filters", "search.sidebar.advanced-search.filters": "ફિલ્ટર્સ", + // "search.sidebar.advanced-search.operators": "Operators", "search.sidebar.advanced-search.operators": "ઑપરેટર્સ", + // "search.sidebar.advanced-search.add": "Add", "search.sidebar.advanced-search.add": "ઉમેરો", + // "search.sidebar.settings.title": "Settings", "search.sidebar.settings.title": "સેટિંગ્સ", + // "search.view-switch.show-detail": "Show detail", "search.view-switch.show-detail": "વિગત બતાવો", + // "search.view-switch.show-grid": "Show as grid", "search.view-switch.show-grid": "ગ્રિડ તરીકે બતાવો", + // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "યાદી તરીકે બતાવો", + // "search.view-switch.show-geospatialMap": "Show as map", "search.view-switch.show-geospatialMap": "નકશા તરીકે બતાવો", + // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "આઇટમ પસંદ ન કરો", + // "selectable-list-item-control.select": "Select item", "selectable-list-item-control.select": "આઇટમ પસંદ કરો", + // "sorting.ASC": "Ascending", "sorting.ASC": "આરોહી", + // "sorting.DESC": "Descending", "sorting.DESC": "અવરોહી", + // "sorting.dc.title.ASC": "Title Ascending", "sorting.dc.title.ASC": "શીર્ષક આરોહી", + // "sorting.dc.title.DESC": "Title Descending", "sorting.dc.title.DESC": "શીર્ષક અવરોહી", + // "sorting.score.ASC": "Least Relevant", "sorting.score.ASC": "ઓછું સંબંધિત", + // "sorting.score.DESC": "Most Relevant", "sorting.score.DESC": "વધુ સંબંધિત", + // "sorting.dc.date.issued.ASC": "Date Issued Ascending", "sorting.dc.date.issued.ASC": "તારીખ આરોહી જારી", + // "sorting.dc.date.issued.DESC": "Date Issued Descending", "sorting.dc.date.issued.DESC": "તારીખ અવરોહી જારી", + // "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending", "sorting.dc.date.accessioned.ASC": "ઍક્સેશન તારીખ આરોહી", + // "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending", "sorting.dc.date.accessioned.DESC": "ઍક્સેશન તારીખ અવરોહી", + // "sorting.lastModified.ASC": "Last modified Ascending", "sorting.lastModified.ASC": "છેલ્લે ફેરફાર આરોહી", + // "sorting.lastModified.DESC": "Last modified Descending", "sorting.lastModified.DESC": "છેલ્લે ફેરફાર અવરોહી", + // "sorting.person.familyName.ASC": "Surname Ascending", "sorting.person.familyName.ASC": "અટક આરોહી", + // "sorting.person.familyName.DESC": "Surname Descending", "sorting.person.familyName.DESC": "અટક અવરોહી", + // "sorting.person.givenName.ASC": "Name Ascending", "sorting.person.givenName.ASC": "નામ આરોહી", + // "sorting.person.givenName.DESC": "Name Descending", "sorting.person.givenName.DESC": "નામ અવરોહી", + // "sorting.person.birthDate.ASC": "Birth Date Ascending", "sorting.person.birthDate.ASC": "જન્મ તારીખ આરોહી", + // "sorting.person.birthDate.DESC": "Birth Date Descending", "sorting.person.birthDate.DESC": "જન્મ તારીખ અવરોહી", + // "statistics.title": "Statistics", "statistics.title": "આંકડા", + // "statistics.header": "Statistics for {{ scope }}", "statistics.header": "{{ scope }} માટેના આંકડા", + // "statistics.breadcrumbs": "Statistics", "statistics.breadcrumbs": "આંકડા", + // "statistics.page.no-data": "No data available", "statistics.page.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", + // "statistics.table.no-data": "No data available", "statistics.table.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", + // "statistics.table.title.TotalVisits": "Total visits", "statistics.table.title.TotalVisits": "કુલ મુલાકાતો", + // "statistics.table.title.TotalVisitsPerMonth": "Total visits per month", "statistics.table.title.TotalVisitsPerMonth": "પ્રતિ મહિનો કુલ મુલાકાતો", + // "statistics.table.title.TotalDownloads": "File Visits", "statistics.table.title.TotalDownloads": "ફાઇલ મુલાકાતો", + // "statistics.table.title.TopCountries": "Top country views", "statistics.table.title.TopCountries": "ટોપ દેશ દૃશ્યો", + // "statistics.table.title.TopCities": "Top city views", "statistics.table.title.TopCities": "ટોપ શહેર દૃશ્યો", + // "statistics.table.header.views": "Views", "statistics.table.header.views": "દૃશ્યો", + // "statistics.table.no-name": "(object name could not be loaded)", "statistics.table.no-name": "(વસ્તુનું નામ લોડ કરી શકાયું નથી)", + // "submission.edit.breadcrumbs": "Edit Submission", "submission.edit.breadcrumbs": "સબમિશન સંપાદિત કરો", + // "submission.edit.title": "Edit Submission", "submission.edit.title": "સબમિશન સંપાદિત કરો", + // "submission.general.cancel": "Cancel", "submission.general.cancel": "રદ કરો", + // "submission.general.cannot_submit": "You don't have permission to make a new submission.", "submission.general.cannot_submit": "તમને નવું સબમિશન કરવાની પરવાનગી નથી.", + // "submission.general.deposit": "Deposit", "submission.general.deposit": "ડિપોઝિટ", + // "submission.general.discard.confirm.cancel": "Cancel", "submission.general.discard.confirm.cancel": "રદ કરો", + // "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?", "submission.general.discard.confirm.info": "આ ક્રિયા પાછી ફરી શકશે નહીં. શું તમે ખાતરી કરો છો?", + // "submission.general.discard.confirm.submit": "Yes, I'm sure", "submission.general.discard.confirm.submit": "હા, મને ખાતરી છે", + // "submission.general.discard.confirm.title": "Discard submission", "submission.general.discard.confirm.title": "સબમિશન રદ કરો", + // "submission.general.discard.submit": "Discard", "submission.general.discard.submit": "રદ કરો", + // "submission.general.back.submit": "Back", "submission.general.back.submit": "પાછા", + // "submission.general.info.saved": "Saved", "submission.general.info.saved": "સાચવ્યું", + // "submission.general.info.pending-changes": "Unsaved changes", "submission.general.info.pending-changes": "સાચવેલા ફેરફારો", + // "submission.general.save": "Save", "submission.general.save": "સેવ", + // "submission.general.save-later": "Save for later", "submission.general.save-later": "પછી માટે સેવ", + // "submission.import-external.page.title": "Import metadata from an external source", "submission.import-external.page.title": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", + // "submission.import-external.title": "Import metadata from an external source", "submission.import-external.title": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", + // "submission.import-external.title.Journal": "Import a journal from an external source", "submission.import-external.title.Journal": "બાહ્ય સ્ત્રોતમાંથી જર્નલ આયાત કરો", + // "submission.import-external.title.JournalIssue": "Import a journal issue from an external source", "submission.import-external.title.JournalIssue": "બાહ્ય સ્ત્રોતમાંથી જર્નલ ઇશ્યુ આયાત કરો", + // "submission.import-external.title.JournalVolume": "Import a journal volume from an external source", "submission.import-external.title.JournalVolume": "બાહ્ય સ્ત્રોતમાંથી જર્નલ વોલ્યુમ આયાત કરો", + // "submission.import-external.title.OrgUnit": "Import a publisher from an external source", "submission.import-external.title.OrgUnit": "બાહ્ય સ્ત્રોતમાંથી પ્રકાશક આયાત કરો", + // "submission.import-external.title.Person": "Import a person from an external source", "submission.import-external.title.Person": "બાહ્ય સ્ત્રોતમાંથી વ્યક્તિ આયાત કરો", + // "submission.import-external.title.Project": "Import a project from an external source", "submission.import-external.title.Project": "બાહ્ય સ્ત્રોતમાંથી પ્રોજેક્ટ આયાત કરો", + // "submission.import-external.title.Publication": "Import a publication from an external source", "submission.import-external.title.Publication": "બાહ્ય સ્ત્રોતમાંથી પ્રકાશન આયાત કરો", + // "submission.import-external.title.none": "Import metadata from an external source", "submission.import-external.title.none": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", + // "submission.import-external.page.hint": "Enter a query above to find items from the web to import in to DSpace.", "submission.import-external.page.hint": "DSpace માં આયાત કરવા માટે વેબમાંથી વસ્તુઓ શોધવા માટે ઉપર ક્વેરી દાખલ કરો.", + // "submission.import-external.back-to-my-dspace": "Back to MyDSpace", "submission.import-external.back-to-my-dspace": "મારા DSpace પર પાછા જાઓ", + // "submission.import-external.search.placeholder": "Search the external source", "submission.import-external.search.placeholder": "બાહ્ય સ્ત્રોત શોધો", + // "submission.import-external.search.button": "Search", "submission.import-external.search.button": "શોધો", + // "submission.import-external.search.button.hint": "Write some words to search", "submission.import-external.search.button.hint": "શોધવા માટે કેટલાક શબ્દો લખો", + // "submission.import-external.search.source.hint": "Pick an external source", "submission.import-external.search.source.hint": "બાહ્ય સ્ત્રોત પસંદ કરો", + // "submission.import-external.source.arxiv": "arXiv", "submission.import-external.source.arxiv": "arXiv", + // "submission.import-external.source.ads": "NASA/ADS", "submission.import-external.source.ads": "NASA/ADS", + // "submission.import-external.source.cinii": "CiNii", "submission.import-external.source.cinii": "CiNii", + // "submission.import-external.source.crossref": "Crossref", "submission.import-external.source.crossref": "Crossref", + // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", + // "submission.import-external.source.dataciteProject": "DataCite", "submission.import-external.source.dataciteProject": "DataCite", + // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", + // "submission.import-external.source.scielo": "SciELO", "submission.import-external.source.scielo": "SciELO", + // "submission.import-external.source.scopus": "Scopus", "submission.import-external.source.scopus": "Scopus", + // "submission.import-external.source.vufind": "VuFind", "submission.import-external.source.vufind": "VuFind", + // "submission.import-external.source.wos": "Web Of Science", "submission.import-external.source.wos": "Web Of Science", + // "submission.import-external.source.orcidWorks": "ORCID", "submission.import-external.source.orcidWorks": "ORCID", + // "submission.import-external.source.epo": "European Patent Office (EPO)", "submission.import-external.source.epo": "European Patent Office (EPO)", + // "submission.import-external.source.loading": "Loading ...", "submission.import-external.source.loading": "લોડ થઈ રહ્યું છે ...", + // "submission.import-external.source.sherpaJournal": "SHERPA Journals", "submission.import-external.source.sherpaJournal": "SHERPA Journals", + // "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", "submission.import-external.source.sherpaJournalIssn": "ISSN દ્વારા SHERPA Journals", + // "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", + // "submission.import-external.source.openaire": "OpenAIRE Search by Authors", "submission.import-external.source.openaire": "OpenAIRE Authors દ્વારા શોધો", + // "submission.import-external.source.openaireTitle": "OpenAIRE Search by Title", "submission.import-external.source.openaireTitle": "OpenAIRE Title દ્વારા શોધો", + // "submission.import-external.source.openaireFunding": "OpenAIRE Search by Funder", "submission.import-external.source.openaireFunding": "OpenAIRE Funding દ્વારા શોધો", + // "submission.import-external.source.orcid": "ORCID", "submission.import-external.source.orcid": "ORCID", + // "submission.import-external.source.pubmed": "Pubmed", "submission.import-external.source.pubmed": "Pubmed", + // "submission.import-external.source.pubmedeu": "Pubmed Europe", "submission.import-external.source.pubmedeu": "Pubmed Europe", + // "submission.import-external.source.lcname": "Library of Congress Names", "submission.import-external.source.lcname": "Library of Congress Names", + // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Research Organization Registry (ROR)", + // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", "submission.import-external.source.openalexPublication": "OpenAlex Title દ્વારા શોધો", + // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Author ID દ્વારા શોધો", + // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", "submission.import-external.source.openalexPublicationByDOI": "OpenAlex DOI દ્વારા શોધો", + // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", "submission.import-external.source.openalexPerson": "OpenAlex નામ દ્વારા શોધો", + // "submission.import-external.source.openalexJournal": "OpenAlex Journals", "submission.import-external.source.openalexJournal": "OpenAlex Journals", + // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", + // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", + // "submission.import-external.source.openalexFunder": "OpenAlex Funders", "submission.import-external.source.openalexFunder": "OpenAlex Funders", + // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "વસ્તુ પૂર્વાવલોકન", + // "submission.import-external.preview.title.Publication": "Publication Preview", "submission.import-external.preview.title.Publication": "પ્રકાશન પૂર્વાવલોકન", + // "submission.import-external.preview.title.none": "Item Preview", "submission.import-external.preview.title.none": "વસ્તુ પૂર્વાવલોકન", + // "submission.import-external.preview.title.Journal": "Journal Preview", "submission.import-external.preview.title.Journal": "જર્નલ પૂર્વાવલોકન", + // "submission.import-external.preview.title.OrgUnit": "Organizational Unit Preview", "submission.import-external.preview.title.OrgUnit": "સંસ્થાકીય એકમ પૂર્વાવલોકન", + // "submission.import-external.preview.title.Person": "Person Preview", "submission.import-external.preview.title.Person": "વ્યક્તિ પૂર્વાવલોકન", + // "submission.import-external.preview.title.Project": "Project Preview", "submission.import-external.preview.title.Project": "પ્રોજેક્ટ પૂર્વાવલોકન", + // "submission.import-external.preview.subtitle": "The metadata below was imported from an external source. It will be pre-filled when you start the submission.", "submission.import-external.preview.subtitle": "નીચેની મેટાડેટા બાહ્ય સ્ત્રોતમાંથી આયાત કરવામાં આવી હતી. તમે સબમિશન શરૂ કરશો ત્યારે તે પૂર્વ-ભરવામાં આવશે.", + // "submission.import-external.preview.button.import": "Start submission", "submission.import-external.preview.button.import": "સબમિશન શરૂ કરો", + // "submission.import-external.preview.error.import.title": "Submission error", "submission.import-external.preview.error.import.title": "સબમિશન ભૂલ", + // "submission.import-external.preview.error.import.body": "An error occurs during the external source entry import process.", "submission.import-external.preview.error.import.body": "બાહ્ય સ્ત્રોત એન્ટ્રી આયાત પ્રક્રિયા દરમિયાન ભૂલ થાય છે.", + // "submission.sections.describe.relationship-lookup.close": "Close", "submission.sections.describe.relationship-lookup.close": "બંધ કરો", + // "submission.sections.describe.relationship-lookup.external-source.added": "Successfully added local entry to the selection", "submission.sections.describe.relationship-lookup.external-source.added": "સ્થાનિક એન્ટ્રી પસંદગીમાં સફળતાપૂર્વક ઉમેરવામાં આવી", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Import remote author", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "દૂરના લેખક આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Import remote journal", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "દૂરના જર્નલ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Import remote journal issue", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "દૂરના જર્નલ ઇશ્યુ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Import remote journal volume", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "દૂરના જર્નલ વોલ્યુમ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Import remote item", "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "દૂરની વસ્તુ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Import remote event", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "દૂરના ઇવેન્ટ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Import remote product", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "દૂરના પ્રોડક્ટ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Import remote equipment", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "દૂરના સાધન આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "Import remote organizational unit", "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "દૂરના સંસ્થાકીય એકમ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "Import remote fund", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "દૂરના ફંડ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Import remote person", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "દૂરના વ્યક્તિ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Import remote patent", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "દૂરના પેટન્ટ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Import remote project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "દૂરના પ્રોજેક્ટ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Import remote publication", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "દૂરના પ્રકાશન આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "નવી એન્ટિટી ઉમેરવામાં આવી!", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Import Remote Author", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "દૂરના લેખક આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Successfully added local author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "સફળતાપૂર્વક સ્થાનિક લેખક પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Successfully imported and added external author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "સફળતાપૂર્વક બાહ્ય લેખક આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Authority", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "અધિકાર", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Import as a new local authority entry", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "નવા સ્થાનિક અધિકાર એન્ટ્રી તરીકે આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Cancel", "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "રદ કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Select a collection to import new entries to", "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "નવી એન્ટ્રીઓ આયાત કરવા માટે કલેક્શન પસંદ કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "Entities", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "એન્ટિટીઓ", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Import as a new local entity", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "નવા સ્થાનિક એન્ટિટી તરીકે આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC Name માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE Title માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE Funding માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa Journal માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Importing from Sherpa Publisher", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa Publisher માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Importing from PubMed", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Importing from arXiv", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "Import from ROR", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR માંથી આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Import", "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Import Remote Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "દૂરના જર્નલ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Successfully added local journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Successfully imported and added external journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Import Remote Journal Issue", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "દૂરના જર્નલ ઇશ્યુ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Successfully added local journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ ઇશ્યુ પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Successfully imported and added external journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ ઇશ્યુ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Import Remote Journal Volume", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "દૂરના જર્નલ વોલ્યુમ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Successfully added local journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ વોલ્યુમ પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Successfully imported and added external journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ વોલ્યુમ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "સ્થાનિક મેચ પસંદ કરો:", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "Import Remote Organization", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "દૂરના સંસ્થાકીય એકમ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "Successfully added local organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "સફળતાપૂર્વક સ્થાનિક સંસ્થાકીય એકમ પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "Successfully imported and added external organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "સફળતાપૂર્વક બાહ્ય સંસ્થાકીય એકમ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Deselect all", "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "બધા પસંદગીઓ રદ કરો", + // "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Deselect page", "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "પેજ પસંદગીઓ રદ કરો", + // "submission.sections.describe.relationship-lookup.search-tab.loading": "Loading...", "submission.sections.describe.relationship-lookup.search-tab.loading": "લોડ થઈ રહ્યું છે...", + // "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Search query", "submission.sections.describe.relationship-lookup.search-tab.placeholder": "શોધ ક્વેરી", + // "submission.sections.describe.relationship-lookup.search-tab.search": "Go", "submission.sections.describe.relationship-lookup.search-tab.search": "જાઓ", + // "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "શોધો...", + // "submission.sections.describe.relationship-lookup.search-tab.select-all": "Select all", "submission.sections.describe.relationship-lookup.search-tab.select-all": "બધા પસંદ કરો", + // "submission.sections.describe.relationship-lookup.search-tab.select-page": "Select page", "submission.sections.describe.relationship-lookup.search-tab.select-page": "પેજ પસંદ કરો", + // "submission.sections.describe.relationship-lookup.selected": "Selected {{ size }} items", "submission.sections.describe.relationship-lookup.selected": "પસંદ કરેલી {{ size }} વસ્તુઓ", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "સ્થાનિક લેખકો ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "સ્થાનિક જર્નલ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Local Projects ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "સ્થાનિક પ્રોજેક્ટ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Local Publications ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "સ્થાનિક પ્રકાશન ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "સ્થાનિક લેખકો ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Local Organizational Units ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "સ્થાનિક સંસ્થાકીય એકમ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Local Data Packages ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "સ્થાનિક ડેટા પેકેજ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Local Data Files ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "સ્થાનિક ડેટા ફાઇલ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "સ્થાનિક જર્નલ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "સ્થાનિક જર્નલ ઇશ્યુ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "સ્થાનિક જર્નલ ઇશ્યુ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Search by Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Authors ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Search by Title ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Title ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Search by Funder ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Funding ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN દ્વારા Sherpa Journals ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Funding Agencies માટે શોધો", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Search for Funding", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Funding માટે શોધો", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Search for Organizational Units", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "સંસ્થાકીય એકમ માટે શોધો", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "પ્રોજેક્ટના ફંડર", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "Publication of the Author", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "લેખકના પ્રકાશન", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "OrgUnit of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "પ્રોજેક્ટના સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "પ્રોજેક્ટના ફંડર", + // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + + // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "શોધો...", + // "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Current Selection ({{ count }})", "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "વર્તમાન પસંદગી ({{ count }})", + // "submission.sections.describe.relationship-lookup.title.Journal": "Journal", "submission.sections.describe.relationship-lookup.title.Journal": "જર્નલ", + // "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Journal Issues", "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "જર્નલ ઇશ્યુ", + // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "જર્નલ ઇશ્યુ", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.title.JournalVolume": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.JournalVolume": "જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "Journals", "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "જર્નલ", + // "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Authors", "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "લેખકો", + // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Funding Agency", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "ફંડિંગ એજન્સી", + // "submission.sections.describe.relationship-lookup.title.Project": "Projects", "submission.sections.describe.relationship-lookup.title.Project": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.title.Publication": "Publications", "submission.sections.describe.relationship-lookup.title.Publication": "પ્રકાશન", + // "submission.sections.describe.relationship-lookup.title.Person": "Authors", "submission.sections.describe.relationship-lookup.title.Person": "લેખકો", + // "submission.sections.describe.relationship-lookup.title.OrgUnit": "Organizational Units", "submission.sections.describe.relationship-lookup.title.OrgUnit": "સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.title.DataPackage": "Data Packages", "submission.sections.describe.relationship-lookup.title.DataPackage": "ડેટા પેકેજ", + // "submission.sections.describe.relationship-lookup.title.DataFile": "Data Files", "submission.sections.describe.relationship-lookup.title.DataFile": "ડેટા ફાઇલ", + // "submission.sections.describe.relationship-lookup.title.Funding Agency": "Funding Agency", "submission.sections.describe.relationship-lookup.title.Funding Agency": "ફંડિંગ એજન્સી", + // "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Funding", "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "ફંડિંગ", + // "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Parent Organizational Unit", "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "પેરેન્ટ સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "Publication", "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "પ્રકાશન", + // "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "OrgUnit", "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Toggle dropdown", "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ડ્રોપડાઉન ટૉગલ કરો", + // "submission.sections.describe.relationship-lookup.selection-tab.settings": "Settings", "submission.sections.describe.relationship-lookup.selection-tab.settings": "સેટિંગ્સ", + // "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Your selection is currently empty.", "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "તમારી પસંદગી હાલમાં ખાલી છે.", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "પસંદ કરેલા લેખકો", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "પસંદ કરેલા જર્નલ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "પસંદ કરેલા જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "પસંદ કરેલા જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Selected Projects", "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "પસંદ કરેલા પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Selected Publications", "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "પસંદ કરેલા પ્રકાશન", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "પસંદ કરેલા લેખકો", + // "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Selected Organizational Units", "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "પસંદ કરેલા સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Selected Data Packages", "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "પસંદ કરેલા ડેટા પેકેજ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Selected Data Files", "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "પસંદ કરેલી ડેટા ફાઇલ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "પસંદ કરેલા જર્નલ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "પસંદ કરેલા ઇશ્યુ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "પસંદ કરેલા જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Selected Funding Agency", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "પસંદ કરેલી ફંડિંગ એજન્સી", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Selected Funding", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "પસંદ કરેલા ફંડિંગ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "પસંદ કરેલા ઇશ્યુ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Selected Organizational Unit", "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "પસંદ કરેલા સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.", "submission.sections.describe.relationship-lookup.name-variant.notification.content": "શું તમે આ નામ વેરિઅન્ટને ભવિષ્યના સબમિશન માટે ફરીથી ઉપયોગ કરવા માટે સાચવવા માંગો છો? જો તમે નહીં કરો તો તમે તેને આ સબમિશન માટે જ ઉપયોગ કરી શકો છો.", + // "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant", "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "નવું નામ વેરિઅન્ટ સાચવો", + // "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Use only for this submission", "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "આ સબમિશન માટે જ ઉપયોગ કરો", + // "submission.sections.ccLicense.type": "License Type", "submission.sections.ccLicense.type": "લાઇસન્સ પ્રકાર", + // "submission.sections.ccLicense.select": "Select a license type…", "submission.sections.ccLicense.select": "લાઇસન્સ પ્રકાર પસંદ કરો…", + // "submission.sections.ccLicense.change": "Change your license type…", "submission.sections.ccLicense.change": "તમારો લાઇસન્સ પ્રકાર બદલો…", + // "submission.sections.ccLicense.none": "No licenses available", "submission.sections.ccLicense.none": "કોઈ લાઇસન્સ ઉપલબ્ધ નથી", + // "submission.sections.ccLicense.option.select": "Select an option…", "submission.sections.ccLicense.option.select": "એક વિકલ્પ પસંદ કરો…", - "submission.sections.ccLicense.link": "તમે નીચેના લાઇસન્સ પસંદ કર્યું છે:", + // "submission.sections.ccLicense.link": "You’ve selected the following license:", + // TODO New key - Add a translation + "submission.sections.ccLicense.link": "You’ve selected the following license:", + // "submission.sections.ccLicense.confirmation": "I grant the license above", "submission.sections.ccLicense.confirmation": "હું ઉપરના લાઇસન્સને મંજૂરી આપું છું", + // "submission.sections.general.add-more": "Add more", "submission.sections.general.add-more": "વધુ ઉમેરો", + // "submission.sections.general.cannot_deposit": "Deposit cannot be completed due to errors in the form.
Please fill out all required fields to complete the deposit.", "submission.sections.general.cannot_deposit": "ફોર્મમાં ભૂલોને કારણે ડિપોઝિટ પૂર્ણ કરી શકાતી નથી.
ડિપોઝિટ પૂર્ણ કરવા માટે કૃપા કરીને બધી જરૂરી ફીલ્ડ્સ ભરો.", + // "submission.sections.general.collection": "Collection", "submission.sections.general.collection": "સંગ્રહ", + // "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.", "submission.sections.general.deposit_error_notice": "વસ્તુ સબમિટ કરતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", + // "submission.sections.general.deposit_success_notice": "Submission deposited successfully.", "submission.sections.general.deposit_success_notice": "સબમિશન સફળતાપૂર્વક ડિપોઝિટ થયું.", + // "submission.sections.general.discard_error_notice": "There was an issue when discarding the item, please try again later.", "submission.sections.general.discard_error_notice": "વસ્તુ રદ કરતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", + // "submission.sections.general.discard_success_notice": "Submission discarded successfully.", "submission.sections.general.discard_success_notice": "સબમિશન સફળતાપૂર્વક રદ થયું.", + // "submission.sections.general.metadata-extracted": "New metadata have been extracted and added to the {{sectionId}} section.", "submission.sections.general.metadata-extracted": "નવી મેટાડેટા કાઢી અને {{sectionId}} વિભાગમાં ઉમેરવામાં આવી છે.", + // "submission.sections.general.metadata-extracted-new-section": "New {{sectionId}} section has been added to submission.", "submission.sections.general.metadata-extracted-new-section": "નવી {{sectionId}} વિભાગ સબમિશનમાં ઉમેરવામાં આવી છે.", + // "submission.sections.general.no-collection": "No collection found", "submission.sections.general.no-collection": "કોઈ સંગ્રહ મળ્યો નથી", + // "submission.sections.general.no-entity": "No entity types found", "submission.sections.general.no-entity": "કોઈ એન્ટિટી પ્રકારો મળ્યા નથી", + // "submission.sections.general.no-sections": "No options available", "submission.sections.general.no-sections": "કોઈ વિકલ્પો ઉપલબ્ધ નથી", + // "submission.sections.general.save_error_notice": "There was an issue when saving the item, please try again later.", "submission.sections.general.save_error_notice": "વસ્તુ સાચવતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", + // "submission.sections.general.save_success_notice": "Submission saved successfully.", "submission.sections.general.save_success_notice": "સબમિશન સફળતાપૂર્વક સાચવાયું.", + // "submission.sections.general.search-collection": "Search for a collection", "submission.sections.general.search-collection": "સંગ્રહ માટે શોધો", + // "submission.sections.general.sections_not_valid": "There are incomplete sections.", "submission.sections.general.sections_not_valid": "અપૂર્ણ વિભાગો છે.", - "submission.sections.identifiers.info": "તમારી વસ્તુ માટે નીચેના ઓળખકર્તાઓ બનાવવામાં આવશે:", + // "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + // TODO New key - Add a translation + "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + // "submission.sections.identifiers.no_handle": "No handles have been minted for this item.", "submission.sections.identifiers.no_handle": "આ વસ્તુ માટે કોઈ હેન્ડલ મિન્ટ કરવામાં આવ્યા નથી.", + // "submission.sections.identifiers.no_doi": "No DOIs have been minted for this item.", "submission.sections.identifiers.no_doi": "આ વસ્તુ માટે કોઈ DOI મિન્ટ કરવામાં આવ્યા નથી.", - "submission.sections.identifiers.handle_label": "હેન્ડલ: ", + // "submission.sections.identifiers.handle_label": "Handle: ", + // TODO New key - Add a translation + "submission.sections.identifiers.handle_label": "Handle: ", + // "submission.sections.identifiers.doi_label": "DOI: ", "submission.sections.identifiers.doi_label": "DOI: ", - "submission.sections.identifiers.otherIdentifiers_label": "અન્ય ઓળખકર્તાઓ: ", + // "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + // TODO New key - Add a translation + "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + // "submission.sections.submit.progressbar.accessCondition": "Item access conditions", "submission.sections.submit.progressbar.accessCondition": "વસ્તુ ઍક્સેસ શરતો", + // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "ક્રિએટિવ કોમન્સ લાઇસન્સ", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "રીસાયકલ", + // "submission.sections.submit.progressbar.describe.stepcustom": "Describe", "submission.sections.submit.progressbar.describe.stepcustom": "વર્ણન કરો", + // "submission.sections.submit.progressbar.describe.stepone": "Describe", "submission.sections.submit.progressbar.describe.stepone": "વર્ણન કરો", + // "submission.sections.submit.progressbar.describe.steptwo": "Describe", "submission.sections.submit.progressbar.describe.steptwo": "વર્ણન કરો", + // "submission.sections.submit.progressbar.duplicates": "Potential duplicates", "submission.sections.submit.progressbar.duplicates": "સંભવિત નકલો", + // "submission.sections.submit.progressbar.identifiers": "Identifiers", "submission.sections.submit.progressbar.identifiers": "ઓળખકર્તાઓ", + // "submission.sections.submit.progressbar.license": "Deposit license", "submission.sections.submit.progressbar.license": "ડિપોઝિટ લાઇસન્સ", + // "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies", "submission.sections.submit.progressbar.sherpapolicy": "શેરપા નીતિઓ", + // "submission.sections.submit.progressbar.upload": "Upload files", "submission.sections.submit.progressbar.upload": "ફાઇલો અપલોડ કરો", + // "submission.sections.submit.progressbar.sherpaPolicies": "Publisher open access policy information", "submission.sections.submit.progressbar.sherpaPolicies": "પ્રકાશક ઓપન ઍક્સેસ નીતિ માહિતી", + // "submission.sections.sherpa-policy.title-empty": "No publisher policy information available. If your work has an associated ISSN, please enter it above to see any related publisher open access policies.", "submission.sections.sherpa-policy.title-empty": "કોઈ પ્રકાશક નીતિ માહિતી ઉપલબ્ધ નથી. જો તમારા કાર્ય સાથે સંકળાયેલ ISSN છે, તો કૃપા કરીને ઉપર દાખલ કરો જેથી સંબંધિત પ્રકાશક ઓપન ઍક્સેસ નીતિઓ જોઈ શકાય.", + // "submission.sections.status.errors.title": "Errors", "submission.sections.status.errors.title": "ભૂલો", + // "submission.sections.status.valid.title": "Valid", "submission.sections.status.valid.title": "માન્ય", + // "submission.sections.status.warnings.title": "Warnings", "submission.sections.status.warnings.title": "ચેતવણીઓ", + // "submission.sections.status.errors.aria": "has errors", "submission.sections.status.errors.aria": "ભૂલો છે", + // "submission.sections.status.valid.aria": "is valid", "submission.sections.status.valid.aria": "માન્ય છે", + // "submission.sections.status.warnings.aria": "has warnings", "submission.sections.status.warnings.aria": "ચેતવણીઓ છે", + // "submission.sections.status.info.title": "Additional Information", "submission.sections.status.info.title": "વધુ માહિતી", + // "submission.sections.status.info.aria": "Additional Information", "submission.sections.status.info.aria": "વધુ માહિતી", + // "submission.sections.toggle.open": "Open section", "submission.sections.toggle.open": "વિભાગ ખોલો", + // "submission.sections.toggle.close": "Close section", "submission.sections.toggle.close": "વિભાગ બંધ કરો", + // "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section", "submission.sections.toggle.aria.open": "{{sectionHeader}} વિભાગ વિસ્તૃત કરો", + // "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section", "submission.sections.toggle.aria.close": "{{sectionHeader}} વિભાગ સંકોચો", + // "submission.sections.upload.primary.make": "Make {{fileName}} the primary bitstream", "submission.sections.upload.primary.make": "{{fileName}} ને મુખ્ય બિટસ્ટ્રીમ બનાવો", + // "submission.sections.upload.primary.remove": "Remove {{fileName}} as the primary bitstream", "submission.sections.upload.primary.remove": "{{fileName}} ને મુખ્ય બિટસ્ટ્રીમ તરીકે દૂર કરો", + // "submission.sections.upload.delete.confirm.cancel": "Cancel", "submission.sections.upload.delete.confirm.cancel": "રદ કરો", + // "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?", "submission.sections.upload.delete.confirm.info": "આ કામગીરી પાછી લઈ શકાતી નથી. શું તમે ખાતરી કરો છો?", + // "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure", "submission.sections.upload.delete.confirm.submit": "હા, હું ખાતરી કરું છું", + // "submission.sections.upload.delete.confirm.title": "Delete bitstream", "submission.sections.upload.delete.confirm.title": "બિટસ્ટ્રીમ કાઢી નાખો", + // "submission.sections.upload.delete.submit": "Delete", "submission.sections.upload.delete.submit": "કાઢી નાખો", + // "submission.sections.upload.download.title": "Download bitstream", "submission.sections.upload.download.title": "બિટસ્ટ્રીમ ડાઉનલોડ કરો", + // "submission.sections.upload.drop-message": "Drop files to attach them to the item", "submission.sections.upload.drop-message": "વસ્તુ સાથે જોડવા માટે ફાઇલો છોડો", + // "submission.sections.upload.edit.title": "Edit bitstream", "submission.sections.upload.edit.title": "બિટસ્ટ્રીમ સંપાદિત કરો", + // "submission.sections.upload.form.access-condition-label": "Access condition type", "submission.sections.upload.form.access-condition-label": "ઍક્સેસ શરતો પ્રકાર", + // "submission.sections.upload.form.access-condition-hint": "Select an access condition to apply on the bitstream once the item is deposited", "submission.sections.upload.form.access-condition-hint": "વસ્તુ ડિપોઝિટ થયા પછી બિટસ્ટ્રીમ પર લાગુ કરવા માટે ઍક્સેસ શરતો પસંદ કરો", + // "submission.sections.upload.form.date-required": "Date is required.", "submission.sections.upload.form.date-required": "તારીખ જરૂરી છે.", + // "submission.sections.upload.form.date-required-from": "Grant access from date is required.", "submission.sections.upload.form.date-required-from": "તારીખથી ઍક્સેસ આપો જરૂરી છે.", + // "submission.sections.upload.form.date-required-until": "Grant access until date is required.", "submission.sections.upload.form.date-required-until": "તારીખ સુધી ઍક્સેસ આપો જરૂરી છે.", + // "submission.sections.upload.form.from-label": "Grant access from", "submission.sections.upload.form.from-label": "તારીખથી ઍક્સેસ આપો", + // "submission.sections.upload.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.upload.form.from-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", + // "submission.sections.upload.form.from-placeholder": "From", "submission.sections.upload.form.from-placeholder": "થી", + // "submission.sections.upload.form.group-label": "Group", "submission.sections.upload.form.group-label": "સમૂહ", + // "submission.sections.upload.form.group-required": "Group is required.", "submission.sections.upload.form.group-required": "સમૂહ જરૂરી છે.", + // "submission.sections.upload.form.until-label": "Grant access until", "submission.sections.upload.form.until-label": "તારીખ સુધી ઍક્સેસ આપો", + // "submission.sections.upload.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.upload.form.until-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", + // "submission.sections.upload.form.until-placeholder": "Until", "submission.sections.upload.form.until-placeholder": "સુધી", - "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} સંગ્રહમાં અપલોડ કરેલી ફાઇલો નીચેના સમૂહો અનુસાર ઍક્સેસ કરી શકાશે:", + // "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", + // TODO New key - Add a translation + "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", - "submission.sections.upload.header.policy.default.withlist": "કૃપા કરીને નોંધો કે {{collectionName}} સંગ્રહમાં અપલોડ કરેલી ફાઇલો, એકલ ફાઇલ માટે સ્પષ્ટપણે નક્કી કરેલા સમૂહો ઉપરાંત, નીચેના સમૂહો સાથે ઍક્સેસ કરી શકાશે:", + // "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + // TODO New key - Add a translation + "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + // "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or upload additional files by dragging & dropping them anywhere on the page.", "submission.sections.upload.info": "અહીં તમને વસ્તુમાં હાલની બધી ફાઇલો મળશે. તમે ફાઇલ મેટાડેટા અને ઍક્સેસ શરતોને અપડેટ કરી શકો છો અથવા પેજ પર ક્યાંય પણ ડ્રેગ અને ડ્રોપ કરીને વધારાની ફાઇલો અપલોડ કરી શકો છો.", + // "submission.sections.upload.no-entry": "No", "submission.sections.upload.no-entry": "ના", + // "submission.sections.upload.no-file-uploaded": "No file uploaded yet.", "submission.sections.upload.no-file-uploaded": "હજી સુધી કોઈ ફાઇલ અપલોડ કરવામાં આવી નથી.", + // "submission.sections.upload.save-metadata": "Save metadata", "submission.sections.upload.save-metadata": "મેટાડેટા સાચવો", + // "submission.sections.upload.undo": "Cancel", "submission.sections.upload.undo": "રદ કરો", + // "submission.sections.upload.upload-failed": "Upload failed", "submission.sections.upload.upload-failed": "અપલોડ નિષ્ફળ", + // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "અપલોડ સફળ", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "જ્યારે ચકાસવામાં આવે છે, આ વસ્તુ શોધ/બ્રાઉઝમાં શોધી શકાય તેવી હશે. જ્યારે અનચેક કરવામાં આવે છે, વસ્તુ માત્ર સીધી લિંક દ્વારા ઉપલબ્ધ હશે અને ક્યારેય શોધ/બ્રાઉઝમાં દેખાશે નહીં.", + // "submission.sections.accesses.form.discoverable-label": "Discoverable", "submission.sections.accesses.form.discoverable-label": "શોધી શકાય તેવી", + // "submission.sections.accesses.form.access-condition-label": "Access condition type", "submission.sections.accesses.form.access-condition-label": "ઍક્સેસ શરતો પ્રકાર", + // "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited", "submission.sections.accesses.form.access-condition-hint": "વસ્તુ ડિપોઝિટ થયા પછી વસ્તુ પર લાગુ કરવા માટે ઍક્સેસ શરતો પસંદ કરો", + // "submission.sections.accesses.form.date-required": "Date is required.", "submission.sections.accesses.form.date-required": "તારીખ જરૂરી છે.", + // "submission.sections.accesses.form.date-required-from": "Grant access from date is required.", "submission.sections.accesses.form.date-required-from": "તારીખથી ઍક્સેસ આપો જરૂરી છે.", + // "submission.sections.accesses.form.date-required-until": "Grant access until date is required.", "submission.sections.accesses.form.date-required-until": "તારીખ સુધી ઍક્સેસ આપો જરૂરી છે.", + // "submission.sections.accesses.form.from-label": "Grant access from", "submission.sections.accesses.form.from-label": "તારીખથી ઍક્સેસ આપો", + // "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.accesses.form.from-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", + // "submission.sections.accesses.form.from-placeholder": "From", "submission.sections.accesses.form.from-placeholder": "થી", + // "submission.sections.accesses.form.group-label": "Group", "submission.sections.accesses.form.group-label": "સમૂહ", + // "submission.sections.accesses.form.group-required": "Group is required.", "submission.sections.accesses.form.group-required": "સમૂહ જરૂરી છે.", + // "submission.sections.accesses.form.until-label": "Grant access until", "submission.sections.accesses.form.until-label": "તારીખ સુધી ઍક્સેસ આપો", + // "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.accesses.form.until-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", + // "submission.sections.accesses.form.until-placeholder": "Until", "submission.sections.accesses.form.until-placeholder": "સુધી", + // "submission.sections.duplicates.none": "No duplicates were detected.", "submission.sections.duplicates.none": "કોઈ નકલો શોધી નથી.", + // "submission.sections.duplicates.detected": "Potential duplicates were detected. Please review the list below.", "submission.sections.duplicates.detected": "સંભવિત નકલો શોધી છે. કૃપા કરીને નીચેની યાદી સમીક્ષા કરો.", + // "submission.sections.duplicates.in-workspace": "This item is in workspace", "submission.sections.duplicates.in-workspace": "આ વસ્તુ વર્કસ્પેસમાં છે", + // "submission.sections.duplicates.in-workflow": "This item is in workflow", "submission.sections.duplicates.in-workflow": "આ વસ્તુ વર્કફ્લોમાં છે", + // "submission.sections.license.granted-label": "I confirm the license above", "submission.sections.license.granted-label": "હું ઉપરના લાઇસન્સને મંજૂરી આપું છું", + // "submission.sections.license.required": "You must accept the license", "submission.sections.license.required": "તમારે લાઇસન્સ સ્વીકારવું પડશે", + // "submission.sections.license.notgranted": "You must accept the license", "submission.sections.license.notgranted": "તમારે લાઇસન્સ સ્વીકારવું પડશે", + // "submission.sections.sherpa.publication.information": "Publication information", "submission.sections.sherpa.publication.information": "પ્રકાશન માહિતી", + // "submission.sections.sherpa.publication.information.title": "Title", "submission.sections.sherpa.publication.information.title": "શીર્ષક", + // "submission.sections.sherpa.publication.information.issns": "ISSNs", "submission.sections.sherpa.publication.information.issns": "ISSNs", + // "submission.sections.sherpa.publication.information.url": "URL", "submission.sections.sherpa.publication.information.url": "URL", + // "submission.sections.sherpa.publication.information.publishers": "Publisher", "submission.sections.sherpa.publication.information.publishers": "પ્રકાશક", + // "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", + // "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", + // "submission.sections.sherpa.publisher.policy": "Publisher Policy", "submission.sections.sherpa.publisher.policy": "પ્રકાશક નીતિ", + // "submission.sections.sherpa.publisher.policy.description": "The below information was found via Sherpa Romeo. Based on the policies of your publisher, it provides advice regarding whether an embargo may be necessary and/or which files you are allowed to upload. If you have questions, please contact your site administrator via the feedback form in the footer.", "submission.sections.sherpa.publisher.policy.description": "નીચેની માહિતી Sherpa Romeo દ્વારા મળી છે. તમારા પ્રકાશકની નીતિઓના આધારે, તે સલાહ આપે છે કે શું એક એમ્બાર્ગો જરૂરી હોઈ શકે છે અને/અથવા તમે કયા ફાઇલો અપલોડ કરી શકો છો. જો તમને પ્રશ્નો હોય, તો કૃપા કરીને ફૂટર માં ફીડબેક ફોર્મ દ્વારા તમારા સાઇટ એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", + // "submission.sections.sherpa.publisher.policy.openaccess": "Open Access pathways permitted by this journal's policy are listed below by article version. Click on a pathway for a more detailed view", "submission.sections.sherpa.publisher.policy.openaccess": "આ જર્નલની નીતિ દ્વારા પરવાનગી આપેલા ઓપન ઍક્સેસ માર્ગો નીચે લેખના સંસ્કરણ દ્વારા સૂચિબદ્ધ છે. વધુ વિગતવાર દૃશ્ય માટે માર્ગ પર ક્લિક કરો", - "submission.sections.sherpa.publisher.policy.more.information": "વધુ માહિતી માટે, કૃપા કરીને નીચેના લિંક જુઓ:", + // "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + // "submission.sections.sherpa.publisher.policy.version": "Version", "submission.sections.sherpa.publisher.policy.version": "સંસ્કરણ", + // "submission.sections.sherpa.publisher.policy.embargo": "Embargo", "submission.sections.sherpa.publisher.policy.embargo": "એમ્બાર્ગો", + // "submission.sections.sherpa.publisher.policy.noembargo": "No Embargo", "submission.sections.sherpa.publisher.policy.noembargo": "કોઈ એમ્બાર્ગો નથી", + // "submission.sections.sherpa.publisher.policy.nolocation": "None", "submission.sections.sherpa.publisher.policy.nolocation": "કોઈ નથી", + // "submission.sections.sherpa.publisher.policy.license": "License", "submission.sections.sherpa.publisher.policy.license": "લાઇસન્સ", + // "submission.sections.sherpa.publisher.policy.prerequisites": "Prerequisites", "submission.sections.sherpa.publisher.policy.prerequisites": "પૂર્વશરતો", + // "submission.sections.sherpa.publisher.policy.location": "Location", "submission.sections.sherpa.publisher.policy.location": "સ્થાન", + // "submission.sections.sherpa.publisher.policy.conditions": "Conditions", "submission.sections.sherpa.publisher.policy.conditions": "શરતો", + // "submission.sections.sherpa.publisher.policy.refresh": "Refresh", "submission.sections.sherpa.publisher.policy.refresh": "રીફ્રેશ", + // "submission.sections.sherpa.record.information": "Record Information", "submission.sections.sherpa.record.information": "રેકોર્ડ માહિતી", + // "submission.sections.sherpa.record.information.id": "ID", "submission.sections.sherpa.record.information.id": "ID", + // "submission.sections.sherpa.record.information.date.created": "Date Created", "submission.sections.sherpa.record.information.date.created": "તારીખ બનાવેલ", + // "submission.sections.sherpa.record.information.date.modified": "Last Modified", "submission.sections.sherpa.record.information.date.modified": "છેલ્લે સુધારેલ", + // "submission.sections.sherpa.record.information.uri": "URI", "submission.sections.sherpa.record.information.uri": "URI", + // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations", "submission.sections.sherpa.error.message": "Sherpa માહિતી મેળવવામાં ભૂલ આવી", + // "submission.submit.breadcrumbs": "New submission", "submission.submit.breadcrumbs": "નવું સબમિશન", + // "submission.submit.title": "New submission", "submission.submit.title": "નવું સબમિશન", + // "submission.workflow.generic.delete": "Delete", "submission.workflow.generic.delete": "કાઢી નાખો", + // "submission.workflow.generic.delete-help": "Select this option to discard this item. You will then be asked to confirm it.", "submission.workflow.generic.delete-help": "આ વસ્તુને રદ કરવા માટે આ વિકલ્પ પસંદ કરો. પછી તમને તેની પુષ્ટિ કરવા માટે પૂછવામાં આવશે.", + // "submission.workflow.generic.edit": "Edit", "submission.workflow.generic.edit": "સંપાદિત કરો", + // "submission.workflow.generic.edit-help": "Select this option to change the item's metadata.", "submission.workflow.generic.edit-help": "વસ્તુના મેટાડેટા બદલવા માટે આ વિકલ્પ પસંદ કરો.", + // "submission.workflow.generic.view": "View", "submission.workflow.generic.view": "જુઓ", + // "submission.workflow.generic.view-help": "Select this option to view the item's metadata.", "submission.workflow.generic.view-help": "વસ્તુના મેટાડેટા જોવા માટે આ વિકલ્પ પસંદ કરો.", + // "submission.workflow.generic.submit_select_reviewer": "Select Reviewer", "submission.workflow.generic.submit_select_reviewer": "સમીક્ષક પસંદ કરો", + // "submission.workflow.generic.submit_select_reviewer-help": "", "submission.workflow.generic.submit_select_reviewer-help": "", + // "submission.workflow.generic.submit_score": "Rate", "submission.workflow.generic.submit_score": "મૂલ્યાંકન", + // "submission.workflow.generic.submit_score-help": "", "submission.workflow.generic.submit_score-help": "", + // "submission.workflow.tasks.claimed.approve": "Approve", "submission.workflow.tasks.claimed.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": "જો તમે વસ્તુની સમીક્ષા કરી છે અને તે સંગ્રહમાં સમાવેશ માટે યોગ્ય છે, તો \\\"મંજૂર કરો\\\" પસંદ કરો.", + // "submission.workflow.tasks.claimed.edit": "Edit", "submission.workflow.tasks.claimed.edit": "સંપાદિત કરો", + // "submission.workflow.tasks.claimed.edit_help": "Select this option to change the item's metadata.", "submission.workflow.tasks.claimed.edit_help": "વસ્તુના મેટાડેટા બદલવા માટે આ વિકલ્પ પસંદ કરો.", + // "submission.workflow.tasks.claimed.decline": "Decline", "submission.workflow.tasks.claimed.decline": "નકારો", + // "submission.workflow.tasks.claimed.decline_help": "", "submission.workflow.tasks.claimed.decline_help": "", + // "submission.workflow.tasks.claimed.reject.reason.info": "Please enter your reason for rejecting the submission into the box below, indicating whether the submitter may fix a problem and resubmit.", "submission.workflow.tasks.claimed.reject.reason.info": "કૃપા કરીને નીચેના બોક્સમાં સબમિશનને નકારવાના તમારા કારણ દાખલ કરો, જે દર્શાવે છે કે સબમિટર સમસ્યા ઠીક કરી શકે છે અને ફરીથી સબમિટ કરી શકે છે.", + // "submission.workflow.tasks.claimed.reject.reason.placeholder": "Describe the reason of reject", "submission.workflow.tasks.claimed.reject.reason.placeholder": "નકારના કારણનું વર્ણન કરો", + // "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item", "submission.workflow.tasks.claimed.reject.reason.submit": "વસ્તુ નકારો", + // "submission.workflow.tasks.claimed.reject.reason.title": "Reason", "submission.workflow.tasks.claimed.reject.reason.title": "કારણ", + // "submission.workflow.tasks.claimed.reject.submit": "Reject", "submission.workflow.tasks.claimed.reject.submit": "નકારો", + // "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is not 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": "જો તમે વસ્તુની સમીક્ષા કરી છે અને તે સંગ્રહમાં સમાવેશ માટે યોગ્ય નથી, તો \\\"નકારો\\\" પસંદ કરો. પછી તમને સંદેશ દાખલ કરવા માટે પૂછવામાં આવશે કે વસ્તુ કેમ અનુકૂળ નથી, અને સબમિટરએ કંઈક બદલવું જોઈએ અને ફરીથી સબમિટ કરવું જોઈએ.", + // "submission.workflow.tasks.claimed.return": "Return to pool", "submission.workflow.tasks.claimed.return": "પુલ પર પાછા જાઓ", + // "submission.workflow.tasks.claimed.return_help": "Return the task to the pool so that another user may perform the task.", "submission.workflow.tasks.claimed.return_help": "ટાસ્કને પુલ પર પાછા આપો જેથી અન્ય વપરાશકર્તા ટાસ્ક કરી શકે.", + // "submission.workflow.tasks.generic.error": "Error occurred during operation...", "submission.workflow.tasks.generic.error": "ઓપરેશન દરમિયાન ભૂલ આવી...", + // "submission.workflow.tasks.generic.processing": "Processing...", "submission.workflow.tasks.generic.processing": "પ્રક્રિયા...", + // "submission.workflow.tasks.generic.submitter": "Submitter", "submission.workflow.tasks.generic.submitter": "સબમિટર", + // "submission.workflow.tasks.generic.success": "Operation successful", "submission.workflow.tasks.generic.success": "ઓપરેશન સફળ", + // "submission.workflow.tasks.pool.claim": "Claim", "submission.workflow.tasks.pool.claim": "દાવો", + // "submission.workflow.tasks.pool.claim_help": "Assign this task to yourself.", "submission.workflow.tasks.pool.claim_help": "આ ટાસ્કને તમારા માટે સોંપો.", + // "submission.workflow.tasks.pool.hide-detail": "Hide detail", "submission.workflow.tasks.pool.hide-detail": "વિગત છુપાવો", + // "submission.workflow.tasks.pool.show-detail": "Show detail", "submission.workflow.tasks.pool.show-detail": "વિગત બતાવો", + // "submission.workflow.tasks.duplicates": "potential duplicates were detected for this item. Claim and edit this item to see details.", "submission.workflow.tasks.duplicates": "આ વસ્તુ માટે સંભવિત નકલો શોધી છે. વિગતો જોવા માટે આ વસ્તુનો દાવો કરો અને સંપાદિત કરો.", + // "submission.workspace.generic.view": "View", "submission.workspace.generic.view": "જુઓ", + // "submission.workspace.generic.view-help": "Select this option to view the item's metadata.", "submission.workspace.generic.view-help": "વસ્તુના મેટાડેટા જોવા માટે આ વિકલ્પ પસંદ કરો.", + // "submitter.empty": "N/A", "submitter.empty": "N/A", + // "subscriptions.title": "Subscriptions", "subscriptions.title": "સબ્સ્ક્રિપ્શન્સ", + // "subscriptions.item": "Subscriptions for items", "subscriptions.item": "વસ્તુઓ માટે સબ્સ્ક્રિપ્શન્સ", + // "subscriptions.collection": "Subscriptions for collections", "subscriptions.collection": "સંગ્રહો માટે સબ્સ્ક્રિપ્શન્સ", + // "subscriptions.community": "Subscriptions for communities", "subscriptions.community": "સમુદાયો માટે સબ્સ્ક્રિપ્શન્સ", + // "subscriptions.subscription_type": "Subscription type", "subscriptions.subscription_type": "સબ્સ્ક્રિપ્શન પ્રકાર", + // "subscriptions.frequency": "Subscription frequency", "subscriptions.frequency": "સબ્સ્ક્રિપ્શન આવર્તન", + // "subscriptions.frequency.D": "Daily", "subscriptions.frequency.D": "દૈનિક", + // "subscriptions.frequency.M": "Monthly", "subscriptions.frequency.M": "માસિક", + // "subscriptions.frequency.W": "Weekly", "subscriptions.frequency.W": "સાપ્તાહિક", + // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "સબ્સ્ક્રાઇબ કરો", + // "subscriptions.unsubscribe": "Unsubscribe", "subscriptions.unsubscribe": "સબ્સ્ક્રિપ્શન રદ કરો", + // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "સબ્સ્ક્રિપ્શન્સ", + // "subscriptions.modal.type-frequency": "Type and frequency", "subscriptions.modal.type-frequency": "પ્રકાર અને આવર્તન", + // "subscriptions.modal.close": "Close", "subscriptions.modal.close": "બંધ કરો", + // "subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile", "subscriptions.modal.delete-info": "આ સબ્સ્ક્રિપ્શનને દૂર કરવા માટે, કૃપા કરીને તમારા વપરાશકર્તા પ્રોફાઇલ હેઠળ \\\"સબ્સ્ક્રિપ્શન્સ\\\" પેજ પર જાઓ", + // "subscriptions.modal.new-subscription-form.type.content": "Content", "subscriptions.modal.new-subscription-form.type.content": "સામગ્રી", + // "subscriptions.modal.new-subscription-form.frequency.D": "Daily", "subscriptions.modal.new-subscription-form.frequency.D": "દૈનિક", + // "subscriptions.modal.new-subscription-form.frequency.W": "Weekly", "subscriptions.modal.new-subscription-form.frequency.W": "સાપ્તાહિક", + // "subscriptions.modal.new-subscription-form.frequency.M": "Monthly", "subscriptions.modal.new-subscription-form.frequency.M": "માસિક", + // "subscriptions.modal.new-subscription-form.submit": "Submit", "subscriptions.modal.new-subscription-form.submit": "સબમિટ કરો", + // "subscriptions.modal.new-subscription-form.processing": "Processing...", "subscriptions.modal.new-subscription-form.processing": "પ્રક્રિયા...", + // "subscriptions.modal.create.success": "Subscribed to {{ type }} successfully.", "subscriptions.modal.create.success": "{{ type }} માટે સફળતાપૂર્વક સબ્સ્ક્રાઇબ કર્યું.", + // "subscriptions.modal.delete.success": "Subscription deleted successfully", "subscriptions.modal.delete.success": "સબ્સ્ક્રિપ્શન સફળતાપૂર્વક દૂર કર્યું", + // "subscriptions.modal.update.success": "Subscription to {{ type }} updated successfully", "subscriptions.modal.update.success": "{{ type }} માટે સબ્સ્ક્રિપ્શન સફળતાપૂર્વક અપડેટ કર્યું", + // "subscriptions.modal.create.error": "An error occurs during the subscription creation", "subscriptions.modal.create.error": "સબ્સ્ક્રિપ્શન બનાવવાની પ્રક્રિયા દરમિયાન ભૂલ આવી", + // "subscriptions.modal.delete.error": "An error occurs during the subscription delete", "subscriptions.modal.delete.error": "સબ્સ્ક્રિપ્શન દૂર કરતી વખતે ભૂલ આવી", + // "subscriptions.modal.update.error": "An error occurs during the subscription update", "subscriptions.modal.update.error": "સબ્સ્ક્રિપ્શન અપડેટ કરતી વખતે ભૂલ આવી", + // "subscriptions.table.dso": "Subject", "subscriptions.table.dso": "વિષય", + // "subscriptions.table.subscription_type": "Subscription Type", "subscriptions.table.subscription_type": "સબ્સ્ક્રિપ્શન પ્રકાર", + // "subscriptions.table.subscription_frequency": "Subscription Frequency", "subscriptions.table.subscription_frequency": "સબ્સ્ક્રિપ્શન આવર્તન", + // "subscriptions.table.action": "Action", "subscriptions.table.action": "ક્રિયા", + // "subscriptions.table.edit": "Edit", "subscriptions.table.edit": "સંપાદિત કરો", + // "subscriptions.table.delete": "Delete", "subscriptions.table.delete": "કાઢી નાખો", + // "subscriptions.table.not-available": "Not available", "subscriptions.table.not-available": "ઉપલબ્ધ નથી", + // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "સબ્સ્ક્રાઇબ કરેલી વસ્તુને કાઢી નાખવામાં આવી છે, અથવા તમને હાલમાં તેને જોવા માટે પરવાનગી નથી", + // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", "subscriptions.table.empty.message": "તમારે આ સમયે કોઈ સબ્સ્ક્રિપ્શન નથી. સમુદાય અથવા સંગ્રહ માટે ઇમેઇલ અપડેટ્સ માટે સબ્સ્ક્રાઇબ કરવા માટે, વસ્તુના પેજ પર સબ્સ્ક્રિપ્શન બટનનો ઉપયોગ કરો.", + // "thumbnail.default.alt": "Thumbnail Image", "thumbnail.default.alt": "થંબનેલ છબી", + // "thumbnail.default.placeholder": "No Thumbnail Available", "thumbnail.default.placeholder": "કોઈ થંબનેલ ઉપલબ્ધ નથી", + // "thumbnail.project.alt": "Project Logo", "thumbnail.project.alt": "પ્રોજેક્ટ લોગો", + // "thumbnail.project.placeholder": "Project Placeholder Image", "thumbnail.project.placeholder": "પ્રોજેક્ટ પ્લેસહોલ્ડર છબી", + // "thumbnail.orgunit.alt": "OrgUnit Logo", "thumbnail.orgunit.alt": "OrgUnit લોગો", + // "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image", "thumbnail.orgunit.placeholder": "OrgUnit પ્લેસહોલ્ડર છબી", + // "thumbnail.person.alt": "Profile Picture", "thumbnail.person.alt": "પ્રોફાઇલ પિક્ચર", + // "thumbnail.person.placeholder": "No Profile Picture Available", "thumbnail.person.placeholder": "કોઈ પ્રોફાઇલ પિક્ચર ઉપલબ્ધ નથી", + // "title": "DSpace", "title": "DSpace", + // "vocabulary-treeview.header": "Hierarchical tree view", "vocabulary-treeview.header": "હાયરાર્કિકલ ટ્રી વ્યૂ", + // "vocabulary-treeview.load-more": "Load more", "vocabulary-treeview.load-more": "વધુ લોડ કરો", + // "vocabulary-treeview.search.form.reset": "Reset", "vocabulary-treeview.search.form.reset": "રીસેટ", + // "vocabulary-treeview.search.form.search": "Search", "vocabulary-treeview.search.form.search": "શોધો", + // "vocabulary-treeview.search.form.search-placeholder": "Filter results by typing the first few letters", "vocabulary-treeview.search.form.search-placeholder": "પરિણામોને ફિલ્ટર કરવા માટે પ્રથમ થોડા અક્ષરો લખો", + // "vocabulary-treeview.search.no-result": "There were no items to show", "vocabulary-treeview.search.no-result": "દેખાવ માટે કોઈ વસ્તુઓ નહોતી", + // "vocabulary-treeview.tree.description.nsi": "The Norwegian Science Index", "vocabulary-treeview.tree.description.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ", + // "vocabulary-treeview.tree.description.srsc": "Research Subject Categories", "vocabulary-treeview.tree.description.srsc": "રિસર્ચ સબજેક્ટ કેટેગરીઝ", + // "vocabulary-treeview.info": "Select a subject to add as search filter", "vocabulary-treeview.info": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", + // "uploader.browse": "browse", "uploader.browse": "બ્રાઉઝ કરો", + // "uploader.drag-message": "Drag & Drop your files here", "uploader.drag-message": "તમારી ફાઇલો અહીં ડ્રેગ અને ડ્રોપ કરો", + // "uploader.delete.btn-title": "Delete", "uploader.delete.btn-title": "કાઢી નાખો", + // "uploader.or": ", or ", "uploader.or": ", અથવા ", + // "uploader.processing": "Processing uploaded file(s)... (it's now safe to close this page)", "uploader.processing": "અપલોડ કરેલી ફાઇલોની પ્રક્રિયા કરી રહ્યું છે... (આ પેજને બંધ કરવું સુરક્ષિત છે)", + // "uploader.queue-length": "Queue length", "uploader.queue-length": "કતારની લંબાઈ", + // "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": "વાસ્તવિક મેટાડેટા તરીકે વર્ચ્યુઅલ મેટાડેટા સાચવવા માટે તમે કયા પ્રકારો પસંદ કરવા માંગો છો તે પસંદ કરો", + // "virtual-metadata.delete-item.modal-head": "The virtual metadata of this relation", "virtual-metadata.delete-item.modal-head": "આ સંબંધના વર્ચ્યુઅલ મેટાડેટા", + // "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": "વાસ્તવિક મેટાડેટા તરીકે વર્ચ્યુઅલ મેટાડેટા સાચવવા માટે તમે કયા વસ્તુઓ પસંદ કરવા માંગો છો તે પસંદ કરો", + // "supervisedWorkspace.search.results.head": "Supervised Items", "supervisedWorkspace.search.results.head": "સુપરવાઇઝ્ડ વસ્તુઓ", + // "workspace.search.results.head": "Your submissions", "workspace.search.results.head": "તમારા સબમિશન્સ", + // "workflowAdmin.search.results.head": "Administer Workflow", "workflowAdmin.search.results.head": "વર્કફ્લો સંચાલન", + // "workflow.search.results.head": "Workflow tasks", "workflow.search.results.head": "વર્કફ્લો ટાસ્ક્સ", + // "supervision.search.results.head": "Workflow and Workspace tasks", "supervision.search.results.head": "વર્કફ્લો અને વર્કસ્પેસ ટાસ્ક્સ", + // "workflow-item.edit.breadcrumbs": "Edit workflowitem", "workflow-item.edit.breadcrumbs": "વર્કફ્લો આઇટમ સંપાદિત કરો", + // "workflow-item.edit.title": "Edit workflowitem", "workflow-item.edit.title": "વર્કફ્લો આઇટમ સંપાદિત કરો", + // "workflow-item.delete.notification.success.title": "Deleted", "workflow-item.delete.notification.success.title": "કાઢી નાખ્યું", + // "workflow-item.delete.notification.success.content": "This workflow item was successfully deleted", "workflow-item.delete.notification.success.content": "આ વર્કફ્લો આઇટમ સફળતાપૂર્વક કાઢી નાખવામાં આવ્યું", + // "workflow-item.delete.notification.error.title": "Something went wrong", "workflow-item.delete.notification.error.title": "કંઈક ખોટું થયું", + // "workflow-item.delete.notification.error.content": "The workflow item could not be deleted", "workflow-item.delete.notification.error.content": "વર્કફ્લો આઇટમને કાઢી શકાતું નથી", + // "workflow-item.delete.title": "Delete workflow item", "workflow-item.delete.title": "વર્કફ્લો આઇટમ કાઢી નાખો", + // "workflow-item.delete.header": "Delete workflow item", "workflow-item.delete.header": "વર્કફ્લો આઇટમ કાઢી નાખો", + // "workflow-item.delete.button.cancel": "Cancel", "workflow-item.delete.button.cancel": "રદ કરો", + // "workflow-item.delete.button.confirm": "Delete", "workflow-item.delete.button.confirm": "કાઢી નાખો", + // "workflow-item.send-back.notification.success.title": "Sent back to submitter", "workflow-item.send-back.notification.success.title": "સબમિટર પર પાછું મોકલ્યું", + // "workflow-item.send-back.notification.success.content": "This workflow item was successfully sent back to the submitter", "workflow-item.send-back.notification.success.content": "આ વર્કફ્લો આઇટમ સફળતાપૂર્વક સબમિટર પર પાછું મોકલવામાં આવ્યું", + // "workflow-item.send-back.notification.error.title": "Something went wrong", "workflow-item.send-back.notification.error.title": "કંઈક ખોટું થયું", + // "workflow-item.send-back.notification.error.content": "The workflow item could not be sent back to the submitter", "workflow-item.send-back.notification.error.content": "વર્કફ્લો આઇટમને સબમિટર પર પાછું મોકલી શકાતું નથી", + // "workflow-item.send-back.title": "Send workflow item back to submitter", "workflow-item.send-back.title": "વર્કફ્લો આઇટમ સબમિટર પર પાછું મોકલો", + // "workflow-item.send-back.header": "Send workflow item back to submitter", "workflow-item.send-back.header": "વર્કફ્લો આઇટમ સબમિટર પર પાછું મોકલો", + // "workflow-item.send-back.button.cancel": "Cancel", "workflow-item.send-back.button.cancel": "રદ કરો", + // "workflow-item.send-back.button.confirm": "Send back", "workflow-item.send-back.button.confirm": "પાછું મોકલો", + // "workflow-item.view.breadcrumbs": "Workflow View", "workflow-item.view.breadcrumbs": "વર્કફ્લો દૃશ્ય", + // "workspace-item.view.breadcrumbs": "Workspace View", "workspace-item.view.breadcrumbs": "વર્કસ્પેસ દૃશ્ય", + // "workspace-item.view.title": "Workspace View", "workspace-item.view.title": "વર્કસ્પેસ દૃશ્ય", + // "workspace-item.delete.breadcrumbs": "Workspace Delete", "workspace-item.delete.breadcrumbs": "વર્કસ્પેસ કાઢી નાખો", + // "workspace-item.delete.header": "Delete workspace item", "workspace-item.delete.header": "વર્કસ્પેસ આઇટમ કાઢી નાખો", + // "workspace-item.delete.button.confirm": "Delete", "workspace-item.delete.button.confirm": "કાઢી નાખો", + // "workspace-item.delete.button.cancel": "Cancel", "workspace-item.delete.button.cancel": "રદ કરો", + // "workspace-item.delete.notification.success.title": "Deleted", "workspace-item.delete.notification.success.title": "કાઢી નાખ્યું", + // "workspace-item.delete.title": "This workspace item was successfully deleted", "workspace-item.delete.title": "આ વર્કસ્પેસ આઇટમ સફળતાપૂર્વક કાઢી નાખવામાં આવ્યું", + // "workspace-item.delete.notification.error.title": "Something went wrong", "workspace-item.delete.notification.error.title": "કંઈક ખોટું થયું", + // "workspace-item.delete.notification.error.content": "The workspace item could not be deleted", "workspace-item.delete.notification.error.content": "વર્કસ્પેસ આઇટમને કાઢી શકાતું નથી", + // "workflow-item.advanced.title": "Advanced workflow", "workflow-item.advanced.title": "ઉન્નત વર્કફ્લો", + // "workflow-item.selectrevieweraction.notification.success.title": "Selected reviewer", "workflow-item.selectrevieweraction.notification.success.title": "પસંદ કરેલા સમીક્ષક", + // "workflow-item.selectrevieweraction.notification.success.content": "The reviewer for this workflow item has been successfully selected", "workflow-item.selectrevieweraction.notification.success.content": "આ વર્કફ્લો આઇટમ માટે સમીક્ષક સફળતાપૂર્વક પસંદ કરવામાં આવ્યો છે", + // "workflow-item.selectrevieweraction.notification.error.title": "Something went wrong", "workflow-item.selectrevieweraction.notification.error.title": "કંઈક ખોટું થયું", + // "workflow-item.selectrevieweraction.notification.error.content": "Couldn't select the reviewer for this workflow item", "workflow-item.selectrevieweraction.notification.error.content": "આ વર્કફ્લો આઇટમ માટે સમીક્ષક પસંદ કરી શકાતું નથી", + // "workflow-item.selectrevieweraction.title": "Select Reviewer", "workflow-item.selectrevieweraction.title": "સમીક્ષક પસંદ કરો", + // "workflow-item.selectrevieweraction.header": "Select Reviewer", "workflow-item.selectrevieweraction.header": "સમીક્ષક પસંદ કરો", + // "workflow-item.selectrevieweraction.button.cancel": "Cancel", "workflow-item.selectrevieweraction.button.cancel": "રદ કરો", + // "workflow-item.selectrevieweraction.button.confirm": "Confirm", "workflow-item.selectrevieweraction.button.confirm": "પુષ્ટિ કરો", + // "workflow-item.scorereviewaction.notification.success.title": "Rating review", "workflow-item.scorereviewaction.notification.success.title": "મૂલ્યાંકન સમીક્ષા", + // "workflow-item.scorereviewaction.notification.success.content": "The rating for this item workflow item has been successfully submitted", "workflow-item.scorereviewaction.notification.success.content": "આ આઇટમ વર્કફ્લો આઇટમ માટે મૂલ્યાંકન સફળતાપૂર્વક સબમિટ કર્યું છે", + // "workflow-item.scorereviewaction.notification.error.title": "Something went wrong", "workflow-item.scorereviewaction.notification.error.title": "કંઈક ખોટું થયું", + // "workflow-item.scorereviewaction.notification.error.content": "Couldn't rate this item", "workflow-item.scorereviewaction.notification.error.content": "આ આઇટમને મૂલ્યાંકન કરી શકાતું નથી", + // "workflow-item.scorereviewaction.title": "Rate this item", "workflow-item.scorereviewaction.title": "આ આઇટમને મૂલ્યાંકન કરો", + // "workflow-item.scorereviewaction.header": "Rate this item", "workflow-item.scorereviewaction.header": "આ આઇટમને મૂલ્યાંકન કરો", + // "workflow-item.scorereviewaction.button.cancel": "Cancel", "workflow-item.scorereviewaction.button.cancel": "રદ કરો", + // "workflow-item.scorereviewaction.button.confirm": "Confirm", "workflow-item.scorereviewaction.button.confirm": "પુષ્ટિ કરો", + // "idle-modal.header": "Session will expire soon", "idle-modal.header": "સત્ર ટૂંક સમયમાં સમાપ્ત થશે", + // "idle-modal.info": "For security reasons, user sessions expire after {{ timeToExpire }} minutes of inactivity. Your session will expire soon. Would you like to extend it or log out?", "idle-modal.info": "સુરક્ષા કારણોસર, વપરાશકર્તા સત્રો {{ timeToExpire }} મિનિટની નિષ્ક્રિયતા પછી સમાપ્ત થાય છે. તમારું સત્ર ટૂંક સમયમાં સમાપ્ત થશે. શું તમે તેને વિસ્તૃત કરવા માંગો છો અથવા લોગ આઉટ કરવા માંગો છો?", + // "idle-modal.log-out": "Log out", "idle-modal.log-out": "લોગ આઉટ", + // "idle-modal.extend-session": "Extend session", "idle-modal.extend-session": "સત્ર વિસ્તૃત કરો", + // "researcher.profile.action.processing": "Processing...", "researcher.profile.action.processing": "પ્રક્રિયા...", + // "researcher.profile.associated": "Researcher profile associated", "researcher.profile.associated": "રિસર્ચર પ્રોફાઇલ સંકળાયેલ", + // "researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility", "researcher.profile.change-visibility.fail": "પ્રોફાઇલ દૃશ્યતા બદલતી વખતે અનપેક્ષિત ભૂલ આવી", + // "researcher.profile.create.new": "Create new", "researcher.profile.create.new": "નવું બનાવો", + // "researcher.profile.create.success": "Researcher profile created successfully", "researcher.profile.create.success": "રિસર્ચર પ્રોફાઇલ સફળતાપૂર્વક બનાવવામાં આવી", + // "researcher.profile.create.fail": "An error occurs during the researcher profile creation", "researcher.profile.create.fail": "રિસર્ચર પ્રોફાઇલ બનાવવાની પ્રક્રિયા દરમિયાન ભૂલ આવી", + // "researcher.profile.delete": "Delete", "researcher.profile.delete": "કાઢી નાખો", + // "researcher.profile.expose": "Expose", "researcher.profile.expose": "પ્રદર્શિત કરો", + // "researcher.profile.hide": "Hide", "researcher.profile.hide": "છુપાવો", + // "researcher.profile.not.associated": "Researcher profile not yet associated", "researcher.profile.not.associated": "રિસર્ચર પ્રોફાઇલ હજી સુધી સંકળાયેલ નથી", + // "researcher.profile.view": "View", "researcher.profile.view": "જુઓ", + // "researcher.profile.private.visibility": "PRIVATE", "researcher.profile.private.visibility": "ખાનગી", + // "researcher.profile.public.visibility": "PUBLIC", "researcher.profile.public.visibility": "જાહેર", - "researcher.profile.status": "સ્થિતિ:", + // "researcher.profile.status": "Status:", + // TODO New key - Add a translation + "researcher.profile.status": "Status:", + // "researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).", "researcherprofile.claim.not-authorized": "તમે આ આઇટમનો દાવો કરવા માટે અધિકૃત નથી. વધુ વિગતો માટે એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", + // "researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later", "researcherprofile.error.claim.body": "પ્રોફાઇલનો દાવો કરતી વખતે ભૂલ આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો", + // "researcherprofile.error.claim.title": "Error", "researcherprofile.error.claim.title": "ભૂલ", + // "researcherprofile.success.claim.body": "Profile claimed with success", "researcherprofile.success.claim.body": "પ્રોફાઇલનો દાવો સફળતાપૂર્વક થયો", + // "researcherprofile.success.claim.title": "Success", "researcherprofile.success.claim.title": "સફળતા", + // "person.page.orcid.create": "Create an ORCID ID", "person.page.orcid.create": "ORCID ID બનાવો", + // "person.page.orcid.granted-authorizations": "Granted authorizations", "person.page.orcid.granted-authorizations": "મંજૂર કરેલી અધિકૃતતાઓ", + // "person.page.orcid.grant-authorizations": "Grant authorizations", "person.page.orcid.grant-authorizations": "અધિકૃતતાઓ આપો", + // "person.page.orcid.link": "Connect to ORCID ID", "person.page.orcid.link": "ORCID ID સાથે કનેક્ટ કરો", + // "person.page.orcid.link.processing": "Linking profile to ORCID...", "person.page.orcid.link.processing": "પ્રોફાઇલને ORCID સાથે લિંક કરી રહ્યું છે...", + // "person.page.orcid.link.error.message": "Something went wrong while connecting the profile with ORCID. If the problem persists, contact the administrator.", "person.page.orcid.link.error.message": "પ્રોફાઇલને ORCID સાથે કનેક્ટ કરતી વખતે કંઈક ખોટું થયું. જો સમસ્યા ચાલુ રહે, તો એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", + // "person.page.orcid.orcid-not-linked-message": "The ORCID iD of this profile ({{ orcid }}) has not yet been connected to an account on the ORCID registry or the connection is expired.", "person.page.orcid.orcid-not-linked-message": "આ પ્રોફાઇલનો ORCID iD ({{ orcid }}) હજી સુધી ORCID રજિસ્ટ્રી સાથે કનેક્ટ થયો નથી અથવા કનેક્શન સમાપ્ત થઈ ગયું છે.", + // "person.page.orcid.unlink": "Disconnect from ORCID", "person.page.orcid.unlink": "ORCID થી ડિસકનેક્ટ કરો", + // "person.page.orcid.unlink.processing": "Processing...", "person.page.orcid.unlink.processing": "પ્રક્રિયા...", + // "person.page.orcid.missing-authorizations": "Missing authorizations", "person.page.orcid.missing-authorizations": "અધિકૃતતાઓ ગુમ છે", - "person.page.orcid.missing-authorizations-message": "નીચેની અધિકૃતતાઓ ગુમ છે:", + // "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + // TODO New key - Add a translation + "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + // "person.page.orcid.no-missing-authorizations-message": "Great! This box is empty, so you have granted all access rights to use all functions offers by your institution.", "person.page.orcid.no-missing-authorizations-message": "શાનદાર! આ બોક્સ ખાલી છે, તેથી તમે તમારી સંસ્થા દ્વારા ઓફર કરેલી બધી સુવિધાઓનો ઉપયોગ કરવા માટે બધી ઍક્સેસ અધિકૃતતાઓ આપી છે.", + // "person.page.orcid.no-orcid-message": "No ORCID iD associated yet. By clicking on the button below it is possible to link this profile with an ORCID account.", "person.page.orcid.no-orcid-message": "હજી સુધી કોઈ ORCID iD સંકળાયેલ નથી. નીચેના બટન પર ક્લિક કરીને આ પ્રોફાઇલને ORCID એકાઉન્ટ સાથે લિંક કરી શકાય છે.", + // "person.page.orcid.profile-preferences": "Profile preferences", "person.page.orcid.profile-preferences": "પ્રોફાઇલ પસંદગીઓ", + // "person.page.orcid.funding-preferences": "Funding preferences", "person.page.orcid.funding-preferences": "ફંડિંગ પસંદગીઓ", + // "person.page.orcid.publications-preferences": "Publication preferences", "person.page.orcid.publications-preferences": "પ્રકાશન પસંદગીઓ", + // "person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator", "person.page.orcid.remove-orcid-message": "જો તમારે તમારો ORCID દૂર કરવાની જરૂર હોય, તો કૃપા કરીને રિપોઝિટરી એડમિનિસ્ટ્રેટરનો સંપર્ક કરો", + // "person.page.orcid.save.preference.changes": "Update settings", "person.page.orcid.save.preference.changes": "સેટિંગ્સ અપડેટ કરો", + // "person.page.orcid.sync-profile.affiliation": "Affiliation", "person.page.orcid.sync-profile.affiliation": "સંબંધ", + // "person.page.orcid.sync-profile.biographical": "Biographical data", "person.page.orcid.sync-profile.biographical": "જીવની માહિતી", + // "person.page.orcid.sync-profile.education": "Education", "person.page.orcid.sync-profile.education": "શિક્ષણ", + // "person.page.orcid.sync-profile.identifiers": "Identifiers", "person.page.orcid.sync-profile.identifiers": "ઓળખકર્તાઓ", + // "person.page.orcid.sync-fundings.all": "All fundings", "person.page.orcid.sync-fundings.all": "બધા ફંડિંગ્સ", + // "person.page.orcid.sync-fundings.mine": "My fundings", "person.page.orcid.sync-fundings.mine": "મારા ફંડિંગ્સ", + // "person.page.orcid.sync-fundings.my_selected": "Selected fundings", "person.page.orcid.sync-fundings.my_selected": "પસંદ કરેલા ફંડિંગ્સ", + // "person.page.orcid.sync-fundings.disabled": "Disabled", "person.page.orcid.sync-fundings.disabled": "અક્ષમ", + // "person.page.orcid.sync-publications.all": "All publications", "person.page.orcid.sync-publications.all": "બધા પ્રકાશનો", + // "person.page.orcid.sync-publications.mine": "My publications", "person.page.orcid.sync-publications.mine": "મારા પ્રકાશનો", + // "person.page.orcid.sync-publications.my_selected": "Selected publications", "person.page.orcid.sync-publications.my_selected": "પસંદ કરેલા પ્રકાશનો", + // "person.page.orcid.sync-publications.disabled": "Disabled", "person.page.orcid.sync-publications.disabled": "અક્ષમ", + // "person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry", "person.page.orcid.sync-queue.discard": "બદલાવ રદ કરો અને ORCID રજિસ્ટ્રી સાથે સુમેળ ન કરો", + // "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed", "person.page.orcid.sync-queue.discard.error": "ORCID કતાર રેકોર્ડને રદ કરવામાં નિષ્ફળ", + // "person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully", "person.page.orcid.sync-queue.discard.success": "ORCID કતાર રેકોર્ડ સફળતાપૂર્વક રદ કરવામાં આવ્યો", + // "person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty", "person.page.orcid.sync-queue.empty-message": "ORCID કતાર રજિસ્ટ્રી ખાલી છે", + // "person.page.orcid.sync-queue.table.header.type": "Type", "person.page.orcid.sync-queue.table.header.type": "પ્રકાર", + // "person.page.orcid.sync-queue.table.header.description": "Description", "person.page.orcid.sync-queue.table.header.description": "વર્ણન", + // "person.page.orcid.sync-queue.table.header.action": "Action", "person.page.orcid.sync-queue.table.header.action": "ક્રિયા", + // "person.page.orcid.sync-queue.description.affiliation": "Affiliations", "person.page.orcid.sync-queue.description.affiliation": "સંબંધ", + // "person.page.orcid.sync-queue.description.country": "Country", "person.page.orcid.sync-queue.description.country": "દેશ", + // "person.page.orcid.sync-queue.description.education": "Educations", "person.page.orcid.sync-queue.description.education": "શિક્ષણ", + // "person.page.orcid.sync-queue.description.external_ids": "External ids", "person.page.orcid.sync-queue.description.external_ids": "બાહ્ય ઓળખકર્તાઓ", + // "person.page.orcid.sync-queue.description.other_names": "Other names", "person.page.orcid.sync-queue.description.other_names": "અન્ય નામો", + // "person.page.orcid.sync-queue.description.qualification": "Qualifications", "person.page.orcid.sync-queue.description.qualification": "લાયકાત", + // "person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls", "person.page.orcid.sync-queue.description.researcher_urls": "શોધક URLs", + // "person.page.orcid.sync-queue.description.keywords": "Keywords", "person.page.orcid.sync-queue.description.keywords": "કીવર્ડ્સ", + // "person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry", "person.page.orcid.sync-queue.tooltip.insert": "ORCID રજિસ્ટ્રીમાં નવી એન્ટ્રી ઉમેરો", + // "person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry", "person.page.orcid.sync-queue.tooltip.update": "આ એન્ટ્રી ORCID રજિસ્ટ્રી પર અપડેટ કરો", + // "person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry", "person.page.orcid.sync-queue.tooltip.delete": "આ એન્ટ્રી ORCID રજિસ્ટ્રીમાંથી દૂર કરો", + // "person.page.orcid.sync-queue.tooltip.publication": "Publication", "person.page.orcid.sync-queue.tooltip.publication": "પ્રકાશન", + // "person.page.orcid.sync-queue.tooltip.project": "Project", "person.page.orcid.sync-queue.tooltip.project": "પ્રોજેક્ટ", + // "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", "person.page.orcid.sync-queue.tooltip.affiliation": "સંબંધ", + // "person.page.orcid.sync-queue.tooltip.education": "Education", "person.page.orcid.sync-queue.tooltip.education": "શિક્ષણ", + // "person.page.orcid.sync-queue.tooltip.qualification": "Qualification", "person.page.orcid.sync-queue.tooltip.qualification": "લાયકાત", + // "person.page.orcid.sync-queue.tooltip.other_names": "Other name", "person.page.orcid.sync-queue.tooltip.other_names": "અન્ય નામ", + // "person.page.orcid.sync-queue.tooltip.country": "Country", "person.page.orcid.sync-queue.tooltip.country": "દેશ", + // "person.page.orcid.sync-queue.tooltip.keywords": "Keyword", "person.page.orcid.sync-queue.tooltip.keywords": "કીવર્ડ", + // "person.page.orcid.sync-queue.tooltip.external_ids": "External identifier", "person.page.orcid.sync-queue.tooltip.external_ids": "બાહ્ય ઓળખકર્તા", + // "person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url", "person.page.orcid.sync-queue.tooltip.researcher_urls": "શોધક URL", + // "person.page.orcid.sync-queue.send": "Synchronize with ORCID registry", "person.page.orcid.sync-queue.send": "ORCID રજિસ્ટ્રી સાથે સુમેળ કરો", + // "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.", "person.page.orcid.sync-queue.send.unauthorized-error.title": "અધિકૃતતાઓ ગુમ થવાને કારણે ORCID પર સબમિશન નિષ્ફળ થયું.", + // "person.page.orcid.sync-queue.send.unauthorized-error.content": "Click here to grant again the required permissions. If the problem persists, contact the administrator", "person.page.orcid.sync-queue.send.unauthorized-error.content": "આધિકૃતતાઓ ફરીથી આપવા માટે અહીં ક્લિક કરો. જો સમસ્યા ચાલુ રહે, તો એડમિનિસ્ટ્રેટરનો સંપર્ક કરો", + // "person.page.orcid.sync-queue.send.bad-request-error": "The submission to ORCID failed because the resource sent to ORCID registry is not valid", "person.page.orcid.sync-queue.send.bad-request-error": "ORCID પર સબમિશન નિષ્ફળ થયું કારણ કે ORCID રજિસ્ટ્રીને મોકલવામાં આવેલ સંસાધન માન્ય નથી", + // "person.page.orcid.sync-queue.send.error": "The submission to ORCID failed", "person.page.orcid.sync-queue.send.error": "ORCID પર સબમિશન નિષ્ફળ થયું", + // "person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry", "person.page.orcid.sync-queue.send.conflict-error": "ORCID પર સબમિશન નિષ્ફળ થયું કારણ કે સંસાધન પહેલાથી જ ORCID રજિસ્ટ્રી પર હાજર છે", + // "person.page.orcid.sync-queue.send.not-found-warning": "The resource does not exists anymore on the ORCID registry.", "person.page.orcid.sync-queue.send.not-found-warning": "સંસાધન ORCID રજિસ્ટ્રી પર હવે હાજર નથી.", + // "person.page.orcid.sync-queue.send.success": "The submission to ORCID was completed successfully", "person.page.orcid.sync-queue.send.success": "ORCID પર સબમિશન સફળતાપૂર્વક પૂર્ણ થયું", + // "person.page.orcid.sync-queue.send.validation-error": "The data that you want to synchronize with ORCID is not valid", "person.page.orcid.sync-queue.send.validation-error": "તમે ORCID સાથે સુમેળ કરવા માંગો છો તે ડેટા માન્ય નથી", + // "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "The amount's currency is required", "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "રકમની કરન્સી જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.external-id.required": "The resource to be sent requires at least one identifier", "person.page.orcid.sync-queue.send.validation-error.external-id.required": "મોકલવામાં આવતી સંસાધન માટે ઓછામાં ઓછો એક ઓળખકર્તા જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.title.required": "The title is required", "person.page.orcid.sync-queue.send.validation-error.title.required": "શીર્ષક જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required", "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required", "person.page.orcid.sync-queue.send.validation-error.start-date.required": "પ્રારંભ તારીખ જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required", "person.page.orcid.sync-queue.send.validation-error.funder.required": "ફંડર જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.country.invalid": "અમાન્ય 2 અક્ષરોનો ISO 3166 દેશ", + // "person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required", "person.page.orcid.sync-queue.send.validation-error.organization.required": "સંસ્થા જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required", "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "સંસ્થાનું નામ જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900", "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "પ્રકાશન તારીખ 1900 પછીની હોવી જોઈએ", + // "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address", "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "મોકલવામાં આવતી સંસ્થા માટે સરનામું જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "The address of the organization to be sent requires a city", "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "મોકલવામાં આવતી સંસ્થાનું સરનામું માટે શહેર જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "The address of the organization to be sent requires a valid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "મોકલવામાં આવતી સંસ્થાનું સરનામું માટે માન્ય 2 અક્ષરોનો ISO 3166 દેશ જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "An identifier to disambiguate organizations is required. Supported ids are GRID, Ringgold, Legal Entity identifiers (LEIs) and Crossref Funder Registry identifiers", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "સંસ્થાઓને સ્પષ્ટ કરવા માટે એક ઓળખકર્તા જરૂરી છે. સપોર્ટેડ IDs GRID, Ringgold, Legal Entity identifiers (LEIs) અને Crossref Funder Registry identifiers છે", + // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "The organization's identifiers requires a value", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "સંસ્થાના ઓળખકર્તાઓ માટે મૂલ્ય જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "The organization's identifiers requires a source", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "સંસ્થાના ઓળખકર્તાઓ માટે સ્ત્રોત જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "The source of one of the organization identifiers is invalid. Supported sources are RINGGOLD, GRID, LEI and FUNDREF", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "સંસ્થાના એક ઓળખકર્તાના સ્ત્રોત અમાન્ય છે. સપોર્ટેડ સ્ત્રોતો RINGGOLD, GRID, LEI અને FUNDREF છે", + // "person.page.orcid.synchronization-mode": "Synchronization mode", "person.page.orcid.synchronization-mode": "સુમેળ સ્થિતિ", + // "person.page.orcid.synchronization-mode.batch": "Batch", "person.page.orcid.synchronization-mode.batch": "બેચ", + // "person.page.orcid.synchronization-mode.label": "Synchronization mode", "person.page.orcid.synchronization-mode.label": "સુમેળ સ્થિતિ", + // "person.page.orcid.synchronization-mode-message": "Please select how you would like synchronization to ORCID to occur. The options include \"Manual\" (you must send your data to ORCID manually), or \"Batch\" (the system will send your data to ORCID via a scheduled script).", "person.page.orcid.synchronization-mode-message": "કૃપા કરીને પસંદ કરો કે તમે ORCID સાથે સુમેળ કેવી રીતે કરવો છે. વિકલ્પોમાં \\\"મેન્યુઅલ\\\" (તમારે તમારો ડેટા ORCID પર મેન્યુઅલી મોકલવો પડશે), અથવા \\\"બેચ\\\" (સિસ્ટમ તમારો ડેટા ORCID પર શેડ્યુલ સ્ક્રિપ્ટ દ્વારા મોકલશે) શામેલ છે.", + // "person.page.orcid.synchronization-mode-funding-message": "Select whether to send your linked Project entities to your ORCID record's list of funding information.", "person.page.orcid.synchronization-mode-funding-message": "તમારા ORCID રેકોર્ડની ફંડિંગ માહિતીની યાદીમાં તમારા લિંક કરેલા પ્રોજેક્ટ એન્ટિટીઓને મોકલવા માટે પસંદ કરો.", + // "person.page.orcid.synchronization-mode-publication-message": "Select whether to send your linked Publication entities to your ORCID record's list of works.", "person.page.orcid.synchronization-mode-publication-message": "તમારા ORCID રેકોર્ડની કાર્યોની યાદીમાં તમારા લિંક કરેલા પ્રકાશન એન્ટિટીઓને મોકલવા માટે પસંદ કરો.", + // "person.page.orcid.synchronization-mode-profile-message": "Select whether to send your biographical data or personal identifiers to your ORCID record.", "person.page.orcid.synchronization-mode-profile-message": "તમારા ORCID રેકોર્ડ પર તમારી જીવની માહિતી અથવા વ્યક્તિગત ઓળખકર્તાઓ મોકલવા માટે પસંદ કરો.", + // "person.page.orcid.synchronization-settings-update.success": "The synchronization settings have been updated successfully", "person.page.orcid.synchronization-settings-update.success": "સુમેળ સેટિંગ્સ સફળતાપૂર્વક અપડેટ કરવામાં આવ્યા છે", + // "person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed", "person.page.orcid.synchronization-settings-update.error": "સુમેળ સેટિંગ્સ અપડેટ કરવામાં નિષ્ફળ", + // "person.page.orcid.synchronization-mode.manual": "Manual", "person.page.orcid.synchronization-mode.manual": "મેન્યુઅલ", + // "person.page.orcid.scope.authenticate": "Get your ORCID iD", "person.page.orcid.scope.authenticate": "તમારો ORCID iD મેળવો", + // "person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties", "person.page.orcid.scope.read-limited": "વિશ્વસનીય પક્ષો માટે દૃશ્યતા સાથે તમારી માહિતી વાંચો", + // "person.page.orcid.scope.activities-update": "Add/update your research activities", "person.page.orcid.scope.activities-update": "તમારી સંશોધન પ્રવૃત્તિઓ ઉમેરો/અપડેટ કરો", + // "person.page.orcid.scope.person-update": "Add/update other information about you", "person.page.orcid.scope.person-update": "તમારા વિશેની અન્ય માહિતી ઉમેરો/અપડેટ કરો", + // "person.page.orcid.unlink.success": "The disconnection between the profile and the ORCID registry was successful", "person.page.orcid.unlink.success": "પ્રોફાઇલ અને ORCID રજિસ્ટ્રી વચ્ચેનું ડિસકનેક્શન સફળ રહ્યું", + // "person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again", "person.page.orcid.unlink.error": "પ્રોફાઇલ અને ORCID રજિસ્ટ્રી વચ્ચે ડિસકનેક્ટ કરતી વખતે ભૂલ આવી. ફરી પ્રયાસ કરો", + // "person.orcid.sync.setting": "ORCID Synchronization settings", "person.orcid.sync.setting": "ORCID સુમેળ સેટિંગ્સ", + // "person.orcid.registry.queue": "ORCID Registry Queue", "person.orcid.registry.queue": "ORCID રજિસ્ટ્રી કતાર", + // "person.orcid.registry.auth": "ORCID Authorizations", "person.orcid.registry.auth": "ORCID અધિકૃતતાઓ", + // "person.orcid-tooltip.authenticated": "{{orcid}}", "person.orcid-tooltip.authenticated": "{{orcid}}", + // "person.orcid-tooltip.not-authenticated": "{{orcid}} (unconfirmed)", "person.orcid-tooltip.not-authenticated": "{{orcid}} (અપુષ્ટ)", + // "home.recent-submissions.head": "Recent Submissions", "home.recent-submissions.head": "તાજેતરના સબમિશન્સ", + // "listable-notification-object.default-message": "This object couldn't be retrieved", "listable-notification-object.default-message": "આ આઇટમને મેળવવામાં આવી શક્યું નથી", + // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", "system-wide-alert-banner.retrieval.error": "સિસ્ટમ-વાઇડ એલર્ટ બેનર મેળવવામાં કંઈક ખોટું થયું", + // "system-wide-alert-banner.countdown.prefix": "In", "system-wide-alert-banner.countdown.prefix": "માં", + // "system-wide-alert-banner.countdown.days": "{{days}} day(s),", "system-wide-alert-banner.countdown.days": "{{days}} દિવસ(ઓ),", + // "system-wide-alert-banner.countdown.hours": "{{hours}} hour(s) and", "system-wide-alert-banner.countdown.hours": "{{hours}} કલાક(ઓ) અને", - "system-wide-alert-banner.countdown.minutes": "{{minutes}} મિનિટ(ઓ):", + // "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + // TODO New key - Add a translation + "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + // "menu.section.system-wide-alert": "System-wide Alert", "menu.section.system-wide-alert": "સિસ્ટમ-વાઇડ એલર્ટ", + // "system-wide-alert.form.header": "System-wide Alert", "system-wide-alert.form.header": "સિસ્ટમ-વાઇડ એલર્ટ", + // "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert", "system-wide-alert-form.retrieval.error": "સિસ્ટમ-વાઇડ એલર્ટ મેળવવામાં કંઈક ખોટું થયું", + // "system-wide-alert.form.cancel": "Cancel", "system-wide-alert.form.cancel": "રદ કરો", + // "system-wide-alert.form.save": "Save", "system-wide-alert.form.save": "સેવ", + // "system-wide-alert.form.label.active": "ACTIVE", "system-wide-alert.form.label.active": "સક્રિય", + // "system-wide-alert.form.label.inactive": "INACTIVE", "system-wide-alert.form.label.inactive": "નિષ્ક્રિય", + // "system-wide-alert.form.error.message": "The system wide alert must have a message", "system-wide-alert.form.error.message": "સિસ્ટમ-વાઇડ એલર્ટમાં સંદેશ હોવો જોઈએ", + // "system-wide-alert.form.label.message": "Alert message", "system-wide-alert.form.label.message": "એલર્ટ સંદેશ", + // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer", "system-wide-alert.form.label.countdownTo.enable": "કાઉન્ટડાઉન ટાઇમર સક્રિય કરો", - "system-wide-alert.form.label.countdownTo.hint": "હિન્ટ: કાઉન્ટડાઉન ટાઇમર સેટ કરો. જ્યારે સક્રિય થાય છે, ત્યારે ભવિષ્યમાં તારીખ સેટ કરી શકાય છે અને સિસ્ટમ-વાઇડ એલર્ટ બેનર સેટ તારીખ સુધી કાઉન્ટડાઉન કરશે. જ્યારે આ ટાઇમર સમાપ્ત થાય છે, ત્યારે તે એલર્ટમાંથી ગાયબ થઈ જશે. સર્વર આપમેળે બંધ નહીં થાય.", + // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + // TODO New key - Add a translation + "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + // "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", "system-wide-alert-form.select-date-by-calendar": "કેલેન્ડરનો ઉપયોગ કરીને તારીખ પસંદ કરો", + // "system-wide-alert.form.label.preview": "System-wide alert preview", "system-wide-alert.form.label.preview": "સિસ્ટમ-વાઇડ એલર્ટ પૂર્વાવલોકન", + // "system-wide-alert.form.update.success": "The system-wide alert was successfully updated", "system-wide-alert.form.update.success": "સિસ્ટમ-વાઇડ એલર્ટ સફળતાપૂર્વક અપડેટ થયું", + // "system-wide-alert.form.update.error": "Something went wrong when updating the system-wide alert", "system-wide-alert.form.update.error": "સિસ્ટમ-વાઇડ એલર્ટ અપડેટ કરતી વખતે કંઈક ખોટું થયું", + // "system-wide-alert.form.create.success": "The system-wide alert was successfully created", "system-wide-alert.form.create.success": "સિસ્ટમ-વાઇડ એલર્ટ સફળતાપૂર્વક બનાવ્યું", + // "system-wide-alert.form.create.error": "Something went wrong when creating the system-wide alert", "system-wide-alert.form.create.error": "સિસ્ટમ-વાઇડ એલર્ટ બનાવતી વખતે કંઈક ખોટું થયું", + // "admin.system-wide-alert.breadcrumbs": "System-wide Alerts", "admin.system-wide-alert.breadcrumbs": "સિસ્ટમ-વાઇડ એલર્ટ", + // "admin.system-wide-alert.title": "System-wide Alerts", "admin.system-wide-alert.title": "સિસ્ટમ-વાઇડ એલર્ટ", + // "discover.filters.head": "Discover", "discover.filters.head": "શોધો", + // "item-access-control-title": "This form allows you to perform changes to the access conditions of the item's metadata or its bitstreams.", "item-access-control-title": "આ ફોર્મ તમને આઇટમના મેટાડેટા અથવા તેના બિટસ્ટ્રીમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે.", + // "collection-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by this collection. Changes may be performed to either all Item metadata or all content (bitstreams).", "collection-access-control-title": "આ ફોર્મ તમને આ સંગ્રહ દ્વારા માલિકી ધરાવતી બધી આઇટમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે. ફેરફારો બધી આઇટમ મેટાડેટા અથવા બધી સામગ્રી (બિટસ્ટ્રીમ્સ) પર કરવામાં આવી શકે છે.", + // "community-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by any collection under this community. Changes may be performed to either all Item metadata or all content (bitstreams).", "community-access-control-title": "આ ફોર્મ તમને આ સમુદાય હેઠળના કોઈપણ સંગ્રહ દ્વારા માલિકી ધરાવતી બધી આઇટમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે. ફેરફારો બધી આઇટમ મેટાડેટા અથવા બધી સામગ્રી (બિટસ્ટ્રીમ્સ) પર કરવામાં આવી શકે છે.", + // "access-control-item-header-toggle": "Item's Metadata", "access-control-item-header-toggle": "આઇટમના મેટાડેટા", + // "access-control-item-toggle.enable": "Enable option to perform changes on the item's metadata", "access-control-item-toggle.enable": "આઇટમના મેટાડેટા પર ફેરફારો કરવા માટે વિકલ્પ સક્રિય કરો", + // "access-control-item-toggle.disable": "Disable option to perform changes on the item's metadata", "access-control-item-toggle.disable": "આઇટમના મેટાડેટા પર ફેરફારો કરવા માટે વિકલ્પ નિષ્ક્રિય કરો", + // "access-control-bitstream-header-toggle": "Bitstreams", "access-control-bitstream-header-toggle": "બિટસ્ટ્રીમ્સ", + // "access-control-bitstream-toggle.enable": "Enable option to perform changes on the bitstreams", "access-control-bitstream-toggle.enable": "બિટસ્ટ્રીમ્સ પર ફેરફારો કરવા માટે વિકલ્પ સક્રિય કરો", + // "access-control-bitstream-toggle.disable": "Disable option to perform changes on the bitstreams", "access-control-bitstream-toggle.disable": "બિટસ્ટ્રીમ્સ પર ફેરફારો કરવા માટે વિકલ્પ નિષ્ક્રિય કરો", + // "access-control-mode": "Mode", "access-control-mode": "મોડ", + // "access-control-access-conditions": "Access conditions", "access-control-access-conditions": "ઍક્સેસ શરતો", + // "access-control-no-access-conditions-warning-message": "Currently, no access conditions are specified below. If executed, this will replace the current access conditions with the default access conditions inherited from the owning collection.", "access-control-no-access-conditions-warning-message": "હાલમાં, નીચે કોઈ ઍક્સેસ શરતો નિર્ધારિત નથી. જો અમલમાં મૂકવામાં આવે છે, તો તે વર્તમાન ઍક્સેસ શરતોને માલિકી ધરાવતી સંગ્રહમાંથી વારસામાં મળેલી ડિફોલ્ટ ઍક્સેસ શરતો સાથે બદલી દેશે.", + // "access-control-replace-all": "Replace access conditions", "access-control-replace-all": "ઍક્સેસ શરતો બદલો", + // "access-control-add-to-existing": "Add to existing ones", "access-control-add-to-existing": "મૌજૂદા શરતોમાં ઉમેરો", + // "access-control-limit-to-specific": "Limit the changes to specific bitstreams", "access-control-limit-to-specific": "ફેરફારોને ચોક્કસ બિટસ્ટ્રીમ્સ સુધી મર્યાદિત કરો", + // "access-control-process-all-bitstreams": "Update all the bitstreams in the item", "access-control-process-all-bitstreams": "આઇટમમાં બધી બિટસ્ટ્રીમ્સને અપડેટ કરો", + // "access-control-bitstreams-selected": "bitstreams selected", "access-control-bitstreams-selected": "પસંદ કરેલી બિટસ્ટ્રીમ્સ", + // "access-control-bitstreams-select": "Select bitstreams", "access-control-bitstreams-select": "બિટસ્ટ્રીમ્સ પસંદ કરો", + // "access-control-cancel": "Cancel", "access-control-cancel": "રદ કરો", + // "access-control-execute": "Execute", "access-control-execute": "અમલમાં મૂકો", + // "access-control-add-more": "Add more", "access-control-add-more": "વધુ ઉમેરો", + // "access-control-remove": "Remove access condition", "access-control-remove": "ઍક્સેસ શરત દૂર કરો", + // "access-control-select-bitstreams-modal.title": "Select bitstreams", "access-control-select-bitstreams-modal.title": "બિટસ્ટ્રીમ્સ પસંદ કરો", + // "access-control-select-bitstreams-modal.no-items": "No items to show.", "access-control-select-bitstreams-modal.no-items": "દેખાવ માટે કોઈ વસ્તુઓ નહોતી", + // "access-control-select-bitstreams-modal.close": "Close", "access-control-select-bitstreams-modal.close": "બંધ કરો", + // "access-control-option-label": "Access condition type", "access-control-option-label": "ઍક્સેસ શરત પ્રકાર", + // "access-control-option-note": "Choose an access condition to apply to selected objects.", "access-control-option-note": "પસંદ કરેલી વસ્તુઓ પર લાગુ કરવા માટે ઍક્સેસ શરત પસંદ કરો.", + // "access-control-option-start-date": "Grant access from", "access-control-option-start-date": "તારીખથી ઍક્સેસ આપો", + // "access-control-option-start-date-note": "Select the date from which the related access condition is applied", "access-control-option-start-date-note": "સંબંધિત ઍક્સેસ શરત લાગુ થતી તારીખ પસંદ કરો", + // "access-control-option-end-date": "Grant access until", "access-control-option-end-date": "તારીખ સુધી ઍક્સેસ આપો", + // "access-control-option-end-date-note": "Select the date until which the related access condition is applied", "access-control-option-end-date-note": "સંબંધિત ઍક્સેસ શરત લાગુ થતી તારીખ પસંદ કરો", + // "vocabulary-treeview.search.form.add": "Add", "vocabulary-treeview.search.form.add": "ઉમેરો", + // "admin.notifications.publicationclaim.breadcrumbs": "Publication Claim", "admin.notifications.publicationclaim.breadcrumbs": "પ્રકાશન દાવો", + // "admin.notifications.publicationclaim.page.title": "Publication Claim", "admin.notifications.publicationclaim.page.title": "પ્રકાશન દાવો", + // "coar-notify-support.title": "COAR Notify Protocol", "coar-notify-support.title": "COAR નોટિફાય પ્રોટોકોલ", - "coar-notify-support-title.content": "અહીં, અમે COAR નોટિફાય પ્રોટોકોલને સંપૂર્ણપણે સપોર્ટ કરીએ છીએ, જે રિપોઝિટરીઝ વચ્ચેના સંચારને વધારવા માટે ડિઝાઇન કરવામાં આવ્યું છે. COAR નોટિફાય પ્રોટોકોલ વિશે વધુ જાણવા માટે, COAR નોટિફાય વેબસાઇટ પર મુલાકાત લો.", + // "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + // TODO New key - Add a translation + "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + // "coar-notify-support.ldn-inbox.title": "LDN InBox", "coar-notify-support.ldn-inbox.title": "LDN ઇનબોક્સ", + // "coar-notify-support.ldn-inbox.content": "For your convenience, our LDN (Linked Data Notifications) InBox is easily accessible at {{ ldnInboxUrl }}. The LDN InBox enables seamless communication and data exchange, ensuring efficient and effective collaboration.", "coar-notify-support.ldn-inbox.content": "તમારી સુવિધા માટે, અમારી LDN (લિંક્ડ ડેટા નોટિફિકેશન્સ) ઇનબોક્સ સરળતાથી ઉપલબ્ધ છે {{ ldnInboxUrl }}. LDN ઇનબોક્સ સરળ સંચાર અને ડેટા વિનિમયને સક્ષમ બનાવે છે, સુનિશ્ચિત કરે છે કે કાર્યક્ષમ અને અસરકારક સહકાર.", + // "coar-notify-support.message-moderation.title": "Message Moderation", "coar-notify-support.message-moderation.title": "સંદેશ મૉડરેશન", + // "coar-notify-support.message-moderation.content": "To ensure a secure and productive environment, all incoming LDN messages are moderated. If you are planning to exchange information with us, kindly reach out via our dedicated", "coar-notify-support.message-moderation.content": "સુરક્ષિત અને ઉત્પાદક વાતાવરણ સુનિશ્ચિત કરવા માટે, બધી આવનારી LDN સંદેશાઓનું મૉડરેશન કરવામાં આવે છે. જો તમે અમારી સાથે માહિતી વિનિમય કરવાની યોજના બનાવી રહ્યા છો, તો કૃપા કરીને અમારા સમર્પિત ફીડબેક ફોર્મ દ્વારા સંપર્ક કરો.", + // "coar-notify-support.message-moderation.feedback-form": " Feedback form.", + // TODO New key - Add a translation + "coar-notify-support.message-moderation.feedback-form": " Feedback form.", + + // "service.overview.delete.header": "Delete Service", "service.overview.delete.header": "સેવા કાઢી નાખો", + // "ldn-registered-services.title": "Registered Services", "ldn-registered-services.title": "નોંધાયેલ સેવાઓ", - + // "ldn-registered-services.table.name": "Name", "ldn-registered-services.table.name": "નામ", - + // "ldn-registered-services.table.description": "Description", "ldn-registered-services.table.description": "વર્ણન", - + // "ldn-registered-services.table.status": "Status", "ldn-registered-services.table.status": "સ્થિતિ", - + // "ldn-registered-services.table.action": "Action", "ldn-registered-services.table.action": "ક્રિયા", - + // "ldn-registered-services.new": "NEW", "ldn-registered-services.new": "નવી", - + // "ldn-registered-services.new.breadcrumbs": "Registered Services", "ldn-registered-services.new.breadcrumbs": "નોંધાયેલ સેવાઓ", + // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "સક્રિય", - + // "ldn-service.overview.table.disabled": "Disabled", "ldn-service.overview.table.disabled": "નિષ્ક્રિય", - + // "ldn-service.overview.table.clickToEnable": "Click to enable", "ldn-service.overview.table.clickToEnable": "સક્રિય કરવા માટે ક્લિક કરો", - + // "ldn-service.overview.table.clickToDisable": "Click to disable", "ldn-service.overview.table.clickToDisable": "નિષ્ક્રિય કરવા માટે ક્લિક કરો", + // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "સેવા સંપાદિત કરો", - + // "ldn-create-service.title": "Create service", "ldn-create-service.title": "સેવા બનાવો", - + // "service.overview.create.modal": "Create Service", "service.overview.create.modal": "સેવા બનાવો", - + // "service.overview.create.body": "Please confirm the creation of this service.", "service.overview.create.body": "કૃપા કરીને આ સેવાની રચનાની પુષ્ટિ કરો.", - + // "ldn-service-status": "Status", "ldn-service-status": "સ્થિતિ", - + // "service.confirm.create": "Create", "service.confirm.create": "બનાવો", - + // "service.refuse.create": "Cancel", "service.refuse.create": "રદ કરો", - + // "ldn-register-new-service.title": "Register a new service", "ldn-register-new-service.title": "નવી સેવા નોંધો", - + // "ldn-new-service.form.label.submit": "Save", "ldn-new-service.form.label.submit": "સેવ", - + // "ldn-new-service.form.label.name": "Name", "ldn-new-service.form.label.name": "નામ", - + // "ldn-new-service.form.label.description": "Description", "ldn-new-service.form.label.description": "વર્ણન", - + // "ldn-new-service.form.label.url": "Service URL", "ldn-new-service.form.label.url": "સેવા URL", - + // "ldn-new-service.form.label.ip-range": "Service IP range", "ldn-new-service.form.label.ip-range": "સેવા IP શ્રેણી", - + // "ldn-new-service.form.label.score": "Level of trust", "ldn-new-service.form.label.score": "વિશ્વાસનું સ્તર", - + // "ldn-new-service.form.label.ldnUrl": "LDN Inbox URL", "ldn-new-service.form.label.ldnUrl": "LDN ઇનબોક્સ URL", - + // "ldn-new-service.form.placeholder.name": "Please provide service name", "ldn-new-service.form.placeholder.name": "કૃપા કરીને સેવાનું નામ આપો", - + // "ldn-new-service.form.placeholder.description": "Please provide a description regarding your service", "ldn-new-service.form.placeholder.description": "કૃપા કરીને તમારી સેવાના વિશે વર્ણન આપો", - + // "ldn-new-service.form.placeholder.url": "Please input the URL for users to check out more information about the service", "ldn-new-service.form.placeholder.url": "વપરાશકર્તાઓને સેવાની વધુ માહિતી તપાસવા માટે URL દાખલ કરો", - + // "ldn-new-service.form.placeholder.lowerIp": "IPv4 range lower bound", "ldn-new-service.form.placeholder.lowerIp": "IPv4 શ્રેણી નીચી સીમા", - + // "ldn-new-service.form.placeholder.upperIp": "IPv4 range upper bound", "ldn-new-service.form.placeholder.upperIp": "IPv4 શ્રેણી ઊંચી સીમા", - + // "ldn-new-service.form.placeholder.ldnUrl": "Please specify the URL of the LDN Inbox", "ldn-new-service.form.placeholder.ldnUrl": "કૃપા કરીને LDN ઇનબોક્સનો URL સ્પષ્ટ કરો", - + // "ldn-new-service.form.placeholder.score": "Please enter a value between 0 and 1. Use the “.” as decimal separator", "ldn-new-service.form.placeholder.score": "કૃપા કરીને 0 અને 1 વચ્ચેનું મૂલ્ય દાખલ કરો. દશાંશ વિભાજક તરીકે “.” નો ઉપયોગ કરો", - + // "ldn-service.form.label.placeholder.default-select": "Select a pattern", "ldn-service.form.label.placeholder.default-select": "પેટર્ન પસંદ કરો", + // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "સ્વીકારો અને મંજૂર કરો", - + // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", "ldn-service.form.pattern.ack-accept.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને મંજૂર કરવા માટે વપરાય છે. તે વિનંતી પર કાર્ય કરવાની મનોવૃત્તિ દર્શાવે છે.", - + // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-accept.category": "સ્વીકાર", + // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "સ્વીકારો અને નકારો", - + // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", "ldn-service.form.pattern.ack-reject.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને નકારવા માટે વપરાય છે. તે વિનંતી અંગે કોઈ વધુ ક્રિયા દર્શાવતું નથી.", - + // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-reject.category": "સ્વીકાર", + // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "સ્વીકારો અને તાત્કાલિક સ્વીકારો", - + // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", "ldn-service.form.pattern.ack-tentative-accept.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને તાત્કાલિક સ્વીકારવા માટે વપરાય છે. તે કાર્ય કરવાની મનોવૃત્તિ દર્શાવે છે, જે બદલાઈ શકે છે.", - + // "ldn-service.form.pattern.ack-tentative-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-accept.category": "સ્વીકાર", + // "ldn-service.form.pattern.ack-tentative-reject.label": "Acknowledge and Tentatively Reject", "ldn-service.form.pattern.ack-tentative-reject.label": "સ્વીકારો અને તાત્કાલિક નકારો", - + // "ldn-service.form.pattern.ack-tentative-reject.description": "This pattern is used to acknowledge and tentatively reject a request (offer). It signifies no further action, subject to change.", "ldn-service.form.pattern.ack-tentative-reject.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને તાત્કાલિક નકારવા માટે વપરાય છે. તે કોઈ વધુ ક્રિયા દર્શાવતું નથી, જે બદલાઈ શકે છે.", - + // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-reject.category": "સ્વીકાર", + // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "મંજૂરીની જાહેરાત કરો", - + // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", "ldn-service.form.pattern.announce-endorsement.description": "આ પેટર્ન મંજૂરીના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે મંજૂર સંસાધનને સંદર્ભ આપે છે.", - + // "ldn-service.form.pattern.announce-endorsement.category": "Announcements", "ldn-service.form.pattern.announce-endorsement.category": "જાહેરાત", + // "ldn-service.form.pattern.announce-ingest.label": "Announce Ingest", "ldn-service.form.pattern.announce-ingest.label": "ઇનજેસ્ટની જાહેરાત કરો", - + // "ldn-service.form.pattern.announce-ingest.description": "This pattern is used to announce that a resource has been ingested.", "ldn-service.form.pattern.announce-ingest.description": "આ પેટર્ન એ જાહેરાત કરવા માટે વપરાય છે કે સંસાધન ઇનજેસ્ટ કરવામાં આવ્યું છે.", - + // "ldn-service.form.pattern.announce-ingest.category": "Announcements", "ldn-service.form.pattern.announce-ingest.category": "જાહેરાત", + // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "સંબંધની જાહેરાત કરો", - + // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", "ldn-service.form.pattern.announce-relationship.description": "આ પેટર્ન બે સંસાધનો વચ્ચેના સંબંધની જાહેરાત કરવા માટે વપરાય છે.", - + // "ldn-service.form.pattern.announce-relationship.category": "Announcements", "ldn-service.form.pattern.announce-relationship.category": "જાહેરાત", + // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "સમીક્ષાની જાહેરાત કરો", - + // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", "ldn-service.form.pattern.announce-review.description": "આ પેટર્ન સમીક્ષાના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે સમીક્ષિત સંસાધનને સંદર્ભ આપે છે.", - + // "ldn-service.form.pattern.announce-review.category": "Announcements", "ldn-service.form.pattern.announce-review.category": "જાહેરાત", + // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "સેવા પરિણામની જાહેરાત કરો", - + // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", "ldn-service.form.pattern.announce-service-result.description": "આ પેટર્ન 'સેવા પરિણામ'ના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે સંબંધિત સંસાધનને સંદર્ભ આપે છે.", - + // "ldn-service.form.pattern.announce-service-result.category": "Announcements", "ldn-service.form.pattern.announce-service-result.category": "જાહેરાત", + // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "મંજૂરીની વિનંતી કરો", - + // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", "ldn-service.form.pattern.request-endorsement.description": "આ પેટર્ન મૂળ સિસ્ટમ દ્વારા માલિકી ધરાવતી સંસાધન માટે મંજૂરીની વિનંતી કરવા માટે વપરાય છે.", - + // "ldn-service.form.pattern.request-endorsement.category": "Requests", "ldn-service.form.pattern.request-endorsement.category": "વિનંતીઓ", + // "ldn-service.form.pattern.request-ingest.label": "Request Ingest", "ldn-service.form.pattern.request-ingest.label": "ઇનજેસ્ટની વિનંતી કરો", - + // "ldn-service.form.pattern.request-ingest.description": "This pattern is used to request that the target system ingest a resource.", "ldn-service.form.pattern.request-ingest.description": "આ પેટર્ન લક્ષ્ય સિસ્ટમને સંસાધન ઇનજેસ્ટ કરવાની વિનંતી કરવા માટે વપરાય છે.", - + // "ldn-service.form.pattern.request-ingest.category": "Requests", "ldn-service.form.pattern.request-ingest.category": "વિનંતીઓ", + // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "સમીક્ષાની વિનંતી કરો", - + // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", "ldn-service.form.pattern.request-review.description": "આ પેટર્ન મૂળ સિસ્ટમ દ્વારા માલિકી ધરાવતી સંસાધન માટે સમીક્ષાની વિનંતી કરવા માટે વપરાય છે.", - + // "ldn-service.form.pattern.request-review.category": "Requests", "ldn-service.form.pattern.request-review.category": "વિનંતીઓ", + // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "ઓફર રદ કરો", - + // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", "ldn-service.form.pattern.undo-offer.description": "આ પેટર્ન અગાઉ કરવામાં આવેલી ઓફરને રદ (પાછી ખેંચી) કરવા માટે વપરાય છે.", - + // "ldn-service.form.pattern.undo-offer.category": "Undo", "ldn-service.form.pattern.undo-offer.category": "રદ કરો", + // "ldn-new-service.form.label.placeholder.selectedItemFilter": "No Item Filter Selected", "ldn-new-service.form.label.placeholder.selectedItemFilter": "કોઈ આઇટમ ફિલ્ટર પસંદ કરેલ નથી", - + // "ldn-new-service.form.label.ItemFilter": "Item Filter", "ldn-new-service.form.label.ItemFilter": "આઇટમ ફિલ્ટર", - + // "ldn-new-service.form.label.automatic": "Automatic", "ldn-new-service.form.label.automatic": "સ્વચાલિત", - + // "ldn-new-service.form.error.name": "Name is required", "ldn-new-service.form.error.name": "નામ જરૂરી છે", - + // "ldn-new-service.form.error.url": "URL is required", "ldn-new-service.form.error.url": "URL જરૂરી છે", - + // "ldn-new-service.form.error.ipRange": "Please enter a valid IP range", "ldn-new-service.form.error.ipRange": "કૃપા કરીને માન્ય IP શ્રેણી દાખલ કરો", - - "ldn-new-service.form.hint.ipRange": "કૃપા કરીને બંને શ્રેણી સીમાઓમાં માન્ય IpV4 દાખલ કરો (નોંધ: એકલ IP માટે, કૃપા કરીને બંને ક્ષેત્રોમાં એક જ મૂલ્ય દાખલ કરો)", - + // "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", + // TODO New key - Add a translation + "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", + // "ldn-new-service.form.error.ldnurl": "LDN URL is required", "ldn-new-service.form.error.ldnurl": "LDN URL જરૂરી છે", - + // "ldn-new-service.form.error.patterns": "At least a pattern is required", "ldn-new-service.form.error.patterns": "ઓછામાં ઓછું એક પેટર્ન જરૂરી છે", - + // "ldn-new-service.form.error.score": "Please enter a valid score (between 0 and 1). Use the “.” as decimal separator", "ldn-new-service.form.error.score": "કૃપા કરીને માન્ય સ્કોર દાખલ કરો (0 અને 1 વચ્ચે). દશાંશ વિભાજક તરીકે “.” નો ઉપયોગ કરો", + // "ldn-new-service.form.label.inboundPattern": "Supported Pattern", "ldn-new-service.form.label.inboundPattern": "સપોર્ટેડ પેટર્ન", - + // "ldn-new-service.form.label.addPattern": "+ Add more", "ldn-new-service.form.label.addPattern": "+ વધુ ઉમેરો", - + // "ldn-new-service.form.label.removeItemFilter": "Remove", "ldn-new-service.form.label.removeItemFilter": "દૂર કરો", - + // "ldn-register-new-service.breadcrumbs": "New Service", "ldn-register-new-service.breadcrumbs": "નવી સેવા", - + // "service.overview.delete.body": "Are you sure you want to delete this service?", "service.overview.delete.body": "શું તમે ખરેખર આ સેવાને કાઢી નાખવા માંગો છો?", - + // "service.overview.edit.body": "Do you confirm the changes?", "service.overview.edit.body": "શું તમે ફેરફારોની પુષ્ટિ કરો છો?", - + // "service.overview.edit.modal": "Edit Service", "service.overview.edit.modal": "સેવા સંપાદિત કરો", - + // "service.detail.update": "Confirm", "service.detail.update": "પુષ્ટિ કરો", - + // "service.detail.return": "Cancel", "service.detail.return": "રદ કરો", - + // "service.overview.reset-form.body": "Are you sure you want to discard the changes and leave?", "service.overview.reset-form.body": "શું તમે ખરેખર ફેરફારોને રદ કરવા અને છોડી દેવા માંગો છો?", - + // "service.overview.reset-form.modal": "Discard Changes", "service.overview.reset-form.modal": "ફેરફારો રદ કરો", - + // "service.overview.reset-form.reset-confirm": "Discard", "service.overview.reset-form.reset-confirm": "રદ કરો", - + // "admin.registries.services-formats.modify.success.head": "Successful Edit", "admin.registries.services-formats.modify.success.head": "સફળ સંપાદન", - + // "admin.registries.services-formats.modify.success.content": "The service has been edited", "admin.registries.services-formats.modify.success.content": "સેવા સંપાદિત કરવામાં આવી છે", - + // "admin.registries.services-formats.modify.failure.head": "Failed Edit", "admin.registries.services-formats.modify.failure.head": "અસફળ સંપાદન", - + // "admin.registries.services-formats.modify.failure.content": "The service has not been edited", "admin.registries.services-formats.modify.failure.content": "સેવા સંપાદિત કરવામાં આવી નથી", - + // "ldn-service-notification.created.success.title": "Successful Create", "ldn-service-notification.created.success.title": "સફળ રચના", - + // "ldn-service-notification.created.success.body": "The service has been created", "ldn-service-notification.created.success.body": "સેવા બનાવવામાં આવી છે", - + // "ldn-service-notification.created.failure.title": "Failed Create", "ldn-service-notification.created.failure.title": "અસફળ રચના", - + // "ldn-service-notification.created.failure.body": "The service has not been created", "ldn-service-notification.created.failure.body": "સેવા બનાવવામાં આવી નથી", - + // "ldn-service-notification.created.warning.title": "Please select at least one Inbound Pattern", "ldn-service-notification.created.warning.title": "કૃપા કરીને ઓછામાં ઓછું એક ઇનબાઉન્ડ પેટર્ન પસંદ કરો", - + // "ldn-enable-service.notification.success.title": "Successful status updated", "ldn-enable-service.notification.success.title": "સફળ સ્થિતિ અપડેટ", - + // "ldn-enable-service.notification.success.content": "The service status has been updated", "ldn-enable-service.notification.success.content": "સેવા સ્થિતિ અપડેટ કરવામાં આવી છે", - + // "ldn-service-delete.notification.success.title": "Successful Deletion", "ldn-service-delete.notification.success.title": "સફળ કાઢી નાખવું", - + // "ldn-service-delete.notification.success.content": "The service has been deleted", "ldn-service-delete.notification.success.content": "સેવા કાઢી નાખવામાં આવી છે", - + // "ldn-service-delete.notification.error.title": "Failed Deletion", "ldn-service-delete.notification.error.title": "અસફળ કાઢી નાખવું", - + // "ldn-service-delete.notification.error.content": "The service has not been deleted", "ldn-service-delete.notification.error.content": "સેવા કાઢી નાખવામાં આવી નથી", - + // "service.overview.reset-form.reset-return": "Cancel", "service.overview.reset-form.reset-return": "રદ કરો", - + // "service.overview.delete": "Delete service", "service.overview.delete": "સેવા કાઢી નાખો", - + // "ldn-edit-service.title": "Edit service", "ldn-edit-service.title": "સેવા સંપાદિત કરો", - + // "ldn-edit-service.form.label.name": "Name", "ldn-edit-service.form.label.name": "નામ", - + // "ldn-edit-service.form.label.description": "Description", "ldn-edit-service.form.label.description": "વર્ણન", - + // "ldn-edit-service.form.label.url": "Service URL", "ldn-edit-service.form.label.url": "સેવા URL", - + // "ldn-edit-service.form.label.ldnUrl": "LDN Inbox URL", "ldn-edit-service.form.label.ldnUrl": "LDN ઇનબોક્સ URL", - + // "ldn-edit-service.form.label.inboundPattern": "Inbound Pattern", "ldn-edit-service.form.label.inboundPattern": "ઇનબાઉન્ડ પેટર્ન", - + // "ldn-edit-service.form.label.noInboundPatternSelected": "No Inbound Pattern", "ldn-edit-service.form.label.noInboundPatternSelected": "કોઈ ઇનબાઉન્ડ પેટર્ન નથી", - + // "ldn-edit-service.form.label.selectedItemFilter": "Selected Item Filter", "ldn-edit-service.form.label.selectedItemFilter": "પસંદ કરેલ આઇટમ ફિલ્ટર", - + // "ldn-edit-service.form.label.selectItemFilter": "No Item Filter", "ldn-edit-service.form.label.selectItemFilter": "કોઈ આઇટમ ફિલ્ટર નથી", - + // "ldn-edit-service.form.label.automatic": "Automatic", "ldn-edit-service.form.label.automatic": "સ્વચાલિત", - + // "ldn-edit-service.form.label.addInboundPattern": "+ Add more", "ldn-edit-service.form.label.addInboundPattern": "+ વધુ ઉમેરો", - + // "ldn-edit-service.form.label.submit": "Save", "ldn-edit-service.form.label.submit": "સેવ", - + // "ldn-edit-service.breadcrumbs": "Edit Service", "ldn-edit-service.breadcrumbs": "સેવા સંપાદિત કરો", - + // "ldn-service.control-constaint-select-none": "Select none", "ldn-service.control-constaint-select-none": "કોઈ પસંદ કરો", + // "ldn-register-new-service.notification.error.title": "Error", "ldn-register-new-service.notification.error.title": "ભૂલ", - + // "ldn-register-new-service.notification.error.content": "An error occurred while creating this process", "ldn-register-new-service.notification.error.content": "આ પ્રક્રિયા બનાવતી વખતે ભૂલ આવી", - + // "ldn-register-new-service.notification.success.title": "Success", "ldn-register-new-service.notification.success.title": "સફળતા", - + // "ldn-register-new-service.notification.success.content": "The process was successfully created", "ldn-register-new-service.notification.success.content": "પ્રક્રિયા સફળતાપૂર્વક બનાવવામાં આવી", - "submission.sections.notify.info": "વર્તમાન સ્થિતિ અનુસાર આ આઇટમ સાથે સુસંગત સેવા પસંદ કરેલ છે. {{ service.name }}: {{ service.description }}", + // "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + // TODO New key - Add a translation + "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + // "item.page.endorsement": "Endorsement", "item.page.endorsement": "મંજૂરી", + // "item.page.places": "Related places", "item.page.places": "સંબંધિત સ્થળો", + // "item.page.review": "Review", "item.page.review": "સમીક્ષા", + // "item.page.referenced": "Referenced By", "item.page.referenced": "સંદર્ભ આપેલ", + // "item.page.supplemented": "Supplemented By", "item.page.supplemented": "પૂરક", + // "menu.section.icon.ldn_services": "LDN Services overview", "menu.section.icon.ldn_services": "LDN સેવાઓની ઝાંખી", + // "menu.section.services": "LDN Services", "menu.section.services": "LDN સેવાઓ", + // "menu.section.services_new": "LDN Service", "menu.section.services_new": "LDN સેવા", + // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "નીચે તમે {{source}} માટે સબ્સ્ક્રિપ્શન્સમાંથી પ્રાપ્ત તમામ વિષયો જોઈ શકો છો", - + // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", "quality-assurance.events.description": "નીચે પસંદ કરેલા વિષય {{topic}} માટેની તમામ સૂચનાઓની યાદી છે, જે {{source}} સાથે સંબંધિત છે.", + // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "નીચે પસંદ કરેલા વિષય {{topic}} માટેની તમામ સૂચનાઓની યાદી છે, જે {{source}} અને", - "quality-assurance.event.table.event.message.serviceUrl": "અભિનયકર્તા:", + // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + // TODO New key - Add a translation + "quality-assurance.event.table.event.message.serviceUrl": "Actor:", - "quality-assurance.event.table.event.message.link": "લિંક:", + // "quality-assurance.event.table.event.message.link": "Link:", + // TODO New key - Add a translation + "quality-assurance.event.table.event.message.link": "Link:", + // "service.detail.delete.cancel": "Cancel", "service.detail.delete.cancel": "રદ કરો", + // "service.detail.delete.button": "Delete service", "service.detail.delete.button": "સેવા કાઢી નાખો", + // "service.detail.delete.header": "Delete service", "service.detail.delete.header": "સેવા કાઢી નાખો", + // "service.detail.delete.body": "Are you sure you want to delete the current service?", "service.detail.delete.body": "શું તમે ખરેખર વર્તમાન સેવાને કાઢી નાખવા માંગો છો?", + // "service.detail.delete.confirm": "Delete service", "service.detail.delete.confirm": "સેવા કાઢી નાખો", + // "service.detail.delete.success": "The service was successfully deleted.", "service.detail.delete.success": "સેવા સફળતાપૂર્વક કાઢી નાખવામાં આવી.", + // "service.detail.delete.error": "Something went wrong when deleting the service", "service.detail.delete.error": "સેવા કાઢી નાખતી વખતે કંઈક ખોટું થયું", + // "service.overview.table.id": "Services ID", "service.overview.table.id": "સેવાઓ ID", + // "service.overview.table.name": "Name", "service.overview.table.name": "નામ", + // "service.overview.table.start": "Start time (UTC)", "service.overview.table.start": "પ્રારંભ સમય (UTC)", + // "service.overview.table.status": "Status", "service.overview.table.status": "સ્થિતિ", + // "service.overview.table.user": "User", "service.overview.table.user": "વપરાશકર્તા", + // "service.overview.title": "Services Overview", "service.overview.title": "સેવાઓની ઝાંખી", + // "service.overview.breadcrumbs": "Services Overview", "service.overview.breadcrumbs": "સેવાઓની ઝાંખી", + // "service.overview.table.actions": "Actions", "service.overview.table.actions": "ક્રિયાઓ", + // "service.overview.table.description": "Description", "service.overview.table.description": "વર્ણન", + // "submission.sections.submit.progressbar.coarnotify": "COAR Notify", "submission.sections.submit.progressbar.coarnotify": "COAR નોટિફાય", + // "submission.section.section-coar-notify.control.request-review.label": "You can request a review to one of the following services", "submission.section.section-coar-notify.control.request-review.label": "તમે નીચેની સેવાઓમાંથી એક સમીક્ષા માટે વિનંતી કરી શકો છો", + // "submission.section.section-coar-notify.control.request-endorsement.label": "You can request an Endorsement to one of the following overlay journals", "submission.section.section-coar-notify.control.request-endorsement.label": "તમે નીચેના ઓવરલે જર્નલ્સમાંથી એક મંજૂરી માટે વિનંતી કરી શકો છો", + // "submission.section.section-coar-notify.control.request-ingest.label": "You can request to ingest a copy of your submission to one of the following services", "submission.section.section-coar-notify.control.request-ingest.label": "તમે નીચેની સેવાઓમાંથી એકને તમારી સબમિશનની નકલ ઇનજેસ્ટ કરવા માટે વિનંતી કરી શકો છો", + // "submission.section.section-coar-notify.dropdown.no-data": "No data available", "submission.section.section-coar-notify.dropdown.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", + // "submission.section.section-coar-notify.dropdown.select-none": "Select none", "submission.section.section-coar-notify.dropdown.select-none": "કોઈ પસંદ કરો", + // "submission.section.section-coar-notify.small.notification": "Select a service for {{ pattern }} of this item", "submission.section.section-coar-notify.small.notification": "આ આઇટમ માટે {{ pattern }} માટે સેવા પસંદ કરો", - "submission.section.section-coar-notify.selection.description": "પસંદ કરેલી સેવાની વર્ણન:", + // "submission.section.section-coar-notify.selection.description": "Selected service's description:", + // TODO New key - Add a translation + "submission.section.section-coar-notify.selection.description": "Selected service's description:", + // "submission.section.section-coar-notify.selection.no-description": "No further information is available", "submission.section.section-coar-notify.selection.no-description": "કોઈ વધુ માહિતી ઉપલબ્ધ નથી", + // "submission.section.section-coar-notify.notification.error": "The selected service is not suitable for the current item. Please check the description for details about which record can be managed by this service.", "submission.section.section-coar-notify.notification.error": "પસંદ કરેલી સેવા વર્તમાન આઇટમ માટે યોગ્ય નથી. કૃપા કરીને તે રેકોર્ડ વિશેની વિગતો તપાસો કે જે આ સેવા દ્વારા સંચાલિત થઈ શકે છે.", + // "submission.section.section-coar-notify.info.no-pattern": "No configurable patterns found.", "submission.section.section-coar-notify.info.no-pattern": "કોઈ રૂપરેખાંકિત પેટર્ન મળ્યા નથી.", + // "error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.", "error.validation.coarnotify.invalidfilter": "અમાન્ય ફિલ્ટર, કૃપા કરીને બીજી સેવા અથવા કોઈ પસંદ કરો.", + // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.", "request-status-alert-box.accepted": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} સ્વીકારવામાં આવી છે.", + // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} નકારી દેવામાં આવી છે.", + // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", "request-status-alert-box.tentative_rejected": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} તાત્કાલિક નકારી દેવામાં આવી છે. સુધારાઓ જરૂરી છે", + // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} પેન્ડિંગ છે.", + // "ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion", "ldn-service-button-mark-inbound-deletion": "માર્ક સપોર્ટેડ પેટર્ન માટે ડિલીશન", + // "ldn-service-button-unmark-inbound-deletion": "Unmark supported pattern for deletion", "ldn-service-button-unmark-inbound-deletion": "માર્ક સપોર્ટેડ પેટર્ન માટે અનમાર્ક", + // "ldn-service-input-inbound-item-filter-dropdown": "Select Item filter for the pattern", "ldn-service-input-inbound-item-filter-dropdown": "પેટર્ન માટે આઇટમ ફિલ્ટર પસંદ કરો", + // "ldn-service-input-inbound-pattern-dropdown": "Select a pattern for service", "ldn-service-input-inbound-pattern-dropdown": "સેવા માટે પેટર્ન પસંદ કરો", + // "ldn-service-overview-select-delete": "Select service for deletion", "ldn-service-overview-select-delete": "ડિલીશન માટે સેવા પસંદ કરો", + // "ldn-service-overview-select-edit": "Edit LDN service", "ldn-service-overview-select-edit": "LDN સેવા સંપાદિત કરો", + // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "મોડલ બંધ કરો", + // "ldn-service-usesActorEmailId": "Requires actor email in notifications", "ldn-service-usesActorEmailId": "સૂચનાઓમાં અભિનયકર્તા ઇમેઇલની જરૂર છે", + // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", "ldn-service-usesActorEmailId-description": "જો સક્રિય છે, તો પ્રારંભિક સૂચનાઓમાં સબમિટર ઇમેઇલ શામેલ હશે, રિપોઝિટરી URL ના બદલે. આ સામાન્ય રીતે મંજૂરી અથવા સમીક્ષા સેવાઓ માટે છે.", + // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "આઇટમ પ્રકાર જર્નલ આર્ટિકલ અથવા ડેટાસેટ છે", + // "always_true_filter.label": "Always true", "always_true_filter.label": "હંમેશા સાચું", + // "automatic_processing_collection_filter_16.label": "Automatic processing", "automatic_processing_collection_filter_16.label": "સ્વચાલિત પ્રક્રિયા", + // "dc-identifier-uri-contains-doi_condition.label": "URI contains DOI", "dc-identifier-uri-contains-doi_condition.label": "URI માં DOI શામેલ છે", + // "doi-filter.label": "DOI filter", "doi-filter.label": "DOI ફિલ્ટર", + // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "ડોક્યુમેન્ટ પ્રકાર ડ્રાઇવર સમાન છે", + // "has-at-least-one-bitstream_condition.label": "Has at least one Bitstream", "has-at-least-one-bitstream_condition.label": "ઓછામાં ઓછું એક બિટસ્ટ્રીમ છે", + // "has-bitstream_filter.label": "Has Bitstream", "has-bitstream_filter.label": "બિટસ્ટ્રીમ છે", + // "has-one-bitstream_condition.label": "Has one Bitstream", "has-one-bitstream_condition.label": "એક બિટસ્ટ્રીમ છે", + // "is-archived_condition.label": "Is archived", "is-archived_condition.label": "આર્કાઇવ્ડ છે", + // "is-withdrawn_condition.label": "Is withdrawn", "is-withdrawn_condition.label": "વિથડ્રોન છે", + // "item-is-public_condition.label": "Item is public", "item-is-public_condition.label": "આઇટમ જાહેર છે", + // "journals_ingest_suggestion_collection_filter_18.label": "Journals ingest", "journals_ingest_suggestion_collection_filter_18.label": "જર્નલ્સ ઇનજેસ્ટ", + // "title-starts-with-pattern_condition.label": "Title starts with pattern", "title-starts-with-pattern_condition.label": "શીર્ષક પેટર્ન સાથે શરૂ થાય છે", + // "type-equals-dataset_condition.label": "Type equals Dataset", "type-equals-dataset_condition.label": "પ્રકાર ડેટાસેટ સમાન છે", + // "type-equals-journal-article_condition.label": "Type equals Journal Article", "type-equals-journal-article_condition.label": "પ્રકાર જર્નલ આર્ટિકલ સમાન છે", + // "ldn.no-filter.label": "None", "ldn.no-filter.label": "કોઈ નથી", + // "admin.notify.dashboard": "Dashboard", "admin.notify.dashboard": "ડેશબોર્ડ", + // "menu.section.notify_dashboard": "Dashboard", "menu.section.notify_dashboard": "ડેશબોર્ડ", + // "menu.section.coar_notify": "COAR Notify", "menu.section.coar_notify": "COAR નોટિફાય", + // "admin-notify-dashboard.title": "Notify Dashboard", "admin-notify-dashboard.title": "નોટિફાય ડેશબોર્ડ", + // "admin-notify-dashboard.description": "The Notify dashboard monitor the general usage of the COAR Notify protocol across the repository. In the “Metrics” tab are statistics about usage of the COAR Notify protocol. In the “Logs/Inbound” and “Logs/Outbound” tabs it’s possible to search and check the individual status of each LDN message, either received or sent.", "admin-notify-dashboard.description": "નોટિફાય ડેશબોર્ડ રિપોઝિટરીમાં COAR નોટિફાય પ્રોટોકોલના સામાન્ય ઉપયોગની મોનિટર કરે છે. “મેટ્રિક્સ” ટેબમાં COAR નોટિફાય પ્રોટોકોલના ઉપયોગ વિશેના આંકડા છે. “લોગ્સ/ઇનબાઉન્ડ” અને “લોગ્સ/આઉટબાઉન્ડ” ટેબમાં દરેક LDN સંદેશાની વ્યક્તિગત સ્થિતિ તપાસવી અને શોધવી શક્ય છે, જે પ્રાપ્ત અથવા મોકલવામાં આવી છે.", + // "admin-notify-dashboard.metrics": "Metrics", "admin-notify-dashboard.metrics": "મેટ્રિક્સ", + // "admin-notify-dashboard.received-ldn": "Number of received LDN", "admin-notify-dashboard.received-ldn": "પ્રાપ્ત LDN ની સંખ્યા", + // "admin-notify-dashboard.generated-ldn": "Number of generated LDN", "admin-notify-dashboard.generated-ldn": "ઉત્પાદિત LDN ની સંખ્યા", + // "admin-notify-dashboard.NOTIFY.incoming.accepted": "Accepted", "admin-notify-dashboard.NOTIFY.incoming.accepted": "સ્વીકાર્યું", + // "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "Accepted inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "સ્વીકારેલ ઇનબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.incoming.accepted": "હાલમાં દર્શાવેલ: સ્વીકારેલ સૂચનાઓ", + // "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + // "admin-notify-dashboard.NOTIFY.incoming.processed": "Processed LDN", "admin-notify-dashboard.NOTIFY.incoming.processed": "પ્રક્રિયા કરેલ LDN", + // "admin-notify-dashboard.NOTIFY.incoming.processed.description": "Processed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.processed.description": "પ્રક્રિયા કરેલ ઇનબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.incoming.processed": "હાલમાં દર્શાવેલ: પ્રક્રિયા કરેલ LDN", + // "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", - "admin-notify-logs.NOTIFY.incoming.failure": "હાલમાં દર્શાવેલ: નિષ્ફળ સૂચનાઓ", + // "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + // "admin-notify-dashboard.NOTIFY.incoming.failure": "Failure", "admin-notify-dashboard.NOTIFY.incoming.failure": "નિષ્ફળ", + // "admin-notify-dashboard.NOTIFY.incoming.failure.description": "Failed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.failure.description": "નિષ્ફળ ઇનબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.outgoing.failure": "હાલમાં દર્શાવેલ: નિષ્ફળ સૂચનાઓ", + // "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.failure": "Failure", "admin-notify-dashboard.NOTIFY.outgoing.failure": "નિષ્ફળ", + // "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "Failed outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "નિષ્ફળ આઉટબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.incoming.untrusted": "હાલમાં દર્શાવેલ: અવિશ્વસનીય સૂચનાઓ", + // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "અવિશ્વસનીય", + // "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "Inbound notifications not trusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "અવિશ્વસનીય ઇનબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.incoming.delivered": "હાલમાં દર્શાવેલ: પહોંચાડેલ સૂચનાઓ", + // "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + // "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "Inbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "સફળતાપૂર્વક પહોંચાડેલ ઇનબાઉન્ડ સૂચનાઓ", + // "admin-notify-dashboard.NOTIFY.outgoing.delivered": "Delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered": "પહોંચાડેલ", - "admin-notify-logs.NOTIFY.outgoing.delivered": "હાલમાં દર્શાવેલ: પહોંચાડેલ સૂચનાઓ", + // "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "Outbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "સફળતાપૂર્વક પહોંચાડેલ આઉટબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.outgoing.queued": "હાલમાં દર્શાવેલ: કતારમાં સૂચનાઓ", + // "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "Notifications currently queued", "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "હાલમાં કતારમાં સૂચનાઓ", + // "admin-notify-dashboard.NOTIFY.outgoing.queued": "Queued", "admin-notify-dashboard.NOTIFY.outgoing.queued": "કતારમાં", - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "હાલમાં દર્શાવેલ: પુનઃપ્રયાસ માટે કતારમાં સૂચનાઓ", + // "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "Queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "પુનઃપ્રયાસ માટે કતારમાં", + // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "Notifications currently queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "હાલમાં પુનઃપ્રયાસ માટે કતારમાં સૂચનાઓ", + // "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "સંબંધિત આઇટમ્સ", + // "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "Items related to inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "ઇનબાઉન્ડ સૂચનાઓ સાથે સંબંધિત આઇટમ્સ", + // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "સંબંધિત આઇટમ્સ", + // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "Items related to outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "આઉટબાઉન્ડ સૂચનાઓ સાથે સંબંધિત આઇટમ્સ", + // "admin.notify.dashboard.breadcrumbs": "Dashboard", "admin.notify.dashboard.breadcrumbs": "ડેશબોર્ડ", + // "admin.notify.dashboard.inbound": "Inbound messages", "admin.notify.dashboard.inbound": "ઇનબાઉન્ડ સંદેશાઓ", + // "admin.notify.dashboard.inbound-logs": "Logs/Inbound", "admin.notify.dashboard.inbound-logs": "લોગ્સ/ઇનબાઉન્ડ", - "admin.notify.dashboard.filter": "ફિલ્ટર: ", + // "admin.notify.dashboard.filter": "Filter: ", + // TODO New key - Add a translation + "admin.notify.dashboard.filter": "Filter: ", + // "search.filters.applied.f.relateditem": "Related items", "search.filters.applied.f.relateditem": "સંબંધિત આઇટમ્સ", + // "search.filters.applied.f.ldn_service": "LDN Service", "search.filters.applied.f.ldn_service": "LDN સેવા", + // "search.filters.applied.f.notifyReview": "Notify Review", "search.filters.applied.f.notifyReview": "નોટિફાય સમીક્ષા", + // "search.filters.applied.f.notifyEndorsement": "Notify Endorsement", "search.filters.applied.f.notifyEndorsement": "નોટિફાય મંજૂરી", + // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "નોટિફાય સંબંધ", + // "search.filters.applied.f.access_status": "Access type", "search.filters.applied.f.access_status": "ઍક્સેસ પ્રકાર", + // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "છેલ્લી પ્રક્રિયા સમય ", + // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "ન્યૂનતમ શ્રેણી", + // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "મહત્તમ શ્રેણી", + // "search.filters.applied.f.queue_last_start_time.min": "Min range", "search.filters.applied.f.queue_last_start_time.min": "ન્યૂનતમ શ્રેણી", + // "search.filters.applied.f.queue_last_start_time.max": "Max range", "search.filters.applied.f.queue_last_start_time.max": "મહત્તમ શ્રેણી", + // "admin.notify.dashboard.outbound": "Outbound messages", "admin.notify.dashboard.outbound": "આઉટબાઉન્ડ સંદેશાઓ", + // "admin.notify.dashboard.outbound-logs": "Logs/Outbound", "admin.notify.dashboard.outbound-logs": "લોગ્સ/આઉટબાઉન્ડ", + // "NOTIFY.incoming.search.results.head": "Incoming", "NOTIFY.incoming.search.results.head": "ઇનબાઉન્ડ", + // "search.filters.filter.relateditem.head": "Related item", "search.filters.filter.relateditem.head": "સંબંધિત આઇટમ", + // "search.filters.filter.origin.head": "Origin", "search.filters.filter.origin.head": "મૂળ", + // "search.filters.filter.ldn_service.head": "LDN Service", "search.filters.filter.ldn_service.head": "LDN સેવા", + // "search.filters.filter.target.head": "Target", "search.filters.filter.target.head": "લક્ષ્ય", + // "search.filters.filter.queue_status.head": "Queue status", "search.filters.filter.queue_status.head": "કતાર સ્થિતિ", + // "search.filters.filter.activity_stream_type.head": "Activity stream type", "search.filters.filter.activity_stream_type.head": "પ્રવાહ પ્રકાર", + // "search.filters.filter.coar_notify_type.head": "COAR Notify type", "search.filters.filter.coar_notify_type.head": "COAR નોટિફાય પ્રકાર", + // "search.filters.filter.notification_type.head": "Notification type", "search.filters.filter.notification_type.head": "સૂચના પ્રકાર", + // "search.filters.filter.relateditem.label": "Search related items", "search.filters.filter.relateditem.label": "સંબંધિત આઇટમ્સ માટે શોધો", + // "search.filters.filter.queue_status.label": "Search queue status", "search.filters.filter.queue_status.label": "કતાર સ્થિતિ માટે શોધો", + // "search.filters.filter.target.label": "Search target", "search.filters.filter.target.label": "લક્ષ્ય માટે શોધો", + // "search.filters.filter.activity_stream_type.label": "Search activity stream type", "search.filters.filter.activity_stream_type.label": "પ્રવાહ પ્રકાર માટે શોધો", + // "search.filters.applied.f.queue_status": "Queue Status", "search.filters.applied.f.queue_status": "કતાર સ્થિતિ", + // "search.filters.queue_status.0,authority": "Untrusted Ip", "search.filters.queue_status.0,authority": "અવિશ્વસનીય Ip", + // "search.filters.queue_status.1,authority": "Queued", "search.filters.queue_status.1,authority": "કતારમાં", + // "search.filters.queue_status.2,authority": "Processing", "search.filters.queue_status.2,authority": "પ્રક્રિયા", + // "search.filters.queue_status.3,authority": "Processed", "search.filters.queue_status.3,authority": "પ્રક્રિયા કરેલ", + // "search.filters.queue_status.4,authority": "Failed", "search.filters.queue_status.4,authority": "નિષ્ફળ", + // "search.filters.queue_status.5,authority": "Untrusted", "search.filters.queue_status.5,authority": "અવિશ્વસનીય", + // "search.filters.queue_status.6,authority": "Unmapped Action", "search.filters.queue_status.6,authority": "અનમૅપ્ડ ક્રિયા", + // "search.filters.queue_status.7,authority": "Queued for retry", "search.filters.queue_status.7,authority": "પુનઃપ્રયાસ માટે કતારમાં", + // "search.filters.applied.f.activity_stream_type": "Activity stream type", "search.filters.applied.f.activity_stream_type": "પ્રવાહ પ્રકાર", + // "search.filters.applied.f.coar_notify_type": "COAR Notify type", "search.filters.applied.f.coar_notify_type": "COAR નોટિફાય પ્રકાર", + // "search.filters.applied.f.notification_type": "Notification type", "search.filters.applied.f.notification_type": "સૂચના પ્રકાર", + // "search.filters.filter.coar_notify_type.label": "Search COAR Notify type", "search.filters.filter.coar_notify_type.label": "COAR નોટિફાય પ્રકાર માટે શોધો", + // "search.filters.filter.notification_type.label": "Search notification type", "search.filters.filter.notification_type.label": "સૂચના પ્રકાર માટે શોધો", + // "search.filters.filter.relateditem.placeholder": "Related items", "search.filters.filter.relateditem.placeholder": "સંબંધિત આઇટમ્સ", + // "search.filters.filter.target.placeholder": "Target", "search.filters.filter.target.placeholder": "લક્ષ્ય", + // "search.filters.filter.origin.label": "Search source", "search.filters.filter.origin.label": "મૂળ માટે શોધો", + // "search.filters.filter.origin.placeholder": "Source", "search.filters.filter.origin.placeholder": "મૂળ", + // "search.filters.filter.ldn_service.label": "Search LDN Service", "search.filters.filter.ldn_service.label": "LDN સેવા માટે શોધો", + // "search.filters.filter.ldn_service.placeholder": "LDN Service", "search.filters.filter.ldn_service.placeholder": "LDN સેવા", + // "search.filters.filter.queue_status.placeholder": "Queue status", "search.filters.filter.queue_status.placeholder": "કતાર સ્થિતિ", + // "search.filters.filter.activity_stream_type.placeholder": "Activity stream type", "search.filters.filter.activity_stream_type.placeholder": "પ્રવાહ પ્રકાર", + // "search.filters.filter.coar_notify_type.placeholder": "COAR Notify type", "search.filters.filter.coar_notify_type.placeholder": "COAR નોટિફાય પ્રકાર", + // "search.filters.filter.notification_type.placeholder": "Notification", "search.filters.filter.notification_type.placeholder": "સૂચના", + // "search.filters.filter.notifyRelation.head": "Notify Relation", "search.filters.filter.notifyRelation.head": "નોટિફાય સંબંધ", + // "search.filters.filter.notifyRelation.label": "Search Notify Relation", "search.filters.filter.notifyRelation.label": "નોટિફાય સંબંધ માટે શોધો", + // "search.filters.filter.notifyRelation.placeholder": "Notify Relation", "search.filters.filter.notifyRelation.placeholder": "નોટિફાય સંબંધ", + // "search.filters.filter.notifyReview.head": "Notify Review", "search.filters.filter.notifyReview.head": "નોટિફાય સમીક્ષા", + // "search.filters.filter.notifyReview.label": "Search Notify Review", "search.filters.filter.notifyReview.label": "નોટિફાય સમીક્ષા માટે શોધો", + // "search.filters.filter.notifyReview.placeholder": "Notify Review", "search.filters.filter.notifyReview.placeholder": "નોટિફાય સમીક્ષા", + // "search.filters.coar_notify_type.coar-notify:ReviewAction": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction": "સમીક્ષા ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "સમીક્ષા ક્રિયા", + // "notify-detail-modal.coar-notify:ReviewAction": "Review action", "notify-detail-modal.coar-notify:ReviewAction": "સમીક્ષા ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:EndorsementAction": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction": "મંજૂરી ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "મંજૂરી ક્રિયા", + // "notify-detail-modal.coar-notify:EndorsementAction": "Endorsement action", "notify-detail-modal.coar-notify:EndorsementAction": "મંજૂરી ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:IngestAction": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction": "ઇનજેસ્ટ ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ઇનજેસ્ટ ક્રિયા", + // "notify-detail-modal.coar-notify:IngestAction": "Ingest action", "notify-detail-modal.coar-notify:IngestAction": "ઇનજેસ્ટ ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:RelationshipAction": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction": "સંબંધ ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "સંબંધ ક્રિયા", + // "notify-detail-modal.coar-notify:RelationshipAction": "Relationship action", "notify-detail-modal.coar-notify:RelationshipAction": "સંબંધ ક્રિયા", + // "search.filters.queue_status.QUEUE_STATUS_QUEUED": "Queued", "search.filters.queue_status.QUEUE_STATUS_QUEUED": "કતારમાં", + // "notify-detail-modal.QUEUE_STATUS_QUEUED": "Queued", "notify-detail-modal.QUEUE_STATUS_QUEUED": "કતારમાં", + // "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "પુનઃપ્રયાસ માટે કતારમાં", + // "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "પુનઃપ્રયાસ માટે કતારમાં", + // "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "Processing", "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "પ્રક્રિયા", + // "notify-detail-modal.QUEUE_STATUS_PROCESSING": "Processing", "notify-detail-modal.QUEUE_STATUS_PROCESSING": "પ્રક્રિયા", + // "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "Processed", "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "પ્રક્રિયા કરેલ", + // "notify-detail-modal.QUEUE_STATUS_PROCESSED": "Processed", "notify-detail-modal.QUEUE_STATUS_PROCESSED": "પ્રક્રિયા કરેલ", + // "search.filters.queue_status.QUEUE_STATUS_FAILED": "Failed", "search.filters.queue_status.QUEUE_STATUS_FAILED": "નિષ્ફળ", + // "notify-detail-modal.QUEUE_STATUS_FAILED": "Failed", "notify-detail-modal.QUEUE_STATUS_FAILED": "નિષ્ફળ", + // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "Untrusted", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "અવિશ્વસનીય", + // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "અવિશ્વસનીય Ip", + // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "Untrusted", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "અવિશ્વસનીય", + // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "અવિશ્વસનીય Ip", + // "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "અનમૅપ્ડ ક્રિયા", + // "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "અનમૅપ્ડ ક્રિયા", + // "sorting.queue_last_start_time.DESC": "Last started queue Descending", "sorting.queue_last_start_time.DESC": "છેલ્લી શરૂ થયેલી કતાર ઉતરતી ક્રમમાં", + // "sorting.queue_last_start_time.ASC": "Last started queue Ascending", "sorting.queue_last_start_time.ASC": "છેલ્લી શરૂ થયેલી કતાર ચડતી ક્રમમાં", + // "sorting.queue_attempts.DESC": "Queue attempted Descending", "sorting.queue_attempts.DESC": "કતાર પ્રયાસ ઉતરતી ક્રમમાં", + // "sorting.queue_attempts.ASC": "Queue attempted Ascending", "sorting.queue_attempts.ASC": "કતાર પ્રયાસ ચડતી ક્રમમાં", + // "NOTIFY.incoming.involvedItems.search.results.head": "Items involved in incoming LDN", "NOTIFY.incoming.involvedItems.search.results.head": "ઇનબાઉન્ડ LDN માં સંકળાયેલા આઇટમ્સ", + // "NOTIFY.outgoing.involvedItems.search.results.head": "Items involved in outgoing LDN", "NOTIFY.outgoing.involvedItems.search.results.head": "આઉટબાઉન્ડ LDN માં સંકળાયેલા આઇટમ્સ", + // "type.notify-detail-modal": "Type", "type.notify-detail-modal": "પ્રકાર", + // "id.notify-detail-modal": "Id", "id.notify-detail-modal": "Id", + // "coarNotifyType.notify-detail-modal": "COAR Notify type", "coarNotifyType.notify-detail-modal": "COAR નોટિફાય પ્રકાર", + // "activityStreamType.notify-detail-modal": "Activity stream type", "activityStreamType.notify-detail-modal": "પ્રવાહ પ્રકાર", + // "inReplyTo.notify-detail-modal": "In reply to", "inReplyTo.notify-detail-modal": "જવાબમાં", + // "object.notify-detail-modal": "Repository Item", "object.notify-detail-modal": "રિપોઝિટરી આઇટમ", + // "context.notify-detail-modal": "Repository Item", "context.notify-detail-modal": "રિપોઝિટરી આઇટમ", + // "queueAttempts.notify-detail-modal": "Queue attempts", "queueAttempts.notify-detail-modal": "કતાર પ્રયાસ", + // "queueLastStartTime.notify-detail-modal": "Queue last started", "queueLastStartTime.notify-detail-modal": "છેલ્લી કતાર શરૂ", + // "origin.notify-detail-modal": "LDN Service", "origin.notify-detail-modal": "LDN સેવા", + // "target.notify-detail-modal": "LDN Service", "target.notify-detail-modal": "LDN સેવા", + // "queueStatusLabel.notify-detail-modal": "Queue status", "queueStatusLabel.notify-detail-modal": "કતાર સ્થિતિ", + // "queueTimeout.notify-detail-modal": "Queue timeout", "queueTimeout.notify-detail-modal": "કતાર સમયમર્યાદા", + // "notify-message-modal.title": "Message Detail", "notify-message-modal.title": "સંદેશ વિગત", + // "notify-message-modal.show-message": "Show message", "notify-message-modal.show-message": "સંદેશ બતાવો", + // "notify-message-result.timestamp": "Timestamp", "notify-message-result.timestamp": "ટાઇમસ્ટેમ્પ", + // "notify-message-result.repositoryItem": "Repository Item", "notify-message-result.repositoryItem": "રિપોઝિટરી આઇટમ", + // "notify-message-result.ldnService": "LDN Service", "notify-message-result.ldnService": "LDN સેવા", + // "notify-message-result.type": "Type", "notify-message-result.type": "પ્રકાર", + // "notify-message-result.status": "Status", "notify-message-result.status": "સ્થિતિ", + // "notify-message-result.action": "Action", "notify-message-result.action": "ક્રિયા", + // "notify-message-result.detail": "Detail", "notify-message-result.detail": "વિગત", + // "notify-message-result.reprocess": "Reprocess", "notify-message-result.reprocess": "ફરીથી પ્રક્રિયા", + // "notify-queue-status.processed": "Processed", "notify-queue-status.processed": "પ્રક્રિયા કરેલ", + // "notify-queue-status.failed": "Failed", "notify-queue-status.failed": "નિષ્ફળ", + // "notify-queue-status.queue_retry": "Queued for retry", "notify-queue-status.queue_retry": "પુનઃપ્રયાસ માટે કતારમાં", + // "notify-queue-status.unmapped_action": "Unmapped action", "notify-queue-status.unmapped_action": "અનમૅપ્ડ ક્રિયા", + // "notify-queue-status.processing": "Processing", "notify-queue-status.processing": "પ્રક્રિયા", + // "notify-queue-status.queued": "Queued", "notify-queue-status.queued": "કતારમાં", + // "notify-queue-status.untrusted": "Untrusted", "notify-queue-status.untrusted": "અવિશ્વસનીય", + // "ldnService.notify-detail-modal": "LDN Service", "ldnService.notify-detail-modal": "LDN સેવા", + // "relatedItem.notify-detail-modal": "Related Item", "relatedItem.notify-detail-modal": "સંબંધિત આઇટમ", + // "search.filters.filter.notifyEndorsement.head": "Notify Endorsement", "search.filters.filter.notifyEndorsement.head": "નોટિફાય મંજૂરી", + // "search.filters.filter.notifyEndorsement.placeholder": "Notify Endorsement", "search.filters.filter.notifyEndorsement.placeholder": "નોટિફાય મંજૂરી", + // "search.filters.filter.notifyEndorsement.label": "Search Notify Endorsement", "search.filters.filter.notifyEndorsement.label": "નોટિફાય મંજૂરી માટે શોધો", + // "form.date-picker.placeholder.year": "Year", "form.date-picker.placeholder.year": "વર્ષ", + // "form.date-picker.placeholder.month": "Month", "form.date-picker.placeholder.month": "મહિનો", + // "form.date-picker.placeholder.day": "Day", "form.date-picker.placeholder.day": "દિવસ", + // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "ક્રિએટિવ કોમન્સ લાઇસન્સ", + // "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as", "item.page.cc.license.disclaimer": "જ્યાં અન્યથા નોંધાયેલ નથી, ત્યાં આ આઇટમનું લાઇસન્સ આ પ્રમાણે વર્ણવવામાં આવ્યું છે", + // "browse.search-form.placeholder": "Search the repository", "browse.search-form.placeholder": "રિપોઝિટરી શોધો", + // "file-download-link.download": "Download ", "file-download-link.download": "ડાઉનલોડ કરો", + // "register-page.registration.aria.label": "Enter your e-mail address", "register-page.registration.aria.label": "તમારો ઇમેઇલ સરનામું દાખલ કરો", + // "forgot-email.form.aria.label": "Enter your e-mail address", "forgot-email.form.aria.label": "તમારો ઇમેઇલ સરનામું દાખલ કરો", + // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "પેજ ફરીથી લોડ થશે. ફિલ્ટર {{ filter }} પસંદ કરેલ છે.", + // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", "live-region.ordering.instructions": "પુનઃક્રમમાં ગોઠવવા માટે સ્પેસબાર દબાવો {{ itemName }}.", - "live-region.ordering.status": "{{ itemName }}, પકડ્યું. સૂચિમાં વર્તમાન સ્થિતિ: {{ index }} માંથી {{ length }}. સ્થિતિ બદલવા માટે ઉપર અને નીચેના તીર કીઓ દબાવો, છોડવા માટે સ્પેસબાર દબાવો, રદ કરવા માટે એસ્કેપ દબાવો.", + // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + // TODO New key - Add a translation + "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", "live-region.ordering.moved": "{{ itemName }}, સ્થિતિમાં ખસેડ્યું {{ index }} માંથી {{ length }}. સ્થિતિ બદલવા માટે ઉપર અને નીચેના તીર કીઓ દબાવો, છોડવા માટે સ્પેસબાર દબાવો, રદ કરવા માટે એસ્કેપ દબાવો.", + // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", "live-region.ordering.dropped": "{{ itemName }}, સ્થિતિમાં છોડ્યું {{ index }} માંથી {{ length }}.", + // "dynamic-form-array.sortable-list.label": "Sortable list", "dynamic-form-array.sortable-list.label": "સૉર્ટેબલ સૂચિ", + // "external-login.component.or": "or", "external-login.component.or": "અથવા", + // "external-login.confirmation.header": "Information needed to complete the login process", "external-login.confirmation.header": "લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે માહિતી જરૂરી છે", + // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", "external-login.noEmail.informationText": "{{authMethod}} માંથી પ્રાપ્ત માહિતી લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે પૂરતી નથી. કૃપા કરીને નીચેની ગુમ થયેલી માહિતી આપો, અથવા {{authMethod}} ને મોજુદા ખાતા સાથે જોડવા માટે અલગ પદ્ધતિથી લૉગિન કરો.", + // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", "external-login.haveEmail.informationText": "તમારા પાસે હજી સુધી આ સિસ્ટમમાં એકાઉન્ટ નથી એવું લાગે છે. જો એવું હોય, તો કૃપા કરીને {{authMethod}} માંથી પ્રાપ્ત ડેટાની પુષ્ટિ કરો અને તમારા માટે નવું એકાઉન્ટ બનાવવામાં આવશે. અન્યથા, જો તમારી પાસે પહેલેથી જ સિસ્ટમમાં એકાઉન્ટ છે, તો કૃપા કરીને ઇમેઇલ સરનામું અપડેટ કરો જેથી તે સિસ્ટમમાં પહેલેથી જ ઉપયોગમાં લેવાતા સરનામા સાથે મેળ ખાતું હોય અથવા તમારા મોજુદા ખાતા સાથે {{authMethod}} ને જોડવા માટે અલગ પદ્ધતિથી લૉગિન કરો.", + // "external-login.confirm-email.header": "Confirm or update email", "external-login.confirm-email.header": "ઇમેઇલની પુષ્ટિ કરો અથવા અપડેટ કરો", + // "external-login.confirmation.email-required": "Email is required.", "external-login.confirmation.email-required": "ઇમેઇલ જરૂરી છે.", + // "external-login.confirmation.email-label": "User Email", "external-login.confirmation.email-label": "વપરાશકર્તા ઇમેઇલ", + // "external-login.confirmation.email-invalid": "Invalid email format.", "external-login.confirmation.email-invalid": "અમાન્ય ઇમેઇલ ફોર્મેટ.", + // "external-login.confirm.button.label": "Confirm this email", "external-login.confirm.button.label": "આ ઇમેઇલની પુષ્ટિ કરો", + // "external-login.confirm-email-sent.header": "Confirmation email sent", "external-login.confirm-email-sent.header": "પુષ્ટિ ઇમેઇલ મોકલવામાં આવ્યું", + // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", "external-login.confirm-email-sent.info": "અમે આપેલા સરનામે ઇમેઇલ મોકલ્યો છે.
લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે ઇમેઇલમાં આપેલા સૂચનોનું અનુસરણ કરો.", + // "external-login.provide-email.header": "Provide email", "external-login.provide-email.header": "ઇમેઇલ આપો", + // "external-login.provide-email.button.label": "Send Verification link", "external-login.provide-email.button.label": "પુષ્ટિ લિંક મોકલો", + // "external-login-validation.review-account-info.header": "Review your account information", "external-login-validation.review-account-info.header": "તમારી ખાતાની માહિતી સમીક્ષા કરો", + // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", "external-login-validation.review-account-info.info": "ORCID માંથી પ્રાપ્ત માહિતી તમારી પ્રોફાઇલમાં નોંધાયેલ માહિતીથી અલગ છે.
કૃપા કરીને તેમને સમીક્ષા કરો અને નક્કી કરો કે તમે તેમાંના કોઈને અપડેટ કરવા માંગો છો કે નહીં. સાચવ્યા પછી તમને તમારી પ્રોફાઇલ પેજ પર રીડાયરેક્ટ કરવામાં આવશે.", + // "external-login-validation.review-account-info.table.header.information": "Information", "external-login-validation.review-account-info.table.header.information": "માહિતી", + // "external-login-validation.review-account-info.table.header.received-value": "Received value", "external-login-validation.review-account-info.table.header.received-value": "પ્રાપ્ત મૂલ્ય", + // "external-login-validation.review-account-info.table.header.current-value": "Current value", "external-login-validation.review-account-info.table.header.current-value": "વર્તમાન મૂલ્ય", + // "external-login-validation.review-account-info.table.header.action": "Override", "external-login-validation.review-account-info.table.header.action": "ઓવરરાઇડ", + // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", "external-login-validation.review-account-info.table.row.not-applicable": "લાગુ નથી", + // "on-label": "ON", "on-label": "ચાલુ", + // "off-label": "OFF", "off-label": "બંધ", + // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", "review-account-info.merge-data.notification.success": "તમારી ખાતાની માહિતી સફળતાપૂર્વક અપડેટ કરવામાં આવી છે", + // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", "review-account-info.merge-data.notification.error": "તમારી ખાતાની માહિતી અપડેટ કરતી વખતે કંઈક ખોટું થયું", + // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", "review-account-info.alert.error.content": "કંઈક ખોટું થયું. કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", + // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", "external-login-page.provide-email.notifications.error": "કંઈક ખોટું થયું. ઇમેઇલ સરનામું છોડી દેવામાં આવ્યું છે અથવા ઓપરેશન માન્ય નથી.", + // "external-login.error.notification": "There was an error while processing your request. Please try again later.", "external-login.error.notification": "તમારી વિનંતી પ્રક્રિયા કરતી વખતે ભૂલ આવી. કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", + // "external-login.connect-to-existing-account.label": "Connect to an existing user", "external-login.connect-to-existing-account.label": "મોજુદા વપરાશકર્તા સાથે જોડો", + // "external-login.modal.label.close": "Close", "external-login.modal.label.close": "બંધ કરો", + // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", "external-login-page.provide-email.create-account.notifications.error.header": "કંઈક ખોટું થયું", + // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", "external-login-page.provide-email.create-account.notifications.error.content": "કૃપા કરીને તમારું ઇમેઇલ સરનામું ફરીથી તપાસો અને ફરી પ્રયાસ કરો.", + // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", "external-login-page.confirm-email.create-account.notifications.error.no-netId": "આ ઇમેઇલ ખાતા સાથે કંઈક ખોટું થયું. ફરી પ્રયાસ કરો અથવા લૉગિન માટે અલગ પદ્ધતિનો ઉપયોગ કરો.", + // "external-login-page.orcid-confirmation.firstname": "First name", "external-login-page.orcid-confirmation.firstname": "પ્રથમ નામ", + // "external-login-page.orcid-confirmation.firstname.label": "First name", "external-login-page.orcid-confirmation.firstname.label": "પ્રથમ નામ", + // "external-login-page.orcid-confirmation.lastname": "Last name", "external-login-page.orcid-confirmation.lastname": "છેલ્લું નામ", + // "external-login-page.orcid-confirmation.lastname.label": "Last name", "external-login-page.orcid-confirmation.lastname.label": "છેલ્લું નામ", + // "external-login-page.orcid-confirmation.netid": "Account Identifier", "external-login-page.orcid-confirmation.netid": "ખાતા ઓળખકર્તા", + // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", + // "external-login-page.orcid-confirmation.email": "Email", "external-login-page.orcid-confirmation.email": "ઇમેઇલ", + // "external-login-page.orcid-confirmation.email.label": "Email", "external-login-page.orcid-confirmation.email.label": "ઇમેઇલ", + // "search.filters.access_status.open.access": "Open access", "search.filters.access_status.open.access": "ઓપન ઍક્સેસ", + // "search.filters.access_status.restricted": "Restricted access", "search.filters.access_status.restricted": "પ્રતિબંધિત ઍક્સેસ", + // "search.filters.access_status.embargo": "Embargoed access", "search.filters.access_status.embargo": "એમ્બાર્ગો ઍક્સેસ", + // "search.filters.access_status.metadata.only": "Metadata only", "search.filters.access_status.metadata.only": "મેટાડેટા માત્ર", + // "search.filters.access_status.unknown": "Unknown", "search.filters.access_status.unknown": "અજ્ઞાત", + // "metadata-export-filtered-items.tooltip": "Export report output as CSV", "metadata-export-filtered-items.tooltip": "CSV તરીકે રિપોર્ટ આઉટપુટ નિકાસ કરો", + // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", "metadata-export-filtered-items.submit.success": "CSV નિકાસ સફળ.", + // "metadata-export-filtered-items.submit.error": "CSV export failed.", "metadata-export-filtered-items.submit.error": "CSV નિકાસ નિષ્ફળ.", + // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", "metadata-export-filtered-items.columns.warning": "CSV નિકાસ આપમેળે બધી સંબંધિત ફીલ્ડ્સ શામેલ કરે છે, તેથી આ સૂચિમાં પસંદગીઓ ધ્યાનમાં લેવામાં આવતી નથી.", + // "embargo.listelement.badge": "Embargo until {{ date }}", "embargo.listelement.badge": "એમ્બાર્ગો સુધી {{ date }}", + // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", "metadata-export-search.submit.error.limit-exceeded": "માત્ર પ્રથમ {{limit}} આઇટમ્સ નિકાસ કરવામાં આવશે", -} + + // "file-download-link.request-copy": "Request a copy of ", + // TODO New key - Add a translation + "file-download-link.request-copy": "Request a copy of ", + + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + + +} \ No newline at end of file diff --git a/src/assets/i18n/hi.json5 b/src/assets/i18n/hi.json5 index 5fb5f9c4dd0..a92ea7203c4 100644 --- a/src/assets/i18n/hi.json5 +++ b/src/assets/i18n/hi.json5 @@ -2942,12 +2942,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "शीर्ष-स्तरीय समुदाय प्राप्त करने में त्रुटि", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "अपनी सबमिशन को पूरा करने के लिए आपको इस लाइसेंस को प्रदान करना होगा। यदि आप इस समय लाइसेंस प्रदान करने में असमर्थ हैं, तो आप अपना कार्य सहेज सकते हैं और बाद में वापस आ सकते हैं या सबमिशन को हटा सकते हैं।", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "अपनी सबमिशन को पूरा करने के लिए आपको इस cclicense को प्रदान करना होगा। यदि आप इस समय cclicense प्रदान करने में असमर्थ हैं, तो आप अपना कार्य सहेज सकते हैं और बाद में वापस आ सकते हैं या सबमिशन को हटा सकते हैं।", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -8541,6 +8554,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "क्रिएटिव कॉमन्स लाइसेंस", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "रीसायकल", @@ -8708,6 +8725,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "अपलोड सफल", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "जब चेक किया जाता है, तो यह आइटम खोज/ब्राउज़ में खोजने योग्य होगा। जब अनचेक किया जाता है, तो आइटम केवल एक सीधे लिंक के माध्यम से उपलब्ध होगा और कभी भी खोज/ब्राउज़ में दिखाई नहीं देगा।", @@ -11118,5 +11147,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/it.json5 b/src/assets/i18n/it.json5 index 26d70f3d5e9..061d6e82f94 100644 --- a/src/assets/i18n/it.json5 +++ b/src/assets/i18n/it.json5 @@ -3121,13 +3121,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Errore durante il recupero delle community di primo livello", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "È necessario concedere questa licenza per completare l'immisione. Se non sei in grado di concedere questa licenza in questo momento, puoi salvare il tuo lavoro e tornare più tardi o rimuovere l'immissione.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "L'input è limitato dal pattern in uso: {{ pattern }}.", @@ -9017,6 +9030,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licenza Creative commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ricicla", @@ -9185,6 +9202,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Caricamento riuscito", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Una volta selezionato, questo item sarà individuabile nella ricerca/navigazione. Se deselezionato, l'item sarà disponibile solo tramite un collegamento diretto e non apparirà mai nella ricerca / navigazione.", @@ -12071,5 +12100,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } diff --git a/src/assets/i18n/ja.json5 b/src/assets/i18n/ja.json5 index 2d969c19464..d9cdd752e34 100644 --- a/src/assets/i18n/ja.json5 +++ b/src/assets/i18n/ja.json5 @@ -3847,14 +3847,26 @@ // TODO New key - Add a translation "error.top-level-communities": "Error fetching top-level communities", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // TODO New key - Add a translation - "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -11090,6 +11102,10 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", // TODO New key - Add a translation "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -11310,6 +11326,18 @@ // TODO New key - Add a translation "submission.sections.upload.upload-successful": "Upload successful", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -14530,5 +14558,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/kk.json5 b/src/assets/i18n/kk.json5 index 320cd39037f..fe4b2156902 100644 --- a/src/assets/i18n/kk.json5 +++ b/src/assets/i18n/kk.json5 @@ -3215,13 +3215,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Жоғары деңгейлі қауымдастықтарды алу қатесі", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Жіберуді аяқтау үшін осы лицензияны беруіңіз керек. Бұл лицензияны қазір бере алмасаңыз, жұмысыңызды сақтап, кейінірек оралуыңызға немесе жіберуді жоюға болады.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Бұл енгізу ағымдағы үлгімен шектелген: {{ pattern }}.", @@ -9253,6 +9266,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons лицензиясы", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Өңдеуге", @@ -9422,6 +9439,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Жүктеу сәтті өтті", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Егер бұл құсбелгі қойылса, бұл элемент іздеу/қарау үшін қол жетімді болады. Егер құсбелгі алынып тасталса, элемент тек тікелей сілтеме арқылы қол жетімді болады және іздеу/қарау кезінде ешқашан пайда болмайды.", @@ -12422,5 +12451,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/lv.json5 b/src/assets/i18n/lv.json5 index 1dce108b87f..f1dbcc3898e 100644 --- a/src/assets/i18n/lv.json5 +++ b/src/assets/i18n/lv.json5 @@ -3488,13 +3488,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Kļūda ielasot augstākā līmeņa kategorijas", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Jums ir jānodrošina šī licence, lai pabeigtu iesniegšanu. Ja šobrīd nevarat piešķirt šo licenci, varat saglabāt savu darbu un atgriezties vēlāk vai noņemt iesniegšanu.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Šo ievadi ierobežo pašreizējais modelis: {{ pattern }}.", @@ -10105,6 +10118,10 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Pārstrādāt", @@ -10298,6 +10315,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Augšupielāde veiksmīga", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13485,5 +13514,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/mr.json5 b/src/assets/i18n/mr.json5 index 51e23f27d9e..057ec8a916b 100644 --- a/src/assets/i18n/mr.json5 +++ b/src/assets/i18n/mr.json5 @@ -1,7259 +1,11161 @@ { + // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "आपल्याला या पृष्ठावर प्रवेश करण्याची परवानगी नाही. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", + // "401.link.home-page": "Take me to the home page", "401.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", + // "401.unauthorized": "Unauthorized", "401.unauthorized": "अनधिकृत", + // "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.", "403.help": "आपल्याला या पृष्ठावर प्रवेश करण्याची परवानगी नाही. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", + // "403.link.home-page": "Take me to the home page", "403.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", + // "403.forbidden": "Forbidden", "403.forbidden": "मनाई", + // "500.page-internal-server-error": "Service unavailable", "500.page-internal-server-error": "सेवा अनुपलब्ध", + // "500.help": "The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.", "500.help": "सर्व्हर तात्पुरते आपल्या विनंतीची सेवा देऊ शकत नाही कारण देखभाल डाउनटाइम किंवा क्षमता समस्या आहेत. कृपया नंतर पुन्हा प्रयत्न करा.", + // "500.link.home-page": "Take me to the home page", "500.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", + // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ", "404.help": "आपण शोधत असलेले पृष्ठ आम्हाला सापडत नाही. पृष्ठ हलविले गेले असेल किंवा हटविले गेले असेल. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", + // "404.link.home-page": "Take me to the home page", "404.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", + // "404.page-not-found": "Page not found", "404.page-not-found": "पृष्ठ सापडले नाही", + // "error-page.description.401": "Unauthorized", "error-page.description.401": "अनधिकृत", + // "error-page.description.403": "Forbidden", "error-page.description.403": "मनाई", + // "error-page.description.500": "Service unavailable", "error-page.description.500": "सेवा अनुपलब्ध", + // "error-page.description.404": "Page not found", "error-page.description.404": "पृष्ठ सापडले नाही", + // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "ORCID द्वारे लॉगिन करताना एक त्रुटी आली. कृपया खात्री करा की आपण आपला ORCID खाते ईमेल पत्ता DSpace सोबत शेअर केला आहे. त्रुटी कायम राहिल्यास, प्रशासकाशी संपर्क साधा", + // "listelement.badge.access-status": "Access status:", + // TODO New key - Add a translation + "listelement.badge.access-status": "Access status:", + + // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "एंबार्गो", + // "access-status.metadata.only.listelement.badge": "Metadata only", "access-status.metadata.only.listelement.badge": "फक्त मेटाडेटा", + // "access-status.open.access.listelement.badge": "Open Access", "access-status.open.access.listelement.badge": "मुक्त प्रवेश", + // "access-status.restricted.listelement.badge": "Restricted", "access-status.restricted.listelement.badge": "प्रतिबंधित", + // "access-status.unknown.listelement.badge": "Unknown", "access-status.unknown.listelement.badge": "अज्ञात", + // "admin.curation-tasks.breadcrumbs": "System curation tasks", "admin.curation-tasks.breadcrumbs": "सिस्टम क्यूरेशन कार्ये", + // "admin.curation-tasks.title": "System curation tasks", "admin.curation-tasks.title": "सिस्टम क्यूरेशन कार्ये", + // "admin.curation-tasks.header": "System curation tasks", "admin.curation-tasks.header": "सिस्टम क्यूरेशन कार्ये", + // "admin.registries.bitstream-formats.breadcrumbs": "Format registry", "admin.registries.bitstream-formats.breadcrumbs": "फॉरमॅट रजिस्ट्री", + // "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.create.breadcrumbs": "बिटस्ट्रीम फॉरमॅट", + // "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.", "admin.registries.bitstream-formats.create.failure.content": "नवीन बिटस्ट्रीम फॉरमॅट तयार करताना एक त्रुटी आली.", + // "admin.registries.bitstream-formats.create.failure.head": "Failure", "admin.registries.bitstream-formats.create.failure.head": "अपयश", + // "admin.registries.bitstream-formats.create.head": "Create bitstream format", "admin.registries.bitstream-formats.create.head": "बिटस्ट्रीम फॉरमॅट तयार करा", + // "admin.registries.bitstream-formats.create.new": "Add a new bitstream format", "admin.registries.bitstream-formats.create.new": "नवीन बिटस्ट्रीम फॉरमॅट जोडा", + // "admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.", "admin.registries.bitstream-formats.create.success.content": "नवीन बिटस्ट्रीम फॉरमॅट यशस्वीरित्या तयार केले गेले.", + // "admin.registries.bitstream-formats.create.success.head": "Success", "admin.registries.bitstream-formats.create.success.head": "यश", + // "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} फॉरमॅट(स) काढण्यात अपयश", + // "admin.registries.bitstream-formats.delete.failure.head": "Failure", "admin.registries.bitstream-formats.delete.failure.head": "अपयश", + // "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} फॉरमॅट(स) यशस्वीरित्या काढले", + // "admin.registries.bitstream-formats.delete.success.head": "Success", "admin.registries.bitstream-formats.delete.success.head": "यश", + // "admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.", "admin.registries.bitstream-formats.description": "बिटस्ट्रीम फॉरमॅटची ही यादी ज्ञात फॉरमॅट्स आणि त्यांच्या समर्थन स्तराबद्दल माहिती प्रदान करते.", + // "admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.edit.breadcrumbs": "बिटस्ट्रीम फॉरमॅट", + // "admin.registries.bitstream-formats.edit.description.hint": "", "admin.registries.bitstream-formats.edit.description.hint": "", + // "admin.registries.bitstream-formats.edit.description.label": "Description", "admin.registries.bitstream-formats.edit.description.label": "वर्णन", + // "admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.", "admin.registries.bitstream-formats.edit.extensions.hint": "एक्सटेंशन्स म्हणजे फाइल एक्सटेंशन्स आहेत ज्या अपलोड केलेल्या फाइल्सच्या फॉरमॅटची स्वयंचलितपणे ओळख करण्यासाठी वापरल्या जातात. आपण प्रत्येक फॉरमॅटसाठी अनेक एक्सटेंशन्स प्रविष्ट करू शकता.", + // "admin.registries.bitstream-formats.edit.extensions.label": "File extensions", "admin.registries.bitstream-formats.edit.extensions.label": "फाइल एक्सटेंशन्स", + // "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot", "admin.registries.bitstream-formats.edit.extensions.placeholder": "डॉटशिवाय फाइल एक्सटेंशन प्रविष्ट करा", + // "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.", "admin.registries.bitstream-formats.edit.failure.content": "बिटस्ट्रीम फॉरमॅट संपादित करताना एक त्रुटी आली.", + // "admin.registries.bitstream-formats.edit.failure.head": "Failure", "admin.registries.bitstream-formats.edit.failure.head": "अपयश", - "admin.registries.bitstream-formats.edit.head": "बिटस्ट्रीम फॉरमॅट: {{ format }}", + // "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + // TODO New key - Add a translation + "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + // "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.", "admin.registries.bitstream-formats.edit.internal.hint": "आतील म्हणून चिन्हांकित फॉरमॅट्स वापरकर्त्यापासून लपविले जातात आणि प्रशासकीय उद्देशांसाठी वापरले जातात.", + // "admin.registries.bitstream-formats.edit.internal.label": "Internal", "admin.registries.bitstream-formats.edit.internal.label": "आतील", + // "admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.", "admin.registries.bitstream-formats.edit.mimetype.hint": "या फॉरमॅटशी संबंधित MIME प्रकार, अद्वितीय असण्याची आवश्यकता नाही.", + // "admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type", "admin.registries.bitstream-formats.edit.mimetype.label": "MIME प्रकार", + // "admin.registries.bitstream-formats.edit.shortDescription.hint": "A unique name for this format, (e.g. Microsoft Word XP or Microsoft Word 2000)", "admin.registries.bitstream-formats.edit.shortDescription.hint": "या फॉरमॅटसाठी एक अद्वितीय नाव, (उदा. Microsoft Word XP किंवा Microsoft Word 2000)", + // "admin.registries.bitstream-formats.edit.shortDescription.label": "Name", "admin.registries.bitstream-formats.edit.shortDescription.label": "नाव", + // "admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.", "admin.registries.bitstream-formats.edit.success.content": "बिटस्ट्रीम फॉरमॅट यशस्वीरित्या संपादित केले गेले.", + // "admin.registries.bitstream-formats.edit.success.head": "Success", "admin.registries.bitstream-formats.edit.success.head": "यश", + // "admin.registries.bitstream-formats.edit.supportLevel.hint": "The level of support your institution pledges for this format.", "admin.registries.bitstream-formats.edit.supportLevel.hint": "आपली संस्था या फॉरमॅटसाठी समर्थन स्तराची प्रतिज्ञा करते.", + // "admin.registries.bitstream-formats.edit.supportLevel.label": "Support level", "admin.registries.bitstream-formats.edit.supportLevel.label": "समर्थन स्तर", + // "admin.registries.bitstream-formats.head": "Bitstream Format Registry", "admin.registries.bitstream-formats.head": "बिटस्ट्रीम फॉरमॅट रजिस्ट्री", + // "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.", "admin.registries.bitstream-formats.no-items": "दाखविण्यासाठी कोणतेही बिटस्ट्रीम फॉरमॅट नाहीत.", + // "admin.registries.bitstream-formats.table.delete": "Delete selected", "admin.registries.bitstream-formats.table.delete": "निवडलेले हटवा", + // "admin.registries.bitstream-formats.table.deselect-all": "Deselect all", "admin.registries.bitstream-formats.table.deselect-all": "सर्व निवड रद्द करा", + // "admin.registries.bitstream-formats.table.internal": "internal", "admin.registries.bitstream-formats.table.internal": "आतील", + // "admin.registries.bitstream-formats.table.mimetype": "MIME Type", "admin.registries.bitstream-formats.table.mimetype": "MIME प्रकार", + // "admin.registries.bitstream-formats.table.name": "Name", "admin.registries.bitstream-formats.table.name": "नाव", + // "admin.registries.bitstream-formats.table.selected": "Selected bitstream formats", "admin.registries.bitstream-formats.table.selected": "निवडलेले बिटस्ट्रीम फॉरमॅट्स", + // "admin.registries.bitstream-formats.table.id": "ID", "admin.registries.bitstream-formats.table.id": "ID", + // "admin.registries.bitstream-formats.table.return": "Back", "admin.registries.bitstream-formats.table.return": "मागे", + // "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known", "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "ज्ञात", + // "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported", "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "समर्थित", + // "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown", "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "अज्ञात", + // "admin.registries.bitstream-formats.table.supportLevel.head": "Support Level", "admin.registries.bitstream-formats.table.supportLevel.head": "समर्थन स्तर", + // "admin.registries.bitstream-formats.title": "Bitstream Format Registry", "admin.registries.bitstream-formats.title": "बिटस्ट्रीम फॉरमॅट रजिस्ट्री", + // "admin.registries.bitstream-formats.select": "Select", "admin.registries.bitstream-formats.select": "निवडा", + // "admin.registries.bitstream-formats.deselect": "Deselect", "admin.registries.bitstream-formats.deselect": "निवड रद्द करा", + // "admin.registries.metadata.breadcrumbs": "Metadata registry", "admin.registries.metadata.breadcrumbs": "मेटाडेटा रजिस्ट्री", + // "admin.registries.metadata.description": "The metadata registry maintains a list of all metadata fields available in the repository. These fields may be divided amongst multiple schemas. However, DSpace requires the qualified Dublin Core schema.", "admin.registries.metadata.description": "मेटाडेटा रजिस्ट्री रेपॉझिटरीमध्ये उपलब्ध असलेल्या सर्व मेटाडेटा फील्डची यादी राखते. ही फील्ड्स अनेक स्कीमांमध्ये विभागली जाऊ शकतात. तथापि, DSpace ला योग्य Dublin Core स्कीमा आवश्यक आहे.", + // "admin.registries.metadata.form.create": "Create metadata schema", "admin.registries.metadata.form.create": "मेटाडेटा स्कीमा तयार करा", + // "admin.registries.metadata.form.edit": "Edit metadata schema", "admin.registries.metadata.form.edit": "मेटाडेटा स्कीमा संपादित करा", + // "admin.registries.metadata.form.name": "Name", "admin.registries.metadata.form.name": "नाव", + // "admin.registries.metadata.form.namespace": "Namespace", "admin.registries.metadata.form.namespace": "Namespace", + // "admin.registries.metadata.head": "Metadata Registry", "admin.registries.metadata.head": "मेटाडेटा रजिस्ट्री", + // "admin.registries.metadata.schemas.no-items": "No metadata schemas to show.", "admin.registries.metadata.schemas.no-items": "दाखविण्यासाठी कोणतेही मेटाडेटा स्कीमा नाहीत.", + // "admin.registries.metadata.schemas.select": "Select", "admin.registries.metadata.schemas.select": "निवडा", + // "admin.registries.metadata.schemas.deselect": "Deselect", "admin.registries.metadata.schemas.deselect": "निवड रद्द करा", + // "admin.registries.metadata.schemas.table.delete": "Delete selected", "admin.registries.metadata.schemas.table.delete": "निवडलेले हटवा", + // "admin.registries.metadata.schemas.table.selected": "Selected schemas", "admin.registries.metadata.schemas.table.selected": "निवडलेले स्कीमा", + // "admin.registries.metadata.schemas.table.id": "ID", "admin.registries.metadata.schemas.table.id": "ID", + // "admin.registries.metadata.schemas.table.name": "Name", "admin.registries.metadata.schemas.table.name": "नाव", + // "admin.registries.metadata.schemas.table.namespace": "Namespace", "admin.registries.metadata.schemas.table.namespace": "Namespace", + // "admin.registries.metadata.title": "Metadata Registry", "admin.registries.metadata.title": "मेटाडेटा रजिस्ट्री", + // "admin.registries.schema.breadcrumbs": "Metadata schema", "admin.registries.schema.breadcrumbs": "मेटाडेटा स्कीमा", + // "admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".", "admin.registries.schema.description": "हे \"{{namespace}}\" साठी मेटाडेटा स्कीमा आहे.", + // "admin.registries.schema.fields.select": "Select", "admin.registries.schema.fields.select": "निवडा", + // "admin.registries.schema.fields.deselect": "Deselect", "admin.registries.schema.fields.deselect": "निवड रद्द करा", + // "admin.registries.schema.fields.head": "Schema metadata fields", "admin.registries.schema.fields.head": "स्कीमा मेटाडेटा फील्ड्स", + // "admin.registries.schema.fields.no-items": "No metadata fields to show.", "admin.registries.schema.fields.no-items": "दाखविण्यासाठी कोणतेही मेटाडेटा फील्ड्स नाहीत.", + // "admin.registries.schema.fields.table.delete": "Delete selected", "admin.registries.schema.fields.table.delete": "निवडलेले हटवा", + // "admin.registries.schema.fields.table.field": "Field", "admin.registries.schema.fields.table.field": "फील्ड", + // "admin.registries.schema.fields.table.selected": "Selected metadata fields", "admin.registries.schema.fields.table.selected": "निवडलेले मेटाडेटा फील्ड्स", + // "admin.registries.schema.fields.table.id": "ID", "admin.registries.schema.fields.table.id": "ID", + // "admin.registries.schema.fields.table.scopenote": "Scope Note", "admin.registries.schema.fields.table.scopenote": "स्कोप नोट", + // "admin.registries.schema.form.create": "Create metadata field", "admin.registries.schema.form.create": "मेटाडेटा फील्ड तयार करा", + // "admin.registries.schema.form.edit": "Edit metadata field", "admin.registries.schema.form.edit": "मेटाडेटा फील्ड संपादित करा", + // "admin.registries.schema.form.element": "Element", "admin.registries.schema.form.element": "एलिमेंट", + // "admin.registries.schema.form.qualifier": "Qualifier", "admin.registries.schema.form.qualifier": "क्वालिफायर", + // "admin.registries.schema.form.scopenote": "Scope Note", "admin.registries.schema.form.scopenote": "स्कोप नोट", + // "admin.registries.schema.head": "Metadata Schema", "admin.registries.schema.head": "मेटाडेटा स्कीमा", + // "admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.created": "यशस्वीरित्या मेटाडेटा स्कीमा तयार केले \"{{prefix}}\"", + // "admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.failure": "{{amount}} मेटाडेटा स्कीमा हटविण्यात अपयश", + // "admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.success": "{{amount}} मेटाडेटा स्कीमा यशस्वीरित्या हटविले", + // "admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.edited": "यशस्वीरित्या मेटाडेटा स्कीमा संपादित केले \"{{prefix}}\"", + // "admin.registries.schema.notification.failure": "Error", "admin.registries.schema.notification.failure": "त्रुटी", + // "admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"", "admin.registries.schema.notification.field.created": "यशस्वीरित्या मेटाडेटा फील्ड तयार केले \"{{field}}\"", + // "admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.failure": "{{amount}} मेटाडेटा फील्ड्स हटविण्यात अपयश", + // "admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.success": "{{amount}} मेटाडेटा फील्ड्स यशस्वीरित्या हटविले", + // "admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"", "admin.registries.schema.notification.field.edited": "यशस्वीरित्या मेटाडेटा फील्ड संपादित केले \"{{field}}\"", + // "admin.registries.schema.notification.success": "Success", "admin.registries.schema.notification.success": "यश", + // "admin.registries.schema.return": "Back", "admin.registries.schema.return": "मागे", + // "admin.registries.schema.title": "Metadata Schema Registry", "admin.registries.schema.title": "मेटाडेटा स्कीमा रजिस्ट्री", + // "admin.access-control.bulk-access.breadcrumbs": "Bulk Access Management", "admin.access-control.bulk-access.breadcrumbs": "बल्क ऍक्सेस मॅनेजमेंट", + // "administrativeBulkAccess.search.results.head": "Search Results", "administrativeBulkAccess.search.results.head": "शोध परिणाम", + // "admin.access-control.bulk-access": "Bulk Access Management", "admin.access-control.bulk-access": "बल्क ऍक्सेस मॅनेजमेंट", + // "admin.access-control.bulk-access.title": "Bulk Access Management", "admin.access-control.bulk-access.title": "बल्क ऍक्सेस मॅनेजमेंट", - "admin.access-control.bulk-access-browse.header": "पाऊल 1: ऑब्जेक्ट्स निवडा", + // "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + // TODO New key - Add a translation + "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + // "admin.access-control.bulk-access-browse.search.header": "Search", "admin.access-control.bulk-access-browse.search.header": "शोध", + // "admin.access-control.bulk-access-browse.selected.header": "Current selection({{number}})", "admin.access-control.bulk-access-browse.selected.header": "सध्याची निवड({{number}})", - "admin.access-control.bulk-access-settings.header": "पाऊल 2: ऑपरेशन करण्यासाठी", + // "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + // TODO New key - Add a translation + "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + // "admin.access-control.epeople.actions.delete": "Delete EPerson", "admin.access-control.epeople.actions.delete": "EPerson हटवा", + // "admin.access-control.epeople.actions.impersonate": "Impersonate EPerson", "admin.access-control.epeople.actions.impersonate": "EPerson चे अनुकरण करा", + // "admin.access-control.epeople.actions.reset": "Reset password", "admin.access-control.epeople.actions.reset": "पासवर्ड रीसेट करा", + // "admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson", "admin.access-control.epeople.actions.stop-impersonating": "EPerson चे अनुकरण थांबवा", + // "admin.access-control.epeople.breadcrumbs": "EPeople", "admin.access-control.epeople.breadcrumbs": "EPeople", + // "admin.access-control.epeople.title": "EPeople", "admin.access-control.epeople.title": "EPeople", + // "admin.access-control.epeople.edit.breadcrumbs": "New EPerson", "admin.access-control.epeople.edit.breadcrumbs": "नवीन EPerson", + // "admin.access-control.epeople.edit.title": "New EPerson", "admin.access-control.epeople.edit.title": "नवीन EPerson", + // "admin.access-control.epeople.add.breadcrumbs": "Add EPerson", "admin.access-control.epeople.add.breadcrumbs": "EPerson जोडा", + // "admin.access-control.epeople.add.title": "Add EPerson", "admin.access-control.epeople.add.title": "EPerson जोडा", + // "admin.access-control.epeople.head": "EPeople", "admin.access-control.epeople.head": "EPeople", + // "admin.access-control.epeople.search.head": "Search", "admin.access-control.epeople.search.head": "शोध", + // "admin.access-control.epeople.button.see-all": "Browse All", "admin.access-control.epeople.button.see-all": "सर्व ब्राउझ करा", + // "admin.access-control.epeople.search.scope.metadata": "Metadata", "admin.access-control.epeople.search.scope.metadata": "मेटाडेटा", + // "admin.access-control.epeople.search.scope.email": "Email (exact)", "admin.access-control.epeople.search.scope.email": "ईमेल (अचूक)", + // "admin.access-control.epeople.search.button": "Search", "admin.access-control.epeople.search.button": "शोधा", + // "admin.access-control.epeople.search.placeholder": "Search people...", "admin.access-control.epeople.search.placeholder": "लोकांना शोधा...", + // "admin.access-control.epeople.button.add": "Add EPerson", "admin.access-control.epeople.button.add": "EPerson जोडा", + // "admin.access-control.epeople.table.id": "ID", "admin.access-control.epeople.table.id": "ID", + // "admin.access-control.epeople.table.name": "Name", "admin.access-control.epeople.table.name": "नाव", + // "admin.access-control.epeople.table.email": "Email (exact)", "admin.access-control.epeople.table.email": "ईमेल (अचूक)", + // "admin.access-control.epeople.table.edit": "Edit", "admin.access-control.epeople.table.edit": "संपादित करा", + // "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", + // "admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group", "admin.access-control.epeople.table.edit.buttons.edit-disabled": "आपल्याला या गटाचे संपादन करण्याची परवानगी नाही", + // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" हटवा", - "admin.access-control.epeople.no-items": "दाखविण्यासाठी कोणतेही EPeople नाहीत.", - - "admin.access-control.epeople.form.create": "EPerson तयार करा", - - "admin.access-control.epeople.form.edit": "EPerson संपादित करा", - - "admin.access-control.epeople.form.firstName": "पहिले नाव", - - "admin.access-control.epeople.form.lastName": "शेवटचे नाव", - - "admin.access-control.epeople.form.email": "ईमेल", - - "admin.access-control.epeople.form.emailHint": "वैध ईमेल पत्ता असणे आवश्यक आहे", - - "admin.access-control.epeople.form.canLogIn": "लॉग इन करू शकतो", - - "admin.access-control.epeople.form.requireCertificate": "प्रमाणपत्र आवश्यक आहे", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - "admin.access-control.epeople.form.return": "मागे", - - "admin.access-control.epeople.form.notification.created.success": "यशस्वीरित्या EPerson तयार केले \"{{name}}\"", - - "admin.access-control.epeople.form.notification.created.failure": "EPerson तयार करण्यात अपयश \"{{name}}\"", - - "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson तयार करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", - - "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson संपादित करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", - - "admin.access-control.epeople.form.notification.edited.success": "यशस्वीरित्या EPerson संपादित केले \"{{name}}\"", - - "admin.access-control.epeople.form.notification.edited.failure": "EPerson संपादित करण्यात अपयश \"{{name}}\"", - - "admin.access-control.epeople.form.notification.deleted.success": "यशस्वीरित्या EPerson हटविले \"{{name}}\"", - - "admin.access-control.epeople.form.notification.deleted.failure": "EPerson हटविण्यात अपयश \"{{name}}\"", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "या गटांचा सदस्य:", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - "admin.access-control.epeople.form.table.id": "ID", - - "admin.access-control.epeople.breadcrumbs": "EPeople", - - "admin.access-control.epeople.title": "EPeople", - - "admin.access-control.epeople.edit.breadcrumbs": "नवीन EPerson", - - "admin.access-control.epeople.edit.title": "नवीन EPerson", - - "admin.access-control.epeople.add.breadcrumbs": "EPerson जोडा", - - "admin.access-control.epeople.add.title": "EPerson जोडा", - - "admin.access-control.epeople.head": "EPeople", - - "admin.access-control.epeople.search.head": "शोध", - - "admin.access-control.epeople.button.see-all": "सर्व ब्राउझ करा", - - "admin.access-control.epeople.search.scope.metadata": "Metadata", - - "admin.access-control.epeople.search.scope.email": "ईमेल (अचूक)", - - "admin.access-control.epeople.search.button": "शोधा", - - "admin.access-control.epeople.search.placeholder": "लोकांना शोधा...", - - "admin.access-control.epeople.button.add": "EPerson जोडा", - - "admin.access-control.epeople.table.id": "ID", - - "admin.access-control.epeople.table.name": "नाव", - - "admin.access-control.epeople.table.email": "ईमेल (अचूक)", - - "admin.access-control.epeople.table.edit": "संपादित करा", - - "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", - - "admin.access-control.epeople.table.edit.buttons.edit-disabled": "आपल्याला या गटाचे संपादन करण्याची परवानगी नाही", - - "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" हटवा", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "दाखविण्यासाठी कोणतेही EPeople नाहीत.", + // "admin.access-control.epeople.form.create": "Create EPerson", "admin.access-control.epeople.form.create": "EPerson तयार करा", + // "admin.access-control.epeople.form.edit": "Edit EPerson", "admin.access-control.epeople.form.edit": "EPerson संपादित करा", + // "admin.access-control.epeople.form.firstName": "First name", "admin.access-control.epeople.form.firstName": "पहिले नाव", + // "admin.access-control.epeople.form.lastName": "Last name", "admin.access-control.epeople.form.lastName": "शेवटचे नाव", + // "admin.access-control.epeople.form.email": "Email", "admin.access-control.epeople.form.email": "ईमेल", + // "admin.access-control.epeople.form.emailHint": "Must be a valid email address", "admin.access-control.epeople.form.emailHint": "वैध ईमेल पत्ता असणे आवश्यक आहे", + // "admin.access-control.epeople.form.canLogIn": "Can log in", "admin.access-control.epeople.form.canLogIn": "लॉग इन करू शकतो", + // "admin.access-control.epeople.form.requireCertificate": "Requires certificate", "admin.access-control.epeople.form.requireCertificate": "प्रमाणपत्र आवश्यक आहे", + // "admin.access-control.epeople.form.return": "Back", "admin.access-control.epeople.form.return": "मागे", + // "admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.success": "यशस्वीरित्या EPerson तयार केले \"{{name}}\"", + // "admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.failure": "EPerson तयार करण्यात अपयश \"{{name}}\"", + // "admin.access-control.epeople.form.notification.created.failure.emailInUse": "Failed to create EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson तयार करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", + // "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Failed to edit EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson संपादित करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", + // "admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.success": "यशस्वीरित्या EPerson संपादित केले \"{{name}}\"", + // "admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.failure": "EPerson संपादित करण्यात अपयश \"{{name}}\"", + // "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.success": "यशस्वीरित्या EPerson हटविले \"{{name}}\"", + // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.failure": "EPerson हटविण्यात अपयश \"{{name}}\"", - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "या गटांचा सदस्य:", + // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", + // TODO New key - Add a translation + "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", + // "admin.access-control.epeople.form.table.name": "Name", "admin.access-control.epeople.form.table.name": "नाव", + // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", "admin.access-control.epeople.form.table.collectionOrCommunity": "संग्रह/समुदाय", + // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", "admin.access-control.epeople.form.memberOfNoGroups": "हा EPerson कोणत्याही गटाचा सदस्य नाही", + // "admin.access-control.epeople.form.goToGroups": "Add to groups", "admin.access-control.epeople.form.goToGroups": "गटांमध्ये जोडा", - "admin.access-control.epeople.notification.deleted.failure": "EPerson हटवण्याचा प्रयत्न करताना त्रुटी आली \"{{id}}\" कोडसह: \"{{statusCode}}\" आणि संदेश: \"{{restResponse.errorMessage}}\"", + // "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", - "admin.access-control.epeople.notification.deleted.success": "यशस्वीरित्या EPerson हटविले: \"{{name}}\"", + // "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + // "admin.access-control.groups.title": "Groups", "admin.access-control.groups.title": "गट", + // "admin.access-control.groups.breadcrumbs": "Groups", "admin.access-control.groups.breadcrumbs": "गट", + // "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group", "admin.access-control.groups.singleGroup.breadcrumbs": "गट संपादित करा", + // "admin.access-control.groups.title.singleGroup": "Edit Group", "admin.access-control.groups.title.singleGroup": "गट संपादित करा", + // "admin.access-control.groups.title.addGroup": "New Group", "admin.access-control.groups.title.addGroup": "नवीन गट", + // "admin.access-control.groups.addGroup.breadcrumbs": "New Group", "admin.access-control.groups.addGroup.breadcrumbs": "नवीन गट", + // "admin.access-control.groups.head": "Groups", "admin.access-control.groups.head": "गट", + // "admin.access-control.groups.button.add": "Add group", "admin.access-control.groups.button.add": "गट जोडा", + // "admin.access-control.groups.search.head": "Search groups", "admin.access-control.groups.search.head": "गट शोधा", + // "admin.access-control.groups.button.see-all": "Browse all", "admin.access-control.groups.button.see-all": "सर्व ब्राउझ करा", + // "admin.access-control.groups.search.button": "Search", "admin.access-control.groups.search.button": "शोधा", + // "admin.access-control.groups.search.placeholder": "Search groups...", "admin.access-control.groups.search.placeholder": "गट शोधा...", + // "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": "नाव", + // "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.table.collectionOrCommunity": "संग्रह/समुदाय", + // "admin.access-control.groups.table.members": "Members", "admin.access-control.groups.table.members": "सदस्य", + // "admin.access-control.groups.table.edit": "Edit", "admin.access-control.groups.table.edit": "संपादित करा", + // "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", + // "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.remove": "\"{{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": "या नावाने किंवा UUID ने कोणतेही गट सापडले नाहीत", + // "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"", "admin.access-control.groups.notification.deleted.success": "यशस्वीरित्या गट हटविले \"{{name}}\"", + // "admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"", "admin.access-control.groups.notification.deleted.failure.title": "गट हटविण्यात अपयश \"{{name}}\"", - "admin.access-control.groups.notification.deleted.failure.content": "कारण: \"{{cause}}\"", + // "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + // TODO New key - Add a translation + "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + // "admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.permanent": "हा गट कायमचा आहे, त्यामुळे तो संपादित किंवा हटवता येणार नाही. आपण या पृष्ठाचा वापर करून गट सदस्यांना अद्याप जोडू आणि काढू शकता.", + // "admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the \"assign roles\" tab on the edit {{comcol}} page. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.workflowGroup": "हा गट संपादित किंवा हटवता येणार नाही कारण तो \"{{name}}\" {{comcol}} मध्ये सबमिशन आणि वर्कफ्लो प्रक्रियेत भूमिकेशी संबंधित आहे. आपण ते \"भूमिका नियुक्त करा\" टॅबवरून संपादित {{comcol}} पृष्ठावरून हटवू शकता. आपण या पृष्ठाचा वापर करून गट सदस्यांना अद्याप जोडू आणि काढू शकता.", + // "admin.access-control.groups.form.head.create": "Create group", "admin.access-control.groups.form.head.create": "गट तयार करा", + // "admin.access-control.groups.form.head.edit": "Edit group", "admin.access-control.groups.form.head.edit": "गट संपादित करा", + // "admin.access-control.groups.form.groupName": "Group name", "admin.access-control.groups.form.groupName": "गटाचे नाव", + // "admin.access-control.groups.form.groupCommunity": "Community or Collection", "admin.access-control.groups.form.groupCommunity": "समुदाय किंवा संग्रह", + // "admin.access-control.groups.form.groupDescription": "Description", "admin.access-control.groups.form.groupDescription": "वर्णन", + // "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.success": "यशस्वीरित्या गट तयार केले \"{{name}}\"", + // "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.failure": "गट तयार करण्यात अपयश \"{{name}}\"", - "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "नावाने गट तयार करण्यात अपयश: \"{{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.", + // TODO New key - Add a translation + "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.edited.failure": "Failed to edit Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.failure": "गट संपादित करण्यात अपयश \"{{name}}\"", + // "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!", "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "नाव \"{{name}}\" आधीच वापरात आहे!", + // "admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.success": "यशस्वीरित्या गट संपादित केले \"{{name}}\"", + // "admin.access-control.groups.form.actions.delete": "Delete Group", "admin.access-control.groups.form.actions.delete": "गट हटवा", + // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "गट हटवा \"{{ dsoName }}\"", + // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", "admin.access-control.groups.form.delete-group.modal.info": "आपल्याला खात्री आहे की आपण गट हटवू इच्छिता \"{{ dsoName }}\"", + // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", "admin.access-control.groups.form.delete-group.modal.cancel": "रद्द करा", + // "admin.access-control.groups.form.delete-group.modal.confirm": "Delete", "admin.access-control.groups.form.delete-group.modal.confirm": "हटवा", + // "admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.success": "यशस्वीरित्या गट हटविले \"{{ name }}\"", + // "admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.failure.title": "गट हटविण्यात अपयश \"{{ name }}\"", - "admin.access-control.groups.form.notification.deleted.failure.content": "कारण: \"{{ cause }}\"", + // "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + // TODO New key - Add a translation + "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + // "admin.access-control.groups.form.members-list.head": "EPeople", "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": "EPeople जोडा", + // "admin.access-control.groups.form.members-list.button.see-all": "Browse All", "admin.access-control.groups.form.members-list.button.see-all": "सर्व ब्राउझ करा", + // "admin.access-control.groups.form.members-list.headMembers": "Current Members", "admin.access-control.groups.form.members-list.headMembers": "सध्याचे सदस्य", + // "admin.access-control.groups.form.members-list.search.button": "Search", "admin.access-control.groups.form.members-list.search.button": "शोधा", + // "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": "नाव", + // "admin.access-control.groups.form.members-list.table.identity": "Identity", "admin.access-control.groups.form.members-list.table.identity": "ओळख", + // "admin.access-control.groups.form.members-list.table.email": "Email", "admin.access-control.groups.form.members-list.table.email": "ईमेल", + // "admin.access-control.groups.form.members-list.table.netid": "NetID", "admin.access-control.groups.form.members-list.table.netid": "NetID", + // "admin.access-control.groups.form.members-list.table.edit": "Remove / Add", "admin.access-control.groups.form.members-list.table.edit": "हटवा / जोडा", + // "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": "सदस्य हटवा नावाने \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.success.addMember": "यशस्वीरित्या सदस्य जोडले: \"{{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": "Successfully added member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.failure.addMember": "सदस्य जोडण्यात अपयश: \"{{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": "Failed to add member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.success.deleteMember": "यशस्वीरित्या सदस्य हटविले: \"{{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": "Successfully deleted member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "सदस्य हटविण्यात अपयश: \"{{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": "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": "सदस्य जोडा नावाने \"{{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": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", + // "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": "गटात अद्याप कोणतेही सदस्य नाहीत, शोधा आणि जोडा.", + // "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search", "admin.access-control.groups.form.members-list.no-items": "त्या शोधात कोणतेही EPeople सापडले नाहीत", - "admin.access-control.groups.form.subgroups-list.notification.failure": "काहीतरी चुकले: \"{{cause}}\"", + // "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + // TODO New key - Add a translation + "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + // "admin.access-control.groups.form.subgroups-list.head": "Groups", "admin.access-control.groups.form.subgroups-list.head": "गट", + // "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup", "admin.access-control.groups.form.subgroups-list.search.head": "उपगट जोडा", + // "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All", "admin.access-control.groups.form.subgroups-list.button.see-all": "सर्व ब्राउझ करा", + // "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups", "admin.access-control.groups.form.subgroups-list.headSubgroups": "सध्याचे उपगट", + // "admin.access-control.groups.form.subgroups-list.search.button": "Search", "admin.access-control.groups.form.subgroups-list.search.button": "शोधा", + // "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": "नाव", + // "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "संग्रह/समुदाय", + // "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add", "admin.access-control.groups.form.subgroups-list.table.edit": "हटवा / जोडा", + // "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": "उपगट हटवा नावाने \"{{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": "उपगट जोडा नावाने \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "यशस्वीरित्या उपगट जोडले: \"{{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": "Successfully added subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "उपगट जोडण्यात अपयश: \"{{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": "Failed to add subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "यशस्वीरित्या उपगट हटविले: \"{{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": "Successfully deleted subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "उपगट हटविण्यात अपयश: \"{{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": "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": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", + // "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": "हा सध्याचा गट आहे, जोडता येणार नाही.", + // "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": "या नावाने किंवा 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": "गटात अद्याप कोणतेही उपगट नाहीत.", + // "admin.access-control.groups.form.return": "Back", "admin.access-control.groups.form.return": "मागे", + // "admin.quality-assurance.breadcrumbs": "Quality Assurance", "admin.quality-assurance.breadcrumbs": "गुणवत्ता आश्वासन", + // "admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions", "admin.notifications.event.breadcrumbs": "गुणवत्ता आश्वासन सूचना", + // "admin.notifications.event.page.title": "Quality Assurance Suggestions", "admin.notifications.event.page.title": "गुणवत्ता आश्वासन सूचना", + // "admin.quality-assurance.page.title": "Quality Assurance", "admin.quality-assurance.page.title": "गुणवत्ता आश्वासन", + // "admin.notifications.source.breadcrumbs": "Quality Assurance", "admin.notifications.source.breadcrumbs": "गुणवत्ता आश्वासन", - "admin.access-control.groups.form.tooltip.editGroupPage": "या पृष्ठावर, आपण गटाच्या गुणधर्म आणि सदस्यता बदलू शकता. शीर्ष विभागात, आपण गटाचे नाव आणि वर्णन संपादित करू शकता, जोपर्यंत हा संग्रह किंवा समुदायासाठी प्रशासकीय गट नाही, अशा परिस्थितीत गटाचे नाव आणि वर्णन स्वयंचलितपणे तयार केले जाते आणि संपादित केले जाऊ शकत नाही. पुढील विभागांमध्ये, आपण गट सदस्यता संपादित करू शकता. अधिक तपशीलांसाठी [विकी](https://wiki.lyrasdisplay/DSDOC7x/Create+or+manage+a+user+group पहा.", + // "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "या गटात EPerson जोडण्यासाठी किंवा काढण्यासाठी, 'सर्व ब्राउझ करा' बटणावर क्लिक करा किंवा वापरकर्त्यांना शोधण्यासाठी खालील शोध पट्टी वापरा (शोध पट्टीच्या डाव्या बाजूला ड्रॉपडाउन वापरून मेटाडेटा किंवा ईमेलद्वारे शोधायचे आहे ते निवडा). नंतर खालील यादीमध्ये आपण जोडू इच्छित असलेल्या प्रत्येक वापरकर्त्यासाठी प्लस चिन्हावर क्लिक करा, किंवा आपण काढू इच्छित असलेल्या प्रत्येक वापरकर्त्यासाठी कचरा डब्यावर क्लिक करा. खालील यादीमध्ये अनेक पृष्ठे असू शकतात: पुढील पृष्ठांवर नेण्यासाठी यादीखालील पृष्ठ नियंत्रण वापरा.", + // "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "या गटात उपगट जोडण्यासाठी किंवा काढण्यासाठी, 'सर्व ब्राउझ करा' बटणावर क्लिक करा किंवा गट शोधण्यासाठी शोध पट्टी वापरा. नंतर खालील यादीमध्ये आपण जोडू इच्छित असलेल्या प्रत्येक गटासाठी प्लस चिन्हावर क्लिक करा, किंवा आपण काढू इच्छित असलेल्या प्रत्येक गटासाठी कचरा डब्यावर क्लिक करा. खालील यादीमध्ये अनेक पृष्ठे असू शकतात: पुढील पृष्ठांवर नेण्यासाठी यादीखालील पृष्ठ नियंत्रण वापरा.", + // "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // "admin.reports.collections.title": "Collection Filter Report", "admin.reports.collections.title": "संग्रह फिल्टर अहवाल", + // "admin.reports.collections.breadcrumbs": "Collection Filter Report", "admin.reports.collections.breadcrumbs": "संग्रह फिल्टर अहवाल", + // "admin.reports.collections.head": "Collection Filter Report", "admin.reports.collections.head": "संग्रह फिल्टर अहवाल", + // "admin.reports.button.show-collections": "Show Collections", "admin.reports.button.show-collections": "संग्रह दाखवा", + // "admin.reports.collections.collections-report": "Collection Report", "admin.reports.collections.collections-report": "संग्रह अहवाल", + // "admin.reports.collections.item-results": "Item Results", "admin.reports.collections.item-results": "आयटम परिणाम", + // "admin.reports.collections.community": "Community", "admin.reports.collections.community": "समुदाय", + // "admin.reports.collections.collection": "Collection", "admin.reports.collections.collection": "संग्रह", + // "admin.reports.collections.nb_items": "Nb. Items", "admin.reports.collections.nb_items": "आयटम संख्या", + // "admin.reports.collections.match_all_selected_filters": "Matching all selected filters", "admin.reports.collections.match_all_selected_filters": "सर्व निवडलेल्या फिल्टरशी जुळणारे", + // "admin.reports.items.breadcrumbs": "Metadata Query Report", "admin.reports.items.breadcrumbs": "मेटाडेटा क्वेरी अहवाल", + // "admin.reports.items.head": "Metadata Query Report", "admin.reports.items.head": "मेटाडेटा क्वेरी अहवाल", + // "admin.reports.items.run": "Run Item Query", "admin.reports.items.run": "आयटम क्वेरी चालवा", + // "admin.reports.items.section.collectionSelector": "Collection Selector", "admin.reports.items.section.collectionSelector": "संग्रह निवडकर्ता", + // "admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries", "admin.reports.items.section.metadataFieldQueries": "मेटाडेटा फील्ड क्वेरी", + // "admin.reports.items.predefinedQueries": "Predefined Queries", "admin.reports.items.predefinedQueries": "पूर्वनिर्धारित क्वेरी", + // "admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries", "admin.reports.items.section.limitPaginateQueries": "मर्यादा/पृष्ठांकन क्वेरी", + // "admin.reports.items.limit": "Limit/", "admin.reports.items.limit": "मर्यादा/", + // "admin.reports.items.offset": "Offset", "admin.reports.items.offset": "ऑफसेट", + // "admin.reports.items.wholeRepo": "Whole Repository", "admin.reports.items.wholeRepo": "संपूर्ण रेपॉझिटरी", + // "admin.reports.items.anyField": "Any field", "admin.reports.items.anyField": "कोणतेही फील्ड", + // "admin.reports.items.predicate.exists": "exists", "admin.reports.items.predicate.exists": "अस्तित्वात आहे", + // "admin.reports.items.predicate.doesNotExist": "does not exist", "admin.reports.items.predicate.doesNotExist": "अस्तित्वात नाही", + // "admin.reports.items.predicate.equals": "equals", "admin.reports.items.predicate.equals": "समान आहे", + // "admin.reports.items.predicate.doesNotEqual": "does not equal", "admin.reports.items.predicate.doesNotEqual": "समान नाही", + // "admin.reports.items.predicate.like": "like", "admin.reports.items.predicate.like": "सारखे", + // "admin.reports.items.predicate.notLike": "not like", "admin.reports.items.predicate.notLike": "सारखे नाही", + // "admin.reports.items.predicate.contains": "contains", "admin.reports.items.predicate.contains": "अंतर्भूत आहे", + // "admin.reports.items.predicate.doesNotContain": "does not contain", "admin.reports.items.predicate.doesNotContain": "अंतर्भूत नाही", + // "admin.reports.items.predicate.matches": "matches", "admin.reports.items.predicate.matches": "जुळते", + // "admin.reports.items.predicate.doesNotMatch": "does not match", "admin.reports.items.predicate.doesNotMatch": "जुळत नाही", + // "admin.reports.items.preset.new": "New Query", "admin.reports.items.preset.new": "नवीन क्वेरी", + // "admin.reports.items.preset.hasNoTitle": "Has No Title", "admin.reports.items.preset.hasNoTitle": "शीर्षक नाही", + // "admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri", "admin.reports.items.preset.hasNoIdentifierUri": "dc.identifier.uri नाही", + // "admin.reports.items.preset.hasCompoundSubject": "Has compound subject", "admin.reports.items.preset.hasCompoundSubject": "संयुक्त विषय आहे", + // "admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author", "admin.reports.items.preset.hasCompoundAuthor": "संयुक्त dc.contributor.author आहे", + // "admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator", "admin.reports.items.preset.hasCompoundCreator": "संयुक्त dc.creator आहे", + // "admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description", "admin.reports.items.preset.hasUrlInDescription": "dc.description मध्ये URL आहे", + // "admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance", "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance मध्ये पूर्ण मजकूर आहे", + // "admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance", "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance मध्ये पूर्ण मजकूर नाही", + // "admin.reports.items.preset.hasEmptyMetadata": "Has empty metadata", "admin.reports.items.preset.hasEmptyMetadata": "रिकामे मेटाडेटा आहे", + // "admin.reports.items.preset.hasUnbreakingDataInDescription": "Has unbreaking metadata in description", "admin.reports.items.preset.hasUnbreakingDataInDescription": "वर्णनात न तुटणारे मेटाडेटा आहे", + // "admin.reports.items.preset.hasXmlEntityInMetadata": "Has XML entity in metadata", "admin.reports.items.preset.hasXmlEntityInMetadata": "मेटाडेटा मध्ये XML घटक आहे", + // "admin.reports.items.preset.hasNonAsciiCharInMetadata": "Has non-ascii character in metadata", "admin.reports.items.preset.hasNonAsciiCharInMetadata": "मेटाडेटा मध्ये non-ascii वर्ण आहे", + // "admin.reports.items.number": "No.", "admin.reports.items.number": "क्रमांक.", + // "admin.reports.items.id": "UUID", "admin.reports.items.id": "UUID", + // "admin.reports.items.collection": "Collection", "admin.reports.items.collection": "संग्रह", + // "admin.reports.items.handle": "URI", "admin.reports.items.handle": "URI", + // "admin.reports.items.title": "Title", "admin.reports.items.title": "शीर्षक", + // "admin.reports.commons.filters": "Filters", "admin.reports.commons.filters": "फिल्टर्स", + // "admin.reports.commons.additional-data": "Additional data to return", "admin.reports.commons.additional-data": "अतिरिक्त डेटा परत करा", + // "admin.reports.commons.previous-page": "Prev Page", "admin.reports.commons.previous-page": "मागील पृष्ठ", + // "admin.reports.commons.next-page": "Next Page", "admin.reports.commons.next-page": "पुढील पृष्ठ", + // "admin.reports.commons.page": "Page", "admin.reports.commons.page": "पृष्ठ", + // "admin.reports.commons.of": "of", "admin.reports.commons.of": "च्या", + // "admin.reports.commons.export": "Export for Metadata Update", "admin.reports.commons.export": "मेटाडेटा अपडेटसाठी निर्यात करा", + // "admin.reports.commons.filters.deselect_all": "Deselect all filters", "admin.reports.commons.filters.deselect_all": "सर्व फिल्टर्स निवड रद्द करा", + // "admin.reports.commons.filters.select_all": "Select all filters", "admin.reports.commons.filters.select_all": "सर्व फिल्टर्स निवडा", + // "admin.reports.commons.filters.matches_all": "Matches all specified filters", "admin.reports.commons.filters.matches_all": "सर्व निर्दिष्ट फिल्टर्सशी जुळते", + // "admin.reports.commons.filters.property": "Item Property Filters", "admin.reports.commons.filters.property": "आयटम प्रॉपर्टी फिल्टर्स", + // "admin.reports.commons.filters.property.is_item": "Is Item - always true", "admin.reports.commons.filters.property.is_item": "आयटम आहे - नेहमी खरे", + // "admin.reports.commons.filters.property.is_withdrawn": "Withdrawn Items", "admin.reports.commons.filters.property.is_withdrawn": "मागे घेतलेले आयटम", + // "admin.reports.commons.filters.property.is_not_withdrawn": "Available Items - Not Withdrawn", "admin.reports.commons.filters.property.is_not_withdrawn": "उपलब्ध आयटम - मागे घेतलेले नाहीत", + // "admin.reports.commons.filters.property.is_discoverable": "Discoverable Items - Not Private", "admin.reports.commons.filters.property.is_discoverable": "शोधण्यायोग्य आयटम - खाजगी नाहीत", + // "admin.reports.commons.filters.property.is_not_discoverable": "Not Discoverable - Private Item", "admin.reports.commons.filters.property.is_not_discoverable": "शोधण्यायोग्य नाहीत - खाजगी आयटम", + // "admin.reports.commons.filters.bitstream": "Basic Bitstream Filters", "admin.reports.commons.filters.bitstream": "मूलभूत बिटस्ट्रीम फिल्टर्स", + // "admin.reports.commons.filters.bitstream.has_multiple_originals": "Item has Multiple Original Bitstreams", "admin.reports.commons.filters.bitstream.has_multiple_originals": "आयटममध्ये एकाधिक मूळ बिटस्ट्रीम आहेत", + // "admin.reports.commons.filters.bitstream.has_no_originals": "Item has No Original Bitstreams", "admin.reports.commons.filters.bitstream.has_no_originals": "आयटममध्ये कोणतेही मूळ बिटस्ट्रीम नाहीत", + // "admin.reports.commons.filters.bitstream.has_one_original": "Item has One Original Bitstream", "admin.reports.commons.filters.bitstream.has_one_original": "आयटममध्ये एक मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", "admin.reports.commons.filters.bitstream_mime": "MIME प्रकारानुसार बिटस्ट्रीम फिल्टर्स", + // "admin.reports.commons.filters.bitstream_mime.has_doc_original": "Item has a Doc Original Bitstream (PDF, Office, Text, HTML, XML, etc)", "admin.reports.commons.filters.bitstream_mime.has_doc_original": "आयटममध्ये एक डॉक मूळ बिटस्ट्रीम आहे (PDF, Office, Text, HTML, XML, इ.)", + // "admin.reports.commons.filters.bitstream_mime.has_image_original": "Item has an Image Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_image_original": "आयटममध्ये एक प्रतिमा मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "Has Other Bitstream Types (not Doc or Image)", "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "इतर बिटस्ट्रीम प्रकार आहेत (डॉक किंवा प्रतिमा नाहीत)", + // "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "Item has multiple types of Original Bitstreams (Doc, Image, Other)", "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "आयटममध्ये एकाधिक प्रकारचे मूळ बिटस्ट्रीम आहेत (डॉक, प्रतिमा, इतर)", + // "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "Item has a PDF Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "आयटममध्ये एक PDF मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "Item has JPG Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "आयटममध्ये JPG मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "Has unusually small PDF", "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "असामान्य लहान PDF आहे", + // "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "Has unusually large PDF", "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "असामान्य मोठा PDF आहे", + // "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "Has document bitstream without TEXT item", "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "TEXT आयटमशिवाय डॉक बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.mime": "Supported MIME Type Filters", "admin.reports.commons.filters.mime": "समर्थित MIME प्रकार फिल्टर्स", + // "admin.reports.commons.filters.mime.has_only_supp_image_type": "Item Image Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_image_type": "आयटम प्रतिमा बिटस्ट्रीम समर्थित आहेत", + // "admin.reports.commons.filters.mime.has_unsupp_image_type": "Item has Image Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_image_type": "आयटममध्ये असमर्थित प्रतिमा बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.mime.has_only_supp_doc_type": "Item Document Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_doc_type": "आयटम डॉक्युमेंट बिटस्ट्रीम समर्थित आहेत", + // "admin.reports.commons.filters.mime.has_unsupp_doc_type": "Item has Document Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_doc_type": "आयटममध्ये असमर्थित डॉक्युमेंट बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bundle": "Bitstream Bundle Filters", "admin.reports.commons.filters.bundle": "बिटस्ट्रीम बंडल फिल्टर्स", + // "admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle", "admin.reports.commons.filters.bundle.has_unsupported_bundle": "असमर्थित बंडलमध्ये बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail", "admin.reports.commons.filters.bundle.has_small_thumbnail": "असामान्य लहान थंबनेल आहे", + // "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail", "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "थंबनेलशिवाय मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)", "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "अवैध थंबनेल नाव आहे (प्रत्येक मूळसाठी एक थंबनेल गृहीत धरते)", + // "admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail", "admin.reports.commons.filters.bundle.has_non_generated_thumb": "नॉन-जनरेटेड थंबनेल आहे", + // "admin.reports.commons.filters.bundle.no_license": "Doesn't have a license", "admin.reports.commons.filters.bundle.no_license": "लायसन्स नाही", + // "admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle", "admin.reports.commons.filters.bundle.has_license_documentation": "लायसन्स बंडलमध्ये दस्तऐवज आहे", + // "admin.reports.commons.filters.permission": "Permission Filters", "admin.reports.commons.filters.permission": "परवानगी फिल्टर्स", + // "admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream", "admin.reports.commons.filters.permission.has_restricted_original": "आयटममध्ये प्रतिबंधित मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "आयटममध्ये किमान एक मूळ बिटस्ट्रीम आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", + // "admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail", "admin.reports.commons.filters.permission.has_restricted_thumbnail": "आयटममध्ये प्रतिबंधित थंबनेल आहे", + // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "आयटममध्ये किमान एक थंबनेल आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", + // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", "admin.reports.commons.filters.permission.has_restricted_metadata": "आयटममध्ये प्रतिबंधित मेटाडेटा आहे", + // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "आयटममध्ये मेटाडेटा आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", + // "admin.search.breadcrumbs": "Administrative Search", "admin.search.breadcrumbs": "प्रशासकीय शोध", + // "admin.search.collection.edit": "Edit", "admin.search.collection.edit": "संपादित करा", + // "admin.search.community.edit": "Edit", "admin.search.community.edit": "संपादित करा", + // "admin.search.item.delete": "Delete", "admin.search.item.delete": "हटवा", + // "admin.search.item.edit": "Edit", "admin.search.item.edit": "संपादित करा", + // "admin.search.item.make-private": "Make non-discoverable", "admin.search.item.make-private": "शोधण्यायोग्य नाही बनवा", + // "admin.search.item.make-public": "Make discoverable", "admin.search.item.make-public": "शोधण्यायोग्य बनवा", + // "admin.search.item.move": "Move", "admin.search.item.move": "हलवा", + // "admin.search.item.reinstate": "Reinstate", "admin.search.item.reinstate": "पुनर्स्थापित करा", + // "admin.search.item.withdraw": "Withdraw", "admin.search.item.withdraw": "मागे घ्या", + // "admin.search.title": "Administrative Search", "admin.search.title": "प्रशासकीय शोध", + // "administrativeView.search.results.head": "Administrative Search", "administrativeView.search.results.head": "प्रशासकीय शोध", + // "admin.workflow.breadcrumbs": "Administer Workflow", "admin.workflow.breadcrumbs": "वर्कफ्लो प्रशासित करा", + // "admin.workflow.title": "Administer Workflow", "admin.workflow.title": "वर्कफ्लो प्रशासित करा", + // "admin.workflow.item.workflow": "Workflow", "admin.workflow.item.workflow": "वर्कफ्लो", + // "admin.workflow.item.workspace": "Workspace", "admin.workflow.item.workspace": "वर्कस्पेस", + // "admin.workflow.item.delete": "Delete", "admin.workflow.item.delete": "हटवा", + // "admin.workflow.item.send-back": "Send back", "admin.workflow.item.send-back": "मागे पाठवा", + // "admin.workflow.item.policies": "Policies", "admin.workflow.item.policies": "धोरणे", + // "admin.workflow.item.supervision": "Supervision", "admin.workflow.item.supervision": "निगराणी", + // "admin.metadata-import.breadcrumbs": "Import Metadata", "admin.metadata-import.breadcrumbs": "मेटाडेटा आयात करा", + // "admin.batch-import.breadcrumbs": "Import Batch", "admin.batch-import.breadcrumbs": "बॅच आयात करा", + // "admin.metadata-import.title": "Import Metadata", "admin.metadata-import.title": "मेटाडेटा आयात करा", + // "admin.batch-import.title": "Import Batch", "admin.batch-import.title": "बॅच आयात करा", + // "admin.metadata-import.page.header": "Import Metadata", "admin.metadata-import.page.header": "मेटाडेटा आयात करा", + // "admin.batch-import.page.header": "Import Batch", "admin.batch-import.page.header": "बॅच आयात करा", + // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "आपण येथे फाइल्सवर बॅच मेटाडेटा ऑपरेशन्स असलेली CSV फाइल्स ड्रॉप किंवा ब्राउझ करू शकता", + // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", "admin.batch-import.page.help": "आयात करण्यासाठी संग्रह निवडा. नंतर, आयटम्स आयात करण्यासाठी Simple Archive Format (SAF) zip फाइल ड्रॉप किंवा ब्राउझ करा", + // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", "admin.batch-import.page.toggle.help": "फाइल अपलोड किंवा URL द्वारे आयात करणे शक्य आहे, इनपुट स्रोत सेट करण्यासाठी वरील टॉगल वापरा", + // "admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import", "admin.metadata-import.page.dropMsg": "मेटाडेटा CSV आयात करण्यासाठी ड्रॉप करा", + // "admin.batch-import.page.dropMsg": "Drop a batch ZIP to import", "admin.batch-import.page.dropMsg": "बॅच ZIP आयात करण्यासाठी ड्रॉप करा", + // "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import", "admin.metadata-import.page.dropMsgReplace": "मेटाडेटा CSV आयात करण्यासाठी बदलण्यासाठी ड्रॉप करा", + // "admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import", "admin.batch-import.page.dropMsgReplace": "बॅच ZIP आयात करण्यासाठी बदलण्यासाठी ड्रॉप करा", + // "admin.metadata-import.page.button.return": "Back", "admin.metadata-import.page.button.return": "मागे", + // "admin.metadata-import.page.button.proceed": "Proceed", "admin.metadata-import.page.button.proceed": "पुढे जा", + // "admin.metadata-import.page.button.select-collection": "Select Collection", "admin.metadata-import.page.button.select-collection": "संग्रह निवडा", + // "admin.metadata-import.page.error.addFile": "Select file first!", "admin.metadata-import.page.error.addFile": "प्रथम फाइल निवडा!", + // "admin.metadata-import.page.error.addFileUrl": "Insert file URL first!", "admin.metadata-import.page.error.addFileUrl": "प्रथम फाइल URL प्रविष्ट करा!", + // "admin.batch-import.page.error.addFile": "Select ZIP file first!", "admin.batch-import.page.error.addFile": "प्रथम ZIP फाइल निवडा!", + // "admin.metadata-import.page.toggle.upload": "Upload", "admin.metadata-import.page.toggle.upload": "अपलोड", + // "admin.metadata-import.page.toggle.url": "URL", "admin.metadata-import.page.toggle.url": "URL", + // "admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import", "admin.metadata-import.page.urlMsg": "आयात करण्यासाठी बॅच ZIP URL प्रविष्ट करा", + // "admin.metadata-import.page.validateOnly": "Validate Only", "admin.metadata-import.page.validateOnly": "फक्त सत्यापित करा", + // "admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.metadata-import.page.validateOnly.hint": "निवडल्यास, अपलोड केलेले CSV सत्यापित केले जाईल. आपल्याला आढळलेल्या बदलांचा अहवाल मिळेल, परंतु कोणतेही बदल जतन केले जाणार नाहीत.", + // "advanced-workflow-action.rating.form.rating.label": "Rating", "advanced-workflow-action.rating.form.rating.label": "रेटिंग", + // "advanced-workflow-action.rating.form.rating.error": "You must rate the item", "advanced-workflow-action.rating.form.rating.error": "आपल्याला आयटम रेट करणे आवश्यक आहे", + // "advanced-workflow-action.rating.form.review.label": "Review", "advanced-workflow-action.rating.form.review.label": "पुनरावलोकन", + // "advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating", "advanced-workflow-action.rating.form.review.error": "आपल्याला हे रेटिंग सबमिट करण्यासाठी पुनरावलोकन प्रविष्ट करणे आवश्यक आहे", + // "advanced-workflow-action.rating.description": "Please select a rating below", "advanced-workflow-action.rating.description": "कृपया खाली रेटिंग निवडा", + // "advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review", "advanced-workflow-action.rating.description-requiredDescription": "कृपया खाली रेटिंग निवडा आणि पुनरावलोकन देखील जोडा", + // "advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting", "advanced-workflow-action.select-reviewer.description-single": "सबमिट करण्यापूर्वी कृपया खाली एकच पुनरावलोकक निवडा", + // "advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting", "advanced-workflow-action.select-reviewer.description-multiple": "सबमिट करण्यापूर्वी कृपया खाली एक किंवा अधिक पुनरावलोकक निवडा", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "EPeople जोडा", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "सर्व ब्राउझ करा", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "सध्याचे सदस्य", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "शोधा", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "नाव", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ओळख", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ईमेल", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "हटवा / जोडा", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "सदस्य हटवा नावाने \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "यशस्वीरित्या सदस्य जोडले: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "सदस्य जोडण्यात अपयश: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "यशस्वीरित्या सदस्य हटविले: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "सदस्य हटविण्यात अपयश: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "सदस्य जोडा नावाने \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "गटात अद्याप कोणतेही सदस्य नाहीत, शोधा आणि जोडा.", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "त्या शोधात कोणतेही EPeople सापडले नाहीत", + // "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.", "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "कोणताही पुनरावलोकक निवडलेला नाही.", + // "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.batch-import.page.validateOnly.hint": "निवडल्यास, अपलोड केलेले ZIP सत्यापित केले जाईल. आपल्याला आढळलेल्या बदलांचा अहवाल मिळेल, परंतु कोणतेही बदल जतन केले जाणार नाहीत.", + // "admin.batch-import.page.remove": "remove", "admin.batch-import.page.remove": "हटवा", + // "auth.errors.invalid-user": "Invalid email address or password.", "auth.errors.invalid-user": "अवैध ईमेल पत्ता किंवा पासवर्ड.", + // "auth.messages.expired": "Your session has expired. Please log in again.", "auth.messages.expired": "आपला सत्र कालबाह्य झाला आहे. कृपया पुन्हा लॉग इन करा.", + // "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.", "auth.messages.token-refresh-failed": "आपला सत्र टोकन रीफ्रेश करण्यात अयशस्वी. कृपया पुन्हा लॉग इन करा.", + // "bitstream.download.page": "Now downloading {{bitstream}}...", "bitstream.download.page": "आता डाउनलोड करत आहे {{bitstream}}...", + // "bitstream.download.page.back": "Back", "bitstream.download.page.back": "मागे", + // "bitstream.edit.authorizations.link": "Edit bitstream's Policies", "bitstream.edit.authorizations.link": "बिटस्ट्रीमच्या धोरणांचे संपादन करा", + // "bitstream.edit.authorizations.title": "Edit bitstream's Policies", "bitstream.edit.authorizations.title": "बिटस्ट्रीमच्या धोरणांचे संपादन करा", + // "bitstream.edit.return": "Back", "bitstream.edit.return": "मागे", - "bitstream.edit.bitstream": "बिटस्ट्रीम: ", + // "bitstream.edit.bitstream": "Bitstream: ", + // TODO New key - Add a translation + "bitstream.edit.bitstream": "Bitstream: ", + // "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".", "bitstream.edit.form.description.hint": "पर्यायी, फाईलचे संक्षिप्त वर्णन द्या, उदाहरणार्थ \"Main article\" किंवा \"Experiment data readings\".", + // "bitstream.edit.form.description.label": "Description", "bitstream.edit.form.description.label": "वर्णन", + // "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.", "bitstream.edit.form.embargo.hint": "पहिला दिवस ज्यापासून प्रवेश परवानगी आहे. ही तारीख या फॉर्मवर बदलली जाऊ शकत नाही. बिटस्ट्रीमसाठी एम्बार्गो तारीख सेट करण्यासाठी, Item Status टॅबवर जा, Authorizations... क्लिक करा, बिटस्ट्रीमच्या READ धोरणाचे निर्माण किंवा संपादन करा, आणि इच्छित Start Date सेट करा.", + // "bitstream.edit.form.embargo.label": "Embargo until specific date", "bitstream.edit.form.embargo.label": "विशिष्ट तारखेपर्यंत एम्बार्गो", + // "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": "बिटस्ट्रीमसाठी फाईलचे नाव बदला. लक्षात ठेवा की हे बिटस्ट्रीम URL बदलेल, परंतु जुने दुवे अद्याप कार्यरत राहतील जोपर्यंत अनुक्रम ID बदलत नाही.", + // "bitstream.edit.form.fileName.label": "Filename", "bitstream.edit.form.fileName.label": "फाईलचे नाव", + // "bitstream.edit.form.newFormat.label": "Describe new format", "bitstream.edit.form.newFormat.label": "नवीन स्वरूपाचे वर्णन करा", + // "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"ACMESoft SuperApp version 1.5\").", "bitstream.edit.form.newFormat.hint": "तुम्ही फाईल तयार करण्यासाठी वापरलेले अनुप्रयोग, आणि आवृत्ती क्रमांक (उदाहरणार्थ, \"ACMESoft SuperApp version 1.5\").", + // "bitstream.edit.form.primaryBitstream.label": "Primary File", "bitstream.edit.form.primaryBitstream.label": "प्राथमिक फाईल", + // "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, select \"format not in list\" above and describe it under \"Describe new format\".", "bitstream.edit.form.selectedFormat.hint": "जर स्वरूप वरील यादीत नसेल, वरील \"format not in list\" निवडा आणि \"Describe new format\" अंतर्गत त्याचे वर्णन करा.", + // "bitstream.edit.form.selectedFormat.label": "Selected Format", "bitstream.edit.form.selectedFormat.label": "निवडलेले स्वरूप", + // "bitstream.edit.form.selectedFormat.unknown": "Format not in list", "bitstream.edit.form.selectedFormat.unknown": "सूचीतील स्वरूप नाही", + // "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format", "bitstream.edit.notifications.error.format.title": "बिटस्ट्रीमचे स्वरूप जतन करताना त्रुटी आली", + // "bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream", "bitstream.edit.notifications.error.primaryBitstream.title": "प्राथमिक बिटस्ट्रीम जतन करताना त्रुटी आली", + // "bitstream.edit.form.iiifLabel.label": "IIIF Label", "bitstream.edit.form.iiifLabel.label": "IIIF लेबल", + // "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.", "bitstream.edit.form.iiifLabel.hint": "या प्रतिमेसाठी कॅनव्हास लेबल. दिले नसल्यास डीफॉल्ट लेबल वापरले जाईल.", + // "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents", "bitstream.edit.form.iiifToc.label": "IIIF सामग्री सारणी", + // "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.", "bitstream.edit.form.iiifToc.hint": "येथे मजकूर जोडल्याने नवीन सामग्री सारणी श्रेणीची सुरुवात होते.", + // "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width", "bitstream.edit.form.iiifWidth.label": "IIIF कॅनव्हास रुंदी", + // "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.", "bitstream.edit.form.iiifWidth.hint": "कॅनव्हासची रुंदी सामान्यतः प्रतिमेच्या रुंदीशी जुळली पाहिजे.", + // "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height", "bitstream.edit.form.iiifHeight.label": "IIIF कॅनव्हास उंची", + // "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.", "bitstream.edit.form.iiifHeight.hint": "कॅनव्हासची उंची सामान्यतः प्रतिमेच्या उंचीशी जुळली पाहिजे.", + // "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.", "bitstream.edit.notifications.saved.content": "तुमच्या बिटस्ट्रीममध्ये केलेले बदल जतन केले गेले.", + // "bitstream.edit.notifications.saved.title": "Bitstream saved", "bitstream.edit.notifications.saved.title": "बिटस्ट्रीम जतन केले", + // "bitstream.edit.title": "Edit bitstream", "bitstream.edit.title": "बिटस्ट्रीम संपादन करा", + // "bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ", "bitstream-request-a-copy.alert.canDownload1": "तुमच्याकडे आधीच या फाईलचा प्रवेश आहे. जर तुम्हाला फाईल डाउनलोड करायची असेल, तर क्लिक करा ", + // "bitstream-request-a-copy.alert.canDownload2": "here", "bitstream-request-a-copy.alert.canDownload2": "इथे", + // "bitstream-request-a-copy.header": "Request a copy of the file", "bitstream-request-a-copy.header": "फाईलची प्रत मागवा", - "bitstream-request-a-copy.intro": "खालील आयटमसाठी प्रत मागण्यासाठी खालील माहिती प्रविष्ट करा: ", + // "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", + // TODO New key - Add a translation + "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", - "bitstream-request-a-copy.intro.bitstream.one": "खालील फाईलची प्रत मागत आहे: ", + // "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + // TODO New key - Add a translation + "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + // "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ", "bitstream-request-a-copy.intro.bitstream.all": "सर्व फाईल्स मागत आहे. ", + // "bitstream-request-a-copy.name.label": "Name *", "bitstream-request-a-copy.name.label": "नाव *", + // "bitstream-request-a-copy.name.error": "The name is required", "bitstream-request-a-copy.name.error": "नाव आवश्यक आहे", + // "bitstream-request-a-copy.email.label": "Your email address *", "bitstream-request-a-copy.email.label": "तुमचा ईमेल पत्ता *", + // "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.", "bitstream-request-a-copy.email.hint": "ही ईमेल पत्ता फाईल पाठवण्यासाठी वापरली जाते.", + // "bitstream-request-a-copy.email.error": "Please enter a valid email address.", "bitstream-request-a-copy.email.error": "कृपया वैध ईमेल पत्ता प्रविष्ट करा.", + // "bitstream-request-a-copy.allfiles.label": "Files", "bitstream-request-a-copy.allfiles.label": "फाईल्स", + // "bitstream-request-a-copy.files-all-false.label": "Only the requested file", "bitstream-request-a-copy.files-all-false.label": "फक्त मागितलेली फाईल", + // "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access", "bitstream-request-a-copy.files-all-true.label": "सर्व फाईल्स (या आयटमच्या) प्रतिबंधित प्रवेशात", + // "bitstream-request-a-copy.message.label": "Message", "bitstream-request-a-copy.message.label": "संदेश", + // "bitstream-request-a-copy.return": "Back", "bitstream-request-a-copy.return": "मागे", + // "bitstream-request-a-copy.submit": "Request copy", "bitstream-request-a-copy.submit": "प्रत मागवा", + // "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.", "bitstream-request-a-copy.submit.success": "आयटमची विनंती यशस्वीरित्या सबमिट केली गेली.", + // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "आयटमची विनंती सबमिट करताना काहीतरी चूक झाली.", + // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", "bitstream-request-a-copy.access-by-token.warning": "तुम्ही लेखक किंवा रिपॉझिटरी स्टाफने दिलेल्या सुरक्षित प्रवेश दुव्याद्वारे हा आयटम पाहत आहात. हा दुवा अनधिकृत वापरकर्त्यांना शेअर करणे महत्त्वाचे नाही.", + // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", "bitstream-request-a-copy.access-by-token.expiry-label": "या दुव्याद्वारे दिलेला प्रवेश समाप्त होईल", + // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", "bitstream-request-a-copy.access-by-token.expired": "या दुव्याद्वारे दिलेला प्रवेश आता शक्य नाही. प्रवेश समाप्त झाला", + // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", "bitstream-request-a-copy.access-by-token.not-granted": "या दुव्याद्वारे दिलेला प्रवेश शक्य नाही. प्रवेश दिला गेला नाही, किंवा रद्द केला गेला आहे.", + // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", "bitstream-request-a-copy.access-by-token.re-request": "प्रतिबंधित डाउनलोड दुवे फॉलो करा आणि प्रवेशासाठी नवीन विनंती सबमिट करा.", + // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", "bitstream-request-a-copy.access-by-token.alt-text": "या आयटमचा प्रवेश सुरक्षित टोकनद्वारे दिला जातो", + // "browse.back.all-results": "All browse results", "browse.back.all-results": "सर्व ब्राउझ परिणाम", + // "browse.comcol.by.author": "By Author", "browse.comcol.by.author": "लेखकानुसार", + // "browse.comcol.by.dateissued": "By Issue Date", "browse.comcol.by.dateissued": "प्रकाशन तारखेनुसार", + // "browse.comcol.by.subject": "By Subject", "browse.comcol.by.subject": "विषयानुसार", + // "browse.comcol.by.srsc": "By Subject Category", "browse.comcol.by.srsc": "विषय श्रेणीनुसार", + // "browse.comcol.by.nsi": "By Norwegian Science Index", "browse.comcol.by.nsi": "नॉर्वेजियन सायन्स इंडेक्सनुसार", + // "browse.comcol.by.title": "By Title", "browse.comcol.by.title": "शीर्षकानुसार", + // "browse.comcol.head": "Browse", "browse.comcol.head": "ब्राउझ करा", + // "browse.empty": "No items to show.", "browse.empty": "दाखवण्यासाठी कोणतेही आयटम नाहीत.", + // "browse.metadata.author": "Author", "browse.metadata.author": "लेखक", + // "browse.metadata.dateissued": "Issue Date", "browse.metadata.dateissued": "प्रकाशन तारीख", + // "browse.metadata.subject": "Subject", "browse.metadata.subject": "विषय", + // "browse.metadata.title": "Title", "browse.metadata.title": "शीर्षक", + // "browse.metadata.srsc": "Subject Category", "browse.metadata.srsc": "विषय श्रेणी", + // "browse.metadata.author.breadcrumbs": "Browse by Author", "browse.metadata.author.breadcrumbs": "लेखकानुसार ब्राउझ करा", + // "browse.metadata.dateissued.breadcrumbs": "Browse by Date", "browse.metadata.dateissued.breadcrumbs": "तारखेनुसार ब्राउझ करा", + // "browse.metadata.subject.breadcrumbs": "Browse by Subject", "browse.metadata.subject.breadcrumbs": "विषयानुसार ब्राउझ करा", + // "browse.metadata.srsc.breadcrumbs": "Browse by Subject Category", "browse.metadata.srsc.breadcrumbs": "विषय श्रेणीनुसार ब्राउझ करा", + // "browse.metadata.srsc.tree.description": "Select a subject to add as search filter", "browse.metadata.srsc.tree.description": "शोध फिल्टर म्हणून जोडण्यासाठी विषय निवडा", + // "browse.metadata.nsi.breadcrumbs": "Browse by Norwegian Science Index", "browse.metadata.nsi.breadcrumbs": "नॉर्वेजियन सायन्स इंडेक्सनुसार ब्राउझ करा", + // "browse.metadata.nsi.tree.description": "Select an index to add as search filter", "browse.metadata.nsi.tree.description": "शोध फिल्टर म्हणून जोडण्यासाठी इंडेक्स निवडा", + // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "शीर्षकानुसार ब्राउझ करा", + // "browse.metadata.map": "Browse by Geolocation", "browse.metadata.map": "भौगोलिक स्थानानुसार ब्राउझ करा", + // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", "browse.metadata.map.breadcrumbs": "भौगोलिक स्थानानुसार ब्राउझ करा", + // "browse.metadata.map.count.items": "items", "browse.metadata.map.count.items": "आयटम्स", + // "pagination.next.button": "Next", "pagination.next.button": "पुढे", + // "pagination.previous.button": "Previous", "pagination.previous.button": "मागे", + // "pagination.next.button.disabled.tooltip": "No more pages of results", "pagination.next.button.disabled.tooltip": "अधिक परिणाम पृष्ठे नाहीत", - "pagination.page-number-bar": "पृष्ठ नेव्हिगेशनसाठी नियंत्रण पट्टी, ID सह घटकाच्या सापेक्ष: ", + // "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + // TODO New key - Add a translation + "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + // "browse.startsWith": ", starting with {{ startsWith }}", "browse.startsWith": ", {{ startsWith }} ने सुरू होते", + // "browse.startsWith.choose_start": "(Choose start)", "browse.startsWith.choose_start": "(प्रारंभ निवडा)", + // "browse.startsWith.choose_year": "(Choose year)", "browse.startsWith.choose_year": "(वर्ष निवडा)", + // "browse.startsWith.choose_year.label": "Choose the issue year", "browse.startsWith.choose_year.label": "प्रकाशन वर्ष निवडा", + // "browse.startsWith.jump": "Filter results by year or month", "browse.startsWith.jump": "वर्ष किंवा महिन्यानुसार परिणाम फिल्टर करा", + // "browse.startsWith.months.april": "April", "browse.startsWith.months.april": "एप्रिल", + // "browse.startsWith.months.august": "August", "browse.startsWith.months.august": "ऑगस्ट", + // "browse.startsWith.months.december": "December", "browse.startsWith.months.december": "डिसेंबर", + // "browse.startsWith.months.february": "February", "browse.startsWith.months.february": "फेब्रुवारी", + // "browse.startsWith.months.january": "January", "browse.startsWith.months.january": "जानेवारी", + // "browse.startsWith.months.july": "July", "browse.startsWith.months.july": "जुलै", + // "browse.startsWith.months.june": "June", "browse.startsWith.months.june": "जून", + // "browse.startsWith.months.march": "March", "browse.startsWith.months.march": "मार्च", + // "browse.startsWith.months.may": "May", "browse.startsWith.months.may": "मे", + // "browse.startsWith.months.none": "(Choose month)", "browse.startsWith.months.none": "(महिना निवडा)", + // "browse.startsWith.months.none.label": "Choose the issue month", "browse.startsWith.months.none.label": "प्रकाशन महिना निवडा", + // "browse.startsWith.months.november": "November", "browse.startsWith.months.november": "नोव्हेंबर", + // "browse.startsWith.months.october": "October", "browse.startsWith.months.october": "ऑक्टोबर", + // "browse.startsWith.months.september": "September", "browse.startsWith.months.september": "सप्टेंबर", + // "browse.startsWith.submit": "Browse", "browse.startsWith.submit": "ब्राउझ करा", + // "browse.startsWith.type_date": "Filter results by date", "browse.startsWith.type_date": "तारखेनुसार परिणाम फिल्टर करा", + // "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button", "browse.startsWith.type_date.label": "किंवा तारीख (वर्ष-महिना) टाइप करा आणि ब्राउझ बटणावर क्लिक करा", + // "browse.startsWith.type_text": "Filter results by typing the first few letters", "browse.startsWith.type_text": "पहिल्या काही अक्षरांनी परिणाम फिल्टर करा", + // "browse.startsWith.input": "Filter", "browse.startsWith.input": "फिल्टर", + // "browse.taxonomy.button": "Browse", "browse.taxonomy.button": "ब्राउझ करा", + // "browse.title": "Browsing by {{ field }}{{ startsWith }} {{ value }}", "browse.title": "{{ field }}{{ startsWith }} {{ value }} ने ब्राउझ करत आहे", + // "browse.title.page": "Browsing by {{ field }} {{ value }}", "browse.title.page": "{{ field }} {{ value }} ने ब्राउझ करत आहे", + // "search.browse.item-back": "Back to Results", "search.browse.item-back": "परिणामांकडे परत जा", + // "chips.remove": "Remove chip", "chips.remove": "चिप काढा", + // "claimed-approved-search-result-list-element.title": "Approved", "claimed-approved-search-result-list-element.title": "मंजूर", + // "claimed-declined-search-result-list-element.title": "Rejected, sent back to submitter", "claimed-declined-search-result-list-element.title": "नाकारले, सबमिटरकडे परत पाठवले", + // "claimed-declined-task-search-result-list-element.title": "Declined, sent back to Review Manager's workflow", "claimed-declined-task-search-result-list-element.title": "नाकारले, पुनरावलोकन व्यवस्थापकाच्या कार्यप्रवाहाकडे परत पाठवले", + // "collection.create.breadcrumbs": "Create collection", "collection.create.breadcrumbs": "संग्रह तयार करा", + // "collection.browse.logo": "Browse for a collection logo", "collection.browse.logo": "संग्रह लोगो ब्राउझ करा", + // "collection.create.head": "Create a Collection", "collection.create.head": "संग्रह तयार करा", + // "collection.create.notifications.success": "Successfully created the collection", "collection.create.notifications.success": "संग्रह यशस्वीरित्या तयार केला", + // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", "collection.create.sub-head": "समुदाय {{ parent }} साठी संग्रह तयार करा", - "collection.curate.header": "संग्रह व्यवस्थापित करा: {{collection}}", + // "collection.curate.header": "Curate Collection: {{collection}}", + // TODO New key - Add a translation + "collection.curate.header": "Curate Collection: {{collection}}", + // "collection.delete.cancel": "Cancel", "collection.delete.cancel": "रद्द करा", + // "collection.delete.confirm": "Confirm", "collection.delete.confirm": "पुष्टी करा", + // "collection.delete.processing": "Deleting", "collection.delete.processing": "हटवत आहे", + // "collection.delete.head": "Delete Collection", "collection.delete.head": "संग्रह हटवा", + // "collection.delete.notification.fail": "Collection could not be deleted", "collection.delete.notification.fail": "संग्रह हटवता आला नाही", + // "collection.delete.notification.success": "Successfully deleted collection", "collection.delete.notification.success": "संग्रह यशस्वीरित्या हटवला", + // "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"", "collection.delete.text": "तुम्हाला खात्री आहे की तुम्ही संग्रह \"{{ dso }}\" हटवू इच्छिता", + // "collection.edit.delete": "Delete this collection", "collection.edit.delete": "हा संग्रह हटवा", + // "collection.edit.head": "Edit Collection", "collection.edit.head": "संग्रह संपादन करा", + // "collection.edit.breadcrumbs": "Edit Collection", "collection.edit.breadcrumbs": "संग्रह संपादन करा", + // "collection.edit.tabs.mapper.head": "Item Mapper", "collection.edit.tabs.mapper.head": "आयटम मॅपर", + // "collection.edit.tabs.item-mapper.title": "Collection Edit - Item Mapper", "collection.edit.tabs.item-mapper.title": "संग्रह संपादन - आयटम मॅपर", + // "collection.edit.item-mapper.cancel": "Cancel", "collection.edit.item-mapper.cancel": "रद्द करा", - "collection.edit.item-mapper.collection": "संग्रह: \"{{name}}\"", + // "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + // TODO New key - Add a translation + "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + // "collection.edit.item-mapper.confirm": "Map selected items", "collection.edit.item-mapper.confirm": "निवडलेले आयटम मॅप करा", + // "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.", "collection.edit.item-mapper.description": "हे आयटम मॅपर साधन आहे जे संग्रह प्रशासकांना या संग्रहात इतर संग्रहांमधून आयटम मॅप करण्यास अनुमती देते. तुम्ही इतर संग्रहांमधून आयटम शोधू शकता आणि त्यांना मॅप करू शकता, किंवा सध्या मॅप केलेल्या आयटमची यादी ब्राउझ करू शकता.", + // "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections", "collection.edit.item-mapper.head": "आयटम मॅपर - इतर संग्रहांमधून आयटम मॅप करा", + // "collection.edit.item-mapper.no-search": "Please enter a query to search", "collection.edit.item-mapper.no-search": "शोधण्यासाठी क्वेरी प्रविष्ट करा", + // "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.", "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} आयटम्सच्या मॅपिंगसाठी त्रुटी आल्या.", + // "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors", "collection.edit.item-mapper.notifications.map.error.head": "मॅपिंग त्रुटी", + // "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.", "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} आयटम्स यशस्वीरित्या मॅप केले.", + // "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed", "collection.edit.item-mapper.notifications.map.success.head": "मॅपिंग पूर्ण झाले", + // "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} आयटम्सच्या मॅपिंग काढण्याच्या त्रुटी आल्या.", + // "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors", "collection.edit.item-mapper.notifications.unmap.error.head": "मॅपिंग काढण्याच्या त्रुटी", + // "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} आयटम्सच्या मॅपिंग काढण्याचे यशस्वी झाले.", + // "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed", "collection.edit.item-mapper.notifications.unmap.success.head": "मॅपिंग काढणे पूर्ण झाले", + // "collection.edit.item-mapper.remove": "Remove selected item mappings", "collection.edit.item-mapper.remove": "निवडलेले आयटम मॅपिंग काढा", + // "collection.edit.item-mapper.search-form.placeholder": "Search items...", "collection.edit.item-mapper.search-form.placeholder": "आयटम शोधा...", + // "collection.edit.item-mapper.tabs.browse": "Browse mapped items", "collection.edit.item-mapper.tabs.browse": "मॅप केलेले आयटम ब्राउझ करा", + // "collection.edit.item-mapper.tabs.map": "Map new items", "collection.edit.item-mapper.tabs.map": "नवीन आयटम मॅप करा", + // "collection.edit.logo.delete.title": "Delete logo", "collection.edit.logo.delete.title": "लोगो हटवा", + // "collection.edit.logo.delete-undo.title": "Undo delete", "collection.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", + // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "संग्रह लोगो", + // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", "collection.edit.logo.notifications.add.error": "संग्रह लोगो अपलोड करण्यात अयशस्वी. कृपया पुन्हा प्रयत्न करण्यापूर्वी सामग्री सत्यापित करा.", + // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", "collection.edit.logo.notifications.add.success": "संग्रह लोगो अपलोड यशस्वी.", + // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", "collection.edit.logo.notifications.delete.success.title": "लोगो हटवला", + // "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo", "collection.edit.logo.notifications.delete.success.content": "संग्रहाचा लोगो यशस्वीरित्या हटवला", + // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "लोगो हटवताना त्रुटी", + // "collection.edit.logo.upload": "Drop a collection logo to upload", "collection.edit.logo.upload": "अपलोड करण्यासाठी संग्रह लोगो ड्रॉप करा", + // "collection.edit.notifications.success": "Successfully edited the collection", "collection.edit.notifications.success": "संग्रह यशस्वीरित्या संपादित केला", + // "collection.edit.return": "Back", "collection.edit.return": "मागे", + // "collection.edit.tabs.access-control.head": "Access Control", "collection.edit.tabs.access-control.head": "प्रवेश नियंत्रण", + // "collection.edit.tabs.access-control.title": "Collection Edit - Access Control", "collection.edit.tabs.access-control.title": "संग्रह संपादन - प्रवेश नियंत्रण", + // "collection.edit.tabs.curate.head": "Curate", "collection.edit.tabs.curate.head": "व्यवस्थित करा", + // "collection.edit.tabs.curate.title": "Collection Edit - Curate", "collection.edit.tabs.curate.title": "संग्रह संपादन - व्यवस्थित करा", + // "collection.edit.tabs.authorizations.head": "Authorizations", "collection.edit.tabs.authorizations.head": "प्राधिकरणे", + // "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations", "collection.edit.tabs.authorizations.title": "संग्रह संपादन - प्राधिकरणे", + // "collection.edit.item.authorizations.load-bundle-button": "Load more bundles", "collection.edit.item.authorizations.load-bundle-button": "अधिक बंडल लोड करा", + // "collection.edit.item.authorizations.load-more-button": "Load more", "collection.edit.item.authorizations.load-more-button": "अधिक लोड करा", + // "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle", "collection.edit.item.authorizations.show-bitstreams-button": "बंडलसाठी बिटस्ट्रीम धोरणे दाखवा", + // "collection.edit.tabs.metadata.head": "Edit Metadata", "collection.edit.tabs.metadata.head": "मेटाडेटा संपादित करा", + // "collection.edit.tabs.metadata.title": "Collection Edit - Metadata", "collection.edit.tabs.metadata.title": "संग्रह संपादन - मेटाडेटा", + // "collection.edit.tabs.roles.head": "Assign Roles", "collection.edit.tabs.roles.head": "भूमिका नियुक्त करा", + // "collection.edit.tabs.roles.title": "Collection Edit - Roles", "collection.edit.tabs.roles.title": "संग्रह संपादन - भूमिका", + // "collection.edit.tabs.source.external": "This collection harvests its content from an external source", "collection.edit.tabs.source.external": "हा संग्रह त्याच्या सामग्रीला बाह्य स्रोतातून गोळा करतो", + // "collection.edit.tabs.source.form.errors.oaiSource.required": "You must provide a set id of the target collection.", "collection.edit.tabs.source.form.errors.oaiSource.required": "आपल्याला लक्ष्य संग्रहाचा सेट आयडी प्रदान करणे आवश्यक आहे.", + // "collection.edit.tabs.source.form.harvestType": "Content being harvested", "collection.edit.tabs.source.form.harvestType": "सामग्री गोळा केली जात आहे", + // "collection.edit.tabs.source.form.head": "Configure an external source", "collection.edit.tabs.source.form.head": "बाह्य स्रोत कॉन्फिगर करा", + // "collection.edit.tabs.source.form.metadataConfigId": "Metadata Format", "collection.edit.tabs.source.form.metadataConfigId": "मेटाडेटा स्वरूप", + // "collection.edit.tabs.source.form.oaiSetId": "OAI specific set id", "collection.edit.tabs.source.form.oaiSetId": "OAI विशिष्ट सेट आयडी", + // "collection.edit.tabs.source.form.oaiSource": "OAI Provider", "collection.edit.tabs.source.form.oaiSource": "OAI प्रदाता", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Harvest metadata and bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "मेटाडेटा आणि बिटस्ट्रीम्स गोळा करा (ORE समर्थन आवश्यक आहे)", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Harvest metadata and references to bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "मेटाडेटा आणि बिटस्ट्रीम्सच्या संदर्भांना गोळा करा (ORE समर्थन आवश्यक आहे)", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Harvest metadata only", "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "फक्त मेटाडेटा गोळा करा", + // "collection.edit.tabs.source.head": "Content Source", "collection.edit.tabs.source.head": "सामग्री स्रोत", + // "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "collection.edit.tabs.source.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", + // "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded", "collection.edit.tabs.source.notifications.discarded.title": "बदल रद्द केले", + // "collection.edit.tabs.source.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "collection.edit.tabs.source.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", + // "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid", "collection.edit.tabs.source.notifications.invalid.title": "मेटाडेटा अवैध", + // "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.", "collection.edit.tabs.source.notifications.saved.content": "या संग्रहाच्या सामग्री स्रोतासाठी आपले बदल जतन केले गेले.", + // "collection.edit.tabs.source.notifications.saved.title": "Content Source saved", "collection.edit.tabs.source.notifications.saved.title": "सामग्री स्रोत जतन केले", + // "collection.edit.tabs.source.title": "Collection Edit - Content Source", "collection.edit.tabs.source.title": "संग्रह संपादन - सामग्री स्रोत", + // "collection.edit.template.add-button": "Add", "collection.edit.template.add-button": "जोडा", + // "collection.edit.template.breadcrumbs": "Item template", "collection.edit.template.breadcrumbs": "आयटम टेम्पलेट", + // "collection.edit.template.cancel": "Cancel", "collection.edit.template.cancel": "रद्द करा", + // "collection.edit.template.delete-button": "Delete", "collection.edit.template.delete-button": "हटवा", + // "collection.edit.template.edit-button": "Edit", "collection.edit.template.edit-button": "संपादित करा", + // "collection.edit.template.error": "An error occurred retrieving the template item", "collection.edit.template.error": "टेम्पलेट आयटम पुनर्प्राप्त करताना त्रुटी आली", + // "collection.edit.template.head": "Edit Template Item for Collection \"{{ collection }}\"", "collection.edit.template.head": "संग्रहासाठी टेम्पलेट आयटम संपादित करा \"{{ collection }}\"", + // "collection.edit.template.label": "Template item", "collection.edit.template.label": "टेम्पलेट आयटम", + // "collection.edit.template.loading": "Loading template item...", "collection.edit.template.loading": "टेम्पलेट आयटम लोड करत आहे...", + // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "आयटम टेम्पलेट हटवण्यात अयशस्वी", + // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", "collection.edit.template.notifications.delete.success": "आयटम टेम्पलेट यशस्वीरित्या हटवले", + // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "टेम्पलेट आयटम संपादित करा", + // "collection.form.abstract": "Short Description", "collection.form.abstract": "संक्षिप्त वर्णन", + // "collection.form.description": "Introductory text (HTML)", "collection.form.description": "परिचयात्मक मजकूर (HTML)", + // "collection.form.errors.title.required": "Please enter a collection name", "collection.form.errors.title.required": "कृपया संग्रहाचे नाव प्रविष्ट करा", + // "collection.form.license": "License", "collection.form.license": "परवाना", + // "collection.form.provenance": "Provenance", "collection.form.provenance": "मूळ", + // "collection.form.rights": "Copyright text (HTML)", "collection.form.rights": "कॉपीराइट मजकूर (HTML)", + // "collection.form.tableofcontents": "News (HTML)", "collection.form.tableofcontents": "बातम्या (HTML)", + // "collection.form.title": "Name", "collection.form.title": "नाव", + // "collection.form.entityType": "Entity Type", "collection.form.entityType": "घटक प्रकार", + // "collection.listelement.badge": "Collection", "collection.listelement.badge": "संग्रह", + // "collection.logo": "Collection logo", "collection.logo": "संग्रह लोगो", + // "collection.page.browse.search.head": "Search", "collection.page.browse.search.head": "शोधा", + // "collection.page.edit": "Edit this collection", "collection.page.edit": "हा संग्रह संपादित करा", + // "collection.page.handle": "Permanent URI for this collection", "collection.page.handle": "या संग्रहासाठी स्थायी URI", + // "collection.page.license": "License", "collection.page.license": "परवाना", + // "collection.page.news": "News", "collection.page.news": "बातम्या", + // "collection.page.options": "Options", "collection.page.options": "पर्याय", + // "collection.search.breadcrumbs": "Search", "collection.search.breadcrumbs": "शोधा", + // "collection.search.results.head": "Search Results", "collection.search.results.head": "शोध परिणाम", + // "collection.select.confirm": "Confirm selected", "collection.select.confirm": "निवडलेले पुष्टी करा", + // "collection.select.empty": "No collections to show", "collection.select.empty": "दाखवण्यासाठी कोणतेही संग्रह नाहीत", + // "collection.select.table.selected": "Selected collections", "collection.select.table.selected": "निवडलेले संग्रह", + // "collection.select.table.select": "Select collection", "collection.select.table.select": "संग्रह निवडा", + // "collection.select.table.deselect": "Deselect collection", "collection.select.table.deselect": "संग्रह निवड रद्द करा", + // "collection.select.table.title": "Title", "collection.select.table.title": "शीर्षक", + // "collection.source.controls.head": "Harvest Controls", "collection.source.controls.head": "गोळा नियंत्रण", + // "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings", "collection.source.controls.test.submit.error": "सेटिंग्जची चाचणी सुरू करताना काहीतरी चूक झाली", + // "collection.source.controls.test.failed": "The script to test the settings has failed", "collection.source.controls.test.failed": "सेटिंग्जची चाचणी स्क्रिप्ट अयशस्वी झाली", + // "collection.source.controls.test.completed": "The script to test the settings has successfully finished", "collection.source.controls.test.completed": "सेटिंग्जची चाचणी स्क्रिप्ट यशस्वीरित्या पूर्ण झाली", + // "collection.source.controls.test.submit": "Test configuration", "collection.source.controls.test.submit": "कॉन्फिगरेशन चाचणी करा", + // "collection.source.controls.test.running": "Testing configuration...", "collection.source.controls.test.running": "कॉन्फिगरेशन चाचणी करत आहे...", + // "collection.source.controls.import.submit.success": "The import has been successfully initiated", "collection.source.controls.import.submit.success": "आयात यशस्वीरित्या सुरू केली गेली", + // "collection.source.controls.import.submit.error": "Something went wrong with initiating the import", "collection.source.controls.import.submit.error": "आयात सुरू करताना काहीतरी चूक झाली", + // "collection.source.controls.import.submit": "Import now", "collection.source.controls.import.submit": "आता आयात करा", + // "collection.source.controls.import.running": "Importing...", "collection.source.controls.import.running": "आयात करत आहे...", + // "collection.source.controls.import.failed": "An error occurred during the import", "collection.source.controls.import.failed": "आयात करताना त्रुटी आली", + // "collection.source.controls.import.completed": "The import completed", "collection.source.controls.import.completed": "आयात पूर्ण झाली", + // "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated", "collection.source.controls.reset.submit.success": "रीसेट आणि पुनरायात यशस्वीरित्या सुरू केली गेली", + // "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport", "collection.source.controls.reset.submit.error": "रीसेट आणि पुनरायात सुरू करताना काहीतरी चूक झाली", + // "collection.source.controls.reset.failed": "An error occurred during the reset and reimport", "collection.source.controls.reset.failed": "रीसेट आणि पुनरायात करताना त्रुटी आली", + // "collection.source.controls.reset.completed": "The reset and reimport completed", "collection.source.controls.reset.completed": "रीसेट आणि पुनरायात पूर्ण झाली", + // "collection.source.controls.reset.submit": "Reset and reimport", "collection.source.controls.reset.submit": "रीसेट आणि पुनरायात", + // "collection.source.controls.reset.running": "Resetting and reimporting...", "collection.source.controls.reset.running": "रीसेट आणि पुनरायात करत आहे...", - "collection.source.controls.harvest.status": "गोळा स्थिती:", + // "collection.source.controls.harvest.status": "Harvest status:", + // TODO New key - Add a translation + "collection.source.controls.harvest.status": "Harvest status:", - "collection.source.controls.harvest.start": "गोळा सुरू होण्याची वेळ:", + // "collection.source.controls.harvest.start": "Harvest start time:", + // TODO New key - Add a translation + "collection.source.controls.harvest.start": "Harvest start time:", - "collection.source.controls.harvest.last": "शेवटचा वेळ गोळा केला:", + // "collection.source.controls.harvest.last": "Last time harvested:", + // TODO New key - Add a translation + "collection.source.controls.harvest.last": "Last time harvested:", - "collection.source.controls.harvest.message": "गोळा माहिती:", + // "collection.source.controls.harvest.message": "Harvest info:", + // TODO New key - Add a translation + "collection.source.controls.harvest.message": "Harvest info:", + // "collection.source.controls.harvest.no-information": "N/A", "collection.source.controls.harvest.no-information": "N/A", + // "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.", "collection.source.update.notifications.error.content": "प्रदान केलेल्या सेटिंग्जची चाचणी केली गेली आणि ती कार्यरत नाहीत.", + // "collection.source.update.notifications.error.title": "Server Error", "collection.source.update.notifications.error.title": "सर्व्हर त्रुटी", + // "communityList.breadcrumbs": "Community List", "communityList.breadcrumbs": "समुदाय सूची", + // "communityList.tabTitle": "Community List", "communityList.tabTitle": "समुदाय सूची", + // "communityList.title": "List of Communities", "communityList.title": "समुदायांची सूची", + // "communityList.showMore": "Show More", "communityList.showMore": "अधिक दाखवा", + // "communityList.expand": "Expand {{ name }}", "communityList.expand": "विस्तृत करा {{ name }}", + // "communityList.collapse": "Collapse {{ name }}", "communityList.collapse": "संकुचित करा {{ name }}", + // "community.browse.logo": "Browse for a community logo", "community.browse.logo": "समुदाय लोगो ब्राउझ करा", + // "community.subcoms-cols.breadcrumbs": "Subcommunities and Collections", "community.subcoms-cols.breadcrumbs": "उपसमुदाय आणि संग्रह", + // "community.create.breadcrumbs": "Create Community", "community.create.breadcrumbs": "समुदाय तयार करा", + // "community.create.head": "Create a Community", "community.create.head": "समुदाय तयार करा", + // "community.create.notifications.success": "Successfully created the community", "community.create.notifications.success": "समुदाय यशस्वीरित्या तयार केला", + // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", "community.create.sub-head": "समुदायासाठी उपसमुदाय तयार करा {{ parent }}", - "community.curate.header": "समुदाय व्यवस्थापित करा: {{community}}", + // "community.curate.header": "Curate Community: {{community}}", + // TODO New key - Add a translation + "community.curate.header": "Curate Community: {{community}}", + // "community.delete.cancel": "Cancel", "community.delete.cancel": "रद्द करा", + // "community.delete.confirm": "Confirm", "community.delete.confirm": "पुष्टी करा", + // "community.delete.processing": "Deleting...", "community.delete.processing": "हटवत आहे...", + // "community.delete.head": "Delete Community", "community.delete.head": "समुदाय हटवा", + // "community.delete.notification.fail": "Community could not be deleted", "community.delete.notification.fail": "समुदाय हटवता आला नाही", + // "community.delete.notification.success": "Successfully deleted community", "community.delete.notification.success": "समुदाय यशस्वीरित्या हटवला", + // "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"", "community.delete.text": "तुम्हाला खात्री आहे की तुम्ही समुदाय हटवू इच्छिता \"{{ dso }}\"", + // "community.edit.delete": "Delete this community", "community.edit.delete": "हा समुदाय हटवा", + // "community.edit.head": "Edit Community", "community.edit.head": "समुदाय संपादन करा", + // "community.edit.breadcrumbs": "Edit Community", "community.edit.breadcrumbs": "समुदाय संपादन करा", + // "community.edit.logo.delete.title": "Delete logo", "community.edit.logo.delete.title": "लोगो हटवा", + // "community-collection.edit.logo.delete.title": "Confirm deletion", "community-collection.edit.logo.delete.title": "हटवण्याची पुष्टी करा", + // "community.edit.logo.delete-undo.title": "Undo delete", "community.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", + // "community-collection.edit.logo.delete-undo.title": "Undo delete", "community-collection.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", + // "community.edit.logo.label": "Community logo", "community.edit.logo.label": "समुदाय लोगो", + // "community.edit.logo.notifications.add.error": "Uploading community logo failed. Please verify the content before retrying.", "community.edit.logo.notifications.add.error": "समुदाय लोगो अपलोड करण्यात अयशस्वी. कृपया पुन्हा प्रयत्न करण्यापूर्वी सामग्री सत्यापित करा.", + // "community.edit.logo.notifications.add.success": "Upload community logo successful.", "community.edit.logo.notifications.add.success": "समुदाय लोगो अपलोड यशस्वी.", + // "community.edit.logo.notifications.delete.success.title": "Logo deleted", "community.edit.logo.notifications.delete.success.title": "लोगो हटवला", + // "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo", "community.edit.logo.notifications.delete.success.content": "समुदायाचा लोगो यशस्वीरित्या हटवला", + // "community.edit.logo.notifications.delete.error.title": "Error deleting logo", "community.edit.logo.notifications.delete.error.title": "लोगो हटवताना त्रुटी", + // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "अपलोड करण्यासाठी समुदाय लोगो ड्रॉप करा", + // "community.edit.notifications.success": "Successfully edited the community", "community.edit.notifications.success": "समुदाय यशस्वीरित्या संपादित केला", + // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", "community.edit.notifications.unauthorized": "आपल्याला हा बदल करण्याचे विशेषाधिकार नाहीत", + // "community.edit.notifications.error": "An error occurred while editing the community", "community.edit.notifications.error": "समुदाय संपादित करताना त्रुटी आली", + // "community.edit.return": "Back", "community.edit.return": "मागे", + // "community.edit.tabs.curate.head": "Curate", "community.edit.tabs.curate.head": "व्यवस्थित करा", + // "community.edit.tabs.curate.title": "Community Edit - Curate", "community.edit.tabs.curate.title": "समुदाय संपादन - व्यवस्थित करा", + // "community.edit.tabs.access-control.head": "Access Control", "community.edit.tabs.access-control.head": "प्रवेश नियंत्रण", + // "community.edit.tabs.access-control.title": "Community Edit - Access Control", "community.edit.tabs.access-control.title": "समुदाय संपादन - प्रवेश नियंत्रण", + // "community.edit.tabs.metadata.head": "Edit Metadata", "community.edit.tabs.metadata.head": "मेटाडेटा संपादित करा", + // "community.edit.tabs.metadata.title": "Community Edit - Metadata", "community.edit.tabs.metadata.title": "समुदाय संपादन - मेटाडेटा", + // "community.edit.tabs.roles.head": "Assign Roles", "community.edit.tabs.roles.head": "भूमिका नियुक्त करा", + // "community.edit.tabs.roles.title": "Community Edit - Roles", "community.edit.tabs.roles.title": "Community Edit - Roles", + // "community.edit.tabs.authorizations.head": "Authorizations", "community.edit.tabs.authorizations.head": "अधिकृतता", + // "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", + // "community.listelement.badge": "Community", "community.listelement.badge": "Community", + // "community.logo": "Community logo", "community.logo": "Community लोगो", + // "comcol-role.edit.no-group": "None", "comcol-role.edit.no-group": "काहीही नाही", + // "comcol-role.edit.create": "Create", "comcol-role.edit.create": "तयार करा", + // "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role", "comcol-role.edit.create.error.title": "'{{ role }}' भूमिकेसाठी गट तयार करण्यात अयशस्वी", + // "comcol-role.edit.restrict": "Restrict", "comcol-role.edit.restrict": "प्रतिबंधित करा", + // "comcol-role.edit.delete": "Delete", "comcol-role.edit.delete": "हटवा", + // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "'{{ role }}' भूमिकेचा गट हटवण्यात अयशस्वी", + // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + + // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + + // "comcol-role.edit.delete.modal.cancel": "Cancel", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.cancel": "Cancel", + + // "comcol-role.edit.delete.modal.confirm": "Delete", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.confirm": "Delete", + + // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "प्रशासक", + // "comcol-role.edit.collection-admin.name": "Administrators", "comcol-role.edit.collection-admin.name": "प्रशासक", + // "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).", "comcol-role.edit.community-admin.description": "Community administrators उप-समुदाय किंवा संग्रह तयार करू शकतात आणि त्या उप-समुदाय किंवा संग्रहांचे व्यवस्थापन किंवा व्यवस्थापन नियुक्त करू शकतात. याव्यतिरिक्त, ते कोण उप-संग्रहांना आयटम सबमिट करू शकतात, सबमिशन नंतर आयटम मेटाडेटा संपादित करू शकतात आणि इतर संग्रहांमधून विद्यमान आयटम जोडू (नकाशा) करू शकतात (अधिकृततेच्या अधीन).", + // "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).", "comcol-role.edit.collection-admin.description": "Collection administrators ठरवतात की कोण संग्रहात आयटम सबमिट करू शकतात, सबमिशन नंतर आयटम मेटाडेटा संपादित करू शकतात आणि या संग्रहात इतर संग्रहांमधून विद्यमान आयटम जोडू (नकाशा) करू शकतात (त्या संग्रहासाठी अधिकृततेच्या अधीन).", + // "comcol-role.edit.submitters.name": "Submitters", "comcol-role.edit.submitters.name": "सबमिटर्स", + // "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.", "comcol-role.edit.submitters.description": "E-People आणि गट ज्यांना या संग्रहात नवीन आयटम सबमिट करण्याची परवानगी आहे.", + // "comcol-role.edit.item_read.name": "Default item read access", "comcol-role.edit.item_read.name": "डीफॉल्ट आयटम वाचन प्रवेश", + // "comcol-role.edit.item_read.description": "E-People and Groups that can read new items submitted to this collection. Changes to this role are not retroactive. Existing items in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.item_read.description": "E-People आणि गट जे या संग्रहात सबमिट केलेले नवीन आयटम वाचू शकतात. या भूमिकेतील बदल मागील काळात लागू होत नाहीत. प्रणालीतील विद्यमान आयटम अजूनही त्यावेळी वाचन प्रवेश असलेल्या लोकांना पाहता येतील.", + // "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.", "comcol-role.edit.item_read.anonymous-group": "आगामी आयटमसाठी डीफॉल्ट वाचन सध्या अनामिक सेट केले आहे.", + // "comcol-role.edit.bitstream_read.name": "Default bitstream read access", "comcol-role.edit.bitstream_read.name": "डीफॉल्ट बिटस्ट्रीम वाचन प्रवेश", + // "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.bitstream_read.description": "E-People आणि गट जे या संग्रहात सबमिट केलेले नवीन बिटस्ट्रीम वाचू शकतात. या भूमिकेतील बदल मागील काळात लागू होत नाहीत. प्रणालीतील विद्यमान बिटस्ट्रीम अजूनही त्यावेळी वाचन प्रवेश असलेल्या लोकांना पाहता येतील.", + // "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.", "comcol-role.edit.bitstream_read.anonymous-group": "आगामी बिटस्ट्रीमसाठी डीफॉल्ट वाचन सध्या अनामिक सेट केले आहे.", + // "comcol-role.edit.editor.name": "Editors", "comcol-role.edit.editor.name": "संपादक", + // "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.", "comcol-role.edit.editor.description": "संपादक येणाऱ्या सबमिशनचे मेटाडेटा संपादित करू शकतात आणि नंतर त्यांना स्वीकारू किंवा नाकारू शकतात.", + // "comcol-role.edit.finaleditor.name": "Final editors", "comcol-role.edit.finaleditor.name": "अंतिम संपादक", + // "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.", "comcol-role.edit.finaleditor.description": "अंतिम संपादक येणाऱ्या सबमिशनचे मेटाडेटा संपादित करू शकतात, परंतु त्यांना नाकारू शकत नाहीत.", + // "comcol-role.edit.reviewer.name": "Reviewers", "comcol-role.edit.reviewer.name": "पुनरावलोकक", + // "comcol-role.edit.reviewer.description": "Reviewers are able to accept or reject incoming submissions. However, they are not able to edit the submission's metadata.", "comcol-role.edit.reviewer.description": "पुनरावलोकक येणाऱ्या सबमिशनला स्वीकारू किंवा नाकारू शकतात. तथापि, ते सबमिशनचे मेटाडेटा संपादित करू शकत नाहीत.", + // "comcol-role.edit.scorereviewers.name": "Score Reviewers", "comcol-role.edit.scorereviewers.name": "स्कोअर पुनरावलोकक", + // "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.", "comcol-role.edit.scorereviewers.description": "पुनरावलोकक येणाऱ्या सबमिशनला स्कोअर देऊ शकतात, हे ठरवेल की सबमिशन नाकारले जाईल की नाही.", + // "community.form.abstract": "Short Description", "community.form.abstract": "संक्षिप्त वर्णन", + // "community.form.description": "Introductory text (HTML)", "community.form.description": "प्रस्तावना मजकूर (HTML)", + // "community.form.errors.title.required": "Please enter a community name", "community.form.errors.title.required": "कृपया समुदायाचे नाव प्रविष्ट करा", + // "community.form.rights": "Copyright text (HTML)", "community.form.rights": "कॉपीराइट मजकूर (HTML)", + // "community.form.tableofcontents": "News (HTML)", "community.form.tableofcontents": "बातम्या (HTML)", + // "community.form.title": "Name", "community.form.title": "नाव", + // "community.page.edit": "Edit this community", "community.page.edit": "हा समुदाय संपादित करा", + // "community.page.handle": "Permanent URI for this community", "community.page.handle": "या समुदायासाठी स्थायी URI", + // "community.page.license": "License", "community.page.license": "परवाना", + // "community.page.news": "News", "community.page.news": "बातम्या", + // "community.page.options": "Options", "community.page.options": "पर्याय", + // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "उपसमुदाय आणि संग्रह", + // "community.search.breadcrumbs": "Search", "community.search.breadcrumbs": "शोधा", + // "community.search.results.head": "Search Results", "community.search.results.head": "शोध परिणाम", + // "community.sub-collection-list.head": "Collections in this community", "community.sub-collection-list.head": "या समुदायातील संग्रह", + // "community.sub-community-list.head": "Communities in this Community", "community.sub-community-list.head": "या समुदायातील समुदाय", + // "cookies.consent.accept-all": "Accept all", "cookies.consent.accept-all": "सर्व स्वीकारा", + // "cookies.consent.accept-selected": "Accept selected", "cookies.consent.accept-selected": "निवडलेले स्वीकारा", + // "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)", "cookies.consent.app.opt-out.description": "हे अॅप डीफॉल्टने लोड केले जाते (परंतु आपण बाहेर पडू शकता)", + // "cookies.consent.app.opt-out.title": "(opt-out)", "cookies.consent.app.opt-out.title": "(opt-out)", + // "cookies.consent.app.purpose": "purpose", "cookies.consent.app.purpose": "उद्देश", + // "cookies.consent.app.required.description": "This application is always required", "cookies.consent.app.required.description": "हे अॅप्लिकेशन नेहमी आवश्यक आहे", + // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(नेहमी आवश्यक)", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "आपल्या शेवटच्या भेटीनंतर बदल झाले आहेत, कृपया आपली संमती अद्यतनित करा.", + // "cookies.consent.close": "Close", "cookies.consent.close": "बंद करा", + // "cookies.consent.decline": "Decline", "cookies.consent.decline": "नकार", + // "cookies.consent.decline-all": "Decline all", "cookies.consent.decline-all": "सर्व नकारा", + // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "ठीक आहे", + // "cookies.consent.save": "Save", "cookies.consent.save": "जतन करा", - "cookies.consent.content-notice.description": "आम्ही आपली वैयक्तिक माहिती खालील उद्देशांसाठी गोळा आणि प्रक्रिया करतो: {purposes}", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + // TODO New key - Add a translation + "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "सानुकूलित करा", + // "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.", "cookies.consent.content-modal.description": "येथे आपण आपल्याबद्दल गोळा केलेली माहिती पाहू आणि सानुकूलित करू शकता.", + // "cookies.consent.content-modal.privacy-policy.name": "privacy policy", "cookies.consent.content-modal.privacy-policy.name": "गोपनीयता धोरण", + // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "अधिक जाणून घेण्यासाठी, कृपया आमचे {privacyPolicy} वाचा.", + // "cookies.consent.content-modal.no-privacy-policy.text": "", "cookies.consent.content-modal.no-privacy-policy.text": "", + // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "आम्ही गोळा केलेली माहिती", + // "cookies.consent.app.title.accessibility": "Accessibility Settings", + // TODO New key - Add a translation + "cookies.consent.app.title.accessibility": "Accessibility Settings", + + // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + // TODO New key - Add a translation + "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "प्रमाणीकरण", + // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "आपल्याला साइन इन करण्यासाठी आवश्यक", + // "cookies.consent.app.title.correlation-id": "Correlation ID", + // TODO New key - Add a translation + "cookies.consent.app.title.correlation-id": "Correlation ID", + + // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + // TODO New key - Add a translation + "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + + // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "प्राधान्ये", + // "cookies.consent.app.description.preferences": "Required for saving your preferences", "cookies.consent.app.description.preferences": "आपली प्राधान्ये जतन करण्यासाठी आवश्यक", + // "cookies.consent.app.title.acknowledgement": "Acknowledgement", "cookies.consent.app.title.acknowledgement": "स्वीकृती", + // "cookies.consent.app.description.acknowledgement": "Required for saving your acknowledgements and consents", "cookies.consent.app.description.acknowledgement": "आपल्या स्वीकृती आणि संमती जतन करण्यासाठी आवश्यक", + // "cookies.consent.app.title.google-analytics": "Google Analytics", "cookies.consent.app.title.google-analytics": "Google Analytics", + // "cookies.consent.app.description.google-analytics": "Allows us to track statistical data", "cookies.consent.app.description.google-analytics": "आम्हाला सांख्यिकी डेटा ट्रॅक करण्याची परवानगी देते", + // "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", + // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "नोंदणी आणि पासवर्ड पुनर्प्राप्ती दरम्यान आम्ही google reCAPTCHA सेवा वापरतो", + // "cookies.consent.app.title.matomo": "Matomo", "cookies.consent.app.title.matomo": "Matomo", + // "cookies.consent.app.description.matomo": "Allows us to track statistical data", "cookies.consent.app.description.matomo": "आम्हाला सांख्यिकी डेटा ट्रॅक करण्याची परवानगी देते", + // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "कार्यात्मक", + // "cookies.consent.purpose.statistical": "Statistical", "cookies.consent.purpose.statistical": "सांख्यिकी", + // "cookies.consent.purpose.registration-password-recovery": "Registration and Password recovery", "cookies.consent.purpose.registration-password-recovery": "नोंदणी आणि पासवर्ड पुनर्प्राप्ती", + // "cookies.consent.purpose.sharing": "Sharing", "cookies.consent.purpose.sharing": "शेअरिंग", + // "curation-task.task.citationpage.label": "Generate Citation Page", "curation-task.task.citationpage.label": "उद्धरण पृष्ठ तयार करा", + // "curation-task.task.checklinks.label": "Check Links in Metadata", "curation-task.task.checklinks.label": "मेटाडेटामधील दुवे तपासा", + // "curation-task.task.noop.label": "NOOP", "curation-task.task.noop.label": "NOOP", + // "curation-task.task.profileformats.label": "Profile Bitstream Formats", "curation-task.task.profileformats.label": "प्रोफाइल बिटस्ट्रीम स्वरूप", + // "curation-task.task.requiredmetadata.label": "Check for Required Metadata", "curation-task.task.requiredmetadata.label": "आवश्यक मेटाडेटा तपासा", + // "curation-task.task.translate.label": "Microsoft Translator", "curation-task.task.translate.label": "Microsoft Translator", + // "curation-task.task.vscan.label": "Virus Scan", "curation-task.task.vscan.label": "व्हायरस स्कॅन", + // "curation-task.task.registerdoi.label": "Register DOI", "curation-task.task.registerdoi.label": "DOI नोंदणी करा", - "curation.form.task-select.label": "कार्य:", + // "curation.form.task-select.label": "Task:", + // TODO New key - Add a translation + "curation.form.task-select.label": "Task:", + // "curation.form.submit": "Start", "curation.form.submit": "प्रारंभ करा", + // "curation.form.submit.success.head": "The curation task has been started successfully", "curation.form.submit.success.head": "क्युरेशन कार्य यशस्वीरित्या सुरू केले गेले आहे", + // "curation.form.submit.success.content": "You will be redirected to the corresponding process page.", "curation.form.submit.success.content": "आपण संबंधित प्रक्रिया पृष्ठावर पुनर्निर्देशित केले जाल.", + // "curation.form.submit.error.head": "Running the curation task failed", "curation.form.submit.error.head": "क्युरेशन कार्य चालवण्यात अयशस्वी", + // "curation.form.submit.error.content": "An error occurred when trying to start the curation task.", "curation.form.submit.error.content": "क्युरेशन कार्य सुरू करण्याचा प्रयत्न करताना एक त्रुटी आली.", + // "curation.form.submit.error.invalid-handle": "Couldn't determine the handle for this object", "curation.form.submit.error.invalid-handle": "या वस्तूसाठी हँडल ठरवू शकले नाही", - "curation.form.handle.label": "हँडल:", + // "curation.form.handle.label": "Handle:", + // TODO New key - Add a translation + "curation.form.handle.label": "Handle:", - "curation.form.handle.hint": "सूचना: संपूर्ण साइटवर कार्य चालवण्यासाठी [आपले-हँडल-प्रिफिक्स]/0 प्रविष्ट करा (सर्व कार्ये ही क्षमता समर्थन करू शकत नाहीत)", + // "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", + // TODO New key - Add a translation + "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", - "deny-request-copy.email.message": "प्रिय {{ recipientName }},\nआपल्या विनंतीच्या प्रतिसादात मला आपल्याला कळविण्यात खेद आहे की आपण विनंती केलेल्या फाइल(स)ची प्रत पाठवणे शक्य नाही, दस्तऐवज: \"{{ itemUrl }}\" ({{ itemName }}), ज्याचा मी लेखक आहे.\n\nसर्वोत्तम शुभेच्छा,\n{{ authorName }} <{{ authorEmail }}>", + // "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + // TODO New key - Add a translation + "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + // "deny-request-copy.email.subject": "Request copy of document", "deny-request-copy.email.subject": "दस्तऐवजाची प्रत विनंती", + // "deny-request-copy.error": "An error occurred", "deny-request-copy.error": "एक त्रुटी आली", + // "deny-request-copy.header": "Deny document copy request", "deny-request-copy.header": "दस्तऐवज प्रत विनंती नकारा", + // "deny-request-copy.intro": "This message will be sent to the applicant of the request", "deny-request-copy.intro": "ही संदेश विनंतीच्या अर्जदाराला पाठवली जाईल", + // "deny-request-copy.success": "Successfully denied item request", "deny-request-copy.success": "आयटम विनंती यशस्वीरित्या नाकारली", + // "dynamic-list.load-more": "Load more", "dynamic-list.load-more": "अधिक लोड करा", + // "dropdown.clear": "Clear selection", "dropdown.clear": "निवड साफ करा", + // "dropdown.clear.tooltip": "Clear the selected option", "dropdown.clear.tooltip": "निवडलेला पर्याय साफ करा", + // "dso.name.untitled": "Untitled", "dso.name.untitled": "शीर्षक नसलेले", + // "dso.name.unnamed": "Unnamed", "dso.name.unnamed": "नाव नसलेले", + // "dso-selector.create.collection.head": "New collection", "dso-selector.create.collection.head": "नवीन संग्रह", + // "dso-selector.create.collection.sub-level": "Create a new collection in", "dso-selector.create.collection.sub-level": "मध्ये नवीन संग्रह तयार करा", + // "dso-selector.create.community.head": "New community", "dso-selector.create.community.head": "नवीन समुदाय", + // "dso-selector.create.community.or-divider": "or", "dso-selector.create.community.or-divider": "किंवा", + // "dso-selector.create.community.sub-level": "Create a new community in", "dso-selector.create.community.sub-level": "मध्ये नवीन समुदाय तयार करा", + // "dso-selector.create.community.top-level": "Create a new top-level community", "dso-selector.create.community.top-level": "नवीन शीर्ष-स्तरीय समुदाय तयार करा", + // "dso-selector.create.item.head": "New item", "dso-selector.create.item.head": "नवीन आयटम", + // "dso-selector.create.item.sub-level": "Create a new item in", "dso-selector.create.item.sub-level": "मध्ये नवीन आयटम तयार करा", + // "dso-selector.create.submission.head": "New submission", "dso-selector.create.submission.head": "नवीन सबमिशन", + // "dso-selector.edit.collection.head": "Edit collection", "dso-selector.edit.collection.head": "संग्रह संपादित करा", + // "dso-selector.edit.community.head": "Edit community", "dso-selector.edit.community.head": "समुदाय संपादित करा", + // "dso-selector.edit.item.head": "Edit item", "dso-selector.edit.item.head": "आयटम संपादित करा", + // "dso-selector.error.title": "An error occurred searching for a {{ type }}", "dso-selector.error.title": "{{ type }} शोधताना एक त्रुटी आली", + // "dso-selector.export-metadata.dspaceobject.head": "Export metadata from", "dso-selector.export-metadata.dspaceobject.head": "मधून मेटाडेटा निर्यात करा", + // "dso-selector.export-batch.dspaceobject.head": "Export Batch (ZIP) from", "dso-selector.export-batch.dspaceobject.head": "मधून बॅच (ZIP) निर्यात करा", + // "dso-selector.import-batch.dspaceobject.head": "Import batch from", "dso-selector.import-batch.dspaceobject.head": "मधून बॅच आयात करा", + // "dso-selector.no-results": "No {{ type }} found", "dso-selector.no-results": "कोणतेही {{ type }} सापडले नाही", + // "dso-selector.placeholder": "Search for a {{ type }}", "dso-selector.placeholder": "{{ type }} साठी शोधा", + // "dso-selector.placeholder.type.community": "community", "dso-selector.placeholder.type.community": "समुदाय", + // "dso-selector.placeholder.type.collection": "collection", "dso-selector.placeholder.type.collection": "संग्रह", + // "dso-selector.placeholder.type.item": "item", "dso-selector.placeholder.type.item": "आयटम", + // "dso-selector.select.collection.head": "Select a collection", "dso-selector.select.collection.head": "संग्रह निवडा", + // "dso-selector.set-scope.community.head": "Select a search scope", "dso-selector.set-scope.community.head": "शोधाचा व्याप्ती निवडा", + // "dso-selector.set-scope.community.button": "Search all of DSpace", "dso-selector.set-scope.community.button": "संपूर्ण DSpace शोधा", + // "dso-selector.set-scope.community.or-divider": "or", "dso-selector.set-scope.community.or-divider": "किंवा", + // "dso-selector.set-scope.community.input-header": "Search for a community or collection", "dso-selector.set-scope.community.input-header": "समुदाय किंवा संग्रहासाठी शोधा", + // "dso-selector.claim.item.head": "Profile tips", "dso-selector.claim.item.head": "प्रोफाइल टिपा", + // "dso-selector.claim.item.body": "These are existing profiles that may be related to you. If you recognize yourself in one of these profiles, select it and on the detail page, among the options, choose to claim it. Otherwise you can create a new profile from scratch using the button below.", "dso-selector.claim.item.body": "हे विद्यमान प्रोफाइल आहेत जे आपल्याशी संबंधित असू शकतात. आपण या प्रोफाइलपैकी एकामध्ये स्वतःला ओळखत असल्यास, ते निवडा आणि तपशील पृष्ठावर, पर्यायांमध्ये, ते दावा करण्यासाठी निवडा. अन्यथा आपण खालील बटण वापरून नवीन प्रोफाइल तयार करू शकता.", + // "dso-selector.claim.item.not-mine-label": "None of these are mine", "dso-selector.claim.item.not-mine-label": "हे माझे नाहीत", + // "dso-selector.claim.item.create-from-scratch": "Create a new one", "dso-selector.claim.item.create-from-scratch": "नवीन एक तयार करा", + // "dso-selector.results-could-not-be-retrieved": "Something went wrong, please refresh again ↻", "dso-selector.results-could-not-be-retrieved": "काहीतरी चुकले, कृपया पुन्हा ताजेतवाने करा ↻", + // "supervision-group-selector.header": "Supervision Group Selector", "supervision-group-selector.header": "Supervision Group Selector", + // "supervision-group-selector.select.type-of-order.label": "Select a type of Order", "supervision-group-selector.select.type-of-order.label": "ऑर्डरचा प्रकार निवडा", + // "supervision-group-selector.select.type-of-order.option.none": "NONE", "supervision-group-selector.select.type-of-order.option.none": "काहीही नाही", + // "supervision-group-selector.select.type-of-order.option.editor": "EDITOR", "supervision-group-selector.select.type-of-order.option.editor": "संपादक", + // "supervision-group-selector.select.type-of-order.option.observer": "OBSERVER", "supervision-group-selector.select.type-of-order.option.observer": "निरीक्षक", + // "supervision-group-selector.select.group.label": "Select a Group", "supervision-group-selector.select.group.label": "गट निवडा", + // "supervision-group-selector.button.cancel": "Cancel", "supervision-group-selector.button.cancel": "रद्द करा", + // "supervision-group-selector.button.save": "Save", "supervision-group-selector.button.save": "जतन करा", + // "supervision-group-selector.select.type-of-order.error": "Please select a type of order", "supervision-group-selector.select.type-of-order.error": "कृपया ऑर्डरचा प्रकार निवडा", + // "supervision-group-selector.select.group.error": "Please select a group", "supervision-group-selector.select.group.error": "कृपया गट निवडा", + // "supervision-group-selector.notification.create.success.title": "Successfully created supervision order for group {{ name }}", "supervision-group-selector.notification.create.success.title": "गट {{ name }} साठी यशस्वीरित्या सुपरविजन ऑर्डर तयार केली", + // "supervision-group-selector.notification.create.failure.title": "Error", "supervision-group-selector.notification.create.failure.title": "त्रुटी", + // "supervision-group-selector.notification.create.already-existing": "A supervision order already exists on this item for selected group", "supervision-group-selector.notification.create.already-existing": "निवडलेल्या गटासाठी या आयटमवर आधीच एक सुपरविजन ऑर्डर अस्तित्वात आहे", + // "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.header": "{{ dsoName }} साठी मेटाडेटा निर्यात करा", + // "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.info": "आपण {{ dsoName }} साठी मेटाडेटा निर्यात करू इच्छिता याची खात्री आहे का", + // "confirmation-modal.export-metadata.cancel": "Cancel", "confirmation-modal.export-metadata.cancel": "रद्द करा", + // "confirmation-modal.export-metadata.confirm": "Export", "confirmation-modal.export-metadata.confirm": "निर्यात करा", + // "confirmation-modal.export-batch.header": "Export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.header": "{{ dsoName }} साठी बॅच (ZIP) निर्यात करा", + // "confirmation-modal.export-batch.info": "Are you sure you want to export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.info": "आपण {{ dsoName }} साठी बॅच (ZIP) निर्यात करू इच्छिता याची खात्री आहे का", + // "confirmation-modal.export-batch.cancel": "Cancel", "confirmation-modal.export-batch.cancel": "रद्द करा", + // "confirmation-modal.export-batch.confirm": "Export", "confirmation-modal.export-batch.confirm": "निर्यात करा", + // "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.header": "EPerson \"{{ dsoName }}\" हटवा", + // "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.info": "आपण EPerson \"{{ dsoName }}\" हटवू इच्छिता याची खात्री आहे का", + // "confirmation-modal.delete-eperson.cancel": "Cancel", "confirmation-modal.delete-eperson.cancel": "रद्द करा", + // "confirmation-modal.delete-eperson.confirm": "Delete", "confirmation-modal.delete-eperson.confirm": "हटवा", + // "confirmation-modal.delete-community-collection-logo.info": "Are you sure you want to delete the logo?", "confirmation-modal.delete-community-collection-logo.info": "आपण लोगो हटवू इच्छिता याची खात्री आहे का?", + // "confirmation-modal.delete-profile.header": "Delete Profile", "confirmation-modal.delete-profile.header": "प्रोफाइल हटवा", + // "confirmation-modal.delete-profile.info": "Are you sure you want to delete your profile", "confirmation-modal.delete-profile.info": "आपण आपले प्रोफाइल हटवू इच्छिता याची खात्री आहे का", + // "confirmation-modal.delete-profile.cancel": "Cancel", "confirmation-modal.delete-profile.cancel": "रद्द करा", + // "confirmation-modal.delete-profile.confirm": "Delete", "confirmation-modal.delete-profile.confirm": "हटवा", + // "confirmation-modal.delete-subscription.header": "Delete Subscription", "confirmation-modal.delete-subscription.header": "सदस्यता हटवा", + // "confirmation-modal.delete-subscription.info": "Are you sure you want to delete subscription for \"{{ dsoName }}\"", "confirmation-modal.delete-subscription.info": "आपण \"{{ dsoName }}\" साठी सदस्यता हटवू इच्छिता याची खात्री आहे का", + // "confirmation-modal.delete-subscription.cancel": "Cancel", "confirmation-modal.delete-subscription.cancel": "रद्द करा", + // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "हटवा", + // "confirmation-modal.review-account-info.header": "Save the changes", "confirmation-modal.review-account-info.header": "बदल जतन करा", + // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", "confirmation-modal.review-account-info.info": "आपण आपल्या प्रोफाइलमध्ये बदल जतन करू इच्छिता याची खात्री आहे का", + // "confirmation-modal.review-account-info.cancel": "Cancel", "confirmation-modal.review-account-info.cancel": "रद्द करा", + // "confirmation-modal.review-account-info.confirm": "Confirm", "confirmation-modal.review-account-info.confirm": "पुष्टी करा", + // "confirmation-modal.review-account-info.save": "Save", "confirmation-modal.review-account-info.save": "जतन करा", + // "error.bitstream": "Error fetching bitstream", "error.bitstream": "बिटस्ट्रीम मिळवण्यात त्रुटी", + // "error.browse-by": "Error fetching items", "error.browse-by": "आयटम मिळवण्यात त्रुटी", + // "error.collection": "Error fetching collection", "error.collection": "संग्रह मिळवण्यात त्रुटी", + // "error.collections": "Error fetching collections", "error.collections": "संग्रह मिळवण्यात त्रुटी", + // "error.community": "Error fetching community", "error.community": "समुदाय मिळवण्यात त्रुटी", + // "error.identifier": "No item found for the identifier", "error.identifier": "ओळखकर्ता साठी कोणताही आयटम सापडला नाही", + // "error.default": "Error", "error.default": "त्रुटी", + // "error.item": "Error fetching item", "error.item": "आयटम मिळवण्यात त्रुटी", + // "error.items": "Error fetching items", "error.items": "आयटम मिळवण्यात त्रुटी", + // "error.objects": "Error fetching objects", "error.objects": "वस्तू मिळवण्यात त्रुटी", + // "error.recent-submissions": "Error fetching recent submissions", "error.recent-submissions": "अलीकडील सबमिशन मिळवण्यात त्रुटी", + // "error.profile-groups": "Error retrieving profile groups", "error.profile-groups": "प्रोफाइल गट मिळवण्यात त्रुटी", + // "error.search-results": "Error fetching search results", "error.search-results": "शोध परिणाम मिळवण्यात त्रुटी", - "error.invalid-search-query": "शोध क्वेरी वैध नाही. कृपया अधिक माहितीसाठी Solr query syntax सर्वोत्तम पद्धती तपासा.", + // "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + // TODO New key - Add a translation + "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + // "error.sub-collections": "Error fetching sub-collections", "error.sub-collections": "उप-संग्रह मिळवण्यात त्रुटी", + // "error.sub-communities": "Error fetching sub-communities", "error.sub-communities": "उप-समुदाय मिळवण्यात त्रुटी", - "error.submission.sections.init-form-error": "विभाग प्रारंभ करताना एक त्रुटी आली, कृपया आपल्या इनपुट-फॉर्म कॉन्फिगरेशन तपासा. तपशील खाली आहेत :

", + // "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + // TODO New key - Add a translation + "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "शीर्ष-स्तरीय समुदाय मिळवण्यात त्रुटी", - "error.validation.license.notgranted": "आपण आपले सबमिशन पूर्ण करण्यासाठी हा परवाना मंजूर करणे आवश्यक आहे. आपण सध्या हा परवाना मंजूर करण्यात अक्षम असल्यास आपण आपले कार्य जतन करू शकता आणि नंतर परत येऊ शकता किंवा सबमिशन काढून टाकू शकता.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "आपण आपले सबमिशन पूर्ण करण्यासाठी हा cclicense मंजूर करणे आवश्यक आहे. आपण सध्या हा cclicense मंजूर करण्यात अक्षम असल्यास, आपण आपले कार्य जतन करू शकता आणि नंतर परत येऊ शकता किंवा सबमिशन काढून टाकू शकता.", - "error.validation.pattern": "हे इनपुट वर्तमान पॅटर्नद्वारे प्रतिबंधित आहे: {{ pattern }}.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", + // TODO New key - Add a translation + "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", + + // "error.validation.filerequired": "The file upload is mandatory", "error.validation.filerequired": "फाइल अपलोड अनिवार्य आहे", + // "error.validation.required": "This field is required", "error.validation.required": "हे क्षेत्र आवश्यक आहे", + // "error.validation.NotValidEmail": "This is not a valid email", "error.validation.NotValidEmail": "हे वैध ईमेल नाही", + // "error.validation.emailTaken": "This email is already taken", "error.validation.emailTaken": "हे ईमेल आधीच घेतले गेले आहे", + // "error.validation.groupExists": "This group already exists", "error.validation.groupExists": "हा गट आधीच अस्तित्वात आहे", + // "error.validation.metadata.name.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Element & Qualifier fields instead", "error.validation.metadata.name.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत. कृपया एलिमेंट आणि क्वालिफायर क्षेत्रे वापरा", + // "error.validation.metadata.name.max-length": "This field may not contain more than 32 characters", "error.validation.metadata.name.max-length": "या क्षेत्रात 32 वर्णांपेक्षा जास्त असू शकत नाहीत", + // "error.validation.metadata.namespace.max-length": "This field may not contain more than 256 characters", "error.validation.metadata.namespace.max-length": "या क्षेत्रात 256 वर्णांपेक्षा जास्त असू शकत नाहीत", + // "error.validation.metadata.element.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Qualifier field instead", "error.validation.metadata.element.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत. कृपया क्वालिफायर क्षेत्र वापरा", + // "error.validation.metadata.element.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.element.max-length": "या क्षेत्रात 64 वर्णांपेक्षा जास्त असू शकत नाहीत", + // "error.validation.metadata.qualifier.invalid-pattern": "This field cannot contain dots, commas or spaces", "error.validation.metadata.qualifier.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत", + // "error.validation.metadata.qualifier.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.qualifier.max-length": "या क्षेत्रात 64 वर्णांपेक्षा जास्त असू शकत नाहीत", + // "feed.description": "Syndication feed", "feed.description": "सिंडिकेशन फीड", + // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "प्रतिबंधित बिटस्ट्रीम", + // "file-download-link.secure-access": "Restricted bitstream available via secure access token", "file-download-link.secure-access": "प्रतिबंधित बिटस्ट्रीम सुरक्षित प्रवेश टोकनद्वारे उपलब्ध", + // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "या आयटमसाठी फाइल्स मिळवण्यात त्रुटी", + // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "कॉपीराइट © 2002-{{ year }}", + // "footer.link.accessibility": "Accessibility settings", + // TODO New key - Add a translation + "footer.link.accessibility": "Accessibility settings", + + // "footer.link.dspace": "DSpace software", "footer.link.dspace": "DSpace सॉफ्टवेअर", + // "footer.link.lyrasis": "LYRASIS", "footer.link.lyrasis": "LYRASIS", + // "footer.link.cookies": "Cookie settings", "footer.link.cookies": "कुकी सेटिंग्ज", + // "footer.link.privacy-policy": "Privacy policy", "footer.link.privacy-policy": "गोपनीयता धोरण", + // "footer.link.end-user-agreement": "End User Agreement", "footer.link.end-user-agreement": "अंतिम वापरकर्ता करार", + // "footer.link.feedback": "Send Feedback", "footer.link.feedback": "प्रतिक्रिया पाठवा", + // "footer.link.coar-notify-support": "COAR Notify", "footer.link.coar-notify-support": "COAR Notify", + // "forgot-email.form.header": "Forgot Password", "forgot-email.form.header": "पासवर्ड विसरलात", + // "forgot-email.form.info": "Enter the email address associated with the account.", "forgot-email.form.info": "खात्याशी संबंधित ईमेल पत्ता प्रविष्ट करा.", + // "forgot-email.form.email": "Email Address *", "forgot-email.form.email": "ईमेल पत्ता *", + // "forgot-email.form.email.error.required": "Please fill in an email address", "forgot-email.form.email.error.required": "कृपया ईमेल पत्ता भरा", + // "forgot-email.form.email.error.not-email-form": "Please fill in a valid email address", "forgot-email.form.email.error.not-email-form": "कृपया वैध ईमेल पत्ता भरा", + // "forgot-email.form.email.hint": "An email will be sent to this address with a further instructions.", "forgot-email.form.email.hint": "या पत्त्यावर पुढील सूचनांसह एक ईमेल पाठवला जाईल.", + // "forgot-email.form.submit": "Reset password", "forgot-email.form.submit": "पासवर्ड रीसेट करा", + // "forgot-email.form.success.head": "Password reset email sent", "forgot-email.form.success.head": "पासवर्ड रीसेट ईमेल पाठवला", + // "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "forgot-email.form.success.content": "{{ email }} वर एक विशेष URL आणि पुढील सूचनांसह एक ईमेल पाठवला गेला आहे.", + // "forgot-email.form.error.head": "Error when trying to reset password", "forgot-email.form.error.head": "पासवर्ड रीसेट करण्याचा प्रयत्न करताना त्रुटी", - "forgot-email.form.error.content": "खालील ईमेल पत्त्यासह संबंधित खात्यासाठी पासवर्ड रीसेट करण्याचा प्रयत्न करताना एक त्रुटी आली: {{ email }}", + // "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + // TODO New key - Add a translation + "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + // "forgot-password.title": "Forgot Password", "forgot-password.title": "पासवर्ड विसरलात", + // "forgot-password.form.head": "Forgot Password", "forgot-password.form.head": "पासवर्ड विसरलात", + // "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box.", "forgot-password.form.info": "खालील बॉक्समध्ये नवीन पासवर्ड प्रविष्ट करा आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करा.", + // "forgot-password.form.card.security": "Security", "forgot-password.form.card.security": "सुरक्षा", + // "forgot-password.form.identification.header": "Identify", "forgot-password.form.identification.header": "ओळख", - "forgot-password.form.identification.email": "ईमेल पत्ता: ", + // "forgot-password.form.identification.email": "Email address: ", + // TODO New key - Add a translation + "forgot-password.form.identification.email": "Email address: ", + // "forgot-password.form.label.password": "Password", "forgot-password.form.label.password": "पासवर्ड", + // "forgot-password.form.label.passwordrepeat": "Retype to confirm", "forgot-password.form.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा", + // "forgot-password.form.error.empty-password": "Please enter a password in the boxes above.", "forgot-password.form.error.empty-password": "कृपया वरील बॉक्समध्ये पासवर्ड प्रविष्ट करा.", + // "forgot-password.form.error.matching-passwords": "The passwords do not match.", "forgot-password.form.error.matching-passwords": "पासवर्ड जुळत नाहीत.", + // "forgot-password.form.notification.error.title": "Error when trying to submit new password", "forgot-password.form.notification.error.title": "नवीन पासवर्ड सबमिट करण्याचा प्रयत्न करताना त्रुटी", + // "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.", "forgot-password.form.notification.success.content": "पासवर्ड रीसेट यशस्वी झाला. आपण तयार केलेल्या वापरकर्त्याच्या रूपात लॉग इन केले गेले आहे.", + // "forgot-password.form.notification.success.title": "Password reset completed", "forgot-password.form.notification.success.title": "पासवर्ड रीसेट पूर्ण", + // "forgot-password.form.submit": "Submit password", "forgot-password.form.submit": "पासवर्ड सबमिट करा", + // "form.add": "Add more", "form.add": "अधिक जोडा", + // "form.add-help": "Click here to add the current entry and to add another one", "form.add-help": "सध्याची नोंदणी जोडा आणि आणखी एक जोडा", + // "form.cancel": "Cancel", "form.cancel": "रद्द करा", + // "form.clear": "Clear", "form.clear": "साफ करा", + // "form.clear-help": "Click here to remove the selected value", "form.clear-help": "निवडलेले मूल्य काढण्यासाठी येथे क्लिक करा", + // "form.discard": "Discard", "form.discard": "काढून टाका", + // "form.drag": "Drag", "form.drag": "ओढा", + // "form.edit": "Edit", "form.edit": "संपादित करा", + // "form.edit-help": "Click here to edit the selected value", "form.edit-help": "निवडलेले मूल्य संपादित करण्यासाठी येथे क्लिक करा", + // "form.first-name": "First name", "form.first-name": "पहिले नाव", + // "form.group-collapse": "Collapse", "form.group-collapse": "संकुचित करा", + // "form.group-collapse-help": "Click here to collapse", "form.group-collapse-help": "संकुचित करण्यासाठी येथे क्लिक करा", + // "form.group-expand": "Expand", "form.group-expand": "विस्तृत करा", + // "form.group-expand-help": "Click here to expand and add more elements", "form.group-expand-help": "विस्तृत करण्यासाठी आणि अधिक घटक जोडण्यासाठी येथे क्लिक करा", + // "form.last-name": "Last name", "form.last-name": "शेवटचे नाव", + // "form.loading": "Loading...", "form.loading": "लोड करत आहे...", + // "form.lookup": "Lookup", "form.lookup": "शोधा", + // "form.lookup-help": "Click here to look up an existing relation", "form.lookup-help": "विद्यमान संबंध शोधण्यासाठी येथे क्लिक करा", + // "form.no-results": "No results found", "form.no-results": "कोणतेही परिणाम सापडले नाहीत", + // "form.no-value": "No value entered", "form.no-value": "कोणतेही मूल्य प्रविष्ट केले नाही", + // "form.other-information.email": "Email", "form.other-information.email": "ईमेल", + // "form.other-information.first-name": "First Name", "form.other-information.first-name": "पहिले नाव", + // "form.other-information.insolr": "In Solr Index", "form.other-information.insolr": "Solr अनुक्रमणिकेत", + // "form.other-information.institution": "Institution", "form.other-information.institution": "संस्था", + // "form.other-information.last-name": "Last Name", "form.other-information.last-name": "शेवटचे नाव", + // "form.other-information.orcid": "ORCID", "form.other-information.orcid": "ORCID", + // "form.remove": "Remove", "form.remove": "काढा", + // "form.save": "Save", "form.save": "जतन करा", + // "form.save-help": "Save changes", "form.save-help": "बदल जतन करा", + // "form.search": "Search", "form.search": "शोधा", + // "form.search-help": "Click here to look for an existing correspondence", "form.search-help": "विद्यमान पत्रव्यवहार शोधण्यासाठी येथे क्लिक करा", + // "form.submit": "Save", "form.submit": "जतन करा", + // "form.create": "Create", "form.create": "तयार करा", + // "form.number-picker.decrement": "Decrement {{field}}", "form.number-picker.decrement": "{{field}} कमी करा", + // "form.number-picker.increment": "Increment {{field}}", "form.number-picker.increment": "{{field}} वाढवा", + // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "आयटम नवीन स्थितीत ड्रॉप करा", + // "grant-deny-request-copy.deny": "Deny access request", "grant-deny-request-copy.deny": "प्रवेश विनंती नकारा", + // "grant-deny-request-copy.revoke": "Revoke access", "grant-deny-request-copy.revoke": "प्रवेश रद्द करा", + // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "मागे", + // "grant-deny-request-copy.email.message": "Optional additional message", "grant-deny-request-copy.email.message": "ऐच्छिक अतिरिक्त संदेश", + // "grant-deny-request-copy.email.message.empty": "Please enter a message", "grant-deny-request-copy.email.message.empty": "कृपया एक संदेश प्रविष्ट करा", + // "grant-deny-request-copy.email.permissions.info": "You may use this occasion to reconsider the access restrictions on the document, to avoid having to respond to these requests. If you’d like to ask the repository administrators to remove these restrictions, please check the box below.", "grant-deny-request-copy.email.permissions.info": "या विनंत्यांना प्रतिसाद देण्याची आवश्यकता टाळण्यासाठी, आपण दस्तऐवजावरील प्रवेश निर्बंधांचा पुनर्विचार करण्यासाठी ही संधी वापरू शकता. आपण रेपॉझिटरी प्रशासकांना हे निर्बंध काढून टाकण्याची विनंती करू इच्छित असल्यास, कृपया खालील बॉक्स तपासा.", + // "grant-deny-request-copy.email.permissions.label": "Change to open access", "grant-deny-request-copy.email.permissions.label": "मुक्त प्रवेशात बदला", + // "grant-deny-request-copy.email.send": "Send", "grant-deny-request-copy.email.send": "पाठवा", + // "grant-deny-request-copy.email.subject": "Subject", "grant-deny-request-copy.email.subject": "विषय", + // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "कृपया एक विषय प्रविष्ट करा", + // "grant-deny-request-copy.grant": "Grant access request", "grant-deny-request-copy.grant": "प्रवेश विनंती मंजूर करा", + // "grant-deny-request-copy.header": "Document copy request", "grant-deny-request-copy.header": "दस्तऐवज प्रत विनंती", + // "grant-deny-request-copy.home-page": "Take me to the home page", "grant-deny-request-copy.home-page": "मला मुख्य पृष्ठावर घेऊन जा", + // "grant-deny-request-copy.intro1": "If you are one of the authors of the document {{ name }}, then please use one of the options below to respond to the user's request.", "grant-deny-request-copy.intro1": "आपण दस्तऐवजाच्या लेखकांपैकी एक असल्यास {{ name }}, कृपया वापरकर्त्याच्या विनंतीला प्रतिसाद देण्यासाठी खालील पर्यायांपैकी एक वापरा.", + // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "पर्याय निवडल्यानंतर, आपल्याला सुचवलेले ईमेल उत्तर सादर केले जाईल जे आपण संपादित करू शकता.", + // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", "grant-deny-request-copy.previous-decision": "ही विनंती पूर्वी सुरक्षित प्रवेश टोकनसह मंजूर केली गेली होती. आपण आता हा प्रवेश रद्द करू शकता जेणेकरून प्रवेश टोकन त्वरित अमान्य होईल", + // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "ही विनंती आधीच प्रक्रिया केली गेली आहे. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", + // "grant-request-copy.email.subject": "Request copy of document", "grant-request-copy.email.subject": "दस्तऐवजाची प्रत विनंती", + // "grant-request-copy.error": "An error occurred", "grant-request-copy.error": "एक त्रुटी आली", + // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "दस्तऐवज प्रत विनंती मंजूर करा", + // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", "grant-request-copy.intro.attachment": "विनंतीच्या अर्जदाराला एक संदेश पाठवला जाईल. विनंती केलेले दस्तऐवज जोडले जातील.", + // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", "grant-request-copy.intro.link": "विनंतीच्या अर्जदाराला एक संदेश पाठवला जाईल. विनंती केलेल्या दस्तऐवजांना प्रवेश देणारा एक सुरक्षित दुवा जोडला जाईल. खालील \"प्रवेश कालावधी\" मेनूमध्ये निवडलेल्या कालावधीसाठी दुवा प्रवेश प्रदान करेल.", - "grant-request-copy.intro.link.preview": "खाली अर्जदाराला पाठवला जाणारा दुव्याचा पूर्वावलोकन आहे:", + // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // TODO New key - Add a translation + "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "आयटम विनंती यशस्वीरित्या मंजूर केली", + // "grant-request-copy.access-period.header": "Access period", "grant-request-copy.access-period.header": "प्रवेश कालावधी", + // "grant-request-copy.access-period.+1DAY": "1 day", "grant-request-copy.access-period.+1DAY": "1 दिवस", + // "grant-request-copy.access-period.+7DAYS": "1 week", "grant-request-copy.access-period.+7DAYS": "1 आठवडा", + // "grant-request-copy.access-period.+1MONTH": "1 month", "grant-request-copy.access-period.+1MONTH": "1 महिना", + // "grant-request-copy.access-period.+3MONTHS": "3 months", "grant-request-copy.access-period.+3MONTHS": "3 महिने", + // "grant-request-copy.access-period.FOREVER": "Forever", "grant-request-copy.access-period.FOREVER": "सर्वकाळ", + // "health.breadcrumbs": "Health", "health.breadcrumbs": "आरोग्य", + // "health-page.heading": "Health", "health-page.heading": "आरोग्य", + // "health-page.info-tab": "Info", "health-page.info-tab": "माहिती", + // "health-page.status-tab": "Status", "health-page.status-tab": "स्थिती", + // "health-page.error.msg": "The health check service is temporarily unavailable", "health-page.error.msg": "आरोग्य तपासणी सेवा तात्पुरती अनुपलब्ध आहे", + // "health-page.property.status": "Status code", "health-page.property.status": "स्थिती कोड", + // "health-page.section.db.title": "Database", "health-page.section.db.title": "डेटाबेस", + // "health-page.section.geoIp.title": "GeoIp", "health-page.section.geoIp.title": "GeoIp", + // "health-page.section.solrAuthorityCore.title": "Solr: authority core", "health-page.section.solrAuthorityCore.title": "Solr: authority core", + // "health-page.section.solrOaiCore.title": "Solr: oai core", "health-page.section.solrOaiCore.title": "Solr: oai core", + // "health-page.section.solrSearchCore.title": "Solr: search core", "health-page.section.solrSearchCore.title": "Solr: search core", + // "health-page.section.solrStatisticsCore.title": "Solr: statistics core", "health-page.section.solrStatisticsCore.title": "Solr: statistics core", + // "health-page.section-info.app.title": "Application Backend", "health-page.section-info.app.title": "अॅप्लिकेशन बॅकएंड", + // "health-page.section-info.java.title": "Java", "health-page.section-info.java.title": "Java", + // "health-page.status": "Status", "health-page.status": "स्थिती", + // "health-page.status.ok.info": "Operational", "health-page.status.ok.info": "ऑपरेशनल", + // "health-page.status.error.info": "Problems detected", "health-page.status.error.info": "समस्या आढळल्या", + // "health-page.status.warning.info": "Possible issues detected", "health-page.status.warning.info": "संभाव्य समस्या आढळल्या", + // "health-page.title": "Health", "health-page.title": "आरोग्य", + // "health-page.section.no-issues": "No issues detected", "health-page.section.no-issues": "कोणत्याही समस्या आढळल्या नाहीत", + // "home.description": "", "home.description": "", + // "home.breadcrumbs": "Home", "home.breadcrumbs": "मुख्य पृष्ठ", + // "home.search-form.placeholder": "Search the repository ...", "home.search-form.placeholder": "रेपॉझिटरी शोधा ...", + // "home.title": "Home", "home.title": "मुख्य पृष्ठ", + // "home.top-level-communities.head": "Communities in DSpace", "home.top-level-communities.head": "DSpace मधील समुदाय", + // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "त्याच्या संग्रह ब्राउझ करण्यासाठी एक समुदाय निवडा.", + // "info.accessibility-settings.breadcrumbs": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.breadcrumbs": "Accessibility settings", + + // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + // TODO New key - Add a translation + "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + + // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + + // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + + // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + + // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + // TODO New key - Add a translation + "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + + // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + + // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + + // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + + // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + + // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + + // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + + // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + + // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + + // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + + // "info.accessibility-settings.reset-notification": "Successfully reset settings.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-notification": "Successfully reset settings.", + + // "info.accessibility-settings.reset": "Reset accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.reset": "Reset accessibility settings", + + // "info.accessibility-settings.submit": "Save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.submit": "Save accessibility settings", + + // "info.accessibility-settings.title": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.title": "Accessibility settings", + + // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "मी अंतिम वापरकर्ता करार वाचला आहे आणि मी सहमत आहे", + // "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement", "info.end-user-agreement.accept.error": "अंतिम वापरकर्ता करार स्वीकारताना एक त्रुटी आली", + // "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement", "info.end-user-agreement.accept.success": "अंतिम वापरकर्ता करार यशस्वीरित्या अद्यतनित केला", + // "info.end-user-agreement.breadcrumbs": "End User Agreement", "info.end-user-agreement.breadcrumbs": "अंतिम वापरकर्ता करार", + // "info.end-user-agreement.buttons.cancel": "Cancel", "info.end-user-agreement.buttons.cancel": "रद्द करा", + // "info.end-user-agreement.buttons.save": "Save", "info.end-user-agreement.buttons.save": "जतन करा", + // "info.end-user-agreement.head": "End User Agreement", "info.end-user-agreement.head": "अंतिम वापरकर्ता करार", + // "info.end-user-agreement.title": "End User Agreement", "info.end-user-agreement.title": "अंतिम वापरकर्ता करार", + // "info.end-user-agreement.hosting-country": "the United States", "info.end-user-agreement.hosting-country": "संयुक्त राज्ये", + // "info.privacy.breadcrumbs": "Privacy Statement", "info.privacy.breadcrumbs": "गोपनीयता विधान", + // "info.privacy.head": "Privacy Statement", "info.privacy.head": "गोपनीयता विधान", + // "info.privacy.title": "Privacy Statement", "info.privacy.title": "गोपनीयता विधान", + // "info.feedback.breadcrumbs": "Feedback", "info.feedback.breadcrumbs": "प्रतिक्रिया", + // "info.feedback.head": "Feedback", "info.feedback.head": "प्रतिक्रिया", + // "info.feedback.title": "Feedback", "info.feedback.title": "प्रतिक्रिया", + // "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!", "info.feedback.info": "DSpace प्रणालीबद्दल आपली प्रतिक्रिया सामायिक केल्याबद्दल धन्यवाद. आपली टिप्पण्या कौतुकास्पद आहेत!", + // "info.feedback.email_help": "This address will be used to follow up on your feedback.", "info.feedback.email_help": "आपल्या प्रतिक्रियेवर फॉलो अप करण्यासाठी हा पत्ता वापरला जाईल.", + // "info.feedback.send": "Send Feedback", "info.feedback.send": "प्रतिक्रिया पाठवा", + // "info.feedback.comments": "Comments", "info.feedback.comments": "टिप्पण्या", + // "info.feedback.email-label": "Your Email", "info.feedback.email-label": "आपला ईमेल", + // "info.feedback.create.success": "Feedback Sent Successfully!", "info.feedback.create.success": "प्रतिक्रिया यशस्वीरित्या पाठवली!", + // "info.feedback.error.email.required": "A valid email address is required", "info.feedback.error.email.required": "वैध ईमेल पत्ता आवश्यक आहे", + // "info.feedback.error.message.required": "A comment is required", "info.feedback.error.message.required": "एक टिप्पणी आवश्यक आहे", + // "info.feedback.page-label": "Page", "info.feedback.page-label": "पृष्ठ", + // "info.feedback.page_help": "The page related to your feedback", "info.feedback.page_help": "आपल्या प्रतिक्रिये संबंधित पृष्ठ", + // "info.coar-notify-support.title": "COAR Notify Support", "info.coar-notify-support.title": "COAR Notify समर्थन", + // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "COAR Notify समर्थन", + // "item.alerts.private": "This item is non-discoverable", "item.alerts.private": "हा आयटम शोधण्यायोग्य नाही", + // "item.alerts.withdrawn": "This item has been withdrawn", "item.alerts.withdrawn": "हा आयटम मागे घेतला गेला आहे", + // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "पुनर्स्थितीची विनंती करा", + // "quality-assurance.event.table.person-who-requested": "Requested by", "quality-assurance.event.table.person-who-requested": "विनंती केलेले", - "item.edit.authorizations.heading": "या संपादकासह आपण आयटमच्या धोरणांचे दृश्य आणि बदल करू शकता, तसेच वैयक्तिक आयटम घटकांचे धोरण बदलू शकता: बंडल्स आणि बिटस्ट्रीम्स. थोडक्यात, एक आयटम बंडल्सचा कंटेनर आहे, आणि बंडल्स बिटस्ट्रीम्सचे कंटेनर आहेत. कंटेनरमध्ये सहसा ADD/REMOVE/READ/WRITE धोरणे असतात, तर बिटस्ट्रीम्समध्ये फक्त READ/WRITE धोरणे असतात.", + // "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + // TODO New key - Add a translation + "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "आयटमचे धोरणे संपादित करा", + // "item.badge.status": "Item status:", + // TODO New key - Add a translation + "item.badge.status": "Item status:", + + // "item.badge.private": "Non-discoverable", "item.badge.private": "शोधण्यायोग्य नाही", + // "item.badge.withdrawn": "Withdrawn", "item.badge.withdrawn": "मागे घेतले", + // "item.bitstreams.upload.bundle": "Bundle", "item.bitstreams.upload.bundle": "बंडल", + // "item.bitstreams.upload.bundle.placeholder": "Select a bundle or input new bundle name", "item.bitstreams.upload.bundle.placeholder": "एक बंडल निवडा किंवा नवीन बंडल नाव प्रविष्ट करा", + // "item.bitstreams.upload.bundle.new": "Create bundle", "item.bitstreams.upload.bundle.new": "बंडल तयार करा", + // "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.", "item.bitstreams.upload.bundles.empty": "या आयटममध्ये बिटस्ट्रीम अपलोड करण्यासाठी कोणतेही बंडल नाहीत.", + // "item.bitstreams.upload.cancel": "Cancel", "item.bitstreams.upload.cancel": "रद्द करा", + // "item.bitstreams.upload.drop-message": "Drop a file to upload", "item.bitstreams.upload.drop-message": "फाइल अपलोड करण्यासाठी ड्रॉप करा", - "item.bitstreams.upload.item": "आयटम: ", + // "item.bitstreams.upload.item": "Item: ", + // TODO New key - Add a translation + "item.bitstreams.upload.item": "Item: ", + // "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.", "item.bitstreams.upload.notifications.bundle.created.content": "नवीन बंडल यशस्वीरित्या तयार केले.", + // "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle", "item.bitstreams.upload.notifications.bundle.created.title": "बंडल तयार केले", + // "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.", "item.bitstreams.upload.notifications.upload.failed": "अपलोड अयशस्वी. कृपया सामग्री सत्यापित करा आणि पुन्हा प्रयत्न करा.", + // "item.bitstreams.upload.title": "Upload bitstream", "item.bitstreams.upload.title": "बिटस्ट्रीम अपलोड करा", + // "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload", "item.edit.bitstreams.bundle.edit.buttons.upload": "अपलोड करा", + // "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.", "item.edit.bitstreams.bundle.displaying": "सध्या {{ amount }} बिटस्ट्रीम्स {{ total }} पैकी प्रदर्शित करत आहे.", + // "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})", "item.edit.bitstreams.bundle.load.all": "सर्व लोड करा ({{ total }})", + // "item.edit.bitstreams.bundle.load.more": "Load more", "item.edit.bitstreams.bundle.load.more": "अधिक लोड करा", - "item.edit.bitstreams.bundle.name": "बंडल: {{ name }}", + // "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + // TODO New key - Add a translation + "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle", "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} बंडलमधील बिटस्ट्रीम्स", + // "item.edit.bitstreams.bundle.tooltip": "You can move a bitstream to a different page by dropping it on the page number.", "item.edit.bitstreams.bundle.tooltip": "आपण बिटस्ट्रीमला पृष्ठ क्रमांकावर ड्रॉप करून वेगळ्या पृष्ठावर हलवू शकता.", + // "item.edit.bitstreams.discard-button": "Discard", "item.edit.bitstreams.discard-button": "काढून टाका", + // "item.edit.bitstreams.edit.buttons.download": "Download", "item.edit.bitstreams.edit.buttons.download": "डाउनलोड करा", + // "item.edit.bitstreams.edit.buttons.drag": "Drag", "item.edit.bitstreams.edit.buttons.drag": "ओढा", + // "item.edit.bitstreams.edit.buttons.edit": "Edit", "item.edit.bitstreams.edit.buttons.edit": "संपादित करा", + // "item.edit.bitstreams.edit.buttons.remove": "Remove", "item.edit.bitstreams.edit.buttons.remove": "काढा", + // "item.edit.bitstreams.edit.buttons.undo": "Undo changes", "item.edit.bitstreams.edit.buttons.undo": "बदल पूर्ववत करा", + // "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} was returned to position {{ toIndex }} and is no longer selected.", "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} परत {{ toIndex }} स्थितीत आणले गेले आहे आणि आता निवडलेले नाही.", + // "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} is no longer selected.", "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} आता निवडलेले नाही.", + // "item.edit.bitstreams.edit.live.loading": "Waiting for move to complete.", "item.edit.bitstreams.edit.live.loading": "हलविण्याची प्रक्रिया पूर्ण होण्याची प्रतीक्षा करत आहे.", + // "item.edit.bitstreams.edit.live.select": "{{ bitstream }} is selected.", "item.edit.bitstreams.edit.live.select": "{{ bitstream }} निवडले गेले आहे.", + // "item.edit.bitstreams.edit.live.move": "{{ bitstream }} is now in position {{ toIndex }}.", "item.edit.bitstreams.edit.live.move": "{{ bitstream }} आता {{ toIndex }} स्थितीत आहे.", + // "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.", "item.edit.bitstreams.empty": "या आयटममध्ये कोणतेही बिटस्ट्रीम नाहीत. एक तयार करण्यासाठी अपलोड बटणावर क्लिक करा.", - "item.edit.bitstreams.info-alert": "बिटस्ट्रीम त्यांच्या बंडलमध्ये पुन्हा क्रमित केले जाऊ शकतात. ड्रॅग हँडल धरून आणि माउस हलवून. पर्यायाने, बिटस्ट्रीम कीबोर्ड वापरून हलविले जाऊ शकतात. बिटस्ट्रीमचे ड्रॅग हँडल फोकसमध्ये असताना एंटर दाबून बिटस्ट्रीम निवडा. बिटस्ट्रीम वर किंवा खाली हलविण्यासाठी बाण की वापरा. बिटस्ट्रीमची वर्तमान स्थिती पुष्टी करण्यासाठी पुन्हा एंटर दाबा.", + // "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + // TODO New key - Add a translation + "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + // "item.edit.bitstreams.headers.actions": "Actions", "item.edit.bitstreams.headers.actions": "क्रिया", + // "item.edit.bitstreams.headers.bundle": "Bundle", "item.edit.bitstreams.headers.bundle": "बंडल", + // "item.edit.bitstreams.headers.description": "Description", "item.edit.bitstreams.headers.description": "वर्णन", + // "item.edit.bitstreams.headers.format": "Format", "item.edit.bitstreams.headers.format": "फॉरमॅट", + // "item.edit.bitstreams.headers.name": "Name", "item.edit.bitstreams.headers.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": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", + // "item.edit.bitstreams.notifications.discarded.title": "Changes discarded", "item.edit.bitstreams.notifications.discarded.title": "बदल रद्द केले", + // "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams", "item.edit.bitstreams.notifications.move.failed.title": "बिटस्ट्रीम हलविण्यात त्रुटी", + // "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": "या आयटमच्या बिटस्ट्रीम आणि बंडलमध्ये आपले हलविण्याचे बदल जतन केले गेले आहेत.", + // "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved", "item.edit.bitstreams.notifications.move.saved.title": "हलविण्याचे बदल जतन केले", + // "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": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", + // "item.edit.bitstreams.notifications.outdated.title": "Changes outdated", "item.edit.bitstreams.notifications.outdated.title": "बदल कालबाह्य झाले", + // "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream", "item.edit.bitstreams.notifications.remove.failed.title": "बिटस्ट्रीम हटविण्यात त्रुटी", + // "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": "या आयटमच्या बिटस्ट्रीम हटविण्याचे बदल जतन केले गेले आहेत.", + // "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved", "item.edit.bitstreams.notifications.remove.saved.title": "हटविण्याचे बदल जतन केले", + // "item.edit.bitstreams.reinstate-button": "Undo", "item.edit.bitstreams.reinstate-button": "पूर्ववत करा", + // "item.edit.bitstreams.save-button": "Save", "item.edit.bitstreams.save-button": "जतन करा", + // "item.edit.bitstreams.upload-button": "Upload", "item.edit.bitstreams.upload-button": "अपलोड करा", + // "item.edit.bitstreams.load-more.link": "Load more", "item.edit.bitstreams.load-more.link": "अधिक लोड करा", + // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "रद्द करा", + // "item.edit.delete.confirm": "Delete", "item.edit.delete.confirm": "हटवा", - "item.edit.delete.description": "आपण खात्री आहात की हा आयटम पूर्णपणे हटविला जावा? सावधानता: सध्या, कोणतेही टॉम्बस्टोन शिल्लक राहणार नाही.", + // "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + // TODO New key - Add a translation + "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + // "item.edit.delete.error": "An error occurred while deleting the item", "item.edit.delete.error": "आयटम हटविताना त्रुटी आली", - "item.edit.delete.header": "आयटम हटवा: {{ id }}", + // "item.edit.delete.header": "Delete item: {{ id }}", + // TODO New key - Add a translation + "item.edit.delete.header": "Delete item: {{ id }}", + // "item.edit.delete.success": "The item has been deleted", "item.edit.delete.success": "आयटम हटविला गेला आहे", + // "item.edit.head": "Edit Item", "item.edit.head": "आयटम संपादित करा", + // "item.edit.breadcrumbs": "Edit Item", "item.edit.breadcrumbs": "आयटम संपादित करा", + // "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab", "item.edit.tabs.disabled.tooltip": "आपल्याला या टॅबमध्ये प्रवेश करण्याची परवानगी नाही", + // "item.edit.tabs.mapper.head": "Collection Mapper", "item.edit.tabs.mapper.head": "संग्रह मॅपर", + // "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper", "item.edit.tabs.item-mapper.title": "आयटम संपादन - संग्रह मॅपर", + // "item.edit.identifiers.doi.status.UNKNOWN": "Unknown", "item.edit.identifiers.doi.status.UNKNOWN": "अज्ञात", + // "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "Queued for registration", "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "नोंदणीसाठी रांगेत", + // "item.edit.identifiers.doi.status.TO_BE_RESERVED": "Queued for reservation", "item.edit.identifiers.doi.status.TO_BE_RESERVED": "आरक्षणासाठी रांगेत", + // "item.edit.identifiers.doi.status.IS_REGISTERED": "Registered", "item.edit.identifiers.doi.status.IS_REGISTERED": "नोंदणीकृत", + // "item.edit.identifiers.doi.status.IS_RESERVED": "Reserved", "item.edit.identifiers.doi.status.IS_RESERVED": "आरक्षित", + // "item.edit.identifiers.doi.status.UPDATE_RESERVED": "Reserved (update queued)", "item.edit.identifiers.doi.status.UPDATE_RESERVED": "आरक्षित (अपडेट रांगेत)", + // "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Registered (update queued)", "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "नोंदणीकृत (अपडेट रांगेत)", + // "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "Queued for update and registration", "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "अपडेट आणि नोंदणीसाठी रांगेत", + // "item.edit.identifiers.doi.status.TO_BE_DELETED": "Queued for deletion", "item.edit.identifiers.doi.status.TO_BE_DELETED": "हटविण्यासाठी रांगेत", + // "item.edit.identifiers.doi.status.DELETED": "Deleted", "item.edit.identifiers.doi.status.DELETED": "हटविले", + // "item.edit.identifiers.doi.status.PENDING": "Pending (not registered)", "item.edit.identifiers.doi.status.PENDING": "प्रलंबित (नोंदणीकृत नाही)", + // "item.edit.identifiers.doi.status.MINTED": "Minted (not registered)", "item.edit.identifiers.doi.status.MINTED": "मिंटेड (नोंदणीकृत नाही)", + // "item.edit.tabs.status.buttons.register-doi.label": "Register a new or pending DOI", "item.edit.tabs.status.buttons.register-doi.label": "नवीन किंवा प्रलंबित DOI नोंदणी करा", + // "item.edit.tabs.status.buttons.register-doi.button": "Register DOI...", "item.edit.tabs.status.buttons.register-doi.button": "DOI नोंदणी करा...", + // "item.edit.register-doi.header": "Register a new or pending DOI", "item.edit.register-doi.header": "नवीन किंवा प्रलंबित DOI नोंदणी करा", + // "item.edit.register-doi.description": "Review any pending identifiers and item metadata below and click Confirm to proceed with DOI registration, or Cancel to back out", "item.edit.register-doi.description": "खाली कोणतेही प्रलंबित ओळखपत्रे आणि आयटम मेटाडेटा पुनरावलोकन करा आणि DOI नोंदणीसाठी पुढे जाण्यासाठी पुष्टी करा क्लिक करा, किंवा मागे जाण्यासाठी रद्द करा", + // "item.edit.register-doi.confirm": "Confirm", "item.edit.register-doi.confirm": "पुष्टी करा", + // "item.edit.register-doi.cancel": "Cancel", "item.edit.register-doi.cancel": "रद्द करा", + // "item.edit.register-doi.success": "DOI queued for registration successfully.", "item.edit.register-doi.success": "DOI नोंदणीसाठी यशस्वीरित्या रांगेत लावले.", + // "item.edit.register-doi.error": "Error registering DOI", "item.edit.register-doi.error": "DOI नोंदणी करताना त्रुटी", + // "item.edit.register-doi.to-update": "The following DOI has already been minted and will be queued for registration online", "item.edit.register-doi.to-update": "खालील DOI आधीच मिंटेड आहे आणि ऑनलाइन नोंदणीसाठी रांगेत लावले जाईल", + // "item.edit.item-mapper.buttons.add": "Map item to selected collections", "item.edit.item-mapper.buttons.add": "निवडलेल्या संग्रहांमध्ये आयटम मॅप करा", + // "item.edit.item-mapper.buttons.remove": "Remove item's mapping for selected collections", "item.edit.item-mapper.buttons.remove": "निवडलेल्या संग्रहांसाठी आयटमचे मॅपिंग काढा", + // "item.edit.item-mapper.cancel": "Cancel", "item.edit.item-mapper.cancel": "रद्द करा", + // "item.edit.item-mapper.description": "This is the item mapper tool that allows administrators to map this item to other collections. You can search for collections and map them, or browse the list of collections the item is currently mapped to.", "item.edit.item-mapper.description": "हे आयटम मॅपर साधन आहे जे प्रशासकांना या आयटमला इतर संग्रहांमध्ये मॅप करण्याची परवानगी देते. आपण संग्रह शोधू शकता आणि त्यांना मॅप करू शकता, किंवा आयटम सध्या मॅप केलेल्या संग्रहांची यादी ब्राउझ करू शकता.", + // "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections", "item.edit.item-mapper.head": "आयटम मॅपर - आयटम संग्रहांमध्ये मॅप करा", - "item.edit.item-mapper.item": "आयटम: \"{{name}}\"", + // "item.edit.item-mapper.item": "Item: \"{{name}}\"", + // TODO New key - Add a translation + "item.edit.item-mapper.item": "Item: \"{{name}}\"", + // "item.edit.item-mapper.no-search": "Please enter a query to search", "item.edit.item-mapper.no-search": "शोधण्यासाठी क्वेरी प्रविष्ट करा", + // "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": "{{amount}} संग्रहांसाठी आयटम मॅपिंगमध्ये त्रुटी आल्या.", + // "item.edit.item-mapper.notifications.add.error.head": "Mapping errors", "item.edit.item-mapper.notifications.add.error.head": "मॅपिंग त्रुटी", + // "item.edit.item-mapper.notifications.add.success.content": "Successfully mapped item to {{amount}} collections.", "item.edit.item-mapper.notifications.add.success.content": "{{amount}} संग्रहांमध्ये आयटम यशस्वीरित्या मॅप केले.", + // "item.edit.item-mapper.notifications.add.success.head": "Mapping completed", "item.edit.item-mapper.notifications.add.success.head": "मॅपिंग पूर्ण झाले", + // "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.error.content": "{{amount}} संग्रहांसाठी मॅपिंग काढताना त्रुटी आल्या.", + // "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors", "item.edit.item-mapper.notifications.remove.error.head": "मॅपिंग काढण्याच्या त्रुटी", + // "item.edit.item-mapper.notifications.remove.success.content": "Successfully removed mapping of item to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.success.content": "{{amount}} संग्रहांमधून आयटमचे मॅपिंग यशस्वीरित्या काढले.", + // "item.edit.item-mapper.notifications.remove.success.head": "Removal of mapping completed", "item.edit.item-mapper.notifications.remove.success.head": "मॅपिंग काढणे पूर्ण झाले", + // "item.edit.item-mapper.search-form.placeholder": "Search collections...", "item.edit.item-mapper.search-form.placeholder": "संग्रह शोधा...", + // "item.edit.item-mapper.tabs.browse": "Browse mapped collections", "item.edit.item-mapper.tabs.browse": "मॅप केलेले संग्रह ब्राउझ करा", + // "item.edit.item-mapper.tabs.map": "Map new collections", "item.edit.item-mapper.tabs.map": "नवीन संग्रह मॅप करा", + // "item.edit.metadata.add-button": "Add", "item.edit.metadata.add-button": "जोडा", + // "item.edit.metadata.discard-button": "Discard", "item.edit.metadata.discard-button": "रद्द करा", + // "item.edit.metadata.edit.language": "Edit language", "item.edit.metadata.edit.language": "भाषा संपादित करा", + // "item.edit.metadata.edit.value": "Edit value", "item.edit.metadata.edit.value": "मूल्य संपादित करा", + // "item.edit.metadata.edit.authority.key": "Edit authority key", "item.edit.metadata.edit.authority.key": "प्राधिकरण की संपादित करा", + // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", "item.edit.metadata.edit.buttons.enable-free-text-editing": "फ्री-टेक्स्ट संपादन सक्षम करा", + // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", "item.edit.metadata.edit.buttons.disable-free-text-editing": "फ्री-टेक्स्ट संपादन अक्षम करा", + // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "पुष्टी करा", + // "item.edit.metadata.edit.buttons.drag": "Drag to reorder", "item.edit.metadata.edit.buttons.drag": "पुन्हा क्रमित करण्यासाठी ड्रॅग करा", + // "item.edit.metadata.edit.buttons.edit": "Edit", "item.edit.metadata.edit.buttons.edit": "संपादित करा", + // "item.edit.metadata.edit.buttons.remove": "Remove", "item.edit.metadata.edit.buttons.remove": "काढा", + // "item.edit.metadata.edit.buttons.undo": "Undo changes", "item.edit.metadata.edit.buttons.undo": "बदल पूर्ववत करा", + // "item.edit.metadata.edit.buttons.unedit": "Stop editing", "item.edit.metadata.edit.buttons.unedit": "संपादन थांबवा", + // "item.edit.metadata.edit.buttons.virtual": "This is a virtual metadata value, i.e. a value inherited from a related entity. It can’t be modified directly. Add or remove the corresponding relationship in the \"Relationships\" tab", "item.edit.metadata.edit.buttons.virtual": "हे एक आभासी मेटाडेटा मूल्य आहे, म्हणजे संबंधित घटकाकडून वारसा मिळालेल्या मूल्य. ते थेट बदलले जाऊ शकत नाही. \"संबंध\" टॅबमध्ये संबंधित संबंध जोडा किंवा काढा", + // "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.", "item.edit.metadata.empty": "आयटम सध्या कोणतेही मेटाडेटा समाविष्ट करत नाही. मेटाडेटा मूल्य जोडण्यासाठी जोडा क्लिक करा.", + // "item.edit.metadata.headers.edit": "Edit", "item.edit.metadata.headers.edit": "संपादित करा", + // "item.edit.metadata.headers.field": "Field", "item.edit.metadata.headers.field": "फील्ड", + // "item.edit.metadata.headers.language": "Lang", "item.edit.metadata.headers.language": "भाषा", + // "item.edit.metadata.headers.value": "Value", "item.edit.metadata.headers.value": "मूल्य", + // "item.edit.metadata.metadatafield": "Edit field", "item.edit.metadata.metadatafield": "फील्ड संपादित करा", + // "item.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "item.edit.metadata.metadatafield.error": "मेटाडेटा फील्ड सत्यापित करताना त्रुटी आली", + // "item.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "item.edit.metadata.metadatafield.invalid": "कृपया वैध मेटाडेटा फील्ड निवडा", + // "item.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.metadata.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", + // "item.edit.metadata.notifications.discarded.title": "Changes discarded", "item.edit.metadata.notifications.discarded.title": "बदल रद्द केले", + // "item.edit.metadata.notifications.error.title": "An error occurred", "item.edit.metadata.notifications.error.title": "त्रुटी आली", + // "item.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "item.edit.metadata.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", + // "item.edit.metadata.notifications.invalid.title": "Metadata invalid", "item.edit.metadata.notifications.invalid.title": "मेटाडेटा अवैध", + // "item.edit.metadata.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.metadata.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", + // "item.edit.metadata.notifications.outdated.title": "Changes outdated", "item.edit.metadata.notifications.outdated.title": "बदल कालबाह्य झाले", + // "item.edit.metadata.notifications.saved.content": "Your changes to this item's metadata were saved.", "item.edit.metadata.notifications.saved.content": "या आयटमच्या मेटाडेटामध्ये आपले बदल जतन केले गेले.", + // "item.edit.metadata.notifications.saved.title": "Metadata saved", "item.edit.metadata.notifications.saved.title": "मेटाडेटा जतन केले", + // "item.edit.metadata.reinstate-button": "Undo", "item.edit.metadata.reinstate-button": "पूर्ववत करा", + // "item.edit.metadata.reset-order-button": "Undo reorder", "item.edit.metadata.reset-order-button": "पुन्हा क्रमित पूर्ववत करा", + // "item.edit.metadata.save-button": "Save", "item.edit.metadata.save-button": "जतन करा", - "item.edit.metadata.authority.label": "प्राधिकरण: ", + // "item.edit.metadata.authority.label": "Authority: ", + // TODO New key - Add a translation + "item.edit.metadata.authority.label": "Authority: ", + // "item.edit.metadata.edit.buttons.open-authority-edition": "Unlock the authority key value for manual editing", "item.edit.metadata.edit.buttons.open-authority-edition": "मॅन्युअल संपादनासाठी प्राधिकरण की मूल्य अनलॉक करा", + // "item.edit.metadata.edit.buttons.close-authority-edition": "Lock the authority key value for manual editing", "item.edit.metadata.edit.buttons.close-authority-edition": "मॅन्युअल संपादनासाठी प्राधिकरण की मूल्य लॉक करा", + // "item.edit.modify.overview.field": "Field", "item.edit.modify.overview.field": "फील्ड", + // "item.edit.modify.overview.language": "Language", "item.edit.modify.overview.language": "भाषा", + // "item.edit.modify.overview.value": "Value", "item.edit.modify.overview.value": "मूल्य", + // "item.edit.move.cancel": "Back", "item.edit.move.cancel": "मागे", + // "item.edit.move.save-button": "Save", "item.edit.move.save-button": "जतन करा", + // "item.edit.move.discard-button": "Discard", "item.edit.move.discard-button": "रद्द करा", + // "item.edit.move.description": "Select the collection you wish to move this item to. To narrow down the list of displayed collections, you can enter a search query in the box.", "item.edit.move.description": "आपण या आयटमला हलवू इच्छित असलेला संग्रह निवडा. प्रदर्शित संग्रहांची यादी कमी करण्यासाठी, आपण बॉक्समध्ये शोध क्वेरी प्रविष्ट करू शकता.", + // "item.edit.move.error": "An error occurred when attempting to move the item", "item.edit.move.error": "आयटम हलविताना त्रुटी आली", - "item.edit.move.head": "आयटम हलवा: {{id}}", + // "item.edit.move.head": "Move item: {{id}}", + // TODO New key - Add a translation + "item.edit.move.head": "Move item: {{id}}", + // "item.edit.move.inheritpolicies.checkbox": "Inherit policies", "item.edit.move.inheritpolicies.checkbox": "धोरणे वारसा मिळवा", + // "item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection", "item.edit.move.inheritpolicies.description": "गंतव्य संग्रहाचे डीफॉल्ट धोरणे वारसा मिळवा", - "item.edit.move.inheritpolicies.tooltip": "चेतावणी: सक्षम केल्यास, आयटम आणि आयटमशी संबंधित कोणत्याही फाइल्ससाठी वाचन प्रवेश धोरण गंतव्य संग्रहाचे डीफॉल्ट वाचन प्रवेश धोरणाने बदलले जाईल. हे पूर्ववत केले जाऊ शकत नाही.", + // "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + // TODO New key - Add a translation + "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + // "item.edit.move.move": "Move", "item.edit.move.move": "हलवा", + // "item.edit.move.processing": "Moving...", "item.edit.move.processing": "हलवित आहे...", + // "item.edit.move.search.placeholder": "Enter a search query to look for collections", "item.edit.move.search.placeholder": "संग्रह शोधण्यासाठी शोध क्वेरी प्रविष्ट करा", + // "item.edit.move.success": "The item has been moved successfully", "item.edit.move.success": "आयटम यशस्वीरित्या हलविला गेला", + // "item.edit.move.title": "Move item", "item.edit.move.title": "आयटम हलवा", + // "item.edit.private.cancel": "Cancel", "item.edit.private.cancel": "रद्द करा", + // "item.edit.private.confirm": "Make it non-discoverable", "item.edit.private.confirm": "नॉन-डिस्कव्हरेबल करा", + // "item.edit.private.description": "Are you sure this item should be made non-discoverable in the archive?", "item.edit.private.description": "आपण खात्री आहात की हा आयटम संग्रहात नॉन-डिस्कव्हरेबल केला जावा?", + // "item.edit.private.error": "An error occurred while making the item non-discoverable", "item.edit.private.error": "आयटम नॉन-डिस्कव्हरेबल करताना त्रुटी आली", - "item.edit.private.header": "आयटम नॉन-डिस्कव्हरेबल करा: {{ id }}", + // "item.edit.private.header": "Make item non-discoverable: {{ id }}", + // TODO New key - Add a translation + "item.edit.private.header": "Make item non-discoverable: {{ id }}", + // "item.edit.private.success": "The item is now non-discoverable", "item.edit.private.success": "आयटम आता नॉन-डिस्कव्हरेबल आहे", + // "item.edit.public.cancel": "Cancel", "item.edit.public.cancel": "रद्द करा", + // "item.edit.public.confirm": "Make it discoverable", "item.edit.public.confirm": "डिस्कव्हरेबल करा", + // "item.edit.public.description": "Are you sure this item should be made discoverable in the archive?", "item.edit.public.description": "आपण खात्री आहात की हा आयटम संग्रहात डिस्कव्हरेबल केला जावा?", + // "item.edit.public.error": "An error occurred while making the item discoverable", "item.edit.public.error": "आयटम डिस्कव्हरेबल करताना त्रुटी आली", - "item.edit.public.header": "आयटम डिस्कव्हरेबल करा: {{ id }}", + // "item.edit.public.header": "Make item discoverable: {{ id }}", + // TODO New key - Add a translation + "item.edit.public.header": "Make item discoverable: {{ id }}", + // "item.edit.public.success": "The item is now discoverable", "item.edit.public.success": "आयटम आता डिस्कव्हरेबल आहे", + // "item.edit.reinstate.cancel": "Cancel", "item.edit.reinstate.cancel": "रद्द करा", + // "item.edit.reinstate.confirm": "Reinstate", "item.edit.reinstate.confirm": "पुनर्स्थापित करा", + // "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?", "item.edit.reinstate.description": "आपण खात्री आहात की हा आयटम संग्रहात पुनर्स्थापित केला जावा?", + // "item.edit.reinstate.error": "An error occurred while reinstating the item", "item.edit.reinstate.error": "आयटम पुनर्स्थापित करताना त्रुटी आली", - "item.edit.reinstate.header": "आयटम पुनर्स्थापित करा: {{ id }}", + // "item.edit.reinstate.header": "Reinstate item: {{ id }}", + // TODO New key - Add a translation + "item.edit.reinstate.header": "Reinstate item: {{ id }}", + // "item.edit.reinstate.success": "The item was reinstated successfully", "item.edit.reinstate.success": "आयटम यशस्वीरित्या पुनर्स्थापित केला गेला", + // "item.edit.relationships.discard-button": "Discard", "item.edit.relationships.discard-button": "रद्द करा", + // "item.edit.relationships.edit.buttons.add": "Add", "item.edit.relationships.edit.buttons.add": "जोडा", + // "item.edit.relationships.edit.buttons.remove": "Remove", "item.edit.relationships.edit.buttons.remove": "काढा", + // "item.edit.relationships.edit.buttons.undo": "Undo changes", "item.edit.relationships.edit.buttons.undo": "बदल पूर्ववत करा", + // "item.edit.relationships.no-relationships": "No relationships", "item.edit.relationships.no-relationships": "कोणतेही संबंध नाहीत", + // "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.relationships.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", + // "item.edit.relationships.notifications.discarded.title": "Changes discarded", "item.edit.relationships.notifications.discarded.title": "बदल रद्द केले", + // "item.edit.relationships.notifications.failed.title": "Error editing relationships", "item.edit.relationships.notifications.failed.title": "संबंध संपादित करताना त्रुटी", + // "item.edit.relationships.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.relationships.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", + // "item.edit.relationships.notifications.outdated.title": "Changes outdated", "item.edit.relationships.notifications.outdated.title": "बदल कालबाह्य झाले", + // "item.edit.relationships.notifications.saved.content": "Your changes to this item's relationships were saved.", "item.edit.relationships.notifications.saved.content": "या आयटमच्या संबंधांमध्ये आपले बदल जतन केले गेले.", + // "item.edit.relationships.notifications.saved.title": "Relationships saved", "item.edit.relationships.notifications.saved.title": "संबंध जतन केले", + // "item.edit.relationships.reinstate-button": "Undo", "item.edit.relationships.reinstate-button": "पूर्ववत करा", + // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "जतन करा", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", "item.edit.relationships.no-entity-type": "या आयटमसाठी संबंध सक्षम करण्यासाठी 'dspace.entity.type' मेटाडेटा जोडा", + // "item.edit.return": "Back", "item.edit.return": "मागे", + // "item.edit.tabs.bitstreams.head": "Bitstreams", "item.edit.tabs.bitstreams.head": "बिटस्ट्रीम", + // "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams", "item.edit.tabs.bitstreams.title": "आयटम संपादन - बिटस्ट्रीम", + // "item.edit.tabs.curate.head": "Curate", "item.edit.tabs.curate.head": "क्युरेट", + // "item.edit.tabs.curate.title": "Item Edit - Curate", "item.edit.tabs.curate.title": "आयटम संपादन - क्युरेट", - "item.edit.curate.title": "क्युरेट आयटम: {{item}}", + // "item.edit.curate.title": "Curate Item: {{item}}", + // TODO New key - Add a translation + "item.edit.curate.title": "Curate Item: {{item}}", + // "item.edit.tabs.access-control.head": "Access Control", "item.edit.tabs.access-control.head": "प्रवेश नियंत्रण", + // "item.edit.tabs.access-control.title": "Item Edit - Access Control", "item.edit.tabs.access-control.title": "आयटम संपादन - प्रवेश नियंत्रण", + // "item.edit.tabs.metadata.head": "Metadata", "item.edit.tabs.metadata.head": "मेटाडेटा", + // "item.edit.tabs.metadata.title": "Item Edit - Metadata", "item.edit.tabs.metadata.title": "आयटम संपादन - मेटाडेटा", + // "item.edit.tabs.relationships.head": "Relationships", "item.edit.tabs.relationships.head": "संबंध", + // "item.edit.tabs.relationships.title": "Item Edit - Relationships", "item.edit.tabs.relationships.title": "आयटम संपादन - संबंध", + // "item.edit.tabs.status.buttons.authorizations.button": "Authorizations...", "item.edit.tabs.status.buttons.authorizations.button": "प्राधिकरण...", + // "item.edit.tabs.status.buttons.authorizations.label": "Edit item's authorization policies", "item.edit.tabs.status.buttons.authorizations.label": "आयटमचे प्राधिकरण धोरणे संपादित करा", + // "item.edit.tabs.status.buttons.delete.button": "Permanently delete", "item.edit.tabs.status.buttons.delete.button": "कायमचे हटवा", + // "item.edit.tabs.status.buttons.delete.label": "Completely expunge item", "item.edit.tabs.status.buttons.delete.label": "आयटम पूर्णपणे हटवा", + // "item.edit.tabs.status.buttons.mappedCollections.button": "Mapped collections", "item.edit.tabs.status.buttons.mappedCollections.button": "मॅप केलेले संग्रह", + // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "मॅप केलेले संग्रह व्यवस्थापित करा", + // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", "item.edit.tabs.status.buttons.move.button": "हा आयटम दुसऱ्या संग्रहात हलवा", + // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", "item.edit.tabs.status.buttons.move.label": "आयटम दुसऱ्या संग्रहात हलवा", + // "item.edit.tabs.status.buttons.private.button": "Make it non-discoverable...", "item.edit.tabs.status.buttons.private.button": "नॉन-डिस्कव्हरेबल करा...", + // "item.edit.tabs.status.buttons.private.label": "Make item non-discoverable", "item.edit.tabs.status.buttons.private.label": "आयटम नॉन-डिस्कव्हरेबल करा", + // "item.edit.tabs.status.buttons.public.button": "Make it discoverable...", "item.edit.tabs.status.buttons.public.button": "डिस्कव्हरेबल करा...", + // "item.edit.tabs.status.buttons.public.label": "Make item discoverable", "item.edit.tabs.status.buttons.public.label": "आयटम डिस्कव्हरेबल करा", + // "item.edit.tabs.status.buttons.reinstate.button": "Reinstate...", "item.edit.tabs.status.buttons.reinstate.button": "पुनर्स्थापित करा...", + // "item.edit.tabs.status.buttons.reinstate.label": "Reinstate item into the repository", "item.edit.tabs.status.buttons.reinstate.label": "आयटम संग्रहात पुनर्स्थापित करा", + // "item.edit.tabs.status.buttons.unauthorized": "You're not authorized to perform this action", "item.edit.tabs.status.buttons.unauthorized": "आपल्याला ही क्रिया करण्याची परवानगी नाही", + // "item.edit.tabs.status.buttons.withdraw.button": "Withdraw this item", "item.edit.tabs.status.buttons.withdraw.button": "हा आयटम मागे घ्या", + // "item.edit.tabs.status.buttons.withdraw.label": "Withdraw item from the repository", "item.edit.tabs.status.buttons.withdraw.label": "आयटम संग्रहातून मागे घ्या", + // "item.edit.tabs.status.description": "Welcome to the item management page. From here you can withdraw, reinstate, move or delete the item. You may also update or add new metadata / bitstreams on the other tabs.", "item.edit.tabs.status.description": "आयटम व्यवस्थापन पृष्ठावर आपले स्वागत आहे. येथून आपण आयटम मागे घेऊ, पुनर्स्थापित करू, हलवू किंवा हटवू शकता. आपण इतर टॅबवर नवीन मेटाडेटा / बिटस्ट्रीम देखील अद्यतनित किंवा जोडू शकता.", + // "item.edit.tabs.status.head": "Status", "item.edit.tabs.status.head": "स्थिती", + // "item.edit.tabs.status.labels.handle": "Handle", "item.edit.tabs.status.labels.handle": "हँडल", + // "item.edit.tabs.status.labels.id": "Item Internal ID", "item.edit.tabs.status.labels.id": "आयटम अंतर्गत आयडी", + // "item.edit.tabs.status.labels.itemPage": "Item Page", "item.edit.tabs.status.labels.itemPage": "आयटम पृष्ठ", + // "item.edit.tabs.status.labels.lastModified": "Last Modified", "item.edit.tabs.status.labels.lastModified": "शेवटचे बदलले", + // "item.edit.tabs.status.title": "Item Edit - Status", "item.edit.tabs.status.title": "आयटम संपादन - स्थिती", + // "item.edit.tabs.versionhistory.head": "Version History", "item.edit.tabs.versionhistory.head": "आवृत्ती इतिहास", + // "item.edit.tabs.versionhistory.title": "Item Edit - Version History", "item.edit.tabs.versionhistory.title": "आयटम संपादन - आवृत्ती इतिहास", + // "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": "या वापरकर्ता इंटरफेसमध्ये आवृत्त्या संपादित करणे किंवा नवीन आवृत्त्या जोडणे अद्याप शक्य नाही.", + // "item.edit.tabs.view.head": "View Item", "item.edit.tabs.view.head": "आयटम पहा", + // "item.edit.tabs.view.title": "Item Edit - View", "item.edit.tabs.view.title": "आयटम संपादन - पहा", + // "item.edit.withdraw.cancel": "Cancel", "item.edit.withdraw.cancel": "रद्द करा", + // "item.edit.withdraw.confirm": "Withdraw", "item.edit.withdraw.confirm": "मागे घ्या", + // "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?", "item.edit.withdraw.description": "आपण खात्री आहात की हा आयटम संग्रहातून मागे घ्यावा?", + // "item.edit.withdraw.error": "An error occurred while withdrawing the item", "item.edit.withdraw.error": "आयटम मागे घेताना त्रुटी आली", - "item.edit.withdraw.header": "आयटम मागे घ्या: {{ id }}", + // "item.edit.withdraw.header": "Withdraw item: {{ id }}", + // TODO New key - Add a translation + "item.edit.withdraw.header": "Withdraw item: {{ id }}", + // "item.edit.withdraw.success": "The item was withdrawn successfully", "item.edit.withdraw.success": "आयटम यशस्वीरित्या मागे घेतला गेला", + // "item.orcid.return": "Back", "item.orcid.return": "मागे", + // "item.listelement.badge": "Item", "item.listelement.badge": "आयटम", + // "item.page.description": "Description", "item.page.description": "वर्णन", + // "item.page.org-unit": "Organizational Unit", + // TODO New key - Add a translation + "item.page.org-unit": "Organizational Unit", + + // "item.page.org-units": "Organizational Units", + // TODO New key - Add a translation + "item.page.org-units": "Organizational Units", + + // "item.page.project": "Research Project", + // TODO New key - Add a translation + "item.page.project": "Research Project", + + // "item.page.projects": "Research Projects", + // TODO New key - Add a translation + "item.page.projects": "Research Projects", + + // "item.page.publication": "Publications", + // TODO New key - Add a translation + "item.page.publication": "Publications", + + // "item.page.publications": "Publications", + // TODO New key - Add a translation + "item.page.publications": "Publications", + + // "item.page.article": "Article", + // TODO New key - Add a translation + "item.page.article": "Article", + + // "item.page.articles": "Articles", + // TODO New key - Add a translation + "item.page.articles": "Articles", + + // "item.page.journal": "Journal", + // TODO New key - Add a translation + "item.page.journal": "Journal", + + // "item.page.journals": "Journals", + // TODO New key - Add a translation + "item.page.journals": "Journals", + + // "item.page.journal-issue": "Journal Issue", + // TODO New key - Add a translation + "item.page.journal-issue": "Journal Issue", + + // "item.page.journal-issues": "Journal Issues", + // TODO New key - Add a translation + "item.page.journal-issues": "Journal Issues", + + // "item.page.journal-volume": "Journal Volume", + // TODO New key - Add a translation + "item.page.journal-volume": "Journal Volume", + + // "item.page.journal-volumes": "Journal Volumes", + // TODO New key - Add a translation + "item.page.journal-volumes": "Journal Volumes", + + // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "जर्नल ISSN", + // "item.page.journal-title": "Journal Title", "item.page.journal-title": "जर्नल शीर्षक", + // "item.page.publisher": "Publisher", "item.page.publisher": "प्रकाशक", - "item.page.titleprefix": "आयटम: ", + // "item.page.titleprefix": "Item: ", + // TODO New key - Add a translation + "item.page.titleprefix": "Item: ", + // "item.page.volume-title": "Volume Title", "item.page.volume-title": "खंड शीर्षक", + // "item.page.dcterms.spatial": "Geospatial point", "item.page.dcterms.spatial": "भौगोलिक बिंदू", + // "item.search.results.head": "Item Search Results", "item.search.results.head": "आयटम शोध परिणाम", + // "item.search.title": "Item Search", "item.search.title": "आयटम शोध", + // "item.truncatable-part.show-more": "Show more", "item.truncatable-part.show-more": "अधिक दाखवा", + // "item.truncatable-part.show-less": "Collapse", "item.truncatable-part.show-less": "संकुचित करा", + // "item.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "item.qa-event-notification.check.notification-info": "आपल्या खात्याशी संबंधित {{num}} प्रलंबित सूचना आहेत", + // "item.qa-event-notification-info.check.button": "View", "item.qa-event-notification-info.check.button": "पहा", + // "mydspace.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "mydspace.qa-event-notification.check.notification-info": "आपल्या खात्याशी संबंधित {{num}} प्रलंबित सूचना आहेत", + // "mydspace.qa-event-notification-info.check.button": "View", "mydspace.qa-event-notification-info.check.button": "पहा", + // "workflow-item.search.result.delete-supervision.modal.header": "Delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.header": "पर्यवेक्षण आदेश हटवा", + // "workflow-item.search.result.delete-supervision.modal.info": "Are you sure you want to delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.info": "आपण खात्री आहात की पर्यवेक्षण आदेश हटवू इच्छिता", + // "workflow-item.search.result.delete-supervision.modal.cancel": "Cancel", "workflow-item.search.result.delete-supervision.modal.cancel": "रद्द करा", + // "workflow-item.search.result.delete-supervision.modal.confirm": "Delete", "workflow-item.search.result.delete-supervision.modal.confirm": "हटवा", + // "workflow-item.search.result.notification.deleted.success": "Successfully deleted supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.success": "पर्यवेक्षण आदेश \"{{name}}\" यशस्वीरित्या हटविला", + // "workflow-item.search.result.notification.deleted.failure": "Failed to delete supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.failure": "पर्यवेक्षण आदेश \"{{name}}\" हटविण्यात अयशस्वी", - "workflow-item.search.result.list.element.supervised-by": "पर्यवेक्षण केलेले:", + // "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + // TODO New key - Add a translation + "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + // "workflow-item.search.result.list.element.supervised.remove-tooltip": "Remove supervision group", "workflow-item.search.result.list.element.supervised.remove-tooltip": "पर्यवेक्षण गट काढा", + // "confidence.indicator.help-text.accepted": "This authority value has been confirmed as accurate by an interactive user", "confidence.indicator.help-text.accepted": "हे प्राधिकरण मूल्य परस्पर वापरकर्त्याद्वारे अचूक म्हणून पुष्टी केले गेले आहे", + // "confidence.indicator.help-text.uncertain": "Value is singular and valid but has not been seen and accepted by a human so it is still uncertain", "confidence.indicator.help-text.uncertain": "मूल्य एकवचनी आणि वैध आहे परंतु मानवीने पाहिले आणि स्वीकारले नाही त्यामुळे ते अद्याप अनिश्चित आहे", + // "confidence.indicator.help-text.ambiguous": "There are multiple matching authority values of equal validity", "confidence.indicator.help-text.ambiguous": "समान वैधतेच्या एकाधिक जुळणारे प्राधिकरण मूल्ये आहेत", + // "confidence.indicator.help-text.notfound": "There are no matching answers in the authority", "confidence.indicator.help-text.notfound": "प्राधिकरणात कोणतेही जुळणारे उत्तर नाही", + // "confidence.indicator.help-text.failed": "The authority encountered an internal failure", "confidence.indicator.help-text.failed": "प्राधिकरणाने अंतर्गत अपयश अनुभवले", + // "confidence.indicator.help-text.rejected": "The authority recommends this submission be rejected", "confidence.indicator.help-text.rejected": "प्राधिकरणाने या सबमिशनला नाकारण्याची शिफारस केली आहे", + // "confidence.indicator.help-text.novalue": "No reasonable confidence value was returned from the authority", "confidence.indicator.help-text.novalue": "प्राधिकरणाकडून कोणतेही वाजवी आत्मविश्वास मूल्य परत आले नाही", + // "confidence.indicator.help-text.unset": "Confidence was never recorded for this value", "confidence.indicator.help-text.unset": "या मूल्यासाठी आत्मविश्वास कधीही नोंदविला गेला नाही", + // "confidence.indicator.help-text.unknown": "Unknown confidence value", "confidence.indicator.help-text.unknown": "अज्ञात आत्मविश्वास मूल्य", + // "item.page.abstract": "Abstract", "item.page.abstract": "सारांश", + // "item.page.author": "Author", "item.page.author": "लेखक", + // "item.page.authors": "Authors", + // TODO New key - Add a translation + "item.page.authors": "Authors", + + // "item.page.citation": "Citation", "item.page.citation": "उल्लेख", + // "item.page.collections": "Collections", "item.page.collections": "संग्रह", + // "item.page.collections.loading": "Loading...", "item.page.collections.loading": "लोड करत आहे...", + // "item.page.collections.load-more": "Load more", "item.page.collections.load-more": "अधिक लोड करा", + // "item.page.date": "Date", "item.page.date": "तारीख", + // "item.page.edit": "Edit this item", "item.page.edit": "हा आयटम संपादित करा", + // "item.page.files": "Files", "item.page.files": "फाइल्स", - "item.page.filesection.description": "वर्णन:", + // "item.page.filesection.description": "Description:", + // TODO New key - Add a translation + "item.page.filesection.description": "Description:", + // "item.page.filesection.download": "Download", "item.page.filesection.download": "डाउनलोड करा", - "item.page.filesection.format": "फॉरमॅट:", + // "item.page.filesection.format": "Format:", + // TODO New key - Add a translation + "item.page.filesection.format": "Format:", - "item.page.filesection.name": "नाव:", + // "item.page.filesection.name": "Name:", + // TODO New key - Add a translation + "item.page.filesection.name": "Name:", - "item.page.filesection.size": "आकार:", + // "item.page.filesection.size": "Size:", + // TODO New key - Add a translation + "item.page.filesection.size": "Size:", + // "item.page.journal.search.title": "Articles in this journal", "item.page.journal.search.title": "या जर्नलमधील लेख", + // "item.page.link.full": "Full item page", "item.page.link.full": "पूर्ण आयटम पृष्ठ", + // "item.page.link.simple": "Simple item page", "item.page.link.simple": "साधे आयटम पृष्ठ", + // "item.page.options": "Options", "item.page.options": "पर्याय", + // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", + // "item.page.orcid.tooltip": "Open ORCID setting page", "item.page.orcid.tooltip": "ORCID सेटिंग पृष्ठ उघडा", + // "item.page.person.search.title": "Articles by this author", "item.page.person.search.title": "या लेखकाचे लेख", + // "item.page.related-items.view-more": "Show {{ amount }} more", "item.page.related-items.view-more": "{{ amount }} अधिक दाखवा", + // "item.page.related-items.view-less": "Hide last {{ amount }}", "item.page.related-items.view-less": "शेवटचे {{ amount }} लपवा", + // "item.page.relationships.isAuthorOfPublication": "Publications", "item.page.relationships.isAuthorOfPublication": "प्रकाशने", + // "item.page.relationships.isJournalOfPublication": "Publications", "item.page.relationships.isJournalOfPublication": "प्रकाशने", + // "item.page.relationships.isOrgUnitOfPerson": "Authors", "item.page.relationships.isOrgUnitOfPerson": "लेखक", + // "item.page.relationships.isOrgUnitOfProject": "Research Projects", "item.page.relationships.isOrgUnitOfProject": "संशोधन प्रकल्प", + // "item.page.subject": "Keywords", "item.page.subject": "कीवर्ड", + // "item.page.uri": "URI", "item.page.uri": "URI", + // "item.page.bitstreams.view-more": "Show more", "item.page.bitstreams.view-more": "अधिक दाखवा", + // "item.page.bitstreams.collapse": "Collapse", "item.page.bitstreams.collapse": "संकुचित करा", + // "item.page.bitstreams.primary": "Primary", "item.page.bitstreams.primary": "प्राथमिक", + // "item.page.filesection.original.bundle": "Original bundle", "item.page.filesection.original.bundle": "मूळ बंडल", + // "item.page.filesection.license.bundle": "License bundle", "item.page.filesection.license.bundle": "परवाना बंडल", + // "item.page.return": "Back", "item.page.return": "मागे", + // "item.page.version.create": "Create new version", "item.page.version.create": "नवीन आवृत्ती तयार करा", + // "item.page.withdrawn": "Request a withdrawal for this item", "item.page.withdrawn": "या आयटमसाठी मागे घेण्याची विनंती करा", + // "item.page.reinstate": "Request reinstatement", "item.page.reinstate": "पुनर्स्थापनेची विनंती करा", + // "item.page.version.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.page.version.hasDraft": "नवीन आवृत्ती तयार केली जाऊ शकत नाही कारण आवृत्ती इतिहासात एक प्रगतीशील सबमिशन आहे", + // "item.page.claim.button": "Claim", "item.page.claim.button": "दावा करा", + // "item.page.claim.tooltip": "Claim this item as profile", "item.page.claim.tooltip": "हा आयटम प्रोफाइल म्हणून दावा करा", + // "item.page.image.alt.ROR": "ROR logo", "item.page.image.alt.ROR": "ROR लोगो", - "item.preview.dc.identifier.uri": "ओळखकर्ता:", + // "item.preview.dc.identifier.uri": "Identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier.uri": "Identifier:", - "item.preview.dc.contributor.author": "लेखक:", + // "item.preview.dc.contributor.author": "Authors:", + // TODO New key - Add a translation + "item.preview.dc.contributor.author": "Authors:", - "item.preview.dc.date.issued": "प्रकाशित तारीख:", + // "item.preview.dc.date.issued": "Published date:", + // TODO New key - Add a translation + "item.preview.dc.date.issued": "Published date:", + // "item.preview.dc.description": "Description:", + // TODO Source message changed - Revise the translation "item.preview.dc.description": "वर्णन:", - "item.preview.dc.description.abstract": "सारांश:", + // "item.preview.dc.description.abstract": "Abstract:", + // TODO New key - Add a translation + "item.preview.dc.description.abstract": "Abstract:", - "item.preview.dc.identifier.other": "इतर ओळखकर्ता:", + // "item.preview.dc.identifier.other": "Other identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier.other": "Other identifier:", - "item.preview.dc.language.iso": "भाषा:", + // "item.preview.dc.language.iso": "Language:", + // TODO New key - Add a translation + "item.preview.dc.language.iso": "Language:", - "item.preview.dc.subject": "विषय:", + // "item.preview.dc.subject": "Subjects:", + // TODO New key - Add a translation + "item.preview.dc.subject": "Subjects:", - "item.preview.dc.title": "शीर्षक:", + // "item.preview.dc.title": "Title:", + // TODO New key - Add a translation + "item.preview.dc.title": "Title:", - "item.preview.dc.type": "प्रकार:", + // "item.preview.dc.type": "Type:", + // TODO New key - Add a translation + "item.preview.dc.type": "Type:", + // "item.preview.oaire.version": "Version", "item.preview.oaire.version": "आवृत्ती", + // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "मुद्दा", + // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "खंड", + // "item.preview.oaire.citation.title": "Citation container", "item.preview.oaire.citation.title": "उल्लेख कंटेनर", + // "item.preview.oaire.citation.startPage": "Citation start page", "item.preview.oaire.citation.startPage": "उल्लेख प्रारंभ पृष्ठ", + // "item.preview.oaire.citation.endPage": "Citation end page", "item.preview.oaire.citation.endPage": "उल्लेख समाप्त पृष्ठ", + // "item.preview.dc.relation.hasversion": "Has version", "item.preview.dc.relation.hasversion": "आवृत्ती आहे", + // "item.preview.dc.relation.ispartofseries": "Is part of series", "item.preview.dc.relation.ispartofseries": "मालिकेचा भाग आहे", + // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "हक्क", - "item.preview.dc.identifier.other": "इतर ओळखकर्ता", + // "item.preview.dc.identifier.other": "Other Identifier", + "item.preview.dc.identifier.other": "इतर ओळखकर्ता:", + // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", + // "item.preview.dc.identifier.isbn": "ISBN", "item.preview.dc.identifier.isbn": "ISBN", - "item.preview.dc.identifier": "ओळखकर्ता:", + // "item.preview.dc.identifier": "Identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier": "Identifier:", + // "item.preview.dc.relation.ispartof": "Journal or Series", "item.preview.dc.relation.ispartof": "जर्नल किंवा मालिका", + // "item.preview.dc.identifier.doi": "DOI", "item.preview.dc.identifier.doi": "DOI", - "item.preview.dc.publisher": "प्रकाशक:", + // "item.preview.dc.publisher": "Publisher:", + // TODO New key - Add a translation + "item.preview.dc.publisher": "Publisher:", - "item.preview.person.familyName": "आडनाव:", + // "item.preview.person.familyName": "Surname:", + // TODO New key - Add a translation + "item.preview.person.familyName": "Surname:", - "item.preview.person.givenName": "नाव:", + // "item.preview.person.givenName": "Name:", + // TODO New key - Add a translation + "item.preview.person.givenName": "Name:", + // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", - "item.preview.person.affiliation.name": "संलग्नता:", + // "item.preview.person.affiliation.name": "Affiliations:", + // TODO New key - Add a translation + "item.preview.person.affiliation.name": "Affiliations:", - "item.preview.project.funder.name": "फंडर:", + // "item.preview.project.funder.name": "Funder:", + // TODO New key - Add a translation + "item.preview.project.funder.name": "Funder:", - "item.preview.project.funder.identifier": "फंडर ओळखकर्ता:", + // "item.preview.project.funder.identifier": "Funder Identifier:", + // TODO New key - Add a translation + "item.preview.project.funder.identifier": "Funder Identifier:", + // "item.preview.project.investigator": "Project Investigator", "item.preview.project.investigator": "प्रकल्प अन्वेषक", - "item.preview.oaire.awardNumber": "फंडिंग आयडी:", + // "item.preview.oaire.awardNumber": "Funding ID:", + // TODO New key - Add a translation + "item.preview.oaire.awardNumber": "Funding ID:", - "item.preview.dc.title.alternative": "अक्रोनिम:", + // "item.preview.dc.title.alternative": "Acronym:", + // TODO New key - Add a translation + "item.preview.dc.title.alternative": "Acronym:", - "item.preview.dc.coverage.spatial": "क्षेत्राधिकार:", + // "item.preview.dc.coverage.spatial": "Jurisdiction:", + // TODO New key - Add a translation + "item.preview.dc.coverage.spatial": "Jurisdiction:", - "item.preview.oaire.fundingStream": "फंडिंग स्ट्रीम:", + // "item.preview.oaire.fundingStream": "Funding Stream:", + // TODO New key - Add a translation + "item.preview.oaire.fundingStream": "Funding Stream:", + // "item.preview.oairecerif.identifier.url": "URL", "item.preview.oairecerif.identifier.url": "URL", + // "item.preview.organization.address.addressCountry": "Country", "item.preview.organization.address.addressCountry": "देश", + // "item.preview.organization.foundingDate": "Founding Date", "item.preview.organization.foundingDate": "स्थापनेची तारीख", + // "item.preview.organization.identifier.crossrefid": "Crossref ID", "item.preview.organization.identifier.crossrefid": "Crossref आयडी", + // "item.preview.organization.identifier.isni": "ISNI", "item.preview.organization.identifier.isni": "ISNI", + // "item.preview.organization.identifier.ror": "ROR ID", "item.preview.organization.identifier.ror": "ROR आयडी", + // "item.preview.organization.legalName": "Legal Name", "item.preview.organization.legalName": "कायदेशीर नाव", - "item.preview.dspace.entity.type": "घटक प्रकार:", + // "item.preview.dspace.entity.type": "Entity Type:", + // TODO New key - Add a translation + "item.preview.dspace.entity.type": "Entity Type:", + // "item.preview.creativework.publisher": "Publisher", "item.preview.creativework.publisher": "प्रकाशक", + // "item.preview.creativeworkseries.issn": "ISSN", "item.preview.creativeworkseries.issn": "ISSN", + // "item.preview.dc.identifier.issn": "ISSN", "item.preview.dc.identifier.issn": "ISSN", + // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "OpenAlex ओळखकर्ता", - "item.preview.dc.description": "वर्णन", + // "item.preview.dc.description": "Description", + "item.preview.dc.description": "वर्णन:", + // "item.select.confirm": "Confirm selected", "item.select.confirm": "निवडलेले पुष्टी करा", + // "item.select.empty": "No items to show", "item.select.empty": "दाखविण्यासाठी कोणतेही आयटम नाहीत", + // "item.select.table.selected": "Selected items", "item.select.table.selected": "निवडलेले आयटम", + // "item.select.table.select": "Select item", "item.select.table.select": "आयटम निवडा", + // "item.select.table.deselect": "Deselect item", "item.select.table.deselect": "आयटम निवड रद्द करा", + // "item.select.table.author": "Author", "item.select.table.author": "लेखक", + // "item.select.table.collection": "Collection", "item.select.table.collection": "संग्रह", + // "item.select.table.title": "Title", "item.select.table.title": "शीर्षक", + // "item.version.history.empty": "There are no other versions for this item yet.", "item.version.history.empty": "या आयटमसाठी अद्याप इतर आवृत्त्या नाहीत.", + // "item.version.history.head": "Version History", "item.version.history.head": "आवृत्ती इतिहास", + // "item.version.history.return": "Back", "item.version.history.return": "मागे", + // "item.version.history.selected": "Selected version", "item.version.history.selected": "निवडलेली आवृत्ती", + // "item.version.history.selected.alert": "You are currently viewing version {{version}} of the item.", "item.version.history.selected.alert": "आपण सध्या आयटमची आवृत्ती {{version}} पाहत आहात.", + // "item.version.history.table.version": "Version", "item.version.history.table.version": "आवृत्ती", + // "item.version.history.table.item": "Item", "item.version.history.table.item": "आयटम", + // "item.version.history.table.editor": "Editor", "item.version.history.table.editor": "संपादक", + // "item.version.history.table.date": "Date", "item.version.history.table.date": "तारीख", + // "item.version.history.table.summary": "Summary", "item.version.history.table.summary": "सारांश", + // "item.version.history.table.workspaceItem": "Workspace item", "item.version.history.table.workspaceItem": "वर्कस्पेस आयटम", + // "item.version.history.table.workflowItem": "Workflow item", "item.version.history.table.workflowItem": "वर्कफ्लो आयटम", + // "item.version.history.table.actions": "Action", "item.version.history.table.actions": "क्रिया", + // "item.version.history.table.action.editWorkspaceItem": "Edit workspace item", "item.version.history.table.action.editWorkspaceItem": "वर्कस्पेस आयटम संपादित करा", + // "item.version.history.table.action.editSummary": "Edit summary", "item.version.history.table.action.editSummary": "सारांश संपादित करा", + // "item.version.history.table.action.saveSummary": "Save summary edits", "item.version.history.table.action.saveSummary": "सारांश संपादन जतन करा", + // "item.version.history.table.action.discardSummary": "Discard summary edits", "item.version.history.table.action.discardSummary": "सारांश संपादन रद्द करा", + // "item.version.history.table.action.newVersion": "Create new version from this one", "item.version.history.table.action.newVersion": "या आवृत्तीतून नवीन आवृत्ती तयार करा", + // "item.version.history.table.action.deleteVersion": "Delete version", "item.version.history.table.action.deleteVersion": "आवृत्ती हटवा", + // "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.history.table.action.hasDraft": "नवीन आवृत्ती तयार केली जाऊ शकत नाही कारण आवृत्ती इतिहासात एक प्रगतीशील सबमिशन आहे", + // "item.version.notice": "This is not the latest version of this item. The latest version can be found here.", "item.version.notice": "ही आयटमची नवीनतम आवृत्ती नाही. नवीनतम आवृत्ती येथे आढळू शकते येथे.", + // "item.version.create.modal.header": "New version", "item.version.create.modal.header": "नवीन आवृत्ती", + // "item.qa.withdrawn.modal.header": "Request withdrawal", "item.qa.withdrawn.modal.header": "मागे घेण्याची विनंती", + // "item.qa.reinstate.modal.header": "Request reinstate", "item.qa.reinstate.modal.header": "पुनर्स्थापनेची विनंती", + // "item.qa.reinstate.create.modal.header": "New version", "item.qa.reinstate.create.modal.header": "नवीन आवृत्ती", + // "item.version.create.modal.text": "Create a new version for this item", "item.version.create.modal.text": "या आयटमसाठी नवीन आवृत्ती तयार करा", + // "item.version.create.modal.text.startingFrom": "starting from version {{version}}", "item.version.create.modal.text.startingFrom": "आवृत्ती {{version}} पासून सुरू", + // "item.version.create.modal.button.confirm": "Create", "item.version.create.modal.button.confirm": "तयार करा", + // "item.version.create.modal.button.confirm.tooltip": "Create new version", "item.version.create.modal.button.confirm.tooltip": "नवीन आवृत्ती तयार करा", + // "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "Send request", "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "विनंती पाठवा", + // "qa-withdrown.create.modal.button.confirm": "Withdraw", "qa-withdrown.create.modal.button.confirm": "मागे घ्या", + // "qa-reinstate.create.modal.button.confirm": "Reinstate", "qa-reinstate.create.modal.button.confirm": "पुनर्स्थापित करा", + // "item.version.create.modal.button.cancel": "Cancel", "item.version.create.modal.button.cancel": "रद्द करा", + // "item.qa.withdrawn-reinstate.create.modal.button.cancel": "Cancel", "item.qa.withdrawn-reinstate.create.modal.button.cancel": "रद्द करा", + // "item.version.create.modal.button.cancel.tooltip": "Do not create new version", "item.version.create.modal.button.cancel.tooltip": "नवीन आवृत्ती तयार करू नका", + // "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "Do not send request", "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "विनंती पाठवू नका", + // "item.version.create.modal.form.summary.label": "Summary", "item.version.create.modal.form.summary.label": "सारांश", + // "qa-withdrawn.create.modal.form.summary.label": "You are requesting to withdraw this item", "qa-withdrawn.create.modal.form.summary.label": "आपण हा आयटम मागे घेण्याची विनंती करत आहात", + // "qa-withdrawn.create.modal.form.summary2.label": "Please enter the reason for the withdrawal", "qa-withdrawn.create.modal.form.summary2.label": "कृपया मागे घेण्याचे कारण प्रविष्ट करा", + // "qa-reinstate.create.modal.form.summary.label": "You are requesting to reinstate this item", "qa-reinstate.create.modal.form.summary.label": "आपण हा आयटम पुनर्स्थापित करण्याची विनंती करत आहात", + // "qa-reinstate.create.modal.form.summary2.label": "Please enter the reason for the reinstatment", "qa-reinstate.create.modal.form.summary2.label": "कृपया पुनर्स्थापनेचे कारण प्रविष्ट करा", + // "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version", "item.version.create.modal.form.summary.placeholder": "नवीन आवृत्तीचा सारांश प्रविष्ट करा", + // "qa-withdrown.modal.form.summary.placeholder": "Enter the reason for the withdrawal", "qa-withdrown.modal.form.summary.placeholder": "मागे घेण्याचे कारण प्रविष्ट करा", + // "qa-reinstate.modal.form.summary.placeholder": "Enter the reason for the reinstatement", "qa-reinstate.modal.form.summary.placeholder": "पुनर्स्थापनेचे कारण प्रविष्ट करा", + // "item.version.create.modal.submitted.header": "Creating new version...", "item.version.create.modal.submitted.header": "नवीन आवृत्ती तयार करत आहे...", + // "item.qa.withdrawn.modal.submitted.header": "Sending withdrawn request...", "item.qa.withdrawn.modal.submitted.header": "मागे घेण्याची विनंती पाठवत आहे...", + // "correction-type.manage-relation.action.notification.reinstate": "Reinstate request sent.", "correction-type.manage-relation.action.notification.reinstate": "पुनर्स्थापनेची विनंती पाठवली.", + // "correction-type.manage-relation.action.notification.withdrawn": "Withdraw request sent.", "correction-type.manage-relation.action.notification.withdrawn": "मागे घेण्याची विनंती पाठवली.", + // "item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.", "item.version.create.modal.submitted.text": "नवीन आवृत्ती तयार केली जात आहे. आयटममध्ये बरेच संबंध असल्यास यास काही वेळ लागू शकतो.", + // "item.version.create.notification.success": "New version has been created with version number {{version}}", "item.version.create.notification.success": "आवृत्ती क्रमांक {{version}} सह नवीन आवृत्ती तयार केली गेली आहे", + // "item.version.create.notification.failure": "New version has not been created", "item.version.create.notification.failure": "नवीन आवृत्ती तयार केली गेली नाही", + // "item.version.create.notification.inProgress": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.create.notification.inProgress": "आवृत्ती इतिहासात एक प्रगतीशील सबमिशन असल्यामुळे नवीन आवृत्ती तयार केली जाऊ शकत नाही", + // "item.version.delete.modal.header": "Delete version", "item.version.delete.modal.header": "आवृत्ती हटवा", + // "item.version.delete.modal.text": "Do you want to delete version {{version}}?", "item.version.delete.modal.text": "आपण आवृत्ती {{version}} हटवू इच्छिता?", + // "item.version.delete.modal.button.confirm": "Delete", "item.version.delete.modal.button.confirm": "हटवा", + // "item.version.delete.modal.button.confirm.tooltip": "Delete this version", "item.version.delete.modal.button.confirm.tooltip": "ही आवृत्ती हटवा", + // "item.version.delete.modal.button.cancel": "Cancel", "item.version.delete.modal.button.cancel": "रद्द करा", + // "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version", "item.version.delete.modal.button.cancel.tooltip": "ही आवृत्ती हटवू नका", + // "item.version.delete.notification.success": "Version number {{version}} has been deleted", "item.version.delete.notification.success": "आवृत्ती क्रमांक {{version}} हटवली गेली आहे", + // "item.version.delete.notification.failure": "Version number {{version}} has not been deleted", "item.version.delete.notification.failure": "आवृत्ती क्रमांक {{version}} हटवली गेली नाही", + // "item.version.edit.notification.success": "The summary of version number {{version}} has been changed", "item.version.edit.notification.success": "आवृत्ती क्रमांक {{version}} चा सारांश बदलला गेला आहे", + // "item.version.edit.notification.failure": "The summary of version number {{version}} has not been changed", "item.version.edit.notification.failure": "आवृत्ती क्रमांक {{version}} चा सारांश बदलला गेला नाही", + // "itemtemplate.edit.metadata.add-button": "Add", "itemtemplate.edit.metadata.add-button": "जोडा", + // "itemtemplate.edit.metadata.discard-button": "Discard", "itemtemplate.edit.metadata.discard-button": "रद्द करा", + // "itemtemplate.edit.metadata.edit.language": "Edit language", "itemtemplate.edit.metadata.edit.language": "भाषा संपादित करा", + // "itemtemplate.edit.metadata.edit.value": "Edit value", "itemtemplate.edit.metadata.edit.value": "मूल्य संपादित करा", + // "itemtemplate.edit.metadata.edit.buttons.confirm": "Confirm", "itemtemplate.edit.metadata.edit.buttons.confirm": "पुष्टी करा", + // "itemtemplate.edit.metadata.edit.buttons.drag": "Drag to reorder", "itemtemplate.edit.metadata.edit.buttons.drag": "पुन्हा क्रमित करण्यासाठी ड्रॅग करा", + // "itemtemplate.edit.metadata.edit.buttons.edit": "Edit", "itemtemplate.edit.metadata.edit.buttons.edit": "संपादित करा", + // "itemtemplate.edit.metadata.edit.buttons.remove": "Remove", "itemtemplate.edit.metadata.edit.buttons.remove": "काढा", + // "itemtemplate.edit.metadata.edit.buttons.undo": "Undo changes", "itemtemplate.edit.metadata.edit.buttons.undo": "बदल पूर्ववत करा", + // "itemtemplate.edit.metadata.edit.buttons.unedit": "Stop editing", "itemtemplate.edit.metadata.edit.buttons.unedit": "संपादन थांबवा", + // "itemtemplate.edit.metadata.empty": "The item template currently doesn't contain any metadata. Click Add to start adding a metadata value.", "itemtemplate.edit.metadata.empty": "आयटम टेम्पलेट सध्या कोणतेही मेटाडेटा समाविष्ट करत नाही. मेटाडेटा मूल्य जोडण्यासाठी जोडा क्लिक करा.", + // "itemtemplate.edit.metadata.headers.edit": "Edit", "itemtemplate.edit.metadata.headers.edit": "संपादित करा", + // "itemtemplate.edit.metadata.headers.field": "Field", "itemtemplate.edit.metadata.headers.field": "फील्ड", + // "itemtemplate.edit.metadata.headers.language": "Lang", "itemtemplate.edit.metadata.headers.language": "भाषा", + // "itemtemplate.edit.metadata.headers.value": "Value", "itemtemplate.edit.metadata.headers.value": "मूल्य", + // "itemtemplate.edit.metadata.metadatafield": "Edit field", "itemtemplate.edit.metadata.metadatafield": "फील्ड संपादित करा", + // "itemtemplate.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "itemtemplate.edit.metadata.metadatafield.error": "मेटाडेटा फील्ड सत्यापित करताना त्रुटी आली", + // "itemtemplate.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "itemtemplate.edit.metadata.metadatafield.invalid": "कृपया वैध मेटाडेटा फील्ड निवडा", + // "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "itemtemplate.edit.metadata.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", + // "itemtemplate.edit.metadata.notifications.discarded.title": "Changes discarded", "itemtemplate.edit.metadata.notifications.discarded.title": "बदल रद्द केले", + // "itemtemplate.edit.metadata.notifications.error.title": "An error occurred", "itemtemplate.edit.metadata.notifications.error.title": "त्रुटी आली", + // "itemtemplate.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "itemtemplate.edit.metadata.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", + // "itemtemplate.edit.metadata.notifications.invalid.title": "Metadata invalid", "itemtemplate.edit.metadata.notifications.invalid.title": "मेटाडेटा अवैध", + // "itemtemplate.edit.metadata.notifications.outdated.content": "The item template you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", "itemtemplate.edit.metadata.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम टेम्पलेट दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", + // "itemtemplate.edit.metadata.notifications.outdated.title": "Changes outdated", "itemtemplate.edit.metadata.notifications.outdated.title": "बदल कालबाह्य झाले", + // "itemtemplate.edit.metadata.notifications.saved.content": "Your changes to this item template's metadata were saved.", "itemtemplate.edit.metadata.notifications.saved.content": "या आयटम टेम्पलेटच्या मेटाडेटामध्ये आपले बदल जतन केले गेले.", + // "itemtemplate.edit.metadata.notifications.saved.title": "Metadata saved", "itemtemplate.edit.metadata.notifications.saved.title": "मेटाडेटा जतन केले", + // "itemtemplate.edit.metadata.reinstate-button": "Undo", "itemtemplate.edit.metadata.reinstate-button": "पूर्ववत करा", + // "itemtemplate.edit.metadata.reset-order-button": "Undo reorder", "itemtemplate.edit.metadata.reset-order-button": "पुन्हा क्रमित पूर्ववत करा", + // "itemtemplate.edit.metadata.save-button": "Save", "itemtemplate.edit.metadata.save-button": "जतन करा", + // "journal.listelement.badge": "Journal", "journal.listelement.badge": "जर्नल", + // "journal.page.description": "Description", "journal.page.description": "वर्णन", + // "journal.page.edit": "Edit this item", "journal.page.edit": "हा आयटम संपादित करा", + // "journal.page.editor": "Editor-in-Chief", "journal.page.editor": "मुख्य संपादक", + // "journal.page.issn": "ISSN", "journal.page.issn": "ISSN", + // "journal.page.publisher": "Publisher", "journal.page.publisher": "प्रकाशक", + // "journal.page.options": "Options", "journal.page.options": "पर्याय", - "journal.page.titleprefix": "जर्नल: ", + // "journal.page.titleprefix": "Journal: ", + // TODO New key - Add a translation + "journal.page.titleprefix": "Journal: ", + // "journal.search.results.head": "Journal Search Results", "journal.search.results.head": "जर्नल शोध परिणाम", + // "journal-relationships.search.results.head": "Journal Search Results", "journal-relationships.search.results.head": "जर्नल शोध परिणाम", + // "journal.search.title": "Journal Search", "journal.search.title": "जर्नल शोध", + // "journalissue.listelement.badge": "Journal Issue", "journalissue.listelement.badge": "जर्नल अंक", + // "journalissue.page.description": "Description", "journalissue.page.description": "वर्णन", + // "journalissue.page.edit": "Edit this item", "journalissue.page.edit": "हा आयटम संपादित करा", + // "journalissue.page.issuedate": "Issue Date", "journalissue.page.issuedate": "अंक तारीख", + // "journalissue.page.journal-issn": "Journal ISSN", "journalissue.page.journal-issn": "जर्नल ISSN", + // "journalissue.page.journal-title": "Journal Title", "journalissue.page.journal-title": "जर्नल शीर्षक", + // "journalissue.page.keyword": "Keywords", "journalissue.page.keyword": "कीवर्ड", + // "journalissue.page.number": "Number", "journalissue.page.number": "क्रमांक", + // "journalissue.page.options": "Options", "journalissue.page.options": "पर्याय", - "journalissue.page.titleprefix": "जर्नल अंक: ", + // "journalissue.page.titleprefix": "Journal Issue: ", + // TODO New key - Add a translation + "journalissue.page.titleprefix": "Journal Issue: ", + // "journalissue.search.results.head": "Journal Issue Search Results", "journalissue.search.results.head": "जर्नल अंक शोध परिणाम", + // "journalvolume.listelement.badge": "Journal Volume", "journalvolume.listelement.badge": "जर्नल खंड", + // "journalvolume.page.description": "Description", "journalvolume.page.description": "वर्णन", + // "journalvolume.page.edit": "Edit this item", "journalvolume.page.edit": "हा आयटम संपादित करा", + // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "अंक तारीख", + // "journalvolume.page.options": "Options", "journalvolume.page.options": "पर्याय", - "journalvolume.page.titleprefix": "जर्नल खंड: ", + // "journalvolume.page.titleprefix": "Journal Volume: ", + // TODO New key - Add a translation + "journalvolume.page.titleprefix": "Journal Volume: ", + // "journalvolume.page.volume": "Volume", "journalvolume.page.volume": "खंड", + // "journalvolume.search.results.head": "Journal Volume Search Results", "journalvolume.search.results.head": "जर्नल खंड शोध परिणाम", + // "iiifsearchable.listelement.badge": "Document Media", "iiifsearchable.listelement.badge": "दस्तऐवज मीडिया", - "iiifsearchable.page.titleprefix": "दस्तऐवज: ", + // "iiifsearchable.page.titleprefix": "Document: ", + // TODO New key - Add a translation + "iiifsearchable.page.titleprefix": "Document: ", - "iiifsearchable.page.doi": "स्थायी लिंक: ", + // "iiifsearchable.page.doi": "Permanent Link: ", + // TODO New key - Add a translation + "iiifsearchable.page.doi": "Permanent Link: ", - "iiifsearchable.page.issue": "मुद्दा: ", + // "iiifsearchable.page.issue": "Issue: ", + // TODO New key - Add a translation + "iiifsearchable.page.issue": "Issue: ", - "iiifsearchable.page.description": "वर्णन: ", + // "iiifsearchable.page.description": "Description: ", + // TODO New key - Add a translation + "iiifsearchable.page.description": "Description: ", + // "iiifviewer.fullscreen.notice": "Use full screen for better viewing.", "iiifviewer.fullscreen.notice": "चांगल्या पाहण्यासाठी पूर्ण स्क्रीन वापरा.", + // "iiif.listelement.badge": "Image Media", "iiif.listelement.badge": "प्रतिमा मीडिया", - "iiif.page.titleprefix": "प्रतिमा: ", + // "iiif.page.titleprefix": "Image: ", + // TODO New key - Add a translation + "iiif.page.titleprefix": "Image: ", - "iiif.page.doi": "स्थायी लिंक: ", + // "iiif.page.doi": "Permanent Link: ", + // TODO New key - Add a translation + "iiif.page.doi": "Permanent Link: ", - "iiif.page.issue": "मुद्दा: ", + // "iiif.page.issue": "Issue: ", + // TODO New key - Add a translation + "iiif.page.issue": "Issue: ", - "iiif.page.description": "वर्णन: ", + // "iiif.page.description": "Description: ", + // TODO New key - Add a translation + "iiif.page.description": "Description: ", + // "loading.bitstream": "Loading bitstream...", "loading.bitstream": "बिटस्ट्रीम लोड करत आहे...", + // "loading.bitstreams": "Loading bitstreams...", "loading.bitstreams": "बिटस्ट्रीम लोड करत आहे...", + // "loading.browse-by": "Loading items...", "loading.browse-by": "आयटम लोड करत आहे...", + // "loading.browse-by-page": "Loading page...", "loading.browse-by-page": "पृष्ठ लोड करत आहे...", + // "loading.collection": "Loading collection...", "loading.collection": "संग्रह लोड करत आहे...", + // "loading.collections": "Loading collections...", "loading.collections": "संग्रह लोड करत आहे...", + // "loading.content-source": "Loading content source...", "loading.content-source": "सामग्री स्रोत लोड करत आहे...", + // "loading.community": "Loading community...", "loading.community": "समुदाय लोड करत आहे...", + // "loading.default": "Loading...", "loading.default": "लोड करत आहे...", + // "loading.item": "Loading item...", "loading.item": "आयटम लोड करत आहे...", + // "loading.items": "Loading items...", "loading.items": "आयटम लोड करत आहे...", + // "loading.mydspace-results": "Loading items...", "loading.mydspace-results": "आयटम लोड करत आहे...", + // "loading.objects": "Loading...", "loading.objects": "लोड करत आहे...", + // "loading.recent-submissions": "Loading recent submissions...", "loading.recent-submissions": "अलीकडील सबमिशन लोड करत आहे...", + // "loading.search-results": "Loading search results...", "loading.search-results": "शोध परिणाम लोड करत आहे...", + // "loading.sub-collections": "Loading sub-collections...", "loading.sub-collections": "उप-संग्रह लोड करत आहे...", + // "loading.sub-communities": "Loading sub-communities...", "loading.sub-communities": "उप-समुदाय लोड करत आहे...", + // "loading.top-level-communities": "Loading top-level communities...", "loading.top-level-communities": "शीर्ष-स्तरीय समुदाय लोड करत आहे...", + // "login.form.email": "Email address", "login.form.email": "ईमेल पत्ता", + // "login.form.forgot-password": "Have you forgotten your password?", "login.form.forgot-password": "आपला पासवर्ड विसरलात?", + // "login.form.header": "Please log in to DSpace", "login.form.header": "कृपया DSpace मध्ये लॉग इन करा", + // "login.form.new-user": "New user? Click here to register.", "login.form.new-user": "नवीन वापरकर्ता? नोंदणीसाठी येथे क्लिक करा.", + // "login.form.oidc": "Log in with OIDC", "login.form.oidc": "OIDC सह लॉग इन करा", + // "login.form.orcid": "Log in with ORCID", "login.form.orcid": "ORCID सह लॉग इन करा", + // "login.form.password": "Password", "login.form.password": "पासवर्ड", + // "login.form.saml": "Log in with SAML", "login.form.saml": "SAML सह लॉग इन करा", + // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Shibboleth सह लॉग इन करा", + // "login.form.submit": "Log in", "login.form.submit": "लॉग इन करा", + // "login.title": "Login", "login.title": "लॉग इन", + // "login.breadcrumbs": "Login", "login.breadcrumbs": "लॉग इन", + // "logout.form.header": "Log out from DSpace", "logout.form.header": "DSpace मधून लॉग आउट करा", + // "logout.form.submit": "Log out", "logout.form.submit": "लॉग आउट करा", + // "logout.title": "Logout", "logout.title": "लॉग आउट", + // "menu.header.nav.description": "Admin navigation bar", "menu.header.nav.description": "प्रशासन नेव्हिगेशन बार", + // "menu.header.admin": "Management", "menu.header.admin": "व्यवस्थापन", + // "menu.header.image.logo": "Repository logo", "menu.header.image.logo": "संग्रह लोगो", + // "menu.header.admin.description": "Management menu", "menu.header.admin.description": "व्यवस्थापन मेनू", + // "menu.section.access_control": "Access Control", "menu.section.access_control": "प्रवेश नियंत्रण", + // "menu.section.access_control_authorizations": "Authorizations", "menu.section.access_control_authorizations": "प्राधिकरण", + // "menu.section.access_control_bulk": "Bulk Access Management", "menu.section.access_control_bulk": "बल्क प्रवेश व्यवस्थापन", + // "menu.section.access_control_groups": "Groups", "menu.section.access_control_groups": "गट", + // "menu.section.access_control_people": "People", "menu.section.access_control_people": "लोक", + // "menu.section.reports": "Reports", "menu.section.reports": "अहवाल", + // "menu.section.reports.collections": "Filtered Collections", "menu.section.reports.collections": "फिल्टर केलेले संग्रह", + // "menu.section.reports.queries": "Metadata Query", "menu.section.reports.queries": "मेटाडेटा क्वेरी", + // "menu.section.admin_search": "Admin Search", "menu.section.admin_search": "प्रशासन शोध", + // "menu.section.browse_community": "This Community", "menu.section.browse_community": "हा समुदाय", + // "menu.section.browse_community_by_author": "By Author", "menu.section.browse_community_by_author": "लेखकानुसार", + // "menu.section.browse_community_by_issue_date": "By Issue Date", "menu.section.browse_community_by_issue_date": "मुद्द्यानुसार", + // "menu.section.browse_community_by_title": "By Title", "menu.section.browse_community_by_title": "शीर्षकानुसार", + // "menu.section.browse_global": "All of DSpace", "menu.section.browse_global": "संपूर्ण DSpace", + // "menu.section.browse_global_by_author": "By Author", "menu.section.browse_global_by_author": "लेखकानुसार", + // "menu.section.browse_global_by_dateissued": "By Issue Date", "menu.section.browse_global_by_dateissued": "मुद्द्यानुसार", + // "menu.section.browse_global_by_subject": "By Subject", "menu.section.browse_global_by_subject": "विषयानुसार", + // "menu.section.browse_global_by_srsc": "By Subject Category", "menu.section.browse_global_by_srsc": "विषय श्रेणीनुसार", + // "menu.section.browse_global_by_nsi": "By Norwegian Science Index", "menu.section.browse_global_by_nsi": "नॉर्वेजियन सायन्स इंडेक्सनुसार", + // "menu.section.browse_global_by_title": "By Title", "menu.section.browse_global_by_title": "शीर्षकानुसार", + // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "समुदाय आणि संग्रह", + // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", "menu.section.browse_global_geospatial_map": "भौगोलिक स्थानानुसार (नकाशा)", + // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "नियंत्रण पॅनेल", + // "menu.section.curation_task": "Curation Task", "menu.section.curation_task": "क्युरेशन कार्य", + // "menu.section.edit": "Edit", "menu.section.edit": "संपादित करा", + // "menu.section.edit_collection": "Collection", "menu.section.edit_collection": "संग्रह", + // "menu.section.edit_community": "Community", "menu.section.edit_community": "समुदाय", + // "menu.section.edit_item": "Item", "menu.section.edit_item": "आयटम", + // "menu.section.export": "Export", "menu.section.export": "निर्यात", + // "menu.section.export_collection": "Collection", "menu.section.export_collection": "संग्रह", + // "menu.section.export_community": "Community", "menu.section.export_community": "समुदाय", + // "menu.section.export_item": "Item", "menu.section.export_item": "आयटम", + // "menu.section.export_metadata": "Metadata", "menu.section.export_metadata": "मेटाडेटा", + // "menu.section.export_batch": "Batch Export (ZIP)", "menu.section.export_batch": "बॅच निर्यात (ZIP)", + // "menu.section.icon.access_control": "Access Control menu section", "menu.section.icon.access_control": "प्रवेश नियंत्रण मेनू विभाग", + // "menu.section.icon.reports": "Reports menu section", "menu.section.icon.reports": "अहवाल मेनू विभाग", + // "menu.section.icon.admin_search": "Admin search menu section", "menu.section.icon.admin_search": "प्रशासन शोध मेनू विभाग", + // "menu.section.icon.control_panel": "Control Panel menu section", "menu.section.icon.control_panel": "नियंत्रण पॅनेल मेनू विभाग", + // "menu.section.icon.curation_tasks": "Curation Task menu section", "menu.section.icon.curation_tasks": "क्युरेशन कार्य मेनू विभाग", + // "menu.section.icon.edit": "Edit menu section", "menu.section.icon.edit": "संपादन मेनू विभाग", + // "menu.section.icon.export": "Export menu section", "menu.section.icon.export": "निर्यात मेनू विभाग", + // "menu.section.icon.find": "Find menu section", "menu.section.icon.find": "शोधा मेनू विभाग", + // "menu.section.icon.health": "Health check menu section", "menu.section.icon.health": "आरोग्य तपासणी मेनू विभाग", + // "menu.section.icon.import": "Import menu section", "menu.section.icon.import": "आयात मेनू विभाग", + // "menu.section.icon.new": "New menu section", "menu.section.icon.new": "नवीन मेनू विभाग", + // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "साइडबार पिन करा", + // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "साइडबार अनपिन करा", + // "menu.section.icon.notifications": "Notifications menu section", "menu.section.icon.notifications": "सूचना मेनू विभाग", + // "menu.section.import": "Import", "menu.section.import": "आयात", + // "menu.section.import_batch": "Batch Import (ZIP)", "menu.section.import_batch": "बॅच आयात (ZIP)", + // "menu.section.import_metadata": "Metadata", "menu.section.import_metadata": "मेटाडेटा", + // "menu.section.new": "New", "menu.section.new": "नवीन", + // "menu.section.new_collection": "Collection", "menu.section.new_collection": "संग्रह", + // "menu.section.new_community": "Community", "menu.section.new_community": "समुदाय", + // "menu.section.new_item": "Item", "menu.section.new_item": "आयटम", + // "menu.section.new_item_version": "Item Version", "menu.section.new_item_version": "आयटम आवृत्ती", + // "menu.section.new_process": "Process", "menu.section.new_process": "प्रक्रिया", + // "menu.section.notifications": "Notifications", "menu.section.notifications": "सूचना", + // "menu.section.quality-assurance": "Quality Assurance", "menu.section.quality-assurance": "गुणवत्ता आश्वासन", + // "menu.section.notifications_publication-claim": "Publication Claim", "menu.section.notifications_publication-claim": "प्रकाशन दावा", + // "menu.section.pin": "Pin sidebar", "menu.section.pin": "साइडबार पिन करा", + // "menu.section.unpin": "Unpin sidebar", "menu.section.unpin": "साइडबार अनपिन करा", + // "menu.section.processes": "Processes", "menu.section.processes": "प्रक्रिया", + // "menu.section.health": "Health", "menu.section.health": "आरोग्य", + // "menu.section.registries": "Registries", "menu.section.registries": "नोंदणी", + // "menu.section.registries_format": "Format", "menu.section.registries_format": "फॉरमॅट", + // "menu.section.registries_metadata": "Metadata", "menu.section.registries_metadata": "मेटाडेटा", + // "menu.section.statistics": "Statistics", "menu.section.statistics": "आकडेवारी", + // "menu.section.statistics_task": "Statistics Task", "menu.section.statistics_task": "आकडेवारी कार्य", + // "menu.section.toggle.access_control": "Toggle Access Control section", "menu.section.toggle.access_control": "प्रवेश नियंत्रण विभाग टॉगल करा", + // "menu.section.toggle.reports": "Toggle Reports section", "menu.section.toggle.reports": "अहवाल विभाग टॉगल करा", + // "menu.section.toggle.control_panel": "Toggle Control Panel section", "menu.section.toggle.control_panel": "नियंत्रण पॅनेल विभाग टॉगल करा", + // "menu.section.toggle.curation_task": "Toggle Curation Task section", "menu.section.toggle.curation_task": "क्युरेशन कार्य विभाग टॉगल करा", + // "menu.section.toggle.edit": "Toggle Edit section", "menu.section.toggle.edit": "संपादन विभाग टॉगल करा", + // "menu.section.toggle.export": "Toggle Export section", "menu.section.toggle.export": "निर्यात विभाग टॉगल करा", + // "menu.section.toggle.find": "Toggle Find section", "menu.section.toggle.find": "शोधा विभाग टॉगल करा", + // "menu.section.toggle.import": "Toggle Import section", "menu.section.toggle.import": "आयात विभाग टॉगल करा", + // "menu.section.toggle.new": "Toggle New section", "menu.section.toggle.new": "नवीन विभाग टॉगल करा", + // "menu.section.toggle.registries": "Toggle Registries section", "menu.section.toggle.registries": "नोंदणी विभाग टॉगल करा", + // "menu.section.toggle.statistics_task": "Toggle Statistics Task section", "menu.section.toggle.statistics_task": "आकडेवारी कार्य विभाग टॉगल करा", + // "menu.section.workflow": "Administer Workflow", "menu.section.workflow": "वर्कफ्लो प्रशासित करा", + // "metadata-export-search.tooltip": "Export search results as CSV", "metadata-export-search.tooltip": "शोध परिणाम CSV म्हणून निर्यात करा", + // "metadata-export-search.submit.success": "The export was started successfully", "metadata-export-search.submit.success": "निर्यात यशस्वीरित्या सुरू झाली", + // "metadata-export-search.submit.error": "Starting the export has failed", "metadata-export-search.submit.error": "निर्यात सुरू करण्यात अयशस्वी", + // "mydspace.breadcrumbs": "MyDSpace", "mydspace.breadcrumbs": "MyDSpace", + // "mydspace.description": "", "mydspace.description": "", + // "mydspace.messages.controller-help": "Select this option to send a message to item's submitter.", "mydspace.messages.controller-help": "आयटमच्या सबमिटरला संदेश पाठवण्यासाठी हा पर्याय निवडा.", + // "mydspace.messages.description-placeholder": "Insert your message here...", "mydspace.messages.description-placeholder": "आपला संदेश येथे प्रविष्ट करा...", + // "mydspace.messages.hide-msg": "Hide message", "mydspace.messages.hide-msg": "संदेश लपवा", + // "mydspace.messages.mark-as-read": "Mark as read", "mydspace.messages.mark-as-read": "वाचले म्हणून चिन्हांकित करा", + // "mydspace.messages.mark-as-unread": "Mark as unread", "mydspace.messages.mark-as-unread": "न वाचले म्हणून चिन्हांकित करा", + // "mydspace.messages.no-content": "No content.", "mydspace.messages.no-content": "कोणतीही सामग्री नाही.", + // "mydspace.messages.no-messages": "No messages yet.", "mydspace.messages.no-messages": "अजून कोणतेही संदेश नाहीत.", + // "mydspace.messages.send-btn": "Send", "mydspace.messages.send-btn": "पाठवा", + // "mydspace.messages.show-msg": "Show message", "mydspace.messages.show-msg": "संदेश दाखवा", + // "mydspace.messages.subject-placeholder": "Subject...", "mydspace.messages.subject-placeholder": "विषय...", + // "mydspace.messages.submitter-help": "Select this option to send a message to controller.", "mydspace.messages.submitter-help": "नियंत्रकाला संदेश पाठवण्यासाठी हा पर्याय निवडा.", + // "mydspace.messages.title": "Messages", "mydspace.messages.title": "संदेश", + // "mydspace.messages.to": "To", "mydspace.messages.to": "प्रति", + // "mydspace.new-submission": "New submission", "mydspace.new-submission": "नवीन सबमिशन", + // "mydspace.new-submission-external": "Import metadata from external source", "mydspace.new-submission-external": "बाह्य स्रोतातून मेटाडेटा आयात करा", + // "mydspace.new-submission-external-short": "Import metadata", "mydspace.new-submission-external-short": "मेटाडेटा आयात करा", + // "mydspace.results.head": "Your submissions", "mydspace.results.head": "आपली सबमिशन", + // "mydspace.results.no-abstract": "No Abstract", "mydspace.results.no-abstract": "सारांश नाही", + // "mydspace.results.no-authors": "No Authors", "mydspace.results.no-authors": "लेखक नाहीत", + // "mydspace.results.no-collections": "No Collections", "mydspace.results.no-collections": "संग्रह नाहीत", + // "mydspace.results.no-date": "No Date", "mydspace.results.no-date": "तारीख नाही", + // "mydspace.results.no-files": "No Files", "mydspace.results.no-files": "फाइल्स नाहीत", + // "mydspace.results.no-results": "There were no items to show", "mydspace.results.no-results": "दाखविण्यासाठी कोणतेही आयटम नव्हते", + // "mydspace.results.no-title": "No title", "mydspace.results.no-title": "शीर्षक नाही", + // "mydspace.results.no-uri": "No URI", "mydspace.results.no-uri": "URI नाही", + // "mydspace.search-form.placeholder": "Search in MyDSpace...", "mydspace.search-form.placeholder": "MyDSpace मध्ये शोधा...", + // "mydspace.show.workflow": "Workflow tasks", "mydspace.show.workflow": "वर्कफ्लो कार्य", + // "mydspace.show.workspace": "Your submissions", "mydspace.show.workspace": "आपली सबमिशन", + // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "पर्यवेक्षित आयटम", + // "mydspace.status": "My DSpace status:", + // TODO New key - Add a translation + "mydspace.status": "My DSpace status:", + + // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "संग्रहित", + // "mydspace.status.mydspaceValidation": "Validation", "mydspace.status.mydspaceValidation": "प्रमाणीकरण", + // "mydspace.status.mydspaceWaitingController": "Waiting for reviewer", "mydspace.status.mydspaceWaitingController": "पुनरावलोककाची प्रतीक्षा", + // "mydspace.status.mydspaceWorkflow": "Workflow", "mydspace.status.mydspaceWorkflow": "वर्कफ्लो", + // "mydspace.status.mydspaceWorkspace": "Workspace", "mydspace.status.mydspaceWorkspace": "वर्कस्पेस", + // "mydspace.title": "MyDSpace", "mydspace.title": "MyDSpace", + // "mydspace.upload.upload-failed": "Error creating new workspace. Please verify the content uploaded before retry.", "mydspace.upload.upload-failed": "नवीन वर्कस्पेस तयार करताना त्रुटी. कृपया पुन्हा प्रयत्न करण्यापूर्वी अपलोड केलेली सामग्री सत्यापित करा.", + // "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.", "mydspace.upload.upload-failed-manyentries": "प्रक्रिया न होणारी फाइल. खूप जास्त नोंदी आढळल्या परंतु फाइलसाठी फक्त एकच परवानगी आहे.", + // "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.", "mydspace.upload.upload-failed-moreonefile": "प्रक्रिया न होणारी विनंती. फक्त एक फाइल परवानगी आहे.", + // "mydspace.upload.upload-multiple-successful": "{{qty}} new workspace items created.", "mydspace.upload.upload-multiple-successful": "{{qty}} नवीन वर्कस्पेस आयटम तयार केले.", + // "mydspace.view-btn": "View", "mydspace.view-btn": "पहा", + // "nav.expandable-navbar-section-suffix": "(submenu)", "nav.expandable-navbar-section-suffix": "(उपमेनू)", + // "notification.suggestion": "We found {{count}} publications in the {{source}} that seems to be related to your profile.
", "notification.suggestion": "आम्हाला {{source}} मध्ये {{count}} प्रकाशने सापडली आहेत जी तुमच्या प्रोफाइलशी संबंधित असल्याचे दिसते.
", + // "notification.suggestion.review": "review the suggestions", "notification.suggestion.review": "सूचना पुनरावलोकन करा", + // "notification.suggestion.please": "Please", "notification.suggestion.please": "कृपया", + // "nav.browse.header": "All of DSpace", "nav.browse.header": "संपूर्ण DSpace", + // "nav.community-browse.header": "By Community", "nav.community-browse.header": "समुदायानुसार", + // "nav.context-help-toggle": "Toggle context help", "nav.context-help-toggle": "संदर्भ मदत टॉगल करा", + // "nav.language": "Language switch", "nav.language": "भाषा स्विच", + // "nav.login": "Log In", "nav.login": "लॉग इन", + // "nav.user-profile-menu-and-logout": "User profile menu and log out", "nav.user-profile-menu-and-logout": "वापरकर्ता प्रोफाइल मेनू आणि लॉग आउट", + // "nav.logout": "Log Out", "nav.logout": "लॉग आउट", + // "nav.main.description": "Main navigation bar", "nav.main.description": "मुख्य नेव्हिगेशन बार", + // "nav.mydspace": "MyDSpace", "nav.mydspace": "MyDSpace", + // "nav.profile": "Profile", "nav.profile": "प्रोफाइल", + // "nav.search": "Search", "nav.search": "शोधा", + // "nav.search.button": "Submit search", "nav.search.button": "शोध सबमिट करा", + // "nav.statistics.header": "Statistics", "nav.statistics.header": "आकडेवारी", + // "nav.stop-impersonating": "Stop impersonating EPerson", "nav.stop-impersonating": "EPerson चे अनुकरण थांबवा", + // "nav.subscriptions": "Subscriptions", "nav.subscriptions": "सदस्यता", + // "nav.toggle": "Toggle navigation", "nav.toggle": "नेव्हिगेशन टॉगल करा", + // "nav.user.description": "User profile bar", "nav.user.description": "वापरकर्ता प्रोफाइल बार", + // "listelement.badge.dso-type": "Item type:", + // TODO New key - Add a translation + "listelement.badge.dso-type": "Item type:", + + // "none.listelement.badge": "Item", "none.listelement.badge": "आयटम", + // "publication-claim.title": "Publication claim", "publication-claim.title": "प्रकाशन दावा", + // "publication-claim.source.description": "Below you can see all the sources.", "publication-claim.source.description": "खाली तुम्हाला सर्व स्रोत दिसतील.", + // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "गुणवत्ता आश्वासन", + // "quality-assurance.topics.description": "Below you can see all the topics received from the subscriptions to {{source}}.", "quality-assurance.topics.description": "खाली तुम्हाला {{source}} सदस्यतांमधून प्राप्त झालेले सर्व विषय दिसतील.", + // "quality-assurance.source.description": "Below you can see all the notification's sources.", "quality-assurance.source.description": "खाली तुम्हाला सर्व सूचनांचे स्रोत दिसतील.", + // "quality-assurance.topics": "Current Topics", "quality-assurance.topics": "सध्याचे विषय", + // "quality-assurance.source": "Current Sources", "quality-assurance.source": "सध्याचे स्रोत", + // "quality-assurance.table.topic": "Topic", "quality-assurance.table.topic": "विषय", + // "quality-assurance.table.source": "Source", "quality-assurance.table.source": "स्रोत", + // "quality-assurance.table.last-event": "Last Event", "quality-assurance.table.last-event": "शेवटची घटना", + // "quality-assurance.table.actions": "Actions", "quality-assurance.table.actions": "क्रिया", + // "quality-assurance.source-list.button.detail": "Show topics for {{param}}", "quality-assurance.source-list.button.detail": "{{param}} साठी विषय दाखवा", + // "quality-assurance.topics-list.button.detail": "Show suggestions for {{param}}", "quality-assurance.topics-list.button.detail": "{{param}} साठी सूचना दाखवा", + // "quality-assurance.noTopics": "No topics found.", "quality-assurance.noTopics": "कोणतेही विषय आढळले नाहीत.", + // "quality-assurance.noSource": "No sources found.", "quality-assurance.noSource": "कोणतेही स्रोत आढळले नाहीत.", + // "notifications.events.title": "Quality Assurance Suggestions", "notifications.events.title": "गुणवत्ता आश्वासन सूचना", + // "quality-assurance.topic.error.service.retrieve": "An error occurred while loading the Quality Assurance topics", "quality-assurance.topic.error.service.retrieve": "गुणवत्ता आश्वासन विषय लोड करताना त्रुटी आली", + // "quality-assurance.source.error.service.retrieve": "An error occurred while loading the Quality Assurance source", "quality-assurance.source.error.service.retrieve": "गुणवत्ता आश्वासन स्रोत लोड करताना त्रुटी आली", + // "quality-assurance.loading": "Loading ...", "quality-assurance.loading": "लोड करत आहे ...", - "quality-assurance.events.topic": "विषय:", + // "quality-assurance.events.topic": "Topic:", + // TODO New key - Add a translation + "quality-assurance.events.topic": "Topic:", + // "quality-assurance.noEvents": "No suggestions found.", "quality-assurance.noEvents": "कोणत्याही सूचना आढळल्या नाहीत.", + // "quality-assurance.event.table.trust": "Trust", "quality-assurance.event.table.trust": "विश्वास", + // "quality-assurance.event.table.publication": "Publication", "quality-assurance.event.table.publication": "प्रकाशन", + // "quality-assurance.event.table.details": "Details", "quality-assurance.event.table.details": "तपशील", + // "quality-assurance.event.table.project-details": "Project details", "quality-assurance.event.table.project-details": "प्रकल्प तपशील", + // "quality-assurance.event.table.reasons": "Reasons", "quality-assurance.event.table.reasons": "कारणे", + // "quality-assurance.event.table.actions": "Actions", "quality-assurance.event.table.actions": "क्रिया", + // "quality-assurance.event.action.accept": "Accept suggestion", "quality-assurance.event.action.accept": "सूचना स्वीकारा", + // "quality-assurance.event.action.ignore": "Ignore suggestion", "quality-assurance.event.action.ignore": "सूचना दुर्लक्षित करा", + // "quality-assurance.event.action.undo": "Delete", "quality-assurance.event.action.undo": "हटवा", + // "quality-assurance.event.action.reject": "Reject suggestion", "quality-assurance.event.action.reject": "सूचना नाकार", + // "quality-assurance.event.action.import": "Import project and accept suggestion", "quality-assurance.event.action.import": "प्रकल्प आयात करा आणि सूचना स्वीकारा", - "quality-assurance.event.table.pidtype": "PID प्रकार:", + // "quality-assurance.event.table.pidtype": "PID Type:", + // TODO New key - Add a translation + "quality-assurance.event.table.pidtype": "PID Type:", - "quality-assurance.event.table.pidvalue": "PID मूल्य:", + // "quality-assurance.event.table.pidvalue": "PID Value:", + // TODO New key - Add a translation + "quality-assurance.event.table.pidvalue": "PID Value:", - "quality-assurance.event.table.subjectValue": "विषय मूल्य:", + // "quality-assurance.event.table.subjectValue": "Subject Value:", + // TODO New key - Add a translation + "quality-assurance.event.table.subjectValue": "Subject Value:", - "quality-assurance.event.table.abstract": "सारांश:", + // "quality-assurance.event.table.abstract": "Abstract:", + // TODO New key - Add a translation + "quality-assurance.event.table.abstract": "Abstract:", + // "quality-assurance.event.table.suggestedProject": "OpenAIRE Suggested Project data", "quality-assurance.event.table.suggestedProject": "OpenAIRE सुचवलेले प्रकल्प डेटा", - "quality-assurance.event.table.project": "प्रकल्प शीर्षक:", + // "quality-assurance.event.table.project": "Project title:", + // TODO New key - Add a translation + "quality-assurance.event.table.project": "Project title:", - "quality-assurance.event.table.acronym": "अक्रोनिम:", + // "quality-assurance.event.table.acronym": "Acronym:", + // TODO New key - Add a translation + "quality-assurance.event.table.acronym": "Acronym:", - "quality-assurance.event.table.code": "कोड:", + // "quality-assurance.event.table.code": "Code:", + // TODO New key - Add a translation + "quality-assurance.event.table.code": "Code:", - "quality-assurance.event.table.funder": "फंडर:", + // "quality-assurance.event.table.funder": "Funder:", + // TODO New key - Add a translation + "quality-assurance.event.table.funder": "Funder:", - "quality-assurance.event.table.fundingProgram": "फंडिंग कार्यक्रम:", + // "quality-assurance.event.table.fundingProgram": "Funding program:", + // TODO New key - Add a translation + "quality-assurance.event.table.fundingProgram": "Funding program:", - "quality-assurance.event.table.jurisdiction": "क्षेत्राधिकार:", + // "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + // TODO New key - Add a translation + "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + // "quality-assurance.events.back": "Back to topics", "quality-assurance.events.back": "विषयांकडे परत जा", + // "quality-assurance.events.back-to-sources": "Back to sources", "quality-assurance.events.back-to-sources": "स्रोतांकडे परत जा", + // "quality-assurance.event.table.less": "Show less", "quality-assurance.event.table.less": "कमी दाखवा", + // "quality-assurance.event.table.more": "Show more", "quality-assurance.event.table.more": "अधिक दाखवा", - "quality-assurance.event.project.found": "स्थानिक नोंदीशी बांधलेले:", + // "quality-assurance.event.project.found": "Bound to the local record:", + // TODO New key - Add a translation + "quality-assurance.event.project.found": "Bound to the local record:", + // "quality-assurance.event.project.notFound": "No local record found", "quality-assurance.event.project.notFound": "कोणतीही स्थानिक नोंद आढळली नाही", + // "quality-assurance.event.sure": "Are you sure?", "quality-assurance.event.sure": "आपल्याला खात्री आहे?", + // "quality-assurance.event.ignore.description": "This operation can't be undone. Ignore this suggestion?", "quality-assurance.event.ignore.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. ही सूचना दुर्लक्षित करा?", + // "quality-assurance.event.undo.description": "This operation can't be undone!", "quality-assurance.event.undo.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही!", + // "quality-assurance.event.reject.description": "This operation can't be undone. Reject this suggestion?", "quality-assurance.event.reject.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. ही सूचना नाकार?", + // "quality-assurance.event.accept.description": "No DSpace project selected. A new project will be created based on the suggestion data.", "quality-assurance.event.accept.description": "कोणताही DSpace प्रकल्प निवडलेला नाही. सूचना डेटावर आधारित नवीन प्रकल्प तयार केला जाईल.", + // "quality-assurance.event.action.cancel": "Cancel", "quality-assurance.event.action.cancel": "रद्द करा", + // "quality-assurance.event.action.saved": "Your decision has been saved successfully.", "quality-assurance.event.action.saved": "आपला निर्णय यशस्वीरित्या जतन केला गेला आहे.", + // "quality-assurance.event.action.error": "An error has occurred. Your decision has not been saved.", "quality-assurance.event.action.error": "त्रुटी आली आहे. आपला निर्णय जतन केला गेला नाही.", + // "quality-assurance.event.modal.project.title": "Choose a project to bound", "quality-assurance.event.modal.project.title": "बांधण्यासाठी प्रकल्प निवडा", - "quality-assurance.event.modal.project.publication": "प्रकाशन:", + // "quality-assurance.event.modal.project.publication": "Publication:", + // TODO New key - Add a translation + "quality-assurance.event.modal.project.publication": "Publication:", - "quality-assurance.event.modal.project.bountToLocal": "स्थानिक नोंदीशी बांधलेले:", + // "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + // TODO New key - Add a translation + "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + // "quality-assurance.event.modal.project.select": "Project search", "quality-assurance.event.modal.project.select": "प्रकल्प शोध", + // "quality-assurance.event.modal.project.search": "Search", "quality-assurance.event.modal.project.search": "शोधा", + // "quality-assurance.event.modal.project.clear": "Clear", "quality-assurance.event.modal.project.clear": "साफ करा", + // "quality-assurance.event.modal.project.cancel": "Cancel", "quality-assurance.event.modal.project.cancel": "रद्द करा", + // "quality-assurance.event.modal.project.bound": "Bound project", "quality-assurance.event.modal.project.bound": "बांधलेला प्रकल्प", + // "quality-assurance.event.modal.project.remove": "Remove", "quality-assurance.event.modal.project.remove": "काढा", + // "quality-assurance.event.modal.project.placeholder": "Enter a project name", "quality-assurance.event.modal.project.placeholder": "प्रकल्पाचे नाव प्रविष्ट करा", + // "quality-assurance.event.modal.project.notFound": "No project found.", "quality-assurance.event.modal.project.notFound": "कोणताही प्रकल्प आढळला नाही.", + // "quality-assurance.event.project.bounded": "The project has been linked successfully.", "quality-assurance.event.project.bounded": "प्रकल्प यशस्वीरित्या लिंक केला गेला आहे.", + // "quality-assurance.event.project.removed": "The project has been successfully unlinked.", "quality-assurance.event.project.removed": "प्रकल्प यशस्वीरित्या अनलिंक केला गेला आहे.", + // "quality-assurance.event.project.error": "An error has occurred. No operation performed.", "quality-assurance.event.project.error": "त्रुटी आली आहे. कोणतीही क्रिया केली गेली नाही.", + // "quality-assurance.event.reason": "Reason", "quality-assurance.event.reason": "कारण", + // "orgunit.listelement.badge": "Organizational Unit", "orgunit.listelement.badge": "संगठनात्मक युनिट", + // "orgunit.listelement.no-title": "Untitled", "orgunit.listelement.no-title": "शीर्षक नाही", + // "orgunit.page.city": "City", "orgunit.page.city": "शहर", + // "orgunit.page.country": "Country", "orgunit.page.country": "देश", + // "orgunit.page.dateestablished": "Date established", "orgunit.page.dateestablished": "स्थापनेची तारीख", + // "orgunit.page.description": "Description", "orgunit.page.description": "वर्णन", + // "orgunit.page.edit": "Edit this item", "orgunit.page.edit": "हा आयटम संपादित करा", + // "orgunit.page.id": "ID", "orgunit.page.id": "ID", + // "orgunit.page.options": "Options", "orgunit.page.options": "पर्याय", - "orgunit.page.titleprefix": "संगठनात्मक युनिट: ", + // "orgunit.page.titleprefix": "Organizational Unit: ", + // TODO New key - Add a translation + "orgunit.page.titleprefix": "Organizational Unit: ", + // "orgunit.page.ror": "ROR Identifier", "orgunit.page.ror": "ROR ओळखकर्ता", + // "orgunit.search.results.head": "Organizational Unit Search Results", "orgunit.search.results.head": "संगठनात्मक युनिट शोध परिणाम", + // "pagination.options.description": "Pagination options", "pagination.options.description": "पृष्ठांकन पर्याय", + // "pagination.results-per-page": "Results Per Page", "pagination.results-per-page": "प्रति पृष्ठ परिणाम", + // "pagination.showing.detail": "{{ range }} of {{ total }}", "pagination.showing.detail": "{{ range }} पैकी {{ total }}", + // "pagination.showing.label": "Now showing ", "pagination.showing.label": "आता दाखवत आहे ", + // "pagination.sort-direction": "Sort Options", "pagination.sort-direction": "क्रमवारी पर्याय", + // "person.listelement.badge": "Person", "person.listelement.badge": "व्यक्ती", + // "person.listelement.no-title": "No name found", "person.listelement.no-title": "नाव सापडले नाही", + // "person.page.birthdate": "Birth Date", "person.page.birthdate": "जन्मतारीख", + // "person.page.edit": "Edit this item", "person.page.edit": "हा आयटम संपादित करा", + // "person.page.email": "Email Address", "person.page.email": "ईमेल पत्ता", + // "person.page.firstname": "First Name", "person.page.firstname": "पहिले नाव", + // "person.page.jobtitle": "Job Title", "person.page.jobtitle": "नोकरीचे शीर्षक", + // "person.page.lastname": "Last Name", "person.page.lastname": "आडनाव", + // "person.page.name": "Name", "person.page.name": "नाव", + // "person.page.link.full": "Show all metadata", "person.page.link.full": "सर्व मेटाडेटा दाखवा", + // "person.page.options": "Options", "person.page.options": "पर्याय", + // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", + // "person.page.staffid": "Staff ID", "person.page.staffid": "कर्मचारी आयडी", - "person.page.titleprefix": "व्यक्ती: ", + // "person.page.titleprefix": "Person: ", + // TODO New key - Add a translation + "person.page.titleprefix": "Person: ", + // "person.search.results.head": "Person Search Results", "person.search.results.head": "व्यक्ती शोध परिणाम", + // "person-relationships.search.results.head": "Person Search Results", "person-relationships.search.results.head": "व्यक्ती शोध परिणाम", + // "person.search.title": "Person Search", "person.search.title": "व्यक्ती शोध", + // "process.new.select-parameters": "Parameters", "process.new.select-parameters": "पॅरामीटर्स", + // "process.new.select-parameter": "Select parameter", "process.new.select-parameter": "पॅरामीटर निवडा", + // "process.new.add-parameter": "Add a parameter...", "process.new.add-parameter": "पॅरामीटर जोडा...", + // "process.new.delete-parameter": "Delete parameter", "process.new.delete-parameter": "पॅरामीटर हटवा", + // "process.new.parameter.label": "Parameter value", "process.new.parameter.label": "पॅरामीटर मूल्य", + // "process.new.cancel": "Cancel", "process.new.cancel": "रद्द करा", + // "process.new.submit": "Save", "process.new.submit": "जतन करा", + // "process.new.select-script": "Script", "process.new.select-script": "स्क्रिप्ट", + // "process.new.select-script.placeholder": "Choose a script...", "process.new.select-script.placeholder": "स्क्रिप्ट निवडा...", + // "process.new.select-script.required": "Script is required", "process.new.select-script.required": "स्क्रिप्ट आवश्यक आहे", + // "process.new.parameter.file.upload-button": "Select file...", "process.new.parameter.file.upload-button": "फाइल निवडा...", + // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "कृपया फाइल निवडा", + // "process.new.parameter.integer.required": "Parameter value is required", "process.new.parameter.integer.required": "पॅरामीटर मूल्य आवश्यक आहे", + // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "पॅरामीटर मूल्य आवश्यक आहे", + // "process.new.parameter.type.value": "value", "process.new.parameter.type.value": "मूल्य", + // "process.new.parameter.type.file": "file", "process.new.parameter.type.file": "फाइल", - "process.new.parameter.required.missing": "खालील पॅरामीटर्स आवश्यक आहेत परंतु अद्याप गायब आहेत:", + // "process.new.parameter.required.missing": "The following parameters are required but still missing:", + // TODO New key - Add a translation + "process.new.parameter.required.missing": "The following parameters are required but still missing:", + // "process.new.notification.success.title": "Success", "process.new.notification.success.title": "यश", + // "process.new.notification.success.content": "The process was successfully created", "process.new.notification.success.content": "प्रक्रिया यशस्वीरित्या तयार केली गेली", + // "process.new.notification.error.title": "Error", "process.new.notification.error.title": "त्रुटी", + // "process.new.notification.error.content": "An error occurred while creating this process", "process.new.notification.error.content": "ही प्रक्रिया तयार करताना त्रुटी आली", + // "process.new.notification.error.max-upload.content": "The file exceeds the maximum upload size", "process.new.notification.error.max-upload.content": "फाइलने कमाल अपलोड आकार ओलांडला आहे", + // "process.new.header": "Create a new process", "process.new.header": "नवीन प्रक्रिया तयार करा", + // "process.new.title": "Create a new process", "process.new.title": "नवीन प्रक्रिया तयार करा", + // "process.new.breadcrumbs": "Create a new process", "process.new.breadcrumbs": "नवीन प्रक्रिया तयार करा", + // "process.detail.arguments": "Arguments", "process.detail.arguments": "तर्क", + // "process.detail.arguments.empty": "This process doesn't contain any arguments", "process.detail.arguments.empty": "या प्रक्रियेमध्ये कोणतेही तर्क नाहीत", + // "process.detail.back": "Back", "process.detail.back": "मागे", + // "process.detail.output": "Process Output", "process.detail.output": "प्रक्रिया आउटपुट", + // "process.detail.logs.button": "Retrieve process output", "process.detail.logs.button": "प्रक्रिया आउटपुट पुनर्प्राप्त करा", + // "process.detail.logs.loading": "Retrieving", "process.detail.logs.loading": "पुनर्प्राप्त करत आहे", + // "process.detail.logs.none": "This process has no output", "process.detail.logs.none": "या प्रक्रियेमध्ये कोणतेही आउटपुट नाही", + // "process.detail.output-files": "Output Files", "process.detail.output-files": "आउटपुट फाइल्स", + // "process.detail.output-files.empty": "This process doesn't contain any output files", "process.detail.output-files.empty": "या प्रक्रियेमध्ये कोणतेही आउटपुट फाइल्स नाहीत", + // "process.detail.script": "Script", "process.detail.script": "स्क्रिप्ट", - "process.detail.title": "प्रक्रिया: {{ id }} - {{ name }}", + // "process.detail.title": "Process: {{ id }} - {{ name }}", + // TODO New key - Add a translation + "process.detail.title": "Process: {{ id }} - {{ name }}", + // "process.detail.start-time": "Start time", "process.detail.start-time": "प्रारंभ वेळ", + // "process.detail.end-time": "Finish time", "process.detail.end-time": "समाप्ती वेळ", + // "process.detail.status": "Status", "process.detail.status": "स्थिती", + // "process.detail.create": "Create similar process", "process.detail.create": "समान प्रक्रिया तयार करा", + // "process.detail.actions": "Actions", "process.detail.actions": "क्रिया", + // "process.detail.delete.button": "Delete process", "process.detail.delete.button": "प्रक्रिया हटवा", + // "process.detail.delete.header": "Delete process", "process.detail.delete.header": "प्रक्रिया हटवा", + // "process.detail.delete.body": "Are you sure you want to delete the current process?", "process.detail.delete.body": "आपण सध्याची प्रक्रिया हटवू इच्छिता?", + // "process.detail.delete.cancel": "Cancel", "process.detail.delete.cancel": "रद्द करा", + // "process.detail.delete.confirm": "Delete process", "process.detail.delete.confirm": "प्रक्रिया हटवा", + // "process.detail.delete.success": "The process was successfully deleted.", "process.detail.delete.success": "प्रक्रिया यशस्वीरित्या हटवली गेली.", + // "process.detail.delete.error": "Something went wrong when deleting the process", "process.detail.delete.error": "प्रक्रिया हटवताना काहीतरी चूक झाली", + // "process.detail.refreshing": "Auto-refreshing…", "process.detail.refreshing": "स्वतः-ताजेतवाने करत आहे…", + // "process.overview.table.completed.info": "Finish time (UTC)", "process.overview.table.completed.info": "समाप्ती वेळ (UTC)", + // "process.overview.table.completed.title": "Succeeded processes", "process.overview.table.completed.title": "यशस्वी प्रक्रिया", + // "process.overview.table.empty": "No matching processes found.", "process.overview.table.empty": "कोणतीही जुळणारी प्रक्रिया आढळली नाही.", + // "process.overview.table.failed.info": "Finish time (UTC)", "process.overview.table.failed.info": "समाप्ती वेळ (UTC)", + // "process.overview.table.failed.title": "Failed processes", "process.overview.table.failed.title": "अयशस्वी प्रक्रिया", + // "process.overview.table.finish": "Finish time (UTC)", "process.overview.table.finish": "समाप्ती वेळ (UTC)", + // "process.overview.table.id": "Process ID", "process.overview.table.id": "प्रक्रिया आयडी", + // "process.overview.table.name": "Name", "process.overview.table.name": "नाव", + // "process.overview.table.running.info": "Start time (UTC)", "process.overview.table.running.info": "प्रारंभ वेळ (UTC)", + // "process.overview.table.running.title": "Running processes", "process.overview.table.running.title": "चालू प्रक्रिया", + // "process.overview.table.scheduled.info": "Creation time (UTC)", "process.overview.table.scheduled.info": "निर्मिती वेळ (UTC)", + // "process.overview.table.scheduled.title": "Scheduled processes", "process.overview.table.scheduled.title": "नियोजित प्रक्रिया", + // "process.overview.table.start": "Start time (UTC)", "process.overview.table.start": "प्रारंभ वेळ (UTC)", + // "process.overview.table.status": "Status", "process.overview.table.status": "स्थिती", + // "process.overview.table.user": "User", "process.overview.table.user": "वापरकर्ता", + // "process.overview.title": "Processes Overview", "process.overview.title": "प्रक्रिया विहंगावलोकन", + // "process.overview.breadcrumbs": "Processes Overview", "process.overview.breadcrumbs": "प्रक्रिया विहंगावलोकन", + // "process.overview.new": "New", "process.overview.new": "नवीन", + // "process.overview.table.actions": "Actions", "process.overview.table.actions": "क्रिया", + // "process.overview.delete": "Delete {{count}} processes", "process.overview.delete": "{{count}} प्रक्रिया हटवा", + // "process.overview.delete-process": "Delete process", "process.overview.delete-process": "प्रक्रिया हटवा", + // "process.overview.delete.clear": "Clear delete selection", "process.overview.delete.clear": "हटविण्याची निवड साफ करा", + // "process.overview.delete.processing": "{{count}} process(es) are being deleted. Please wait for the deletion to fully complete. Note that this can take a while.", "process.overview.delete.processing": "{{count}} प्रक्रिया हटवली जात आहेत. कृपया हटविणे पूर्ण होण्याची प्रतीक्षा करा. लक्षात ठेवा की यास काही वेळ लागू शकतो.", + // "process.overview.delete.body": "Are you sure you want to delete {{count}} process(es)?", "process.overview.delete.body": "आपण {{count}} प्रक्रिया हटवू इच्छिता?", + // "process.overview.delete.header": "Delete processes", "process.overview.delete.header": "प्रक्रिया हटवा", + // "process.overview.unknown.user": "Unknown", "process.overview.unknown.user": "अज्ञात", + // "process.bulk.delete.error.head": "Error on deleteing process", "process.bulk.delete.error.head": "प्रक्रिया हटवताना त्रुटी", + // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ", "process.bulk.delete.error.body": "आयडी {{processId}} असलेली प्रक्रिया हटवली जाऊ शकली नाही. उर्वरित प्रक्रिया हटवणे सुरूच राहील.", + // "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted", "process.bulk.delete.success": "{{count}} प्रक्रिया यशस्वीरित्या हटवली गेली", + // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "प्रोफाइल अद्यतनित करा", + // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + // TODO New key - Add a translation + "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + + // "profile.card.accessibility.header": "Accessibility", + // TODO New key - Add a translation + "profile.card.accessibility.header": "Accessibility", + + // "profile.card.accessibility.link": "Go to Accessibility Settings Page", + // TODO New key - Add a translation + "profile.card.accessibility.link": "Go to Accessibility Settings Page", + + // "profile.card.identify": "Identify", "profile.card.identify": "ओळख", + // "profile.card.security": "Security", "profile.card.security": "सुरक्षा", + // "profile.form.submit": "Save", "profile.form.submit": "जतन करा", + // "profile.groups.head": "Authorization groups you belong to", "profile.groups.head": "आपण ज्या प्राधिकरण गटांचा भाग आहात", + // "profile.special.groups.head": "Authorization special groups you belong to", "profile.special.groups.head": "आपण ज्या प्राधिकरण विशेष गटांचा भाग आहात", + // "profile.metadata.form.error.firstname.required": "First Name is required", "profile.metadata.form.error.firstname.required": "पहिले नाव आवश्यक आहे", + // "profile.metadata.form.error.lastname.required": "Last Name is required", "profile.metadata.form.error.lastname.required": "आडनाव आवश्यक आहे", + // "profile.metadata.form.label.email": "Email Address", "profile.metadata.form.label.email": "ईमेल पत्ता", + // "profile.metadata.form.label.firstname": "First Name", "profile.metadata.form.label.firstname": "पहिले नाव", + // "profile.metadata.form.label.language": "Language", "profile.metadata.form.label.language": "भाषा", + // "profile.metadata.form.label.lastname": "Last Name", "profile.metadata.form.label.lastname": "आडनाव", + // "profile.metadata.form.label.phone": "Contact Telephone", "profile.metadata.form.label.phone": "संपर्क दूरध्वनी", + // "profile.metadata.form.notifications.success.content": "Your changes to the profile were saved.", "profile.metadata.form.notifications.success.content": "प्रोफाइलमध्ये आपले बदल जतन केले गेले.", + // "profile.metadata.form.notifications.success.title": "Profile saved", "profile.metadata.form.notifications.success.title": "प्रोफाइल जतन केले", + // "profile.notifications.warning.no-changes.content": "No changes were made to the Profile.", "profile.notifications.warning.no-changes.content": "प्रोफाइलमध्ये कोणतेही बदल केले गेले नाहीत.", + // "profile.notifications.warning.no-changes.title": "No changes", "profile.notifications.warning.no-changes.title": "कोणतेही बदल नाहीत", + // "profile.security.form.error.matching-passwords": "The passwords do not match.", "profile.security.form.error.matching-passwords": "पासवर्ड जुळत नाहीत.", + // "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.", "profile.security.form.info": "पर्यायी, आपण खालील बॉक्समध्ये नवीन पासवर्ड प्रविष्ट करू शकता आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करू शकता.", + // "profile.security.form.label.password": "Password", "profile.security.form.label.password": "पासवर्ड", + // "profile.security.form.label.passwordrepeat": "Retype to confirm", "profile.security.form.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा", + // "profile.security.form.label.current-password": "Current password", "profile.security.form.label.current-password": "सध्याचा पासवर्ड", + // "profile.security.form.notifications.success.content": "Your changes to the password were saved.", "profile.security.form.notifications.success.content": "आपल्या पासवर्डमध्ये बदल जतन केले गेले.", + // "profile.security.form.notifications.success.title": "Password saved", "profile.security.form.notifications.success.title": "पासवर्ड जतन केले", + // "profile.security.form.notifications.error.title": "Error changing passwords", "profile.security.form.notifications.error.title": "पासवर्ड बदलताना त्रुटी", + // "profile.security.form.notifications.error.change-failed": "An error occurred while trying to change the password. Please check if the current password is correct.", "profile.security.form.notifications.error.change-failed": "पासवर्ड बदलण्याचा प्रयत्न करताना त्रुटी आली. कृपया सध्याचा पासवर्ड योग्य आहे का ते तपासा.", + // "profile.security.form.notifications.error.not-same": "The provided passwords are not the same.", "profile.security.form.notifications.error.not-same": "प्रदान केलेले पासवर्ड समान नाहीत.", + // "profile.security.form.notifications.error.general": "Please fill required fields of security form.", "profile.security.form.notifications.error.general": "कृपया सुरक्षा फॉर्मची आवश्यक फील्ड भरा.", + // "profile.title": "Update Profile", "profile.title": "प्रोफाइल अद्यतनित करा", + // "profile.card.researcher": "Researcher Profile", "profile.card.researcher": "संशोधक प्रोफाइल", + // "project.listelement.badge": "Research Project", "project.listelement.badge": "संशोधन प्रकल्प", + // "project.page.contributor": "Contributors", "project.page.contributor": "योगदानकर्ते", + // "project.page.description": "Description", "project.page.description": "वर्णन", + // "project.page.edit": "Edit this item", "project.page.edit": "हा आयटम संपादित करा", + // "project.page.expectedcompletion": "Expected Completion", "project.page.expectedcompletion": "अपेक्षित पूर्णता", + // "project.page.funder": "Funders", "project.page.funder": "फंडर", + // "project.page.id": "ID", "project.page.id": "ID", + // "project.page.keyword": "Keywords", "project.page.keyword": "कीवर्ड", + // "project.page.options": "Options", "project.page.options": "पर्याय", + // "project.page.status": "Status", "project.page.status": "स्थिती", - "project.page.titleprefix": "संशोधन प्रकल्प: ", + // "project.page.titleprefix": "Research Project: ", + // TODO New key - Add a translation + "project.page.titleprefix": "Research Project: ", + // "project.search.results.head": "Project Search Results", "project.search.results.head": "प्रकल्प शोध परिणाम", + // "project-relationships.search.results.head": "Project Search Results", "project-relationships.search.results.head": "प्रकल्प शोध परिणाम", + // "publication.listelement.badge": "Publication", "publication.listelement.badge": "प्रकाशन", + // "publication.page.description": "Description", "publication.page.description": "वर्णन", + // "publication.page.edit": "Edit this item", "publication.page.edit": "हा आयटम संपादित करा", + // "publication.page.journal-issn": "Journal ISSN", "publication.page.journal-issn": "जर्नल ISSN", + // "publication.page.journal-title": "Journal Title", "publication.page.journal-title": "जर्नल शीर्षक", + // "publication.page.publisher": "Publisher", "publication.page.publisher": "प्रकाशक", + // "publication.page.options": "Options", "publication.page.options": "पर्याय", - "publication.page.titleprefix": "प्रकाशन: ", + // "publication.page.titleprefix": "Publication: ", + // TODO New key - Add a translation + "publication.page.titleprefix": "Publication: ", + // "publication.page.volume-title": "Volume Title", "publication.page.volume-title": "खंड शीर्षक", + // "publication.search.results.head": "Publication Search Results", "publication.search.results.head": "प्रकाशन शोध परिणाम", + // "publication-relationships.search.results.head": "Publication Search Results", "publication-relationships.search.results.head": "प्रकाशन शोध परिणाम", + // "publication.search.title": "Publication Search", "publication.search.title": "प्रकाशन शोध", + // "media-viewer.next": "Next", "media-viewer.next": "पुढे", + // "media-viewer.previous": "Previous", "media-viewer.previous": "मागील", + // "media-viewer.playlist": "Playlist", "media-viewer.playlist": "प्लेलिस्ट", + // "suggestion.loading": "Loading ...", "suggestion.loading": "लोड करत आहे ...", + // "suggestion.title": "Publication Claim", "suggestion.title": "प्रकाशन दावा", + // "suggestion.title.breadcrumbs": "Publication Claim", "suggestion.title.breadcrumbs": "प्रकाशन दावा", + // "suggestion.targets.description": "Below you can see all the suggestions ", "suggestion.targets.description": "खाली तुम्हाला सर्व सूचना दिसतील ", + // "suggestion.targets": "Current Suggestions", "suggestion.targets": "सध्याच्या सूचना", + // "suggestion.table.name": "Researcher Name", "suggestion.table.name": "संशोधकाचे नाव", + // "suggestion.table.actions": "Actions", "suggestion.table.actions": "क्रिया", + // "suggestion.button.review": "Review {{ total }} suggestion(s)", "suggestion.button.review": "{{ total }} सूचना पुनरावलोकन करा", + // "suggestion.button.review.title": "Review {{ total }} suggestion(s) for ", "suggestion.button.review.title": "{{ total }} साठी सूचना पुनरावलोकन करा", + // "suggestion.noTargets": "No target found.", "suggestion.noTargets": "कोणताही लक्ष्य आढळला नाही.", + // "suggestion.target.error.service.retrieve": "An error occurred while loading the Suggestion targets", "suggestion.target.error.service.retrieve": "सूचना लक्ष्य लोड करताना त्रुटी आली", + // "suggestion.evidence.type": "Type", "suggestion.evidence.type": "प्रकार", + // "suggestion.evidence.score": "Score", "suggestion.evidence.score": "स्कोअर", + // "suggestion.evidence.notes": "Notes", "suggestion.evidence.notes": "टीप", + // "suggestion.approveAndImport": "Approve & import", "suggestion.approveAndImport": "मंजूर करा आणि आयात करा", + // "suggestion.approveAndImport.success": "The suggestion has been imported successfully. View.", "suggestion.approveAndImport.success": "सूचना यशस्वीरित्या आयात केली गेली आहे. पहा.", + // "suggestion.approveAndImport.bulk": "Approve & import Selected", "suggestion.approveAndImport.bulk": "निवडलेले मंजूर करा आणि आयात करा", + // "suggestion.approveAndImport.bulk.success": "{{ count }} suggestions have been imported successfully ", "suggestion.approveAndImport.bulk.success": "{{ count }} सूचना यशस्वीरित्या आयात केल्या गेल्या आहेत", + // "suggestion.approveAndImport.bulk.error": "{{ count }} suggestions haven't been imported due to unexpected server errors", "suggestion.approveAndImport.bulk.error": "अनपेक्षित सर्व्हर त्रुटींमुळे {{ count }} सूचना आयात केल्या गेल्या नाहीत", + // "suggestion.ignoreSuggestion": "Ignore Suggestion", "suggestion.ignoreSuggestion": "सूचना दुर्लक्षित करा", + // "suggestion.ignoreSuggestion.success": "The suggestion has been discarded", "suggestion.ignoreSuggestion.success": "सूचना रद्द केली गेली आहे", + // "suggestion.ignoreSuggestion.bulk": "Ignore Suggestion Selected", "suggestion.ignoreSuggestion.bulk": "निवडलेली सूचना दुर्लक्षित करा", + // "suggestion.ignoreSuggestion.bulk.success": "{{ count }} suggestions have been discarded ", "suggestion.ignoreSuggestion.bulk.success": "{{ count }} सूचना रद्द केल्या गेल्या आहेत", + // "suggestion.ignoreSuggestion.bulk.error": "{{ count }} suggestions haven't been discarded due to unexpected server errors", "suggestion.ignoreSuggestion.bulk.error": "अनपेक्षित सर्व्हर त्रुटींमुळे {{ count }} सूचना रद्द केल्या गेल्या नाहीत", + // "suggestion.seeEvidence": "See evidence", "suggestion.seeEvidence": "पुरावा पहा", + // "suggestion.hideEvidence": "Hide evidence", "suggestion.hideEvidence": "पुरावा लपवा", + // "suggestion.suggestionFor": "Suggestions for", "suggestion.suggestionFor": "साठी सूचना", + // "suggestion.suggestionFor.breadcrumb": "Suggestions for {{ name }}", "suggestion.suggestionFor.breadcrumb": "{{ name }} साठी सूचना", + // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "OpenAIRE ग्राफ", + // "suggestion.source.openalex": "OpenAlex", "suggestion.source.openalex": "OpenAlex", + // "suggestion.from.source": "from the ", "suggestion.from.source": "पासून", + // "suggestion.count.missing": "You have no publication claims left", "suggestion.count.missing": "आपल्याकडे कोणतेही प्रकाशन दावे शिल्लक नाहीत", + // "suggestion.totalScore": "Total Score", "suggestion.totalScore": "एकूण स्कोअर", + // "suggestion.type.openaire": "OpenAIRE", "suggestion.type.openaire": "OpenAIRE", + // "register-email.title": "New user registration", "register-email.title": "नवीन वापरकर्ता नोंदणी", + // "register-page.create-profile.header": "Create Profile", "register-page.create-profile.header": "प्रोफाइल तयार करा", + // "register-page.create-profile.identification.header": "Identify", "register-page.create-profile.identification.header": "ओळख", + // "register-page.create-profile.identification.email": "Email Address", "register-page.create-profile.identification.email": "ईमेल पत्ता", + // "register-page.create-profile.identification.first-name": "First Name *", "register-page.create-profile.identification.first-name": "पहिले नाव *", + // "register-page.create-profile.identification.first-name.error": "Please fill in a First Name", "register-page.create-profile.identification.first-name.error": "कृपया पहिले नाव भरा", + // "register-page.create-profile.identification.last-name": "Last Name *", "register-page.create-profile.identification.last-name": "आडनाव *", + // "register-page.create-profile.identification.last-name.error": "Please fill in a Last Name", "register-page.create-profile.identification.last-name.error": "कृपया आडनाव भरा", + // "register-page.create-profile.identification.contact": "Contact Telephone", "register-page.create-profile.identification.contact": "संपर्क दूरध्वनी", + // "register-page.create-profile.identification.language": "Language", "register-page.create-profile.identification.language": "भाषा", + // "register-page.create-profile.security.header": "Security", "register-page.create-profile.security.header": "सुरक्षा", + // "register-page.create-profile.security.info": "Please enter a password in the box below, and confirm it by typing it again into the second box.", "register-page.create-profile.security.info": "कृपया खालील बॉक्समध्ये पासवर्ड प्रविष्ट करा आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करा.", + // "register-page.create-profile.security.label.password": "Password *", "register-page.create-profile.security.label.password": "पासवर्ड *", + // "register-page.create-profile.security.label.passwordrepeat": "Retype to confirm *", "register-page.create-profile.security.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा *", + // "register-page.create-profile.security.error.empty-password": "Please enter a password in the box below.", "register-page.create-profile.security.error.empty-password": "कृपया खालील बॉक्समध्ये पासवर्ड प्रविष्ट करा.", + // "register-page.create-profile.security.error.matching-passwords": "The passwords do not match.", "register-page.create-profile.security.error.matching-passwords": "पासवर्ड जुळत नाहीत.", + // "register-page.create-profile.submit": "Complete Registration", "register-page.create-profile.submit": "नोंदणी पूर्ण करा", + // "register-page.create-profile.submit.error.content": "Something went wrong while registering a new user.", "register-page.create-profile.submit.error.content": "नवीन वापरकर्ता नोंदणी करताना काहीतरी चूक झाली.", + // "register-page.create-profile.submit.error.head": "Registration failed", "register-page.create-profile.submit.error.head": "नोंदणी अयशस्वी", + // "register-page.create-profile.submit.success.content": "The registration was successful. You have been logged in as the created user.", "register-page.create-profile.submit.success.content": "नोंदणी यशस्वी झाली. आपण तयार केलेल्या वापरकर्त्याच्या रूपात लॉग इन केले आहे.", + // "register-page.create-profile.submit.success.head": "Registration completed", "register-page.create-profile.submit.success.head": "नोंदणी पूर्ण झाली", + // "register-page.registration.header": "New user registration", "register-page.registration.header": "नवीन वापरकर्ता नोंदणी", + // "register-page.registration.info": "Register an account to subscribe to collections for email updates, and submit new items to DSpace.", "register-page.registration.info": "संग्रहांसाठी ईमेल अद्यतनांसाठी सदस्यता घेण्यासाठी आणि DSpace मध्ये नवीन आयटम सबमिट करण्यासाठी खाते नोंदणी करा.", + // "register-page.registration.email": "Email Address *", "register-page.registration.email": "ईमेल पत्ता *", + // "register-page.registration.email.error.required": "Please fill in an email address", "register-page.registration.email.error.required": "कृपया ईमेल पत्ता भरा", + // "register-page.registration.email.error.not-email-form": "Please fill in a valid email address.", "register-page.registration.email.error.not-email-form": "कृपया वैध ईमेल पत्ता भरा.", - "register-page.registration.email.error.not-valid-domain": "अनुमत डोमेनसह ईमेल वापरा: {{ domains }}", + // "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + // TODO New key - Add a translation + "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + // "register-page.registration.email.hint": "This address will be verified and used as your login name.", "register-page.registration.email.hint": "हा पत्ता सत्यापित केला जाईल आणि आपले लॉगिन नाव म्हणून वापरला जाईल.", + // "register-page.registration.submit": "Register", "register-page.registration.submit": "नोंदणी करा", + // "register-page.registration.success.head": "Verification email sent", "register-page.registration.success.head": "सत्यापन ईमेल पाठवले", + // "register-page.registration.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "register-page.registration.success.content": "{{ email }} वर एक विशेष URL आणि पुढील सूचना असलेले ईमेल पाठवले गेले आहे.", + // "register-page.registration.error.head": "Error when trying to register email", "register-page.registration.error.head": "ईमेल नोंदणी करताना त्रुटी", - "register-page.registration.error.content": "खालील ईमेल पत्ता नोंदणी करताना त्रुटी आली: {{ email }}", + // "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + // TODO New key - Add a translation + "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + // "register-page.registration.error.recaptcha": "Error when trying to authenticate with recaptcha", "register-page.registration.error.recaptcha": "recaptcha सह प्रमाणीकरण करताना त्रुटी", + // "register-page.registration.google-recaptcha.must-accept-cookies": "In order to register you must accept the Registration and Password recovery (Google reCaptcha) cookies.", "register-page.registration.google-recaptcha.must-accept-cookies": "नोंदणी करण्यासाठी आपल्याला नोंदणी आणि पासवर्ड पुनर्प्राप्ती (Google reCaptcha) कुकीज स्वीकारणे आवश्यक आहे.", + // "register-page.registration.error.maildomain": "This email address is not on the list of domains who can register. Allowed domains are {{ domains }}", "register-page.registration.error.maildomain": "हा ईमेल पत्ता नोंदणी करू शकणाऱ्या डोमेनच्या यादीत नाही. अनुमत डोमेन {{ domains }} आहेत", + // "register-page.registration.google-recaptcha.open-cookie-settings": "Open cookie settings", "register-page.registration.google-recaptcha.open-cookie-settings": "कुकी सेटिंग्ज उघडा", + // "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", + // "register-page.registration.google-recaptcha.notification.message.error": "An error occurred during reCaptcha verification", "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha सत्यापन दरम्यान त्रुटी आली", + // "register-page.registration.google-recaptcha.notification.message.expired": "Verification expired. Please verify again.", "register-page.registration.google-recaptcha.notification.message.expired": "सत्यापन कालबाह्य झाले. कृपया पुन्हा सत्यापित करा.", + // "register-page.registration.info.maildomain": "Accounts can be registered for mail addresses of the domains", "register-page.registration.info.maildomain": "खाती डोमेनच्या मेल पत्त्यांसाठी नोंदणीकृत केली जाऊ शकतात", + // "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items", "relationships.add.error.relationship-type.content": "दोन आयटममधील संबंध प्रकार {{ type }} साठी कोणताही योग्य जुळणारा सापडला नाही", + // "relationships.add.error.server.content": "The server returned an error", "relationships.add.error.server.content": "सर्व्हरने त्रुटी परत केली", + // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "संबंध जोडता येत नाही", - "relationships.isAuthorOf": "लेखक", + // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + + // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + + // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + + // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + + // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + + // "relationships.Publication.isContributorOfPublication.Person": "Contributor", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.Person": "Contributor", - "relationships.isAuthorOf.Person": "लेखक (व्यक्ती)", + // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - "relationships.isAuthorOf.OrgUnit": "लेखक (संगठनात्मक युनिट)", + // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - "relationships.isIssueOf": "जर्नल अंक", + // "relationships.Person.isProjectOfPerson.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Person.isProjectOfPerson.Project": "Research Projects", - "relationships.isIssueOf.JournalIssue": "जर्नल अंक", + // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - "relationships.isJournalIssueOf": "जर्नल अंक", + // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - "relationships.isJournalOf": "जर्नल", + // "relationships.Project.isPublicationOfProject.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Project.isPublicationOfProject.Publication": "Publications", - "relationships.isJournalVolumeOf": "जर्नल खंड", + // "relationships.Project.isPersonOfProject.Person": "Authors", + // TODO New key - Add a translation + "relationships.Project.isPersonOfProject.Person": "Authors", - "relationships.isOrgUnitOf": "संगठनात्मक युनिट", + // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - "relationships.isPersonOf": "लेखक", + // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + // TODO New key - Add a translation + "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - "relationships.isProjectOf": "संशोधन प्रकल्प", + // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - "relationships.isPublicationOf": "प्रकाशने", + // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + // TODO New key - Add a translation + "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - "relationships.isPublicationOfJournalIssue": "लेख", + // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - "relationships.isSingleJournalOf": "जर्नल", + // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - "relationships.isSingleVolumeOf": "जर्नल खंड", + // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - "relationships.isVolumeOf": "जर्नल खंड", + // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - "relationships.isVolumeOf.JournalVolume": "जर्नल खंड", + // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - "relationships.isContributorOf": "योगदानकर्ते", + // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + // TODO New key - Add a translation + "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", - "relationships.isContributorOf.OrgUnit": "योगदानकर्ता (संगठनात्मक युनिट)", + // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + // TODO New key - Add a translation + "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - "relationships.isContributorOf.Person": "योगदानकर्ता", + // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - "relationships.isFundingAgencyOf.OrgUnit": "फंडर", + // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + // "repository.image.logo": "Repository logo", "repository.image.logo": "संग्रह लोगो", + // "repository.title": "DSpace Repository", "repository.title": "DSpace संग्रह", - "repository.title.prefix": "DSpace संग्रह :: ", + // "repository.title.prefix": "DSpace Repository :: ", + // TODO New key - Add a translation + "repository.title.prefix": "DSpace Repository :: ", + // "resource-policies.add.button": "Add", "resource-policies.add.button": "जोडा", + // "resource-policies.add.for.": "Add a new policy", "resource-policies.add.for.": "नवीन धोरण जोडा", + // "resource-policies.add.for.bitstream": "Add a new Bitstream policy", "resource-policies.add.for.bitstream": "नवीन बिटस्ट्रीम धोरण जोडा", + // "resource-policies.add.for.bundle": "Add a new Bundle policy", "resource-policies.add.for.bundle": "नवीन बंडल धोरण जोडा", + // "resource-policies.add.for.item": "Add a new Item policy", "resource-policies.add.for.item": "नवीन आयटम धोरण जोडा", + // "resource-policies.add.for.community": "Add a new Community policy", "resource-policies.add.for.community": "नवीन समुदाय धोरण जोडा", + // "resource-policies.add.for.collection": "Add a new Collection policy", "resource-policies.add.for.collection": "नवीन संग्रह धोरण जोडा", + // "resource-policies.create.page.heading": "Create new resource policy for ", "resource-policies.create.page.heading": "साठी नवीन संसाधन धोरण तयार करा ", + // "resource-policies.create.page.failure.content": "An error occurred while creating the resource policy.", "resource-policies.create.page.failure.content": "संसाधन धोरण तयार करताना त्रुटी आली.", + // "resource-policies.create.page.success.content": "Operation successful", "resource-policies.create.page.success.content": "ऑपरेशन यशस्वी", + // "resource-policies.create.page.title": "Create new resource policy", "resource-policies.create.page.title": "नवीन संसाधन धोरण तयार करा", + // "resource-policies.delete.btn": "Delete selected", "resource-policies.delete.btn": "निवडलेले हटवा", + // "resource-policies.delete.btn.title": "Delete selected resource policies", "resource-policies.delete.btn.title": "निवडलेली संसाधन धोरणे हटवा", + // "resource-policies.delete.failure.content": "An error occurred while deleting selected resource policies.", "resource-policies.delete.failure.content": "निवडलेली संसाधन धोरणे हटवताना त्रुटी आली.", + // "resource-policies.delete.success.content": "Operation successful", "resource-policies.delete.success.content": "ऑपरेशन यशस्वी", + // "resource-policies.edit.page.heading": "Edit resource policy ", "resource-policies.edit.page.heading": "संसाधन धोरण संपादित करा ", + // "resource-policies.edit.page.failure.content": "An error occurred while editing the resource policy.", "resource-policies.edit.page.failure.content": "संसाधन धोरण संपादित करताना त्रुटी आली.", + // "resource-policies.edit.page.target-failure.content": "An error occurred while editing the target (ePerson or group) of the resource policy.", "resource-policies.edit.page.target-failure.content": "संसाधन धोरणाचे लक्ष्य (ePerson किंवा गट) संपादित करताना त्रुटी आली.", + // "resource-policies.edit.page.other-failure.content": "An error occurred while editing the resource policy. The target (ePerson or group) has been successfully updated.", "resource-policies.edit.page.other-failure.content": "संसाधन धोरण संपादित करताना त्रुटी आली. लक्ष्य (ePerson किंवा गट) यशस्वीरित्या अद्यतनित केले गेले आहे.", + // "resource-policies.edit.page.success.content": "Operation successful", "resource-policies.edit.page.success.content": "ऑपरेशन यशस्वी", + // "resource-policies.edit.page.title": "Edit resource policy", "resource-policies.edit.page.title": "संसाधन धोरण संपादित करा", + // "resource-policies.form.action-type.label": "Select the action type", "resource-policies.form.action-type.label": "क्रिया प्रकार निवडा", + // "resource-policies.form.action-type.required": "You must select the resource policy action.", "resource-policies.form.action-type.required": "आपल्याला संसाधन धोरण क्रिया निवडणे आवश्यक आहे.", + // "resource-policies.form.eperson-group-list.label": "The eperson or group that will be granted the permission", "resource-policies.form.eperson-group-list.label": "परवानगी दिली जाईल असा ePerson किंवा गट", + // "resource-policies.form.eperson-group-list.select.btn": "Select", "resource-policies.form.eperson-group-list.select.btn": "निवडा", + // "resource-policies.form.eperson-group-list.tab.eperson": "Search for a ePerson", "resource-policies.form.eperson-group-list.tab.eperson": "ePerson साठी शोधा", + // "resource-policies.form.eperson-group-list.tab.group": "Search for a group", "resource-policies.form.eperson-group-list.tab.group": "गटासाठी शोधा", + // "resource-policies.form.eperson-group-list.table.headers.action": "Action", "resource-policies.form.eperson-group-list.table.headers.action": "क्रिया", + // "resource-policies.form.eperson-group-list.table.headers.id": "ID", "resource-policies.form.eperson-group-list.table.headers.id": "ID", + // "resource-policies.form.eperson-group-list.table.headers.name": "Name", "resource-policies.form.eperson-group-list.table.headers.name": "नाव", + // "resource-policies.form.eperson-group-list.modal.header": "Cannot change type", "resource-policies.form.eperson-group-list.modal.header": "प्रकार बदलू शकत नाही", + // "resource-policies.form.eperson-group-list.modal.text1.toGroup": "It is not possible to replace an ePerson with a group.", "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePerson ला गटाने बदलणे शक्य नाही.", + // "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "It is not possible to replace a group with an ePerson.", "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "गटाला ePerson ने बदलणे शक्य नाही.", + // "resource-policies.form.eperson-group-list.modal.text2": "Delete the current resource policy and create a new one with the desired type.", "resource-policies.form.eperson-group-list.modal.text2": "सध्याचे संसाधन धोरण हटवा आणि इच्छित प्रकारासह नवीन तयार करा.", + // "resource-policies.form.eperson-group-list.modal.close": "Ok", "resource-policies.form.eperson-group-list.modal.close": "ठीक आहे", + // "resource-policies.form.date.end.label": "End Date", "resource-policies.form.date.end.label": "समाप्ती तारीख", + // "resource-policies.form.date.start.label": "Start Date", "resource-policies.form.date.start.label": "प्रारंभ तारीख", + // "resource-policies.form.description.label": "Description", "resource-policies.form.description.label": "वर्णन", + // "resource-policies.form.name.label": "Name", "resource-policies.form.name.label": "नाव", + // "resource-policies.form.name.hint": "Max 30 characters", "resource-policies.form.name.hint": "कमाल 30 वर्ण", + // "resource-policies.form.policy-type.label": "Select the policy type", "resource-policies.form.policy-type.label": "धोरण प्रकार निवडा", + // "resource-policies.form.policy-type.required": "You must select the resource policy type.", "resource-policies.form.policy-type.required": "आपल्याला संसाधन धोरण प्रकार निवडणे आवश्यक आहे.", + // "resource-policies.table.headers.action": "Action", "resource-policies.table.headers.action": "क्रिया", + // "resource-policies.table.headers.date.end": "End Date", "resource-policies.table.headers.date.end": "समाप्ती तारीख", + // "resource-policies.table.headers.date.start": "Start Date", "resource-policies.table.headers.date.start": "प्रारंभ तारीख", + // "resource-policies.table.headers.edit": "Edit", "resource-policies.table.headers.edit": "संपादित करा", + // "resource-policies.table.headers.edit.group": "Edit group", "resource-policies.table.headers.edit.group": "गट संपादित करा", + // "resource-policies.table.headers.edit.policy": "Edit policy", "resource-policies.table.headers.edit.policy": "धोरण संपादित करा", + // "resource-policies.table.headers.eperson": "EPerson", "resource-policies.table.headers.eperson": "ePerson", + // "resource-policies.table.headers.group": "Group", "resource-policies.table.headers.group": "गट", + // "resource-policies.table.headers.select-all": "Select all", "resource-policies.table.headers.select-all": "सर्व निवडा", + // "resource-policies.table.headers.deselect-all": "Deselect all", "resource-policies.table.headers.deselect-all": "सर्व निवड रद्द करा", + // "resource-policies.table.headers.select": "Select", "resource-policies.table.headers.select": "निवडा", + // "resource-policies.table.headers.deselect": "Deselect", "resource-policies.table.headers.deselect": "निवड रद्द करा", + // "resource-policies.table.headers.id": "ID", "resource-policies.table.headers.id": "ID", + // "resource-policies.table.headers.name": "Name", "resource-policies.table.headers.name": "नाव", + // "resource-policies.table.headers.policyType": "type", "resource-policies.table.headers.policyType": "प्रकार", + // "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream", "resource-policies.table.headers.title.for.bitstream": "बिटस्ट्रीमसाठी धोरणे", + // "resource-policies.table.headers.title.for.bundle": "Policies for Bundle", "resource-policies.table.headers.title.for.bundle": "बंडलसाठी धोरणे", + // "resource-policies.table.headers.title.for.item": "Policies for Item", "resource-policies.table.headers.title.for.item": "आयटमसाठी धोरणे", + // "resource-policies.table.headers.title.for.community": "Policies for Community", "resource-policies.table.headers.title.for.community": "समुदायासाठी धोरणे", + // "resource-policies.table.headers.title.for.collection": "Policies for Collection", "resource-policies.table.headers.title.for.collection": "संग्रहासाठी धोरणे", + // "root.skip-to-content": "Skip to main content", "root.skip-to-content": "मुख्य सामग्रीकडे जा", + // "search.description": "", "search.description": "", + // "search.switch-configuration.title": "Show", "search.switch-configuration.title": "दाखवा", + // "search.title": "Search", "search.title": "शोधा", + // "search.breadcrumbs": "Search", "search.breadcrumbs": "शोधा", + // "search.search-form.placeholder": "Search the repository ...", "search.search-form.placeholder": "संग्रहात शोधा ...", + // "search.filters.remove": "Remove filter of type {{ type }} with value {{ value }}", "search.filters.remove": "प्रकार {{ type }} सह मूल्य {{ value }} चा फिल्टर काढा", + // "search.filters.applied.f.title": "Title", "search.filters.applied.f.title": "शीर्षक", + // "search.filters.applied.f.author": "Author", "search.filters.applied.f.author": "लेखक", + // "search.filters.applied.f.dateIssued.max": "End date", "search.filters.applied.f.dateIssued.max": "समाप्ती तारीख", + // "search.filters.applied.f.dateIssued.min": "Start date", "search.filters.applied.f.dateIssued.min": "प्रारंभ तारीख", + // "search.filters.applied.f.dateSubmitted": "Date submitted", "search.filters.applied.f.dateSubmitted": "सबमिट केलेली तारीख", + // "search.filters.applied.f.discoverable": "Non-discoverable", "search.filters.applied.f.discoverable": "नॉन-डिस्कव्हरेबल", + // "search.filters.applied.f.entityType": "Item Type", "search.filters.applied.f.entityType": "आयटम प्रकार", + // "search.filters.applied.f.has_content_in_original_bundle": "Has files", "search.filters.applied.f.has_content_in_original_bundle": "फाइल्स आहेत", + // "search.filters.applied.f.original_bundle_filenames": "File name", "search.filters.applied.f.original_bundle_filenames": "फाइल नाव", + // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "फाइल वर्णन", - + // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", "search.filters.applied.f.has_geospatial_metadata": "भौगोलिक स्थान आहे", + // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "प्रकार", + // "search.filters.applied.f.namedresourcetype": "Status", "search.filters.applied.f.namedresourcetype": "स्थिती", + // "search.filters.applied.f.subject": "Subject", "search.filters.applied.f.subject": "विषय", + // "search.filters.applied.f.submitter": "Submitter", "search.filters.applied.f.submitter": "सबमिटर", + // "search.filters.applied.f.jobTitle": "Job Title", "search.filters.applied.f.jobTitle": "नोकरीचे शीर्षक", + // "search.filters.applied.f.birthDate.max": "End birth date", "search.filters.applied.f.birthDate.max": "समाप्ती जन्मतारीख", + // "search.filters.applied.f.birthDate.min": "Start birth date", "search.filters.applied.f.birthDate.min": "प्रारंभ जन्मतारीख", + // "search.filters.applied.f.supervisedBy": "Supervised by", "search.filters.applied.f.supervisedBy": "पर्यवेक्षण केलेले", + // "search.filters.applied.f.withdrawn": "Withdrawn", "search.filters.applied.f.withdrawn": "मागे घेतले", + // "search.filters.applied.operator.equals": "", "search.filters.applied.operator.equals": "", + // "search.filters.applied.operator.notequals": " not equals", "search.filters.applied.operator.notequals": " समान नाही", + // "search.filters.applied.operator.authority": "", "search.filters.applied.operator.authority": "", + // "search.filters.applied.operator.notauthority": " not authority", "search.filters.applied.operator.notauthority": " प्राधिकरण नाही", + // "search.filters.applied.operator.contains": " contains", "search.filters.applied.operator.contains": " समाविष्ट आहे", + // "search.filters.applied.operator.notcontains": " not contains", "search.filters.applied.operator.notcontains": " समाविष्ट नाही", + // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", + // "search.filters.applied.f.point": "Coordinates", "search.filters.applied.f.point": "समन्वय", + // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "शीर्षक", + // "search.filters.filter.title.placeholder": "Title", "search.filters.filter.title.placeholder": "शीर्षक", + // "search.filters.filter.title.label": "Search Title", "search.filters.filter.title.label": "शीर्षक शोधा", + // "search.filters.filter.author.head": "Author", "search.filters.filter.author.head": "लेखक", + // "search.filters.filter.author.placeholder": "Author name", "search.filters.filter.author.placeholder": "लेखकाचे नाव", + // "search.filters.filter.author.label": "Search author name", "search.filters.filter.author.label": "लेखकाचे नाव शोधा", + // "search.filters.filter.birthDate.head": "Birth Date", "search.filters.filter.birthDate.head": "जन्मतारीख", + // "search.filters.filter.birthDate.placeholder": "Birth Date", "search.filters.filter.birthDate.placeholder": "जन्मतारीख", + // "search.filters.filter.birthDate.label": "Search birth date", "search.filters.filter.birthDate.label": "जन्मतारीख शोधा", + // "search.filters.filter.collapse": "Collapse filter", "search.filters.filter.collapse": "फिल्टर संकुचित करा", + // "search.filters.filter.creativeDatePublished.head": "Date Published", "search.filters.filter.creativeDatePublished.head": "प्रकाशित तारीख", + // "search.filters.filter.creativeDatePublished.placeholder": "Date Published", "search.filters.filter.creativeDatePublished.placeholder": "प्रकाशित तारीख", + // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "प्रकाशित तारीख शोधा", + // "search.filters.filter.creativeDatePublished.min.label": "Start", "search.filters.filter.creativeDatePublished.min.label": "प्रारंभ", + // "search.filters.filter.creativeDatePublished.max.label": "End", "search.filters.filter.creativeDatePublished.max.label": "समाप्ती", + // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "संपादक", + // "search.filters.filter.creativeWorkEditor.placeholder": "Editor", "search.filters.filter.creativeWorkEditor.placeholder": "संपादक", + // "search.filters.filter.creativeWorkEditor.label": "Search editor", "search.filters.filter.creativeWorkEditor.label": "संपादक शोधा", + // "search.filters.filter.creativeWorkKeywords.head": "Subject", "search.filters.filter.creativeWorkKeywords.head": "विषय", + // "search.filters.filter.creativeWorkKeywords.placeholder": "Subject", "search.filters.filter.creativeWorkKeywords.placeholder": "विषय", + // "search.filters.filter.creativeWorkKeywords.label": "Search subject", "search.filters.filter.creativeWorkKeywords.label": "विषय शोधा", + // "search.filters.filter.creativeWorkPublisher.head": "Publisher", "search.filters.filter.creativeWorkPublisher.head": "प्रकाशक", + // "search.filters.filter.creativeWorkPublisher.placeholder": "Publisher", "search.filters.filter.creativeWorkPublisher.placeholder": "प्रकाशक", + // "search.filters.filter.creativeWorkPublisher.label": "Search publisher", "search.filters.filter.creativeWorkPublisher.label": "प्रकाशक शोधा", + // "search.filters.filter.dateIssued.head": "Date", "search.filters.filter.dateIssued.head": "तारीख", + // "search.filters.filter.dateIssued.max.placeholder": "Maximum Date", "search.filters.filter.dateIssued.max.placeholder": "कमाल तारीख", + // "search.filters.filter.dateIssued.max.label": "End", "search.filters.filter.dateIssued.max.label": "समाप्ती", + // "search.filters.filter.dateIssued.min.placeholder": "Minimum Date", "search.filters.filter.dateIssued.min.placeholder": "किमान तारीख", + // "search.filters.filter.dateIssued.min.label": "Start", "search.filters.filter.dateIssued.min.label": "प्रारंभ", + // "search.filters.filter.dateSubmitted.head": "Date submitted", "search.filters.filter.dateSubmitted.head": "सबमिट केलेली तारीख", + // "search.filters.filter.dateSubmitted.placeholder": "Date submitted", "search.filters.filter.dateSubmitted.placeholder": "सबमिट केलेली तारीख", + // "search.filters.filter.dateSubmitted.label": "Search date submitted", "search.filters.filter.dateSubmitted.label": "सबमिट केलेली तारीख शोधा", + // "search.filters.filter.discoverable.head": "Non-discoverable", "search.filters.filter.discoverable.head": "नॉन-डिस्कव्हरेबल", + // "search.filters.filter.withdrawn.head": "Withdrawn", "search.filters.filter.withdrawn.head": "मागे घेतले", + // "search.filters.filter.entityType.head": "Item Type", "search.filters.filter.entityType.head": "आयटम प्रकार", + // "search.filters.filter.entityType.placeholder": "Item Type", "search.filters.filter.entityType.placeholder": "आयटम प्रकार", + // "search.filters.filter.entityType.label": "Search item type", "search.filters.filter.entityType.label": "आयटम प्रकार शोधा", + // "search.filters.filter.expand": "Expand filter", "search.filters.filter.expand": "फिल्टर विस्तृत करा", + // "search.filters.filter.has_content_in_original_bundle.head": "Has files", "search.filters.filter.has_content_in_original_bundle.head": "फाइल्स आहेत", + // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "फाइल नाव", + // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", "search.filters.filter.has_geospatial_metadata.head": "भौगोलिक स्थान आहे", + // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "फाइल नाव", + // "search.filters.filter.original_bundle_filenames.label": "Search File name", "search.filters.filter.original_bundle_filenames.label": "फाइल नाव शोधा", + // "search.filters.filter.original_bundle_descriptions.head": "File description", "search.filters.filter.original_bundle_descriptions.head": "फाइल वर्णन", + // "search.filters.filter.original_bundle_descriptions.placeholder": "File description", "search.filters.filter.original_bundle_descriptions.placeholder": "फाइल वर्णन", + // "search.filters.filter.original_bundle_descriptions.label": "Search File description", "search.filters.filter.original_bundle_descriptions.label": "फाइल वर्णन शोधा", + // "search.filters.filter.itemtype.head": "Type", "search.filters.filter.itemtype.head": "प्रकार", + // "search.filters.filter.itemtype.placeholder": "Type", "search.filters.filter.itemtype.placeholder": "प्रकार", + // "search.filters.filter.itemtype.label": "Search type", "search.filters.filter.itemtype.label": "प्रकार शोधा", + // "search.filters.filter.jobTitle.head": "Job Title", "search.filters.filter.jobTitle.head": "नोकरीचे शीर्षक", + // "search.filters.filter.jobTitle.placeholder": "Job Title", "search.filters.filter.jobTitle.placeholder": "नोकरीचे शीर्षक", + // "search.filters.filter.jobTitle.label": "Search job title", "search.filters.filter.jobTitle.label": "नोकरीचे शीर्षक शोधा", + // "search.filters.filter.knowsLanguage.head": "Known language", "search.filters.filter.knowsLanguage.head": "ज्ञात भाषा", + // "search.filters.filter.knowsLanguage.placeholder": "Known language", "search.filters.filter.knowsLanguage.placeholder": "ज्ञात भाषा", + // "search.filters.filter.knowsLanguage.label": "Search known language", "search.filters.filter.knowsLanguage.label": "ज्ञात भाषा शोधा", + // "search.filters.filter.namedresourcetype.head": "Status", "search.filters.filter.namedresourcetype.head": "स्थिती", + // "search.filters.filter.namedresourcetype.placeholder": "Status", "search.filters.filter.namedresourcetype.placeholder": "स्थिती", + // "search.filters.filter.namedresourcetype.label": "Search status", "search.filters.filter.namedresourcetype.label": "स्थिती शोधा", + // "search.filters.filter.objectpeople.head": "People", "search.filters.filter.objectpeople.head": "लोक", + // "search.filters.filter.objectpeople.placeholder": "People", "search.filters.filter.objectpeople.placeholder": "लोक", + // "search.filters.filter.objectpeople.label": "Search people", "search.filters.filter.objectpeople.label": "लोक शोधा", + // "search.filters.filter.organizationAddressCountry.head": "Country", "search.filters.filter.organizationAddressCountry.head": "देश", + // "search.filters.filter.organizationAddressCountry.placeholder": "Country", "search.filters.filter.organizationAddressCountry.placeholder": "देश", + // "search.filters.filter.organizationAddressCountry.label": "Search country", "search.filters.filter.organizationAddressCountry.label": "देश शोधा", + // "search.filters.filter.organizationAddressLocality.head": "City", "search.filters.filter.organizationAddressLocality.head": "शहर", + // "search.filters.filter.organizationAddressLocality.placeholder": "City", "search.filters.filter.organizationAddressLocality.placeholder": "शहर", + // "search.filters.filter.organizationAddressLocality.label": "Search city", "search.filters.filter.organizationAddressLocality.label": "शहर शोधा", + // "search.filters.filter.organizationFoundingDate.head": "Date Founded", "search.filters.filter.organizationFoundingDate.head": "स्थापनेची तारीख", + // "search.filters.filter.organizationFoundingDate.placeholder": "Date Founded", "search.filters.filter.organizationFoundingDate.placeholder": "स्थापनेची तारीख", + // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "स्थापनेची तारीख शोधा", + // "search.filters.filter.organizationFoundingDate.min.label": "Start", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.min.label": "Start", + + // "search.filters.filter.organizationFoundingDate.max.label": "End", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.max.label": "End", + + // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "व्याप्ती", + // "search.filters.filter.scope.placeholder": "Scope filter", "search.filters.filter.scope.placeholder": "व्याप्ती फिल्टर", + // "search.filters.filter.scope.label": "Search scope filter", "search.filters.filter.scope.label": "व्याप्ती फिल्टर शोधा", + // "search.filters.filter.show-less": "Collapse", "search.filters.filter.show-less": "संकुचित करा", + // "search.filters.filter.show-more": "Show more", "search.filters.filter.show-more": "अधिक दाखवा", + // "search.filters.filter.subject.head": "Subject", "search.filters.filter.subject.head": "विषय", + // "search.filters.filter.subject.placeholder": "Subject", "search.filters.filter.subject.placeholder": "विषय", + // "search.filters.filter.subject.label": "Search subject", "search.filters.filter.subject.label": "विषय शोधा", + // "search.filters.filter.submitter.head": "Submitter", "search.filters.filter.submitter.head": "सबमिटर", + // "search.filters.filter.submitter.placeholder": "Submitter", "search.filters.filter.submitter.placeholder": "सबमिटर", + // "search.filters.filter.submitter.label": "Search submitter", "search.filters.filter.submitter.label": "सबमिटर शोधा", + // "search.filters.filter.show-tree": "Browse {{ name }} tree", "search.filters.filter.show-tree": "{{ name }} वृक्ष ब्राउझ करा", + // "search.filters.filter.funding.head": "Funding", "search.filters.filter.funding.head": "फंडिंग", + // "search.filters.filter.funding.placeholder": "Funding", "search.filters.filter.funding.placeholder": "फंडिंग", + // "search.filters.filter.supervisedBy.head": "Supervised By", "search.filters.filter.supervisedBy.head": "पर्यवेक्षण केलेले", + // "search.filters.filter.supervisedBy.placeholder": "Supervised By", "search.filters.filter.supervisedBy.placeholder": "पर्यवेक्षण केलेले", + // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "पर्यवेक्षण केलेले शोधा", + // "search.filters.filter.access_status.head": "Access type", "search.filters.filter.access_status.head": "प्रवेश प्रकार", + // "search.filters.filter.access_status.placeholder": "Access type", "search.filters.filter.access_status.placeholder": "प्रवेश प्रकार", + // "search.filters.filter.access_status.label": "Search by access type", "search.filters.filter.access_status.label": "प्रवेश प्रकारानुसार शोधा", + // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "जर्नल अंक", + // "search.filters.entityType.JournalVolume": "Journal Volume", "search.filters.entityType.JournalVolume": "जर्नल खंड", + // "search.filters.entityType.OrgUnit": "Organizational Unit", "search.filters.entityType.OrgUnit": "संगठनात्मक युनिट", + // "search.filters.entityType.Person": "Person", "search.filters.entityType.Person": "व्यक्ती", + // "search.filters.entityType.Project": "Project", "search.filters.entityType.Project": "प्रकल्प", + // "search.filters.entityType.Publication": "Publication", "search.filters.entityType.Publication": "प्रकाशन", + // "search.filters.has_content_in_original_bundle.true": "Yes", "search.filters.has_content_in_original_bundle.true": "होय", + // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "नाही", + // "search.filters.has_geospatial_metadata.true": "Yes", "search.filters.has_geospatial_metadata.true": "होय", + // "search.filters.has_geospatial_metadata.false": "No", "search.filters.has_geospatial_metadata.false": "नाही", + // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "नाही", + // "search.filters.discoverable.false": "Yes", "search.filters.discoverable.false": "होय", + // "search.filters.namedresourcetype.Archived": "Archived", "search.filters.namedresourcetype.Archived": "संग्रहित", + // "search.filters.namedresourcetype.Validation": "Validation", "search.filters.namedresourcetype.Validation": "प्रमाणीकरण", + // "search.filters.namedresourcetype.Waiting for Controller": "Waiting for reviewer", "search.filters.namedresourcetype.Waiting for Controller": "पुनरावलोककाची प्रतीक्षा", + // "search.filters.namedresourcetype.Workflow": "Workflow", "search.filters.namedresourcetype.Workflow": "वर्कफ्लो", + // "search.filters.namedresourcetype.Workspace": "Workspace", "search.filters.namedresourcetype.Workspace": "वर्कस्पेस", + // "search.filters.withdrawn.true": "Yes", "search.filters.withdrawn.true": "होय", + // "search.filters.withdrawn.false": "No", "search.filters.withdrawn.false": "नाही", + // "search.filters.head": "Filters", "search.filters.head": "फिल्टर", + // "search.filters.reset": "Reset filters", "search.filters.reset": "फिल्टर रीसेट करा", + // "search.filters.search.submit": "Submit", "search.filters.search.submit": "सबमिट करा", + // "search.filters.operator.equals.text": "Equals", "search.filters.operator.equals.text": "समान", + // "search.filters.operator.notequals.text": "Not Equals", "search.filters.operator.notequals.text": "समान नाही", + // "search.filters.operator.authority.text": "Authority", "search.filters.operator.authority.text": "प्राधिकरण", + // "search.filters.operator.notauthority.text": "Not Authority", "search.filters.operator.notauthority.text": "प्राधिकरण नाही", + // "search.filters.operator.contains.text": "Contains", "search.filters.operator.contains.text": "समाविष्ट आहे", + // "search.filters.operator.notcontains.text": "Not Contains", "search.filters.operator.notcontains.text": "समाविष्ट नाही", + // "search.filters.operator.query.text": "Query", "search.filters.operator.query.text": "क्वेरी", + // "search.form.search": "Search", "search.form.search": "शोधा", + // "search.form.search_dspace": "All repository", "search.form.search_dspace": "संपूर्ण संग्रह", + // "search.form.scope.all": "All of DSpace", "search.form.scope.all": "संपूर्ण DSpace", + // "search.results.head": "Search Results", "search.results.head": "शोध परिणाम", + // "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting", "search.results.no-results": "आपल्या शोधाला कोणतेही परिणाम मिळाले नाहीत. आपल्याला हवे असलेले शोधण्यात अडचण येत आहे का? प्रयत्न करा", + // "search.results.no-results-link": "quotes around it", "search.results.no-results-link": "त्याच्या भोवती उद्धरण चिन्हे लावा", + // "search.results.empty": "Your search returned no results.", "search.results.empty": "आपल्या शोधाला कोणतेही परिणाम मिळाले नाहीत.", + // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", "search.results.geospatial-map.empty": "या पृष्ठावर भौगोलिक स्थानांसह कोणतेही परिणाम नाहीत", + // "search.results.view-result": "View", "search.results.view-result": "पहा", + // "search.results.response.500": "An error occurred during query execution, please try again later", "search.results.response.500": "क्वेरी कार्यान्वित करताना त्रुटी आली, कृपया नंतर पुन्हा प्रयत्न करा", + // "default.search.results.head": "Search Results", "default.search.results.head": "शोध परिणाम", + // "default-relationships.search.results.head": "Search Results", "default-relationships.search.results.head": "शोध परिणाम", + // "search.sidebar.close": "Back to results", "search.sidebar.close": "परिणामांकडे परत जा", + // "search.sidebar.filters.title": "Filters", "search.sidebar.filters.title": "फिल्टर", + // "search.sidebar.open": "Search Tools", "search.sidebar.open": "शोध साधने", + // "search.sidebar.results": "results", "search.sidebar.results": "परिणाम", + // "search.sidebar.settings.rpp": "Results per page", "search.sidebar.settings.rpp": "प्रति पृष्ठ परिणाम", + // "search.sidebar.settings.sort-by": "Sort By", "search.sidebar.settings.sort-by": "क्रमवारी लावा", + // "search.sidebar.advanced-search.title": "Advanced Search", "search.sidebar.advanced-search.title": "प्रगत शोध", + // "search.sidebar.advanced-search.filter-by": "Filter by", "search.sidebar.advanced-search.filter-by": "फिल्टर द्वारे", + // "search.sidebar.advanced-search.filters": "Filters", "search.sidebar.advanced-search.filters": "फिल्टर", + // "search.sidebar.advanced-search.operators": "Operators", "search.sidebar.advanced-search.operators": "ऑपरेटर", + // "search.sidebar.advanced-search.add": "Add", "search.sidebar.advanced-search.add": "जोडा", + // "search.sidebar.settings.title": "Settings", "search.sidebar.settings.title": "सेटिंग्ज", + // "search.view-switch.show-detail": "Show detail", "search.view-switch.show-detail": "तपशील दाखवा", + // "search.view-switch.show-grid": "Show as grid", "search.view-switch.show-grid": "ग्रिड म्हणून दाखवा", + // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "यादी म्हणून दाखवा", + // "search.view-switch.show-geospatialMap": "Show as map", "search.view-switch.show-geospatialMap": "नकाशा म्हणून दाखवा", + // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "आयटम निवड रद्द करा", + // "selectable-list-item-control.select": "Select item", "selectable-list-item-control.select": "आयटम निवडा", + // "sorting.ASC": "Ascending", "sorting.ASC": "आरोही", + // "sorting.DESC": "Descending", "sorting.DESC": "अवरोही", + // "sorting.dc.title.ASC": "Title Ascending", "sorting.dc.title.ASC": "शीर्षक आरोही", + // "sorting.dc.title.DESC": "Title Descending", "sorting.dc.title.DESC": "शीर्षक अवरोही", + // "sorting.score.ASC": "Least Relevant", "sorting.score.ASC": "कमी संबंधित", + // "sorting.score.DESC": "Most Relevant", "sorting.score.DESC": "सर्वाधिक संबंधित", + // "sorting.dc.date.issued.ASC": "Date Issued Ascending", "sorting.dc.date.issued.ASC": "प्रकाशित तारीख आरोही", + // "sorting.dc.date.issued.DESC": "Date Issued Descending", "sorting.dc.date.issued.DESC": "प्रकाशित तारीख अवरोही", + // "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending", "sorting.dc.date.accessioned.ASC": "प्रवेश तारीख आरोही", + // "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending", "sorting.dc.date.accessioned.DESC": "प्रवेश तारीख अवरोही", + // "sorting.lastModified.ASC": "Last modified Ascending", "sorting.lastModified.ASC": "शेवटचे बदलले आरोही", + // "sorting.lastModified.DESC": "Last modified Descending", "sorting.lastModified.DESC": "शेवटचे बदलले अवरोही", + // "sorting.person.familyName.ASC": "Surname Ascending", "sorting.person.familyName.ASC": "आडनाव आरोही", + // "sorting.person.familyName.DESC": "Surname Descending", "sorting.person.familyName.DESC": "आडनाव अवरोही", + // "sorting.person.givenName.ASC": "Name Ascending", "sorting.person.givenName.ASC": "नाव आरोही", + // "sorting.person.givenName.DESC": "Name Descending", "sorting.person.givenName.DESC": "नाव अवरोही", + // "sorting.person.birthDate.ASC": "Birth Date Ascending", "sorting.person.birthDate.ASC": "जन्मतारीख आरोही", + // "sorting.person.birthDate.DESC": "Birth Date Descending", "sorting.person.birthDate.DESC": "जन्मतारीख अवरोही", + // "statistics.title": "Statistics", "statistics.title": "आकडेवारी", + // "statistics.header": "Statistics for {{ scope }}", "statistics.header": "{{ scope }} साठी आकडेवारी", + // "statistics.breadcrumbs": "Statistics", "statistics.breadcrumbs": "आकडेवारी", + // "statistics.page.no-data": "No data available", "statistics.page.no-data": "डेटा उपलब्ध नाही", + // "statistics.table.no-data": "No data available", "statistics.table.no-data": "डेटा उपलब्ध नाही", + // "statistics.table.title.TotalVisits": "Total visits", "statistics.table.title.TotalVisits": "एकूण भेटी", + // "statistics.table.title.TotalVisitsPerMonth": "Total visits per month", "statistics.table.title.TotalVisitsPerMonth": "प्रति महिना एकूण भेटी", + // "statistics.table.title.TotalDownloads": "File Visits", "statistics.table.title.TotalDownloads": "फाइल भेटी", + // "statistics.table.title.TopCountries": "Top country views", "statistics.table.title.TopCountries": "शीर्ष देश दृश्ये", + // "statistics.table.title.TopCities": "Top city views", "statistics.table.title.TopCities": "शीर्ष शहर दृश्ये", + // "statistics.table.header.views": "Views", "statistics.table.header.views": "दृश्ये", + // "statistics.table.no-name": "(object name could not be loaded)", "statistics.table.no-name": "(ऑब्जेक्ट नाव लोड केले जाऊ शकले नाही)", + // "submission.edit.breadcrumbs": "Edit Submission", "submission.edit.breadcrumbs": "सबमिशन संपादित करा", + // "submission.edit.title": "Edit Submission", "submission.edit.title": "सबमिशन संपादित करा", + // "submission.general.cancel": "Cancel", "submission.general.cancel": "रद्द करा", + // "submission.general.cannot_submit": "You don't have permission to make a new submission.", "submission.general.cannot_submit": "आपल्याला नवीन सबमिशन करण्याची परवानगी नाही.", + // "submission.general.deposit": "Deposit", "submission.general.deposit": "ठेव", + // "submission.general.discard.confirm.cancel": "Cancel", "submission.general.discard.confirm.cancel": "रद्द करा", + // "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?", "submission.general.discard.confirm.info": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. आपल्याला खात्री आहे?", + // "submission.general.discard.confirm.submit": "Yes, I'm sure", "submission.general.discard.confirm.submit": "होय, मला खात्री आहे", + // "submission.general.discard.confirm.title": "Discard submission", "submission.general.discard.confirm.title": "सबमिशन रद्द करा", + // "submission.general.discard.submit": "Discard", "submission.general.discard.submit": "रद्द करा", + // "submission.general.back.submit": "Back", "submission.general.back.submit": "मागे", + // "submission.general.info.saved": "Saved", "submission.general.info.saved": "जतन केले", + // "submission.general.info.pending-changes": "Unsaved changes", "submission.general.info.pending-changes": "न जतन केलेले बदल", + // "submission.general.save": "Save", "submission.general.save": "जतन करा", + // "submission.general.save-later": "Save for later", "submission.general.save-later": "नंतर जतन करा", + // "submission.import-external.page.title": "Import metadata from an external source", "submission.import-external.page.title": "बाह्य स्रोतातून मेटाडेटा आयात करा", + // "submission.import-external.title": "Import metadata from an external source", "submission.import-external.title": "बाह्य स्रोतातून मेटाडेटा आयात करा", + // "submission.import-external.title.Journal": "Import a journal from an external source", "submission.import-external.title.Journal": "बाह्य स्रोतातून जर्नल आयात करा", + // "submission.import-external.title.JournalIssue": "Import a journal issue from an external source", "submission.import-external.title.JournalIssue": "बाह्य स्रोतातून जर्नल अंक आयात करा", + // "submission.import-external.title.JournalVolume": "Import a journal volume from an external source", "submission.import-external.title.JournalVolume": "बाह्य स्रोतातून जर्नल खंड आयात करा", + // "submission.import-external.title.OrgUnit": "Import a publisher from an external source", "submission.import-external.title.OrgUnit": "बाह्य स्रोतातून प्रकाशक आयात करा", + // "submission.import-external.title.Person": "Import a person from an external source", "submission.import-external.title.Person": "बाह्य स्रोतातून व्यक्ती आयात करा", + // "submission.import-external.title.Project": "Import a project from an external source", "submission.import-external.title.Project": "बाह्य स्रोतातून प्रकल्प आयात करा", + // "submission.import-external.title.Publication": "Import a publication from an external source", "submission.import-external.title.Publication": "बाह्य स्रोतातून प्रकाशन आयात करा", + // "submission.import-external.title.none": "Import metadata from an external source", "submission.import-external.title.none": "बाह्य स्रोतातून मेटाडेटा आयात करा", + // "submission.import-external.page.hint": "Enter a query above to find items from the web to import in to DSpace.", "submission.import-external.page.hint": "DSpace मध्ये आयात करण्यासाठी वेबवरून आयटम शोधण्यासाठी वरील क्वेरी प्रविष्ट करा.", + // "submission.import-external.back-to-my-dspace": "Back to MyDSpace", "submission.import-external.back-to-my-dspace": "MyDSpace कडे परत जा", + // "submission.import-external.search.placeholder": "Search the external source", "submission.import-external.search.placeholder": "बाह्य स्रोत शोधा", + // "submission.import-external.search.button": "Search", "submission.import-external.search.button": "शोधा", + // "submission.import-external.search.button.hint": "Write some words to search", "submission.import-external.search.button.hint": "शोधण्यासाठी काही शब्द लिहा", + // "submission.import-external.search.source.hint": "Pick an external source", "submission.import-external.search.source.hint": "बाह्य स्रोत निवडा", + // "submission.import-external.source.arxiv": "arXiv", "submission.import-external.source.arxiv": "arXiv", + // "submission.import-external.source.ads": "NASA/ADS", "submission.import-external.source.ads": "NASA/ADS", + // "submission.import-external.source.cinii": "CiNii", "submission.import-external.source.cinii": "CiNii", + // "submission.import-external.source.crossref": "Crossref", "submission.import-external.source.crossref": "Crossref", + // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", + // "submission.import-external.source.dataciteProject": "DataCite", "submission.import-external.source.dataciteProject": "DataCite", + // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", + // "submission.import-external.source.scielo": "SciELO", "submission.import-external.source.scielo": "SciELO", + // "submission.import-external.source.scopus": "Scopus", "submission.import-external.source.scopus": "Scopus", + // "submission.import-external.source.vufind": "VuFind", "submission.import-external.source.vufind": "VuFind", + // "submission.import-external.source.wos": "Web Of Science", "submission.import-external.source.wos": "Web Of Science", + // "submission.import-external.source.orcidWorks": "ORCID", "submission.import-external.source.orcidWorks": "ORCID", + // "submission.import-external.source.epo": "European Patent Office (EPO)", "submission.import-external.source.epo": "European Patent Office (EPO)", + // "submission.import-external.source.loading": "Loading ...", "submission.import-external.source.loading": "लोड करत आहे ...", + // "submission.import-external.source.sherpaJournal": "SHERPA Journals", "submission.import-external.source.sherpaJournal": "SHERPA Journals", + // "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", "submission.import-external.source.sherpaJournalIssn": "ISSN द्वारे SHERPA Journals", + // "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", + // "submission.import-external.source.openaire": "OpenAIRE Search by Authors", "submission.import-external.source.openaire": "लेखकांद्वारे OpenAIRE शोधा", + // "submission.import-external.source.openaireTitle": "OpenAIRE Search by Title", "submission.import-external.source.openaireTitle": "शीर्षकाद्वारे OpenAIRE शोधा", + // "submission.import-external.source.openaireFunding": "OpenAIRE Search by Funder", "submission.import-external.source.openaireFunding": "फंडरद्वारे OpenAIRE शोधा", + // "submission.import-external.source.orcid": "ORCID", "submission.import-external.source.orcid": "ORCID", + // "submission.import-external.source.pubmed": "Pubmed", "submission.import-external.source.pubmed": "Pubmed", + // "submission.import-external.source.pubmedeu": "Pubmed Europe", "submission.import-external.source.pubmedeu": "Pubmed Europe", + // "submission.import-external.source.lcname": "Library of Congress Names", "submission.import-external.source.lcname": "Library of Congress Names", + // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Research Organization Registry (ROR)", + // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", "submission.import-external.source.openalexPublication": "शीर्षकाद्वारे OpenAlex शोधा", + // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", "submission.import-external.source.openalexPublicationByAuthorId": "लेखक आयडीद्वारे OpenAlex शोधा", + // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", "submission.import-external.source.openalexPublicationByDOI": "DOI द्वारे OpenAlex शोधा", + // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", "submission.import-external.source.openalexPerson": "नावाद्वारे OpenAlex शोधा", + // "submission.import-external.source.openalexJournal": "OpenAlex Journals", "submission.import-external.source.openalexJournal": "OpenAlex Journals", + // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", + // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", + // "submission.import-external.source.openalexFunder": "OpenAlex Funders", "submission.import-external.source.openalexFunder": "OpenAlex Funders", + // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "आयटम पूर्वावलोकन", + // "submission.import-external.preview.title.Publication": "Publication Preview", "submission.import-external.preview.title.Publication": "प्रकाशन पूर्वावलोकन", + // "submission.import-external.preview.title.none": "Item Preview", "submission.import-external.preview.title.none": "आयटम पूर्वावलोकन", + // "submission.import-external.preview.title.Journal": "Journal Preview", "submission.import-external.preview.title.Journal": "जर्नल पूर्वावलोकन", + // "submission.import-external.preview.title.OrgUnit": "Organizational Unit Preview", "submission.import-external.preview.title.OrgUnit": "संगठनात्मक युनिट पूर्वावलोकन", + // "submission.import-external.preview.title.Person": "Person Preview", "submission.import-external.preview.title.Person": "व्यक्ती पूर्वावलोकन", + // "submission.import-external.preview.title.Project": "Project Preview", "submission.import-external.preview.title.Project": "प्रकल्प पूर्वावलोकन", + // "submission.import-external.preview.subtitle": "The metadata below was imported from an external source. It will be pre-filled when you start the submission.", "submission.import-external.preview.subtitle": "खालील मेटाडेटा बाह्य स्रोतातून आयात केले गेले आहे. आपण सबमिशन सुरू केल्यावर ते पूर्व-भरले जाईल.", + // "submission.import-external.preview.button.import": "Start submission", "submission.import-external.preview.button.import": "सबमिशन सुरू करा", + // "submission.import-external.preview.error.import.title": "Submission error", "submission.import-external.preview.error.import.title": "सबमिशन त्रुटी", + // "submission.import-external.preview.error.import.body": "An error occurs during the external source entry import process.", "submission.import-external.preview.error.import.body": "बाह्य स्रोत प्रविष्टी आयात प्रक्रियेदरम्यान त्रुटी आली.", + // "submission.sections.describe.relationship-lookup.close": "Close", "submission.sections.describe.relationship-lookup.close": "बंद करा", + // "submission.sections.describe.relationship-lookup.external-source.added": "Successfully added local entry to the selection", "submission.sections.describe.relationship-lookup.external-source.added": "स्थानिक प्रविष्टी यशस्वीरित्या निवडमध्ये जोडली", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Import remote author", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "दूरस्थ लेखक आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Import remote journal", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "दूरस्थ जर्नल आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Import remote journal issue", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "दूरस्थ जर्नल अंक आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Import remote journal volume", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "दूरस्थ जर्नल खंड आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Import remote item", "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "दूरस्थ आयटम आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Import remote event", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "दूरस्थ कार्यक्रम आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Import remote product", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "दूरस्थ उत्पादन आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Import remote equipment", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "दूरस्थ उपकरणे आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "Import remote organizational unit", "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "दूरस्थ संगठनात्मक युनिट आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "Import remote fund", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "दूरस्थ निधी आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Import remote person", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "दूरस्थ व्यक्ती आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Import remote patent", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "दूरस्थ पेटंट आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Import remote project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "दूरस्थ प्रकल्प आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Import remote publication", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "दूरस्थ प्रकाशन आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "नवीन घटक जोडला!", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Import Remote Author", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "दूरस्थ लेखक आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Successfully added local author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "स्थानिक लेखक यशस्वीरित्या निवडमध्ये जोडला", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Successfully imported and added external author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "बाह्य लेखक यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Authority", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "प्राधिकरण", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Import as a new local authority entry", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "नवीन स्थानिक प्राधिकरण प्रविष्टी म्हणून आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Cancel", "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "रद्द करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Select a collection to import new entries to", "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "नवीन प्रविष्टी आयात करण्यासाठी संग्रह निवडा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "Entities", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "घटक", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Import as a new local entity", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "नवीन स्थानिक घटक म्हणून आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC Name मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa Journal मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Importing from Sherpa Publisher", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa Publisher मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Importing from PubMed", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Importing from arXiv", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "Import from ROR", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR मधून आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Import", "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Import Remote Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "दूरस्थ जर्नल आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Successfully added local journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "स्थानिक जर्नल यशस्वीरित्या निवडमध्ये जोडले", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Successfully imported and added external journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "बाह्य जर्नल यशस्वीरित्या आयात केले आणि निवडमध्ये जोडले", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Import Remote Journal Issue", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "दूरस्थ जर्नल अंक आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Successfully added local journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "स्थानिक जर्नल अंक यशस्वीरित्या निवडमध्ये जोडला", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Successfully imported and added external journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "बाह्य जर्नल अंक यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Import Remote Journal Volume", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "दूरस्थ जर्नल खंड आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Successfully added local journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "स्थानिक जर्नल खंड यशस्वीरित्या निवडमध्ये जोडला", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Successfully imported and added external journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "बाह्य जर्नल खंड यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", - "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "स्थानिक जुळणारे निवडा:", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "Import Remote Organization", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "दूरस्थ संगठन आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "Successfully added local organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "स्थानिक संगठन यशस्वीरित्या निवडमध्ये जोडले", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "Successfully imported and added external organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "बाह्य संगठन यशस्वीरित्या आयात केले आणि निवडमध्ये जोडले", + // "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Deselect all", "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "सर्व निवड रद्द करा", + // "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Deselect page", "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "पृष्ठ निवड रद्द करा", + // "submission.sections.describe.relationship-lookup.search-tab.loading": "Loading...", "submission.sections.describe.relationship-lookup.search-tab.loading": "लोड करत आहे...", + // "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Search query", "submission.sections.describe.relationship-lookup.search-tab.placeholder": "शोध क्वेरी", + // "submission.sections.describe.relationship-lookup.search-tab.search": "Go", "submission.sections.describe.relationship-lookup.search-tab.search": "जा", + // "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "शोधा...", + // "submission.sections.describe.relationship-lookup.search-tab.select-all": "Select all", "submission.sections.describe.relationship-lookup.search-tab.select-all": "सर्व निवडा", + // "submission.sections.describe.relationship-lookup.search-tab.select-page": "Select page", "submission.sections.describe.relationship-lookup.search-tab.select-page": "पृष्ठ निवडा", + // "submission.sections.describe.relationship-lookup.selected": "Selected {{ size }} items", "submission.sections.describe.relationship-lookup.selected": "निवडलेले {{ size }} आयटम", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "स्थानिक लेखक ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "स्थानिक जर्नल ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Local Projects ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "स्थानिक प्रकल्प ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Local Publications ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "स्थानिक प्रकाशने ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "स्थानिक लेखक ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Local Organizational Units ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "स्थानिक संगठनात्मक युनिट ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Local Data Packages ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "स्थानिक डेटा पॅकेजेस ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Local Data Files ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "स्थानिक डेटा फाइल्स ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "स्थानिक जर्नल ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "स्थानिक जर्नल अंक ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "स्थानिक जर्नल अंक ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "स्थानिक जर्नल खंड ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "स्थानिक जर्नल खंड ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "स्थानिक जर्नल खंड ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Search by Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "लेखकांद्वारे OpenAIRE शोधा ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Search by Title ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "शीर्षकाद्वारे OpenAIRE शोधा ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Search by Funder ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "फंडरद्वारे OpenAIRE शोधा ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN द्वारे Sherpa Journals ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "फंडिंग एजन्सी शोधा", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Search for Funding", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "फंडिंग शोधा", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Search for Organizational Units", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "संगठनात्मक युनिट शोधा", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "प्रकल्पाचा फंडर", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "Publication of the Author", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "लेखकाचे प्रकाशन", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "OrgUnit of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "प्रकल्पाचे संगठनात्मक युनिट", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "प्रकल्पाचा फंडर", + // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + + // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "शोधा...", + // "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Current Selection ({{ count }})", "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "सध्याची निवड ({{ count }})", + // "submission.sections.describe.relationship-lookup.title.Journal": "Journal", "submission.sections.describe.relationship-lookup.title.Journal": "जर्नल", + // "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Journal Issues", "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "जर्नल अंक", + // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "जर्नल अंक", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "जर्नल खंड", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "जर्नल खंड", + // "submission.sections.describe.relationship-lookup.title.JournalVolume": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.JournalVolume": "जर्नल खंड", + // "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "Journals", "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "जर्नल्स", + // "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Authors", "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "लेखक", + // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Funding Agency", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "निधी संस्था", + // "submission.sections.describe.relationship-lookup.title.Project": "Projects", "submission.sections.describe.relationship-lookup.title.Project": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.title.Publication": "Publications", "submission.sections.describe.relationship-lookup.title.Publication": "प्रकाशने", + // "submission.sections.describe.relationship-lookup.title.Person": "Authors", "submission.sections.describe.relationship-lookup.title.Person": "लेखक", + // "submission.sections.describe.relationship-lookup.title.OrgUnit": "Organizational Units", "submission.sections.describe.relationship-lookup.title.OrgUnit": "संघटनात्मक युनिट्स", + // "submission.sections.describe.relationship-lookup.title.DataPackage": "Data Packages", "submission.sections.describe.relationship-lookup.title.DataPackage": "डेटा पॅकेजेस", + // "submission.sections.describe.relationship-lookup.title.DataFile": "Data Files", "submission.sections.describe.relationship-lookup.title.DataFile": "डेटा फाइल्स", + // "submission.sections.describe.relationship-lookup.title.Funding Agency": "Funding Agency", "submission.sections.describe.relationship-lookup.title.Funding Agency": "निधी संस्था", + // "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Funding", "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "निधी", + // "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Parent Organizational Unit", "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "पालक संघटनात्मक युनिट", + // "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "Publication", "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "प्रकाशन", + // "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "OrgUnit", "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "संघटनात्मक युनिट", + // "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Toggle dropdown", "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ड्रॉपडाउन टॉगल करा", + // "submission.sections.describe.relationship-lookup.selection-tab.settings": "Settings", "submission.sections.describe.relationship-lookup.selection-tab.settings": "सेटिंग्ज", + // "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Your selection is currently empty.", "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "आपली निवड सध्या रिकामी आहे.", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "निवडलेले लेखक", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "निवडलेले जर्नल्स", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "निवडलेला जर्नल खंड", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "निवडलेला जर्नल खंड", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Selected Projects", "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "निवडलेले प्रकल्प", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Selected Publications", "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "निवडलेली प्रकाशने", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "निवडलेले लेखक", + // "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Selected Organizational Units", "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "निवडलेले संघटनात्मक युनिट्स", + // "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Selected Data Packages", "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "निवडलेले डेटा पॅकेजेस", + // "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Selected Data Files", "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "निवडलेल्या डेटा फाइल्स", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "निवडलेले जर्नल्स", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "निवडलेला अंक", + // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "निवडलेला जर्नल खंड", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Selected Funding Agency", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "निवडलेली निधी संस्था", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Selected Funding", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "निवडलेला निधी", + // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "निवडलेला अंक", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Selected Organizational Unit", "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "निवडलेले संघटनात्मक युनिट", + // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.", "submission.sections.describe.relationship-lookup.name-variant.notification.content": "आपण \"{{ value }}\" या व्यक्तीसाठी नावाचा प्रकार म्हणून जतन करू इच्छिता जेणेकरून आपण आणि इतर भविष्यातील सबमिशनसाठी ते पुन्हा वापरू शकतील? आपण नाही केले तरी आपण हे सबमिशनसाठी वापरू शकता.", + // "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant", "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "नवीन नावाचा प्रकार जतन करा", + // "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Use only for this submission", "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "फक्त या सबमिशनसाठी वापरा", + // "submission.sections.ccLicense.type": "License Type", "submission.sections.ccLicense.type": "परवाना प्रकार", + // "submission.sections.ccLicense.select": "Select a license type…", "submission.sections.ccLicense.select": "परवाना प्रकार निवडा…", + // "submission.sections.ccLicense.change": "Change your license type…", "submission.sections.ccLicense.change": "आपला परवाना प्रकार बदला…", + // "submission.sections.ccLicense.none": "No licenses available", "submission.sections.ccLicense.none": "कोणतेही परवाने उपलब्ध नाहीत", + // "submission.sections.ccLicense.option.select": "Select an option…", "submission.sections.ccLicense.option.select": "एक पर्याय निवडा…", - "submission.sections.ccLicense.link": "आपण खालील परवाना निवडला आहे:", + // "submission.sections.ccLicense.link": "You’ve selected the following license:", + // TODO New key - Add a translation + "submission.sections.ccLicense.link": "You’ve selected the following license:", + // "submission.sections.ccLicense.confirmation": "I grant the license above", "submission.sections.ccLicense.confirmation": "मी वरील परवाना मंजूर करतो", + // "submission.sections.general.add-more": "Add more", "submission.sections.general.add-more": "अधिक जोडा", + // "submission.sections.general.cannot_deposit": "Deposit cannot be completed due to errors in the form.
Please fill out all required fields to complete the deposit.", "submission.sections.general.cannot_deposit": "फॉर्ममध्ये त्रुटी असल्यामुळे ठेव पूर्ण केली जाऊ शकत नाही.
सर्व आवश्यक फील्ड भरा जेणेकरून ठेव पूर्ण होईल.", + // "submission.sections.general.collection": "Collection", "submission.sections.general.collection": "संग्रह", + // "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.", "submission.sections.general.deposit_error_notice": "आयटम सबमिट करताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", + // "submission.sections.general.deposit_success_notice": "Submission deposited successfully.", "submission.sections.general.deposit_success_notice": "सबमिशन यशस्वीरित्या ठेवले गेले.", + // "submission.sections.general.discard_error_notice": "There was an issue when discarding the item, please try again later.", "submission.sections.general.discard_error_notice": "आयटम काढून टाकताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", + // "submission.sections.general.discard_success_notice": "Submission discarded successfully.", "submission.sections.general.discard_success_notice": "सबमिशन यशस्वीरित्या काढून टाकले गेले.", + // "submission.sections.general.metadata-extracted": "New metadata have been extracted and added to the {{sectionId}} section.", "submission.sections.general.metadata-extracted": "नवीन मेटाडेटा काढले गेले आहेत आणि {{sectionId}} विभागात जोडले गेले आहेत.", + // "submission.sections.general.metadata-extracted-new-section": "New {{sectionId}} section has been added to submission.", "submission.sections.general.metadata-extracted-new-section": "नवीन {{sectionId}} विभाग सबमिशनमध्ये जोडला गेला आहे.", + // "submission.sections.general.no-collection": "No collection found", "submission.sections.general.no-collection": "कोणताही संग्रह सापडला नाही", + // "submission.sections.general.no-entity": "No entity types found", "submission.sections.general.no-entity": "कोणतेही घटक प्रकार सापडले नाहीत", + // "submission.sections.general.no-sections": "No options available", "submission.sections.general.no-sections": "कोणतेही पर्याय उपलब्ध नाहीत", + // "submission.sections.general.save_error_notice": "There was an issue when saving the item, please try again later.", "submission.sections.general.save_error_notice": "आयटम जतन करताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", + // "submission.sections.general.save_success_notice": "Submission saved successfully.", "submission.sections.general.save_success_notice": "सबमिशन यशस्वीरित्या जतन केले.", + // "submission.sections.general.search-collection": "Search for a collection", "submission.sections.general.search-collection": "संग्रह शोधा", + // "submission.sections.general.sections_not_valid": "There are incomplete sections.", "submission.sections.general.sections_not_valid": "अपूर्ण विभाग आहेत.", - "submission.sections.identifiers.info": "आपल्या आयटमसाठी खालील ओळखपत्रे तयार केली जातील:", + // "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + // TODO New key - Add a translation + "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + // "submission.sections.identifiers.no_handle": "No handles have been minted for this item.", "submission.sections.identifiers.no_handle": "या आयटमसाठी कोणतेही हँडल तयार केले गेले नाहीत.", + // "submission.sections.identifiers.no_doi": "No DOIs have been minted for this item.", "submission.sections.identifiers.no_doi": "या आयटमसाठी कोणतेही DOI तयार केले गेले नाहीत.", - "submission.sections.identifiers.handle_label": "हँडल: ", + // "submission.sections.identifiers.handle_label": "Handle: ", + // TODO New key - Add a translation + "submission.sections.identifiers.handle_label": "Handle: ", + // "submission.sections.identifiers.doi_label": "DOI: ", "submission.sections.identifiers.doi_label": "DOI: ", - "submission.sections.identifiers.otherIdentifiers_label": "इतर ओळखपत्रे: ", + // "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + // TODO New key - Add a translation + "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + // "submission.sections.submit.progressbar.accessCondition": "Item access conditions", "submission.sections.submit.progressbar.accessCondition": "आयटम प्रवेश अटी", + // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "क्रिएटिव्ह कॉमन्स परवाना", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "रीसायकल", + // "submission.sections.submit.progressbar.describe.stepcustom": "Describe", "submission.sections.submit.progressbar.describe.stepcustom": "वर्णन करा", + // "submission.sections.submit.progressbar.describe.stepone": "Describe", "submission.sections.submit.progressbar.describe.stepone": "वर्णन करा", + // "submission.sections.submit.progressbar.describe.steptwo": "Describe", "submission.sections.submit.progressbar.describe.steptwo": "वर्णन करा", + // "submission.sections.submit.progressbar.duplicates": "Potential duplicates", "submission.sections.submit.progressbar.duplicates": "संभाव्य डुप्लिकेट", + // "submission.sections.submit.progressbar.identifiers": "Identifiers", "submission.sections.submit.progressbar.identifiers": "ओळखपत्रे", + // "submission.sections.submit.progressbar.license": "Deposit license", "submission.sections.submit.progressbar.license": "ठेव परवाना", + // "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies", "submission.sections.submit.progressbar.sherpapolicy": "शेरपा धोरणे", + // "submission.sections.submit.progressbar.upload": "Upload files", "submission.sections.submit.progressbar.upload": "फाइल्स अपलोड करा", + // "submission.sections.submit.progressbar.sherpaPolicies": "Publisher open access policy information", "submission.sections.submit.progressbar.sherpaPolicies": "प्रकाशक खुले प्रवेश धोरण माहिती", + // "submission.sections.sherpa-policy.title-empty": "No publisher policy information available. If your work has an associated ISSN, please enter it above to see any related publisher open access policies.", "submission.sections.sherpa-policy.title-empty": "कोणतीही प्रकाशक धोरण माहिती उपलब्ध नाही. आपले कार्य संबंधित ISSN आहे, कृपया वरील प्रविष्ट करा जेणेकरून संबंधित प्रकाशक खुले प्रवेश धोरणे पाहता येतील.", + // "submission.sections.status.errors.title": "Errors", "submission.sections.status.errors.title": "त्रुटी", + // "submission.sections.status.valid.title": "Valid", "submission.sections.status.valid.title": "वैध", + // "submission.sections.status.warnings.title": "Warnings", "submission.sections.status.warnings.title": "चेतावणी", + // "submission.sections.status.errors.aria": "has errors", "submission.sections.status.errors.aria": "त्रुटी आहेत", + // "submission.sections.status.valid.aria": "is valid", "submission.sections.status.valid.aria": "वैध आहे", + // "submission.sections.status.warnings.aria": "has warnings", "submission.sections.status.warnings.aria": "चेतावणी आहेत", + // "submission.sections.status.info.title": "Additional Information", "submission.sections.status.info.title": "अतिरिक्त माहिती", + // "submission.sections.status.info.aria": "Additional Information", "submission.sections.status.info.aria": "अतिरिक्त माहिती", + // "submission.sections.toggle.open": "Open section", "submission.sections.toggle.open": "विभाग उघडा", + // "submission.sections.toggle.close": "Close section", "submission.sections.toggle.close": "विभाग बंद करा", + // "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section", "submission.sections.toggle.aria.open": "{{sectionHeader}} विभाग विस्तृत करा", + // "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section", "submission.sections.toggle.aria.close": "{{sectionHeader}} विभाग संकुचित करा", + // "submission.sections.upload.primary.make": "Make {{fileName}} the primary bitstream", "submission.sections.upload.primary.make": "{{fileName}} प्राथमिक बिटस्ट्रीम बनवा", + // "submission.sections.upload.primary.remove": "Remove {{fileName}} as the primary bitstream", "submission.sections.upload.primary.remove": "{{fileName}} प्राथमिक बिटस्ट्रीम म्हणून काढा", + // "submission.sections.upload.delete.confirm.cancel": "Cancel", "submission.sections.upload.delete.confirm.cancel": "रद्द करा", + // "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?", "submission.sections.upload.delete.confirm.info": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. आपण खात्री आहात?", + // "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure", "submission.sections.upload.delete.confirm.submit": "होय, मला खात्री आहे", + // "submission.sections.upload.delete.confirm.title": "Delete bitstream", "submission.sections.upload.delete.confirm.title": "बिटस्ट्रीम हटवा", + // "submission.sections.upload.delete.submit": "Delete", "submission.sections.upload.delete.submit": "हटवा", + // "submission.sections.upload.download.title": "Download bitstream", "submission.sections.upload.download.title": "बिटस्ट्रीम डाउनलोड करा", + // "submission.sections.upload.drop-message": "Drop files to attach them to the item", "submission.sections.upload.drop-message": "आयटमला जोडण्यासाठी फाइल्स ड्रॉप करा", + // "submission.sections.upload.edit.title": "Edit bitstream", "submission.sections.upload.edit.title": "बिटस्ट्रीम संपादित करा", + // "submission.sections.upload.form.access-condition-label": "Access condition type", "submission.sections.upload.form.access-condition-label": "प्रवेश अटी प्रकार", + // "submission.sections.upload.form.access-condition-hint": "Select an access condition to apply on the bitstream once the item is deposited", "submission.sections.upload.form.access-condition-hint": "आयटम ठेवल्यानंतर बिटस्ट्रीमवर लागू करण्यासाठी प्रवेश अटी निवडा", + // "submission.sections.upload.form.date-required": "Date is required.", "submission.sections.upload.form.date-required": "तारीख आवश्यक आहे.", + // "submission.sections.upload.form.date-required-from": "Grant access from date is required.", "submission.sections.upload.form.date-required-from": "प्रवेश देण्याची तारीख आवश्यक आहे.", + // "submission.sections.upload.form.date-required-until": "Grant access until date is required.", "submission.sections.upload.form.date-required-until": "प्रवेश देण्याची तारीख आवश्यक आहे.", + // "submission.sections.upload.form.from-label": "Grant access from", "submission.sections.upload.form.from-label": "प्रवेश देण्याची तारीख", + // "submission.sections.upload.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.upload.form.from-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", + // "submission.sections.upload.form.from-placeholder": "From", "submission.sections.upload.form.from-placeholder": "पासून", + // "submission.sections.upload.form.group-label": "Group", "submission.sections.upload.form.group-label": "गट", + // "submission.sections.upload.form.group-required": "Group is required.", "submission.sections.upload.form.group-required": "गट आवश्यक आहे.", + // "submission.sections.upload.form.until-label": "Grant access until", "submission.sections.upload.form.until-label": "पर्यंत प्रवेश द्या", + // "submission.sections.upload.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.upload.form.until-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", + // "submission.sections.upload.form.until-placeholder": "Until", "submission.sections.upload.form.until-placeholder": "पर्यंत", - "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} संग्रहातील अपलोड केलेल्या फाइल्स खालील गटांनुसार प्रवेशयोग्य असतील:", + // "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", + // TODO New key - Add a translation + "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", - "submission.sections.upload.header.policy.default.withlist": "कृपया लक्षात घ्या की {{collectionName}} संग्रहातील अपलोड केलेल्या फाइल्स, एकल फाइलसाठी स्पष्टपणे ठरवलेल्या गोष्टींशिवाय, खालील गटांसह प्रवेशयोग्य असतील:", + // "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + // TODO New key - Add a translation + "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + // "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or upload additional files by dragging & dropping them anywhere on the page.", "submission.sections.upload.info": "येथे आपल्याला आयटममधील सर्व फाइल्स सापडतील. आपण फाइल मेटाडेटा आणि प्रवेश अटी अद्यतनित करू शकता किंवा पृष्ठावर कुठेही ड्रॅग आणि ड्रॉप करून अतिरिक्त फाइल्स अपलोड करू शकता.", + // "submission.sections.upload.no-entry": "No", "submission.sections.upload.no-entry": "नाही", + // "submission.sections.upload.no-file-uploaded": "No file uploaded yet.", "submission.sections.upload.no-file-uploaded": "अद्याप कोणतीही फाइल अपलोड केलेली नाही.", + // "submission.sections.upload.save-metadata": "Save metadata", "submission.sections.upload.save-metadata": "मेटाडेटा जतन करा", + // "submission.sections.upload.undo": "Cancel", "submission.sections.upload.undo": "रद्द करा", + // "submission.sections.upload.upload-failed": "Upload failed", "submission.sections.upload.upload-failed": "अपलोड अयशस्वी", + // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "अपलोड यशस्वी", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "जेव्हा तपासले जाते, तेव्हा हा आयटम शोध/ब्राउझमध्ये शोधण्यायोग्य असेल. जेव्हा तपासले जात नाही, तेव्हा आयटम फक्त थेट लिंकद्वारे उपलब्ध असेल आणि कधीही शोध/ब्राउझमध्ये दिसणार नाही.", + // "submission.sections.accesses.form.discoverable-label": "Discoverable", "submission.sections.accesses.form.discoverable-label": "शोधण्यायोग्य", + // "submission.sections.accesses.form.access-condition-label": "Access condition type", "submission.sections.accesses.form.access-condition-label": "प्रवेश अटी प्रकार", + // "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited", "submission.sections.accesses.form.access-condition-hint": "आयटम ठेवल्यानंतर लागू करण्यासाठी प्रवेश अटी निवडा", + // "submission.sections.accesses.form.date-required": "Date is required.", "submission.sections.accesses.form.date-required": "तारीख आवश्यक आहे.", + // "submission.sections.accesses.form.date-required-from": "Grant access from date is required.", "submission.sections.accesses.form.date-required-from": "प्रवेश देण्याची तारीख आवश्यक आहे.", + // "submission.sections.accesses.form.date-required-until": "Grant access until date is required.", "submission.sections.accesses.form.date-required-until": "प्रवेश देण्याची तारीख आवश्यक आहे.", + // "submission.sections.accesses.form.from-label": "Grant access from", "submission.sections.accesses.form.from-label": "प्रवेश देण्याची तारीख", + // "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.accesses.form.from-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", + // "submission.sections.accesses.form.from-placeholder": "From", "submission.sections.accesses.form.from-placeholder": "पासून", + // "submission.sections.accesses.form.group-label": "Group", "submission.sections.accesses.form.group-label": "गट", + // "submission.sections.accesses.form.group-required": "Group is required.", "submission.sections.accesses.form.group-required": "गट आवश्यक आहे.", + // "submission.sections.accesses.form.until-label": "Grant access until", "submission.sections.accesses.form.until-label": "पर्यंत प्रवेश द्या", + // "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.accesses.form.until-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", + // "submission.sections.accesses.form.until-placeholder": "Until", "submission.sections.accesses.form.until-placeholder": "पर्यंत", + // "submission.sections.duplicates.none": "No duplicates were detected.", "submission.sections.duplicates.none": "कोणतेही डुप्लिकेट आढळले नाहीत.", + // "submission.sections.duplicates.detected": "Potential duplicates were detected. Please review the list below.", "submission.sections.duplicates.detected": "संभाव्य डुप्लिकेट आढळले. कृपया खालील यादी पुनरावलोकन करा.", + // "submission.sections.duplicates.in-workspace": "This item is in workspace", "submission.sections.duplicates.in-workspace": "हा आयटम कार्यक्षेत्रात आहे", + // "submission.sections.duplicates.in-workflow": "This item is in workflow", "submission.sections.duplicates.in-workflow": "हा आयटम कार्यप्रवाहात आहे", + // "submission.sections.license.granted-label": "I confirm the license above", "submission.sections.license.granted-label": "मी वरील परवाना पुष्टी करतो", + // "submission.sections.license.required": "You must accept the license", "submission.sections.license.required": "आपण परवाना स्वीकारणे आवश्यक आहे", + // "submission.sections.license.notgranted": "You must accept the license", "submission.sections.license.notgranted": "आपण परवाना स्वीकारणे आवश्यक आहे", + // "submission.sections.sherpa.publication.information": "Publication information", "submission.sections.sherpa.publication.information": "प्रकाशन माहिती", + // "submission.sections.sherpa.publication.information.title": "Title", "submission.sections.sherpa.publication.information.title": "शीर्षक", + // "submission.sections.sherpa.publication.information.issns": "ISSNs", "submission.sections.sherpa.publication.information.issns": "ISSNs", + // "submission.sections.sherpa.publication.information.url": "URL", "submission.sections.sherpa.publication.information.url": "URL", + // "submission.sections.sherpa.publication.information.publishers": "Publisher", "submission.sections.sherpa.publication.information.publishers": "प्रकाशक", + // "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", "submission.sections.sherpa.publication.information.romeoPub": "रोमियो पब", + // "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", "submission.sections.sherpa.publication.information.zetoPub": "झेटो पब", + // "submission.sections.sherpa.publisher.policy": "Publisher Policy", "submission.sections.sherpa.publisher.policy": "प्रकाशक धोरण", + // "submission.sections.sherpa.publisher.policy.description": "The below information was found via Sherpa Romeo. Based on the policies of your publisher, it provides advice regarding whether an embargo may be necessary and/or which files you are allowed to upload. If you have questions, please contact your site administrator via the feedback form in the footer.", "submission.sections.sherpa.publisher.policy.description": "खालील माहिती शेरपा रोमियोद्वारे आढळली. आपल्या प्रकाशकाच्या धोरणांवर आधारित, हे सल्ला देते की एम्बार्गो आवश्यक आहे का आणि/किंवा कोणत्या फाइल्स अपलोड करण्यास परवानगी आहे. आपल्याला प्रश्न असल्यास, कृपया फूटरमधील अभिप्राय फॉर्मद्वारे आपल्या साइट प्रशासकाशी संपर्क साधा.", + // "submission.sections.sherpa.publisher.policy.openaccess": "Open Access pathways permitted by this journal's policy are listed below by article version. Click on a pathway for a more detailed view", "submission.sections.sherpa.publisher.policy.openaccess": "या जर्नलच्या धोरणाद्वारे परवानगी दिलेल्या खुले प्रवेश मार्ग खालीलप्रमाणे लेख आवृत्तीने सूचीबद्ध आहेत. अधिक तपशीलवार दृश्यासाठी मार्गावर क्लिक करा", - "submission.sections.sherpa.publisher.policy.more.information": "अधिक माहितीसाठी, कृपया खालील दुवे पहा:", + // "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + // "submission.sections.sherpa.publisher.policy.version": "Version", "submission.sections.sherpa.publisher.policy.version": "आवृत्ती", + // "submission.sections.sherpa.publisher.policy.embargo": "Embargo", "submission.sections.sherpa.publisher.policy.embargo": "एम्बार्गो", + // "submission.sections.sherpa.publisher.policy.noembargo": "No Embargo", "submission.sections.sherpa.publisher.policy.noembargo": "कोणताही एम्बार्गो नाही", + // "submission.sections.sherpa.publisher.policy.nolocation": "None", "submission.sections.sherpa.publisher.policy.nolocation": "कोणतेही स्थान नाही", + // "submission.sections.sherpa.publisher.policy.license": "License", "submission.sections.sherpa.publisher.policy.license": "परवाना", + // "submission.sections.sherpa.publisher.policy.prerequisites": "Prerequisites", "submission.sections.sherpa.publisher.policy.prerequisites": "पूर्वअटी", + // "submission.sections.sherpa.publisher.policy.location": "Location", "submission.sections.sherpa.publisher.policy.location": "स्थान", + // "submission.sections.sherpa.publisher.policy.conditions": "Conditions", "submission.sections.sherpa.publisher.policy.conditions": "अटी", + // "submission.sections.sherpa.publisher.policy.refresh": "Refresh", "submission.sections.sherpa.publisher.policy.refresh": "रिफ्रेश", + // "submission.sections.sherpa.record.information": "Record Information", "submission.sections.sherpa.record.information": "रेकॉर्ड माहिती", + // "submission.sections.sherpa.record.information.id": "ID", "submission.sections.sherpa.record.information.id": "आयडी", + // "submission.sections.sherpa.record.information.date.created": "Date Created", "submission.sections.sherpa.record.information.date.created": "तयार केलेली तारीख", + // "submission.sections.sherpa.record.information.date.modified": "Last Modified", "submission.sections.sherpa.record.information.date.modified": "शेवटचे बदललेले", + // "submission.sections.sherpa.record.information.uri": "URI", "submission.sections.sherpa.record.information.uri": "यूआरआय", + // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations", "submission.sections.sherpa.error.message": "शेरपा माहिती मिळवताना त्रुटी आली", + // "submission.submit.breadcrumbs": "New submission", "submission.submit.breadcrumbs": "नवीन सबमिशन", + // "submission.submit.title": "New submission", "submission.submit.title": "नवीन सबमिशन", + // "submission.workflow.generic.delete": "Delete", "submission.workflow.generic.delete": "हटवा", + // "submission.workflow.generic.delete-help": "Select this option to discard this item. You will then be asked to confirm it.", "submission.workflow.generic.delete-help": "या आयटमला काढून टाकण्यासाठी हा पर्याय निवडा. तुम्हाला नंतर ते पुष्टी करण्यास सांगितले जाईल.", + // "submission.workflow.generic.edit": "Edit", "submission.workflow.generic.edit": "संपादित करा", + // "submission.workflow.generic.edit-help": "Select this option to change the item's metadata.", "submission.workflow.generic.edit-help": "आयटमची मेटाडेटा बदलण्यासाठी हा पर्याय निवडा.", + // "submission.workflow.generic.view": "View", "submission.workflow.generic.view": "पहा", + // "submission.workflow.generic.view-help": "Select this option to view the item's metadata.", "submission.workflow.generic.view-help": "आयटमची मेटाडेटा पाहण्यासाठी हा पर्याय निवडा.", + // "submission.workflow.generic.submit_select_reviewer": "Select Reviewer", "submission.workflow.generic.submit_select_reviewer": "पुनरावलोकक निवडा", + // "submission.workflow.generic.submit_select_reviewer-help": "", "submission.workflow.generic.submit_select_reviewer-help": "", + // "submission.workflow.generic.submit_score": "Rate", "submission.workflow.generic.submit_score": "रेट करा", + // "submission.workflow.generic.submit_score-help": "", "submission.workflow.generic.submit_score-help": "", + // "submission.workflow.tasks.claimed.approve": "Approve", "submission.workflow.tasks.claimed.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": "जर तुम्ही आयटमचे पुनरावलोकन केले असेल आणि ते संग्रहात समाविष्ट करण्यासाठी योग्य असल्याचे आढळले असेल, तर \"मंजूर करा\" निवडा.", + // "submission.workflow.tasks.claimed.edit": "Edit", "submission.workflow.tasks.claimed.edit": "संपादित करा", + // "submission.workflow.tasks.claimed.edit_help": "Select this option to change the item's metadata.", "submission.workflow.tasks.claimed.edit_help": "आयटमची मेटाडेटा बदलण्यासाठी हा पर्याय निवडा.", + // "submission.workflow.tasks.claimed.decline": "Decline", "submission.workflow.tasks.claimed.decline": "नकार द्या", + // "submission.workflow.tasks.claimed.decline_help": "", "submission.workflow.tasks.claimed.decline_help": "", + // "submission.workflow.tasks.claimed.reject.reason.info": "Please enter your reason for rejecting the submission into the box below, indicating whether the submitter may fix a problem and resubmit.", "submission.workflow.tasks.claimed.reject.reason.info": "कृपया सबमिशन नाकारण्याचे कारण खालील बॉक्समध्ये प्रविष्ट करा, सबमिटरला समस्या दुरुस्त करून पुन्हा सबमिट करण्याची परवानगी आहे की नाही हे दर्शवा.", + // "submission.workflow.tasks.claimed.reject.reason.placeholder": "Describe the reason of reject", "submission.workflow.tasks.claimed.reject.reason.placeholder": "नकाराचे कारण वर्णन करा", + // "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item", "submission.workflow.tasks.claimed.reject.reason.submit": "आयटम नकारा", + // "submission.workflow.tasks.claimed.reject.reason.title": "Reason", "submission.workflow.tasks.claimed.reject.reason.title": "कारण", + // "submission.workflow.tasks.claimed.reject.submit": "Reject", "submission.workflow.tasks.claimed.reject.submit": "नकारा", + // "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is not 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": "जर तुम्ही आयटमचे पुनरावलोकन केले असेल आणि ते संग्रहात समाविष्ट करण्यासाठी योग्य नसल्याचे आढळले असेल, तर \"नकारा\" निवडा. तुम्हाला नंतर आयटम का अयोग्य आहे हे दर्शविणारा संदेश प्रविष्ट करण्यास सांगितले जाईल आणि सबमिटरने काहीतरी बदलावे आणि पुन्हा सबमिट करावे का हे दर्शवावे.", + // "submission.workflow.tasks.claimed.return": "Return to pool", "submission.workflow.tasks.claimed.return": "पूलमध्ये परत करा", + // "submission.workflow.tasks.claimed.return_help": "Return the task to the pool so that another user may perform the task.", "submission.workflow.tasks.claimed.return_help": "कार्य पूलमध्ये परत करा जेणेकरून दुसरा वापरकर्ता कार्य करू शकेल.", + // "submission.workflow.tasks.generic.error": "Error occurred during operation...", "submission.workflow.tasks.generic.error": "ऑपरेशन दरम्यान त्रुटी आली...", + // "submission.workflow.tasks.generic.processing": "Processing...", "submission.workflow.tasks.generic.processing": "प्रक्रिया...", + // "submission.workflow.tasks.generic.submitter": "Submitter", "submission.workflow.tasks.generic.submitter": "सबमिटर", + // "submission.workflow.tasks.generic.success": "Operation successful", "submission.workflow.tasks.generic.success": "ऑपरेशन यशस्वी", + // "submission.workflow.tasks.pool.claim": "Claim", "submission.workflow.tasks.pool.claim": "दावा करा", + // "submission.workflow.tasks.pool.claim_help": "Assign this task to yourself.", "submission.workflow.tasks.pool.claim_help": "हे कार्य स्वतःला नियुक्त करा.", + // "submission.workflow.tasks.pool.hide-detail": "Hide detail", "submission.workflow.tasks.pool.hide-detail": "तपशील लपवा", + // "submission.workflow.tasks.pool.show-detail": "Show detail", "submission.workflow.tasks.pool.show-detail": "तपशील दाखवा", + // "submission.workflow.tasks.duplicates": "potential duplicates were detected for this item. Claim and edit this item to see details.", "submission.workflow.tasks.duplicates": "या आयटमसाठी संभाव्य डुप्लिकेट आढळले. तपशील पाहण्यासाठी हा आयटम दावा करा आणि संपादित करा.", + // "submission.workspace.generic.view": "View", "submission.workspace.generic.view": "पहा", + // "submission.workspace.generic.view-help": "Select this option to view the item's metadata.", "submission.workspace.generic.view-help": "आयटमची मेटाडेटा पाहण्यासाठी हा पर्याय निवडा.", + // "submitter.empty": "N/A", "submitter.empty": "N/A", + // "subscriptions.title": "Subscriptions", "subscriptions.title": "सदस्यता", + // "subscriptions.item": "Subscriptions for items", "subscriptions.item": "आयटमसाठी सदस्यता", + // "subscriptions.collection": "Subscriptions for collections", "subscriptions.collection": "संग्रहासाठी सदस्यता", + // "subscriptions.community": "Subscriptions for communities", "subscriptions.community": "समुदायासाठी सदस्यता", + // "subscriptions.subscription_type": "Subscription type", "subscriptions.subscription_type": "सदस्यता प्रकार", + // "subscriptions.frequency": "Subscription frequency", "subscriptions.frequency": "सदस्यता वारंवारता", + // "subscriptions.frequency.D": "Daily", "subscriptions.frequency.D": "दैनिक", + // "subscriptions.frequency.M": "Monthly", "subscriptions.frequency.M": "मासिक", + // "subscriptions.frequency.W": "Weekly", "subscriptions.frequency.W": "साप्ताहिक", + // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "सदस्यता घ्या", + // "subscriptions.unsubscribe": "Unsubscribe", "subscriptions.unsubscribe": "सदस्यता रद्द करा", + // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "सदस्यता", + // "subscriptions.modal.type-frequency": "Type and frequency", "subscriptions.modal.type-frequency": "प्रकार आणि वारंवारता", + // "subscriptions.modal.close": "Close", "subscriptions.modal.close": "बंद करा", + // "subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile", "subscriptions.modal.delete-info": "ही सदस्यता काढून टाकण्यासाठी, कृपया तुमच्या वापरकर्ता प्रोफाइल अंतर्गत \"सदस्यता\" पृष्ठावर जा", + // "subscriptions.modal.new-subscription-form.type.content": "Content", "subscriptions.modal.new-subscription-form.type.content": "सामग्री", + // "subscriptions.modal.new-subscription-form.frequency.D": "Daily", "subscriptions.modal.new-subscription-form.frequency.D": "दैनिक", + // "subscriptions.modal.new-subscription-form.frequency.W": "Weekly", "subscriptions.modal.new-subscription-form.frequency.W": "साप्ताहिक", + // "subscriptions.modal.new-subscription-form.frequency.M": "Monthly", "subscriptions.modal.new-subscription-form.frequency.M": "मासिक", + // "subscriptions.modal.new-subscription-form.submit": "Submit", "subscriptions.modal.new-subscription-form.submit": "सबमिट करा", + // "subscriptions.modal.new-subscription-form.processing": "Processing...", "subscriptions.modal.new-subscription-form.processing": "प्रक्रिया...", + // "subscriptions.modal.create.success": "Subscribed to {{ type }} successfully.", "subscriptions.modal.create.success": "{{ प्रकार }} ला यशस्वीरित्या सदस्यता घेतली.", + // "subscriptions.modal.delete.success": "Subscription deleted successfully", "subscriptions.modal.delete.success": "सदस्यता यशस्वीरित्या हटवली", + // "subscriptions.modal.update.success": "Subscription to {{ type }} updated successfully", "subscriptions.modal.update.success": "{{ प्रकार }} ला सदस्यता यशस्वीरित्या अद्यतनित केली", + // "subscriptions.modal.create.error": "An error occurs during the subscription creation", "subscriptions.modal.create.error": "सदस्यता निर्मिती दरम्यान त्रुटी आली", + // "subscriptions.modal.delete.error": "An error occurs during the subscription delete", "subscriptions.modal.delete.error": "सदस्यता हटवताना त्रुटी आली", + // "subscriptions.modal.update.error": "An error occurs during the subscription update", "subscriptions.modal.update.error": "सदस्यता अद्यतनित करताना त्रुटी आली", + // "subscriptions.table.dso": "Subject", "subscriptions.table.dso": "विषय", + // "subscriptions.table.subscription_type": "Subscription Type", "subscriptions.table.subscription_type": "सदस्यता प्रकार", + // "subscriptions.table.subscription_frequency": "Subscription Frequency", "subscriptions.table.subscription_frequency": "सदस्यता वारंवारता", + // "subscriptions.table.action": "Action", "subscriptions.table.action": "क्रिया", + // "subscriptions.table.edit": "Edit", "subscriptions.table.edit": "संपादित करा", + // "subscriptions.table.delete": "Delete", "subscriptions.table.delete": "हटवा", + // "subscriptions.table.not-available": "Not available", "subscriptions.table.not-available": "उपलब्ध नाही", + // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "सदस्यता घेतलेला आयटम हटवला गेला आहे, किंवा तुम्हाला सध्या ते पाहण्याची परवानगी नाही", + // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", "subscriptions.table.empty.message": "तुमच्याकडे सध्या कोणतीही सदस्यता नाही. समुदाय किंवा संग्रहासाठी ईमेल अद्यतनांसाठी सदस्यता घेण्यासाठी, ऑब्जेक्टच्या पृष्ठावरील सदस्यता बटण वापरा.", + // "thumbnail.default.alt": "Thumbnail Image", "thumbnail.default.alt": "थंबनेल प्रतिमा", + // "thumbnail.default.placeholder": "No Thumbnail Available", "thumbnail.default.placeholder": "थंबनेल उपलब्ध नाही", + // "thumbnail.project.alt": "Project Logo", "thumbnail.project.alt": "प्रकल्प लोगो", + // "thumbnail.project.placeholder": "Project Placeholder Image", "thumbnail.project.placeholder": "प्रकल्प प्लेसहोल्डर प्रतिमा", + // "thumbnail.orgunit.alt": "OrgUnit Logo", "thumbnail.orgunit.alt": "संगठन युनिट लोगो", + // "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image", "thumbnail.orgunit.placeholder": "संगठन युनिट प्लेसहोल्डर प्रतिमा", + // "thumbnail.person.alt": "Profile Picture", "thumbnail.person.alt": "प्रोफाइल चित्र", + // "thumbnail.person.placeholder": "No Profile Picture Available", "thumbnail.person.placeholder": "प्रोफाइल चित्र उपलब्ध नाही", + // "title": "DSpace", "title": "डीस्पेस", + // "vocabulary-treeview.header": "Hierarchical tree view", "vocabulary-treeview.header": "अनुक्रमणिका दृश्य", + // "vocabulary-treeview.load-more": "Load more", "vocabulary-treeview.load-more": "अधिक लोड करा", + // "vocabulary-treeview.search.form.reset": "Reset", "vocabulary-treeview.search.form.reset": "रीसेट करा", + // "vocabulary-treeview.search.form.search": "Search", "vocabulary-treeview.search.form.search": "शोधा", + // "vocabulary-treeview.search.form.search-placeholder": "Filter results by typing the first few letters", "vocabulary-treeview.search.form.search-placeholder": "पहिल्या काही अक्षरांनी परिणाम फिल्टर करा", + // "vocabulary-treeview.search.no-result": "There were no items to show", "vocabulary-treeview.search.no-result": "दाखवण्यासाठी कोणतेही आयटम नाहीत", + // "vocabulary-treeview.tree.description.nsi": "The Norwegian Science Index", "vocabulary-treeview.tree.description.nsi": "नॉर्वेजियन सायन्स इंडेक्स", + // "vocabulary-treeview.tree.description.srsc": "Research Subject Categories", "vocabulary-treeview.tree.description.srsc": "संशोधन विषय श्रेणी", + // "vocabulary-treeview.info": "Select a subject to add as search filter", "vocabulary-treeview.info": "शोध फिल्टर म्हणून जोडण्यासाठी एक विषय निवडा", + // "uploader.browse": "browse", "uploader.browse": "ब्राउझ करा", + // "uploader.drag-message": "Drag & Drop your files here", "uploader.drag-message": "तुमच्या फाइल्स येथे ड्रॅग आणि ड्रॉप करा", + // "uploader.delete.btn-title": "Delete", "uploader.delete.btn-title": "हटवा", + // "uploader.or": ", or ", "uploader.or": ", किंवा ", + // "uploader.processing": "Processing uploaded file(s)... (it's now safe to close this page)", "uploader.processing": "अपलोड केलेल्या फाइल्स प्रक्रिया करत आहे... (हे पृष्ठ बंद करणे आता सुरक्षित आहे)", + // "uploader.queue-length": "Queue length", "uploader.queue-length": "क्यू लांबी", + // "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": "आभासी मेटाडेटा वास्तविक मेटाडेटा म्हणून जतन करण्यासाठी तुम्हाला हवे असलेले प्रकार निवडा", + // "virtual-metadata.delete-item.modal-head": "The virtual metadata of this relation", "virtual-metadata.delete-item.modal-head": "या संबंधाचे आभासी मेटाडेटा", + // "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": "आभासी मेटाडेटा वास्तविक मेटाडेटा म्हणून जतन करण्यासाठी तुम्हाला हवे असलेले आयटम निवडा", + // "supervisedWorkspace.search.results.head": "Supervised Items", "supervisedWorkspace.search.results.head": "पर्यवेक्षित आयटम", + // "workspace.search.results.head": "Your submissions", "workspace.search.results.head": "तुमच्या सबमिशन", + // "workflowAdmin.search.results.head": "Administer Workflow", "workflowAdmin.search.results.head": "वर्कफ्लो प्रशासित करा", + // "workflow.search.results.head": "Workflow tasks", "workflow.search.results.head": "वर्कफ्लो कार्ये", + // "supervision.search.results.head": "Workflow and Workspace tasks", "supervision.search.results.head": "वर्कफ्लो आणि वर्कस्पेस कार्ये", + // "workflow-item.edit.breadcrumbs": "Edit workflowitem", "workflow-item.edit.breadcrumbs": "वर्कफ्लो आयटम संपादित करा", + // "workflow-item.edit.title": "Edit workflowitem", "workflow-item.edit.title": "वर्कफ्लो आयटम संपादित करा", + // "workflow-item.delete.notification.success.title": "Deleted", "workflow-item.delete.notification.success.title": "हटवले", + // "workflow-item.delete.notification.success.content": "This workflow item was successfully deleted", "workflow-item.delete.notification.success.content": "हा वर्कफ्लो आयटम यशस्वीरित्या हटवला गेला", + // "workflow-item.delete.notification.error.title": "Something went wrong", "workflow-item.delete.notification.error.title": "काहीतरी चुकले", + // "workflow-item.delete.notification.error.content": "The workflow item could not be deleted", "workflow-item.delete.notification.error.content": "वर्कफ्लो आयटम हटवता आला नाही", + // "workflow-item.delete.title": "Delete workflow item", "workflow-item.delete.title": "वर्कफ्लो आयटम हटवा", + // "workflow-item.delete.header": "Delete workflow item", "workflow-item.delete.header": "वर्कफ्लो आयटम हटवा", + // "workflow-item.delete.button.cancel": "Cancel", "workflow-item.delete.button.cancel": "रद्द करा", + // "workflow-item.delete.button.confirm": "Delete", "workflow-item.delete.button.confirm": "हटवा", + // "workflow-item.send-back.notification.success.title": "Sent back to submitter", "workflow-item.send-back.notification.success.title": "सबमिटरकडे परत पाठवले", + // "workflow-item.send-back.notification.success.content": "This workflow item was successfully sent back to the submitter", "workflow-item.send-back.notification.success.content": "हा वर्कफ्लो आयटम यशस्वीरित्या सबमिटरकडे परत पाठवला गेला", + // "workflow-item.send-back.notification.error.title": "Something went wrong", "workflow-item.send-back.notification.error.title": "काहीतरी चुकले", + // "workflow-item.send-back.notification.error.content": "The workflow item could not be sent back to the submitter", "workflow-item.send-back.notification.error.content": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवता आला नाही", + // "workflow-item.send-back.title": "Send workflow item back to submitter", "workflow-item.send-back.title": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवा", + // "workflow-item.send-back.header": "Send workflow item back to submitter", "workflow-item.send-back.header": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवा", + // "workflow-item.send-back.button.cancel": "Cancel", "workflow-item.send-back.button.cancel": "रद्द करा", + // "workflow-item.send-back.button.confirm": "Send back", "workflow-item.send-back.button.confirm": "परत पाठवा", + // "workflow-item.view.breadcrumbs": "Workflow View", "workflow-item.view.breadcrumbs": "वर्कफ्लो दृश्य", + // "workspace-item.view.breadcrumbs": "Workspace View", "workspace-item.view.breadcrumbs": "वर्कस्पेस दृश्य", + // "workspace-item.view.title": "Workspace View", "workspace-item.view.title": "वर्कस्पेस दृश्य", + // "workspace-item.delete.breadcrumbs": "Workspace Delete", "workspace-item.delete.breadcrumbs": "वर्कस्पेस हटवा", + // "workspace-item.delete.header": "Delete workspace item", "workspace-item.delete.header": "वर्कस्पेस आयटम हटवा", + // "workspace-item.delete.button.confirm": "Delete", "workspace-item.delete.button.confirm": "हटवा", + // "workspace-item.delete.button.cancel": "Cancel", "workspace-item.delete.button.cancel": "रद्द करा", + // "workspace-item.delete.notification.success.title": "Deleted", "workspace-item.delete.notification.success.title": "हटवले", + // "workspace-item.delete.title": "This workspace item was successfully deleted", "workspace-item.delete.title": "हा वर्कस्पेस आयटम यशस्वीरित्या हटवला गेला", + // "workspace-item.delete.notification.error.title": "Something went wrong", "workspace-item.delete.notification.error.title": "काहीतरी चुकले", + // "workspace-item.delete.notification.error.content": "The workspace item could not be deleted", "workspace-item.delete.notification.error.content": "वर्कस्पेस आयटम हटवता आला नाही", + // "workflow-item.advanced.title": "Advanced workflow", "workflow-item.advanced.title": "प्रगत वर्कफ्लो", + // "workflow-item.selectrevieweraction.notification.success.title": "Selected reviewer", "workflow-item.selectrevieweraction.notification.success.title": "पुनरावलोकक निवडले", + // "workflow-item.selectrevieweraction.notification.success.content": "The reviewer for this workflow item has been successfully selected", "workflow-item.selectrevieweraction.notification.success.content": "या वर्कफ्लो आयटमसाठी पुनरावलोकक यशस्वीरित्या निवडले गेले", + // "workflow-item.selectrevieweraction.notification.error.title": "Something went wrong", "workflow-item.selectrevieweraction.notification.error.title": "काहीतरी चुकले", + // "workflow-item.selectrevieweraction.notification.error.content": "Couldn't select the reviewer for this workflow item", "workflow-item.selectrevieweraction.notification.error.content": "या वर्कफ्लो आयटमसाठी पुनरावलोकक निवडता आला नाही", + // "workflow-item.selectrevieweraction.title": "Select Reviewer", "workflow-item.selectrevieweraction.title": "पुनरावलोकक निवडा", + // "workflow-item.selectrevieweraction.header": "Select Reviewer", "workflow-item.selectrevieweraction.header": "पुनरावलोकक निवडा", + // "workflow-item.selectrevieweraction.button.cancel": "Cancel", "workflow-item.selectrevieweraction.button.cancel": "रद्द करा", + // "workflow-item.selectrevieweraction.button.confirm": "Confirm", "workflow-item.selectrevieweraction.button.confirm": "पुष्टी करा", + // "workflow-item.scorereviewaction.notification.success.title": "Rating review", "workflow-item.scorereviewaction.notification.success.title": "रेटिंग पुनरावलोकन", + // "workflow-item.scorereviewaction.notification.success.content": "The rating for this item workflow item has been successfully submitted", "workflow-item.scorereviewaction.notification.success.content": "या वर्कफ्लो आयटमसाठी रेटिंग यशस्वीरित्या सबमिट केले गेले", + // "workflow-item.scorereviewaction.notification.error.title": "Something went wrong", "workflow-item.scorereviewaction.notification.error.title": "काहीतरी चुकले", + // "workflow-item.scorereviewaction.notification.error.content": "Couldn't rate this item", "workflow-item.scorereviewaction.notification.error.content": "या आयटमला रेट करू शकलो नाही", + // "workflow-item.scorereviewaction.title": "Rate this item", "workflow-item.scorereviewaction.title": "या आयटमला रेट करा", + // "workflow-item.scorereviewaction.header": "Rate this item", "workflow-item.scorereviewaction.header": "या आयटमला रेट करा", + // "workflow-item.scorereviewaction.button.cancel": "Cancel", "workflow-item.scorereviewaction.button.cancel": "रद्द करा", + // "workflow-item.scorereviewaction.button.confirm": "Confirm", "workflow-item.scorereviewaction.button.confirm": "पुष्टी करा", + // "idle-modal.header": "Session will expire soon", "idle-modal.header": "सत्र लवकरच समाप्त होईल", + // "idle-modal.info": "For security reasons, user sessions expire after {{ timeToExpire }} minutes of inactivity. Your session will expire soon. Would you like to extend it or log out?", "idle-modal.info": "सुरक्षा कारणांमुळे, वापरकर्ता सत्रे {{ timeToExpire }} मिनिटांच्या निष्क्रियतेनंतर समाप्त होतात. तुमचे सत्र लवकरच समाप्त होईल. तुम्हाला ते वाढवायचे आहे का किंवा लॉग आउट करायचे आहे का?", + // "idle-modal.log-out": "Log out", "idle-modal.log-out": "लॉग आउट", + // "idle-modal.extend-session": "Extend session", "idle-modal.extend-session": "सत्र वाढवा", + // "researcher.profile.action.processing": "Processing...", "researcher.profile.action.processing": "प्रक्रिया...", + // "researcher.profile.associated": "Researcher profile associated", "researcher.profile.associated": "संशोधक प्रोफाइल संबंधित", + // "researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility", "researcher.profile.change-visibility.fail": "प्रोफाइल दृश्यमानता बदलताना अनपेक्षित त्रुटी आली", + // "researcher.profile.create.new": "Create new", "researcher.profile.create.new": "नवीन तयार करा", + // "researcher.profile.create.success": "Researcher profile created successfully", "researcher.profile.create.success": "संशोधक प्रोफाइल यशस्वीरित्या तयार केले", + // "researcher.profile.create.fail": "An error occurs during the researcher profile creation", "researcher.profile.create.fail": "संशोधक प्रोफाइल तयार करताना त्रुटी आली", + // "researcher.profile.delete": "Delete", "researcher.profile.delete": "हटवा", + // "researcher.profile.expose": "Expose", "researcher.profile.expose": "प्रकट करा", + // "researcher.profile.hide": "Hide", "researcher.profile.hide": "लपवा", + // "researcher.profile.not.associated": "Researcher profile not yet associated", "researcher.profile.not.associated": "संशोधक प्रोफाइल अद्याप संबंधित नाही", + // "researcher.profile.view": "View", "researcher.profile.view": "पहा", + // "researcher.profile.private.visibility": "PRIVATE", "researcher.profile.private.visibility": "खाजगी", + // "researcher.profile.public.visibility": "PUBLIC", "researcher.profile.public.visibility": "सार्वजनिक", - "researcher.profile.status": "स्थिती:", + // "researcher.profile.status": "Status:", + // TODO New key - Add a translation + "researcher.profile.status": "Status:", + // "researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).", "researcherprofile.claim.not-authorized": "तुम्हाला हा आयटम दावा करण्याची परवानगी नाही. अधिक तपशीलांसाठी प्रशासकांशी संपर्क साधा.", + // "researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later", "researcherprofile.error.claim.body": "प्रोफाइल दावा करताना त्रुटी आली, कृपया नंतर पुन्हा प्रयत्न करा", + // "researcherprofile.error.claim.title": "Error", "researcherprofile.error.claim.title": "त्रुटी", + // "researcherprofile.success.claim.body": "Profile claimed with success", "researcherprofile.success.claim.body": "प्रोफाइल यशस्वीरित्या दावा केले", + // "researcherprofile.success.claim.title": "Success", "researcherprofile.success.claim.title": "यश", + // "person.page.orcid.create": "Create an ORCID ID", "person.page.orcid.create": "ORCID आयडी तयार करा", + // "person.page.orcid.granted-authorizations": "Granted authorizations", "person.page.orcid.granted-authorizations": "मंजूर केलेल्या परवानग्या", + // "person.page.orcid.grant-authorizations": "Grant authorizations", "person.page.orcid.grant-authorizations": "परवानग्या मंजूर करा", + // "person.page.orcid.link": "Connect to ORCID ID", "person.page.orcid.link": "ORCID आयडीशी कनेक्ट करा", + // "person.page.orcid.link.processing": "Linking profile to ORCID...", "person.page.orcid.link.processing": "प्रोफाइल ORCID शी लिंक करत आहे...", + // "person.page.orcid.link.error.message": "Something went wrong while connecting the profile with ORCID. If the problem persists, contact the administrator.", "person.page.orcid.link.error.message": "प्रोफाइल ORCID शी कनेक्ट करताना काहीतरी चुकले. समस्या कायम राहिल्यास, प्रशासकाशी संपर्क साधा.", + // "person.page.orcid.orcid-not-linked-message": "The ORCID iD of this profile ({{ orcid }}) has not yet been connected to an account on the ORCID registry or the connection is expired.", "person.page.orcid.orcid-not-linked-message": "या प्रोफाइलचा ORCID आयडी ({{ orcid }}) अद्याप ORCID रजिस्ट्रीवरील खात्याशी कनेक्ट केलेला नाही किंवा कनेक्शन कालबाह्य झाले आहे.", + // "person.page.orcid.unlink": "Disconnect from ORCID", "person.page.orcid.unlink": "ORCID पासून डिस्कनेक्ट करा", + // "person.page.orcid.unlink.processing": "Processing...", "person.page.orcid.unlink.processing": "प्रक्रिया करत आहे...", + // "person.page.orcid.missing-authorizations": "Missing authorizations", "person.page.orcid.missing-authorizations": "परवानग्या गहाळ आहेत", - "person.page.orcid.missing-authorizations-message": "खालील परवानग्या गहाळ आहेत:", + // "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + // TODO New key - Add a translation + "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + // "person.page.orcid.no-missing-authorizations-message": "Great! This box is empty, so you have granted all access rights to use all functions offers by your institution.", "person.page.orcid.no-missing-authorizations-message": "छान! हे बॉक्स रिकामे आहे, त्यामुळे तुम्ही तुमच्या संस्थेने ऑफर केलेल्या सर्व कार्ये वापरण्यासाठी सर्व प्रवेश अधिकार मंजूर केले आहेत.", + // "person.page.orcid.no-orcid-message": "No ORCID iD associated yet. By clicking on the button below it is possible to link this profile with an ORCID account.", "person.page.orcid.no-orcid-message": "अद्याप कोणताही ORCID आयडी संबंधित नाही. खालील बटणावर क्लिक करून हा प्रोफाइल ORCID खात्याशी लिंक करणे शक्य आहे.", + // "person.page.orcid.profile-preferences": "Profile preferences", "person.page.orcid.profile-preferences": "प्रोफाइल प्राधान्ये", + // "person.page.orcid.funding-preferences": "Funding preferences", "person.page.orcid.funding-preferences": "फंडिंग प्राधान्ये", + // "person.page.orcid.publications-preferences": "Publication preferences", "person.page.orcid.publications-preferences": "प्रकाशन प्राधान्ये", + // "person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator", "person.page.orcid.remove-orcid-message": "तुम्हाला तुमचा ORCID काढून टाकायचा असल्यास, कृपया रेपॉझिटरी प्रशासकाशी संपर्क साधा", + // "person.page.orcid.save.preference.changes": "Update settings", "person.page.orcid.save.preference.changes": "सेटिंग्ज अद्यतनित करा", + // "person.page.orcid.sync-profile.affiliation": "Affiliation", "person.page.orcid.sync-profile.affiliation": "संबद्धता", + // "person.page.orcid.sync-profile.biographical": "Biographical data", "person.page.orcid.sync-profile.biographical": "जीवनी माहिती", + // "person.page.orcid.sync-profile.education": "Education", "person.page.orcid.sync-profile.education": "शिक्षण", + // "person.page.orcid.sync-profile.identifiers": "Identifiers", "person.page.orcid.sync-profile.identifiers": "ओळखपत्रे", + // "person.page.orcid.sync-fundings.all": "All fundings", "person.page.orcid.sync-fundings.all": "सर्व निधी", + // "person.page.orcid.sync-fundings.mine": "My fundings", "person.page.orcid.sync-fundings.mine": "माझे निधी", + // "person.page.orcid.sync-fundings.my_selected": "Selected fundings", "person.page.orcid.sync-fundings.my_selected": "निवडलेले निधी", + // "person.page.orcid.sync-fundings.disabled": "Disabled", "person.page.orcid.sync-fundings.disabled": "अक्षम", + // "person.page.orcid.sync-publications.all": "All publications", "person.page.orcid.sync-publications.all": "सर्व प्रकाशने", + // "person.page.orcid.sync-publications.mine": "My publications", "person.page.orcid.sync-publications.mine": "माझी प्रकाशने", + // "person.page.orcid.sync-publications.my_selected": "Selected publications", "person.page.orcid.sync-publications.my_selected": "निवडलेली प्रकाशने", + // "person.page.orcid.sync-publications.disabled": "Disabled", "person.page.orcid.sync-publications.disabled": "अक्षम", + // "person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry", "person.page.orcid.sync-queue.discard": "बदल रद्द करा आणि ORCID रजिस्ट्रीसह समक्रमित करू नका", + // "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed", "person.page.orcid.sync-queue.discard.error": "ORCID क्यू रेकॉर्ड रद्द करण्यात अयशस्वी", + // "person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully", "person.page.orcid.sync-queue.discard.success": "ORCID क्यू रेकॉर्ड यशस्वीरित्या रद्द केले गेले", + // "person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty", "person.page.orcid.sync-queue.empty-message": "ORCID क्यू रजिस्ट्री रिकामी आहे", + // "person.page.orcid.sync-queue.table.header.type": "Type", "person.page.orcid.sync-queue.table.header.type": "प्रकार", + // "person.page.orcid.sync-queue.table.header.description": "Description", "person.page.orcid.sync-queue.table.header.description": "वर्णन", + // "person.page.orcid.sync-queue.table.header.action": "Action", "person.page.orcid.sync-queue.table.header.action": "क्रिया", + // "person.page.orcid.sync-queue.description.affiliation": "Affiliations", "person.page.orcid.sync-queue.description.affiliation": "संबद्धता", + // "person.page.orcid.sync-queue.description.country": "Country", "person.page.orcid.sync-queue.description.country": "देश", + // "person.page.orcid.sync-queue.description.education": "Educations", "person.page.orcid.sync-queue.description.education": "शिक्षण", + // "person.page.orcid.sync-queue.description.external_ids": "External ids", "person.page.orcid.sync-queue.description.external_ids": "बाह्य ओळखपत्रे", + // "person.page.orcid.sync-queue.description.other_names": "Other names", "person.page.orcid.sync-queue.description.other_names": "इतर नावे", + // "person.page.orcid.sync-queue.description.qualification": "Qualifications", "person.page.orcid.sync-queue.description.qualification": "पात्रता", + // "person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls", "person.page.orcid.sync-queue.description.researcher_urls": "संशोधक URLs", + // "person.page.orcid.sync-queue.description.keywords": "Keywords", "person.page.orcid.sync-queue.description.keywords": "कीवर्ड", + // "person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry", "person.page.orcid.sync-queue.tooltip.insert": "ORCID रजिस्ट्रीमध्ये नवीन नोंद जोडा", + // "person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry", "person.page.orcid.sync-queue.tooltip.update": "ORCID रजिस्ट्रीवर ही नोंद अद्यतनित करा", + // "person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry", "person.page.orcid.sync-queue.tooltip.delete": "ORCID रजिस्ट्रीमधून ही नोंद काढा", + // "person.page.orcid.sync-queue.tooltip.publication": "Publication", "person.page.orcid.sync-queue.tooltip.publication": "प्रकाशन", + // "person.page.orcid.sync-queue.tooltip.project": "Project", "person.page.orcid.sync-queue.tooltip.project": "प्रकल्प", + // "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", "person.page.orcid.sync-queue.tooltip.affiliation": "संबद्धता", + // "person.page.orcid.sync-queue.tooltip.education": "Education", "person.page.orcid.sync-queue.tooltip.education": "शिक्षण", + // "person.page.orcid.sync-queue.tooltip.qualification": "Qualification", "person.page.orcid.sync-queue.tooltip.qualification": "पात्रता", + // "person.page.orcid.sync-queue.tooltip.other_names": "Other name", "person.page.orcid.sync-queue.tooltip.other_names": "इतर नाव", + // "person.page.orcid.sync-queue.tooltip.country": "Country", "person.page.orcid.sync-queue.tooltip.country": "देश", + // "person.page.orcid.sync-queue.tooltip.keywords": "Keyword", "person.page.orcid.sync-queue.tooltip.keywords": "कीवर्ड", + // "person.page.orcid.sync-queue.tooltip.external_ids": "External identifier", "person.page.orcid.sync-queue.tooltip.external_ids": "बाह्य ओळखपत्र", + // "person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url", "person.page.orcid.sync-queue.tooltip.researcher_urls": "संशोधक URL", + // "person.page.orcid.sync-queue.send": "Synchronize with ORCID registry", "person.page.orcid.sync-queue.send": "ORCID रजिस्ट्रीसह समक्रमित करा", + // "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.", "person.page.orcid.sync-queue.send.unauthorized-error.title": "परवानग्या गहाळ असल्यामुळे ORCID ला सबमिशन अयशस्वी.", + // "person.page.orcid.sync-queue.send.unauthorized-error.content": "Click here to grant again the required permissions. If the problem persists, contact the administrator", "person.page.orcid.sync-queue.send.unauthorized-error.content": "आवश्यक परवानग्या पुन्हा मंजूर करण्यासाठी येथे क्लिक करा. समस्या कायम राहिल्यास, प्रशासकाशी संपर्क साधा", + // "person.page.orcid.sync-queue.send.bad-request-error": "The submission to ORCID failed because the resource sent to ORCID registry is not valid", "person.page.orcid.sync-queue.send.bad-request-error": "ORCID रजिस्ट्रीला पाठवलेला संसाधन वैध नसल्यामुळे ORCID ला सबमिशन अयशस्वी", + // "person.page.orcid.sync-queue.send.error": "The submission to ORCID failed", "person.page.orcid.sync-queue.send.error": "ORCID ला सबमिशन अयशस्वी", + // "person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry", "person.page.orcid.sync-queue.send.conflict-error": "संसाधन आधीच ORCID रजिस्ट्रीवर असल्यामुळे ORCID ला सबमिशन अयशस्वी", + // "person.page.orcid.sync-queue.send.not-found-warning": "The resource does not exists anymore on the ORCID registry.", "person.page.orcid.sync-queue.send.not-found-warning": "संसाधन ORCID रजिस्ट्रीवर आता अस्तित्वात नाही.", + // "person.page.orcid.sync-queue.send.success": "The submission to ORCID was completed successfully", "person.page.orcid.sync-queue.send.success": "ORCID ला सबमिशन यशस्वीरित्या पूर्ण झाले", + // "person.page.orcid.sync-queue.send.validation-error": "The data that you want to synchronize with ORCID is not valid", "person.page.orcid.sync-queue.send.validation-error": "तुम्ही ORCID सह समक्रमित करू इच्छित असलेली माहिती वैध नाही", + // "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "The amount's currency is required", "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "रकमेची चलन आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.external-id.required": "The resource to be sent requires at least one identifier", "person.page.orcid.sync-queue.send.validation-error.external-id.required": "पाठवण्यासाठी संसाधनासाठी किमान एक ओळखपत्र आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.title.required": "The title is required", "person.page.orcid.sync-queue.send.validation-error.title.required": "शीर्षक आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required", "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required", "person.page.orcid.sync-queue.send.validation-error.start-date.required": "प्रारंभ तारीख आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required", "person.page.orcid.sync-queue.send.validation-error.funder.required": "निधीदार आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.country.invalid": "अवैध 2 अंकी ISO 3166 देश", + // "person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required", "person.page.orcid.sync-queue.send.validation-error.organization.required": "संस्था आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required", "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "संस्थेचे नाव आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900", "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "प्रकाशन तारीख 1900 नंतर एक वर्ष असणे आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address", "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "पाठवण्यासाठी संस्थेला पत्ता आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "The address of the organization to be sent requires a city", "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "पाठवण्यासाठी संस्थेच्या पत्त्याला शहर आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "The address of the organization to be sent requires a valid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "पाठवण्यासाठी संस्थेच्या पत्त्याला वैध 2 अंकी ISO 3166 देश आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "An identifier to disambiguate organizations is required. Supported ids are GRID, Ringgold, Legal Entity identifiers (LEIs) and Crossref Funder Registry identifiers", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "संस्थांना स्पष्ट करण्यासाठी ओळखपत्र आवश्यक आहे. समर्थित आयडी आहेत GRID, Ringgold, Legal Entity identifiers (LEIs) आणि Crossref Funder Registry identifiers", + // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "The organization's identifiers requires a value", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "संस्थांच्या ओळखपत्रांना मूल्य आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "The organization's identifiers requires a source", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "संस्थांच्या ओळखपत्रांना स्रोत आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "The source of one of the organization identifiers is invalid. Supported sources are RINGGOLD, GRID, LEI and FUNDREF", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "संस्थांच्या ओळखपत्रांपैकी एकाचा स्रोत अवैध आहे. समर्थित स्रोत आहेत RINGGOLD, GRID, LEI आणि FUNDREF", + // "person.page.orcid.synchronization-mode": "Synchronization mode", "person.page.orcid.synchronization-mode": "समक्रमण मोड", + // "person.page.orcid.synchronization-mode.batch": "Batch", "person.page.orcid.synchronization-mode.batch": "बॅच", + // "person.page.orcid.synchronization-mode.label": "Synchronization mode", "person.page.orcid.synchronization-mode.label": "समक्रमण मोड", + // "person.page.orcid.synchronization-mode-message": "Please select how you would like synchronization to ORCID to occur. The options include \"Manual\" (you must send your data to ORCID manually), or \"Batch\" (the system will send your data to ORCID via a scheduled script).", "person.page.orcid.synchronization-mode-message": "कृपया ORCID सह समक्रमण कसे करायचे ते निवडा. पर्यायांमध्ये \"मॅन्युअल\" (तुम्हाला तुमची माहिती ORCID ला मॅन्युअली पाठवावी लागेल), किंवा \"बॅच\" (सिस्टम तुमची माहिती ORCID ला शेड्यूल केलेल्या स्क्रिप्टद्वारे पाठवेल) समाविष्ट आहे.", + // "person.page.orcid.synchronization-mode-funding-message": "Select whether to send your linked Project entities to your ORCID record's list of funding information.", "person.page.orcid.synchronization-mode-funding-message": "तुमच्या ORCID रेकॉर्डच्या निधी माहितीच्या यादीत तुमच्या लिंक केलेल्या प्रकल्प संस्थांना पाठवायचे आहे की नाही ते निवडा.", + // "person.page.orcid.synchronization-mode-publication-message": "Select whether to send your linked Publication entities to your ORCID record's list of works.", "person.page.orcid.synchronization-mode-publication-message": "तुमच्या ORCID रेकॉर्डच्या कामांच्या यादीत तुमच्या लिंक केलेल्या प्रकाशन संस्थांना पाठवायचे आहे की नाही ते निवडा.", + // "person.page.orcid.synchronization-mode-profile-message": "Select whether to send your biographical data or personal identifiers to your ORCID record.", "person.page.orcid.synchronization-mode-profile-message": "तुमची जीवनी माहिती किंवा वैयक्तिक ओळखपत्रे तुमच्या ORCID रेकॉर्डला पाठवायची आहे की नाही ते निवडा.", + // "person.page.orcid.synchronization-settings-update.success": "The synchronization settings have been updated successfully", "person.page.orcid.synchronization-settings-update.success": "समक्रमण सेटिंग्ज यशस्वीरित्या अद्यतनित केल्या गेल्या", + // "person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed", "person.page.orcid.synchronization-settings-update.error": "समक्रमण सेटिंग्ज अद्यतनित करण्यात अयशस्वी", + // "person.page.orcid.synchronization-mode.manual": "Manual", "person.page.orcid.synchronization-mode.manual": "मॅन्युअल", + // "person.page.orcid.scope.authenticate": "Get your ORCID iD", "person.page.orcid.scope.authenticate": "तुमचा ORCID आयडी मिळवा", + // "person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties", "person.page.orcid.scope.read-limited": "विश्वासार्ह पक्षांना दृश्यमानता सेटसह तुमची माहिती वाचा", + // "person.page.orcid.scope.activities-update": "Add/update your research activities", "person.page.orcid.scope.activities-update": "तुमच्या संशोधन क्रियाकलाप जोडा/अद्यतनित करा", + // "person.page.orcid.scope.person-update": "Add/update other information about you", "person.page.orcid.scope.person-update": "तुमच्याबद्दल इतर माहिती जोडा/अद्यतनित करा", + // "person.page.orcid.unlink.success": "The disconnection between the profile and the ORCID registry was successful", "person.page.orcid.unlink.success": "प्रोफाइल आणि ORCID रजिस्ट्रीमधील डिस्कनेक्शन यशस्वी झाले", + // "person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again", "person.page.orcid.unlink.error": "प्रोफाइल आणि ORCID रजिस्ट्रीमधील डिस्कनेक्ट करताना त्रुटी आली. पुन्हा प्रयत्न करा", + // "person.orcid.sync.setting": "ORCID Synchronization settings", "person.orcid.sync.setting": "ORCID समक्रमण सेटिंग्ज", + // "person.orcid.registry.queue": "ORCID Registry Queue", "person.orcid.registry.queue": "ORCID रजिस्ट्री क्यू", + // "person.orcid.registry.auth": "ORCID Authorizations", "person.orcid.registry.auth": "ORCID परवानग्या", + // "person.orcid-tooltip.authenticated": "{{orcid}}", "person.orcid-tooltip.authenticated": "{{orcid}}", + // "person.orcid-tooltip.not-authenticated": "{{orcid}} (unconfirmed)", "person.orcid-tooltip.not-authenticated": "{{orcid}} (अप्रमाणित)", + // "home.recent-submissions.head": "Recent Submissions", "home.recent-submissions.head": "अलीकडील सबमिशन", + // "listable-notification-object.default-message": "This object couldn't be retrieved", "listable-notification-object.default-message": "हा ऑब्जेक्ट पुनर्प्राप्त केला जाऊ शकला नाही", + // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", "system-wide-alert-banner.retrieval.error": "सिस्टम-वाइड अलर्ट बॅनर पुनर्प्राप्त करताना काहीतरी चुकले", + // "system-wide-alert-banner.countdown.prefix": "In", "system-wide-alert-banner.countdown.prefix": "मध्ये", + // "system-wide-alert-banner.countdown.days": "{{days}} day(s),", "system-wide-alert-banner.countdown.days": "{{days}} दिवस(े),", + // "system-wide-alert-banner.countdown.hours": "{{hours}} hour(s) and", "system-wide-alert-banner.countdown.hours": "{{hours}} तास(े) आणि", - "system-wide-alert-banner.countdown.minutes": "{{minutes}} मिनिट(े):", + // "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + // TODO New key - Add a translation + "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + // "menu.section.system-wide-alert": "System-wide Alert", "menu.section.system-wide-alert": "सिस्टम-वाइड अलर्ट", + // "system-wide-alert.form.header": "System-wide Alert", "system-wide-alert.form.header": "सिस्टम-वाइड अलर्ट", + // "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert", "system-wide-alert-form.retrieval.error": "सिस्टम-वाइड अलर्ट पुनर्प्राप्त करताना काहीतरी चुकले", + // "system-wide-alert.form.cancel": "Cancel", "system-wide-alert.form.cancel": "रद्द करा", + // "system-wide-alert.form.save": "Save", "system-wide-alert.form.save": "जतन करा", + // "system-wide-alert.form.label.active": "ACTIVE", "system-wide-alert.form.label.active": "सक्रिय", + // "system-wide-alert.form.label.inactive": "INACTIVE", "system-wide-alert.form.label.inactive": "निष्क्रिय", + // "system-wide-alert.form.error.message": "The system wide alert must have a message", "system-wide-alert.form.error.message": "सिस्टम-वाइड अलर्टमध्ये संदेश असणे आवश्यक आहे", + // "system-wide-alert.form.label.message": "Alert message", "system-wide-alert.form.label.message": "अलर्ट संदेश", + // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer", "system-wide-alert.form.label.countdownTo.enable": "काउंटडाउन टाइमर सक्षम करा", - "system-wide-alert.form.label.countdownTo.hint": "सूचना: काउंटडाउन टाइमर सेट करा. सक्षम केल्यावर, भविष्यातील तारीख सेट केली जाऊ शकते आणि सिस्टम-वाइड अलर्ट बॅनर सेट केलेल्या तारखेपर्यंत काउंटडाउन करेल. जेव्हा हा टाइमर संपेल, तेव्हा अलर्टमधून तो अदृश्य होईल. सर्व्हर आपोआप थांबवला जाणार नाही.", + // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + // TODO New key - Add a translation + "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + // "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", "system-wide-alert-form.select-date-by-calendar": "कॅलेंडर वापरून तारीख निवडा", + // "system-wide-alert.form.label.preview": "System-wide alert preview", "system-wide-alert.form.label.preview": "सिस्टम-वाइड अलर्ट पूर्वावलोकन", + // "system-wide-alert.form.update.success": "The system-wide alert was successfully updated", "system-wide-alert.form.update.success": "सिस्टम-वाइड अलर्ट यशस्वीरित्या अद्यतनित केले गेले", + // "system-wide-alert.form.update.error": "Something went wrong when updating the system-wide alert", "system-wide-alert.form.update.error": "सिस्टम-वाइड अलर्ट अद्यतनित करताना काहीतरी चुकले", + // "system-wide-alert.form.create.success": "The system-wide alert was successfully created", "system-wide-alert.form.create.success": "सिस्टम-वाइड अलर्ट यशस्वीरित्या तयार केले गेले", + // "system-wide-alert.form.create.error": "Something went wrong when creating the system-wide alert", "system-wide-alert.form.create.error": "सिस्टम-वाइड अलर्ट तयार करताना काहीतरी चुकले", + // "admin.system-wide-alert.breadcrumbs": "System-wide Alerts", "admin.system-wide-alert.breadcrumbs": "सिस्टम-वाइड अलर्ट", + // "admin.system-wide-alert.title": "System-wide Alerts", "admin.system-wide-alert.title": "सिस्टम-वाइड अलर्ट", + // "discover.filters.head": "Discover", "discover.filters.head": "शोधा", + // "item-access-control-title": "This form allows you to perform changes to the access conditions of the item's metadata or its bitstreams.", "item-access-control-title": "हे फॉर्म तुम्हाला आयटमच्या मेटाडेटा किंवा त्याच्या बिटस्ट्रीम्सच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते.", + // "collection-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by this collection. Changes may be performed to either all Item metadata or all content (bitstreams).", "collection-access-control-title": "हे फॉर्म तुम्हाला या संग्रहाच्या मालकीच्या सर्व आयटमच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते. सर्व आयटम मेटाडेटा किंवा सर्व सामग्री (बिटस्ट्रीम्स) मध्ये बदल केले जाऊ शकतात.", + // "community-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by any collection under this community. Changes may be performed to either all Item metadata or all content (bitstreams).", "community-access-control-title": "हे फॉर्म तुम्हाला या समुदायाखालील कोणत्याही संग्रहाच्या मालकीच्या सर्व आयटमच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते. सर्व आयटम मेटाडेटा किंवा सर्व सामग्री (बिटस्ट्रीम्स) मध्ये बदल केले जाऊ शकतात.", + // "access-control-item-header-toggle": "Item's Metadata", "access-control-item-header-toggle": "आयटमचे मेटाडेटा", + // "access-control-item-toggle.enable": "Enable option to perform changes on the item's metadata", "access-control-item-toggle.enable": "आयटमच्या मेटाडेटावर बदल करण्याचा पर्याय सक्षम करा", + // "access-control-item-toggle.disable": "Disable option to perform changes on the item's metadata", "access-control-item-toggle.disable": "आयटमच्या मेटाडेटावर बदल करण्याचा पर्याय अक्षम करा", + // "access-control-bitstream-header-toggle": "Bitstreams", "access-control-bitstream-header-toggle": "बिटस्ट्रीम्स", + // "access-control-bitstream-toggle.enable": "Enable option to perform changes on the bitstreams", "access-control-bitstream-toggle.enable": "बिटस्ट्रीम्सवर बदल करण्याचा पर्याय सक्षम करा", + // "access-control-bitstream-toggle.disable": "Disable option to perform changes on the bitstreams", "access-control-bitstream-toggle.disable": "बिटस्ट्रीम्सवर बदल करण्याचा पर्याय अक्षम करा", + // "access-control-mode": "Mode", "access-control-mode": "मोड", + // "access-control-access-conditions": "Access conditions", "access-control-access-conditions": "प्रवेश अटी", + // "access-control-no-access-conditions-warning-message": "Currently, no access conditions are specified below. If executed, this will replace the current access conditions with the default access conditions inherited from the owning collection.", "access-control-no-access-conditions-warning-message": "सध्या, खाली कोणत्याही प्रवेश अटी निर्दिष्ट केलेल्या नाहीत. जर अंमलात आणले, तर हे वर्तमान प्रवेश अटींना मालकीच्या संग्रहाकडून वारसाहक्काने मिळालेल्या डीफॉल्ट प्रवेश अटींनी बदलले जाईल.", + // "access-control-replace-all": "Replace access conditions", "access-control-replace-all": "प्रवेश अटी बदला", + // "access-control-add-to-existing": "Add to existing ones", "access-control-add-to-existing": "अस्तित्वात असलेल्या अटींमध्ये जोडा", + // "access-control-limit-to-specific": "Limit the changes to specific bitstreams", "access-control-limit-to-specific": "विशिष्ट बिटस्ट्रीम्सपर्यंत बदल मर्यादित करा", + // "access-control-process-all-bitstreams": "Update all the bitstreams in the item", "access-control-process-all-bitstreams": "आयटममधील सर्व बिटस्ट्रीम्स अद्यतनित करा", + // "access-control-bitstreams-selected": "bitstreams selected", "access-control-bitstreams-selected": "बिटस्ट्रीम्स निवडले", + // "access-control-bitstreams-select": "Select bitstreams", "access-control-bitstreams-select": "बिटस्ट्रीम्स निवडा", + // "access-control-cancel": "Cancel", "access-control-cancel": "रद्द करा", + // "access-control-execute": "Execute", "access-control-execute": "अंमलात आणा", + // "access-control-add-more": "Add more", "access-control-add-more": "अधिक जोडा", + // "access-control-remove": "Remove access condition", "access-control-remove": "प्रवेश अट काढा", + // "access-control-select-bitstreams-modal.title": "Select bitstreams", "access-control-select-bitstreams-modal.title": "बिटस्ट्रीम्स निवडा", + // "access-control-select-bitstreams-modal.no-items": "No items to show.", "access-control-select-bitstreams-modal.no-items": "दाखवण्यासाठी कोणतेही आयटम नाहीत.", + // "access-control-select-bitstreams-modal.close": "Close", "access-control-select-bitstreams-modal.close": "बंद करा", + // "access-control-option-label": "Access condition type", "access-control-option-label": "प्रवेश अट प्रकार", + // "access-control-option-note": "Choose an access condition to apply to selected objects.", "access-control-option-note": "निवडलेल्या ऑब्जेक्ट्सवर लागू करण्यासाठी प्रवेश अट निवडा.", + // "access-control-option-start-date": "Grant access from", "access-control-option-start-date": "या तारखेपासून प्रवेश मंजूर करा", + // "access-control-option-start-date-note": "Select the date from which the related access condition is applied", "access-control-option-start-date-note": "संबंधित प्रवेश अट लागू होण्याची तारीख निवडा", + // "access-control-option-end-date": "Grant access until", "access-control-option-end-date": "या तारखेपर्यंत प्रवेश मंजूर करा", + // "access-control-option-end-date-note": "Select the date until which the related access condition is applied", "access-control-option-end-date-note": "संबंधित प्रवेश अट लागू होण्याची तारीख निवडा", + // "vocabulary-treeview.search.form.add": "Add", "vocabulary-treeview.search.form.add": "जोडा", + // "admin.notifications.publicationclaim.breadcrumbs": "Publication Claim", "admin.notifications.publicationclaim.breadcrumbs": "प्रकाशन दावा", + // "admin.notifications.publicationclaim.page.title": "Publication Claim", "admin.notifications.publicationclaim.page.title": "प्रकाशन दावा", + // "coar-notify-support.title": "COAR Notify Protocol", "coar-notify-support.title": "COAR सूचित प्रोटोकॉल", - "coar-notify-support-title.content": "येथे, आम्ही COAR सूचित प्रोटोकॉलला पूर्णपणे समर्थन देतो, जो रेपॉझिटरीजमधील संवाद वाढवण्यासाठी डिझाइन केलेला आहे. COAR सूचित प्रोटोकॉलबद्दल अधिक जाणून घेण्यासाठी, COAR सूचित वेबसाइट ला भेट द्या.", + // "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + // TODO New key - Add a translation + "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + // "coar-notify-support.ldn-inbox.title": "LDN InBox", "coar-notify-support.ldn-inbox.title": "LDN इनबॉक्स", + // "coar-notify-support.ldn-inbox.content": "For your convenience, our LDN (Linked Data Notifications) InBox is easily accessible at {{ ldnInboxUrl }}. The LDN InBox enables seamless communication and data exchange, ensuring efficient and effective collaboration.", "coar-notify-support.ldn-inbox.content": "तुमच्या सोयीसाठी, आमचा LDN (लिंक्ड डेटा नोटिफिकेशन्स) इनबॉक्स {{ ldnInboxUrl }} येथे सहजपणे प्रवेशयोग्य आहे. LDN इनबॉक्स सहज संवाद आणि डेटा एक्सचेंज सक्षम करते, कार्यक्षम आणि प्रभावी सहयोग सुनिश्चित करते.", + // "coar-notify-support.message-moderation.title": "Message Moderation", "coar-notify-support.message-moderation.title": "संदेश संयम", + // "coar-notify-support.message-moderation.content": "To ensure a secure and productive environment, all incoming LDN messages are moderated. If you are planning to exchange information with us, kindly reach out via our dedicated", "coar-notify-support.message-moderation.content": "सुरक्षित आणि उत्पादक वातावरण सुनिश्चित करण्यासाठी, सर्व येणारे LDN संदेश नियंत्रित केले जातात. जर तुम्ही आमच्याशी माहितीची देवाणघेवाण करण्याचा विचार करत असाल, तर कृपया आमच्या समर्पित", + // "coar-notify-support.message-moderation.feedback-form": " Feedback form.", "coar-notify-support.message-moderation.feedback-form": " अभिप्राय फॉर्मद्वारे संपर्क साधा.", + // "service.overview.delete.header": "Delete Service", "service.overview.delete.header": "सेवा हटवा", + // "ldn-registered-services.title": "Registered Services", "ldn-registered-services.title": "नोंदणीकृत सेवा", - + // "ldn-registered-services.table.name": "Name", "ldn-registered-services.table.name": "नाव", - + // "ldn-registered-services.table.description": "Description", "ldn-registered-services.table.description": "वर्णन", - + // "ldn-registered-services.table.status": "Status", "ldn-registered-services.table.status": "स्थिती", - + // "ldn-registered-services.table.action": "Action", "ldn-registered-services.table.action": "क्रिया", - + // "ldn-registered-services.new": "NEW", "ldn-registered-services.new": "नवीन", - + // "ldn-registered-services.new.breadcrumbs": "Registered Services", "ldn-registered-services.new.breadcrumbs": "नोंदणीकृत सेवा", + // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "सक्षम", - + // "ldn-service.overview.table.disabled": "Disabled", "ldn-service.overview.table.disabled": "अक्षम", - + // "ldn-service.overview.table.clickToEnable": "Click to enable", "ldn-service.overview.table.clickToEnable": "सक्षम करण्यासाठी क्लिक करा", - + // "ldn-service.overview.table.clickToDisable": "Click to disable", "ldn-service.overview.table.clickToDisable": "अक्षम करण्यासाठी क्लिक करा", + // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "सेवा संपादित करा", - + // "ldn-create-service.title": "Create service", "ldn-create-service.title": "सेवा तयार करा", - + // "service.overview.create.modal": "Create Service", "service.overview.create.modal": "सेवा तयार करा", - + // "service.overview.create.body": "Please confirm the creation of this service.", "service.overview.create.body": "कृपया या सेवेची निर्मितीची पुष्टी करा.", - + // "ldn-service-status": "Status", "ldn-service-status": "स्थिती", - + // "service.confirm.create": "Create", "service.confirm.create": "तयार करा", - + // "service.refuse.create": "Cancel", "service.refuse.create": "रद्द करा", - + // "ldn-register-new-service.title": "Register a new service", "ldn-register-new-service.title": "नवीन सेवा नोंदणी करा", - + // "ldn-new-service.form.label.submit": "Save", "ldn-new-service.form.label.submit": "जतन करा", - + // "ldn-new-service.form.label.name": "Name", "ldn-new-service.form.label.name": "नाव", - + // "ldn-new-service.form.label.description": "Description", "ldn-new-service.form.label.description": "वर्णन", - + // "ldn-new-service.form.label.url": "Service URL", "ldn-new-service.form.label.url": "सेवा URL", - + // "ldn-new-service.form.label.ip-range": "Service IP range", "ldn-new-service.form.label.ip-range": "सेवा IP श्रेणी", - + // "ldn-new-service.form.label.score": "Level of trust", "ldn-new-service.form.label.score": "विश्वास पातळी", - + // "ldn-new-service.form.label.ldnUrl": "LDN Inbox URL", "ldn-new-service.form.label.ldnUrl": "LDN इनबॉक्स URL", - + // "ldn-new-service.form.placeholder.name": "Please provide service name", "ldn-new-service.form.placeholder.name": "कृपया सेवा नाव द्या", - + // "ldn-new-service.form.placeholder.description": "Please provide a description regarding your service", "ldn-new-service.form.placeholder.description": "कृपया तुमच्या सेवेसंबंधी वर्णन द्या", - + // "ldn-new-service.form.placeholder.url": "Please input the URL for users to check out more information about the service", "ldn-new-service.form.placeholder.url": "कृपया सेवा विषयी अधिक माहिती तपासण्यासाठी URL प्रविष्ट करा", - + // "ldn-new-service.form.placeholder.lowerIp": "IPv4 range lower bound", "ldn-new-service.form.placeholder.lowerIp": "IPv4 श्रेणी खालचा मर्यादा", - + // "ldn-new-service.form.placeholder.upperIp": "IPv4 range upper bound", "ldn-new-service.form.placeholder.upperIp": "IPv4 श्रेणी वरचा मर्यादा", - + // "ldn-new-service.form.placeholder.ldnUrl": "Please specify the URL of the LDN Inbox", "ldn-new-service.form.placeholder.ldnUrl": "कृपया LDN इनबॉक्सचा URL निर्दिष्ट करा", - + // "ldn-new-service.form.placeholder.score": "Please enter a value between 0 and 1. Use the “.” as decimal separator", "ldn-new-service.form.placeholder.score": "कृपया 0 आणि 1 दरम्यान मूल्य प्रविष्ट करा. दशांश विभाजक म्हणून “.” वापरा", - + // "ldn-service.form.label.placeholder.default-select": "Select a pattern", "ldn-service.form.label.placeholder.default-select": "एक नमुना निवडा", + // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "मान्य करा आणि स्वीकारा", - + // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", "ldn-service.form.pattern.ack-accept.description": "हा नमुना विनंती (ऑफर) मान्य करण्यासाठी वापरला जातो. याचा अर्थ विनंतीवर कृती करण्याचा हेतू आहे.", - + // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-accept.category": "मान्यतापत्रे", + // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "मान्य करा आणि नाकार", - + // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", "ldn-service.form.pattern.ack-reject.description": "हा नमुना विनंती (ऑफर) नाकारण्यासाठी वापरला जातो. याचा अर्थ विनंतीसंबंधी पुढील कृती नाही.", - + // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-reject.category": "मान्यतापत्रे", + // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "मान्य करा आणि तात्पुरते स्वीकारा", - + // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", "ldn-service.form.pattern.ack-tentative-accept.description": "हा नमुना विनंती (ऑफर) तात्पुरते स्वीकारण्यासाठी वापरला जातो. याचा अर्थ कृती करण्याचा हेतू आहे, जो बदलू शकतो.", - + // "ldn-service.form.pattern.ack-tentative-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-accept.category": "मान्यतापत्रे", + // "ldn-service.form.pattern.ack-tentative-reject.label": "Acknowledge and Tentatively Reject", "ldn-service.form.pattern.ack-tentative-reject.label": "मान्य करा आणि तात्पुरते नाकार", - + // "ldn-service.form.pattern.ack-tentative-reject.description": "This pattern is used to acknowledge and tentatively reject a request (offer). It signifies no further action, subject to change.", "ldn-service.form.pattern.ack-tentative-reject.description": "हा नमुना विनंती (ऑफर) तात्पुरते नाकारण्यासाठी वापरला जातो. याचा अर्थ पुढील कृती नाही, जो बदलू शकतो.", - + // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-reject.category": "मान्यतापत्रे", + // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "मान्यता जाहीर करा", - + // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", "ldn-service.form.pattern.announce-endorsement.description": "हा नमुना मान्यतेचे अस्तित्व जाहीर करण्यासाठी वापरला जातो, संदर्भित संसाधनाचा उल्लेख करतो.", - + // "ldn-service.form.pattern.announce-endorsement.category": "Announcements", "ldn-service.form.pattern.announce-endorsement.category": "जाहिराती", + // "ldn-service.form.pattern.announce-ingest.label": "Announce Ingest", "ldn-service.form.pattern.announce-ingest.label": "ग्रहण जाहीर करा", - + // "ldn-service.form.pattern.announce-ingest.description": "This pattern is used to announce that a resource has been ingested.", "ldn-service.form.pattern.announce-ingest.description": "हा नमुना संसाधन ग्रहण केले असल्याचे जाहीर करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.announce-ingest.category": "Announcements", "ldn-service.form.pattern.announce-ingest.category": "जाहिराती", + // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "संबंध जाहीर करा", - + // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", "ldn-service.form.pattern.announce-relationship.description": "हा नमुना दोन संसाधनांमधील संबंध जाहीर करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.announce-relationship.category": "Announcements", "ldn-service.form.pattern.announce-relationship.category": "जाहिराती", + // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "पुनरावलोकन जाहीर करा", - + // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", "ldn-service.form.pattern.announce-review.description": "हा नमुना पुनरावलोकनाचे अस्तित्व जाहीर करण्यासाठी वापरला जातो, पुनरावलोकित संसाधनाचा संदर्भ देतो.", - + // "ldn-service.form.pattern.announce-review.category": "Announcements", "ldn-service.form.pattern.announce-review.category": "जाहिराती", + // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "सेवा परिणाम जाहीर करा", - + // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", "ldn-service.form.pattern.announce-service-result.description": "हा नमुना 'सेवा परिणाम' अस्तित्व जाहीर करण्यासाठी वापरला जातो, संबंधित संसाधनाचा संदर्भ देतो.", - + // "ldn-service.form.pattern.announce-service-result.category": "Announcements", "ldn-service.form.pattern.announce-service-result.category": "जाहिराती", + // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "मान्यता विनंती", - + // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", "ldn-service.form.pattern.request-endorsement.description": "हा नमुना मूळ प्रणालीद्वारे मालकी असलेल्या संसाधनाची मान्यता विनंती करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.request-endorsement.category": "Requests", "ldn-service.form.pattern.request-endorsement.category": "विनंत्या", + // "ldn-service.form.pattern.request-ingest.label": "Request Ingest", "ldn-service.form.pattern.request-ingest.label": "ग्रहण विनंती", - + // "ldn-service.form.pattern.request-ingest.description": "This pattern is used to request that the target system ingest a resource.", "ldn-service.form.pattern.request-ingest.description": "हा नमुना लक्ष्य प्रणालीला संसाधन ग्रहण करण्याची विनंती करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.request-ingest.category": "Requests", "ldn-service.form.pattern.request-ingest.category": "विनंत्या", + // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "पुनरावलोकन विनंती", - + // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", "ldn-service.form.pattern.request-review.description": "हा नमुना मूळ प्रणालीद्वारे मालकी असलेल्या संसाधनाचे पुनरावलोकन करण्याची विनंती करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.request-review.category": "Requests", "ldn-service.form.pattern.request-review.category": "विनंत्या", + // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "ऑफर रद्द करा", - + // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", "ldn-service.form.pattern.undo-offer.description": "हा नमुना पूर्वी केलेली ऑफर रद्द (मागे घेणे) करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.undo-offer.category": "Undo", "ldn-service.form.pattern.undo-offer.category": "रद्द करा", + // "ldn-new-service.form.label.placeholder.selectedItemFilter": "No Item Filter Selected", "ldn-new-service.form.label.placeholder.selectedItemFilter": "कोणताही आयटम फिल्टर निवडलेला नाही", - + // "ldn-new-service.form.label.ItemFilter": "Item Filter", "ldn-new-service.form.label.ItemFilter": "आयटम फिल्टर", - + // "ldn-new-service.form.label.automatic": "Automatic", "ldn-new-service.form.label.automatic": "स्वयंचलित", - + // "ldn-new-service.form.error.name": "Name is required", "ldn-new-service.form.error.name": "नाव आवश्यक आहे", - + // "ldn-new-service.form.error.url": "URL is required", "ldn-new-service.form.error.url": "URL आवश्यक आहे", - + // "ldn-new-service.form.error.ipRange": "Please enter a valid IP range", "ldn-new-service.form.error.ipRange": "कृपया वैध IP श्रेणी प्रविष्ट करा", - - "ldn-new-service.form.hint.ipRange": "कृपया दोन्ही श्रेणी मर्यादांमध्ये वैध IpV4 प्रविष्ट करा (टीप: एकल IP साठी, कृपया दोन्ही फील्डमध्ये समान मूल्य प्रविष्ट करा)", - + // "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", + // TODO New key - Add a translation + "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", + // "ldn-new-service.form.error.ldnurl": "LDN URL is required", "ldn-new-service.form.error.ldnurl": "LDN URL आवश्यक आहे", - + // "ldn-new-service.form.error.patterns": "At least a pattern is required", "ldn-new-service.form.error.patterns": "किमान एक नमुना आवश्यक आहे", - + // "ldn-new-service.form.error.score": "Please enter a valid score (between 0 and 1). Use the “.” as decimal separator", "ldn-new-service.form.error.score": "कृपया वैध स्कोर प्रविष्ट करा (0 आणि 1 दरम्यान). दशांश विभाजक म्हणून “.” वापरा", + // "ldn-new-service.form.label.inboundPattern": "Supported Pattern", "ldn-new-service.form.label.inboundPattern": "समर्थित नमुना", - + // "ldn-new-service.form.label.addPattern": "+ Add more", "ldn-new-service.form.label.addPattern": "+ अधिक जोडा", - + // "ldn-new-service.form.label.removeItemFilter": "Remove", "ldn-new-service.form.label.removeItemFilter": "काढा", - + // "ldn-register-new-service.breadcrumbs": "New Service", "ldn-register-new-service.breadcrumbs": "नवीन सेवा", - + // "service.overview.delete.body": "Are you sure you want to delete this service?", "service.overview.delete.body": "तुम्हाला ही सेवा हटवायची आहे का?", - + // "service.overview.edit.body": "Do you confirm the changes?", "service.overview.edit.body": "तुम्ही बदलांची पुष्टी करता का?", - + // "service.overview.edit.modal": "Edit Service", "service.overview.edit.modal": "सेवा संपादित करा", - + // "service.detail.update": "Confirm", "service.detail.update": "पुष्टी करा", - + // "service.detail.return": "Cancel", "service.detail.return": "रद्द करा", - + // "service.overview.reset-form.body": "Are you sure you want to discard the changes and leave?", "service.overview.reset-form.body": "तुम्हाला बदल रद्द करून सोडायचे आहे का?", - + // "service.overview.reset-form.modal": "Discard Changes", "service.overview.reset-form.modal": "बदल रद्द करा", - + // "service.overview.reset-form.reset-confirm": "Discard", "service.overview.reset-form.reset-confirm": "रद्द करा", - + // "admin.registries.services-formats.modify.success.head": "Successful Edit", "admin.registries.services-formats.modify.success.head": "यशस्वी संपादन", - + // "admin.registries.services-formats.modify.success.content": "The service has been edited", "admin.registries.services-formats.modify.success.content": "सेवा संपादित केली गेली आहे", - + // "admin.registries.services-formats.modify.failure.head": "Failed Edit", "admin.registries.services-formats.modify.failure.head": "अयशस्वी संपादन", - + // "admin.registries.services-formats.modify.failure.content": "The service has not been edited", "admin.registries.services-formats.modify.failure.content": "सेवा संपादित केली गेली नाही", - + // "ldn-service-notification.created.success.title": "Successful Create", "ldn-service-notification.created.success.title": "यशस्वी निर्मिती", - + // "ldn-service-notification.created.success.body": "The service has been created", "ldn-service-notification.created.success.body": "सेवा तयार केली गेली आहे", - + // "ldn-service-notification.created.failure.title": "Failed Create", "ldn-service-notification.created.failure.title": "अयशस्वी निर्मिती", - + // "ldn-service-notification.created.failure.body": "The service has not been created", "ldn-service-notification.created.failure.body": "सेवा तयार केली गेली नाही", - + // "ldn-service-notification.created.warning.title": "Please select at least one Inbound Pattern", "ldn-service-notification.created.warning.title": "कृपया किमान एक इनबाउंड नमुना निवडा", - + // "ldn-enable-service.notification.success.title": "Successful status updated", "ldn-enable-service.notification.success.title": "यशस्वी स्थिती अद्यतनित", - + // "ldn-enable-service.notification.success.content": "The service status has been updated", "ldn-enable-service.notification.success.content": "सेवा स्थिती अद्यतनित केली गेली आहे", - + // "ldn-service-delete.notification.success.title": "Successful Deletion", "ldn-service-delete.notification.success.title": "यशस्वी हटवणे", - + // "ldn-service-delete.notification.success.content": "The service has been deleted", "ldn-service-delete.notification.success.content": "सेवा हटवली गेली आहे", - + // "ldn-service-delete.notification.error.title": "Failed Deletion", "ldn-service-delete.notification.error.title": "अयशस्वी हटवणे", - + // "ldn-service-delete.notification.error.content": "The service has not been deleted", "ldn-service-delete.notification.error.content": "सेवा हटवली गेली नाही", - + // "service.overview.reset-form.reset-return": "Cancel", "service.overview.reset-form.reset-return": "रद्द करा", - + // "service.overview.delete": "Delete service", "service.overview.delete": "सेवा हटवा", - + // "ldn-edit-service.title": "Edit service", "ldn-edit-service.title": "सेवा संपादित करा", - + // "ldn-edit-service.form.label.name": "Name", "ldn-edit-service.form.label.name": "नाव", - + // "ldn-edit-service.form.label.description": "Description", "ldn-edit-service.form.label.description": "वर्णन", - + // "ldn-edit-service.form.label.url": "Service URL", "ldn-edit-service.form.label.url": "सेवा URL", - + // "ldn-edit-service.form.label.ldnUrl": "LDN Inbox URL", "ldn-edit-service.form.label.ldnUrl": "LDN इनबॉक्स URL", - + // "ldn-edit-service.form.label.inboundPattern": "Inbound Pattern", "ldn-edit-service.form.label.inboundPattern": "इनबाउंड नमुना", - + // "ldn-edit-service.form.label.noInboundPatternSelected": "No Inbound Pattern", "ldn-edit-service.form.label.noInboundPatternSelected": "कोणताही इनबाउंड नमुना निवडलेला नाही", - + // "ldn-edit-service.form.label.selectedItemFilter": "Selected Item Filter", "ldn-edit-service.form.label.selectedItemFilter": "निवडलेला आयटम फिल्टर", - + // "ldn-edit-service.form.label.selectItemFilter": "No Item Filter", "ldn-edit-service.form.label.selectItemFilter": "कोणताही आयटम फिल्टर नाही", - + // "ldn-edit-service.form.label.automatic": "Automatic", "ldn-edit-service.form.label.automatic": "स्वयंचलित", - + // "ldn-edit-service.form.label.addInboundPattern": "+ Add more", "ldn-edit-service.form.label.addInboundPattern": "+ अधिक जोडा", - + // "ldn-edit-service.form.label.submit": "Save", "ldn-edit-service.form.label.submit": "जतन करा", - + // "ldn-edit-service.breadcrumbs": "Edit Service", "ldn-edit-service.breadcrumbs": "सेवा संपादित करा", - + // "ldn-service.control-constaint-select-none": "Select none", "ldn-service.control-constaint-select-none": "कोणताही निवडा", + // "ldn-register-new-service.notification.error.title": "Error", "ldn-register-new-service.notification.error.title": "त्रुटी", - + // "ldn-register-new-service.notification.error.content": "An error occurred while creating this process", "ldn-register-new-service.notification.error.content": "हा प्रक्रिया तयार करताना त्रुटी आली", - + // "ldn-register-new-service.notification.success.title": "Success", "ldn-register-new-service.notification.success.title": "यश", - + // "ldn-register-new-service.notification.success.content": "The process was successfully created", "ldn-register-new-service.notification.success.content": "प्रक्रिया यशस्वीरित्या तयार केली गेली", - "submission.sections.notify.info": "निवडलेली सेवा त्याच्या वर्तमान स्थितीनुसार आयटमशी सुसंगत आहे. {{ service.name }}: {{ service.description }}", + // "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + // TODO New key - Add a translation + "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + // "item.page.endorsement": "Endorsement", "item.page.endorsement": "मान्यता", + // "item.page.places": "Related places", "item.page.places": "संबंधित ठिकाणे", + // "item.page.review": "Review", "item.page.review": "पुनरावलोकन", + // "item.page.referenced": "Referenced By", "item.page.referenced": "संदर्भित", + // "item.page.supplemented": "Supplemented By", "item.page.supplemented": "पूरक", + // "menu.section.icon.ldn_services": "LDN Services overview", "menu.section.icon.ldn_services": "LDN सेवा विहंगावलोकन", + // "menu.section.services": "LDN Services", "menu.section.services": "LDN सेवा", + // "menu.section.services_new": "LDN Service", "menu.section.services_new": "LDN सेवा", + // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "खाली तुम्ही {{source}} च्या सदस्यत्वांमधून प्राप्त सर्व विषय पाहू शकता", - + // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", "quality-assurance.events.description": "खाली निवडलेल्या विषयासाठी सर्व सुचवणुकींची यादी आहे {{topic}}, संबंधित {{source}}.", + // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "खाली निवडलेल्या विषयासाठी सर्व सुचवणुकींची यादी आहे {{topic}}, संबंधित {{source}} आणि ", - "quality-assurance.event.table.event.message.serviceUrl": "अभिनेता:", + // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + // TODO New key - Add a translation + "quality-assurance.event.table.event.message.serviceUrl": "Actor:", - "quality-assurance.event.table.event.message.link": "लिंक:", + // "quality-assurance.event.table.event.message.link": "Link:", + // TODO New key - Add a translation + "quality-assurance.event.table.event.message.link": "Link:", + // "service.detail.delete.cancel": "Cancel", "service.detail.delete.cancel": "रद्द करा", + // "service.detail.delete.button": "Delete service", "service.detail.delete.button": "सेवा हटवा", + // "service.detail.delete.header": "Delete service", "service.detail.delete.header": "सेवा हटवा", + // "service.detail.delete.body": "Are you sure you want to delete the current service?", "service.detail.delete.body": "तुम्हाला चालू सेवा हटवायची आहे का?", + // "service.detail.delete.confirm": "Delete service", "service.detail.delete.confirm": "सेवा हटवा", + // "service.detail.delete.success": "The service was successfully deleted.", "service.detail.delete.success": "सेवा यशस्वीरित्या हटवली गेली.", + // "service.detail.delete.error": "Something went wrong when deleting the service", "service.detail.delete.error": "सेवा हटवताना काहीतरी चूक झाली", + // "service.overview.table.id": "Services ID", "service.overview.table.id": "सेवा ID", + // "service.overview.table.name": "Name", "service.overview.table.name": "नाव", + // "service.overview.table.start": "Start time (UTC)", "service.overview.table.start": "प्रारंभ वेळ (UTC)", + // "service.overview.table.status": "Status", "service.overview.table.status": "स्थिती", + // "service.overview.table.user": "User", "service.overview.table.user": "वापरकर्ता", + // "service.overview.title": "Services Overview", "service.overview.title": "सेवा विहंगावलोकन", + // "service.overview.breadcrumbs": "Services Overview", "service.overview.breadcrumbs": "सेवा विहंगावलोकन", + // "service.overview.table.actions": "Actions", "service.overview.table.actions": "क्रिया", + // "service.overview.table.description": "Description", "service.overview.table.description": "वर्णन", + // "submission.sections.submit.progressbar.coarnotify": "COAR Notify", "submission.sections.submit.progressbar.coarnotify": "COAR सूचना", + // "submission.section.section-coar-notify.control.request-review.label": "You can request a review to one of the following services", "submission.section.section-coar-notify.control.request-review.label": "तुम्ही खालील सेवांपैकी एकाची पुनरावलोकन विनंती करू शकता", + // "submission.section.section-coar-notify.control.request-endorsement.label": "You can request an Endorsement to one of the following overlay journals", "submission.section.section-coar-notify.control.request-endorsement.label": "तुम्ही खालील ओव्हरले जर्नल्सपैकी एकाची मान्यता विनंती करू शकता", + // "submission.section.section-coar-notify.control.request-ingest.label": "You can request to ingest a copy of your submission to one of the following services", "submission.section.section-coar-notify.control.request-ingest.label": "तुमच्या सबमिशनची प्रत खालील सेवांपैकी एकाला ग्रहण करण्याची विनंती करू शकता", + // "submission.section.section-coar-notify.dropdown.no-data": "No data available", "submission.section.section-coar-notify.dropdown.no-data": "माहिती उपलब्ध नाही", + // "submission.section.section-coar-notify.dropdown.select-none": "Select none", "submission.section.section-coar-notify.dropdown.select-none": "कोणतेही निवडा", + // "submission.section.section-coar-notify.small.notification": "Select a service for {{ pattern }} of this item", "submission.section.section-coar-notify.small.notification": "या आयटमच्या {{ pattern }} साठी सेवा निवडा", - "submission.section.section-coar-notify.selection.description": "निवडलेल्या सेवेचे वर्णन:", + // "submission.section.section-coar-notify.selection.description": "Selected service's description:", + // TODO New key - Add a translation + "submission.section.section-coar-notify.selection.description": "Selected service's description:", + // "submission.section.section-coar-notify.selection.no-description": "No further information is available", "submission.section.section-coar-notify.selection.no-description": "अधिक माहिती उपलब्ध नाही", + // "submission.section.section-coar-notify.notification.error": "The selected service is not suitable for the current item. Please check the description for details about which record can be managed by this service.", "submission.section.section-coar-notify.notification.error": "निवडलेली सेवा चालू आयटमसाठी योग्य नाही. कृपया कोणते रेकॉर्ड या सेवेद्वारे व्यवस्थापित केले जाऊ शकतात याबद्दल तपशीलांसाठी वर्णन तपासा.", + // "submission.section.section-coar-notify.info.no-pattern": "No configurable patterns found.", "submission.section.section-coar-notify.info.no-pattern": "कोणतेही कॉन्फिगरेबल नमुने आढळले नाहीत.", + // "error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.", "error.validation.coarnotify.invalidfilter": "अवैध फिल्टर, कृपया दुसरी सेवा निवडा किंवा कोणतेही निवडा.", + // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.", "request-status-alert-box.accepted": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी स्वीकारले गेले आहे.", + // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी नाकारले गेले आहे.", + // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", "request-status-alert-box.tentative_rejected": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी तात्पुरते नाकारले गेले आहे. सुधारणा आवश्यक आहेत", + // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी प्रलंबित आहे.", + // "ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion", "ldn-service-button-mark-inbound-deletion": "हटवण्यासाठी समर्थित नमुना चिन्हांकित करा", + // "ldn-service-button-unmark-inbound-deletion": "Unmark supported pattern for deletion", "ldn-service-button-unmark-inbound-deletion": "हटवण्यासाठी समर्थित नमुना अनचिन्हांकित करा", + // "ldn-service-input-inbound-item-filter-dropdown": "Select Item filter for the pattern", "ldn-service-input-inbound-item-filter-dropdown": "नमुन्यासाठी आयटम फिल्टर निवडा", + // "ldn-service-input-inbound-pattern-dropdown": "Select a pattern for service", "ldn-service-input-inbound-pattern-dropdown": "सेवेच्या नमुन्यासाठी निवडा", + // "ldn-service-overview-select-delete": "Select service for deletion", "ldn-service-overview-select-delete": "हटवण्यासाठी सेवा निवडा", + // "ldn-service-overview-select-edit": "Edit LDN service", "ldn-service-overview-select-edit": "LDN सेवा संपादित करा", + // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "मोडल बंद करा", + // "ldn-service-usesActorEmailId": "Requires actor email in notifications", "ldn-service-usesActorEmailId": "सूचनांमध्ये अभिनेता ईमेल आवश्यक आहे", + // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", "ldn-service-usesActorEmailId-description": "सक्षम असल्यास, प्रारंभिक सूचना सबमिटर ईमेल समाविष्ट करतील, रेपॉझिटरी URL ऐवजी. हे सामान्यतः मान्यता किंवा पुनरावलोकन सेवांसाठी असते.", + // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "आयटम प्रकार जर्नल लेख किंवा डेटासेट आहे", + // "always_true_filter.label": "Always true", "always_true_filter.label": "नेहमी खरे", + // "automatic_processing_collection_filter_16.label": "Automatic processing", "automatic_processing_collection_filter_16.label": "स्वयंचलित प्रक्रिया", + // "dc-identifier-uri-contains-doi_condition.label": "URI contains DOI", "dc-identifier-uri-contains-doi_condition.label": "URI मध्ये DOI समाविष्ट आहे", + // "doi-filter.label": "DOI filter", "doi-filter.label": "DOI फिल्टर", + // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "दस्तऐवज प्रकार ड्रायव्हर समान आहे", + // "has-at-least-one-bitstream_condition.label": "Has at least one Bitstream", "has-at-least-one-bitstream_condition.label": "किमान एक बिटस्ट्रीम आहे", + // "has-bitstream_filter.label": "Has Bitstream", "has-bitstream_filter.label": "बिटस्ट्रीम आहे", + // "has-one-bitstream_condition.label": "Has one Bitstream", "has-one-bitstream_condition.label": "एक बिटस्ट्रीम आहे", + // "is-archived_condition.label": "Is archived", "is-archived_condition.label": "संग्रहित आहे", + // "is-withdrawn_condition.label": "Is withdrawn", "is-withdrawn_condition.label": "मागे घेतले आहे", + // "item-is-public_condition.label": "Item is public", "item-is-public_condition.label": "आयटम सार्वजनिक आहे", + // "journals_ingest_suggestion_collection_filter_18.label": "Journals ingest", "journals_ingest_suggestion_collection_filter_18.label": "जर्नल्स ग्रहण", + // "title-starts-with-pattern_condition.label": "Title starts with pattern", "title-starts-with-pattern_condition.label": "शीर्षक नमुन्याने सुरू होते", + // "type-equals-dataset_condition.label": "Type equals Dataset", "type-equals-dataset_condition.label": "प्रकार डेटासेट समान आहे", + // "type-equals-journal-article_condition.label": "Type equals Journal Article", "type-equals-journal-article_condition.label": "प्रकार जर्नल लेख समान आहे", + // "ldn.no-filter.label": "None", "ldn.no-filter.label": "कोणतेही नाही", + // "admin.notify.dashboard": "Dashboard", "admin.notify.dashboard": "डॅशबोर्ड", + // "menu.section.notify_dashboard": "Dashboard", "menu.section.notify_dashboard": "डॅशबोर्ड", + // "menu.section.coar_notify": "COAR Notify", "menu.section.coar_notify": "COAR सूचना", + // "admin-notify-dashboard.title": "Notify Dashboard", "admin-notify-dashboard.title": "सूचना डॅशबोर्ड", + // "admin-notify-dashboard.description": "The Notify dashboard monitor the general usage of the COAR Notify protocol across the repository. In the “Metrics” tab are statistics about usage of the COAR Notify protocol. In the “Logs/Inbound” and “Logs/Outbound” tabs it’s possible to search and check the individual status of each LDN message, either received or sent.", "admin-notify-dashboard.description": "सूचना डॅशबोर्ड रेपॉझिटरीमध्ये COAR सूचना प्रोटोकॉलच्या सामान्य वापराचे निरीक्षण करते. “मेट्रिक्स” टॅबमध्ये COAR सूचना प्रोटोकॉलच्या वापराबद्दल आकडेवारी आहे. “लॉग्स/इनबाउंड” आणि “लॉग्स/आउटबाउंड” टॅबमध्ये प्रत्येक LDN संदेशाची वैयक्तिक स्थिती शोधणे आणि तपासणे शक्य आहे, प्राप्त किंवा पाठवलेले.", + // "admin-notify-dashboard.metrics": "Metrics", "admin-notify-dashboard.metrics": "मेट्रिक्स", + // "admin-notify-dashboard.received-ldn": "Number of received LDN", "admin-notify-dashboard.received-ldn": "प्राप्त LDN ची संख्या", + // "admin-notify-dashboard.generated-ldn": "Number of generated LDN", "admin-notify-dashboard.generated-ldn": "उत्पन्न LDN ची संख्या", + // "admin-notify-dashboard.NOTIFY.incoming.accepted": "Accepted", "admin-notify-dashboard.NOTIFY.incoming.accepted": "स्वीकारले", + // "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "Accepted inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "स्वीकारलेल्या इनबाउंड सूचनां", - "admin-notify-logs.NOTIFY.incoming.accepted": "सध्या प्रदर्शित: स्वीकारलेल्या सूचनां", + // "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + // "admin-notify-dashboard.NOTIFY.incoming.processed": "Processed LDN", "admin-notify-dashboard.NOTIFY.incoming.processed": "प्रक्रिया केलेले LDN", + // "admin-notify-dashboard.NOTIFY.incoming.processed.description": "Processed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.processed.description": "प्रक्रिया केलेल्या इनबाउंड सूचनां", - "admin-notify-logs.NOTIFY.incoming.processed": "सध्या प्रदर्शित: प्रक्रिया केलेले LDN", + // "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", - "admin-notify-logs.NOTIFY.incoming.failure": "सध्या प्रदर्शित: अयशस्वी सूचनां", + // "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + // "admin-notify-dashboard.NOTIFY.incoming.failure": "Failure", "admin-notify-dashboard.NOTIFY.incoming.failure": "अयशस्वी", + // "admin-notify-dashboard.NOTIFY.incoming.failure.description": "Failed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.failure.description": "अयशस्वी इनबाउंड सूचनां", - "admin-notify-logs.NOTIFY.outgoing.failure": "सध्या प्रदर्शित: अयशस्वी सूचनां", + // "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.failure": "Failure", "admin-notify-dashboard.NOTIFY.outgoing.failure": "अयशस्वी", + // "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "Failed outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "अयशस्वी आउटबाउंड सूचनां", - "admin-notify-logs.NOTIFY.incoming.untrusted": "सध्या प्रदर्शित: अविश्वसनीय सूचनां", + // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "अविश्वसनीय", + // "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "Inbound notifications not trusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "अविश्वसनीय इनबाउंड सूचनां", - "admin-notify-logs.NOTIFY.incoming.delivered": "सध्या प्रदर्शित: वितरित सूचनां", + // "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + // "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "Inbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "यशस्वीरित्या वितरित इनबाउंड सूचनां", + // "admin-notify-dashboard.NOTIFY.outgoing.delivered": "Delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered": "वितरित", - "admin-notify-logs.NOTIFY.outgoing.delivered": "सध्या प्रदर्शित: वितरित सूचनां", + // "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "Outbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "यशस्वीरित्या वितरित आउटबाउंड सूचनां", - "admin-notify-logs.NOTIFY.outgoing.queued": "सध्या प्रदर्शित: रांगेत असलेल्या सूचनां", + // "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "Notifications currently queued", "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "सध्या रांगेत असलेल्या सूचनां", + // "admin-notify-dashboard.NOTIFY.outgoing.queued": "Queued", "admin-notify-dashboard.NOTIFY.outgoing.queued": "रांगेत", - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "सध्या प्रदर्शित: पुन्हा प्रयत्न करण्यासाठी रांगेत असलेल्या सूचनां", + // "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "Queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "पुन्हा प्रयत्न करण्यासाठी रांगेत", + // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "Notifications currently queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "सध्या पुन्हा प्रयत्न करण्यासाठी रांगेत असलेल्या सूचनां", + // "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "संबंधित आयटम", + // "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "Items related to inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "इनबाउंड सूचनांशी संबंधित आयटम", + // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "संबंधित आयटम", + // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "Items related to outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "आउटबाउंड सूचनांशी संबंधित आयटम", + // "admin.notify.dashboard.breadcrumbs": "Dashboard", "admin.notify.dashboard.breadcrumbs": "डॅशबोर्ड", + // "admin.notify.dashboard.inbound": "Inbound messages", "admin.notify.dashboard.inbound": "इनबाउंड संदेश", + // "admin.notify.dashboard.inbound-logs": "Logs/Inbound", "admin.notify.dashboard.inbound-logs": "लॉग्स/इनबाउंड", - "admin.notify.dashboard.filter": "फिल्टर: ", + // "admin.notify.dashboard.filter": "Filter: ", + // TODO New key - Add a translation + "admin.notify.dashboard.filter": "Filter: ", + // "search.filters.applied.f.relateditem": "Related items", "search.filters.applied.f.relateditem": "संबंधित आयटम", + // "search.filters.applied.f.ldn_service": "LDN Service", "search.filters.applied.f.ldn_service": "LDN सेवा", + // "search.filters.applied.f.notifyReview": "Notify Review", "search.filters.applied.f.notifyReview": "सूचना पुनरावलोकन", + // "search.filters.applied.f.notifyEndorsement": "Notify Endorsement", "search.filters.applied.f.notifyEndorsement": "सूचना मान्यता", + // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "सूचना संबंध", + // "search.filters.applied.f.access_status": "Access type", "search.filters.applied.f.access_status": "प्रवेश प्रकार", + // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "शेवटची प्रक्रिया वेळ ", + // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "किमान श्रेणी", + // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "कमाल श्रेणी", + // "search.filters.applied.f.queue_last_start_time.min": "Min range", "search.filters.applied.f.queue_last_start_time.min": "किमान श्रेणी", + // "search.filters.applied.f.queue_last_start_time.max": "Max range", "search.filters.applied.f.queue_last_start_time.max": "कमाल श्रेणी", + // "admin.notify.dashboard.outbound": "Outbound messages", "admin.notify.dashboard.outbound": "आउटबाउंड संदेश", + // "admin.notify.dashboard.outbound-logs": "Logs/Outbound", "admin.notify.dashboard.outbound-logs": "लॉग्स/आउटबाउंड", + // "NOTIFY.incoming.search.results.head": "Incoming", "NOTIFY.incoming.search.results.head": "इनकमिंग", + // "search.filters.filter.relateditem.head": "Related item", "search.filters.filter.relateditem.head": "संबंधित आयटम", + // "search.filters.filter.origin.head": "Origin", "search.filters.filter.origin.head": "मूळ", + // "search.filters.filter.ldn_service.head": "LDN Service", "search.filters.filter.ldn_service.head": "LDN सेवा", + // "search.filters.filter.target.head": "Target", "search.filters.filter.target.head": "लक्ष्य", + // "search.filters.filter.queue_status.head": "Queue status", "search.filters.filter.queue_status.head": "रांग स्थिती", + // "search.filters.filter.activity_stream_type.head": "Activity stream type", "search.filters.filter.activity_stream_type.head": "क्रियाकलाप प्रवाह प्रकार", + // "search.filters.filter.coar_notify_type.head": "COAR Notify type", "search.filters.filter.coar_notify_type.head": "COAR सूचना प्रकार", + // "search.filters.filter.notification_type.head": "Notification type", "search.filters.filter.notification_type.head": "सूचना प्रकार", + // "search.filters.filter.relateditem.label": "Search related items", "search.filters.filter.relateditem.label": "संबंधित आयटम शोधा", + // "search.filters.filter.queue_status.label": "Search queue status", "search.filters.filter.queue_status.label": "रांग स्थिती शोधा", + // "search.filters.filter.target.label": "Search target", "search.filters.filter.target.label": "लक्ष्य शोधा", + // "search.filters.filter.activity_stream_type.label": "Search activity stream type", "search.filters.filter.activity_stream_type.label": "क्रियाकलाप प्रवाह प्रकार शोधा", + // "search.filters.applied.f.queue_status": "Queue Status", "search.filters.applied.f.queue_status": "रांग स्थिती", + // "search.filters.queue_status.0,authority": "Untrusted Ip", "search.filters.queue_status.0,authority": "अविश्वसनीय IP", + // "search.filters.queue_status.1,authority": "Queued", "search.filters.queue_status.1,authority": "रांगेत", + // "search.filters.queue_status.2,authority": "Processing", "search.filters.queue_status.2,authority": "प्रक्रिया", + // "search.filters.queue_status.3,authority": "Processed", "search.filters.queue_status.3,authority": "प्रक्रिया पूर्ण", + // "search.filters.queue_status.4,authority": "Failed", "search.filters.queue_status.4,authority": "अयशस्वी", + // "search.filters.queue_status.5,authority": "Untrusted", "search.filters.queue_status.5,authority": "अविश्वसनीय", + // "search.filters.queue_status.6,authority": "Unmapped Action", "search.filters.queue_status.6,authority": "नकाशा नसलेली क्रिया", + // "search.filters.queue_status.7,authority": "Queued for retry", "search.filters.queue_status.7,authority": "पुन्हा प्रयत्नासाठी रांगेत", + // "search.filters.applied.f.activity_stream_type": "Activity stream type", "search.filters.applied.f.activity_stream_type": "क्रियाकलाप प्रवाह प्रकार", + // "search.filters.applied.f.coar_notify_type": "COAR Notify type", "search.filters.applied.f.coar_notify_type": "COAR सूचना प्रकार", + // "search.filters.applied.f.notification_type": "Notification type", "search.filters.applied.f.notification_type": "सूचना प्रकार", + // "search.filters.filter.coar_notify_type.label": "Search COAR Notify type", "search.filters.filter.coar_notify_type.label": "COAR सूचना प्रकार शोधा", + // "search.filters.filter.notification_type.label": "Search notification type", "search.filters.filter.notification_type.label": "सूचना प्रकार शोधा", + // "search.filters.filter.relateditem.placeholder": "Related items", "search.filters.filter.relateditem.placeholder": "संबंधित आयटम", + // "search.filters.filter.target.placeholder": "Target", "search.filters.filter.target.placeholder": "लक्ष्य", + // "search.filters.filter.origin.label": "Search source", "search.filters.filter.origin.label": "स्रोत शोधा", + // "search.filters.filter.origin.placeholder": "Source", "search.filters.filter.origin.placeholder": "स्रोत", + // "search.filters.filter.ldn_service.label": "Search LDN Service", "search.filters.filter.ldn_service.label": "LDN सेवा शोधा", + // "search.filters.filter.ldn_service.placeholder": "LDN Service", "search.filters.filter.ldn_service.placeholder": "LDN सेवा", + // "search.filters.filter.queue_status.placeholder": "Queue status", "search.filters.filter.queue_status.placeholder": "रांग स्थिती", + // "search.filters.filter.activity_stream_type.placeholder": "Activity stream type", "search.filters.filter.activity_stream_type.placeholder": "क्रियाकलाप प्रवाह प्रकार", + // "search.filters.filter.coar_notify_type.placeholder": "COAR Notify type", "search.filters.filter.coar_notify_type.placeholder": "COAR सूचना प्रकार", + // "search.filters.filter.notification_type.placeholder": "Notification", "search.filters.filter.notification_type.placeholder": "सूचना", + // "search.filters.filter.notifyRelation.head": "Notify Relation", "search.filters.filter.notifyRelation.head": "सूचना संबंध", + // "search.filters.filter.notifyRelation.label": "Search Notify Relation", "search.filters.filter.notifyRelation.label": "सूचना संबंध शोधा", + // "search.filters.filter.notifyRelation.placeholder": "Notify Relation", "search.filters.filter.notifyRelation.placeholder": "सूचना संबंध", + // "search.filters.filter.notifyReview.head": "Notify Review", "search.filters.filter.notifyReview.head": "सूचना पुनरावलोकन", + // "search.filters.filter.notifyReview.label": "Search Notify Review", "search.filters.filter.notifyReview.label": "सूचना पुनरावलोकन शोधा", + // "search.filters.filter.notifyReview.placeholder": "Notify Review", "search.filters.filter.notifyReview.placeholder": "सूचना पुनरावलोकन", + // "search.filters.coar_notify_type.coar-notify:ReviewAction": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction": "पुनरावलोकन क्रिया", + // "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "पुनरावलोकन क्रिया", + // "notify-detail-modal.coar-notify:ReviewAction": "Review action", "notify-detail-modal.coar-notify:ReviewAction": "पुनरावलोकन क्रिया", + // "search.filters.coar_notify_type.coar-notify:EndorsementAction": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction": "मान्यता क्रिया", + // "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "मान्यता क्रिया", + // "notify-detail-modal.coar-notify:EndorsementAction": "Endorsement action", "notify-detail-modal.coar-notify:EndorsementAction": "मान्यता क्रिया", + // "search.filters.coar_notify_type.coar-notify:IngestAction": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction": "ग्रहण क्रिया", + // "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ग्रहण क्रिया", + // "notify-detail-modal.coar-notify:IngestAction": "Ingest action", "notify-detail-modal.coar-notify:IngestAction": "ग्रहण क्रिया", + // "search.filters.coar_notify_type.coar-notify:RelationshipAction": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction": "संबंध क्रिया", + // "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "संबंध क्रिया", + // "notify-detail-modal.coar-notify:RelationshipAction": "Relationship action", "notify-detail-modal.coar-notify:RelationshipAction": "संबंध क्रिया", + // "search.filters.queue_status.QUEUE_STATUS_QUEUED": "Queued", "search.filters.queue_status.QUEUE_STATUS_QUEUED": "रांगेत", + // "notify-detail-modal.QUEUE_STATUS_QUEUED": "Queued", "notify-detail-modal.QUEUE_STATUS_QUEUED": "रांगेत", + // "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "पुन्हा प्रयत्नासाठी रांगेत", + // "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "पुन्हा प्रयत्नासाठी रांगेत", + // "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "Processing", "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "प्रक्रिया", + // "notify-detail-modal.QUEUE_STATUS_PROCESSING": "Processing", "notify-detail-modal.QUEUE_STATUS_PROCESSING": "प्रक्रिया", + // "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "Processed", "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "प्रक्रिया पूर्ण", + // "notify-detail-modal.QUEUE_STATUS_PROCESSED": "Processed", "notify-detail-modal.QUEUE_STATUS_PROCESSED": "प्रक्रिया पूर्ण", + // "search.filters.queue_status.QUEUE_STATUS_FAILED": "Failed", "search.filters.queue_status.QUEUE_STATUS_FAILED": "अयशस्वी", + // "notify-detail-modal.QUEUE_STATUS_FAILED": "Failed", "notify-detail-modal.QUEUE_STATUS_FAILED": "अयशस्वी", + // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "Untrusted", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "अविश्वसनीय", + // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "अविश्वसनीय IP", + // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "Untrusted", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "अविश्वसनीय", + // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "अविश्वसनीय IP", + // "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "नकाशा नसलेली क्रिया", + // "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "नकाशा नसलेली क्रिया", + // "sorting.queue_last_start_time.DESC": "Last started queue Descending", "sorting.queue_last_start_time.DESC": "शेवटची सुरू केलेली रांग उतरणे", + // "sorting.queue_last_start_time.ASC": "Last started queue Ascending", "sorting.queue_last_start_time.ASC": "शेवटची सुरू केलेली रांग चढणे", + // "sorting.queue_attempts.DESC": "Queue attempted Descending", "sorting.queue_attempts.DESC": "रांग प्रयत्न उतरणे", + // "sorting.queue_attempts.ASC": "Queue attempted Ascending", "sorting.queue_attempts.ASC": "रांग प्रयत्न चढणे", + // "NOTIFY.incoming.involvedItems.search.results.head": "Items involved in incoming LDN", "NOTIFY.incoming.involvedItems.search.results.head": "इनकमिंग LDN मध्ये सहभागी आयटम", + // "NOTIFY.outgoing.involvedItems.search.results.head": "Items involved in outgoing LDN", "NOTIFY.outgoing.involvedItems.search.results.head": "आउटगोइंग LDN मध्ये सहभागी आयटम", + // "type.notify-detail-modal": "Type", "type.notify-detail-modal": "प्रकार", + // "id.notify-detail-modal": "Id", "id.notify-detail-modal": "Id", + // "coarNotifyType.notify-detail-modal": "COAR Notify type", "coarNotifyType.notify-detail-modal": "COAR सूचना प्रकार", + // "activityStreamType.notify-detail-modal": "Activity stream type", "activityStreamType.notify-detail-modal": "क्रियाकलाप प्रवाह प्रकार", + // "inReplyTo.notify-detail-modal": "In reply to", "inReplyTo.notify-detail-modal": "याला उत्तर", + // "object.notify-detail-modal": "Repository Item", "object.notify-detail-modal": "रेपॉझिटरी आयटम", + // "context.notify-detail-modal": "Repository Item", "context.notify-detail-modal": "रेपॉझिटरी आयटम", + // "queueAttempts.notify-detail-modal": "Queue attempts", "queueAttempts.notify-detail-modal": "रांग प्रयत्न", + // "queueLastStartTime.notify-detail-modal": "Queue last started", "queueLastStartTime.notify-detail-modal": "रांग शेवटची सुरू केली", + // "origin.notify-detail-modal": "LDN Service", "origin.notify-detail-modal": "LDN सेवा", + // "target.notify-detail-modal": "LDN Service", "target.notify-detail-modal": "LDN सेवा", + // "queueStatusLabel.notify-detail-modal": "Queue status", "queueStatusLabel.notify-detail-modal": "रांग स्थिती", + // "queueTimeout.notify-detail-modal": "Queue timeout", "queueTimeout.notify-detail-modal": "रांग टाइमआउट", + // "notify-message-modal.title": "Message Detail", "notify-message-modal.title": "संदेश तपशील", + // "notify-message-modal.show-message": "Show message", "notify-message-modal.show-message": "संदेश दाखवा", + // "notify-message-result.timestamp": "Timestamp", "notify-message-result.timestamp": "टाइमस्टॅम्प", + // "notify-message-result.repositoryItem": "Repository Item", "notify-message-result.repositoryItem": "रेपॉझिटरी आयटम", + // "notify-message-result.ldnService": "LDN Service", "notify-message-result.ldnService": "LDN सेवा", + // "notify-message-result.type": "Type", "notify-message-result.type": "प्रकार", + // "notify-message-result.status": "Status", "notify-message-result.status": "स्थिती", + // "notify-message-result.action": "Action", "notify-message-result.action": "क्रिया", + // "notify-message-result.detail": "Detail", "notify-message-result.detail": "तपशील", + // "notify-message-result.reprocess": "Reprocess", "notify-message-result.reprocess": "पुन्हा प्रक्रिया करा", + // "notify-queue-status.processed": "Processed", "notify-queue-status.processed": "प्रक्रिया पूर्ण", + // "notify-queue-status.failed": "Failed", "notify-queue-status.failed": "अयशस्वी", + // "notify-queue-status.queue_retry": "Queued for retry", "notify-queue-status.queue_retry": "पुन्हा प्रयत्नासाठी रांगेत", + // "notify-queue-status.unmapped_action": "Unmapped action", "notify-queue-status.unmapped_action": "नकाशा नसलेली क्रिया", + // "notify-queue-status.processing": "Processing", "notify-queue-status.processing": "प्रक्रिया", + // "notify-queue-status.queued": "Queued", "notify-queue-status.queued": "रांगेत", + // "notify-queue-status.untrusted": "Untrusted", "notify-queue-status.untrusted": "अविश्वसनीय", + // "ldnService.notify-detail-modal": "LDN Service", "ldnService.notify-detail-modal": "LDN सेवा", + // "relatedItem.notify-detail-modal": "Related Item", "relatedItem.notify-detail-modal": "संबंधित आयटम", + // "search.filters.filter.notifyEndorsement.head": "Notify Endorsement", "search.filters.filter.notifyEndorsement.head": "सूचना मान्यता", + // "search.filters.filter.notifyEndorsement.placeholder": "Notify Endorsement", "search.filters.filter.notifyEndorsement.placeholder": "सूचना मान्यता", + // "search.filters.filter.notifyEndorsement.label": "Search Notify Endorsement", "search.filters.filter.notifyEndorsement.label": "सूचना मान्यता शोधा", + // "form.date-picker.placeholder.year": "Year", "form.date-picker.placeholder.year": "वर्ष", + // "form.date-picker.placeholder.month": "Month", "form.date-picker.placeholder.month": "महिना", + // "form.date-picker.placeholder.day": "Day", "form.date-picker.placeholder.day": "दिवस", + // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "क्रिएटिव्ह कॉमन्स परवाना", + // "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as", "item.page.cc.license.disclaimer": "इतरत्र नमूद केल्याशिवाय, या आयटमचा परवाना खालीलप्रमाणे वर्णन केला आहे", + // "browse.search-form.placeholder": "Search the repository", "browse.search-form.placeholder": "रेपॉझिटरी शोधा", + // "file-download-link.download": "Download ", "file-download-link.download": "डाउनलोड ", + // "register-page.registration.aria.label": "Enter your e-mail address", "register-page.registration.aria.label": "तुमचा ई-मेल पत्ता प्रविष्ट करा", + // "forgot-email.form.aria.label": "Enter your e-mail address", "forgot-email.form.aria.label": "तुमचा ई-मेल पत्ता प्रविष्ट करा", + // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "पृष्ठ पुन्हा लोड केले जाईल. फिल्टर {{ filter }} निवडले आहे.", + // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", "live-region.ordering.instructions": "{{ itemName }} पुनर्व्यवस्थित करण्यासाठी स्पेसबार दाबा.", - "live-region.ordering.status": "{{ itemName }}, पकडले. सूचीतील वर्तमान स्थिती: {{ index }} of {{ length }}. स्थिती बदलण्यासाठी वर आणि खाली बाण की दाबा, ड्रॉप करण्यासाठी स्पेसबार, रद्द करण्यासाठी एस्केप.", + // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + // TODO New key - Add a translation + "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", "live-region.ordering.moved": "{{ itemName }}, स्थिती {{ index }} of {{ length }} वर हलवले. स्थिती बदलण्यासाठी वर आणि खाली बाण की दाबा, ड्रॉप करण्यासाठी स्पेसबार, रद्द करण्यासाठी एस्केप.", + // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", "live-region.ordering.dropped": "{{ itemName }}, स्थिती {{ index }} of {{ length }} वर ड्रॉप केले.", + // "dynamic-form-array.sortable-list.label": "Sortable list", "dynamic-form-array.sortable-list.label": "सॉर्टेबल सूची", + // "external-login.component.or": "or", "external-login.component.or": "किंवा", + // "external-login.confirmation.header": "Information needed to complete the login process", "external-login.confirmation.header": "लॉगिन प्रक्रिया पूर्ण करण्यासाठी माहिती आवश्यक आहे", + // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", "external-login.noEmail.informationText": "{{authMethod}} कडून प्राप्त झालेली माहिती लॉगिन प्रक्रिया पूर्ण करण्यासाठी पुरेशी नाही. कृपया खालील माहिती द्या, किंवा विद्यमान खात्याशी तुमचे {{authMethod}} जोडण्यासाठी वेगळ्या पद्धतीने लॉगिन करा.", + // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", "external-login.haveEmail.informationText": "असे दिसते की तुम्ही या प्रणालीमध्ये अद्याप खाते तयार केलेले नाही. जर असे असेल तर, कृपया {{authMethod}} कडून प्राप्त झालेली माहिती पुष्टी करा आणि तुमच्यासाठी नवीन खाते तयार केले जाईल. अन्यथा, जर तुमच्याकडे आधीपासूनच प्रणालीमध्ये खाते असेल, तर कृपया विद्यमान खात्यात वापरलेला ईमेल पत्ता जुळवण्यासाठी ईमेल पत्ता अद्यतनित करा किंवा विद्यमान खात्याशी तुमचे {{authMethod}} जोडण्यासाठी वेगळ्या पद्धतीने लॉगिन करा.", + // "external-login.confirm-email.header": "Confirm or update email", "external-login.confirm-email.header": "ईमेल पुष्टी करा किंवा अद्यतनित करा", + // "external-login.confirmation.email-required": "Email is required.", "external-login.confirmation.email-required": "ईमेल आवश्यक आहे.", + // "external-login.confirmation.email-label": "User Email", "external-login.confirmation.email-label": "वापरकर्ता ईमेल", + // "external-login.confirmation.email-invalid": "Invalid email format.", "external-login.confirmation.email-invalid": "अवैध ईमेल स्वरूप.", + // "external-login.confirm.button.label": "Confirm this email", "external-login.confirm.button.label": "हा ईमेल पुष्टी करा", + // "external-login.confirm-email-sent.header": "Confirmation email sent", "external-login.confirm-email-sent.header": "पुष्टीकरण ईमेल पाठवले", + // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", "external-login.confirm-email-sent.info": " आम्ही दिलेल्या पत्त्यावर पुष्टीकरण ईमेल पाठवले आहे.
कृपया लॉगिन प्रक्रिया पूर्ण करण्यासाठी ईमेलमधील सूचनांचे अनुसरण करा.", + // "external-login.provide-email.header": "Provide email", "external-login.provide-email.header": "ईमेल द्या", + // "external-login.provide-email.button.label": "Send Verification link", "external-login.provide-email.button.label": "पुष्टीकरण लिंक पाठवा", + // "external-login-validation.review-account-info.header": "Review your account information", "external-login-validation.review-account-info.header": "तुमच्या खात्याची माहिती पुनरावलोकन करा", + // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", "external-login-validation.review-account-info.info": "ORCID कडून प्राप्त झालेली माहिती तुमच्या प्रोफाइलमध्ये नोंदवलेल्या माहितीपेक्षा वेगळी आहे.
कृपया त्यांचे पुनरावलोकन करा आणि तुम्हाला कोणतीही माहिती अद्यतनित करायची आहे का ते ठरवा. जतन केल्यानंतर तुम्हाला तुमच्या प्रोफाइल पृष्ठावर पुनर्निर्देशित केले जाईल.", + // "external-login-validation.review-account-info.table.header.information": "Information", "external-login-validation.review-account-info.table.header.information": "माहिती", + // "external-login-validation.review-account-info.table.header.received-value": "Received value", "external-login-validation.review-account-info.table.header.received-value": "प्राप्त मूल्य", + // "external-login-validation.review-account-info.table.header.current-value": "Current value", "external-login-validation.review-account-info.table.header.current-value": "वर्तमान मूल्य", + // "external-login-validation.review-account-info.table.header.action": "Override", "external-login-validation.review-account-info.table.header.action": "ओव्हरराइड", + // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", "external-login-validation.review-account-info.table.row.not-applicable": "N/A", + // "on-label": "ON", "on-label": "चालू", + // "off-label": "OFF", "off-label": "बंद", + // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", "review-account-info.merge-data.notification.success": "तुमची खात्याची माहिती यशस्वीरित्या अद्यतनित केली गेली आहे", + // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", "review-account-info.merge-data.notification.error": "तुमची खात्याची माहिती अद्यतनित करताना काहीतरी चूक झाली", + // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", "review-account-info.alert.error.content": "काहीतरी चूक झाली. कृपया नंतर पुन्हा प्रयत्न करा.", + // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", "external-login-page.provide-email.notifications.error": "काहीतरी चूक झाली. ईमेल पत्ता वगळला गेला किंवा ऑपरेशन वैध नाही.", + // "external-login.error.notification": "There was an error while processing your request. Please try again later.", "external-login.error.notification": "तुमची विनंती प्रक्रिया करताना एक त्रुटी आली. कृपया नंतर पुन्हा प्रयत्न करा.", + // "external-login.connect-to-existing-account.label": "Connect to an existing user", "external-login.connect-to-existing-account.label": "विद्यमान वापरकर्त्याशी कनेक्ट करा", + // "external-login.modal.label.close": "Close", "external-login.modal.label.close": "बंद करा", + // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", "external-login-page.provide-email.create-account.notifications.error.header": "काहीतरी चूक झाली", + // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", "external-login-page.provide-email.create-account.notifications.error.content": "कृपया तुमचा ईमेल पत्ता पुन्हा तपासा आणि पुन्हा प्रयत्न करा.", + // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", "external-login-page.confirm-email.create-account.notifications.error.no-netId": "या ईमेल खात्याशी काहीतरी चूक झाली. पुन्हा प्रयत्न करा किंवा लॉगिन करण्यासाठी वेगळा पद्धत वापरा.", + // "external-login-page.orcid-confirmation.firstname": "First name", "external-login-page.orcid-confirmation.firstname": "पहिले नाव", + // "external-login-page.orcid-confirmation.firstname.label": "First name", "external-login-page.orcid-confirmation.firstname.label": "पहिले नाव", + // "external-login-page.orcid-confirmation.lastname": "Last name", "external-login-page.orcid-confirmation.lastname": "आडनाव", + // "external-login-page.orcid-confirmation.lastname.label": "Last name", "external-login-page.orcid-confirmation.lastname.label": "आडनाव", + // "external-login-page.orcid-confirmation.netid": "Account Identifier", "external-login-page.orcid-confirmation.netid": "खाते ओळखकर्ता", + // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", + // "external-login-page.orcid-confirmation.email": "Email", "external-login-page.orcid-confirmation.email": "ईमेल", + // "external-login-page.orcid-confirmation.email.label": "Email", "external-login-page.orcid-confirmation.email.label": "ईमेल", + // "search.filters.access_status.open.access": "Open access", "search.filters.access_status.open.access": "मुक्त प्रवेश", + // "search.filters.access_status.restricted": "Restricted access", "search.filters.access_status.restricted": "मर्यादित प्रवेश", + // "search.filters.access_status.embargo": "Embargoed access", "search.filters.access_status.embargo": "प्रतिबंधित प्रवेश", + // "search.filters.access_status.metadata.only": "Metadata only", "search.filters.access_status.metadata.only": "फक्त मेटाडेटा", + // "search.filters.access_status.unknown": "Unknown", "search.filters.access_status.unknown": "अज्ञात", + // "metadata-export-filtered-items.tooltip": "Export report output as CSV", "metadata-export-filtered-items.tooltip": "CSV म्हणून अहवाल आउटपुट निर्यात करा", + // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", "metadata-export-filtered-items.submit.success": "CSV निर्यात यशस्वी झाली.", + // "metadata-export-filtered-items.submit.error": "CSV export failed.", "metadata-export-filtered-items.submit.error": "CSV निर्यात अयशस्वी झाली.", + // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", "metadata-export-filtered-items.columns.warning": "CSV निर्यात आपोआप सर्व संबंधित फील्ड समाविष्ट करते, त्यामुळे या सूचीतील निवडींचा विचार केला जात नाही.", + // "embargo.listelement.badge": "Embargo until {{ date }}", "embargo.listelement.badge": "{{ date }} पर्यंत प्रतिबंध", + // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", "metadata-export-search.submit.error.limit-exceeded": "फक्त पहिली {{limit}} आयटम निर्यात केली जातील", + + // "file-download-link.request-copy": "Request a copy of ", + // TODO New key - Add a translation + "file-download-link.request-copy": "Request a copy of ", + + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + + } \ No newline at end of file diff --git a/src/assets/i18n/nl.json5 b/src/assets/i18n/nl.json5 index 6f15cef68f1..159d0136df3 100644 --- a/src/assets/i18n/nl.json5 +++ b/src/assets/i18n/nl.json5 @@ -3657,13 +3657,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Fout bij het inladen van communities op het hoogste niveau", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "U moet de invoerlicentie goedkeuren om de invoer af te werken. Indien u deze licentie momenteel niet kan of mag goedkeuren, kunt u uw werk opslaan en de invoer later afwerken. U kunt dit nieuwe item ook verwijderen indien u niet voldoet aan de vereisten van de invoerlicentie.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Deze invoer wordt ingeperkt door dit patroon: {{ pattern }}.", @@ -10435,6 +10448,10 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -10628,6 +10645,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Upload geslaagd", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13819,5 +13848,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/pl.json5 b/src/assets/i18n/pl.json5 index 6f5f0f1c518..b6160cbc918 100644 --- a/src/assets/i18n/pl.json5 +++ b/src/assets/i18n/pl.json5 @@ -2901,12 +2901,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Błąd podczas pobierania nadrzędnego zbioru", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Musisz wyrazić tę zgodę, aby przesłać swoje zgłoszenie. Jeśli nie możesz wyrazić zgody w tym momencie, możesz zapisać swoją pracę i wrócić do niej później lub usunąć zgłoszenie.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Musisz przyznać tę licencję cc, aby zakończyć zgłoszenie. Jeśli nie możesz przyznać licencji CC w tej chwili, możesz zapisać swoją pracę i wrócić później lub usunąć zgłoszenie.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Te dane wejściowe są ograniczone przez aktualny wzór: {{ pattern }}.", @@ -8393,6 +8406,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licencja Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Odzyskaj", @@ -8558,6 +8575,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Przesyłanie udane", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Jeśli checkbox jest zaznaczony, pozycja będzie wyświetlana w wynikach wyszukiwania. Jeśli checkbox jest odznaczony, dostęp do pozycji będzie dostępny tylko przez bezpośredni link, pozycja nie będzie wyświetlana w wynikach wyszukiwania.", @@ -10953,5 +10982,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/pt-BR.json5 b/src/assets/i18n/pt-BR.json5 index 7d35b5ccfe8..53719494754 100644 --- a/src/assets/i18n/pt-BR.json5 +++ b/src/assets/i18n/pt-BR.json5 @@ -2926,13 +2926,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erro ao carregar as comunidade de nível superior", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Você deve concordar com esta licença para completar sua submissão. Se você não estiver de acordo com esta licença neste momento você pode salvar seu trabalho para continuar depois ou remover a submissão.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Este campo está restrito ao seguinte padrão: {{ pattern }}.", @@ -8507,6 +8520,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licença Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8672,6 +8689,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Enviado com sucesso", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Quando marcado, este item poderá ser descoberto na pesquisa/navegação. Quando desmarcado, o item estará disponível apenas por meio de um link direto e nunca aparecerá na pesquisa/navegação.", @@ -11139,9 +11168,14 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", "item.preview.organization.url": "URL", + // "item.preview.organization.address.addressLocality": "City", "item.preview.organization.address.addressLocality": "Cidade", + // "item.preview.organization.alternateName": "Alternative name", "item.preview.organization.alternateName": "Nome alternativo", -} + + +} \ No newline at end of file diff --git a/src/assets/i18n/pt-PT.json5 b/src/assets/i18n/pt-PT.json5 index 9ad0690d571..6c6ac019157 100644 --- a/src/assets/i18n/pt-PT.json5 +++ b/src/assets/i18n/pt-PT.json5 @@ -2902,12 +2902,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erro ao carregar as comunidade de nível superior!", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Deve concordar com esta licença para completar o depósito. Se não estiver de acordo com a licença ou pretende ponderar, pode guardar este trabalho e retomar posteriormente ou remover definitivamente este depósito.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Deve concordar com esta licença CC para completar o depósito. Se não estiver de acordo com a licença ou pretende ponderar, pode guardar o seu trabalho e retomar posteriormente ou remover definitivamente este depósito.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Este campo está restrito ao seguinte padrão: {{ pattern }}.", @@ -8487,6 +8500,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Associar uma licença Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8653,6 +8670,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Enviado com sucesso", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Quando selecionado, este item será pesquisável na pesquisa/navegação. Se não estiver selecionado, o item apenas estará disponível através uma ligação direta (link) e não aparecerá na pesquisa/navegação.", @@ -11046,5 +11075,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/ru.json5 b/src/assets/i18n/ru.json5 index c56c9f7ffb8..92258be4434 100644 --- a/src/assets/i18n/ru.json5 +++ b/src/assets/i18n/ru.json5 @@ -1,5 +1,4 @@ { - // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "У вас нет прав доступа к этой странице. Вы можете использовать кнопку ниже, чтобы вернуться на домашнюю страницу.", @@ -51,6 +50,10 @@ // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "Произошла ошибка при входе через ORCID. Убедитесь, что вы поделились адресом электронной почты своей учетной записи ORCID с DSpace. Если ошибка повторяется, обратитесь к администратору.", + // "listelement.badge.access-status": "Access status:", + // TODO New key - Add a translation + "listelement.badge.access-status": "Access status:", + // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "Эмбарго", @@ -456,6 +459,22 @@ // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "Удалить \"{{ name }}\"", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "Нет пользователей для отображения.", @@ -648,7 +667,8 @@ // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "Удалить группу \"{{ dsoName }}\"", - // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\"", + // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO Source message changed - Revise the translation "admin.access-control.groups.form.delete-group.modal.info": "Вы уверены, что хотите удалить группу \"{{ dsoName }}\"?", // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", @@ -1104,6 +1124,10 @@ // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Элемент содержит по крайней мере одну миниатюру, недоступную анонимным пользователям", + // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", + // TODO New key - Add a translation + "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", + // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Элемент содержит метаданные, недоступные анонимным пользователям", @@ -1188,7 +1212,8 @@ // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "Вы можете перетащить или выбрать CSV-файлы, содержащие пакетные операции с метаданными", - // "admin.batch-import.page.help": "Select the Collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the Items to import", + // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", + // TODO Source message changed - Revise the translation "admin.batch-import.page.help": "Выберите коллекцию для импорта. Затем перетащите или выберите ZIP-файл в формате SAF, содержащий элементы для импорта", // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", @@ -1491,6 +1516,30 @@ // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "Произошла ошибка при отправке запроса элемента.", + // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", + + // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", + + // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", + + // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", + + // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", + + // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", + // "browse.back.all-results": "All browse results", "browse.back.all-results": "Все результаты поиска", @@ -1557,6 +1606,18 @@ // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "Просмотр по названию", + // "browse.metadata.map": "Browse by Geolocation", + // TODO New key - Add a translation + "browse.metadata.map": "Browse by Geolocation", + + // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", + // TODO New key - Add a translation + "browse.metadata.map.breadcrumbs": "Browse by Geolocation", + + // "browse.metadata.map.count.items": "items", + // TODO New key - Add a translation + "browse.metadata.map.count.items": "items", + // "pagination.next.button": "Next", "pagination.next.button": "Следующая", @@ -1674,7 +1735,8 @@ // "collection.create.head": "Create a Collection", "collection.create.head": "Создать коллекцию", - // "collection.create.notifications.success": "Successfully created the Collection", + // "collection.create.notifications.success": "Successfully created the collection", + // TODO Source message changed - Revise the translation "collection.create.notifications.success": "Коллекция успешно создана", // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", @@ -1782,10 +1844,12 @@ // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "Логотип коллекции", - // "collection.edit.logo.notifications.add.error": "Uploading Collection logo failed. Please verify the content before retrying.", + // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", + // TODO Source message changed - Revise the translation "collection.edit.logo.notifications.add.error": "Ошибка загрузки логотипа коллекции. Проверьте содержимое и повторите попытку.", - // "collection.edit.logo.notifications.add.success": "Upload Collection logo successful.", + // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", + // TODO Source message changed - Revise the translation "collection.edit.logo.notifications.add.success": "Логотип коллекции успешно загружен.", // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", @@ -1797,10 +1861,12 @@ // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "Ошибка при удалении логотипа", - // "collection.edit.logo.upload": "Drop a Collection Logo to upload", + // "collection.edit.logo.upload": "Drop a collection logo to upload", + // TODO Source message changed - Revise the translation "collection.edit.logo.upload": "Перетащите логотип коллекции для загрузки", - // "collection.edit.notifications.success": "Successfully edited the Collection", + // "collection.edit.notifications.success": "Successfully edited the collection", + // TODO Source message changed - Revise the translation "collection.edit.notifications.success": "Коллекция успешно отредактирована", // "collection.edit.return": "Back", @@ -1929,6 +1995,10 @@ // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "Не удалось удалить шаблон элемента.", + // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", + // TODO New key - Add a translation + "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", + // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "Редактировать шаблон элемента", @@ -1980,6 +2050,14 @@ // "collection.page.news": "News", "collection.page.news": "Новости", + // "collection.page.options": "Options", + // TODO New key - Add a translation + "collection.page.options": "Options", + + // "collection.search.breadcrumbs": "Search", + // TODO New key - Add a translation + "collection.search.breadcrumbs": "Search", + // "collection.search.results.head": "Search Results", "collection.search.results.head": "Результаты поиска", @@ -2106,7 +2184,8 @@ // "community.create.head": "Create a Community", "community.create.head": "Создать сообщество", - // "community.create.notifications.success": "Successfully created the Community", + // "community.create.notifications.success": "Successfully created the community", + // TODO Source message changed - Revise the translation "community.create.notifications.success": "Сообщество успешно создано", // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", @@ -2178,7 +2257,8 @@ // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "Перетащите логотип сообщества для загрузки", - // "community.edit.notifications.success": "Successfully edited the Community", + // "community.edit.notifications.success": "Successfully edited the community", + // TODO Source message changed - Revise the translation "community.edit.notifications.success": "Сообщество успешно отредактировано", // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", @@ -2244,6 +2324,22 @@ // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "Не удалось удалить группу роли '{{ role }}'", + // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + + // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + + // "comcol-role.edit.delete.modal.cancel": "Cancel", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.cancel": "Cancel", + + // "comcol-role.edit.delete.modal.confirm": "Delete", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.confirm": "Delete", + // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "Администраторы", @@ -2334,13 +2430,22 @@ // "community.page.news": "News", "community.page.news": "Новости", + // "community.page.options": "Options", + // TODO New key - Add a translation + "community.page.options": "Options", + // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "Подсообщества и коллекции", + // "community.search.breadcrumbs": "Search", + // TODO New key - Add a translation + "community.search.breadcrumbs": "Search", + // "community.search.results.head": "Search Results", "community.search.results.head": "Результаты поиска", - // "community.sub-collection-list.head": "Collections in this Community", + // "community.sub-collection-list.head": "Collections in this community", + // TODO Source message changed - Revise the translation "community.sub-collection-list.head": "Коллекции в этом сообществе", // "community.sub-community-list.head": "Communities in this Community", @@ -2367,12 +2472,6 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(всегда требуется)", - // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", - "cookies.consent.app.disable-all.description": "Используйте этот переключатель, чтобы включить или отключить все сервисы.", - - // "cookies.consent.app.disable-all.title": "Enable or disable all services", - "cookies.consent.app.disable-all.title": "Включить или отключить все сервисы", - // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "С момента вашего последнего визита произошли изменения, пожалуйста, обновите своё согласие.", @@ -2382,21 +2481,20 @@ // "cookies.consent.decline": "Decline", "cookies.consent.decline": "Отклонить", + // "cookies.consent.decline-all": "Decline all", + // TODO New key - Add a translation + "cookies.consent.decline-all": "Decline all", + // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "Хорошо", // "cookies.consent.save": "Save", "cookies.consent.save": "Сохранить", - // "cookies.consent.content-notice.title": "Cookie Consent", - "cookies.consent.content-notice.title": "Согласие на использование cookies", - - // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + // TODO Source message changed - Revise the translation "cookies.consent.content-notice.description": "Мы собираем и обрабатываем вашу личную информацию для следующих целей: Аутентификация, Предпочтения, Подтверждение и Статистика.
Подробнее см. в нашей {privacyPolicy}.", - // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", - "cookies.consent.content-notice.description.no-privacy": "Мы собираем и обрабатываем вашу личную информацию для следующих целей: Аутентификация, Предпочтения, Подтверждение и Статистика.", - // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Настроить", @@ -2409,14 +2507,20 @@ // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "Чтобы узнать больше, пожалуйста, прочитайте нашу {privacyPolicy}.", + // "cookies.consent.content-modal.no-privacy-policy.text": "", + // TODO New key - Add a translation + "cookies.consent.content-modal.no-privacy-policy.text": "", + // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Информация, которую мы собираем", - // "cookies.consent.content-modal.services": "services", - "cookies.consent.content-modal.services": "сервисы", + // "cookies.consent.app.title.accessibility": "Accessibility Settings", + // TODO New key - Add a translation + "cookies.consent.app.title.accessibility": "Accessibility Settings", - // "cookies.consent.content-modal.service": "service", - "cookies.consent.content-modal.service": "сервис", + // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + // TODO New key - Add a translation + "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Аутентификация", @@ -2424,6 +2528,14 @@ // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "Необходимо для входа в систему", + // "cookies.consent.app.title.correlation-id": "Correlation ID", + // TODO New key - Add a translation + "cookies.consent.app.title.correlation-id": "Correlation ID", + + // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + // TODO New key - Add a translation + "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "Предпочтения", @@ -2448,6 +2560,14 @@ // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "Мы используем сервис Google reCAPTCHA при регистрации и восстановлении пароля", + // "cookies.consent.app.title.matomo": "Matomo", + // TODO New key - Add a translation + "cookies.consent.app.title.matomo": "Matomo", + + // "cookies.consent.app.description.matomo": "Allows us to track statistical data", + // TODO New key - Add a translation + "cookies.consent.app.description.matomo": "Allows us to track statistical data", + // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "Функциональные", @@ -2531,7 +2651,7 @@ // "dynamic-list.load-more": "Load more", // TODO New key - Add a translation - "dynamic-list.load-more": "Загрузить ещё", + "dynamic-list.load-more": "Load more", // "dropdown.clear": "Clear selection", "dropdown.clear": "Очистить выбор", @@ -2740,6 +2860,26 @@ // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "Удалить", + // "confirmation-modal.review-account-info.header": "Save the changes", + // TODO New key - Add a translation + "confirmation-modal.review-account-info.header": "Save the changes", + + // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", + // TODO New key - Add a translation + "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", + + // "confirmation-modal.review-account-info.cancel": "Cancel", + // TODO New key - Add a translation + "confirmation-modal.review-account-info.cancel": "Cancel", + + // "confirmation-modal.review-account-info.confirm": "Confirm", + // TODO New key - Add a translation + "confirmation-modal.review-account-info.confirm": "Confirm", + + // "confirmation-modal.review-account-info.save": "Save", + // TODO New key - Add a translation + "confirmation-modal.review-account-info.save": "Save", + // "error.bitstream": "Error fetching bitstream", "error.bitstream": "Ошибка при получении файла", @@ -2775,7 +2915,7 @@ // "error.profile-groups": "Error retrieving profile groups", // TODO New key - Add a translation - "error.profile-groups": "Ошибка при получении групп профилей", + "error.profile-groups": "Error retrieving profile groups", // "error.search-results": "Error fetching search results", "error.search-results": "Ошибка при получении результатов поиска", @@ -2795,8 +2935,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Ошибка при получении сообществ верхнего уровня", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Вы должны принять эту лицензию для завершения отправки. Если вы не можете сделать это сейчас, сохраните работу и вернитесь позже или удалите отправку.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + + // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Это поле ограничено текущим шаблоном: {{ pattern }}.", @@ -2843,12 +3000,20 @@ // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "Ограниченный файл", + // "file-download-link.secure-access": "Restricted bitstream available via secure access token", + // TODO New key - Add a translation + "file-download-link.secure-access": "Restricted bitstream available via secure access token", + // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "Ошибка при получении файлов для этого элемента", // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "авторское право © 2002-{{ year }}", + // "footer.link.accessibility": "Accessibility settings", + // TODO New key - Add a translation + "footer.link.accessibility": "Accessibility settings", + // "footer.link.dspace": "DSpace software", "footer.link.dspace": "Программное обеспечение DSpace", @@ -3053,9 +3218,14 @@ // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "Переместите элемент на новую позицию", - // "grant-deny-request-copy.deny": "Don't send copy", + // "grant-deny-request-copy.deny": "Deny access request", + // TODO Source message changed - Revise the translation "grant-deny-request-copy.deny": "Не отправлять копию", + // "grant-deny-request-copy.revoke": "Revoke access", + // TODO New key - Add a translation + "grant-deny-request-copy.revoke": "Revoke access", + // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "Назад", @@ -3080,7 +3250,8 @@ // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "Пожалуйста, введите тему", - // "grant-deny-request-copy.grant": "Send copy", + // "grant-deny-request-copy.grant": "Grant access request", + // TODO Source message changed - Revise the translation "grant-deny-request-copy.grant": "Отправить копию", // "grant-deny-request-copy.header": "Document copy request", @@ -3095,6 +3266,10 @@ // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "После выбора варианта будет предложен текст письма, который вы можете отредактировать.", + // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", + // TODO New key - Add a translation + "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", + // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "Этот запрос уже обработан. Вы можете использовать кнопку ниже, чтобы вернуться на главную страницу.", @@ -3107,12 +3282,45 @@ // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "Разрешить запрос копии документа", - // "grant-request-copy.intro": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", - "grant-request-copy.intro": "Сообщение будет отправлено заявителю. Запрошенные документы будут приложены.", + // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", + // TODO New key - Add a translation + "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", + + // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", + // TODO New key - Add a translation + "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", + + // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // TODO New key - Add a translation + "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "Запрос на предмет успешно выполнен", + // "grant-request-copy.access-period.header": "Access period", + // TODO New key - Add a translation + "grant-request-copy.access-period.header": "Access period", + + // "grant-request-copy.access-period.+1DAY": "1 day", + // TODO New key - Add a translation + "grant-request-copy.access-period.+1DAY": "1 day", + + // "grant-request-copy.access-period.+7DAYS": "1 week", + // TODO New key - Add a translation + "grant-request-copy.access-period.+7DAYS": "1 week", + + // "grant-request-copy.access-period.+1MONTH": "1 month", + // TODO New key - Add a translation + "grant-request-copy.access-period.+1MONTH": "1 month", + + // "grant-request-copy.access-period.+3MONTHS": "3 months", + // TODO New key - Add a translation + "grant-request-copy.access-period.+3MONTHS": "3 months", + + // "grant-request-copy.access-period.FOREVER": "Forever", + // TODO New key - Add a translation + "grant-request-copy.access-period.FOREVER": "Forever", + // "health.breadcrumbs": "Health", "health.breadcrumbs": "Проверки", @@ -3191,6 +3399,82 @@ // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "Выберите сообщество для просмотра коллекций.", + // "info.accessibility-settings.breadcrumbs": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.breadcrumbs": "Accessibility settings", + + // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + // TODO New key - Add a translation + "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + + // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + + // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + + // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + + // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + // TODO New key - Add a translation + "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + + // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + + // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + + // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + + // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + + // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + + // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + + // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + + // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + + // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + + // "info.accessibility-settings.reset-notification": "Successfully reset settings.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-notification": "Successfully reset settings.", + + // "info.accessibility-settings.reset": "Reset accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.reset": "Reset accessibility settings", + + // "info.accessibility-settings.submit": "Save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.submit": "Save accessibility settings", + + // "info.accessibility-settings.title": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.title": "Accessibility settings", + // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "Я прочитал и согласен с соглашением конечного пользователя.", @@ -3272,6 +3556,14 @@ // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "Поддержка COAR Notify", + // "item.alerts.private": "This item is non-discoverable", + // TODO New key - Add a translation + "item.alerts.private": "This item is non-discoverable", + + // "item.alerts.withdrawn": "This item has been withdrawn", + // TODO New key - Add a translation + "item.alerts.withdrawn": "This item has been withdrawn", + // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "Запрос на восстановление", @@ -3284,6 +3576,10 @@ // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "Редактировать политики объекта", + // "item.badge.status": "Item status:", + // TODO New key - Add a translation + "item.badge.status": "Item status:", + // "item.badge.private": "Non-discoverable", "item.badge.private": "Приватный", @@ -3439,7 +3735,7 @@ // "item.edit.bitstreams.load-more.link": "Load more", // TODO New key - Add a translation - "item.edit.bitstreams.load-more.link": "Загрузить ещё", + "item.edit.bitstreams.load-more.link": "Load more", // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "Отмена", @@ -3608,11 +3904,11 @@ // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", // TODO New key - Add a translation - "item.edit.metadata.edit.buttons.enable-free-text-editing": "Включить редактирование свободного текста", + "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", // TODO New key - Add a translation - "item.edit.metadata.edit.buttons.disable-free-text-editing": "Отключить редактирование свободного текста", + "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "Подтвердить", @@ -3908,7 +4204,8 @@ // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "Управлять связанными коллекциями", - // "item.edit.tabs.status.buttons.move.button": "Move this Item to a different Collection", + // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", + // TODO Source message changed - Revise the translation "item.edit.tabs.status.buttons.move.button": "Переместить этот элемент в другую коллекцию", // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", @@ -4004,6 +4301,62 @@ // "item.page.description": "Description", "item.page.description": "Описание", + // "item.page.org-unit": "Organizational Unit", + // TODO New key - Add a translation + "item.page.org-unit": "Organizational Unit", + + // "item.page.org-units": "Organizational Units", + // TODO New key - Add a translation + "item.page.org-units": "Organizational Units", + + // "item.page.project": "Research Project", + // TODO New key - Add a translation + "item.page.project": "Research Project", + + // "item.page.projects": "Research Projects", + // TODO New key - Add a translation + "item.page.projects": "Research Projects", + + // "item.page.publication": "Publications", + // TODO New key - Add a translation + "item.page.publication": "Publications", + + // "item.page.publications": "Publications", + // TODO New key - Add a translation + "item.page.publications": "Publications", + + // "item.page.article": "Article", + // TODO New key - Add a translation + "item.page.article": "Article", + + // "item.page.articles": "Articles", + // TODO New key - Add a translation + "item.page.articles": "Articles", + + // "item.page.journal": "Journal", + // TODO New key - Add a translation + "item.page.journal": "Journal", + + // "item.page.journals": "Journals", + // TODO New key - Add a translation + "item.page.journals": "Journals", + + // "item.page.journal-issue": "Journal Issue", + // TODO New key - Add a translation + "item.page.journal-issue": "Journal Issue", + + // "item.page.journal-issues": "Journal Issues", + // TODO New key - Add a translation + "item.page.journal-issues": "Journal Issues", + + // "item.page.journal-volume": "Journal Volume", + // TODO New key - Add a translation + "item.page.journal-volume": "Journal Volume", + + // "item.page.journal-volumes": "Journal Volumes", + // TODO New key - Add a translation + "item.page.journal-volumes": "Journal Volumes", + // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "ISSN журнала", @@ -4019,6 +4372,10 @@ // "item.page.volume-title": "Volume Title", "item.page.volume-title": "Название тома", + // "item.page.dcterms.spatial": "Geospatial point", + // TODO New key - Add a translation + "item.page.dcterms.spatial": "Geospatial point", + // "item.search.results.head": "Item Search Results", "item.search.results.head": "Результаты поиска элементов", @@ -4097,9 +4454,14 @@ // "item.page.abstract": "Abstract", "item.page.abstract": "Аннотация", - // "item.page.author": "Authors", + // "item.page.author": "Author", + // TODO Source message changed - Revise the translation "item.page.author": "Авторы", + // "item.page.authors": "Authors", + // TODO New key - Add a translation + "item.page.authors": "Authors", + // "item.page.citation": "Citation", "item.page.citation": "Цитирование", @@ -4145,6 +4507,10 @@ // "item.page.link.simple": "Simple item page", "item.page.link.simple": "Простая страница элемента", + // "item.page.options": "Options", + // TODO New key - Add a translation + "item.page.options": "Options", + // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", @@ -4226,6 +4592,10 @@ // "item.preview.dc.date.issued": "Published date:", "item.preview.dc.date.issued": "Дата публикации:", + // "item.preview.dc.description": "Description:", + // TODO New key - Add a translation + "item.preview.dc.description": "Description:", + // "item.preview.dc.description.abstract": "Abstract:", "item.preview.dc.description.abstract": "Резюме:", @@ -4244,12 +4614,44 @@ // "item.preview.dc.type": "Type:", "item.preview.dc.type": "Тип:", + // "item.preview.oaire.version": "Version", + // TODO New key - Add a translation + "item.preview.oaire.version": "Version", + // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "Выпуск", // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "Том", + // "item.preview.oaire.citation.title": "Citation container", + // TODO New key - Add a translation + "item.preview.oaire.citation.title": "Citation container", + + // "item.preview.oaire.citation.startPage": "Citation start page", + // TODO New key - Add a translation + "item.preview.oaire.citation.startPage": "Citation start page", + + // "item.preview.oaire.citation.endPage": "Citation end page", + // TODO New key - Add a translation + "item.preview.oaire.citation.endPage": "Citation end page", + + // "item.preview.dc.relation.hasversion": "Has version", + // TODO New key - Add a translation + "item.preview.dc.relation.hasversion": "Has version", + + // "item.preview.dc.relation.ispartofseries": "Is part of series", + // TODO New key - Add a translation + "item.preview.dc.relation.ispartofseries": "Is part of series", + + // "item.preview.dc.rights": "Rights", + // TODO New key - Add a translation + "item.preview.dc.rights": "Rights", + + // "item.preview.dc.identifier.other": "Other Identifier", + // TODO Source message changed - Revise the translation + "item.preview.dc.identifier.other": "Другой идентификатор:", + // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4277,12 +4679,20 @@ // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", + // "item.preview.person.affiliation.name": "Affiliations:", + // TODO New key - Add a translation + "item.preview.person.affiliation.name": "Affiliations:", + // "item.preview.project.funder.name": "Funder:", "item.preview.project.funder.name": "Спонсор:", // "item.preview.project.funder.identifier": "Funder Identifier:", "item.preview.project.funder.identifier": "Идентификатор спонсора:", + // "item.preview.project.investigator": "Project Investigator", + // TODO New key - Add a translation + "item.preview.project.investigator": "Project Investigator", + // "item.preview.oaire.awardNumber": "Funding ID:", "item.preview.oaire.awardNumber": "ID финансирования:", @@ -4319,6 +4729,26 @@ // "item.preview.dspace.entity.type": "Entity Type:", "item.preview.dspace.entity.type": "Тип сущности:", + // "item.preview.creativework.publisher": "Publisher", + // TODO New key - Add a translation + "item.preview.creativework.publisher": "Publisher", + + // "item.preview.creativeworkseries.issn": "ISSN", + // TODO New key - Add a translation + "item.preview.creativeworkseries.issn": "ISSN", + + // "item.preview.dc.identifier.issn": "ISSN", + // TODO New key - Add a translation + "item.preview.dc.identifier.issn": "ISSN", + + // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", + // TODO New key - Add a translation + "item.preview.dc.identifier.openalex": "OpenAlex Identifier", + + // "item.preview.dc.description": "Description", + // TODO New key - Add a translation + "item.preview.dc.description": "Description", + // "item.select.confirm": "Confirm selected", "item.select.confirm": "Подтвердить выбранное", @@ -4637,6 +5067,10 @@ // "journal.page.publisher": "Publisher", "journal.page.publisher": "Издатель", + // "journal.page.options": "Options", + // TODO New key - Add a translation + "journal.page.options": "Options", + // "journal.page.titleprefix": "Journal: ", "journal.page.titleprefix": "Журнал: ", @@ -4673,6 +5107,10 @@ // "journalissue.page.number": "Number", "journalissue.page.number": "Номер", + // "journalissue.page.options": "Options", + // TODO New key - Add a translation + "journalissue.page.options": "Options", + // "journalissue.page.titleprefix": "Journal Issue: ", "journalissue.page.titleprefix": "Выпуск журнала: ", @@ -4691,6 +5129,10 @@ // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "Дата выпуска", + // "journalvolume.page.options": "Options", + // TODO New key - Add a translation + "journalvolume.page.options": "Options", + // "journalvolume.page.titleprefix": "Journal Volume: ", "journalvolume.page.titleprefix": "Том журнала: ", @@ -4808,6 +5250,10 @@ // "login.form.password": "Password", "login.form.password": "Пароль", + // "login.form.saml": "Log in with SAML", + // TODO New key - Add a translation + "login.form.saml": "Log in with SAML", + // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Войти через Shibboleth", @@ -4904,6 +5350,10 @@ // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "Сообщества и коллекции", + // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", + // TODO New key - Add a translation + "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", + // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "Панель управления", @@ -4976,18 +5426,6 @@ // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "Закрепить боковую панель", - // "menu.section.icon.processes": "Processes Health", - "menu.section.icon.processes": "Раздел меню состояния процессов", - - // "menu.section.icon.registries": "Registries menu section", - "menu.section.icon.registries": "Раздел меню реестров", - - // "menu.section.icon.statistics_task": "Statistics Task menu section", - "menu.section.icon.statistics_task": "Раздел меню задач статистики", - - // "menu.section.icon.workflow": "Administer workflow menu section", - "menu.section.icon.workflow": "Раздел меню управления рабочим процессом", - // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "Открепить боковую панель", @@ -5195,6 +5633,10 @@ // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "Кураторские элементы", + // "mydspace.status": "My DSpace status:", + // TODO New key - Add a translation + "mydspace.status": "My DSpace status:", + // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "В архиве", @@ -5291,9 +5733,21 @@ // "nav.user.description": "User profile bar", "nav.user.description": "Панель профиля пользователя", + // "listelement.badge.dso-type": "Item type:", + // TODO New key - Add a translation + "listelement.badge.dso-type": "Item type:", + // "none.listelement.badge": "Item", "none.listelement.badge": "Элемент", + // "publication-claim.title": "Publication claim", + // TODO New key - Add a translation + "publication-claim.title": "Publication claim", + + // "publication-claim.source.description": "Below you can see all the sources.", + // TODO New key - Add a translation + "publication-claim.source.description": "Below you can see all the sources.", + // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "Контроль качества", @@ -5528,6 +5982,10 @@ // "orgunit.page.id": "ID", "orgunit.page.id": "ID", + // "orgunit.page.options": "Options", + // TODO New key - Add a translation + "orgunit.page.options": "Options", + // "orgunit.page.titleprefix": "Organizational Unit: ", "orgunit.page.titleprefix": "Организационное подразделение: ", @@ -5582,6 +6040,10 @@ // "person.page.link.full": "Show all metadata", "person.page.link.full": "Показать все метаданные", + // "person.page.options": "Options", + // TODO New key - Add a translation + "person.page.options": "Options", + // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", @@ -5636,6 +6098,10 @@ // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "Пожалуйста, выберите файл", + // "process.new.parameter.integer.required": "Parameter value is required", + // TODO New key - Add a translation + "process.new.parameter.integer.required": "Parameter value is required", + // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "Требуется значение параметра", @@ -5834,6 +6300,18 @@ // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "Обновить профиль", + // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + // TODO New key - Add a translation + "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + + // "profile.card.accessibility.header": "Accessibility", + // TODO New key - Add a translation + "profile.card.accessibility.header": "Accessibility", + + // "profile.card.accessibility.link": "Go to Accessibility Settings Page", + // TODO New key - Add a translation + "profile.card.accessibility.link": "Go to Accessibility Settings Page", + // "profile.card.identify": "Identify", "profile.card.identify": "Идентификация", @@ -5945,6 +6423,10 @@ // "project.page.keyword": "Keywords", "project.page.keyword": "Ключевые слова", + // "project.page.options": "Options", + // TODO New key - Add a translation + "project.page.options": "Options", + // "project.page.status": "Status", "project.page.status": "Статус", @@ -5975,6 +6457,10 @@ // "publication.page.publisher": "Publisher", "publication.page.publisher": "Издатель", + // "publication.page.options": "Options", + // TODO New key - Add a translation + "publication.page.options": "Options", + // "publication.page.titleprefix": "Publication: ", "publication.page.titleprefix": "Публикация: ", @@ -6086,6 +6572,10 @@ // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "Граф OpenAIRE", + // "suggestion.source.openalex": "OpenAlex", + // TODO New key - Add a translation + "suggestion.source.openalex": "OpenAlex", + // "suggestion.from.source": "from the ", "suggestion.from.source": "из ", @@ -6230,68 +6720,109 @@ // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "Не удалось добавить связь", - // "relationships.isAuthorOf": "Authors", - "relationships.isAuthorOf": "Авторы", + // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + + // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + + // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + + // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + + // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + + // "relationships.Publication.isContributorOfPublication.Person": "Contributor", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.Person": "Contributor", - // "relationships.isAuthorOf.Person": "Authors (persons)", - "relationships.isAuthorOf.Person": "Авторы (физические лица)", + // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - // "relationships.isAuthorOf.OrgUnit": "Authors (organizational units)", - "relationships.isAuthorOf.OrgUnit": "Авторы (организационные единицы)", + // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - // "relationships.isIssueOf": "Journal Issues", - "relationships.isIssueOf": "Выпуски журналов", + // "relationships.Person.isProjectOfPerson.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Person.isProjectOfPerson.Project": "Research Projects", - // "relationships.isIssueOf.JournalIssue": "Journal Issue", - "relationships.isIssueOf.JournalIssue": "Выпуск журнала", + // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - // "relationships.isJournalIssueOf": "Journal Issue", - "relationships.isJournalIssueOf": "Выпуск журнала", + // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - // "relationships.isJournalOf": "Journals", - "relationships.isJournalOf": "Журналы", + // "relationships.Project.isPublicationOfProject.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Project.isPublicationOfProject.Publication": "Publications", - // "relationships.isJournalVolumeOf": "Journal Volume", - "relationships.isJournalVolumeOf": "Том журнала", + // "relationships.Project.isPersonOfProject.Person": "Authors", + // TODO New key - Add a translation + "relationships.Project.isPersonOfProject.Person": "Authors", - // "relationships.isOrgUnitOf": "Organizational Units", - "relationships.isOrgUnitOf": "Организационные единицы", + // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - // "relationships.isPersonOf": "Authors", - "relationships.isPersonOf": "Авторы", + // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + // TODO New key - Add a translation + "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - // "relationships.isProjectOf": "Research Projects", - "relationships.isProjectOf": "Научные проекты", + // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - // "relationships.isPublicationOf": "Publications", - "relationships.isPublicationOf": "Публикации", + // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + // TODO New key - Add a translation + "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - // "relationships.isPublicationOfJournalIssue": "Articles", - "relationships.isPublicationOfJournalIssue": "Статьи", + // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - // "relationships.isSingleJournalOf": "Journal", - "relationships.isSingleJournalOf": "Журнал", + // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - // "relationships.isSingleVolumeOf": "Journal Volume", - "relationships.isSingleVolumeOf": "Том журнала", + // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - // "relationships.isVolumeOf": "Journal Volumes", - "relationships.isVolumeOf": "Тома журналов", + // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - // "relationships.isVolumeOf.JournalVolume": "Journal Volume", - "relationships.isVolumeOf.JournalVolume": "Том журнала", + // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - // "relationships.isContributorOf": "Contributors", - "relationships.isContributorOf": "Авторы", + // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + // TODO New key - Add a translation + "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", - // "relationships.isContributorOf.OrgUnit": "Contributor (Organizational Unit)", - "relationships.isContributorOf.OrgUnit": "Автор (организационная единица)", + // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + // TODO New key - Add a translation + "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - // "relationships.isContributorOf.Person": "Contributor", - "relationships.isContributorOf.Person": "Автор", + // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - // "relationships.isFundingAgencyOf.OrgUnit": "Funder", - "relationships.isFundingAgencyOf.OrgUnit": "Финансирующая организация", + // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", // "repository.image.logo": "Repository logo", "repository.image.logo": "Логотип репозитория", @@ -6538,6 +7069,9 @@ // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "Описание файла", + // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", + // TODO New key - Add a translation + "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "Тип", @@ -6587,6 +7121,10 @@ // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", + // "search.filters.applied.f.point": "Coordinates", + // TODO New key - Add a translation + "search.filters.applied.f.point": "Coordinates", + // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "Название", @@ -6626,6 +7164,14 @@ // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "Поиск по дате публикации", + // "search.filters.filter.creativeDatePublished.min.label": "Start", + // TODO New key - Add a translation + "search.filters.filter.creativeDatePublished.min.label": "Start", + + // "search.filters.filter.creativeDatePublished.max.label": "End", + // TODO New key - Add a translation + "search.filters.filter.creativeDatePublished.max.label": "End", + // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "Редактор", @@ -6701,6 +7247,10 @@ // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "Имя файла", + // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", + // TODO New key - Add a translation + "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", + // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "Имя файла", @@ -6788,6 +7338,14 @@ // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "Поиск по дате основания", + // "search.filters.filter.organizationFoundingDate.min.label": "Start", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.min.label": "Start", + + // "search.filters.filter.organizationFoundingDate.max.label": "End", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.max.label": "End", + // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "Область", @@ -6839,6 +7397,18 @@ // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "Поиск по контролю", + // "search.filters.filter.access_status.head": "Access type", + // TODO New key - Add a translation + "search.filters.filter.access_status.head": "Access type", + + // "search.filters.filter.access_status.placeholder": "Access type", + // TODO New key - Add a translation + "search.filters.filter.access_status.placeholder": "Access type", + + // "search.filters.filter.access_status.label": "Search by access type", + // TODO New key - Add a translation + "search.filters.filter.access_status.label": "Search by access type", + // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "Выпуск журнала", @@ -6863,6 +7433,14 @@ // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "Нет", + // "search.filters.has_geospatial_metadata.true": "Yes", + // TODO New key - Add a translation + "search.filters.has_geospatial_metadata.true": "Yes", + + // "search.filters.has_geospatial_metadata.false": "No", + // TODO New key - Add a translation + "search.filters.has_geospatial_metadata.false": "No", + // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "Нет", @@ -6941,6 +7519,10 @@ // "search.results.empty": "Your search returned no results.", "search.results.empty": "По вашему запросу нет результатов.", + // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", + // TODO New key - Add a translation + "search.results.geospatial-map.empty": "No results on this page with geospatial locations", + // "search.results.view-result": "View", "search.results.view-result": "Просмотр", @@ -6998,6 +7580,10 @@ // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "Показать в виде списка", + // "search.view-switch.show-geospatialMap": "Show as map", + // TODO New key - Add a translation + "search.view-switch.show-geospatialMap": "Show as map", + // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "Снять выделение с элемента", @@ -7202,6 +7788,10 @@ // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", + // "submission.import-external.source.dataciteProject": "DataCite", + // TODO New key - Add a translation + "submission.import-external.source.dataciteProject": "DataCite", + // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", @@ -7259,6 +7849,38 @@ // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Реестр научных организаций (ROR)", + // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", + // TODO New key - Add a translation + "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", + + // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", + // TODO New key - Add a translation + "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", + + // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", + // TODO New key - Add a translation + "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", + + // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", + // TODO New key - Add a translation + "submission.import-external.source.openalexPerson": "OpenAlex Search by name", + + // "submission.import-external.source.openalexJournal": "OpenAlex Journals", + // TODO New key - Add a translation + "submission.import-external.source.openalexJournal": "OpenAlex Journals", + + // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", + // TODO New key - Add a translation + "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", + + // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", + // TODO New key - Add a translation + "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", + + // "submission.import-external.source.openalexFunder": "OpenAlex Funders", + // TODO New key - Add a translation + "submission.import-external.source.openalexFunder": "OpenAlex Funders", + // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "Предварительный просмотр элемента", @@ -7508,6 +8130,10 @@ // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Локальные выпуски журналов ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Локальные тома журналов ({{ count }})", @@ -7556,6 +8182,26 @@ // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Журналы Sherpa по ISSN ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Поиск финансирующих агентств", @@ -7586,6 +8232,10 @@ // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Финансирующая организация проекта", + // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Поиск...", @@ -7601,6 +8251,10 @@ // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "Выпуски журнала", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Тома журнала", @@ -7664,6 +8318,10 @@ // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Выбранные журналы", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Выбранный том журнала", @@ -7754,6 +8412,26 @@ // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Результаты поиска", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "Результаты поиска", @@ -7859,6 +8537,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Лицензия Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Переработать", @@ -8024,6 +8706,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Загрузка прошла успешно", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Если отмечено, элемент будет обнаруживаться при поиске/просмотре. Если не отмечено, элемент будет доступен только по прямой ссылке и не появится в поиске/просмотре.", @@ -8312,6 +9006,10 @@ // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "Подписаться", + // "subscriptions.unsubscribe": "Unsubscribe", + // TODO New key - Add a translation + "subscriptions.unsubscribe": "Unsubscribe", + // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "Подписки", @@ -8384,7 +9082,8 @@ // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "Подписанный элемент был удалён или у вас нет прав для его просмотра.", - // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a Community or Collection, use the subscription button on the object's page.", + // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", + // TODO Source message changed - Revise the translation "subscriptions.table.empty.message": "У вас нет подписок. Чтобы подписаться на обновления по электронной почте для сообщества или коллекции, используйте кнопку подписки на странице объекта.", // "thumbnail.default.alt": "Thumbnail Image", @@ -9226,6 +9925,7 @@ "ldn-registered-services.new": "НОВЫЙ", // "ldn-registered-services.new.breadcrumbs": "Registered Services", "ldn-registered-services.new.breadcrumbs": "Зарегистрированные сервисы", + // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "Включено", // "ldn-service.overview.table.disabled": "Disabled", @@ -9235,7 +9935,6 @@ // "ldn-service.overview.table.clickToDisable": "Click to disable", "ldn-service.overview.table.clickToDisable": "Нажмите, чтобы отключить", - // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "Редактировать сервис", // "ldn-create-service.title": "Create service", @@ -9283,7 +9982,6 @@ // "ldn-service.form.label.placeholder.default-select": "Select a pattern", "ldn-service.form.label.placeholder.default-select": "Выберите шаблон", - // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "Подтвердить и принять", // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", @@ -9291,7 +9989,6 @@ // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-accept.category": "Подтверждения", - // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "Подтвердить и отклонить", // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", @@ -9299,7 +9996,6 @@ // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-reject.category": "Подтверждения", - // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "Подтвердить и предварительно принять", // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", @@ -9314,7 +10010,6 @@ // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-reject.category": "Подтверждения", - // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "Объявить об одобрении", // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", @@ -9329,7 +10024,6 @@ // "ldn-service.form.pattern.announce-ingest.category": "Announcements", "ldn-service.form.pattern.announce-ingest.category": "Объявления", - // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "Объявить о взаимосвязи", // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", @@ -9337,7 +10031,6 @@ // "ldn-service.form.pattern.announce-relationship.category": "Announcements", "ldn-service.form.pattern.announce-relationship.category": "Объявления", - // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "Объявить о рецензии", // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", @@ -9345,7 +10038,6 @@ // "ldn-service.form.pattern.announce-review.category": "Announcements", "ldn-service.form.pattern.announce-review.category": "Объявления", - // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "Объявить о результате сервиса", // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", @@ -9353,7 +10045,6 @@ // "ldn-service.form.pattern.announce-service-result.category": "Announcements", "ldn-service.form.pattern.announce-service-result.category": "Объявления", - // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "Запросить одобрение", // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", @@ -9368,7 +10059,6 @@ // "ldn-service.form.pattern.request-ingest.category": "Requests", "ldn-service.form.pattern.request-ingest.category": "Запросы", - // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "Запросить рецензию", // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", @@ -9376,7 +10066,6 @@ // "ldn-service.form.pattern.request-review.category": "Requests", "ldn-service.form.pattern.request-review.category": "Запросы", - // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "Отменить предложение", // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", @@ -9507,6 +10196,10 @@ // "item.page.endorsement": "Endorsement", "item.page.endorsement": "Подтверждение", + // "item.page.places": "Related places", + // TODO New key - Add a translation + "item.page.places": "Related places", + // "item.page.review": "Review", "item.page.review": "Обзор", @@ -9527,15 +10220,15 @@ // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "Ниже вы можете увидеть все темы, полученные из подписок на {{source}} по поводу", - // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", "quality-assurance.events.description": "Ниже список всех предложений по выбранной теме {{topic}}, связанной с {{source}}.", // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "Ниже список всех предложений по выбранной теме {{topic}}, связанной с {{source}} и ", - // "quality-assurance.event.table.event.message.serviceUrl": "Service URL:", - "quality-assurance.event.table.event.message.serviceUrl": "URL услуги:", + // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + // TODO New key - Add a translation + "quality-assurance.event.table.event.message.serviceUrl": "Actor:", // "quality-assurance.event.table.event.message.link": "Link:", "quality-assurance.event.table.event.message.link": "Ссылка:", @@ -9630,6 +10323,10 @@ // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "Запрошенный {{ offerType }} для {{ serviceName }} был отклонён.", + // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", + // TODO New key - Add a translation + "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", + // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "Запрошенный {{ offerType }} для {{ serviceName }} находится в ожидании.", @@ -9654,6 +10351,14 @@ // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "Закрыть модальное окно", + // "ldn-service-usesActorEmailId": "Requires actor email in notifications", + // TODO New key - Add a translation + "ldn-service-usesActorEmailId": "Requires actor email in notifications", + + // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", + // TODO New key - Add a translation + "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", + // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "Тип элемента — статья журнала или набор данных", @@ -9669,8 +10374,6 @@ // "doi-filter.label": "DOI filter", "doi-filter.label": "Фильтр DOI", - - // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "Тип документа равен driver", @@ -9770,7 +10473,6 @@ // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", "admin-notify-logs.NOTIFY.incoming.untrusted": "Сейчас отображаются: Недоверенные уведомления", - // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Недоверенный", @@ -9849,13 +10551,16 @@ // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "Уведомление о связи", + // "search.filters.applied.f.access_status": "Access type", + // TODO New key - Add a translation + "search.filters.applied.f.access_status": "Access type", + // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "Время последней обработки ", // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "Минимальный диапазон", - // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "Максимальный диапазон", @@ -10209,15 +10914,15 @@ // "form.date-picker.placeholder.year": "Year", // TODO New key - Add a translation - "form.date-picker.placeholder.year": "Год", + "form.date-picker.placeholder.year": "Year", // "form.date-picker.placeholder.month": "Month", // TODO New key - Add a translation - "form.date-picker.placeholder.month": "Месяц", + "form.date-picker.placeholder.month": "Month", // "form.date-picker.placeholder.day": "Day", // TODO New key - Add a translation - "form.date-picker.placeholder.day": "День", + "form.date-picker.placeholder.day": "Day", // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "Лицензия Creative Commons", @@ -10240,30 +10945,245 @@ // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "Страница будет перезагружена. Выбран фильтр {{ filter }}.", - // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", // TODO New key - Add a translation - "live-region.ordering.instructions": "Нажмите пробел, чтобы изменить порядок {{ itemName }}.", + "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // TODO New key - Add a translation - "live-region.ordering.status": "{{ itemName }}, захвачено. Текущая позиция в списке: {{ index }} из {{ length }}. Нажимайте клавиши со стрелками вверх и вниз, чтобы изменить положение, пробел для удаления, Escape для отмены.", + "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // TODO New key - Add a translation - "live-region.ordering.moved": "{{ itemName }} перемещен в позицию {{ index }} на {{ length }}. Нажимайте клавиши со стрелками вверх и вниз, чтобы изменить положение, пробел, чтобы опустить, Escape, чтобы отменить.", + "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", // TODO New key - Add a translation - "live-region.ordering.dropped": "{{ itemName }}, перемещен в позицию {{ index }} длины {{ length }}.", + "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", // "dynamic-form-array.sortable-list.label": "Sortable list", // TODO New key - Add a translation - "dynamic-form-array.sortable-list.label": "Сортируемый список", + "dynamic-form-array.sortable-list.label": "Sortable list", + + // "external-login.component.or": "or", + // TODO New key - Add a translation + "external-login.component.or": "or", + + // "external-login.confirmation.header": "Information needed to complete the login process", + // TODO New key - Add a translation + "external-login.confirmation.header": "Information needed to complete the login process", + + // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", + // TODO New key - Add a translation + "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", + + // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", + // TODO New key - Add a translation + "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", + + // "external-login.confirm-email.header": "Confirm or update email", + // TODO New key - Add a translation + "external-login.confirm-email.header": "Confirm or update email", + + // "external-login.confirmation.email-required": "Email is required.", + // TODO New key - Add a translation + "external-login.confirmation.email-required": "Email is required.", + + // "external-login.confirmation.email-label": "User Email", + // TODO New key - Add a translation + "external-login.confirmation.email-label": "User Email", + + // "external-login.confirmation.email-invalid": "Invalid email format.", + // TODO New key - Add a translation + "external-login.confirmation.email-invalid": "Invalid email format.", + + // "external-login.confirm.button.label": "Confirm this email", + // TODO New key - Add a translation + "external-login.confirm.button.label": "Confirm this email", + + // "external-login.confirm-email-sent.header": "Confirmation email sent", + // TODO New key - Add a translation + "external-login.confirm-email-sent.header": "Confirmation email sent", + + // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", + // TODO New key - Add a translation + "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", + + // "external-login.provide-email.header": "Provide email", + // TODO New key - Add a translation + "external-login.provide-email.header": "Provide email", + + // "external-login.provide-email.button.label": "Send Verification link", + // TODO New key - Add a translation + "external-login.provide-email.button.label": "Send Verification link", + + // "external-login-validation.review-account-info.header": "Review your account information", + // TODO New key - Add a translation + "external-login-validation.review-account-info.header": "Review your account information", + + // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", + // TODO New key - Add a translation + "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", + + // "external-login-validation.review-account-info.table.header.information": "Information", + // TODO New key - Add a translation + "external-login-validation.review-account-info.table.header.information": "Information", + + // "external-login-validation.review-account-info.table.header.received-value": "Received value", + // TODO New key - Add a translation + "external-login-validation.review-account-info.table.header.received-value": "Received value", + + // "external-login-validation.review-account-info.table.header.current-value": "Current value", + // TODO New key - Add a translation + "external-login-validation.review-account-info.table.header.current-value": "Current value", + + // "external-login-validation.review-account-info.table.header.action": "Override", + // TODO New key - Add a translation + "external-login-validation.review-account-info.table.header.action": "Override", + + // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", + // TODO New key - Add a translation + "external-login-validation.review-account-info.table.row.not-applicable": "N/A", + + // "on-label": "ON", + // TODO New key - Add a translation + "on-label": "ON", + + // "off-label": "OFF", + // TODO New key - Add a translation + "off-label": "OFF", - // "browse.metadata.srsc.tree.descrption": "Select a subject to add as search filter", - "browse.metadata.srsc.tree.descrption": "Выберите тему для добавления в качестве фильтра поиска", + // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", + // TODO New key - Add a translation + "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", + + // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", + // TODO New key - Add a translation + "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", + + // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", + // TODO New key - Add a translation + "review-account-info.alert.error.content": "Something went wrong. Please try again later.", + + // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", + // TODO New key - Add a translation + "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", + + // "external-login.error.notification": "There was an error while processing your request. Please try again later.", + // TODO New key - Add a translation + "external-login.error.notification": "There was an error while processing your request. Please try again later.", + + // "external-login.connect-to-existing-account.label": "Connect to an existing user", + // TODO New key - Add a translation + "external-login.connect-to-existing-account.label": "Connect to an existing user", + + // "external-login.modal.label.close": "Close", + // TODO New key - Add a translation + "external-login.modal.label.close": "Close", + + // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", + // TODO New key - Add a translation + "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", + + // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", + // TODO New key - Add a translation + "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", + + // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", + // TODO New key - Add a translation + "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", + + // "external-login-page.orcid-confirmation.firstname": "First name", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.firstname": "First name", + + // "external-login-page.orcid-confirmation.firstname.label": "First name", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.firstname.label": "First name", + + // "external-login-page.orcid-confirmation.lastname": "Last name", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.lastname": "Last name", + + // "external-login-page.orcid-confirmation.lastname.label": "Last name", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.lastname.label": "Last name", + + // "external-login-page.orcid-confirmation.netid": "Account Identifier", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.netid": "Account Identifier", + + // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", + + // "external-login-page.orcid-confirmation.email": "Email", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.email": "Email", + + // "external-login-page.orcid-confirmation.email.label": "Email", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.email.label": "Email", + + // "search.filters.access_status.open.access": "Open access", + // TODO New key - Add a translation + "search.filters.access_status.open.access": "Open access", + + // "search.filters.access_status.restricted": "Restricted access", + // TODO New key - Add a translation + "search.filters.access_status.restricted": "Restricted access", + + // "search.filters.access_status.embargo": "Embargoed access", + // TODO New key - Add a translation + "search.filters.access_status.embargo": "Embargoed access", + + // "search.filters.access_status.metadata.only": "Metadata only", + // TODO New key - Add a translation + "search.filters.access_status.metadata.only": "Metadata only", + + // "search.filters.access_status.unknown": "Unknown", + // TODO New key - Add a translation + "search.filters.access_status.unknown": "Unknown", + + // "metadata-export-filtered-items.tooltip": "Export report output as CSV", + // TODO New key - Add a translation + "metadata-export-filtered-items.tooltip": "Export report output as CSV", + + // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", + // TODO New key - Add a translation + "metadata-export-filtered-items.submit.success": "CSV export succeeded.", + + // "metadata-export-filtered-items.submit.error": "CSV export failed.", + // TODO New key - Add a translation + "metadata-export-filtered-items.submit.error": "CSV export failed.", + + // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", + // TODO New key - Add a translation + "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", + + // "embargo.listelement.badge": "Embargo until {{ date }}", + // TODO New key - Add a translation + "embargo.listelement.badge": "Embargo until {{ date }}", + + // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", + // TODO New key - Add a translation + "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", + + // "file-download-link.request-copy": "Request a copy of ", + // TODO New key - Add a translation + "file-download-link.request-copy": "Request a copy of ", + + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", -} +} \ No newline at end of file diff --git a/src/assets/i18n/sr-cyr.json5 b/src/assets/i18n/sr-cyr.json5 index efeb74806ac..ffe2b5d6876 100644 --- a/src/assets/i18n/sr-cyr.json5 +++ b/src/assets/i18n/sr-cyr.json5 @@ -3111,13 +3111,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Грешка при преузимању заједница највишег нивоа", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Морате доделити ову лиценцу да бисте довршили свој поднесак. Ако у овом тренутку нисте у могућности да доделите ову лиценцу, можете да сачувате свој рад и вратите се касније или уклоните поднесак.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9017,6 +9030,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative Commons лиценца", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Рециклажа", @@ -9187,6 +9204,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Отпремање је успешно", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Када је означено, ова ставка ће бити видљива у претрази/прегледу. Када није означено, ставка ће бити доступна само преко директне везе и никада се неће појавити у претрази/прегледу.", @@ -12043,5 +12072,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/sr-lat.json5 b/src/assets/i18n/sr-lat.json5 index 8f32d44ecae..ba406a79cd7 100644 --- a/src/assets/i18n/sr-lat.json5 +++ b/src/assets/i18n/sr-lat.json5 @@ -3110,13 +3110,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Greška pri preuzimanju zajednica najvišeg nivoa", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Morate dodeliti ovu licencu da biste dovršili svoj podnesak. Ako u ovom trenutku niste u mogućnosti da dodelite ovu licencu, možete da sačuvate svoj rad i vratite se kasnije ili uklonite podnesak.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9015,6 +9028,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative Commons licenca", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciklaža", @@ -9185,6 +9202,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Otpremanje je uspešno", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Kada je označeno, ova stavka će biti vidljiva u pretrazi/pregledu. Kada nije označeno, stavka će biti dostupna samo preko direktne veze i nikada se neće pojaviti u pretrazi/pregledu.", @@ -12040,5 +12069,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/sv.json5 b/src/assets/i18n/sv.json5 index 8bac53d0503..5eab130fc4c 100644 --- a/src/assets/i18n/sv.json5 +++ b/src/assets/i18n/sv.json5 @@ -3255,13 +3255,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Ett fel uppstod när enheter på toppnivå hämtades", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Du måste godkänna dessa villkor för att skutföra registreringen. Om detta inte är möjligt så kan du spara nu och återvända hit senare, eller radera bidraget.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9546,6 +9559,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons licens", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Återanvänd", @@ -9720,6 +9737,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Uppladdningen lyckades", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "När denna är markerad kommer posten att vara sökbar och visas i listor. I annat fall så kommer den bara att kunna nås med en direktlänk.", @@ -12851,5 +12880,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/sw.json5 b/src/assets/i18n/sw.json5 index 2d969c19464..d9cdd752e34 100644 --- a/src/assets/i18n/sw.json5 +++ b/src/assets/i18n/sw.json5 @@ -3847,14 +3847,26 @@ // TODO New key - Add a translation "error.top-level-communities": "Error fetching top-level communities", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // TODO New key - Add a translation - "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -11090,6 +11102,10 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", // TODO New key - Add a translation "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -11310,6 +11326,18 @@ // TODO New key - Add a translation "submission.sections.upload.upload-successful": "Upload successful", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -14530,5 +14558,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/tr.json5 b/src/assets/i18n/tr.json5 index 43781f5a5a9..20f3d365ff4 100644 --- a/src/assets/i18n/tr.json5 +++ b/src/assets/i18n/tr.json5 @@ -3358,13 +3358,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Üst düzey komüniteleri alma hatası", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Gönderinizi tamamlamak için bu lisansı vermelisiniz. Bu lisansı şu anda veremiyorsanız, çalışmanızı kaydedebilir ve daha sonra geri gönderebilir veya gönderimi kaldırabilirsiniz.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Bu giriş mevcut modelle sınırlandırılmıştır.: {{ pattern }}.", @@ -9690,6 +9703,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Yaratıcı Ortak Lisansları", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Geri Dönüştür", @@ -9881,6 +9898,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Yükleme Başarılı", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13045,5 +13074,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/uk.json5 b/src/assets/i18n/uk.json5 index 58c08a82a43..5d0e7da0639 100644 --- a/src/assets/i18n/uk.json5 +++ b/src/assets/i18n/uk.json5 @@ -3378,13 +3378,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Виникла помилка при отриманні фонду верхнього рівня", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Ви повинні дати згоду на умови ліцензії, щоб завершити submission. Якщо ви не можете погодитись на умови ліцензії на даний момент, ви можете зберегти свою роботу та повернутися пізніше або видалити submission.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Вхідна інформація обмежена поточним шаблоном: {{ pattern }}.", @@ -9720,6 +9733,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "СС ліцензії", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Переробити", @@ -9911,6 +9928,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Успішно завантажено", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13067,5 +13096,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/vi.json5 b/src/assets/i18n/vi.json5 index 6ac69abcb3c..e26476768ca 100644 --- a/src/assets/i18n/vi.json5 +++ b/src/assets/i18n/vi.json5 @@ -3142,13 +3142,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Lỗi tìm kiếm đơn vị lớn", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Bạn phải đồng ý với giấy phép này để hoàn thành tài liệu biên mục của mình. Nếu hiện tại bạn không thể đồng ý giấy phép này bạn có thể lưu tài liệu biên mục của mình và quay lại sau hoặc xóa nội dung đã biên mục.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9140,6 +9153,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Bằng sáng chế", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Tái chế", @@ -9311,6 +9328,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Tải lên thành công", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Khi được chọn biểu ghi này sẽ có thể được tìm thấy trong các chức năng tìm kiếm/duyệt. Khi bỏ chọn biểu ghi sẽ chỉ có sẵn qua đường dẫn trực tiếp và sẽ không bao giờ xuất hiện trong tìm kiếm/duyệt.", @@ -12266,5 +12295,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/config/default-app-config.ts b/src/config/default-app-config.ts index 4840c93e1ba..76af5874853 100644 --- a/src/config/default-app-config.ts +++ b/src/config/default-app-config.ts @@ -137,6 +137,9 @@ export class DefaultAppConfig implements AppConfig { validatorMap: { required: 'required', regex: 'pattern', + conflict: 'conflict', + empty: 'empty', + 'invalid-characters': 'invalid-characters', }, }; From d59249bc35fa893ebb6d95d284f3954b4a468fb8 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Wed, 19 Nov 2025 12:01:16 +0100 Subject: [PATCH 04/17] [DURACOM-413] update error handling/validation + resync translations --- .../edit/submission-edit.component.spec.ts | 8 ++- .../edit/submission-edit.component.ts | 6 +- ...bmission-section-custom-url.component.html | 1 - ...submission-section-custom-url.component.ts | 55 ++++++++++++++++++- src/app/submission/utils/submission.mock.ts | 5 ++ src/assets/i18n/gu.json5 | 1 + src/assets/i18n/mr.json5 | 1 + src/config/default-app-config.ts | 3 - 8 files changed, 69 insertions(+), 11 deletions(-) diff --git a/src/app/submission/edit/submission-edit.component.spec.ts b/src/app/submission/edit/submission-edit.component.spec.ts index 2749ebe5684..b00d0bdbb6e 100644 --- a/src/app/submission/edit/submission-edit.component.spec.ts +++ b/src/app/submission/edit/submission-edit.component.spec.ts @@ -51,7 +51,13 @@ describe('SubmissionEditComponent Component', () => { const submissionId = '826'; const route: ActivatedRouteStub = new ActivatedRouteStub(); - const submissionObject: any = mockSubmissionObject; + const submissionObject: any = Object.assign({}, mockSubmissionObject, { + collection: { + ...mockSubmissionObject.collection, + hasMetadata: (_: string) => true, + firstMetadataValue: (_: string) => true, + }, + }); beforeEach(waitForAsync(() => { itemDataService = jasmine.createSpyObj('itemDataService', { diff --git a/src/app/submission/edit/submission-edit.component.ts b/src/app/submission/edit/submission-edit.component.ts index 3ac4638eeb6..ded2c60e1ef 100644 --- a/src/app/submission/edit/submission-edit.component.ts +++ b/src/app/submission/edit/submission-edit.component.ts @@ -160,10 +160,8 @@ export class SubmissionEditComponent implements OnDestroy, OnInit { this.router.navigate(['/mydspace']); } else { const collection = submissionObjectRD.payload.collection as Collection; - const entityType = collection.hasMetadata('dspace.entity.type') ? collection.firstMetadataValue('dspace.entity.type') : null; - if (hasValue(entityType)) { - this.entityType = entityType; - } + this.entityType = (hasValue(collection) && collection.hasMetadata('dspace.entity.type')) + ? collection.firstMetadataValue('dspace.entity.type') : null; const { errors } = submissionObjectRD.payload; this.submissionErrors = parseSectionErrors(errors); this.submissionId = submissionObjectRD.payload.id.toString(); diff --git a/src/app/submission/sections/custom-url/submission-section-custom-url.component.html b/src/app/submission/sections/custom-url/submission-section-custom-url.component.html index a256eab927c..30bef2af164 100644 --- a/src/app/submission/sections/custom-url/submission-section-custom-url.component.html +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.html @@ -33,6 +33,5 @@

{{'submission.sections.custom-url.label.previous-urls' | translate}}

}
- } diff --git a/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts b/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts index d1860bd1ad4..44da1ef9c5a 100644 --- a/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts @@ -1,7 +1,13 @@ import { + AfterViewInit, Component, Inject, + ViewChild, } from '@angular/core'; +import { + AbstractControl, + ValidationErrors, +} from '@angular/forms'; import { JsonPatchOperationPathCombiner } from '@dspace/core/json-patch/builder/json-patch-operation-path-combiner'; import { JsonPatchOperationsBuilder } from '@dspace/core/json-patch/builder/json-patch-operations-builder'; import { SubmissionSectionError } from '@dspace/core/submission/models/submission-section-error.model'; @@ -40,6 +46,8 @@ import { SectionFormOperationsService } from '../form/section-form-operations.se import { SectionModelComponent } from '../models/section.model'; import { SectionDataObject } from '../models/section-data.model'; import { SectionsService } from '../sections.service'; + + /** * This component represents the submission section to select the Creative Commons license. */ @@ -53,7 +61,7 @@ import { SectionsService } from '../sections.service'; ], standalone: true, }) -export class SubmissionSectionCustomUrlComponent extends SectionModelComponent { +export class SubmissionSectionCustomUrlComponent extends SectionModelComponent implements AfterViewInit { /** * The form id @@ -103,6 +111,13 @@ export class SubmissionSectionCustomUrlComponent extends SectionModelComponent { */ redirectedUrls: string[] = []; + private readonly errorMessagePrefix = 'error.validation.custom-url.'; + + /** + * The FormComponent reference + */ + @ViewChild('formRef') public formRef: FormComponent; + constructor( protected sectionService: SectionsService, protected operationsBuilder: JsonPatchOperationsBuilder, @@ -181,7 +196,6 @@ export class SubmissionSectionCustomUrlComponent extends SectionModelComponent { * the section data retrieved from the server */ initForm(sectionData: WorkspaceitemSectionCustomUrlObject): void { - const model = this.formModel = [ new DynamicInputModel({ id: 'url', @@ -198,6 +212,42 @@ export class SubmissionSectionCustomUrlComponent extends SectionModelComponent { this.updateSectionData(sectionData); } + customUrlValidator = (_: AbstractControl): ValidationErrors | null => { + if (this.sectionData.errorsToShow?.length) { + const urlErrors = this.sectionData.errorsToShow.map((error) => + error.message.replace(this.errorMessagePrefix, '')); + const validationErrors: ValidationErrors = {}; + + urlErrors.forEach((error) => { + validationErrors[error] = true; + }); + return validationErrors; + } + return null; + }; + + /** + * Update control status + * @param addValidator + */ + updateControlStatus(addValidator = false): void { + const control = this.formRef?.formGroup?.get('url'); + if (control) { + if (addValidator) { + control.addValidators(this.customUrlValidator); + // reset errors on user input + this.subs.push(control.valueChanges.subscribe(() => { + control.setErrors(null); + })); + } + control.updateValueAndValidity({ onlySelf: true, emitEvent: false }); + } + } + + ngAfterViewInit(): void { + this.updateControlStatus(true); + } + /** * When an information is changed build the formOperations * If the submission scope is in EditItem also manage redirected-urls formOperations @@ -250,6 +300,7 @@ export class SubmissionSectionCustomUrlComponent extends SectionModelComponent { if (isNotEmpty(errors) || isNotEmpty(this.sectionData.errorsToShow)) { this.sectionService.checkSectionErrors(this.submissionId, this.sectionData.id, this.formId, errors, this.sectionData.errorsToShow); this.sectionData.errorsToShow = errors; + this.updateControlStatus(true); } }), ); diff --git a/src/app/submission/utils/submission.mock.ts b/src/app/submission/utils/submission.mock.ts index 991c6afc943..35b97993c4c 100644 --- a/src/app/submission/utils/submission.mock.ts +++ b/src/app/submission/utils/submission.mock.ts @@ -404,6 +404,11 @@ export const mockSubmissionObject = { language: null, value: 'Collection of Sample Items', }, + { + key: 'dspace.entity.type', + language: null, + value: 'Entity type of Sample Collection', + }, ], _links: { license: { href: 'https://rest.api/dspace-spring-rest/api/core/collections/1c11f3f1-ba1f-4f36-908a-3f1ea9a557eb/license' }, diff --git a/src/assets/i18n/gu.json5 b/src/assets/i18n/gu.json5 index 9a77081d611..bb5619807d2 100644 --- a/src/assets/i18n/gu.json5 +++ b/src/assets/i18n/gu.json5 @@ -4765,6 +4765,7 @@ "item.preview.dc.identifier.openalex": "ઓપનએલેક્સ પરિચયકર્તા", // "item.preview.dc.description": "Description", + // TODO Source message changed - Revise the translation "item.preview.dc.description": "વર્ણન:", // "item.select.confirm": "Confirm selected", diff --git a/src/assets/i18n/mr.json5 b/src/assets/i18n/mr.json5 index 057ec8a916b..a24a498dcd5 100644 --- a/src/assets/i18n/mr.json5 +++ b/src/assets/i18n/mr.json5 @@ -4760,6 +4760,7 @@ "item.preview.dc.identifier.openalex": "OpenAlex ओळखकर्ता", // "item.preview.dc.description": "Description", + // TODO Source message changed - Revise the translation "item.preview.dc.description": "वर्णन:", // "item.select.confirm": "Confirm selected", diff --git a/src/config/default-app-config.ts b/src/config/default-app-config.ts index 76af5874853..4840c93e1ba 100644 --- a/src/config/default-app-config.ts +++ b/src/config/default-app-config.ts @@ -137,9 +137,6 @@ export class DefaultAppConfig implements AppConfig { validatorMap: { required: 'required', regex: 'pattern', - conflict: 'conflict', - empty: 'empty', - 'invalid-characters': 'invalid-characters', }, }; From 5ead5a42f05ac2fdc1d183df55ec6e909bc25e76 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Fri, 5 Dec 2025 09:21:56 +0100 Subject: [PATCH 05/17] [DURACOM-413] fix lint --- .../custom-url/submission-section-custom-url.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts b/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts index 44da1ef9c5a..706723516f5 100644 --- a/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts @@ -59,7 +59,6 @@ import { SectionsService } from '../sections.service'; FormComponent, TranslateModule, ], - standalone: true, }) export class SubmissionSectionCustomUrlComponent extends SectionModelComponent implements AfterViewInit { From 80c7858a21534be830cc9e4536866c1eed31d681 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Thu, 18 Dec 2025 10:10:38 +0100 Subject: [PATCH 06/17] [DURACOM-413] uodate component comment --- .../custom-url/submission-section-custom-url.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts b/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts index 706723516f5..416e05c532c 100644 --- a/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts @@ -49,7 +49,7 @@ import { SectionsService } from '../sections.service'; /** - * This component represents the submission section to select the Creative Commons license. + * This component represents the submission section for the custom url creation. */ @Component({ selector: 'ds-submission-section-custom-url', From ee08d7bbbf381fbb130719d8f206479425078570 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Fri, 16 Jan 2026 15:22:02 +0100 Subject: [PATCH 07/17] [DURACOM-413] add german labels, force uuid in url for administrative pages --- src/app/item-page/item-page.resolver.spec.ts | 14 +++++++++++ src/app/item-page/item-page.resolver.ts | 15 +++++++++--- src/assets/i18n/de.json5 | 25 +++++++------------- 3 files changed, 35 insertions(+), 19 deletions(-) diff --git a/src/app/item-page/item-page.resolver.spec.ts b/src/app/item-page/item-page.resolver.spec.ts index 7da5b8ff8bb..829ca276fca 100644 --- a/src/app/item-page/item-page.resolver.spec.ts +++ b/src/app/item-page/item-page.resolver.spec.ts @@ -167,6 +167,20 @@ describe('itemPageResolver', () => { done(); }); }); + + it('should replace dspace.customurl if the current route is an administrative one', (done) => { + spyOn(router, 'navigateByUrl').and.callThrough(); + + const route = { params: { id: customUrl } } as any; + const state = { url: `/entities/person/${customUrl}/edit` } as any; + + resolver(route, state, router, itemService, store, authService) + .pipe(first()) + .subscribe(() => { + expect(router.navigateByUrl).toHaveBeenCalledWith(`/entities/person/${uuid}/edit`); + done(); + }); + }); }); }); diff --git a/src/app/item-page/item-page.resolver.ts b/src/app/item-page/item-page.resolver.ts index d2c59f6e1b3..3fe2ca7d02a 100644 --- a/src/app/item-page/item-page.resolver.ts +++ b/src/app/item-page/item-page.resolver.ts @@ -59,11 +59,20 @@ export const itemPageResolver: ResolveFn> = ( return itemRD$.pipe( map((rd: RemoteData) => { if (rd.hasSucceeded && hasValue(rd.payload)) { - const isItemEditPage = state.url.includes('/edit'); + const isItemEditPage = state.url.includes('/edit') || state.url.includes('/bitstreams'); let itemRoute = isItemEditPage ? state.url : router.parseUrl(getItemPageRoute(rd.payload)).toString(); if (hasValue(rd.payload.metadata) && rd.payload.hasMetadata('dspace.customurl')) { - if (route.params.id !== rd.payload.firstMetadataValue('dspace.customurl')) { - const newUrl = itemRoute.replace(route.params.id,rd.payload.firstMetadataValue('dspace.customurl')); + const customUrl = rd.payload.firstMetadataValue('dspace.customurl'); + let newUrl: string; + if (route.params.id !== customUrl && !isItemEditPage) { + newUrl = itemRoute.replace(route.params.id,rd.payload.firstMetadataValue('dspace.customurl')); + } else if (isItemEditPage && route.params.id === customUrl) { + // In case of an edit page, we need to ensure we navigate to the edit page of the item ID, not the custom URL + const itemId = rd.payload.uuid; + newUrl = itemRoute.replace(rd.payload.firstMetadataValue('dspace.customurl'), itemId); + } + + if (hasValue(newUrl)) { router.navigateByUrl(newUrl); } } else { diff --git a/src/assets/i18n/de.json5 b/src/assets/i18n/de.json5 index 936596ca965..3f471ed4b11 100644 --- a/src/assets/i18n/de.json5 +++ b/src/assets/i18n/de.json5 @@ -2920,23 +2920,20 @@ // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.required": "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ückkehren, um zuzustimmen oder die Einreichung zu löschen.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + "error.validation.custom-url.conflict": "Die sprechende URL wird bereits andersweitig genutzt. Bitte versuchen Sie es mit einer anderen URL.", // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + "error.validation.custom-url.empty": "Die sprechende URL ist erforderlich und darf nicht leer sein.", // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + "error.validation.custom-url.invalid-characters": "Die sprechende URL enthält ungültige Zeichen.", // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Die Eingabe muss dem folgenden Muster entsprechen: {{ pattern }}.", @@ -8497,8 +8494,7 @@ "submission.sections.submit.progressbar.CClicense": "Creative commons license", // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + "submission.sections.submit.progressbar.CustomUrlStep": "Sprechende URL", // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Wiederverwerten", @@ -8670,12 +8666,10 @@ "submission.sections.custom-url.label.previous-urls": "Previous Urls", // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + "submission.sections.custom-url.alert.info": "Legen Sie hier eine sprechende URL fest, über die das Item anstelle eines zufällig generierten internen UUID Identifiers erreichbar ist. ", // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", + "submission.sections.custom-url.url.placeholder": "Sprechende URL", // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Wenn ausgewählt, kann das Item in der Suche/im Browsing gefunden werden. Wenn nicht ausgewählt, ist das Item nur über einen direkten Link aufrufbar und erscheint nie in der Suche/im Browsing.", @@ -11145,12 +11139,11 @@ "item.preview.organization.url": "URL", // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", + "item.preview.organization.address.addressLocality": "Stadt", // "item.preview.organization.alternateName": "Alternative name", // TODO New key - Add a translation "item.preview.organization.alternateName": "Alternative name", -} \ No newline at end of file +} From 2dfdf7d6483a16e09cf01ee11fe13c3216e6ec78 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Thu, 29 Jan 2026 16:21:51 +0100 Subject: [PATCH 08/17] [DURACOM-413] restore changes to i18n files --- src/assets/i18n/ar.json5 | 53 +- src/assets/i18n/ca.json5 | 45 +- src/assets/i18n/el.json5 | 45 +- src/assets/i18n/es.json5 | 49 +- src/assets/i18n/fi.json5 | 47 +- src/assets/i18n/fr.json5 | 57 +- src/assets/i18n/gd.json5 | 47 +- src/assets/i18n/gu.json5 | 5663 ++++++++-------------------------- src/assets/i18n/hi.json5 | 45 +- src/assets/i18n/it.json5 | 45 +- src/assets/i18n/ja.json5 | 44 +- src/assets/i18n/kk.json5 | 47 +- src/assets/i18n/lv.json5 | 45 +- src/assets/i18n/mr.json5 | 4637 +++------------------------- src/assets/i18n/nl.json5 | 45 +- src/assets/i18n/pl.json5 | 45 +- src/assets/i18n/pt-BR.json5 | 40 +- src/assets/i18n/pt-PT.json5 | 47 +- src/assets/i18n/ru.json5 | 1172 +------ src/assets/i18n/sr-cyr.json5 | 45 +- src/assets/i18n/sr-lat.json5 | 45 +- src/assets/i18n/sv.json5 | 47 +- src/assets/i18n/sw.json5 | 44 +- src/assets/i18n/tr.json5 | 47 +- src/assets/i18n/uk.json5 | 47 +- src/assets/i18n/vi.json5 | 45 +- 26 files changed, 1896 insertions(+), 10642 deletions(-) diff --git a/src/assets/i18n/ar.json5 b/src/assets/i18n/ar.json5 index 3390e4efbe4..4a4f7589d4c 100644 --- a/src/assets/i18n/ar.json5 +++ b/src/assets/i18n/ar.json5 @@ -2885,25 +2885,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "حدث خطأ أثناء جلب مجتمعات المستوى الأعلى", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "يجب عليك منح هذا الترخيص لإكمال عملية التقديم الخاصة بك. إذا لم تتمكن من منح هذا الترخيص في هذا الوقت، يمكنك حفظ عملك والعودة لاحقاً أو إزالة التقديم.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "يجب عليك منح رخصة المشاع الإبداعي هذه لإكمال تقديمك. إذا لم تتمكن من منح الرخصة في هذا الوقت، يمكنك حفظ عملك والعودة لاحقًا أو إزالة التقديم.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "هذا الإدخال مقيد بالنمط الحالي: {{ pattern }}.", @@ -4531,8 +4518,7 @@ "item.preview.dc.rights": "الحقوق", // "item.preview.dc.identifier.other": "Other Identifier", - // TODO Source message changed - Revise the translation - "item.preview.dc.identifier.other": "معرف آخر:", + "item.preview.dc.identifier.other": "معرف آخر", // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4622,8 +4608,7 @@ "item.preview.dc.identifier.openalex": "معرّف OpenAlex", // "item.preview.dc.description": "Description", - // TODO Source message changed - Revise the translation - "item.preview.dc.description": "الوصف:", + "item.preview.dc.description": "الوصف", // "item.select.confirm": "Confirm selected", "item.select.confirm": "تأكيد المحدد", @@ -8332,10 +8317,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "الإبداعية العامة", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "إعادة تدوير", @@ -8501,18 +8482,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "نجح التحميل", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "عند التحديد، ستكون هذه المادة قابلة للاكتشاف في البحث/الاستعراض. عند إلغاء التحديد، ستكون المادة متاحة فقط عبر رابط مباشر ولن تظهر أبدًا في البحث/الاستعراض.", @@ -10900,17 +10869,5 @@ // "file-download-link.request-copy": "Request a copy of ", "file-download-link.request-copy": "طلب نسخة من ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/ca.json5 b/src/assets/i18n/ca.json5 index fbd2c8361c4..a984fb254c7 100644 --- a/src/assets/i18n/ca.json5 +++ b/src/assets/i18n/ca.json5 @@ -2923,25 +2923,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Error en recuperar les comunitats de primer nivell", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Ha de concedir aquesta llicència de dipòsit per completar l'enviament. Si no podeu concedir aquesta llicència en aquest moment, podeu desar el vostre treball i tornar més tard o bé eliminar l'enviament.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Heu de concedir aquesta llicència CC per completar l'enviament. Si no podeu concedir aquesta llicència CC en aquest moment, podeu desar el vostre treball i tornar més tard o bé eliminar l'enviament.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Aquest camp d'entrada està restringit per aquest patró: {{ pattern }}.", @@ -8489,10 +8476,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Llicència Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8658,18 +8641,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Pujada completada amb èxit", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si el marca, l'ítem serà detectable al cercador/navegador. Si el desmarca, l'ítem només estarà disponible mitjançant l'enllaç directe, i no apareixerà al cercar/navegar.", @@ -11127,17 +11098,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/el.json5 b/src/assets/i18n/el.json5 index 1dd9181ecd0..64f67ecec35 100644 --- a/src/assets/i18n/el.json5 +++ b/src/assets/i18n/el.json5 @@ -3213,26 +3213,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Σφάλμα κατά την ανάκτηση κοινοτήτων ανώτατου επιπέδου", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Πρέπει να χορηγήσετε αυτήν την άδεια για να ολοκληρώσετε την υποβολή σας. Εάν δεν μπορείτε να εκχωρήσετε αυτήν την άδεια αυτήν τη στιγμή, μπορείτε να αποθηκεύσετε την εργασία σας και να επιστρέψετε αργότερα ή να καταργήσετε την υποβολή.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9269,10 +9256,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Άδεια Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ανακυκλωνω", @@ -9444,18 +9427,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Επιτυχής μεταφόρτωση", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Όταν είναι επιλεγμένο, αυτό το τεκμήριο θα μπορεί να εντοπιστεί στην αναζήτηση/περιήγηση. Όταν δεν είναι επιλεγμένο, το τεκμήριο θα είναι διαθέσιμο μόνο μέσω απευθείας συνδέσμου και δεν θα εμφανίζεται ποτέ στην αναζήτηση/περιήγηση.", @@ -12431,17 +12402,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/es.json5 b/src/assets/i18n/es.json5 index 2623bf1d5a1..7f1b2f4d6f6 100644 --- a/src/assets/i18n/es.json5 +++ b/src/assets/i18n/es.json5 @@ -2899,25 +2899,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Error al recuperar las comunidades de primer nivel", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Debe conceder esta licencia de depósito para completar el envío. Si no puede conceder esta licencia en este momento, puede guardar su trabajo y regresar más tarde o bien eliminar el envío.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Debe conceder esta licencia CC para completar su envío. Si no puede conceder esta licencia CC en este momento, puede guardar su trabajo y regresar más tarde o bien eliminar el envío.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Esta entrada está restringida por este patrón: {{ pattern }}.", @@ -4584,7 +4571,6 @@ "item.preview.dc.rights": "Rights", // "item.preview.dc.identifier.other": "Other Identifier", - // TODO Source message changed - Revise the translation "item.preview.dc.identifier.other": "Otro identificador:", // "item.preview.dc.relation.issn": "ISSN", @@ -4675,7 +4661,6 @@ "item.preview.dc.identifier.openalex": "Identificador OpenAlex", // "item.preview.dc.description": "Description", - // TODO Source message changed - Revise the translation "item.preview.dc.description": "Descripción:", // "item.select.confirm": "Confirm selected", @@ -8435,10 +8420,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licencia Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8604,18 +8585,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Subida exitosa", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si lo marca, el ítem será detectable en el buscador/navegador. Si lo desmarca, el ítems solo estará disponible mediante el enlace directo, y no aparecerá en el buscador/navegador.", @@ -11006,17 +10975,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/fi.json5 b/src/assets/i18n/fi.json5 index 5659fe9f6e4..a86f12487c5 100644 --- a/src/assets/i18n/fi.json5 +++ b/src/assets/i18n/fi.json5 @@ -3106,26 +3106,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Virhe ylätason yhteisöjä noudettaessa", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Tallennusprosessia ei voi päättää, ellet hyväksy julkaisulisenssiä. Voit myös tallentaa tiedot ja jatkaa tallennusta myöhemmin tai poistaa kaikki syöttämäsi tiedot.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Syötteen on noudatettava seuraavaa kaavaa: {{ pattern }}.", @@ -8984,10 +8971,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons -lisenssi", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Kierrätä", @@ -9156,18 +9139,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Lataus valmis", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Kun tämä on valittu, tietue on löydettävissä haussa ja selailtaessa. Kun tätä ei ole valittu, tietue on saatavilla vain suoran linkin kautta, eikä se näy haussa tai selailtaessa.", @@ -12044,17 +12015,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/fr.json5 b/src/assets/i18n/fr.json5 index b8c5aae9cf9..46daedcf7fd 100644 --- a/src/assets/i18n/fr.json5 +++ b/src/assets/i18n/fr.json5 @@ -2917,25 +2917,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erreur lors de la récupération des communautés de 1er niveau", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Vous devez accepter cette licence pour terminer votre dépôt. Si vous êtes dans l'incapacité d'accepter cette licence actuellement, vous pouvez sauvegarder votre dépôt et y revenir ultérieurement ou le supprimer.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Vous devez approuver cette Licence Creative Commons afin de finaliser votre sumissions. Si vous n'êtes pas en mesure d'approuver la licence pour le moment, vous pouvez souvegarder votre travail pour y revenir plus tard ou supprimer la soumission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Cette entrée est invalide en vertu du modèle actuel : {{ pattern }}.", @@ -4592,10 +4579,6 @@ // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "Droits", - // "item.preview.dc.identifier.other": "Other Identifier", - // TODO Source message changed - Revise the translation - "item.preview.dc.identifier.other": "Autre identifiant :", - // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4683,10 +4666,6 @@ // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "Identifiant OpenAlex", - // "item.preview.dc.description": "Description", - // TODO Source message changed - Revise the translation - "item.preview.dc.description": "Description :", - // "item.select.confirm": "Confirm selected", "item.select.confirm": "Confirmer la sélection", @@ -6973,6 +6952,7 @@ // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "Description du fichier", + // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", "search.filters.applied.f.has_geospatial_metadata": "A l'emplacement géographique", @@ -8406,10 +8386,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licence Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Recycler", @@ -8575,18 +8551,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Téléchargement réussi", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si cette case est cochée, cet Item pourra être découvert dans la recherche/index parcourir. Si cette case n'est pas cochée, l'Item ne sera disponible que via un lien direct et n'apparaîtra jamais dans la recherche/index parcourir.", @@ -10980,17 +10944,4 @@ // "file-download-link.request-copy": "Request a copy of ", "file-download-link.request-copy": "Demander une copie de ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - - -} \ No newline at end of file +} diff --git a/src/assets/i18n/gd.json5 b/src/assets/i18n/gd.json5 index ef034bd9478..82d1da5d741 100644 --- a/src/assets/i18n/gd.json5 +++ b/src/assets/i18n/gd.json5 @@ -3279,26 +3279,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Mearachd a' faighinn choimhearsnachdan sàr-ìre", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Feumaidh tu an cead seo a thoirt gus crìoch a chur air a' chur-a-steach. Mura h-urrainn dhut cead a thoirt an-dràsta is urrainn dhut an obair a shàbhaladh agus tilleadh aig àm eile no an cur-a-steach a thoirt air falbh.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9482,10 +9469,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Cead-cleachdaidh cruthachail", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ath-chuairtich", @@ -9665,18 +9648,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Dh'obraich an luchdachadh suas", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -12824,17 +12795,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/gu.json5 b/src/assets/i18n/gu.json5 index bb5619807d2..dd6cafa82aa 100644 --- a/src/assets/i18n/gu.json5 +++ b/src/assets/i18n/gu.json5 @@ -1,11168 +1,8191 @@ { - // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "તમે આ પેજને ઍક્સેસ કરવા માટે અધિકૃત નથી. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", - // "401.link.home-page": "Take me to the home page", "401.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", - // "401.unauthorized": "Unauthorized", "401.unauthorized": "અનધિકૃત", - // "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.", "403.help": "તમને આ પેજને ઍક્સેસ કરવાની પરવાનગી નથી. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", - // "403.link.home-page": "Take me to the home page", "403.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", - // "403.forbidden": "Forbidden", "403.forbidden": "પ્રતિબંધિત", - // "500.page-internal-server-error": "Service unavailable", "500.page-internal-server-error": "સેવા ઉપલબ્ધ નથી", - // "500.help": "The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.", "500.help": "સર્વર અત્યારે જાળવણી ડાઉનટાઇમ અથવા ક્ષમતા સમસ્યાઓને કારણે તમારી વિનંતીને સેવા આપવા માટે અસમર્થ છે. કૃપા કરીને થોડીવાર પછી ફરી પ્રયાસ કરો.", - // "500.link.home-page": "Take me to the home page", "500.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", - // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ", "404.help": "અમે તે પેજ શોધી શકતા નથી જે તમે શોધી રહ્યા છો. પેજને ખસેડવામાં આવ્યું હશે અથવા કાઢી નાખવામાં આવ્યું હશે. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", - // "404.link.home-page": "Take me to the home page", "404.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", - // "404.page-not-found": "Page not found", "404.page-not-found": "પેજ મળ્યું નથી", - // "error-page.description.401": "Unauthorized", "error-page.description.401": "અનધિકૃત", - // "error-page.description.403": "Forbidden", "error-page.description.403": "પ્રતિબંધિત", - // "error-page.description.500": "Service unavailable", "error-page.description.500": "સેવા ઉપલબ્ધ નથી", - // "error-page.description.404": "Page not found", "error-page.description.404": "પેજ મળ્યું નથી", - // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "ORCID મારફતે લૉગિન દરમિયાન એક ભૂલ આવી. ખાતરી કરો કે તમે DSpace સાથે તમારા ORCID ખાતા ઇમેઇલ સરનામાને શેર કર્યું છે. જો ભૂલ ચાલુ રહે, તો એડમિનિસ્ટ્રેટરને સંપર્ક કરો", - // "listelement.badge.access-status": "Access status:", - // TODO New key - Add a translation - "listelement.badge.access-status": "Access status:", - - // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "એમ્બાર્ગો", - // "access-status.metadata.only.listelement.badge": "Metadata only", "access-status.metadata.only.listelement.badge": "મેટાડેટા માત્ર", - // "access-status.open.access.listelement.badge": "Open Access", "access-status.open.access.listelement.badge": "ઓપન ઍક્સેસ", - // "access-status.restricted.listelement.badge": "Restricted", "access-status.restricted.listelement.badge": "પ્રતિબંધિત", - // "access-status.unknown.listelement.badge": "Unknown", "access-status.unknown.listelement.badge": "અજ્ઞાત", - // "admin.curation-tasks.breadcrumbs": "System curation tasks", "admin.curation-tasks.breadcrumbs": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", - // "admin.curation-tasks.title": "System curation tasks", "admin.curation-tasks.title": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", - // "admin.curation-tasks.header": "System curation tasks", "admin.curation-tasks.header": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", - // "admin.registries.bitstream-formats.breadcrumbs": "Format registry", "admin.registries.bitstream-formats.breadcrumbs": "ફોર્મેટ રજિસ્ટ્રી", - // "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.create.breadcrumbs": "બિટસ્ટ્રીમ ફોર્મેટ", - // "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.", "admin.registries.bitstream-formats.create.failure.content": "નવું બિટસ્ટ્રીમ ફોર્મેટ બનાવતી વખતે એક ભૂલ આવી.", - // "admin.registries.bitstream-formats.create.failure.head": "Failure", "admin.registries.bitstream-formats.create.failure.head": "અસફળતા", - // "admin.registries.bitstream-formats.create.head": "Create bitstream format", "admin.registries.bitstream-formats.create.head": "બિટસ્ટ્રીમ ફોર્મેટ બનાવો", - // "admin.registries.bitstream-formats.create.new": "Add a new bitstream format", "admin.registries.bitstream-formats.create.new": "નવું બિટસ્ટ્રીમ ફોર્મેટ ઉમેરો", - // "admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.", "admin.registries.bitstream-formats.create.success.content": "નવું બિટસ્ટ્રીમ ફોર્મેટ સફળતાપૂર્વક બનાવવામાં આવ્યું.", - // "admin.registries.bitstream-formats.create.success.head": "Success", "admin.registries.bitstream-formats.create.success.head": "સફળતા", - // "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} ફોર્મેટ(ઓ) દૂર કરવામાં નિષ્ફળ", - // "admin.registries.bitstream-formats.delete.failure.head": "Failure", "admin.registries.bitstream-formats.delete.failure.head": "અસફળતા", - // "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} ફોર્મેટ(ઓ) સફળતાપૂર્વક દૂર કરવામાં આવ્યા", - // "admin.registries.bitstream-formats.delete.success.head": "Success", "admin.registries.bitstream-formats.delete.success.head": "સફળતા", - // "admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.", "admin.registries.bitstream-formats.description": "આ બિટસ્ટ્રીમ ફોર્મેટ્સની યાદી જાણીતા ફોર્મેટ્સ અને તેમની સપોર્ટ લેવલ વિશેની માહિતી પ્રદાન કરે છે.", - // "admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.edit.breadcrumbs": "બિટસ્ટ્રીમ ફોર્મેટ", - // "admin.registries.bitstream-formats.edit.description.hint": "", "admin.registries.bitstream-formats.edit.description.hint": "", - // "admin.registries.bitstream-formats.edit.description.label": "Description", "admin.registries.bitstream-formats.edit.description.label": "વર્ણન", - // "admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.", "admin.registries.bitstream-formats.edit.extensions.hint": "એક્સ્ટેન્શન્સ ફાઇલ એક્સ્ટેન્શન્સ છે જે અપલોડ કરેલી ફાઇલોના ફોર્મેટને આપમેળે ઓળખવા માટે વપરાય છે. તમે દરેક ફોર્મેટ માટે અનેક એક્સ્ટેન્શન્સ દાખલ કરી શકો છો.", - // "admin.registries.bitstream-formats.edit.extensions.label": "File extensions", "admin.registries.bitstream-formats.edit.extensions.label": "ફાઇલ એક્સ્ટેન્શન્સ", - // "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot", "admin.registries.bitstream-formats.edit.extensions.placeholder": "ડોટ વિના ફાઇલ એક્સ્ટેન્શન દાખલ કરો", - // "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.", "admin.registries.bitstream-formats.edit.failure.content": "બિટસ્ટ્રીમ ફોર્મેટ સંપાદિત કરતી વખતે એક ભૂલ આવી.", - // "admin.registries.bitstream-formats.edit.failure.head": "Failure", "admin.registries.bitstream-formats.edit.failure.head": "અસફળતા", - // "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", - // TODO New key - Add a translation - "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + "admin.registries.bitstream-formats.edit.head": "બિટસ્ટ્રીમ ફોર્મેટ: {{ format }}", - // "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.", "admin.registries.bitstream-formats.edit.internal.hint": "આંતરિક તરીકે ચિહ્નિત ફોર્મેટ્સ વપરાશકર્તા માટે છુપાયેલા છે અને વહીવટી હેતુઓ માટે વપરાય છે.", - // "admin.registries.bitstream-formats.edit.internal.label": "Internal", "admin.registries.bitstream-formats.edit.internal.label": "આંતરિક", - // "admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.", "admin.registries.bitstream-formats.edit.mimetype.hint": "આ ફોર્મેટ સાથે સંકળાયેલ MIME પ્રકાર, અનન્ય હોવો જરૂરી નથી.", - // "admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type", "admin.registries.bitstream-formats.edit.mimetype.label": "MIME પ્રકાર", - // "admin.registries.bitstream-formats.edit.shortDescription.hint": "A unique name for this format, (e.g. Microsoft Word XP or Microsoft Word 2000)", "admin.registries.bitstream-formats.edit.shortDescription.hint": "આ ફોર્મેટ માટેનું અનન્ય નામ, (ઉદાહરણ તરીકે, Microsoft Word XP અથવા Microsoft Word 2000)", - // "admin.registries.bitstream-formats.edit.shortDescription.label": "Name", "admin.registries.bitstream-formats.edit.shortDescription.label": "નામ", - // "admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.", "admin.registries.bitstream-formats.edit.success.content": "બિટસ્ટ્રીમ ફોર્મેટ સફળતાપૂર્વક સંપાદિત કરવામાં આવ્યું.", - // "admin.registries.bitstream-formats.edit.success.head": "Success", "admin.registries.bitstream-formats.edit.success.head": "સફળતા", - // "admin.registries.bitstream-formats.edit.supportLevel.hint": "The level of support your institution pledges for this format.", "admin.registries.bitstream-formats.edit.supportLevel.hint": "આ ફોર્મેટ માટે તમારું સંસ્થા જે સપોર્ટ લેવલ વચન આપે છે.", - // "admin.registries.bitstream-formats.edit.supportLevel.label": "Support level", "admin.registries.bitstream-formats.edit.supportLevel.label": "સપોર્ટ લેવલ", - // "admin.registries.bitstream-formats.head": "Bitstream Format Registry", "admin.registries.bitstream-formats.head": "બિટસ્ટ્રીમ ફોર્મેટ રજિસ્ટ્રી", - // "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.", "admin.registries.bitstream-formats.no-items": "બિટસ્ટ્રીમ ફોર્મેટ્સ બતાવવા માટે નથી.", - // "admin.registries.bitstream-formats.table.delete": "Delete selected", "admin.registries.bitstream-formats.table.delete": "પસંદ કરેલને કાઢી નાખો", - // "admin.registries.bitstream-formats.table.deselect-all": "Deselect all", "admin.registries.bitstream-formats.table.deselect-all": "બધા પસંદ કરેલને દૂર કરો", - // "admin.registries.bitstream-formats.table.internal": "internal", "admin.registries.bitstream-formats.table.internal": "આંતરિક", - // "admin.registries.bitstream-formats.table.mimetype": "MIME Type", "admin.registries.bitstream-formats.table.mimetype": "MIME પ્રકાર", - // "admin.registries.bitstream-formats.table.name": "Name", "admin.registries.bitstream-formats.table.name": "નામ", - // "admin.registries.bitstream-formats.table.selected": "Selected bitstream formats", "admin.registries.bitstream-formats.table.selected": "પસંદ કરેલ બિટસ્ટ્રીમ ફોર્મેટ્સ", - // "admin.registries.bitstream-formats.table.id": "ID", "admin.registries.bitstream-formats.table.id": "ID", - // "admin.registries.bitstream-formats.table.return": "Back", "admin.registries.bitstream-formats.table.return": "પાછા", - // "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known", "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "જાણીતું", - // "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported", "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "સપોર્ટેડ", - // "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown", "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "અજ્ઞાત", - // "admin.registries.bitstream-formats.table.supportLevel.head": "Support Level", "admin.registries.bitstream-formats.table.supportLevel.head": "સપોર્ટ લેવલ", - // "admin.registries.bitstream-formats.title": "Bitstream Format Registry", "admin.registries.bitstream-formats.title": "બિટસ્ટ્રીમ ફોર્મેટ રજિસ્ટ્રી", - // "admin.registries.bitstream-formats.select": "Select", "admin.registries.bitstream-formats.select": "પસંદ કરો", - // "admin.registries.bitstream-formats.deselect": "Deselect", "admin.registries.bitstream-formats.deselect": "પસંદ કરેલને દૂર કરો", - // "admin.registries.metadata.breadcrumbs": "Metadata registry", "admin.registries.metadata.breadcrumbs": "મેટાડેટા રજિસ્ટ્રી", - // "admin.registries.metadata.description": "The metadata registry maintains a list of all metadata fields available in the repository. These fields may be divided amongst multiple schemas. However, DSpace requires the qualified Dublin Core schema.", "admin.registries.metadata.description": "મેટાડેટા રજિસ્ટ્રી રિપોઝિટરીમાં ઉપલબ્ધ તમામ મેટાડેટા ફીલ્ડ્સની યાદી જાળવે છે. આ ફીલ્ડ્સને અનેક સ્કીમા વચ્ચે વિભાજિત કરી શકાય છે. જો કે, DSpace ને લાયક ડબલિન કોર સ્કીમાની જરૂર છે.", - // "admin.registries.metadata.form.create": "Create metadata schema", "admin.registries.metadata.form.create": "મેટાડેટા સ્કીમા બનાવો", - // "admin.registries.metadata.form.edit": "Edit metadata schema", "admin.registries.metadata.form.edit": "મેટાડેટા સ્કીમા સંપાદિત કરો", - // "admin.registries.metadata.form.name": "Name", "admin.registries.metadata.form.name": "નામ", - // "admin.registries.metadata.form.namespace": "Namespace", "admin.registries.metadata.form.namespace": "નેમસ્પેસ", - // "admin.registries.metadata.head": "Metadata Registry", "admin.registries.metadata.head": "મેટાડેટા રજિસ્ટ્રી", - // "admin.registries.metadata.schemas.no-items": "No metadata schemas to show.", "admin.registries.metadata.schemas.no-items": "બતાવવા માટે કોઈ મેટાડેટા સ્કીમા નથી.", - // "admin.registries.metadata.schemas.select": "Select", "admin.registries.metadata.schemas.select": "પસંદ કરો", - // "admin.registries.metadata.schemas.deselect": "Deselect", "admin.registries.metadata.schemas.deselect": "પસંદ કરેલને દૂર કરો", - // "admin.registries.metadata.schemas.table.delete": "Delete selected", "admin.registries.metadata.schemas.table.delete": "પસંદ કરેલને કાઢી નાખો", - // "admin.registries.metadata.schemas.table.selected": "Selected schemas", "admin.registries.metadata.schemas.table.selected": "પસંદ કરેલ સ્કીમા", - // "admin.registries.metadata.schemas.table.id": "ID", "admin.registries.metadata.schemas.table.id": "ID", - // "admin.registries.metadata.schemas.table.name": "Name", "admin.registries.metadata.schemas.table.name": "નામ", - // "admin.registries.metadata.schemas.table.namespace": "Namespace", "admin.registries.metadata.schemas.table.namespace": "નેમસ્પેસ", - // "admin.registries.metadata.title": "Metadata Registry", "admin.registries.metadata.title": "મેટાડેટા રજિસ્ટ્રી", - // "admin.registries.schema.breadcrumbs": "Metadata schema", "admin.registries.schema.breadcrumbs": "મેટાડેટા સ્કીમા", - // "admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".", "admin.registries.schema.description": "આ {{namespace}} માટેનું મેટાડેટા સ્કીમા છે.", - // "admin.registries.schema.fields.select": "Select", "admin.registries.schema.fields.select": "પસંદ કરો", - // "admin.registries.schema.fields.deselect": "Deselect", "admin.registries.schema.fields.deselect": "પસંદ કરેલને દૂર કરો", - // "admin.registries.schema.fields.head": "Schema metadata fields", "admin.registries.schema.fields.head": "સ્કીમા મેટાડેટા ફીલ્ડ્સ", - // "admin.registries.schema.fields.no-items": "No metadata fields to show.", "admin.registries.schema.fields.no-items": "બતાવવા માટે કોઈ મેટાડેટા ફીલ્ડ્સ નથી.", - // "admin.registries.schema.fields.table.delete": "Delete selected", "admin.registries.schema.fields.table.delete": "પસંદ કરેલને કાઢી નાખો", - // "admin.registries.schema.fields.table.field": "Field", "admin.registries.schema.fields.table.field": "ફીલ્ડ", - // "admin.registries.schema.fields.table.selected": "Selected metadata fields", "admin.registries.schema.fields.table.selected": "પસંદ કરેલ મેટાડેટા ફીલ્ડ્સ", - // "admin.registries.schema.fields.table.id": "ID", "admin.registries.schema.fields.table.id": "ID", - // "admin.registries.schema.fields.table.scopenote": "Scope Note", "admin.registries.schema.fields.table.scopenote": "સ્કોપ નોંધ", - // "admin.registries.schema.form.create": "Create metadata field", "admin.registries.schema.form.create": "મેટાડેટા ફીલ્ડ બનાવો", - // "admin.registries.schema.form.edit": "Edit metadata field", "admin.registries.schema.form.edit": "મેટાડેટા ફીલ્ડ સંપાદિત કરો", - // "admin.registries.schema.form.element": "Element", "admin.registries.schema.form.element": "એલિમેન્ટ", - // "admin.registries.schema.form.qualifier": "Qualifier", "admin.registries.schema.form.qualifier": "ક્વોલિફાયર", - // "admin.registries.schema.form.scopenote": "Scope Note", "admin.registries.schema.form.scopenote": "સ્કોપ નોંધ", - // "admin.registries.schema.head": "Metadata Schema", "admin.registries.schema.head": "મેટાડેટા સ્કીમા", - // "admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.created": "સફળતાપૂર્વક મેટાડેટા સ્કીમા {{prefix}} બનાવ્યું", - // "admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.failure": "{{amount}} મેટાડેટા સ્કીમા કાઢી નાખવામાં નિષ્ફળ", - // "admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.success": "{{amount}} મેટાડેટા સ્કીમા સફળતાપૂર્વક કાઢી નાખ્યા", - // "admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.edited": "સફળતાપૂર્વક મેટાડેટા સ્કીમા {{prefix}} સંપાદિત કર્યું", - // "admin.registries.schema.notification.failure": "Error", "admin.registries.schema.notification.failure": "ભૂલ", - // "admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"", "admin.registries.schema.notification.field.created": "સફળતાપૂર્વક મેટાડેટા ફીલ્ડ {{field}} બનાવ્યું", - // "admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.failure": "{{amount}} મેટાડેટા ફીલ્ડ્સ કાઢી નાખવામાં નિષ્ફળ", - // "admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.success": "{{amount}} મેટાડેટા ફીલ્ડ્સ સફળતાપૂર્વક કાઢી નાખ્યા", - // "admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"", "admin.registries.schema.notification.field.edited": "સફળતાપૂર્વક મેટાડેટા ફીલ્ડ {{field}} સંપાદિત કર્યું", - // "admin.registries.schema.notification.success": "Success", "admin.registries.schema.notification.success": "સફળતા", - // "admin.registries.schema.return": "Back", "admin.registries.schema.return": "પાછા", - // "admin.registries.schema.title": "Metadata Schema Registry", "admin.registries.schema.title": "મેટાડેટા સ્કીમા રજિસ્ટ્રી", - // "admin.access-control.bulk-access.breadcrumbs": "Bulk Access Management", "admin.access-control.bulk-access.breadcrumbs": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", - // "administrativeBulkAccess.search.results.head": "Search Results", "administrativeBulkAccess.search.results.head": "શોધ પરિણામો", - // "admin.access-control.bulk-access": "Bulk Access Management", "admin.access-control.bulk-access": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", - // "admin.access-control.bulk-access.title": "Bulk Access Management", "admin.access-control.bulk-access.title": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", - // "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", - // TODO New key - Add a translation - "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + "admin.access-control.bulk-access-browse.header": "પગલું 1: ઑબ્જેક્ટ્સ પસંદ કરો", - // "admin.access-control.bulk-access-browse.search.header": "Search", "admin.access-control.bulk-access-browse.search.header": "શોધ", - // "admin.access-control.bulk-access-browse.selected.header": "Current selection({{number}})", "admin.access-control.bulk-access-browse.selected.header": "વર્તમાન પસંદગી({{number}})", - // "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", - // TODO New key - Add a translation - "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + "admin.access-control.bulk-access-settings.header": "પગલું 2: કરવા માટેની ક્રિયા", - // "admin.access-control.epeople.actions.delete": "Delete EPerson", "admin.access-control.epeople.actions.delete": "EPerson કાઢી નાખો", - // "admin.access-control.epeople.actions.impersonate": "Impersonate EPerson", "admin.access-control.epeople.actions.impersonate": "EPerson તરીકે કામ કરો", - // "admin.access-control.epeople.actions.reset": "Reset password", "admin.access-control.epeople.actions.reset": "પાસવર્ડ રીસેટ કરો", - // "admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson", "admin.access-control.epeople.actions.stop-impersonating": "EPerson તરીકે કામ કરવાનું બંધ કરો", - // "admin.access-control.epeople.breadcrumbs": "EPeople", "admin.access-control.epeople.breadcrumbs": "EPeople", - // "admin.access-control.epeople.title": "EPeople", "admin.access-control.epeople.title": "EPeople", - // "admin.access-control.epeople.edit.breadcrumbs": "New EPerson", "admin.access-control.epeople.edit.breadcrumbs": "નવું EPerson", - // "admin.access-control.epeople.edit.title": "New EPerson", "admin.access-control.epeople.edit.title": "નવું EPerson", - // "admin.access-control.epeople.add.breadcrumbs": "Add EPerson", "admin.access-control.epeople.add.breadcrumbs": "EPerson ઉમેરો", - // "admin.access-control.epeople.add.title": "Add EPerson", "admin.access-control.epeople.add.title": "EPerson ઉમેરો", - // "admin.access-control.epeople.head": "EPeople", "admin.access-control.epeople.head": "EPeople", - // "admin.access-control.epeople.search.head": "Search", "admin.access-control.epeople.search.head": "શોધ", - // "admin.access-control.epeople.button.see-all": "Browse All", "admin.access-control.epeople.button.see-all": "બધા બ્રાઉઝ કરો", - // "admin.access-control.epeople.search.scope.metadata": "Metadata", "admin.access-control.epeople.search.scope.metadata": "મેટાડેટા", - // "admin.access-control.epeople.search.scope.email": "Email (exact)", "admin.access-control.epeople.search.scope.email": "ઇમેઇલ (ચોક્કસ)", - // "admin.access-control.epeople.search.button": "Search", "admin.access-control.epeople.search.button": "શોધ", - // "admin.access-control.epeople.search.placeholder": "Search people...", "admin.access-control.epeople.search.placeholder": "લોકોને શોધો...", - // "admin.access-control.epeople.button.add": "Add EPerson", "admin.access-control.epeople.button.add": "EPerson ઉમેરો", - // "admin.access-control.epeople.table.id": "ID", "admin.access-control.epeople.table.id": "ID", - // "admin.access-control.epeople.table.name": "Name", "admin.access-control.epeople.table.name": "નામ", - // "admin.access-control.epeople.table.email": "Email (exact)", "admin.access-control.epeople.table.email": "ઇમેઇલ (ચોક્કસ)", - // "admin.access-control.epeople.table.edit": "Edit", "admin.access-control.epeople.table.edit": "સંપાદિત કરો", - // "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", - // "admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group", "admin.access-control.epeople.table.edit.buttons.edit-disabled": "તમે આ જૂથને સંપાદિત કરવા માટે અધિકૃત નથી", - // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "{{name}} ને કાઢી નાખો", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", - - // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "બતાવવા માટે કોઈ EPeople નથી.", - // "admin.access-control.epeople.form.create": "Create EPerson", "admin.access-control.epeople.form.create": "EPerson બનાવો", - // "admin.access-control.epeople.form.edit": "Edit EPerson", "admin.access-control.epeople.form.edit": "EPerson સંપાદિત કરો", - // "admin.access-control.epeople.form.firstName": "First name", "admin.access-control.epeople.form.firstName": "પ્રથમ નામ", - // "admin.access-control.epeople.form.lastName": "Last name", "admin.access-control.epeople.form.lastName": "છેલ્લું નામ", - // "admin.access-control.epeople.form.email": "Email", "admin.access-control.epeople.form.email": "ઇમેઇલ", - // "admin.access-control.epeople.form.emailHint": "Must be a valid email address", "admin.access-control.epeople.form.emailHint": "માન્ય ઇમેઇલ સરનામું હોવું જોઈએ", - // "admin.access-control.epeople.form.canLogIn": "Can log in", "admin.access-control.epeople.form.canLogIn": "લૉગ ઇન કરી શકે છે", - // "admin.access-control.epeople.form.requireCertificate": "Requires certificate", "admin.access-control.epeople.form.requireCertificate": "પ્રમાણપત્રની જરૂર છે", - // "admin.access-control.epeople.form.return": "Back", "admin.access-control.epeople.form.return": "પાછા", - // "admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.success": "સફળતાપૂર્વક EPerson {{name}} બનાવ્યું", - // "admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.failure": "EPerson {{name}} બનાવવામાં નિષ્ફળ", - // "admin.access-control.epeople.form.notification.created.failure.emailInUse": "Failed to create EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson {{name}} બનાવવામાં નિષ્ફળ, ઇમેઇલ {{email}} પહેલેથી જ વપરાય છે.", - // "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Failed to edit EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson {{name}} સંપાદિત કરવામાં નિષ્ફળ, ઇમેઇલ {{email}} પહેલેથી જ વપરાય છે.", - // "admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.success": "સફળતાપૂર્વક EPerson {{name}} સંપાદિત કર્યું", - // "admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.failure": "EPerson {{name}} સંપાદિત કરવામાં નિષ્ફળ", - // "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.success": "સફળતાપૂર્વક EPerson {{name}} કાઢી નાખ્યું", - // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.failure": "EPerson {{name}} કાઢી નાખવામાં નિષ્ફળ", - // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", - // TODO New key - Add a translation - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", + "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "આ જૂથોના સભ્ય:", - // "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": "નામ", - // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", "admin.access-control.epeople.form.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", - // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", "admin.access-control.epeople.form.memberOfNoGroups": "આ EPerson કોઈ જૂથનો સભ્ય નથી", - // "admin.access-control.epeople.form.goToGroups": "Add to groups", "admin.access-control.epeople.form.goToGroups": "જૂથોમાં ઉમેરો", - // "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", + "admin.access-control.epeople.notification.deleted.failure": "ID {{id}} સાથે EPerson કાઢી નાખતી વખતે ભૂલ આવી, કોડ: {{statusCode}} અને મેસેજ: {{restResponse.errorMessage}}", + + "admin.access-control.epeople.notification.deleted.success": "સફળતાપૂર્વક EPerson: {{name}} કાઢી નાખ્યું", + + "admin.access-control.groups.title": "જૂથો", + + "admin.access-control.groups.breadcrumbs": "જૂથો", + + "admin.access-control.groups.singleGroup.breadcrumbs": "જૂથ સંપાદિત કરો", + + "admin.access-control.groups.title.singleGroup": "જૂથ સંપાદિત કરો", + + "admin.access-control.groups.title.addGroup": "નવું જૂથ", + + "admin.access-control.groups.addGroup.breadcrumbs": "નવું જૂથ", + + "admin.access-control.groups.head": "જૂથો", + + "admin.access-control.groups.button.add": "જૂથ ઉમેરો", + + "admin.access-control.groups.search.head": "જૂથો શોધો", + + "admin.access-control.groups.button.see-all": "બધા બ્રાઉઝ કરો", + + "admin.access-control.groups.search.button": "શોધો", + + "admin.access-control.groups.search.placeholder": "જૂથો શોધો...", + + "admin.access-control.groups.table.id": "ID", + + "admin.access-control.groups.table.name": "નામ", + + "admin.access-control.groups.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", + + "admin.access-control.groups.table.members": "સભ્યો", + + "admin.access-control.groups.table.edit": "સંપાદિત કરો", + + "admin.access-control.groups.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", + + "admin.access-control.groups.table.edit.buttons.remove": "{{name}} ને કાઢી નાખો", + + "admin.access-control.groups.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", + + "admin.access-control.groups.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{name}} કાઢી નાખ્યું", + + "admin.access-control.groups.notification.deleted.failure.title": "જૂથ {{name}} કાઢી નાખવામાં નિષ્ફળ", + + "admin.access-control.groups.notification.deleted.failure.content": "કારણ: {{cause}}", + + "admin.access-control.groups.form.alert.permanent": "આ જૂથ કાયમી છે, તેથી તેને સંપાદિત અથવા કાઢી શકાતું નથી. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", + + "admin.access-control.groups.form.alert.workflowGroup": "આ જૂથને સંપાદિત અથવા કાઢી શકાતું નથી કારણ કે તે {{name}} {{comcol}} માં સબમિશન અને વર્કફ્લો પ્રક્રિયામાં ભૂમિકા સાથે મેળ ખાતું છે. તમે તેને {{comcolEditRolesRoute}} પૃષ્ઠના સંપાદન {{comcol}} પર ભૂમિકા સોંપો ટેબમાંથી કાઢી શકો છો. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", + + "admin.access-control.groups.form.head.create": "જૂથ બનાવો", + + "admin.access-control.groups.form.head.edit": "જૂથ સંપાદિત કરો", + + "admin.access-control.groups.form.groupName": "જૂથનું નામ", + + "admin.access-control.groups.form.groupCommunity": "સમુદાય અથવા સંગ્રહ", + + "admin.access-control.groups.form.groupDescription": "વર્ણન", + + "admin.access-control.groups.form.notification.created.success": "સફળતાપૂર્વક જૂથ {{name}} બનાવ્યું", + + "admin.access-control.groups.form.notification.created.failure": "જૂથ {{name}} બનાવવામાં નિષ્ફળ", + + "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "જૂથ {{name}} બનાવવામાં નિષ્ફળ, ખાતરી કરો કે નામ પહેલેથી જ વપરાય નથી.", + + "admin.access-control.groups.form.notification.edited.failure": "જૂથ {{name}} સંપાદિત કરવામાં નિષ્ફળ", + + "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "નામ {{name}} પહેલેથી જ વપરાય છે!", + + "admin.access-control.groups.form.notification.edited.success": "સફળતાપૂર્વક જૂથ {{name}} સંપાદિત કર્યું", + + "admin.access-control.groups.form.actions.delete": "જૂથ કાઢી નાખો", + + "admin.access-control.groups.form.delete-group.modal.header": "જૂથ {{ dsoName }} કાઢી નાખો", + + "admin.access-control.groups.form.delete-group.modal.info": "શું તમે ખરેખર જૂથ {{ dsoName }} કાઢી નાખવા માંગો છો?", + + "admin.access-control.groups.form.delete-group.modal.cancel": "રદ કરો", + + "admin.access-control.groups.form.delete-group.modal.confirm": "કાઢી નાખો", + + "admin.access-control.groups.form.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{ name }} કાઢી નાખ્યું", + + "admin.access-control.groups.form.notification.deleted.failure.title": "જૂથ {{ name }} કાઢી નાખવામાં નિષ્ફળ", + + "admin.access-control.groups.form.notification.deleted.failure.content": "કારણ: {{ cause }}", + + "admin.access-control.groups.form.members-list.head": "EPeople", + + "admin.access-control.groups.form.members-list.search.head": "EPeople ઉમેરો", + + "admin.access-control.groups.form.members-list.button.see-all": "બધા બ્રાઉઝ કરો", + + "admin.access-control.groups.form.members-list.headMembers": "વર્તમાન સભ્યો", + + "admin.access-control.groups.form.members-list.search.button": "શોધો", + + "admin.access-control.groups.form.members-list.table.id": "ID", + + "admin.access-control.groups.form.members-list.table.name": "નામ", + + "admin.access-control.groups.form.members-list.table.identity": "ઓળખ", + + "admin.access-control.groups.form.members-list.table.email": "ઇમેઇલ", + + "admin.access-control.groups.form.members-list.table.netid": "NetID", + + "admin.access-control.groups.form.members-list.table.edit": "દૂર કરો / ઉમેરો", + + "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "{{name}} નામના સભ્યને દૂર કરો", + + "admin.access-control.groups.form.members-list.notification.success.addMember": "સફળતાપૂર્વક {{name}} સભ્ય ઉમેર્યું", + + "admin.access-control.groups.form.members-list.notification.failure.addMember": "{{name}} સભ્ય ઉમેરવામાં નિષ્ફળ", + + "admin.access-control.groups.form.members-list.notification.success.deleteMember": "સફળતાપૂર્વક {{name}} સભ્ય કાઢી નાખ્યું", + + "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "{{name}} સભ્ય કાઢી નાખવામાં નિષ્ફળ", + + "admin.access-control.groups.form.members-list.table.edit.buttons.add": "{{name}} નામના સભ્યને ઉમેરો", + + "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", + + "admin.access-control.groups.form.members-list.no-members-yet": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", + + "admin.access-control.groups.form.members-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", + + "admin.access-control.groups.form.subgroups-list.notification.failure": "કંઈક ખોટું થયું: {{cause}}", - // "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.head": "જૂથો", + + "admin.access-control.groups.form.subgroups-list.search.head": "સબગ્રુપ ઉમેરો", + + "admin.access-control.groups.form.subgroups-list.button.see-all": "બધા બ્રાઉઝ કરો", + + "admin.access-control.groups.form.subgroups-list.headSubgroups": "વર્તમાન સબગ્રુપ્સ", + + "admin.access-control.groups.form.subgroups-list.search.button": "શોધો", + + "admin.access-control.groups.form.subgroups-list.table.id": "ID", + + "admin.access-control.groups.form.subgroups-list.table.name": "નામ", + + "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", + + "admin.access-control.groups.form.subgroups-list.table.edit": "દૂર કરો / ઉમેરો", + + "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "{{name}} નામના સબગ્રુપને દૂર કરો", + + "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "{{name}} નામના સબગ્રુપને ઉમેરો", + + "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ ઉમેર્યું", + + "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "{{name}} સબગ્રુપ ઉમેરવામાં નિષ્ફળ", + + "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ કાઢી નાખ્યું", + + "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "{{name}} સબગ્રુપ કાઢી નાખવામાં નિષ્ફળ", + + "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", + + "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "આ વર્તમાન જૂથ છે, તેને ઉમેરવામાં નથી.", + + "admin.access-control.groups.form.subgroups-list.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", + + "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "જૂથમાં હજી સુધી કોઈ સબગ્રુપ્સ નથી.", + + "admin.access-control.groups.form.return": "પાછા", + + "admin.quality-assurance.breadcrumbs": "ગુણવત્તા ખાતરી", + + "admin.notifications.event.breadcrumbs": "ગુણવત્તા ખાતરી સૂચનો", + + "admin.notifications.event.page.title": "ગુણવત્તા ખાતરી સૂચનો", + + "admin.quality-assurance.page.title": "ગુણવત્તા ખાતરી", + + "admin.notifications.source.breadcrumbs": "ગુણવત્તા ખાતરી", + + "admin.access-control.groups.form.tooltip.editGroupPage": "આ પૃષ્ઠ પર, તમે જૂથની ગુણધર્મો અને સભ્યોને ફેરફાર કરી શકો છો. ટોચના વિભાગમાં, તમે જૂથનું નામ અને વર્ણન સંપાદિત કરી શકો છો, જો કે આ સંગ્રહ અથવા સમુદાય માટેનું એડમિન જૂથ હોય, તો જૂથનું નામ અને વર્ણન આપમેળે જનરેટ થાય છે અને તેને સંપાદિત કરી શકાતું નથી. નીચેના વિભાગોમાં, તમે જૂથ સભ્યતાને ફેરફાર કરી શકો છો. વધુ વિગતો માટે [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) જુઓ.", + + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "આ જૂથમાં EPerson ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને વપરાશકર્તાઓને શોધો (શોધ બારની ડાબી બાજુના ડ્રોપડાઉનનો ઉપયોગ કરીને મેટાડેટા અથવા ઇમેઇલ દ્વારા શોધવાનું પસંદ કરો). પછી નીચેની યાદીમાં દરેક વપરાશકર્તા માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક વપરાશકર્તા માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", + + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "આ જૂથમાં સબગ્રુપ ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને જૂથોને શોધો. પછી નીચેની યાદીમાં દરેક જૂથ માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક જૂથ માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", + + "admin.reports.collections.title": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + + "admin.reports.collections.breadcrumbs": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + + "admin.reports.collections.head": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + + "admin.reports.button.show-collections": "સંગ્રહો બતાવો", + + "admin.reports.collections.collections-report": "સંગ્રહ રિપોર્ટ", + + "admin.reports.collections.item-results": "આઇટમ પરિણામો", + + "admin.reports.collections.community": "સમુદાય", + + "admin.reports.collections.collection": "સંગ્રહ", + + "admin.reports.collections.nb_items": "આઇટમ્સની સંખ્યા", + + "admin.reports.collections.match_all_selected_filters": "બધા પસંદ કરેલ ફિલ્ટર્સ સાથે મેળ ખાતું", + + "admin.reports.items.breadcrumbs": "મેટાડેટા ક્વેરી રિપોર્ટ", + + "admin.reports.items.head": "મેટાડેટા ક્વેરી રિપોર્ટ", + + "admin.reports.items.run": "આઇટમ ક્વેરી ચલાવો", + + "admin.reports.items.section.collectionSelector": "સંગ્રહ પસંદગીકાર", + + "admin.reports.items.section.metadataFieldQueries": "મેટાડેટા ફીલ્ડ ક્વેરીઝ", + + "admin.reports.items.predefinedQueries": "પૂર્વનિર્ધારિત ક્વેરીઝ", + + "admin.reports.items.section.limitPaginateQueries": "ક્વેરીઝ મર્યાદિત/પેજિનેટ", + + "admin.reports.items.limit": "મર્યાદા/", + + "admin.reports.items.offset": "ઓફસેટ", + + "admin.reports.items.wholeRepo": "સંપૂર્ણ રિપોઝિટરી", + + "admin.reports.items.anyField": "કોઈપણ ફીલ્ડ", + + "admin.reports.items.predicate.exists": "અસ્તિત્વમાં છે", + + "admin.reports.items.predicate.doesNotExist": "અસ્તિત્વમાં નથી", + + "admin.reports.items.predicate.equals": "સમાન છે", + + "admin.reports.items.predicate.doesNotEqual": "સમાન નથી", + + "admin.reports.items.predicate.like": "માટે", + + "admin.reports.items.predicate.notLike": "માટે નથી", + + "admin.reports.items.predicate.contains": "સમાવે છે", + + "admin.reports.items.predicate.doesNotContain": "સમાવિષ્ટ નથી", + + "admin.reports.items.predicate.matches": "મેળ ખાતું", + + "admin.reports.items.predicate.doesNotMatch": "મેળ ખાતું નથી", + + "admin.reports.items.preset.new": "નવી ક્વેરી", + + "admin.reports.items.preset.hasNoTitle": "કોઈ શીર્ષક નથી", + + "admin.reports.items.preset.hasNoIdentifierUri": "કોઈ dc.identifier.uri નથી", + + "admin.access-control.epeople.notification.deleted.failure": "ID {{id}} સાથે EPerson કાઢી નાખતી વખતે ભૂલ આવી, કોડ: {{statusCode}} અને મેસેજ: {{restResponse.errorMessage}}", + + "admin.access-control.epeople.notification.deleted.success": "સફળતાપૂર્વક EPerson: {{name}} કાઢી નાખ્યું", - // "admin.access-control.groups.title": "Groups", "admin.access-control.groups.title": "જૂથો", - // "admin.access-control.groups.breadcrumbs": "Groups", "admin.access-control.groups.breadcrumbs": "જૂથો", - // "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group", "admin.access-control.groups.singleGroup.breadcrumbs": "જૂથ સંપાદિત કરો", - // "admin.access-control.groups.title.singleGroup": "Edit Group", "admin.access-control.groups.title.singleGroup": "જૂથ સંપાદિત કરો", - // "admin.access-control.groups.title.addGroup": "New Group", "admin.access-control.groups.title.addGroup": "નવું જૂથ", - // "admin.access-control.groups.addGroup.breadcrumbs": "New Group", "admin.access-control.groups.addGroup.breadcrumbs": "નવું જૂથ", - // "admin.access-control.groups.head": "Groups", "admin.access-control.groups.head": "જૂથો", - // "admin.access-control.groups.button.add": "Add group", "admin.access-control.groups.button.add": "જૂથ ઉમેરો", - // "admin.access-control.groups.search.head": "Search groups", "admin.access-control.groups.search.head": "જૂથો શોધો", - // "admin.access-control.groups.button.see-all": "Browse all", "admin.access-control.groups.button.see-all": "બધા બ્રાઉઝ કરો", - // "admin.access-control.groups.search.button": "Search", "admin.access-control.groups.search.button": "શોધો", - // "admin.access-control.groups.search.placeholder": "Search groups...", "admin.access-control.groups.search.placeholder": "જૂથો શોધો...", - // "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": "નામ", - // "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", - // "admin.access-control.groups.table.members": "Members", "admin.access-control.groups.table.members": "સભ્યો", - // "admin.access-control.groups.table.edit": "Edit", "admin.access-control.groups.table.edit": "સંપાદિત કરો", - // "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", - // "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.remove": "{{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": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", - // "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"", "admin.access-control.groups.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{name}} કાઢી નાખ્યું", - // "admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"", "admin.access-control.groups.notification.deleted.failure.title": "જૂથ {{name}} કાઢી નાખવામાં નિષ્ફળ", - // "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", - // TODO New key - Add a translation - "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + "admin.access-control.groups.notification.deleted.failure.content": "કારણ: {{cause}}", - // "admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.permanent": "આ જૂથ કાયમી છે, તેથી તેને સંપાદિત અથવા કાઢી શકાતું નથી. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", - // "admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the \"assign roles\" tab on the edit {{comcol}} page. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.workflowGroup": "આ જૂથને સંપાદિત અથવા કાઢી શકાતું નથી કારણ કે તે {{name}} {{comcol}} માં સબમિશન અને વર્કફ્લો પ્રક્રિયામાં ભૂમિકા સાથે મેળ ખાતું છે. તમે તેને {{comcolEditRolesRoute}} પૃષ્ઠના સંપાદન {{comcol}} પર ભૂમિકા સોંપો ટેબમાંથી કાઢી શકો છો. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", - // "admin.access-control.groups.form.head.create": "Create group", "admin.access-control.groups.form.head.create": "જૂથ બનાવો", - // "admin.access-control.groups.form.head.edit": "Edit group", "admin.access-control.groups.form.head.edit": "જૂથ સંપાદિત કરો", - // "admin.access-control.groups.form.groupName": "Group name", "admin.access-control.groups.form.groupName": "જૂથનું નામ", - // "admin.access-control.groups.form.groupCommunity": "Community or Collection", "admin.access-control.groups.form.groupCommunity": "સમુદાય અથવા સંગ્રહ", - // "admin.access-control.groups.form.groupDescription": "Description", "admin.access-control.groups.form.groupDescription": "વર્ણન", - // "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.success": "સફળતાપૂર્વક જૂથ {{name}} બનાવ્યું", - // "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.failure": "જૂથ {{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.", - // TODO New key - Add a translation - "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": "જૂથ {{name}} બનાવવામાં નિષ્ફળ, ખાતરી કરો કે નામ પહેલેથી જ વપરાય નથી.", - // "admin.access-control.groups.form.notification.edited.failure": "Failed to edit Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.failure": "જૂથ {{name}} સંપાદિત કરવામાં નિષ્ફળ", - // "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!", "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "નામ {{name}} પહેલેથી જ વપરાય છે!", - // "admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.success": "સફળતાપૂર્વક જૂથ {{name}} સંપાદિત કર્યું", - // "admin.access-control.groups.form.actions.delete": "Delete Group", "admin.access-control.groups.form.actions.delete": "જૂથ કાઢી નાખો", - // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "જૂથ {{ dsoName }} કાઢી નાખો", - // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", "admin.access-control.groups.form.delete-group.modal.info": "શું તમે ખરેખર જૂથ {{ dsoName }} કાઢી નાખવા માંગો છો?", - // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", "admin.access-control.groups.form.delete-group.modal.cancel": "રદ કરો", - // "admin.access-control.groups.form.delete-group.modal.confirm": "Delete", "admin.access-control.groups.form.delete-group.modal.confirm": "કાઢી નાખો", - // "admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{ name }} કાઢી નાખ્યું", - // "admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.failure.title": "જૂથ {{ name }} કાઢી નાખવામાં નિષ્ફળ", - // "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", - // TODO New key - Add a translation - "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + "admin.access-control.groups.form.notification.deleted.failure.content": "કારણ: {{ cause }}", - // "admin.access-control.groups.form.members-list.head": "EPeople", "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": "EPeople ઉમેરો", - // "admin.access-control.groups.form.members-list.button.see-all": "Browse All", "admin.access-control.groups.form.members-list.button.see-all": "બધા બ્રાઉઝ કરો", - // "admin.access-control.groups.form.members-list.headMembers": "Current Members", "admin.access-control.groups.form.members-list.headMembers": "વર્તમાન સભ્યો", - // "admin.access-control.groups.form.members-list.search.button": "Search", "admin.access-control.groups.form.members-list.search.button": "શોધો", - // "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": "નામ", - // "admin.access-control.groups.form.members-list.table.identity": "Identity", "admin.access-control.groups.form.members-list.table.identity": "ઓળખ", - // "admin.access-control.groups.form.members-list.table.email": "Email", "admin.access-control.groups.form.members-list.table.email": "ઇમેઇલ", - // "admin.access-control.groups.form.members-list.table.netid": "NetID", "admin.access-control.groups.form.members-list.table.netid": "NetID", - // "admin.access-control.groups.form.members-list.table.edit": "Remove / Add", "admin.access-control.groups.form.members-list.table.edit": "દૂર કરો / ઉમેરો", - // "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": "{{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": "Successfully added member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.success.addMember": "સફળતાપૂર્વક {{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": "Failed to add member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.addMember": "{{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": "Successfully deleted member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.success.deleteMember": "સફળતાપૂર્વક {{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": "Failed to delete member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "{{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": "{{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": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", - // "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": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", - // "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search", "admin.access-control.groups.form.members-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", - // "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", - // TODO New key - Add a translation - "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure": "કંઈક ખોટું થયું: {{cause}}", - // "admin.access-control.groups.form.subgroups-list.head": "Groups", "admin.access-control.groups.form.subgroups-list.head": "જૂથો", - // "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup", "admin.access-control.groups.form.subgroups-list.search.head": "સબગ્રુપ ઉમેરો", - // "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All", "admin.access-control.groups.form.subgroups-list.button.see-all": "બધા બ્રાઉઝ કરો", - // "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups", "admin.access-control.groups.form.subgroups-list.headSubgroups": "વર્તમાન સબગ્રુપ્સ", - // "admin.access-control.groups.form.subgroups-list.search.button": "Search", "admin.access-control.groups.form.subgroups-list.search.button": "શોધો", - // "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": "નામ", - // "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", - // "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add", "admin.access-control.groups.form.subgroups-list.table.edit": "દૂર કરો / ઉમેરો", - // "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": "{{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": "{{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": "Successfully added subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "સફળતાપૂર્વક {{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": "Failed to add subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "{{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": "Successfully deleted subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "સફળતાપૂર્વક {{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": "Failed to delete subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "{{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": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", - // "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": "આ વર્તમાન જૂથ છે, તેને ઉમેરવામાં નથી.", - // "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": "આ નામ અથવા 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": "જૂથમાં હજી સુધી કોઈ સબગ્રુપ્સ નથી.", - // "admin.access-control.groups.form.return": "Back", "admin.access-control.groups.form.return": "પાછા", - // "admin.quality-assurance.breadcrumbs": "Quality Assurance", "admin.quality-assurance.breadcrumbs": "ગુણવત્તા ખાતરી", - // "admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions", "admin.notifications.event.breadcrumbs": "ગુણવત્તા ખાતરી સૂચનો", - // "admin.notifications.event.page.title": "Quality Assurance Suggestions", "admin.notifications.event.page.title": "ગુણવત્તા ખાતરી સૂચનો", - // "admin.quality-assurance.page.title": "Quality Assurance", "admin.quality-assurance.page.title": "ગુણવત્તા ખાતરી", - // "admin.notifications.source.breadcrumbs": "Quality Assurance", "admin.notifications.source.breadcrumbs": "ગુણવત્તા ખાતરી", - // "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", + "admin.access-control.groups.form.tooltip.editGroupPage": "આ પૃષ્ઠ પર, તમે જૂથની ગુણધર્મો અને સભ્યોને ફેરફાર કરી શકો છો. ટોચના વિભાગમાં, તમે જૂથનું નામ અને વર્ણન સંપાદિત કરી શકો છો, જો કે આ સંગ્રહ અથવા સમુદાય માટેનું એડમિન જૂથ હોય, તો જૂથનું નામ અને વર્ણન આપમેળે જનરેટ થાય છે અને તેને સંપાદિત કરી શકાતું નથી. નીચેના વિભાગોમાં, તમે જૂથ સભ્યતાને ફેરફાર કરી શકો છો. વધુ વિગતો માટે [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) જુઓ.", - // "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "આ જૂથમાં EPerson ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને વપરાશકર્તાઓને શોધો (શોધ બારની ડાબી બાજુના ડ્રોપડાઉનનો ઉપયોગ કરીને મેટાડેટા અથવા ઇમેઇલ દ્વારા શોધવાનું પસંદ કરો). પછી નીચેની યાદીમાં દરેક વપરાશકર્તા માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક વપરાશકર્તા માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", - // "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "આ જૂથમાં સબગ્રુપ ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને જૂથોને શોધો. પછી નીચેની યાદીમાં દરેક જૂથ માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક જૂથ માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", - // "admin.reports.collections.title": "Collection Filter Report", "admin.reports.collections.title": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - // "admin.reports.collections.breadcrumbs": "Collection Filter Report", "admin.reports.collections.breadcrumbs": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - // "admin.reports.collections.head": "Collection Filter Report", "admin.reports.collections.head": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - // "admin.reports.button.show-collections": "Show Collections", "admin.reports.button.show-collections": "સંગ્રહો બતાવો", - // "admin.reports.collections.collections-report": "Collection Report", "admin.reports.collections.collections-report": "સંગ્રહ રિપોર્ટ", - // "admin.reports.collections.item-results": "Item Results", "admin.reports.collections.item-results": "આઇટમ પરિણામો", - // "admin.reports.collections.community": "Community", "admin.reports.collections.community": "સમુદાય", - // "admin.reports.collections.collection": "Collection", "admin.reports.collections.collection": "સંગ્રહ", - // "admin.reports.collections.nb_items": "Nb. Items", "admin.reports.collections.nb_items": "આઇટમ્સની સંખ્યા", - // "admin.reports.collections.match_all_selected_filters": "Matching all selected filters", "admin.reports.collections.match_all_selected_filters": "બધા પસંદ કરેલ ફિલ્ટર્સ સાથે મેળ ખાતું", - // "admin.reports.items.breadcrumbs": "Metadata Query Report", "admin.reports.items.breadcrumbs": "મેટાડેટા ક્વેરી રિપોર્ટ", - // "admin.reports.items.head": "Metadata Query Report", "admin.reports.items.head": "મેટાડેટા ક્વેરી રિપોર્ટ", - // "admin.reports.items.run": "Run Item Query", "admin.reports.items.run": "આઇટમ ક્વેરી ચલાવો", - // "admin.reports.items.section.collectionSelector": "Collection Selector", "admin.reports.items.section.collectionSelector": "સંગ્રહ પસંદગીકાર", - // "admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries", "admin.reports.items.section.metadataFieldQueries": "મેટાડેટા ફીલ્ડ ક્વેરીઝ", - // "admin.reports.items.predefinedQueries": "Predefined Queries", "admin.reports.items.predefinedQueries": "પૂર્વનિર્ધારિત ક્વેરીઝ", - // "admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries", "admin.reports.items.section.limitPaginateQueries": "ક્વેરીઝ મર્યાદિત/પેજિનેટ", - // "admin.reports.items.limit": "Limit/", "admin.reports.items.limit": "મર્યાદા/", - // "admin.reports.items.offset": "Offset", "admin.reports.items.offset": "ઓફસેટ", - // "admin.reports.items.wholeRepo": "Whole Repository", "admin.reports.items.wholeRepo": "સંપૂર્ણ રિપોઝિટરી", - // "admin.reports.items.anyField": "Any field", "admin.reports.items.anyField": "કોઈપણ ફીલ્ડ", - // "admin.reports.items.predicate.exists": "exists", "admin.reports.items.predicate.exists": "અસ્તિત્વમાં છે", - // "admin.reports.items.predicate.doesNotExist": "does not exist", "admin.reports.items.predicate.doesNotExist": "અસ્તિત્વમાં નથી", - // "admin.reports.items.predicate.equals": "equals", "admin.reports.items.predicate.equals": "સમાન છે", - // "admin.reports.items.predicate.doesNotEqual": "does not equal", "admin.reports.items.predicate.doesNotEqual": "સમાન નથી", - // "admin.reports.items.predicate.like": "like", "admin.reports.items.predicate.like": "માટે", - // "admin.reports.items.predicate.notLike": "not like", "admin.reports.items.predicate.notLike": "માટે નથી", - // "admin.reports.items.predicate.contains": "contains", "admin.reports.items.predicate.contains": "સમાવે છે", - // "admin.reports.items.predicate.doesNotContain": "does not contain", "admin.reports.items.predicate.doesNotContain": "સમાવિષ્ટ નથી", - // "admin.reports.items.predicate.matches": "matches", "admin.reports.items.predicate.matches": "મેળ ખાતું", - // "admin.reports.items.predicate.doesNotMatch": "does not match", "admin.reports.items.predicate.doesNotMatch": "મેળ ખાતું નથી", - // "admin.reports.items.preset.new": "New Query", "admin.reports.items.preset.new": "નવી ક્વેરી", - // "admin.reports.items.preset.hasNoTitle": "Has No Title", "admin.reports.items.preset.hasNoTitle": "કોઈ શીર્ષક નથી", - // "admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri", "admin.reports.items.preset.hasNoIdentifierUri": "કોઈ dc.identifier.uri નથી", - // "admin.reports.items.preset.hasCompoundSubject": "Has compound subject", "admin.reports.items.preset.hasCompoundSubject": "સંયુક્ત વિષય ધરાવે છે", - // "admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author", "admin.reports.items.preset.hasCompoundAuthor": "સંયુક્ત dc.contributor.author ધરાવે છે", - // "admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator", "admin.reports.items.preset.hasCompoundCreator": "સંયુક્ત dc.creator ધરાવે છે", - // "admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description", "admin.reports.items.preset.hasUrlInDescription": "dc.description માં URL ધરાવે છે", - // "admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance", "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance માં સંપૂર્ણ લખાણ ધરાવે છે", - // "admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance", "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance માં નોન-ફુલ ટેક્સ્ટ ધરાવે છે", - // "admin.reports.items.preset.hasEmptyMetadata": "Has empty metadata", "admin.reports.items.preset.hasEmptyMetadata": "ખાલી મેટાડેટા ધરાવે છે", - // "admin.reports.items.preset.hasUnbreakingDataInDescription": "Has unbreaking metadata in description", "admin.reports.items.preset.hasUnbreakingDataInDescription": "વર્ણન માં અનબ્રેકિંગ મેટાડેટા ધરાવે છે", - // "admin.reports.items.preset.hasXmlEntityInMetadata": "Has XML entity in metadata", "admin.reports.items.preset.hasXmlEntityInMetadata": "મેટાડેટા માં XML એન્ટિટી ધરાવે છે", - // "admin.reports.items.preset.hasNonAsciiCharInMetadata": "Has non-ascii character in metadata", "admin.reports.items.preset.hasNonAsciiCharInMetadata": "મેટાડેટા માં નોન-ASCII કૅરેક્ટર ધરાવે છે", - // "admin.reports.items.number": "No.", "admin.reports.items.number": "નંબર", - // "admin.reports.items.id": "UUID", "admin.reports.items.id": "UUID", - // "admin.reports.items.collection": "Collection", "admin.reports.items.collection": "સંગ્રહ", - // "admin.reports.items.handle": "URI", "admin.reports.items.handle": "URI", - // "admin.reports.items.title": "Title", "admin.reports.items.title": "શીર્ષક", - // "admin.reports.commons.filters": "Filters", "admin.reports.commons.filters": "ફિલ્ટર્સ", - // "admin.reports.commons.additional-data": "Additional data to return", "admin.reports.commons.additional-data": "વધારાની માહિતી પરત કરો", - // "admin.reports.commons.previous-page": "Prev Page", "admin.reports.commons.previous-page": "પાછલા પૃષ્ઠ", - // "admin.reports.commons.next-page": "Next Page", "admin.reports.commons.next-page": "આગલા પૃષ્ઠ", - // "admin.reports.commons.page": "Page", "admin.reports.commons.page": "પૃષ્ઠ", - // "admin.reports.commons.of": "of", "admin.reports.commons.of": "ના", - // "admin.reports.commons.export": "Export for Metadata Update", "admin.reports.commons.export": "મેટાડેટા અપડેટ માટે નિકાસ કરો", - // "admin.reports.commons.filters.deselect_all": "Deselect all filters", "admin.reports.commons.filters.deselect_all": "બધા ફિલ્ટર્સ દૂર કરો", - // "admin.reports.commons.filters.select_all": "Select all filters", "admin.reports.commons.filters.select_all": "બધા ફિલ્ટર્સ પસંદ કરો", - // "admin.reports.commons.filters.matches_all": "Matches all specified filters", "admin.reports.commons.filters.matches_all": "બધા નિર્દિષ્ટ ફિલ્ટર્સ સાથે મેળ ખાતું", - // "admin.reports.commons.filters.property": "Item Property Filters", "admin.reports.commons.filters.property": "આઇટમ પ્રોપર્ટી ફિલ્ટર્સ", - // "admin.reports.commons.filters.property.is_item": "Is Item - always true", "admin.reports.commons.filters.property.is_item": "આઇટમ છે - હંમેશા સાચું", - // "admin.reports.commons.filters.property.is_withdrawn": "Withdrawn Items", "admin.reports.commons.filters.property.is_withdrawn": "વિથડ્રોન આઇટમ્સ", - // "admin.reports.commons.filters.property.is_not_withdrawn": "Available Items - Not Withdrawn", "admin.reports.commons.filters.property.is_not_withdrawn": "ઉપલબ્ધ આઇટમ્સ - વિથડ્રોન નથી", - // "admin.reports.commons.filters.property.is_discoverable": "Discoverable Items - Not Private", "admin.reports.commons.filters.property.is_discoverable": "ડિસ્કવરેબલ આઇટમ્સ - પ્રાઇવેટ નથી", - // "admin.reports.commons.filters.property.is_not_discoverable": "Not Discoverable - Private Item", "admin.reports.commons.filters.property.is_not_discoverable": "ડિસ્કવરેબલ નથી - પ્રાઇવેટ આઇટમ", - // "admin.reports.commons.filters.bitstream": "Basic Bitstream Filters", "admin.reports.commons.filters.bitstream": "મૂળ બિટસ્ટ્રીમ ફિલ્ટર્સ", - // "admin.reports.commons.filters.bitstream.has_multiple_originals": "Item has Multiple Original Bitstreams", "admin.reports.commons.filters.bitstream.has_multiple_originals": "આઇટમમાં અનેક મૂળ બિટસ્ટ્રીમ્સ છે", - // "admin.reports.commons.filters.bitstream.has_no_originals": "Item has No Original Bitstreams", "admin.reports.commons.filters.bitstream.has_no_originals": "આઇટમમાં કોઈ મૂળ બિટસ્ટ્રીમ્સ નથી", - // "admin.reports.commons.filters.bitstream.has_one_original": "Item has One Original Bitstream", "admin.reports.commons.filters.bitstream.has_one_original": "આઇટમમાં એક મૂળ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", - // TODO New key - Add a translation - "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", - - // "admin.reports.commons.filters.bitstream_mime.has_doc_original": "Item has a Doc Original Bitstream (PDF, Office, Text, HTML, XML, etc)", "admin.reports.commons.filters.bitstream_mime.has_doc_original": "આઇટમમાં ડોક્યુમેન્ટ ઓરિજિનલ બિટસ્ટ્રીમ છે (PDF, Office, Text, HTML, XML, વગેરે)", - // "admin.reports.commons.filters.bitstream_mime.has_image_original": "Item has an Image Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_image_original": "આઇટમમાં ઇમેજ ઓરિજિનલ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "Has Other Bitstream Types (not Doc or Image)", "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "અન્ય બિટસ્ટ્રીમ પ્રકારો ધરાવે છે (ડોક્યુમેન્ટ અથવા ઇમેજ નથી)", - // "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "Item has multiple types of Original Bitstreams (Doc, Image, Other)", "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "આઇટમમાં ઓરિજિનલ બિટસ્ટ્રીમના અનેક પ્રકારો છે (ડોક્યુમેન્ટ, ઇમેજ, અન્ય)", - // "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "Item has a PDF Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "આઇટમમાં PDF ઓરિજિનલ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "Item has JPG Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "આઇટમમાં JPG ઓરિજિનલ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "Has unusually small PDF", "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "અસામાન્ય રીતે નાનું PDF ધરાવે છે", - // "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "Has unusually large PDF", "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "અસામાન્ય રીતે મોટું PDF ધરાવે છે", - // "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "Has document bitstream without TEXT item", "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "ટેક્સ્ટ આઇટમ વિના ડોક્યુમેન્ટ બિટસ્ટ્રીમ ધરાવે છે", - // "admin.reports.commons.filters.mime": "Supported MIME Type Filters", "admin.reports.commons.filters.mime": "સપોર્ટેડ MIME પ્રકાર ફિલ્ટર્સ", - // "admin.reports.commons.filters.mime.has_only_supp_image_type": "Item Image Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_image_type": "આઇટમ ઇમેજ બિટસ્ટ્રીમ્સ સપોર્ટેડ છે", - // "admin.reports.commons.filters.mime.has_unsupp_image_type": "Item has Image Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_image_type": "આઇટમમાં અસપોર્ટેડ ઇમેજ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.mime.has_only_supp_doc_type": "Item Document Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_doc_type": "આઇટમ ડોક્યુમેન્ટ બિટસ્ટ્રીમ્સ સપોર્ટેડ છે", - // "admin.reports.commons.filters.mime.has_unsupp_doc_type": "Item has Document Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_doc_type": "આઇટમમાં અસપોર્ટેડ ડોક્યુમેન્ટ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.bundle": "Bitstream Bundle Filters", "admin.reports.commons.filters.bundle": "બિટસ્ટ્રીમ બંડલ ફિલ્ટર્સ", - // "admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle", "admin.reports.commons.filters.bundle.has_unsupported_bundle": "અસપોર્ટેડ બંડલમાં બિટસ્ટ્રીમ ધરાવે છે", - // "admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail", "admin.reports.commons.filters.bundle.has_small_thumbnail": "અસામાન્ય રીતે નાનું થંબનેલ ધરાવે છે", - // "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail", "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "થંબનેલ વિના ઓરિજિનલ બિટસ્ટ્રીમ ધરાવે છે", - // "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)", "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "અમાન્ય થંબનેલ નામ ધરાવે છે (દરેક ઓરિજિનલ માટે એક થંબનેલ માન્ય છે)", - // "admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail", "admin.reports.commons.filters.bundle.has_non_generated_thumb": "જેનરેટ ન થયેલું થંબનેલ ધરાવે છે", - // "admin.reports.commons.filters.bundle.no_license": "Doesn't have a license", "admin.reports.commons.filters.bundle.no_license": "લાઇસન્સ નથી", - // "admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle", "admin.reports.commons.filters.bundle.has_license_documentation": "લાઇસન્સ બંડલમાં દસ્તાવેજીકરણ ધરાવે છે", - // "admin.reports.commons.filters.permission": "Permission Filters", "admin.reports.commons.filters.permission": "પરમિશન ફિલ્ટર્સ", - // "admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream", "admin.reports.commons.filters.permission.has_restricted_original": "આઇટમમાં પ્રતિબંધિત ઓરિજિનલ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "આઇટમમાં ઓછામાં ઓછું એક ઓરિજિનલ બિટસ્ટ્રીમ છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", - // "admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail", "admin.reports.commons.filters.permission.has_restricted_thumbnail": "આઇટમમાં પ્રતિબંધિત થંબનેલ છે", - // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "આઇટમમાં ઓછામાં ઓછું એક થંબનેલ છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", - // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", "admin.reports.commons.filters.permission.has_restricted_metadata": "આઇટમમાં પ્રતિબંધિત મેટાડેટા છે", - // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "આઇટમમાં મેટાડેટા છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", - // "admin.search.breadcrumbs": "Administrative Search", "admin.search.breadcrumbs": "વહીવટી શોધ", - // "admin.search.collection.edit": "Edit", "admin.search.collection.edit": "સંપાદિત કરો", - // "admin.search.community.edit": "Edit", "admin.search.community.edit": "સંપાદિત કરો", - // "admin.search.item.delete": "Delete", "admin.search.item.delete": "કાઢી નાખો", - // "admin.search.item.edit": "Edit", "admin.search.item.edit": "સંપાદિત કરો", - // "admin.search.item.make-private": "Make non-discoverable", "admin.search.item.make-private": "અપ્રકાશિત બનાવો", - // "admin.search.item.make-public": "Make discoverable", "admin.search.item.make-public": "પ્રકાશિત બનાવો", - // "admin.search.item.move": "Move", "admin.search.item.move": "ખસેડો", - // "admin.search.item.reinstate": "Reinstate", "admin.search.item.reinstate": "ફરી સ્થાપિત કરો", - // "admin.search.item.withdraw": "Withdraw", "admin.search.item.withdraw": "પાછું ખેંચો", - // "admin.search.title": "Administrative Search", "admin.search.title": "વહીવટી શોધ", - // "administrativeView.search.results.head": "Administrative Search", "administrativeView.search.results.head": "વહીવટી શોધ", - // "admin.workflow.breadcrumbs": "Administer Workflow", "admin.workflow.breadcrumbs": "વર્કફ્લો વહીવટ", - // "admin.workflow.title": "Administer Workflow", "admin.workflow.title": "વર્કફ્લો વહીવટ", - // "admin.workflow.item.workflow": "Workflow", "admin.workflow.item.workflow": "વર્કફ્લો", - // "admin.workflow.item.workspace": "Workspace", "admin.workflow.item.workspace": "વર્કસ્પેસ", - // "admin.workflow.item.delete": "Delete", "admin.workflow.item.delete": "કાઢી નાખો", - // "admin.workflow.item.send-back": "Send back", "admin.workflow.item.send-back": "પાછું મોકલો", - // "admin.workflow.item.policies": "Policies", "admin.workflow.item.policies": "પોલિસી", - // "admin.workflow.item.supervision": "Supervision", "admin.workflow.item.supervision": "સુપરવિઝન", - // "admin.metadata-import.breadcrumbs": "Import Metadata", "admin.metadata-import.breadcrumbs": "મેટાડેટા આયાત", - // "admin.batch-import.breadcrumbs": "Import Batch", "admin.batch-import.breadcrumbs": "બેચ આયાત", - // "admin.metadata-import.title": "Import Metadata", "admin.metadata-import.title": "મેટાડેટા આયાત", - // "admin.batch-import.title": "Import Batch", "admin.batch-import.title": "બેચ આયાત", - // "admin.metadata-import.page.header": "Import Metadata", "admin.metadata-import.page.header": "મેટાડેટા આયાત", - // "admin.batch-import.page.header": "Import Batch", "admin.batch-import.page.header": "બેચ આયાત", - // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "તમે અહીં બેચ મેટાડેટા ઓપરેશન્સ ધરાવતી CSV ફાઇલો ડ્રોપ અથવા બ્રાઉઝ કરી શકો છો", - // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", "admin.batch-import.page.help": "આયાત કરવા માટે સંગ્રહ પસંદ કરો. પછી, SAF ઝિપ ફાઇલ ડ્રોપ અથવા બ્રાઉઝ કરો જેમાં આયાત કરવા માટેની આઇટમ્સ શામેલ છે", - // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", "admin.batch-import.page.toggle.help": "આયાત ફાઇલ અપલોડ અથવા URL દ્વારા કરી શકાય છે, ઇનપુટ સોર્સ સેટ કરવા માટે ઉપરના ટૉગલનો ઉપયોગ કરો", - // "admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import", "admin.metadata-import.page.dropMsg": "મેટાડેટા CSV આયાત કરવા માટે ડ્રોપ કરો", - // "admin.batch-import.page.dropMsg": "Drop a batch ZIP to import", "admin.batch-import.page.dropMsg": "બેચ ઝિપ આયાત કરવા માટે ડ્રોપ કરો", - // "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import", "admin.metadata-import.page.dropMsgReplace": "મેટાડેટા CSV આયાત કરવા માટે બદલો", - // "admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import", "admin.batch-import.page.dropMsgReplace": "બેચ ઝિપ આયાત કરવા માટે બદલો", - // "admin.metadata-import.page.button.return": "Back", "admin.metadata-import.page.button.return": "પાછા", - // "admin.metadata-import.page.button.proceed": "Proceed", "admin.metadata-import.page.button.proceed": "આગળ વધો", - // "admin.metadata-import.page.button.select-collection": "Select Collection", "admin.metadata-import.page.button.select-collection": "સંગ્રહ પસંદ કરો", - // "admin.metadata-import.page.error.addFile": "Select file first!", "admin.metadata-import.page.error.addFile": "પ્રથમ ફાઇલ પસંદ કરો!", - // "admin.metadata-import.page.error.addFileUrl": "Insert file URL first!", "admin.metadata-import.page.error.addFileUrl": "પ્રથમ ફાઇલ URL દાખલ કરો!", - // "admin.batch-import.page.error.addFile": "Select ZIP file first!", "admin.batch-import.page.error.addFile": "પ્રથમ ઝિપ ફાઇલ પસંદ કરો!", - // "admin.metadata-import.page.toggle.upload": "Upload", "admin.metadata-import.page.toggle.upload": "અપલોડ", - // "admin.metadata-import.page.toggle.url": "URL", "admin.metadata-import.page.toggle.url": "URL", - // "admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import", "admin.metadata-import.page.urlMsg": "આયાત કરવા માટે બેચ ઝિપ URL દાખલ કરો", - // "admin.metadata-import.page.validateOnly": "Validate Only", "admin.metadata-import.page.validateOnly": "માત્ર માન્ય કરો", - // "admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.metadata-import.page.validateOnly.hint": "જ્યારે પસંદ કરેલ હોય, ત્યારે અપલોડ કરેલ CSV માન્ય કરવામાં આવશે. તમને શોધાયેલા ફેરફારોનો અહેવાલ મળશે, પરંતુ કોઈ ફેરફારો સાચવવામાં આવશે નહીં.", - // "advanced-workflow-action.rating.form.rating.label": "Rating", "advanced-workflow-action.rating.form.rating.label": "રેટિંગ", - // "advanced-workflow-action.rating.form.rating.error": "You must rate the item", "advanced-workflow-action.rating.form.rating.error": "તમે આઇટમને રેટ કરવું જ જોઈએ", - // "advanced-workflow-action.rating.form.review.label": "Review", "advanced-workflow-action.rating.form.review.label": "સમીક્ષા", - // "advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating", "advanced-workflow-action.rating.form.review.error": "આ રેટિંગ સબમિટ કરવા માટે તમારે સમીક્ષા દાખલ કરવી જ જોઈએ", - // "advanced-workflow-action.rating.description": "Please select a rating below", "advanced-workflow-action.rating.description": "કૃપા કરીને નીચે રેટિંગ પસંદ કરો", - // "advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review", "advanced-workflow-action.rating.description-requiredDescription": "કૃપા કરીને નીચે રેટિંગ પસંદ કરો અને સમીક્ષા ઉમેરો", - // "advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting", "advanced-workflow-action.select-reviewer.description-single": "સબમિટ કરતા પહેલા કૃપા કરીને નીચે એક રિવ્યુઅર પસંદ કરો", - // "advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting", "advanced-workflow-action.select-reviewer.description-multiple": "સબમિટ કરતા પહેલા કૃપા કરીને એક અથવા વધુ રિવ્યુઅર્સ પસંદ કરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "EPeople ઉમેરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "બધા બ્રાઉઝ કરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "વર્તમાન સભ્યો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "શોધો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "નામ", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ઓળખ", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ઇમેઇલ", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "દૂર કરો / ઉમેરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "{{name}} નામના સભ્યને દૂર કરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "સફળતાપૂર્વક {{name}} સભ્ય ઉમેર્યું", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "{{name}} સભ્ય ઉમેરવામાં નિષ્ફળ", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "સફળતાપૂર્વક {{name}} સભ્ય કાઢી નાખ્યું", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "{{name}} સભ્ય કાઢી નાખવામાં નિષ્ફળ", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "{{name}} નામના સભ્યને ઉમેરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", - // "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.", "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "કોઈ રિવ્યુઅર પસંદ કરેલ નથી.", - // "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.batch-import.page.validateOnly.hint": "જ્યારે પસંદ કરેલ હોય, ત્યારે અપલોડ કરેલ ઝિપ માન્ય કરવામાં આવશે. તમને શોધાયેલા ફેરફારોનો અહેવાલ મળશે, પરંતુ કોઈ ફેરફારો સાચવવામાં આવશે નહીં.", - // "admin.batch-import.page.remove": "remove", "admin.batch-import.page.remove": "દૂર કરો", - // "auth.errors.invalid-user": "Invalid email address or password.", "auth.errors.invalid-user": "અમાન્ય ઇમેઇલ સરનામું અથવા પાસવર્ડ.", - // "auth.messages.expired": "Your session has expired. Please log in again.", "auth.messages.expired": "તમારો સત્ર સમાપ્ત થયો છે. કૃપા કરીને ફરી લૉગ ઇન કરો.", - // "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.", "auth.messages.token-refresh-failed": "તમારા સત્ર ટોકનને રિફ્રેશ કરવામાં નિષ્ફળ. કૃપા કરીને ફરી લૉગ ઇન કરો.", - // "bitstream.download.page": "Now downloading {{bitstream}}...", "bitstream.download.page": "હવે {{bitstream}} ડાઉનલોડ કરી રહ્યા છે...", - // "bitstream.download.page.back": "Back", "bitstream.download.page.back": "પાછા", - // "bitstream.edit.authorizations.link": "Edit bitstream's Policies", "bitstream.edit.authorizations.link": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો", - // "bitstream.edit.authorizations.title": "Edit bitstream's Policies", "bitstream.edit.authorizations.title": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો", - // "bitstream.edit.return": "Back", "bitstream.edit.return": "પાછા", - // "bitstream.edit.bitstream": "Bitstream: ", - // TODO New key - Add a translation - "bitstream.edit.bitstream": "Bitstream: ", + "bitstream.edit.bitstream": "બિટસ્ટ્રીમ: ", - // "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".", "bitstream.edit.form.description.hint": "વૈકલ્પિક રીતે, ફાઇલનું સંક્ષિપ્ત વર્ણન પ્રદાન કરો, ઉદાહરણ તરીકે \"મુખ્ય લેખ\" અથવા \"પ્રયોગ ડેટા રીડિંગ્સ\".", - // "bitstream.edit.form.description.label": "Description", "bitstream.edit.form.description.label": "વર્ણન", - // "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.", "bitstream.edit.form.embargo.hint": "પ્રવેશની મંજૂરી આપવામાં આવેલી પ્રથમ તારીખ. આ તારીખને આ ફોર્મ પર ફેરફાર કરી શકાતી નથી. બિટસ્ટ્રીમ માટે એમ્બાર્ગો તારીખ સેટ કરવા માટે, આઇટમ સ્ટેટસ ટેબ પર જાઓ, અધિકૃતતા... ક્લિક કરો, બિટસ્ટ્રીમની READ પોલિસી બનાવો અથવા સંપાદિત કરો, અને ઇચ્છિત પ્રારંભ તારીખ સેટ કરો.", - // "bitstream.edit.form.embargo.label": "Embargo until specific date", "bitstream.edit.form.embargo.label": "વિશિષ્ટ તારીખ સુધી એમ્બાર્ગો", - // "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": "બિટસ્ટ્રીમ માટે ફાઇલનું નામ બદલો. નોંધો કે આ બિટસ્ટ્રીમ URLને પ્રદર્શિત કરશે, પરંતુ જૂના લિંક્સ હજી પણ ઉકેલશે જો ક્રમ ID બદલાતું નથી.", - // "bitstream.edit.form.fileName.label": "Filename", "bitstream.edit.form.fileName.label": "ફાઇલનું નામ", - // "bitstream.edit.form.newFormat.label": "Describe new format", "bitstream.edit.form.newFormat.label": "નવું ફોર્મેટ વર્ણવો", - // "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"ACMESoft SuperApp version 1.5\").", "bitstream.edit.form.newFormat.hint": "ફાઇલ બનાવવા માટે તમે જે એપ્લિકેશનનો ઉપયોગ કર્યો છે, અને સંસ્કરણ નંબર (ઉદાહરણ તરીકે, \"ACMESoft SuperApp version 1.5\").", - // "bitstream.edit.form.primaryBitstream.label": "Primary File", "bitstream.edit.form.primaryBitstream.label": "પ્રાથમિક ફાઇલ", - // "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, select \"format not in list\" above and describe it under \"Describe new format\".", "bitstream.edit.form.selectedFormat.hint": "જો ફોર્મેટ ઉપરની યાદીમાં નથી, ઉપર \"યાદીમાં ફોર્મેટ નથી\" પસંદ કરો અને \"નવું ફોર્મેટ વર્ણવો\" હેઠળ તેને વર્ણવો.", - // "bitstream.edit.form.selectedFormat.label": "Selected Format", "bitstream.edit.form.selectedFormat.label": "પસંદ કરેલ ફોર્મેટ", - // "bitstream.edit.form.selectedFormat.unknown": "Format not in list", "bitstream.edit.form.selectedFormat.unknown": "યાદીમાં ફોર્મેટ નથી", - // "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format", "bitstream.edit.notifications.error.format.title": "બિટસ્ટ્રીમના ફોર્મેટને સાચવવામાં ભૂલ આવી", - // "bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream", "bitstream.edit.notifications.error.primaryBitstream.title": "પ્રાથમિક બિટસ્ટ્રીમને સાચવવામાં ભૂલ આવી", - // "bitstream.edit.form.iiifLabel.label": "IIIF Label", "bitstream.edit.form.iiifLabel.label": "IIIF લેબલ", - // "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.", "bitstream.edit.form.iiifLabel.hint": "આ છબી માટે કેનવાસ લેબલ. જો પ્રદાન ન કરવામાં આવે તો ડિફોલ્ટ લેબલનો ઉપયોગ કરવામાં આવશે.", - // "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents", "bitstream.edit.form.iiifToc.label": "IIIF ટેબલ ઓફ કન્ટેન્ટ્સ", - // "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.", "bitstream.edit.form.iiifToc.hint": "અહીં ટેક્સ્ટ ઉમેરવાથી આ નવું ટેબલ ઓફ કન્ટેન્ટ્સ રેન્જનું પ્રારંભ બને છે.", - // "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width", "bitstream.edit.form.iiifWidth.label": "IIIF કેનવાસ પહોળાઈ", - // "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.", "bitstream.edit.form.iiifWidth.hint": "કેનવાસની પહોળાઈ સામાન્ય રીતે છબીની પહોળાઈ સાથે મેળ ખાતી હોવી જોઈએ.", - // "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height", "bitstream.edit.form.iiifHeight.label": "IIIF કેનવાસ ઊંચાઈ", - // "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.", "bitstream.edit.form.iiifHeight.hint": "કેનવાસની ઊંચાઈ સામાન્ય રીતે છબીની ઊંચાઈ સાથે મેળ ખાતી હોવી જોઈએ.", - // "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.", "bitstream.edit.notifications.saved.content": "આ બિટસ્ટ્રીમ માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", - // "bitstream.edit.notifications.saved.title": "Bitstream saved", "bitstream.edit.notifications.saved.title": "બિટસ્ટ્રીમ સાચવ્યું", - // "bitstream.edit.title": "Edit bitstream", "bitstream.edit.title": "બિટસ્ટ્રીમ સંપાદિત કરો", - // "bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ", "bitstream-request-a-copy.alert.canDownload1": "તમને આ ફાઇલ ઍક્સેસ કરવાની મંજૂરી છે. જો તમે ફાઇલ ડાઉનલોડ કરવા માંગો છો, તો ક્લિક કરો ", - // "bitstream-request-a-copy.alert.canDownload2": "here", "bitstream-request-a-copy.alert.canDownload2": "અહીં", - // "bitstream-request-a-copy.header": "Request a copy of the file", "bitstream-request-a-copy.header": "ફાઇલની નકલ માટે વિનંતી કરો", - // "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", - // TODO New key - Add a translation - "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", + "bitstream-request-a-copy.intro": "નીચેની માહિતી દાખલ કરો જેથી નીચેના આઇટમ માટે નકલની વિનંતી કરી શકાય: ", - // "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", - // TODO New key - Add a translation - "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + "bitstream-request-a-copy.intro.bitstream.one": "નીચેની ફાઇલ માટે વિનંતી કરી રહ્યા છે: ", - // "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ", "bitstream-request-a-copy.intro.bitstream.all": "બધી ફાઇલો માટે વિનંતી કરી રહ્યા છે. ", - // "bitstream-request-a-copy.name.label": "Name *", "bitstream-request-a-copy.name.label": "નામ *", - // "bitstream-request-a-copy.name.error": "The name is required", "bitstream-request-a-copy.name.error": "નામ જરૂરી છે", - // "bitstream-request-a-copy.email.label": "Your email address *", "bitstream-request-a-copy.email.label": "તમારું ઇમેઇલ સરનામું *", - // "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.", "bitstream-request-a-copy.email.hint": "આ ઇમેઇલ સરનામું ફાઇલ મોકલવા માટે વપરાય છે.", - // "bitstream-request-a-copy.email.error": "Please enter a valid email address.", "bitstream-request-a-copy.email.error": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું દાખલ કરો.", - // "bitstream-request-a-copy.allfiles.label": "Files", "bitstream-request-a-copy.allfiles.label": "ફાઇલો", - // "bitstream-request-a-copy.files-all-false.label": "Only the requested file", "bitstream-request-a-copy.files-all-false.label": "માત્ર વિનંતી કરેલ ફાઇલ", - // "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access", "bitstream-request-a-copy.files-all-true.label": "આઇટમની બધી ફાઇલો (પ્રતિબંધિત ઍક્સેસમાં)", - // "bitstream-request-a-copy.message.label": "Message", "bitstream-request-a-copy.message.label": "સંદેશ", - // "bitstream-request-a-copy.return": "Back", "bitstream-request-a-copy.return": "પાછા", - // "bitstream-request-a-copy.submit": "Request copy", "bitstream-request-a-copy.submit": "નકલ માટે વિનંતી કરો", - // "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.", "bitstream-request-a-copy.submit.success": "આઇટમ વિનંતી સફળતાપૂર્વક સબમિટ કરવામાં આવી.", - // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "આઇટમ વિનંતી સબમિટ કરતી વખતે કંઈક ખોટું થયું.", - // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", "bitstream-request-a-copy.access-by-token.warning": "તમે આ આઇટમને સુરક્ષિત ઍક્સેસ લિંક દ્વારા જોઈ રહ્યા છો જે તમને લેખક અથવા રિપોઝિટરી સ્ટાફ દ્વારા પ્રદાન કરવામાં આવી છે. આ લિંકને અનધિકૃત વપરાશકર્તાઓ સાથે શેર ન કરવું મહત્વપૂર્ણ છે.", - // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", "bitstream-request-a-copy.access-by-token.expiry-label": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ સમાપ્ત થશે", - // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", "bitstream-request-a-copy.access-by-token.expired": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ હવે શક્ય નથી. ઍક્સેસ સમાપ્ત થઈ ગઈ છે", - // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", "bitstream-request-a-copy.access-by-token.not-granted": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ શક્ય નથી. ઍક્સેસ είτε મંજુર કરવામાં આવી નથી, είτε રદ કરવામાં આવી છે.", - // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", "bitstream-request-a-copy.access-by-token.re-request": "ઍક્સેસ માટે નવી વિનંતી સબમિટ કરવા માટે પ્રતિબંધિત ડાઉનલોડ લિંક્સને અનુસરો.", - // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", "bitstream-request-a-copy.access-by-token.alt-text": "આ આઇટમ માટે ઍક્સેસ સુરક્ષિત ટોકન દ્વારા પ્રદાન કરવામાં આવે છે", - // "browse.back.all-results": "All browse results", "browse.back.all-results": "બધા બ્રાઉઝ પરિણામો", - // "browse.comcol.by.author": "By Author", "browse.comcol.by.author": "લેખક દ્વારા", - // "browse.comcol.by.dateissued": "By Issue Date", "browse.comcol.by.dateissued": "પ્રકાશન તારીખ દ્વારા", - // "browse.comcol.by.subject": "By Subject", "browse.comcol.by.subject": "વિષય દ્વારા", - // "browse.comcol.by.srsc": "By Subject Category", "browse.comcol.by.srsc": "વિષય શ્રેણી દ્વારા", - // "browse.comcol.by.nsi": "By Norwegian Science Index", "browse.comcol.by.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા", - // "browse.comcol.by.title": "By Title", "browse.comcol.by.title": "શીર્ષક દ્વારા", - // "browse.comcol.head": "Browse", "browse.comcol.head": "બ્રાઉઝ", - // "browse.empty": "No items to show.", "browse.empty": "બતાવવા માટે કોઈ આઇટમ્સ નથી.", - // "browse.metadata.author": "Author", "browse.metadata.author": "લેખક", - // "browse.metadata.dateissued": "Issue Date", "browse.metadata.dateissued": "પ્રકાશન તારીખ", - // "browse.metadata.subject": "Subject", "browse.metadata.subject": "વિષય", - // "browse.metadata.title": "Title", "browse.metadata.title": "શીર્ષક", - // "browse.metadata.srsc": "Subject Category", "browse.metadata.srsc": "વિષય શ્રેણી", - // "browse.metadata.author.breadcrumbs": "Browse by Author", "browse.metadata.author.breadcrumbs": "લેખક દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.dateissued.breadcrumbs": "Browse by Date", "browse.metadata.dateissued.breadcrumbs": "તારીખ દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.subject.breadcrumbs": "Browse by Subject", "browse.metadata.subject.breadcrumbs": "વિષય દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.srsc.breadcrumbs": "Browse by Subject Category", "browse.metadata.srsc.breadcrumbs": "વિષય શ્રેણી દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.srsc.tree.description": "Select a subject to add as search filter", "browse.metadata.srsc.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", - // "browse.metadata.nsi.breadcrumbs": "Browse by Norwegian Science Index", "browse.metadata.nsi.breadcrumbs": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.nsi.tree.description": "Select an index to add as search filter", "browse.metadata.nsi.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે ઇન્ડેક્સ પસંદ કરો", - // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "શીર્ષક દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.map": "Browse by Geolocation", "browse.metadata.map": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", "browse.metadata.map.breadcrumbs": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.map.count.items": "items", "browse.metadata.map.count.items": "આઇટમ્સ", - // "pagination.next.button": "Next", "pagination.next.button": "આગલું", - // "pagination.previous.button": "Previous", "pagination.previous.button": "પાછલું", - // "pagination.next.button.disabled.tooltip": "No more pages of results", "pagination.next.button.disabled.tooltip": "કોઈ વધુ પૃષ્ઠો નથી", - // "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", - // TODO New key - Add a translation - "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + "pagination.page-number-bar": "પૃષ્ઠ નેવિગેશન માટે કંટ્રોલ બાર, ID સાથેના તત્વ માટે: ", - // "browse.startsWith": ", starting with {{ startsWith }}", "browse.startsWith": ", {{ startsWith }} થી શરૂ થાય છે", - // "browse.startsWith.choose_start": "(Choose start)", "browse.startsWith.choose_start": "(શરૂઆત પસંદ કરો)", - // "browse.startsWith.choose_year": "(Choose year)", "browse.startsWith.choose_year": "(વર્ષ પસંદ કરો)", - // "browse.startsWith.choose_year.label": "Choose the issue year", "browse.startsWith.choose_year.label": "પ્રકાશન વર્ષ પસંદ કરો", - // "browse.startsWith.jump": "Filter results by year or month", "browse.startsWith.jump": "વર્ષ અથવા મહિના દ્વારા પરિણામો ફિલ્ટર કરો", - // "browse.startsWith.months.april": "April", "browse.startsWith.months.april": "એપ્રિલ", - // "browse.startsWith.months.august": "August", "browse.startsWith.months.august": "ઑગસ્ટ", - // "browse.startsWith.months.december": "December", "browse.startsWith.months.december": "ડિસેમ્બર", - // "browse.startsWith.months.february": "February", "browse.startsWith.months.february": "ફેબ્રુઆરી", - // "browse.startsWith.months.january": "January", "browse.startsWith.months.january": "જાન્યુઆરી", - // "browse.startsWith.months.july": "July", "browse.startsWith.months.july": "જુલાઈ", - // "browse.startsWith.months.june": "June", "browse.startsWith.months.june": "જૂન", - // "browse.startsWith.months.march": "March", "browse.startsWith.months.march": "માર્ચ", - // "browse.startsWith.months.may": "May", "browse.startsWith.months.may": "મે", - // "browse.startsWith.months.none": "(Choose month)", "browse.startsWith.months.none": "(મહિનો પસંદ કરો)", - // "browse.startsWith.months.none.label": "Choose the issue month", "browse.startsWith.months.none.label": "પ્રકાશન મહિનો પસંદ કરો", - // "browse.startsWith.months.november": "November", "browse.startsWith.months.november": "નવેમ્બર", - // "browse.startsWith.months.october": "October", "browse.startsWith.months.october": "ઑક્ટોબર", - // "browse.startsWith.months.september": "September", "browse.startsWith.months.september": "સપ્ટેમ્બર", - // "browse.startsWith.submit": "Browse", "browse.startsWith.submit": "બ્રાઉઝ", - // "browse.startsWith.type_date": "Filter results by date", "browse.startsWith.type_date": "તારીખ દ્વારા પરિણામો ફિલ્ટર કરો", - // "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button", "browse.startsWith.type_date.label": "અથવા તારીખ (વર્ષ-મહિનો) દાખલ કરો અને બ્રાઉઝ બટન પર ક્લિક કરો", - // "browse.startsWith.type_text": "Filter results by typing the first few letters", "browse.startsWith.type_text": "પ્રથમ થોડા અક્ષરો ટાઇપ કરીને પરિણામો ફિલ્ટર કરો", - // "browse.startsWith.input": "Filter", "browse.startsWith.input": "ફિલ્ટર", - // "browse.taxonomy.button": "Browse", "browse.taxonomy.button": "બ્રાઉઝ", - // "browse.title": "Browsing by {{ field }}{{ startsWith }} {{ value }}", "browse.title": "{{ field }}{{ startsWith }} {{ value }} દ્વારા બ્રાઉઝિંગ", - // "browse.title.page": "Browsing by {{ field }} {{ value }}", "browse.title.page": "{{ field }} {{ value }} દ્વારા બ્રાઉઝિંગ", - // "search.browse.item-back": "Back to Results", "search.browse.item-back": "પરિણામો પર પાછા જાઓ", - // "chips.remove": "Remove chip", "chips.remove": "ચિપ દૂર કરો", - // "claimed-approved-search-result-list-element.title": "Approved", "claimed-approved-search-result-list-element.title": "મંજૂર", - // "claimed-declined-search-result-list-element.title": "Rejected, sent back to submitter", "claimed-declined-search-result-list-element.title": "નકારવામાં આવ્યું, સબમિટરને પાછું મોકલવામાં આવ્યું", - // "claimed-declined-task-search-result-list-element.title": "Declined, sent back to Review Manager's workflow", "claimed-declined-task-search-result-list-element.title": "નકારવામાં આવ્યું, રિવ્યુ મેનેજરના વર્કફ્લો પર પાછું મોકલવામાં આવ્યું", - // "collection.create.breadcrumbs": "Create collection", "collection.create.breadcrumbs": "સંગ્રહ બનાવો", - // "collection.browse.logo": "Browse for a collection logo", "collection.browse.logo": "સંગ્રહ લોગો માટે બ્રાઉઝ કરો", - // "collection.create.head": "Create a Collection", "collection.create.head": "સંગ્રહ બનાવો", - // "collection.create.notifications.success": "Successfully created the collection", "collection.create.notifications.success": "સંગ્રહ સફળતાપૂર્વક બનાવવામાં આવ્યો", - // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", "collection.create.sub-head": "સમુદાય {{ parent }} માટે સંગ્રહ બનાવો", - // "collection.curate.header": "Curate Collection: {{collection}}", - // TODO New key - Add a translation - "collection.curate.header": "Curate Collection: {{collection}}", + "collection.curate.header": "સંગ્રહ ક્યુરેટ કરો: {{collection}}", - // "collection.delete.cancel": "Cancel", "collection.delete.cancel": "રદ કરો", - // "collection.delete.confirm": "Confirm", "collection.delete.confirm": "ખાતરી કરો", - // "collection.delete.processing": "Deleting", "collection.delete.processing": "કાઢી રહ્યા છે", - // "collection.delete.head": "Delete Collection", "collection.delete.head": "સંગ્રહ કાઢી નાખો", - // "collection.delete.notification.fail": "Collection could not be deleted", "collection.delete.notification.fail": "સંગ્રહ કાઢી શકાતો નથી", - // "collection.delete.notification.success": "Successfully deleted collection", "collection.delete.notification.success": "સંગ્રહ સફળતાપૂર્વક કાઢી નાખ્યો", - // "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"", "collection.delete.text": "શું તમે ખરેખર સંગ્રહ \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", - // "collection.edit.delete": "Delete this collection", "collection.edit.delete": "આ સંગ્રહ કાઢી નાખો", - // "collection.edit.head": "Edit Collection", "collection.edit.head": "સંગ્રહ સંપાદિત કરો", - // "collection.edit.breadcrumbs": "Edit Collection", "collection.edit.breadcrumbs": "સંગ્રહ સંપાદિત કરો", - // "collection.edit.tabs.mapper.head": "Item Mapper", "collection.edit.tabs.mapper.head": "આઇટમ મેપર", - // "collection.edit.tabs.item-mapper.title": "Collection Edit - Item Mapper", "collection.edit.tabs.item-mapper.title": "સંગ્રહ સંપાદન - આઇટમ મેપર", - // "collection.edit.item-mapper.cancel": "Cancel", "collection.edit.item-mapper.cancel": "રદ કરો", - // "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", - // TODO New key - Add a translation - "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + "collection.edit.item-mapper.collection": "સંગ્રહ: \\\"{{name}}\\\"", - // "collection.edit.item-mapper.confirm": "Map selected items", "collection.edit.item-mapper.confirm": "પસંદ કરેલ આઇટમ્સ મેપ કરો", - // "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.", "collection.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે સંગ્રહ વહીવટકર્તાઓને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરવાની મંજૂરી આપે છે. તમે અન્ય સંગ્રહોમાંથી આઇટમ્સ શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા હાલમાં મેપ કરેલ આઇટમ્સની યાદી બ્રાઉઝ કરી શકો છો.", - // "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections", "collection.edit.item-mapper.head": "આઇટમ મેપર - અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરો", - // "collection.edit.item-mapper.no-search": "Please enter a query to search", "collection.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", - // "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.", "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} આઇટમ્સના મેપિંગ માટે ભૂલો આવી.", - // "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors", "collection.edit.item-mapper.notifications.map.error.head": "મેપિંગ ભૂલો", - // "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.", "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} આઇટમ્સ સફળતાપૂર્વક મેપ કરવામાં આવ્યા.", - // "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed", "collection.edit.item-mapper.notifications.map.success.head": "મેપિંગ પૂર્ણ", - // "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} આઇટમ્સના મેપિંગ દૂર કરતી વખતે ભૂલો આવી.", - // "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors", "collection.edit.item-mapper.notifications.unmap.error.head": "મેપિંગ દૂર કરવાની ભૂલો", - // "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} આઇટમ્સના મેપિંગ સફળતાપૂર્વક દૂર કરવામાં આવ્યા.", - // "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed", "collection.edit.item-mapper.notifications.unmap.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", - // "collection.edit.item-mapper.remove": "Remove selected item mappings", "collection.edit.item-mapper.remove": "પસંદ કરેલ આઇટમ મેપિંગ્સ દૂર કરો", - // "collection.edit.item-mapper.search-form.placeholder": "Search items...", "collection.edit.item-mapper.search-form.placeholder": "આઇટમ્સ શોધો...", - // "collection.edit.item-mapper.tabs.browse": "Browse mapped items", "collection.edit.item-mapper.tabs.browse": "મેપ કરેલ આઇટમ્સ બ્રાઉઝ કરો", - // "collection.edit.item-mapper.tabs.map": "Map new items", "collection.edit.item-mapper.tabs.map": "નવા આઇટમ્સ મેપ કરો", - // "collection.edit.logo.delete.title": "Delete logo", "collection.edit.logo.delete.title": "લોગો કાઢી નાખો", - // "collection.edit.logo.delete-undo.title": "Undo delete", "collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "સંગ્રહ લોગો", - // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", "collection.edit.logo.notifications.add.error": "સંગ્રહ લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", - // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", "collection.edit.logo.notifications.add.success": "સંગ્રહ લોગો સફળતાપૂર્વક અપલોડ થયો.", - // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", "collection.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", - // "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo", "collection.edit.logo.notifications.delete.success.content": "સંગ્રહનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", - // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", - // "collection.edit.logo.upload": "Drop a collection logo to upload", "collection.edit.logo.upload": "અપલોડ કરવા માટે સંગ્રહ લોગો ડ્રોપ કરો", - // "collection.edit.notifications.success": "Successfully edited the collection", "collection.edit.notifications.success": "સંગ્રહ સફળતાપૂર્વક સંપાદિત કર્યો", - // "collection.edit.return": "Back", "collection.edit.return": "પાછા", - // "collection.edit.tabs.access-control.head": "Access Control", "collection.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", - // "collection.edit.tabs.access-control.title": "Collection Edit - Access Control", "collection.edit.tabs.access-control.title": "સંગ્રહ સંપાદન - ઍક્સેસ કંટ્રોલ", - // "collection.edit.tabs.curate.head": "Curate", "collection.edit.tabs.curate.head": "ક્યુરેટ", - // "collection.edit.tabs.curate.title": "Collection Edit - Curate", "collection.edit.tabs.curate.title": "સંગ્રહ સંપાદન - ક્યુરેટ", - // "collection.edit.tabs.authorizations.head": "Authorizations", "collection.edit.tabs.authorizations.head": "અધિકૃતતા", - // "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations", "collection.edit.tabs.authorizations.title": "સંગ્રહ સંપાદન - અધિકૃતતા", - // "collection.edit.item.authorizations.load-bundle-button": "Load more bundles", "collection.edit.item.authorizations.load-bundle-button": "વધુ બંડલ્સ લોડ કરો", - // "collection.edit.item.authorizations.load-more-button": "Load more", "collection.edit.item.authorizations.load-more-button": "વધુ લોડ કરો", - // "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle", "collection.edit.item.authorizations.show-bitstreams-button": "બંડલ માટે બિટસ્ટ્રીમ પોલિસી બતાવો", - // "collection.edit.tabs.metadata.head": "Edit Metadata", "collection.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", - // "collection.edit.tabs.metadata.title": "Collection Edit - Metadata", "collection.edit.tabs.metadata.title": "સંગ્રહ સંપાદન - મેટાડેટા", - // "collection.edit.tabs.roles.head": "Assign Roles", "collection.edit.tabs.roles.head": "ભૂમિકા સોંપો", - // "collection.edit.tabs.roles.title": "Collection Edit - Roles", "collection.edit.tabs.roles.title": "સંગ્રહ સંપાદન - ભૂમિકા", - // "collection.edit.tabs.source.external": "This collection harvests its content from an external source", "collection.edit.tabs.source.external": "આ સંગ્રહ તેની સામગ્રી બાહ્ય સ્ત્રોતમાંથી હાર્વેસ્ટ કરે છે", - // "collection.edit.tabs.source.form.errors.oaiSource.required": "You must provide a set id of the target collection.", "collection.edit.tabs.source.form.errors.oaiSource.required": "તમારે લક્ષ્ય સંગ્રહનો સેટ id પ્રદાન કરવો જ જોઈએ.", - // "collection.edit.tabs.source.form.harvestType": "Content being harvested", "collection.edit.tabs.source.form.harvestType": "હાર્વેસ્ટ થતી સામગ્રી", - // "collection.edit.tabs.source.form.head": "Configure an external source", "collection.edit.tabs.source.form.head": "બાહ્ય સ્ત્રોત કૉન્ફિગર કરો", - // "collection.edit.tabs.source.form.metadataConfigId": "Metadata Format", "collection.edit.tabs.source.form.metadataConfigId": "મેટાડેટા ફોર્મેટ", - // "collection.edit.tabs.source.form.oaiSetId": "OAI specific set id", "collection.edit.tabs.source.form.oaiSetId": "OAI વિશિષ્ટ સેટ id", - // "collection.edit.tabs.source.form.oaiSource": "OAI Provider", "collection.edit.tabs.source.form.oaiSource": "OAI પ્રદાતા", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Harvest metadata and bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "મેટાડેટા અને બિટસ્ટ્રીમ્સ હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Harvest metadata and references to bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "મેટાડેટા અને બિટસ્ટ્રીમ્સના સંદર્ભો હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Harvest metadata only", "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "મેટાડેટા માત્ર હાર્વેસ્ટ કરો", - // "collection.edit.tabs.source.head": "Content Source", "collection.edit.tabs.source.head": "સામગ્રી સ્ત્રોત", - // "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "collection.edit.tabs.source.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - // "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded", "collection.edit.tabs.source.notifications.discarded.title": "ફેરફારો રદ", - // "collection.edit.tabs.source.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "collection.edit.tabs.source.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", - // "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid", "collection.edit.tabs.source.notifications.invalid.title": "મેટાડેટા અમાન્ય", - // "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.", "collection.edit.tabs.source.notifications.saved.content": "આ સંગ્રહના સામગ્રી સ્ત્રોત માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", - // "collection.edit.tabs.source.notifications.saved.title": "Content Source saved", "collection.edit.tabs.source.notifications.saved.title": "સામગ્રી સ્ત્રોત સાચવ્યું", - // "collection.edit.tabs.source.title": "Collection Edit - Content Source", "collection.edit.tabs.source.title": "સંગ્રહ સંપાદન - સામગ્રી સ્ત્રોત", - // "collection.edit.template.add-button": "Add", "collection.edit.template.add-button": "ઉમેરો", - // "collection.edit.template.breadcrumbs": "Item template", "collection.edit.template.breadcrumbs": "આઇટમ ટેમ્પલેટ", - // "collection.edit.template.cancel": "Cancel", "collection.edit.template.cancel": "રદ કરો", - // "collection.edit.template.delete-button": "Delete", "collection.edit.template.delete-button": "કાઢી નાખો", - // "collection.edit.template.edit-button": "Edit", "collection.edit.template.edit-button": "સંપાદિત કરો", - // "collection.edit.template.error": "An error occurred retrieving the template item", "collection.edit.template.error": "ટેમ્પલેટ આઇટમ મેળવતી વખતે ભૂલ આવી", - // "collection.edit.template.head": "Edit Template Item for Collection \"{{ collection }}\"", "collection.edit.template.head": "સંગ્રહ \\\"{{ collection }}\\\" માટે ટેમ્પલેટ આઇટમ સંપાદિત કરો", - // "collection.edit.template.label": "Template item", "collection.edit.template.label": "ટેમ્પલેટ આઇટમ", - // "collection.edit.template.loading": "Loading template item...", "collection.edit.template.loading": "ટેમ્પલેટ આઇટમ લોડ કરી રહ્યું છે...", - // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "આઇટમ ટેમ્પલેટ કાઢી નાખવામાં નિષ્ફળ", - // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", "collection.edit.template.notifications.delete.success": "આઇટમ ટેમ્પલેટ સફળતાપૂર્વક કાઢી નાખ્યું", - // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "ટેમ્પલેટ આઇટમ સંપાદિત કરો", - // "collection.form.abstract": "Short Description", "collection.form.abstract": "સંક્ષિપ્ત વર્ણન", - // "collection.form.description": "Introductory text (HTML)", "collection.form.description": "પરિચયાત્મક લખાણ (HTML)", - // "collection.form.errors.title.required": "Please enter a collection name", "collection.form.errors.title.required": "કૃપા કરીને સંગ્રહનું નામ દાખલ કરો", - // "collection.form.license": "License", "collection.form.license": "લાઇસન્સ", - // "collection.form.provenance": "Provenance", "collection.form.provenance": "પ્રૂવનન્સ", - // "collection.form.rights": "Copyright text (HTML)", "collection.form.rights": "કૉપિરાઇટ લખાણ (HTML)", - // "collection.form.tableofcontents": "News (HTML)", "collection.form.tableofcontents": "સમાચાર (HTML)", - // "collection.form.title": "Name", "collection.form.title": "નામ", - // "collection.form.entityType": "Entity Type", "collection.form.entityType": "સત્તા પ્રકાર", - // "collection.listelement.badge": "Collection", - "collection.listelement.badge": "સંગ્રહ", + "collection.listelement.badge": "સંગ્રહ", + + "collection.logo": "સંગ્રહ લોગો", + + "collection.page.browse.search.head": "શોધો", + + "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", + + "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", + + "collection.page.license": "લાઇસન્સ", + + "collection.page.news": "સમાચાર", + + "collection.page.options": "વિકલ્પો", + + "collection.search.breadcrumbs": "શોધો", + + "collection.search.results.head": "શોધ પરિણામો", + + "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", + + "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", + + "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", + + "collection.select.table.select": "સંગ્રહ પસંદ કરો", + + "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", + + "collection.select.table.title": "શીર્ષક", + + "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", + + "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", + + "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", + + "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", + + "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", + + "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + + "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "collection.source.controls.import.submit": "હવે આયાત કરો", + + "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", + + "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", + + "collection.source.controls.import.completed": "આયાત પૂર્ણ", + + "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + + "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "bitstream-request-a-copy.submit": "નકલ માટે વિનંતી કરો", + + "bitstream-request-a-copy.submit.success": "આઇટમ વિનંતી સફળતાપૂર્વક સબમિટ કરવામાં આવી.", + + "bitstream-request-a-copy.submit.error": "આઇટમ વિનંતી સબમિટ કરતી વખતે કંઈક ખોટું થયું.", + + "bitstream-request-a-copy.access-by-token.warning": "તમે આ આઇટમને સુરક્ષિત ઍક્સેસ લિંક દ્વારા જોઈ રહ્યા છો જે તમને લેખક અથવા રિપોઝિટરી સ્ટાફ દ્વારા પ્રદાન કરવામાં આવી છે. આ લિંકને અનધિકૃત વપરાશકર્તાઓ સાથે શેર ન કરવું મહત્વપૂર્ણ છે.", + + "bitstream-request-a-copy.access-by-token.expiry-label": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ સમાપ્ત થશે", + + "bitstream-request-a-copy.access-by-token.expired": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ હવે શક્ય નથી. ઍક્સેસ સમાપ્ત થઈ ગઈ છે", + + "bitstream-request-a-copy.access-by-token.not-granted": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ શક્ય નથી. ઍક્સેસ είτε મંજુર કરવામાં આવી નથી, είτε રદ કરવામાં આવી છે.", + + "bitstream-request-a-copy.access-by-token.re-request": "ઍક્સેસ માટે નવી વિનંતી સબમિટ કરવા માટે પ્રતિબંધિત ડાઉનલોડ લિંક્સને અનુસરો.", + + "bitstream-request-a-copy.access-by-token.alt-text": "આ આઇટમ માટે ઍક્સેસ સુરક્ષિત ટોકન દ્વારા પ્રદાન કરવામાં આવે છે", + + "browse.back.all-results": "બધા બ્રાઉઝ પરિણામો", + + "browse.comcol.by.author": "લેખક દ્વારા", + + "browse.comcol.by.dateissued": "પ્રકાશન તારીખ દ્વારા", + + "browse.comcol.by.subject": "વિષય દ્વારા", + + "browse.comcol.by.srsc": "વિષય શ્રેણી દ્વારા", + + "browse.comcol.by.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા", + + "browse.comcol.by.title": "શીર્ષક દ્વારા", + + "browse.comcol.head": "બ્રાઉઝ", + + "browse.empty": "બતાવવા માટે કોઈ આઇટમ્સ નથી.", + + "browse.metadata.author": "લેખક", + + "browse.metadata.dateissued": "પ્રકાશન તારીખ", + + "browse.metadata.subject": "વિષય", + + "browse.metadata.title": "શીર્ષક", + + "browse.metadata.srsc": "વિષય શ્રેણી", + + "browse.metadata.author.breadcrumbs": "લેખક દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.dateissued.breadcrumbs": "તારીખ દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.subject.breadcrumbs": "વિષય દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.srsc.breadcrumbs": "વિષય શ્રેણી દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.srsc.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", + + "browse.metadata.nsi.breadcrumbs": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.nsi.tree.description": "શોધ ફિલ્ટર તરીકે ઇન્ડેક્સ પસંદ કરો", + + "browse.metadata.title.breadcrumbs": "શીર્ષક દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.map": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.map.breadcrumbs": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.map.count.items": "આઇટમ્સ", + + "pagination.next.button": "આગલું", + + "pagination.previous.button": "પાછલું", + + "pagination.next.button.disabled.tooltip": "કોઈ વધુ પૃષ્ઠો નથી", + + "pagination.page-number-bar": "પૃષ્ઠ નેવિગેશન માટે કંટ્રોલ બાર, ID સાથેના તત્વ માટે: ", + + "browse.startsWith": ", {{ startsWith }} થી શરૂ થાય છે", + + "browse.startsWith.choose_start": "(શરૂઆત પસંદ કરો)", + + "browse.startsWith.choose_year": "(વર્ષ પસંદ કરો)", + + "browse.startsWith.choose_year.label": "પ્રકાશન વર્ષ પસંદ કરો", + + "browse.startsWith.jump": "વર્ષ અથવા મહિના દ્વારા પરિણામો ફિલ્ટર કરો", + + "browse.startsWith.months.april": "એપ્રિલ", + + "browse.startsWith.months.august": "ઑગસ્ટ", + + "browse.startsWith.months.december": "ડિસેમ્બર", + + "browse.startsWith.months.february": "ફેબ્રુઆરી", + + "browse.startsWith.months.january": "જાન્યુઆરી", + + "browse.startsWith.months.july": "જુલાઈ", + + "browse.startsWith.months.june": "જૂન", + + "browse.startsWith.months.march": "માર્ચ", + + "browse.startsWith.months.may": "મે", + + "browse.startsWith.months.none": "(મહિનો પસંદ કરો)", + + "browse.startsWith.months.none.label": "પ્રકાશન મહિનો પસંદ કરો", + + "browse.startsWith.months.november": "નવેમ્બર", + + "browse.startsWith.months.october": "ઑક્ટોબર", + + "browse.startsWith.months.september": "સપ્ટેમ્બર", + + "browse.startsWith.submit": "બ્રાઉઝ", + + "browse.startsWith.type_date": "તારીખ દ્વારા પરિણામો ફિલ્ટર કરો", + + "browse.startsWith.type_date.label": "અથવા તારીખ (વર્ષ-મહિનો) દાખલ કરો અને બ્રાઉઝ બટન પર ક્લિક કરો", + + "browse.startsWith.type_text": "પ્રથમ થોડા અક્ષરો ટાઇપ કરીને પરિણામો ફિલ્ટર કરો", + + "browse.startsWith.input": "ફિલ્ટર", + + "browse.taxonomy.button": "બ્રાઉઝ", + + "browse.title": "{{ field }}{{ startsWith }} {{ value }} દ્વારા બ્રાઉઝિંગ", + + "browse.title.page": "{{ field }} {{ value }} દ્વારા બ્રાઉઝિંગ", + + "search.browse.item-back": "પરિણામો પર પાછા જાઓ", + + "chips.remove": "ચિપ દૂર કરો", + + "claimed-approved-search-result-list-element.title": "મંજૂર", + + "claimed-declined-search-result-list-element.title": "નકારવામાં આવ્યું, સબમિટરને પાછું મોકલવામાં આવ્યું", + + "claimed-declined-task-search-result-list-element.title": "નકારવામાં આવ્યું, રિવ્યુ મેનેજરના વર્કફ્લો પર પાછું મોકલવામાં આવ્યું", + + "collection.create.breadcrumbs": "સંગ્રહ બનાવો", + + "collection.browse.logo": "સંગ્રહ લોગો માટે બ્રાઉઝ કરો", + + "collection.create.head": "સંગ્રહ બનાવો", + + "collection.create.notifications.success": "સંગ્રહ સફળતાપૂર્વક બનાવવામાં આવ્યો", + + "collection.create.sub-head": "સમુદાય {{ parent }} માટે સંગ્રહ બનાવો", + + "collection.curate.header": "સંગ્રહ ક્યુરેટ કરો: {{collection}}", + + "collection.delete.cancel": "રદ કરો", + + "collection.delete.confirm": "ખાતરી કરો", + + "collection.delete.processing": "કાઢી રહ્યા છે", + + "collection.delete.head": "સંગ્રહ કાઢી નાખો", + + "collection.delete.notification.fail": "સંગ્રહ કાઢી શકાતો નથી", + + "collection.delete.notification.success": "સંગ્રહ સફળતાપૂર્વક કાઢી નાખ્યો", + + "collection.delete.text": "શું તમે ખરેખર સંગ્રહ \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", + + "collection.edit.delete": "આ સંગ્રહ કાઢી નાખો", + + "collection.edit.head": "સંગ્રહ સંપાદિત કરો", + + "collection.edit.breadcrumbs": "સંગ્રહ સંપાદિત કરો", + + "collection.edit.tabs.mapper.head": "આઇટમ મેપર", + + "collection.edit.tabs.item-mapper.title": "સંગ્રહ સંપાદન - આઇટમ મેપર", + + "collection.edit.item-mapper.cancel": "રદ કરો", + + "collection.edit.item-mapper.collection": "સંગ્રહ: \\\"{{name}}\\\"", + + "collection.edit.item-mapper.confirm": "પસંદ કરેલ આઇટમ્સ મેપ કરો", + + "collection.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે સંગ્રહ વહીવટકર્તાઓને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરવાની મંજૂરી આપે છે. તમે અન્ય સંગ્રહોમાંથી આઇટમ્સ શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા હાલમાં મેપ કરેલ આઇટમ્સની યાદી બ્રાઉઝ કરી શકો છો.", + + "collection.edit.item-mapper.head": "આઇટમ મેપર - અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરો", + + "collection.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", + + "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} આઇટમ્સના મેપિંગ માટે ભૂલો આવી.", + + "collection.edit.item-mapper.notifications.map.error.head": "મેપિંગ ભૂલો", + + "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} આઇટમ્સ સફળતાપૂર્વક મેપ કરવામાં આવ્યા.", + + "collection.edit.item-mapper.notifications.map.success.head": "મેપિંગ પૂર્ણ", + + "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} આઇટમ્સના મેપિંગ દૂર કરતી વખતે ભૂલો આવી.", + + "collection.edit.item-mapper.notifications.unmap.error.head": "મેપિંગ દૂર કરવાની ભૂલો", + + "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} આઇટમ્સના મેપિંગ સફળતાપૂર્વક દૂર કરવામાં આવ્યા.", + + "collection.edit.item-mapper.notifications.unmap.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", + + "collection.edit.item-mapper.remove": "પસંદ કરેલ આઇટમ મેપિંગ્સ દૂર કરો", + + "collection.edit.item-mapper.search-form.placeholder": "આઇટમ્સ શોધો...", + + "collection.edit.item-mapper.tabs.browse": "મેપ કરેલ આઇટમ્સ બ્રાઉઝ કરો", + + "collection.edit.item-mapper.tabs.map": "નવા આઇટમ્સ મેપ કરો", + + "collection.edit.logo.delete.title": "લોગો કાઢી નાખો", + + "collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + + "collection.edit.logo.label": "સંગ્રહ લોગો", + + "collection.edit.logo.notifications.add.error": "સંગ્રહ લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", + + "collection.edit.logo.notifications.add.success": "સંગ્રહ લોગો સફળતાપૂર્વક અપલોડ થયો.", + + "collection.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", + + "collection.edit.logo.notifications.delete.success.content": "સંગ્રહનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", + + "collection.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", + + "collection.edit.logo.upload": "અપલોડ કરવા માટે સંગ્રહ લોગો ડ્રોપ કરો", + + "collection.edit.notifications.success": "સંગ્રહ સફળતાપૂર્વક સંપાદિત કર્યો", + + "collection.edit.return": "પાછા", + + "collection.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", + + "collection.edit.tabs.access-control.title": "સંગ્રહ સંપાદન - ઍક્સેસ કંટ્રોલ", + + "collection.edit.tabs.curate.head": "ક્યુરેટ", + + "collection.edit.tabs.curate.title": "સંગ્રહ સંપાદન - ક્યુરેટ", + + "collection.edit.tabs.authorizations.head": "અધિકૃતતા", + + "collection.edit.tabs.authorizations.title": "સંગ્રહ સંપાદન - અધિકૃતતા", + + "collection.edit.item.authorizations.load-bundle-button": "વધુ બંડલ્સ લોડ કરો", + + "collection.edit.item.authorizations.load-more-button": "વધુ લોડ કરો", + + "collection.edit.item.authorizations.show-bitstreams-button": "બંડલ માટે બિટસ્ટ્રીમ પોલિસી બતાવો", + + "collection.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", + + "collection.edit.tabs.metadata.title": "સંગ્રહ સંપાદન - મેટાડેટા", + + "collection.edit.tabs.roles.head": "ભૂમિકા સોંપો", + + "collection.edit.tabs.roles.title": "સંગ્રહ સંપાદન - ભૂમિકા", + + "collection.edit.tabs.source.external": "આ સંગ્રહ તેની સામગ્રી બાહ્ય સ્ત્રોતમાંથી હાર્વેસ્ટ કરે છે", + + "collection.edit.tabs.source.form.errors.oaiSource.required": "તમારે લક્ષ્ય સંગ્રહનો સેટ id પ્રદાન કરવો જ જોઈએ.", + + "collection.edit.tabs.source.form.harvestType": "હાર્વેસ્ટ થતી સામગ્રી", + + "collection.edit.tabs.source.form.head": "બાહ્ય સ્ત્રોત કૉન્ફિગર કરો", + + "collection.edit.tabs.source.form.metadataConfigId": "મેટાડેટા ફોર્મેટ", + + "collection.edit.tabs.source.form.oaiSetId": "OAI વિશિષ્ટ સેટ id", + + "collection.edit.tabs.source.form.oaiSource": "OAI પ્રદાતા", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "મેટાડેટા અને બિટસ્ટ્રીમ્સ હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "મેટાડેટા અને બિટસ્ટ્રીમ્સના સંદર્ભો હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "મેટાડેટા માત્ર હાર્વેસ્ટ કરો", + + "collection.edit.tabs.source.head": "સામગ્રી સ્ત્રોત", + + "collection.edit.tabs.source.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + + "collection.edit.tabs.source.notifications.discarded.title": "ફેરફારો રદ", + + "collection.edit.tabs.source.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", + + "collection.edit.tabs.source.notifications.invalid.title": "મેટાડેટા અમાન્ય", + + "collection.edit.tabs.source.notifications.saved.content": "આ સંગ્રહના સામગ્રી સ્ત્રોત માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", + + "collection.edit.tabs.source.notifications.saved.title": "સામગ્રી સ્ત્રોત સાચવ્યું", + + "collection.edit.tabs.source.title": "સંગ્રહ સંપાદન - સામગ્રી સ્ત્રોત", + + "collection.edit.template.add-button": "ઉમેરો", + + "collection.edit.template.breadcrumbs": "આઇટમ ટેમ્પલેટ", + + "collection.edit.template.cancel": "રદ કરો", + + "collection.edit.template.delete-button": "કાઢી નાખો", + + "collection.edit.template.edit-button": "સંપાદિત કરો", + + "collection.edit.template.error": "ટેમ્પલેટ આઇટમ મેળવતી વખતે ભૂલ આવી", + + "collection.edit.template.head": "સંગ્રહ \\\"{{ collection }}\\\" માટે ટેમ્પલેટ આઇટમ સંપાદિત કરો", + + "collection.edit.template.label": "ટેમ્પલેટ આઇટમ", + + "collection.edit.template.loading": "ટેમ્પલેટ આઇટમ લોડ કરી રહ્યું છે...", + + "collection.edit.template.notifications.delete.error": "આઇટમ ટેમ્પલેટ કાઢી નાખવામાં નિષ્ફળ", + + "collection.edit.template.notifications.delete.success": "આઇટમ ટેમ્પલેટ સફળતાપૂર્વક કાઢી નાખ્યું", + + "collection.edit.template.title": "ટેમ્પલેટ આઇટમ સંપાદિત કરો", + + "collection.form.abstract": "સંક્ષિપ્ત વર્ણન", + + "collection.form.description": "પરિચયાત્મક લખાણ (HTML)", + + "collection.form.errors.title.required": "કૃપા કરીને સંગ્રહનું નામ દાખલ કરો", + + "collection.form.license": "લાઇસન્સ", + + "collection.form.provenance": "પ્રૂવનન્સ", + + "collection.form.rights": "કૉપિરાઇટ લખાણ (HTML)", + + "collection.form.tableofcontents": "સમાચાર (HTML)", + + "collection.form.title": "નામ", + + "collection.form.entityType": "સત્તા પ્રકાર", + + "collection.listelement.badge": "સંગ્રહ", + + "collection.logo": "સંગ્રહ લોગો", + + "collection.page.browse.search.head": "શોધો", + + "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", + + "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", + + "collection.page.license": "લાઇસન્સ", + + "collection.page.news": "સમાચાર", + + "collection.page.options": "વિકલ્પો", + + "collection.search.breadcrumbs": "શોધો", + + "collection.search.results.head": "શોધ પરિણામો", + + "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", + + "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", + + "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", + + "collection.select.table.select": "સંગ્રહ પસંદ કરો", + + "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", + + "collection.select.table.title": "શીર્ષક", + + "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", + + "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", + + "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", + + "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", + + "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", + + "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + + "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "collection.source.controls.import.submit": "હવે આયાત કરો", + + "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", + + "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", + + "collection.source.controls.import.completed": "આયાત પૂર્ણ", + + "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + + "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "collection.source.controls.reset.failed": "રીસેટ અને ફરી આયાત દરમિયાન ભૂલ આવી", + + "collection.source.controls.reset.completed": "રીસેટ અને ફરી આયાત પૂર્ણ", + + "collection.source.controls.reset.submit": "રીસેટ અને ફરી આયાત", + + "collection.source.controls.reset.running": "રીસેટ અને ફરી આયાત કરી રહ્યું છે...", + + "collection.source.controls.harvest.status": "હાર્વેસ્ટ સ્થિતિ:", + + "collection.source.controls.harvest.start": "હાર્વેસ્ટ શરૂ સમય:", + + "collection.source.controls.harvest.last": "છેલ્લો હાર્વેસ્ટ સમય:", + + "collection.source.controls.harvest.message": "હાર્વેસ્ટ માહિતી:", + + "collection.source.controls.harvest.no-information": "N/A", + + "collection.source.update.notifications.error.content": "પ્રદાન કરેલ સેટિંગ્સનું પરીક્ષણ કરવામાં આવ્યું છે અને તે કાર્યરત નથી.", + + "collection.source.update.notifications.error.title": "સર્વર ભૂલ", + + "communityList.breadcrumbs": "સમુદાય યાદી", + + "communityList.tabTitle": "સમુદાય યાદી", + + "communityList.title": "સમુદાયોની યાદી", + + "communityList.showMore": "વધુ બતાવો", + + "communityList.expand": "{{ name }} વિસ્તારો", + + "communityList.collapse": "{{ name }} સંકોચો", + + "community.browse.logo": "સમુદાય લોગો માટે બ્રાઉઝ કરો", + + "community.subcoms-cols.breadcrumbs": "ઉપસમુદાયો અને સંગ્રહો", + + "community.create.breadcrumbs": "સમુદાય બનાવો", + + "community.create.head": "સમુદાય બનાવો", + + "community.create.notifications.success": "સમુદાય સફળતાપૂર્વક બનાવવામાં આવ્યો", + + "community.create.sub-head": "સમુદાય {{ parent }} માટે ઉપસમુદાય બનાવો", + + "community.curate.header": "સમુદાય ક્યુરેટ કરો: {{community}}", + + "community.delete.cancel": "રદ કરો", + + "community.delete.confirm": "ખાતરી કરો", + + "community.delete.processing": "કાઢી રહ્યા છે...", + + "community.delete.head": "સમુદાય કાઢી નાખો", + + "community.delete.notification.fail": "સમુદાય કાઢી શકાતો નથી", + + "community.delete.notification.success": "સમુદાય સફળતાપૂર્વક કાઢી નાખ્યો", + + "community.delete.text": "શું તમે ખરેખર સમુદાય \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", + + "community.edit.delete": "આ સમુદાય કાઢી નાખો", + + "community.edit.head": "સમુદાય સંપાદિત કરો", + + "community.edit.breadcrumbs": "સમુદાય સંપાદિત કરો", + + "community.edit.logo.delete.title": "લોગો કાઢી નાખો", + + "community-collection.edit.logo.delete.title": "કાઢી નાખવું ખાતરી કરો", + + "community.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + + "community-collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + + "community.edit.logo.label": "સમુદાય લોગો", + + "community.edit.logo.notifications.add.error": "સમુદાય લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", + + "community.edit.logo.notifications.add.success": "સમુદાય લોગો સફળતાપૂર્વક અપલોડ થયો.", + + "community.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", + + "community.edit.logo.notifications.delete.success.content": "સમુદાયનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", + + "community.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", + + "community.edit.logo.upload": "અપલોડ કરવા માટે સમુદાય લોગો ડ્રોપ કરો", + + "community.edit.notifications.success": "સમુદાય સફળતાપૂર્વક સંપાદિત કર્યો", + + "community.edit.notifications.unauthorized": "તમને આ ફેરફાર કરવાની પરવાનગી નથી", + + "community.edit.notifications.error": "સમુદાય સંપાદિત કરતી વખતે ભૂલ આવી", + + "community.edit.return": "પાછા", + + "community.edit.tabs.curate.head": "ક્યુરેટ", + + "community.edit.tabs.curate.title": "સમુદાય સંપાદન - ક્યુરેટ", + + "community.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", + + "community.edit.tabs.access-control.title": "સમુદાય સંપાદન - ઍક્સેસ કંટ્રોલ", + + "community.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", + + "community.edit.tabs.metadata.title": "સમુદાય સંપાદન - મેટાડેટા", + + "community.edit.tabs.roles.head": "ભૂમિકા સોંપો", + + "community.edit.tabs.roles.title": "સમુદાય સંપાદન - ભૂમિકા", + + "community.edit.tabs.authorizations.head": "અધિકૃતતા", + + "community.edit.tabs.authorizations.title": "સમુદાય સંપાદન - અધિકૃતતા", + + "community.listelement.badge": "સમુદાય", + + "community.logo": "સમુદાય લોગો", + + "comcol-role.edit.no-group": "કોઈ નથી", + + "comcol-role.edit.create": "બનાવો", + + "comcol-role.edit.create.error.title": "'{{ role }}' ભૂમિકા માટે જૂથ બનાવવામાં નિષ્ફળ", + + "comcol-role.edit.restrict": "પ્રતિબંધિત", + + "comcol-role.edit.delete": "કાઢી નાખો", + + "comcol-role.edit.delete.error.title": "'{{ role }}' ભૂમિકા માટેના જૂથને કાઢી નાખવામાં નિષ્ફળ", + + "comcol-role.edit.community-admin.name": "એડમિનિસ્ટ્રેટર્સ", + + "comcol-role.edit.collection-admin.name": "એડમિનિસ્ટ્રેટર્સ", + + "comcol-role.edit.community-admin.description": "સમુદાય એડમિનિસ્ટ્રેટર્સ ઉપસમુદાયો અથવા સંગ્રહો બનાવી શકે છે, અને તે ઉપસમુદાયો અથવા સંગ્રહો માટે મેનેજમેન્ટ સોંપી શકે છે. ઉપરાંત, તેઓ નક્કી કરે છે કે કોણ ઉપસંગ્રહોમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને અન્ય સંગ્રહોમાંથી (અધિકૃતતા મુજબ) આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે.", + + "comcol-role.edit.collection-admin.description": "સંગ્રહ એડમિનિસ્ટ્રેટર્સ નક્કી કરે છે કે કોણ સંગ્રહમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે (તે સંગ્રહ માટેની અધિકૃતતા મુજબ).", + + "comcol-role.edit.submitters.name": "સબમિટર્સ", + + "comcol-role.edit.submitters.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં નવા આઇટમ્સ સબમિટ કરવાની પરવાનગી છે.", + + "comcol-role.edit.item_read.name": "ડિફોલ્ટ આઇટમ વાંચન ઍક્સેસ", + + "comcol-role.edit.item_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા આઇટમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા આઇટમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", + + "comcol-role.edit.item_read.anonymous-group": "આવતા આઇટમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", + + "comcol-role.edit.bitstream_read.name": "ડિફોલ્ટ બિટસ્ટ્રીમ વાંચન ઍક્સેસ", + + "comcol-role.edit.bitstream_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા બિટસ્ટ્રીમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા બિટસ્ટ્રીમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", + + "comcol-role.edit.bitstream_read.anonymous-group": "આવતા બિટસ્ટ્રીમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", + + "comcol-role.edit.editor.name": "સંપાદકો", + + "comcol-role.edit.editor.description": "સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, અને પછી તેમને સ્વીકારી અથવા નકારી શકે છે.", + + "comcol-role.edit.finaleditor.name": "અંતિમ સંપાદકો", + + "comcol-role.edit.finaleditor.description": "અંતિમ સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, પરંતુ તેમને નકારી શકશે નહીં.", + + "comcol-role.edit.reviewer.name": "રિવ્યુઅર્સ", + + "comcol-role.edit.reviewer.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્વીકારી અથવા નકારી શકે છે. જો કે, તેઓ સબમિશનના મેટાડેટા સંપાદિત કરી શકશે નહીં.", + + "comcol-role.edit.scorereviewers.name": "સ્કોર રિવ્યુઅર્સ", + + "comcol-role.edit.scorereviewers.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્કોર આપી શકે છે, જે નક્કી કરશે કે સબમિશન નકારવામાં આવશે કે નહીં.", + + "community.form.abstract": "સંક્ષિપ્ત વર્ણન", + + "community.form.description": "પરિચયાત્મક લખાણ (HTML)", + + "community.form.errors.title.required": "કૃપા કરીને સમુદાયનું નામ દાખલ કરો", + + "community.form.rights": "કૉપિરાઇટ લખાણ (HTML)", + + "community.form.tableofcontents": "સમાચાર (HTML)", + + "community.form.title": "નામ", + + "community.page.edit": "આ સમુદાય સંપાદિત કરો", + + "community.page.handle": "આ સમુદાય માટે કાયમી URI", + + "community.page.license": "લાઇસન્સ", + + "community.page.news": "સમાચાર", + + "community.page.options": "વિકલ્પો", + + "community.all-lists.head": "ઉપસમુદાયો અને સંગ્રહો", + + "community.search.breadcrumbs": "શોધો", + + "community.search.results.head": "શોધ પરિણામો", + + "community.sub-collection-list.head": "આ સમુદાયમાં સંગ્રહો", + + "community.sub-community-list.head": "આ સમુદાયમાં સમુદાયો", + + "cookies.consent.accept-all": "બધા સ્વીકારો", + + "cookies.consent.accept-selected": "પસંદ કરેલ સ્વીકારો", + + "cookies.consent.app.opt-out.description": "આ એપ્લિકેશન ડિફોલ્ટ દ્વારા લોડ થાય છે (પરંતુ તમે તેને ઓપ્ટ આઉટ કરી શકો છો)", + + "cookies.consent.app.opt-out.title": "(ઓપ્ટ-આઉટ)", + + "cookies.consent.app.purpose": "હેતુ", + + "cookies.consent.app.required.description": "આ એપ્લિકેશન હંમેશા જરૂરી છે", + + "cookies.consent.app.required.title": "(હંમેશા જરૂરી)", + + "cookies.consent.update": "તમારા છેલ્લા મુલાકાત પછી ફેરફારો થયા છે, કૃપા કરીને તમારી સંમતિ અપડેટ કરો.", + + "cookies.consent.close": "બંધ કરો", + + "cookies.consent.decline": "નકારો", + + "cookies.consent.decline-all": "બધા નકારો", + + "cookies.consent.ok": "તે ઠીક છે", + + "cookies.consent.save": "સાચવો", + + "cookies.consent.content-notice.description": "અમે નીચેના હેતુઓ માટે તમારી વ્યક્તિગત માહિતી એકત્રિત અને પ્રક્રિયા કરીએ છીએ: {purposes}", + + "cookies.consent.content-notice.learnMore": "કસ્ટમાઇઝ કરો", + + "cookies.consent.content-modal.description": "અહીં તમે જોઈ શકો છો અને કસ્ટમાઇઝ કરી શકો છો કે અમે તમારા વિશે કઈ માહિતી એકત્રિત કરીએ છીએ.", + + "cookies.consent.content-modal.privacy-policy.name": "ગોપનીયતા નીતિ", + + "cookies.consent.content-modal.privacy-policy.text": "વધુ જાણવા માટે, કૃપા કરીને અમારી {privacyPolicy} વાંચો.", + + "cookies.consent.content-modal.no-privacy-policy.text": "", + + "cookies.consent.content-modal.title": "અમે જે માહિતી એકત્રિત કરીએ છીએ", + + "cookies.consent.app.title.authentication": "પ્રમાણન", + + "cookies.consent.app.description.authentication": "તમને સાઇન ઇન કરવા માટે જરૂરી છે", + + "cookies.consent.app.title.preferences": "પસંદગીઓ", + + "cookies.consent.app.description.preferences": "તમારી પસંદગીઓ સાચવવા માટે જરૂરી છે", + + "cookies.consent.app.title.acknowledgement": "સ્વીકાર", + + "cookies.consent.app.description.acknowledgement": "તમારા સ્વીકાર અને સંમતિઓ સાચવવા માટે જરૂરી છે", + + "cookies.consent.app.title.google-analytics": "Google Analytics", + + "cookies.consent.app.description.google-analytics": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", + + "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", + + "cookies.consent.app.description.google-recaptcha": "અમે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ દરમિયાન Google reCAPTCHA સેવા નો ઉપયોગ કરીએ છીએ", + + "cookies.consent.app.title.matomo": "Matomo", + + "cookies.consent.app.description.matomo": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", + + "cookies.consent.purpose.functional": "કાર્યાત્મક", + + "cookies.consent.purpose.statistical": "આંકડાકીય", + + "cookies.consent.purpose.registration-password-recovery": "નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ", + + "cookies.consent.purpose.sharing": "શેરિંગ", + + "curation-task.task.citationpage.label": "સાઇટેશન પેજ જનરેટ કરો", + + "curation-task.task.checklinks.label": "મેટાડેટામાં લિંક્સ તપાસો", + + "curation-task.task.noop.label": "NOOP", + + "curation-task.task.profileformats.label": "પ્રોફાઇલ બિટસ્ટ્રીમ ફોર્મેટ્સ", + + "curation-task.task.requiredmetadata.label": "જરૂરી મેટાડેટા માટે તપાસો", + + "curation-task.task.translate.label": "Microsoft Translator", + + "curation-task.task.vscan.label": "વાયરસ સ્કેન", + + "curation-task.task.registerdoi.label": "DOI નોંધણી કરો", + + "curation.form.task-select.label": "ટાસ્ક:", + + "curation.form.submit": "શરૂ કરો", + + "curation.form.submit.success.head": "ક્યુરેશન ટાસ્ક સફળતાપૂર્વક શરૂ કરવામાં આવી", + + "curation.form.submit.success.content": "તમને સંબંધિત પ્રક્રિયા પૃષ્ઠ પર રીડાયરેક્ટ કરવામાં આવશે.", + + "curation.form.submit.error.head": "ક્યુરેશન ટાસ્ક ચલાવતી વખતે નિષ્ફળ", + + "curation.form.submit.error.content": "ક્યુરેશન ટાસ્ક શરૂ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી.", - // "collection.logo": "Collection logo", - "collection.logo": "સંગ્રહ લોગો", + "curation.form.submit.error.invalid-handle": "આ ઑબ્જેક્ટ માટે હેન્ડલ નક્કી કરી શક્યો નથી", - // "collection.page.browse.search.head": "Search", - "collection.page.browse.search.head": "શોધો", + "curation.form.handle.label": "હેન્ડલ:", - // "collection.page.edit": "Edit this collection", - "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", + "curation.form.handle.hint": "સૂચન: [તમારા-હેન્ડલ-પ્રિફિક્સ]/0 દાખલ કરો જેથી સમગ્ર સાઇટ પર ટાસ્ક ચલાવી શકાય (બધા ટાસ્ક આ ક્ષમતા સપોર્ટ કરી શકે છે)", - // "collection.page.handle": "Permanent URI for this collection", - "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", + "deny-request-copy.email.message": "પ્રિય {{ recipientName }},\\nતમારી વિનંતીનો જવાબ આપતાં મને દુઃખ છે કે હું તમને વિનંતી કરેલ ફાઇલ(ઓ)ની નકલ મોકલી શકું નહીં, દસ્તાવેજ: \\\"{{ itemUrl }}\\\" ({{ itemName }}), જેનો હું લેખક છું.\\n\\nશ્રેષ્ઠ શુભેચ્છાઓ,\\n{{ authorName }} <{{ authorEmail }}>", - // "collection.page.license": "License", - "collection.page.license": "લાઇસન્સ", + "deny-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", - // "collection.page.news": "News", - "collection.page.news": "સમાચાર", + "deny-request-copy.error": "ભૂલ આવી", - // "collection.page.options": "Options", - "collection.page.options": "વિકલ્પો", + "deny-request-copy.header": "દસ્તાવેજની નકલ વિનંતી નકારી", - // "collection.search.breadcrumbs": "Search", - "collection.search.breadcrumbs": "શોધો", + "deny-request-copy.intro": "આ સંદેશા વિનંતી કરનારને મોકલવામાં આવશે", - // "collection.search.results.head": "Search Results", - "collection.search.results.head": "શોધ પરિણામો", + "deny-request-copy.success": "આઇટમ વિનંતી સફળતાપૂર્વક નકારી", - // "collection.select.confirm": "Confirm selected", - "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", + "dynamic-list.load-more": "વધુ લોડ કરો", - // "collection.select.empty": "No collections to show", - "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", + "dropdown.clear": "પસંદગી સાફ કરો", - // "collection.select.table.selected": "Selected collections", - "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", + "dropdown.clear.tooltip": "પસંદ કરેલ વિકલ્પ દૂર કરો", - // "collection.select.table.select": "Select collection", - "collection.select.table.select": "સંગ્રહ પસંદ કરો", + "dso.name.untitled": "શીર્ષક વિના", - // "collection.select.table.deselect": "Deselect collection", - "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", + "dso.name.unnamed": "નામ વિના", - // "collection.select.table.title": "Title", - "collection.select.table.title": "શીર્ષક", + "dso-selector.create.collection.head": "નવો સંગ્રહ", - // "collection.source.controls.head": "Harvest Controls", - "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", + "dso-selector.create.collection.sub-level": "માં નવો સંગ્રહ બનાવો", - // "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings", - "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", + "dso-selector.create.community.head": "નવો સમુદાય", - // "collection.source.controls.test.failed": "The script to test the settings has failed", - "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", + "dso-selector.create.community.or-divider": "અથવા", - // "collection.source.controls.test.completed": "The script to test the settings has successfully finished", - "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", + "dso-selector.create.community.sub-level": "માં નવો સમુદાય બનાવો", - // "collection.source.controls.test.submit": "Test configuration", - "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", + "dso-selector.create.community.top-level": "ટોપ-લેવલ સમુદાય બનાવો", - // "collection.source.controls.test.running": "Testing configuration...", - "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", + "dso-selector.create.item.head": "નવું આઇટમ", - // "collection.source.controls.import.submit.success": "The import has been successfully initiated", - "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + "dso-selector.create.item.sub-level": "માં નવું આઇટમ બનાવો", - // "collection.source.controls.import.submit.error": "Something went wrong with initiating the import", - "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + "dso-selector.create.submission.head": "નવું સબમિશન", - // "collection.source.controls.import.submit": "Import now", - "collection.source.controls.import.submit": "હવે આયાત કરો", + "dso-selector.edit.collection.head": "સંગ્રહ સંપાદિત કરો", - // "collection.source.controls.import.running": "Importing...", - "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", + "dso-selector.edit.community.head": "સમુદાય સંપાદિત કરો", - // "collection.source.controls.import.failed": "An error occurred during the import", - "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", + "dso-selector.edit.item.head": "આઇટમ સંપાદિત કરો", - // "collection.source.controls.import.completed": "The import completed", - "collection.source.controls.import.completed": "આયાત પૂર્ણ", + "dso-selector.error.title": "{{ type }} માટે શોધ કરતી વખતે ભૂલ આવી", - // "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated", - "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + "dso-selector.export-metadata.dspaceobject.head": "મેટાડેટા નિકાસ કરો", - // "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport", - "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + "dso-selector.export-batch.dspaceobject.head": "બેચ (ZIP) નિકાસ કરો", - // "collection.source.controls.reset.failed": "An error occurred during the reset and reimport", "collection.source.controls.reset.failed": "રીસેટ અને ફરી આયાત દરમિયાન ભૂલ આવી", - // "collection.source.controls.reset.completed": "The reset and reimport completed", "collection.source.controls.reset.completed": "રીસેટ અને ફરી આયાત પૂર્ણ", - // "collection.source.controls.reset.submit": "Reset and reimport", "collection.source.controls.reset.submit": "રીસેટ અને ફરી આયાત", - // "collection.source.controls.reset.running": "Resetting and reimporting...", "collection.source.controls.reset.running": "રીસેટ અને ફરી આયાત કરી રહ્યું છે...", - // "collection.source.controls.harvest.status": "Harvest status:", - // TODO New key - Add a translation - "collection.source.controls.harvest.status": "Harvest status:", + "collection.source.controls.harvest.status": "હાર્વેસ્ટ સ્થિતિ:", - // "collection.source.controls.harvest.start": "Harvest start time:", - // TODO New key - Add a translation - "collection.source.controls.harvest.start": "Harvest start time:", + "collection.source.controls.harvest.start": "હાર્વેસ્ટ શરૂ સમય:", - // "collection.source.controls.harvest.last": "Last time harvested:", - // TODO New key - Add a translation - "collection.source.controls.harvest.last": "Last time harvested:", + "collection.source.controls.harvest.last": "છેલ્લો હાર્વેસ્ટ સમય:", - // "collection.source.controls.harvest.message": "Harvest info:", - // TODO New key - Add a translation - "collection.source.controls.harvest.message": "Harvest info:", + "collection.source.controls.harvest.message": "હાર્વેસ્ટ માહિતી:", - // "collection.source.controls.harvest.no-information": "N/A", "collection.source.controls.harvest.no-information": "N/A", - // "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.", "collection.source.update.notifications.error.content": "પ્રદાન કરેલ સેટિંગ્સનું પરીક્ષણ કરવામાં આવ્યું છે અને તે કાર્યરત નથી.", - // "collection.source.update.notifications.error.title": "Server Error", "collection.source.update.notifications.error.title": "સર્વર ભૂલ", - // "communityList.breadcrumbs": "Community List", "communityList.breadcrumbs": "સમુદાય યાદી", - // "communityList.tabTitle": "Community List", "communityList.tabTitle": "સમુદાય યાદી", - // "communityList.title": "List of Communities", "communityList.title": "સમુદાયોની યાદી", - // "communityList.showMore": "Show More", "communityList.showMore": "વધુ બતાવો", - // "communityList.expand": "Expand {{ name }}", "communityList.expand": "{{ name }} વિસ્તારો", - // "communityList.collapse": "Collapse {{ name }}", "communityList.collapse": "{{ name }} સંકોચો", - // "community.browse.logo": "Browse for a community logo", "community.browse.logo": "સમુદાય લોગો માટે બ્રાઉઝ કરો", - // "community.subcoms-cols.breadcrumbs": "Subcommunities and Collections", "community.subcoms-cols.breadcrumbs": "ઉપસમુદાયો અને સંગ્રહો", - // "community.create.breadcrumbs": "Create Community", "community.create.breadcrumbs": "સમુદાય બનાવો", - // "community.create.head": "Create a Community", "community.create.head": "સમુદાય બનાવો", - // "community.create.notifications.success": "Successfully created the community", "community.create.notifications.success": "સમુદાય સફળતાપૂર્વક બનાવવામાં આવ્યો", - // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", "community.create.sub-head": "સમુદાય {{ parent }} માટે ઉપસમુદાય બનાવો", - // "community.curate.header": "Curate Community: {{community}}", - // TODO New key - Add a translation - "community.curate.header": "Curate Community: {{community}}", + "community.curate.header": "સમુદાય ક્યુરેટ કરો: {{community}}", - // "community.delete.cancel": "Cancel", "community.delete.cancel": "રદ કરો", - // "community.delete.confirm": "Confirm", "community.delete.confirm": "ખાતરી કરો", - // "community.delete.processing": "Deleting...", "community.delete.processing": "કાઢી રહ્યા છે...", - // "community.delete.head": "Delete Community", "community.delete.head": "સમુદાય કાઢી નાખો", - // "community.delete.notification.fail": "Community could not be deleted", "community.delete.notification.fail": "સમુદાય કાઢી શકાતો નથી", - // "community.delete.notification.success": "Successfully deleted community", "community.delete.notification.success": "સમુદાય સફળતાપૂર્વક કાઢી નાખ્યો", - // "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"", "community.delete.text": "શું તમે ખરેખર સમુદાય \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", - // "community.edit.delete": "Delete this community", "community.edit.delete": "આ સમુદાય કાઢી નાખો", - // "community.edit.head": "Edit Community", "community.edit.head": "સમુદાય સંપાદિત કરો", - // "community.edit.breadcrumbs": "Edit Community", "community.edit.breadcrumbs": "સમુદાય સંપાદિત કરો", - // "community.edit.logo.delete.title": "Delete logo", "community.edit.logo.delete.title": "લોગો કાઢી નાખો", - // "community-collection.edit.logo.delete.title": "Confirm deletion", "community-collection.edit.logo.delete.title": "કાઢી નાખવું ખાતરી કરો", - // "community.edit.logo.delete-undo.title": "Undo delete", "community.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - // "community-collection.edit.logo.delete-undo.title": "Undo delete", "community-collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - // "community.edit.logo.label": "Community logo", "community.edit.logo.label": "સમુદાય લોગો", - // "community.edit.logo.notifications.add.error": "Uploading community logo failed. Please verify the content before retrying.", "community.edit.logo.notifications.add.error": "સમુદાય લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", - // "community.edit.logo.notifications.add.success": "Upload community logo successful.", "community.edit.logo.notifications.add.success": "સમુદાય લોગો સફળતાપૂર્વક અપલોડ થયો.", - // "community.edit.logo.notifications.delete.success.title": "Logo deleted", "community.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", - // "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo", "community.edit.logo.notifications.delete.success.content": "સમુદાયનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", - // "community.edit.logo.notifications.delete.error.title": "Error deleting logo", "community.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", - // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "અપલોડ કરવા માટે સમુદાય લોગો ડ્રોપ કરો", - // "community.edit.notifications.success": "Successfully edited the community", "community.edit.notifications.success": "સમુદાય સફળતાપૂર્વક સંપાદિત કર્યો", - // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", "community.edit.notifications.unauthorized": "તમને આ ફેરફાર કરવાની પરવાનગી નથી", - // "community.edit.notifications.error": "An error occurred while editing the community", "community.edit.notifications.error": "સમુદાય સંપાદિત કરતી વખતે ભૂલ આવી", - // "community.edit.return": "Back", "community.edit.return": "પાછા", - // "community.edit.tabs.curate.head": "Curate", "community.edit.tabs.curate.head": "ક્યુરેટ", - // "community.edit.tabs.curate.title": "Community Edit - Curate", "community.edit.tabs.curate.title": "સમુદાય સંપાદન - ક્યુરેટ", - // "community.edit.tabs.access-control.head": "Access Control", "community.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", - // "community.edit.tabs.access-control.title": "Community Edit - Access Control", "community.edit.tabs.access-control.title": "સમુદાય સંપાદન - ઍક્સેસ કંટ્રોલ", - // "community.edit.tabs.metadata.head": "Edit Metadata", "community.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", - // "community.edit.tabs.metadata.title": "Community Edit - Metadata", "community.edit.tabs.metadata.title": "સમુદાય સંપાદન - મેટાડેટા", - // "community.edit.tabs.roles.head": "Assign Roles", "community.edit.tabs.roles.head": "ભૂમિકા સોંપો", - // "community.edit.tabs.roles.title": "Community Edit - Roles", "community.edit.tabs.roles.title": "સમુદાય સંપાદન - ભૂમિકા", - // "community.edit.tabs.authorizations.head": "Authorizations", "community.edit.tabs.authorizations.head": "અધિકૃતતા", - // "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", "community.edit.tabs.authorizations.title": "સમુદાય સંપાદન - અધિકૃતતા", - // "community.listelement.badge": "Community", "community.listelement.badge": "સમુદાય", - // "community.logo": "Community logo", "community.logo": "સમુદાય લોગો", - // "comcol-role.edit.no-group": "None", "comcol-role.edit.no-group": "કોઈ નથી", - // "comcol-role.edit.create": "Create", "comcol-role.edit.create": "બનાવો", - // "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role", "comcol-role.edit.create.error.title": "'{{ role }}' ભૂમિકા માટે જૂથ બનાવવામાં નિષ્ફળ", - // "comcol-role.edit.restrict": "Restrict", "comcol-role.edit.restrict": "પ્રતિબંધિત", - // "comcol-role.edit.delete": "Delete", "comcol-role.edit.delete": "કાઢી નાખો", - // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "'{{ role }}' ભૂમિકા માટેના જૂથને કાઢી નાખવામાં નિષ્ફળ", - // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - - // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - - // "comcol-role.edit.delete.modal.cancel": "Cancel", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.cancel": "Cancel", - - // "comcol-role.edit.delete.modal.confirm": "Delete", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.confirm": "Delete", - - // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "એડમિનિસ્ટ્રેટર્સ", - // "comcol-role.edit.collection-admin.name": "Administrators", "comcol-role.edit.collection-admin.name": "એડમિનિસ્ટ્રેટર્સ", - // "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).", "comcol-role.edit.community-admin.description": "સમુદાય એડમિનિસ્ટ્રેટર્સ ઉપસમુદાયો અથવા સંગ્રહો બનાવી શકે છે, અને તે ઉપસમુદાયો અથવા સંગ્રહો માટે મેનેજમેન્ટ સોંપી શકે છે. ઉપરાંત, તેઓ નક્કી કરે છે કે કોણ ઉપસંગ્રહોમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને અન્ય સંગ્રહોમાંથી (અધિકૃતતા મુજબ) આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે.", - // "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).", "comcol-role.edit.collection-admin.description": "સંગ્રહ એડમિનિસ્ટ્રેટર્સ નક્કી કરે છે કે કોણ સંગ્રહમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે (તે સંગ્રહ માટેની અધિકૃતતા મુજબ).", - // "comcol-role.edit.submitters.name": "Submitters", "comcol-role.edit.submitters.name": "સબમિટર્સ", - // "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.", "comcol-role.edit.submitters.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં નવા આઇટમ્સ સબમિટ કરવાની પરવાનગી છે.", - // "comcol-role.edit.item_read.name": "Default item read access", "comcol-role.edit.item_read.name": "ડિફોલ્ટ આઇટમ વાંચન ઍક્સેસ", - // "comcol-role.edit.item_read.description": "E-People and Groups that can read new items submitted to this collection. Changes to this role are not retroactive. Existing items in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.item_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા આઇટમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા આઇટમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", - // "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.", "comcol-role.edit.item_read.anonymous-group": "આવતા આઇટમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", - // "comcol-role.edit.bitstream_read.name": "Default bitstream read access", "comcol-role.edit.bitstream_read.name": "ડિફોલ્ટ બિટસ્ટ્રીમ વાંચન ઍક્સેસ", - // "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.bitstream_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા બિટસ્ટ્રીમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા બિટસ્ટ્રીમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", - // "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.", "comcol-role.edit.bitstream_read.anonymous-group": "આવતા બિટસ્ટ્રીમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", - // "comcol-role.edit.editor.name": "Editors", "comcol-role.edit.editor.name": "સંપાદકો", - // "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.", "comcol-role.edit.editor.description": "સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, અને પછી તેમને સ્વીકારી અથવા નકારી શકે છે.", - // "comcol-role.edit.finaleditor.name": "Final editors", "comcol-role.edit.finaleditor.name": "અંતિમ સંપાદકો", - // "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.", "comcol-role.edit.finaleditor.description": "અંતિમ સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, પરંતુ તેમને નકારી શકશે નહીં.", - // "comcol-role.edit.reviewer.name": "Reviewers", "comcol-role.edit.reviewer.name": "રિવ્યુઅર્સ", - // "comcol-role.edit.reviewer.description": "Reviewers are able to accept or reject incoming submissions. However, they are not able to edit the submission's metadata.", "comcol-role.edit.reviewer.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્વીકારી અથવા નકારી શકે છે. જો કે, તેઓ સબમિશનના મેટાડેટા સંપાદિત કરી શકશે નહીં.", - // "comcol-role.edit.scorereviewers.name": "Score Reviewers", "comcol-role.edit.scorereviewers.name": "સ્કોર રિવ્યુઅર્સ", - // "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.", "comcol-role.edit.scorereviewers.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્કોર આપી શકે છે, જે નક્કી કરશે કે સબમિશન નકારવામાં આવશે કે નહીં.", - // "community.form.abstract": "Short Description", "community.form.abstract": "સંક્ષિપ્ત વર્ણન", - // "community.form.description": "Introductory text (HTML)", "community.form.description": "પરિચયાત્મક લખાણ (HTML)", - // "community.form.errors.title.required": "Please enter a community name", "community.form.errors.title.required": "કૃપા કરીને સમુદાયનું નામ દાખલ કરો", - // "community.form.rights": "Copyright text (HTML)", "community.form.rights": "કૉપિરાઇટ લખાણ (HTML)", - // "community.form.tableofcontents": "News (HTML)", "community.form.tableofcontents": "સમાચાર (HTML)", - // "community.form.title": "Name", "community.form.title": "નામ", - // "community.page.edit": "Edit this community", "community.page.edit": "આ સમુદાય સંપાદિત કરો", - // "community.page.handle": "Permanent URI for this community", "community.page.handle": "આ સમુદાય માટે કાયમી URI", - // "community.page.license": "License", "community.page.license": "લાઇસન્સ", - // "community.page.news": "News", "community.page.news": "સમાચાર", - // "community.page.options": "Options", "community.page.options": "વિકલ્પો", - // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "ઉપસમુદાયો અને સંગ્રહો", - // "community.search.breadcrumbs": "Search", "community.search.breadcrumbs": "શોધો", - // "community.search.results.head": "Search Results", "community.search.results.head": "શોધ પરિણામો", - // "community.sub-collection-list.head": "Collections in this community", "community.sub-collection-list.head": "આ સમુદાયમાં સંગ્રહો", - // "community.sub-community-list.head": "Communities in this Community", "community.sub-community-list.head": "આ સમુદાયમાં સમુદાયો", - // "cookies.consent.accept-all": "Accept all", "cookies.consent.accept-all": "બધા સ્વીકારો", - // "cookies.consent.accept-selected": "Accept selected", "cookies.consent.accept-selected": "પસંદ કરેલ સ્વીકારો", - // "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)", "cookies.consent.app.opt-out.description": "આ એપ્લિકેશન ડિફોલ્ટ દ્વારા લોડ થાય છે (પરંતુ તમે તેને ઓપ્ટ આઉટ કરી શકો છો)", - // "cookies.consent.app.opt-out.title": "(opt-out)", "cookies.consent.app.opt-out.title": "(ઓપ્ટ-આઉટ)", - // "cookies.consent.app.purpose": "purpose", "cookies.consent.app.purpose": "હેતુ", - // "cookies.consent.app.required.description": "This application is always required", "cookies.consent.app.required.description": "આ એપ્લિકેશન હંમેશા જરૂરી છે", - // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(હંમેશા જરૂરી)", - // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "તમારા છેલ્લા મુલાકાત પછી ફેરફારો થયા છે, કૃપા કરીને તમારી સંમતિ અપડેટ કરો.", - // "cookies.consent.close": "Close", "cookies.consent.close": "બંધ કરો", - // "cookies.consent.decline": "Decline", "cookies.consent.decline": "નકારો", - // "cookies.consent.decline-all": "Decline all", "cookies.consent.decline-all": "બધા નકારો", - // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "તે ઠીક છે", - // "cookies.consent.save": "Save", "cookies.consent.save": "સાચવો", - // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", - // TODO New key - Add a translation - "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + "cookies.consent.content-notice.description": "અમે નીચેના હેતુઓ માટે તમારી વ્યક્તિગત માહિતી એકત્રિત અને પ્રક્રિયા કરીએ છીએ: {purposes}", - // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "કસ્ટમાઇઝ કરો", - // "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.", "cookies.consent.content-modal.description": "અહીં તમે જોઈ શકો છો અને કસ્ટમાઇઝ કરી શકો છો કે અમે તમારા વિશે કઈ માહિતી એકત્રિત કરીએ છીએ.", - // "cookies.consent.content-modal.privacy-policy.name": "privacy policy", "cookies.consent.content-modal.privacy-policy.name": "ગોપનીયતા નીતિ", - // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "વધુ જાણવા માટે, કૃપા કરીને અમારી {privacyPolicy} વાંચો.", - // "cookies.consent.content-modal.no-privacy-policy.text": "", "cookies.consent.content-modal.no-privacy-policy.text": "", - // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "અમે જે માહિતી એકત્રિત કરીએ છીએ", - // "cookies.consent.app.title.accessibility": "Accessibility Settings", - // TODO New key - Add a translation - "cookies.consent.app.title.accessibility": "Accessibility Settings", - - // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", - // TODO New key - Add a translation - "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", - - // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "પ્રમાણન", - // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "તમને સાઇન ઇન કરવા માટે જરૂરી છે", - // "cookies.consent.app.title.correlation-id": "Correlation ID", - // TODO New key - Add a translation - "cookies.consent.app.title.correlation-id": "Correlation ID", - - // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - // TODO New key - Add a translation - "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - - // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "પસંદગીઓ", - // "cookies.consent.app.description.preferences": "Required for saving your preferences", "cookies.consent.app.description.preferences": "તમારી પસંદગીઓ સાચવવા માટે જરૂરી છે", - // "cookies.consent.app.title.acknowledgement": "Acknowledgement", "cookies.consent.app.title.acknowledgement": "સ્વીકાર", - // "cookies.consent.app.description.acknowledgement": "Required for saving your acknowledgements and consents", "cookies.consent.app.description.acknowledgement": "તમારા સ્વીકાર અને સંમતિઓ સાચવવા માટે જરૂરી છે", - // "cookies.consent.app.title.google-analytics": "Google Analytics", "cookies.consent.app.title.google-analytics": "Google Analytics", - // "cookies.consent.app.description.google-analytics": "Allows us to track statistical data", "cookies.consent.app.description.google-analytics": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", - // "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", - // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "અમે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ દરમિયાન Google reCAPTCHA સેવા નો ઉપયોગ કરીએ છીએ", - // "cookies.consent.app.title.matomo": "Matomo", "cookies.consent.app.title.matomo": "Matomo", - // "cookies.consent.app.description.matomo": "Allows us to track statistical data", "cookies.consent.app.description.matomo": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", - // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "કાર્યાત્મક", - // "cookies.consent.purpose.statistical": "Statistical", "cookies.consent.purpose.statistical": "આંકડાકીય", - // "cookies.consent.purpose.registration-password-recovery": "Registration and Password recovery", "cookies.consent.purpose.registration-password-recovery": "નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ", - // "cookies.consent.purpose.sharing": "Sharing", "cookies.consent.purpose.sharing": "શેરિંગ", - // "curation-task.task.citationpage.label": "Generate Citation Page", "curation-task.task.citationpage.label": "સાઇટેશન પેજ જનરેટ કરો", - // "curation-task.task.checklinks.label": "Check Links in Metadata", "curation-task.task.checklinks.label": "મેટાડેટામાં લિંક્સ તપાસો", - // "curation-task.task.noop.label": "NOOP", "curation-task.task.noop.label": "NOOP", - // "curation-task.task.profileformats.label": "Profile Bitstream Formats", "curation-task.task.profileformats.label": "પ્રોફાઇલ બિટસ્ટ્રીમ ફોર્મેટ્સ", - // "curation-task.task.requiredmetadata.label": "Check for Required Metadata", "curation-task.task.requiredmetadata.label": "જરૂરી મેટાડેટા માટે તપાસો", - // "curation-task.task.translate.label": "Microsoft Translator", "curation-task.task.translate.label": "Microsoft Translator", - // "curation-task.task.vscan.label": "Virus Scan", "curation-task.task.vscan.label": "વાયરસ સ્કેન", - // "curation-task.task.registerdoi.label": "Register DOI", "curation-task.task.registerdoi.label": "DOI નોંધણી કરો", - // "curation.form.task-select.label": "Task:", - // TODO New key - Add a translation - "curation.form.task-select.label": "Task:", + "curation.form.task-select.label": "ટાસ્ક:", - // "curation.form.submit": "Start", "curation.form.submit": "શરૂ કરો", - // "curation.form.submit.success.head": "The curation task has been started successfully", "curation.form.submit.success.head": "ક્યુરેશન ટાસ્ક સફળતાપૂર્વક શરૂ કરવામાં આવી", - // "curation.form.submit.success.content": "You will be redirected to the corresponding process page.", "curation.form.submit.success.content": "તમને સંબંધિત પ્રક્રિયા પૃષ્ઠ પર રીડાયરેક્ટ કરવામાં આવશે.", - // "curation.form.submit.error.head": "Running the curation task failed", "curation.form.submit.error.head": "ક્યુરેશન ટાસ્ક ચલાવતી વખતે નિષ્ફળ", - // "curation.form.submit.error.content": "An error occurred when trying to start the curation task.", "curation.form.submit.error.content": "ક્યુરેશન ટાસ્ક શરૂ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી.", - // "curation.form.submit.error.invalid-handle": "Couldn't determine the handle for this object", "curation.form.submit.error.invalid-handle": "આ ઑબ્જેક્ટ માટે હેન્ડલ નક્કી કરી શક્યો નથી", - // "curation.form.handle.label": "Handle:", - // TODO New key - Add a translation - "curation.form.handle.label": "Handle:", + "curation.form.handle.label": "હેન્ડલ:", - // "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", - // TODO New key - Add a translation - "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", + "curation.form.handle.hint": "સૂચન: [તમારા-હેન્ડલ-પ્રિફિક્સ]/0 દાખલ કરો જેથી સમગ્ર સાઇટ પર ટાસ્ક ચલાવી શકાય (બધા ટાસ્ક આ ક્ષમતા સપોર્ટ કરી શકે છે)", - // "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", - // TODO New key - Add a translation - "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + "deny-request-copy.email.message": "પ્રિય {{ recipientName }},\\nતમારી વિનંતીનો જવાબ આપતાં મને દુઃખ છે કે હું તમને વિનંતી કરેલ ફાઇલ(ઓ)ની નકલ મોકલી શકું નહીં, દસ્તાવેજ: \\\"{{ itemUrl }}\\\" ({{ itemName }}), જેનો હું લેખક છું.\\n\\nશ્રેષ્ઠ શુભેચ્છાઓ,\\n{{ authorName }} <{{ authorEmail }}>", - // "deny-request-copy.email.subject": "Request copy of document", "deny-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", - // "deny-request-copy.error": "An error occurred", "deny-request-copy.error": "ભૂલ આવી", - // "deny-request-copy.header": "Deny document copy request", "deny-request-copy.header": "દસ્તાવેજની નકલ વિનંતી નકારી", - // "deny-request-copy.intro": "This message will be sent to the applicant of the request", "deny-request-copy.intro": "આ સંદેશા વિનંતી કરનારને મોકલવામાં આવશે", - // "deny-request-copy.success": "Successfully denied item request", "deny-request-copy.success": "આઇટમ વિનંતી સફળતાપૂર્વક નકારી", - // "dynamic-list.load-more": "Load more", "dynamic-list.load-more": "વધુ લોડ કરો", - // "dropdown.clear": "Clear selection", "dropdown.clear": "પસંદગી સાફ કરો", - // "dropdown.clear.tooltip": "Clear the selected option", "dropdown.clear.tooltip": "પસંદ કરેલ વિકલ્પ દૂર કરો", - // "dso.name.untitled": "Untitled", "dso.name.untitled": "શીર્ષક વિના", - // "dso.name.unnamed": "Unnamed", "dso.name.unnamed": "નામ વિના", - // "dso-selector.create.collection.head": "New collection", "dso-selector.create.collection.head": "નવો સંગ્રહ", - // "dso-selector.create.collection.sub-level": "Create a new collection in", "dso-selector.create.collection.sub-level": "માં નવો સંગ્રહ બનાવો", - // "dso-selector.create.community.head": "New community", "dso-selector.create.community.head": "નવો સમુદાય", - // "dso-selector.create.community.or-divider": "or", "dso-selector.create.community.or-divider": "અથવા", - // "dso-selector.create.community.sub-level": "Create a new community in", "dso-selector.create.community.sub-level": "માં નવો સમુદાય બનાવો", - // "dso-selector.create.community.top-level": "Create a new top-level community", "dso-selector.create.community.top-level": "ટોપ-લેવલ સમુદાય બનાવો", - // "dso-selector.create.item.head": "New item", "dso-selector.create.item.head": "નવું આઇટમ", - // "dso-selector.create.item.sub-level": "Create a new item in", "dso-selector.create.item.sub-level": "માં નવું આઇટમ બનાવો", - // "dso-selector.create.submission.head": "New submission", "dso-selector.create.submission.head": "નવું સબમિશન", - // "dso-selector.edit.collection.head": "Edit collection", "dso-selector.edit.collection.head": "સંગ્રહ સંપાદિત કરો", - // "dso-selector.edit.community.head": "Edit community", "dso-selector.edit.community.head": "સમુદાય સંપાદિત કરો", - // "dso-selector.edit.item.head": "Edit item", "dso-selector.edit.item.head": "આઇટમ સંપાદિત કરો", - // "dso-selector.error.title": "An error occurred searching for a {{ type }}", "dso-selector.error.title": "{{ type }} માટે શોધ કરતી વખતે ભૂલ આવી", - // "dso-selector.export-metadata.dspaceobject.head": "Export metadata from", "dso-selector.export-metadata.dspaceobject.head": "મેટાડેટા નિકાસ કરો", - // "dso-selector.export-batch.dspaceobject.head": "Export Batch (ZIP) from", "dso-selector.export-batch.dspaceobject.head": "બેચ (ZIP) નિકાસ કરો", - // "dso-selector.import-batch.dspaceobject.head": "Import batch from", "dso-selector.import-batch.dspaceobject.head": "બેચ આયાત કરો", - // "dso-selector.no-results": "No {{ type }} found", "dso-selector.no-results": "કોઈ {{ type }} મળ્યું નથી", - // "dso-selector.placeholder": "Search for a {{ type }}", "dso-selector.placeholder": "{{ type }} માટે શોધો", - // "dso-selector.placeholder.type.community": "community", "dso-selector.placeholder.type.community": "સમુદાય", - // "dso-selector.placeholder.type.collection": "collection", "dso-selector.placeholder.type.collection": "સંગ્રહ", - // "dso-selector.placeholder.type.item": "item", "dso-selector.placeholder.type.item": "આઇટમ", - // "dso-selector.select.collection.head": "Select a collection", "dso-selector.select.collection.head": "સંગ્રહ પસંદ કરો", - // "dso-selector.set-scope.community.head": "Select a search scope", "dso-selector.set-scope.community.head": "શોધ સ્કોપ પસંદ કરો", - // "dso-selector.set-scope.community.button": "Search all of DSpace", "dso-selector.set-scope.community.button": "DSpace ના બધા શોધો", - // "dso-selector.set-scope.community.or-divider": "or", "dso-selector.set-scope.community.or-divider": "અથવા", - // "dso-selector.set-scope.community.input-header": "Search for a community or collection", "dso-selector.set-scope.community.input-header": "સમુદાય અથવા સંગ્રહ માટે શોધો", - // "dso-selector.claim.item.head": "Profile tips", "dso-selector.claim.item.head": "પ્રોફાઇલ ટીપ્સ", - // "dso-selector.claim.item.body": "These are existing profiles that may be related to you. If you recognize yourself in one of these profiles, select it and on the detail page, among the options, choose to claim it. Otherwise you can create a new profile from scratch using the button below.", "dso-selector.claim.item.body": "આ મોજુદા પ્રોફાઇલ્સ છે જે તમારા સંબંધિત હોઈ શકે છે. જો તમે આ પ્રોફાઇલ્સમાં પોતાને ઓળખો છો, તો તેને પસંદ કરો અને વિગત પૃષ્ઠ પર, વિકલ્પોમાંથી, તેને દાવો કરવા માટે પસંદ કરો. અન્યથા, તમે નીચેના બટનનો ઉપયોગ કરીને નવું પ્રોફાઇલ શરુ કરી શકો છો.", - // "dso-selector.claim.item.not-mine-label": "None of these are mine", "dso-selector.claim.item.not-mine-label": "આમાંથી કોઈપણ મારું નથી", - // "dso-selector.claim.item.create-from-scratch": "Create a new one", "dso-selector.claim.item.create-from-scratch": "નવું બનાવો", - // "dso-selector.results-could-not-be-retrieved": "Something went wrong, please refresh again ↻", "dso-selector.results-could-not-be-retrieved": "કંઈક ખોટું થયું, કૃપા કરીને ફરીથી રિફ્રેશ કરો ↻", - // "supervision-group-selector.header": "Supervision Group Selector", "supervision-group-selector.header": "સુપરવિઝન ગ્રુપ સિલેક્ટર", - // "supervision-group-selector.select.type-of-order.label": "Select a type of Order", "supervision-group-selector.select.type-of-order.label": "ઓર્ડરનો પ્રકાર પસંદ કરો", - // "supervision-group-selector.select.type-of-order.option.none": "NONE", "supervision-group-selector.select.type-of-order.option.none": "કોઈ નથી", - // "supervision-group-selector.select.type-of-order.option.editor": "EDITOR", "supervision-group-selector.select.type-of-order.option.editor": "સંપાદક", - // "supervision-group-selector.select.type-of-order.option.observer": "OBSERVER", "supervision-group-selector.select.type-of-order.option.observer": "નિરીક્ષક", - // "supervision-group-selector.select.group.label": "Select a Group", "supervision-group-selector.select.group.label": "જૂથ પસંદ કરો", - // "supervision-group-selector.button.cancel": "Cancel", "supervision-group-selector.button.cancel": "રદ કરો", - // "supervision-group-selector.button.save": "Save", "supervision-group-selector.button.save": "સાચવો", - // "supervision-group-selector.select.type-of-order.error": "Please select a type of order", "supervision-group-selector.select.type-of-order.error": "કૃપા કરીને ઓર્ડરનો પ્રકાર પસંદ કરો", - // "supervision-group-selector.select.group.error": "Please select a group", "supervision-group-selector.select.group.error": "કૃપા કરીને જૂથ પસંદ કરો", - // "supervision-group-selector.notification.create.success.title": "Successfully created supervision order for group {{ name }}", "supervision-group-selector.notification.create.success.title": "જૂથ {{ name }} માટે સુપરવિઝન ઓર્ડર સફળતાપૂર્વક બનાવવામાં આવ્યો", - // "supervision-group-selector.notification.create.failure.title": "Error", "supervision-group-selector.notification.create.failure.title": "ભૂલ", - // "supervision-group-selector.notification.create.already-existing": "A supervision order already exists on this item for selected group", "supervision-group-selector.notification.create.already-existing": "પસંદ કરેલ જૂથ માટે પહેલેથી જ સુપરવિઝન ઓર્ડર અસ્તિત્વમાં છે", - // "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.header": "{{ dsoName }} માટે મેટાડેટા નિકાસ કરો", - // "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.info": "શું તમે ખરેખર {{ dsoName }} માટે મેટાડેટા નિકાસ કરવા માંગો છો", - // "confirmation-modal.export-metadata.cancel": "Cancel", "confirmation-modal.export-metadata.cancel": "રદ કરો", - // "confirmation-modal.export-metadata.confirm": "Export", "confirmation-modal.export-metadata.confirm": "નિકાસ કરો", - // "confirmation-modal.export-batch.header": "Export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.header": "{{ dsoName }} માટે બેચ (ZIP) નિકાસ કરો", - // "confirmation-modal.export-batch.info": "Are you sure you want to export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.info": "શું તમે ખરેખર {{ dsoName }} માટે બેચ (ZIP) નિકાસ કરવા માંગો છો", - // "confirmation-modal.export-batch.cancel": "Cancel", "confirmation-modal.export-batch.cancel": "રદ કરો", - // "confirmation-modal.export-batch.confirm": "Export", "confirmation-modal.export-batch.confirm": "નિકાસ કરો", - // "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.header": "EPerson \\\"{{ dsoName }}\\\" કાઢી નાખો", - // "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.info": "શું તમે ખરેખર EPerson \\\"{{ dsoName }}\\\" કાઢી નાખવા માંગો છો", - // "confirmation-modal.delete-eperson.cancel": "Cancel", "confirmation-modal.delete-eperson.cancel": "રદ કરો", - // "confirmation-modal.delete-eperson.confirm": "Delete", "confirmation-modal.delete-eperson.confirm": "કાઢી નાખો", - // "confirmation-modal.delete-community-collection-logo.info": "Are you sure you want to delete the logo?", "confirmation-modal.delete-community-collection-logo.info": "શું તમે ખરેખર લોગો કાઢી નાખવા માંગો છો?", - // "confirmation-modal.delete-profile.header": "Delete Profile", "confirmation-modal.delete-profile.header": "પ્રોફાઇલ કાઢી નાખો", - // "confirmation-modal.delete-profile.info": "Are you sure you want to delete your profile", "confirmation-modal.delete-profile.info": "શું તમે ખરેખર તમારું પ્રોફાઇલ કાઢી નાખવા માંગો છો", - // "confirmation-modal.delete-profile.cancel": "Cancel", "confirmation-modal.delete-profile.cancel": "રદ કરો", - // "confirmation-modal.delete-profile.confirm": "Delete", "confirmation-modal.delete-profile.confirm": "કાઢી નાખો", - // "confirmation-modal.delete-subscription.header": "Delete Subscription", "confirmation-modal.delete-subscription.header": "સબ્સ્ક્રિપ્શન કાઢી નાખો", - // "confirmation-modal.delete-subscription.info": "Are you sure you want to delete subscription for \"{{ dsoName }}\"", "confirmation-modal.delete-subscription.info": "શું તમે ખરેખર \\\"{{ dsoName }}\\\" માટે સબ્સ્ક્રિપ્શન કાઢી નાખવા માંગો છો", - // "confirmation-modal.delete-subscription.cancel": "Cancel", "confirmation-modal.delete-subscription.cancel": "રદ કરો", - // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "કાઢી નાખો", - // "confirmation-modal.review-account-info.header": "Save the changes", "confirmation-modal.review-account-info.header": "ફેરફારો સાચવો", - // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", "confirmation-modal.review-account-info.info": "શું તમે ખરેખર તમારા પ્રોફાઇલમાં ફેરફારો સાચવવા માંગો છો", - // "confirmation-modal.review-account-info.cancel": "Cancel", "confirmation-modal.review-account-info.cancel": "રદ કરો", - // "confirmation-modal.review-account-info.confirm": "Confirm", "confirmation-modal.review-account-info.confirm": "ખાતરી કરો", - // "confirmation-modal.review-account-info.save": "Save", "confirmation-modal.review-account-info.save": "સાચવો", - // "error.bitstream": "Error fetching bitstream", "error.bitstream": "બિટસ્ટ્રીમ મેળવતી વખતે ભૂલ", - // "error.browse-by": "Error fetching items", "error.browse-by": "આઇટમ્સ મેળવતી વખતે ભૂલ", - // "error.collection": "Error fetching collection", "error.collection": "સંગ્રહ મેળવતી વખતે ભૂલ", - // "error.collections": "Error fetching collections", "error.collections": "સંગ્રહો મેળવતી વખતે ભૂલ", - // "error.community": "Error fetching community", "error.community": "સમુદાય મેળવતી વખતે ભૂલ", - // "error.identifier": "No item found for the identifier", "error.identifier": "આ ઓળખકર્તા માટે કોઈ આઇટમ મળ્યું નથી", - // "error.default": "Error", "error.default": "ભૂલ", - // "error.item": "Error fetching item", "error.item": "આઇટમ મેળવતી વખતે ભૂલ", - // "error.items": "Error fetching items", "error.items": "આઇટમ્સ મેળવતી વખતે ભૂલ", - // "error.objects": "Error fetching objects", "error.objects": "વસ્તુઓ મેળવતી વખતે ભૂલ", - // "error.recent-submissions": "Error fetching recent submissions", "error.recent-submissions": "તાજેતરના સબમિશન્સ મેળવતી વખતે ભૂલ", - // "error.profile-groups": "Error retrieving profile groups", "error.profile-groups": "પ્રોફાઇલ જૂથો મેળવતી વખતે ભૂલ", - // "error.search-results": "Error fetching search results", "error.search-results": "શોધ પરિણામો મેળવતી વખતે ભૂલ", - // "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", - // TODO New key - Add a translation - "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + "error.invalid-search-query": "શોધ ક્વેરી માન્ય નથી. આ ભૂલ વિશે વધુ માહિતી માટે Solr ક્વેરી સિન્ટેક્સ શ્રેષ્ઠ પ્રથાઓ તપાસો.", - // "error.sub-collections": "Error fetching sub-collections", "error.sub-collections": "ઉપ-સંગ્રહો મેળવતી વખતે ભૂલ", - // "error.sub-communities": "Error fetching sub-communities", "error.sub-communities": "ઉપ-સમુદાયો મેળવતી વખતે ભૂલ", - // "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", - // TODO New key - Add a translation - "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + "error.submission.sections.init-form-error": "વિભાગ આરંભ દરમિયાન ભૂલ આવી, કૃપા કરીને તમારા ઇનપુટ-ફોર્મ કૉન્ફિગરેશન તપાસો. વિગતો નીચે છે :

", - // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "ટોપ-લેવલ સમુદાયો મેળવતી વખતે ભૂલ", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "તમારે તમારા સબમિશનને પૂર્ણ કરવા માટે આ લાઇસન્સ આપવું જ જોઈએ. જો તમે આ સમયે આ લાઇસન્સ આપી શકતા નથી તો તમે તમારું કામ સાચવી શકો છો અને પછીથી પાછા આવી શકો છો અથવા સબમિશન દૂર કરી શકો છો.", - // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "તમારે તમારા સબમિશનને પૂર્ણ કરવા માટે આ cclicense આપવું જ જોઈએ. જો તમે આ સમયે cclicense આપી શકતા નથી, તો તમે તમારું કામ સાચવી શકો છો અને પછીથી પાછા આવી શકો છો અથવા સબમિશન દૂર કરી શકો છો.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + "error.validation.pattern": "આ ઇનપુટ વર્તમાન પેટર્ન દ્વારા પ્રતિબંધિત છે: {{ pattern }}.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", - // TODO New key - Add a translation - "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", - - // "error.validation.filerequired": "The file upload is mandatory", "error.validation.filerequired": "ફાઇલ અપલોડ ફરજિયાત છે", - // "error.validation.required": "This field is required", "error.validation.required": "આ ફીલ્ડ જરૂરી છે", - // "error.validation.NotValidEmail": "This is not a valid email", "error.validation.NotValidEmail": "આ માન્ય ઇમેઇલ નથી", - // "error.validation.emailTaken": "This email is already taken", "error.validation.emailTaken": "આ ઇમેઇલ પહેલેથી જ લેવામાં આવી છે", - // "error.validation.groupExists": "This group already exists", "error.validation.groupExists": "આ જૂથ પહેલેથી જ અસ્તિત્વમાં છે", - // "error.validation.metadata.name.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Element & Qualifier fields instead", "error.validation.metadata.name.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી. કૃપા કરીને તેના બદલે એલિમેન્ટ અને ક્વોલિફાયર ફીલ્ડનો ઉપયોગ કરો", - // "error.validation.metadata.name.max-length": "This field may not contain more than 32 characters", "error.validation.metadata.name.max-length": "આ ફીલ્ડમાં 32 થી વધુ અક્ષરો હોઈ શકતા નથી", - // "error.validation.metadata.namespace.max-length": "This field may not contain more than 256 characters", "error.validation.metadata.namespace.max-length": "આ ફીલ્ડમાં 256 થી વધુ અક્ષરો હોઈ શકતા નથી", - // "error.validation.metadata.element.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Qualifier field instead", "error.validation.metadata.element.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી. કૃપા કરીને ક્વોલિફાયર ફીલ્ડનો ઉપયોગ કરો", - // "error.validation.metadata.element.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.element.max-length": "આ ફીલ્ડમાં 64 થી વધુ અક્ષરો હોઈ શકતા નથી", - // "error.validation.metadata.qualifier.invalid-pattern": "This field cannot contain dots, commas or spaces", "error.validation.metadata.qualifier.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી", - // "error.validation.metadata.qualifier.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.qualifier.max-length": "આ ફીલ્ડમાં 64 થી વધુ અક્ષરો હોઈ શકતા નથી", - // "feed.description": "Syndication feed", "feed.description": "સિન્ડિકેશન ફીડ", - // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "પ્રતિબંધિત બિટસ્ટ્રીમ", - // "file-download-link.secure-access": "Restricted bitstream available via secure access token", "file-download-link.secure-access": "સુરક્ષિત ઍક્સેસ ટોકન દ્વારા ઉપલબ્ધ પ્રતિબંધિત બિટસ્ટ્રીમ", - // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "આ આઇટમ માટે ફાઇલો મેળવતી વખતે ભૂલ", - // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "કૉપિરાઇટ © 2002-{{ year }}", - // "footer.link.accessibility": "Accessibility settings", - // TODO New key - Add a translation - "footer.link.accessibility": "Accessibility settings", - - // "footer.link.dspace": "DSpace software", "footer.link.dspace": "DSpace સોફ્ટવેર", - // "footer.link.lyrasis": "LYRASIS", "footer.link.lyrasis": "LYRASIS", - // "footer.link.cookies": "Cookie settings", "footer.link.cookies": "કૂકી સેટિંગ્સ", - // "footer.link.privacy-policy": "Privacy policy", "footer.link.privacy-policy": "ગોપનીયતા નીતિ", - // "footer.link.end-user-agreement": "End User Agreement", "footer.link.end-user-agreement": "અંતિમ વપરાશકર્તા કરાર", - // "footer.link.feedback": "Send Feedback", "footer.link.feedback": "પ્રતિસાદ મોકલો", - // "footer.link.coar-notify-support": "COAR Notify", "footer.link.coar-notify-support": "COAR Notify", - // "forgot-email.form.header": "Forgot Password", "forgot-email.form.header": "પાસવર્ડ ભૂલી ગયા", - // "forgot-email.form.info": "Enter the email address associated with the account.", "forgot-email.form.info": "ખાતાની સાથે જોડાયેલ ઇમેઇલ સરનામું દાખલ કરો.", - // "forgot-email.form.email": "Email Address *", "forgot-email.form.email": "ઇમેઇલ સરનામું *", - // "forgot-email.form.email.error.required": "Please fill in an email address", "forgot-email.form.email.error.required": "કૃપા કરીને ઇમેઇલ સરનામું દાખલ કરો", - // "forgot-email.form.email.error.not-email-form": "Please fill in a valid email address", "forgot-email.form.email.error.not-email-form": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું દાખલ કરો", - // "forgot-email.form.email.hint": "An email will be sent to this address with a further instructions.", "forgot-email.form.email.hint": "આ સરનામે વધુ સૂચનાઓ સાથે ઇમેઇલ મોકલવામાં આવશે.", - // "forgot-email.form.submit": "Reset password", "forgot-email.form.submit": "પાસવર્ડ રીસેટ કરો", - // "forgot-email.form.success.head": "Password reset email sent", "forgot-email.form.success.head": "પાસવર્ડ રીસેટ ઇમેઇલ મોકલ્યો", - // "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "forgot-email.form.success.content": "{{ email }} પર ઇમેઇલ મોકલવામાં આવ્યો છે જેમાં વિશેષ URL અને વધુ સૂચનાઓ શામેલ છે.", - // "forgot-email.form.error.head": "Error when trying to reset password", "forgot-email.form.error.head": "પાસવર્ડ રીસેટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - // "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", - // TODO New key - Add a translation - "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + "forgot-email.form.error.content": "નીચેના ઇમેઇલ સરનામા સાથેના ખાતા માટે પાસવર્ડ રીસેટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી: {{ email }}", - // "forgot-password.title": "Forgot Password", "forgot-password.title": "પાસવર્ડ ભૂલી ગયા", - // "forgot-password.form.head": "Forgot Password", "forgot-password.form.head": "પાસવર્ડ ભૂલી ગયા", - // "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box.", "forgot-password.form.info": "નીચેના બોક્સમાં નવો પાસવર્ડ દાખલ કરો, અને તેને બીજી બોક્સમાં ફરીથી ટાઇપ કરીને તેની પુષ્ટિ કરો.", - // "forgot-password.form.card.security": "Security", "forgot-password.form.card.security": "સુરક્ષા", - // "forgot-password.form.identification.header": "Identify", "forgot-password.form.identification.header": "ઓળખો", - // "forgot-password.form.identification.email": "Email address: ", - // TODO New key - Add a translation - "forgot-password.form.identification.email": "Email address: ", + "forgot-password.form.identification.email": "ઇમેઇલ સરનામું: ", - // "forgot-password.form.label.password": "Password", "forgot-password.form.label.password": "પાસવર્ડ", - // "forgot-password.form.label.passwordrepeat": "Retype to confirm", "forgot-password.form.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી ટાઇપ કરો", - // "forgot-password.form.error.empty-password": "Please enter a password in the boxes above.", "forgot-password.form.error.empty-password": "કૃપા કરીને ઉપરના બોક્સમાં પાસવર્ડ દાખલ કરો.", - // "forgot-password.form.error.matching-passwords": "The passwords do not match.", "forgot-password.form.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", - // "forgot-password.form.notification.error.title": "Error when trying to submit new password", "forgot-password.form.notification.error.title": "નવો પાસવર્ડ સબમિટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - // "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.", "forgot-password.form.notification.success.content": "પાસવર્ડ રીસેટ સફળતાપૂર્વક પૂર્ણ થયું. તમે બનાવેલ વપરાશકર્તા તરીકે લૉગ ઇન થયા છો.", - // "forgot-password.form.notification.success.title": "Password reset completed", "forgot-password.form.notification.success.title": "પાસવર્ડ રીસેટ પૂર્ણ", - // "forgot-password.form.submit": "Submit password", "forgot-password.form.submit": "પાસવર્ડ સબમિટ કરો", - // "form.add": "Add more", "form.add": "વધુ ઉમેરો", - // "form.add-help": "Click here to add the current entry and to add another one", "form.add-help": "વર્તમાન એન્ટ્રી ઉમેરવા અને વધુ એક ઉમેરવા માટે અહીં ક્લિક કરો", - // "form.cancel": "Cancel", "form.cancel": "રદ કરો", - // "form.clear": "Clear", "form.clear": "સાફ કરો", - // "form.clear-help": "Click here to remove the selected value", "form.clear-help": "પસંદ કરેલ મૂલ્ય દૂર કરવા માટે અહીં ક્લિક કરો", - // "form.discard": "Discard", "form.discard": "રદ કરો", - // "form.drag": "Drag", "form.drag": "ડ્રેગ કરો", - // "form.edit": "Edit", "form.edit": "સંપાદિત કરો", - // "form.edit-help": "Click here to edit the selected value", "form.edit-help": "પસંદ કરેલ મૂલ્ય સંપાદિત કરવા માટે અહીં ક્લિક કરો", - // "form.first-name": "First name", "form.first-name": "પ્રથમ નામ", - // "form.group-collapse": "Collapse", "form.group-collapse": "સંકોચો", - // "form.group-collapse-help": "Click here to collapse", "form.group-collapse-help": "સંકોચવા માટે અહીં ક્લિક કરો", - // "form.group-expand": "Expand", "form.group-expand": "વિસ્તારો", - // "form.group-expand-help": "Click here to expand and add more elements", "form.group-expand-help": "વિસ્તારવા અને વધુ તત્વો ઉમેરવા માટે અહીં ક્લિક કરો", - // "form.last-name": "Last name", "form.last-name": "છેલ્લું નામ", - // "form.loading": "Loading...", "form.loading": "લોડ કરી રહ્યું છે...", - // "form.lookup": "Lookup", "form.lookup": "લુકઅપ", - // "form.lookup-help": "Click here to look up an existing relation", "form.lookup-help": "અસ્તિત્વમાં રહેલા સંબંધ માટે અહીં ક્લિક કરો", - // "form.no-results": "No results found", "form.no-results": "કોઈ પરિણામો મળ્યા નથી", - // "form.no-value": "No value entered", "form.no-value": "કોઈ મૂલ્ય દાખલ કરેલ નથી", - // "form.other-information.email": "Email", "form.other-information.email": "ઇમેઇલ", - // "form.other-information.first-name": "First Name", "form.other-information.first-name": "પ્રથમ નામ", - // "form.other-information.insolr": "In Solr Index", "form.other-information.insolr": "સોલર ઇન્ડેક્સમાં", - // "form.other-information.institution": "Institution", "form.other-information.institution": "સંસ્થા", - // "form.other-information.last-name": "Last Name", "form.other-information.last-name": "છેલ્લું નામ", - // "form.other-information.orcid": "ORCID", "form.other-information.orcid": "ORCID", - // "form.remove": "Remove", "form.remove": "દૂર કરો", - // "form.save": "Save", "form.save": "સાચવો", - // "form.save-help": "Save changes", "form.save-help": "ફેરફારો સાચવો", - // "form.search": "Search", "form.search": "શોધો", - // "form.search-help": "Click here to look for an existing correspondence", "form.search-help": "અસ્તિત્વમાં રહેલા પત્રવ્યવહાર માટે અહીં ક્લિક કરો", - // "form.submit": "Save", "form.submit": "સાચવો", - // "form.create": "Create", "form.create": "બનાવો", - // "form.number-picker.decrement": "Decrement {{field}}", "form.number-picker.decrement": "{{field}} ઘટાડો", - // "form.number-picker.increment": "Increment {{field}}", "form.number-picker.increment": "{{field}} વધારો", - // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "આઇટમને નવી સ્થિતિમાં ડ્રોપ કરો", - // "grant-deny-request-copy.deny": "Deny access request", "grant-deny-request-copy.deny": "ઍક્સેસ વિનંતી નકારી", - // "grant-deny-request-copy.revoke": "Revoke access", "grant-deny-request-copy.revoke": "ઍક્સેસ રદ કરો", - // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "પાછા", - // "grant-deny-request-copy.email.message": "Optional additional message", "grant-deny-request-copy.email.message": "વૈકલ્પિક વધારાનો સંદેશ", - // "grant-deny-request-copy.email.message.empty": "Please enter a message", "grant-deny-request-copy.email.message.empty": "કૃપા કરીને સંદેશ દાખલ કરો", - // "grant-deny-request-copy.email.permissions.info": "You may use this occasion to reconsider the access restrictions on the document, to avoid having to respond to these requests. If you’d like to ask the repository administrators to remove these restrictions, please check the box below.", "grant-deny-request-copy.email.permissions.info": "આ દસ્તાવેજ પર ઍક્સેસ પ્રતિબંધો દૂર કરવા માટે રિપોઝિટરી વહીવટકર્તાઓને પૂછવા માટે તમે આ પ્રસંગનો ઉપયોગ કરી શકો છો, જેથી આ વિનંતીઓને જવાબ આપવાની જરૂર ન પડે. જો તમે આ પ્રતિબંધો દૂર કરવા માટે રિપોઝિટરી વહીવટકર્તાઓને પૂછવા માંગતા હો, તો કૃપા કરીને નીચેના બોક્સને ચેક કરો.", - // "grant-deny-request-copy.email.permissions.label": "Change to open access", "grant-deny-request-copy.email.permissions.label": "ઓપન ઍક્સેસમાં બદલો", - // "grant-deny-request-copy.email.send": "Send", "grant-deny-request-copy.email.send": "મોકલો", - // "grant-deny-request-copy.email.subject": "Subject", "grant-deny-request-copy.email.subject": "વિષય", - // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "કૃપા કરીને વિષય દાખલ કરો", - // "grant-deny-request-copy.grant": "Grant access request", "grant-deny-request-copy.grant": "ઍક્સેસ વિનંતી મંજુર કરો", - // "grant-deny-request-copy.header": "Document copy request", "grant-deny-request-copy.header": "દસ્તાવેજ નકલ વિનંતી", - // "grant-deny-request-copy.home-page": "Take me to the home page", "grant-deny-request-copy.home-page": "મને હોમ પેજ પર લઈ જાઓ", - // "grant-deny-request-copy.intro1": "If you are one of the authors of the document {{ name }}, then please use one of the options below to respond to the user's request.", "grant-deny-request-copy.intro1": "જો તમે દસ્તાવેજના લેખકોમાંના એક છો {{ name }}, તો કૃપા કરીને વપરાશકર્તાની વિનંતીનો જવાબ આપવા માટે નીચેના વિકલ્પોનો ઉપયોગ કરો.", - // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "વિકલ્પ પસંદ કર્યા પછી, તમને સૂચિત ઇમેઇલ જવાબ રજૂ કરવામાં આવશે જે તમે સંપાદિત કરી શકો છો.", - // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", "grant-deny-request-copy.previous-decision": "આ વિનંતી અગાઉ સુરક્ષિત ઍક્સેસ ટોકન સાથે મંજુર કરવામાં આવી હતી. તમે આ ઍક્સેસને રદ કરી શકો છો જેથી ઍક્સેસ ટોકન તરત જ અમાન્ય થઈ જાય", - // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "આ વિનંતી પહેલેથી જ પ્રક્રિયા કરવામાં આવી છે. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", - // "grant-request-copy.email.subject": "Request copy of document", "grant-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", - // "grant-request-copy.error": "An error occurred", "grant-request-copy.error": "ભૂલ આવી", - // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "દસ્તાવેજ નકલ વિનંતી મંજુર કરો", - // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", "grant-request-copy.intro.attachment": "વિનંતી કરનારને સંદેશ મોકલવામાં આવશે. વિનંતી કરેલ દસ્તાવેજ(ઓ) જોડવામાં આવશે.", - // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", "grant-request-copy.intro.link": "વિનંતી કરનારને સંદેશ મોકલવામાં આવશે. વિનંતી કરેલ દસ્તાવેજ(ઓ)ને ઍક્સેસ પ્રદાન કરતી સુરક્ષિત લિંક જોડવામાં આવશે. લિંક નીચેના \\\"ઍક્સેસ પિરિયડ\\\" મેનુમાં પસંદ કરેલ સમયગાળા માટે ઍક્સેસ પ્રદાન કરશે.", - // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", - // TODO New key - Add a translation - "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + "grant-request-copy.intro.link.preview": "નીચે વિનંતી કરનારને મોકલવામાં આવનાર લિંકનું પૂર્વાવલોકન છે:", - // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "વિનંતી કરેલ આઇટમ સફળતાપૂર્વક મંજુર કર્યું", - // "grant-request-copy.access-period.header": "Access period", "grant-request-copy.access-period.header": "ઍક્સેસ પિરિયડ", - // "grant-request-copy.access-period.+1DAY": "1 day", "grant-request-copy.access-period.+1DAY": "1 દિવસ", - // "grant-request-copy.access-period.+7DAYS": "1 week", "grant-request-copy.access-period.+7DAYS": "1 અઠવાડિયું", - // "grant-request-copy.access-period.+1MONTH": "1 month", "grant-request-copy.access-period.+1MONTH": "1 મહિનો", - // "grant-request-copy.access-period.+3MONTHS": "3 months", "grant-request-copy.access-period.+3MONTHS": "3 મહિના", - // "grant-request-copy.access-period.FOREVER": "Forever", "grant-request-copy.access-period.FOREVER": "કાયમ માટે", - // "health.breadcrumbs": "Health", "health.breadcrumbs": "હેલ્થ", - // "health-page.heading": "Health", "health-page.heading": "હેલ્થ", - // "health-page.info-tab": "Info", "health-page.info-tab": "માહિતી", - // "health-page.status-tab": "Status", "health-page.status-tab": "સ્થિતિ", - // "health-page.error.msg": "The health check service is temporarily unavailable", "health-page.error.msg": "હેલ્થ ચેક સેવા તાત્કાલિક ઉપલબ્ધ નથી", - // "health-page.property.status": "Status code", "health-page.property.status": "સ્થિતિ કોડ", - // "health-page.section.db.title": "Database", "health-page.section.db.title": "ડેટાબેઝ", - // "health-page.section.geoIp.title": "GeoIp", "health-page.section.geoIp.title": "GeoIp", - // "health-page.section.solrAuthorityCore.title": "Solr: authority core", - // TODO New key - Add a translation - "health-page.section.solrAuthorityCore.title": "Solr: authority core", + "health-page.section.solrAuthorityCore.title": "સોલર: ઓથોરિટી કોર", - // "health-page.section.solrOaiCore.title": "Solr: oai core", - // TODO New key - Add a translation - "health-page.section.solrOaiCore.title": "Solr: oai core", + "health-page.section.solrOaiCore.title": "સોલર: oai કોર", - // "health-page.section.solrSearchCore.title": "Solr: search core", - // TODO New key - Add a translation - "health-page.section.solrSearchCore.title": "Solr: search core", + "health-page.section.solrSearchCore.title": "સોલર: શોધ કોર", - // "health-page.section.solrStatisticsCore.title": "Solr: statistics core", - // TODO New key - Add a translation - "health-page.section.solrStatisticsCore.title": "Solr: statistics core", + "health-page.section.solrStatisticsCore.title": "સોલર: આંકડા કોર", - // "health-page.section-info.app.title": "Application Backend", "health-page.section-info.app.title": "એપ્લિકેશન બેકએન્ડ", - // "health-page.section-info.java.title": "Java", "health-page.section-info.java.title": "જાવા", - // "health-page.status": "Status", "health-page.status": "સ્થિતિ", - // "health-page.status.ok.info": "Operational", "health-page.status.ok.info": "સંચાલન", - // "health-page.status.error.info": "Problems detected", "health-page.status.error.info": "સમસ્યાઓ શોધવામાં આવી", - // "health-page.status.warning.info": "Possible issues detected", "health-page.status.warning.info": "શક્ય સમસ્યાઓ શોધવામાં આવી", - // "health-page.title": "Health", "health-page.title": "હેલ્થ", - // "health-page.section.no-issues": "No issues detected", "health-page.section.no-issues": "કોઈ સમસ્યાઓ શોધવામાં આવી નથી", - // "home.description": "", "home.description": "", - // "home.breadcrumbs": "Home", "home.breadcrumbs": "હોમ", - // "home.search-form.placeholder": "Search the repository ...", "home.search-form.placeholder": "રિપોઝિટરી શોધો ...", - // "home.title": "Home", "home.title": "હોમ", - // "home.top-level-communities.head": "Communities in DSpace", "home.top-level-communities.head": "DSpace માં સમુદાયો", - // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "તેના સંગ્રહોને બ્રાઉઝ કરવા માટે સમુદાય પસંદ કરો.", - // "info.accessibility-settings.breadcrumbs": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.breadcrumbs": "Accessibility settings", - - // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - // TODO New key - Add a translation - "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - - // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - - // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - - // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - - // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - // TODO New key - Add a translation - "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - - // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - - // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - - // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - - // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - - // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - - // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - - // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - - // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - - // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - - // "info.accessibility-settings.reset-notification": "Successfully reset settings.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-notification": "Successfully reset settings.", - - // "info.accessibility-settings.reset": "Reset accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.reset": "Reset accessibility settings", - - // "info.accessibility-settings.submit": "Save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.submit": "Save accessibility settings", - - // "info.accessibility-settings.title": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.title": "Accessibility settings", - - // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "મેં અંતિમ વપરાશકર્તા કરાર વાંચ્યો છે અને હું તેને સહમત છું", - // "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement", "info.end-user-agreement.accept.error": "અંતિમ વપરાશકર્તા કરાર સ્વીકારતી વખતે ભૂલ આવી", - // "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement", "info.end-user-agreement.accept.success": "અંતિમ વપરાશકર્તા કરાર સફળતાપૂર્વક અપડેટ કર્યો", - // "info.end-user-agreement.breadcrumbs": "End User Agreement", "info.end-user-agreement.breadcrumbs": "અંતિમ વપરાશકર્તા કરાર", - // "info.end-user-agreement.buttons.cancel": "Cancel", "info.end-user-agreement.buttons.cancel": "રદ કરો", - // "info.end-user-agreement.buttons.save": "Save", "info.end-user-agreement.buttons.save": "સાચવો", - // "info.end-user-agreement.head": "End User Agreement", "info.end-user-agreement.head": "અંતિમ વપરાશકર્તા કરાર", - // "info.end-user-agreement.title": "End User Agreement", "info.end-user-agreement.title": "અંતિમ વપરાશકર્તા કરાર", - // "info.end-user-agreement.hosting-country": "the United States", "info.end-user-agreement.hosting-country": "યુનાઇટેડ સ્ટેટ્સ", - // "info.privacy.breadcrumbs": "Privacy Statement", "info.privacy.breadcrumbs": "ગોપનીયતા નિવેદન", - // "info.privacy.head": "Privacy Statement", "info.privacy.head": "ગોપનીયતા નિવેદન", - // "info.privacy.title": "Privacy Statement", "info.privacy.title": "ગોપનીયતા નિવેદન", - // "info.feedback.breadcrumbs": "Feedback", "info.feedback.breadcrumbs": "પ્રતિસાદ", - // "info.feedback.head": "Feedback", "info.feedback.head": "પ્રતિસાદ", - // "info.feedback.title": "Feedback", "info.feedback.title": "પ્રતિસાદ", - // "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!", "info.feedback.info": "DSpace સિસ્ટમ વિશે તમારો પ્રતિસાદ શેર કરવા બદલ આભાર. તમારી ટિપ્પણીઓની પ્રશંસા કરવામાં આવે છે!", - // "info.feedback.email_help": "This address will be used to follow up on your feedback.", "info.feedback.email_help": "આ સરનામું તમારા પ્રતિસાદ પર અનુસરણ કરવા માટે વપરાશે.", - // "info.feedback.send": "Send Feedback", "info.feedback.send": "પ્રતિસાદ મોકલો", - // "info.feedback.comments": "Comments", "info.feedback.comments": "ટિપ્પણીઓ", - // "info.feedback.email-label": "Your Email", "info.feedback.email-label": "તમારું ઇમેઇલ", - // "info.feedback.create.success": "Feedback Sent Successfully!", "info.feedback.create.success": "પ્રતિસાદ સફળતાપૂર્વક મોકલ્યો!", - // "info.feedback.error.email.required": "A valid email address is required", "info.feedback.error.email.required": "માન્ય ઇમેઇલ સરનામું જરૂરી છે", - // "info.feedback.error.message.required": "A comment is required", "info.feedback.error.message.required": "ટિપ્પણી જરૂરી છે", - // "info.feedback.page-label": "Page", "info.feedback.page-label": "પૃષ્ઠ", - // "info.feedback.page_help": "The page related to your feedback", "info.feedback.page_help": "તમારા પ્રતિસાદ સાથે સંબંધિત પૃષ્ઠ", - // "info.coar-notify-support.title": "COAR Notify Support", "info.coar-notify-support.title": "COAR Notify Support", - // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "COAR Notify Support", - // "item.alerts.private": "This item is non-discoverable", "item.alerts.private": "આ આઇટમ નોન-ડિસ્કવરેબલ છે", - // "item.alerts.withdrawn": "This item has been withdrawn", "item.alerts.withdrawn": "આ આઇટમ પાછું ખેંચી લેવામાં આવ્યું છે", - // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "ફરી સ્થાપિત કરવાની વિનંતી કરો", - // "quality-assurance.event.table.person-who-requested": "Requested by", "quality-assurance.event.table.person-who-requested": "વિનંતી કરનાર", - // "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", - // TODO New key - Add a translation - "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + "item.edit.authorizations.heading": "આ સંપાદક સાથે તમે આઇટમની પોલિસી જોઈ અને બદલાવી શકો છો, તેમજ વ્યક્તિગત આઇટમ ઘટકોની પોલિસી બદલી શકો છો: બંડલ્સ અને બિટસ્ટ્રીમ્સ. ટૂંકમાં, આઇટમ બંડલ્સનો કન્ટેનર છે, અને બંડલ્સ બિટસ્ટ્રીમ્સના કન્ટેનર છે. કન્ટેનર્સમાં સામાન્ય રીતે ADD/REMOVE/READ/WRITE પોલિસી હોય છે, જ્યારે બિટસ્ટ્રીમ્સમાં માત્ર READ/WRITE પોલિસી હોય છે.", - // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "આઇટમની પોલિસી સંપાદિત કરો", - // "item.badge.status": "Item status:", - // TODO New key - Add a translation - "item.badge.status": "Item status:", - - // "item.badge.private": "Non-discoverable", "item.badge.private": "નોન-ડિસ્કવરેબલ", - // "item.badge.withdrawn": "Withdrawn", "item.badge.withdrawn": "પાછું ખેંચી લેવામાં આવ્યું", - // "item.bitstreams.upload.bundle": "Bundle", "item.bitstreams.upload.bundle": "બંડલ", - // "item.bitstreams.upload.bundle.placeholder": "Select a bundle or input new bundle name", "item.bitstreams.upload.bundle.placeholder": "બંડલ પસંદ કરો અથવા નવું બંડલ નામ દાખલ કરો", - // "item.bitstreams.upload.bundle.new": "Create bundle", "item.bitstreams.upload.bundle.new": "બંડલ બનાવો", - // "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.", "item.bitstreams.upload.bundles.empty": "આ આઇટમમાં અપલોડ કરવા માટે કોઈ બંડલ્સ નથી.", - // "item.bitstreams.upload.cancel": "Cancel", "item.bitstreams.upload.cancel": "રદ કરો", - // "item.bitstreams.upload.drop-message": "Drop a file to upload", "item.bitstreams.upload.drop-message": "અપલોડ કરવા માટે ફાઇલ ડ્રોપ કરો", - // "item.bitstreams.upload.item": "Item: ", - // TODO New key - Add a translation - "item.bitstreams.upload.item": "Item: ", + "item.bitstreams.upload.item": "આઇટમ: ", - // "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.", "item.bitstreams.upload.notifications.bundle.created.content": "નવું બંડલ સફળતાપૂર્વક બનાવવામાં આવ્યું.", - // "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle", "item.bitstreams.upload.notifications.bundle.created.title": "બંડલ બનાવ્યું", - // "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.", "item.bitstreams.upload.notifications.upload.failed": "અપલોડ નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", - // "item.bitstreams.upload.title": "Upload bitstream", "item.bitstreams.upload.title": "બિટસ્ટ્રીમ અપલોડ કરો", - // "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload", "item.edit.bitstreams.bundle.edit.buttons.upload": "અપલોડ કરો", - // "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.", "item.edit.bitstreams.bundle.displaying": "હાલમાં {{ amount }} બિટસ્ટ્રીમ્સ {{ total }} માંથી બતાવી રહ્યા છે.", - // "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})", "item.edit.bitstreams.bundle.load.all": "બધા લોડ કરો ({{ total }})", - // "item.edit.bitstreams.bundle.load.more": "Load more", "item.edit.bitstreams.bundle.load.more": "વધુ લોડ કરો", - // "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", - // TODO New key - Add a translation - "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + "item.edit.bitstreams.bundle.name": "બંડલ: {{ name }}", - // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle", "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} બંડલમાં બિટસ્ટ્રીમ્સ", - // "item.edit.bitstreams.bundle.tooltip": "You can move a bitstream to a different page by dropping it on the page number.", "item.edit.bitstreams.bundle.tooltip": "તમે બિટસ્ટ્રીમને પૃષ્ઠ નંબર પર ડ્રોપ કરીને તેને અલગ પૃષ્ઠ પર ખસેડી શકો છો.", - // "item.edit.bitstreams.discard-button": "Discard", "item.edit.bitstreams.discard-button": "રદ કરો", - // "item.edit.bitstreams.edit.buttons.download": "Download", "item.edit.bitstreams.edit.buttons.download": "ડાઉનલોડ કરો", - // "item.edit.bitstreams.edit.buttons.drag": "Drag", "item.edit.bitstreams.edit.buttons.drag": "ડ્રેગ કરો", - // "item.edit.bitstreams.edit.buttons.edit": "Edit", "item.edit.bitstreams.edit.buttons.edit": "સંપાદિત કરો", - // "item.edit.bitstreams.edit.buttons.remove": "Remove", "item.edit.bitstreams.edit.buttons.remove": "દૂર કરો", - // "item.edit.bitstreams.edit.buttons.undo": "Undo changes", "item.edit.bitstreams.edit.buttons.undo": "ફેરફારો રદ કરો", - // "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} was returned to position {{ toIndex }} and is no longer selected.", "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} ને સ્થિતિ {{ toIndex }} પર પાછું લાવવામાં આવ્યું છે અને હવે પસંદ કરેલ નથી.", - // "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} is no longer selected.", "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} હવે પસંદ કરેલ નથી.", - // "item.edit.bitstreams.edit.live.loading": "Waiting for move to complete.", "item.edit.bitstreams.edit.live.loading": "ખસેડવાનું પૂર્ણ થવાની રાહ જોઈ રહ્યા છે.", - // "item.edit.bitstreams.edit.live.select": "{{ bitstream }} is selected.", "item.edit.bitstreams.edit.live.select": "{{ bitstream }} પસંદ કરેલ છે.", - // "item.edit.bitstreams.edit.live.move": "{{ bitstream }} is now in position {{ toIndex }}.", "item.edit.bitstreams.edit.live.move": "{{ bitstream }} હવે સ્થિતિ {{ toIndex }} માં છે.", - // "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.", "item.edit.bitstreams.empty": "આ આઇટમમાં કોઈ બિટસ્ટ્રીમ્સ નથી. એક બનાવવા માટે અપલોડ બટન પર ક્લિક કરો.", - // "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", - // TODO New key - Add a translation - "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + "item.edit.bitstreams.info-alert": "બિટસ્ટ્રીમ્સને તેમના બંડલ્સમાં ફરીથી ક્રમમાં ગોઠવવા માટે ડ્રેગ હેન્ડલ પકડીને અને માઉસ ખસેડીને ખસેડી શકાય છે. વૈકલ્પિક રીતે, બિટસ્ટ્રીમ્સને કીબોર્ડનો ઉપયોગ કરીને ખસેડી શકાય છે: બિટસ્ટ્રીમના ડ્રેગ હેન્ડલ પર ફોકસ હોવા પર એન્ટર દબાવીને બિટસ્ટ્રીમ પસંદ કરો. બિટસ્ટ્રીમને ખસેડવા માટે એરો કીઝનો ઉપયોગ કરો. બિટસ્ટ્રીમની વર્તમાન સ્થિતિની પુષ્ટિ કરવા માટે ફરીથી એન્ટર દબાવો.", - // "item.edit.bitstreams.headers.actions": "Actions", "item.edit.bitstreams.headers.actions": "ક્રિયાઓ", - // "item.edit.bitstreams.headers.bundle": "Bundle", "item.edit.bitstreams.headers.bundle": "બંડલ", - // "item.edit.bitstreams.headers.description": "Description", "item.edit.bitstreams.headers.description": "વર્ણન", - // "item.edit.bitstreams.headers.format": "Format", "item.edit.bitstreams.headers.format": "ફોર્મેટ", - // "item.edit.bitstreams.headers.name": "Name", "item.edit.bitstreams.headers.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": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - // "item.edit.bitstreams.notifications.discarded.title": "Changes discarded", "item.edit.bitstreams.notifications.discarded.title": "ફેરફારો રદ", - // "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams", "item.edit.bitstreams.notifications.move.failed.title": "બિટસ્ટ્રીમ્સ ખસેડવામાં ભૂલ", - // "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": "આ આઇટમના બિટસ્ટ્રીમ્સ અને બંડલ્સ માટેના તમારા ખસેડવાના ફેરફારો સાચવવામાં આવ્યા.", - // "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved", "item.edit.bitstreams.notifications.move.saved.title": "ખસેડવાના ફેરફારો સાચવ્યા", - // "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": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", - // "item.edit.bitstreams.notifications.outdated.title": "Changes outdated", "item.edit.bitstreams.notifications.outdated.title": "ફેરફારો જૂના છે", - // "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream", "item.edit.bitstreams.notifications.remove.failed.title": "બિટસ્ટ્રીમ કાઢી નાખવામાં ભૂલ", - // "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": "આ આઇટમના બિટસ્ટ્રીમ્સ માટેના તમારા દૂર કરવાના ફેરફારો સાચવવામાં આવ્યા.", - // "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved", "item.edit.bitstreams.notifications.remove.saved.title": "દૂર કરવાના ફેરફારો સાચવ્યા", - // "item.edit.bitstreams.reinstate-button": "Undo", "item.edit.bitstreams.reinstate-button": "Undo", - // "item.edit.bitstreams.save-button": "Save", "item.edit.bitstreams.save-button": "સાચવો", - // "item.edit.bitstreams.upload-button": "Upload", "item.edit.bitstreams.upload-button": "અપલોડ કરો", - // "item.edit.bitstreams.load-more.link": "Load more", "item.edit.bitstreams.load-more.link": "વધુ લોડ કરો", - // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "રદ કરો", - // "item.edit.delete.confirm": "Delete", "item.edit.delete.confirm": "કાઢી નાખો", - // "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", - // TODO New key - Add a translation - "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + "item.edit.delete.description": "શું તમે ખરેખર આ આઇટમને સંપૂર્ણપણે કાઢી નાખવા માંગો છો? સાવચેત: હાલમાં, કોઈ ટોમ્બસ્ટોન બાકી રહેશે નહીં.", - // "item.edit.delete.error": "An error occurred while deleting the item", "item.edit.delete.error": "આઇટમ કાઢી નાખતી વખતે ભૂલ આવી", - // "item.edit.delete.header": "Delete item: {{ id }}", - // TODO New key - Add a translation - "item.edit.delete.header": "Delete item: {{ id }}", + "item.edit.delete.header": "આઇટમ કાઢી નાખો: {{ id }}", - // "item.edit.delete.success": "The item has been deleted", "item.edit.delete.success": "આઇટમ કાઢી નાખવામાં આવ્યું છે", - // "item.edit.head": "Edit Item", "item.edit.head": "આઇટમ સંપાદિત કરો", - // "item.edit.breadcrumbs": "Edit Item", "item.edit.breadcrumbs": "આઇટમ સંપાદિત કરો", - // "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab", "item.edit.tabs.disabled.tooltip": "તમે આ ટેબ ઍક્સેસ કરવા માટે અધિકૃત નથી", - // "item.edit.tabs.mapper.head": "Collection Mapper", "item.edit.tabs.mapper.head": "સંગ્રહ મેપર", - // "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper", "item.edit.tabs.item-mapper.title": "આઇટમ સંપાદન - સંગ્રહ મેપર", - // "item.edit.identifiers.doi.status.UNKNOWN": "Unknown", "item.edit.identifiers.doi.status.UNKNOWN": "અજ્ઞાત", - // "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "Queued for registration", "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "નોંધણી માટે કતારમાં", - // "item.edit.identifiers.doi.status.TO_BE_RESERVED": "Queued for reservation", "item.edit.identifiers.doi.status.TO_BE_RESERVED": "રિઝર્વેશન માટે કતારમાં", - // "item.edit.identifiers.doi.status.IS_REGISTERED": "Registered", "item.edit.identifiers.doi.status.IS_REGISTERED": "નોંધાયેલ", - // "item.edit.identifiers.doi.status.IS_RESERVED": "Reserved", "item.edit.identifiers.doi.status.IS_RESERVED": "રિઝર્વેશન", - // "item.edit.identifiers.doi.status.UPDATE_RESERVED": "Reserved (update queued)", "item.edit.identifiers.doi.status.UPDATE_RESERVED": "રિઝર્વેશન (અપડેટ કતારમાં)", - // "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Registered (update queued)", "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "નોંધાયેલ (અપડેટ કતારમાં)", - // "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "Queued for update and registration", "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "અપડેટ અને નોંધણી માટે કતારમાં", - // "item.edit.identifiers.doi.status.TO_BE_DELETED": "Queued for deletion", "item.edit.identifiers.doi.status.TO_BE_DELETED": "કાઢી નાખવા માટે કતારમાં", - // "item.edit.identifiers.doi.status.DELETED": "Deleted", "item.edit.identifiers.doi.status.DELETED": "કાઢી નાખ્યું", - // "item.edit.identifiers.doi.status.PENDING": "Pending (not registered)", "item.edit.identifiers.doi.status.PENDING": "બાકી (નોંધાયેલ નથી)", - // "item.edit.identifiers.doi.status.MINTED": "Minted (not registered)", "item.edit.identifiers.doi.status.MINTED": "મિન્ટેડ (નોંધાયેલ નથી)", - // "item.edit.tabs.status.buttons.register-doi.label": "Register a new or pending DOI", "item.edit.tabs.status.buttons.register-doi.label": "નવું અથવા બાકી DOI નોંધણી કરો", - // "item.edit.tabs.status.buttons.register-doi.button": "Register DOI...", "item.edit.tabs.status.buttons.register-doi.button": "DOI નોંધણી કરો...", - // "item.edit.register-doi.header": "Register a new or pending DOI", "item.edit.register-doi.header": "નવું અથવા બાકી DOI નોંધણી કરો", - // "item.edit.register-doi.description": "Review any pending identifiers and item metadata below and click Confirm to proceed with DOI registration, or Cancel to back out", "item.edit.register-doi.description": "કોઈ બાકી ઓળખકર્તાઓ અને આઇટમ મેટાડેટાની નીચે સમીક્ષા કરો અને DOI નોંધણી સાથે આગળ વધવા માટે પુષ્ટિ પર ક્લિક કરો, અથવા રદ કરવા માટે પાછા જાઓ", - // "item.edit.register-doi.confirm": "Confirm", "item.edit.register-doi.confirm": "પુષ્ટિ કરો", - // "item.edit.register-doi.cancel": "Cancel", "item.edit.register-doi.cancel": "રદ કરો", - // "item.edit.register-doi.success": "DOI queued for registration successfully.", "item.edit.register-doi.success": "DOI નોંધણી માટે કતારમાં સફળતાપૂર્વક મૂક્યું.", - // "item.edit.register-doi.error": "Error registering DOI", "item.edit.register-doi.error": "DOI નોંધણીમાં ભૂલ", - // "item.edit.register-doi.to-update": "The following DOI has already been minted and will be queued for registration online", "item.edit.register-doi.to-update": "નીચે આપેલ DOI પહેલેથી જ મિન્ટેડ છે અને ઓનલાઈન નોંધણી માટે કતારમાં મૂકવામાં આવશે", - // "item.edit.item-mapper.buttons.add": "Map item to selected collections", "item.edit.item-mapper.buttons.add": "આઇટમને પસંદ કરેલ સંગ્રહોમાં મેપ કરો", - // "item.edit.item-mapper.buttons.remove": "Remove item's mapping for selected collections", "item.edit.item-mapper.buttons.remove": "પસંદ કરેલ સંગ્રહો માટે આઇટમનું મેપિંગ દૂર કરો", - // "item.edit.item-mapper.cancel": "Cancel", "item.edit.item-mapper.cancel": "રદ કરો", - // "item.edit.item-mapper.description": "This is the item mapper tool that allows administrators to map this item to other collections. You can search for collections and map them, or browse the list of collections the item is currently mapped to.", "item.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે વહીવટકર્તાઓને આ આઇટમને અન્ય સંગ્રહોમાં મેપ કરવાની મંજૂરી આપે છે. તમે સંગ્રહો શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા આઇટમ હાલમાં જે સંગ્રહોમાં મેપ કરેલ છે તેની યાદી બ્રાઉઝ કરી શકો છો.", - // "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections", "item.edit.item-mapper.head": "આઇટમ મેપર - આઇટમને સંગ્રહોમાં મેપ કરો", - // "item.edit.item-mapper.item": "Item: \"{{name}}\"", - // TODO New key - Add a translation - "item.edit.item-mapper.item": "Item: \"{{name}}\"", + "item.edit.item-mapper.item": "આઇટમ: \\\"{{name}}\\\"", - // "item.edit.item-mapper.no-search": "Please enter a query to search", "item.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", - // "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": "આઇટમને {{amount}} સંગ્રહોમાં મેપ કરતી વખતે ભૂલો આવી.", - // "item.edit.item-mapper.notifications.add.error.head": "Mapping errors", "item.edit.item-mapper.notifications.add.error.head": "મેપિંગ ભૂલો", - // "item.edit.item-mapper.notifications.add.success.content": "Successfully mapped item to {{amount}} collections.", "item.edit.item-mapper.notifications.add.success.content": "આઇટમને {{amount}} સંગ્રહોમાં સફળતાપૂર્વક મેપ કર્યું.", - // "item.edit.item-mapper.notifications.add.success.head": "Mapping completed", "item.edit.item-mapper.notifications.add.success.head": "મેપિંગ પૂર્ણ", - // "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.error.content": "મેપિંગ {{amount}} સંગ્રહો માટે દૂર કરતી વખતે ભૂલો આવી.", - // "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors", "item.edit.item-mapper.notifications.remove.error.head": "મેપિંગ દૂર કરવાની ભૂલો", - // "item.edit.item-mapper.notifications.remove.success.content": "Successfully removed mapping of item to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.success.content": "આઇટમનું મેપિંગ {{amount}} સંગ્રહો માટે સફળતાપૂર્વક દૂર કર્યું.", - // "item.edit.item-mapper.notifications.remove.success.head": "Removal of mapping completed", "item.edit.item-mapper.notifications.remove.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", - // "item.edit.item-mapper.search-form.placeholder": "Search collections...", "item.edit.item-mapper.search-form.placeholder": "સંગ્રહો શોધો...", - // "item.edit.item-mapper.tabs.browse": "Browse mapped collections", "item.edit.item-mapper.tabs.browse": "મેપ કરેલ સંગ્રહો બ્રાઉઝ કરો", - // "item.edit.item-mapper.tabs.map": "Map new collections", "item.edit.item-mapper.tabs.map": "નવા સંગ્રહો મેપ કરો", - // "item.edit.metadata.add-button": "Add", "item.edit.metadata.add-button": "ઉમેરો", - // "item.edit.metadata.discard-button": "Discard", "item.edit.metadata.discard-button": "રદ કરો", - // "item.edit.metadata.edit.language": "Edit language", "item.edit.metadata.edit.language": "ભાષા સંપાદિત કરો", - // "item.edit.metadata.edit.value": "Edit value", "item.edit.metadata.edit.value": "મૂલ્ય સંપાદિત કરો", - // "item.edit.metadata.edit.authority.key": "Edit authority key", "item.edit.metadata.edit.authority.key": "અધિકૃતતા કી સંપાદિત કરો", - // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", "item.edit.metadata.edit.buttons.enable-free-text-editing": "મફત-ટેક્સ્ટ સંપાદન સક્ષમ કરો", - // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", "item.edit.metadata.edit.buttons.disable-free-text-editing": "મફત-ટેક્સ્ટ સંપાદન અક્ષમ કરો", - // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "પુષ્ટિ કરો", - // "item.edit.metadata.edit.buttons.drag": "Drag to reorder", "item.edit.metadata.edit.buttons.drag": "ફરીથી ક્રમમાં ગોઠવવા માટે ડ્રેગ કરો", - // "item.edit.metadata.edit.buttons.edit": "Edit", "item.edit.metadata.edit.buttons.edit": "સંપાદિત કરો", - // "item.edit.metadata.edit.buttons.remove": "Remove", "item.edit.metadata.edit.buttons.remove": "દૂર કરો", - // "item.edit.metadata.edit.buttons.undo": "Undo changes", "item.edit.metadata.edit.buttons.undo": "ફેરફારો રદ કરો", - // "item.edit.metadata.edit.buttons.unedit": "Stop editing", "item.edit.metadata.edit.buttons.unedit": "સંપાદન બંધ કરો", - // "item.edit.metadata.edit.buttons.virtual": "This is a virtual metadata value, i.e. a value inherited from a related entity. It can’t be modified directly. Add or remove the corresponding relationship in the \"Relationships\" tab", "item.edit.metadata.edit.buttons.virtual": "આ વર્ચ્યુઅલ મેટાડેટા મૂલ્ય છે, એટલે કે સંબંધિત સત્તાથી વારસામાં મળેલું મૂલ્ય. તેને સીધા રીતે બદલી શકાતું નથી. 'સંબંધો' ટેબમાં સંબંધ ઉમેરો અથવા દૂર કરો", - // "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.", "item.edit.metadata.empty": "આ આઇટમમાં હાલમાં કોઈ મેટાડેટા નથી. મેટાડેટા મૂલ્ય ઉમેરવાનું શરૂ કરવા માટે ઉમેરો પર ક્લિક કરો.", - // "item.edit.metadata.headers.edit": "Edit", "item.edit.metadata.headers.edit": "સંપાદિત કરો", - // "item.edit.metadata.headers.field": "Field", "item.edit.metadata.headers.field": "ફીલ્ડ", - // "item.edit.metadata.headers.language": "Lang", "item.edit.metadata.headers.language": "ભાષા", - // "item.edit.metadata.headers.value": "Value", "item.edit.metadata.headers.value": "મૂલ્ય", - // "item.edit.metadata.metadatafield": "Edit field", "item.edit.metadata.metadatafield": "ફીલ્ડ સંપાદિત કરો", - // "item.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "item.edit.metadata.metadatafield.error": "મેટાડેટા ફીલ્ડ માન્ય કરતી વખતે ભૂલ આવી", - // "item.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "item.edit.metadata.metadatafield.invalid": "કૃપા કરીને માન્ય મેટાડેટા ફીલ્ડ પસંદ કરો", - // "item.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.metadata.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - // "item.edit.metadata.notifications.discarded.title": "Changes discarded", "item.edit.metadata.notifications.discarded.title": "ફેરફારો રદ", - // "item.edit.metadata.notifications.error.title": "An error occurred", "item.edit.metadata.notifications.error.title": "ભૂલ આવી", - // "item.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "item.edit.metadata.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", - // "item.edit.metadata.notifications.invalid.title": "Metadata invalid", "item.edit.metadata.notifications.invalid.title": "મેટાડેટા અમાન્ય", - // "item.edit.metadata.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.metadata.notifications.outdated.content": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", - // "item.edit.metadata.notifications.outdated.title": "Changes outdated", "item.edit.metadata.notifications.outdated.title": "ફેરફારો જૂના છે", - // "item.edit.metadata.notifications.saved.content": "Your changes to this item's metadata were saved.", "item.edit.metadata.notifications.saved.content": "આ આઇટમના મેટાડેટા માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", - // "item.edit.metadata.notifications.saved.title": "Metadata saved", "item.edit.metadata.notifications.saved.title": "મેટાડેટા સાચવ્યા", - // "item.edit.metadata.reinstate-button": "Undo", "item.edit.metadata.reinstate-button": "Undo", - // "item.edit.metadata.reset-order-button": "Undo reorder", "item.edit.metadata.reset-order-button": "ફરીથી ક્રમમાં ગોઠવવું Undo", - // "item.edit.metadata.save-button": "Save", "item.edit.metadata.save-button": "સાચવો", - // "item.edit.metadata.authority.label": "Authority: ", - // TODO New key - Add a translation - "item.edit.metadata.authority.label": "Authority: ", + "item.edit.metadata.authority.label": "અધિકૃતતા: ", - // "item.edit.metadata.edit.buttons.open-authority-edition": "Unlock the authority key value for manual editing", "item.edit.metadata.edit.buttons.open-authority-edition": "મેન્યુઅલ સંપાદન માટે અધિકૃતતા કી મૂલ્યને અનલૉક કરો", - // "item.edit.metadata.edit.buttons.close-authority-edition": "Lock the authority key value for manual editing", "item.edit.metadata.edit.buttons.close-authority-edition": "મેન્યુઅલ સંપાદન માટે અધિકૃતતા કી મૂલ્યને લૉક કરો", - // "item.edit.modify.overview.field": "Field", "item.edit.modify.overview.field": "ફીલ્ડ", - // "item.edit.modify.overview.language": "Language", "item.edit.modify.overview.language": "ભાષા", - // "item.edit.modify.overview.value": "Value", "item.edit.modify.overview.value": "મૂલ્ય", - // "item.edit.move.cancel": "Back", "item.edit.move.cancel": "પાછા", - // "item.edit.move.save-button": "Save", "item.edit.move.save-button": "સાચવો", - // "item.edit.move.discard-button": "Discard", "item.edit.move.discard-button": "રદ કરો", - // "item.edit.move.description": "Select the collection you wish to move this item to. To narrow down the list of displayed collections, you can enter a search query in the box.", "item.edit.move.description": "આઇટમ ખસેડવા માટે તમે જે સંગ્રહમાં ખસેડવા માંગો છો તે પસંદ કરો. બતાવેલ સંગ્રહોની યાદી સંકોચવા માટે, તમે બોક્સમાં શોધ ક્વેરી દાખલ કરી શકો છો.", - // "item.edit.move.error": "An error occurred when attempting to move the item", "item.edit.move.error": "આઇટમ ખસેડવાનો પ્રયાસ કરતી વખતે ભૂલ આવી", - // "item.edit.move.head": "Move item: {{id}}", - // TODO New key - Add a translation - "item.edit.move.head": "Move item: {{id}}", + "item.edit.move.head": "આઇટમ ખસેડો: {{id}}", - // "item.edit.move.inheritpolicies.checkbox": "Inherit policies", "item.edit.move.inheritpolicies.checkbox": "પોલિસી વારસામાં મેળવો", - // "item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection", "item.edit.move.inheritpolicies.description": "લક્ષ્ય સંગ્રહની ડિફોલ્ટ પોલિસી વારસામાં મેળવો", - // "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", - // TODO New key - Add a translation - "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + "item.edit.move.inheritpolicies.tooltip": "ચેતવણી: સક્ષમ હોવા પર, આઇટમ અને આઇટમ સાથે સંકળાયેલી કોઈપણ ફાઇલો માટેની વાંચન ઍક્સેસ પોલિસી લક્ષ્ય સંગ્રહની ડિફોલ્ટ વાંચન ઍક્સેસ પોલિસી દ્વારા બદલવામાં આવશે. આ પાછું લાવી શકાતું નથી.", - // "item.edit.move.move": "Move", "item.edit.move.move": "ખસેડો", - // "item.edit.move.processing": "Moving...", "item.edit.move.processing": "ખસેડી રહ્યા છે...", - // "item.edit.move.search.placeholder": "Enter a search query to look for collections", "item.edit.move.search.placeholder": "સંગ્રહો શોધવા માટે શોધ ક્વેરી દાખલ કરો", - // "item.edit.move.success": "The item has been moved successfully", "item.edit.move.success": "આ આઇટમ સફળતાપૂર્વક ખસેડવામાં આવ્યું છે", - // "item.edit.move.title": "Move item", "item.edit.move.title": "આઇટમ ખસેડો", - // "item.edit.private.cancel": "Cancel", "item.edit.private.cancel": "રદ કરો", - // "item.edit.private.confirm": "Make it non-discoverable", "item.edit.private.confirm": "તેને નોન-ડિસ્કવરેબલ બનાવો", - // "item.edit.private.description": "Are you sure this item should be made non-discoverable in the archive?", "item.edit.private.description": "શું તમે ખાતરી કરો છો કે આ આઇટમ આર્કાઇવમાં નોન-ડિસ્કવરેબલ બનાવવું જોઈએ?", - // "item.edit.private.error": "An error occurred while making the item non-discoverable", "item.edit.private.error": "આ આઇટમને નોન-ડિસ્કવરેબલ બનાવતી વખતે એક ભૂલ આવી", - // "item.edit.private.header": "Make item non-discoverable: {{ id }}", - // TODO New key - Add a translation - "item.edit.private.header": "Make item non-discoverable: {{ id }}", + "item.edit.private.header": "આઇટમ નોન-ડિસ્કવરેબલ બનાવો: {{ id }}", - // "item.edit.private.success": "The item is now non-discoverable", "item.edit.private.success": "આ આઇટમ હવે નોન-ડિસ્કવરેબલ છે", - // "item.edit.public.cancel": "Cancel", "item.edit.public.cancel": "રદ કરો", - // "item.edit.public.confirm": "Make it discoverable", "item.edit.public.confirm": "તેને ડિસ્કવરેબલ બનાવો", - // "item.edit.public.description": "Are you sure this item should be made discoverable in the archive?", "item.edit.public.description": "શું તમે ખાતરી કરો છો કે આ આઇટમ આર્કાઇવમાં ડિસ્કવરેબલ બનાવવું જોઈએ?", - // "item.edit.public.error": "An error occurred while making the item discoverable", "item.edit.public.error": "આ આઇટમને ડિસ્કવરેબલ બનાવતી વખતે એક ભૂલ આવી", - // "item.edit.public.header": "Make item discoverable: {{ id }}", - // TODO New key - Add a translation - "item.edit.public.header": "Make item discoverable: {{ id }}", + "item.edit.public.header": "આઇટમ ડિસ્કવરેબલ બનાવો: {{ id }}", - // "item.edit.public.success": "The item is now discoverable", "item.edit.public.success": "આ આઇટમ હવે ડિસ્કવરેબલ છે", - // "item.edit.reinstate.cancel": "Cancel", "item.edit.reinstate.cancel": "રદ કરો", - // "item.edit.reinstate.confirm": "Reinstate", "item.edit.reinstate.confirm": "ફરી સ્થાપિત કરો", - // "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?", "item.edit.reinstate.description": "શું તમે ખાતરી કરો છો કે આ આઇટમને આર્કાઇવમાં ફરી સ્થાપિત કરવું જોઈએ?", - // "item.edit.reinstate.error": "An error occurred while reinstating the item", "item.edit.reinstate.error": "આ આઇટમને ફરી સ્થાપિત કરતી વખતે એક ભૂલ આવી", - // "item.edit.reinstate.header": "Reinstate item: {{ id }}", - // TODO New key - Add a translation - "item.edit.reinstate.header": "Reinstate item: {{ id }}", + "item.edit.reinstate.header": "આઇટમ ફરી સ્થાપિત કરો: {{ id }}", - // "item.edit.reinstate.success": "The item was reinstated successfully", "item.edit.reinstate.success": "આ આઇટમ સફળતાપૂર્વક ફરી સ્થાપિત થયું", - // "item.edit.relationships.discard-button": "Discard", "item.edit.relationships.discard-button": "રદ કરો", - // "item.edit.relationships.edit.buttons.add": "Add", "item.edit.relationships.edit.buttons.add": "ઉમેરો", - // "item.edit.relationships.edit.buttons.remove": "Remove", "item.edit.relationships.edit.buttons.remove": "દૂર કરો", - // "item.edit.relationships.edit.buttons.undo": "Undo changes", "item.edit.relationships.edit.buttons.undo": "ફેરફારો રદ કરો", - // "item.edit.relationships.no-relationships": "No relationships", "item.edit.relationships.no-relationships": "કોઈ સંબંધો નથી", - // "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.relationships.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા હતા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - // "item.edit.relationships.notifications.discarded.title": "Changes discarded", "item.edit.relationships.notifications.discarded.title": "ફેરફારો રદ", - // "item.edit.relationships.notifications.failed.title": "Error editing relationships", "item.edit.relationships.notifications.failed.title": "સંબંધો સંપાદિત કરતી વખતે ભૂલ", - // "item.edit.relationships.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.relationships.notifications.outdated.content": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", - // "item.edit.relationships.notifications.outdated.title": "Changes outdated", "item.edit.relationships.notifications.outdated.title": "ફેરફારો જૂના", - // "item.edit.relationships.notifications.saved.content": "Your changes to this item's relationships were saved.", "item.edit.relationships.notifications.saved.content": "આ આઇટમના સંબંધો માટેના તમારા ફેરફારો સાચવવામાં આવ્યા હતા.", - // "item.edit.relationships.notifications.saved.title": "Relationships saved", "item.edit.relationships.notifications.saved.title": "સંબંધો સાચવ્યા", - // "item.edit.relationships.reinstate-button": "Undo", "item.edit.relationships.reinstate-button": "Undo", - // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "સાચવો", - // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", "item.edit.relationships.no-entity-type": "આ આઇટમ માટે સંબંધો સક્ષમ કરવા માટે 'dspace.entity.type' મેટાડેટા ઉમેરો", - // "item.edit.return": "Back", "item.edit.return": "પાછા", - // "item.edit.tabs.bitstreams.head": "Bitstreams", "item.edit.tabs.bitstreams.head": "બિટસ્ટ્રીમ્સ", - // "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams", "item.edit.tabs.bitstreams.title": "આઇટમ સંપાદન - બિટસ્ટ્રીમ્સ", - // "item.edit.tabs.curate.head": "Curate", "item.edit.tabs.curate.head": "ક્યુરેટ", - // "item.edit.tabs.curate.title": "Item Edit - Curate", "item.edit.tabs.curate.title": "આઇટમ ક્યુરેટ કરો: {{item}}", - // "item.edit.curate.title": "Curate Item: {{item}}", - // TODO New key - Add a translation - "item.edit.curate.title": "Curate Item: {{item}}", - - // "item.edit.tabs.access-control.head": "Access Control", "item.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", - // "item.edit.tabs.access-control.title": "Item Edit - Access Control", "item.edit.tabs.access-control.title": "આઇટમ સંપાદન - ઍક્સેસ કંટ્રોલ", - // "item.edit.tabs.metadata.head": "Metadata", "item.edit.tabs.metadata.head": "મેટાડેટા", - // "item.edit.tabs.metadata.title": "Item Edit - Metadata", "item.edit.tabs.metadata.title": "આઇટમ સંપાદન - મેટાડેટા", - // "item.edit.tabs.relationships.head": "Relationships", "item.edit.tabs.relationships.head": "સંબંધો", - // "item.edit.tabs.relationships.title": "Item Edit - Relationships", "item.edit.tabs.relationships.title": "આઇટમ સંપાદન - સંબંધો", - // "item.edit.tabs.status.buttons.authorizations.button": "Authorizations...", "item.edit.tabs.status.buttons.authorizations.button": "અધિકૃતતાઓ...", - // "item.edit.tabs.status.buttons.authorizations.label": "Edit item's authorization policies", "item.edit.tabs.status.buttons.authorizations.label": "આઇટમની અધિકૃતતા નીતિઓ સંપાદિત કરો", - // "item.edit.tabs.status.buttons.delete.button": "Permanently delete", "item.edit.tabs.status.buttons.delete.button": "કાયમ માટે કાઢી નાખો", - // "item.edit.tabs.status.buttons.delete.label": "Completely expunge item", "item.edit.tabs.status.buttons.delete.label": "આઇટમને સંપૂર્ણપણે કાઢી નાખો", - // "item.edit.tabs.status.buttons.mappedCollections.button": "Mapped collections", "item.edit.tabs.status.buttons.mappedCollections.button": "મૅપ કરેલ સંગ્રહો", - // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "મૅપ કરેલ સંગ્રહો મેનેજ કરો", - // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", "item.edit.tabs.status.buttons.move.button": "આ આઇટમને અલગ સંગ્રહમાં ખસેડો", - // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", "item.edit.tabs.status.buttons.move.label": "આઇટમને બીજા સંગ્રહમાં ખસેડો", - // "item.edit.tabs.status.buttons.private.button": "Make it non-discoverable...", "item.edit.tabs.status.buttons.private.button": "તેને નોન-ડિસ્કવરેબલ બનાવો...", - // "item.edit.tabs.status.buttons.private.label": "Make item non-discoverable", "item.edit.tabs.status.buttons.private.label": "આઇટમને નોન-ડિસ્કવરેબલ બનાવો", - // "item.edit.tabs.status.buttons.public.button": "Make it discoverable...", "item.edit.tabs.status.buttons.public.button": "તેને ડિસ્કવરેબલ બનાવો...", - // "item.edit.tabs.status.buttons.public.label": "Make item discoverable", "item.edit.tabs.status.buttons.public.label": "આઇટમને ડિસ્કવરેબલ બનાવો", - // "item.edit.tabs.status.buttons.reinstate.button": "Reinstate...", "item.edit.tabs.status.buttons.reinstate.button": "ફરી સ્થાપિત કરો...", - // "item.edit.tabs.status.buttons.reinstate.label": "Reinstate item into the repository", "item.edit.tabs.status.buttons.reinstate.label": "આઇટમને રિપોઝિટરીમાં ફરી સ્થાપિત કરો", - // "item.edit.tabs.status.buttons.unauthorized": "You're not authorized to perform this action", "item.edit.tabs.status.buttons.unauthorized": "તમે આ ક્રિયા કરવા માટે અધિકૃત નથી", - // "item.edit.tabs.status.buttons.withdraw.button": "Withdraw this item", "item.edit.tabs.status.buttons.withdraw.button": "આ આઇટમને પાછું ખેંચો", - // "item.edit.tabs.status.buttons.withdraw.label": "Withdraw item from the repository", "item.edit.tabs.status.buttons.withdraw.label": "આઇટમને રિપોઝિટરીમાંથી પાછું ખેંચો", - // "item.edit.tabs.status.description": "Welcome to the item management page. From here you can withdraw, reinstate, move or delete the item. You may also update or add new metadata / bitstreams on the other tabs.", "item.edit.tabs.status.description": "આઇટમ મેનેજમેન્ટ પેજમાં આપનું સ્વાગત છે. અહીંથી તમે આઇટમને પાછું ખેંચી શકો છો, ફરી સ્થાપિત કરી શકો છો, ખસેડી શકો છો અથવા કાઢી શકો છો. તમે અન્ય ટૅબ પર નવા મેટાડેટા / બિટસ્ટ્રીમ્સને અપડેટ અથવા ઉમેરવા માટે પણ કરી શકો છો.", - // "item.edit.tabs.status.head": "Status", "item.edit.tabs.status.head": "સ્થિતિ", - // "item.edit.tabs.status.labels.handle": "Handle", "item.edit.tabs.status.labels.handle": "હેન્ડલ", - // "item.edit.tabs.status.labels.id": "Item Internal ID", "item.edit.tabs.status.labels.id": "આઇટમ આંતરિક ID", - // "item.edit.tabs.status.labels.itemPage": "Item Page", "item.edit.tabs.status.labels.itemPage": "આઇટમ પેજ", - // "item.edit.tabs.status.labels.lastModified": "Last Modified", "item.edit.tabs.status.labels.lastModified": "છેલ્લે ફેરફાર", - // "item.edit.tabs.status.title": "Item Edit - Status", "item.edit.tabs.status.title": "આઇટમ સંપાદન - સ્થિતિ", - // "item.edit.tabs.versionhistory.head": "Version History", "item.edit.tabs.versionhistory.head": "આવૃત્તિ ઇતિહાસ", - // "item.edit.tabs.versionhistory.title": "Item Edit - Version History", "item.edit.tabs.versionhistory.title": "આઇટમ સંપાદન - આવૃત્તિ ઇતિહાસ", - // "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": "આ વપરાશકર્તા ઇન્ટરફેસમાં નવી આવૃત્તિઓ સંપાદિત કરવી અથવા ઉમેરવી હજી શક્ય નથી.", - // "item.edit.tabs.view.head": "View Item", "item.edit.tabs.view.head": "આઇટમ જુઓ", - // "item.edit.tabs.view.title": "Item Edit - View", "item.edit.tabs.view.title": "આઇટમ સંપાદન - જુઓ", - // "item.edit.withdraw.cancel": "Cancel", "item.edit.withdraw.cancel": "રદ કરો", - // "item.edit.withdraw.confirm": "Withdraw", "item.edit.withdraw.confirm": "પાછું ખેંચો", - // "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?", "item.edit.withdraw.description": "શું તમે ખાતરી કરો છો કે આ આઇટમને આર્કાઇવમાંથી પાછું ખેંચવું જોઈએ?", - // "item.edit.withdraw.error": "An error occurred while withdrawing the item", "item.edit.withdraw.error": "આ આઇટમને પાછું ખેંચતી વખતે એક ભૂલ આવી", - // "item.edit.withdraw.header": "Withdraw item: {{ id }}", - // TODO New key - Add a translation - "item.edit.withdraw.header": "Withdraw item: {{ id }}", + "item.edit.withdraw.header": "આઇટમ પાછું ખેંચો: {{ id }}", - // "item.edit.withdraw.success": "The item was withdrawn successfully", "item.edit.withdraw.success": "આ આઇટમ સફળતાપૂર્વક પાછું ખેંચવામાં આવ્યું", - // "item.orcid.return": "Back", "item.orcid.return": "પાછા", - // "item.listelement.badge": "Item", "item.listelement.badge": "આઇટમ", - // "item.page.description": "Description", "item.page.description": "વર્ણન", - // "item.page.org-unit": "Organizational Unit", - // TODO New key - Add a translation - "item.page.org-unit": "Organizational Unit", - - // "item.page.org-units": "Organizational Units", - // TODO New key - Add a translation - "item.page.org-units": "Organizational Units", - - // "item.page.project": "Research Project", - // TODO New key - Add a translation - "item.page.project": "Research Project", - - // "item.page.projects": "Research Projects", - // TODO New key - Add a translation - "item.page.projects": "Research Projects", - - // "item.page.publication": "Publications", - // TODO New key - Add a translation - "item.page.publication": "Publications", - - // "item.page.publications": "Publications", - // TODO New key - Add a translation - "item.page.publications": "Publications", - - // "item.page.article": "Article", - // TODO New key - Add a translation - "item.page.article": "Article", - - // "item.page.articles": "Articles", - // TODO New key - Add a translation - "item.page.articles": "Articles", - - // "item.page.journal": "Journal", - // TODO New key - Add a translation - "item.page.journal": "Journal", - - // "item.page.journals": "Journals", - // TODO New key - Add a translation - "item.page.journals": "Journals", - - // "item.page.journal-issue": "Journal Issue", - // TODO New key - Add a translation - "item.page.journal-issue": "Journal Issue", - - // "item.page.journal-issues": "Journal Issues", - // TODO New key - Add a translation - "item.page.journal-issues": "Journal Issues", - - // "item.page.journal-volume": "Journal Volume", - // TODO New key - Add a translation - "item.page.journal-volume": "Journal Volume", - - // "item.page.journal-volumes": "Journal Volumes", - // TODO New key - Add a translation - "item.page.journal-volumes": "Journal Volumes", - - // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "જર્નલ ISSN", - // "item.page.journal-title": "Journal Title", "item.page.journal-title": "જર્નલ શીર્ષક", - // "item.page.publisher": "Publisher", "item.page.publisher": "પ્રકાશક", - // "item.page.titleprefix": "Item: ", - // TODO New key - Add a translation - "item.page.titleprefix": "Item: ", + "item.page.titleprefix": "આઇટમ: ", - // "item.page.volume-title": "Volume Title", "item.page.volume-title": "વોલ્યુમ શીર્ષક", - // "item.page.dcterms.spatial": "Geospatial point", "item.page.dcterms.spatial": "ભૌગોલિક બિંદુ", - // "item.search.results.head": "Item Search Results", "item.search.results.head": "આઇટમ શોધ પરિણામો", - // "item.search.title": "Item Search", "item.search.title": "આઇટમ શોધ", - // "item.truncatable-part.show-more": "Show more", "item.truncatable-part.show-more": "વધુ બતાવો", - // "item.truncatable-part.show-less": "Collapse", "item.truncatable-part.show-less": "સંકોચો", - // "item.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "item.qa-event-notification.check.notification-info": "તમારા ખાતા સાથે સંબંધિત {{num}} પેન્ડિંગ સૂચનો છે", - // "item.qa-event-notification-info.check.button": "View", "item.qa-event-notification-info.check.button": "જુઓ", - // "mydspace.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "mydspace.qa-event-notification.check.notification-info": "તમારા ખાતા સાથે સંબંધિત {{num}} પેન્ડિંગ સૂચનો છે", - // "mydspace.qa-event-notification-info.check.button": "View", "mydspace.qa-event-notification-info.check.button": "જુઓ", - // "workflow-item.search.result.delete-supervision.modal.header": "Delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.header": "સુપરવિઝન ઓર્ડર કાઢી નાખો", - // "workflow-item.search.result.delete-supervision.modal.info": "Are you sure you want to delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.info": "શું તમે સુપરવિઝન ઓર્ડર કાઢી નાખવા માંગો છો?", - // "workflow-item.search.result.delete-supervision.modal.cancel": "Cancel", "workflow-item.search.result.delete-supervision.modal.cancel": "રદ કરો", - // "workflow-item.search.result.delete-supervision.modal.confirm": "Delete", "workflow-item.search.result.delete-supervision.modal.confirm": "કાઢી નાખો", - // "workflow-item.search.result.notification.deleted.success": "Successfully deleted supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.success": "સુપરવિઝન ઓર્ડર સફળતાપૂર્વક કાઢી નાખ્યો \"{{name}}\"", - // "workflow-item.search.result.notification.deleted.failure": "Failed to delete supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.failure": "સુપરવિઝન ઓર્ડર કાઢી શક્યો નહીં \"{{name}}\"", - // "workflow-item.search.result.list.element.supervised-by": "Supervised by:", - // TODO New key - Add a translation - "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + "workflow-item.search.result.list.element.supervised-by": "સુપરવિઝન દ્વારા:", - // "workflow-item.search.result.list.element.supervised.remove-tooltip": "Remove supervision group", "workflow-item.search.result.list.element.supervised.remove-tooltip": "સુપરવિઝન જૂથ દૂર કરો", - // "confidence.indicator.help-text.accepted": "This authority value has been confirmed as accurate by an interactive user", "confidence.indicator.help-text.accepted": "આ અધિકૃત મૂલ્યને ઇન્ટરેક્ટિવ વપરાશકર્તા દ્વારા સચોટ તરીકે પુષ્ટિ આપવામાં આવી છે", - // "confidence.indicator.help-text.uncertain": "Value is singular and valid but has not been seen and accepted by a human so it is still uncertain", "confidence.indicator.help-text.uncertain": "મૂલ્ય એકલ અને માન્ય છે પરંતુ માનવ દ્વારા જોવામાં અને સ્વીકારવામાં આવ્યું નથી તેથી તે હજી પણ અનિશ્ચિત છે", - // "confidence.indicator.help-text.ambiguous": "There are multiple matching authority values of equal validity", "confidence.indicator.help-text.ambiguous": "સમાન માન્યતાના અનેક મેળ ખાતા અધિકૃત મૂલ્યો છે", - // "confidence.indicator.help-text.notfound": "There are no matching answers in the authority", "confidence.indicator.help-text.notfound": "અધિકૃતમાં કોઈ મેળ ખાતા જવાબો નથી", - // "confidence.indicator.help-text.failed": "The authority encountered an internal failure", "confidence.indicator.help-text.failed": "અધિકૃત આંતરિક નિષ્ફળતા અનુભવી", - // "confidence.indicator.help-text.rejected": "The authority recommends this submission be rejected", "confidence.indicator.help-text.rejected": "અધિકૃત આ સબમિશનને નકારી કાઢવાની ભલામણ કરે છે", - // "confidence.indicator.help-text.novalue": "No reasonable confidence value was returned from the authority", "confidence.indicator.help-text.novalue": "અધિકૃતમાંથી કોઈ યોગ્ય વિશ્વાસ મૂલ્ય પરત કરવામાં આવ્યું નથી", - // "confidence.indicator.help-text.unset": "Confidence was never recorded for this value", "confidence.indicator.help-text.unset": "આ મૂલ્ય માટે વિશ્વાસ ક્યારેય નોંધાયો નથી", - // "confidence.indicator.help-text.unknown": "Unknown confidence value", "confidence.indicator.help-text.unknown": "અજ્ઞાત વિશ્વાસ મૂલ્ય", - // "item.page.abstract": "Abstract", "item.page.abstract": "અભ્યાસ", - // "item.page.author": "Author", "item.page.author": "લેખકો", - // "item.page.authors": "Authors", - // TODO New key - Add a translation - "item.page.authors": "Authors", - - // "item.page.citation": "Citation", "item.page.citation": "ઉલ્લેખ", - // "item.page.collections": "Collections", "item.page.collections": "સંગ્રહો", - // "item.page.collections.loading": "Loading...", "item.page.collections.loading": "લોડ થઈ રહ્યું છે...", - // "item.page.collections.load-more": "Load more", "item.page.collections.load-more": "વધુ લોડ કરો", - // "item.page.date": "Date", "item.page.date": "તારીખ", - // "item.page.edit": "Edit this item", "item.page.edit": "આ આઇટમ સંપાદિત કરો", - // "item.page.files": "Files", "item.page.files": "ફાઇલો", - // "item.page.filesection.description": "Description:", - // TODO New key - Add a translation - "item.page.filesection.description": "Description:", + "item.page.filesection.description": "વર્ણન:", - // "item.page.filesection.download": "Download", "item.page.filesection.download": "ડાઉનલોડ", - // "item.page.filesection.format": "Format:", - // TODO New key - Add a translation - "item.page.filesection.format": "Format:", + "item.page.filesection.format": "ફોર્મેટ:", - // "item.page.filesection.name": "Name:", - // TODO New key - Add a translation - "item.page.filesection.name": "Name:", + "item.page.filesection.name": "નામ:", - // "item.page.filesection.size": "Size:", - // TODO New key - Add a translation - "item.page.filesection.size": "Size:", + "item.page.filesection.size": "કદ:", - // "item.page.journal.search.title": "Articles in this journal", "item.page.journal.search.title": "આ જર્નલમાં લેખો", - // "item.page.link.full": "Full item page", "item.page.link.full": "સંપૂર્ણ આઇટમ પેજ", - // "item.page.link.simple": "Simple item page", "item.page.link.simple": "સરળ આઇટમ પેજ", - // "item.page.options": "Options", "item.page.options": "વિકલ્પો", - // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", - // "item.page.orcid.tooltip": "Open ORCID setting page", "item.page.orcid.tooltip": "ORCID સેટિંગ પેજ ખોલો", - // "item.page.person.search.title": "Articles by this author", "item.page.person.search.title": "આ લેખક દ્વારા લેખો", - // "item.page.related-items.view-more": "Show {{ amount }} more", "item.page.related-items.view-more": "{{ amount }} વધુ બતાવો", - // "item.page.related-items.view-less": "Hide last {{ amount }}", "item.page.related-items.view-less": "છેલ્લા {{ amount }} છુપાવો", - // "item.page.relationships.isAuthorOfPublication": "Publications", "item.page.relationships.isAuthorOfPublication": "પ્રકાશનો લેખક છે", - // "item.page.relationships.isJournalOfPublication": "Publications", "item.page.relationships.isJournalOfPublication": "પ્રકાશનો જર્નલ છે", - // "item.page.relationships.isOrgUnitOfPerson": "Authors", "item.page.relationships.isOrgUnitOfPerson": "લેખકો", - // "item.page.relationships.isOrgUnitOfProject": "Research Projects", "item.page.relationships.isOrgUnitOfProject": "શોધ પ્રોજેક્ટ્સ", - // "item.page.subject": "Keywords", "item.page.subject": "કીવર્ડ્સ", - // "item.page.uri": "URI", "item.page.uri": "URI", - // "item.page.bitstreams.view-more": "Show more", "item.page.bitstreams.view-more": "વધુ બતાવો", - // "item.page.bitstreams.collapse": "Collapse", "item.page.bitstreams.collapse": "સંકોચો", - // "item.page.bitstreams.primary": "Primary", "item.page.bitstreams.primary": "પ્રાથમિક", - // "item.page.filesection.original.bundle": "Original bundle", "item.page.filesection.original.bundle": "મૂળ બંડલ", - // "item.page.filesection.license.bundle": "License bundle", "item.page.filesection.license.bundle": "લાઇસન્સ બંડલ", - // "item.page.return": "Back", "item.page.return": "પાછા", - // "item.page.version.create": "Create new version", "item.page.version.create": "નવી આવૃત્તિ બનાવો", - // "item.page.withdrawn": "Request a withdrawal for this item", "item.page.withdrawn": "આ આઇટમ માટે વિથડ્રૉલ વિનંતી કરો", - // "item.page.reinstate": "Request reinstatement", "item.page.reinstate": "ફરી સ્થાપિત કરવાની વિનંતી કરો", - // "item.page.version.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.page.version.hasDraft": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", - // "item.page.claim.button": "Claim", "item.page.claim.button": "દાવો", - // "item.page.claim.tooltip": "Claim this item as profile", "item.page.claim.tooltip": "આ આઇટમને પ્રોફાઇલ તરીકે દાવો", - // "item.page.image.alt.ROR": "ROR logo", "item.page.image.alt.ROR": "ROR લોગો", - // "item.preview.dc.identifier.uri": "Identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier.uri": "Identifier:", + "item.preview.dc.identifier.uri": "પરિચયકર્તા:", - // "item.preview.dc.contributor.author": "Authors:", - // TODO New key - Add a translation - "item.preview.dc.contributor.author": "Authors:", + "item.preview.dc.contributor.author": "લેખકો:", - // "item.preview.dc.date.issued": "Published date:", - // TODO New key - Add a translation - "item.preview.dc.date.issued": "Published date:", + "item.preview.dc.date.issued": "પ્રકાશિત તારીખ:", - // "item.preview.dc.description": "Description:", - // TODO Source message changed - Revise the translation "item.preview.dc.description": "વર્ણન:", - // "item.preview.dc.description.abstract": "Abstract:", - // TODO New key - Add a translation - "item.preview.dc.description.abstract": "Abstract:", + "item.preview.dc.description.abstract": "અભ્યાસ:", - // "item.preview.dc.identifier.other": "Other identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier.other": "Other identifier:", + "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા:", - // "item.preview.dc.language.iso": "Language:", - // TODO New key - Add a translation - "item.preview.dc.language.iso": "Language:", + "item.preview.dc.language.iso": "ભાષા:", - // "item.preview.dc.subject": "Subjects:", - // TODO New key - Add a translation - "item.preview.dc.subject": "Subjects:", + "item.preview.dc.subject": "વિષયો:", - // "item.preview.dc.title": "Title:", - // TODO New key - Add a translation - "item.preview.dc.title": "Title:", + "item.preview.dc.title": "શીર્ષક:", - // "item.preview.dc.type": "Type:", - // TODO New key - Add a translation - "item.preview.dc.type": "Type:", + "item.preview.dc.type": "પ્રકાર:", - // "item.preview.oaire.version": "Version", "item.preview.oaire.version": "આવૃત્તિ", - // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "મુદ્દો", - // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "વોલ્યુમ", - // "item.preview.oaire.citation.title": "Citation container", "item.preview.oaire.citation.title": "ઉલ્લેખ કન્ટેનર", - // "item.preview.oaire.citation.startPage": "Citation start page", "item.preview.oaire.citation.startPage": "ઉલ્લેખ પ્રારંભ પૃષ્ઠ", - // "item.preview.oaire.citation.endPage": "Citation end page", "item.preview.oaire.citation.endPage": "ઉલ્લેખ અંત પૃષ્ઠ", - // "item.preview.dc.relation.hasversion": "Has version", "item.preview.dc.relation.hasversion": "આવૃત્તિ છે", - // "item.preview.dc.relation.ispartofseries": "Is part of series", "item.preview.dc.relation.ispartofseries": "શ્રેણીનો ભાગ છે", - // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "હક્કો", - // "item.preview.dc.identifier.other": "Other Identifier", - "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા:", + "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા", - // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", - // "item.preview.dc.identifier.isbn": "ISBN", "item.preview.dc.identifier.isbn": "ISBN", - // "item.preview.dc.identifier": "Identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier": "Identifier:", + "item.preview.dc.identifier": "પરિચયકર્તા:", - // "item.preview.dc.relation.ispartof": "Journal or Series", "item.preview.dc.relation.ispartof": "જર્નલ અથવા શ્રેણી", - // "item.preview.dc.identifier.doi": "DOI", "item.preview.dc.identifier.doi": "DOI", - // "item.preview.dc.publisher": "Publisher:", - // TODO New key - Add a translation - "item.preview.dc.publisher": "Publisher:", + "item.preview.dc.publisher": "પ્રકાશક:", - // "item.preview.person.familyName": "Surname:", - // TODO New key - Add a translation - "item.preview.person.familyName": "Surname:", + "item.preview.person.familyName": "અટક:", - // "item.preview.person.givenName": "Name:", - // TODO New key - Add a translation - "item.preview.person.givenName": "Name:", + "item.preview.person.givenName": "નામ:", - // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", - // "item.preview.person.affiliation.name": "Affiliations:", - // TODO New key - Add a translation - "item.preview.person.affiliation.name": "Affiliations:", + "item.preview.person.affiliation.name": "સંબંધો:", - // "item.preview.project.funder.name": "Funder:", - // TODO New key - Add a translation - "item.preview.project.funder.name": "Funder:", + "item.preview.project.funder.name": "ફંડર:", - // "item.preview.project.funder.identifier": "Funder Identifier:", - // TODO New key - Add a translation - "item.preview.project.funder.identifier": "Funder Identifier:", + "item.preview.project.funder.identifier": "ફંડર પરિચયકર્તા:", - // "item.preview.project.investigator": "Project Investigator", "item.preview.project.investigator": "પ્રોજેક્ટ ઇન્વેસ્ટિગેટર", - // "item.preview.oaire.awardNumber": "Funding ID:", - // TODO New key - Add a translation - "item.preview.oaire.awardNumber": "Funding ID:", + "item.preview.oaire.awardNumber": "ફંડિંગ ID:", - // "item.preview.dc.title.alternative": "Acronym:", - // TODO New key - Add a translation - "item.preview.dc.title.alternative": "Acronym:", + "item.preview.dc.title.alternative": "અન્ય નામ:", - // "item.preview.dc.coverage.spatial": "Jurisdiction:", - // TODO New key - Add a translation - "item.preview.dc.coverage.spatial": "Jurisdiction:", + "item.preview.dc.coverage.spatial": "ક્ષેત્રાધિકાર:", - // "item.preview.oaire.fundingStream": "Funding Stream:", - // TODO New key - Add a translation - "item.preview.oaire.fundingStream": "Funding Stream:", + "item.preview.oaire.fundingStream": "ફંડિંગ સ્ટ્રીમ:", - // "item.preview.oairecerif.identifier.url": "URL", "item.preview.oairecerif.identifier.url": "URL", - // "item.preview.organization.address.addressCountry": "Country", "item.preview.organization.address.addressCountry": "દેશ", - // "item.preview.organization.foundingDate": "Founding Date", "item.preview.organization.foundingDate": "સ્થાપના તારીખ", - // "item.preview.organization.identifier.crossrefid": "Crossref ID", "item.preview.organization.identifier.crossrefid": "ક્રોસરેફ ID", - // "item.preview.organization.identifier.isni": "ISNI", "item.preview.organization.identifier.isni": "ISNI", - // "item.preview.organization.identifier.ror": "ROR ID", "item.preview.organization.identifier.ror": "ROR ID", - // "item.preview.organization.legalName": "Legal Name", "item.preview.organization.legalName": "કાનૂની નામ", - // "item.preview.dspace.entity.type": "Entity Type:", - // TODO New key - Add a translation - "item.preview.dspace.entity.type": "Entity Type:", + "item.preview.dspace.entity.type": "સત્તા પ્રકાર:", - // "item.preview.creativework.publisher": "Publisher", "item.preview.creativework.publisher": "પ્રકાશક", - // "item.preview.creativeworkseries.issn": "ISSN", "item.preview.creativeworkseries.issn": "ISSN", - // "item.preview.dc.identifier.issn": "ISSN", "item.preview.dc.identifier.issn": "ISSN", - // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "ઓપનએલેક્સ પરિચયકર્તા", - // "item.preview.dc.description": "Description", - // TODO Source message changed - Revise the translation - "item.preview.dc.description": "વર્ણન:", + "item.preview.dc.description": "વર્ણન", - // "item.select.confirm": "Confirm selected", "item.select.confirm": "પસંદ કરેલને પુષ્ટિ કરો", - // "item.select.empty": "No items to show", "item.select.empty": "બતાવા માટે કોઈ આઇટમ નથી", - // "item.select.table.selected": "Selected items", "item.select.table.selected": "પસંદ કરેલ આઇટમ્સ", - // "item.select.table.select": "Select item", "item.select.table.select": "આઇટમ પસંદ કરો", - // "item.select.table.deselect": "Deselect item", "item.select.table.deselect": "આઇટમ પસંદ ન કરો", - // "item.select.table.author": "Author", "item.select.table.author": "લેખક", - // "item.select.table.collection": "Collection", "item.select.table.collection": "સંગ્રહ", - // "item.select.table.title": "Title", "item.select.table.title": "શીર્ષક", - // "item.version.history.empty": "There are no other versions for this item yet.", "item.version.history.empty": "આ આઇટમ માટે હજી સુધી અન્ય આવૃત્તિઓ નથી.", - // "item.version.history.head": "Version History", "item.version.history.head": "આવૃત્તિ ઇતિહાસ", - // "item.version.history.return": "Back", "item.version.history.return": "પાછા", - // "item.version.history.selected": "Selected version", "item.version.history.selected": "પસંદ કરેલ આવૃત્તિ", - // "item.version.history.selected.alert": "You are currently viewing version {{version}} of the item.", "item.version.history.selected.alert": "તમે હાલમાં આઇટમની આવૃત્તિ {{version}} જોઈ રહ્યા છો.", - // "item.version.history.table.version": "Version", "item.version.history.table.version": "આવૃત્તિ", - // "item.version.history.table.item": "Item", "item.version.history.table.item": "આઇટમ", - // "item.version.history.table.editor": "Editor", "item.version.history.table.editor": "સંપાદક", - // "item.version.history.table.date": "Date", "item.version.history.table.date": "તારીખ", - // "item.version.history.table.summary": "Summary", "item.version.history.table.summary": "સારાંશ", - // "item.version.history.table.workspaceItem": "Workspace item", "item.version.history.table.workspaceItem": "વર્કસ્પેસ આઇટમ", - // "item.version.history.table.workflowItem": "Workflow item", "item.version.history.table.workflowItem": "વર્કફ્લો આઇટમ", - // "item.version.history.table.actions": "Action", "item.version.history.table.actions": "ક્રિયા", - // "item.version.history.table.action.editWorkspaceItem": "Edit workspace item", "item.version.history.table.action.editWorkspaceItem": "વર્કસ્પેસ આઇટમ સંપાદિત કરો", - // "item.version.history.table.action.editSummary": "Edit summary", "item.version.history.table.action.editSummary": "સારાંશ સંપાદિત કરો", - // "item.version.history.table.action.saveSummary": "Save summary edits", "item.version.history.table.action.saveSummary": "સારાંશ ફેરફારો સાચવો", - // "item.version.history.table.action.discardSummary": "Discard summary edits", "item.version.history.table.action.discardSummary": "સારાંશ ફેરફારો રદ કરો", - // "item.version.history.table.action.newVersion": "Create new version from this one", "item.version.history.table.action.newVersion": "આમાંથી નવી આવૃત્તિ બનાવો", - // "item.version.history.table.action.deleteVersion": "Delete version", "item.version.history.table.action.deleteVersion": "આવૃત્તિ કાઢી નાખો", - // "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.history.table.action.hasDraft": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", - // "item.version.notice": "This is not the latest version of this item. The latest version can be found here.", "item.version.notice": "આ આઇટમની નવીનતમ આવૃત્તિ નથી. નવીનતમ આવૃત્તિ અહીં મળી શકે છે અહીં.", - // "item.version.create.modal.header": "New version", "item.version.create.modal.header": "નવી આવૃત્તિ", - // "item.qa.withdrawn.modal.header": "Request withdrawal", "item.qa.withdrawn.modal.header": "વિથડ્રૉલ વિનંતી", - // "item.qa.reinstate.modal.header": "Request reinstate", "item.qa.reinstate.modal.header": "ફરી સ્થાપિત કરવાની વિનંતી", - // "item.qa.reinstate.create.modal.header": "New version", "item.qa.reinstate.create.modal.header": "નવી આવૃત્તિ", - // "item.version.create.modal.text": "Create a new version for this item", "item.version.create.modal.text": "આ આઇટમ માટે નવી આવૃત્તિ બનાવો", - // "item.version.create.modal.text.startingFrom": "starting from version {{version}}", "item.version.create.modal.text.startingFrom": "આવૃત્તિ {{version}} થી શરૂ", - // "item.version.create.modal.button.confirm": "Create", "item.version.create.modal.button.confirm": "બનાવો", - // "item.version.create.modal.button.confirm.tooltip": "Create new version", "item.version.create.modal.button.confirm.tooltip": "નવી આવૃત્તિ બનાવો", - // "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "Send request", "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "વિનંતી મોકલો", - // "qa-withdrown.create.modal.button.confirm": "Withdraw", "qa-withdrown.create.modal.button.confirm": "વિથડ્રૉલ", - // "qa-reinstate.create.modal.button.confirm": "Reinstate", "qa-reinstate.create.modal.button.confirm": "ફરી સ્થાપિત કરો", - // "item.version.create.modal.button.cancel": "Cancel", "item.version.create.modal.button.cancel": "રદ કરો", - // "item.qa.withdrawn-reinstate.create.modal.button.cancel": "Cancel", "item.qa.withdrawn-reinstate.create.modal.button.cancel": "રદ કરો", - // "item.version.create.modal.button.cancel.tooltip": "Do not create new version", "item.version.create.modal.button.cancel.tooltip": "નવી આવૃત્તિ ન બનાવો", - // "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "Do not send request", "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "વિનંતી ન મોકલો", - // "item.version.create.modal.form.summary.label": "Summary", "item.version.create.modal.form.summary.label": "સારાંશ", - // "qa-withdrawn.create.modal.form.summary.label": "You are requesting to withdraw this item", "qa-withdrawn.create.modal.form.summary.label": "તમે આ આઇટમને પાછું ખેંચવાની વિનંતી કરી રહ્યા છો", - // "qa-withdrawn.create.modal.form.summary2.label": "Please enter the reason for the withdrawal", "qa-withdrawn.create.modal.form.summary2.label": "કૃપા કરીને વિથડ્રૉલ માટેનું કારણ દાખલ કરો", - // "qa-reinstate.create.modal.form.summary.label": "You are requesting to reinstate this item", "qa-reinstate.create.modal.form.summary.label": "તમે આ આઇટમને ફરી સ્થાપિત કરવાની વિનંતી કરી રહ્યા છો", - // "qa-reinstate.create.modal.form.summary2.label": "Please enter the reason for the reinstatment", "qa-reinstate.create.modal.form.summary2.label": "કૃપા કરીને ફરી સ્થાપન માટેનું કારણ દાખલ કરો", - // "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version", "item.version.create.modal.form.summary.placeholder": "નવી આવૃત્તિ માટેનો સારાંશ દાખલ કરો", - // "qa-withdrown.modal.form.summary.placeholder": "Enter the reason for the withdrawal", "qa-withdrown.modal.form.summary.placeholder": "વિથડ્રૉલ માટેનું કારણ દાખલ કરો", - // "qa-reinstate.modal.form.summary.placeholder": "Enter the reason for the reinstatement", "qa-reinstate.modal.form.summary.placeholder": "ફરી સ્થાપન માટેનું કારણ દાખલ કરો", - // "item.version.create.modal.submitted.header": "Creating new version...", "item.version.create.modal.submitted.header": "નવી આવૃત્તિ બનાવી રહી છે...", - // "item.qa.withdrawn.modal.submitted.header": "Sending withdrawn request...", "item.qa.withdrawn.modal.submitted.header": "વિથડ્રૉલ વિનંતી મોકલી રહી છે...", - // "correction-type.manage-relation.action.notification.reinstate": "Reinstate request sent.", "correction-type.manage-relation.action.notification.reinstate": "ફરી સ્થાપિત કરવાની વિનંતી મોકલવામાં આવી.", - // "correction-type.manage-relation.action.notification.withdrawn": "Withdraw request sent.", "correction-type.manage-relation.action.notification.withdrawn": "વિથડ્રૉલ વિનંતી મોકલવામાં આવી.", - // "item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.", "item.version.create.modal.submitted.text": "નવી આવૃત્તિ બનાવી રહી છે. આમાં થોડો સમય લાગી શકે છે જો આઇટમમાં ઘણા સંબંધો હોય.", - // "item.version.create.notification.success": "New version has been created with version number {{version}}", "item.version.create.notification.success": "નવી આવૃત્તિ આવૃત્તિ નંબર {{version}} સાથે બનાવવામાં આવી છે", - // "item.version.create.notification.failure": "New version has not been created", "item.version.create.notification.failure": "નવી આવૃત્તિ બનાવવામાં આવી નથી", - // "item.version.create.notification.inProgress": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.create.notification.inProgress": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", - // "item.version.delete.modal.header": "Delete version", "item.version.delete.modal.header": "આવૃત્તિ કાઢી નાખો", - // "item.version.delete.modal.text": "Do you want to delete version {{version}}?", "item.version.delete.modal.text": "શું તમે આવૃત્તિ {{version}} કાઢી નાખવા માંગો છો?", - // "item.version.delete.modal.button.confirm": "Delete", "item.version.delete.modal.button.confirm": "કાઢી નાખો", - // "item.version.delete.modal.button.confirm.tooltip": "Delete this version", "item.version.delete.modal.button.confirm.tooltip": "આ આવૃત્તિ કાઢી નાખો", - // "item.version.delete.modal.button.cancel": "Cancel", "item.version.delete.modal.button.cancel": "રદ કરો", - // "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version", "item.version.delete.modal.button.cancel.tooltip": "આ આવૃત્તિ ન કાઢી નાખો", - // "item.version.delete.notification.success": "Version number {{version}} has been deleted", "item.version.delete.notification.success": "આવૃત્તિ નંબર {{version}} કાઢી નાખવામાં આવી છે", - // "item.version.delete.notification.failure": "Version number {{version}} has not been deleted", "item.version.delete.notification.failure": "આવૃત્તિ નંબર {{version}} કાઢી શકાઈ નથી", - // "item.version.edit.notification.success": "The summary of version number {{version}} has been changed", "item.version.edit.notification.success": "આવૃત્તિ નંબર {{version}} નો સારાંશ બદલવામાં આવ્યો છે", - // "item.version.edit.notification.failure": "The summary of version number {{version}} has not been changed", "item.version.edit.notification.failure": "આવૃત્તિ નંબર {{version}} નો સારાંશ બદલવામાં આવ્યો નથી", - // "itemtemplate.edit.metadata.add-button": "Add", "itemtemplate.edit.metadata.add-button": "ઉમેરો", - // "itemtemplate.edit.metadata.discard-button": "Discard", "itemtemplate.edit.metadata.discard-button": "રદ કરો", - // "itemtemplate.edit.metadata.edit.language": "Edit language", "itemtemplate.edit.metadata.edit.language": "ભાષા સંપાદિત કરો", - // "itemtemplate.edit.metadata.edit.value": "Edit value", "itemtemplate.edit.metadata.edit.value": "મૂલ્ય સંપાદિત કરો", - // "itemtemplate.edit.metadata.edit.buttons.confirm": "Confirm", "itemtemplate.edit.metadata.edit.buttons.confirm": "પુષ્ટિ કરો", - // "itemtemplate.edit.metadata.edit.buttons.drag": "Drag to reorder", "itemtemplate.edit.metadata.edit.buttons.drag": "ફેરફાર કરવા માટે ખેંચો", - // "itemtemplate.edit.metadata.edit.buttons.edit": "Edit", "itemtemplate.edit.metadata.edit.buttons.edit": "સંપાદિત કરો", - // "itemtemplate.edit.metadata.edit.buttons.remove": "Remove", "itemtemplate.edit.metadata.edit.buttons.remove": "દૂર કરો", - // "itemtemplate.edit.metadata.edit.buttons.undo": "Undo changes", "itemtemplate.edit.metadata.edit.buttons.undo": "ફેરફારો રદ કરો", - // "itemtemplate.edit.metadata.edit.buttons.unedit": "Stop editing", "itemtemplate.edit.metadata.edit.buttons.unedit": "સંપાદન બંધ કરો", - // "itemtemplate.edit.metadata.empty": "The item template currently doesn't contain any metadata. Click Add to start adding a metadata value.", "itemtemplate.edit.metadata.empty": "આઇટમ ટેમ્પલેટમાં હાલમાં કોઈ મેટાડેટા નથી. મેટાડેટા મૂલ્ય ઉમેરવાનું શરૂ કરવા માટે ઉમેરો પર ક્લિક કરો.", - // "itemtemplate.edit.metadata.headers.edit": "Edit", "itemtemplate.edit.metadata.headers.edit": "સંપાદિત કરો", - // "itemtemplate.edit.metadata.headers.field": "Field", "itemtemplate.edit.metadata.headers.field": "ક્ષેત્ર", - // "itemtemplate.edit.metadata.headers.language": "Lang", "itemtemplate.edit.metadata.headers.language": "ભાષા", - // "itemtemplate.edit.metadata.headers.value": "Value", "itemtemplate.edit.metadata.headers.value": "મૂલ્ય", - // "itemtemplate.edit.metadata.metadatafield": "Edit field", "itemtemplate.edit.metadata.metadatafield": "ક્ષેત્ર સંપાદિત કરો", - // "itemtemplate.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "itemtemplate.edit.metadata.metadatafield.error": "મેટાડેટા ક્ષેત્ર માન્ય કરતી વખતે ભૂલ આવી", - // "itemtemplate.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "itemtemplate.edit.metadata.metadatafield.invalid": "કૃપા કરીને માન્ય મેટાડેટા ક્ષેત્ર પસંદ કરો", - // "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "itemtemplate.edit.metadata.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા હતા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - // "itemtemplate.edit.metadata.notifications.discarded.title": "Changes discarded", "itemtemplate.edit.metadata.notifications.discarded.title": "ફેરફારો રદ", - // "itemtemplate.edit.metadata.notifications.error.title": "An error occurred", "itemtemplate.edit.metadata.notifications.error.title": "ભૂલ આવી", - // "itemtemplate.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "itemtemplate.edit.metadata.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને સાચવતા પહેલા ખાતરી કરો કે બધા ક્ષેત્રો માન્ય છે.", - // "itemtemplate.edit.metadata.notifications.invalid.title": "Metadata invalid", "itemtemplate.edit.metadata.notifications.invalid.title": "મેટાડેટા અમાન્ય", - // "itemtemplate.edit.metadata.notifications.outdated.content": "The item template you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", "itemtemplate.edit.metadata.notifications.outdated.content": "આઇટમ ટેમ્પલેટ તમે હાલમાં કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", - // "itemtemplate.edit.metadata.notifications.outdated.title": "Changes outdated", "itemtemplate.edit.metadata.notifications.outdated.title": "ફેરફારો જૂના", - // "itemtemplate.edit.metadata.notifications.saved.content": "Your changes to this item template's metadata were saved.", "itemtemplate.edit.metadata.notifications.saved.content": "આ આઇટમ ટેમ્પલેટના મેટાડેટા માટેના તમારા ફેરફારો સાચવવામાં આવ્યા હતા.", - // "itemtemplate.edit.metadata.notifications.saved.title": "Metadata saved", "itemtemplate.edit.metadata.notifications.saved.title": "મેટાડેટા સાચવ્યા", - // "itemtemplate.edit.metadata.reinstate-button": "Undo", "itemtemplate.edit.metadata.reinstate-button": "Undo", - // "itemtemplate.edit.metadata.reset-order-button": "Undo reorder", "itemtemplate.edit.metadata.reset-order-button": "ફેરફાર રદ કરો", - // "itemtemplate.edit.metadata.save-button": "Save", "itemtemplate.edit.metadata.save-button": "સાચવો", - // "journal.listelement.badge": "Journal", "journal.listelement.badge": "જર્નલ", - // "journal.page.description": "Description", "journal.page.description": "વર્ણન", - // "journal.page.edit": "Edit this item", "journal.page.edit": "આ આઇટમ સંપાદિત કરો", - // "journal.page.editor": "Editor-in-Chief", "journal.page.editor": "મુખ્ય સંપાદક", - // "journal.page.issn": "ISSN", "journal.page.issn": "ISSN", - // "journal.page.publisher": "Publisher", "journal.page.publisher": "પ્રકાશક", - // "journal.page.options": "Options", "journal.page.options": "વિકલ્પો", - // "journal.page.titleprefix": "Journal: ", - // TODO New key - Add a translation - "journal.page.titleprefix": "Journal: ", + "journal.page.titleprefix": "જર્નલ: ", - // "journal.search.results.head": "Journal Search Results", "journal.search.results.head": "જર્નલ શોધ પરિણામો", - // "journal-relationships.search.results.head": "Journal Search Results", "journal-relationships.search.results.head": "જર્નલ શોધ પરિણામો", - // "journal.search.title": "Journal Search", "journal.search.title": "જર્નલ શોધ", - // "journalissue.listelement.badge": "Journal Issue", "journalissue.listelement.badge": "જર્નલ ઇશ્યુ", - // "journalissue.page.description": "Description", "journalissue.page.description": "વર્ણન", - // "journalissue.page.edit": "Edit this item", "journalissue.page.edit": "આ આઇટમ સંપાદિત કરો", - // "journalissue.page.issuedate": "Issue Date", "journalissue.page.issuedate": "ઇશ્યુ તારીખ", - // "journalissue.page.journal-issn": "Journal ISSN", "journalissue.page.journal-issn": "જર્નલ ISSN", - // "journalissue.page.journal-title": "Journal Title", "journalissue.page.journal-title": "જર્નલ શીર્ષક", - // "journalissue.page.keyword": "Keywords", "journalissue.page.keyword": "કીવર્ડ્સ", - // "journalissue.page.number": "Number", "journalissue.page.number": "નંબર", - // "journalissue.page.options": "Options", "journalissue.page.options": "વિકલ્પો", - // "journalissue.page.titleprefix": "Journal Issue: ", - // TODO New key - Add a translation - "journalissue.page.titleprefix": "Journal Issue: ", + "journalissue.page.titleprefix": "જર્નલ ઇશ્યુ: ", - // "journalissue.search.results.head": "Journal Issue Search Results", "journalissue.search.results.head": "જર્નલ ઇશ્યુ શોધ પરિણામો", - // "journalvolume.listelement.badge": "Journal Volume", "journalvolume.listelement.badge": "જર્નલ વોલ્યુમ", - // "journalvolume.page.description": "Description", "journalvolume.page.description": "વર્ણન", - // "journalvolume.page.edit": "Edit this item", "journalvolume.page.edit": "આ આઇટમ સંપાદિત કરો", - // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "ઇશ્યુ તારીખ", - // "journalvolume.page.options": "Options", "journalvolume.page.options": "વિકલ્પો", - // "journalvolume.page.titleprefix": "Journal Volume: ", - // TODO New key - Add a translation - "journalvolume.page.titleprefix": "Journal Volume: ", + "journalvolume.page.titleprefix": "જર્નલ વોલ્યુમ: ", - // "journalvolume.page.volume": "Volume", "journalvolume.page.volume": "વોલ્યુમ", - // "journalvolume.search.results.head": "Journal Volume Search Results", "journalvolume.search.results.head": "જર્નલ વોલ્યુમ શોધ પરિણામો", - // "iiifsearchable.listelement.badge": "Document Media", "iiifsearchable.listelement.badge": "દસ્તાવેજ મીડિયા", - // "iiifsearchable.page.titleprefix": "Document: ", - // TODO New key - Add a translation - "iiifsearchable.page.titleprefix": "Document: ", + "iiifsearchable.page.titleprefix": "દસ્તાવેજ: ", - // "iiifsearchable.page.doi": "Permanent Link: ", - // TODO New key - Add a translation - "iiifsearchable.page.doi": "Permanent Link: ", + "iiifsearchable.page.doi": "કાયમી લિંક: ", - // "iiifsearchable.page.issue": "Issue: ", - // TODO New key - Add a translation - "iiifsearchable.page.issue": "Issue: ", + "iiifsearchable.page.issue": "મુદ્દો: ", - // "iiifsearchable.page.description": "Description: ", - // TODO New key - Add a translation - "iiifsearchable.page.description": "Description: ", + "iiifsearchable.page.description": "વર્ણન: ", - // "iiifviewer.fullscreen.notice": "Use full screen for better viewing.", "iiifviewer.fullscreen.notice": "સારા જોવાના અનુભવ માટે સંપૂર્ણ સ્ક્રીનનો ઉપયોગ કરો.", - // "iiif.listelement.badge": "Image Media", "iiif.listelement.badge": "છબી મીડિયા", - // "iiif.page.titleprefix": "Image: ", - // TODO New key - Add a translation - "iiif.page.titleprefix": "Image: ", + "iiif.page.titleprefix": "છબી: ", - // "iiif.page.doi": "Permanent Link: ", - // TODO New key - Add a translation - "iiif.page.doi": "Permanent Link: ", + "iiif.page.doi": "કાયમી લિંક: ", - // "iiif.page.issue": "Issue: ", - // TODO New key - Add a translation - "iiif.page.issue": "Issue: ", + "iiif.page.issue": "મુદ્દો: ", - // "iiif.page.description": "Description: ", - // TODO New key - Add a translation - "iiif.page.description": "Description: ", + "iiif.page.description": "વર્ણન: ", - // "loading.bitstream": "Loading bitstream...", "loading.bitstream": "બિટસ્ટ્રીમ લોડ થઈ રહ્યું છે...", - // "loading.bitstreams": "Loading bitstreams...", "loading.bitstreams": "બિટસ્ટ્રીમ્સ લોડ થઈ રહ્યા છે...", - // "loading.browse-by": "Loading items...", "loading.browse-by": "આઇટમ્સ લોડ થઈ રહ્યા છે...", - // "loading.browse-by-page": "Loading page...", "loading.browse-by-page": "પૃષ્ઠ લોડ થઈ રહ્યું છે...", - // "loading.collection": "Loading collection...", "loading.collection": "સંગ્રહ લોડ થઈ રહ્યો છે...", - // "loading.collections": "Loading collections...", "loading.collections": "સંગ્રહો લોડ થઈ રહ્યા છે...", - // "loading.content-source": "Loading content source...", "loading.content-source": "સામગ્રી સ્ત્રોત લોડ થઈ રહ્યો છે...", - // "loading.community": "Loading community...", "loading.community": "સમુદાય લોડ થઈ રહ્યો છે...", - // "loading.default": "Loading...", "loading.default": "લોડ થઈ રહ્યું છે...", - // "loading.item": "Loading item...", "loading.item": "આઇટમ લોડ થઈ રહ્યું છે...", - // "loading.items": "Loading items...", "loading.items": "આઇટમ્સ લોડ થઈ રહ્યા છે...", - // "loading.mydspace-results": "Loading items...", "loading.mydspace-results": "આઇટમ્સ લોડ થઈ રહ્યા છે...", - // "loading.objects": "Loading...", "loading.objects": "લોડ થઈ રહ્યું છે...", - // "loading.recent-submissions": "Loading recent submissions...", "loading.recent-submissions": "તાજેતરના સબમિશન લોડ થઈ રહ્યા છે...", - // "loading.search-results": "Loading search results...", "loading.search-results": "શોધ પરિણામો લોડ થઈ રહ્યા છે...", - // "loading.sub-collections": "Loading sub-collections...", "loading.sub-collections": "ઉપ-સંગ્રહો લોડ થઈ રહ્યા છે...", - // "loading.sub-communities": "Loading sub-communities...", "loading.sub-communities": "ઉપ-સમુદાયો લોડ થઈ રહ્યા છે...", - // "loading.top-level-communities": "Loading top-level communities...", "loading.top-level-communities": "ટોપ-લેવલ સમુદાયો લોડ થઈ રહ્યા છે...", - // "login.form.email": "Email address", "login.form.email": "ઇમેઇલ સરનામું", - // "login.form.forgot-password": "Have you forgotten your password?", "login.form.forgot-password": "શું તમે તમારો પાસવર્ડ ભૂલી ગયા છો?", - // "login.form.header": "Please log in to DSpace", "login.form.header": "કૃપા કરીને DSpace માં લોગિન કરો", - // "login.form.new-user": "New user? Click here to register.", "login.form.new-user": "નવો વપરાશકર્તા? નોંધણી માટે અહીં ક્લિક કરો.", - // "login.form.oidc": "Log in with OIDC", "login.form.oidc": "OIDC સાથે લોગિન કરો", - // "login.form.orcid": "Log in with ORCID", "login.form.orcid": "ORCID સાથે લોગિન કરો", - // "login.form.password": "Password", "login.form.password": "પાસવર્ડ", - // "login.form.saml": "Log in with SAML", "login.form.saml": "SAML સાથે લોગિન કરો", - // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Shibboleth સાથે લોગિન કરો", - // "login.form.submit": "Log in", "login.form.submit": "લોગિન કરો", - // "login.title": "Login", "login.title": "લોગિન", - // "login.breadcrumbs": "Login", "login.breadcrumbs": "લોગિન", - // "logout.form.header": "Log out from DSpace", "logout.form.header": "DSpace માંથી લોગ આઉટ કરો", - // "logout.form.submit": "Log out", "logout.form.submit": "લોગ આઉટ", - // "logout.title": "Logout", "logout.title": "લોગ આઉટ", - // "menu.header.nav.description": "Admin navigation bar", "menu.header.nav.description": "એડમિન નેવિગેશન બાર", - // "menu.header.admin": "Management", "menu.header.admin": "મેનેજમેન્ટ", - // "menu.header.image.logo": "Repository logo", "menu.header.image.logo": "રિપોઝિટરી લોગો", - // "menu.header.admin.description": "Management menu", "menu.header.admin.description": "મેનેજમેન્ટ મેનુ", - // "menu.section.access_control": "Access Control", "menu.section.access_control": "ઍક્સેસ કંટ્રોલ", - // "menu.section.access_control_authorizations": "Authorizations", "menu.section.access_control_authorizations": "અધિકૃતતાઓ", - // "menu.section.access_control_bulk": "Bulk Access Management", "menu.section.access_control_bulk": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", - // "menu.section.access_control_groups": "Groups", "menu.section.access_control_groups": "ગ્રુપ્સ", - // "menu.section.access_control_people": "People", "menu.section.access_control_people": "લોકો", - // "menu.section.reports": "Reports", "menu.section.reports": "અહેવાલો", - // "menu.section.reports.collections": "Filtered Collections", "menu.section.reports.collections": "ફિલ્ટર કરેલ સંગ્રહો", - // "menu.section.reports.queries": "Metadata Query", "menu.section.reports.queries": "મેટાડેટા ક્વેરી", - // "menu.section.admin_search": "Admin Search", "menu.section.admin_search": "એડમિન શોધ", - // "menu.section.browse_community": "This Community", "menu.section.browse_community": "આ સમુદાય", - // "menu.section.browse_community_by_author": "By Author", "menu.section.browse_community_by_author": "લેખક દ્વારા", - // "menu.section.browse_community_by_issue_date": "By Issue Date", "menu.section.browse_community_by_issue_date": "પ્રશ્ન તારીખ દ્વારા", - // "menu.section.browse_community_by_title": "By Title", "menu.section.browse_community_by_title": "શીર્ષક દ્વારા", - // "menu.section.browse_global": "All of DSpace", "menu.section.browse_global": "DSpace ના બધા", - // "menu.section.browse_global_by_author": "By Author", "menu.section.browse_global_by_author": "લેખક દ્વારા", - // "menu.section.browse_global_by_dateissued": "By Issue Date", "menu.section.browse_global_by_dateissued": "પ્રશ્ન તારીખ દ્વારા", - // "menu.section.browse_global_by_subject": "By Subject", "menu.section.browse_global_by_subject": "વિષય દ્વારા", - // "menu.section.browse_global_by_srsc": "By Subject Category", "menu.section.browse_global_by_srsc": "વિષય શ્રેણી દ્વારા", - // "menu.section.browse_global_by_nsi": "By Norwegian Science Index", "menu.section.browse_global_by_nsi": "નોર્વેજીયન સાયન્સ ઇન્ડેક્સ દ્વારા", - // "menu.section.browse_global_by_title": "By Title", "menu.section.browse_global_by_title": "શીર્ષક દ્વારા", - // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "સમુદાયો અને સંગ્રહો", - // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", "menu.section.browse_global_geospatial_map": "ભૌગોલિક સ્થાન દ્વારા (નકશો)", - // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "કંટ્રોલ પેનલ", - // "menu.section.curation_task": "Curation Task", "menu.section.curation_task": "ક્યુરેશન ટાસ્ક", - // "menu.section.edit": "Edit", "menu.section.edit": "સંપાદિત કરો", - // "menu.section.edit_collection": "Collection", "menu.section.edit_collection": "સંગ્રહ", - // "menu.section.edit_community": "Community", "menu.section.edit_community": "સમુદાય", - // "menu.section.edit_item": "Item", "menu.section.edit_item": "આઇટમ", - // "menu.section.export": "Export", "menu.section.export": "નિકાસ", - // "menu.section.export_collection": "Collection", "menu.section.export_collection": "સંગ્રહ", - // "menu.section.export_community": "Community", "menu.section.export_community": "સમુદાય", - // "menu.section.export_item": "Item", "menu.section.export_item": "આઇટમ", - // "menu.section.export_metadata": "Metadata", "menu.section.export_metadata": "મેટાડેટા", - // "menu.section.export_batch": "Batch Export (ZIP)", "menu.section.export_batch": "બેચ નિકાસ (ZIP)", - // "menu.section.icon.access_control": "Access Control menu section", "menu.section.icon.access_control": "ઍક્સેસ કંટ્રોલ મેનુ વિભાગ", - // "menu.section.icon.reports": "Reports menu section", "menu.section.icon.reports": "અહેવાલો મેનુ વિભાગ", - // "menu.section.icon.admin_search": "Admin search menu section", "menu.section.icon.admin_search": "એડમિન શોધ મેનુ વિભાગ", - // "menu.section.icon.control_panel": "Control Panel menu section", "menu.section.icon.control_panel": "કંટ્રોલ પેનલ મેનુ વિભાગ", - // "menu.section.icon.curation_tasks": "Curation Task menu section", "menu.section.icon.curation_tasks": "ક્યુરેશન ટાસ્ક મેનુ વિભાગ", - // "menu.section.icon.edit": "Edit menu section", "menu.section.icon.edit": "સંપાદિત કરો મેનુ વિભાગ", - // "menu.section.icon.export": "Export menu section", "menu.section.icon.export": "નિકાસ મેનુ વિભાગ", - // "menu.section.icon.find": "Find menu section", "menu.section.icon.find": "મેનુ વિભાગ શોધો", - // "menu.section.icon.health": "Health check menu section", "menu.section.icon.health": "હેલ્થ ચેક મેનુ વિભાગ", - // "menu.section.icon.import": "Import menu section", "menu.section.icon.import": "આયાત મેનુ વિભાગ", - // "menu.section.icon.new": "New menu section", "menu.section.icon.new": "નવું મેનુ વિભાગ", - // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "સાઇડબાર પિન કરો", - // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "સાઇડબાર અનપિન કરો", - // "menu.section.icon.notifications": "Notifications menu section", "menu.section.icon.notifications": "સૂચનાઓ મેનુ વિભાગ", - // "menu.section.import": "Import", "menu.section.import": "આયાત", - // "menu.section.import_batch": "Batch Import (ZIP)", "menu.section.import_batch": "બેચ આયાત (ZIP)", - // "menu.section.import_metadata": "Metadata", "menu.section.import_metadata": "મેટાડેટા", - // "menu.section.new": "New", "menu.section.new": "નવું", - // "menu.section.new_collection": "Collection", "menu.section.new_collection": "સંગ્રહ", - // "menu.section.new_community": "Community", "menu.section.new_community": "સમુદાય", - // "menu.section.new_item": "Item", "menu.section.new_item": "આઇટમ", - // "menu.section.new_item_version": "Item Version", "menu.section.new_item_version": "આઇટમ આવૃત્તિ", - // "menu.section.new_process": "Process", "menu.section.new_process": "પ્રક્રિયા", - // "menu.section.notifications": "Notifications", "menu.section.notifications": "સૂચનાઓ", - // "menu.section.quality-assurance": "Quality Assurance", "menu.section.quality-assurance": "ગુણવત્તા ખાતરી", - // "menu.section.notifications_publication-claim": "Publication Claim", "menu.section.notifications_publication-claim": "પ્રકાશન દાવો", - // "menu.section.pin": "Pin sidebar", "menu.section.pin": "સાઇડબાર પિન કરો", - // "menu.section.unpin": "Unpin sidebar", "menu.section.unpin": "સાઇડબાર અનપિન કરો", - // "menu.section.processes": "Processes", "menu.section.processes": "પ્રક્રિયાઓ", - // "menu.section.health": "Health", "menu.section.health": "હેલ્થ", - // "menu.section.registries": "Registries", "menu.section.registries": "રજિસ્ટ્રીઓ", - // "menu.section.registries_format": "Format", "menu.section.registries_format": "ફોર્મેટ", - // "menu.section.registries_metadata": "Metadata", "menu.section.registries_metadata": "મેટાડેટા", - // "menu.section.statistics": "Statistics", "menu.section.statistics": "આંકડા", - // "menu.section.statistics_task": "Statistics Task", "menu.section.statistics_task": "આંકડા કાર્ય", - // "menu.section.toggle.access_control": "Toggle Access Control section", "menu.section.toggle.access_control": "ઍક્સેસ કંટ્રોલ વિભાગ ટૉગલ કરો", - // "menu.section.toggle.reports": "Toggle Reports section", "menu.section.toggle.reports": "અહેવાલો વિભાગ ટૉગલ કરો", - // "menu.section.toggle.control_panel": "Toggle Control Panel section", "menu.section.toggle.control_panel": "કંટ્રોલ પેનલ વિભાગ ટૉગલ કરો", - // "menu.section.toggle.curation_task": "Toggle Curation Task section", "menu.section.toggle.curation_task": "ક્યુરેશન ટાસ્ક વિભાગ ટૉગલ કરો", - // "menu.section.toggle.edit": "Toggle Edit section", "menu.section.toggle.edit": "સંપાદન વિભાગ ટૉગલ કરો", - // "menu.section.toggle.export": "Toggle Export section", "menu.section.toggle.export": "નિકાસ વિભાગ ટૉગલ કરો", - // "menu.section.toggle.find": "Toggle Find section", "menu.section.toggle.find": "વિભાગ શોધો ટૉગલ કરો", - // "menu.section.toggle.import": "Toggle Import section", "menu.section.toggle.import": "આયાત વિભાગ ટૉગલ કરો", - // "menu.section.toggle.new": "Toggle New section", "menu.section.toggle.new": "નવો વિભાગ ટૉગલ કરો", - // "menu.section.toggle.registries": "Toggle Registries section", "menu.section.toggle.registries": "રજિસ્ટ્રીઓ વિભાગ ટૉગલ કરો", - // "menu.section.toggle.statistics_task": "Toggle Statistics Task section", "menu.section.toggle.statistics_task": "આંકડા કાર્ય વિભાગ ટૉગલ કરો", - // "menu.section.workflow": "Administer Workflow", "menu.section.workflow": "વર્કફ્લો મેનેજ કરો", - // "metadata-export-search.tooltip": "Export search results as CSV", "metadata-export-search.tooltip": "શોધ પરિણામો CSV તરીકે નિકાસ કરો", - // "metadata-export-search.submit.success": "The export was started successfully", "metadata-export-search.submit.success": "નિકાસ સફળતાપૂર્વક શરૂ થયું", - // "metadata-export-search.submit.error": "Starting the export has failed", "metadata-export-search.submit.error": "નિકાસ શરૂ કરવામાં નિષ્ફળ", - // "mydspace.breadcrumbs": "MyDSpace", "mydspace.breadcrumbs": "MyDSpace", - // "mydspace.description": "", "mydspace.description": "", - // "mydspace.messages.controller-help": "Select this option to send a message to item's submitter.", "mydspace.messages.controller-help": "આ વિકલ્પ પસંદ કરો આઇટમના સબમિટરને સંદેશ મોકલવા માટે.", - // "mydspace.messages.description-placeholder": "Insert your message here...", "mydspace.messages.description-placeholder": "તમારો સંદેશ અહીં દાખલ કરો...", - // "mydspace.messages.hide-msg": "Hide message", "mydspace.messages.hide-msg": "સંદેશ છુપાવો", - // "mydspace.messages.mark-as-read": "Mark as read", "mydspace.messages.mark-as-read": "વાંચેલ તરીકે ચિહ્નિત કરો", - // "mydspace.messages.mark-as-unread": "Mark as unread", "mydspace.messages.mark-as-unread": "ન વાંચેલ તરીકે ચિહ્નિત કરો", - // "mydspace.messages.no-content": "No content.", "mydspace.messages.no-content": "કોઈ સામગ્રી નથી.", - // "mydspace.messages.no-messages": "No messages yet.", "mydspace.messages.no-messages": "હજી સુધી કોઈ સંદેશ નથી.", - // "mydspace.messages.send-btn": "Send", "mydspace.messages.send-btn": "મોકલો", - // "mydspace.messages.show-msg": "Show message", "mydspace.messages.show-msg": "સંદેશ બતાવો", - // "mydspace.messages.subject-placeholder": "Subject...", "mydspace.messages.subject-placeholder": "વિષય...", - // "mydspace.messages.submitter-help": "Select this option to send a message to controller.", "mydspace.messages.submitter-help": "આ વિકલ્પ પસંદ કરો નિયંત્રકને સંદેશ મોકલવા માટે.", - // "mydspace.messages.title": "Messages", "mydspace.messages.title": "સંદેશો", - // "mydspace.messages.to": "To", "mydspace.messages.to": "પ્રતિ", - // "mydspace.new-submission": "New submission", "mydspace.new-submission": "નવું સબમિશન", - // "mydspace.new-submission-external": "Import metadata from external source", "mydspace.new-submission-external": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", - // "mydspace.new-submission-external-short": "Import metadata", "mydspace.new-submission-external-short": "મેટાડેટા આયાત કરો", - // "mydspace.results.head": "Your submissions", "mydspace.results.head": "તમારા સબમિશન", - // "mydspace.results.no-abstract": "No Abstract", "mydspace.results.no-abstract": "કોઈ અભ્યાસ નથી", - // "mydspace.results.no-authors": "No Authors", "mydspace.results.no-authors": "કોઈ લેખકો નથી", - // "mydspace.results.no-collections": "No Collections", "mydspace.results.no-collections": "કોઈ સંગ્રહો નથી", - // "mydspace.results.no-date": "No Date", "mydspace.results.no-date": "કોઈ તારીખ નથી", - // "mydspace.results.no-files": "No Files", "mydspace.results.no-files": "કોઈ ફાઇલો નથી", - // "mydspace.results.no-results": "There were no items to show", "mydspace.results.no-results": "બતાવા માટે કોઈ આઇટમ નથી", - // "mydspace.results.no-title": "No title", "mydspace.results.no-title": "કોઈ શીર્ષક નથી", - // "mydspace.results.no-uri": "No URI", "mydspace.results.no-uri": "કોઈ URI નથી", - // "mydspace.search-form.placeholder": "Search in MyDSpace...", "mydspace.search-form.placeholder": "MyDSpace માં શોધો...", - // "mydspace.show.workflow": "Workflow tasks", "mydspace.show.workflow": "વર્કફ્લો કાર્ય", - // "mydspace.show.workspace": "Your submissions", "mydspace.show.workspace": "તમારા સબમિશન", - // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "સુપરવિઝ્ડ આઇટમ્સ", - // "mydspace.status": "My DSpace status:", - // TODO New key - Add a translation - "mydspace.status": "My DSpace status:", - - // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "આર્કાઇવ્ડ", - // "mydspace.status.mydspaceValidation": "Validation", "mydspace.status.mydspaceValidation": "માન્યતા", - // "mydspace.status.mydspaceWaitingController": "Waiting for reviewer", "mydspace.status.mydspaceWaitingController": "સમીક્ષકની રાહ જોવી", - // "mydspace.status.mydspaceWorkflow": "Workflow", "mydspace.status.mydspaceWorkflow": "વર્કફ્લો", - // "mydspace.status.mydspaceWorkspace": "Workspace", "mydspace.status.mydspaceWorkspace": "વર્કસ્પેસ", - // "mydspace.title": "MyDSpace", "mydspace.title": "MyDSpace", - // "mydspace.upload.upload-failed": "Error creating new workspace. Please verify the content uploaded before retry.", "mydspace.upload.upload-failed": "નવું વર્કસ્પેસ બનાવવામાં ભૂલ. કૃપા કરીને ફરી પ્રયાસ કરતા પહેલા અપલોડ કરેલ સામગ્રીને ચકાસો.", - // "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.", "mydspace.upload.upload-failed-manyentries": "અપ્રક્રિય ફાઇલ. ઘણી એન્ટ્રીઓ શોધવામાં આવી છે પરંતુ ફાઇલ માટે માત્ર એક જ મંજૂરી છે.", - // "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.", "mydspace.upload.upload-failed-moreonefile": "અપ્રક્રિય વિનંતી. ફક્ત એક જ ફાઇલ મંજૂર છે.", - // "mydspace.upload.upload-multiple-successful": "{{qty}} new workspace items created.", "mydspace.upload.upload-multiple-successful": "{{qty}} નવા વર્કસ્પેસ આઇટમ્સ બનાવવામાં આવ્યા.", - // "mydspace.view-btn": "View", "mydspace.view-btn": "જુઓ", - // "nav.expandable-navbar-section-suffix": "(submenu)", "nav.expandable-navbar-section-suffix": "(ઉપમેનુ)", - // "notification.suggestion": "We found {{count}} publications in the {{source}} that seems to be related to your profile.
", "notification.suggestion": "અમે {{source}} માં {{count}} પ્રકાશનો શોધ્યા છે જે તમારા પ્રોફાઇલ સાથે સંબંધિત લાગે છે.
", - // "notification.suggestion.review": "review the suggestions", "notification.suggestion.review": "સૂચનોની સમીક્ષા કરો", - // "notification.suggestion.please": "Please", "notification.suggestion.please": "કૃપા કરીને", - // "nav.browse.header": "All of DSpace", "nav.browse.header": "DSpace ના બધા", - // "nav.community-browse.header": "By Community", "nav.community-browse.header": "સમુદાય દ્વારા", - // "nav.context-help-toggle": "Toggle context help", "nav.context-help-toggle": "સંદર્ભ મદદ ટૉગલ કરો", - // "nav.language": "Language switch", "nav.language": "ભાષા સ્વિચ", - // "nav.login": "Log In", "nav.login": "લોગિન", - // "nav.user-profile-menu-and-logout": "User profile menu and log out", "nav.user-profile-menu-and-logout": "વપરાશકર્તા પ્રોફાઇલ મેનુ અને લોગ આઉટ", - // "nav.logout": "Log Out", "nav.logout": "લોગ આઉટ", - // "nav.main.description": "Main navigation bar", "nav.main.description": "મુખ્ય નેવિગેશન બાર", - // "nav.mydspace": "MyDSpace", "nav.mydspace": "MyDSpace", - // "nav.profile": "Profile", "nav.profile": "પ્રોફાઇલ", - // "nav.search": "Search", "nav.search": "શોધો", - // "nav.search.button": "Submit search", "nav.search.button": "શોધ સબમિટ કરો", - // "nav.statistics.header": "Statistics", "nav.statistics.header": "આંકડા", - // "nav.stop-impersonating": "Stop impersonating EPerson", "nav.stop-impersonating": "EPerson નું અનુસરણ બંધ કરો", - // "nav.subscriptions": "Subscriptions", "nav.subscriptions": "સબ્સ્ક્રિપ્શન્સ", - // "nav.toggle": "Toggle navigation", "nav.toggle": "નેવિગેશન ટૉગલ કરો", - // "nav.user.description": "User profile bar", "nav.user.description": "વપરાશકર્તા પ્રોફાઇલ બાર", - // "listelement.badge.dso-type": "Item type:", - // TODO New key - Add a translation - "listelement.badge.dso-type": "Item type:", - - // "none.listelement.badge": "Item", "none.listelement.badge": "આઇટમ", - // "publication-claim.title": "Publication claim", "publication-claim.title": "પ્રકાશન દાવો", - // "publication-claim.source.description": "Below you can see all the sources.", "publication-claim.source.description": "નીચે તમે બધા સ્ત્રોતો જોઈ શકો છો.", - // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "ગુણવત્તા ખાતરી", - // "quality-assurance.topics.description": "Below you can see all the topics received from the subscriptions to {{source}}.", "quality-assurance.topics.description": "નીચે તમે {{source}} માટેની સબ્સ્ક્રિપ્શન્સમાંથી પ્રાપ્ત થયેલા બધા વિષયો જોઈ શકો છો.", - // "quality-assurance.source.description": "Below you can see all the notification's sources.", "quality-assurance.source.description": "નીચે તમે સૂચના ના સ્ત્રોતો જોઈ શકો છો.", - // "quality-assurance.topics": "Current Topics", "quality-assurance.topics": "વર્તમાન વિષયો", - // "quality-assurance.source": "Current Sources", "quality-assurance.source": "વર્તમાન સ્ત્રોતો", - // "quality-assurance.table.topic": "Topic", "quality-assurance.table.topic": "વિષય", - // "quality-assurance.table.source": "Source", "quality-assurance.table.source": "સ્ત્રોત", - // "quality-assurance.table.last-event": "Last Event", "quality-assurance.table.last-event": "છેલ્લી ઘટના", - // "quality-assurance.table.actions": "Actions", "quality-assurance.table.actions": "ક્રિયાઓ", - // "quality-assurance.source-list.button.detail": "Show topics for {{param}}", "quality-assurance.source-list.button.detail": "{{param}} માટેના વિષયો બતાવો", - // "quality-assurance.topics-list.button.detail": "Show suggestions for {{param}}", "quality-assurance.topics-list.button.detail": "{{param}} માટેની સૂચનો બતાવો", - // "quality-assurance.noTopics": "No topics found.", "quality-assurance.noTopics": "કોઈ વિષયો મળ્યા નથી.", - // "quality-assurance.noSource": "No sources found.", "quality-assurance.noSource": "કોઈ સ્ત્રોતો મળ્યા નથી.", - // "notifications.events.title": "Quality Assurance Suggestions", "notifications.events.title": "ગુણવત્તા ખાતરી સૂચનો", - // "quality-assurance.topic.error.service.retrieve": "An error occurred while loading the Quality Assurance topics", "quality-assurance.topic.error.service.retrieve": "ગુણવત્તા ખાતરી વિષયો લોડ કરતી વખતે ભૂલ આવી", - // "quality-assurance.source.error.service.retrieve": "An error occurred while loading the Quality Assurance source", "quality-assurance.source.error.service.retrieve": "ગુણવત્તા ખાતરી સ્ત્રોત લોડ કરતી વખતે ભૂલ આવી", - // "quality-assurance.loading": "Loading ...", "quality-assurance.loading": "લોડ થઈ રહ્યું છે ...", - // "quality-assurance.events.topic": "Topic:", - // TODO New key - Add a translation - "quality-assurance.events.topic": "Topic:", + "quality-assurance.events.topic": "વિષય:", - // "quality-assurance.noEvents": "No suggestions found.", "quality-assurance.noEvents": "કોઈ સૂચનો મળ્યા નથી.", - // "quality-assurance.event.table.trust": "Trust", "quality-assurance.event.table.trust": "વિશ્વાસ", - // "quality-assurance.event.table.publication": "Publication", "quality-assurance.event.table.publication": "પ્રકાશન", - // "quality-assurance.event.table.details": "Details", "quality-assurance.event.table.details": "વિગતો", - // "quality-assurance.event.table.project-details": "Project details", "quality-assurance.event.table.project-details": "પ્રોજેક્ટ વિગતો", - // "quality-assurance.event.table.reasons": "Reasons", "quality-assurance.event.table.reasons": "કારણો", - // "quality-assurance.event.table.actions": "Actions", "quality-assurance.event.table.actions": "ક્રિયાઓ", - // "quality-assurance.event.action.accept": "Accept suggestion", "quality-assurance.event.action.accept": "સૂચન સ્વીકારો", - // "quality-assurance.event.action.ignore": "Ignore suggestion", "quality-assurance.event.action.ignore": "સૂચન અવગણો", - // "quality-assurance.event.action.undo": "Delete", "quality-assurance.event.action.undo": "કાઢી નાખો", - // "quality-assurance.event.action.reject": "Reject suggestion", "quality-assurance.event.action.reject": "સૂચન નકારી કાઢો", - // "quality-assurance.event.action.import": "Import project and accept suggestion", "quality-assurance.event.action.import": "પ્રોજેક્ટ આયાત કરો અને સૂચન સ્વીકારો", - // "quality-assurance.event.table.pidtype": "PID Type:", - // TODO New key - Add a translation - "quality-assurance.event.table.pidtype": "PID Type:", + "quality-assurance.event.table.pidtype": "PID પ્રકાર:", - // "quality-assurance.event.table.pidvalue": "PID Value:", - // TODO New key - Add a translation - "quality-assurance.event.table.pidvalue": "PID Value:", + "quality-assurance.event.table.pidvalue": "PID મૂલ્ય:", - // "quality-assurance.event.table.subjectValue": "Subject Value:", - // TODO New key - Add a translation - "quality-assurance.event.table.subjectValue": "Subject Value:", + "quality-assurance.event.table.subjectValue": "વિષય મૂલ્ય:", - // "quality-assurance.event.table.abstract": "Abstract:", - // TODO New key - Add a translation - "quality-assurance.event.table.abstract": "Abstract:", + "quality-assurance.event.table.abstract": "અભ્યાસ:", - // "quality-assurance.event.table.suggestedProject": "OpenAIRE Suggested Project data", "quality-assurance.event.table.suggestedProject": "OpenAIRE સૂચિત પ્રોજેક્ટ ડેટા", - // "quality-assurance.event.table.project": "Project title:", - // TODO New key - Add a translation - "quality-assurance.event.table.project": "Project title:", + "quality-assurance.event.table.project": "પ્રોજેક્ટ શીર્ષક:", - // "quality-assurance.event.table.acronym": "Acronym:", - // TODO New key - Add a translation - "quality-assurance.event.table.acronym": "Acronym:", + "quality-assurance.event.table.acronym": "અન્ય નામ:", - // "quality-assurance.event.table.code": "Code:", - // TODO New key - Add a translation - "quality-assurance.event.table.code": "Code:", + "quality-assurance.event.table.code": "કોડ:", - // "quality-assurance.event.table.funder": "Funder:", - // TODO New key - Add a translation - "quality-assurance.event.table.funder": "Funder:", + "quality-assurance.event.table.funder": "ફંડર:", - // "quality-assurance.event.table.fundingProgram": "Funding program:", - // TODO New key - Add a translation - "quality-assurance.event.table.fundingProgram": "Funding program:", + "quality-assurance.event.table.fundingProgram": "ફંડિંગ પ્રોગ્રામ:", - // "quality-assurance.event.table.jurisdiction": "Jurisdiction:", - // TODO New key - Add a translation - "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + "quality-assurance.event.table.jurisdiction": "ક્ષેત્રાધિકાર:", - // "quality-assurance.events.back": "Back to topics", "quality-assurance.events.back": "વિષયો પર પાછા જાઓ", - // "quality-assurance.events.back-to-sources": "Back to sources", "quality-assurance.events.back-to-sources": "સ્ત્રોતો પર પાછા જાઓ", - // "quality-assurance.event.table.less": "Show less", "quality-assurance.event.table.less": "ઓછું બતાવો", - // "quality-assurance.event.table.more": "Show more", "quality-assurance.event.table.more": "વધુ બતાવો", - // "quality-assurance.event.project.found": "Bound to the local record:", - // TODO New key - Add a translation - "quality-assurance.event.project.found": "Bound to the local record:", + "quality-assurance.event.project.found": "સ્થાનિક રેકોર્ડ સાથે જોડાયેલ:", - // "quality-assurance.event.project.notFound": "No local record found", "quality-assurance.event.project.notFound": "કોઈ સ્થાનિક રેકોર્ડ મળ્યો નથી", - // "quality-assurance.event.sure": "Are you sure?", "quality-assurance.event.sure": "શું તમે ખાતરી કરો છો?", - // "quality-assurance.event.ignore.description": "This operation can't be undone. Ignore this suggestion?", "quality-assurance.event.ignore.description": "આ ક્રિયા પાછી ફરી શકશે નહીં. આ સૂચન અવગણો?", - // "quality-assurance.event.undo.description": "This operation can't be undone!", "quality-assurance.event.undo.description": "આ ક્રિયા પાછી ફરી શકશે નહીં!", - // "quality-assurance.event.reject.description": "This operation can't be undone. Reject this suggestion?", "quality-assurance.event.reject.description": "આ ક્રિયા પાછી ફરી શકશે નહીં. આ સૂચન નકારી કાઢો?", - // "quality-assurance.event.accept.description": "No DSpace project selected. A new project will be created based on the suggestion data.", "quality-assurance.event.accept.description": "કોઈ DSpace પ્રોજેક્ટ પસંદ કરેલ નથી. સૂચન ડેટા પર આધારિત નવો પ્રોજેક્ટ બનાવવામાં આવશે.", - // "quality-assurance.event.action.cancel": "Cancel", "quality-assurance.event.action.cancel": "રદ કરો", - // "quality-assurance.event.action.saved": "Your decision has been saved successfully.", "quality-assurance.event.action.saved": "તમારો નિર્ણય સફળતાપૂર્વક સાચવવામાં આવ્યો છે.", - // "quality-assurance.event.action.error": "An error has occurred. Your decision has not been saved.", "quality-assurance.event.action.error": "ભૂલ આવી. તમારો નિર્ણય સાચવવામાં આવ્યો નથી.", - // "quality-assurance.event.modal.project.title": "Choose a project to bound", "quality-assurance.event.modal.project.title": "જોડવા માટે પ્રોજેક્ટ પસંદ કરો", - // "quality-assurance.event.modal.project.publication": "Publication:", - // TODO New key - Add a translation - "quality-assurance.event.modal.project.publication": "Publication:", + "quality-assurance.event.modal.project.publication": "પ્રકાશન:", - // "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", - // TODO New key - Add a translation - "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + "quality-assurance.event.modal.project.bountToLocal": "સ્થાનિક રેકોર્ડ સાથે જોડાયેલ:", - // "quality-assurance.event.modal.project.select": "Project search", "quality-assurance.event.modal.project.select": "પ્રોજેક્ટ શોધ", - // "quality-assurance.event.modal.project.search": "Search", "quality-assurance.event.modal.project.search": "શોધો", - // "quality-assurance.event.modal.project.clear": "Clear", "quality-assurance.event.modal.project.clear": "સાફ કરો", - // "quality-assurance.event.modal.project.cancel": "Cancel", "quality-assurance.event.modal.project.cancel": "રદ કરો", - // "quality-assurance.event.modal.project.bound": "Bound project", "quality-assurance.event.modal.project.bound": "જોડાયેલ પ્રોજેક્ટ", - // "quality-assurance.event.modal.project.remove": "Remove", "quality-assurance.event.modal.project.remove": "દૂર કરો", - // "quality-assurance.event.modal.project.placeholder": "Enter a project name", "quality-assurance.event.modal.project.placeholder": "પ્રોજેક્ટ નામ દાખલ કરો", - // "quality-assurance.event.modal.project.notFound": "No project found.", "quality-assurance.event.modal.project.notFound": "કોઈ પ્રોજેક્ટ મળ્યો નથી.", - // "quality-assurance.event.project.bounded": "The project has been linked successfully.", "quality-assurance.event.project.bounded": "પ્રોજેક્ટ સફળતાપૂર્વક જોડાયેલ છે.", - // "quality-assurance.event.project.removed": "The project has been successfully unlinked.", "quality-assurance.event.project.removed": "પ્રોજેક્ટ સફળતાપૂર્વક અનલિંક કરવામાં આવ્યો છે.", - // "quality-assurance.event.project.error": "An error has occurred. No operation performed.", "quality-assurance.event.project.error": "ભૂલ આવી. કોઈ ક્રિયા કરવામાં આવી નથી.", - // "quality-assurance.event.reason": "Reason", "quality-assurance.event.reason": "કારણ", - // "orgunit.listelement.badge": "Organizational Unit", "orgunit.listelement.badge": "સંસ્થાકીય એકમ", - // "orgunit.listelement.no-title": "Untitled", "orgunit.listelement.no-title": "શીર્ષક વિના", - // "orgunit.page.city": "City", "orgunit.page.city": "શહેર", - // "orgunit.page.country": "Country", "orgunit.page.country": "દેશ", - // "orgunit.page.dateestablished": "Date established", "orgunit.page.dateestablished": "સ્થાપના તારીખ", - // "orgunit.page.description": "Description", "orgunit.page.description": "વર્ણન", - // "orgunit.page.edit": "Edit this item", "orgunit.page.edit": "આ આઇટમ સંપાદિત કરો", - // "orgunit.page.id": "ID", "orgunit.page.id": "ID", - // "orgunit.page.options": "Options", "orgunit.page.options": "વિકલ્પો", - // "orgunit.page.titleprefix": "Organizational Unit: ", - // TODO New key - Add a translation - "orgunit.page.titleprefix": "Organizational Unit: ", + "orgunit.page.titleprefix": "સંસ્થાકીય એકમ: ", - // "orgunit.page.ror": "ROR Identifier", "orgunit.page.ror": "ROR Identifier", - // "orgunit.search.results.head": "Organizational Unit Search Results", "orgunit.search.results.head": "સંસ્થાકીય એકમ શોધ પરિણામો", - // "pagination.options.description": "Pagination options", "pagination.options.description": "પેજિનેશન વિકલ્પો", - // "pagination.results-per-page": "Results Per Page", "pagination.results-per-page": "પ્રતિ પૃષ્ઠ પરિણામો", - // "pagination.showing.detail": "{{ range }} of {{ total }}", "pagination.showing.detail": "{{ range }} માંથી {{ total }}", - // "pagination.showing.label": "Now showing ", "pagination.showing.label": "હાલમાં બતાવી રહ્યા છે ", - // "pagination.sort-direction": "Sort Options", "pagination.sort-direction": "સૉર્ટ વિકલ્પો", - // "person.listelement.badge": "Person", "person.listelement.badge": "વ્યક્તિ", - // "person.listelement.no-title": "No name found", "person.listelement.no-title": "કોઈ નામ મળ્યું નથી", - // "person.page.birthdate": "Birth Date", "person.page.birthdate": "જન્મ તારીખ", - // "person.page.edit": "Edit this item", "person.page.edit": "આ આઇટમ સંપાદિત કરો", - // "person.page.email": "Email Address", "person.page.email": "ઇમેઇલ સરનામું", - // "person.page.firstname": "First Name", "person.page.firstname": "પ્રથમ નામ", - // "person.page.jobtitle": "Job Title", "person.page.jobtitle": "નોકરીનું શીર્ષક", - // "person.page.lastname": "Last Name", "person.page.lastname": "છેલ્લું નામ", - // "person.page.name": "Name", "person.page.name": "નામ", - // "person.page.link.full": "Show all metadata", "person.page.link.full": "બધા મેટાડેટા બતાવો", - // "person.page.options": "Options", "person.page.options": "વિકલ્પો", - // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", - // "person.page.staffid": "Staff ID", "person.page.staffid": "સ્ટાફ ID", - // "person.page.titleprefix": "Person: ", - // TODO New key - Add a translation - "person.page.titleprefix": "Person: ", + "person.page.titleprefix": "વ્યક્તિ: ", - // "person.search.results.head": "Person Search Results", "person.search.results.head": "વ્યક્તિ શોધ પરિણામો", - // "person-relationships.search.results.head": "Person Search Results", "person-relationships.search.results.head": "વ્યક્તિ શોધ પરિણામો", - // "person.search.title": "Person Search", "person.search.title": "વ્યક્તિ શોધ", - // "process.new.select-parameters": "Parameters", "process.new.select-parameters": "પરિમાણો", - // "process.new.select-parameter": "Select parameter", "process.new.select-parameter": "પરિમાણ પસંદ કરો", - // "process.new.add-parameter": "Add a parameter...", "process.new.add-parameter": "પરિમાણ ઉમેરો...", - // "process.new.delete-parameter": "Delete parameter", "process.new.delete-parameter": "પરિમાણ કાઢી નાખો", - // "process.new.parameter.label": "Parameter value", "process.new.parameter.label": "પરિમાણ મૂલ્ય", - // "process.new.cancel": "Cancel", "process.new.cancel": "રદ કરો", - // "process.new.submit": "Save", "process.new.submit": "સાચવો", - // "process.new.select-script": "Script", "process.new.select-script": "સ્ક્રિપ્ટ", - // "process.new.select-script.placeholder": "Choose a script...", "process.new.select-script.placeholder": "સ્ક્રિપ્ટ પસંદ કરો...", - // "process.new.select-script.required": "Script is required", "process.new.select-script.required": "સ્ક્રિપ્ટ જરૂરી છે", - // "process.new.parameter.file.upload-button": "Select file...", "process.new.parameter.file.upload-button": "ફાઇલ પસંદ કરો...", - // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "કૃપા કરીને ફાઇલ પસંદ કરો", - // "process.new.parameter.integer.required": "Parameter value is required", "process.new.parameter.integer.required": "પરિમાણ મૂલ્ય જરૂરી છે", - // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "પરિમાણ મૂલ્ય જરૂરી છે", - // "process.new.parameter.type.value": "value", "process.new.parameter.type.value": "મૂલ્ય", - // "process.new.parameter.type.file": "file", "process.new.parameter.type.file": "ફાઇલ", - // "process.new.parameter.required.missing": "The following parameters are required but still missing:", - // TODO New key - Add a translation - "process.new.parameter.required.missing": "The following parameters are required but still missing:", + "process.new.parameter.required.missing": "નીચેના પરિમાણો જરૂરી છે પરંતુ હજી સુધી ગૂમ છે:", - // "process.new.notification.success.title": "Success", "process.new.notification.success.title": "સફળતા", - // "process.new.notification.success.content": "The process was successfully created", "process.new.notification.success.content": "પ્રક્રિયા સફળતાપૂર્વક બનાવવામાં આવી", - // "process.new.notification.error.title": "Error", "process.new.notification.error.title": "ભૂલ", - // "process.new.notification.error.content": "An error occurred while creating this process", "process.new.notification.error.content": "આ પ્રક્રિયા બનાવતી વખતે ભૂલ આવી", - // "process.new.notification.error.max-upload.content": "The file exceeds the maximum upload size", "process.new.notification.error.max-upload.content": "ફાઇલ મહત્તમ અપલોડ કદથી વધુ છે", - // "process.new.header": "Create a new process", "process.new.header": "નવી પ્રક્રિયા બનાવો", - // "process.new.title": "Create a new process", "process.new.title": "નવી પ્રક્રિયા બનાવો", - // "process.new.breadcrumbs": "Create a new process", "process.new.breadcrumbs": "નવી પ્રક્રિયા બનાવો", - // "process.detail.arguments": "Arguments", "process.detail.arguments": "દલીલો", - // "process.detail.arguments.empty": "This process doesn't contain any arguments", "process.detail.arguments.empty": "આ પ્રક્રિયામાં કોઈ દલીલો નથી", - // "process.detail.back": "Back", "process.detail.back": "પાછા", - // "process.detail.output": "Process Output", "process.detail.output": "પ્રક્રિયા આઉટપુટ", - // "process.detail.logs.button": "Retrieve process output", "process.detail.logs.button": "પ્રક્રિયા આઉટપુટ મેળવો", - // "process.detail.logs.loading": "Retrieving", "process.detail.logs.loading": "મેળવી રહ્યા છે", - // "process.detail.logs.none": "This process has no output", "process.detail.logs.none": "આ પ્રક્રિયામાં કોઈ આઉટપુટ નથી", - // "process.detail.output-files": "Output Files", "process.detail.output-files": "આઉટપુટ ફાઇલો", - // "process.detail.output-files.empty": "This process doesn't contain any output files", "process.detail.output-files.empty": "આ પ્રક્રિયામાં કોઈ આઉટપુટ ફાઇલો નથી", - // "process.detail.script": "Script", "process.detail.script": "સ્ક્રિપ્ટ", - // "process.detail.title": "Process: {{ id }} - {{ name }}", - // TODO New key - Add a translation - "process.detail.title": "Process: {{ id }} - {{ name }}", + "process.detail.title": "પ્રક્રિયા: {{ id }} - {{ name }}", - // "process.detail.start-time": "Start time", "process.detail.start-time": "પ્રારંભ સમય", - // "process.detail.end-time": "Finish time", "process.detail.end-time": "સમાપ્તિ સમય", - // "process.detail.status": "Status", "process.detail.status": "સ્થિતિ", - // "process.detail.create": "Create similar process", "process.detail.create": "સમાન પ્રક્રિયા બનાવો", - // "process.detail.actions": "Actions", "process.detail.actions": "ક્રિયાઓ", - // "process.detail.delete.button": "Delete process", "process.detail.delete.button": "પ્રક્રિયા કાઢી નાખો", - // "process.detail.delete.header": "Delete process", "process.detail.delete.header": "પ્રક્રિયા કાઢી નાખો", - // "process.detail.delete.body": "Are you sure you want to delete the current process?", "process.detail.delete.body": "શું તમે વર્તમાન પ્રક્રિયા કાઢી નાખવા માંગો છો?", - // "process.detail.delete.cancel": "Cancel", "process.detail.delete.cancel": "રદ કરો", - // "process.detail.delete.confirm": "Delete process", "process.detail.delete.confirm": "પ્રક્રિયા કાઢી નાખો", - // "process.detail.delete.success": "The process was successfully deleted.", "process.detail.delete.success": "પ્રક્રિયા સફળતાપૂર્વક કાઢી નાખવામાં આવી.", - // "process.detail.delete.error": "Something went wrong when deleting the process", "process.detail.delete.error": "પ્રક્રિયા કાઢી નાખતી વખતે કંઈક ખોટું થયું", - // "process.detail.refreshing": "Auto-refreshing…", "process.detail.refreshing": "ઓટો-રિફ્રેશ થઈ રહ્યું છે…", - // "process.overview.table.completed.info": "Finish time (UTC)", "process.overview.table.completed.info": "સમાપ્તિ સમય (UTC)", - // "process.overview.table.completed.title": "Succeeded processes", "process.overview.table.completed.title": "સફળ પ્રક્રિયાઓ", - // "process.overview.table.empty": "No matching processes found.", "process.overview.table.empty": "કોઈ મેળ ખાતી પ્રક્રિયાઓ મળી નથી.", - // "process.overview.table.failed.info": "Finish time (UTC)", "process.overview.table.failed.info": "સમાપ્તિ સમય (UTC)", - // "process.overview.table.failed.title": "Failed processes", "process.overview.table.failed.title": "નિષ્ફળ પ્રક્રિયાઓ", - // "process.overview.table.finish": "Finish time (UTC)", "process.overview.table.finish": "સમાપ્તિ સમય (UTC)", - // "process.overview.table.id": "Process ID", "process.overview.table.id": "પ્રક્રિયા ID", - // "process.overview.table.name": "Name", "process.overview.table.name": "નામ", - // "process.overview.table.running.info": "Start time (UTC)", "process.overview.table.running.info": "પ્રારંભ સમય (UTC)", - // "process.overview.table.running.title": "Running processes", "process.overview.table.running.title": "ચાલતી પ્રક્રિયાઓ", - // "process.overview.table.scheduled.info": "Creation time (UTC)", "process.overview.table.scheduled.info": "રચના સમય (UTC)", - // "process.overview.table.scheduled.title": "Scheduled processes", "process.overview.table.scheduled.title": "નિયત પ્રક્રિયાઓ", - // "process.overview.table.start": "Start time (UTC)", "process.overview.table.start": "પ્રારંભ સમય (UTC)", - // "process.overview.table.status": "Status", "process.overview.table.status": "સ્થિતિ", - // "process.overview.table.user": "User", "process.overview.table.user": "વપરાશકર્તા", - // "process.overview.title": "Processes Overview", "process.overview.title": "પ્રક્રિયાઓની ઝાંખી", - // "process.overview.breadcrumbs": "Processes Overview", "process.overview.breadcrumbs": "પ્રક્રિયાઓની ઝાંખી", - // "process.overview.new": "New", "process.overview.new": "નવું", - // "process.overview.table.actions": "Actions", "process.overview.table.actions": "ક્રિયાઓ", - // "process.overview.delete": "Delete {{count}} processes", "process.overview.delete": "{{count}} પ્રક્રિયાઓ કાઢી નાખો", - // "process.overview.delete-process": "Delete process", "process.overview.delete-process": "પ્રક્રિયા કાઢી નાખો", - // "process.overview.delete.clear": "Clear delete selection", "process.overview.delete.clear": "કાઢી નાખવાની પસંદગી સાફ કરો", - // "process.overview.delete.processing": "{{count}} process(es) are being deleted. Please wait for the deletion to fully complete. Note that this can take a while.", "process.overview.delete.processing": "{{count}} પ્રક્રિયા(ઓ) કાઢી નાખવામાં આવી રહી છે. કૃપા કરીને સંપૂર્ણ રીતે કાઢી નાખવા માટે રાહ જુઓ. નોંધો કે આમાં થોડો સમય લાગી શકે છે.", - // "process.overview.delete.body": "Are you sure you want to delete {{count}} process(es)?", "process.overview.delete.body": "શું તમે ખરેખર {{count}} પ્રક્રિયા(ઓ) કાઢી નાખવા માંગો છો?", - // "process.overview.delete.header": "Delete processes", "process.overview.delete.header": "પ્રક્રિયાઓ કાઢી નાખો", - // "process.overview.unknown.user": "Unknown", "process.overview.unknown.user": "અજ્ઞાત", - // "process.bulk.delete.error.head": "Error on deleteing process", "process.bulk.delete.error.head": "પ્રક્રિયા કાઢી નાખવામાં ભૂલ", - // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ", "process.bulk.delete.error.body": "પ્રક્રિયા ID {{processId}} સાથેની પ્રક્રિયા કાઢી શકાઈ નથી. બાકી રહેલી પ્રક્રિયાઓ કાઢી નાખવાનું ચાલુ રહેશે.", - // "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted", "process.bulk.delete.success": "{{count}} પ્રક્રિયા(ઓ) સફળતાપૂર્વક કાઢી નાખવામાં આવી છે", - // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "પ્રોફાઇલ અપડેટ કરો", - // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - // TODO New key - Add a translation - "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - - // "profile.card.accessibility.header": "Accessibility", - // TODO New key - Add a translation - "profile.card.accessibility.header": "Accessibility", - - // "profile.card.accessibility.link": "Go to Accessibility Settings Page", - // TODO New key - Add a translation - "profile.card.accessibility.link": "Go to Accessibility Settings Page", - - // "profile.card.identify": "Identify", "profile.card.identify": "ઓળખો", - // "profile.card.security": "Security", "profile.card.security": "સુરક્ષા", - // "profile.form.submit": "Save", "profile.form.submit": "સાચવો", - // "profile.groups.head": "Authorization groups you belong to", "profile.groups.head": "તમે જે અધિકૃતતા જૂથો સાથે જોડાયેલા છો", - // "profile.special.groups.head": "Authorization special groups you belong to", "profile.special.groups.head": "તમે જે અધિકૃતતા વિશેષ જૂથો સાથે જોડાયેલા છો", - // "profile.metadata.form.error.firstname.required": "First Name is required", "profile.metadata.form.error.firstname.required": "પ્રથમ નામ જરૂરી છે", - // "profile.metadata.form.error.lastname.required": "Last Name is required", "profile.metadata.form.error.lastname.required": "છેલ્લું નામ જરૂરી છે", - // "profile.metadata.form.label.email": "Email Address", "profile.metadata.form.label.email": "ઇમેઇલ સરનામું", - // "profile.metadata.form.label.firstname": "First Name", "profile.metadata.form.label.firstname": "પ્રથમ નામ", - // "profile.metadata.form.label.language": "Language", "profile.metadata.form.label.language": "ભાષા", - // "profile.metadata.form.label.lastname": "Last Name", "profile.metadata.form.label.lastname": "છેલ્લું નામ", - // "profile.metadata.form.label.phone": "Contact Telephone", "profile.metadata.form.label.phone": "સંપર્ક ટેલિફોન", - // "profile.metadata.form.notifications.success.content": "Your changes to the profile were saved.", "profile.metadata.form.notifications.success.content": "તમારા પ્રોફાઇલ માટેના ફેરફારો સાચવવામાં આવ્યા હતા.", - // "profile.metadata.form.notifications.success.title": "Profile saved", "profile.metadata.form.notifications.success.title": "પ્રોફાઇલ સાચવી", - // "profile.notifications.warning.no-changes.content": "No changes were made to the Profile.", "profile.notifications.warning.no-changes.content": "પ્રોફાઇલમાં કોઈ ફેરફારો કરવામાં આવ્યા નથી.", - // "profile.notifications.warning.no-changes.title": "No changes", "profile.notifications.warning.no-changes.title": "કોઈ ફેરફારો નથી", - // "profile.security.form.error.matching-passwords": "The passwords do not match.", "profile.security.form.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", - // "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.", "profile.security.form.info": "વૈકલ્પિક રીતે, તમે નીચેના બોક્સમાં નવો પાસવર્ડ દાખલ કરી શકો છો અને તેને ફરીથી تایپ કરીને પુષ્ટિ કરી શકો છો.", - // "profile.security.form.label.password": "Password", "profile.security.form.label.password": "પાસવર્ડ", - // "profile.security.form.label.passwordrepeat": "Retype to confirm", "profile.security.form.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી تایપ કરો", - // "profile.security.form.label.current-password": "Current password", "profile.security.form.label.current-password": "વર્તમાન પાસવર્ડ", - // "profile.security.form.notifications.success.content": "Your changes to the password were saved.", "profile.security.form.notifications.success.content": "તમારા પાસવર્ડ માટેના ફેરફારો સાચવવામાં આવ્યા હતા.", - // "profile.security.form.notifications.success.title": "Password saved", "profile.security.form.notifications.success.title": "પાસવર્ડ સાચવી", - // "profile.security.form.notifications.error.title": "Error changing passwords", "profile.security.form.notifications.error.title": "પાસવર્ડ બદલવામાં ભૂલ", - // "profile.security.form.notifications.error.change-failed": "An error occurred while trying to change the password. Please check if the current password is correct.", "profile.security.form.notifications.error.change-failed": "પાસવર્ડ બદલવાનો પ્રયાસ કરતી વખતે ભૂલ આવી. કૃપા કરીને તપાસો કે વર્તમાન પાસવર્ડ સાચો છે કે નહીં.", - // "profile.security.form.notifications.error.not-same": "The provided passwords are not the same.", "profile.security.form.notifications.error.not-same": "પ્રદાન કરેલા પાસવર્ડો એકસરખા નથી.", - // "profile.security.form.notifications.error.general": "Please fill required fields of security form.", "profile.security.form.notifications.error.general": "કૃપા કરીને સુરક્ષા ફોર્મના જરૂરી ક્ષેત્રો ભરો.", - // "profile.title": "Update Profile", "profile.title": "પ્રોફાઇલ અપડેટ કરો", - // "profile.card.researcher": "Researcher Profile", "profile.card.researcher": "શોધક પ્રોફાઇલ", - // "project.listelement.badge": "Research Project", "project.listelement.badge": "શોધ પ્રોજેક્ટ", - // "project.page.contributor": "Contributors", "project.page.contributor": "યોગદાનકર્તાઓ", - // "project.page.description": "Description", "project.page.description": "વર્ણન", - // "project.page.edit": "Edit this item", "project.page.edit": "આ આઇટમ સંપાદિત કરો", - // "project.page.expectedcompletion": "Expected Completion", "project.page.expectedcompletion": "અપેક્ષિત પૂર્ણતા", - // "project.page.funder": "Funders", "project.page.funder": "ફંડર્સ", - // "project.page.id": "ID", "project.page.id": "ID", - // "project.page.keyword": "Keywords", "project.page.keyword": "કીવર્ડ્સ", - // "project.page.options": "Options", "project.page.options": "વિકલ્પો", - // "project.page.status": "Status", "project.page.status": "સ્થિતિ", - // "project.page.titleprefix": "Research Project: ", - // TODO New key - Add a translation - "project.page.titleprefix": "Research Project: ", + "project.page.titleprefix": "શોધ પ્રોજેક્ટ: ", - // "project.search.results.head": "Project Search Results", "project.search.results.head": "પ્રોજેક્ટ શોધ પરિણામો", - // "project-relationships.search.results.head": "Project Search Results", "project-relationships.search.results.head": "પ્રોજેક્ટ શોધ પરિણામો", - // "publication.listelement.badge": "Publication", "publication.listelement.badge": "પ્રકાશન", - // "publication.page.description": "Description", "publication.page.description": "વર્ણન", - // "publication.page.edit": "Edit this item", "publication.page.edit": "આ આઇટમ સંપાદિત કરો", - // "publication.page.journal-issn": "Journal ISSN", "publication.page.journal-issn": "જર્નલ ISSN", - // "publication.page.journal-title": "Journal Title", "publication.page.journal-title": "જર્નલ શીર્ષક", - // "publication.page.publisher": "Publisher", "publication.page.publisher": "પ્રકાશક", - // "publication.page.options": "Options", "publication.page.options": "વિકલ્પો", - // "publication.page.titleprefix": "Publication: ", - // TODO New key - Add a translation - "publication.page.titleprefix": "Publication: ", + "publication.page.titleprefix": "પ્રકાશન: ", - // "publication.page.volume-title": "Volume Title", "publication.page.volume-title": "વોલ્યુમ શીર્ષક", - // "publication.search.results.head": "Publication Search Results", "publication.search.results.head": "પ્રકાશન શોધ પરિણામો", - // "publication-relationships.search.results.head": "Publication Search Results", "publication-relationships.search.results.head": "પ્રકાશન શોધ પરિણામો", - // "publication.search.title": "Publication Search", "publication.search.title": "પ્રકાશન શોધ", - // "media-viewer.next": "Next", "media-viewer.next": "આગલું", - // "media-viewer.previous": "Previous", "media-viewer.previous": "પાછલું", - // "media-viewer.playlist": "Playlist", "media-viewer.playlist": "પ્લેલિસ્ટ", - // "suggestion.loading": "Loading ...", "suggestion.loading": "લોડ થઈ રહ્યું છે ...", - // "suggestion.title": "Publication Claim", "suggestion.title": "પ્રકાશન દાવો", - // "suggestion.title.breadcrumbs": "Publication Claim", "suggestion.title.breadcrumbs": "પ્રકાશન દાવો", - // "suggestion.targets.description": "Below you can see all the suggestions ", "suggestion.targets.description": "નીચે તમે બધા સૂચનો જોઈ શકો છો", - // "suggestion.targets": "Current Suggestions", "suggestion.targets": "વર્તમાન સૂચનો", - // "suggestion.table.name": "Researcher Name", "suggestion.table.name": "શોધકનું નામ", - // "suggestion.table.actions": "Actions", "suggestion.table.actions": "ક્રિયાઓ", - // "suggestion.button.review": "Review {{ total }} suggestion(s)", "suggestion.button.review": "{{ total }} સૂચન(ઓ)ની સમીક્ષા કરો", - // "suggestion.button.review.title": "Review {{ total }} suggestion(s) for ", "suggestion.button.review.title": "{{ total }} સૂચન(ઓ) માટેની સમીક્ષા કરો", - // "suggestion.noTargets": "No target found.", "suggestion.noTargets": "કોઈ લક્ષ્ય મળ્યું નથી.", - // "suggestion.target.error.service.retrieve": "An error occurred while loading the Suggestion targets", "suggestion.target.error.service.retrieve": "સૂચન લક્ષ્યો લોડ કરતી વખતે ભૂલ આવી", - // "suggestion.evidence.type": "Type", "suggestion.evidence.type": "પ્રકાર", - // "suggestion.evidence.score": "Score", "suggestion.evidence.score": "સ્કોર", - // "suggestion.evidence.notes": "Notes", "suggestion.evidence.notes": "નોંધો", - // "suggestion.approveAndImport": "Approve & import", "suggestion.approveAndImport": "મંજૂર કરો અને આયાત કરો", - // "suggestion.approveAndImport.success": "The suggestion has been imported successfully. View.", "suggestion.approveAndImport.success": "સૂચન સફળતાપૂર્વક આયાત કરવામાં આવ્યું છે. જુઓ.", - // "suggestion.approveAndImport.bulk": "Approve & import Selected", "suggestion.approveAndImport.bulk": "પસંદ કરેલને મંજૂર કરો અને આયાત કરો", - // "suggestion.approveAndImport.bulk.success": "{{ count }} suggestions have been imported successfully ", "suggestion.approveAndImport.bulk.success": "{{ count }} સૂચનો સફળતાપૂર્વક આયાત કરવામાં આવ્યા છે", - // "suggestion.approveAndImport.bulk.error": "{{ count }} suggestions haven't been imported due to unexpected server errors", "suggestion.approveAndImport.bulk.error": "અનપેક્ષિત સર્વર ભૂલોને કારણે {{ count }} સૂચનો આયાત કરવામાં આવ્યા નથી", - // "suggestion.ignoreSuggestion": "Ignore Suggestion", "suggestion.ignoreSuggestion": "સૂચન અવગણો", - // "suggestion.ignoreSuggestion.success": "The suggestion has been discarded", "suggestion.ignoreSuggestion.success": "સૂચન રદ કરવામાં આવ્યું છે", - // "suggestion.ignoreSuggestion.bulk": "Ignore Suggestion Selected", "suggestion.ignoreSuggestion.bulk": "પસંદ કરેલ સૂચન અવગણો", - // "suggestion.ignoreSuggestion.bulk.success": "{{ count }} suggestions have been discarded ", "suggestion.ignoreSuggestion.bulk.success": "{{ count }} સૂચનો રદ કરવામાં આવ્યા છે", - // "suggestion.ignoreSuggestion.bulk.error": "{{ count }} suggestions haven't been discarded due to unexpected server errors", "suggestion.ignoreSuggestion.bulk.error": "અનપેક્ષિત સર્વર ભૂલોને કારણે {{ count }} સૂચનો રદ કરવામાં આવ્યા નથી", - // "suggestion.seeEvidence": "See evidence", "suggestion.seeEvidence": "પુરાવા જુઓ", - // "suggestion.hideEvidence": "Hide evidence", "suggestion.hideEvidence": "પુરાવા છુપાવો", - // "suggestion.suggestionFor": "Suggestions for", "suggestion.suggestionFor": "માટેના સૂચનો", - // "suggestion.suggestionFor.breadcrumb": "Suggestions for {{ name }}", "suggestion.suggestionFor.breadcrumb": "{{ name }} માટેના સૂચનો", - // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "OpenAIRE ગ્રાફ", - // "suggestion.source.openalex": "OpenAlex", "suggestion.source.openalex": "OpenAlex", - // "suggestion.from.source": "from the ", "suggestion.from.source": "થી", - // "suggestion.count.missing": "You have no publication claims left", "suggestion.count.missing": "તમારા પાસે કોઈ પ્રકાશન દાવા બાકી નથી", - // "suggestion.totalScore": "Total Score", "suggestion.totalScore": "કુલ સ્કોર", - // "suggestion.type.openaire": "OpenAIRE", "suggestion.type.openaire": "OpenAIRE", - // "register-email.title": "New user registration", "register-email.title": "નવા વપરાશકર્તા નોંધણી", - // "register-page.create-profile.header": "Create Profile", "register-page.create-profile.header": "પ્રોફાઇલ બનાવો", - // "register-page.create-profile.identification.header": "Identify", "register-page.create-profile.identification.header": "ઓળખો", - // "register-page.create-profile.identification.email": "Email Address", "register-page.create-profile.identification.email": "ઇમેઇલ સરનામું", - // "register-page.create-profile.identification.first-name": "First Name *", "register-page.create-profile.identification.first-name": "પ્રથમ નામ *", - // "register-page.create-profile.identification.first-name.error": "Please fill in a First Name", "register-page.create-profile.identification.first-name.error": "કૃપા કરીને પ્રથમ નામ ભરો", - // "register-page.create-profile.identification.last-name": "Last Name *", "register-page.create-profile.identification.last-name": "છેલ્લું નામ *", - // "register-page.create-profile.identification.last-name.error": "Please fill in a Last Name", "register-page.create-profile.identification.last-name.error": "કૃપા કરીને છેલ્લું નામ ભરો", - // "register-page.create-profile.identification.contact": "Contact Telephone", "register-page.create-profile.identification.contact": "સંપર્ક ટેલિફોન", - // "register-page.create-profile.identification.language": "Language", "register-page.create-profile.identification.language": "ભાષા", - // "register-page.create-profile.security.header": "Security", "register-page.create-profile.security.header": "સુરક્ષા", - // "register-page.create-profile.security.info": "Please enter a password in the box below, and confirm it by typing it again into the second box.", "register-page.create-profile.security.info": "કૃપા કરીને નીચેના બોક્સમાં પાસવર્ડ દાખલ કરો અને તેને ફરીથી تایપ કરીને પુષ્ટિ કરો.", - // "register-page.create-profile.security.label.password": "Password *", "register-page.create-profile.security.label.password": "પાસવર્ડ *", - // "register-page.create-profile.security.label.passwordrepeat": "Retype to confirm *", "register-page.create-profile.security.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી تایપ કરો *", - // "register-page.create-profile.security.error.empty-password": "Please enter a password in the box below.", "register-page.create-profile.security.error.empty-password": "કૃપા કરીને નીચેના બોક્સમાં પાસવર્ડ દાખલ કરો.", - // "register-page.create-profile.security.error.matching-passwords": "The passwords do not match.", "register-page.create-profile.security.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", - // "register-page.create-profile.submit": "Complete Registration", "register-page.create-profile.submit": "નોંધણી પૂર્ણ કરો", - // "register-page.create-profile.submit.error.content": "Something went wrong while registering a new user.", "register-page.create-profile.submit.error.content": "નવા વપરાશકર્તા નોંધણી કરતી વખતે કંઈક ખોટું થયું.", - // "register-page.create-profile.submit.error.head": "Registration failed", "register-page.create-profile.submit.error.head": "નોંધણી નિષ્ફળ", - // "register-page.create-profile.submit.success.content": "The registration was successful. You have been logged in as the created user.", "register-page.create-profile.submit.success.content": "નોંધણી સફળ રહી. તમે બનાવેલ વપરાશકર્તા તરીકે લોગિન થયા છો.", - // "register-page.create-profile.submit.success.head": "Registration completed", "register-page.create-profile.submit.success.head": "નોંધણી પૂર્ણ", - // "register-page.registration.header": "New user registration", "register-page.registration.header": "નવા વપરાશકર્તા નોંધણી", - // "register-page.registration.info": "Register an account to subscribe to collections for email updates, and submit new items to DSpace.", "register-page.registration.info": "ઇમેઇલ અપડેટ્સ માટે સંગ્રહો માટે સબ્સ્ક્રાઇબ કરવા અને DSpace માં નવા આઇટમ્સ સબમિટ કરવા માટે એકાઉન્ટ નોંધણી કરો.", - // "register-page.registration.email": "Email Address *", "register-page.registration.email": "ઇમેઇલ સરનામું *", - // "register-page.registration.email.error.required": "Please fill in an email address", "register-page.registration.email.error.required": "કૃપા કરીને ઇમેઇલ સરનામું ભરો", - // "register-page.registration.email.error.not-email-form": "Please fill in a valid email address.", "register-page.registration.email.error.not-email-form": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું ભરો.", - // "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", - // TODO New key - Add a translation - "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + "register-page.registration.email.error.not-valid-domain": "અનુમતિ આપેલ ડોમેઇન સાથે ઇમેઇલનો ઉપયોગ કરો: {{ domains }}", - // "register-page.registration.email.hint": "This address will be verified and used as your login name.", "register-page.registration.email.hint": "આ સરનામું ચકાસવામાં આવશે અને તમારા લોગિન નામ તરીકે ઉપયોગમાં લેવામાં આવશે.", - // "register-page.registration.submit": "Register", "register-page.registration.submit": "નોંધણી કરો", - // "register-page.registration.success.head": "Verification email sent", "register-page.registration.success.head": "ચકાસણી ઇમેઇલ મોકલવામાં આવ્યું", - // "register-page.registration.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "register-page.registration.success.content": "{{ email }} પર એક ઇમેઇલ મોકલવામાં આવ્યું છે જેમાં વિશેષ URL અને વધુ સૂચનાઓ છે.", - // "register-page.registration.error.head": "Error when trying to register email", "register-page.registration.error.head": "ઇમેઇલ નોંધણી કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - // "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", - // TODO New key - Add a translation - "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + "register-page.registration.error.content": "નીચેના ઇમેઇલ સરનામું નોંધણી કરતી વખતે ભૂલ આવી: {{ email }}", - // "register-page.registration.error.recaptcha": "Error when trying to authenticate with recaptcha", "register-page.registration.error.recaptcha": "recaptcha સાથે પ્રમાણિકતા કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - // "register-page.registration.google-recaptcha.must-accept-cookies": "In order to register you must accept the Registration and Password recovery (Google reCaptcha) cookies.", "register-page.registration.google-recaptcha.must-accept-cookies": "નોંધણી કરવા માટે તમારે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ (Google reCaptcha) કૂકીઝ સ્વીકારવી પડશે.", - // "register-page.registration.error.maildomain": "This email address is not on the list of domains who can register. Allowed domains are {{ domains }}", "register-page.registration.error.maildomain": "આ ઇમેઇલ સરનામું તે ડોમેઇનની યાદીમાં નથી જે નોંધણી કરી શકે છે. અનુમતિ આપેલ ડોમેઇન છે {{ domains }}", - // "register-page.registration.google-recaptcha.open-cookie-settings": "Open cookie settings", "register-page.registration.google-recaptcha.open-cookie-settings": "કૂકી સેટિંગ્સ ખોલો", - // "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", - // "register-page.registration.google-recaptcha.notification.message.error": "An error occurred during reCaptcha verification", "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha ચકાસણી દરમિયાન ભૂલ આવી", - // "register-page.registration.google-recaptcha.notification.message.expired": "Verification expired. Please verify again.", "register-page.registration.google-recaptcha.notification.message.expired": "ચકાસણી સમાપ્ત થઈ. કૃપા કરીને ફરીથી ચકાસો.", - // "register-page.registration.info.maildomain": "Accounts can be registered for mail addresses of the domains", "register-page.registration.info.maildomain": "એકાઉન્ટ્સને ડોમેઇનના મેલ સરનામા માટે નોંધણી કરી શકાય છે", - // "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items", "relationships.add.error.relationship-type.content": "સંબંધ પ્રકાર {{ type }} માટે યોગ્ય મેળ નથી મળ્યો બે આઇટમ્સ વચ્ચે", - // "relationships.add.error.server.content": "The server returned an error", "relationships.add.error.server.content": "સર્વરે ભૂલ પરત કરી", - // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "સંબંધ ઉમેરવામાં અસમર્થ", - // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - - // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - - // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + "relationships.isAuthorOf": "લેખકો", - // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + "relationships.isAuthorOf.Person": "લેખકો (વ્યક્તિઓ)", - // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + "relationships.isAuthorOf.OrgUnit": "લેખકો (સંસ્થાકીય એકમો)", - // "relationships.Publication.isContributorOfPublication.Person": "Contributor", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.Person": "Contributor", + "relationships.isIssueOf": "જર્નલ ઇશ્યુઝ", - // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + "relationships.isIssueOf.JournalIssue": "જર્નલ ઇશ્યુ", - // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + "relationships.isJournalIssueOf": "જર્નલ ઇશ્યુ", - // "relationships.Person.isProjectOfPerson.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Person.isProjectOfPerson.Project": "Research Projects", + "relationships.isJournalOf": "જર્નલ્સ", - // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + "relationships.isJournalVolumeOf": "જર્નલ વોલ્યુમ", - // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + "relationships.isOrgUnitOf": "સંસ્થાકીય એકમો", - // "relationships.Project.isPublicationOfProject.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Project.isPublicationOfProject.Publication": "Publications", + "relationships.isPersonOf": "લેખકો", - // "relationships.Project.isPersonOfProject.Person": "Authors", - // TODO New key - Add a translation - "relationships.Project.isPersonOfProject.Person": "Authors", + "relationships.isProjectOf": "શોધ પ્રોજેક્ટ્સ", - // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + "relationships.isPublicationOf": "પ્રકાશનો", - // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - // TODO New key - Add a translation - "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + "relationships.isPublicationOfJournalIssue": "લેખો", - // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + "relationships.isSingleJournalOf": "જર્નલ", - // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - // TODO New key - Add a translation - "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + "relationships.isSingleVolumeOf": "જર્નલ વોલ્યુમ", - // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + "relationships.isVolumeOf": "જર્નલ વોલ્યુમ", - // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + "relationships.isVolumeOf.JournalVolume": "જર્નલ વોલ્યુમ", - // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + "relationships.isContributorOf": "યોગદાનકર્તાઓ", - // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + "relationships.isContributorOf.OrgUnit": "યોગદાનકર્તા (સંસ્થાકીય એકમ)", - // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + "relationships.isContributorOf.Person": "યોગદાનકર્તા", - // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", - // TODO New key - Add a translation - "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + "relationships.isFundingAgencyOf.OrgUnit": "ફંડર", - // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - // TODO New key - Add a translation - "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - - // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - - // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", - - // "repository.image.logo": "Repository logo", "repository.image.logo": "રિપોઝિટરી લોગો", - // "repository.title": "DSpace Repository", "repository.title": "DSpace રિપોઝિટરી", - // "repository.title.prefix": "DSpace Repository :: ", - // TODO New key - Add a translation - "repository.title.prefix": "DSpace Repository :: ", + "repository.title.prefix": "DSpace રિપોઝિટરી :: ", - // "resource-policies.add.button": "Add", "resource-policies.add.button": "ઉમેરો", - // "resource-policies.add.for.": "Add a new policy", "resource-policies.add.for.": "નવી નીતિ ઉમેરો", - // "resource-policies.add.for.bitstream": "Add a new Bitstream policy", "resource-policies.add.for.bitstream": "નવી બિટસ્ટ્રીમ નીતિ ઉમેરો", - // "resource-policies.add.for.bundle": "Add a new Bundle policy", "resource-policies.add.for.bundle": "નવી બંડલ નીતિ ઉમેરો", - // "resource-policies.add.for.item": "Add a new Item policy", "resource-policies.add.for.item": "નવી આઇટમ નીતિ ઉમેરો", - // "resource-policies.add.for.community": "Add a new Community policy", "resource-policies.add.for.community": "નવી સમુદાય નીતિ ઉમેરો", - // "resource-policies.add.for.collection": "Add a new Collection policy", "resource-policies.add.for.collection": "નવી સંગ્રહ નીતિ ઉમેરો", - // "resource-policies.create.page.heading": "Create new resource policy for ", "resource-policies.create.page.heading": "માટે નવી સંસાધન નીતિ બનાવો", - // "resource-policies.create.page.failure.content": "An error occurred while creating the resource policy.", "resource-policies.create.page.failure.content": "સંસાધન નીતિ બનાવતી વખતે ભૂલ આવી.", - // "resource-policies.create.page.success.content": "Operation successful", "resource-policies.create.page.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", - // "resource-policies.create.page.title": "Create new resource policy", "resource-policies.create.page.title": "નવી સંસાધન નીતિ બનાવો", - // "resource-policies.delete.btn": "Delete selected", "resource-policies.delete.btn": "પસંદ કરેલને કાઢી નાખો", - // "resource-policies.delete.btn.title": "Delete selected resource policies", "resource-policies.delete.btn.title": "પસંદ કરેલ સંસાધન નીતિઓ કાઢી નાખો", - // "resource-policies.delete.failure.content": "An error occurred while deleting selected resource policies.", "resource-policies.delete.failure.content": "પસંદ કરેલ સંસાધન નીતિઓ કાઢી નાખતી વખતે ભૂલ આવી.", - // "resource-policies.delete.success.content": "Operation successful", "resource-policies.delete.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", - // "resource-policies.edit.page.heading": "Edit resource policy ", "resource-policies.edit.page.heading": "સંસાધન નીતિ સંપાદિત કરો", - // "resource-policies.edit.page.failure.content": "An error occurred while editing the resource policy.", "resource-policies.edit.page.failure.content": "સંસાધન નીતિ સંપાદિત કરતી વખતે ભૂલ આવી.", - // "resource-policies.edit.page.target-failure.content": "An error occurred while editing the target (ePerson or group) of the resource policy.", "resource-policies.edit.page.target-failure.content": "સંસાધન નીતિના લક્ષ્ય (ePerson અથવા જૂથ) સંપાદિત કરતી વખતે ભૂલ આવી.", - // "resource-policies.edit.page.other-failure.content": "An error occurred while editing the resource policy. The target (ePerson or group) has been successfully updated.", "resource-policies.edit.page.other-failure.content": "સંસાધન નીતિ સંપાદિત કરતી વખતે ભૂલ આવી. લક્ષ્ય (ePerson અથવા જૂથ) સફળતાપૂર્વક અપડેટ થયું છે.", - // "resource-policies.edit.page.success.content": "Operation successful", "resource-policies.edit.page.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", - // "resource-policies.edit.page.title": "Edit resource policy", "resource-policies.edit.page.title": "સંસાધન નીતિ સંપાદિત કરો", - // "resource-policies.form.action-type.label": "Select the action type", "resource-policies.form.action-type.label": "ક્રિયા પ્રકાર પસંદ કરો", - // "resource-policies.form.action-type.required": "You must select the resource policy action.", "resource-policies.form.action-type.required": "તમારે સંસાધન નીતિ ક્રિયા પસંદ કરવી પડશે.", - // "resource-policies.form.eperson-group-list.label": "The eperson or group that will be granted the permission", "resource-policies.form.eperson-group-list.label": "ePerson અથવા જૂથ જેને પરવાનગી આપવામાં આવશે", - // "resource-policies.form.eperson-group-list.select.btn": "Select", "resource-policies.form.eperson-group-list.select.btn": "પસંદ કરો", - // "resource-policies.form.eperson-group-list.tab.eperson": "Search for a ePerson", "resource-policies.form.eperson-group-list.tab.eperson": "ePerson માટે શોધો", - // "resource-policies.form.eperson-group-list.tab.group": "Search for a group", "resource-policies.form.eperson-group-list.tab.group": "જૂથ માટે શોધો", - // "resource-policies.form.eperson-group-list.table.headers.action": "Action", "resource-policies.form.eperson-group-list.table.headers.action": "ક્રિયા", - // "resource-policies.form.eperson-group-list.table.headers.id": "ID", "resource-policies.form.eperson-group-list.table.headers.id": "ID", - // "resource-policies.form.eperson-group-list.table.headers.name": "Name", "resource-policies.form.eperson-group-list.table.headers.name": "નામ", - // "resource-policies.form.eperson-group-list.modal.header": "Cannot change type", "resource-policies.form.eperson-group-list.modal.header": "પ્રકાર બદલી શકાતો નથી", - // "resource-policies.form.eperson-group-list.modal.text1.toGroup": "It is not possible to replace an ePerson with a group.", "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePerson ને જૂથ સાથે બદલી શકાતું નથી.", - // "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "It is not possible to replace a group with an ePerson.", "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "જૂથને ePerson સાથે બદલી શકાતું નથી.", - // "resource-policies.form.eperson-group-list.modal.text2": "Delete the current resource policy and create a new one with the desired type.", "resource-policies.form.eperson-group-list.modal.text2": "વાંછિત પ્રકાર સાથે નવી નીતિ બનાવવા માટે વર્તમાન સંસાધન નીતિ કાઢી નાખો.", - // "resource-policies.form.eperson-group-list.modal.close": "Ok", "resource-policies.form.eperson-group-list.modal.close": "બરાબર", - // "resource-policies.form.date.end.label": "End Date", "resource-policies.form.date.end.label": "અંતિમ તારીખ", - // "resource-policies.form.date.start.label": "Start Date", "resource-policies.form.date.start.label": "પ્રારંભ તારીખ", - // "resource-policies.form.description.label": "Description", "resource-policies.form.description.label": "વર્ણન", - // "resource-policies.form.name.label": "Name", "resource-policies.form.name.label": "નામ", - // "resource-policies.form.name.hint": "Max 30 characters", "resource-policies.form.name.hint": "મહત્તમ 30 અક્ષરો", - // "resource-policies.form.policy-type.label": "Select the policy type", "resource-policies.form.policy-type.label": "નીતિનો પ્રકાર પસંદ કરો", - // "resource-policies.form.policy-type.required": "You must select the resource policy type.", "resource-policies.form.policy-type.required": "તમારે સંસાધન નીતિનો પ્રકાર પસંદ કરવો પડશે.", - // "resource-policies.table.headers.action": "Action", "resource-policies.table.headers.action": "ક્રિયા", - // "resource-policies.table.headers.date.end": "End Date", "resource-policies.table.headers.date.end": "અંતિમ તારીખ", - // "resource-policies.table.headers.date.start": "Start Date", "resource-policies.table.headers.date.start": "પ્રારંભ તારીખ", - // "resource-policies.table.headers.edit": "Edit", "resource-policies.table.headers.edit": "સંપાદિત કરો", - // "resource-policies.table.headers.edit.group": "Edit group", "resource-policies.table.headers.edit.group": "જૂથ સંપાદિત કરો", - // "resource-policies.table.headers.edit.policy": "Edit policy", "resource-policies.table.headers.edit.policy": "નીતિ સંપાદિત કરો", - // "resource-policies.table.headers.eperson": "EPerson", "resource-policies.table.headers.eperson": "ePerson", - // "resource-policies.table.headers.group": "Group", "resource-policies.table.headers.group": "જૂથ", - // "resource-policies.table.headers.select-all": "Select all", "resource-policies.table.headers.select-all": "બધા પસંદ કરો", - // "resource-policies.table.headers.deselect-all": "Deselect all", "resource-policies.table.headers.deselect-all": "બધા પસંદ ન કરો", - // "resource-policies.table.headers.select": "Select", "resource-policies.table.headers.select": "પસંદ કરો", - // "resource-policies.table.headers.deselect": "Deselect", "resource-policies.table.headers.deselect": "પસંદ ન કરો", - // "resource-policies.table.headers.id": "ID", "resource-policies.table.headers.id": "ID", - // "resource-policies.table.headers.name": "Name", "resource-policies.table.headers.name": "નામ", - // "resource-policies.table.headers.policyType": "type", "resource-policies.table.headers.policyType": "પ્રકાર", - // "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream", "resource-policies.table.headers.title.for.bitstream": "બિટસ્ટ્રીમ માટેની નીતિઓ", - // "resource-policies.table.headers.title.for.bundle": "Policies for Bundle", "resource-policies.table.headers.title.for.bundle": "બંડલ માટેની નીતિઓ", - // "resource-policies.table.headers.title.for.item": "Policies for Item", "resource-policies.table.headers.title.for.item": "આઇટમ માટેની નીતિઓ", - // "resource-policies.table.headers.title.for.community": "Policies for Community", "resource-policies.table.headers.title.for.community": "સમુદાય માટેની નીતિઓ", - // "resource-policies.table.headers.title.for.collection": "Policies for Collection", "resource-policies.table.headers.title.for.collection": "સંગ્રહ માટેની નીતિઓ", - // "root.skip-to-content": "Skip to main content", "root.skip-to-content": "મુખ્ય સામગ્રી પર જાઓ", - // "search.description": "", "search.description": "", - // "search.switch-configuration.title": "Show", "search.switch-configuration.title": "બતાવો", - // "search.title": "Search", "search.title": "શોધ", - // "search.breadcrumbs": "Search", "search.breadcrumbs": "શોધ", - // "search.search-form.placeholder": "Search the repository ...", "search.search-form.placeholder": "રિપોઝિટરીમાં શોધો ...", - // "search.filters.remove": "Remove filter of type {{ type }} with value {{ value }}", "search.filters.remove": "પ્રકાર {{ type }} સાથેનું મૂલ્ય {{ value }} દૂર કરો", - // "search.filters.applied.f.title": "Title", "search.filters.applied.f.title": "શીર્ષક", - // "search.filters.applied.f.author": "Author", "search.filters.applied.f.author": "લેખક", - // "search.filters.applied.f.dateIssued.max": "End date", "search.filters.applied.f.dateIssued.max": "અંતિમ તારીખ", - // "search.filters.applied.f.dateIssued.min": "Start date", "search.filters.applied.f.dateIssued.min": "પ્રારંભ તારીખ", - // "search.filters.applied.f.dateSubmitted": "Date submitted", "search.filters.applied.f.dateSubmitted": "સબમિટ તારીખ", - // "search.filters.applied.f.discoverable": "Non-discoverable", "search.filters.applied.f.discoverable": "નોન-ડિસ્કવરેબલ", - // "search.filters.applied.f.entityType": "Item Type", "search.filters.applied.f.entityType": "આઇટમ પ્રકાર", - // "search.filters.applied.f.has_content_in_original_bundle": "Has files", "search.filters.applied.f.has_content_in_original_bundle": "ફાઇલો છે", - // "search.filters.applied.f.original_bundle_filenames": "File name", "search.filters.applied.f.original_bundle_filenames": "ફાઇલ નામ", - // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "ફાઇલ વર્ણન", - // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", + "search.filters.applied.f.has_geospatial_metadata": "ભૌગોલિક સ્થાન છે", - // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "પ્રકાર", - // "search.filters.applied.f.namedresourcetype": "Status", "search.filters.applied.f.namedresourcetype": "સ્થિતિ", - // "search.filters.applied.f.subject": "Subject", "search.filters.applied.f.subject": "વિષય", - // "search.filters.applied.f.submitter": "Submitter", "search.filters.applied.f.submitter": "સબમિટર", - // "search.filters.applied.f.jobTitle": "Job Title", "search.filters.applied.f.jobTitle": "નોકરીનું શીર્ષક", - // "search.filters.applied.f.birthDate.max": "End birth date", "search.filters.applied.f.birthDate.max": "અંતિમ જન્મ તારીખ", - // "search.filters.applied.f.birthDate.min": "Start birth date", "search.filters.applied.f.birthDate.min": "પ્રારંભ જન્મ તારીખ", - // "search.filters.applied.f.supervisedBy": "Supervised by", "search.filters.applied.f.supervisedBy": "સુપરવિઝન દ્વારા", - // "search.filters.applied.f.withdrawn": "Withdrawn", "search.filters.applied.f.withdrawn": "પાછું ખેંચાયેલ", - // "search.filters.applied.operator.equals": "", "search.filters.applied.operator.equals": "", - // "search.filters.applied.operator.notequals": " not equals", "search.filters.applied.operator.notequals": " સમાન નથી", - // "search.filters.applied.operator.authority": "", "search.filters.applied.operator.authority": "", - // "search.filters.applied.operator.notauthority": " not authority", "search.filters.applied.operator.notauthority": " અધિકૃત નથી", - // "search.filters.applied.operator.contains": " contains", "search.filters.applied.operator.contains": " સમાવે છે", - // "search.filters.applied.operator.notcontains": " not contains", "search.filters.applied.operator.notcontains": " સમાવે નથી", - // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", - // "search.filters.applied.f.point": "Coordinates", "search.filters.applied.f.point": "સ્થાનાંક", - // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "શીર્ષક", - // "search.filters.filter.title.placeholder": "Title", "search.filters.filter.title.placeholder": "શીર્ષક", - // "search.filters.filter.title.label": "Search Title", "search.filters.filter.title.label": "શીર્ષક શોધો", - // "search.filters.filter.author.head": "Author", "search.filters.filter.author.head": "લેખક", - // "search.filters.filter.author.placeholder": "Author name", "search.filters.filter.author.placeholder": "લેખકનું નામ", - // "search.filters.filter.author.label": "Search author name", "search.filters.filter.author.label": "લેખકનું નામ શોધો", - // "search.filters.filter.birthDate.head": "Birth Date", "search.filters.filter.birthDate.head": "જન્મ તારીખ", - // "search.filters.filter.birthDate.placeholder": "Birth Date", "search.filters.filter.birthDate.placeholder": "જન્મ તારીખ", - // "search.filters.filter.birthDate.label": "Search birth date", "search.filters.filter.birthDate.label": "જન્મ તારીખ શોધો", - // "search.filters.filter.collapse": "Collapse filter", "search.filters.filter.collapse": "ફિલ્ટર સંકોચો", - // "search.filters.filter.creativeDatePublished.head": "Date Published", "search.filters.filter.creativeDatePublished.head": "પ્રકાશિત તારીખ", - // "search.filters.filter.creativeDatePublished.placeholder": "Date Published", "search.filters.filter.creativeDatePublished.placeholder": "પ્રકાશિત તારીખ", - // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "પ્રકાશિત તારીખ શોધો", - // "search.filters.filter.creativeDatePublished.min.label": "Start", "search.filters.filter.creativeDatePublished.min.label": "પ્રારંભ", - // "search.filters.filter.creativeDatePublished.max.label": "End", "search.filters.filter.creativeDatePublished.max.label": "અંત", - // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "સંપાદક", - // "search.filters.filter.creativeWorkEditor.placeholder": "Editor", "search.filters.filter.creativeWorkEditor.placeholder": "સંપાદક", - // "search.filters.filter.creativeWorkEditor.label": "Search editor", "search.filters.filter.creativeWorkEditor.label": "સંપાદક શોધો", - // "search.filters.filter.creativeWorkKeywords.head": "Subject", "search.filters.filter.creativeWorkKeywords.head": "વિષય", - // "search.filters.filter.creativeWorkKeywords.placeholder": "Subject", "search.filters.filter.creativeWorkKeywords.placeholder": "વિષય", - // "search.filters.filter.creativeWorkKeywords.label": "Search subject", "search.filters.filter.creativeWorkKeywords.label": "વિષય શોધો", - // "search.filters.filter.creativeWorkPublisher.head": "Publisher", "search.filters.filter.creativeWorkPublisher.head": "પ્રકાશક", - // "search.filters.filter.creativeWorkPublisher.placeholder": "Publisher", "search.filters.filter.creativeWorkPublisher.placeholder": "પ્રકાશક", - // "search.filters.filter.creativeWorkPublisher.label": "Search publisher", "search.filters.filter.creativeWorkPublisher.label": "પ્રકાશક શોધો", - // "search.filters.filter.dateIssued.head": "Date", "search.filters.filter.dateIssued.head": "તારીખ", - // "search.filters.filter.dateIssued.max.placeholder": "Maximum Date", "search.filters.filter.dateIssued.max.placeholder": "મહત્તમ તારીખ", - // "search.filters.filter.dateIssued.max.label": "End", "search.filters.filter.dateIssued.max.label": "અંત", - // "search.filters.filter.dateIssued.min.placeholder": "Minimum Date", "search.filters.filter.dateIssued.min.placeholder": "ન્યૂનતમ તારીખ", - // "search.filters.filter.dateIssued.min.label": "Start", "search.filters.filter.dateIssued.min.label": "પ્રારંભ", - // "search.filters.filter.dateSubmitted.head": "Date submitted", "search.filters.filter.dateSubmitted.head": "સબમિટ તારીખ", - // "search.filters.filter.dateSubmitted.placeholder": "Date submitted", "search.filters.filter.dateSubmitted.placeholder": "સબમિટ તારીખ", - // "search.filters.filter.dateSubmitted.label": "Search date submitted", "search.filters.filter.dateSubmitted.label": "સબમિટ તારીખ શોધો", - // "search.filters.filter.discoverable.head": "Non-discoverable", "search.filters.filter.discoverable.head": "નોન-ડિસ્કવરેબલ", - // "search.filters.filter.withdrawn.head": "Withdrawn", "search.filters.filter.withdrawn.head": "પાછું ખેંચાયેલ", - // "search.filters.filter.entityType.head": "Item Type", "search.filters.filter.entityType.head": "આઇટમ પ્રકાર", - // "search.filters.filter.entityType.placeholder": "Item Type", "search.filters.filter.entityType.placeholder": "આઇટમ પ્રકાર", - // "search.filters.filter.entityType.label": "Search item type", "search.filters.filter.entityType.label": "આઇટમ પ્રકાર શોધો", - // "search.filters.filter.expand": "Expand filter", "search.filters.filter.expand": "ફિલ્ટર વિસ્તારો", - // "search.filters.filter.has_content_in_original_bundle.head": "Has files", "search.filters.filter.has_content_in_original_bundle.head": "ફાઇલો છે", - // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "ફાઇલ નામ", - // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", "search.filters.filter.has_geospatial_metadata.head": "ભૌગોલિક સ્થાન છે", - // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "ફાઇલ નામ", - // "search.filters.filter.original_bundle_filenames.label": "Search File name", "search.filters.filter.original_bundle_filenames.label": "ફાઇલ નામ શોધો", - // "search.filters.filter.original_bundle_descriptions.head": "File description", "search.filters.filter.original_bundle_descriptions.head": "ફાઇલ વર્ણન", - // "search.filters.filter.original_bundle_descriptions.placeholder": "File description", "search.filters.filter.original_bundle_descriptions.placeholder": "ફાઇલ વર્ણન", - // "search.filters.filter.original_bundle_descriptions.label": "Search File description", "search.filters.filter.original_bundle_descriptions.label": "ફાઇલ વર્ણન શોધો", - // "search.filters.filter.itemtype.head": "Type", "search.filters.filter.itemtype.head": "પ્રકાર", - // "search.filters.filter.itemtype.placeholder": "Type", "search.filters.filter.itemtype.placeholder": "પ્રકાર", - // "search.filters.filter.itemtype.label": "Search type", "search.filters.filter.itemtype.label": "પ્રકાર શોધો", - // "search.filters.filter.jobTitle.head": "Job Title", "search.filters.filter.jobTitle.head": "નોકરીનું શીર્ષક", - // "search.filters.filter.jobTitle.placeholder": "Job Title", "search.filters.filter.jobTitle.placeholder": "નોકરીનું શીર્ષક", - // "search.filters.filter.jobTitle.label": "Search job title", "search.filters.filter.jobTitle.label": "નોકરીનું શીર્ષક શોધો", - // "search.filters.filter.knowsLanguage.head": "Known language", "search.filters.filter.knowsLanguage.head": "જાણીતી ભાષા", - // "search.filters.filter.knowsLanguage.placeholder": "Known language", "search.filters.filter.knowsLanguage.placeholder": "જાણીતી ભાષા", - // "search.filters.filter.knowsLanguage.label": "Search known language", "search.filters.filter.knowsLanguage.label": "જાણીતી ભાષા શોધો", - // "search.filters.filter.namedresourcetype.head": "Status", "search.filters.filter.namedresourcetype.head": "સ્થિતિ", - // "search.filters.filter.namedresourcetype.placeholder": "Status", "search.filters.filter.namedresourcetype.placeholder": "સ્થિતિ", - // "search.filters.filter.namedresourcetype.label": "Search status", "search.filters.filter.namedresourcetype.label": "સ્થિતિ શોધો", - // "search.filters.filter.objectpeople.head": "People", "search.filters.filter.objectpeople.head": "લોકો", - // "search.filters.filter.objectpeople.placeholder": "People", "search.filters.filter.objectpeople.placeholder": "લોકો", - // "search.filters.filter.objectpeople.label": "Search people", "search.filters.filter.objectpeople.label": "લોકો શોધો", - // "search.filters.filter.organizationAddressCountry.head": "Country", "search.filters.filter.organizationAddressCountry.head": "દેશ", - // "search.filters.filter.organizationAddressCountry.placeholder": "Country", "search.filters.filter.organizationAddressCountry.placeholder": "દેશ", - // "search.filters.filter.organizationAddressCountry.label": "Search country", "search.filters.filter.organizationAddressCountry.label": "દેશ શોધો", - // "search.filters.filter.organizationAddressLocality.head": "City", "search.filters.filter.organizationAddressLocality.head": "શહેર", - // "search.filters.filter.organizationAddressLocality.placeholder": "City", "search.filters.filter.organizationAddressLocality.placeholder": "શહેર", - // "search.filters.filter.organizationAddressLocality.label": "Search city", "search.filters.filter.organizationAddressLocality.label": "શહેર શોધો", - // "search.filters.filter.organizationFoundingDate.head": "Date Founded", "search.filters.filter.organizationFoundingDate.head": "સ્થાપના તારીખ", - // "search.filters.filter.organizationFoundingDate.placeholder": "Date Founded", "search.filters.filter.organizationFoundingDate.placeholder": "સ્થાપના તારીખ", - // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "સ્થાપના તારીખ શોધો", - // "search.filters.filter.organizationFoundingDate.min.label": "Start", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.min.label": "Start", - - // "search.filters.filter.organizationFoundingDate.max.label": "End", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.max.label": "End", - - // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "વિસ્તાર", - // "search.filters.filter.scope.placeholder": "Scope filter", "search.filters.filter.scope.placeholder": "વિસ્તાર ફિલ્ટર", - // "search.filters.filter.scope.label": "Search scope filter", "search.filters.filter.scope.label": "વિસ્તાર ફિલ્ટર શોધો", - // "search.filters.filter.show-less": "Collapse", "search.filters.filter.show-less": "સંકોચો", - // "search.filters.filter.show-more": "Show more", "search.filters.filter.show-more": "વધુ બતાવો", - // "search.filters.filter.subject.head": "Subject", "search.filters.filter.subject.head": "વિષય", - // "search.filters.filter.subject.placeholder": "Subject", "search.filters.filter.subject.placeholder": "વિષય", - // "search.filters.filter.subject.label": "Search subject", "search.filters.filter.subject.label": "વિષય શોધો", - // "search.filters.filter.submitter.head": "Submitter", "search.filters.filter.submitter.head": "સબમિટર", - // "search.filters.filter.submitter.placeholder": "Submitter", "search.filters.filter.submitter.placeholder": "સબમિટર", - // "search.filters.filter.submitter.label": "Search submitter", "search.filters.filter.submitter.label": "સબમિટર શોધો", - // "search.filters.filter.show-tree": "Browse {{ name }} tree", "search.filters.filter.show-tree": "{{ name }} વૃક્ષ બ્રાઉઝ કરો", - // "search.filters.filter.funding.head": "Funding", "search.filters.filter.funding.head": "ફંડિંગ", - // "search.filters.filter.funding.placeholder": "Funding", "search.filters.filter.funding.placeholder": "ફંડિંગ", - // "search.filters.filter.supervisedBy.head": "Supervised By", "search.filters.filter.supervisedBy.head": "સુપરવિઝન દ્વારા", - // "search.filters.filter.supervisedBy.placeholder": "Supervised By", "search.filters.filter.supervisedBy.placeholder": "સુપરવિઝન દ્વારા", - // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "સુપરવિઝન દ્વારા શોધો", - // "search.filters.filter.access_status.head": "Access type", "search.filters.filter.access_status.head": "ઍક્સેસ પ્રકાર", - // "search.filters.filter.access_status.placeholder": "Access type", "search.filters.filter.access_status.placeholder": "ઍક્સેસ પ્રકાર", - // "search.filters.filter.access_status.label": "Search by access type", "search.filters.filter.access_status.label": "ઍક્સેસ પ્રકાર દ્વારા શોધો", - // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "જર્નલ ઇશ્યુ", - // "search.filters.entityType.JournalVolume": "Journal Volume", "search.filters.entityType.JournalVolume": "જર્નલ વોલ્યુમ", - // "search.filters.entityType.OrgUnit": "Organizational Unit", "search.filters.entityType.OrgUnit": "સંસ્થાકીય એકમ", - // "search.filters.entityType.Person": "Person", "search.filters.entityType.Person": "વ્યક્તિ", - // "search.filters.entityType.Project": "Project", "search.filters.entityType.Project": "પ્રોજેક્ટ", - // "search.filters.entityType.Publication": "Publication", "search.filters.entityType.Publication": "પ્રકાશન", - // "search.filters.has_content_in_original_bundle.true": "Yes", "search.filters.has_content_in_original_bundle.true": "હા", - // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "ના", - // "search.filters.has_geospatial_metadata.true": "Yes", "search.filters.has_geospatial_metadata.true": "હા", - // "search.filters.has_geospatial_metadata.false": "No", "search.filters.has_geospatial_metadata.false": "ના", - // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "ના", - // "search.filters.discoverable.false": "Yes", "search.filters.discoverable.false": "હા", - // "search.filters.namedresourcetype.Archived": "Archived", "search.filters.namedresourcetype.Archived": "આર્કાઇવ્ડ", - // "search.filters.namedresourcetype.Validation": "Validation", "search.filters.namedresourcetype.Validation": "માન્યતા", - // "search.filters.namedresourcetype.Waiting for Controller": "Waiting for reviewer", "search.filters.namedresourcetype.Waiting for Controller": "સમીક્ષકની રાહ જોવી", - // "search.filters.namedresourcetype.Workflow": "Workflow", "search.filters.namedresourcetype.Workflow": "વર્કફ્લો", - // "search.filters.namedresourcetype.Workspace": "Workspace", "search.filters.namedresourcetype.Workspace": "વર્કસ્પેસ", - // "search.filters.withdrawn.true": "Yes", "search.filters.withdrawn.true": "હા", - // "search.filters.withdrawn.false": "No", "search.filters.withdrawn.false": "ના", - // "search.filters.head": "Filters", "search.filters.head": "ફિલ્ટર્સ", - // "search.filters.reset": "Reset filters", "search.filters.reset": "ફિલ્ટર્સ રીસેટ કરો", - // "search.filters.search.submit": "Submit", "search.filters.search.submit": "સબમિટ કરો", - // "search.filters.operator.equals.text": "Equals", "search.filters.operator.equals.text": "સમાન છે", - // "search.filters.operator.notequals.text": "Not Equals", "search.filters.operator.notequals.text": "સમાન નથી", - // "search.filters.operator.authority.text": "Authority", "search.filters.operator.authority.text": "અધિકૃત", - // "search.filters.operator.notauthority.text": "Not Authority", "search.filters.operator.notauthority.text": "અધિકૃત નથી", - // "search.filters.operator.contains.text": "Contains", "search.filters.operator.contains.text": "સમાવે છે", - // "search.filters.operator.notcontains.text": "Not Contains", "search.filters.operator.notcontains.text": "સમાવે નથી", - // "search.filters.operator.query.text": "Query", "search.filters.operator.query.text": "ક્વેરી", - // "search.form.search": "Search", "search.form.search": "શોધો", - // "search.form.search_dspace": "All repository", "search.form.search_dspace": "બધા રિપોઝિટરી", - // "search.form.scope.all": "All of DSpace", "search.form.scope.all": "બધા DSpace", - // "search.results.head": "Search Results", "search.results.head": "શોધ પરિણામો", - // "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting", "search.results.no-results": "તમારી શોધે કોઈ પરિણામ આપ્યું નથી. તમે જે શોધી રહ્યા છો તે શોધવામાં મુશ્કેલી છે? પ્રયાસ કરો", - // "search.results.no-results-link": "quotes around it", "search.results.no-results-link": "તેની આસપાસ અવતરણ ચિહ્નો મૂકો", - // "search.results.empty": "Your search returned no results.", "search.results.empty": "તમારી શોધે કોઈ પરિણામ આપ્યું નથી.", - // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", "search.results.geospatial-map.empty": "આ પૃષ્ઠ પર કોઈ ભૌગોલિક સ્થાન સાથેના પરિણામો નથી", - // "search.results.view-result": "View", "search.results.view-result": "જુઓ", - // "search.results.response.500": "An error occurred during query execution, please try again later", "search.results.response.500": "ક્વેરી અમલમાં ભૂલ આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો", - // "default.search.results.head": "Search Results", "default.search.results.head": "શોધ પરિણામો", - // "default-relationships.search.results.head": "Search Results", "default-relationships.search.results.head": "શોધ પરિણામો", - // "search.sidebar.close": "Back to results", "search.sidebar.close": "પરિણામો પર પાછા જાઓ", - // "search.sidebar.filters.title": "Filters", "search.sidebar.filters.title": "ફિલ્ટર્સ", - // "search.sidebar.open": "Search Tools", "search.sidebar.open": "શોધ સાધનો", - // "search.sidebar.results": "results", "search.sidebar.results": "પરિણામો", - // "search.sidebar.settings.rpp": "Results per page", "search.sidebar.settings.rpp": "પ્રતિ પૃષ્ઠ પરિણામો", - // "search.sidebar.settings.sort-by": "Sort By", "search.sidebar.settings.sort-by": "દ્વારા ગોઠવો", - // "search.sidebar.advanced-search.title": "Advanced Search", "search.sidebar.advanced-search.title": "ઉન્નત શોધ", - // "search.sidebar.advanced-search.filter-by": "Filter by", "search.sidebar.advanced-search.filter-by": "દ્વારા ફિલ્ટર કરો", - // "search.sidebar.advanced-search.filters": "Filters", "search.sidebar.advanced-search.filters": "ફિલ્ટર્સ", - // "search.sidebar.advanced-search.operators": "Operators", "search.sidebar.advanced-search.operators": "ઑપરેટર્સ", - // "search.sidebar.advanced-search.add": "Add", "search.sidebar.advanced-search.add": "ઉમેરો", - // "search.sidebar.settings.title": "Settings", "search.sidebar.settings.title": "સેટિંગ્સ", - // "search.view-switch.show-detail": "Show detail", "search.view-switch.show-detail": "વિગત બતાવો", - // "search.view-switch.show-grid": "Show as grid", "search.view-switch.show-grid": "ગ્રિડ તરીકે બતાવો", - // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "યાદી તરીકે બતાવો", - // "search.view-switch.show-geospatialMap": "Show as map", "search.view-switch.show-geospatialMap": "નકશા તરીકે બતાવો", - // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "આઇટમ પસંદ ન કરો", - // "selectable-list-item-control.select": "Select item", "selectable-list-item-control.select": "આઇટમ પસંદ કરો", - // "sorting.ASC": "Ascending", "sorting.ASC": "આરોહી", - // "sorting.DESC": "Descending", "sorting.DESC": "અવરોહી", - // "sorting.dc.title.ASC": "Title Ascending", "sorting.dc.title.ASC": "શીર્ષક આરોહી", - // "sorting.dc.title.DESC": "Title Descending", "sorting.dc.title.DESC": "શીર્ષક અવરોહી", - // "sorting.score.ASC": "Least Relevant", "sorting.score.ASC": "ઓછું સંબંધિત", - // "sorting.score.DESC": "Most Relevant", "sorting.score.DESC": "વધુ સંબંધિત", - // "sorting.dc.date.issued.ASC": "Date Issued Ascending", "sorting.dc.date.issued.ASC": "તારીખ આરોહી જારી", - // "sorting.dc.date.issued.DESC": "Date Issued Descending", "sorting.dc.date.issued.DESC": "તારીખ અવરોહી જારી", - // "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending", "sorting.dc.date.accessioned.ASC": "ઍક્સેશન તારીખ આરોહી", - // "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending", "sorting.dc.date.accessioned.DESC": "ઍક્સેશન તારીખ અવરોહી", - // "sorting.lastModified.ASC": "Last modified Ascending", "sorting.lastModified.ASC": "છેલ્લે ફેરફાર આરોહી", - // "sorting.lastModified.DESC": "Last modified Descending", "sorting.lastModified.DESC": "છેલ્લે ફેરફાર અવરોહી", - // "sorting.person.familyName.ASC": "Surname Ascending", "sorting.person.familyName.ASC": "અટક આરોહી", - // "sorting.person.familyName.DESC": "Surname Descending", "sorting.person.familyName.DESC": "અટક અવરોહી", - // "sorting.person.givenName.ASC": "Name Ascending", "sorting.person.givenName.ASC": "નામ આરોહી", - // "sorting.person.givenName.DESC": "Name Descending", "sorting.person.givenName.DESC": "નામ અવરોહી", - // "sorting.person.birthDate.ASC": "Birth Date Ascending", "sorting.person.birthDate.ASC": "જન્મ તારીખ આરોહી", - // "sorting.person.birthDate.DESC": "Birth Date Descending", "sorting.person.birthDate.DESC": "જન્મ તારીખ અવરોહી", - // "statistics.title": "Statistics", "statistics.title": "આંકડા", - // "statistics.header": "Statistics for {{ scope }}", "statistics.header": "{{ scope }} માટેના આંકડા", - // "statistics.breadcrumbs": "Statistics", "statistics.breadcrumbs": "આંકડા", - // "statistics.page.no-data": "No data available", "statistics.page.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", - // "statistics.table.no-data": "No data available", "statistics.table.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", - // "statistics.table.title.TotalVisits": "Total visits", "statistics.table.title.TotalVisits": "કુલ મુલાકાતો", - // "statistics.table.title.TotalVisitsPerMonth": "Total visits per month", "statistics.table.title.TotalVisitsPerMonth": "પ્રતિ મહિનો કુલ મુલાકાતો", - // "statistics.table.title.TotalDownloads": "File Visits", "statistics.table.title.TotalDownloads": "ફાઇલ મુલાકાતો", - // "statistics.table.title.TopCountries": "Top country views", "statistics.table.title.TopCountries": "ટોપ દેશ દૃશ્યો", - // "statistics.table.title.TopCities": "Top city views", "statistics.table.title.TopCities": "ટોપ શહેર દૃશ્યો", - // "statistics.table.header.views": "Views", "statistics.table.header.views": "દૃશ્યો", - // "statistics.table.no-name": "(object name could not be loaded)", "statistics.table.no-name": "(વસ્તુનું નામ લોડ કરી શકાયું નથી)", - // "submission.edit.breadcrumbs": "Edit Submission", "submission.edit.breadcrumbs": "સબમિશન સંપાદિત કરો", - // "submission.edit.title": "Edit Submission", "submission.edit.title": "સબમિશન સંપાદિત કરો", - // "submission.general.cancel": "Cancel", "submission.general.cancel": "રદ કરો", - // "submission.general.cannot_submit": "You don't have permission to make a new submission.", "submission.general.cannot_submit": "તમને નવું સબમિશન કરવાની પરવાનગી નથી.", - // "submission.general.deposit": "Deposit", "submission.general.deposit": "ડિપોઝિટ", - // "submission.general.discard.confirm.cancel": "Cancel", "submission.general.discard.confirm.cancel": "રદ કરો", - // "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?", "submission.general.discard.confirm.info": "આ ક્રિયા પાછી ફરી શકશે નહીં. શું તમે ખાતરી કરો છો?", - // "submission.general.discard.confirm.submit": "Yes, I'm sure", "submission.general.discard.confirm.submit": "હા, મને ખાતરી છે", - // "submission.general.discard.confirm.title": "Discard submission", "submission.general.discard.confirm.title": "સબમિશન રદ કરો", - // "submission.general.discard.submit": "Discard", "submission.general.discard.submit": "રદ કરો", - // "submission.general.back.submit": "Back", "submission.general.back.submit": "પાછા", - // "submission.general.info.saved": "Saved", "submission.general.info.saved": "સાચવ્યું", - // "submission.general.info.pending-changes": "Unsaved changes", "submission.general.info.pending-changes": "સાચવેલા ફેરફારો", - // "submission.general.save": "Save", "submission.general.save": "સેવ", - // "submission.general.save-later": "Save for later", "submission.general.save-later": "પછી માટે સેવ", - // "submission.import-external.page.title": "Import metadata from an external source", "submission.import-external.page.title": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", - // "submission.import-external.title": "Import metadata from an external source", "submission.import-external.title": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", - // "submission.import-external.title.Journal": "Import a journal from an external source", "submission.import-external.title.Journal": "બાહ્ય સ્ત્રોતમાંથી જર્નલ આયાત કરો", - // "submission.import-external.title.JournalIssue": "Import a journal issue from an external source", "submission.import-external.title.JournalIssue": "બાહ્ય સ્ત્રોતમાંથી જર્નલ ઇશ્યુ આયાત કરો", - // "submission.import-external.title.JournalVolume": "Import a journal volume from an external source", "submission.import-external.title.JournalVolume": "બાહ્ય સ્ત્રોતમાંથી જર્નલ વોલ્યુમ આયાત કરો", - // "submission.import-external.title.OrgUnit": "Import a publisher from an external source", "submission.import-external.title.OrgUnit": "બાહ્ય સ્ત્રોતમાંથી પ્રકાશક આયાત કરો", - // "submission.import-external.title.Person": "Import a person from an external source", "submission.import-external.title.Person": "બાહ્ય સ્ત્રોતમાંથી વ્યક્તિ આયાત કરો", - // "submission.import-external.title.Project": "Import a project from an external source", "submission.import-external.title.Project": "બાહ્ય સ્ત્રોતમાંથી પ્રોજેક્ટ આયાત કરો", - // "submission.import-external.title.Publication": "Import a publication from an external source", "submission.import-external.title.Publication": "બાહ્ય સ્ત્રોતમાંથી પ્રકાશન આયાત કરો", - // "submission.import-external.title.none": "Import metadata from an external source", "submission.import-external.title.none": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", - // "submission.import-external.page.hint": "Enter a query above to find items from the web to import in to DSpace.", "submission.import-external.page.hint": "DSpace માં આયાત કરવા માટે વેબમાંથી વસ્તુઓ શોધવા માટે ઉપર ક્વેરી દાખલ કરો.", - // "submission.import-external.back-to-my-dspace": "Back to MyDSpace", "submission.import-external.back-to-my-dspace": "મારા DSpace પર પાછા જાઓ", - // "submission.import-external.search.placeholder": "Search the external source", "submission.import-external.search.placeholder": "બાહ્ય સ્ત્રોત શોધો", - // "submission.import-external.search.button": "Search", "submission.import-external.search.button": "શોધો", - // "submission.import-external.search.button.hint": "Write some words to search", "submission.import-external.search.button.hint": "શોધવા માટે કેટલાક શબ્દો લખો", - // "submission.import-external.search.source.hint": "Pick an external source", "submission.import-external.search.source.hint": "બાહ્ય સ્ત્રોત પસંદ કરો", - // "submission.import-external.source.arxiv": "arXiv", "submission.import-external.source.arxiv": "arXiv", - // "submission.import-external.source.ads": "NASA/ADS", "submission.import-external.source.ads": "NASA/ADS", - // "submission.import-external.source.cinii": "CiNii", "submission.import-external.source.cinii": "CiNii", - // "submission.import-external.source.crossref": "Crossref", "submission.import-external.source.crossref": "Crossref", - // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", - // "submission.import-external.source.dataciteProject": "DataCite", "submission.import-external.source.dataciteProject": "DataCite", - // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", - // "submission.import-external.source.scielo": "SciELO", "submission.import-external.source.scielo": "SciELO", - // "submission.import-external.source.scopus": "Scopus", "submission.import-external.source.scopus": "Scopus", - // "submission.import-external.source.vufind": "VuFind", "submission.import-external.source.vufind": "VuFind", - // "submission.import-external.source.wos": "Web Of Science", "submission.import-external.source.wos": "Web Of Science", - // "submission.import-external.source.orcidWorks": "ORCID", "submission.import-external.source.orcidWorks": "ORCID", - // "submission.import-external.source.epo": "European Patent Office (EPO)", "submission.import-external.source.epo": "European Patent Office (EPO)", - // "submission.import-external.source.loading": "Loading ...", "submission.import-external.source.loading": "લોડ થઈ રહ્યું છે ...", - // "submission.import-external.source.sherpaJournal": "SHERPA Journals", "submission.import-external.source.sherpaJournal": "SHERPA Journals", - // "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", "submission.import-external.source.sherpaJournalIssn": "ISSN દ્વારા SHERPA Journals", - // "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", - // "submission.import-external.source.openaire": "OpenAIRE Search by Authors", "submission.import-external.source.openaire": "OpenAIRE Authors દ્વારા શોધો", - // "submission.import-external.source.openaireTitle": "OpenAIRE Search by Title", "submission.import-external.source.openaireTitle": "OpenAIRE Title દ્વારા શોધો", - // "submission.import-external.source.openaireFunding": "OpenAIRE Search by Funder", "submission.import-external.source.openaireFunding": "OpenAIRE Funding દ્વારા શોધો", - // "submission.import-external.source.orcid": "ORCID", "submission.import-external.source.orcid": "ORCID", - // "submission.import-external.source.pubmed": "Pubmed", "submission.import-external.source.pubmed": "Pubmed", - // "submission.import-external.source.pubmedeu": "Pubmed Europe", "submission.import-external.source.pubmedeu": "Pubmed Europe", - // "submission.import-external.source.lcname": "Library of Congress Names", "submission.import-external.source.lcname": "Library of Congress Names", - // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Research Organization Registry (ROR)", - // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", "submission.import-external.source.openalexPublication": "OpenAlex Title દ્વારા શોધો", - // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Author ID દ્વારા શોધો", - // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", "submission.import-external.source.openalexPublicationByDOI": "OpenAlex DOI દ્વારા શોધો", - // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", "submission.import-external.source.openalexPerson": "OpenAlex નામ દ્વારા શોધો", - // "submission.import-external.source.openalexJournal": "OpenAlex Journals", "submission.import-external.source.openalexJournal": "OpenAlex Journals", - // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", - // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", - // "submission.import-external.source.openalexFunder": "OpenAlex Funders", "submission.import-external.source.openalexFunder": "OpenAlex Funders", - // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "વસ્તુ પૂર્વાવલોકન", - // "submission.import-external.preview.title.Publication": "Publication Preview", "submission.import-external.preview.title.Publication": "પ્રકાશન પૂર્વાવલોકન", - // "submission.import-external.preview.title.none": "Item Preview", "submission.import-external.preview.title.none": "વસ્તુ પૂર્વાવલોકન", - // "submission.import-external.preview.title.Journal": "Journal Preview", "submission.import-external.preview.title.Journal": "જર્નલ પૂર્વાવલોકન", - // "submission.import-external.preview.title.OrgUnit": "Organizational Unit Preview", "submission.import-external.preview.title.OrgUnit": "સંસ્થાકીય એકમ પૂર્વાવલોકન", - // "submission.import-external.preview.title.Person": "Person Preview", "submission.import-external.preview.title.Person": "વ્યક્તિ પૂર્વાવલોકન", - // "submission.import-external.preview.title.Project": "Project Preview", "submission.import-external.preview.title.Project": "પ્રોજેક્ટ પૂર્વાવલોકન", - // "submission.import-external.preview.subtitle": "The metadata below was imported from an external source. It will be pre-filled when you start the submission.", "submission.import-external.preview.subtitle": "નીચેની મેટાડેટા બાહ્ય સ્ત્રોતમાંથી આયાત કરવામાં આવી હતી. તમે સબમિશન શરૂ કરશો ત્યારે તે પૂર્વ-ભરવામાં આવશે.", - // "submission.import-external.preview.button.import": "Start submission", "submission.import-external.preview.button.import": "સબમિશન શરૂ કરો", - // "submission.import-external.preview.error.import.title": "Submission error", "submission.import-external.preview.error.import.title": "સબમિશન ભૂલ", - // "submission.import-external.preview.error.import.body": "An error occurs during the external source entry import process.", "submission.import-external.preview.error.import.body": "બાહ્ય સ્ત્રોત એન્ટ્રી આયાત પ્રક્રિયા દરમિયાન ભૂલ થાય છે.", - // "submission.sections.describe.relationship-lookup.close": "Close", "submission.sections.describe.relationship-lookup.close": "બંધ કરો", - // "submission.sections.describe.relationship-lookup.external-source.added": "Successfully added local entry to the selection", "submission.sections.describe.relationship-lookup.external-source.added": "સ્થાનિક એન્ટ્રી પસંદગીમાં સફળતાપૂર્વક ઉમેરવામાં આવી", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Import remote author", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "દૂરના લેખક આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Import remote journal", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "દૂરના જર્નલ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Import remote journal issue", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "દૂરના જર્નલ ઇશ્યુ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Import remote journal volume", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "દૂરના જર્નલ વોલ્યુમ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Import remote item", "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "દૂરની વસ્તુ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Import remote event", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "દૂરના ઇવેન્ટ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Import remote product", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "દૂરના પ્રોડક્ટ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Import remote equipment", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "દૂરના સાધન આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "Import remote organizational unit", "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "દૂરના સંસ્થાકીય એકમ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "Import remote fund", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "દૂરના ફંડ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Import remote person", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "દૂરના વ્યક્તિ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Import remote patent", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "દૂરના પેટન્ટ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Import remote project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "દૂરના પ્રોજેક્ટ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Import remote publication", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "દૂરના પ્રકાશન આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "નવી એન્ટિટી ઉમેરવામાં આવી!", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Import Remote Author", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "દૂરના લેખક આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Successfully added local author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "સફળતાપૂર્વક સ્થાનિક લેખક પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Successfully imported and added external author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "સફળતાપૂર્વક બાહ્ય લેખક આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Authority", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "અધિકાર", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Import as a new local authority entry", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "નવા સ્થાનિક અધિકાર એન્ટ્રી તરીકે આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Cancel", "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "રદ કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Select a collection to import new entries to", "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "નવી એન્ટ્રીઓ આયાત કરવા માટે કલેક્શન પસંદ કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "Entities", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "એન્ટિટીઓ", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Import as a new local entity", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "નવા સ્થાનિક એન્ટિટી તરીકે આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC Name માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE Title માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE Funding માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa Journal માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Importing from Sherpa Publisher", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa Publisher માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Importing from PubMed", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Importing from arXiv", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "Import from ROR", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR માંથી આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Import", "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Import Remote Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "દૂરના જર્નલ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Successfully added local journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Successfully imported and added external journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Import Remote Journal Issue", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "દૂરના જર્નલ ઇશ્યુ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Successfully added local journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ ઇશ્યુ પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Successfully imported and added external journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ ઇશ્યુ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Import Remote Journal Volume", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "દૂરના જર્નલ વોલ્યુમ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Successfully added local journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ વોલ્યુમ પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Successfully imported and added external journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ વોલ્યુમ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "સ્થાનિક મેચ પસંદ કરો:", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "Import Remote Organization", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "દૂરના સંસ્થાકીય એકમ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "Successfully added local organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "સફળતાપૂર્વક સ્થાનિક સંસ્થાકીય એકમ પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "Successfully imported and added external organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "સફળતાપૂર્વક બાહ્ય સંસ્થાકીય એકમ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Deselect all", "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "બધા પસંદગીઓ રદ કરો", - // "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Deselect page", "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "પેજ પસંદગીઓ રદ કરો", - // "submission.sections.describe.relationship-lookup.search-tab.loading": "Loading...", "submission.sections.describe.relationship-lookup.search-tab.loading": "લોડ થઈ રહ્યું છે...", - // "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Search query", "submission.sections.describe.relationship-lookup.search-tab.placeholder": "શોધ ક્વેરી", - // "submission.sections.describe.relationship-lookup.search-tab.search": "Go", "submission.sections.describe.relationship-lookup.search-tab.search": "જાઓ", - // "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "શોધો...", - // "submission.sections.describe.relationship-lookup.search-tab.select-all": "Select all", "submission.sections.describe.relationship-lookup.search-tab.select-all": "બધા પસંદ કરો", - // "submission.sections.describe.relationship-lookup.search-tab.select-page": "Select page", "submission.sections.describe.relationship-lookup.search-tab.select-page": "પેજ પસંદ કરો", - // "submission.sections.describe.relationship-lookup.selected": "Selected {{ size }} items", "submission.sections.describe.relationship-lookup.selected": "પસંદ કરેલી {{ size }} વસ્તુઓ", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "સ્થાનિક લેખકો ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "સ્થાનિક જર્નલ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Local Projects ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "સ્થાનિક પ્રોજેક્ટ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Local Publications ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "સ્થાનિક પ્રકાશન ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "સ્થાનિક લેખકો ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Local Organizational Units ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "સ્થાનિક સંસ્થાકીય એકમ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Local Data Packages ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "સ્થાનિક ડેટા પેકેજ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Local Data Files ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "સ્થાનિક ડેટા ફાઇલ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "સ્થાનિક જર્નલ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "સ્થાનિક જર્નલ ઇશ્યુ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "સ્થાનિક જર્નલ ઇશ્યુ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Search by Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Authors ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Search by Title ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Title ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Search by Funder ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Funding ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN દ્વારા Sherpa Journals ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Funding Agencies માટે શોધો", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Search for Funding", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Funding માટે શોધો", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Search for Organizational Units", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "સંસ્થાકીય એકમ માટે શોધો", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "પ્રોજેક્ટના ફંડર", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "Publication of the Author", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "લેખકના પ્રકાશન", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "OrgUnit of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "પ્રોજેક્ટના સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "પ્રોજેક્ટના ફંડર", - // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - - // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "શોધો...", - // "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Current Selection ({{ count }})", "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "વર્તમાન પસંદગી ({{ count }})", - // "submission.sections.describe.relationship-lookup.title.Journal": "Journal", "submission.sections.describe.relationship-lookup.title.Journal": "જર્નલ", - // "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Journal Issues", "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "જર્નલ ઇશ્યુ", - // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "જર્નલ ઇશ્યુ", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.title.JournalVolume": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.JournalVolume": "જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "Journals", "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "જર્નલ", - // "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Authors", "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "લેખકો", - // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Funding Agency", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "ફંડિંગ એજન્સી", - // "submission.sections.describe.relationship-lookup.title.Project": "Projects", "submission.sections.describe.relationship-lookup.title.Project": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.title.Publication": "Publications", "submission.sections.describe.relationship-lookup.title.Publication": "પ્રકાશન", - // "submission.sections.describe.relationship-lookup.title.Person": "Authors", "submission.sections.describe.relationship-lookup.title.Person": "લેખકો", - // "submission.sections.describe.relationship-lookup.title.OrgUnit": "Organizational Units", "submission.sections.describe.relationship-lookup.title.OrgUnit": "સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.title.DataPackage": "Data Packages", "submission.sections.describe.relationship-lookup.title.DataPackage": "ડેટા પેકેજ", - // "submission.sections.describe.relationship-lookup.title.DataFile": "Data Files", "submission.sections.describe.relationship-lookup.title.DataFile": "ડેટા ફાઇલ", - // "submission.sections.describe.relationship-lookup.title.Funding Agency": "Funding Agency", "submission.sections.describe.relationship-lookup.title.Funding Agency": "ફંડિંગ એજન્સી", - // "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Funding", "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "ફંડિંગ", - // "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Parent Organizational Unit", "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "પેરેન્ટ સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "Publication", "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "પ્રકાશન", - // "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "OrgUnit", "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Toggle dropdown", "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ડ્રોપડાઉન ટૉગલ કરો", - // "submission.sections.describe.relationship-lookup.selection-tab.settings": "Settings", "submission.sections.describe.relationship-lookup.selection-tab.settings": "સેટિંગ્સ", - // "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Your selection is currently empty.", "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "તમારી પસંદગી હાલમાં ખાલી છે.", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "પસંદ કરેલા લેખકો", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "પસંદ કરેલા જર્નલ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "પસંદ કરેલા જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "પસંદ કરેલા જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Selected Projects", "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "પસંદ કરેલા પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Selected Publications", "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "પસંદ કરેલા પ્રકાશન", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "પસંદ કરેલા લેખકો", - // "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Selected Organizational Units", "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "પસંદ કરેલા સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Selected Data Packages", "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "પસંદ કરેલા ડેટા પેકેજ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Selected Data Files", "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "પસંદ કરેલી ડેટા ફાઇલ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "પસંદ કરેલા જર્નલ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "પસંદ કરેલા ઇશ્યુ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "પસંદ કરેલા જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Selected Funding Agency", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "પસંદ કરેલી ફંડિંગ એજન્સી", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Selected Funding", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "પસંદ કરેલા ફંડિંગ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "પસંદ કરેલા ઇશ્યુ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Selected Organizational Unit", "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "પસંદ કરેલા સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.", "submission.sections.describe.relationship-lookup.name-variant.notification.content": "શું તમે આ નામ વેરિઅન્ટને ભવિષ્યના સબમિશન માટે ફરીથી ઉપયોગ કરવા માટે સાચવવા માંગો છો? જો તમે નહીં કરો તો તમે તેને આ સબમિશન માટે જ ઉપયોગ કરી શકો છો.", - // "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant", "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "નવું નામ વેરિઅન્ટ સાચવો", - // "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Use only for this submission", "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "આ સબમિશન માટે જ ઉપયોગ કરો", - // "submission.sections.ccLicense.type": "License Type", "submission.sections.ccLicense.type": "લાઇસન્સ પ્રકાર", - // "submission.sections.ccLicense.select": "Select a license type…", "submission.sections.ccLicense.select": "લાઇસન્સ પ્રકાર પસંદ કરો…", - // "submission.sections.ccLicense.change": "Change your license type…", "submission.sections.ccLicense.change": "તમારો લાઇસન્સ પ્રકાર બદલો…", - // "submission.sections.ccLicense.none": "No licenses available", "submission.sections.ccLicense.none": "કોઈ લાઇસન્સ ઉપલબ્ધ નથી", - // "submission.sections.ccLicense.option.select": "Select an option…", "submission.sections.ccLicense.option.select": "એક વિકલ્પ પસંદ કરો…", - // "submission.sections.ccLicense.link": "You’ve selected the following license:", - // TODO New key - Add a translation - "submission.sections.ccLicense.link": "You’ve selected the following license:", + "submission.sections.ccLicense.link": "તમે નીચેના લાઇસન્સ પસંદ કર્યું છે:", - // "submission.sections.ccLicense.confirmation": "I grant the license above", "submission.sections.ccLicense.confirmation": "હું ઉપરના લાઇસન્સને મંજૂરી આપું છું", - // "submission.sections.general.add-more": "Add more", "submission.sections.general.add-more": "વધુ ઉમેરો", - // "submission.sections.general.cannot_deposit": "Deposit cannot be completed due to errors in the form.
Please fill out all required fields to complete the deposit.", "submission.sections.general.cannot_deposit": "ફોર્મમાં ભૂલોને કારણે ડિપોઝિટ પૂર્ણ કરી શકાતી નથી.
ડિપોઝિટ પૂર્ણ કરવા માટે કૃપા કરીને બધી જરૂરી ફીલ્ડ્સ ભરો.", - // "submission.sections.general.collection": "Collection", "submission.sections.general.collection": "સંગ્રહ", - // "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.", "submission.sections.general.deposit_error_notice": "વસ્તુ સબમિટ કરતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", - // "submission.sections.general.deposit_success_notice": "Submission deposited successfully.", "submission.sections.general.deposit_success_notice": "સબમિશન સફળતાપૂર્વક ડિપોઝિટ થયું.", - // "submission.sections.general.discard_error_notice": "There was an issue when discarding the item, please try again later.", "submission.sections.general.discard_error_notice": "વસ્તુ રદ કરતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", - // "submission.sections.general.discard_success_notice": "Submission discarded successfully.", "submission.sections.general.discard_success_notice": "સબમિશન સફળતાપૂર્વક રદ થયું.", - // "submission.sections.general.metadata-extracted": "New metadata have been extracted and added to the {{sectionId}} section.", "submission.sections.general.metadata-extracted": "નવી મેટાડેટા કાઢી અને {{sectionId}} વિભાગમાં ઉમેરવામાં આવી છે.", - // "submission.sections.general.metadata-extracted-new-section": "New {{sectionId}} section has been added to submission.", "submission.sections.general.metadata-extracted-new-section": "નવી {{sectionId}} વિભાગ સબમિશનમાં ઉમેરવામાં આવી છે.", - // "submission.sections.general.no-collection": "No collection found", "submission.sections.general.no-collection": "કોઈ સંગ્રહ મળ્યો નથી", - // "submission.sections.general.no-entity": "No entity types found", "submission.sections.general.no-entity": "કોઈ એન્ટિટી પ્રકારો મળ્યા નથી", - // "submission.sections.general.no-sections": "No options available", "submission.sections.general.no-sections": "કોઈ વિકલ્પો ઉપલબ્ધ નથી", - // "submission.sections.general.save_error_notice": "There was an issue when saving the item, please try again later.", "submission.sections.general.save_error_notice": "વસ્તુ સાચવતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", - // "submission.sections.general.save_success_notice": "Submission saved successfully.", "submission.sections.general.save_success_notice": "સબમિશન સફળતાપૂર્વક સાચવાયું.", - // "submission.sections.general.search-collection": "Search for a collection", "submission.sections.general.search-collection": "સંગ્રહ માટે શોધો", - // "submission.sections.general.sections_not_valid": "There are incomplete sections.", "submission.sections.general.sections_not_valid": "અપૂર્ણ વિભાગો છે.", - // "submission.sections.identifiers.info": "The following identifiers will be created for your item:", - // TODO New key - Add a translation - "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + "submission.sections.identifiers.info": "તમારી વસ્તુ માટે નીચેના ઓળખકર્તાઓ બનાવવામાં આવશે:", - // "submission.sections.identifiers.no_handle": "No handles have been minted for this item.", "submission.sections.identifiers.no_handle": "આ વસ્તુ માટે કોઈ હેન્ડલ મિન્ટ કરવામાં આવ્યા નથી.", - // "submission.sections.identifiers.no_doi": "No DOIs have been minted for this item.", "submission.sections.identifiers.no_doi": "આ વસ્તુ માટે કોઈ DOI મિન્ટ કરવામાં આવ્યા નથી.", - // "submission.sections.identifiers.handle_label": "Handle: ", - // TODO New key - Add a translation - "submission.sections.identifiers.handle_label": "Handle: ", + "submission.sections.identifiers.handle_label": "હેન્ડલ: ", - // "submission.sections.identifiers.doi_label": "DOI: ", "submission.sections.identifiers.doi_label": "DOI: ", - // "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", - // TODO New key - Add a translation - "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + "submission.sections.identifiers.otherIdentifiers_label": "અન્ય ઓળખકર્તાઓ: ", - // "submission.sections.submit.progressbar.accessCondition": "Item access conditions", "submission.sections.submit.progressbar.accessCondition": "વસ્તુ ઍક્સેસ શરતો", - // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "ક્રિએટિવ કોમન્સ લાઇસન્સ", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "રીસાયકલ", - // "submission.sections.submit.progressbar.describe.stepcustom": "Describe", "submission.sections.submit.progressbar.describe.stepcustom": "વર્ણન કરો", - // "submission.sections.submit.progressbar.describe.stepone": "Describe", "submission.sections.submit.progressbar.describe.stepone": "વર્ણન કરો", - // "submission.sections.submit.progressbar.describe.steptwo": "Describe", "submission.sections.submit.progressbar.describe.steptwo": "વર્ણન કરો", - // "submission.sections.submit.progressbar.duplicates": "Potential duplicates", "submission.sections.submit.progressbar.duplicates": "સંભવિત નકલો", - // "submission.sections.submit.progressbar.identifiers": "Identifiers", "submission.sections.submit.progressbar.identifiers": "ઓળખકર્તાઓ", - // "submission.sections.submit.progressbar.license": "Deposit license", "submission.sections.submit.progressbar.license": "ડિપોઝિટ લાઇસન્સ", - // "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies", "submission.sections.submit.progressbar.sherpapolicy": "શેરપા નીતિઓ", - // "submission.sections.submit.progressbar.upload": "Upload files", "submission.sections.submit.progressbar.upload": "ફાઇલો અપલોડ કરો", - // "submission.sections.submit.progressbar.sherpaPolicies": "Publisher open access policy information", "submission.sections.submit.progressbar.sherpaPolicies": "પ્રકાશક ઓપન ઍક્સેસ નીતિ માહિતી", - // "submission.sections.sherpa-policy.title-empty": "No publisher policy information available. If your work has an associated ISSN, please enter it above to see any related publisher open access policies.", "submission.sections.sherpa-policy.title-empty": "કોઈ પ્રકાશક નીતિ માહિતી ઉપલબ્ધ નથી. જો તમારા કાર્ય સાથે સંકળાયેલ ISSN છે, તો કૃપા કરીને ઉપર દાખલ કરો જેથી સંબંધિત પ્રકાશક ઓપન ઍક્સેસ નીતિઓ જોઈ શકાય.", - // "submission.sections.status.errors.title": "Errors", "submission.sections.status.errors.title": "ભૂલો", - // "submission.sections.status.valid.title": "Valid", "submission.sections.status.valid.title": "માન્ય", - // "submission.sections.status.warnings.title": "Warnings", "submission.sections.status.warnings.title": "ચેતવણીઓ", - // "submission.sections.status.errors.aria": "has errors", "submission.sections.status.errors.aria": "ભૂલો છે", - // "submission.sections.status.valid.aria": "is valid", "submission.sections.status.valid.aria": "માન્ય છે", - // "submission.sections.status.warnings.aria": "has warnings", "submission.sections.status.warnings.aria": "ચેતવણીઓ છે", - // "submission.sections.status.info.title": "Additional Information", "submission.sections.status.info.title": "વધુ માહિતી", - // "submission.sections.status.info.aria": "Additional Information", "submission.sections.status.info.aria": "વધુ માહિતી", - // "submission.sections.toggle.open": "Open section", "submission.sections.toggle.open": "વિભાગ ખોલો", - // "submission.sections.toggle.close": "Close section", "submission.sections.toggle.close": "વિભાગ બંધ કરો", - // "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section", "submission.sections.toggle.aria.open": "{{sectionHeader}} વિભાગ વિસ્તૃત કરો", - // "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section", "submission.sections.toggle.aria.close": "{{sectionHeader}} વિભાગ સંકોચો", - // "submission.sections.upload.primary.make": "Make {{fileName}} the primary bitstream", "submission.sections.upload.primary.make": "{{fileName}} ને મુખ્ય બિટસ્ટ્રીમ બનાવો", - // "submission.sections.upload.primary.remove": "Remove {{fileName}} as the primary bitstream", "submission.sections.upload.primary.remove": "{{fileName}} ને મુખ્ય બિટસ્ટ્રીમ તરીકે દૂર કરો", - // "submission.sections.upload.delete.confirm.cancel": "Cancel", "submission.sections.upload.delete.confirm.cancel": "રદ કરો", - // "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?", "submission.sections.upload.delete.confirm.info": "આ કામગીરી પાછી લઈ શકાતી નથી. શું તમે ખાતરી કરો છો?", - // "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure", "submission.sections.upload.delete.confirm.submit": "હા, હું ખાતરી કરું છું", - // "submission.sections.upload.delete.confirm.title": "Delete bitstream", "submission.sections.upload.delete.confirm.title": "બિટસ્ટ્રીમ કાઢી નાખો", - // "submission.sections.upload.delete.submit": "Delete", "submission.sections.upload.delete.submit": "કાઢી નાખો", - // "submission.sections.upload.download.title": "Download bitstream", "submission.sections.upload.download.title": "બિટસ્ટ્રીમ ડાઉનલોડ કરો", - // "submission.sections.upload.drop-message": "Drop files to attach them to the item", "submission.sections.upload.drop-message": "વસ્તુ સાથે જોડવા માટે ફાઇલો છોડો", - // "submission.sections.upload.edit.title": "Edit bitstream", "submission.sections.upload.edit.title": "બિટસ્ટ્રીમ સંપાદિત કરો", - // "submission.sections.upload.form.access-condition-label": "Access condition type", "submission.sections.upload.form.access-condition-label": "ઍક્સેસ શરતો પ્રકાર", - // "submission.sections.upload.form.access-condition-hint": "Select an access condition to apply on the bitstream once the item is deposited", "submission.sections.upload.form.access-condition-hint": "વસ્તુ ડિપોઝિટ થયા પછી બિટસ્ટ્રીમ પર લાગુ કરવા માટે ઍક્સેસ શરતો પસંદ કરો", - // "submission.sections.upload.form.date-required": "Date is required.", "submission.sections.upload.form.date-required": "તારીખ જરૂરી છે.", - // "submission.sections.upload.form.date-required-from": "Grant access from date is required.", "submission.sections.upload.form.date-required-from": "તારીખથી ઍક્સેસ આપો જરૂરી છે.", - // "submission.sections.upload.form.date-required-until": "Grant access until date is required.", "submission.sections.upload.form.date-required-until": "તારીખ સુધી ઍક્સેસ આપો જરૂરી છે.", - // "submission.sections.upload.form.from-label": "Grant access from", "submission.sections.upload.form.from-label": "તારીખથી ઍક્સેસ આપો", - // "submission.sections.upload.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.upload.form.from-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", - // "submission.sections.upload.form.from-placeholder": "From", "submission.sections.upload.form.from-placeholder": "થી", - // "submission.sections.upload.form.group-label": "Group", "submission.sections.upload.form.group-label": "સમૂહ", - // "submission.sections.upload.form.group-required": "Group is required.", "submission.sections.upload.form.group-required": "સમૂહ જરૂરી છે.", - // "submission.sections.upload.form.until-label": "Grant access until", "submission.sections.upload.form.until-label": "તારીખ સુધી ઍક્સેસ આપો", - // "submission.sections.upload.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.upload.form.until-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", - // "submission.sections.upload.form.until-placeholder": "Until", "submission.sections.upload.form.until-placeholder": "સુધી", - // "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", - // TODO New key - Add a translation - "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", + "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} સંગ્રહમાં અપલોડ કરેલી ફાઇલો નીચેના સમૂહો અનુસાર ઍક્સેસ કરી શકાશે:", - // "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", - // TODO New key - Add a translation - "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + "submission.sections.upload.header.policy.default.withlist": "કૃપા કરીને નોંધો કે {{collectionName}} સંગ્રહમાં અપલોડ કરેલી ફાઇલો, એકલ ફાઇલ માટે સ્પષ્ટપણે નક્કી કરેલા સમૂહો ઉપરાંત, નીચેના સમૂહો સાથે ઍક્સેસ કરી શકાશે:", - // "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or upload additional files by dragging & dropping them anywhere on the page.", "submission.sections.upload.info": "અહીં તમને વસ્તુમાં હાલની બધી ફાઇલો મળશે. તમે ફાઇલ મેટાડેટા અને ઍક્સેસ શરતોને અપડેટ કરી શકો છો અથવા પેજ પર ક્યાંય પણ ડ્રેગ અને ડ્રોપ કરીને વધારાની ફાઇલો અપલોડ કરી શકો છો.", - // "submission.sections.upload.no-entry": "No", "submission.sections.upload.no-entry": "ના", - // "submission.sections.upload.no-file-uploaded": "No file uploaded yet.", "submission.sections.upload.no-file-uploaded": "હજી સુધી કોઈ ફાઇલ અપલોડ કરવામાં આવી નથી.", - // "submission.sections.upload.save-metadata": "Save metadata", "submission.sections.upload.save-metadata": "મેટાડેટા સાચવો", - // "submission.sections.upload.undo": "Cancel", "submission.sections.upload.undo": "રદ કરો", - // "submission.sections.upload.upload-failed": "Upload failed", "submission.sections.upload.upload-failed": "અપલોડ નિષ્ફળ", - // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "અપલોડ સફળ", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "જ્યારે ચકાસવામાં આવે છે, આ વસ્તુ શોધ/બ્રાઉઝમાં શોધી શકાય તેવી હશે. જ્યારે અનચેક કરવામાં આવે છે, વસ્તુ માત્ર સીધી લિંક દ્વારા ઉપલબ્ધ હશે અને ક્યારેય શોધ/બ્રાઉઝમાં દેખાશે નહીં.", - // "submission.sections.accesses.form.discoverable-label": "Discoverable", "submission.sections.accesses.form.discoverable-label": "શોધી શકાય તેવી", - // "submission.sections.accesses.form.access-condition-label": "Access condition type", "submission.sections.accesses.form.access-condition-label": "ઍક્સેસ શરતો પ્રકાર", - // "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited", "submission.sections.accesses.form.access-condition-hint": "વસ્તુ ડિપોઝિટ થયા પછી વસ્તુ પર લાગુ કરવા માટે ઍક્સેસ શરતો પસંદ કરો", - // "submission.sections.accesses.form.date-required": "Date is required.", "submission.sections.accesses.form.date-required": "તારીખ જરૂરી છે.", - // "submission.sections.accesses.form.date-required-from": "Grant access from date is required.", "submission.sections.accesses.form.date-required-from": "તારીખથી ઍક્સેસ આપો જરૂરી છે.", - // "submission.sections.accesses.form.date-required-until": "Grant access until date is required.", "submission.sections.accesses.form.date-required-until": "તારીખ સુધી ઍક્સેસ આપો જરૂરી છે.", - // "submission.sections.accesses.form.from-label": "Grant access from", "submission.sections.accesses.form.from-label": "તારીખથી ઍક્સેસ આપો", - // "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.accesses.form.from-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", - // "submission.sections.accesses.form.from-placeholder": "From", "submission.sections.accesses.form.from-placeholder": "થી", - // "submission.sections.accesses.form.group-label": "Group", "submission.sections.accesses.form.group-label": "સમૂહ", - // "submission.sections.accesses.form.group-required": "Group is required.", "submission.sections.accesses.form.group-required": "સમૂહ જરૂરી છે.", - // "submission.sections.accesses.form.until-label": "Grant access until", "submission.sections.accesses.form.until-label": "તારીખ સુધી ઍક્સેસ આપો", - // "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.accesses.form.until-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", - // "submission.sections.accesses.form.until-placeholder": "Until", "submission.sections.accesses.form.until-placeholder": "સુધી", - // "submission.sections.duplicates.none": "No duplicates were detected.", "submission.sections.duplicates.none": "કોઈ નકલો શોધી નથી.", - // "submission.sections.duplicates.detected": "Potential duplicates were detected. Please review the list below.", "submission.sections.duplicates.detected": "સંભવિત નકલો શોધી છે. કૃપા કરીને નીચેની યાદી સમીક્ષા કરો.", - // "submission.sections.duplicates.in-workspace": "This item is in workspace", "submission.sections.duplicates.in-workspace": "આ વસ્તુ વર્કસ્પેસમાં છે", - // "submission.sections.duplicates.in-workflow": "This item is in workflow", "submission.sections.duplicates.in-workflow": "આ વસ્તુ વર્કફ્લોમાં છે", - // "submission.sections.license.granted-label": "I confirm the license above", "submission.sections.license.granted-label": "હું ઉપરના લાઇસન્સને મંજૂરી આપું છું", - // "submission.sections.license.required": "You must accept the license", "submission.sections.license.required": "તમારે લાઇસન્સ સ્વીકારવું પડશે", - // "submission.sections.license.notgranted": "You must accept the license", "submission.sections.license.notgranted": "તમારે લાઇસન્સ સ્વીકારવું પડશે", - // "submission.sections.sherpa.publication.information": "Publication information", "submission.sections.sherpa.publication.information": "પ્રકાશન માહિતી", - // "submission.sections.sherpa.publication.information.title": "Title", "submission.sections.sherpa.publication.information.title": "શીર્ષક", - // "submission.sections.sherpa.publication.information.issns": "ISSNs", "submission.sections.sherpa.publication.information.issns": "ISSNs", - // "submission.sections.sherpa.publication.information.url": "URL", "submission.sections.sherpa.publication.information.url": "URL", - // "submission.sections.sherpa.publication.information.publishers": "Publisher", "submission.sections.sherpa.publication.information.publishers": "પ્રકાશક", - // "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", - // "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", - // "submission.sections.sherpa.publisher.policy": "Publisher Policy", "submission.sections.sherpa.publisher.policy": "પ્રકાશક નીતિ", - // "submission.sections.sherpa.publisher.policy.description": "The below information was found via Sherpa Romeo. Based on the policies of your publisher, it provides advice regarding whether an embargo may be necessary and/or which files you are allowed to upload. If you have questions, please contact your site administrator via the feedback form in the footer.", "submission.sections.sherpa.publisher.policy.description": "નીચેની માહિતી Sherpa Romeo દ્વારા મળી છે. તમારા પ્રકાશકની નીતિઓના આધારે, તે સલાહ આપે છે કે શું એક એમ્બાર્ગો જરૂરી હોઈ શકે છે અને/અથવા તમે કયા ફાઇલો અપલોડ કરી શકો છો. જો તમને પ્રશ્નો હોય, તો કૃપા કરીને ફૂટર માં ફીડબેક ફોર્મ દ્વારા તમારા સાઇટ એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", - // "submission.sections.sherpa.publisher.policy.openaccess": "Open Access pathways permitted by this journal's policy are listed below by article version. Click on a pathway for a more detailed view", "submission.sections.sherpa.publisher.policy.openaccess": "આ જર્નલની નીતિ દ્વારા પરવાનગી આપેલા ઓપન ઍક્સેસ માર્ગો નીચે લેખના સંસ્કરણ દ્વારા સૂચિબદ્ધ છે. વધુ વિગતવાર દૃશ્ય માટે માર્ગ પર ક્લિક કરો", - // "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", - // TODO New key - Add a translation - "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + "submission.sections.sherpa.publisher.policy.more.information": "વધુ માહિતી માટે, કૃપા કરીને નીચેના લિંક જુઓ:", - // "submission.sections.sherpa.publisher.policy.version": "Version", "submission.sections.sherpa.publisher.policy.version": "સંસ્કરણ", - // "submission.sections.sherpa.publisher.policy.embargo": "Embargo", "submission.sections.sherpa.publisher.policy.embargo": "એમ્બાર્ગો", - // "submission.sections.sherpa.publisher.policy.noembargo": "No Embargo", "submission.sections.sherpa.publisher.policy.noembargo": "કોઈ એમ્બાર્ગો નથી", - // "submission.sections.sherpa.publisher.policy.nolocation": "None", "submission.sections.sherpa.publisher.policy.nolocation": "કોઈ નથી", - // "submission.sections.sherpa.publisher.policy.license": "License", "submission.sections.sherpa.publisher.policy.license": "લાઇસન્સ", - // "submission.sections.sherpa.publisher.policy.prerequisites": "Prerequisites", "submission.sections.sherpa.publisher.policy.prerequisites": "પૂર્વશરતો", - // "submission.sections.sherpa.publisher.policy.location": "Location", "submission.sections.sherpa.publisher.policy.location": "સ્થાન", - // "submission.sections.sherpa.publisher.policy.conditions": "Conditions", "submission.sections.sherpa.publisher.policy.conditions": "શરતો", - // "submission.sections.sherpa.publisher.policy.refresh": "Refresh", "submission.sections.sherpa.publisher.policy.refresh": "રીફ્રેશ", - // "submission.sections.sherpa.record.information": "Record Information", "submission.sections.sherpa.record.information": "રેકોર્ડ માહિતી", - // "submission.sections.sherpa.record.information.id": "ID", "submission.sections.sherpa.record.information.id": "ID", - // "submission.sections.sherpa.record.information.date.created": "Date Created", "submission.sections.sherpa.record.information.date.created": "તારીખ બનાવેલ", - // "submission.sections.sherpa.record.information.date.modified": "Last Modified", "submission.sections.sherpa.record.information.date.modified": "છેલ્લે સુધારેલ", - // "submission.sections.sherpa.record.information.uri": "URI", "submission.sections.sherpa.record.information.uri": "URI", - // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations", "submission.sections.sherpa.error.message": "Sherpa માહિતી મેળવવામાં ભૂલ આવી", - // "submission.submit.breadcrumbs": "New submission", "submission.submit.breadcrumbs": "નવું સબમિશન", - // "submission.submit.title": "New submission", "submission.submit.title": "નવું સબમિશન", - // "submission.workflow.generic.delete": "Delete", "submission.workflow.generic.delete": "કાઢી નાખો", - // "submission.workflow.generic.delete-help": "Select this option to discard this item. You will then be asked to confirm it.", "submission.workflow.generic.delete-help": "આ વસ્તુને રદ કરવા માટે આ વિકલ્પ પસંદ કરો. પછી તમને તેની પુષ્ટિ કરવા માટે પૂછવામાં આવશે.", - // "submission.workflow.generic.edit": "Edit", "submission.workflow.generic.edit": "સંપાદિત કરો", - // "submission.workflow.generic.edit-help": "Select this option to change the item's metadata.", "submission.workflow.generic.edit-help": "વસ્તુના મેટાડેટા બદલવા માટે આ વિકલ્પ પસંદ કરો.", - // "submission.workflow.generic.view": "View", "submission.workflow.generic.view": "જુઓ", - // "submission.workflow.generic.view-help": "Select this option to view the item's metadata.", "submission.workflow.generic.view-help": "વસ્તુના મેટાડેટા જોવા માટે આ વિકલ્પ પસંદ કરો.", - // "submission.workflow.generic.submit_select_reviewer": "Select Reviewer", "submission.workflow.generic.submit_select_reviewer": "સમીક્ષક પસંદ કરો", - // "submission.workflow.generic.submit_select_reviewer-help": "", "submission.workflow.generic.submit_select_reviewer-help": "", - // "submission.workflow.generic.submit_score": "Rate", "submission.workflow.generic.submit_score": "મૂલ્યાંકન", - // "submission.workflow.generic.submit_score-help": "", "submission.workflow.generic.submit_score-help": "", - // "submission.workflow.tasks.claimed.approve": "Approve", "submission.workflow.tasks.claimed.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": "જો તમે વસ્તુની સમીક્ષા કરી છે અને તે સંગ્રહમાં સમાવેશ માટે યોગ્ય છે, તો \\\"મંજૂર કરો\\\" પસંદ કરો.", - // "submission.workflow.tasks.claimed.edit": "Edit", "submission.workflow.tasks.claimed.edit": "સંપાદિત કરો", - // "submission.workflow.tasks.claimed.edit_help": "Select this option to change the item's metadata.", "submission.workflow.tasks.claimed.edit_help": "વસ્તુના મેટાડેટા બદલવા માટે આ વિકલ્પ પસંદ કરો.", - // "submission.workflow.tasks.claimed.decline": "Decline", "submission.workflow.tasks.claimed.decline": "નકારો", - // "submission.workflow.tasks.claimed.decline_help": "", "submission.workflow.tasks.claimed.decline_help": "", - // "submission.workflow.tasks.claimed.reject.reason.info": "Please enter your reason for rejecting the submission into the box below, indicating whether the submitter may fix a problem and resubmit.", "submission.workflow.tasks.claimed.reject.reason.info": "કૃપા કરીને નીચેના બોક્સમાં સબમિશનને નકારવાના તમારા કારણ દાખલ કરો, જે દર્શાવે છે કે સબમિટર સમસ્યા ઠીક કરી શકે છે અને ફરીથી સબમિટ કરી શકે છે.", - // "submission.workflow.tasks.claimed.reject.reason.placeholder": "Describe the reason of reject", "submission.workflow.tasks.claimed.reject.reason.placeholder": "નકારના કારણનું વર્ણન કરો", - // "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item", "submission.workflow.tasks.claimed.reject.reason.submit": "વસ્તુ નકારો", - // "submission.workflow.tasks.claimed.reject.reason.title": "Reason", "submission.workflow.tasks.claimed.reject.reason.title": "કારણ", - // "submission.workflow.tasks.claimed.reject.submit": "Reject", "submission.workflow.tasks.claimed.reject.submit": "નકારો", - // "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is not 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": "જો તમે વસ્તુની સમીક્ષા કરી છે અને તે સંગ્રહમાં સમાવેશ માટે યોગ્ય નથી, તો \\\"નકારો\\\" પસંદ કરો. પછી તમને સંદેશ દાખલ કરવા માટે પૂછવામાં આવશે કે વસ્તુ કેમ અનુકૂળ નથી, અને સબમિટરએ કંઈક બદલવું જોઈએ અને ફરીથી સબમિટ કરવું જોઈએ.", - // "submission.workflow.tasks.claimed.return": "Return to pool", "submission.workflow.tasks.claimed.return": "પુલ પર પાછા જાઓ", - // "submission.workflow.tasks.claimed.return_help": "Return the task to the pool so that another user may perform the task.", "submission.workflow.tasks.claimed.return_help": "ટાસ્કને પુલ પર પાછા આપો જેથી અન્ય વપરાશકર્તા ટાસ્ક કરી શકે.", - // "submission.workflow.tasks.generic.error": "Error occurred during operation...", "submission.workflow.tasks.generic.error": "ઓપરેશન દરમિયાન ભૂલ આવી...", - // "submission.workflow.tasks.generic.processing": "Processing...", "submission.workflow.tasks.generic.processing": "પ્રક્રિયા...", - // "submission.workflow.tasks.generic.submitter": "Submitter", "submission.workflow.tasks.generic.submitter": "સબમિટર", - // "submission.workflow.tasks.generic.success": "Operation successful", "submission.workflow.tasks.generic.success": "ઓપરેશન સફળ", - // "submission.workflow.tasks.pool.claim": "Claim", "submission.workflow.tasks.pool.claim": "દાવો", - // "submission.workflow.tasks.pool.claim_help": "Assign this task to yourself.", "submission.workflow.tasks.pool.claim_help": "આ ટાસ્કને તમારા માટે સોંપો.", - // "submission.workflow.tasks.pool.hide-detail": "Hide detail", "submission.workflow.tasks.pool.hide-detail": "વિગત છુપાવો", - // "submission.workflow.tasks.pool.show-detail": "Show detail", "submission.workflow.tasks.pool.show-detail": "વિગત બતાવો", - // "submission.workflow.tasks.duplicates": "potential duplicates were detected for this item. Claim and edit this item to see details.", "submission.workflow.tasks.duplicates": "આ વસ્તુ માટે સંભવિત નકલો શોધી છે. વિગતો જોવા માટે આ વસ્તુનો દાવો કરો અને સંપાદિત કરો.", - // "submission.workspace.generic.view": "View", "submission.workspace.generic.view": "જુઓ", - // "submission.workspace.generic.view-help": "Select this option to view the item's metadata.", "submission.workspace.generic.view-help": "વસ્તુના મેટાડેટા જોવા માટે આ વિકલ્પ પસંદ કરો.", - // "submitter.empty": "N/A", "submitter.empty": "N/A", - // "subscriptions.title": "Subscriptions", "subscriptions.title": "સબ્સ્ક્રિપ્શન્સ", - // "subscriptions.item": "Subscriptions for items", "subscriptions.item": "વસ્તુઓ માટે સબ્સ્ક્રિપ્શન્સ", - // "subscriptions.collection": "Subscriptions for collections", "subscriptions.collection": "સંગ્રહો માટે સબ્સ્ક્રિપ્શન્સ", - // "subscriptions.community": "Subscriptions for communities", "subscriptions.community": "સમુદાયો માટે સબ્સ્ક્રિપ્શન્સ", - // "subscriptions.subscription_type": "Subscription type", "subscriptions.subscription_type": "સબ્સ્ક્રિપ્શન પ્રકાર", - // "subscriptions.frequency": "Subscription frequency", "subscriptions.frequency": "સબ્સ્ક્રિપ્શન આવર્તન", - // "subscriptions.frequency.D": "Daily", "subscriptions.frequency.D": "દૈનિક", - // "subscriptions.frequency.M": "Monthly", "subscriptions.frequency.M": "માસિક", - // "subscriptions.frequency.W": "Weekly", "subscriptions.frequency.W": "સાપ્તાહિક", - // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "સબ્સ્ક્રાઇબ કરો", - // "subscriptions.unsubscribe": "Unsubscribe", "subscriptions.unsubscribe": "સબ્સ્ક્રિપ્શન રદ કરો", - // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "સબ્સ્ક્રિપ્શન્સ", - // "subscriptions.modal.type-frequency": "Type and frequency", "subscriptions.modal.type-frequency": "પ્રકાર અને આવર્તન", - // "subscriptions.modal.close": "Close", "subscriptions.modal.close": "બંધ કરો", - // "subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile", "subscriptions.modal.delete-info": "આ સબ્સ્ક્રિપ્શનને દૂર કરવા માટે, કૃપા કરીને તમારા વપરાશકર્તા પ્રોફાઇલ હેઠળ \\\"સબ્સ્ક્રિપ્શન્સ\\\" પેજ પર જાઓ", - // "subscriptions.modal.new-subscription-form.type.content": "Content", "subscriptions.modal.new-subscription-form.type.content": "સામગ્રી", - // "subscriptions.modal.new-subscription-form.frequency.D": "Daily", "subscriptions.modal.new-subscription-form.frequency.D": "દૈનિક", - // "subscriptions.modal.new-subscription-form.frequency.W": "Weekly", "subscriptions.modal.new-subscription-form.frequency.W": "સાપ્તાહિક", - // "subscriptions.modal.new-subscription-form.frequency.M": "Monthly", "subscriptions.modal.new-subscription-form.frequency.M": "માસિક", - // "subscriptions.modal.new-subscription-form.submit": "Submit", "subscriptions.modal.new-subscription-form.submit": "સબમિટ કરો", - // "subscriptions.modal.new-subscription-form.processing": "Processing...", "subscriptions.modal.new-subscription-form.processing": "પ્રક્રિયા...", - // "subscriptions.modal.create.success": "Subscribed to {{ type }} successfully.", "subscriptions.modal.create.success": "{{ type }} માટે સફળતાપૂર્વક સબ્સ્ક્રાઇબ કર્યું.", - // "subscriptions.modal.delete.success": "Subscription deleted successfully", "subscriptions.modal.delete.success": "સબ્સ્ક્રિપ્શન સફળતાપૂર્વક દૂર કર્યું", - // "subscriptions.modal.update.success": "Subscription to {{ type }} updated successfully", "subscriptions.modal.update.success": "{{ type }} માટે સબ્સ્ક્રિપ્શન સફળતાપૂર્વક અપડેટ કર્યું", - // "subscriptions.modal.create.error": "An error occurs during the subscription creation", "subscriptions.modal.create.error": "સબ્સ્ક્રિપ્શન બનાવવાની પ્રક્રિયા દરમિયાન ભૂલ આવી", - // "subscriptions.modal.delete.error": "An error occurs during the subscription delete", "subscriptions.modal.delete.error": "સબ્સ્ક્રિપ્શન દૂર કરતી વખતે ભૂલ આવી", - // "subscriptions.modal.update.error": "An error occurs during the subscription update", "subscriptions.modal.update.error": "સબ્સ્ક્રિપ્શન અપડેટ કરતી વખતે ભૂલ આવી", - // "subscriptions.table.dso": "Subject", "subscriptions.table.dso": "વિષય", - // "subscriptions.table.subscription_type": "Subscription Type", "subscriptions.table.subscription_type": "સબ્સ્ક્રિપ્શન પ્રકાર", - // "subscriptions.table.subscription_frequency": "Subscription Frequency", "subscriptions.table.subscription_frequency": "સબ્સ્ક્રિપ્શન આવર્તન", - // "subscriptions.table.action": "Action", "subscriptions.table.action": "ક્રિયા", - // "subscriptions.table.edit": "Edit", "subscriptions.table.edit": "સંપાદિત કરો", - // "subscriptions.table.delete": "Delete", "subscriptions.table.delete": "કાઢી નાખો", - // "subscriptions.table.not-available": "Not available", "subscriptions.table.not-available": "ઉપલબ્ધ નથી", - // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "સબ્સ્ક્રાઇબ કરેલી વસ્તુને કાઢી નાખવામાં આવી છે, અથવા તમને હાલમાં તેને જોવા માટે પરવાનગી નથી", - // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", "subscriptions.table.empty.message": "તમારે આ સમયે કોઈ સબ્સ્ક્રિપ્શન નથી. સમુદાય અથવા સંગ્રહ માટે ઇમેઇલ અપડેટ્સ માટે સબ્સ્ક્રાઇબ કરવા માટે, વસ્તુના પેજ પર સબ્સ્ક્રિપ્શન બટનનો ઉપયોગ કરો.", - // "thumbnail.default.alt": "Thumbnail Image", "thumbnail.default.alt": "થંબનેલ છબી", - // "thumbnail.default.placeholder": "No Thumbnail Available", "thumbnail.default.placeholder": "કોઈ થંબનેલ ઉપલબ્ધ નથી", - // "thumbnail.project.alt": "Project Logo", "thumbnail.project.alt": "પ્રોજેક્ટ લોગો", - // "thumbnail.project.placeholder": "Project Placeholder Image", "thumbnail.project.placeholder": "પ્રોજેક્ટ પ્લેસહોલ્ડર છબી", - // "thumbnail.orgunit.alt": "OrgUnit Logo", "thumbnail.orgunit.alt": "OrgUnit લોગો", - // "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image", "thumbnail.orgunit.placeholder": "OrgUnit પ્લેસહોલ્ડર છબી", - // "thumbnail.person.alt": "Profile Picture", "thumbnail.person.alt": "પ્રોફાઇલ પિક્ચર", - // "thumbnail.person.placeholder": "No Profile Picture Available", "thumbnail.person.placeholder": "કોઈ પ્રોફાઇલ પિક્ચર ઉપલબ્ધ નથી", - // "title": "DSpace", "title": "DSpace", - // "vocabulary-treeview.header": "Hierarchical tree view", "vocabulary-treeview.header": "હાયરાર્કિકલ ટ્રી વ્યૂ", - // "vocabulary-treeview.load-more": "Load more", "vocabulary-treeview.load-more": "વધુ લોડ કરો", - // "vocabulary-treeview.search.form.reset": "Reset", "vocabulary-treeview.search.form.reset": "રીસેટ", - // "vocabulary-treeview.search.form.search": "Search", "vocabulary-treeview.search.form.search": "શોધો", - // "vocabulary-treeview.search.form.search-placeholder": "Filter results by typing the first few letters", "vocabulary-treeview.search.form.search-placeholder": "પરિણામોને ફિલ્ટર કરવા માટે પ્રથમ થોડા અક્ષરો લખો", - // "vocabulary-treeview.search.no-result": "There were no items to show", "vocabulary-treeview.search.no-result": "દેખાવ માટે કોઈ વસ્તુઓ નહોતી", - // "vocabulary-treeview.tree.description.nsi": "The Norwegian Science Index", "vocabulary-treeview.tree.description.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ", - // "vocabulary-treeview.tree.description.srsc": "Research Subject Categories", "vocabulary-treeview.tree.description.srsc": "રિસર્ચ સબજેક્ટ કેટેગરીઝ", - // "vocabulary-treeview.info": "Select a subject to add as search filter", "vocabulary-treeview.info": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", - // "uploader.browse": "browse", "uploader.browse": "બ્રાઉઝ કરો", - // "uploader.drag-message": "Drag & Drop your files here", "uploader.drag-message": "તમારી ફાઇલો અહીં ડ્રેગ અને ડ્રોપ કરો", - // "uploader.delete.btn-title": "Delete", "uploader.delete.btn-title": "કાઢી નાખો", - // "uploader.or": ", or ", "uploader.or": ", અથવા ", - // "uploader.processing": "Processing uploaded file(s)... (it's now safe to close this page)", "uploader.processing": "અપલોડ કરેલી ફાઇલોની પ્રક્રિયા કરી રહ્યું છે... (આ પેજને બંધ કરવું સુરક્ષિત છે)", - // "uploader.queue-length": "Queue length", "uploader.queue-length": "કતારની લંબાઈ", - // "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": "વાસ્તવિક મેટાડેટા તરીકે વર્ચ્યુઅલ મેટાડેટા સાચવવા માટે તમે કયા પ્રકારો પસંદ કરવા માંગો છો તે પસંદ કરો", - // "virtual-metadata.delete-item.modal-head": "The virtual metadata of this relation", "virtual-metadata.delete-item.modal-head": "આ સંબંધના વર્ચ્યુઅલ મેટાડેટા", - // "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": "વાસ્તવિક મેટાડેટા તરીકે વર્ચ્યુઅલ મેટાડેટા સાચવવા માટે તમે કયા વસ્તુઓ પસંદ કરવા માંગો છો તે પસંદ કરો", - // "supervisedWorkspace.search.results.head": "Supervised Items", "supervisedWorkspace.search.results.head": "સુપરવાઇઝ્ડ વસ્તુઓ", - // "workspace.search.results.head": "Your submissions", "workspace.search.results.head": "તમારા સબમિશન્સ", - // "workflowAdmin.search.results.head": "Administer Workflow", "workflowAdmin.search.results.head": "વર્કફ્લો સંચાલન", - // "workflow.search.results.head": "Workflow tasks", "workflow.search.results.head": "વર્કફ્લો ટાસ્ક્સ", - // "supervision.search.results.head": "Workflow and Workspace tasks", "supervision.search.results.head": "વર્કફ્લો અને વર્કસ્પેસ ટાસ્ક્સ", - // "workflow-item.edit.breadcrumbs": "Edit workflowitem", "workflow-item.edit.breadcrumbs": "વર્કફ્લો આઇટમ સંપાદિત કરો", - // "workflow-item.edit.title": "Edit workflowitem", "workflow-item.edit.title": "વર્કફ્લો આઇટમ સંપાદિત કરો", - // "workflow-item.delete.notification.success.title": "Deleted", "workflow-item.delete.notification.success.title": "કાઢી નાખ્યું", - // "workflow-item.delete.notification.success.content": "This workflow item was successfully deleted", "workflow-item.delete.notification.success.content": "આ વર્કફ્લો આઇટમ સફળતાપૂર્વક કાઢી નાખવામાં આવ્યું", - // "workflow-item.delete.notification.error.title": "Something went wrong", "workflow-item.delete.notification.error.title": "કંઈક ખોટું થયું", - // "workflow-item.delete.notification.error.content": "The workflow item could not be deleted", "workflow-item.delete.notification.error.content": "વર્કફ્લો આઇટમને કાઢી શકાતું નથી", - // "workflow-item.delete.title": "Delete workflow item", "workflow-item.delete.title": "વર્કફ્લો આઇટમ કાઢી નાખો", - // "workflow-item.delete.header": "Delete workflow item", "workflow-item.delete.header": "વર્કફ્લો આઇટમ કાઢી નાખો", - // "workflow-item.delete.button.cancel": "Cancel", "workflow-item.delete.button.cancel": "રદ કરો", - // "workflow-item.delete.button.confirm": "Delete", "workflow-item.delete.button.confirm": "કાઢી નાખો", - // "workflow-item.send-back.notification.success.title": "Sent back to submitter", "workflow-item.send-back.notification.success.title": "સબમિટર પર પાછું મોકલ્યું", - // "workflow-item.send-back.notification.success.content": "This workflow item was successfully sent back to the submitter", "workflow-item.send-back.notification.success.content": "આ વર્કફ્લો આઇટમ સફળતાપૂર્વક સબમિટર પર પાછું મોકલવામાં આવ્યું", - // "workflow-item.send-back.notification.error.title": "Something went wrong", "workflow-item.send-back.notification.error.title": "કંઈક ખોટું થયું", - // "workflow-item.send-back.notification.error.content": "The workflow item could not be sent back to the submitter", "workflow-item.send-back.notification.error.content": "વર્કફ્લો આઇટમને સબમિટર પર પાછું મોકલી શકાતું નથી", - // "workflow-item.send-back.title": "Send workflow item back to submitter", "workflow-item.send-back.title": "વર્કફ્લો આઇટમ સબમિટર પર પાછું મોકલો", - // "workflow-item.send-back.header": "Send workflow item back to submitter", "workflow-item.send-back.header": "વર્કફ્લો આઇટમ સબમિટર પર પાછું મોકલો", - // "workflow-item.send-back.button.cancel": "Cancel", "workflow-item.send-back.button.cancel": "રદ કરો", - // "workflow-item.send-back.button.confirm": "Send back", "workflow-item.send-back.button.confirm": "પાછું મોકલો", - // "workflow-item.view.breadcrumbs": "Workflow View", "workflow-item.view.breadcrumbs": "વર્કફ્લો દૃશ્ય", - // "workspace-item.view.breadcrumbs": "Workspace View", "workspace-item.view.breadcrumbs": "વર્કસ્પેસ દૃશ્ય", - // "workspace-item.view.title": "Workspace View", "workspace-item.view.title": "વર્કસ્પેસ દૃશ્ય", - // "workspace-item.delete.breadcrumbs": "Workspace Delete", "workspace-item.delete.breadcrumbs": "વર્કસ્પેસ કાઢી નાખો", - // "workspace-item.delete.header": "Delete workspace item", "workspace-item.delete.header": "વર્કસ્પેસ આઇટમ કાઢી નાખો", - // "workspace-item.delete.button.confirm": "Delete", "workspace-item.delete.button.confirm": "કાઢી નાખો", - // "workspace-item.delete.button.cancel": "Cancel", "workspace-item.delete.button.cancel": "રદ કરો", - // "workspace-item.delete.notification.success.title": "Deleted", "workspace-item.delete.notification.success.title": "કાઢી નાખ્યું", - // "workspace-item.delete.title": "This workspace item was successfully deleted", "workspace-item.delete.title": "આ વર્કસ્પેસ આઇટમ સફળતાપૂર્વક કાઢી નાખવામાં આવ્યું", - // "workspace-item.delete.notification.error.title": "Something went wrong", "workspace-item.delete.notification.error.title": "કંઈક ખોટું થયું", - // "workspace-item.delete.notification.error.content": "The workspace item could not be deleted", "workspace-item.delete.notification.error.content": "વર્કસ્પેસ આઇટમને કાઢી શકાતું નથી", - // "workflow-item.advanced.title": "Advanced workflow", "workflow-item.advanced.title": "ઉન્નત વર્કફ્લો", - // "workflow-item.selectrevieweraction.notification.success.title": "Selected reviewer", "workflow-item.selectrevieweraction.notification.success.title": "પસંદ કરેલા સમીક્ષક", - // "workflow-item.selectrevieweraction.notification.success.content": "The reviewer for this workflow item has been successfully selected", "workflow-item.selectrevieweraction.notification.success.content": "આ વર્કફ્લો આઇટમ માટે સમીક્ષક સફળતાપૂર્વક પસંદ કરવામાં આવ્યો છે", - // "workflow-item.selectrevieweraction.notification.error.title": "Something went wrong", "workflow-item.selectrevieweraction.notification.error.title": "કંઈક ખોટું થયું", - // "workflow-item.selectrevieweraction.notification.error.content": "Couldn't select the reviewer for this workflow item", "workflow-item.selectrevieweraction.notification.error.content": "આ વર્કફ્લો આઇટમ માટે સમીક્ષક પસંદ કરી શકાતું નથી", - // "workflow-item.selectrevieweraction.title": "Select Reviewer", "workflow-item.selectrevieweraction.title": "સમીક્ષક પસંદ કરો", - // "workflow-item.selectrevieweraction.header": "Select Reviewer", "workflow-item.selectrevieweraction.header": "સમીક્ષક પસંદ કરો", - // "workflow-item.selectrevieweraction.button.cancel": "Cancel", "workflow-item.selectrevieweraction.button.cancel": "રદ કરો", - // "workflow-item.selectrevieweraction.button.confirm": "Confirm", "workflow-item.selectrevieweraction.button.confirm": "પુષ્ટિ કરો", - // "workflow-item.scorereviewaction.notification.success.title": "Rating review", "workflow-item.scorereviewaction.notification.success.title": "મૂલ્યાંકન સમીક્ષા", - // "workflow-item.scorereviewaction.notification.success.content": "The rating for this item workflow item has been successfully submitted", "workflow-item.scorereviewaction.notification.success.content": "આ આઇટમ વર્કફ્લો આઇટમ માટે મૂલ્યાંકન સફળતાપૂર્વક સબમિટ કર્યું છે", - // "workflow-item.scorereviewaction.notification.error.title": "Something went wrong", "workflow-item.scorereviewaction.notification.error.title": "કંઈક ખોટું થયું", - // "workflow-item.scorereviewaction.notification.error.content": "Couldn't rate this item", "workflow-item.scorereviewaction.notification.error.content": "આ આઇટમને મૂલ્યાંકન કરી શકાતું નથી", - // "workflow-item.scorereviewaction.title": "Rate this item", "workflow-item.scorereviewaction.title": "આ આઇટમને મૂલ્યાંકન કરો", - // "workflow-item.scorereviewaction.header": "Rate this item", "workflow-item.scorereviewaction.header": "આ આઇટમને મૂલ્યાંકન કરો", - // "workflow-item.scorereviewaction.button.cancel": "Cancel", "workflow-item.scorereviewaction.button.cancel": "રદ કરો", - // "workflow-item.scorereviewaction.button.confirm": "Confirm", "workflow-item.scorereviewaction.button.confirm": "પુષ્ટિ કરો", - // "idle-modal.header": "Session will expire soon", "idle-modal.header": "સત્ર ટૂંક સમયમાં સમાપ્ત થશે", - // "idle-modal.info": "For security reasons, user sessions expire after {{ timeToExpire }} minutes of inactivity. Your session will expire soon. Would you like to extend it or log out?", "idle-modal.info": "સુરક્ષા કારણોસર, વપરાશકર્તા સત્રો {{ timeToExpire }} મિનિટની નિષ્ક્રિયતા પછી સમાપ્ત થાય છે. તમારું સત્ર ટૂંક સમયમાં સમાપ્ત થશે. શું તમે તેને વિસ્તૃત કરવા માંગો છો અથવા લોગ આઉટ કરવા માંગો છો?", - // "idle-modal.log-out": "Log out", "idle-modal.log-out": "લોગ આઉટ", - // "idle-modal.extend-session": "Extend session", "idle-modal.extend-session": "સત્ર વિસ્તૃત કરો", - // "researcher.profile.action.processing": "Processing...", "researcher.profile.action.processing": "પ્રક્રિયા...", - // "researcher.profile.associated": "Researcher profile associated", "researcher.profile.associated": "રિસર્ચર પ્રોફાઇલ સંકળાયેલ", - // "researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility", "researcher.profile.change-visibility.fail": "પ્રોફાઇલ દૃશ્યતા બદલતી વખતે અનપેક્ષિત ભૂલ આવી", - // "researcher.profile.create.new": "Create new", "researcher.profile.create.new": "નવું બનાવો", - // "researcher.profile.create.success": "Researcher profile created successfully", "researcher.profile.create.success": "રિસર્ચર પ્રોફાઇલ સફળતાપૂર્વક બનાવવામાં આવી", - // "researcher.profile.create.fail": "An error occurs during the researcher profile creation", "researcher.profile.create.fail": "રિસર્ચર પ્રોફાઇલ બનાવવાની પ્રક્રિયા દરમિયાન ભૂલ આવી", - // "researcher.profile.delete": "Delete", "researcher.profile.delete": "કાઢી નાખો", - // "researcher.profile.expose": "Expose", "researcher.profile.expose": "પ્રદર્શિત કરો", - // "researcher.profile.hide": "Hide", "researcher.profile.hide": "છુપાવો", - // "researcher.profile.not.associated": "Researcher profile not yet associated", "researcher.profile.not.associated": "રિસર્ચર પ્રોફાઇલ હજી સુધી સંકળાયેલ નથી", - // "researcher.profile.view": "View", "researcher.profile.view": "જુઓ", - // "researcher.profile.private.visibility": "PRIVATE", "researcher.profile.private.visibility": "ખાનગી", - // "researcher.profile.public.visibility": "PUBLIC", "researcher.profile.public.visibility": "જાહેર", - // "researcher.profile.status": "Status:", - // TODO New key - Add a translation - "researcher.profile.status": "Status:", + "researcher.profile.status": "સ્થિતિ:", - // "researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).", "researcherprofile.claim.not-authorized": "તમે આ આઇટમનો દાવો કરવા માટે અધિકૃત નથી. વધુ વિગતો માટે એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", - // "researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later", "researcherprofile.error.claim.body": "પ્રોફાઇલનો દાવો કરતી વખતે ભૂલ આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો", - // "researcherprofile.error.claim.title": "Error", "researcherprofile.error.claim.title": "ભૂલ", - // "researcherprofile.success.claim.body": "Profile claimed with success", "researcherprofile.success.claim.body": "પ્રોફાઇલનો દાવો સફળતાપૂર્વક થયો", - // "researcherprofile.success.claim.title": "Success", "researcherprofile.success.claim.title": "સફળતા", - // "person.page.orcid.create": "Create an ORCID ID", "person.page.orcid.create": "ORCID ID બનાવો", - // "person.page.orcid.granted-authorizations": "Granted authorizations", "person.page.orcid.granted-authorizations": "મંજૂર કરેલી અધિકૃતતાઓ", - // "person.page.orcid.grant-authorizations": "Grant authorizations", "person.page.orcid.grant-authorizations": "અધિકૃતતાઓ આપો", - // "person.page.orcid.link": "Connect to ORCID ID", "person.page.orcid.link": "ORCID ID સાથે કનેક્ટ કરો", - // "person.page.orcid.link.processing": "Linking profile to ORCID...", "person.page.orcid.link.processing": "પ્રોફાઇલને ORCID સાથે લિંક કરી રહ્યું છે...", - // "person.page.orcid.link.error.message": "Something went wrong while connecting the profile with ORCID. If the problem persists, contact the administrator.", "person.page.orcid.link.error.message": "પ્રોફાઇલને ORCID સાથે કનેક્ટ કરતી વખતે કંઈક ખોટું થયું. જો સમસ્યા ચાલુ રહે, તો એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", - // "person.page.orcid.orcid-not-linked-message": "The ORCID iD of this profile ({{ orcid }}) has not yet been connected to an account on the ORCID registry or the connection is expired.", "person.page.orcid.orcid-not-linked-message": "આ પ્રોફાઇલનો ORCID iD ({{ orcid }}) હજી સુધી ORCID રજિસ્ટ્રી સાથે કનેક્ટ થયો નથી અથવા કનેક્શન સમાપ્ત થઈ ગયું છે.", - // "person.page.orcid.unlink": "Disconnect from ORCID", "person.page.orcid.unlink": "ORCID થી ડિસકનેક્ટ કરો", - // "person.page.orcid.unlink.processing": "Processing...", "person.page.orcid.unlink.processing": "પ્રક્રિયા...", - // "person.page.orcid.missing-authorizations": "Missing authorizations", "person.page.orcid.missing-authorizations": "અધિકૃતતાઓ ગુમ છે", - // "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", - // TODO New key - Add a translation - "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + "person.page.orcid.missing-authorizations-message": "નીચેની અધિકૃતતાઓ ગુમ છે:", - // "person.page.orcid.no-missing-authorizations-message": "Great! This box is empty, so you have granted all access rights to use all functions offers by your institution.", "person.page.orcid.no-missing-authorizations-message": "શાનદાર! આ બોક્સ ખાલી છે, તેથી તમે તમારી સંસ્થા દ્વારા ઓફર કરેલી બધી સુવિધાઓનો ઉપયોગ કરવા માટે બધી ઍક્સેસ અધિકૃતતાઓ આપી છે.", - // "person.page.orcid.no-orcid-message": "No ORCID iD associated yet. By clicking on the button below it is possible to link this profile with an ORCID account.", "person.page.orcid.no-orcid-message": "હજી સુધી કોઈ ORCID iD સંકળાયેલ નથી. નીચેના બટન પર ક્લિક કરીને આ પ્રોફાઇલને ORCID એકાઉન્ટ સાથે લિંક કરી શકાય છે.", - // "person.page.orcid.profile-preferences": "Profile preferences", "person.page.orcid.profile-preferences": "પ્રોફાઇલ પસંદગીઓ", - // "person.page.orcid.funding-preferences": "Funding preferences", "person.page.orcid.funding-preferences": "ફંડિંગ પસંદગીઓ", - // "person.page.orcid.publications-preferences": "Publication preferences", "person.page.orcid.publications-preferences": "પ્રકાશન પસંદગીઓ", - // "person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator", "person.page.orcid.remove-orcid-message": "જો તમારે તમારો ORCID દૂર કરવાની જરૂર હોય, તો કૃપા કરીને રિપોઝિટરી એડમિનિસ્ટ્રેટરનો સંપર્ક કરો", - // "person.page.orcid.save.preference.changes": "Update settings", "person.page.orcid.save.preference.changes": "સેટિંગ્સ અપડેટ કરો", - // "person.page.orcid.sync-profile.affiliation": "Affiliation", "person.page.orcid.sync-profile.affiliation": "સંબંધ", - // "person.page.orcid.sync-profile.biographical": "Biographical data", "person.page.orcid.sync-profile.biographical": "જીવની માહિતી", - // "person.page.orcid.sync-profile.education": "Education", "person.page.orcid.sync-profile.education": "શિક્ષણ", - // "person.page.orcid.sync-profile.identifiers": "Identifiers", "person.page.orcid.sync-profile.identifiers": "ઓળખકર્તાઓ", - // "person.page.orcid.sync-fundings.all": "All fundings", "person.page.orcid.sync-fundings.all": "બધા ફંડિંગ્સ", - // "person.page.orcid.sync-fundings.mine": "My fundings", "person.page.orcid.sync-fundings.mine": "મારા ફંડિંગ્સ", - // "person.page.orcid.sync-fundings.my_selected": "Selected fundings", "person.page.orcid.sync-fundings.my_selected": "પસંદ કરેલા ફંડિંગ્સ", - // "person.page.orcid.sync-fundings.disabled": "Disabled", "person.page.orcid.sync-fundings.disabled": "અક્ષમ", - // "person.page.orcid.sync-publications.all": "All publications", "person.page.orcid.sync-publications.all": "બધા પ્રકાશનો", - // "person.page.orcid.sync-publications.mine": "My publications", "person.page.orcid.sync-publications.mine": "મારા પ્રકાશનો", - // "person.page.orcid.sync-publications.my_selected": "Selected publications", "person.page.orcid.sync-publications.my_selected": "પસંદ કરેલા પ્રકાશનો", - // "person.page.orcid.sync-publications.disabled": "Disabled", "person.page.orcid.sync-publications.disabled": "અક્ષમ", - // "person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry", "person.page.orcid.sync-queue.discard": "બદલાવ રદ કરો અને ORCID રજિસ્ટ્રી સાથે સુમેળ ન કરો", - // "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed", "person.page.orcid.sync-queue.discard.error": "ORCID કતાર રેકોર્ડને રદ કરવામાં નિષ્ફળ", - // "person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully", "person.page.orcid.sync-queue.discard.success": "ORCID કતાર રેકોર્ડ સફળતાપૂર્વક રદ કરવામાં આવ્યો", - // "person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty", "person.page.orcid.sync-queue.empty-message": "ORCID કતાર રજિસ્ટ્રી ખાલી છે", - // "person.page.orcid.sync-queue.table.header.type": "Type", "person.page.orcid.sync-queue.table.header.type": "પ્રકાર", - // "person.page.orcid.sync-queue.table.header.description": "Description", "person.page.orcid.sync-queue.table.header.description": "વર્ણન", - // "person.page.orcid.sync-queue.table.header.action": "Action", "person.page.orcid.sync-queue.table.header.action": "ક્રિયા", - // "person.page.orcid.sync-queue.description.affiliation": "Affiliations", "person.page.orcid.sync-queue.description.affiliation": "સંબંધ", - // "person.page.orcid.sync-queue.description.country": "Country", "person.page.orcid.sync-queue.description.country": "દેશ", - // "person.page.orcid.sync-queue.description.education": "Educations", "person.page.orcid.sync-queue.description.education": "શિક્ષણ", - // "person.page.orcid.sync-queue.description.external_ids": "External ids", "person.page.orcid.sync-queue.description.external_ids": "બાહ્ય ઓળખકર્તાઓ", - // "person.page.orcid.sync-queue.description.other_names": "Other names", "person.page.orcid.sync-queue.description.other_names": "અન્ય નામો", - // "person.page.orcid.sync-queue.description.qualification": "Qualifications", "person.page.orcid.sync-queue.description.qualification": "લાયકાત", - // "person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls", "person.page.orcid.sync-queue.description.researcher_urls": "શોધક URLs", - // "person.page.orcid.sync-queue.description.keywords": "Keywords", "person.page.orcid.sync-queue.description.keywords": "કીવર્ડ્સ", - // "person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry", "person.page.orcid.sync-queue.tooltip.insert": "ORCID રજિસ્ટ્રીમાં નવી એન્ટ્રી ઉમેરો", - // "person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry", "person.page.orcid.sync-queue.tooltip.update": "આ એન્ટ્રી ORCID રજિસ્ટ્રી પર અપડેટ કરો", - // "person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry", "person.page.orcid.sync-queue.tooltip.delete": "આ એન્ટ્રી ORCID રજિસ્ટ્રીમાંથી દૂર કરો", - // "person.page.orcid.sync-queue.tooltip.publication": "Publication", "person.page.orcid.sync-queue.tooltip.publication": "પ્રકાશન", - // "person.page.orcid.sync-queue.tooltip.project": "Project", "person.page.orcid.sync-queue.tooltip.project": "પ્રોજેક્ટ", - // "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", "person.page.orcid.sync-queue.tooltip.affiliation": "સંબંધ", - // "person.page.orcid.sync-queue.tooltip.education": "Education", "person.page.orcid.sync-queue.tooltip.education": "શિક્ષણ", - // "person.page.orcid.sync-queue.tooltip.qualification": "Qualification", "person.page.orcid.sync-queue.tooltip.qualification": "લાયકાત", - // "person.page.orcid.sync-queue.tooltip.other_names": "Other name", "person.page.orcid.sync-queue.tooltip.other_names": "અન્ય નામ", - // "person.page.orcid.sync-queue.tooltip.country": "Country", "person.page.orcid.sync-queue.tooltip.country": "દેશ", - // "person.page.orcid.sync-queue.tooltip.keywords": "Keyword", "person.page.orcid.sync-queue.tooltip.keywords": "કીવર્ડ", - // "person.page.orcid.sync-queue.tooltip.external_ids": "External identifier", "person.page.orcid.sync-queue.tooltip.external_ids": "બાહ્ય ઓળખકર્તા", - // "person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url", "person.page.orcid.sync-queue.tooltip.researcher_urls": "શોધક URL", - // "person.page.orcid.sync-queue.send": "Synchronize with ORCID registry", "person.page.orcid.sync-queue.send": "ORCID રજિસ્ટ્રી સાથે સુમેળ કરો", - // "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.", "person.page.orcid.sync-queue.send.unauthorized-error.title": "અધિકૃતતાઓ ગુમ થવાને કારણે ORCID પર સબમિશન નિષ્ફળ થયું.", - // "person.page.orcid.sync-queue.send.unauthorized-error.content": "Click here to grant again the required permissions. If the problem persists, contact the administrator", "person.page.orcid.sync-queue.send.unauthorized-error.content": "આધિકૃતતાઓ ફરીથી આપવા માટે અહીં ક્લિક કરો. જો સમસ્યા ચાલુ રહે, તો એડમિનિસ્ટ્રેટરનો સંપર્ક કરો", - // "person.page.orcid.sync-queue.send.bad-request-error": "The submission to ORCID failed because the resource sent to ORCID registry is not valid", "person.page.orcid.sync-queue.send.bad-request-error": "ORCID પર સબમિશન નિષ્ફળ થયું કારણ કે ORCID રજિસ્ટ્રીને મોકલવામાં આવેલ સંસાધન માન્ય નથી", - // "person.page.orcid.sync-queue.send.error": "The submission to ORCID failed", "person.page.orcid.sync-queue.send.error": "ORCID પર સબમિશન નિષ્ફળ થયું", - // "person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry", "person.page.orcid.sync-queue.send.conflict-error": "ORCID પર સબમિશન નિષ્ફળ થયું કારણ કે સંસાધન પહેલાથી જ ORCID રજિસ્ટ્રી પર હાજર છે", - // "person.page.orcid.sync-queue.send.not-found-warning": "The resource does not exists anymore on the ORCID registry.", "person.page.orcid.sync-queue.send.not-found-warning": "સંસાધન ORCID રજિસ્ટ્રી પર હવે હાજર નથી.", - // "person.page.orcid.sync-queue.send.success": "The submission to ORCID was completed successfully", "person.page.orcid.sync-queue.send.success": "ORCID પર સબમિશન સફળતાપૂર્વક પૂર્ણ થયું", - // "person.page.orcid.sync-queue.send.validation-error": "The data that you want to synchronize with ORCID is not valid", "person.page.orcid.sync-queue.send.validation-error": "તમે ORCID સાથે સુમેળ કરવા માંગો છો તે ડેટા માન્ય નથી", - // "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "The amount's currency is required", "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "રકમની કરન્સી જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.external-id.required": "The resource to be sent requires at least one identifier", "person.page.orcid.sync-queue.send.validation-error.external-id.required": "મોકલવામાં આવતી સંસાધન માટે ઓછામાં ઓછો એક ઓળખકર્તા જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.title.required": "The title is required", "person.page.orcid.sync-queue.send.validation-error.title.required": "શીર્ષક જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required", "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required", "person.page.orcid.sync-queue.send.validation-error.start-date.required": "પ્રારંભ તારીખ જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required", "person.page.orcid.sync-queue.send.validation-error.funder.required": "ફંડર જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.country.invalid": "અમાન્ય 2 અક્ષરોનો ISO 3166 દેશ", - // "person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required", "person.page.orcid.sync-queue.send.validation-error.organization.required": "સંસ્થા જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required", "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "સંસ્થાનું નામ જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900", "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "પ્રકાશન તારીખ 1900 પછીની હોવી જોઈએ", - // "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address", "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "મોકલવામાં આવતી સંસ્થા માટે સરનામું જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "The address of the organization to be sent requires a city", "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "મોકલવામાં આવતી સંસ્થાનું સરનામું માટે શહેર જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "The address of the organization to be sent requires a valid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "મોકલવામાં આવતી સંસ્થાનું સરનામું માટે માન્ય 2 અક્ષરોનો ISO 3166 દેશ જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "An identifier to disambiguate organizations is required. Supported ids are GRID, Ringgold, Legal Entity identifiers (LEIs) and Crossref Funder Registry identifiers", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "સંસ્થાઓને સ્પષ્ટ કરવા માટે એક ઓળખકર્તા જરૂરી છે. સપોર્ટેડ IDs GRID, Ringgold, Legal Entity identifiers (LEIs) અને Crossref Funder Registry identifiers છે", - // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "The organization's identifiers requires a value", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "સંસ્થાના ઓળખકર્તાઓ માટે મૂલ્ય જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "The organization's identifiers requires a source", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "સંસ્થાના ઓળખકર્તાઓ માટે સ્ત્રોત જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "The source of one of the organization identifiers is invalid. Supported sources are RINGGOLD, GRID, LEI and FUNDREF", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "સંસ્થાના એક ઓળખકર્તાના સ્ત્રોત અમાન્ય છે. સપોર્ટેડ સ્ત્રોતો RINGGOLD, GRID, LEI અને FUNDREF છે", - // "person.page.orcid.synchronization-mode": "Synchronization mode", "person.page.orcid.synchronization-mode": "સુમેળ સ્થિતિ", - // "person.page.orcid.synchronization-mode.batch": "Batch", "person.page.orcid.synchronization-mode.batch": "બેચ", - // "person.page.orcid.synchronization-mode.label": "Synchronization mode", "person.page.orcid.synchronization-mode.label": "સુમેળ સ્થિતિ", - // "person.page.orcid.synchronization-mode-message": "Please select how you would like synchronization to ORCID to occur. The options include \"Manual\" (you must send your data to ORCID manually), or \"Batch\" (the system will send your data to ORCID via a scheduled script).", "person.page.orcid.synchronization-mode-message": "કૃપા કરીને પસંદ કરો કે તમે ORCID સાથે સુમેળ કેવી રીતે કરવો છે. વિકલ્પોમાં \\\"મેન્યુઅલ\\\" (તમારે તમારો ડેટા ORCID પર મેન્યુઅલી મોકલવો પડશે), અથવા \\\"બેચ\\\" (સિસ્ટમ તમારો ડેટા ORCID પર શેડ્યુલ સ્ક્રિપ્ટ દ્વારા મોકલશે) શામેલ છે.", - // "person.page.orcid.synchronization-mode-funding-message": "Select whether to send your linked Project entities to your ORCID record's list of funding information.", "person.page.orcid.synchronization-mode-funding-message": "તમારા ORCID રેકોર્ડની ફંડિંગ માહિતીની યાદીમાં તમારા લિંક કરેલા પ્રોજેક્ટ એન્ટિટીઓને મોકલવા માટે પસંદ કરો.", - // "person.page.orcid.synchronization-mode-publication-message": "Select whether to send your linked Publication entities to your ORCID record's list of works.", "person.page.orcid.synchronization-mode-publication-message": "તમારા ORCID રેકોર્ડની કાર્યોની યાદીમાં તમારા લિંક કરેલા પ્રકાશન એન્ટિટીઓને મોકલવા માટે પસંદ કરો.", - // "person.page.orcid.synchronization-mode-profile-message": "Select whether to send your biographical data or personal identifiers to your ORCID record.", "person.page.orcid.synchronization-mode-profile-message": "તમારા ORCID રેકોર્ડ પર તમારી જીવની માહિતી અથવા વ્યક્તિગત ઓળખકર્તાઓ મોકલવા માટે પસંદ કરો.", - // "person.page.orcid.synchronization-settings-update.success": "The synchronization settings have been updated successfully", "person.page.orcid.synchronization-settings-update.success": "સુમેળ સેટિંગ્સ સફળતાપૂર્વક અપડેટ કરવામાં આવ્યા છે", - // "person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed", "person.page.orcid.synchronization-settings-update.error": "સુમેળ સેટિંગ્સ અપડેટ કરવામાં નિષ્ફળ", - // "person.page.orcid.synchronization-mode.manual": "Manual", "person.page.orcid.synchronization-mode.manual": "મેન્યુઅલ", - // "person.page.orcid.scope.authenticate": "Get your ORCID iD", "person.page.orcid.scope.authenticate": "તમારો ORCID iD મેળવો", - // "person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties", "person.page.orcid.scope.read-limited": "વિશ્વસનીય પક્ષો માટે દૃશ્યતા સાથે તમારી માહિતી વાંચો", - // "person.page.orcid.scope.activities-update": "Add/update your research activities", "person.page.orcid.scope.activities-update": "તમારી સંશોધન પ્રવૃત્તિઓ ઉમેરો/અપડેટ કરો", - // "person.page.orcid.scope.person-update": "Add/update other information about you", "person.page.orcid.scope.person-update": "તમારા વિશેની અન્ય માહિતી ઉમેરો/અપડેટ કરો", - // "person.page.orcid.unlink.success": "The disconnection between the profile and the ORCID registry was successful", "person.page.orcid.unlink.success": "પ્રોફાઇલ અને ORCID રજિસ્ટ્રી વચ્ચેનું ડિસકનેક્શન સફળ રહ્યું", - // "person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again", "person.page.orcid.unlink.error": "પ્રોફાઇલ અને ORCID રજિસ્ટ્રી વચ્ચે ડિસકનેક્ટ કરતી વખતે ભૂલ આવી. ફરી પ્રયાસ કરો", - // "person.orcid.sync.setting": "ORCID Synchronization settings", "person.orcid.sync.setting": "ORCID સુમેળ સેટિંગ્સ", - // "person.orcid.registry.queue": "ORCID Registry Queue", "person.orcid.registry.queue": "ORCID રજિસ્ટ્રી કતાર", - // "person.orcid.registry.auth": "ORCID Authorizations", "person.orcid.registry.auth": "ORCID અધિકૃતતાઓ", - // "person.orcid-tooltip.authenticated": "{{orcid}}", "person.orcid-tooltip.authenticated": "{{orcid}}", - // "person.orcid-tooltip.not-authenticated": "{{orcid}} (unconfirmed)", "person.orcid-tooltip.not-authenticated": "{{orcid}} (અપુષ્ટ)", - // "home.recent-submissions.head": "Recent Submissions", "home.recent-submissions.head": "તાજેતરના સબમિશન્સ", - // "listable-notification-object.default-message": "This object couldn't be retrieved", "listable-notification-object.default-message": "આ આઇટમને મેળવવામાં આવી શક્યું નથી", - // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", "system-wide-alert-banner.retrieval.error": "સિસ્ટમ-વાઇડ એલર્ટ બેનર મેળવવામાં કંઈક ખોટું થયું", - // "system-wide-alert-banner.countdown.prefix": "In", "system-wide-alert-banner.countdown.prefix": "માં", - // "system-wide-alert-banner.countdown.days": "{{days}} day(s),", "system-wide-alert-banner.countdown.days": "{{days}} દિવસ(ઓ),", - // "system-wide-alert-banner.countdown.hours": "{{hours}} hour(s) and", "system-wide-alert-banner.countdown.hours": "{{hours}} કલાક(ઓ) અને", - // "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", - // TODO New key - Add a translation - "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + "system-wide-alert-banner.countdown.minutes": "{{minutes}} મિનિટ(ઓ):", - // "menu.section.system-wide-alert": "System-wide Alert", "menu.section.system-wide-alert": "સિસ્ટમ-વાઇડ એલર્ટ", - // "system-wide-alert.form.header": "System-wide Alert", "system-wide-alert.form.header": "સિસ્ટમ-વાઇડ એલર્ટ", - // "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert", "system-wide-alert-form.retrieval.error": "સિસ્ટમ-વાઇડ એલર્ટ મેળવવામાં કંઈક ખોટું થયું", - // "system-wide-alert.form.cancel": "Cancel", "system-wide-alert.form.cancel": "રદ કરો", - // "system-wide-alert.form.save": "Save", "system-wide-alert.form.save": "સેવ", - // "system-wide-alert.form.label.active": "ACTIVE", "system-wide-alert.form.label.active": "સક્રિય", - // "system-wide-alert.form.label.inactive": "INACTIVE", "system-wide-alert.form.label.inactive": "નિષ્ક્રિય", - // "system-wide-alert.form.error.message": "The system wide alert must have a message", "system-wide-alert.form.error.message": "સિસ્ટમ-વાઇડ એલર્ટમાં સંદેશ હોવો જોઈએ", - // "system-wide-alert.form.label.message": "Alert message", "system-wide-alert.form.label.message": "એલર્ટ સંદેશ", - // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer", "system-wide-alert.form.label.countdownTo.enable": "કાઉન્ટડાઉન ટાઇમર સક્રિય કરો", - // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", - // TODO New key - Add a translation - "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + "system-wide-alert.form.label.countdownTo.hint": "હિન્ટ: કાઉન્ટડાઉન ટાઇમર સેટ કરો. જ્યારે સક્રિય થાય છે, ત્યારે ભવિષ્યમાં તારીખ સેટ કરી શકાય છે અને સિસ્ટમ-વાઇડ એલર્ટ બેનર સેટ તારીખ સુધી કાઉન્ટડાઉન કરશે. જ્યારે આ ટાઇમર સમાપ્ત થાય છે, ત્યારે તે એલર્ટમાંથી ગાયબ થઈ જશે. સર્વર આપમેળે બંધ નહીં થાય.", - // "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", "system-wide-alert-form.select-date-by-calendar": "કેલેન્ડરનો ઉપયોગ કરીને તારીખ પસંદ કરો", - // "system-wide-alert.form.label.preview": "System-wide alert preview", "system-wide-alert.form.label.preview": "સિસ્ટમ-વાઇડ એલર્ટ પૂર્વાવલોકન", - // "system-wide-alert.form.update.success": "The system-wide alert was successfully updated", "system-wide-alert.form.update.success": "સિસ્ટમ-વાઇડ એલર્ટ સફળતાપૂર્વક અપડેટ થયું", - // "system-wide-alert.form.update.error": "Something went wrong when updating the system-wide alert", "system-wide-alert.form.update.error": "સિસ્ટમ-વાઇડ એલર્ટ અપડેટ કરતી વખતે કંઈક ખોટું થયું", - // "system-wide-alert.form.create.success": "The system-wide alert was successfully created", "system-wide-alert.form.create.success": "સિસ્ટમ-વાઇડ એલર્ટ સફળતાપૂર્વક બનાવ્યું", - // "system-wide-alert.form.create.error": "Something went wrong when creating the system-wide alert", "system-wide-alert.form.create.error": "સિસ્ટમ-વાઇડ એલર્ટ બનાવતી વખતે કંઈક ખોટું થયું", - // "admin.system-wide-alert.breadcrumbs": "System-wide Alerts", "admin.system-wide-alert.breadcrumbs": "સિસ્ટમ-વાઇડ એલર્ટ", - // "admin.system-wide-alert.title": "System-wide Alerts", "admin.system-wide-alert.title": "સિસ્ટમ-વાઇડ એલર્ટ", - // "discover.filters.head": "Discover", "discover.filters.head": "શોધો", - // "item-access-control-title": "This form allows you to perform changes to the access conditions of the item's metadata or its bitstreams.", "item-access-control-title": "આ ફોર્મ તમને આઇટમના મેટાડેટા અથવા તેના બિટસ્ટ્રીમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે.", - // "collection-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by this collection. Changes may be performed to either all Item metadata or all content (bitstreams).", "collection-access-control-title": "આ ફોર્મ તમને આ સંગ્રહ દ્વારા માલિકી ધરાવતી બધી આઇટમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે. ફેરફારો બધી આઇટમ મેટાડેટા અથવા બધી સામગ્રી (બિટસ્ટ્રીમ્સ) પર કરવામાં આવી શકે છે.", - // "community-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by any collection under this community. Changes may be performed to either all Item metadata or all content (bitstreams).", "community-access-control-title": "આ ફોર્મ તમને આ સમુદાય હેઠળના કોઈપણ સંગ્રહ દ્વારા માલિકી ધરાવતી બધી આઇટમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે. ફેરફારો બધી આઇટમ મેટાડેટા અથવા બધી સામગ્રી (બિટસ્ટ્રીમ્સ) પર કરવામાં આવી શકે છે.", - // "access-control-item-header-toggle": "Item's Metadata", "access-control-item-header-toggle": "આઇટમના મેટાડેટા", - // "access-control-item-toggle.enable": "Enable option to perform changes on the item's metadata", "access-control-item-toggle.enable": "આઇટમના મેટાડેટા પર ફેરફારો કરવા માટે વિકલ્પ સક્રિય કરો", - // "access-control-item-toggle.disable": "Disable option to perform changes on the item's metadata", "access-control-item-toggle.disable": "આઇટમના મેટાડેટા પર ફેરફારો કરવા માટે વિકલ્પ નિષ્ક્રિય કરો", - // "access-control-bitstream-header-toggle": "Bitstreams", "access-control-bitstream-header-toggle": "બિટસ્ટ્રીમ્સ", - // "access-control-bitstream-toggle.enable": "Enable option to perform changes on the bitstreams", "access-control-bitstream-toggle.enable": "બિટસ્ટ્રીમ્સ પર ફેરફારો કરવા માટે વિકલ્પ સક્રિય કરો", - // "access-control-bitstream-toggle.disable": "Disable option to perform changes on the bitstreams", "access-control-bitstream-toggle.disable": "બિટસ્ટ્રીમ્સ પર ફેરફારો કરવા માટે વિકલ્પ નિષ્ક્રિય કરો", - // "access-control-mode": "Mode", "access-control-mode": "મોડ", - // "access-control-access-conditions": "Access conditions", "access-control-access-conditions": "ઍક્સેસ શરતો", - // "access-control-no-access-conditions-warning-message": "Currently, no access conditions are specified below. If executed, this will replace the current access conditions with the default access conditions inherited from the owning collection.", "access-control-no-access-conditions-warning-message": "હાલમાં, નીચે કોઈ ઍક્સેસ શરતો નિર્ધારિત નથી. જો અમલમાં મૂકવામાં આવે છે, તો તે વર્તમાન ઍક્સેસ શરતોને માલિકી ધરાવતી સંગ્રહમાંથી વારસામાં મળેલી ડિફોલ્ટ ઍક્સેસ શરતો સાથે બદલી દેશે.", - // "access-control-replace-all": "Replace access conditions", "access-control-replace-all": "ઍક્સેસ શરતો બદલો", - // "access-control-add-to-existing": "Add to existing ones", "access-control-add-to-existing": "મૌજૂદા શરતોમાં ઉમેરો", - // "access-control-limit-to-specific": "Limit the changes to specific bitstreams", "access-control-limit-to-specific": "ફેરફારોને ચોક્કસ બિટસ્ટ્રીમ્સ સુધી મર્યાદિત કરો", - // "access-control-process-all-bitstreams": "Update all the bitstreams in the item", "access-control-process-all-bitstreams": "આઇટમમાં બધી બિટસ્ટ્રીમ્સને અપડેટ કરો", - // "access-control-bitstreams-selected": "bitstreams selected", "access-control-bitstreams-selected": "પસંદ કરેલી બિટસ્ટ્રીમ્સ", - // "access-control-bitstreams-select": "Select bitstreams", "access-control-bitstreams-select": "બિટસ્ટ્રીમ્સ પસંદ કરો", - // "access-control-cancel": "Cancel", "access-control-cancel": "રદ કરો", - // "access-control-execute": "Execute", "access-control-execute": "અમલમાં મૂકો", - // "access-control-add-more": "Add more", "access-control-add-more": "વધુ ઉમેરો", - // "access-control-remove": "Remove access condition", "access-control-remove": "ઍક્સેસ શરત દૂર કરો", - // "access-control-select-bitstreams-modal.title": "Select bitstreams", "access-control-select-bitstreams-modal.title": "બિટસ્ટ્રીમ્સ પસંદ કરો", - // "access-control-select-bitstreams-modal.no-items": "No items to show.", "access-control-select-bitstreams-modal.no-items": "દેખાવ માટે કોઈ વસ્તુઓ નહોતી", - // "access-control-select-bitstreams-modal.close": "Close", "access-control-select-bitstreams-modal.close": "બંધ કરો", - // "access-control-option-label": "Access condition type", "access-control-option-label": "ઍક્સેસ શરત પ્રકાર", - // "access-control-option-note": "Choose an access condition to apply to selected objects.", "access-control-option-note": "પસંદ કરેલી વસ્તુઓ પર લાગુ કરવા માટે ઍક્સેસ શરત પસંદ કરો.", - // "access-control-option-start-date": "Grant access from", "access-control-option-start-date": "તારીખથી ઍક્સેસ આપો", - // "access-control-option-start-date-note": "Select the date from which the related access condition is applied", "access-control-option-start-date-note": "સંબંધિત ઍક્સેસ શરત લાગુ થતી તારીખ પસંદ કરો", - // "access-control-option-end-date": "Grant access until", "access-control-option-end-date": "તારીખ સુધી ઍક્સેસ આપો", - // "access-control-option-end-date-note": "Select the date until which the related access condition is applied", "access-control-option-end-date-note": "સંબંધિત ઍક્સેસ શરત લાગુ થતી તારીખ પસંદ કરો", - // "vocabulary-treeview.search.form.add": "Add", "vocabulary-treeview.search.form.add": "ઉમેરો", - // "admin.notifications.publicationclaim.breadcrumbs": "Publication Claim", "admin.notifications.publicationclaim.breadcrumbs": "પ્રકાશન દાવો", - // "admin.notifications.publicationclaim.page.title": "Publication Claim", "admin.notifications.publicationclaim.page.title": "પ્રકાશન દાવો", - // "coar-notify-support.title": "COAR Notify Protocol", "coar-notify-support.title": "COAR નોટિફાય પ્રોટોકોલ", - // "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", - // TODO New key - Add a translation - "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + "coar-notify-support-title.content": "અહીં, અમે COAR નોટિફાય પ્રોટોકોલને સંપૂર્ણપણે સપોર્ટ કરીએ છીએ, જે રિપોઝિટરીઝ વચ્ચેના સંચારને વધારવા માટે ડિઝાઇન કરવામાં આવ્યું છે. COAR નોટિફાય પ્રોટોકોલ વિશે વધુ જાણવા માટે, COAR નોટિફાય વેબસાઇટ પર મુલાકાત લો.", - // "coar-notify-support.ldn-inbox.title": "LDN InBox", "coar-notify-support.ldn-inbox.title": "LDN ઇનબોક્સ", - // "coar-notify-support.ldn-inbox.content": "For your convenience, our LDN (Linked Data Notifications) InBox is easily accessible at {{ ldnInboxUrl }}. The LDN InBox enables seamless communication and data exchange, ensuring efficient and effective collaboration.", "coar-notify-support.ldn-inbox.content": "તમારી સુવિધા માટે, અમારી LDN (લિંક્ડ ડેટા નોટિફિકેશન્સ) ઇનબોક્સ સરળતાથી ઉપલબ્ધ છે {{ ldnInboxUrl }}. LDN ઇનબોક્સ સરળ સંચાર અને ડેટા વિનિમયને સક્ષમ બનાવે છે, સુનિશ્ચિત કરે છે કે કાર્યક્ષમ અને અસરકારક સહકાર.", - // "coar-notify-support.message-moderation.title": "Message Moderation", "coar-notify-support.message-moderation.title": "સંદેશ મૉડરેશન", - // "coar-notify-support.message-moderation.content": "To ensure a secure and productive environment, all incoming LDN messages are moderated. If you are planning to exchange information with us, kindly reach out via our dedicated", "coar-notify-support.message-moderation.content": "સુરક્ષિત અને ઉત્પાદક વાતાવરણ સુનિશ્ચિત કરવા માટે, બધી આવનારી LDN સંદેશાઓનું મૉડરેશન કરવામાં આવે છે. જો તમે અમારી સાથે માહિતી વિનિમય કરવાની યોજના બનાવી રહ્યા છો, તો કૃપા કરીને અમારા સમર્પિત ફીડબેક ફોર્મ દ્વારા સંપર્ક કરો.", - // "coar-notify-support.message-moderation.feedback-form": " Feedback form.", - // TODO New key - Add a translation - "coar-notify-support.message-moderation.feedback-form": " Feedback form.", - - // "service.overview.delete.header": "Delete Service", "service.overview.delete.header": "સેવા કાઢી નાખો", - // "ldn-registered-services.title": "Registered Services", "ldn-registered-services.title": "નોંધાયેલ સેવાઓ", - // "ldn-registered-services.table.name": "Name", + "ldn-registered-services.table.name": "નામ", - // "ldn-registered-services.table.description": "Description", + "ldn-registered-services.table.description": "વર્ણન", - // "ldn-registered-services.table.status": "Status", + "ldn-registered-services.table.status": "સ્થિતિ", - // "ldn-registered-services.table.action": "Action", + "ldn-registered-services.table.action": "ક્રિયા", - // "ldn-registered-services.new": "NEW", + "ldn-registered-services.new": "નવી", - // "ldn-registered-services.new.breadcrumbs": "Registered Services", + "ldn-registered-services.new.breadcrumbs": "નોંધાયેલ સેવાઓ", - // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "સક્રિય", - // "ldn-service.overview.table.disabled": "Disabled", + "ldn-service.overview.table.disabled": "નિષ્ક્રિય", - // "ldn-service.overview.table.clickToEnable": "Click to enable", + "ldn-service.overview.table.clickToEnable": "સક્રિય કરવા માટે ક્લિક કરો", - // "ldn-service.overview.table.clickToDisable": "Click to disable", + "ldn-service.overview.table.clickToDisable": "નિષ્ક્રિય કરવા માટે ક્લિક કરો", - // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "સેવા સંપાદિત કરો", - // "ldn-create-service.title": "Create service", + "ldn-create-service.title": "સેવા બનાવો", - // "service.overview.create.modal": "Create Service", + "service.overview.create.modal": "સેવા બનાવો", - // "service.overview.create.body": "Please confirm the creation of this service.", + "service.overview.create.body": "કૃપા કરીને આ સેવાની રચનાની પુષ્ટિ કરો.", - // "ldn-service-status": "Status", + "ldn-service-status": "સ્થિતિ", - // "service.confirm.create": "Create", + "service.confirm.create": "બનાવો", - // "service.refuse.create": "Cancel", + "service.refuse.create": "રદ કરો", - // "ldn-register-new-service.title": "Register a new service", + "ldn-register-new-service.title": "નવી સેવા નોંધો", - // "ldn-new-service.form.label.submit": "Save", + "ldn-new-service.form.label.submit": "સેવ", - // "ldn-new-service.form.label.name": "Name", + "ldn-new-service.form.label.name": "નામ", - // "ldn-new-service.form.label.description": "Description", + "ldn-new-service.form.label.description": "વર્ણન", - // "ldn-new-service.form.label.url": "Service URL", + "ldn-new-service.form.label.url": "સેવા URL", - // "ldn-new-service.form.label.ip-range": "Service IP range", + "ldn-new-service.form.label.ip-range": "સેવા IP શ્રેણી", - // "ldn-new-service.form.label.score": "Level of trust", + "ldn-new-service.form.label.score": "વિશ્વાસનું સ્તર", - // "ldn-new-service.form.label.ldnUrl": "LDN Inbox URL", + "ldn-new-service.form.label.ldnUrl": "LDN ઇનબોક્સ URL", - // "ldn-new-service.form.placeholder.name": "Please provide service name", + "ldn-new-service.form.placeholder.name": "કૃપા કરીને સેવાનું નામ આપો", - // "ldn-new-service.form.placeholder.description": "Please provide a description regarding your service", + "ldn-new-service.form.placeholder.description": "કૃપા કરીને તમારી સેવાના વિશે વર્ણન આપો", - // "ldn-new-service.form.placeholder.url": "Please input the URL for users to check out more information about the service", + "ldn-new-service.form.placeholder.url": "વપરાશકર્તાઓને સેવાની વધુ માહિતી તપાસવા માટે URL દાખલ કરો", - // "ldn-new-service.form.placeholder.lowerIp": "IPv4 range lower bound", + "ldn-new-service.form.placeholder.lowerIp": "IPv4 શ્રેણી નીચી સીમા", - // "ldn-new-service.form.placeholder.upperIp": "IPv4 range upper bound", + "ldn-new-service.form.placeholder.upperIp": "IPv4 શ્રેણી ઊંચી સીમા", - // "ldn-new-service.form.placeholder.ldnUrl": "Please specify the URL of the LDN Inbox", + "ldn-new-service.form.placeholder.ldnUrl": "કૃપા કરીને LDN ઇનબોક્સનો URL સ્પષ્ટ કરો", - // "ldn-new-service.form.placeholder.score": "Please enter a value between 0 and 1. Use the “.” as decimal separator", + "ldn-new-service.form.placeholder.score": "કૃપા કરીને 0 અને 1 વચ્ચેનું મૂલ્ય દાખલ કરો. દશાંશ વિભાજક તરીકે “.” નો ઉપયોગ કરો", - // "ldn-service.form.label.placeholder.default-select": "Select a pattern", + "ldn-service.form.label.placeholder.default-select": "પેટર્ન પસંદ કરો", - // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "સ્વીકારો અને મંજૂર કરો", - // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", + "ldn-service.form.pattern.ack-accept.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને મંજૂર કરવા માટે વપરાય છે. તે વિનંતી પર કાર્ય કરવાની મનોવૃત્તિ દર્શાવે છે.", - // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", + "ldn-service.form.pattern.ack-accept.category": "સ્વીકાર", - // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "સ્વીકારો અને નકારો", - // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", + "ldn-service.form.pattern.ack-reject.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને નકારવા માટે વપરાય છે. તે વિનંતી અંગે કોઈ વધુ ક્રિયા દર્શાવતું નથી.", - // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", + "ldn-service.form.pattern.ack-reject.category": "સ્વીકાર", - // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "સ્વીકારો અને તાત્કાલિક સ્વીકારો", - // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", + "ldn-service.form.pattern.ack-tentative-accept.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને તાત્કાલિક સ્વીકારવા માટે વપરાય છે. તે કાર્ય કરવાની મનોવૃત્તિ દર્શાવે છે, જે બદલાઈ શકે છે.", - // "ldn-service.form.pattern.ack-tentative-accept.category": "Acknowledgements", + "ldn-service.form.pattern.ack-tentative-accept.category": "સ્વીકાર", - // "ldn-service.form.pattern.ack-tentative-reject.label": "Acknowledge and Tentatively Reject", "ldn-service.form.pattern.ack-tentative-reject.label": "સ્વીકારો અને તાત્કાલિક નકારો", - // "ldn-service.form.pattern.ack-tentative-reject.description": "This pattern is used to acknowledge and tentatively reject a request (offer). It signifies no further action, subject to change.", + "ldn-service.form.pattern.ack-tentative-reject.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને તાત્કાલિક નકારવા માટે વપરાય છે. તે કોઈ વધુ ક્રિયા દર્શાવતું નથી, જે બદલાઈ શકે છે.", - // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", + "ldn-service.form.pattern.ack-tentative-reject.category": "સ્વીકાર", - // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "મંજૂરીની જાહેરાત કરો", - // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", + "ldn-service.form.pattern.announce-endorsement.description": "આ પેટર્ન મંજૂરીના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે મંજૂર સંસાધનને સંદર્ભ આપે છે.", - // "ldn-service.form.pattern.announce-endorsement.category": "Announcements", + "ldn-service.form.pattern.announce-endorsement.category": "જાહેરાત", - // "ldn-service.form.pattern.announce-ingest.label": "Announce Ingest", "ldn-service.form.pattern.announce-ingest.label": "ઇનજેસ્ટની જાહેરાત કરો", - // "ldn-service.form.pattern.announce-ingest.description": "This pattern is used to announce that a resource has been ingested.", + "ldn-service.form.pattern.announce-ingest.description": "આ પેટર્ન એ જાહેરાત કરવા માટે વપરાય છે કે સંસાધન ઇનજેસ્ટ કરવામાં આવ્યું છે.", - // "ldn-service.form.pattern.announce-ingest.category": "Announcements", + "ldn-service.form.pattern.announce-ingest.category": "જાહેરાત", - // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "સંબંધની જાહેરાત કરો", - // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", + "ldn-service.form.pattern.announce-relationship.description": "આ પેટર્ન બે સંસાધનો વચ્ચેના સંબંધની જાહેરાત કરવા માટે વપરાય છે.", - // "ldn-service.form.pattern.announce-relationship.category": "Announcements", + "ldn-service.form.pattern.announce-relationship.category": "જાહેરાત", - // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "સમીક્ષાની જાહેરાત કરો", - // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", + "ldn-service.form.pattern.announce-review.description": "આ પેટર્ન સમીક્ષાના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે સમીક્ષિત સંસાધનને સંદર્ભ આપે છે.", - // "ldn-service.form.pattern.announce-review.category": "Announcements", + "ldn-service.form.pattern.announce-review.category": "જાહેરાત", - // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "સેવા પરિણામની જાહેરાત કરો", - // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", + "ldn-service.form.pattern.announce-service-result.description": "આ પેટર્ન 'સેવા પરિણામ'ના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે સંબંધિત સંસાધનને સંદર્ભ આપે છે.", - // "ldn-service.form.pattern.announce-service-result.category": "Announcements", + "ldn-service.form.pattern.announce-service-result.category": "જાહેરાત", - // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "મંજૂરીની વિનંતી કરો", - // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", + "ldn-service.form.pattern.request-endorsement.description": "આ પેટર્ન મૂળ સિસ્ટમ દ્વારા માલિકી ધરાવતી સંસાધન માટે મંજૂરીની વિનંતી કરવા માટે વપરાય છે.", - // "ldn-service.form.pattern.request-endorsement.category": "Requests", + "ldn-service.form.pattern.request-endorsement.category": "વિનંતીઓ", - // "ldn-service.form.pattern.request-ingest.label": "Request Ingest", "ldn-service.form.pattern.request-ingest.label": "ઇનજેસ્ટની વિનંતી કરો", - // "ldn-service.form.pattern.request-ingest.description": "This pattern is used to request that the target system ingest a resource.", + "ldn-service.form.pattern.request-ingest.description": "આ પેટર્ન લક્ષ્ય સિસ્ટમને સંસાધન ઇનજેસ્ટ કરવાની વિનંતી કરવા માટે વપરાય છે.", - // "ldn-service.form.pattern.request-ingest.category": "Requests", + "ldn-service.form.pattern.request-ingest.category": "વિનંતીઓ", - // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "સમીક્ષાની વિનંતી કરો", - // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", + "ldn-service.form.pattern.request-review.description": "આ પેટર્ન મૂળ સિસ્ટમ દ્વારા માલિકી ધરાવતી સંસાધન માટે સમીક્ષાની વિનંતી કરવા માટે વપરાય છે.", - // "ldn-service.form.pattern.request-review.category": "Requests", + "ldn-service.form.pattern.request-review.category": "વિનંતીઓ", - // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "ઓફર રદ કરો", - // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", + "ldn-service.form.pattern.undo-offer.description": "આ પેટર્ન અગાઉ કરવામાં આવેલી ઓફરને રદ (પાછી ખેંચી) કરવા માટે વપરાય છે.", - // "ldn-service.form.pattern.undo-offer.category": "Undo", + "ldn-service.form.pattern.undo-offer.category": "રદ કરો", - // "ldn-new-service.form.label.placeholder.selectedItemFilter": "No Item Filter Selected", "ldn-new-service.form.label.placeholder.selectedItemFilter": "કોઈ આઇટમ ફિલ્ટર પસંદ કરેલ નથી", - // "ldn-new-service.form.label.ItemFilter": "Item Filter", + "ldn-new-service.form.label.ItemFilter": "આઇટમ ફિલ્ટર", - // "ldn-new-service.form.label.automatic": "Automatic", + "ldn-new-service.form.label.automatic": "સ્વચાલિત", - // "ldn-new-service.form.error.name": "Name is required", + "ldn-new-service.form.error.name": "નામ જરૂરી છે", - // "ldn-new-service.form.error.url": "URL is required", + "ldn-new-service.form.error.url": "URL જરૂરી છે", - // "ldn-new-service.form.error.ipRange": "Please enter a valid IP range", + "ldn-new-service.form.error.ipRange": "કૃપા કરીને માન્ય IP શ્રેણી દાખલ કરો", - // "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", - // TODO New key - Add a translation - "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", - // "ldn-new-service.form.error.ldnurl": "LDN URL is required", + + "ldn-new-service.form.hint.ipRange": "કૃપા કરીને બંને શ્રેણી સીમાઓમાં માન્ય IpV4 દાખલ કરો (નોંધ: એકલ IP માટે, કૃપા કરીને બંને ક્ષેત્રોમાં એક જ મૂલ્ય દાખલ કરો)", + "ldn-new-service.form.error.ldnurl": "LDN URL જરૂરી છે", - // "ldn-new-service.form.error.patterns": "At least a pattern is required", + "ldn-new-service.form.error.patterns": "ઓછામાં ઓછું એક પેટર્ન જરૂરી છે", - // "ldn-new-service.form.error.score": "Please enter a valid score (between 0 and 1). Use the “.” as decimal separator", + "ldn-new-service.form.error.score": "કૃપા કરીને માન્ય સ્કોર દાખલ કરો (0 અને 1 વચ્ચે). દશાંશ વિભાજક તરીકે “.” નો ઉપયોગ કરો", - // "ldn-new-service.form.label.inboundPattern": "Supported Pattern", "ldn-new-service.form.label.inboundPattern": "સપોર્ટેડ પેટર્ન", - // "ldn-new-service.form.label.addPattern": "+ Add more", + "ldn-new-service.form.label.addPattern": "+ વધુ ઉમેરો", - // "ldn-new-service.form.label.removeItemFilter": "Remove", + "ldn-new-service.form.label.removeItemFilter": "દૂર કરો", - // "ldn-register-new-service.breadcrumbs": "New Service", + "ldn-register-new-service.breadcrumbs": "નવી સેવા", - // "service.overview.delete.body": "Are you sure you want to delete this service?", + "service.overview.delete.body": "શું તમે ખરેખર આ સેવાને કાઢી નાખવા માંગો છો?", - // "service.overview.edit.body": "Do you confirm the changes?", + "service.overview.edit.body": "શું તમે ફેરફારોની પુષ્ટિ કરો છો?", - // "service.overview.edit.modal": "Edit Service", + "service.overview.edit.modal": "સેવા સંપાદિત કરો", - // "service.detail.update": "Confirm", + "service.detail.update": "પુષ્ટિ કરો", - // "service.detail.return": "Cancel", + "service.detail.return": "રદ કરો", - // "service.overview.reset-form.body": "Are you sure you want to discard the changes and leave?", + "service.overview.reset-form.body": "શું તમે ખરેખર ફેરફારોને રદ કરવા અને છોડી દેવા માંગો છો?", - // "service.overview.reset-form.modal": "Discard Changes", + "service.overview.reset-form.modal": "ફેરફારો રદ કરો", - // "service.overview.reset-form.reset-confirm": "Discard", + "service.overview.reset-form.reset-confirm": "રદ કરો", - // "admin.registries.services-formats.modify.success.head": "Successful Edit", + "admin.registries.services-formats.modify.success.head": "સફળ સંપાદન", - // "admin.registries.services-formats.modify.success.content": "The service has been edited", + "admin.registries.services-formats.modify.success.content": "સેવા સંપાદિત કરવામાં આવી છે", - // "admin.registries.services-formats.modify.failure.head": "Failed Edit", + "admin.registries.services-formats.modify.failure.head": "અસફળ સંપાદન", - // "admin.registries.services-formats.modify.failure.content": "The service has not been edited", + "admin.registries.services-formats.modify.failure.content": "સેવા સંપાદિત કરવામાં આવી નથી", - // "ldn-service-notification.created.success.title": "Successful Create", + "ldn-service-notification.created.success.title": "સફળ રચના", - // "ldn-service-notification.created.success.body": "The service has been created", + "ldn-service-notification.created.success.body": "સેવા બનાવવામાં આવી છે", - // "ldn-service-notification.created.failure.title": "Failed Create", + "ldn-service-notification.created.failure.title": "અસફળ રચના", - // "ldn-service-notification.created.failure.body": "The service has not been created", + "ldn-service-notification.created.failure.body": "સેવા બનાવવામાં આવી નથી", - // "ldn-service-notification.created.warning.title": "Please select at least one Inbound Pattern", + "ldn-service-notification.created.warning.title": "કૃપા કરીને ઓછામાં ઓછું એક ઇનબાઉન્ડ પેટર્ન પસંદ કરો", - // "ldn-enable-service.notification.success.title": "Successful status updated", + "ldn-enable-service.notification.success.title": "સફળ સ્થિતિ અપડેટ", - // "ldn-enable-service.notification.success.content": "The service status has been updated", + "ldn-enable-service.notification.success.content": "સેવા સ્થિતિ અપડેટ કરવામાં આવી છે", - // "ldn-service-delete.notification.success.title": "Successful Deletion", + "ldn-service-delete.notification.success.title": "સફળ કાઢી નાખવું", - // "ldn-service-delete.notification.success.content": "The service has been deleted", + "ldn-service-delete.notification.success.content": "સેવા કાઢી નાખવામાં આવી છે", - // "ldn-service-delete.notification.error.title": "Failed Deletion", + "ldn-service-delete.notification.error.title": "અસફળ કાઢી નાખવું", - // "ldn-service-delete.notification.error.content": "The service has not been deleted", + "ldn-service-delete.notification.error.content": "સેવા કાઢી નાખવામાં આવી નથી", - // "service.overview.reset-form.reset-return": "Cancel", + "service.overview.reset-form.reset-return": "રદ કરો", - // "service.overview.delete": "Delete service", + "service.overview.delete": "સેવા કાઢી નાખો", - // "ldn-edit-service.title": "Edit service", + "ldn-edit-service.title": "સેવા સંપાદિત કરો", - // "ldn-edit-service.form.label.name": "Name", + "ldn-edit-service.form.label.name": "નામ", - // "ldn-edit-service.form.label.description": "Description", + "ldn-edit-service.form.label.description": "વર્ણન", - // "ldn-edit-service.form.label.url": "Service URL", + "ldn-edit-service.form.label.url": "સેવા URL", - // "ldn-edit-service.form.label.ldnUrl": "LDN Inbox URL", + "ldn-edit-service.form.label.ldnUrl": "LDN ઇનબોક્સ URL", - // "ldn-edit-service.form.label.inboundPattern": "Inbound Pattern", + "ldn-edit-service.form.label.inboundPattern": "ઇનબાઉન્ડ પેટર્ન", - // "ldn-edit-service.form.label.noInboundPatternSelected": "No Inbound Pattern", + "ldn-edit-service.form.label.noInboundPatternSelected": "કોઈ ઇનબાઉન્ડ પેટર્ન નથી", - // "ldn-edit-service.form.label.selectedItemFilter": "Selected Item Filter", + "ldn-edit-service.form.label.selectedItemFilter": "પસંદ કરેલ આઇટમ ફિલ્ટર", - // "ldn-edit-service.form.label.selectItemFilter": "No Item Filter", + "ldn-edit-service.form.label.selectItemFilter": "કોઈ આઇટમ ફિલ્ટર નથી", - // "ldn-edit-service.form.label.automatic": "Automatic", + "ldn-edit-service.form.label.automatic": "સ્વચાલિત", - // "ldn-edit-service.form.label.addInboundPattern": "+ Add more", + "ldn-edit-service.form.label.addInboundPattern": "+ વધુ ઉમેરો", - // "ldn-edit-service.form.label.submit": "Save", + "ldn-edit-service.form.label.submit": "સેવ", - // "ldn-edit-service.breadcrumbs": "Edit Service", + "ldn-edit-service.breadcrumbs": "સેવા સંપાદિત કરો", - // "ldn-service.control-constaint-select-none": "Select none", + "ldn-service.control-constaint-select-none": "કોઈ પસંદ કરો", - // "ldn-register-new-service.notification.error.title": "Error", "ldn-register-new-service.notification.error.title": "ભૂલ", - // "ldn-register-new-service.notification.error.content": "An error occurred while creating this process", + "ldn-register-new-service.notification.error.content": "આ પ્રક્રિયા બનાવતી વખતે ભૂલ આવી", - // "ldn-register-new-service.notification.success.title": "Success", + "ldn-register-new-service.notification.success.title": "સફળતા", - // "ldn-register-new-service.notification.success.content": "The process was successfully created", + "ldn-register-new-service.notification.success.content": "પ્રક્રિયા સફળતાપૂર્વક બનાવવામાં આવી", - // "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", - // TODO New key - Add a translation - "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + "submission.sections.notify.info": "વર્તમાન સ્થિતિ અનુસાર આ આઇટમ સાથે સુસંગત સેવા પસંદ કરેલ છે. {{ service.name }}: {{ service.description }}", - // "item.page.endorsement": "Endorsement", "item.page.endorsement": "મંજૂરી", - // "item.page.places": "Related places", "item.page.places": "સંબંધિત સ્થળો", - // "item.page.review": "Review", "item.page.review": "સમીક્ષા", - // "item.page.referenced": "Referenced By", "item.page.referenced": "સંદર્ભ આપેલ", - // "item.page.supplemented": "Supplemented By", "item.page.supplemented": "પૂરક", - // "menu.section.icon.ldn_services": "LDN Services overview", "menu.section.icon.ldn_services": "LDN સેવાઓની ઝાંખી", - // "menu.section.services": "LDN Services", "menu.section.services": "LDN સેવાઓ", - // "menu.section.services_new": "LDN Service", "menu.section.services_new": "LDN સેવા", - // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "નીચે તમે {{source}} માટે સબ્સ્ક્રિપ્શન્સમાંથી પ્રાપ્ત તમામ વિષયો જોઈ શકો છો", - // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", + "quality-assurance.events.description": "નીચે પસંદ કરેલા વિષય {{topic}} માટેની તમામ સૂચનાઓની યાદી છે, જે {{source}} સાથે સંબંધિત છે.", - // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "નીચે પસંદ કરેલા વિષય {{topic}} માટેની તમામ સૂચનાઓની યાદી છે, જે {{source}} અને", - // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", - // TODO New key - Add a translation - "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + "quality-assurance.event.table.event.message.serviceUrl": "અભિનયકર્તા:", - // "quality-assurance.event.table.event.message.link": "Link:", - // TODO New key - Add a translation - "quality-assurance.event.table.event.message.link": "Link:", + "quality-assurance.event.table.event.message.link": "લિંક:", - // "service.detail.delete.cancel": "Cancel", "service.detail.delete.cancel": "રદ કરો", - // "service.detail.delete.button": "Delete service", "service.detail.delete.button": "સેવા કાઢી નાખો", - // "service.detail.delete.header": "Delete service", "service.detail.delete.header": "સેવા કાઢી નાખો", - // "service.detail.delete.body": "Are you sure you want to delete the current service?", "service.detail.delete.body": "શું તમે ખરેખર વર્તમાન સેવાને કાઢી નાખવા માંગો છો?", - // "service.detail.delete.confirm": "Delete service", "service.detail.delete.confirm": "સેવા કાઢી નાખો", - // "service.detail.delete.success": "The service was successfully deleted.", "service.detail.delete.success": "સેવા સફળતાપૂર્વક કાઢી નાખવામાં આવી.", - // "service.detail.delete.error": "Something went wrong when deleting the service", "service.detail.delete.error": "સેવા કાઢી નાખતી વખતે કંઈક ખોટું થયું", - // "service.overview.table.id": "Services ID", "service.overview.table.id": "સેવાઓ ID", - // "service.overview.table.name": "Name", "service.overview.table.name": "નામ", - // "service.overview.table.start": "Start time (UTC)", "service.overview.table.start": "પ્રારંભ સમય (UTC)", - // "service.overview.table.status": "Status", "service.overview.table.status": "સ્થિતિ", - // "service.overview.table.user": "User", "service.overview.table.user": "વપરાશકર્તા", - // "service.overview.title": "Services Overview", "service.overview.title": "સેવાઓની ઝાંખી", - // "service.overview.breadcrumbs": "Services Overview", "service.overview.breadcrumbs": "સેવાઓની ઝાંખી", - // "service.overview.table.actions": "Actions", "service.overview.table.actions": "ક્રિયાઓ", - // "service.overview.table.description": "Description", "service.overview.table.description": "વર્ણન", - // "submission.sections.submit.progressbar.coarnotify": "COAR Notify", "submission.sections.submit.progressbar.coarnotify": "COAR નોટિફાય", - // "submission.section.section-coar-notify.control.request-review.label": "You can request a review to one of the following services", "submission.section.section-coar-notify.control.request-review.label": "તમે નીચેની સેવાઓમાંથી એક સમીક્ષા માટે વિનંતી કરી શકો છો", - // "submission.section.section-coar-notify.control.request-endorsement.label": "You can request an Endorsement to one of the following overlay journals", "submission.section.section-coar-notify.control.request-endorsement.label": "તમે નીચેના ઓવરલે જર્નલ્સમાંથી એક મંજૂરી માટે વિનંતી કરી શકો છો", - // "submission.section.section-coar-notify.control.request-ingest.label": "You can request to ingest a copy of your submission to one of the following services", "submission.section.section-coar-notify.control.request-ingest.label": "તમે નીચેની સેવાઓમાંથી એકને તમારી સબમિશનની નકલ ઇનજેસ્ટ કરવા માટે વિનંતી કરી શકો છો", - // "submission.section.section-coar-notify.dropdown.no-data": "No data available", "submission.section.section-coar-notify.dropdown.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", - // "submission.section.section-coar-notify.dropdown.select-none": "Select none", "submission.section.section-coar-notify.dropdown.select-none": "કોઈ પસંદ કરો", - // "submission.section.section-coar-notify.small.notification": "Select a service for {{ pattern }} of this item", "submission.section.section-coar-notify.small.notification": "આ આઇટમ માટે {{ pattern }} માટે સેવા પસંદ કરો", - // "submission.section.section-coar-notify.selection.description": "Selected service's description:", - // TODO New key - Add a translation - "submission.section.section-coar-notify.selection.description": "Selected service's description:", + "submission.section.section-coar-notify.selection.description": "પસંદ કરેલી સેવાની વર્ણન:", - // "submission.section.section-coar-notify.selection.no-description": "No further information is available", "submission.section.section-coar-notify.selection.no-description": "કોઈ વધુ માહિતી ઉપલબ્ધ નથી", - // "submission.section.section-coar-notify.notification.error": "The selected service is not suitable for the current item. Please check the description for details about which record can be managed by this service.", "submission.section.section-coar-notify.notification.error": "પસંદ કરેલી સેવા વર્તમાન આઇટમ માટે યોગ્ય નથી. કૃપા કરીને તે રેકોર્ડ વિશેની વિગતો તપાસો કે જે આ સેવા દ્વારા સંચાલિત થઈ શકે છે.", - // "submission.section.section-coar-notify.info.no-pattern": "No configurable patterns found.", "submission.section.section-coar-notify.info.no-pattern": "કોઈ રૂપરેખાંકિત પેટર્ન મળ્યા નથી.", - // "error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.", "error.validation.coarnotify.invalidfilter": "અમાન્ય ફિલ્ટર, કૃપા કરીને બીજી સેવા અથવા કોઈ પસંદ કરો.", - // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.", "request-status-alert-box.accepted": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} સ્વીકારવામાં આવી છે.", - // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} નકારી દેવામાં આવી છે.", - // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", "request-status-alert-box.tentative_rejected": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} તાત્કાલિક નકારી દેવામાં આવી છે. સુધારાઓ જરૂરી છે", - // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} પેન્ડિંગ છે.", - // "ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion", "ldn-service-button-mark-inbound-deletion": "માર્ક સપોર્ટેડ પેટર્ન માટે ડિલીશન", - // "ldn-service-button-unmark-inbound-deletion": "Unmark supported pattern for deletion", "ldn-service-button-unmark-inbound-deletion": "માર્ક સપોર્ટેડ પેટર્ન માટે અનમાર્ક", - // "ldn-service-input-inbound-item-filter-dropdown": "Select Item filter for the pattern", "ldn-service-input-inbound-item-filter-dropdown": "પેટર્ન માટે આઇટમ ફિલ્ટર પસંદ કરો", - // "ldn-service-input-inbound-pattern-dropdown": "Select a pattern for service", "ldn-service-input-inbound-pattern-dropdown": "સેવા માટે પેટર્ન પસંદ કરો", - // "ldn-service-overview-select-delete": "Select service for deletion", "ldn-service-overview-select-delete": "ડિલીશન માટે સેવા પસંદ કરો", - // "ldn-service-overview-select-edit": "Edit LDN service", "ldn-service-overview-select-edit": "LDN સેવા સંપાદિત કરો", - // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "મોડલ બંધ કરો", - // "ldn-service-usesActorEmailId": "Requires actor email in notifications", "ldn-service-usesActorEmailId": "સૂચનાઓમાં અભિનયકર્તા ઇમેઇલની જરૂર છે", - // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", "ldn-service-usesActorEmailId-description": "જો સક્રિય છે, તો પ્રારંભિક સૂચનાઓમાં સબમિટર ઇમેઇલ શામેલ હશે, રિપોઝિટરી URL ના બદલે. આ સામાન્ય રીતે મંજૂરી અથવા સમીક્ષા સેવાઓ માટે છે.", - // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "આઇટમ પ્રકાર જર્નલ આર્ટિકલ અથવા ડેટાસેટ છે", - // "always_true_filter.label": "Always true", "always_true_filter.label": "હંમેશા સાચું", - // "automatic_processing_collection_filter_16.label": "Automatic processing", "automatic_processing_collection_filter_16.label": "સ્વચાલિત પ્રક્રિયા", - // "dc-identifier-uri-contains-doi_condition.label": "URI contains DOI", "dc-identifier-uri-contains-doi_condition.label": "URI માં DOI શામેલ છે", - // "doi-filter.label": "DOI filter", "doi-filter.label": "DOI ફિલ્ટર", - // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "ડોક્યુમેન્ટ પ્રકાર ડ્રાઇવર સમાન છે", - // "has-at-least-one-bitstream_condition.label": "Has at least one Bitstream", "has-at-least-one-bitstream_condition.label": "ઓછામાં ઓછું એક બિટસ્ટ્રીમ છે", - // "has-bitstream_filter.label": "Has Bitstream", "has-bitstream_filter.label": "બિટસ્ટ્રીમ છે", - // "has-one-bitstream_condition.label": "Has one Bitstream", "has-one-bitstream_condition.label": "એક બિટસ્ટ્રીમ છે", - // "is-archived_condition.label": "Is archived", "is-archived_condition.label": "આર્કાઇવ્ડ છે", - // "is-withdrawn_condition.label": "Is withdrawn", "is-withdrawn_condition.label": "વિથડ્રોન છે", - // "item-is-public_condition.label": "Item is public", "item-is-public_condition.label": "આઇટમ જાહેર છે", - // "journals_ingest_suggestion_collection_filter_18.label": "Journals ingest", "journals_ingest_suggestion_collection_filter_18.label": "જર્નલ્સ ઇનજેસ્ટ", - // "title-starts-with-pattern_condition.label": "Title starts with pattern", "title-starts-with-pattern_condition.label": "શીર્ષક પેટર્ન સાથે શરૂ થાય છે", - // "type-equals-dataset_condition.label": "Type equals Dataset", "type-equals-dataset_condition.label": "પ્રકાર ડેટાસેટ સમાન છે", - // "type-equals-journal-article_condition.label": "Type equals Journal Article", "type-equals-journal-article_condition.label": "પ્રકાર જર્નલ આર્ટિકલ સમાન છે", - // "ldn.no-filter.label": "None", "ldn.no-filter.label": "કોઈ નથી", - // "admin.notify.dashboard": "Dashboard", "admin.notify.dashboard": "ડેશબોર્ડ", - // "menu.section.notify_dashboard": "Dashboard", "menu.section.notify_dashboard": "ડેશબોર્ડ", - // "menu.section.coar_notify": "COAR Notify", "menu.section.coar_notify": "COAR નોટિફાય", - // "admin-notify-dashboard.title": "Notify Dashboard", "admin-notify-dashboard.title": "નોટિફાય ડેશબોર્ડ", - // "admin-notify-dashboard.description": "The Notify dashboard monitor the general usage of the COAR Notify protocol across the repository. In the “Metrics” tab are statistics about usage of the COAR Notify protocol. In the “Logs/Inbound” and “Logs/Outbound” tabs it’s possible to search and check the individual status of each LDN message, either received or sent.", "admin-notify-dashboard.description": "નોટિફાય ડેશબોર્ડ રિપોઝિટરીમાં COAR નોટિફાય પ્રોટોકોલના સામાન્ય ઉપયોગની મોનિટર કરે છે. “મેટ્રિક્સ” ટેબમાં COAR નોટિફાય પ્રોટોકોલના ઉપયોગ વિશેના આંકડા છે. “લોગ્સ/ઇનબાઉન્ડ” અને “લોગ્સ/આઉટબાઉન્ડ” ટેબમાં દરેક LDN સંદેશાની વ્યક્તિગત સ્થિતિ તપાસવી અને શોધવી શક્ય છે, જે પ્રાપ્ત અથવા મોકલવામાં આવી છે.", - // "admin-notify-dashboard.metrics": "Metrics", "admin-notify-dashboard.metrics": "મેટ્રિક્સ", - // "admin-notify-dashboard.received-ldn": "Number of received LDN", "admin-notify-dashboard.received-ldn": "પ્રાપ્ત LDN ની સંખ્યા", - // "admin-notify-dashboard.generated-ldn": "Number of generated LDN", "admin-notify-dashboard.generated-ldn": "ઉત્પાદિત LDN ની સંખ્યા", - // "admin-notify-dashboard.NOTIFY.incoming.accepted": "Accepted", "admin-notify-dashboard.NOTIFY.incoming.accepted": "સ્વીકાર્યું", - // "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "Accepted inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "સ્વીકારેલ ઇનબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + "admin-notify-logs.NOTIFY.incoming.accepted": "હાલમાં દર્શાવેલ: સ્વીકારેલ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.incoming.processed": "Processed LDN", "admin-notify-dashboard.NOTIFY.incoming.processed": "પ્રક્રિયા કરેલ LDN", - // "admin-notify-dashboard.NOTIFY.incoming.processed.description": "Processed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.processed.description": "પ્રક્રિયા કરેલ ઇનબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", + "admin-notify-logs.NOTIFY.incoming.processed": "હાલમાં દર્શાવેલ: પ્રક્રિયા કરેલ LDN", - // "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + "admin-notify-logs.NOTIFY.incoming.failure": "હાલમાં દર્શાવેલ: નિષ્ફળ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.incoming.failure": "Failure", "admin-notify-dashboard.NOTIFY.incoming.failure": "નિષ્ફળ", - // "admin-notify-dashboard.NOTIFY.incoming.failure.description": "Failed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.failure.description": "નિષ્ફળ ઇનબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + "admin-notify-logs.NOTIFY.outgoing.failure": "હાલમાં દર્શાવેલ: નિષ્ફળ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.failure": "Failure", "admin-notify-dashboard.NOTIFY.outgoing.failure": "નિષ્ફળ", - // "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "Failed outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "નિષ્ફળ આઉટબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + "admin-notify-logs.NOTIFY.incoming.untrusted": "હાલમાં દર્શાવેલ: અવિશ્વસનીય સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "અવિશ્વસનીય", - // "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "Inbound notifications not trusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "અવિશ્વસનીય ઇનબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + "admin-notify-logs.NOTIFY.incoming.delivered": "હાલમાં દર્શાવેલ: પહોંચાડેલ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "Inbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "સફળતાપૂર્વક પહોંચાડેલ ઇનબાઉન્ડ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.delivered": "Delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered": "પહોંચાડેલ", - // "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + "admin-notify-logs.NOTIFY.outgoing.delivered": "હાલમાં દર્શાવેલ: પહોંચાડેલ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "Outbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "સફળતાપૂર્વક પહોંચાડેલ આઉટબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + "admin-notify-logs.NOTIFY.outgoing.queued": "હાલમાં દર્શાવેલ: કતારમાં સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "Notifications currently queued", "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "હાલમાં કતારમાં સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.queued": "Queued", "admin-notify-dashboard.NOTIFY.outgoing.queued": "કતારમાં", - // "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "હાલમાં દર્શાવેલ: પુનઃપ્રયાસ માટે કતારમાં સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "Queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "પુનઃપ્રયાસ માટે કતારમાં", - // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "Notifications currently queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "હાલમાં પુનઃપ્રયાસ માટે કતારમાં સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "સંબંધિત આઇટમ્સ", - // "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "Items related to inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "ઇનબાઉન્ડ સૂચનાઓ સાથે સંબંધિત આઇટમ્સ", - // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "સંબંધિત આઇટમ્સ", - // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "Items related to outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "આઉટબાઉન્ડ સૂચનાઓ સાથે સંબંધિત આઇટમ્સ", - // "admin.notify.dashboard.breadcrumbs": "Dashboard", "admin.notify.dashboard.breadcrumbs": "ડેશબોર્ડ", - // "admin.notify.dashboard.inbound": "Inbound messages", "admin.notify.dashboard.inbound": "ઇનબાઉન્ડ સંદેશાઓ", - // "admin.notify.dashboard.inbound-logs": "Logs/Inbound", "admin.notify.dashboard.inbound-logs": "લોગ્સ/ઇનબાઉન્ડ", - // "admin.notify.dashboard.filter": "Filter: ", - // TODO New key - Add a translation - "admin.notify.dashboard.filter": "Filter: ", + "admin.notify.dashboard.filter": "ફિલ્ટર: ", - // "search.filters.applied.f.relateditem": "Related items", "search.filters.applied.f.relateditem": "સંબંધિત આઇટમ્સ", - // "search.filters.applied.f.ldn_service": "LDN Service", "search.filters.applied.f.ldn_service": "LDN સેવા", - // "search.filters.applied.f.notifyReview": "Notify Review", "search.filters.applied.f.notifyReview": "નોટિફાય સમીક્ષા", - // "search.filters.applied.f.notifyEndorsement": "Notify Endorsement", "search.filters.applied.f.notifyEndorsement": "નોટિફાય મંજૂરી", - // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "નોટિફાય સંબંધ", - // "search.filters.applied.f.access_status": "Access type", "search.filters.applied.f.access_status": "ઍક્સેસ પ્રકાર", - // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "છેલ્લી પ્રક્રિયા સમય ", - // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "ન્યૂનતમ શ્રેણી", - // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "મહત્તમ શ્રેણી", - // "search.filters.applied.f.queue_last_start_time.min": "Min range", "search.filters.applied.f.queue_last_start_time.min": "ન્યૂનતમ શ્રેણી", - // "search.filters.applied.f.queue_last_start_time.max": "Max range", "search.filters.applied.f.queue_last_start_time.max": "મહત્તમ શ્રેણી", - // "admin.notify.dashboard.outbound": "Outbound messages", "admin.notify.dashboard.outbound": "આઉટબાઉન્ડ સંદેશાઓ", - // "admin.notify.dashboard.outbound-logs": "Logs/Outbound", "admin.notify.dashboard.outbound-logs": "લોગ્સ/આઉટબાઉન્ડ", - // "NOTIFY.incoming.search.results.head": "Incoming", "NOTIFY.incoming.search.results.head": "ઇનબાઉન્ડ", - // "search.filters.filter.relateditem.head": "Related item", "search.filters.filter.relateditem.head": "સંબંધિત આઇટમ", - // "search.filters.filter.origin.head": "Origin", "search.filters.filter.origin.head": "મૂળ", - // "search.filters.filter.ldn_service.head": "LDN Service", "search.filters.filter.ldn_service.head": "LDN સેવા", - // "search.filters.filter.target.head": "Target", "search.filters.filter.target.head": "લક્ષ્ય", - // "search.filters.filter.queue_status.head": "Queue status", "search.filters.filter.queue_status.head": "કતાર સ્થિતિ", - // "search.filters.filter.activity_stream_type.head": "Activity stream type", "search.filters.filter.activity_stream_type.head": "પ્રવાહ પ્રકાર", - // "search.filters.filter.coar_notify_type.head": "COAR Notify type", "search.filters.filter.coar_notify_type.head": "COAR નોટિફાય પ્રકાર", - // "search.filters.filter.notification_type.head": "Notification type", "search.filters.filter.notification_type.head": "સૂચના પ્રકાર", - // "search.filters.filter.relateditem.label": "Search related items", "search.filters.filter.relateditem.label": "સંબંધિત આઇટમ્સ માટે શોધો", - // "search.filters.filter.queue_status.label": "Search queue status", "search.filters.filter.queue_status.label": "કતાર સ્થિતિ માટે શોધો", - // "search.filters.filter.target.label": "Search target", "search.filters.filter.target.label": "લક્ષ્ય માટે શોધો", - // "search.filters.filter.activity_stream_type.label": "Search activity stream type", "search.filters.filter.activity_stream_type.label": "પ્રવાહ પ્રકાર માટે શોધો", - // "search.filters.applied.f.queue_status": "Queue Status", "search.filters.applied.f.queue_status": "કતાર સ્થિતિ", - // "search.filters.queue_status.0,authority": "Untrusted Ip", "search.filters.queue_status.0,authority": "અવિશ્વસનીય Ip", - // "search.filters.queue_status.1,authority": "Queued", "search.filters.queue_status.1,authority": "કતારમાં", - // "search.filters.queue_status.2,authority": "Processing", "search.filters.queue_status.2,authority": "પ્રક્રિયા", - // "search.filters.queue_status.3,authority": "Processed", "search.filters.queue_status.3,authority": "પ્રક્રિયા કરેલ", - // "search.filters.queue_status.4,authority": "Failed", "search.filters.queue_status.4,authority": "નિષ્ફળ", - // "search.filters.queue_status.5,authority": "Untrusted", "search.filters.queue_status.5,authority": "અવિશ્વસનીય", - // "search.filters.queue_status.6,authority": "Unmapped Action", "search.filters.queue_status.6,authority": "અનમૅપ્ડ ક્રિયા", - // "search.filters.queue_status.7,authority": "Queued for retry", "search.filters.queue_status.7,authority": "પુનઃપ્રયાસ માટે કતારમાં", - // "search.filters.applied.f.activity_stream_type": "Activity stream type", "search.filters.applied.f.activity_stream_type": "પ્રવાહ પ્રકાર", - // "search.filters.applied.f.coar_notify_type": "COAR Notify type", "search.filters.applied.f.coar_notify_type": "COAR નોટિફાય પ્રકાર", - // "search.filters.applied.f.notification_type": "Notification type", "search.filters.applied.f.notification_type": "સૂચના પ્રકાર", - // "search.filters.filter.coar_notify_type.label": "Search COAR Notify type", "search.filters.filter.coar_notify_type.label": "COAR નોટિફાય પ્રકાર માટે શોધો", - // "search.filters.filter.notification_type.label": "Search notification type", "search.filters.filter.notification_type.label": "સૂચના પ્રકાર માટે શોધો", - // "search.filters.filter.relateditem.placeholder": "Related items", "search.filters.filter.relateditem.placeholder": "સંબંધિત આઇટમ્સ", - // "search.filters.filter.target.placeholder": "Target", "search.filters.filter.target.placeholder": "લક્ષ્ય", - // "search.filters.filter.origin.label": "Search source", "search.filters.filter.origin.label": "મૂળ માટે શોધો", - // "search.filters.filter.origin.placeholder": "Source", "search.filters.filter.origin.placeholder": "મૂળ", - // "search.filters.filter.ldn_service.label": "Search LDN Service", "search.filters.filter.ldn_service.label": "LDN સેવા માટે શોધો", - // "search.filters.filter.ldn_service.placeholder": "LDN Service", "search.filters.filter.ldn_service.placeholder": "LDN સેવા", - // "search.filters.filter.queue_status.placeholder": "Queue status", "search.filters.filter.queue_status.placeholder": "કતાર સ્થિતિ", - // "search.filters.filter.activity_stream_type.placeholder": "Activity stream type", "search.filters.filter.activity_stream_type.placeholder": "પ્રવાહ પ્રકાર", - // "search.filters.filter.coar_notify_type.placeholder": "COAR Notify type", "search.filters.filter.coar_notify_type.placeholder": "COAR નોટિફાય પ્રકાર", - // "search.filters.filter.notification_type.placeholder": "Notification", "search.filters.filter.notification_type.placeholder": "સૂચના", - // "search.filters.filter.notifyRelation.head": "Notify Relation", "search.filters.filter.notifyRelation.head": "નોટિફાય સંબંધ", - // "search.filters.filter.notifyRelation.label": "Search Notify Relation", "search.filters.filter.notifyRelation.label": "નોટિફાય સંબંધ માટે શોધો", - // "search.filters.filter.notifyRelation.placeholder": "Notify Relation", "search.filters.filter.notifyRelation.placeholder": "નોટિફાય સંબંધ", - // "search.filters.filter.notifyReview.head": "Notify Review", "search.filters.filter.notifyReview.head": "નોટિફાય સમીક્ષા", - // "search.filters.filter.notifyReview.label": "Search Notify Review", "search.filters.filter.notifyReview.label": "નોટિફાય સમીક્ષા માટે શોધો", - // "search.filters.filter.notifyReview.placeholder": "Notify Review", "search.filters.filter.notifyReview.placeholder": "નોટિફાય સમીક્ષા", - // "search.filters.coar_notify_type.coar-notify:ReviewAction": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction": "સમીક્ષા ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "સમીક્ષા ક્રિયા", - // "notify-detail-modal.coar-notify:ReviewAction": "Review action", "notify-detail-modal.coar-notify:ReviewAction": "સમીક્ષા ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:EndorsementAction": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction": "મંજૂરી ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "મંજૂરી ક્રિયા", - // "notify-detail-modal.coar-notify:EndorsementAction": "Endorsement action", "notify-detail-modal.coar-notify:EndorsementAction": "મંજૂરી ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:IngestAction": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction": "ઇનજેસ્ટ ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ઇનજેસ્ટ ક્રિયા", - // "notify-detail-modal.coar-notify:IngestAction": "Ingest action", "notify-detail-modal.coar-notify:IngestAction": "ઇનજેસ્ટ ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:RelationshipAction": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction": "સંબંધ ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "સંબંધ ક્રિયા", - // "notify-detail-modal.coar-notify:RelationshipAction": "Relationship action", "notify-detail-modal.coar-notify:RelationshipAction": "સંબંધ ક્રિયા", - // "search.filters.queue_status.QUEUE_STATUS_QUEUED": "Queued", "search.filters.queue_status.QUEUE_STATUS_QUEUED": "કતારમાં", - // "notify-detail-modal.QUEUE_STATUS_QUEUED": "Queued", "notify-detail-modal.QUEUE_STATUS_QUEUED": "કતારમાં", - // "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "પુનઃપ્રયાસ માટે કતારમાં", - // "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "પુનઃપ્રયાસ માટે કતારમાં", - // "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "Processing", "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "પ્રક્રિયા", - // "notify-detail-modal.QUEUE_STATUS_PROCESSING": "Processing", "notify-detail-modal.QUEUE_STATUS_PROCESSING": "પ્રક્રિયા", - // "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "Processed", "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "પ્રક્રિયા કરેલ", - // "notify-detail-modal.QUEUE_STATUS_PROCESSED": "Processed", "notify-detail-modal.QUEUE_STATUS_PROCESSED": "પ્રક્રિયા કરેલ", - // "search.filters.queue_status.QUEUE_STATUS_FAILED": "Failed", "search.filters.queue_status.QUEUE_STATUS_FAILED": "નિષ્ફળ", - // "notify-detail-modal.QUEUE_STATUS_FAILED": "Failed", "notify-detail-modal.QUEUE_STATUS_FAILED": "નિષ્ફળ", - // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "Untrusted", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "અવિશ્વસનીય", - // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "અવિશ્વસનીય Ip", - // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "Untrusted", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "અવિશ્વસનીય", - // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "અવિશ્વસનીય Ip", - // "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "અનમૅપ્ડ ક્રિયા", - // "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "અનમૅપ્ડ ક્રિયા", - // "sorting.queue_last_start_time.DESC": "Last started queue Descending", "sorting.queue_last_start_time.DESC": "છેલ્લી શરૂ થયેલી કતાર ઉતરતી ક્રમમાં", - // "sorting.queue_last_start_time.ASC": "Last started queue Ascending", "sorting.queue_last_start_time.ASC": "છેલ્લી શરૂ થયેલી કતાર ચડતી ક્રમમાં", - // "sorting.queue_attempts.DESC": "Queue attempted Descending", "sorting.queue_attempts.DESC": "કતાર પ્રયાસ ઉતરતી ક્રમમાં", - // "sorting.queue_attempts.ASC": "Queue attempted Ascending", "sorting.queue_attempts.ASC": "કતાર પ્રયાસ ચડતી ક્રમમાં", - // "NOTIFY.incoming.involvedItems.search.results.head": "Items involved in incoming LDN", "NOTIFY.incoming.involvedItems.search.results.head": "ઇનબાઉન્ડ LDN માં સંકળાયેલા આઇટમ્સ", - // "NOTIFY.outgoing.involvedItems.search.results.head": "Items involved in outgoing LDN", "NOTIFY.outgoing.involvedItems.search.results.head": "આઉટબાઉન્ડ LDN માં સંકળાયેલા આઇટમ્સ", - // "type.notify-detail-modal": "Type", "type.notify-detail-modal": "પ્રકાર", - // "id.notify-detail-modal": "Id", "id.notify-detail-modal": "Id", - // "coarNotifyType.notify-detail-modal": "COAR Notify type", "coarNotifyType.notify-detail-modal": "COAR નોટિફાય પ્રકાર", - // "activityStreamType.notify-detail-modal": "Activity stream type", "activityStreamType.notify-detail-modal": "પ્રવાહ પ્રકાર", - // "inReplyTo.notify-detail-modal": "In reply to", "inReplyTo.notify-detail-modal": "જવાબમાં", - // "object.notify-detail-modal": "Repository Item", "object.notify-detail-modal": "રિપોઝિટરી આઇટમ", - // "context.notify-detail-modal": "Repository Item", "context.notify-detail-modal": "રિપોઝિટરી આઇટમ", - // "queueAttempts.notify-detail-modal": "Queue attempts", "queueAttempts.notify-detail-modal": "કતાર પ્રયાસ", - // "queueLastStartTime.notify-detail-modal": "Queue last started", "queueLastStartTime.notify-detail-modal": "છેલ્લી કતાર શરૂ", - // "origin.notify-detail-modal": "LDN Service", "origin.notify-detail-modal": "LDN સેવા", - // "target.notify-detail-modal": "LDN Service", "target.notify-detail-modal": "LDN સેવા", - // "queueStatusLabel.notify-detail-modal": "Queue status", "queueStatusLabel.notify-detail-modal": "કતાર સ્થિતિ", - // "queueTimeout.notify-detail-modal": "Queue timeout", "queueTimeout.notify-detail-modal": "કતાર સમયમર્યાદા", - // "notify-message-modal.title": "Message Detail", "notify-message-modal.title": "સંદેશ વિગત", - // "notify-message-modal.show-message": "Show message", "notify-message-modal.show-message": "સંદેશ બતાવો", - // "notify-message-result.timestamp": "Timestamp", "notify-message-result.timestamp": "ટાઇમસ્ટેમ્પ", - // "notify-message-result.repositoryItem": "Repository Item", "notify-message-result.repositoryItem": "રિપોઝિટરી આઇટમ", - // "notify-message-result.ldnService": "LDN Service", "notify-message-result.ldnService": "LDN સેવા", - // "notify-message-result.type": "Type", "notify-message-result.type": "પ્રકાર", - // "notify-message-result.status": "Status", "notify-message-result.status": "સ્થિતિ", - // "notify-message-result.action": "Action", "notify-message-result.action": "ક્રિયા", - // "notify-message-result.detail": "Detail", "notify-message-result.detail": "વિગત", - // "notify-message-result.reprocess": "Reprocess", "notify-message-result.reprocess": "ફરીથી પ્રક્રિયા", - // "notify-queue-status.processed": "Processed", "notify-queue-status.processed": "પ્રક્રિયા કરેલ", - // "notify-queue-status.failed": "Failed", "notify-queue-status.failed": "નિષ્ફળ", - // "notify-queue-status.queue_retry": "Queued for retry", "notify-queue-status.queue_retry": "પુનઃપ્રયાસ માટે કતારમાં", - // "notify-queue-status.unmapped_action": "Unmapped action", "notify-queue-status.unmapped_action": "અનમૅપ્ડ ક્રિયા", - // "notify-queue-status.processing": "Processing", "notify-queue-status.processing": "પ્રક્રિયા", - // "notify-queue-status.queued": "Queued", "notify-queue-status.queued": "કતારમાં", - // "notify-queue-status.untrusted": "Untrusted", "notify-queue-status.untrusted": "અવિશ્વસનીય", - // "ldnService.notify-detail-modal": "LDN Service", "ldnService.notify-detail-modal": "LDN સેવા", - // "relatedItem.notify-detail-modal": "Related Item", "relatedItem.notify-detail-modal": "સંબંધિત આઇટમ", - // "search.filters.filter.notifyEndorsement.head": "Notify Endorsement", "search.filters.filter.notifyEndorsement.head": "નોટિફાય મંજૂરી", - // "search.filters.filter.notifyEndorsement.placeholder": "Notify Endorsement", "search.filters.filter.notifyEndorsement.placeholder": "નોટિફાય મંજૂરી", - // "search.filters.filter.notifyEndorsement.label": "Search Notify Endorsement", "search.filters.filter.notifyEndorsement.label": "નોટિફાય મંજૂરી માટે શોધો", - // "form.date-picker.placeholder.year": "Year", "form.date-picker.placeholder.year": "વર્ષ", - // "form.date-picker.placeholder.month": "Month", "form.date-picker.placeholder.month": "મહિનો", - // "form.date-picker.placeholder.day": "Day", "form.date-picker.placeholder.day": "દિવસ", - // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "ક્રિએટિવ કોમન્સ લાઇસન્સ", - // "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as", "item.page.cc.license.disclaimer": "જ્યાં અન્યથા નોંધાયેલ નથી, ત્યાં આ આઇટમનું લાઇસન્સ આ પ્રમાણે વર્ણવવામાં આવ્યું છે", - // "browse.search-form.placeholder": "Search the repository", "browse.search-form.placeholder": "રિપોઝિટરી શોધો", - // "file-download-link.download": "Download ", "file-download-link.download": "ડાઉનલોડ કરો", - // "register-page.registration.aria.label": "Enter your e-mail address", "register-page.registration.aria.label": "તમારો ઇમેઇલ સરનામું દાખલ કરો", - // "forgot-email.form.aria.label": "Enter your e-mail address", "forgot-email.form.aria.label": "તમારો ઇમેઇલ સરનામું દાખલ કરો", - // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "પેજ ફરીથી લોડ થશે. ફિલ્ટર {{ filter }} પસંદ કરેલ છે.", - // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", "live-region.ordering.instructions": "પુનઃક્રમમાં ગોઠવવા માટે સ્પેસબાર દબાવો {{ itemName }}.", - // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", - // TODO New key - Add a translation - "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + "live-region.ordering.status": "{{ itemName }}, પકડ્યું. સૂચિમાં વર્તમાન સ્થિતિ: {{ index }} માંથી {{ length }}. સ્થિતિ બદલવા માટે ઉપર અને નીચેના તીર કીઓ દબાવો, છોડવા માટે સ્પેસબાર દબાવો, રદ કરવા માટે એસ્કેપ દબાવો.", - // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", "live-region.ordering.moved": "{{ itemName }}, સ્થિતિમાં ખસેડ્યું {{ index }} માંથી {{ length }}. સ્થિતિ બદલવા માટે ઉપર અને નીચેના તીર કીઓ દબાવો, છોડવા માટે સ્પેસબાર દબાવો, રદ કરવા માટે એસ્કેપ દબાવો.", - // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", "live-region.ordering.dropped": "{{ itemName }}, સ્થિતિમાં છોડ્યું {{ index }} માંથી {{ length }}.", - // "dynamic-form-array.sortable-list.label": "Sortable list", "dynamic-form-array.sortable-list.label": "સૉર્ટેબલ સૂચિ", - // "external-login.component.or": "or", "external-login.component.or": "અથવા", - // "external-login.confirmation.header": "Information needed to complete the login process", "external-login.confirmation.header": "લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે માહિતી જરૂરી છે", - // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", "external-login.noEmail.informationText": "{{authMethod}} માંથી પ્રાપ્ત માહિતી લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે પૂરતી નથી. કૃપા કરીને નીચેની ગુમ થયેલી માહિતી આપો, અથવા {{authMethod}} ને મોજુદા ખાતા સાથે જોડવા માટે અલગ પદ્ધતિથી લૉગિન કરો.", - // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", "external-login.haveEmail.informationText": "તમારા પાસે હજી સુધી આ સિસ્ટમમાં એકાઉન્ટ નથી એવું લાગે છે. જો એવું હોય, તો કૃપા કરીને {{authMethod}} માંથી પ્રાપ્ત ડેટાની પુષ્ટિ કરો અને તમારા માટે નવું એકાઉન્ટ બનાવવામાં આવશે. અન્યથા, જો તમારી પાસે પહેલેથી જ સિસ્ટમમાં એકાઉન્ટ છે, તો કૃપા કરીને ઇમેઇલ સરનામું અપડેટ કરો જેથી તે સિસ્ટમમાં પહેલેથી જ ઉપયોગમાં લેવાતા સરનામા સાથે મેળ ખાતું હોય અથવા તમારા મોજુદા ખાતા સાથે {{authMethod}} ને જોડવા માટે અલગ પદ્ધતિથી લૉગિન કરો.", - // "external-login.confirm-email.header": "Confirm or update email", "external-login.confirm-email.header": "ઇમેઇલની પુષ્ટિ કરો અથવા અપડેટ કરો", - // "external-login.confirmation.email-required": "Email is required.", "external-login.confirmation.email-required": "ઇમેઇલ જરૂરી છે.", - // "external-login.confirmation.email-label": "User Email", "external-login.confirmation.email-label": "વપરાશકર્તા ઇમેઇલ", - // "external-login.confirmation.email-invalid": "Invalid email format.", "external-login.confirmation.email-invalid": "અમાન્ય ઇમેઇલ ફોર્મેટ.", - // "external-login.confirm.button.label": "Confirm this email", "external-login.confirm.button.label": "આ ઇમેઇલની પુષ્ટિ કરો", - // "external-login.confirm-email-sent.header": "Confirmation email sent", "external-login.confirm-email-sent.header": "પુષ્ટિ ઇમેઇલ મોકલવામાં આવ્યું", - // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", "external-login.confirm-email-sent.info": "અમે આપેલા સરનામે ઇમેઇલ મોકલ્યો છે.
લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે ઇમેઇલમાં આપેલા સૂચનોનું અનુસરણ કરો.", - // "external-login.provide-email.header": "Provide email", "external-login.provide-email.header": "ઇમેઇલ આપો", - // "external-login.provide-email.button.label": "Send Verification link", "external-login.provide-email.button.label": "પુષ્ટિ લિંક મોકલો", - // "external-login-validation.review-account-info.header": "Review your account information", "external-login-validation.review-account-info.header": "તમારી ખાતાની માહિતી સમીક્ષા કરો", - // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", "external-login-validation.review-account-info.info": "ORCID માંથી પ્રાપ્ત માહિતી તમારી પ્રોફાઇલમાં નોંધાયેલ માહિતીથી અલગ છે.
કૃપા કરીને તેમને સમીક્ષા કરો અને નક્કી કરો કે તમે તેમાંના કોઈને અપડેટ કરવા માંગો છો કે નહીં. સાચવ્યા પછી તમને તમારી પ્રોફાઇલ પેજ પર રીડાયરેક્ટ કરવામાં આવશે.", - // "external-login-validation.review-account-info.table.header.information": "Information", "external-login-validation.review-account-info.table.header.information": "માહિતી", - // "external-login-validation.review-account-info.table.header.received-value": "Received value", "external-login-validation.review-account-info.table.header.received-value": "પ્રાપ્ત મૂલ્ય", - // "external-login-validation.review-account-info.table.header.current-value": "Current value", "external-login-validation.review-account-info.table.header.current-value": "વર્તમાન મૂલ્ય", - // "external-login-validation.review-account-info.table.header.action": "Override", "external-login-validation.review-account-info.table.header.action": "ઓવરરાઇડ", - // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", "external-login-validation.review-account-info.table.row.not-applicable": "લાગુ નથી", - // "on-label": "ON", "on-label": "ચાલુ", - // "off-label": "OFF", "off-label": "બંધ", - // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", "review-account-info.merge-data.notification.success": "તમારી ખાતાની માહિતી સફળતાપૂર્વક અપડેટ કરવામાં આવી છે", - // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", "review-account-info.merge-data.notification.error": "તમારી ખાતાની માહિતી અપડેટ કરતી વખતે કંઈક ખોટું થયું", - // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", "review-account-info.alert.error.content": "કંઈક ખોટું થયું. કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", - // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", "external-login-page.provide-email.notifications.error": "કંઈક ખોટું થયું. ઇમેઇલ સરનામું છોડી દેવામાં આવ્યું છે અથવા ઓપરેશન માન્ય નથી.", - // "external-login.error.notification": "There was an error while processing your request. Please try again later.", "external-login.error.notification": "તમારી વિનંતી પ્રક્રિયા કરતી વખતે ભૂલ આવી. કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", - // "external-login.connect-to-existing-account.label": "Connect to an existing user", "external-login.connect-to-existing-account.label": "મોજુદા વપરાશકર્તા સાથે જોડો", - // "external-login.modal.label.close": "Close", "external-login.modal.label.close": "બંધ કરો", - // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", "external-login-page.provide-email.create-account.notifications.error.header": "કંઈક ખોટું થયું", - // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", "external-login-page.provide-email.create-account.notifications.error.content": "કૃપા કરીને તમારું ઇમેઇલ સરનામું ફરીથી તપાસો અને ફરી પ્રયાસ કરો.", - // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", "external-login-page.confirm-email.create-account.notifications.error.no-netId": "આ ઇમેઇલ ખાતા સાથે કંઈક ખોટું થયું. ફરી પ્રયાસ કરો અથવા લૉગિન માટે અલગ પદ્ધતિનો ઉપયોગ કરો.", - // "external-login-page.orcid-confirmation.firstname": "First name", "external-login-page.orcid-confirmation.firstname": "પ્રથમ નામ", - // "external-login-page.orcid-confirmation.firstname.label": "First name", "external-login-page.orcid-confirmation.firstname.label": "પ્રથમ નામ", - // "external-login-page.orcid-confirmation.lastname": "Last name", "external-login-page.orcid-confirmation.lastname": "છેલ્લું નામ", - // "external-login-page.orcid-confirmation.lastname.label": "Last name", "external-login-page.orcid-confirmation.lastname.label": "છેલ્લું નામ", - // "external-login-page.orcid-confirmation.netid": "Account Identifier", "external-login-page.orcid-confirmation.netid": "ખાતા ઓળખકર્તા", - // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", - // "external-login-page.orcid-confirmation.email": "Email", "external-login-page.orcid-confirmation.email": "ઇમેઇલ", - // "external-login-page.orcid-confirmation.email.label": "Email", "external-login-page.orcid-confirmation.email.label": "ઇમેઇલ", - // "search.filters.access_status.open.access": "Open access", "search.filters.access_status.open.access": "ઓપન ઍક્સેસ", - // "search.filters.access_status.restricted": "Restricted access", "search.filters.access_status.restricted": "પ્રતિબંધિત ઍક્સેસ", - // "search.filters.access_status.embargo": "Embargoed access", "search.filters.access_status.embargo": "એમ્બાર્ગો ઍક્સેસ", - // "search.filters.access_status.metadata.only": "Metadata only", "search.filters.access_status.metadata.only": "મેટાડેટા માત્ર", - // "search.filters.access_status.unknown": "Unknown", "search.filters.access_status.unknown": "અજ્ઞાત", - // "metadata-export-filtered-items.tooltip": "Export report output as CSV", "metadata-export-filtered-items.tooltip": "CSV તરીકે રિપોર્ટ આઉટપુટ નિકાસ કરો", - // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", "metadata-export-filtered-items.submit.success": "CSV નિકાસ સફળ.", - // "metadata-export-filtered-items.submit.error": "CSV export failed.", "metadata-export-filtered-items.submit.error": "CSV નિકાસ નિષ્ફળ.", - // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", "metadata-export-filtered-items.columns.warning": "CSV નિકાસ આપમેળે બધી સંબંધિત ફીલ્ડ્સ શામેલ કરે છે, તેથી આ સૂચિમાં પસંદગીઓ ધ્યાનમાં લેવામાં આવતી નથી.", - // "embargo.listelement.badge": "Embargo until {{ date }}", "embargo.listelement.badge": "એમ્બાર્ગો સુધી {{ date }}", - // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", "metadata-export-search.submit.error.limit-exceeded": "માત્ર પ્રથમ {{limit}} આઇટમ્સ નિકાસ કરવામાં આવશે", - - // "file-download-link.request-copy": "Request a copy of ", - // TODO New key - Add a translation - "file-download-link.request-copy": "Request a copy of ", - - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - - -} \ No newline at end of file +} diff --git a/src/assets/i18n/hi.json5 b/src/assets/i18n/hi.json5 index a92ea7203c4..5fb5f9c4dd0 100644 --- a/src/assets/i18n/hi.json5 +++ b/src/assets/i18n/hi.json5 @@ -2942,25 +2942,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "शीर्ष-स्तरीय समुदाय प्राप्त करने में त्रुटि", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "अपनी सबमिशन को पूरा करने के लिए आपको इस लाइसेंस को प्रदान करना होगा। यदि आप इस समय लाइसेंस प्रदान करने में असमर्थ हैं, तो आप अपना कार्य सहेज सकते हैं और बाद में वापस आ सकते हैं या सबमिशन को हटा सकते हैं।", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "अपनी सबमिशन को पूरा करने के लिए आपको इस cclicense को प्रदान करना होगा। यदि आप इस समय cclicense प्रदान करने में असमर्थ हैं, तो आप अपना कार्य सहेज सकते हैं और बाद में वापस आ सकते हैं या सबमिशन को हटा सकते हैं।", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -8554,10 +8541,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "क्रिएटिव कॉमन्स लाइसेंस", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "रीसायकल", @@ -8725,18 +8708,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "अपलोड सफल", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "जब चेक किया जाता है, तो यह आइटम खोज/ब्राउज़ में खोजने योग्य होगा। जब अनचेक किया जाता है, तो आइटम केवल एक सीधे लिंक के माध्यम से उपलब्ध होगा और कभी भी खोज/ब्राउज़ में दिखाई नहीं देगा।", @@ -11147,17 +11118,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/it.json5 b/src/assets/i18n/it.json5 index 061d6e82f94..26d70f3d5e9 100644 --- a/src/assets/i18n/it.json5 +++ b/src/assets/i18n/it.json5 @@ -3121,26 +3121,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Errore durante il recupero delle community di primo livello", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "È necessario concedere questa licenza per completare l'immisione. Se non sei in grado di concedere questa licenza in questo momento, puoi salvare il tuo lavoro e tornare più tardi o rimuovere l'immissione.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "L'input è limitato dal pattern in uso: {{ pattern }}.", @@ -9030,10 +9017,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licenza Creative commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ricicla", @@ -9202,18 +9185,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Caricamento riuscito", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Una volta selezionato, questo item sarà individuabile nella ricerca/navigazione. Se deselezionato, l'item sarà disponibile solo tramite un collegamento diretto e non apparirà mai nella ricerca / navigazione.", @@ -12100,17 +12071,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } diff --git a/src/assets/i18n/ja.json5 b/src/assets/i18n/ja.json5 index d9cdd752e34..2d969c19464 100644 --- a/src/assets/i18n/ja.json5 +++ b/src/assets/i18n/ja.json5 @@ -3847,26 +3847,14 @@ // TODO New key - Add a translation "error.top-level-communities": "Error fetching top-level communities", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -11102,10 +11090,6 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", // TODO New key - Add a translation "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -11326,18 +11310,6 @@ // TODO New key - Add a translation "submission.sections.upload.upload-successful": "Upload successful", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -14558,17 +14530,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/kk.json5 b/src/assets/i18n/kk.json5 index fe4b2156902..320cd39037f 100644 --- a/src/assets/i18n/kk.json5 +++ b/src/assets/i18n/kk.json5 @@ -3215,26 +3215,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Жоғары деңгейлі қауымдастықтарды алу қатесі", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Жіберуді аяқтау үшін осы лицензияны беруіңіз керек. Бұл лицензияны қазір бере алмасаңыз, жұмысыңызды сақтап, кейінірек оралуыңызға немесе жіберуді жоюға болады.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Бұл енгізу ағымдағы үлгімен шектелген: {{ pattern }}.", @@ -9266,10 +9253,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons лицензиясы", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Өңдеуге", @@ -9439,18 +9422,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Жүктеу сәтті өтті", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Егер бұл құсбелгі қойылса, бұл элемент іздеу/қарау үшін қол жетімді болады. Егер құсбелгі алынып тасталса, элемент тек тікелей сілтеме арқылы қол жетімді болады және іздеу/қарау кезінде ешқашан пайда болмайды.", @@ -12451,17 +12422,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/lv.json5 b/src/assets/i18n/lv.json5 index f1dbcc3898e..1dce108b87f 100644 --- a/src/assets/i18n/lv.json5 +++ b/src/assets/i18n/lv.json5 @@ -3488,26 +3488,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Kļūda ielasot augstākā līmeņa kategorijas", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Jums ir jānodrošina šī licence, lai pabeigtu iesniegšanu. Ja šobrīd nevarat piešķirt šo licenci, varat saglabāt savu darbu un atgriezties vēlāk vai noņemt iesniegšanu.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Šo ievadi ierobežo pašreizējais modelis: {{ pattern }}.", @@ -10118,10 +10105,6 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Pārstrādāt", @@ -10315,18 +10298,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Augšupielāde veiksmīga", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13514,17 +13485,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/mr.json5 b/src/assets/i18n/mr.json5 index a24a498dcd5..51e23f27d9e 100644 --- a/src/assets/i18n/mr.json5 +++ b/src/assets/i18n/mr.json5 @@ -1,11162 +1,7259 @@ { - // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "आपल्याला या पृष्ठावर प्रवेश करण्याची परवानगी नाही. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", - // "401.link.home-page": "Take me to the home page", "401.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", - // "401.unauthorized": "Unauthorized", "401.unauthorized": "अनधिकृत", - // "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.", "403.help": "आपल्याला या पृष्ठावर प्रवेश करण्याची परवानगी नाही. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", - // "403.link.home-page": "Take me to the home page", "403.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", - // "403.forbidden": "Forbidden", "403.forbidden": "मनाई", - // "500.page-internal-server-error": "Service unavailable", "500.page-internal-server-error": "सेवा अनुपलब्ध", - // "500.help": "The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.", "500.help": "सर्व्हर तात्पुरते आपल्या विनंतीची सेवा देऊ शकत नाही कारण देखभाल डाउनटाइम किंवा क्षमता समस्या आहेत. कृपया नंतर पुन्हा प्रयत्न करा.", - // "500.link.home-page": "Take me to the home page", "500.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", - // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ", "404.help": "आपण शोधत असलेले पृष्ठ आम्हाला सापडत नाही. पृष्ठ हलविले गेले असेल किंवा हटविले गेले असेल. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", - // "404.link.home-page": "Take me to the home page", "404.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", - // "404.page-not-found": "Page not found", "404.page-not-found": "पृष्ठ सापडले नाही", - // "error-page.description.401": "Unauthorized", "error-page.description.401": "अनधिकृत", - // "error-page.description.403": "Forbidden", "error-page.description.403": "मनाई", - // "error-page.description.500": "Service unavailable", "error-page.description.500": "सेवा अनुपलब्ध", - // "error-page.description.404": "Page not found", "error-page.description.404": "पृष्ठ सापडले नाही", - // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "ORCID द्वारे लॉगिन करताना एक त्रुटी आली. कृपया खात्री करा की आपण आपला ORCID खाते ईमेल पत्ता DSpace सोबत शेअर केला आहे. त्रुटी कायम राहिल्यास, प्रशासकाशी संपर्क साधा", - // "listelement.badge.access-status": "Access status:", - // TODO New key - Add a translation - "listelement.badge.access-status": "Access status:", - - // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "एंबार्गो", - // "access-status.metadata.only.listelement.badge": "Metadata only", "access-status.metadata.only.listelement.badge": "फक्त मेटाडेटा", - // "access-status.open.access.listelement.badge": "Open Access", "access-status.open.access.listelement.badge": "मुक्त प्रवेश", - // "access-status.restricted.listelement.badge": "Restricted", "access-status.restricted.listelement.badge": "प्रतिबंधित", - // "access-status.unknown.listelement.badge": "Unknown", "access-status.unknown.listelement.badge": "अज्ञात", - // "admin.curation-tasks.breadcrumbs": "System curation tasks", "admin.curation-tasks.breadcrumbs": "सिस्टम क्यूरेशन कार्ये", - // "admin.curation-tasks.title": "System curation tasks", "admin.curation-tasks.title": "सिस्टम क्यूरेशन कार्ये", - // "admin.curation-tasks.header": "System curation tasks", "admin.curation-tasks.header": "सिस्टम क्यूरेशन कार्ये", - // "admin.registries.bitstream-formats.breadcrumbs": "Format registry", "admin.registries.bitstream-formats.breadcrumbs": "फॉरमॅट रजिस्ट्री", - // "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.create.breadcrumbs": "बिटस्ट्रीम फॉरमॅट", - // "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.", "admin.registries.bitstream-formats.create.failure.content": "नवीन बिटस्ट्रीम फॉरमॅट तयार करताना एक त्रुटी आली.", - // "admin.registries.bitstream-formats.create.failure.head": "Failure", "admin.registries.bitstream-formats.create.failure.head": "अपयश", - // "admin.registries.bitstream-formats.create.head": "Create bitstream format", "admin.registries.bitstream-formats.create.head": "बिटस्ट्रीम फॉरमॅट तयार करा", - // "admin.registries.bitstream-formats.create.new": "Add a new bitstream format", "admin.registries.bitstream-formats.create.new": "नवीन बिटस्ट्रीम फॉरमॅट जोडा", - // "admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.", "admin.registries.bitstream-formats.create.success.content": "नवीन बिटस्ट्रीम फॉरमॅट यशस्वीरित्या तयार केले गेले.", - // "admin.registries.bitstream-formats.create.success.head": "Success", "admin.registries.bitstream-formats.create.success.head": "यश", - // "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} फॉरमॅट(स) काढण्यात अपयश", - // "admin.registries.bitstream-formats.delete.failure.head": "Failure", "admin.registries.bitstream-formats.delete.failure.head": "अपयश", - // "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} फॉरमॅट(स) यशस्वीरित्या काढले", - // "admin.registries.bitstream-formats.delete.success.head": "Success", "admin.registries.bitstream-formats.delete.success.head": "यश", - // "admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.", "admin.registries.bitstream-formats.description": "बिटस्ट्रीम फॉरमॅटची ही यादी ज्ञात फॉरमॅट्स आणि त्यांच्या समर्थन स्तराबद्दल माहिती प्रदान करते.", - // "admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.edit.breadcrumbs": "बिटस्ट्रीम फॉरमॅट", - // "admin.registries.bitstream-formats.edit.description.hint": "", "admin.registries.bitstream-formats.edit.description.hint": "", - // "admin.registries.bitstream-formats.edit.description.label": "Description", "admin.registries.bitstream-formats.edit.description.label": "वर्णन", - // "admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.", "admin.registries.bitstream-formats.edit.extensions.hint": "एक्सटेंशन्स म्हणजे फाइल एक्सटेंशन्स आहेत ज्या अपलोड केलेल्या फाइल्सच्या फॉरमॅटची स्वयंचलितपणे ओळख करण्यासाठी वापरल्या जातात. आपण प्रत्येक फॉरमॅटसाठी अनेक एक्सटेंशन्स प्रविष्ट करू शकता.", - // "admin.registries.bitstream-formats.edit.extensions.label": "File extensions", "admin.registries.bitstream-formats.edit.extensions.label": "फाइल एक्सटेंशन्स", - // "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot", "admin.registries.bitstream-formats.edit.extensions.placeholder": "डॉटशिवाय फाइल एक्सटेंशन प्रविष्ट करा", - // "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.", "admin.registries.bitstream-formats.edit.failure.content": "बिटस्ट्रीम फॉरमॅट संपादित करताना एक त्रुटी आली.", - // "admin.registries.bitstream-formats.edit.failure.head": "Failure", "admin.registries.bitstream-formats.edit.failure.head": "अपयश", - // "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", - // TODO New key - Add a translation - "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + "admin.registries.bitstream-formats.edit.head": "बिटस्ट्रीम फॉरमॅट: {{ format }}", - // "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.", "admin.registries.bitstream-formats.edit.internal.hint": "आतील म्हणून चिन्हांकित फॉरमॅट्स वापरकर्त्यापासून लपविले जातात आणि प्रशासकीय उद्देशांसाठी वापरले जातात.", - // "admin.registries.bitstream-formats.edit.internal.label": "Internal", "admin.registries.bitstream-formats.edit.internal.label": "आतील", - // "admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.", "admin.registries.bitstream-formats.edit.mimetype.hint": "या फॉरमॅटशी संबंधित MIME प्रकार, अद्वितीय असण्याची आवश्यकता नाही.", - // "admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type", "admin.registries.bitstream-formats.edit.mimetype.label": "MIME प्रकार", - // "admin.registries.bitstream-formats.edit.shortDescription.hint": "A unique name for this format, (e.g. Microsoft Word XP or Microsoft Word 2000)", "admin.registries.bitstream-formats.edit.shortDescription.hint": "या फॉरमॅटसाठी एक अद्वितीय नाव, (उदा. Microsoft Word XP किंवा Microsoft Word 2000)", - // "admin.registries.bitstream-formats.edit.shortDescription.label": "Name", "admin.registries.bitstream-formats.edit.shortDescription.label": "नाव", - // "admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.", "admin.registries.bitstream-formats.edit.success.content": "बिटस्ट्रीम फॉरमॅट यशस्वीरित्या संपादित केले गेले.", - // "admin.registries.bitstream-formats.edit.success.head": "Success", "admin.registries.bitstream-formats.edit.success.head": "यश", - // "admin.registries.bitstream-formats.edit.supportLevel.hint": "The level of support your institution pledges for this format.", "admin.registries.bitstream-formats.edit.supportLevel.hint": "आपली संस्था या फॉरमॅटसाठी समर्थन स्तराची प्रतिज्ञा करते.", - // "admin.registries.bitstream-formats.edit.supportLevel.label": "Support level", "admin.registries.bitstream-formats.edit.supportLevel.label": "समर्थन स्तर", - // "admin.registries.bitstream-formats.head": "Bitstream Format Registry", "admin.registries.bitstream-formats.head": "बिटस्ट्रीम फॉरमॅट रजिस्ट्री", - // "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.", "admin.registries.bitstream-formats.no-items": "दाखविण्यासाठी कोणतेही बिटस्ट्रीम फॉरमॅट नाहीत.", - // "admin.registries.bitstream-formats.table.delete": "Delete selected", "admin.registries.bitstream-formats.table.delete": "निवडलेले हटवा", - // "admin.registries.bitstream-formats.table.deselect-all": "Deselect all", "admin.registries.bitstream-formats.table.deselect-all": "सर्व निवड रद्द करा", - // "admin.registries.bitstream-formats.table.internal": "internal", "admin.registries.bitstream-formats.table.internal": "आतील", - // "admin.registries.bitstream-formats.table.mimetype": "MIME Type", "admin.registries.bitstream-formats.table.mimetype": "MIME प्रकार", - // "admin.registries.bitstream-formats.table.name": "Name", "admin.registries.bitstream-formats.table.name": "नाव", - // "admin.registries.bitstream-formats.table.selected": "Selected bitstream formats", "admin.registries.bitstream-formats.table.selected": "निवडलेले बिटस्ट्रीम फॉरमॅट्स", - // "admin.registries.bitstream-formats.table.id": "ID", "admin.registries.bitstream-formats.table.id": "ID", - // "admin.registries.bitstream-formats.table.return": "Back", "admin.registries.bitstream-formats.table.return": "मागे", - // "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known", "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "ज्ञात", - // "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported", "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "समर्थित", - // "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown", "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "अज्ञात", - // "admin.registries.bitstream-formats.table.supportLevel.head": "Support Level", "admin.registries.bitstream-formats.table.supportLevel.head": "समर्थन स्तर", - // "admin.registries.bitstream-formats.title": "Bitstream Format Registry", "admin.registries.bitstream-formats.title": "बिटस्ट्रीम फॉरमॅट रजिस्ट्री", - // "admin.registries.bitstream-formats.select": "Select", "admin.registries.bitstream-formats.select": "निवडा", - // "admin.registries.bitstream-formats.deselect": "Deselect", "admin.registries.bitstream-formats.deselect": "निवड रद्द करा", - // "admin.registries.metadata.breadcrumbs": "Metadata registry", "admin.registries.metadata.breadcrumbs": "मेटाडेटा रजिस्ट्री", - // "admin.registries.metadata.description": "The metadata registry maintains a list of all metadata fields available in the repository. These fields may be divided amongst multiple schemas. However, DSpace requires the qualified Dublin Core schema.", "admin.registries.metadata.description": "मेटाडेटा रजिस्ट्री रेपॉझिटरीमध्ये उपलब्ध असलेल्या सर्व मेटाडेटा फील्डची यादी राखते. ही फील्ड्स अनेक स्कीमांमध्ये विभागली जाऊ शकतात. तथापि, DSpace ला योग्य Dublin Core स्कीमा आवश्यक आहे.", - // "admin.registries.metadata.form.create": "Create metadata schema", "admin.registries.metadata.form.create": "मेटाडेटा स्कीमा तयार करा", - // "admin.registries.metadata.form.edit": "Edit metadata schema", "admin.registries.metadata.form.edit": "मेटाडेटा स्कीमा संपादित करा", - // "admin.registries.metadata.form.name": "Name", "admin.registries.metadata.form.name": "नाव", - // "admin.registries.metadata.form.namespace": "Namespace", "admin.registries.metadata.form.namespace": "Namespace", - // "admin.registries.metadata.head": "Metadata Registry", "admin.registries.metadata.head": "मेटाडेटा रजिस्ट्री", - // "admin.registries.metadata.schemas.no-items": "No metadata schemas to show.", "admin.registries.metadata.schemas.no-items": "दाखविण्यासाठी कोणतेही मेटाडेटा स्कीमा नाहीत.", - // "admin.registries.metadata.schemas.select": "Select", "admin.registries.metadata.schemas.select": "निवडा", - // "admin.registries.metadata.schemas.deselect": "Deselect", "admin.registries.metadata.schemas.deselect": "निवड रद्द करा", - // "admin.registries.metadata.schemas.table.delete": "Delete selected", "admin.registries.metadata.schemas.table.delete": "निवडलेले हटवा", - // "admin.registries.metadata.schemas.table.selected": "Selected schemas", "admin.registries.metadata.schemas.table.selected": "निवडलेले स्कीमा", - // "admin.registries.metadata.schemas.table.id": "ID", "admin.registries.metadata.schemas.table.id": "ID", - // "admin.registries.metadata.schemas.table.name": "Name", "admin.registries.metadata.schemas.table.name": "नाव", - // "admin.registries.metadata.schemas.table.namespace": "Namespace", "admin.registries.metadata.schemas.table.namespace": "Namespace", - // "admin.registries.metadata.title": "Metadata Registry", "admin.registries.metadata.title": "मेटाडेटा रजिस्ट्री", - // "admin.registries.schema.breadcrumbs": "Metadata schema", "admin.registries.schema.breadcrumbs": "मेटाडेटा स्कीमा", - // "admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".", "admin.registries.schema.description": "हे \"{{namespace}}\" साठी मेटाडेटा स्कीमा आहे.", - // "admin.registries.schema.fields.select": "Select", "admin.registries.schema.fields.select": "निवडा", - // "admin.registries.schema.fields.deselect": "Deselect", "admin.registries.schema.fields.deselect": "निवड रद्द करा", - // "admin.registries.schema.fields.head": "Schema metadata fields", "admin.registries.schema.fields.head": "स्कीमा मेटाडेटा फील्ड्स", - // "admin.registries.schema.fields.no-items": "No metadata fields to show.", "admin.registries.schema.fields.no-items": "दाखविण्यासाठी कोणतेही मेटाडेटा फील्ड्स नाहीत.", - // "admin.registries.schema.fields.table.delete": "Delete selected", "admin.registries.schema.fields.table.delete": "निवडलेले हटवा", - // "admin.registries.schema.fields.table.field": "Field", "admin.registries.schema.fields.table.field": "फील्ड", - // "admin.registries.schema.fields.table.selected": "Selected metadata fields", "admin.registries.schema.fields.table.selected": "निवडलेले मेटाडेटा फील्ड्स", - // "admin.registries.schema.fields.table.id": "ID", "admin.registries.schema.fields.table.id": "ID", - // "admin.registries.schema.fields.table.scopenote": "Scope Note", "admin.registries.schema.fields.table.scopenote": "स्कोप नोट", - // "admin.registries.schema.form.create": "Create metadata field", "admin.registries.schema.form.create": "मेटाडेटा फील्ड तयार करा", - // "admin.registries.schema.form.edit": "Edit metadata field", "admin.registries.schema.form.edit": "मेटाडेटा फील्ड संपादित करा", - // "admin.registries.schema.form.element": "Element", "admin.registries.schema.form.element": "एलिमेंट", - // "admin.registries.schema.form.qualifier": "Qualifier", "admin.registries.schema.form.qualifier": "क्वालिफायर", - // "admin.registries.schema.form.scopenote": "Scope Note", "admin.registries.schema.form.scopenote": "स्कोप नोट", - // "admin.registries.schema.head": "Metadata Schema", "admin.registries.schema.head": "मेटाडेटा स्कीमा", - // "admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.created": "यशस्वीरित्या मेटाडेटा स्कीमा तयार केले \"{{prefix}}\"", - // "admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.failure": "{{amount}} मेटाडेटा स्कीमा हटविण्यात अपयश", - // "admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.success": "{{amount}} मेटाडेटा स्कीमा यशस्वीरित्या हटविले", - // "admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.edited": "यशस्वीरित्या मेटाडेटा स्कीमा संपादित केले \"{{prefix}}\"", - // "admin.registries.schema.notification.failure": "Error", "admin.registries.schema.notification.failure": "त्रुटी", - // "admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"", "admin.registries.schema.notification.field.created": "यशस्वीरित्या मेटाडेटा फील्ड तयार केले \"{{field}}\"", - // "admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.failure": "{{amount}} मेटाडेटा फील्ड्स हटविण्यात अपयश", - // "admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.success": "{{amount}} मेटाडेटा फील्ड्स यशस्वीरित्या हटविले", - // "admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"", "admin.registries.schema.notification.field.edited": "यशस्वीरित्या मेटाडेटा फील्ड संपादित केले \"{{field}}\"", - // "admin.registries.schema.notification.success": "Success", "admin.registries.schema.notification.success": "यश", - // "admin.registries.schema.return": "Back", "admin.registries.schema.return": "मागे", - // "admin.registries.schema.title": "Metadata Schema Registry", "admin.registries.schema.title": "मेटाडेटा स्कीमा रजिस्ट्री", - // "admin.access-control.bulk-access.breadcrumbs": "Bulk Access Management", "admin.access-control.bulk-access.breadcrumbs": "बल्क ऍक्सेस मॅनेजमेंट", - // "administrativeBulkAccess.search.results.head": "Search Results", "administrativeBulkAccess.search.results.head": "शोध परिणाम", - // "admin.access-control.bulk-access": "Bulk Access Management", "admin.access-control.bulk-access": "बल्क ऍक्सेस मॅनेजमेंट", - // "admin.access-control.bulk-access.title": "Bulk Access Management", "admin.access-control.bulk-access.title": "बल्क ऍक्सेस मॅनेजमेंट", - // "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", - // TODO New key - Add a translation - "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + "admin.access-control.bulk-access-browse.header": "पाऊल 1: ऑब्जेक्ट्स निवडा", - // "admin.access-control.bulk-access-browse.search.header": "Search", "admin.access-control.bulk-access-browse.search.header": "शोध", - // "admin.access-control.bulk-access-browse.selected.header": "Current selection({{number}})", "admin.access-control.bulk-access-browse.selected.header": "सध्याची निवड({{number}})", - // "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", - // TODO New key - Add a translation - "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + "admin.access-control.bulk-access-settings.header": "पाऊल 2: ऑपरेशन करण्यासाठी", - // "admin.access-control.epeople.actions.delete": "Delete EPerson", "admin.access-control.epeople.actions.delete": "EPerson हटवा", - // "admin.access-control.epeople.actions.impersonate": "Impersonate EPerson", "admin.access-control.epeople.actions.impersonate": "EPerson चे अनुकरण करा", - // "admin.access-control.epeople.actions.reset": "Reset password", "admin.access-control.epeople.actions.reset": "पासवर्ड रीसेट करा", - // "admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson", "admin.access-control.epeople.actions.stop-impersonating": "EPerson चे अनुकरण थांबवा", - // "admin.access-control.epeople.breadcrumbs": "EPeople", "admin.access-control.epeople.breadcrumbs": "EPeople", - // "admin.access-control.epeople.title": "EPeople", "admin.access-control.epeople.title": "EPeople", - // "admin.access-control.epeople.edit.breadcrumbs": "New EPerson", "admin.access-control.epeople.edit.breadcrumbs": "नवीन EPerson", - // "admin.access-control.epeople.edit.title": "New EPerson", "admin.access-control.epeople.edit.title": "नवीन EPerson", - // "admin.access-control.epeople.add.breadcrumbs": "Add EPerson", "admin.access-control.epeople.add.breadcrumbs": "EPerson जोडा", - // "admin.access-control.epeople.add.title": "Add EPerson", "admin.access-control.epeople.add.title": "EPerson जोडा", - // "admin.access-control.epeople.head": "EPeople", "admin.access-control.epeople.head": "EPeople", - // "admin.access-control.epeople.search.head": "Search", "admin.access-control.epeople.search.head": "शोध", - // "admin.access-control.epeople.button.see-all": "Browse All", "admin.access-control.epeople.button.see-all": "सर्व ब्राउझ करा", - // "admin.access-control.epeople.search.scope.metadata": "Metadata", "admin.access-control.epeople.search.scope.metadata": "मेटाडेटा", - // "admin.access-control.epeople.search.scope.email": "Email (exact)", "admin.access-control.epeople.search.scope.email": "ईमेल (अचूक)", - // "admin.access-control.epeople.search.button": "Search", "admin.access-control.epeople.search.button": "शोधा", - // "admin.access-control.epeople.search.placeholder": "Search people...", "admin.access-control.epeople.search.placeholder": "लोकांना शोधा...", - // "admin.access-control.epeople.button.add": "Add EPerson", "admin.access-control.epeople.button.add": "EPerson जोडा", - // "admin.access-control.epeople.table.id": "ID", "admin.access-control.epeople.table.id": "ID", - // "admin.access-control.epeople.table.name": "Name", "admin.access-control.epeople.table.name": "नाव", - // "admin.access-control.epeople.table.email": "Email (exact)", "admin.access-control.epeople.table.email": "ईमेल (अचूक)", - // "admin.access-control.epeople.table.edit": "Edit", "admin.access-control.epeople.table.edit": "संपादित करा", - // "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", - // "admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group", "admin.access-control.epeople.table.edit.buttons.edit-disabled": "आपल्याला या गटाचे संपादन करण्याची परवानगी नाही", - // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" हटवा", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + "admin.access-control.epeople.no-items": "दाखविण्यासाठी कोणतेही EPeople नाहीत.", + + "admin.access-control.epeople.form.create": "EPerson तयार करा", + + "admin.access-control.epeople.form.edit": "EPerson संपादित करा", + + "admin.access-control.epeople.form.firstName": "पहिले नाव", + + "admin.access-control.epeople.form.lastName": "शेवटचे नाव", + + "admin.access-control.epeople.form.email": "ईमेल", + + "admin.access-control.epeople.form.emailHint": "वैध ईमेल पत्ता असणे आवश्यक आहे", + + "admin.access-control.epeople.form.canLogIn": "लॉग इन करू शकतो", + + "admin.access-control.epeople.form.requireCertificate": "प्रमाणपत्र आवश्यक आहे", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + "admin.access-control.epeople.form.return": "मागे", + + "admin.access-control.epeople.form.notification.created.success": "यशस्वीरित्या EPerson तयार केले \"{{name}}\"", + + "admin.access-control.epeople.form.notification.created.failure": "EPerson तयार करण्यात अपयश \"{{name}}\"", + + "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson तयार करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", + + "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson संपादित करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", + + "admin.access-control.epeople.form.notification.edited.success": "यशस्वीरित्या EPerson संपादित केले \"{{name}}\"", + + "admin.access-control.epeople.form.notification.edited.failure": "EPerson संपादित करण्यात अपयश \"{{name}}\"", + + "admin.access-control.epeople.form.notification.deleted.success": "यशस्वीरित्या EPerson हटविले \"{{name}}\"", + + "admin.access-control.epeople.form.notification.deleted.failure": "EPerson हटविण्यात अपयश \"{{name}}\"", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "या गटांचा सदस्य:", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + "admin.access-control.epeople.form.table.id": "ID", + + "admin.access-control.epeople.breadcrumbs": "EPeople", + + "admin.access-control.epeople.title": "EPeople", + + "admin.access-control.epeople.edit.breadcrumbs": "नवीन EPerson", + + "admin.access-control.epeople.edit.title": "नवीन EPerson", + + "admin.access-control.epeople.add.breadcrumbs": "EPerson जोडा", + + "admin.access-control.epeople.add.title": "EPerson जोडा", + + "admin.access-control.epeople.head": "EPeople", + + "admin.access-control.epeople.search.head": "शोध", + + "admin.access-control.epeople.button.see-all": "सर्व ब्राउझ करा", + + "admin.access-control.epeople.search.scope.metadata": "Metadata", + + "admin.access-control.epeople.search.scope.email": "ईमेल (अचूक)", + + "admin.access-control.epeople.search.button": "शोधा", + + "admin.access-control.epeople.search.placeholder": "लोकांना शोधा...", + + "admin.access-control.epeople.button.add": "EPerson जोडा", + + "admin.access-control.epeople.table.id": "ID", + + "admin.access-control.epeople.table.name": "नाव", + + "admin.access-control.epeople.table.email": "ईमेल (अचूक)", + + "admin.access-control.epeople.table.edit": "संपादित करा", + + "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", + + "admin.access-control.epeople.table.edit.buttons.edit-disabled": "आपल्याला या गटाचे संपादन करण्याची परवानगी नाही", + + "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" हटवा", - // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "दाखविण्यासाठी कोणतेही EPeople नाहीत.", - // "admin.access-control.epeople.form.create": "Create EPerson", "admin.access-control.epeople.form.create": "EPerson तयार करा", - // "admin.access-control.epeople.form.edit": "Edit EPerson", "admin.access-control.epeople.form.edit": "EPerson संपादित करा", - // "admin.access-control.epeople.form.firstName": "First name", "admin.access-control.epeople.form.firstName": "पहिले नाव", - // "admin.access-control.epeople.form.lastName": "Last name", "admin.access-control.epeople.form.lastName": "शेवटचे नाव", - // "admin.access-control.epeople.form.email": "Email", "admin.access-control.epeople.form.email": "ईमेल", - // "admin.access-control.epeople.form.emailHint": "Must be a valid email address", "admin.access-control.epeople.form.emailHint": "वैध ईमेल पत्ता असणे आवश्यक आहे", - // "admin.access-control.epeople.form.canLogIn": "Can log in", "admin.access-control.epeople.form.canLogIn": "लॉग इन करू शकतो", - // "admin.access-control.epeople.form.requireCertificate": "Requires certificate", "admin.access-control.epeople.form.requireCertificate": "प्रमाणपत्र आवश्यक आहे", - // "admin.access-control.epeople.form.return": "Back", "admin.access-control.epeople.form.return": "मागे", - // "admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.success": "यशस्वीरित्या EPerson तयार केले \"{{name}}\"", - // "admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.failure": "EPerson तयार करण्यात अपयश \"{{name}}\"", - // "admin.access-control.epeople.form.notification.created.failure.emailInUse": "Failed to create EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson तयार करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", - // "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Failed to edit EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson संपादित करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", - // "admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.success": "यशस्वीरित्या EPerson संपादित केले \"{{name}}\"", - // "admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.failure": "EPerson संपादित करण्यात अपयश \"{{name}}\"", - // "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.success": "यशस्वीरित्या EPerson हटविले \"{{name}}\"", - // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.failure": "EPerson हटविण्यात अपयश \"{{name}}\"", - // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", - // TODO New key - Add a translation - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", + "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "या गटांचा सदस्य:", - // "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": "नाव", - // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", "admin.access-control.epeople.form.table.collectionOrCommunity": "संग्रह/समुदाय", - // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", "admin.access-control.epeople.form.memberOfNoGroups": "हा EPerson कोणत्याही गटाचा सदस्य नाही", - // "admin.access-control.epeople.form.goToGroups": "Add to groups", "admin.access-control.epeople.form.goToGroups": "गटांमध्ये जोडा", - // "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", + "admin.access-control.epeople.notification.deleted.failure": "EPerson हटवण्याचा प्रयत्न करताना त्रुटी आली \"{{id}}\" कोडसह: \"{{statusCode}}\" आणि संदेश: \"{{restResponse.errorMessage}}\"", - // "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + "admin.access-control.epeople.notification.deleted.success": "यशस्वीरित्या EPerson हटविले: \"{{name}}\"", - // "admin.access-control.groups.title": "Groups", "admin.access-control.groups.title": "गट", - // "admin.access-control.groups.breadcrumbs": "Groups", "admin.access-control.groups.breadcrumbs": "गट", - // "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group", "admin.access-control.groups.singleGroup.breadcrumbs": "गट संपादित करा", - // "admin.access-control.groups.title.singleGroup": "Edit Group", "admin.access-control.groups.title.singleGroup": "गट संपादित करा", - // "admin.access-control.groups.title.addGroup": "New Group", "admin.access-control.groups.title.addGroup": "नवीन गट", - // "admin.access-control.groups.addGroup.breadcrumbs": "New Group", "admin.access-control.groups.addGroup.breadcrumbs": "नवीन गट", - // "admin.access-control.groups.head": "Groups", "admin.access-control.groups.head": "गट", - // "admin.access-control.groups.button.add": "Add group", "admin.access-control.groups.button.add": "गट जोडा", - // "admin.access-control.groups.search.head": "Search groups", "admin.access-control.groups.search.head": "गट शोधा", - // "admin.access-control.groups.button.see-all": "Browse all", "admin.access-control.groups.button.see-all": "सर्व ब्राउझ करा", - // "admin.access-control.groups.search.button": "Search", "admin.access-control.groups.search.button": "शोधा", - // "admin.access-control.groups.search.placeholder": "Search groups...", "admin.access-control.groups.search.placeholder": "गट शोधा...", - // "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": "नाव", - // "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.table.collectionOrCommunity": "संग्रह/समुदाय", - // "admin.access-control.groups.table.members": "Members", "admin.access-control.groups.table.members": "सदस्य", - // "admin.access-control.groups.table.edit": "Edit", "admin.access-control.groups.table.edit": "संपादित करा", - // "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", - // "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.remove": "\"{{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": "या नावाने किंवा UUID ने कोणतेही गट सापडले नाहीत", - // "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"", "admin.access-control.groups.notification.deleted.success": "यशस्वीरित्या गट हटविले \"{{name}}\"", - // "admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"", "admin.access-control.groups.notification.deleted.failure.title": "गट हटविण्यात अपयश \"{{name}}\"", - // "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", - // TODO New key - Add a translation - "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + "admin.access-control.groups.notification.deleted.failure.content": "कारण: \"{{cause}}\"", - // "admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.permanent": "हा गट कायमचा आहे, त्यामुळे तो संपादित किंवा हटवता येणार नाही. आपण या पृष्ठाचा वापर करून गट सदस्यांना अद्याप जोडू आणि काढू शकता.", - // "admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the \"assign roles\" tab on the edit {{comcol}} page. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.workflowGroup": "हा गट संपादित किंवा हटवता येणार नाही कारण तो \"{{name}}\" {{comcol}} मध्ये सबमिशन आणि वर्कफ्लो प्रक्रियेत भूमिकेशी संबंधित आहे. आपण ते \"भूमिका नियुक्त करा\" टॅबवरून संपादित {{comcol}} पृष्ठावरून हटवू शकता. आपण या पृष्ठाचा वापर करून गट सदस्यांना अद्याप जोडू आणि काढू शकता.", - // "admin.access-control.groups.form.head.create": "Create group", "admin.access-control.groups.form.head.create": "गट तयार करा", - // "admin.access-control.groups.form.head.edit": "Edit group", "admin.access-control.groups.form.head.edit": "गट संपादित करा", - // "admin.access-control.groups.form.groupName": "Group name", "admin.access-control.groups.form.groupName": "गटाचे नाव", - // "admin.access-control.groups.form.groupCommunity": "Community or Collection", "admin.access-control.groups.form.groupCommunity": "समुदाय किंवा संग्रह", - // "admin.access-control.groups.form.groupDescription": "Description", "admin.access-control.groups.form.groupDescription": "वर्णन", - // "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.success": "यशस्वीरित्या गट तयार केले \"{{name}}\"", - // "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.failure": "गट तयार करण्यात अपयश \"{{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.", - // TODO New key - Add a translation - "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": "नावाने गट तयार करण्यात अपयश: \"{{name}}\", खात्री करा की नाव आधीच वापरात नाही.", - // "admin.access-control.groups.form.notification.edited.failure": "Failed to edit Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.failure": "गट संपादित करण्यात अपयश \"{{name}}\"", - // "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!", "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "नाव \"{{name}}\" आधीच वापरात आहे!", - // "admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.success": "यशस्वीरित्या गट संपादित केले \"{{name}}\"", - // "admin.access-control.groups.form.actions.delete": "Delete Group", "admin.access-control.groups.form.actions.delete": "गट हटवा", - // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "गट हटवा \"{{ dsoName }}\"", - // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", "admin.access-control.groups.form.delete-group.modal.info": "आपल्याला खात्री आहे की आपण गट हटवू इच्छिता \"{{ dsoName }}\"", - // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", "admin.access-control.groups.form.delete-group.modal.cancel": "रद्द करा", - // "admin.access-control.groups.form.delete-group.modal.confirm": "Delete", "admin.access-control.groups.form.delete-group.modal.confirm": "हटवा", - // "admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.success": "यशस्वीरित्या गट हटविले \"{{ name }}\"", - // "admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.failure.title": "गट हटविण्यात अपयश \"{{ name }}\"", - // "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", - // TODO New key - Add a translation - "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + "admin.access-control.groups.form.notification.deleted.failure.content": "कारण: \"{{ cause }}\"", - // "admin.access-control.groups.form.members-list.head": "EPeople", "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": "EPeople जोडा", - // "admin.access-control.groups.form.members-list.button.see-all": "Browse All", "admin.access-control.groups.form.members-list.button.see-all": "सर्व ब्राउझ करा", - // "admin.access-control.groups.form.members-list.headMembers": "Current Members", "admin.access-control.groups.form.members-list.headMembers": "सध्याचे सदस्य", - // "admin.access-control.groups.form.members-list.search.button": "Search", "admin.access-control.groups.form.members-list.search.button": "शोधा", - // "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": "नाव", - // "admin.access-control.groups.form.members-list.table.identity": "Identity", "admin.access-control.groups.form.members-list.table.identity": "ओळख", - // "admin.access-control.groups.form.members-list.table.email": "Email", "admin.access-control.groups.form.members-list.table.email": "ईमेल", - // "admin.access-control.groups.form.members-list.table.netid": "NetID", "admin.access-control.groups.form.members-list.table.netid": "NetID", - // "admin.access-control.groups.form.members-list.table.edit": "Remove / Add", "admin.access-control.groups.form.members-list.table.edit": "हटवा / जोडा", - // "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": "सदस्य हटवा नावाने \"{{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": "Successfully added member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.success.addMember": "यशस्वीरित्या सदस्य जोडले: \"{{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": "Failed to add member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.addMember": "सदस्य जोडण्यात अपयश: \"{{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": "Successfully deleted member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.success.deleteMember": "यशस्वीरित्या सदस्य हटविले: \"{{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": "Failed to delete member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "सदस्य हटविण्यात अपयश: \"{{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": "सदस्य जोडा नावाने \"{{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": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", - // "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": "गटात अद्याप कोणतेही सदस्य नाहीत, शोधा आणि जोडा.", - // "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search", "admin.access-control.groups.form.members-list.no-items": "त्या शोधात कोणतेही EPeople सापडले नाहीत", - // "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", - // TODO New key - Add a translation - "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure": "काहीतरी चुकले: \"{{cause}}\"", - // "admin.access-control.groups.form.subgroups-list.head": "Groups", "admin.access-control.groups.form.subgroups-list.head": "गट", - // "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup", "admin.access-control.groups.form.subgroups-list.search.head": "उपगट जोडा", - // "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All", "admin.access-control.groups.form.subgroups-list.button.see-all": "सर्व ब्राउझ करा", - // "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups", "admin.access-control.groups.form.subgroups-list.headSubgroups": "सध्याचे उपगट", - // "admin.access-control.groups.form.subgroups-list.search.button": "Search", "admin.access-control.groups.form.subgroups-list.search.button": "शोधा", - // "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": "नाव", - // "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "संग्रह/समुदाय", - // "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add", "admin.access-control.groups.form.subgroups-list.table.edit": "हटवा / जोडा", - // "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": "उपगट हटवा नावाने \"{{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": "उपगट जोडा नावाने \"{{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": "Successfully added subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "यशस्वीरित्या उपगट जोडले: \"{{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": "Failed to add subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "उपगट जोडण्यात अपयश: \"{{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": "Successfully deleted subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "यशस्वीरित्या उपगट हटविले: \"{{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": "Failed to delete subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "उपगट हटविण्यात अपयश: \"{{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": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", - // "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": "हा सध्याचा गट आहे, जोडता येणार नाही.", - // "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": "या नावाने किंवा 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": "गटात अद्याप कोणतेही उपगट नाहीत.", - // "admin.access-control.groups.form.return": "Back", "admin.access-control.groups.form.return": "मागे", - // "admin.quality-assurance.breadcrumbs": "Quality Assurance", "admin.quality-assurance.breadcrumbs": "गुणवत्ता आश्वासन", - // "admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions", "admin.notifications.event.breadcrumbs": "गुणवत्ता आश्वासन सूचना", - // "admin.notifications.event.page.title": "Quality Assurance Suggestions", "admin.notifications.event.page.title": "गुणवत्ता आश्वासन सूचना", - // "admin.quality-assurance.page.title": "Quality Assurance", "admin.quality-assurance.page.title": "गुणवत्ता आश्वासन", - // "admin.notifications.source.breadcrumbs": "Quality Assurance", "admin.notifications.source.breadcrumbs": "गुणवत्ता आश्वासन", - // "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", + "admin.access-control.groups.form.tooltip.editGroupPage": "या पृष्ठावर, आपण गटाच्या गुणधर्म आणि सदस्यता बदलू शकता. शीर्ष विभागात, आपण गटाचे नाव आणि वर्णन संपादित करू शकता, जोपर्यंत हा संग्रह किंवा समुदायासाठी प्रशासकीय गट नाही, अशा परिस्थितीत गटाचे नाव आणि वर्णन स्वयंचलितपणे तयार केले जाते आणि संपादित केले जाऊ शकत नाही. पुढील विभागांमध्ये, आपण गट सदस्यता संपादित करू शकता. अधिक तपशीलांसाठी [विकी](https://wiki.lyrasdisplay/DSDOC7x/Create+or+manage+a+user+group पहा.", - // "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "या गटात EPerson जोडण्यासाठी किंवा काढण्यासाठी, 'सर्व ब्राउझ करा' बटणावर क्लिक करा किंवा वापरकर्त्यांना शोधण्यासाठी खालील शोध पट्टी वापरा (शोध पट्टीच्या डाव्या बाजूला ड्रॉपडाउन वापरून मेटाडेटा किंवा ईमेलद्वारे शोधायचे आहे ते निवडा). नंतर खालील यादीमध्ये आपण जोडू इच्छित असलेल्या प्रत्येक वापरकर्त्यासाठी प्लस चिन्हावर क्लिक करा, किंवा आपण काढू इच्छित असलेल्या प्रत्येक वापरकर्त्यासाठी कचरा डब्यावर क्लिक करा. खालील यादीमध्ये अनेक पृष्ठे असू शकतात: पुढील पृष्ठांवर नेण्यासाठी यादीखालील पृष्ठ नियंत्रण वापरा.", - // "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "या गटात उपगट जोडण्यासाठी किंवा काढण्यासाठी, 'सर्व ब्राउझ करा' बटणावर क्लिक करा किंवा गट शोधण्यासाठी शोध पट्टी वापरा. नंतर खालील यादीमध्ये आपण जोडू इच्छित असलेल्या प्रत्येक गटासाठी प्लस चिन्हावर क्लिक करा, किंवा आपण काढू इच्छित असलेल्या प्रत्येक गटासाठी कचरा डब्यावर क्लिक करा. खालील यादीमध्ये अनेक पृष्ठे असू शकतात: पुढील पृष्ठांवर नेण्यासाठी यादीखालील पृष्ठ नियंत्रण वापरा.", - // "admin.reports.collections.title": "Collection Filter Report", "admin.reports.collections.title": "संग्रह फिल्टर अहवाल", - // "admin.reports.collections.breadcrumbs": "Collection Filter Report", "admin.reports.collections.breadcrumbs": "संग्रह फिल्टर अहवाल", - // "admin.reports.collections.head": "Collection Filter Report", "admin.reports.collections.head": "संग्रह फिल्टर अहवाल", - // "admin.reports.button.show-collections": "Show Collections", "admin.reports.button.show-collections": "संग्रह दाखवा", - // "admin.reports.collections.collections-report": "Collection Report", "admin.reports.collections.collections-report": "संग्रह अहवाल", - // "admin.reports.collections.item-results": "Item Results", "admin.reports.collections.item-results": "आयटम परिणाम", - // "admin.reports.collections.community": "Community", "admin.reports.collections.community": "समुदाय", - // "admin.reports.collections.collection": "Collection", "admin.reports.collections.collection": "संग्रह", - // "admin.reports.collections.nb_items": "Nb. Items", "admin.reports.collections.nb_items": "आयटम संख्या", - // "admin.reports.collections.match_all_selected_filters": "Matching all selected filters", "admin.reports.collections.match_all_selected_filters": "सर्व निवडलेल्या फिल्टरशी जुळणारे", - // "admin.reports.items.breadcrumbs": "Metadata Query Report", "admin.reports.items.breadcrumbs": "मेटाडेटा क्वेरी अहवाल", - // "admin.reports.items.head": "Metadata Query Report", "admin.reports.items.head": "मेटाडेटा क्वेरी अहवाल", - // "admin.reports.items.run": "Run Item Query", "admin.reports.items.run": "आयटम क्वेरी चालवा", - // "admin.reports.items.section.collectionSelector": "Collection Selector", "admin.reports.items.section.collectionSelector": "संग्रह निवडकर्ता", - // "admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries", "admin.reports.items.section.metadataFieldQueries": "मेटाडेटा फील्ड क्वेरी", - // "admin.reports.items.predefinedQueries": "Predefined Queries", "admin.reports.items.predefinedQueries": "पूर्वनिर्धारित क्वेरी", - // "admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries", "admin.reports.items.section.limitPaginateQueries": "मर्यादा/पृष्ठांकन क्वेरी", - // "admin.reports.items.limit": "Limit/", "admin.reports.items.limit": "मर्यादा/", - // "admin.reports.items.offset": "Offset", "admin.reports.items.offset": "ऑफसेट", - // "admin.reports.items.wholeRepo": "Whole Repository", "admin.reports.items.wholeRepo": "संपूर्ण रेपॉझिटरी", - // "admin.reports.items.anyField": "Any field", "admin.reports.items.anyField": "कोणतेही फील्ड", - // "admin.reports.items.predicate.exists": "exists", "admin.reports.items.predicate.exists": "अस्तित्वात आहे", - // "admin.reports.items.predicate.doesNotExist": "does not exist", "admin.reports.items.predicate.doesNotExist": "अस्तित्वात नाही", - // "admin.reports.items.predicate.equals": "equals", "admin.reports.items.predicate.equals": "समान आहे", - // "admin.reports.items.predicate.doesNotEqual": "does not equal", "admin.reports.items.predicate.doesNotEqual": "समान नाही", - // "admin.reports.items.predicate.like": "like", "admin.reports.items.predicate.like": "सारखे", - // "admin.reports.items.predicate.notLike": "not like", "admin.reports.items.predicate.notLike": "सारखे नाही", - // "admin.reports.items.predicate.contains": "contains", "admin.reports.items.predicate.contains": "अंतर्भूत आहे", - // "admin.reports.items.predicate.doesNotContain": "does not contain", "admin.reports.items.predicate.doesNotContain": "अंतर्भूत नाही", - // "admin.reports.items.predicate.matches": "matches", "admin.reports.items.predicate.matches": "जुळते", - // "admin.reports.items.predicate.doesNotMatch": "does not match", "admin.reports.items.predicate.doesNotMatch": "जुळत नाही", - // "admin.reports.items.preset.new": "New Query", "admin.reports.items.preset.new": "नवीन क्वेरी", - // "admin.reports.items.preset.hasNoTitle": "Has No Title", "admin.reports.items.preset.hasNoTitle": "शीर्षक नाही", - // "admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri", "admin.reports.items.preset.hasNoIdentifierUri": "dc.identifier.uri नाही", - // "admin.reports.items.preset.hasCompoundSubject": "Has compound subject", "admin.reports.items.preset.hasCompoundSubject": "संयुक्त विषय आहे", - // "admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author", "admin.reports.items.preset.hasCompoundAuthor": "संयुक्त dc.contributor.author आहे", - // "admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator", "admin.reports.items.preset.hasCompoundCreator": "संयुक्त dc.creator आहे", - // "admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description", "admin.reports.items.preset.hasUrlInDescription": "dc.description मध्ये URL आहे", - // "admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance", "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance मध्ये पूर्ण मजकूर आहे", - // "admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance", "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance मध्ये पूर्ण मजकूर नाही", - // "admin.reports.items.preset.hasEmptyMetadata": "Has empty metadata", "admin.reports.items.preset.hasEmptyMetadata": "रिकामे मेटाडेटा आहे", - // "admin.reports.items.preset.hasUnbreakingDataInDescription": "Has unbreaking metadata in description", "admin.reports.items.preset.hasUnbreakingDataInDescription": "वर्णनात न तुटणारे मेटाडेटा आहे", - // "admin.reports.items.preset.hasXmlEntityInMetadata": "Has XML entity in metadata", "admin.reports.items.preset.hasXmlEntityInMetadata": "मेटाडेटा मध्ये XML घटक आहे", - // "admin.reports.items.preset.hasNonAsciiCharInMetadata": "Has non-ascii character in metadata", "admin.reports.items.preset.hasNonAsciiCharInMetadata": "मेटाडेटा मध्ये non-ascii वर्ण आहे", - // "admin.reports.items.number": "No.", "admin.reports.items.number": "क्रमांक.", - // "admin.reports.items.id": "UUID", "admin.reports.items.id": "UUID", - // "admin.reports.items.collection": "Collection", "admin.reports.items.collection": "संग्रह", - // "admin.reports.items.handle": "URI", "admin.reports.items.handle": "URI", - // "admin.reports.items.title": "Title", "admin.reports.items.title": "शीर्षक", - // "admin.reports.commons.filters": "Filters", "admin.reports.commons.filters": "फिल्टर्स", - // "admin.reports.commons.additional-data": "Additional data to return", "admin.reports.commons.additional-data": "अतिरिक्त डेटा परत करा", - // "admin.reports.commons.previous-page": "Prev Page", "admin.reports.commons.previous-page": "मागील पृष्ठ", - // "admin.reports.commons.next-page": "Next Page", "admin.reports.commons.next-page": "पुढील पृष्ठ", - // "admin.reports.commons.page": "Page", "admin.reports.commons.page": "पृष्ठ", - // "admin.reports.commons.of": "of", "admin.reports.commons.of": "च्या", - // "admin.reports.commons.export": "Export for Metadata Update", "admin.reports.commons.export": "मेटाडेटा अपडेटसाठी निर्यात करा", - // "admin.reports.commons.filters.deselect_all": "Deselect all filters", "admin.reports.commons.filters.deselect_all": "सर्व फिल्टर्स निवड रद्द करा", - // "admin.reports.commons.filters.select_all": "Select all filters", "admin.reports.commons.filters.select_all": "सर्व फिल्टर्स निवडा", - // "admin.reports.commons.filters.matches_all": "Matches all specified filters", "admin.reports.commons.filters.matches_all": "सर्व निर्दिष्ट फिल्टर्सशी जुळते", - // "admin.reports.commons.filters.property": "Item Property Filters", "admin.reports.commons.filters.property": "आयटम प्रॉपर्टी फिल्टर्स", - // "admin.reports.commons.filters.property.is_item": "Is Item - always true", "admin.reports.commons.filters.property.is_item": "आयटम आहे - नेहमी खरे", - // "admin.reports.commons.filters.property.is_withdrawn": "Withdrawn Items", "admin.reports.commons.filters.property.is_withdrawn": "मागे घेतलेले आयटम", - // "admin.reports.commons.filters.property.is_not_withdrawn": "Available Items - Not Withdrawn", "admin.reports.commons.filters.property.is_not_withdrawn": "उपलब्ध आयटम - मागे घेतलेले नाहीत", - // "admin.reports.commons.filters.property.is_discoverable": "Discoverable Items - Not Private", "admin.reports.commons.filters.property.is_discoverable": "शोधण्यायोग्य आयटम - खाजगी नाहीत", - // "admin.reports.commons.filters.property.is_not_discoverable": "Not Discoverable - Private Item", "admin.reports.commons.filters.property.is_not_discoverable": "शोधण्यायोग्य नाहीत - खाजगी आयटम", - // "admin.reports.commons.filters.bitstream": "Basic Bitstream Filters", "admin.reports.commons.filters.bitstream": "मूलभूत बिटस्ट्रीम फिल्टर्स", - // "admin.reports.commons.filters.bitstream.has_multiple_originals": "Item has Multiple Original Bitstreams", "admin.reports.commons.filters.bitstream.has_multiple_originals": "आयटममध्ये एकाधिक मूळ बिटस्ट्रीम आहेत", - // "admin.reports.commons.filters.bitstream.has_no_originals": "Item has No Original Bitstreams", "admin.reports.commons.filters.bitstream.has_no_originals": "आयटममध्ये कोणतेही मूळ बिटस्ट्रीम नाहीत", - // "admin.reports.commons.filters.bitstream.has_one_original": "Item has One Original Bitstream", "admin.reports.commons.filters.bitstream.has_one_original": "आयटममध्ये एक मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", "admin.reports.commons.filters.bitstream_mime": "MIME प्रकारानुसार बिटस्ट्रीम फिल्टर्स", - // "admin.reports.commons.filters.bitstream_mime.has_doc_original": "Item has a Doc Original Bitstream (PDF, Office, Text, HTML, XML, etc)", "admin.reports.commons.filters.bitstream_mime.has_doc_original": "आयटममध्ये एक डॉक मूळ बिटस्ट्रीम आहे (PDF, Office, Text, HTML, XML, इ.)", - // "admin.reports.commons.filters.bitstream_mime.has_image_original": "Item has an Image Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_image_original": "आयटममध्ये एक प्रतिमा मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "Has Other Bitstream Types (not Doc or Image)", "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "इतर बिटस्ट्रीम प्रकार आहेत (डॉक किंवा प्रतिमा नाहीत)", - // "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "Item has multiple types of Original Bitstreams (Doc, Image, Other)", "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "आयटममध्ये एकाधिक प्रकारचे मूळ बिटस्ट्रीम आहेत (डॉक, प्रतिमा, इतर)", - // "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "Item has a PDF Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "आयटममध्ये एक PDF मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "Item has JPG Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "आयटममध्ये JPG मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "Has unusually small PDF", "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "असामान्य लहान PDF आहे", - // "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "Has unusually large PDF", "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "असामान्य मोठा PDF आहे", - // "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "Has document bitstream without TEXT item", "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "TEXT आयटमशिवाय डॉक बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.mime": "Supported MIME Type Filters", "admin.reports.commons.filters.mime": "समर्थित MIME प्रकार फिल्टर्स", - // "admin.reports.commons.filters.mime.has_only_supp_image_type": "Item Image Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_image_type": "आयटम प्रतिमा बिटस्ट्रीम समर्थित आहेत", - // "admin.reports.commons.filters.mime.has_unsupp_image_type": "Item has Image Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_image_type": "आयटममध्ये असमर्थित प्रतिमा बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.mime.has_only_supp_doc_type": "Item Document Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_doc_type": "आयटम डॉक्युमेंट बिटस्ट्रीम समर्थित आहेत", - // "admin.reports.commons.filters.mime.has_unsupp_doc_type": "Item has Document Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_doc_type": "आयटममध्ये असमर्थित डॉक्युमेंट बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bundle": "Bitstream Bundle Filters", "admin.reports.commons.filters.bundle": "बिटस्ट्रीम बंडल फिल्टर्स", - // "admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle", "admin.reports.commons.filters.bundle.has_unsupported_bundle": "असमर्थित बंडलमध्ये बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail", "admin.reports.commons.filters.bundle.has_small_thumbnail": "असामान्य लहान थंबनेल आहे", - // "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail", "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "थंबनेलशिवाय मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)", "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "अवैध थंबनेल नाव आहे (प्रत्येक मूळसाठी एक थंबनेल गृहीत धरते)", - // "admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail", "admin.reports.commons.filters.bundle.has_non_generated_thumb": "नॉन-जनरेटेड थंबनेल आहे", - // "admin.reports.commons.filters.bundle.no_license": "Doesn't have a license", "admin.reports.commons.filters.bundle.no_license": "लायसन्स नाही", - // "admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle", "admin.reports.commons.filters.bundle.has_license_documentation": "लायसन्स बंडलमध्ये दस्तऐवज आहे", - // "admin.reports.commons.filters.permission": "Permission Filters", "admin.reports.commons.filters.permission": "परवानगी फिल्टर्स", - // "admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream", "admin.reports.commons.filters.permission.has_restricted_original": "आयटममध्ये प्रतिबंधित मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "आयटममध्ये किमान एक मूळ बिटस्ट्रीम आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", - // "admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail", "admin.reports.commons.filters.permission.has_restricted_thumbnail": "आयटममध्ये प्रतिबंधित थंबनेल आहे", - // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "आयटममध्ये किमान एक थंबनेल आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", - // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", "admin.reports.commons.filters.permission.has_restricted_metadata": "आयटममध्ये प्रतिबंधित मेटाडेटा आहे", - // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "आयटममध्ये मेटाडेटा आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", - // "admin.search.breadcrumbs": "Administrative Search", "admin.search.breadcrumbs": "प्रशासकीय शोध", - // "admin.search.collection.edit": "Edit", "admin.search.collection.edit": "संपादित करा", - // "admin.search.community.edit": "Edit", "admin.search.community.edit": "संपादित करा", - // "admin.search.item.delete": "Delete", "admin.search.item.delete": "हटवा", - // "admin.search.item.edit": "Edit", "admin.search.item.edit": "संपादित करा", - // "admin.search.item.make-private": "Make non-discoverable", "admin.search.item.make-private": "शोधण्यायोग्य नाही बनवा", - // "admin.search.item.make-public": "Make discoverable", "admin.search.item.make-public": "शोधण्यायोग्य बनवा", - // "admin.search.item.move": "Move", "admin.search.item.move": "हलवा", - // "admin.search.item.reinstate": "Reinstate", "admin.search.item.reinstate": "पुनर्स्थापित करा", - // "admin.search.item.withdraw": "Withdraw", "admin.search.item.withdraw": "मागे घ्या", - // "admin.search.title": "Administrative Search", "admin.search.title": "प्रशासकीय शोध", - // "administrativeView.search.results.head": "Administrative Search", "administrativeView.search.results.head": "प्रशासकीय शोध", - // "admin.workflow.breadcrumbs": "Administer Workflow", "admin.workflow.breadcrumbs": "वर्कफ्लो प्रशासित करा", - // "admin.workflow.title": "Administer Workflow", "admin.workflow.title": "वर्कफ्लो प्रशासित करा", - // "admin.workflow.item.workflow": "Workflow", "admin.workflow.item.workflow": "वर्कफ्लो", - // "admin.workflow.item.workspace": "Workspace", "admin.workflow.item.workspace": "वर्कस्पेस", - // "admin.workflow.item.delete": "Delete", "admin.workflow.item.delete": "हटवा", - // "admin.workflow.item.send-back": "Send back", "admin.workflow.item.send-back": "मागे पाठवा", - // "admin.workflow.item.policies": "Policies", "admin.workflow.item.policies": "धोरणे", - // "admin.workflow.item.supervision": "Supervision", "admin.workflow.item.supervision": "निगराणी", - // "admin.metadata-import.breadcrumbs": "Import Metadata", "admin.metadata-import.breadcrumbs": "मेटाडेटा आयात करा", - // "admin.batch-import.breadcrumbs": "Import Batch", "admin.batch-import.breadcrumbs": "बॅच आयात करा", - // "admin.metadata-import.title": "Import Metadata", "admin.metadata-import.title": "मेटाडेटा आयात करा", - // "admin.batch-import.title": "Import Batch", "admin.batch-import.title": "बॅच आयात करा", - // "admin.metadata-import.page.header": "Import Metadata", "admin.metadata-import.page.header": "मेटाडेटा आयात करा", - // "admin.batch-import.page.header": "Import Batch", "admin.batch-import.page.header": "बॅच आयात करा", - // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "आपण येथे फाइल्सवर बॅच मेटाडेटा ऑपरेशन्स असलेली CSV फाइल्स ड्रॉप किंवा ब्राउझ करू शकता", - // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", "admin.batch-import.page.help": "आयात करण्यासाठी संग्रह निवडा. नंतर, आयटम्स आयात करण्यासाठी Simple Archive Format (SAF) zip फाइल ड्रॉप किंवा ब्राउझ करा", - // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", "admin.batch-import.page.toggle.help": "फाइल अपलोड किंवा URL द्वारे आयात करणे शक्य आहे, इनपुट स्रोत सेट करण्यासाठी वरील टॉगल वापरा", - // "admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import", "admin.metadata-import.page.dropMsg": "मेटाडेटा CSV आयात करण्यासाठी ड्रॉप करा", - // "admin.batch-import.page.dropMsg": "Drop a batch ZIP to import", "admin.batch-import.page.dropMsg": "बॅच ZIP आयात करण्यासाठी ड्रॉप करा", - // "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import", "admin.metadata-import.page.dropMsgReplace": "मेटाडेटा CSV आयात करण्यासाठी बदलण्यासाठी ड्रॉप करा", - // "admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import", "admin.batch-import.page.dropMsgReplace": "बॅच ZIP आयात करण्यासाठी बदलण्यासाठी ड्रॉप करा", - // "admin.metadata-import.page.button.return": "Back", "admin.metadata-import.page.button.return": "मागे", - // "admin.metadata-import.page.button.proceed": "Proceed", "admin.metadata-import.page.button.proceed": "पुढे जा", - // "admin.metadata-import.page.button.select-collection": "Select Collection", "admin.metadata-import.page.button.select-collection": "संग्रह निवडा", - // "admin.metadata-import.page.error.addFile": "Select file first!", "admin.metadata-import.page.error.addFile": "प्रथम फाइल निवडा!", - // "admin.metadata-import.page.error.addFileUrl": "Insert file URL first!", "admin.metadata-import.page.error.addFileUrl": "प्रथम फाइल URL प्रविष्ट करा!", - // "admin.batch-import.page.error.addFile": "Select ZIP file first!", "admin.batch-import.page.error.addFile": "प्रथम ZIP फाइल निवडा!", - // "admin.metadata-import.page.toggle.upload": "Upload", "admin.metadata-import.page.toggle.upload": "अपलोड", - // "admin.metadata-import.page.toggle.url": "URL", "admin.metadata-import.page.toggle.url": "URL", - // "admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import", "admin.metadata-import.page.urlMsg": "आयात करण्यासाठी बॅच ZIP URL प्रविष्ट करा", - // "admin.metadata-import.page.validateOnly": "Validate Only", "admin.metadata-import.page.validateOnly": "फक्त सत्यापित करा", - // "admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.metadata-import.page.validateOnly.hint": "निवडल्यास, अपलोड केलेले CSV सत्यापित केले जाईल. आपल्याला आढळलेल्या बदलांचा अहवाल मिळेल, परंतु कोणतेही बदल जतन केले जाणार नाहीत.", - // "advanced-workflow-action.rating.form.rating.label": "Rating", "advanced-workflow-action.rating.form.rating.label": "रेटिंग", - // "advanced-workflow-action.rating.form.rating.error": "You must rate the item", "advanced-workflow-action.rating.form.rating.error": "आपल्याला आयटम रेट करणे आवश्यक आहे", - // "advanced-workflow-action.rating.form.review.label": "Review", "advanced-workflow-action.rating.form.review.label": "पुनरावलोकन", - // "advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating", "advanced-workflow-action.rating.form.review.error": "आपल्याला हे रेटिंग सबमिट करण्यासाठी पुनरावलोकन प्रविष्ट करणे आवश्यक आहे", - // "advanced-workflow-action.rating.description": "Please select a rating below", "advanced-workflow-action.rating.description": "कृपया खाली रेटिंग निवडा", - // "advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review", "advanced-workflow-action.rating.description-requiredDescription": "कृपया खाली रेटिंग निवडा आणि पुनरावलोकन देखील जोडा", - // "advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting", "advanced-workflow-action.select-reviewer.description-single": "सबमिट करण्यापूर्वी कृपया खाली एकच पुनरावलोकक निवडा", - // "advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting", "advanced-workflow-action.select-reviewer.description-multiple": "सबमिट करण्यापूर्वी कृपया खाली एक किंवा अधिक पुनरावलोकक निवडा", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "EPeople जोडा", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "सर्व ब्राउझ करा", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "सध्याचे सदस्य", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "शोधा", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "नाव", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ओळख", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ईमेल", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "हटवा / जोडा", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "सदस्य हटवा नावाने \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "यशस्वीरित्या सदस्य जोडले: \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "सदस्य जोडण्यात अपयश: \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "यशस्वीरित्या सदस्य हटविले: \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "सदस्य हटविण्यात अपयश: \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "सदस्य जोडा नावाने \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "गटात अद्याप कोणतेही सदस्य नाहीत, शोधा आणि जोडा.", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "त्या शोधात कोणतेही EPeople सापडले नाहीत", - // "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.", "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "कोणताही पुनरावलोकक निवडलेला नाही.", - // "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.batch-import.page.validateOnly.hint": "निवडल्यास, अपलोड केलेले ZIP सत्यापित केले जाईल. आपल्याला आढळलेल्या बदलांचा अहवाल मिळेल, परंतु कोणतेही बदल जतन केले जाणार नाहीत.", - // "admin.batch-import.page.remove": "remove", "admin.batch-import.page.remove": "हटवा", - // "auth.errors.invalid-user": "Invalid email address or password.", "auth.errors.invalid-user": "अवैध ईमेल पत्ता किंवा पासवर्ड.", - // "auth.messages.expired": "Your session has expired. Please log in again.", "auth.messages.expired": "आपला सत्र कालबाह्य झाला आहे. कृपया पुन्हा लॉग इन करा.", - // "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.", "auth.messages.token-refresh-failed": "आपला सत्र टोकन रीफ्रेश करण्यात अयशस्वी. कृपया पुन्हा लॉग इन करा.", - // "bitstream.download.page": "Now downloading {{bitstream}}...", "bitstream.download.page": "आता डाउनलोड करत आहे {{bitstream}}...", - // "bitstream.download.page.back": "Back", "bitstream.download.page.back": "मागे", - // "bitstream.edit.authorizations.link": "Edit bitstream's Policies", "bitstream.edit.authorizations.link": "बिटस्ट्रीमच्या धोरणांचे संपादन करा", - // "bitstream.edit.authorizations.title": "Edit bitstream's Policies", "bitstream.edit.authorizations.title": "बिटस्ट्रीमच्या धोरणांचे संपादन करा", - // "bitstream.edit.return": "Back", "bitstream.edit.return": "मागे", - // "bitstream.edit.bitstream": "Bitstream: ", - // TODO New key - Add a translation - "bitstream.edit.bitstream": "Bitstream: ", + "bitstream.edit.bitstream": "बिटस्ट्रीम: ", - // "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".", "bitstream.edit.form.description.hint": "पर्यायी, फाईलचे संक्षिप्त वर्णन द्या, उदाहरणार्थ \"Main article\" किंवा \"Experiment data readings\".", - // "bitstream.edit.form.description.label": "Description", "bitstream.edit.form.description.label": "वर्णन", - // "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.", "bitstream.edit.form.embargo.hint": "पहिला दिवस ज्यापासून प्रवेश परवानगी आहे. ही तारीख या फॉर्मवर बदलली जाऊ शकत नाही. बिटस्ट्रीमसाठी एम्बार्गो तारीख सेट करण्यासाठी, Item Status टॅबवर जा, Authorizations... क्लिक करा, बिटस्ट्रीमच्या READ धोरणाचे निर्माण किंवा संपादन करा, आणि इच्छित Start Date सेट करा.", - // "bitstream.edit.form.embargo.label": "Embargo until specific date", "bitstream.edit.form.embargo.label": "विशिष्ट तारखेपर्यंत एम्बार्गो", - // "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": "बिटस्ट्रीमसाठी फाईलचे नाव बदला. लक्षात ठेवा की हे बिटस्ट्रीम URL बदलेल, परंतु जुने दुवे अद्याप कार्यरत राहतील जोपर्यंत अनुक्रम ID बदलत नाही.", - // "bitstream.edit.form.fileName.label": "Filename", "bitstream.edit.form.fileName.label": "फाईलचे नाव", - // "bitstream.edit.form.newFormat.label": "Describe new format", "bitstream.edit.form.newFormat.label": "नवीन स्वरूपाचे वर्णन करा", - // "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"ACMESoft SuperApp version 1.5\").", "bitstream.edit.form.newFormat.hint": "तुम्ही फाईल तयार करण्यासाठी वापरलेले अनुप्रयोग, आणि आवृत्ती क्रमांक (उदाहरणार्थ, \"ACMESoft SuperApp version 1.5\").", - // "bitstream.edit.form.primaryBitstream.label": "Primary File", "bitstream.edit.form.primaryBitstream.label": "प्राथमिक फाईल", - // "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, select \"format not in list\" above and describe it under \"Describe new format\".", "bitstream.edit.form.selectedFormat.hint": "जर स्वरूप वरील यादीत नसेल, वरील \"format not in list\" निवडा आणि \"Describe new format\" अंतर्गत त्याचे वर्णन करा.", - // "bitstream.edit.form.selectedFormat.label": "Selected Format", "bitstream.edit.form.selectedFormat.label": "निवडलेले स्वरूप", - // "bitstream.edit.form.selectedFormat.unknown": "Format not in list", "bitstream.edit.form.selectedFormat.unknown": "सूचीतील स्वरूप नाही", - // "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format", "bitstream.edit.notifications.error.format.title": "बिटस्ट्रीमचे स्वरूप जतन करताना त्रुटी आली", - // "bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream", "bitstream.edit.notifications.error.primaryBitstream.title": "प्राथमिक बिटस्ट्रीम जतन करताना त्रुटी आली", - // "bitstream.edit.form.iiifLabel.label": "IIIF Label", "bitstream.edit.form.iiifLabel.label": "IIIF लेबल", - // "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.", "bitstream.edit.form.iiifLabel.hint": "या प्रतिमेसाठी कॅनव्हास लेबल. दिले नसल्यास डीफॉल्ट लेबल वापरले जाईल.", - // "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents", "bitstream.edit.form.iiifToc.label": "IIIF सामग्री सारणी", - // "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.", "bitstream.edit.form.iiifToc.hint": "येथे मजकूर जोडल्याने नवीन सामग्री सारणी श्रेणीची सुरुवात होते.", - // "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width", "bitstream.edit.form.iiifWidth.label": "IIIF कॅनव्हास रुंदी", - // "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.", "bitstream.edit.form.iiifWidth.hint": "कॅनव्हासची रुंदी सामान्यतः प्रतिमेच्या रुंदीशी जुळली पाहिजे.", - // "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height", "bitstream.edit.form.iiifHeight.label": "IIIF कॅनव्हास उंची", - // "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.", "bitstream.edit.form.iiifHeight.hint": "कॅनव्हासची उंची सामान्यतः प्रतिमेच्या उंचीशी जुळली पाहिजे.", - // "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.", "bitstream.edit.notifications.saved.content": "तुमच्या बिटस्ट्रीममध्ये केलेले बदल जतन केले गेले.", - // "bitstream.edit.notifications.saved.title": "Bitstream saved", "bitstream.edit.notifications.saved.title": "बिटस्ट्रीम जतन केले", - // "bitstream.edit.title": "Edit bitstream", "bitstream.edit.title": "बिटस्ट्रीम संपादन करा", - // "bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ", "bitstream-request-a-copy.alert.canDownload1": "तुमच्याकडे आधीच या फाईलचा प्रवेश आहे. जर तुम्हाला फाईल डाउनलोड करायची असेल, तर क्लिक करा ", - // "bitstream-request-a-copy.alert.canDownload2": "here", "bitstream-request-a-copy.alert.canDownload2": "इथे", - // "bitstream-request-a-copy.header": "Request a copy of the file", "bitstream-request-a-copy.header": "फाईलची प्रत मागवा", - // "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", - // TODO New key - Add a translation - "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", + "bitstream-request-a-copy.intro": "खालील आयटमसाठी प्रत मागण्यासाठी खालील माहिती प्रविष्ट करा: ", - // "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", - // TODO New key - Add a translation - "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + "bitstream-request-a-copy.intro.bitstream.one": "खालील फाईलची प्रत मागत आहे: ", - // "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ", "bitstream-request-a-copy.intro.bitstream.all": "सर्व फाईल्स मागत आहे. ", - // "bitstream-request-a-copy.name.label": "Name *", "bitstream-request-a-copy.name.label": "नाव *", - // "bitstream-request-a-copy.name.error": "The name is required", "bitstream-request-a-copy.name.error": "नाव आवश्यक आहे", - // "bitstream-request-a-copy.email.label": "Your email address *", "bitstream-request-a-copy.email.label": "तुमचा ईमेल पत्ता *", - // "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.", "bitstream-request-a-copy.email.hint": "ही ईमेल पत्ता फाईल पाठवण्यासाठी वापरली जाते.", - // "bitstream-request-a-copy.email.error": "Please enter a valid email address.", "bitstream-request-a-copy.email.error": "कृपया वैध ईमेल पत्ता प्रविष्ट करा.", - // "bitstream-request-a-copy.allfiles.label": "Files", "bitstream-request-a-copy.allfiles.label": "फाईल्स", - // "bitstream-request-a-copy.files-all-false.label": "Only the requested file", "bitstream-request-a-copy.files-all-false.label": "फक्त मागितलेली फाईल", - // "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access", "bitstream-request-a-copy.files-all-true.label": "सर्व फाईल्स (या आयटमच्या) प्रतिबंधित प्रवेशात", - // "bitstream-request-a-copy.message.label": "Message", "bitstream-request-a-copy.message.label": "संदेश", - // "bitstream-request-a-copy.return": "Back", "bitstream-request-a-copy.return": "मागे", - // "bitstream-request-a-copy.submit": "Request copy", "bitstream-request-a-copy.submit": "प्रत मागवा", - // "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.", "bitstream-request-a-copy.submit.success": "आयटमची विनंती यशस्वीरित्या सबमिट केली गेली.", - // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "आयटमची विनंती सबमिट करताना काहीतरी चूक झाली.", - // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", "bitstream-request-a-copy.access-by-token.warning": "तुम्ही लेखक किंवा रिपॉझिटरी स्टाफने दिलेल्या सुरक्षित प्रवेश दुव्याद्वारे हा आयटम पाहत आहात. हा दुवा अनधिकृत वापरकर्त्यांना शेअर करणे महत्त्वाचे नाही.", - // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", "bitstream-request-a-copy.access-by-token.expiry-label": "या दुव्याद्वारे दिलेला प्रवेश समाप्त होईल", - // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", "bitstream-request-a-copy.access-by-token.expired": "या दुव्याद्वारे दिलेला प्रवेश आता शक्य नाही. प्रवेश समाप्त झाला", - // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", "bitstream-request-a-copy.access-by-token.not-granted": "या दुव्याद्वारे दिलेला प्रवेश शक्य नाही. प्रवेश दिला गेला नाही, किंवा रद्द केला गेला आहे.", - // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", "bitstream-request-a-copy.access-by-token.re-request": "प्रतिबंधित डाउनलोड दुवे फॉलो करा आणि प्रवेशासाठी नवीन विनंती सबमिट करा.", - // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", "bitstream-request-a-copy.access-by-token.alt-text": "या आयटमचा प्रवेश सुरक्षित टोकनद्वारे दिला जातो", - // "browse.back.all-results": "All browse results", "browse.back.all-results": "सर्व ब्राउझ परिणाम", - // "browse.comcol.by.author": "By Author", "browse.comcol.by.author": "लेखकानुसार", - // "browse.comcol.by.dateissued": "By Issue Date", "browse.comcol.by.dateissued": "प्रकाशन तारखेनुसार", - // "browse.comcol.by.subject": "By Subject", "browse.comcol.by.subject": "विषयानुसार", - // "browse.comcol.by.srsc": "By Subject Category", "browse.comcol.by.srsc": "विषय श्रेणीनुसार", - // "browse.comcol.by.nsi": "By Norwegian Science Index", "browse.comcol.by.nsi": "नॉर्वेजियन सायन्स इंडेक्सनुसार", - // "browse.comcol.by.title": "By Title", "browse.comcol.by.title": "शीर्षकानुसार", - // "browse.comcol.head": "Browse", "browse.comcol.head": "ब्राउझ करा", - // "browse.empty": "No items to show.", "browse.empty": "दाखवण्यासाठी कोणतेही आयटम नाहीत.", - // "browse.metadata.author": "Author", "browse.metadata.author": "लेखक", - // "browse.metadata.dateissued": "Issue Date", "browse.metadata.dateissued": "प्रकाशन तारीख", - // "browse.metadata.subject": "Subject", "browse.metadata.subject": "विषय", - // "browse.metadata.title": "Title", "browse.metadata.title": "शीर्षक", - // "browse.metadata.srsc": "Subject Category", "browse.metadata.srsc": "विषय श्रेणी", - // "browse.metadata.author.breadcrumbs": "Browse by Author", "browse.metadata.author.breadcrumbs": "लेखकानुसार ब्राउझ करा", - // "browse.metadata.dateissued.breadcrumbs": "Browse by Date", "browse.metadata.dateissued.breadcrumbs": "तारखेनुसार ब्राउझ करा", - // "browse.metadata.subject.breadcrumbs": "Browse by Subject", "browse.metadata.subject.breadcrumbs": "विषयानुसार ब्राउझ करा", - // "browse.metadata.srsc.breadcrumbs": "Browse by Subject Category", "browse.metadata.srsc.breadcrumbs": "विषय श्रेणीनुसार ब्राउझ करा", - // "browse.metadata.srsc.tree.description": "Select a subject to add as search filter", "browse.metadata.srsc.tree.description": "शोध फिल्टर म्हणून जोडण्यासाठी विषय निवडा", - // "browse.metadata.nsi.breadcrumbs": "Browse by Norwegian Science Index", "browse.metadata.nsi.breadcrumbs": "नॉर्वेजियन सायन्स इंडेक्सनुसार ब्राउझ करा", - // "browse.metadata.nsi.tree.description": "Select an index to add as search filter", "browse.metadata.nsi.tree.description": "शोध फिल्टर म्हणून जोडण्यासाठी इंडेक्स निवडा", - // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "शीर्षकानुसार ब्राउझ करा", - // "browse.metadata.map": "Browse by Geolocation", "browse.metadata.map": "भौगोलिक स्थानानुसार ब्राउझ करा", - // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", "browse.metadata.map.breadcrumbs": "भौगोलिक स्थानानुसार ब्राउझ करा", - // "browse.metadata.map.count.items": "items", "browse.metadata.map.count.items": "आयटम्स", - // "pagination.next.button": "Next", "pagination.next.button": "पुढे", - // "pagination.previous.button": "Previous", "pagination.previous.button": "मागे", - // "pagination.next.button.disabled.tooltip": "No more pages of results", "pagination.next.button.disabled.tooltip": "अधिक परिणाम पृष्ठे नाहीत", - // "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", - // TODO New key - Add a translation - "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + "pagination.page-number-bar": "पृष्ठ नेव्हिगेशनसाठी नियंत्रण पट्टी, ID सह घटकाच्या सापेक्ष: ", - // "browse.startsWith": ", starting with {{ startsWith }}", "browse.startsWith": ", {{ startsWith }} ने सुरू होते", - // "browse.startsWith.choose_start": "(Choose start)", "browse.startsWith.choose_start": "(प्रारंभ निवडा)", - // "browse.startsWith.choose_year": "(Choose year)", "browse.startsWith.choose_year": "(वर्ष निवडा)", - // "browse.startsWith.choose_year.label": "Choose the issue year", "browse.startsWith.choose_year.label": "प्रकाशन वर्ष निवडा", - // "browse.startsWith.jump": "Filter results by year or month", "browse.startsWith.jump": "वर्ष किंवा महिन्यानुसार परिणाम फिल्टर करा", - // "browse.startsWith.months.april": "April", "browse.startsWith.months.april": "एप्रिल", - // "browse.startsWith.months.august": "August", "browse.startsWith.months.august": "ऑगस्ट", - // "browse.startsWith.months.december": "December", "browse.startsWith.months.december": "डिसेंबर", - // "browse.startsWith.months.february": "February", "browse.startsWith.months.february": "फेब्रुवारी", - // "browse.startsWith.months.january": "January", "browse.startsWith.months.january": "जानेवारी", - // "browse.startsWith.months.july": "July", "browse.startsWith.months.july": "जुलै", - // "browse.startsWith.months.june": "June", "browse.startsWith.months.june": "जून", - // "browse.startsWith.months.march": "March", "browse.startsWith.months.march": "मार्च", - // "browse.startsWith.months.may": "May", "browse.startsWith.months.may": "मे", - // "browse.startsWith.months.none": "(Choose month)", "browse.startsWith.months.none": "(महिना निवडा)", - // "browse.startsWith.months.none.label": "Choose the issue month", "browse.startsWith.months.none.label": "प्रकाशन महिना निवडा", - // "browse.startsWith.months.november": "November", "browse.startsWith.months.november": "नोव्हेंबर", - // "browse.startsWith.months.october": "October", "browse.startsWith.months.october": "ऑक्टोबर", - // "browse.startsWith.months.september": "September", "browse.startsWith.months.september": "सप्टेंबर", - // "browse.startsWith.submit": "Browse", "browse.startsWith.submit": "ब्राउझ करा", - // "browse.startsWith.type_date": "Filter results by date", "browse.startsWith.type_date": "तारखेनुसार परिणाम फिल्टर करा", - // "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button", "browse.startsWith.type_date.label": "किंवा तारीख (वर्ष-महिना) टाइप करा आणि ब्राउझ बटणावर क्लिक करा", - // "browse.startsWith.type_text": "Filter results by typing the first few letters", "browse.startsWith.type_text": "पहिल्या काही अक्षरांनी परिणाम फिल्टर करा", - // "browse.startsWith.input": "Filter", "browse.startsWith.input": "फिल्टर", - // "browse.taxonomy.button": "Browse", "browse.taxonomy.button": "ब्राउझ करा", - // "browse.title": "Browsing by {{ field }}{{ startsWith }} {{ value }}", "browse.title": "{{ field }}{{ startsWith }} {{ value }} ने ब्राउझ करत आहे", - // "browse.title.page": "Browsing by {{ field }} {{ value }}", "browse.title.page": "{{ field }} {{ value }} ने ब्राउझ करत आहे", - // "search.browse.item-back": "Back to Results", "search.browse.item-back": "परिणामांकडे परत जा", - // "chips.remove": "Remove chip", "chips.remove": "चिप काढा", - // "claimed-approved-search-result-list-element.title": "Approved", "claimed-approved-search-result-list-element.title": "मंजूर", - // "claimed-declined-search-result-list-element.title": "Rejected, sent back to submitter", "claimed-declined-search-result-list-element.title": "नाकारले, सबमिटरकडे परत पाठवले", - // "claimed-declined-task-search-result-list-element.title": "Declined, sent back to Review Manager's workflow", "claimed-declined-task-search-result-list-element.title": "नाकारले, पुनरावलोकन व्यवस्थापकाच्या कार्यप्रवाहाकडे परत पाठवले", - // "collection.create.breadcrumbs": "Create collection", "collection.create.breadcrumbs": "संग्रह तयार करा", - // "collection.browse.logo": "Browse for a collection logo", "collection.browse.logo": "संग्रह लोगो ब्राउझ करा", - // "collection.create.head": "Create a Collection", "collection.create.head": "संग्रह तयार करा", - // "collection.create.notifications.success": "Successfully created the collection", "collection.create.notifications.success": "संग्रह यशस्वीरित्या तयार केला", - // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", "collection.create.sub-head": "समुदाय {{ parent }} साठी संग्रह तयार करा", - // "collection.curate.header": "Curate Collection: {{collection}}", - // TODO New key - Add a translation - "collection.curate.header": "Curate Collection: {{collection}}", + "collection.curate.header": "संग्रह व्यवस्थापित करा: {{collection}}", - // "collection.delete.cancel": "Cancel", "collection.delete.cancel": "रद्द करा", - // "collection.delete.confirm": "Confirm", "collection.delete.confirm": "पुष्टी करा", - // "collection.delete.processing": "Deleting", "collection.delete.processing": "हटवत आहे", - // "collection.delete.head": "Delete Collection", "collection.delete.head": "संग्रह हटवा", - // "collection.delete.notification.fail": "Collection could not be deleted", "collection.delete.notification.fail": "संग्रह हटवता आला नाही", - // "collection.delete.notification.success": "Successfully deleted collection", "collection.delete.notification.success": "संग्रह यशस्वीरित्या हटवला", - // "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"", "collection.delete.text": "तुम्हाला खात्री आहे की तुम्ही संग्रह \"{{ dso }}\" हटवू इच्छिता", - // "collection.edit.delete": "Delete this collection", "collection.edit.delete": "हा संग्रह हटवा", - // "collection.edit.head": "Edit Collection", "collection.edit.head": "संग्रह संपादन करा", - // "collection.edit.breadcrumbs": "Edit Collection", "collection.edit.breadcrumbs": "संग्रह संपादन करा", - // "collection.edit.tabs.mapper.head": "Item Mapper", "collection.edit.tabs.mapper.head": "आयटम मॅपर", - // "collection.edit.tabs.item-mapper.title": "Collection Edit - Item Mapper", "collection.edit.tabs.item-mapper.title": "संग्रह संपादन - आयटम मॅपर", - // "collection.edit.item-mapper.cancel": "Cancel", "collection.edit.item-mapper.cancel": "रद्द करा", - // "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", - // TODO New key - Add a translation - "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + "collection.edit.item-mapper.collection": "संग्रह: \"{{name}}\"", - // "collection.edit.item-mapper.confirm": "Map selected items", "collection.edit.item-mapper.confirm": "निवडलेले आयटम मॅप करा", - // "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.", "collection.edit.item-mapper.description": "हे आयटम मॅपर साधन आहे जे संग्रह प्रशासकांना या संग्रहात इतर संग्रहांमधून आयटम मॅप करण्यास अनुमती देते. तुम्ही इतर संग्रहांमधून आयटम शोधू शकता आणि त्यांना मॅप करू शकता, किंवा सध्या मॅप केलेल्या आयटमची यादी ब्राउझ करू शकता.", - // "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections", "collection.edit.item-mapper.head": "आयटम मॅपर - इतर संग्रहांमधून आयटम मॅप करा", - // "collection.edit.item-mapper.no-search": "Please enter a query to search", "collection.edit.item-mapper.no-search": "शोधण्यासाठी क्वेरी प्रविष्ट करा", - // "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.", "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} आयटम्सच्या मॅपिंगसाठी त्रुटी आल्या.", - // "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors", "collection.edit.item-mapper.notifications.map.error.head": "मॅपिंग त्रुटी", - // "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.", "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} आयटम्स यशस्वीरित्या मॅप केले.", - // "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed", "collection.edit.item-mapper.notifications.map.success.head": "मॅपिंग पूर्ण झाले", - // "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} आयटम्सच्या मॅपिंग काढण्याच्या त्रुटी आल्या.", - // "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors", "collection.edit.item-mapper.notifications.unmap.error.head": "मॅपिंग काढण्याच्या त्रुटी", - // "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} आयटम्सच्या मॅपिंग काढण्याचे यशस्वी झाले.", - // "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed", "collection.edit.item-mapper.notifications.unmap.success.head": "मॅपिंग काढणे पूर्ण झाले", - // "collection.edit.item-mapper.remove": "Remove selected item mappings", "collection.edit.item-mapper.remove": "निवडलेले आयटम मॅपिंग काढा", - // "collection.edit.item-mapper.search-form.placeholder": "Search items...", "collection.edit.item-mapper.search-form.placeholder": "आयटम शोधा...", - // "collection.edit.item-mapper.tabs.browse": "Browse mapped items", "collection.edit.item-mapper.tabs.browse": "मॅप केलेले आयटम ब्राउझ करा", - // "collection.edit.item-mapper.tabs.map": "Map new items", "collection.edit.item-mapper.tabs.map": "नवीन आयटम मॅप करा", - // "collection.edit.logo.delete.title": "Delete logo", "collection.edit.logo.delete.title": "लोगो हटवा", - // "collection.edit.logo.delete-undo.title": "Undo delete", "collection.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", - // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "संग्रह लोगो", - // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", "collection.edit.logo.notifications.add.error": "संग्रह लोगो अपलोड करण्यात अयशस्वी. कृपया पुन्हा प्रयत्न करण्यापूर्वी सामग्री सत्यापित करा.", - // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", "collection.edit.logo.notifications.add.success": "संग्रह लोगो अपलोड यशस्वी.", - // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", "collection.edit.logo.notifications.delete.success.title": "लोगो हटवला", - // "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo", "collection.edit.logo.notifications.delete.success.content": "संग्रहाचा लोगो यशस्वीरित्या हटवला", - // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "लोगो हटवताना त्रुटी", - // "collection.edit.logo.upload": "Drop a collection logo to upload", "collection.edit.logo.upload": "अपलोड करण्यासाठी संग्रह लोगो ड्रॉप करा", - // "collection.edit.notifications.success": "Successfully edited the collection", "collection.edit.notifications.success": "संग्रह यशस्वीरित्या संपादित केला", - // "collection.edit.return": "Back", "collection.edit.return": "मागे", - // "collection.edit.tabs.access-control.head": "Access Control", "collection.edit.tabs.access-control.head": "प्रवेश नियंत्रण", - // "collection.edit.tabs.access-control.title": "Collection Edit - Access Control", "collection.edit.tabs.access-control.title": "संग्रह संपादन - प्रवेश नियंत्रण", - // "collection.edit.tabs.curate.head": "Curate", "collection.edit.tabs.curate.head": "व्यवस्थित करा", - // "collection.edit.tabs.curate.title": "Collection Edit - Curate", "collection.edit.tabs.curate.title": "संग्रह संपादन - व्यवस्थित करा", - // "collection.edit.tabs.authorizations.head": "Authorizations", "collection.edit.tabs.authorizations.head": "प्राधिकरणे", - // "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations", "collection.edit.tabs.authorizations.title": "संग्रह संपादन - प्राधिकरणे", - // "collection.edit.item.authorizations.load-bundle-button": "Load more bundles", "collection.edit.item.authorizations.load-bundle-button": "अधिक बंडल लोड करा", - // "collection.edit.item.authorizations.load-more-button": "Load more", "collection.edit.item.authorizations.load-more-button": "अधिक लोड करा", - // "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle", "collection.edit.item.authorizations.show-bitstreams-button": "बंडलसाठी बिटस्ट्रीम धोरणे दाखवा", - // "collection.edit.tabs.metadata.head": "Edit Metadata", "collection.edit.tabs.metadata.head": "मेटाडेटा संपादित करा", - // "collection.edit.tabs.metadata.title": "Collection Edit - Metadata", "collection.edit.tabs.metadata.title": "संग्रह संपादन - मेटाडेटा", - // "collection.edit.tabs.roles.head": "Assign Roles", "collection.edit.tabs.roles.head": "भूमिका नियुक्त करा", - // "collection.edit.tabs.roles.title": "Collection Edit - Roles", "collection.edit.tabs.roles.title": "संग्रह संपादन - भूमिका", - // "collection.edit.tabs.source.external": "This collection harvests its content from an external source", "collection.edit.tabs.source.external": "हा संग्रह त्याच्या सामग्रीला बाह्य स्रोतातून गोळा करतो", - // "collection.edit.tabs.source.form.errors.oaiSource.required": "You must provide a set id of the target collection.", "collection.edit.tabs.source.form.errors.oaiSource.required": "आपल्याला लक्ष्य संग्रहाचा सेट आयडी प्रदान करणे आवश्यक आहे.", - // "collection.edit.tabs.source.form.harvestType": "Content being harvested", "collection.edit.tabs.source.form.harvestType": "सामग्री गोळा केली जात आहे", - // "collection.edit.tabs.source.form.head": "Configure an external source", "collection.edit.tabs.source.form.head": "बाह्य स्रोत कॉन्फिगर करा", - // "collection.edit.tabs.source.form.metadataConfigId": "Metadata Format", "collection.edit.tabs.source.form.metadataConfigId": "मेटाडेटा स्वरूप", - // "collection.edit.tabs.source.form.oaiSetId": "OAI specific set id", "collection.edit.tabs.source.form.oaiSetId": "OAI विशिष्ट सेट आयडी", - // "collection.edit.tabs.source.form.oaiSource": "OAI Provider", "collection.edit.tabs.source.form.oaiSource": "OAI प्रदाता", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Harvest metadata and bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "मेटाडेटा आणि बिटस्ट्रीम्स गोळा करा (ORE समर्थन आवश्यक आहे)", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Harvest metadata and references to bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "मेटाडेटा आणि बिटस्ट्रीम्सच्या संदर्भांना गोळा करा (ORE समर्थन आवश्यक आहे)", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Harvest metadata only", "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "फक्त मेटाडेटा गोळा करा", - // "collection.edit.tabs.source.head": "Content Source", "collection.edit.tabs.source.head": "सामग्री स्रोत", - // "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "collection.edit.tabs.source.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", - // "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded", "collection.edit.tabs.source.notifications.discarded.title": "बदल रद्द केले", - // "collection.edit.tabs.source.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "collection.edit.tabs.source.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", - // "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid", "collection.edit.tabs.source.notifications.invalid.title": "मेटाडेटा अवैध", - // "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.", "collection.edit.tabs.source.notifications.saved.content": "या संग्रहाच्या सामग्री स्रोतासाठी आपले बदल जतन केले गेले.", - // "collection.edit.tabs.source.notifications.saved.title": "Content Source saved", "collection.edit.tabs.source.notifications.saved.title": "सामग्री स्रोत जतन केले", - // "collection.edit.tabs.source.title": "Collection Edit - Content Source", "collection.edit.tabs.source.title": "संग्रह संपादन - सामग्री स्रोत", - // "collection.edit.template.add-button": "Add", "collection.edit.template.add-button": "जोडा", - // "collection.edit.template.breadcrumbs": "Item template", "collection.edit.template.breadcrumbs": "आयटम टेम्पलेट", - // "collection.edit.template.cancel": "Cancel", "collection.edit.template.cancel": "रद्द करा", - // "collection.edit.template.delete-button": "Delete", "collection.edit.template.delete-button": "हटवा", - // "collection.edit.template.edit-button": "Edit", "collection.edit.template.edit-button": "संपादित करा", - // "collection.edit.template.error": "An error occurred retrieving the template item", "collection.edit.template.error": "टेम्पलेट आयटम पुनर्प्राप्त करताना त्रुटी आली", - // "collection.edit.template.head": "Edit Template Item for Collection \"{{ collection }}\"", "collection.edit.template.head": "संग्रहासाठी टेम्पलेट आयटम संपादित करा \"{{ collection }}\"", - // "collection.edit.template.label": "Template item", "collection.edit.template.label": "टेम्पलेट आयटम", - // "collection.edit.template.loading": "Loading template item...", "collection.edit.template.loading": "टेम्पलेट आयटम लोड करत आहे...", - // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "आयटम टेम्पलेट हटवण्यात अयशस्वी", - // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", "collection.edit.template.notifications.delete.success": "आयटम टेम्पलेट यशस्वीरित्या हटवले", - // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "टेम्पलेट आयटम संपादित करा", - // "collection.form.abstract": "Short Description", "collection.form.abstract": "संक्षिप्त वर्णन", - // "collection.form.description": "Introductory text (HTML)", "collection.form.description": "परिचयात्मक मजकूर (HTML)", - // "collection.form.errors.title.required": "Please enter a collection name", "collection.form.errors.title.required": "कृपया संग्रहाचे नाव प्रविष्ट करा", - // "collection.form.license": "License", "collection.form.license": "परवाना", - // "collection.form.provenance": "Provenance", "collection.form.provenance": "मूळ", - // "collection.form.rights": "Copyright text (HTML)", "collection.form.rights": "कॉपीराइट मजकूर (HTML)", - // "collection.form.tableofcontents": "News (HTML)", "collection.form.tableofcontents": "बातम्या (HTML)", - // "collection.form.title": "Name", "collection.form.title": "नाव", - // "collection.form.entityType": "Entity Type", "collection.form.entityType": "घटक प्रकार", - // "collection.listelement.badge": "Collection", "collection.listelement.badge": "संग्रह", - // "collection.logo": "Collection logo", "collection.logo": "संग्रह लोगो", - // "collection.page.browse.search.head": "Search", "collection.page.browse.search.head": "शोधा", - // "collection.page.edit": "Edit this collection", "collection.page.edit": "हा संग्रह संपादित करा", - // "collection.page.handle": "Permanent URI for this collection", "collection.page.handle": "या संग्रहासाठी स्थायी URI", - // "collection.page.license": "License", "collection.page.license": "परवाना", - // "collection.page.news": "News", "collection.page.news": "बातम्या", - // "collection.page.options": "Options", "collection.page.options": "पर्याय", - // "collection.search.breadcrumbs": "Search", "collection.search.breadcrumbs": "शोधा", - // "collection.search.results.head": "Search Results", "collection.search.results.head": "शोध परिणाम", - // "collection.select.confirm": "Confirm selected", "collection.select.confirm": "निवडलेले पुष्टी करा", - // "collection.select.empty": "No collections to show", "collection.select.empty": "दाखवण्यासाठी कोणतेही संग्रह नाहीत", - // "collection.select.table.selected": "Selected collections", "collection.select.table.selected": "निवडलेले संग्रह", - // "collection.select.table.select": "Select collection", "collection.select.table.select": "संग्रह निवडा", - // "collection.select.table.deselect": "Deselect collection", "collection.select.table.deselect": "संग्रह निवड रद्द करा", - // "collection.select.table.title": "Title", "collection.select.table.title": "शीर्षक", - // "collection.source.controls.head": "Harvest Controls", "collection.source.controls.head": "गोळा नियंत्रण", - // "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings", "collection.source.controls.test.submit.error": "सेटिंग्जची चाचणी सुरू करताना काहीतरी चूक झाली", - // "collection.source.controls.test.failed": "The script to test the settings has failed", "collection.source.controls.test.failed": "सेटिंग्जची चाचणी स्क्रिप्ट अयशस्वी झाली", - // "collection.source.controls.test.completed": "The script to test the settings has successfully finished", "collection.source.controls.test.completed": "सेटिंग्जची चाचणी स्क्रिप्ट यशस्वीरित्या पूर्ण झाली", - // "collection.source.controls.test.submit": "Test configuration", "collection.source.controls.test.submit": "कॉन्फिगरेशन चाचणी करा", - // "collection.source.controls.test.running": "Testing configuration...", "collection.source.controls.test.running": "कॉन्फिगरेशन चाचणी करत आहे...", - // "collection.source.controls.import.submit.success": "The import has been successfully initiated", "collection.source.controls.import.submit.success": "आयात यशस्वीरित्या सुरू केली गेली", - // "collection.source.controls.import.submit.error": "Something went wrong with initiating the import", "collection.source.controls.import.submit.error": "आयात सुरू करताना काहीतरी चूक झाली", - // "collection.source.controls.import.submit": "Import now", "collection.source.controls.import.submit": "आता आयात करा", - // "collection.source.controls.import.running": "Importing...", "collection.source.controls.import.running": "आयात करत आहे...", - // "collection.source.controls.import.failed": "An error occurred during the import", "collection.source.controls.import.failed": "आयात करताना त्रुटी आली", - // "collection.source.controls.import.completed": "The import completed", "collection.source.controls.import.completed": "आयात पूर्ण झाली", - // "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated", "collection.source.controls.reset.submit.success": "रीसेट आणि पुनरायात यशस्वीरित्या सुरू केली गेली", - // "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport", "collection.source.controls.reset.submit.error": "रीसेट आणि पुनरायात सुरू करताना काहीतरी चूक झाली", - // "collection.source.controls.reset.failed": "An error occurred during the reset and reimport", "collection.source.controls.reset.failed": "रीसेट आणि पुनरायात करताना त्रुटी आली", - // "collection.source.controls.reset.completed": "The reset and reimport completed", "collection.source.controls.reset.completed": "रीसेट आणि पुनरायात पूर्ण झाली", - // "collection.source.controls.reset.submit": "Reset and reimport", "collection.source.controls.reset.submit": "रीसेट आणि पुनरायात", - // "collection.source.controls.reset.running": "Resetting and reimporting...", "collection.source.controls.reset.running": "रीसेट आणि पुनरायात करत आहे...", - // "collection.source.controls.harvest.status": "Harvest status:", - // TODO New key - Add a translation - "collection.source.controls.harvest.status": "Harvest status:", + "collection.source.controls.harvest.status": "गोळा स्थिती:", - // "collection.source.controls.harvest.start": "Harvest start time:", - // TODO New key - Add a translation - "collection.source.controls.harvest.start": "Harvest start time:", + "collection.source.controls.harvest.start": "गोळा सुरू होण्याची वेळ:", - // "collection.source.controls.harvest.last": "Last time harvested:", - // TODO New key - Add a translation - "collection.source.controls.harvest.last": "Last time harvested:", + "collection.source.controls.harvest.last": "शेवटचा वेळ गोळा केला:", - // "collection.source.controls.harvest.message": "Harvest info:", - // TODO New key - Add a translation - "collection.source.controls.harvest.message": "Harvest info:", + "collection.source.controls.harvest.message": "गोळा माहिती:", - // "collection.source.controls.harvest.no-information": "N/A", "collection.source.controls.harvest.no-information": "N/A", - // "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.", "collection.source.update.notifications.error.content": "प्रदान केलेल्या सेटिंग्जची चाचणी केली गेली आणि ती कार्यरत नाहीत.", - // "collection.source.update.notifications.error.title": "Server Error", "collection.source.update.notifications.error.title": "सर्व्हर त्रुटी", - // "communityList.breadcrumbs": "Community List", "communityList.breadcrumbs": "समुदाय सूची", - // "communityList.tabTitle": "Community List", "communityList.tabTitle": "समुदाय सूची", - // "communityList.title": "List of Communities", "communityList.title": "समुदायांची सूची", - // "communityList.showMore": "Show More", "communityList.showMore": "अधिक दाखवा", - // "communityList.expand": "Expand {{ name }}", "communityList.expand": "विस्तृत करा {{ name }}", - // "communityList.collapse": "Collapse {{ name }}", "communityList.collapse": "संकुचित करा {{ name }}", - // "community.browse.logo": "Browse for a community logo", "community.browse.logo": "समुदाय लोगो ब्राउझ करा", - // "community.subcoms-cols.breadcrumbs": "Subcommunities and Collections", "community.subcoms-cols.breadcrumbs": "उपसमुदाय आणि संग्रह", - // "community.create.breadcrumbs": "Create Community", "community.create.breadcrumbs": "समुदाय तयार करा", - // "community.create.head": "Create a Community", "community.create.head": "समुदाय तयार करा", - // "community.create.notifications.success": "Successfully created the community", "community.create.notifications.success": "समुदाय यशस्वीरित्या तयार केला", - // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", "community.create.sub-head": "समुदायासाठी उपसमुदाय तयार करा {{ parent }}", - // "community.curate.header": "Curate Community: {{community}}", - // TODO New key - Add a translation - "community.curate.header": "Curate Community: {{community}}", + "community.curate.header": "समुदाय व्यवस्थापित करा: {{community}}", - // "community.delete.cancel": "Cancel", "community.delete.cancel": "रद्द करा", - // "community.delete.confirm": "Confirm", "community.delete.confirm": "पुष्टी करा", - // "community.delete.processing": "Deleting...", "community.delete.processing": "हटवत आहे...", - // "community.delete.head": "Delete Community", "community.delete.head": "समुदाय हटवा", - // "community.delete.notification.fail": "Community could not be deleted", "community.delete.notification.fail": "समुदाय हटवता आला नाही", - // "community.delete.notification.success": "Successfully deleted community", "community.delete.notification.success": "समुदाय यशस्वीरित्या हटवला", - // "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"", "community.delete.text": "तुम्हाला खात्री आहे की तुम्ही समुदाय हटवू इच्छिता \"{{ dso }}\"", - // "community.edit.delete": "Delete this community", "community.edit.delete": "हा समुदाय हटवा", - // "community.edit.head": "Edit Community", "community.edit.head": "समुदाय संपादन करा", - // "community.edit.breadcrumbs": "Edit Community", "community.edit.breadcrumbs": "समुदाय संपादन करा", - // "community.edit.logo.delete.title": "Delete logo", "community.edit.logo.delete.title": "लोगो हटवा", - // "community-collection.edit.logo.delete.title": "Confirm deletion", "community-collection.edit.logo.delete.title": "हटवण्याची पुष्टी करा", - // "community.edit.logo.delete-undo.title": "Undo delete", "community.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", - // "community-collection.edit.logo.delete-undo.title": "Undo delete", "community-collection.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", - // "community.edit.logo.label": "Community logo", "community.edit.logo.label": "समुदाय लोगो", - // "community.edit.logo.notifications.add.error": "Uploading community logo failed. Please verify the content before retrying.", "community.edit.logo.notifications.add.error": "समुदाय लोगो अपलोड करण्यात अयशस्वी. कृपया पुन्हा प्रयत्न करण्यापूर्वी सामग्री सत्यापित करा.", - // "community.edit.logo.notifications.add.success": "Upload community logo successful.", "community.edit.logo.notifications.add.success": "समुदाय लोगो अपलोड यशस्वी.", - // "community.edit.logo.notifications.delete.success.title": "Logo deleted", "community.edit.logo.notifications.delete.success.title": "लोगो हटवला", - // "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo", "community.edit.logo.notifications.delete.success.content": "समुदायाचा लोगो यशस्वीरित्या हटवला", - // "community.edit.logo.notifications.delete.error.title": "Error deleting logo", "community.edit.logo.notifications.delete.error.title": "लोगो हटवताना त्रुटी", - // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "अपलोड करण्यासाठी समुदाय लोगो ड्रॉप करा", - // "community.edit.notifications.success": "Successfully edited the community", "community.edit.notifications.success": "समुदाय यशस्वीरित्या संपादित केला", - // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", "community.edit.notifications.unauthorized": "आपल्याला हा बदल करण्याचे विशेषाधिकार नाहीत", - // "community.edit.notifications.error": "An error occurred while editing the community", "community.edit.notifications.error": "समुदाय संपादित करताना त्रुटी आली", - // "community.edit.return": "Back", "community.edit.return": "मागे", - // "community.edit.tabs.curate.head": "Curate", "community.edit.tabs.curate.head": "व्यवस्थित करा", - // "community.edit.tabs.curate.title": "Community Edit - Curate", "community.edit.tabs.curate.title": "समुदाय संपादन - व्यवस्थित करा", - // "community.edit.tabs.access-control.head": "Access Control", "community.edit.tabs.access-control.head": "प्रवेश नियंत्रण", - // "community.edit.tabs.access-control.title": "Community Edit - Access Control", "community.edit.tabs.access-control.title": "समुदाय संपादन - प्रवेश नियंत्रण", - // "community.edit.tabs.metadata.head": "Edit Metadata", "community.edit.tabs.metadata.head": "मेटाडेटा संपादित करा", - // "community.edit.tabs.metadata.title": "Community Edit - Metadata", "community.edit.tabs.metadata.title": "समुदाय संपादन - मेटाडेटा", - // "community.edit.tabs.roles.head": "Assign Roles", "community.edit.tabs.roles.head": "भूमिका नियुक्त करा", - // "community.edit.tabs.roles.title": "Community Edit - Roles", "community.edit.tabs.roles.title": "Community Edit - Roles", - // "community.edit.tabs.authorizations.head": "Authorizations", "community.edit.tabs.authorizations.head": "अधिकृतता", - // "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", - // "community.listelement.badge": "Community", "community.listelement.badge": "Community", - // "community.logo": "Community logo", "community.logo": "Community लोगो", - // "comcol-role.edit.no-group": "None", "comcol-role.edit.no-group": "काहीही नाही", - // "comcol-role.edit.create": "Create", "comcol-role.edit.create": "तयार करा", - // "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role", "comcol-role.edit.create.error.title": "'{{ role }}' भूमिकेसाठी गट तयार करण्यात अयशस्वी", - // "comcol-role.edit.restrict": "Restrict", "comcol-role.edit.restrict": "प्रतिबंधित करा", - // "comcol-role.edit.delete": "Delete", "comcol-role.edit.delete": "हटवा", - // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "'{{ role }}' भूमिकेचा गट हटवण्यात अयशस्वी", - // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - - // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - - // "comcol-role.edit.delete.modal.cancel": "Cancel", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.cancel": "Cancel", - - // "comcol-role.edit.delete.modal.confirm": "Delete", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.confirm": "Delete", - - // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "प्रशासक", - // "comcol-role.edit.collection-admin.name": "Administrators", "comcol-role.edit.collection-admin.name": "प्रशासक", - // "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).", "comcol-role.edit.community-admin.description": "Community administrators उप-समुदाय किंवा संग्रह तयार करू शकतात आणि त्या उप-समुदाय किंवा संग्रहांचे व्यवस्थापन किंवा व्यवस्थापन नियुक्त करू शकतात. याव्यतिरिक्त, ते कोण उप-संग्रहांना आयटम सबमिट करू शकतात, सबमिशन नंतर आयटम मेटाडेटा संपादित करू शकतात आणि इतर संग्रहांमधून विद्यमान आयटम जोडू (नकाशा) करू शकतात (अधिकृततेच्या अधीन).", - // "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).", "comcol-role.edit.collection-admin.description": "Collection administrators ठरवतात की कोण संग्रहात आयटम सबमिट करू शकतात, सबमिशन नंतर आयटम मेटाडेटा संपादित करू शकतात आणि या संग्रहात इतर संग्रहांमधून विद्यमान आयटम जोडू (नकाशा) करू शकतात (त्या संग्रहासाठी अधिकृततेच्या अधीन).", - // "comcol-role.edit.submitters.name": "Submitters", "comcol-role.edit.submitters.name": "सबमिटर्स", - // "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.", "comcol-role.edit.submitters.description": "E-People आणि गट ज्यांना या संग्रहात नवीन आयटम सबमिट करण्याची परवानगी आहे.", - // "comcol-role.edit.item_read.name": "Default item read access", "comcol-role.edit.item_read.name": "डीफॉल्ट आयटम वाचन प्रवेश", - // "comcol-role.edit.item_read.description": "E-People and Groups that can read new items submitted to this collection. Changes to this role are not retroactive. Existing items in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.item_read.description": "E-People आणि गट जे या संग्रहात सबमिट केलेले नवीन आयटम वाचू शकतात. या भूमिकेतील बदल मागील काळात लागू होत नाहीत. प्रणालीतील विद्यमान आयटम अजूनही त्यावेळी वाचन प्रवेश असलेल्या लोकांना पाहता येतील.", - // "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.", "comcol-role.edit.item_read.anonymous-group": "आगामी आयटमसाठी डीफॉल्ट वाचन सध्या अनामिक सेट केले आहे.", - // "comcol-role.edit.bitstream_read.name": "Default bitstream read access", "comcol-role.edit.bitstream_read.name": "डीफॉल्ट बिटस्ट्रीम वाचन प्रवेश", - // "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.bitstream_read.description": "E-People आणि गट जे या संग्रहात सबमिट केलेले नवीन बिटस्ट्रीम वाचू शकतात. या भूमिकेतील बदल मागील काळात लागू होत नाहीत. प्रणालीतील विद्यमान बिटस्ट्रीम अजूनही त्यावेळी वाचन प्रवेश असलेल्या लोकांना पाहता येतील.", - // "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.", "comcol-role.edit.bitstream_read.anonymous-group": "आगामी बिटस्ट्रीमसाठी डीफॉल्ट वाचन सध्या अनामिक सेट केले आहे.", - // "comcol-role.edit.editor.name": "Editors", "comcol-role.edit.editor.name": "संपादक", - // "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.", "comcol-role.edit.editor.description": "संपादक येणाऱ्या सबमिशनचे मेटाडेटा संपादित करू शकतात आणि नंतर त्यांना स्वीकारू किंवा नाकारू शकतात.", - // "comcol-role.edit.finaleditor.name": "Final editors", "comcol-role.edit.finaleditor.name": "अंतिम संपादक", - // "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.", "comcol-role.edit.finaleditor.description": "अंतिम संपादक येणाऱ्या सबमिशनचे मेटाडेटा संपादित करू शकतात, परंतु त्यांना नाकारू शकत नाहीत.", - // "comcol-role.edit.reviewer.name": "Reviewers", "comcol-role.edit.reviewer.name": "पुनरावलोकक", - // "comcol-role.edit.reviewer.description": "Reviewers are able to accept or reject incoming submissions. However, they are not able to edit the submission's metadata.", "comcol-role.edit.reviewer.description": "पुनरावलोकक येणाऱ्या सबमिशनला स्वीकारू किंवा नाकारू शकतात. तथापि, ते सबमिशनचे मेटाडेटा संपादित करू शकत नाहीत.", - // "comcol-role.edit.scorereviewers.name": "Score Reviewers", "comcol-role.edit.scorereviewers.name": "स्कोअर पुनरावलोकक", - // "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.", "comcol-role.edit.scorereviewers.description": "पुनरावलोकक येणाऱ्या सबमिशनला स्कोअर देऊ शकतात, हे ठरवेल की सबमिशन नाकारले जाईल की नाही.", - // "community.form.abstract": "Short Description", "community.form.abstract": "संक्षिप्त वर्णन", - // "community.form.description": "Introductory text (HTML)", "community.form.description": "प्रस्तावना मजकूर (HTML)", - // "community.form.errors.title.required": "Please enter a community name", "community.form.errors.title.required": "कृपया समुदायाचे नाव प्रविष्ट करा", - // "community.form.rights": "Copyright text (HTML)", "community.form.rights": "कॉपीराइट मजकूर (HTML)", - // "community.form.tableofcontents": "News (HTML)", "community.form.tableofcontents": "बातम्या (HTML)", - // "community.form.title": "Name", "community.form.title": "नाव", - // "community.page.edit": "Edit this community", "community.page.edit": "हा समुदाय संपादित करा", - // "community.page.handle": "Permanent URI for this community", "community.page.handle": "या समुदायासाठी स्थायी URI", - // "community.page.license": "License", "community.page.license": "परवाना", - // "community.page.news": "News", "community.page.news": "बातम्या", - // "community.page.options": "Options", "community.page.options": "पर्याय", - // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "उपसमुदाय आणि संग्रह", - // "community.search.breadcrumbs": "Search", "community.search.breadcrumbs": "शोधा", - // "community.search.results.head": "Search Results", "community.search.results.head": "शोध परिणाम", - // "community.sub-collection-list.head": "Collections in this community", "community.sub-collection-list.head": "या समुदायातील संग्रह", - // "community.sub-community-list.head": "Communities in this Community", "community.sub-community-list.head": "या समुदायातील समुदाय", - // "cookies.consent.accept-all": "Accept all", "cookies.consent.accept-all": "सर्व स्वीकारा", - // "cookies.consent.accept-selected": "Accept selected", "cookies.consent.accept-selected": "निवडलेले स्वीकारा", - // "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)", "cookies.consent.app.opt-out.description": "हे अॅप डीफॉल्टने लोड केले जाते (परंतु आपण बाहेर पडू शकता)", - // "cookies.consent.app.opt-out.title": "(opt-out)", "cookies.consent.app.opt-out.title": "(opt-out)", - // "cookies.consent.app.purpose": "purpose", "cookies.consent.app.purpose": "उद्देश", - // "cookies.consent.app.required.description": "This application is always required", "cookies.consent.app.required.description": "हे अॅप्लिकेशन नेहमी आवश्यक आहे", - // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(नेहमी आवश्यक)", - // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "आपल्या शेवटच्या भेटीनंतर बदल झाले आहेत, कृपया आपली संमती अद्यतनित करा.", - // "cookies.consent.close": "Close", "cookies.consent.close": "बंद करा", - // "cookies.consent.decline": "Decline", "cookies.consent.decline": "नकार", - // "cookies.consent.decline-all": "Decline all", "cookies.consent.decline-all": "सर्व नकारा", - // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "ठीक आहे", - // "cookies.consent.save": "Save", "cookies.consent.save": "जतन करा", - // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", - // TODO New key - Add a translation - "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + "cookies.consent.content-notice.description": "आम्ही आपली वैयक्तिक माहिती खालील उद्देशांसाठी गोळा आणि प्रक्रिया करतो: {purposes}", - // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "सानुकूलित करा", - // "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.", "cookies.consent.content-modal.description": "येथे आपण आपल्याबद्दल गोळा केलेली माहिती पाहू आणि सानुकूलित करू शकता.", - // "cookies.consent.content-modal.privacy-policy.name": "privacy policy", "cookies.consent.content-modal.privacy-policy.name": "गोपनीयता धोरण", - // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "अधिक जाणून घेण्यासाठी, कृपया आमचे {privacyPolicy} वाचा.", - // "cookies.consent.content-modal.no-privacy-policy.text": "", "cookies.consent.content-modal.no-privacy-policy.text": "", - // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "आम्ही गोळा केलेली माहिती", - // "cookies.consent.app.title.accessibility": "Accessibility Settings", - // TODO New key - Add a translation - "cookies.consent.app.title.accessibility": "Accessibility Settings", - - // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", - // TODO New key - Add a translation - "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", - - // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "प्रमाणीकरण", - // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "आपल्याला साइन इन करण्यासाठी आवश्यक", - // "cookies.consent.app.title.correlation-id": "Correlation ID", - // TODO New key - Add a translation - "cookies.consent.app.title.correlation-id": "Correlation ID", - - // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - // TODO New key - Add a translation - "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - - // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "प्राधान्ये", - // "cookies.consent.app.description.preferences": "Required for saving your preferences", "cookies.consent.app.description.preferences": "आपली प्राधान्ये जतन करण्यासाठी आवश्यक", - // "cookies.consent.app.title.acknowledgement": "Acknowledgement", "cookies.consent.app.title.acknowledgement": "स्वीकृती", - // "cookies.consent.app.description.acknowledgement": "Required for saving your acknowledgements and consents", "cookies.consent.app.description.acknowledgement": "आपल्या स्वीकृती आणि संमती जतन करण्यासाठी आवश्यक", - // "cookies.consent.app.title.google-analytics": "Google Analytics", "cookies.consent.app.title.google-analytics": "Google Analytics", - // "cookies.consent.app.description.google-analytics": "Allows us to track statistical data", "cookies.consent.app.description.google-analytics": "आम्हाला सांख्यिकी डेटा ट्रॅक करण्याची परवानगी देते", - // "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", - // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "नोंदणी आणि पासवर्ड पुनर्प्राप्ती दरम्यान आम्ही google reCAPTCHA सेवा वापरतो", - // "cookies.consent.app.title.matomo": "Matomo", "cookies.consent.app.title.matomo": "Matomo", - // "cookies.consent.app.description.matomo": "Allows us to track statistical data", "cookies.consent.app.description.matomo": "आम्हाला सांख्यिकी डेटा ट्रॅक करण्याची परवानगी देते", - // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "कार्यात्मक", - // "cookies.consent.purpose.statistical": "Statistical", "cookies.consent.purpose.statistical": "सांख्यिकी", - // "cookies.consent.purpose.registration-password-recovery": "Registration and Password recovery", "cookies.consent.purpose.registration-password-recovery": "नोंदणी आणि पासवर्ड पुनर्प्राप्ती", - // "cookies.consent.purpose.sharing": "Sharing", "cookies.consent.purpose.sharing": "शेअरिंग", - // "curation-task.task.citationpage.label": "Generate Citation Page", "curation-task.task.citationpage.label": "उद्धरण पृष्ठ तयार करा", - // "curation-task.task.checklinks.label": "Check Links in Metadata", "curation-task.task.checklinks.label": "मेटाडेटामधील दुवे तपासा", - // "curation-task.task.noop.label": "NOOP", "curation-task.task.noop.label": "NOOP", - // "curation-task.task.profileformats.label": "Profile Bitstream Formats", "curation-task.task.profileformats.label": "प्रोफाइल बिटस्ट्रीम स्वरूप", - // "curation-task.task.requiredmetadata.label": "Check for Required Metadata", "curation-task.task.requiredmetadata.label": "आवश्यक मेटाडेटा तपासा", - // "curation-task.task.translate.label": "Microsoft Translator", "curation-task.task.translate.label": "Microsoft Translator", - // "curation-task.task.vscan.label": "Virus Scan", "curation-task.task.vscan.label": "व्हायरस स्कॅन", - // "curation-task.task.registerdoi.label": "Register DOI", "curation-task.task.registerdoi.label": "DOI नोंदणी करा", - // "curation.form.task-select.label": "Task:", - // TODO New key - Add a translation - "curation.form.task-select.label": "Task:", + "curation.form.task-select.label": "कार्य:", - // "curation.form.submit": "Start", "curation.form.submit": "प्रारंभ करा", - // "curation.form.submit.success.head": "The curation task has been started successfully", "curation.form.submit.success.head": "क्युरेशन कार्य यशस्वीरित्या सुरू केले गेले आहे", - // "curation.form.submit.success.content": "You will be redirected to the corresponding process page.", "curation.form.submit.success.content": "आपण संबंधित प्रक्रिया पृष्ठावर पुनर्निर्देशित केले जाल.", - // "curation.form.submit.error.head": "Running the curation task failed", "curation.form.submit.error.head": "क्युरेशन कार्य चालवण्यात अयशस्वी", - // "curation.form.submit.error.content": "An error occurred when trying to start the curation task.", "curation.form.submit.error.content": "क्युरेशन कार्य सुरू करण्याचा प्रयत्न करताना एक त्रुटी आली.", - // "curation.form.submit.error.invalid-handle": "Couldn't determine the handle for this object", "curation.form.submit.error.invalid-handle": "या वस्तूसाठी हँडल ठरवू शकले नाही", - // "curation.form.handle.label": "Handle:", - // TODO New key - Add a translation - "curation.form.handle.label": "Handle:", + "curation.form.handle.label": "हँडल:", - // "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", - // TODO New key - Add a translation - "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", + "curation.form.handle.hint": "सूचना: संपूर्ण साइटवर कार्य चालवण्यासाठी [आपले-हँडल-प्रिफिक्स]/0 प्रविष्ट करा (सर्व कार्ये ही क्षमता समर्थन करू शकत नाहीत)", - // "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", - // TODO New key - Add a translation - "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + "deny-request-copy.email.message": "प्रिय {{ recipientName }},\nआपल्या विनंतीच्या प्रतिसादात मला आपल्याला कळविण्यात खेद आहे की आपण विनंती केलेल्या फाइल(स)ची प्रत पाठवणे शक्य नाही, दस्तऐवज: \"{{ itemUrl }}\" ({{ itemName }}), ज्याचा मी लेखक आहे.\n\nसर्वोत्तम शुभेच्छा,\n{{ authorName }} <{{ authorEmail }}>", - // "deny-request-copy.email.subject": "Request copy of document", "deny-request-copy.email.subject": "दस्तऐवजाची प्रत विनंती", - // "deny-request-copy.error": "An error occurred", "deny-request-copy.error": "एक त्रुटी आली", - // "deny-request-copy.header": "Deny document copy request", "deny-request-copy.header": "दस्तऐवज प्रत विनंती नकारा", - // "deny-request-copy.intro": "This message will be sent to the applicant of the request", "deny-request-copy.intro": "ही संदेश विनंतीच्या अर्जदाराला पाठवली जाईल", - // "deny-request-copy.success": "Successfully denied item request", "deny-request-copy.success": "आयटम विनंती यशस्वीरित्या नाकारली", - // "dynamic-list.load-more": "Load more", "dynamic-list.load-more": "अधिक लोड करा", - // "dropdown.clear": "Clear selection", "dropdown.clear": "निवड साफ करा", - // "dropdown.clear.tooltip": "Clear the selected option", "dropdown.clear.tooltip": "निवडलेला पर्याय साफ करा", - // "dso.name.untitled": "Untitled", "dso.name.untitled": "शीर्षक नसलेले", - // "dso.name.unnamed": "Unnamed", "dso.name.unnamed": "नाव नसलेले", - // "dso-selector.create.collection.head": "New collection", "dso-selector.create.collection.head": "नवीन संग्रह", - // "dso-selector.create.collection.sub-level": "Create a new collection in", "dso-selector.create.collection.sub-level": "मध्ये नवीन संग्रह तयार करा", - // "dso-selector.create.community.head": "New community", "dso-selector.create.community.head": "नवीन समुदाय", - // "dso-selector.create.community.or-divider": "or", "dso-selector.create.community.or-divider": "किंवा", - // "dso-selector.create.community.sub-level": "Create a new community in", "dso-selector.create.community.sub-level": "मध्ये नवीन समुदाय तयार करा", - // "dso-selector.create.community.top-level": "Create a new top-level community", "dso-selector.create.community.top-level": "नवीन शीर्ष-स्तरीय समुदाय तयार करा", - // "dso-selector.create.item.head": "New item", "dso-selector.create.item.head": "नवीन आयटम", - // "dso-selector.create.item.sub-level": "Create a new item in", "dso-selector.create.item.sub-level": "मध्ये नवीन आयटम तयार करा", - // "dso-selector.create.submission.head": "New submission", "dso-selector.create.submission.head": "नवीन सबमिशन", - // "dso-selector.edit.collection.head": "Edit collection", "dso-selector.edit.collection.head": "संग्रह संपादित करा", - // "dso-selector.edit.community.head": "Edit community", "dso-selector.edit.community.head": "समुदाय संपादित करा", - // "dso-selector.edit.item.head": "Edit item", "dso-selector.edit.item.head": "आयटम संपादित करा", - // "dso-selector.error.title": "An error occurred searching for a {{ type }}", "dso-selector.error.title": "{{ type }} शोधताना एक त्रुटी आली", - // "dso-selector.export-metadata.dspaceobject.head": "Export metadata from", "dso-selector.export-metadata.dspaceobject.head": "मधून मेटाडेटा निर्यात करा", - // "dso-selector.export-batch.dspaceobject.head": "Export Batch (ZIP) from", "dso-selector.export-batch.dspaceobject.head": "मधून बॅच (ZIP) निर्यात करा", - // "dso-selector.import-batch.dspaceobject.head": "Import batch from", "dso-selector.import-batch.dspaceobject.head": "मधून बॅच आयात करा", - // "dso-selector.no-results": "No {{ type }} found", "dso-selector.no-results": "कोणतेही {{ type }} सापडले नाही", - // "dso-selector.placeholder": "Search for a {{ type }}", "dso-selector.placeholder": "{{ type }} साठी शोधा", - // "dso-selector.placeholder.type.community": "community", "dso-selector.placeholder.type.community": "समुदाय", - // "dso-selector.placeholder.type.collection": "collection", "dso-selector.placeholder.type.collection": "संग्रह", - // "dso-selector.placeholder.type.item": "item", "dso-selector.placeholder.type.item": "आयटम", - // "dso-selector.select.collection.head": "Select a collection", "dso-selector.select.collection.head": "संग्रह निवडा", - // "dso-selector.set-scope.community.head": "Select a search scope", "dso-selector.set-scope.community.head": "शोधाचा व्याप्ती निवडा", - // "dso-selector.set-scope.community.button": "Search all of DSpace", "dso-selector.set-scope.community.button": "संपूर्ण DSpace शोधा", - // "dso-selector.set-scope.community.or-divider": "or", "dso-selector.set-scope.community.or-divider": "किंवा", - // "dso-selector.set-scope.community.input-header": "Search for a community or collection", "dso-selector.set-scope.community.input-header": "समुदाय किंवा संग्रहासाठी शोधा", - // "dso-selector.claim.item.head": "Profile tips", "dso-selector.claim.item.head": "प्रोफाइल टिपा", - // "dso-selector.claim.item.body": "These are existing profiles that may be related to you. If you recognize yourself in one of these profiles, select it and on the detail page, among the options, choose to claim it. Otherwise you can create a new profile from scratch using the button below.", "dso-selector.claim.item.body": "हे विद्यमान प्रोफाइल आहेत जे आपल्याशी संबंधित असू शकतात. आपण या प्रोफाइलपैकी एकामध्ये स्वतःला ओळखत असल्यास, ते निवडा आणि तपशील पृष्ठावर, पर्यायांमध्ये, ते दावा करण्यासाठी निवडा. अन्यथा आपण खालील बटण वापरून नवीन प्रोफाइल तयार करू शकता.", - // "dso-selector.claim.item.not-mine-label": "None of these are mine", "dso-selector.claim.item.not-mine-label": "हे माझे नाहीत", - // "dso-selector.claim.item.create-from-scratch": "Create a new one", "dso-selector.claim.item.create-from-scratch": "नवीन एक तयार करा", - // "dso-selector.results-could-not-be-retrieved": "Something went wrong, please refresh again ↻", "dso-selector.results-could-not-be-retrieved": "काहीतरी चुकले, कृपया पुन्हा ताजेतवाने करा ↻", - // "supervision-group-selector.header": "Supervision Group Selector", "supervision-group-selector.header": "Supervision Group Selector", - // "supervision-group-selector.select.type-of-order.label": "Select a type of Order", "supervision-group-selector.select.type-of-order.label": "ऑर्डरचा प्रकार निवडा", - // "supervision-group-selector.select.type-of-order.option.none": "NONE", "supervision-group-selector.select.type-of-order.option.none": "काहीही नाही", - // "supervision-group-selector.select.type-of-order.option.editor": "EDITOR", "supervision-group-selector.select.type-of-order.option.editor": "संपादक", - // "supervision-group-selector.select.type-of-order.option.observer": "OBSERVER", "supervision-group-selector.select.type-of-order.option.observer": "निरीक्षक", - // "supervision-group-selector.select.group.label": "Select a Group", "supervision-group-selector.select.group.label": "गट निवडा", - // "supervision-group-selector.button.cancel": "Cancel", "supervision-group-selector.button.cancel": "रद्द करा", - // "supervision-group-selector.button.save": "Save", "supervision-group-selector.button.save": "जतन करा", - // "supervision-group-selector.select.type-of-order.error": "Please select a type of order", "supervision-group-selector.select.type-of-order.error": "कृपया ऑर्डरचा प्रकार निवडा", - // "supervision-group-selector.select.group.error": "Please select a group", "supervision-group-selector.select.group.error": "कृपया गट निवडा", - // "supervision-group-selector.notification.create.success.title": "Successfully created supervision order for group {{ name }}", "supervision-group-selector.notification.create.success.title": "गट {{ name }} साठी यशस्वीरित्या सुपरविजन ऑर्डर तयार केली", - // "supervision-group-selector.notification.create.failure.title": "Error", "supervision-group-selector.notification.create.failure.title": "त्रुटी", - // "supervision-group-selector.notification.create.already-existing": "A supervision order already exists on this item for selected group", "supervision-group-selector.notification.create.already-existing": "निवडलेल्या गटासाठी या आयटमवर आधीच एक सुपरविजन ऑर्डर अस्तित्वात आहे", - // "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.header": "{{ dsoName }} साठी मेटाडेटा निर्यात करा", - // "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.info": "आपण {{ dsoName }} साठी मेटाडेटा निर्यात करू इच्छिता याची खात्री आहे का", - // "confirmation-modal.export-metadata.cancel": "Cancel", "confirmation-modal.export-metadata.cancel": "रद्द करा", - // "confirmation-modal.export-metadata.confirm": "Export", "confirmation-modal.export-metadata.confirm": "निर्यात करा", - // "confirmation-modal.export-batch.header": "Export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.header": "{{ dsoName }} साठी बॅच (ZIP) निर्यात करा", - // "confirmation-modal.export-batch.info": "Are you sure you want to export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.info": "आपण {{ dsoName }} साठी बॅच (ZIP) निर्यात करू इच्छिता याची खात्री आहे का", - // "confirmation-modal.export-batch.cancel": "Cancel", "confirmation-modal.export-batch.cancel": "रद्द करा", - // "confirmation-modal.export-batch.confirm": "Export", "confirmation-modal.export-batch.confirm": "निर्यात करा", - // "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.header": "EPerson \"{{ dsoName }}\" हटवा", - // "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.info": "आपण EPerson \"{{ dsoName }}\" हटवू इच्छिता याची खात्री आहे का", - // "confirmation-modal.delete-eperson.cancel": "Cancel", "confirmation-modal.delete-eperson.cancel": "रद्द करा", - // "confirmation-modal.delete-eperson.confirm": "Delete", "confirmation-modal.delete-eperson.confirm": "हटवा", - // "confirmation-modal.delete-community-collection-logo.info": "Are you sure you want to delete the logo?", "confirmation-modal.delete-community-collection-logo.info": "आपण लोगो हटवू इच्छिता याची खात्री आहे का?", - // "confirmation-modal.delete-profile.header": "Delete Profile", "confirmation-modal.delete-profile.header": "प्रोफाइल हटवा", - // "confirmation-modal.delete-profile.info": "Are you sure you want to delete your profile", "confirmation-modal.delete-profile.info": "आपण आपले प्रोफाइल हटवू इच्छिता याची खात्री आहे का", - // "confirmation-modal.delete-profile.cancel": "Cancel", "confirmation-modal.delete-profile.cancel": "रद्द करा", - // "confirmation-modal.delete-profile.confirm": "Delete", "confirmation-modal.delete-profile.confirm": "हटवा", - // "confirmation-modal.delete-subscription.header": "Delete Subscription", "confirmation-modal.delete-subscription.header": "सदस्यता हटवा", - // "confirmation-modal.delete-subscription.info": "Are you sure you want to delete subscription for \"{{ dsoName }}\"", "confirmation-modal.delete-subscription.info": "आपण \"{{ dsoName }}\" साठी सदस्यता हटवू इच्छिता याची खात्री आहे का", - // "confirmation-modal.delete-subscription.cancel": "Cancel", "confirmation-modal.delete-subscription.cancel": "रद्द करा", - // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "हटवा", - // "confirmation-modal.review-account-info.header": "Save the changes", "confirmation-modal.review-account-info.header": "बदल जतन करा", - // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", "confirmation-modal.review-account-info.info": "आपण आपल्या प्रोफाइलमध्ये बदल जतन करू इच्छिता याची खात्री आहे का", - // "confirmation-modal.review-account-info.cancel": "Cancel", "confirmation-modal.review-account-info.cancel": "रद्द करा", - // "confirmation-modal.review-account-info.confirm": "Confirm", "confirmation-modal.review-account-info.confirm": "पुष्टी करा", - // "confirmation-modal.review-account-info.save": "Save", "confirmation-modal.review-account-info.save": "जतन करा", - // "error.bitstream": "Error fetching bitstream", "error.bitstream": "बिटस्ट्रीम मिळवण्यात त्रुटी", - // "error.browse-by": "Error fetching items", "error.browse-by": "आयटम मिळवण्यात त्रुटी", - // "error.collection": "Error fetching collection", "error.collection": "संग्रह मिळवण्यात त्रुटी", - // "error.collections": "Error fetching collections", "error.collections": "संग्रह मिळवण्यात त्रुटी", - // "error.community": "Error fetching community", "error.community": "समुदाय मिळवण्यात त्रुटी", - // "error.identifier": "No item found for the identifier", "error.identifier": "ओळखकर्ता साठी कोणताही आयटम सापडला नाही", - // "error.default": "Error", "error.default": "त्रुटी", - // "error.item": "Error fetching item", "error.item": "आयटम मिळवण्यात त्रुटी", - // "error.items": "Error fetching items", "error.items": "आयटम मिळवण्यात त्रुटी", - // "error.objects": "Error fetching objects", "error.objects": "वस्तू मिळवण्यात त्रुटी", - // "error.recent-submissions": "Error fetching recent submissions", "error.recent-submissions": "अलीकडील सबमिशन मिळवण्यात त्रुटी", - // "error.profile-groups": "Error retrieving profile groups", "error.profile-groups": "प्रोफाइल गट मिळवण्यात त्रुटी", - // "error.search-results": "Error fetching search results", "error.search-results": "शोध परिणाम मिळवण्यात त्रुटी", - // "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", - // TODO New key - Add a translation - "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + "error.invalid-search-query": "शोध क्वेरी वैध नाही. कृपया अधिक माहितीसाठी Solr query syntax सर्वोत्तम पद्धती तपासा.", - // "error.sub-collections": "Error fetching sub-collections", "error.sub-collections": "उप-संग्रह मिळवण्यात त्रुटी", - // "error.sub-communities": "Error fetching sub-communities", "error.sub-communities": "उप-समुदाय मिळवण्यात त्रुटी", - // "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", - // TODO New key - Add a translation - "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + "error.submission.sections.init-form-error": "विभाग प्रारंभ करताना एक त्रुटी आली, कृपया आपल्या इनपुट-फॉर्म कॉन्फिगरेशन तपासा. तपशील खाली आहेत :

", - // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "शीर्ष-स्तरीय समुदाय मिळवण्यात त्रुटी", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "आपण आपले सबमिशन पूर्ण करण्यासाठी हा परवाना मंजूर करणे आवश्यक आहे. आपण सध्या हा परवाना मंजूर करण्यात अक्षम असल्यास आपण आपले कार्य जतन करू शकता आणि नंतर परत येऊ शकता किंवा सबमिशन काढून टाकू शकता.", - // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "आपण आपले सबमिशन पूर्ण करण्यासाठी हा cclicense मंजूर करणे आवश्यक आहे. आपण सध्या हा cclicense मंजूर करण्यात अक्षम असल्यास, आपण आपले कार्य जतन करू शकता आणि नंतर परत येऊ शकता किंवा सबमिशन काढून टाकू शकता.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + "error.validation.pattern": "हे इनपुट वर्तमान पॅटर्नद्वारे प्रतिबंधित आहे: {{ pattern }}.", - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", - // TODO New key - Add a translation - "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", - - // "error.validation.filerequired": "The file upload is mandatory", "error.validation.filerequired": "फाइल अपलोड अनिवार्य आहे", - // "error.validation.required": "This field is required", "error.validation.required": "हे क्षेत्र आवश्यक आहे", - // "error.validation.NotValidEmail": "This is not a valid email", "error.validation.NotValidEmail": "हे वैध ईमेल नाही", - // "error.validation.emailTaken": "This email is already taken", "error.validation.emailTaken": "हे ईमेल आधीच घेतले गेले आहे", - // "error.validation.groupExists": "This group already exists", "error.validation.groupExists": "हा गट आधीच अस्तित्वात आहे", - // "error.validation.metadata.name.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Element & Qualifier fields instead", "error.validation.metadata.name.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत. कृपया एलिमेंट आणि क्वालिफायर क्षेत्रे वापरा", - // "error.validation.metadata.name.max-length": "This field may not contain more than 32 characters", "error.validation.metadata.name.max-length": "या क्षेत्रात 32 वर्णांपेक्षा जास्त असू शकत नाहीत", - // "error.validation.metadata.namespace.max-length": "This field may not contain more than 256 characters", "error.validation.metadata.namespace.max-length": "या क्षेत्रात 256 वर्णांपेक्षा जास्त असू शकत नाहीत", - // "error.validation.metadata.element.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Qualifier field instead", "error.validation.metadata.element.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत. कृपया क्वालिफायर क्षेत्र वापरा", - // "error.validation.metadata.element.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.element.max-length": "या क्षेत्रात 64 वर्णांपेक्षा जास्त असू शकत नाहीत", - // "error.validation.metadata.qualifier.invalid-pattern": "This field cannot contain dots, commas or spaces", "error.validation.metadata.qualifier.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत", - // "error.validation.metadata.qualifier.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.qualifier.max-length": "या क्षेत्रात 64 वर्णांपेक्षा जास्त असू शकत नाहीत", - // "feed.description": "Syndication feed", "feed.description": "सिंडिकेशन फीड", - // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "प्रतिबंधित बिटस्ट्रीम", - // "file-download-link.secure-access": "Restricted bitstream available via secure access token", "file-download-link.secure-access": "प्रतिबंधित बिटस्ट्रीम सुरक्षित प्रवेश टोकनद्वारे उपलब्ध", - // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "या आयटमसाठी फाइल्स मिळवण्यात त्रुटी", - // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "कॉपीराइट © 2002-{{ year }}", - // "footer.link.accessibility": "Accessibility settings", - // TODO New key - Add a translation - "footer.link.accessibility": "Accessibility settings", - - // "footer.link.dspace": "DSpace software", "footer.link.dspace": "DSpace सॉफ्टवेअर", - // "footer.link.lyrasis": "LYRASIS", "footer.link.lyrasis": "LYRASIS", - // "footer.link.cookies": "Cookie settings", "footer.link.cookies": "कुकी सेटिंग्ज", - // "footer.link.privacy-policy": "Privacy policy", "footer.link.privacy-policy": "गोपनीयता धोरण", - // "footer.link.end-user-agreement": "End User Agreement", "footer.link.end-user-agreement": "अंतिम वापरकर्ता करार", - // "footer.link.feedback": "Send Feedback", "footer.link.feedback": "प्रतिक्रिया पाठवा", - // "footer.link.coar-notify-support": "COAR Notify", "footer.link.coar-notify-support": "COAR Notify", - // "forgot-email.form.header": "Forgot Password", "forgot-email.form.header": "पासवर्ड विसरलात", - // "forgot-email.form.info": "Enter the email address associated with the account.", "forgot-email.form.info": "खात्याशी संबंधित ईमेल पत्ता प्रविष्ट करा.", - // "forgot-email.form.email": "Email Address *", "forgot-email.form.email": "ईमेल पत्ता *", - // "forgot-email.form.email.error.required": "Please fill in an email address", "forgot-email.form.email.error.required": "कृपया ईमेल पत्ता भरा", - // "forgot-email.form.email.error.not-email-form": "Please fill in a valid email address", "forgot-email.form.email.error.not-email-form": "कृपया वैध ईमेल पत्ता भरा", - // "forgot-email.form.email.hint": "An email will be sent to this address with a further instructions.", "forgot-email.form.email.hint": "या पत्त्यावर पुढील सूचनांसह एक ईमेल पाठवला जाईल.", - // "forgot-email.form.submit": "Reset password", "forgot-email.form.submit": "पासवर्ड रीसेट करा", - // "forgot-email.form.success.head": "Password reset email sent", "forgot-email.form.success.head": "पासवर्ड रीसेट ईमेल पाठवला", - // "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "forgot-email.form.success.content": "{{ email }} वर एक विशेष URL आणि पुढील सूचनांसह एक ईमेल पाठवला गेला आहे.", - // "forgot-email.form.error.head": "Error when trying to reset password", "forgot-email.form.error.head": "पासवर्ड रीसेट करण्याचा प्रयत्न करताना त्रुटी", - // "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", - // TODO New key - Add a translation - "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + "forgot-email.form.error.content": "खालील ईमेल पत्त्यासह संबंधित खात्यासाठी पासवर्ड रीसेट करण्याचा प्रयत्न करताना एक त्रुटी आली: {{ email }}", - // "forgot-password.title": "Forgot Password", "forgot-password.title": "पासवर्ड विसरलात", - // "forgot-password.form.head": "Forgot Password", "forgot-password.form.head": "पासवर्ड विसरलात", - // "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box.", "forgot-password.form.info": "खालील बॉक्समध्ये नवीन पासवर्ड प्रविष्ट करा आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करा.", - // "forgot-password.form.card.security": "Security", "forgot-password.form.card.security": "सुरक्षा", - // "forgot-password.form.identification.header": "Identify", "forgot-password.form.identification.header": "ओळख", - // "forgot-password.form.identification.email": "Email address: ", - // TODO New key - Add a translation - "forgot-password.form.identification.email": "Email address: ", + "forgot-password.form.identification.email": "ईमेल पत्ता: ", - // "forgot-password.form.label.password": "Password", "forgot-password.form.label.password": "पासवर्ड", - // "forgot-password.form.label.passwordrepeat": "Retype to confirm", "forgot-password.form.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा", - // "forgot-password.form.error.empty-password": "Please enter a password in the boxes above.", "forgot-password.form.error.empty-password": "कृपया वरील बॉक्समध्ये पासवर्ड प्रविष्ट करा.", - // "forgot-password.form.error.matching-passwords": "The passwords do not match.", "forgot-password.form.error.matching-passwords": "पासवर्ड जुळत नाहीत.", - // "forgot-password.form.notification.error.title": "Error when trying to submit new password", "forgot-password.form.notification.error.title": "नवीन पासवर्ड सबमिट करण्याचा प्रयत्न करताना त्रुटी", - // "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.", "forgot-password.form.notification.success.content": "पासवर्ड रीसेट यशस्वी झाला. आपण तयार केलेल्या वापरकर्त्याच्या रूपात लॉग इन केले गेले आहे.", - // "forgot-password.form.notification.success.title": "Password reset completed", "forgot-password.form.notification.success.title": "पासवर्ड रीसेट पूर्ण", - // "forgot-password.form.submit": "Submit password", "forgot-password.form.submit": "पासवर्ड सबमिट करा", - // "form.add": "Add more", "form.add": "अधिक जोडा", - // "form.add-help": "Click here to add the current entry and to add another one", "form.add-help": "सध्याची नोंदणी जोडा आणि आणखी एक जोडा", - // "form.cancel": "Cancel", "form.cancel": "रद्द करा", - // "form.clear": "Clear", "form.clear": "साफ करा", - // "form.clear-help": "Click here to remove the selected value", "form.clear-help": "निवडलेले मूल्य काढण्यासाठी येथे क्लिक करा", - // "form.discard": "Discard", "form.discard": "काढून टाका", - // "form.drag": "Drag", "form.drag": "ओढा", - // "form.edit": "Edit", "form.edit": "संपादित करा", - // "form.edit-help": "Click here to edit the selected value", "form.edit-help": "निवडलेले मूल्य संपादित करण्यासाठी येथे क्लिक करा", - // "form.first-name": "First name", "form.first-name": "पहिले नाव", - // "form.group-collapse": "Collapse", "form.group-collapse": "संकुचित करा", - // "form.group-collapse-help": "Click here to collapse", "form.group-collapse-help": "संकुचित करण्यासाठी येथे क्लिक करा", - // "form.group-expand": "Expand", "form.group-expand": "विस्तृत करा", - // "form.group-expand-help": "Click here to expand and add more elements", "form.group-expand-help": "विस्तृत करण्यासाठी आणि अधिक घटक जोडण्यासाठी येथे क्लिक करा", - // "form.last-name": "Last name", "form.last-name": "शेवटचे नाव", - // "form.loading": "Loading...", "form.loading": "लोड करत आहे...", - // "form.lookup": "Lookup", "form.lookup": "शोधा", - // "form.lookup-help": "Click here to look up an existing relation", "form.lookup-help": "विद्यमान संबंध शोधण्यासाठी येथे क्लिक करा", - // "form.no-results": "No results found", "form.no-results": "कोणतेही परिणाम सापडले नाहीत", - // "form.no-value": "No value entered", "form.no-value": "कोणतेही मूल्य प्रविष्ट केले नाही", - // "form.other-information.email": "Email", "form.other-information.email": "ईमेल", - // "form.other-information.first-name": "First Name", "form.other-information.first-name": "पहिले नाव", - // "form.other-information.insolr": "In Solr Index", "form.other-information.insolr": "Solr अनुक्रमणिकेत", - // "form.other-information.institution": "Institution", "form.other-information.institution": "संस्था", - // "form.other-information.last-name": "Last Name", "form.other-information.last-name": "शेवटचे नाव", - // "form.other-information.orcid": "ORCID", "form.other-information.orcid": "ORCID", - // "form.remove": "Remove", "form.remove": "काढा", - // "form.save": "Save", "form.save": "जतन करा", - // "form.save-help": "Save changes", "form.save-help": "बदल जतन करा", - // "form.search": "Search", "form.search": "शोधा", - // "form.search-help": "Click here to look for an existing correspondence", "form.search-help": "विद्यमान पत्रव्यवहार शोधण्यासाठी येथे क्लिक करा", - // "form.submit": "Save", "form.submit": "जतन करा", - // "form.create": "Create", "form.create": "तयार करा", - // "form.number-picker.decrement": "Decrement {{field}}", "form.number-picker.decrement": "{{field}} कमी करा", - // "form.number-picker.increment": "Increment {{field}}", "form.number-picker.increment": "{{field}} वाढवा", - // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "आयटम नवीन स्थितीत ड्रॉप करा", - // "grant-deny-request-copy.deny": "Deny access request", "grant-deny-request-copy.deny": "प्रवेश विनंती नकारा", - // "grant-deny-request-copy.revoke": "Revoke access", "grant-deny-request-copy.revoke": "प्रवेश रद्द करा", - // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "मागे", - // "grant-deny-request-copy.email.message": "Optional additional message", "grant-deny-request-copy.email.message": "ऐच्छिक अतिरिक्त संदेश", - // "grant-deny-request-copy.email.message.empty": "Please enter a message", "grant-deny-request-copy.email.message.empty": "कृपया एक संदेश प्रविष्ट करा", - // "grant-deny-request-copy.email.permissions.info": "You may use this occasion to reconsider the access restrictions on the document, to avoid having to respond to these requests. If you’d like to ask the repository administrators to remove these restrictions, please check the box below.", "grant-deny-request-copy.email.permissions.info": "या विनंत्यांना प्रतिसाद देण्याची आवश्यकता टाळण्यासाठी, आपण दस्तऐवजावरील प्रवेश निर्बंधांचा पुनर्विचार करण्यासाठी ही संधी वापरू शकता. आपण रेपॉझिटरी प्रशासकांना हे निर्बंध काढून टाकण्याची विनंती करू इच्छित असल्यास, कृपया खालील बॉक्स तपासा.", - // "grant-deny-request-copy.email.permissions.label": "Change to open access", "grant-deny-request-copy.email.permissions.label": "मुक्त प्रवेशात बदला", - // "grant-deny-request-copy.email.send": "Send", "grant-deny-request-copy.email.send": "पाठवा", - // "grant-deny-request-copy.email.subject": "Subject", "grant-deny-request-copy.email.subject": "विषय", - // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "कृपया एक विषय प्रविष्ट करा", - // "grant-deny-request-copy.grant": "Grant access request", "grant-deny-request-copy.grant": "प्रवेश विनंती मंजूर करा", - // "grant-deny-request-copy.header": "Document copy request", "grant-deny-request-copy.header": "दस्तऐवज प्रत विनंती", - // "grant-deny-request-copy.home-page": "Take me to the home page", "grant-deny-request-copy.home-page": "मला मुख्य पृष्ठावर घेऊन जा", - // "grant-deny-request-copy.intro1": "If you are one of the authors of the document {{ name }}, then please use one of the options below to respond to the user's request.", "grant-deny-request-copy.intro1": "आपण दस्तऐवजाच्या लेखकांपैकी एक असल्यास {{ name }}, कृपया वापरकर्त्याच्या विनंतीला प्रतिसाद देण्यासाठी खालील पर्यायांपैकी एक वापरा.", - // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "पर्याय निवडल्यानंतर, आपल्याला सुचवलेले ईमेल उत्तर सादर केले जाईल जे आपण संपादित करू शकता.", - // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", "grant-deny-request-copy.previous-decision": "ही विनंती पूर्वी सुरक्षित प्रवेश टोकनसह मंजूर केली गेली होती. आपण आता हा प्रवेश रद्द करू शकता जेणेकरून प्रवेश टोकन त्वरित अमान्य होईल", - // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "ही विनंती आधीच प्रक्रिया केली गेली आहे. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", - // "grant-request-copy.email.subject": "Request copy of document", "grant-request-copy.email.subject": "दस्तऐवजाची प्रत विनंती", - // "grant-request-copy.error": "An error occurred", "grant-request-copy.error": "एक त्रुटी आली", - // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "दस्तऐवज प्रत विनंती मंजूर करा", - // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", "grant-request-copy.intro.attachment": "विनंतीच्या अर्जदाराला एक संदेश पाठवला जाईल. विनंती केलेले दस्तऐवज जोडले जातील.", - // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", "grant-request-copy.intro.link": "विनंतीच्या अर्जदाराला एक संदेश पाठवला जाईल. विनंती केलेल्या दस्तऐवजांना प्रवेश देणारा एक सुरक्षित दुवा जोडला जाईल. खालील \"प्रवेश कालावधी\" मेनूमध्ये निवडलेल्या कालावधीसाठी दुवा प्रवेश प्रदान करेल.", - // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", - // TODO New key - Add a translation - "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + "grant-request-copy.intro.link.preview": "खाली अर्जदाराला पाठवला जाणारा दुव्याचा पूर्वावलोकन आहे:", - // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "आयटम विनंती यशस्वीरित्या मंजूर केली", - // "grant-request-copy.access-period.header": "Access period", "grant-request-copy.access-period.header": "प्रवेश कालावधी", - // "grant-request-copy.access-period.+1DAY": "1 day", "grant-request-copy.access-period.+1DAY": "1 दिवस", - // "grant-request-copy.access-period.+7DAYS": "1 week", "grant-request-copy.access-period.+7DAYS": "1 आठवडा", - // "grant-request-copy.access-period.+1MONTH": "1 month", "grant-request-copy.access-period.+1MONTH": "1 महिना", - // "grant-request-copy.access-period.+3MONTHS": "3 months", "grant-request-copy.access-period.+3MONTHS": "3 महिने", - // "grant-request-copy.access-period.FOREVER": "Forever", "grant-request-copy.access-period.FOREVER": "सर्वकाळ", - // "health.breadcrumbs": "Health", "health.breadcrumbs": "आरोग्य", - // "health-page.heading": "Health", "health-page.heading": "आरोग्य", - // "health-page.info-tab": "Info", "health-page.info-tab": "माहिती", - // "health-page.status-tab": "Status", "health-page.status-tab": "स्थिती", - // "health-page.error.msg": "The health check service is temporarily unavailable", "health-page.error.msg": "आरोग्य तपासणी सेवा तात्पुरती अनुपलब्ध आहे", - // "health-page.property.status": "Status code", "health-page.property.status": "स्थिती कोड", - // "health-page.section.db.title": "Database", "health-page.section.db.title": "डेटाबेस", - // "health-page.section.geoIp.title": "GeoIp", "health-page.section.geoIp.title": "GeoIp", - // "health-page.section.solrAuthorityCore.title": "Solr: authority core", "health-page.section.solrAuthorityCore.title": "Solr: authority core", - // "health-page.section.solrOaiCore.title": "Solr: oai core", "health-page.section.solrOaiCore.title": "Solr: oai core", - // "health-page.section.solrSearchCore.title": "Solr: search core", "health-page.section.solrSearchCore.title": "Solr: search core", - // "health-page.section.solrStatisticsCore.title": "Solr: statistics core", "health-page.section.solrStatisticsCore.title": "Solr: statistics core", - // "health-page.section-info.app.title": "Application Backend", "health-page.section-info.app.title": "अॅप्लिकेशन बॅकएंड", - // "health-page.section-info.java.title": "Java", "health-page.section-info.java.title": "Java", - // "health-page.status": "Status", "health-page.status": "स्थिती", - // "health-page.status.ok.info": "Operational", "health-page.status.ok.info": "ऑपरेशनल", - // "health-page.status.error.info": "Problems detected", "health-page.status.error.info": "समस्या आढळल्या", - // "health-page.status.warning.info": "Possible issues detected", "health-page.status.warning.info": "संभाव्य समस्या आढळल्या", - // "health-page.title": "Health", "health-page.title": "आरोग्य", - // "health-page.section.no-issues": "No issues detected", "health-page.section.no-issues": "कोणत्याही समस्या आढळल्या नाहीत", - // "home.description": "", "home.description": "", - // "home.breadcrumbs": "Home", "home.breadcrumbs": "मुख्य पृष्ठ", - // "home.search-form.placeholder": "Search the repository ...", "home.search-form.placeholder": "रेपॉझिटरी शोधा ...", - // "home.title": "Home", "home.title": "मुख्य पृष्ठ", - // "home.top-level-communities.head": "Communities in DSpace", "home.top-level-communities.head": "DSpace मधील समुदाय", - // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "त्याच्या संग्रह ब्राउझ करण्यासाठी एक समुदाय निवडा.", - // "info.accessibility-settings.breadcrumbs": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.breadcrumbs": "Accessibility settings", - - // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - // TODO New key - Add a translation - "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - - // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - - // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - - // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - - // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - // TODO New key - Add a translation - "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - - // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - - // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - - // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - - // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - - // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - - // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - - // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - - // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - - // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - - // "info.accessibility-settings.reset-notification": "Successfully reset settings.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-notification": "Successfully reset settings.", - - // "info.accessibility-settings.reset": "Reset accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.reset": "Reset accessibility settings", - - // "info.accessibility-settings.submit": "Save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.submit": "Save accessibility settings", - - // "info.accessibility-settings.title": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.title": "Accessibility settings", - - // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "मी अंतिम वापरकर्ता करार वाचला आहे आणि मी सहमत आहे", - // "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement", "info.end-user-agreement.accept.error": "अंतिम वापरकर्ता करार स्वीकारताना एक त्रुटी आली", - // "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement", "info.end-user-agreement.accept.success": "अंतिम वापरकर्ता करार यशस्वीरित्या अद्यतनित केला", - // "info.end-user-agreement.breadcrumbs": "End User Agreement", "info.end-user-agreement.breadcrumbs": "अंतिम वापरकर्ता करार", - // "info.end-user-agreement.buttons.cancel": "Cancel", "info.end-user-agreement.buttons.cancel": "रद्द करा", - // "info.end-user-agreement.buttons.save": "Save", "info.end-user-agreement.buttons.save": "जतन करा", - // "info.end-user-agreement.head": "End User Agreement", "info.end-user-agreement.head": "अंतिम वापरकर्ता करार", - // "info.end-user-agreement.title": "End User Agreement", "info.end-user-agreement.title": "अंतिम वापरकर्ता करार", - // "info.end-user-agreement.hosting-country": "the United States", "info.end-user-agreement.hosting-country": "संयुक्त राज्ये", - // "info.privacy.breadcrumbs": "Privacy Statement", "info.privacy.breadcrumbs": "गोपनीयता विधान", - // "info.privacy.head": "Privacy Statement", "info.privacy.head": "गोपनीयता विधान", - // "info.privacy.title": "Privacy Statement", "info.privacy.title": "गोपनीयता विधान", - // "info.feedback.breadcrumbs": "Feedback", "info.feedback.breadcrumbs": "प्रतिक्रिया", - // "info.feedback.head": "Feedback", "info.feedback.head": "प्रतिक्रिया", - // "info.feedback.title": "Feedback", "info.feedback.title": "प्रतिक्रिया", - // "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!", "info.feedback.info": "DSpace प्रणालीबद्दल आपली प्रतिक्रिया सामायिक केल्याबद्दल धन्यवाद. आपली टिप्पण्या कौतुकास्पद आहेत!", - // "info.feedback.email_help": "This address will be used to follow up on your feedback.", "info.feedback.email_help": "आपल्या प्रतिक्रियेवर फॉलो अप करण्यासाठी हा पत्ता वापरला जाईल.", - // "info.feedback.send": "Send Feedback", "info.feedback.send": "प्रतिक्रिया पाठवा", - // "info.feedback.comments": "Comments", "info.feedback.comments": "टिप्पण्या", - // "info.feedback.email-label": "Your Email", "info.feedback.email-label": "आपला ईमेल", - // "info.feedback.create.success": "Feedback Sent Successfully!", "info.feedback.create.success": "प्रतिक्रिया यशस्वीरित्या पाठवली!", - // "info.feedback.error.email.required": "A valid email address is required", "info.feedback.error.email.required": "वैध ईमेल पत्ता आवश्यक आहे", - // "info.feedback.error.message.required": "A comment is required", "info.feedback.error.message.required": "एक टिप्पणी आवश्यक आहे", - // "info.feedback.page-label": "Page", "info.feedback.page-label": "पृष्ठ", - // "info.feedback.page_help": "The page related to your feedback", "info.feedback.page_help": "आपल्या प्रतिक्रिये संबंधित पृष्ठ", - // "info.coar-notify-support.title": "COAR Notify Support", "info.coar-notify-support.title": "COAR Notify समर्थन", - // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "COAR Notify समर्थन", - // "item.alerts.private": "This item is non-discoverable", "item.alerts.private": "हा आयटम शोधण्यायोग्य नाही", - // "item.alerts.withdrawn": "This item has been withdrawn", "item.alerts.withdrawn": "हा आयटम मागे घेतला गेला आहे", - // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "पुनर्स्थितीची विनंती करा", - // "quality-assurance.event.table.person-who-requested": "Requested by", "quality-assurance.event.table.person-who-requested": "विनंती केलेले", - // "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", - // TODO New key - Add a translation - "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + "item.edit.authorizations.heading": "या संपादकासह आपण आयटमच्या धोरणांचे दृश्य आणि बदल करू शकता, तसेच वैयक्तिक आयटम घटकांचे धोरण बदलू शकता: बंडल्स आणि बिटस्ट्रीम्स. थोडक्यात, एक आयटम बंडल्सचा कंटेनर आहे, आणि बंडल्स बिटस्ट्रीम्सचे कंटेनर आहेत. कंटेनरमध्ये सहसा ADD/REMOVE/READ/WRITE धोरणे असतात, तर बिटस्ट्रीम्समध्ये फक्त READ/WRITE धोरणे असतात.", - // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "आयटमचे धोरणे संपादित करा", - // "item.badge.status": "Item status:", - // TODO New key - Add a translation - "item.badge.status": "Item status:", - - // "item.badge.private": "Non-discoverable", "item.badge.private": "शोधण्यायोग्य नाही", - // "item.badge.withdrawn": "Withdrawn", "item.badge.withdrawn": "मागे घेतले", - // "item.bitstreams.upload.bundle": "Bundle", "item.bitstreams.upload.bundle": "बंडल", - // "item.bitstreams.upload.bundle.placeholder": "Select a bundle or input new bundle name", "item.bitstreams.upload.bundle.placeholder": "एक बंडल निवडा किंवा नवीन बंडल नाव प्रविष्ट करा", - // "item.bitstreams.upload.bundle.new": "Create bundle", "item.bitstreams.upload.bundle.new": "बंडल तयार करा", - // "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.", "item.bitstreams.upload.bundles.empty": "या आयटममध्ये बिटस्ट्रीम अपलोड करण्यासाठी कोणतेही बंडल नाहीत.", - // "item.bitstreams.upload.cancel": "Cancel", "item.bitstreams.upload.cancel": "रद्द करा", - // "item.bitstreams.upload.drop-message": "Drop a file to upload", "item.bitstreams.upload.drop-message": "फाइल अपलोड करण्यासाठी ड्रॉप करा", - // "item.bitstreams.upload.item": "Item: ", - // TODO New key - Add a translation - "item.bitstreams.upload.item": "Item: ", + "item.bitstreams.upload.item": "आयटम: ", - // "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.", "item.bitstreams.upload.notifications.bundle.created.content": "नवीन बंडल यशस्वीरित्या तयार केले.", - // "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle", "item.bitstreams.upload.notifications.bundle.created.title": "बंडल तयार केले", - // "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.", "item.bitstreams.upload.notifications.upload.failed": "अपलोड अयशस्वी. कृपया सामग्री सत्यापित करा आणि पुन्हा प्रयत्न करा.", - // "item.bitstreams.upload.title": "Upload bitstream", "item.bitstreams.upload.title": "बिटस्ट्रीम अपलोड करा", - // "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload", "item.edit.bitstreams.bundle.edit.buttons.upload": "अपलोड करा", - // "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.", "item.edit.bitstreams.bundle.displaying": "सध्या {{ amount }} बिटस्ट्रीम्स {{ total }} पैकी प्रदर्शित करत आहे.", - // "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})", "item.edit.bitstreams.bundle.load.all": "सर्व लोड करा ({{ total }})", - // "item.edit.bitstreams.bundle.load.more": "Load more", "item.edit.bitstreams.bundle.load.more": "अधिक लोड करा", - // "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", - // TODO New key - Add a translation - "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + "item.edit.bitstreams.bundle.name": "बंडल: {{ name }}", - // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle", "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} बंडलमधील बिटस्ट्रीम्स", - // "item.edit.bitstreams.bundle.tooltip": "You can move a bitstream to a different page by dropping it on the page number.", "item.edit.bitstreams.bundle.tooltip": "आपण बिटस्ट्रीमला पृष्ठ क्रमांकावर ड्रॉप करून वेगळ्या पृष्ठावर हलवू शकता.", - // "item.edit.bitstreams.discard-button": "Discard", "item.edit.bitstreams.discard-button": "काढून टाका", - // "item.edit.bitstreams.edit.buttons.download": "Download", "item.edit.bitstreams.edit.buttons.download": "डाउनलोड करा", - // "item.edit.bitstreams.edit.buttons.drag": "Drag", "item.edit.bitstreams.edit.buttons.drag": "ओढा", - // "item.edit.bitstreams.edit.buttons.edit": "Edit", "item.edit.bitstreams.edit.buttons.edit": "संपादित करा", - // "item.edit.bitstreams.edit.buttons.remove": "Remove", "item.edit.bitstreams.edit.buttons.remove": "काढा", - // "item.edit.bitstreams.edit.buttons.undo": "Undo changes", "item.edit.bitstreams.edit.buttons.undo": "बदल पूर्ववत करा", - // "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} was returned to position {{ toIndex }} and is no longer selected.", "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} परत {{ toIndex }} स्थितीत आणले गेले आहे आणि आता निवडलेले नाही.", - // "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} is no longer selected.", "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} आता निवडलेले नाही.", - // "item.edit.bitstreams.edit.live.loading": "Waiting for move to complete.", "item.edit.bitstreams.edit.live.loading": "हलविण्याची प्रक्रिया पूर्ण होण्याची प्रतीक्षा करत आहे.", - // "item.edit.bitstreams.edit.live.select": "{{ bitstream }} is selected.", "item.edit.bitstreams.edit.live.select": "{{ bitstream }} निवडले गेले आहे.", - // "item.edit.bitstreams.edit.live.move": "{{ bitstream }} is now in position {{ toIndex }}.", "item.edit.bitstreams.edit.live.move": "{{ bitstream }} आता {{ toIndex }} स्थितीत आहे.", - // "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.", "item.edit.bitstreams.empty": "या आयटममध्ये कोणतेही बिटस्ट्रीम नाहीत. एक तयार करण्यासाठी अपलोड बटणावर क्लिक करा.", - // "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", - // TODO New key - Add a translation - "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + "item.edit.bitstreams.info-alert": "बिटस्ट्रीम त्यांच्या बंडलमध्ये पुन्हा क्रमित केले जाऊ शकतात. ड्रॅग हँडल धरून आणि माउस हलवून. पर्यायाने, बिटस्ट्रीम कीबोर्ड वापरून हलविले जाऊ शकतात. बिटस्ट्रीमचे ड्रॅग हँडल फोकसमध्ये असताना एंटर दाबून बिटस्ट्रीम निवडा. बिटस्ट्रीम वर किंवा खाली हलविण्यासाठी बाण की वापरा. बिटस्ट्रीमची वर्तमान स्थिती पुष्टी करण्यासाठी पुन्हा एंटर दाबा.", - // "item.edit.bitstreams.headers.actions": "Actions", "item.edit.bitstreams.headers.actions": "क्रिया", - // "item.edit.bitstreams.headers.bundle": "Bundle", "item.edit.bitstreams.headers.bundle": "बंडल", - // "item.edit.bitstreams.headers.description": "Description", "item.edit.bitstreams.headers.description": "वर्णन", - // "item.edit.bitstreams.headers.format": "Format", "item.edit.bitstreams.headers.format": "फॉरमॅट", - // "item.edit.bitstreams.headers.name": "Name", "item.edit.bitstreams.headers.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": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", - // "item.edit.bitstreams.notifications.discarded.title": "Changes discarded", "item.edit.bitstreams.notifications.discarded.title": "बदल रद्द केले", - // "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams", "item.edit.bitstreams.notifications.move.failed.title": "बिटस्ट्रीम हलविण्यात त्रुटी", - // "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": "या आयटमच्या बिटस्ट्रीम आणि बंडलमध्ये आपले हलविण्याचे बदल जतन केले गेले आहेत.", - // "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved", "item.edit.bitstreams.notifications.move.saved.title": "हलविण्याचे बदल जतन केले", - // "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": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", - // "item.edit.bitstreams.notifications.outdated.title": "Changes outdated", "item.edit.bitstreams.notifications.outdated.title": "बदल कालबाह्य झाले", - // "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream", "item.edit.bitstreams.notifications.remove.failed.title": "बिटस्ट्रीम हटविण्यात त्रुटी", - // "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": "या आयटमच्या बिटस्ट्रीम हटविण्याचे बदल जतन केले गेले आहेत.", - // "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved", "item.edit.bitstreams.notifications.remove.saved.title": "हटविण्याचे बदल जतन केले", - // "item.edit.bitstreams.reinstate-button": "Undo", "item.edit.bitstreams.reinstate-button": "पूर्ववत करा", - // "item.edit.bitstreams.save-button": "Save", "item.edit.bitstreams.save-button": "जतन करा", - // "item.edit.bitstreams.upload-button": "Upload", "item.edit.bitstreams.upload-button": "अपलोड करा", - // "item.edit.bitstreams.load-more.link": "Load more", "item.edit.bitstreams.load-more.link": "अधिक लोड करा", - // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "रद्द करा", - // "item.edit.delete.confirm": "Delete", "item.edit.delete.confirm": "हटवा", - // "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", - // TODO New key - Add a translation - "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + "item.edit.delete.description": "आपण खात्री आहात की हा आयटम पूर्णपणे हटविला जावा? सावधानता: सध्या, कोणतेही टॉम्बस्टोन शिल्लक राहणार नाही.", - // "item.edit.delete.error": "An error occurred while deleting the item", "item.edit.delete.error": "आयटम हटविताना त्रुटी आली", - // "item.edit.delete.header": "Delete item: {{ id }}", - // TODO New key - Add a translation - "item.edit.delete.header": "Delete item: {{ id }}", + "item.edit.delete.header": "आयटम हटवा: {{ id }}", - // "item.edit.delete.success": "The item has been deleted", "item.edit.delete.success": "आयटम हटविला गेला आहे", - // "item.edit.head": "Edit Item", "item.edit.head": "आयटम संपादित करा", - // "item.edit.breadcrumbs": "Edit Item", "item.edit.breadcrumbs": "आयटम संपादित करा", - // "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab", "item.edit.tabs.disabled.tooltip": "आपल्याला या टॅबमध्ये प्रवेश करण्याची परवानगी नाही", - // "item.edit.tabs.mapper.head": "Collection Mapper", "item.edit.tabs.mapper.head": "संग्रह मॅपर", - // "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper", "item.edit.tabs.item-mapper.title": "आयटम संपादन - संग्रह मॅपर", - // "item.edit.identifiers.doi.status.UNKNOWN": "Unknown", "item.edit.identifiers.doi.status.UNKNOWN": "अज्ञात", - // "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "Queued for registration", "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "नोंदणीसाठी रांगेत", - // "item.edit.identifiers.doi.status.TO_BE_RESERVED": "Queued for reservation", "item.edit.identifiers.doi.status.TO_BE_RESERVED": "आरक्षणासाठी रांगेत", - // "item.edit.identifiers.doi.status.IS_REGISTERED": "Registered", "item.edit.identifiers.doi.status.IS_REGISTERED": "नोंदणीकृत", - // "item.edit.identifiers.doi.status.IS_RESERVED": "Reserved", "item.edit.identifiers.doi.status.IS_RESERVED": "आरक्षित", - // "item.edit.identifiers.doi.status.UPDATE_RESERVED": "Reserved (update queued)", "item.edit.identifiers.doi.status.UPDATE_RESERVED": "आरक्षित (अपडेट रांगेत)", - // "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Registered (update queued)", "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "नोंदणीकृत (अपडेट रांगेत)", - // "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "Queued for update and registration", "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "अपडेट आणि नोंदणीसाठी रांगेत", - // "item.edit.identifiers.doi.status.TO_BE_DELETED": "Queued for deletion", "item.edit.identifiers.doi.status.TO_BE_DELETED": "हटविण्यासाठी रांगेत", - // "item.edit.identifiers.doi.status.DELETED": "Deleted", "item.edit.identifiers.doi.status.DELETED": "हटविले", - // "item.edit.identifiers.doi.status.PENDING": "Pending (not registered)", "item.edit.identifiers.doi.status.PENDING": "प्रलंबित (नोंदणीकृत नाही)", - // "item.edit.identifiers.doi.status.MINTED": "Minted (not registered)", "item.edit.identifiers.doi.status.MINTED": "मिंटेड (नोंदणीकृत नाही)", - // "item.edit.tabs.status.buttons.register-doi.label": "Register a new or pending DOI", "item.edit.tabs.status.buttons.register-doi.label": "नवीन किंवा प्रलंबित DOI नोंदणी करा", - // "item.edit.tabs.status.buttons.register-doi.button": "Register DOI...", "item.edit.tabs.status.buttons.register-doi.button": "DOI नोंदणी करा...", - // "item.edit.register-doi.header": "Register a new or pending DOI", "item.edit.register-doi.header": "नवीन किंवा प्रलंबित DOI नोंदणी करा", - // "item.edit.register-doi.description": "Review any pending identifiers and item metadata below and click Confirm to proceed with DOI registration, or Cancel to back out", "item.edit.register-doi.description": "खाली कोणतेही प्रलंबित ओळखपत्रे आणि आयटम मेटाडेटा पुनरावलोकन करा आणि DOI नोंदणीसाठी पुढे जाण्यासाठी पुष्टी करा क्लिक करा, किंवा मागे जाण्यासाठी रद्द करा", - // "item.edit.register-doi.confirm": "Confirm", "item.edit.register-doi.confirm": "पुष्टी करा", - // "item.edit.register-doi.cancel": "Cancel", "item.edit.register-doi.cancel": "रद्द करा", - // "item.edit.register-doi.success": "DOI queued for registration successfully.", "item.edit.register-doi.success": "DOI नोंदणीसाठी यशस्वीरित्या रांगेत लावले.", - // "item.edit.register-doi.error": "Error registering DOI", "item.edit.register-doi.error": "DOI नोंदणी करताना त्रुटी", - // "item.edit.register-doi.to-update": "The following DOI has already been minted and will be queued for registration online", "item.edit.register-doi.to-update": "खालील DOI आधीच मिंटेड आहे आणि ऑनलाइन नोंदणीसाठी रांगेत लावले जाईल", - // "item.edit.item-mapper.buttons.add": "Map item to selected collections", "item.edit.item-mapper.buttons.add": "निवडलेल्या संग्रहांमध्ये आयटम मॅप करा", - // "item.edit.item-mapper.buttons.remove": "Remove item's mapping for selected collections", "item.edit.item-mapper.buttons.remove": "निवडलेल्या संग्रहांसाठी आयटमचे मॅपिंग काढा", - // "item.edit.item-mapper.cancel": "Cancel", "item.edit.item-mapper.cancel": "रद्द करा", - // "item.edit.item-mapper.description": "This is the item mapper tool that allows administrators to map this item to other collections. You can search for collections and map them, or browse the list of collections the item is currently mapped to.", "item.edit.item-mapper.description": "हे आयटम मॅपर साधन आहे जे प्रशासकांना या आयटमला इतर संग्रहांमध्ये मॅप करण्याची परवानगी देते. आपण संग्रह शोधू शकता आणि त्यांना मॅप करू शकता, किंवा आयटम सध्या मॅप केलेल्या संग्रहांची यादी ब्राउझ करू शकता.", - // "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections", "item.edit.item-mapper.head": "आयटम मॅपर - आयटम संग्रहांमध्ये मॅप करा", - // "item.edit.item-mapper.item": "Item: \"{{name}}\"", - // TODO New key - Add a translation - "item.edit.item-mapper.item": "Item: \"{{name}}\"", + "item.edit.item-mapper.item": "आयटम: \"{{name}}\"", - // "item.edit.item-mapper.no-search": "Please enter a query to search", "item.edit.item-mapper.no-search": "शोधण्यासाठी क्वेरी प्रविष्ट करा", - // "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": "{{amount}} संग्रहांसाठी आयटम मॅपिंगमध्ये त्रुटी आल्या.", - // "item.edit.item-mapper.notifications.add.error.head": "Mapping errors", "item.edit.item-mapper.notifications.add.error.head": "मॅपिंग त्रुटी", - // "item.edit.item-mapper.notifications.add.success.content": "Successfully mapped item to {{amount}} collections.", "item.edit.item-mapper.notifications.add.success.content": "{{amount}} संग्रहांमध्ये आयटम यशस्वीरित्या मॅप केले.", - // "item.edit.item-mapper.notifications.add.success.head": "Mapping completed", "item.edit.item-mapper.notifications.add.success.head": "मॅपिंग पूर्ण झाले", - // "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.error.content": "{{amount}} संग्रहांसाठी मॅपिंग काढताना त्रुटी आल्या.", - // "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors", "item.edit.item-mapper.notifications.remove.error.head": "मॅपिंग काढण्याच्या त्रुटी", - // "item.edit.item-mapper.notifications.remove.success.content": "Successfully removed mapping of item to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.success.content": "{{amount}} संग्रहांमधून आयटमचे मॅपिंग यशस्वीरित्या काढले.", - // "item.edit.item-mapper.notifications.remove.success.head": "Removal of mapping completed", "item.edit.item-mapper.notifications.remove.success.head": "मॅपिंग काढणे पूर्ण झाले", - // "item.edit.item-mapper.search-form.placeholder": "Search collections...", "item.edit.item-mapper.search-form.placeholder": "संग्रह शोधा...", - // "item.edit.item-mapper.tabs.browse": "Browse mapped collections", "item.edit.item-mapper.tabs.browse": "मॅप केलेले संग्रह ब्राउझ करा", - // "item.edit.item-mapper.tabs.map": "Map new collections", "item.edit.item-mapper.tabs.map": "नवीन संग्रह मॅप करा", - // "item.edit.metadata.add-button": "Add", "item.edit.metadata.add-button": "जोडा", - // "item.edit.metadata.discard-button": "Discard", "item.edit.metadata.discard-button": "रद्द करा", - // "item.edit.metadata.edit.language": "Edit language", "item.edit.metadata.edit.language": "भाषा संपादित करा", - // "item.edit.metadata.edit.value": "Edit value", "item.edit.metadata.edit.value": "मूल्य संपादित करा", - // "item.edit.metadata.edit.authority.key": "Edit authority key", "item.edit.metadata.edit.authority.key": "प्राधिकरण की संपादित करा", - // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", "item.edit.metadata.edit.buttons.enable-free-text-editing": "फ्री-टेक्स्ट संपादन सक्षम करा", - // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", "item.edit.metadata.edit.buttons.disable-free-text-editing": "फ्री-टेक्स्ट संपादन अक्षम करा", - // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "पुष्टी करा", - // "item.edit.metadata.edit.buttons.drag": "Drag to reorder", "item.edit.metadata.edit.buttons.drag": "पुन्हा क्रमित करण्यासाठी ड्रॅग करा", - // "item.edit.metadata.edit.buttons.edit": "Edit", "item.edit.metadata.edit.buttons.edit": "संपादित करा", - // "item.edit.metadata.edit.buttons.remove": "Remove", "item.edit.metadata.edit.buttons.remove": "काढा", - // "item.edit.metadata.edit.buttons.undo": "Undo changes", "item.edit.metadata.edit.buttons.undo": "बदल पूर्ववत करा", - // "item.edit.metadata.edit.buttons.unedit": "Stop editing", "item.edit.metadata.edit.buttons.unedit": "संपादन थांबवा", - // "item.edit.metadata.edit.buttons.virtual": "This is a virtual metadata value, i.e. a value inherited from a related entity. It can’t be modified directly. Add or remove the corresponding relationship in the \"Relationships\" tab", "item.edit.metadata.edit.buttons.virtual": "हे एक आभासी मेटाडेटा मूल्य आहे, म्हणजे संबंधित घटकाकडून वारसा मिळालेल्या मूल्य. ते थेट बदलले जाऊ शकत नाही. \"संबंध\" टॅबमध्ये संबंधित संबंध जोडा किंवा काढा", - // "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.", "item.edit.metadata.empty": "आयटम सध्या कोणतेही मेटाडेटा समाविष्ट करत नाही. मेटाडेटा मूल्य जोडण्यासाठी जोडा क्लिक करा.", - // "item.edit.metadata.headers.edit": "Edit", "item.edit.metadata.headers.edit": "संपादित करा", - // "item.edit.metadata.headers.field": "Field", "item.edit.metadata.headers.field": "फील्ड", - // "item.edit.metadata.headers.language": "Lang", "item.edit.metadata.headers.language": "भाषा", - // "item.edit.metadata.headers.value": "Value", "item.edit.metadata.headers.value": "मूल्य", - // "item.edit.metadata.metadatafield": "Edit field", "item.edit.metadata.metadatafield": "फील्ड संपादित करा", - // "item.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "item.edit.metadata.metadatafield.error": "मेटाडेटा फील्ड सत्यापित करताना त्रुटी आली", - // "item.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "item.edit.metadata.metadatafield.invalid": "कृपया वैध मेटाडेटा फील्ड निवडा", - // "item.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.metadata.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", - // "item.edit.metadata.notifications.discarded.title": "Changes discarded", "item.edit.metadata.notifications.discarded.title": "बदल रद्द केले", - // "item.edit.metadata.notifications.error.title": "An error occurred", "item.edit.metadata.notifications.error.title": "त्रुटी आली", - // "item.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "item.edit.metadata.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", - // "item.edit.metadata.notifications.invalid.title": "Metadata invalid", "item.edit.metadata.notifications.invalid.title": "मेटाडेटा अवैध", - // "item.edit.metadata.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.metadata.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", - // "item.edit.metadata.notifications.outdated.title": "Changes outdated", "item.edit.metadata.notifications.outdated.title": "बदल कालबाह्य झाले", - // "item.edit.metadata.notifications.saved.content": "Your changes to this item's metadata were saved.", "item.edit.metadata.notifications.saved.content": "या आयटमच्या मेटाडेटामध्ये आपले बदल जतन केले गेले.", - // "item.edit.metadata.notifications.saved.title": "Metadata saved", "item.edit.metadata.notifications.saved.title": "मेटाडेटा जतन केले", - // "item.edit.metadata.reinstate-button": "Undo", "item.edit.metadata.reinstate-button": "पूर्ववत करा", - // "item.edit.metadata.reset-order-button": "Undo reorder", "item.edit.metadata.reset-order-button": "पुन्हा क्रमित पूर्ववत करा", - // "item.edit.metadata.save-button": "Save", "item.edit.metadata.save-button": "जतन करा", - // "item.edit.metadata.authority.label": "Authority: ", - // TODO New key - Add a translation - "item.edit.metadata.authority.label": "Authority: ", + "item.edit.metadata.authority.label": "प्राधिकरण: ", - // "item.edit.metadata.edit.buttons.open-authority-edition": "Unlock the authority key value for manual editing", "item.edit.metadata.edit.buttons.open-authority-edition": "मॅन्युअल संपादनासाठी प्राधिकरण की मूल्य अनलॉक करा", - // "item.edit.metadata.edit.buttons.close-authority-edition": "Lock the authority key value for manual editing", "item.edit.metadata.edit.buttons.close-authority-edition": "मॅन्युअल संपादनासाठी प्राधिकरण की मूल्य लॉक करा", - // "item.edit.modify.overview.field": "Field", "item.edit.modify.overview.field": "फील्ड", - // "item.edit.modify.overview.language": "Language", "item.edit.modify.overview.language": "भाषा", - // "item.edit.modify.overview.value": "Value", "item.edit.modify.overview.value": "मूल्य", - // "item.edit.move.cancel": "Back", "item.edit.move.cancel": "मागे", - // "item.edit.move.save-button": "Save", "item.edit.move.save-button": "जतन करा", - // "item.edit.move.discard-button": "Discard", "item.edit.move.discard-button": "रद्द करा", - // "item.edit.move.description": "Select the collection you wish to move this item to. To narrow down the list of displayed collections, you can enter a search query in the box.", "item.edit.move.description": "आपण या आयटमला हलवू इच्छित असलेला संग्रह निवडा. प्रदर्शित संग्रहांची यादी कमी करण्यासाठी, आपण बॉक्समध्ये शोध क्वेरी प्रविष्ट करू शकता.", - // "item.edit.move.error": "An error occurred when attempting to move the item", "item.edit.move.error": "आयटम हलविताना त्रुटी आली", - // "item.edit.move.head": "Move item: {{id}}", - // TODO New key - Add a translation - "item.edit.move.head": "Move item: {{id}}", + "item.edit.move.head": "आयटम हलवा: {{id}}", - // "item.edit.move.inheritpolicies.checkbox": "Inherit policies", "item.edit.move.inheritpolicies.checkbox": "धोरणे वारसा मिळवा", - // "item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection", "item.edit.move.inheritpolicies.description": "गंतव्य संग्रहाचे डीफॉल्ट धोरणे वारसा मिळवा", - // "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", - // TODO New key - Add a translation - "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + "item.edit.move.inheritpolicies.tooltip": "चेतावणी: सक्षम केल्यास, आयटम आणि आयटमशी संबंधित कोणत्याही फाइल्ससाठी वाचन प्रवेश धोरण गंतव्य संग्रहाचे डीफॉल्ट वाचन प्रवेश धोरणाने बदलले जाईल. हे पूर्ववत केले जाऊ शकत नाही.", - // "item.edit.move.move": "Move", "item.edit.move.move": "हलवा", - // "item.edit.move.processing": "Moving...", "item.edit.move.processing": "हलवित आहे...", - // "item.edit.move.search.placeholder": "Enter a search query to look for collections", "item.edit.move.search.placeholder": "संग्रह शोधण्यासाठी शोध क्वेरी प्रविष्ट करा", - // "item.edit.move.success": "The item has been moved successfully", "item.edit.move.success": "आयटम यशस्वीरित्या हलविला गेला", - // "item.edit.move.title": "Move item", "item.edit.move.title": "आयटम हलवा", - // "item.edit.private.cancel": "Cancel", "item.edit.private.cancel": "रद्द करा", - // "item.edit.private.confirm": "Make it non-discoverable", "item.edit.private.confirm": "नॉन-डिस्कव्हरेबल करा", - // "item.edit.private.description": "Are you sure this item should be made non-discoverable in the archive?", "item.edit.private.description": "आपण खात्री आहात की हा आयटम संग्रहात नॉन-डिस्कव्हरेबल केला जावा?", - // "item.edit.private.error": "An error occurred while making the item non-discoverable", "item.edit.private.error": "आयटम नॉन-डिस्कव्हरेबल करताना त्रुटी आली", - // "item.edit.private.header": "Make item non-discoverable: {{ id }}", - // TODO New key - Add a translation - "item.edit.private.header": "Make item non-discoverable: {{ id }}", + "item.edit.private.header": "आयटम नॉन-डिस्कव्हरेबल करा: {{ id }}", - // "item.edit.private.success": "The item is now non-discoverable", "item.edit.private.success": "आयटम आता नॉन-डिस्कव्हरेबल आहे", - // "item.edit.public.cancel": "Cancel", "item.edit.public.cancel": "रद्द करा", - // "item.edit.public.confirm": "Make it discoverable", "item.edit.public.confirm": "डिस्कव्हरेबल करा", - // "item.edit.public.description": "Are you sure this item should be made discoverable in the archive?", "item.edit.public.description": "आपण खात्री आहात की हा आयटम संग्रहात डिस्कव्हरेबल केला जावा?", - // "item.edit.public.error": "An error occurred while making the item discoverable", "item.edit.public.error": "आयटम डिस्कव्हरेबल करताना त्रुटी आली", - // "item.edit.public.header": "Make item discoverable: {{ id }}", - // TODO New key - Add a translation - "item.edit.public.header": "Make item discoverable: {{ id }}", + "item.edit.public.header": "आयटम डिस्कव्हरेबल करा: {{ id }}", - // "item.edit.public.success": "The item is now discoverable", "item.edit.public.success": "आयटम आता डिस्कव्हरेबल आहे", - // "item.edit.reinstate.cancel": "Cancel", "item.edit.reinstate.cancel": "रद्द करा", - // "item.edit.reinstate.confirm": "Reinstate", "item.edit.reinstate.confirm": "पुनर्स्थापित करा", - // "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?", "item.edit.reinstate.description": "आपण खात्री आहात की हा आयटम संग्रहात पुनर्स्थापित केला जावा?", - // "item.edit.reinstate.error": "An error occurred while reinstating the item", "item.edit.reinstate.error": "आयटम पुनर्स्थापित करताना त्रुटी आली", - // "item.edit.reinstate.header": "Reinstate item: {{ id }}", - // TODO New key - Add a translation - "item.edit.reinstate.header": "Reinstate item: {{ id }}", + "item.edit.reinstate.header": "आयटम पुनर्स्थापित करा: {{ id }}", - // "item.edit.reinstate.success": "The item was reinstated successfully", "item.edit.reinstate.success": "आयटम यशस्वीरित्या पुनर्स्थापित केला गेला", - // "item.edit.relationships.discard-button": "Discard", "item.edit.relationships.discard-button": "रद्द करा", - // "item.edit.relationships.edit.buttons.add": "Add", "item.edit.relationships.edit.buttons.add": "जोडा", - // "item.edit.relationships.edit.buttons.remove": "Remove", "item.edit.relationships.edit.buttons.remove": "काढा", - // "item.edit.relationships.edit.buttons.undo": "Undo changes", "item.edit.relationships.edit.buttons.undo": "बदल पूर्ववत करा", - // "item.edit.relationships.no-relationships": "No relationships", "item.edit.relationships.no-relationships": "कोणतेही संबंध नाहीत", - // "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.relationships.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", - // "item.edit.relationships.notifications.discarded.title": "Changes discarded", "item.edit.relationships.notifications.discarded.title": "बदल रद्द केले", - // "item.edit.relationships.notifications.failed.title": "Error editing relationships", "item.edit.relationships.notifications.failed.title": "संबंध संपादित करताना त्रुटी", - // "item.edit.relationships.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.relationships.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", - // "item.edit.relationships.notifications.outdated.title": "Changes outdated", "item.edit.relationships.notifications.outdated.title": "बदल कालबाह्य झाले", - // "item.edit.relationships.notifications.saved.content": "Your changes to this item's relationships were saved.", "item.edit.relationships.notifications.saved.content": "या आयटमच्या संबंधांमध्ये आपले बदल जतन केले गेले.", - // "item.edit.relationships.notifications.saved.title": "Relationships saved", "item.edit.relationships.notifications.saved.title": "संबंध जतन केले", - // "item.edit.relationships.reinstate-button": "Undo", "item.edit.relationships.reinstate-button": "पूर्ववत करा", - // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "जतन करा", - // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", "item.edit.relationships.no-entity-type": "या आयटमसाठी संबंध सक्षम करण्यासाठी 'dspace.entity.type' मेटाडेटा जोडा", - // "item.edit.return": "Back", "item.edit.return": "मागे", - // "item.edit.tabs.bitstreams.head": "Bitstreams", "item.edit.tabs.bitstreams.head": "बिटस्ट्रीम", - // "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams", "item.edit.tabs.bitstreams.title": "आयटम संपादन - बिटस्ट्रीम", - // "item.edit.tabs.curate.head": "Curate", "item.edit.tabs.curate.head": "क्युरेट", - // "item.edit.tabs.curate.title": "Item Edit - Curate", "item.edit.tabs.curate.title": "आयटम संपादन - क्युरेट", - // "item.edit.curate.title": "Curate Item: {{item}}", - // TODO New key - Add a translation - "item.edit.curate.title": "Curate Item: {{item}}", + "item.edit.curate.title": "क्युरेट आयटम: {{item}}", - // "item.edit.tabs.access-control.head": "Access Control", "item.edit.tabs.access-control.head": "प्रवेश नियंत्रण", - // "item.edit.tabs.access-control.title": "Item Edit - Access Control", "item.edit.tabs.access-control.title": "आयटम संपादन - प्रवेश नियंत्रण", - // "item.edit.tabs.metadata.head": "Metadata", "item.edit.tabs.metadata.head": "मेटाडेटा", - // "item.edit.tabs.metadata.title": "Item Edit - Metadata", "item.edit.tabs.metadata.title": "आयटम संपादन - मेटाडेटा", - // "item.edit.tabs.relationships.head": "Relationships", "item.edit.tabs.relationships.head": "संबंध", - // "item.edit.tabs.relationships.title": "Item Edit - Relationships", "item.edit.tabs.relationships.title": "आयटम संपादन - संबंध", - // "item.edit.tabs.status.buttons.authorizations.button": "Authorizations...", "item.edit.tabs.status.buttons.authorizations.button": "प्राधिकरण...", - // "item.edit.tabs.status.buttons.authorizations.label": "Edit item's authorization policies", "item.edit.tabs.status.buttons.authorizations.label": "आयटमचे प्राधिकरण धोरणे संपादित करा", - // "item.edit.tabs.status.buttons.delete.button": "Permanently delete", "item.edit.tabs.status.buttons.delete.button": "कायमचे हटवा", - // "item.edit.tabs.status.buttons.delete.label": "Completely expunge item", "item.edit.tabs.status.buttons.delete.label": "आयटम पूर्णपणे हटवा", - // "item.edit.tabs.status.buttons.mappedCollections.button": "Mapped collections", "item.edit.tabs.status.buttons.mappedCollections.button": "मॅप केलेले संग्रह", - // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "मॅप केलेले संग्रह व्यवस्थापित करा", - // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", "item.edit.tabs.status.buttons.move.button": "हा आयटम दुसऱ्या संग्रहात हलवा", - // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", "item.edit.tabs.status.buttons.move.label": "आयटम दुसऱ्या संग्रहात हलवा", - // "item.edit.tabs.status.buttons.private.button": "Make it non-discoverable...", "item.edit.tabs.status.buttons.private.button": "नॉन-डिस्कव्हरेबल करा...", - // "item.edit.tabs.status.buttons.private.label": "Make item non-discoverable", "item.edit.tabs.status.buttons.private.label": "आयटम नॉन-डिस्कव्हरेबल करा", - // "item.edit.tabs.status.buttons.public.button": "Make it discoverable...", "item.edit.tabs.status.buttons.public.button": "डिस्कव्हरेबल करा...", - // "item.edit.tabs.status.buttons.public.label": "Make item discoverable", "item.edit.tabs.status.buttons.public.label": "आयटम डिस्कव्हरेबल करा", - // "item.edit.tabs.status.buttons.reinstate.button": "Reinstate...", "item.edit.tabs.status.buttons.reinstate.button": "पुनर्स्थापित करा...", - // "item.edit.tabs.status.buttons.reinstate.label": "Reinstate item into the repository", "item.edit.tabs.status.buttons.reinstate.label": "आयटम संग्रहात पुनर्स्थापित करा", - // "item.edit.tabs.status.buttons.unauthorized": "You're not authorized to perform this action", "item.edit.tabs.status.buttons.unauthorized": "आपल्याला ही क्रिया करण्याची परवानगी नाही", - // "item.edit.tabs.status.buttons.withdraw.button": "Withdraw this item", "item.edit.tabs.status.buttons.withdraw.button": "हा आयटम मागे घ्या", - // "item.edit.tabs.status.buttons.withdraw.label": "Withdraw item from the repository", "item.edit.tabs.status.buttons.withdraw.label": "आयटम संग्रहातून मागे घ्या", - // "item.edit.tabs.status.description": "Welcome to the item management page. From here you can withdraw, reinstate, move or delete the item. You may also update or add new metadata / bitstreams on the other tabs.", "item.edit.tabs.status.description": "आयटम व्यवस्थापन पृष्ठावर आपले स्वागत आहे. येथून आपण आयटम मागे घेऊ, पुनर्स्थापित करू, हलवू किंवा हटवू शकता. आपण इतर टॅबवर नवीन मेटाडेटा / बिटस्ट्रीम देखील अद्यतनित किंवा जोडू शकता.", - // "item.edit.tabs.status.head": "Status", "item.edit.tabs.status.head": "स्थिती", - // "item.edit.tabs.status.labels.handle": "Handle", "item.edit.tabs.status.labels.handle": "हँडल", - // "item.edit.tabs.status.labels.id": "Item Internal ID", "item.edit.tabs.status.labels.id": "आयटम अंतर्गत आयडी", - // "item.edit.tabs.status.labels.itemPage": "Item Page", "item.edit.tabs.status.labels.itemPage": "आयटम पृष्ठ", - // "item.edit.tabs.status.labels.lastModified": "Last Modified", "item.edit.tabs.status.labels.lastModified": "शेवटचे बदलले", - // "item.edit.tabs.status.title": "Item Edit - Status", "item.edit.tabs.status.title": "आयटम संपादन - स्थिती", - // "item.edit.tabs.versionhistory.head": "Version History", "item.edit.tabs.versionhistory.head": "आवृत्ती इतिहास", - // "item.edit.tabs.versionhistory.title": "Item Edit - Version History", "item.edit.tabs.versionhistory.title": "आयटम संपादन - आवृत्ती इतिहास", - // "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": "या वापरकर्ता इंटरफेसमध्ये आवृत्त्या संपादित करणे किंवा नवीन आवृत्त्या जोडणे अद्याप शक्य नाही.", - // "item.edit.tabs.view.head": "View Item", "item.edit.tabs.view.head": "आयटम पहा", - // "item.edit.tabs.view.title": "Item Edit - View", "item.edit.tabs.view.title": "आयटम संपादन - पहा", - // "item.edit.withdraw.cancel": "Cancel", "item.edit.withdraw.cancel": "रद्द करा", - // "item.edit.withdraw.confirm": "Withdraw", "item.edit.withdraw.confirm": "मागे घ्या", - // "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?", "item.edit.withdraw.description": "आपण खात्री आहात की हा आयटम संग्रहातून मागे घ्यावा?", - // "item.edit.withdraw.error": "An error occurred while withdrawing the item", "item.edit.withdraw.error": "आयटम मागे घेताना त्रुटी आली", - // "item.edit.withdraw.header": "Withdraw item: {{ id }}", - // TODO New key - Add a translation - "item.edit.withdraw.header": "Withdraw item: {{ id }}", + "item.edit.withdraw.header": "आयटम मागे घ्या: {{ id }}", - // "item.edit.withdraw.success": "The item was withdrawn successfully", "item.edit.withdraw.success": "आयटम यशस्वीरित्या मागे घेतला गेला", - // "item.orcid.return": "Back", "item.orcid.return": "मागे", - // "item.listelement.badge": "Item", "item.listelement.badge": "आयटम", - // "item.page.description": "Description", "item.page.description": "वर्णन", - // "item.page.org-unit": "Organizational Unit", - // TODO New key - Add a translation - "item.page.org-unit": "Organizational Unit", - - // "item.page.org-units": "Organizational Units", - // TODO New key - Add a translation - "item.page.org-units": "Organizational Units", - - // "item.page.project": "Research Project", - // TODO New key - Add a translation - "item.page.project": "Research Project", - - // "item.page.projects": "Research Projects", - // TODO New key - Add a translation - "item.page.projects": "Research Projects", - - // "item.page.publication": "Publications", - // TODO New key - Add a translation - "item.page.publication": "Publications", - - // "item.page.publications": "Publications", - // TODO New key - Add a translation - "item.page.publications": "Publications", - - // "item.page.article": "Article", - // TODO New key - Add a translation - "item.page.article": "Article", - - // "item.page.articles": "Articles", - // TODO New key - Add a translation - "item.page.articles": "Articles", - - // "item.page.journal": "Journal", - // TODO New key - Add a translation - "item.page.journal": "Journal", - - // "item.page.journals": "Journals", - // TODO New key - Add a translation - "item.page.journals": "Journals", - - // "item.page.journal-issue": "Journal Issue", - // TODO New key - Add a translation - "item.page.journal-issue": "Journal Issue", - - // "item.page.journal-issues": "Journal Issues", - // TODO New key - Add a translation - "item.page.journal-issues": "Journal Issues", - - // "item.page.journal-volume": "Journal Volume", - // TODO New key - Add a translation - "item.page.journal-volume": "Journal Volume", - - // "item.page.journal-volumes": "Journal Volumes", - // TODO New key - Add a translation - "item.page.journal-volumes": "Journal Volumes", - - // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "जर्नल ISSN", - // "item.page.journal-title": "Journal Title", "item.page.journal-title": "जर्नल शीर्षक", - // "item.page.publisher": "Publisher", "item.page.publisher": "प्रकाशक", - // "item.page.titleprefix": "Item: ", - // TODO New key - Add a translation - "item.page.titleprefix": "Item: ", + "item.page.titleprefix": "आयटम: ", - // "item.page.volume-title": "Volume Title", "item.page.volume-title": "खंड शीर्षक", - // "item.page.dcterms.spatial": "Geospatial point", "item.page.dcterms.spatial": "भौगोलिक बिंदू", - // "item.search.results.head": "Item Search Results", "item.search.results.head": "आयटम शोध परिणाम", - // "item.search.title": "Item Search", "item.search.title": "आयटम शोध", - // "item.truncatable-part.show-more": "Show more", "item.truncatable-part.show-more": "अधिक दाखवा", - // "item.truncatable-part.show-less": "Collapse", "item.truncatable-part.show-less": "संकुचित करा", - // "item.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "item.qa-event-notification.check.notification-info": "आपल्या खात्याशी संबंधित {{num}} प्रलंबित सूचना आहेत", - // "item.qa-event-notification-info.check.button": "View", "item.qa-event-notification-info.check.button": "पहा", - // "mydspace.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "mydspace.qa-event-notification.check.notification-info": "आपल्या खात्याशी संबंधित {{num}} प्रलंबित सूचना आहेत", - // "mydspace.qa-event-notification-info.check.button": "View", "mydspace.qa-event-notification-info.check.button": "पहा", - // "workflow-item.search.result.delete-supervision.modal.header": "Delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.header": "पर्यवेक्षण आदेश हटवा", - // "workflow-item.search.result.delete-supervision.modal.info": "Are you sure you want to delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.info": "आपण खात्री आहात की पर्यवेक्षण आदेश हटवू इच्छिता", - // "workflow-item.search.result.delete-supervision.modal.cancel": "Cancel", "workflow-item.search.result.delete-supervision.modal.cancel": "रद्द करा", - // "workflow-item.search.result.delete-supervision.modal.confirm": "Delete", "workflow-item.search.result.delete-supervision.modal.confirm": "हटवा", - // "workflow-item.search.result.notification.deleted.success": "Successfully deleted supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.success": "पर्यवेक्षण आदेश \"{{name}}\" यशस्वीरित्या हटविला", - // "workflow-item.search.result.notification.deleted.failure": "Failed to delete supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.failure": "पर्यवेक्षण आदेश \"{{name}}\" हटविण्यात अयशस्वी", - // "workflow-item.search.result.list.element.supervised-by": "Supervised by:", - // TODO New key - Add a translation - "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + "workflow-item.search.result.list.element.supervised-by": "पर्यवेक्षण केलेले:", - // "workflow-item.search.result.list.element.supervised.remove-tooltip": "Remove supervision group", "workflow-item.search.result.list.element.supervised.remove-tooltip": "पर्यवेक्षण गट काढा", - // "confidence.indicator.help-text.accepted": "This authority value has been confirmed as accurate by an interactive user", "confidence.indicator.help-text.accepted": "हे प्राधिकरण मूल्य परस्पर वापरकर्त्याद्वारे अचूक म्हणून पुष्टी केले गेले आहे", - // "confidence.indicator.help-text.uncertain": "Value is singular and valid but has not been seen and accepted by a human so it is still uncertain", "confidence.indicator.help-text.uncertain": "मूल्य एकवचनी आणि वैध आहे परंतु मानवीने पाहिले आणि स्वीकारले नाही त्यामुळे ते अद्याप अनिश्चित आहे", - // "confidence.indicator.help-text.ambiguous": "There are multiple matching authority values of equal validity", "confidence.indicator.help-text.ambiguous": "समान वैधतेच्या एकाधिक जुळणारे प्राधिकरण मूल्ये आहेत", - // "confidence.indicator.help-text.notfound": "There are no matching answers in the authority", "confidence.indicator.help-text.notfound": "प्राधिकरणात कोणतेही जुळणारे उत्तर नाही", - // "confidence.indicator.help-text.failed": "The authority encountered an internal failure", "confidence.indicator.help-text.failed": "प्राधिकरणाने अंतर्गत अपयश अनुभवले", - // "confidence.indicator.help-text.rejected": "The authority recommends this submission be rejected", "confidence.indicator.help-text.rejected": "प्राधिकरणाने या सबमिशनला नाकारण्याची शिफारस केली आहे", - // "confidence.indicator.help-text.novalue": "No reasonable confidence value was returned from the authority", "confidence.indicator.help-text.novalue": "प्राधिकरणाकडून कोणतेही वाजवी आत्मविश्वास मूल्य परत आले नाही", - // "confidence.indicator.help-text.unset": "Confidence was never recorded for this value", "confidence.indicator.help-text.unset": "या मूल्यासाठी आत्मविश्वास कधीही नोंदविला गेला नाही", - // "confidence.indicator.help-text.unknown": "Unknown confidence value", "confidence.indicator.help-text.unknown": "अज्ञात आत्मविश्वास मूल्य", - // "item.page.abstract": "Abstract", "item.page.abstract": "सारांश", - // "item.page.author": "Author", "item.page.author": "लेखक", - // "item.page.authors": "Authors", - // TODO New key - Add a translation - "item.page.authors": "Authors", - - // "item.page.citation": "Citation", "item.page.citation": "उल्लेख", - // "item.page.collections": "Collections", "item.page.collections": "संग्रह", - // "item.page.collections.loading": "Loading...", "item.page.collections.loading": "लोड करत आहे...", - // "item.page.collections.load-more": "Load more", "item.page.collections.load-more": "अधिक लोड करा", - // "item.page.date": "Date", "item.page.date": "तारीख", - // "item.page.edit": "Edit this item", "item.page.edit": "हा आयटम संपादित करा", - // "item.page.files": "Files", "item.page.files": "फाइल्स", - // "item.page.filesection.description": "Description:", - // TODO New key - Add a translation - "item.page.filesection.description": "Description:", + "item.page.filesection.description": "वर्णन:", - // "item.page.filesection.download": "Download", "item.page.filesection.download": "डाउनलोड करा", - // "item.page.filesection.format": "Format:", - // TODO New key - Add a translation - "item.page.filesection.format": "Format:", + "item.page.filesection.format": "फॉरमॅट:", - // "item.page.filesection.name": "Name:", - // TODO New key - Add a translation - "item.page.filesection.name": "Name:", + "item.page.filesection.name": "नाव:", - // "item.page.filesection.size": "Size:", - // TODO New key - Add a translation - "item.page.filesection.size": "Size:", + "item.page.filesection.size": "आकार:", - // "item.page.journal.search.title": "Articles in this journal", "item.page.journal.search.title": "या जर्नलमधील लेख", - // "item.page.link.full": "Full item page", "item.page.link.full": "पूर्ण आयटम पृष्ठ", - // "item.page.link.simple": "Simple item page", "item.page.link.simple": "साधे आयटम पृष्ठ", - // "item.page.options": "Options", "item.page.options": "पर्याय", - // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", - // "item.page.orcid.tooltip": "Open ORCID setting page", "item.page.orcid.tooltip": "ORCID सेटिंग पृष्ठ उघडा", - // "item.page.person.search.title": "Articles by this author", "item.page.person.search.title": "या लेखकाचे लेख", - // "item.page.related-items.view-more": "Show {{ amount }} more", "item.page.related-items.view-more": "{{ amount }} अधिक दाखवा", - // "item.page.related-items.view-less": "Hide last {{ amount }}", "item.page.related-items.view-less": "शेवटचे {{ amount }} लपवा", - // "item.page.relationships.isAuthorOfPublication": "Publications", "item.page.relationships.isAuthorOfPublication": "प्रकाशने", - // "item.page.relationships.isJournalOfPublication": "Publications", "item.page.relationships.isJournalOfPublication": "प्रकाशने", - // "item.page.relationships.isOrgUnitOfPerson": "Authors", "item.page.relationships.isOrgUnitOfPerson": "लेखक", - // "item.page.relationships.isOrgUnitOfProject": "Research Projects", "item.page.relationships.isOrgUnitOfProject": "संशोधन प्रकल्प", - // "item.page.subject": "Keywords", "item.page.subject": "कीवर्ड", - // "item.page.uri": "URI", "item.page.uri": "URI", - // "item.page.bitstreams.view-more": "Show more", "item.page.bitstreams.view-more": "अधिक दाखवा", - // "item.page.bitstreams.collapse": "Collapse", "item.page.bitstreams.collapse": "संकुचित करा", - // "item.page.bitstreams.primary": "Primary", "item.page.bitstreams.primary": "प्राथमिक", - // "item.page.filesection.original.bundle": "Original bundle", "item.page.filesection.original.bundle": "मूळ बंडल", - // "item.page.filesection.license.bundle": "License bundle", "item.page.filesection.license.bundle": "परवाना बंडल", - // "item.page.return": "Back", "item.page.return": "मागे", - // "item.page.version.create": "Create new version", "item.page.version.create": "नवीन आवृत्ती तयार करा", - // "item.page.withdrawn": "Request a withdrawal for this item", "item.page.withdrawn": "या आयटमसाठी मागे घेण्याची विनंती करा", - // "item.page.reinstate": "Request reinstatement", "item.page.reinstate": "पुनर्स्थापनेची विनंती करा", - // "item.page.version.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.page.version.hasDraft": "नवीन आवृत्ती तयार केली जाऊ शकत नाही कारण आवृत्ती इतिहासात एक प्रगतीशील सबमिशन आहे", - // "item.page.claim.button": "Claim", "item.page.claim.button": "दावा करा", - // "item.page.claim.tooltip": "Claim this item as profile", "item.page.claim.tooltip": "हा आयटम प्रोफाइल म्हणून दावा करा", - // "item.page.image.alt.ROR": "ROR logo", "item.page.image.alt.ROR": "ROR लोगो", - // "item.preview.dc.identifier.uri": "Identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier.uri": "Identifier:", + "item.preview.dc.identifier.uri": "ओळखकर्ता:", - // "item.preview.dc.contributor.author": "Authors:", - // TODO New key - Add a translation - "item.preview.dc.contributor.author": "Authors:", + "item.preview.dc.contributor.author": "लेखक:", - // "item.preview.dc.date.issued": "Published date:", - // TODO New key - Add a translation - "item.preview.dc.date.issued": "Published date:", + "item.preview.dc.date.issued": "प्रकाशित तारीख:", - // "item.preview.dc.description": "Description:", - // TODO Source message changed - Revise the translation "item.preview.dc.description": "वर्णन:", - // "item.preview.dc.description.abstract": "Abstract:", - // TODO New key - Add a translation - "item.preview.dc.description.abstract": "Abstract:", + "item.preview.dc.description.abstract": "सारांश:", - // "item.preview.dc.identifier.other": "Other identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier.other": "Other identifier:", + "item.preview.dc.identifier.other": "इतर ओळखकर्ता:", - // "item.preview.dc.language.iso": "Language:", - // TODO New key - Add a translation - "item.preview.dc.language.iso": "Language:", + "item.preview.dc.language.iso": "भाषा:", - // "item.preview.dc.subject": "Subjects:", - // TODO New key - Add a translation - "item.preview.dc.subject": "Subjects:", + "item.preview.dc.subject": "विषय:", - // "item.preview.dc.title": "Title:", - // TODO New key - Add a translation - "item.preview.dc.title": "Title:", + "item.preview.dc.title": "शीर्षक:", - // "item.preview.dc.type": "Type:", - // TODO New key - Add a translation - "item.preview.dc.type": "Type:", + "item.preview.dc.type": "प्रकार:", - // "item.preview.oaire.version": "Version", "item.preview.oaire.version": "आवृत्ती", - // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "मुद्दा", - // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "खंड", - // "item.preview.oaire.citation.title": "Citation container", "item.preview.oaire.citation.title": "उल्लेख कंटेनर", - // "item.preview.oaire.citation.startPage": "Citation start page", "item.preview.oaire.citation.startPage": "उल्लेख प्रारंभ पृष्ठ", - // "item.preview.oaire.citation.endPage": "Citation end page", "item.preview.oaire.citation.endPage": "उल्लेख समाप्त पृष्ठ", - // "item.preview.dc.relation.hasversion": "Has version", "item.preview.dc.relation.hasversion": "आवृत्ती आहे", - // "item.preview.dc.relation.ispartofseries": "Is part of series", "item.preview.dc.relation.ispartofseries": "मालिकेचा भाग आहे", - // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "हक्क", - // "item.preview.dc.identifier.other": "Other Identifier", - "item.preview.dc.identifier.other": "इतर ओळखकर्ता:", + "item.preview.dc.identifier.other": "इतर ओळखकर्ता", - // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", - // "item.preview.dc.identifier.isbn": "ISBN", "item.preview.dc.identifier.isbn": "ISBN", - // "item.preview.dc.identifier": "Identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier": "Identifier:", + "item.preview.dc.identifier": "ओळखकर्ता:", - // "item.preview.dc.relation.ispartof": "Journal or Series", "item.preview.dc.relation.ispartof": "जर्नल किंवा मालिका", - // "item.preview.dc.identifier.doi": "DOI", "item.preview.dc.identifier.doi": "DOI", - // "item.preview.dc.publisher": "Publisher:", - // TODO New key - Add a translation - "item.preview.dc.publisher": "Publisher:", + "item.preview.dc.publisher": "प्रकाशक:", - // "item.preview.person.familyName": "Surname:", - // TODO New key - Add a translation - "item.preview.person.familyName": "Surname:", + "item.preview.person.familyName": "आडनाव:", - // "item.preview.person.givenName": "Name:", - // TODO New key - Add a translation - "item.preview.person.givenName": "Name:", + "item.preview.person.givenName": "नाव:", - // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", - // "item.preview.person.affiliation.name": "Affiliations:", - // TODO New key - Add a translation - "item.preview.person.affiliation.name": "Affiliations:", + "item.preview.person.affiliation.name": "संलग्नता:", - // "item.preview.project.funder.name": "Funder:", - // TODO New key - Add a translation - "item.preview.project.funder.name": "Funder:", + "item.preview.project.funder.name": "फंडर:", - // "item.preview.project.funder.identifier": "Funder Identifier:", - // TODO New key - Add a translation - "item.preview.project.funder.identifier": "Funder Identifier:", + "item.preview.project.funder.identifier": "फंडर ओळखकर्ता:", - // "item.preview.project.investigator": "Project Investigator", "item.preview.project.investigator": "प्रकल्प अन्वेषक", - // "item.preview.oaire.awardNumber": "Funding ID:", - // TODO New key - Add a translation - "item.preview.oaire.awardNumber": "Funding ID:", + "item.preview.oaire.awardNumber": "फंडिंग आयडी:", - // "item.preview.dc.title.alternative": "Acronym:", - // TODO New key - Add a translation - "item.preview.dc.title.alternative": "Acronym:", + "item.preview.dc.title.alternative": "अक्रोनिम:", - // "item.preview.dc.coverage.spatial": "Jurisdiction:", - // TODO New key - Add a translation - "item.preview.dc.coverage.spatial": "Jurisdiction:", + "item.preview.dc.coverage.spatial": "क्षेत्राधिकार:", - // "item.preview.oaire.fundingStream": "Funding Stream:", - // TODO New key - Add a translation - "item.preview.oaire.fundingStream": "Funding Stream:", + "item.preview.oaire.fundingStream": "फंडिंग स्ट्रीम:", - // "item.preview.oairecerif.identifier.url": "URL", "item.preview.oairecerif.identifier.url": "URL", - // "item.preview.organization.address.addressCountry": "Country", "item.preview.organization.address.addressCountry": "देश", - // "item.preview.organization.foundingDate": "Founding Date", "item.preview.organization.foundingDate": "स्थापनेची तारीख", - // "item.preview.organization.identifier.crossrefid": "Crossref ID", "item.preview.organization.identifier.crossrefid": "Crossref आयडी", - // "item.preview.organization.identifier.isni": "ISNI", "item.preview.organization.identifier.isni": "ISNI", - // "item.preview.organization.identifier.ror": "ROR ID", "item.preview.organization.identifier.ror": "ROR आयडी", - // "item.preview.organization.legalName": "Legal Name", "item.preview.organization.legalName": "कायदेशीर नाव", - // "item.preview.dspace.entity.type": "Entity Type:", - // TODO New key - Add a translation - "item.preview.dspace.entity.type": "Entity Type:", + "item.preview.dspace.entity.type": "घटक प्रकार:", - // "item.preview.creativework.publisher": "Publisher", "item.preview.creativework.publisher": "प्रकाशक", - // "item.preview.creativeworkseries.issn": "ISSN", "item.preview.creativeworkseries.issn": "ISSN", - // "item.preview.dc.identifier.issn": "ISSN", "item.preview.dc.identifier.issn": "ISSN", - // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "OpenAlex ओळखकर्ता", - // "item.preview.dc.description": "Description", - // TODO Source message changed - Revise the translation - "item.preview.dc.description": "वर्णन:", + "item.preview.dc.description": "वर्णन", - // "item.select.confirm": "Confirm selected", "item.select.confirm": "निवडलेले पुष्टी करा", - // "item.select.empty": "No items to show", "item.select.empty": "दाखविण्यासाठी कोणतेही आयटम नाहीत", - // "item.select.table.selected": "Selected items", "item.select.table.selected": "निवडलेले आयटम", - // "item.select.table.select": "Select item", "item.select.table.select": "आयटम निवडा", - // "item.select.table.deselect": "Deselect item", "item.select.table.deselect": "आयटम निवड रद्द करा", - // "item.select.table.author": "Author", "item.select.table.author": "लेखक", - // "item.select.table.collection": "Collection", "item.select.table.collection": "संग्रह", - // "item.select.table.title": "Title", "item.select.table.title": "शीर्षक", - // "item.version.history.empty": "There are no other versions for this item yet.", "item.version.history.empty": "या आयटमसाठी अद्याप इतर आवृत्त्या नाहीत.", - // "item.version.history.head": "Version History", "item.version.history.head": "आवृत्ती इतिहास", - // "item.version.history.return": "Back", "item.version.history.return": "मागे", - // "item.version.history.selected": "Selected version", "item.version.history.selected": "निवडलेली आवृत्ती", - // "item.version.history.selected.alert": "You are currently viewing version {{version}} of the item.", "item.version.history.selected.alert": "आपण सध्या आयटमची आवृत्ती {{version}} पाहत आहात.", - // "item.version.history.table.version": "Version", "item.version.history.table.version": "आवृत्ती", - // "item.version.history.table.item": "Item", "item.version.history.table.item": "आयटम", - // "item.version.history.table.editor": "Editor", "item.version.history.table.editor": "संपादक", - // "item.version.history.table.date": "Date", "item.version.history.table.date": "तारीख", - // "item.version.history.table.summary": "Summary", "item.version.history.table.summary": "सारांश", - // "item.version.history.table.workspaceItem": "Workspace item", "item.version.history.table.workspaceItem": "वर्कस्पेस आयटम", - // "item.version.history.table.workflowItem": "Workflow item", "item.version.history.table.workflowItem": "वर्कफ्लो आयटम", - // "item.version.history.table.actions": "Action", "item.version.history.table.actions": "क्रिया", - // "item.version.history.table.action.editWorkspaceItem": "Edit workspace item", "item.version.history.table.action.editWorkspaceItem": "वर्कस्पेस आयटम संपादित करा", - // "item.version.history.table.action.editSummary": "Edit summary", "item.version.history.table.action.editSummary": "सारांश संपादित करा", - // "item.version.history.table.action.saveSummary": "Save summary edits", "item.version.history.table.action.saveSummary": "सारांश संपादन जतन करा", - // "item.version.history.table.action.discardSummary": "Discard summary edits", "item.version.history.table.action.discardSummary": "सारांश संपादन रद्द करा", - // "item.version.history.table.action.newVersion": "Create new version from this one", "item.version.history.table.action.newVersion": "या आवृत्तीतून नवीन आवृत्ती तयार करा", - // "item.version.history.table.action.deleteVersion": "Delete version", "item.version.history.table.action.deleteVersion": "आवृत्ती हटवा", - // "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.history.table.action.hasDraft": "नवीन आवृत्ती तयार केली जाऊ शकत नाही कारण आवृत्ती इतिहासात एक प्रगतीशील सबमिशन आहे", - // "item.version.notice": "This is not the latest version of this item. The latest version can be found here.", "item.version.notice": "ही आयटमची नवीनतम आवृत्ती नाही. नवीनतम आवृत्ती येथे आढळू शकते येथे.", - // "item.version.create.modal.header": "New version", "item.version.create.modal.header": "नवीन आवृत्ती", - // "item.qa.withdrawn.modal.header": "Request withdrawal", "item.qa.withdrawn.modal.header": "मागे घेण्याची विनंती", - // "item.qa.reinstate.modal.header": "Request reinstate", "item.qa.reinstate.modal.header": "पुनर्स्थापनेची विनंती", - // "item.qa.reinstate.create.modal.header": "New version", "item.qa.reinstate.create.modal.header": "नवीन आवृत्ती", - // "item.version.create.modal.text": "Create a new version for this item", "item.version.create.modal.text": "या आयटमसाठी नवीन आवृत्ती तयार करा", - // "item.version.create.modal.text.startingFrom": "starting from version {{version}}", "item.version.create.modal.text.startingFrom": "आवृत्ती {{version}} पासून सुरू", - // "item.version.create.modal.button.confirm": "Create", "item.version.create.modal.button.confirm": "तयार करा", - // "item.version.create.modal.button.confirm.tooltip": "Create new version", "item.version.create.modal.button.confirm.tooltip": "नवीन आवृत्ती तयार करा", - // "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "Send request", "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "विनंती पाठवा", - // "qa-withdrown.create.modal.button.confirm": "Withdraw", "qa-withdrown.create.modal.button.confirm": "मागे घ्या", - // "qa-reinstate.create.modal.button.confirm": "Reinstate", "qa-reinstate.create.modal.button.confirm": "पुनर्स्थापित करा", - // "item.version.create.modal.button.cancel": "Cancel", "item.version.create.modal.button.cancel": "रद्द करा", - // "item.qa.withdrawn-reinstate.create.modal.button.cancel": "Cancel", "item.qa.withdrawn-reinstate.create.modal.button.cancel": "रद्द करा", - // "item.version.create.modal.button.cancel.tooltip": "Do not create new version", "item.version.create.modal.button.cancel.tooltip": "नवीन आवृत्ती तयार करू नका", - // "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "Do not send request", "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "विनंती पाठवू नका", - // "item.version.create.modal.form.summary.label": "Summary", "item.version.create.modal.form.summary.label": "सारांश", - // "qa-withdrawn.create.modal.form.summary.label": "You are requesting to withdraw this item", "qa-withdrawn.create.modal.form.summary.label": "आपण हा आयटम मागे घेण्याची विनंती करत आहात", - // "qa-withdrawn.create.modal.form.summary2.label": "Please enter the reason for the withdrawal", "qa-withdrawn.create.modal.form.summary2.label": "कृपया मागे घेण्याचे कारण प्रविष्ट करा", - // "qa-reinstate.create.modal.form.summary.label": "You are requesting to reinstate this item", "qa-reinstate.create.modal.form.summary.label": "आपण हा आयटम पुनर्स्थापित करण्याची विनंती करत आहात", - // "qa-reinstate.create.modal.form.summary2.label": "Please enter the reason for the reinstatment", "qa-reinstate.create.modal.form.summary2.label": "कृपया पुनर्स्थापनेचे कारण प्रविष्ट करा", - // "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version", "item.version.create.modal.form.summary.placeholder": "नवीन आवृत्तीचा सारांश प्रविष्ट करा", - // "qa-withdrown.modal.form.summary.placeholder": "Enter the reason for the withdrawal", "qa-withdrown.modal.form.summary.placeholder": "मागे घेण्याचे कारण प्रविष्ट करा", - // "qa-reinstate.modal.form.summary.placeholder": "Enter the reason for the reinstatement", "qa-reinstate.modal.form.summary.placeholder": "पुनर्स्थापनेचे कारण प्रविष्ट करा", - // "item.version.create.modal.submitted.header": "Creating new version...", "item.version.create.modal.submitted.header": "नवीन आवृत्ती तयार करत आहे...", - // "item.qa.withdrawn.modal.submitted.header": "Sending withdrawn request...", "item.qa.withdrawn.modal.submitted.header": "मागे घेण्याची विनंती पाठवत आहे...", - // "correction-type.manage-relation.action.notification.reinstate": "Reinstate request sent.", "correction-type.manage-relation.action.notification.reinstate": "पुनर्स्थापनेची विनंती पाठवली.", - // "correction-type.manage-relation.action.notification.withdrawn": "Withdraw request sent.", "correction-type.manage-relation.action.notification.withdrawn": "मागे घेण्याची विनंती पाठवली.", - // "item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.", "item.version.create.modal.submitted.text": "नवीन आवृत्ती तयार केली जात आहे. आयटममध्ये बरेच संबंध असल्यास यास काही वेळ लागू शकतो.", - // "item.version.create.notification.success": "New version has been created with version number {{version}}", "item.version.create.notification.success": "आवृत्ती क्रमांक {{version}} सह नवीन आवृत्ती तयार केली गेली आहे", - // "item.version.create.notification.failure": "New version has not been created", "item.version.create.notification.failure": "नवीन आवृत्ती तयार केली गेली नाही", - // "item.version.create.notification.inProgress": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.create.notification.inProgress": "आवृत्ती इतिहासात एक प्रगतीशील सबमिशन असल्यामुळे नवीन आवृत्ती तयार केली जाऊ शकत नाही", - // "item.version.delete.modal.header": "Delete version", "item.version.delete.modal.header": "आवृत्ती हटवा", - // "item.version.delete.modal.text": "Do you want to delete version {{version}}?", "item.version.delete.modal.text": "आपण आवृत्ती {{version}} हटवू इच्छिता?", - // "item.version.delete.modal.button.confirm": "Delete", "item.version.delete.modal.button.confirm": "हटवा", - // "item.version.delete.modal.button.confirm.tooltip": "Delete this version", "item.version.delete.modal.button.confirm.tooltip": "ही आवृत्ती हटवा", - // "item.version.delete.modal.button.cancel": "Cancel", "item.version.delete.modal.button.cancel": "रद्द करा", - // "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version", "item.version.delete.modal.button.cancel.tooltip": "ही आवृत्ती हटवू नका", - // "item.version.delete.notification.success": "Version number {{version}} has been deleted", "item.version.delete.notification.success": "आवृत्ती क्रमांक {{version}} हटवली गेली आहे", - // "item.version.delete.notification.failure": "Version number {{version}} has not been deleted", "item.version.delete.notification.failure": "आवृत्ती क्रमांक {{version}} हटवली गेली नाही", - // "item.version.edit.notification.success": "The summary of version number {{version}} has been changed", "item.version.edit.notification.success": "आवृत्ती क्रमांक {{version}} चा सारांश बदलला गेला आहे", - // "item.version.edit.notification.failure": "The summary of version number {{version}} has not been changed", "item.version.edit.notification.failure": "आवृत्ती क्रमांक {{version}} चा सारांश बदलला गेला नाही", - // "itemtemplate.edit.metadata.add-button": "Add", "itemtemplate.edit.metadata.add-button": "जोडा", - // "itemtemplate.edit.metadata.discard-button": "Discard", "itemtemplate.edit.metadata.discard-button": "रद्द करा", - // "itemtemplate.edit.metadata.edit.language": "Edit language", "itemtemplate.edit.metadata.edit.language": "भाषा संपादित करा", - // "itemtemplate.edit.metadata.edit.value": "Edit value", "itemtemplate.edit.metadata.edit.value": "मूल्य संपादित करा", - // "itemtemplate.edit.metadata.edit.buttons.confirm": "Confirm", "itemtemplate.edit.metadata.edit.buttons.confirm": "पुष्टी करा", - // "itemtemplate.edit.metadata.edit.buttons.drag": "Drag to reorder", "itemtemplate.edit.metadata.edit.buttons.drag": "पुन्हा क्रमित करण्यासाठी ड्रॅग करा", - // "itemtemplate.edit.metadata.edit.buttons.edit": "Edit", "itemtemplate.edit.metadata.edit.buttons.edit": "संपादित करा", - // "itemtemplate.edit.metadata.edit.buttons.remove": "Remove", "itemtemplate.edit.metadata.edit.buttons.remove": "काढा", - // "itemtemplate.edit.metadata.edit.buttons.undo": "Undo changes", "itemtemplate.edit.metadata.edit.buttons.undo": "बदल पूर्ववत करा", - // "itemtemplate.edit.metadata.edit.buttons.unedit": "Stop editing", "itemtemplate.edit.metadata.edit.buttons.unedit": "संपादन थांबवा", - // "itemtemplate.edit.metadata.empty": "The item template currently doesn't contain any metadata. Click Add to start adding a metadata value.", "itemtemplate.edit.metadata.empty": "आयटम टेम्पलेट सध्या कोणतेही मेटाडेटा समाविष्ट करत नाही. मेटाडेटा मूल्य जोडण्यासाठी जोडा क्लिक करा.", - // "itemtemplate.edit.metadata.headers.edit": "Edit", "itemtemplate.edit.metadata.headers.edit": "संपादित करा", - // "itemtemplate.edit.metadata.headers.field": "Field", "itemtemplate.edit.metadata.headers.field": "फील्ड", - // "itemtemplate.edit.metadata.headers.language": "Lang", "itemtemplate.edit.metadata.headers.language": "भाषा", - // "itemtemplate.edit.metadata.headers.value": "Value", "itemtemplate.edit.metadata.headers.value": "मूल्य", - // "itemtemplate.edit.metadata.metadatafield": "Edit field", "itemtemplate.edit.metadata.metadatafield": "फील्ड संपादित करा", - // "itemtemplate.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "itemtemplate.edit.metadata.metadatafield.error": "मेटाडेटा फील्ड सत्यापित करताना त्रुटी आली", - // "itemtemplate.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "itemtemplate.edit.metadata.metadatafield.invalid": "कृपया वैध मेटाडेटा फील्ड निवडा", - // "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "itemtemplate.edit.metadata.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", - // "itemtemplate.edit.metadata.notifications.discarded.title": "Changes discarded", "itemtemplate.edit.metadata.notifications.discarded.title": "बदल रद्द केले", - // "itemtemplate.edit.metadata.notifications.error.title": "An error occurred", "itemtemplate.edit.metadata.notifications.error.title": "त्रुटी आली", - // "itemtemplate.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "itemtemplate.edit.metadata.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", - // "itemtemplate.edit.metadata.notifications.invalid.title": "Metadata invalid", "itemtemplate.edit.metadata.notifications.invalid.title": "मेटाडेटा अवैध", - // "itemtemplate.edit.metadata.notifications.outdated.content": "The item template you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", "itemtemplate.edit.metadata.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम टेम्पलेट दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", - // "itemtemplate.edit.metadata.notifications.outdated.title": "Changes outdated", "itemtemplate.edit.metadata.notifications.outdated.title": "बदल कालबाह्य झाले", - // "itemtemplate.edit.metadata.notifications.saved.content": "Your changes to this item template's metadata were saved.", "itemtemplate.edit.metadata.notifications.saved.content": "या आयटम टेम्पलेटच्या मेटाडेटामध्ये आपले बदल जतन केले गेले.", - // "itemtemplate.edit.metadata.notifications.saved.title": "Metadata saved", "itemtemplate.edit.metadata.notifications.saved.title": "मेटाडेटा जतन केले", - // "itemtemplate.edit.metadata.reinstate-button": "Undo", "itemtemplate.edit.metadata.reinstate-button": "पूर्ववत करा", - // "itemtemplate.edit.metadata.reset-order-button": "Undo reorder", "itemtemplate.edit.metadata.reset-order-button": "पुन्हा क्रमित पूर्ववत करा", - // "itemtemplate.edit.metadata.save-button": "Save", "itemtemplate.edit.metadata.save-button": "जतन करा", - // "journal.listelement.badge": "Journal", "journal.listelement.badge": "जर्नल", - // "journal.page.description": "Description", "journal.page.description": "वर्णन", - // "journal.page.edit": "Edit this item", "journal.page.edit": "हा आयटम संपादित करा", - // "journal.page.editor": "Editor-in-Chief", "journal.page.editor": "मुख्य संपादक", - // "journal.page.issn": "ISSN", "journal.page.issn": "ISSN", - // "journal.page.publisher": "Publisher", "journal.page.publisher": "प्रकाशक", - // "journal.page.options": "Options", "journal.page.options": "पर्याय", - // "journal.page.titleprefix": "Journal: ", - // TODO New key - Add a translation - "journal.page.titleprefix": "Journal: ", + "journal.page.titleprefix": "जर्नल: ", - // "journal.search.results.head": "Journal Search Results", "journal.search.results.head": "जर्नल शोध परिणाम", - // "journal-relationships.search.results.head": "Journal Search Results", "journal-relationships.search.results.head": "जर्नल शोध परिणाम", - // "journal.search.title": "Journal Search", "journal.search.title": "जर्नल शोध", - // "journalissue.listelement.badge": "Journal Issue", "journalissue.listelement.badge": "जर्नल अंक", - // "journalissue.page.description": "Description", "journalissue.page.description": "वर्णन", - // "journalissue.page.edit": "Edit this item", "journalissue.page.edit": "हा आयटम संपादित करा", - // "journalissue.page.issuedate": "Issue Date", "journalissue.page.issuedate": "अंक तारीख", - // "journalissue.page.journal-issn": "Journal ISSN", "journalissue.page.journal-issn": "जर्नल ISSN", - // "journalissue.page.journal-title": "Journal Title", "journalissue.page.journal-title": "जर्नल शीर्षक", - // "journalissue.page.keyword": "Keywords", "journalissue.page.keyword": "कीवर्ड", - // "journalissue.page.number": "Number", "journalissue.page.number": "क्रमांक", - // "journalissue.page.options": "Options", "journalissue.page.options": "पर्याय", - // "journalissue.page.titleprefix": "Journal Issue: ", - // TODO New key - Add a translation - "journalissue.page.titleprefix": "Journal Issue: ", + "journalissue.page.titleprefix": "जर्नल अंक: ", - // "journalissue.search.results.head": "Journal Issue Search Results", "journalissue.search.results.head": "जर्नल अंक शोध परिणाम", - // "journalvolume.listelement.badge": "Journal Volume", "journalvolume.listelement.badge": "जर्नल खंड", - // "journalvolume.page.description": "Description", "journalvolume.page.description": "वर्णन", - // "journalvolume.page.edit": "Edit this item", "journalvolume.page.edit": "हा आयटम संपादित करा", - // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "अंक तारीख", - // "journalvolume.page.options": "Options", "journalvolume.page.options": "पर्याय", - // "journalvolume.page.titleprefix": "Journal Volume: ", - // TODO New key - Add a translation - "journalvolume.page.titleprefix": "Journal Volume: ", + "journalvolume.page.titleprefix": "जर्नल खंड: ", - // "journalvolume.page.volume": "Volume", "journalvolume.page.volume": "खंड", - // "journalvolume.search.results.head": "Journal Volume Search Results", "journalvolume.search.results.head": "जर्नल खंड शोध परिणाम", - // "iiifsearchable.listelement.badge": "Document Media", "iiifsearchable.listelement.badge": "दस्तऐवज मीडिया", - // "iiifsearchable.page.titleprefix": "Document: ", - // TODO New key - Add a translation - "iiifsearchable.page.titleprefix": "Document: ", + "iiifsearchable.page.titleprefix": "दस्तऐवज: ", - // "iiifsearchable.page.doi": "Permanent Link: ", - // TODO New key - Add a translation - "iiifsearchable.page.doi": "Permanent Link: ", + "iiifsearchable.page.doi": "स्थायी लिंक: ", - // "iiifsearchable.page.issue": "Issue: ", - // TODO New key - Add a translation - "iiifsearchable.page.issue": "Issue: ", + "iiifsearchable.page.issue": "मुद्दा: ", - // "iiifsearchable.page.description": "Description: ", - // TODO New key - Add a translation - "iiifsearchable.page.description": "Description: ", + "iiifsearchable.page.description": "वर्णन: ", - // "iiifviewer.fullscreen.notice": "Use full screen for better viewing.", "iiifviewer.fullscreen.notice": "चांगल्या पाहण्यासाठी पूर्ण स्क्रीन वापरा.", - // "iiif.listelement.badge": "Image Media", "iiif.listelement.badge": "प्रतिमा मीडिया", - // "iiif.page.titleprefix": "Image: ", - // TODO New key - Add a translation - "iiif.page.titleprefix": "Image: ", + "iiif.page.titleprefix": "प्रतिमा: ", - // "iiif.page.doi": "Permanent Link: ", - // TODO New key - Add a translation - "iiif.page.doi": "Permanent Link: ", + "iiif.page.doi": "स्थायी लिंक: ", - // "iiif.page.issue": "Issue: ", - // TODO New key - Add a translation - "iiif.page.issue": "Issue: ", + "iiif.page.issue": "मुद्दा: ", - // "iiif.page.description": "Description: ", - // TODO New key - Add a translation - "iiif.page.description": "Description: ", + "iiif.page.description": "वर्णन: ", - // "loading.bitstream": "Loading bitstream...", "loading.bitstream": "बिटस्ट्रीम लोड करत आहे...", - // "loading.bitstreams": "Loading bitstreams...", "loading.bitstreams": "बिटस्ट्रीम लोड करत आहे...", - // "loading.browse-by": "Loading items...", "loading.browse-by": "आयटम लोड करत आहे...", - // "loading.browse-by-page": "Loading page...", "loading.browse-by-page": "पृष्ठ लोड करत आहे...", - // "loading.collection": "Loading collection...", "loading.collection": "संग्रह लोड करत आहे...", - // "loading.collections": "Loading collections...", "loading.collections": "संग्रह लोड करत आहे...", - // "loading.content-source": "Loading content source...", "loading.content-source": "सामग्री स्रोत लोड करत आहे...", - // "loading.community": "Loading community...", "loading.community": "समुदाय लोड करत आहे...", - // "loading.default": "Loading...", "loading.default": "लोड करत आहे...", - // "loading.item": "Loading item...", "loading.item": "आयटम लोड करत आहे...", - // "loading.items": "Loading items...", "loading.items": "आयटम लोड करत आहे...", - // "loading.mydspace-results": "Loading items...", "loading.mydspace-results": "आयटम लोड करत आहे...", - // "loading.objects": "Loading...", "loading.objects": "लोड करत आहे...", - // "loading.recent-submissions": "Loading recent submissions...", "loading.recent-submissions": "अलीकडील सबमिशन लोड करत आहे...", - // "loading.search-results": "Loading search results...", "loading.search-results": "शोध परिणाम लोड करत आहे...", - // "loading.sub-collections": "Loading sub-collections...", "loading.sub-collections": "उप-संग्रह लोड करत आहे...", - // "loading.sub-communities": "Loading sub-communities...", "loading.sub-communities": "उप-समुदाय लोड करत आहे...", - // "loading.top-level-communities": "Loading top-level communities...", "loading.top-level-communities": "शीर्ष-स्तरीय समुदाय लोड करत आहे...", - // "login.form.email": "Email address", "login.form.email": "ईमेल पत्ता", - // "login.form.forgot-password": "Have you forgotten your password?", "login.form.forgot-password": "आपला पासवर्ड विसरलात?", - // "login.form.header": "Please log in to DSpace", "login.form.header": "कृपया DSpace मध्ये लॉग इन करा", - // "login.form.new-user": "New user? Click here to register.", "login.form.new-user": "नवीन वापरकर्ता? नोंदणीसाठी येथे क्लिक करा.", - // "login.form.oidc": "Log in with OIDC", "login.form.oidc": "OIDC सह लॉग इन करा", - // "login.form.orcid": "Log in with ORCID", "login.form.orcid": "ORCID सह लॉग इन करा", - // "login.form.password": "Password", "login.form.password": "पासवर्ड", - // "login.form.saml": "Log in with SAML", "login.form.saml": "SAML सह लॉग इन करा", - // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Shibboleth सह लॉग इन करा", - // "login.form.submit": "Log in", "login.form.submit": "लॉग इन करा", - // "login.title": "Login", "login.title": "लॉग इन", - // "login.breadcrumbs": "Login", "login.breadcrumbs": "लॉग इन", - // "logout.form.header": "Log out from DSpace", "logout.form.header": "DSpace मधून लॉग आउट करा", - // "logout.form.submit": "Log out", "logout.form.submit": "लॉग आउट करा", - // "logout.title": "Logout", "logout.title": "लॉग आउट", - // "menu.header.nav.description": "Admin navigation bar", "menu.header.nav.description": "प्रशासन नेव्हिगेशन बार", - // "menu.header.admin": "Management", "menu.header.admin": "व्यवस्थापन", - // "menu.header.image.logo": "Repository logo", "menu.header.image.logo": "संग्रह लोगो", - // "menu.header.admin.description": "Management menu", "menu.header.admin.description": "व्यवस्थापन मेनू", - // "menu.section.access_control": "Access Control", "menu.section.access_control": "प्रवेश नियंत्रण", - // "menu.section.access_control_authorizations": "Authorizations", "menu.section.access_control_authorizations": "प्राधिकरण", - // "menu.section.access_control_bulk": "Bulk Access Management", "menu.section.access_control_bulk": "बल्क प्रवेश व्यवस्थापन", - // "menu.section.access_control_groups": "Groups", "menu.section.access_control_groups": "गट", - // "menu.section.access_control_people": "People", "menu.section.access_control_people": "लोक", - // "menu.section.reports": "Reports", "menu.section.reports": "अहवाल", - // "menu.section.reports.collections": "Filtered Collections", "menu.section.reports.collections": "फिल्टर केलेले संग्रह", - // "menu.section.reports.queries": "Metadata Query", "menu.section.reports.queries": "मेटाडेटा क्वेरी", - // "menu.section.admin_search": "Admin Search", "menu.section.admin_search": "प्रशासन शोध", - // "menu.section.browse_community": "This Community", "menu.section.browse_community": "हा समुदाय", - // "menu.section.browse_community_by_author": "By Author", "menu.section.browse_community_by_author": "लेखकानुसार", - // "menu.section.browse_community_by_issue_date": "By Issue Date", "menu.section.browse_community_by_issue_date": "मुद्द्यानुसार", - // "menu.section.browse_community_by_title": "By Title", "menu.section.browse_community_by_title": "शीर्षकानुसार", - // "menu.section.browse_global": "All of DSpace", "menu.section.browse_global": "संपूर्ण DSpace", - // "menu.section.browse_global_by_author": "By Author", "menu.section.browse_global_by_author": "लेखकानुसार", - // "menu.section.browse_global_by_dateissued": "By Issue Date", "menu.section.browse_global_by_dateissued": "मुद्द्यानुसार", - // "menu.section.browse_global_by_subject": "By Subject", "menu.section.browse_global_by_subject": "विषयानुसार", - // "menu.section.browse_global_by_srsc": "By Subject Category", "menu.section.browse_global_by_srsc": "विषय श्रेणीनुसार", - // "menu.section.browse_global_by_nsi": "By Norwegian Science Index", "menu.section.browse_global_by_nsi": "नॉर्वेजियन सायन्स इंडेक्सनुसार", - // "menu.section.browse_global_by_title": "By Title", "menu.section.browse_global_by_title": "शीर्षकानुसार", - // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "समुदाय आणि संग्रह", - // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", "menu.section.browse_global_geospatial_map": "भौगोलिक स्थानानुसार (नकाशा)", - // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "नियंत्रण पॅनेल", - // "menu.section.curation_task": "Curation Task", "menu.section.curation_task": "क्युरेशन कार्य", - // "menu.section.edit": "Edit", "menu.section.edit": "संपादित करा", - // "menu.section.edit_collection": "Collection", "menu.section.edit_collection": "संग्रह", - // "menu.section.edit_community": "Community", "menu.section.edit_community": "समुदाय", - // "menu.section.edit_item": "Item", "menu.section.edit_item": "आयटम", - // "menu.section.export": "Export", "menu.section.export": "निर्यात", - // "menu.section.export_collection": "Collection", "menu.section.export_collection": "संग्रह", - // "menu.section.export_community": "Community", "menu.section.export_community": "समुदाय", - // "menu.section.export_item": "Item", "menu.section.export_item": "आयटम", - // "menu.section.export_metadata": "Metadata", "menu.section.export_metadata": "मेटाडेटा", - // "menu.section.export_batch": "Batch Export (ZIP)", "menu.section.export_batch": "बॅच निर्यात (ZIP)", - // "menu.section.icon.access_control": "Access Control menu section", "menu.section.icon.access_control": "प्रवेश नियंत्रण मेनू विभाग", - // "menu.section.icon.reports": "Reports menu section", "menu.section.icon.reports": "अहवाल मेनू विभाग", - // "menu.section.icon.admin_search": "Admin search menu section", "menu.section.icon.admin_search": "प्रशासन शोध मेनू विभाग", - // "menu.section.icon.control_panel": "Control Panel menu section", "menu.section.icon.control_panel": "नियंत्रण पॅनेल मेनू विभाग", - // "menu.section.icon.curation_tasks": "Curation Task menu section", "menu.section.icon.curation_tasks": "क्युरेशन कार्य मेनू विभाग", - // "menu.section.icon.edit": "Edit menu section", "menu.section.icon.edit": "संपादन मेनू विभाग", - // "menu.section.icon.export": "Export menu section", "menu.section.icon.export": "निर्यात मेनू विभाग", - // "menu.section.icon.find": "Find menu section", "menu.section.icon.find": "शोधा मेनू विभाग", - // "menu.section.icon.health": "Health check menu section", "menu.section.icon.health": "आरोग्य तपासणी मेनू विभाग", - // "menu.section.icon.import": "Import menu section", "menu.section.icon.import": "आयात मेनू विभाग", - // "menu.section.icon.new": "New menu section", "menu.section.icon.new": "नवीन मेनू विभाग", - // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "साइडबार पिन करा", - // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "साइडबार अनपिन करा", - // "menu.section.icon.notifications": "Notifications menu section", "menu.section.icon.notifications": "सूचना मेनू विभाग", - // "menu.section.import": "Import", "menu.section.import": "आयात", - // "menu.section.import_batch": "Batch Import (ZIP)", "menu.section.import_batch": "बॅच आयात (ZIP)", - // "menu.section.import_metadata": "Metadata", "menu.section.import_metadata": "मेटाडेटा", - // "menu.section.new": "New", "menu.section.new": "नवीन", - // "menu.section.new_collection": "Collection", "menu.section.new_collection": "संग्रह", - // "menu.section.new_community": "Community", "menu.section.new_community": "समुदाय", - // "menu.section.new_item": "Item", "menu.section.new_item": "आयटम", - // "menu.section.new_item_version": "Item Version", "menu.section.new_item_version": "आयटम आवृत्ती", - // "menu.section.new_process": "Process", "menu.section.new_process": "प्रक्रिया", - // "menu.section.notifications": "Notifications", "menu.section.notifications": "सूचना", - // "menu.section.quality-assurance": "Quality Assurance", "menu.section.quality-assurance": "गुणवत्ता आश्वासन", - // "menu.section.notifications_publication-claim": "Publication Claim", "menu.section.notifications_publication-claim": "प्रकाशन दावा", - // "menu.section.pin": "Pin sidebar", "menu.section.pin": "साइडबार पिन करा", - // "menu.section.unpin": "Unpin sidebar", "menu.section.unpin": "साइडबार अनपिन करा", - // "menu.section.processes": "Processes", "menu.section.processes": "प्रक्रिया", - // "menu.section.health": "Health", "menu.section.health": "आरोग्य", - // "menu.section.registries": "Registries", "menu.section.registries": "नोंदणी", - // "menu.section.registries_format": "Format", "menu.section.registries_format": "फॉरमॅट", - // "menu.section.registries_metadata": "Metadata", "menu.section.registries_metadata": "मेटाडेटा", - // "menu.section.statistics": "Statistics", "menu.section.statistics": "आकडेवारी", - // "menu.section.statistics_task": "Statistics Task", "menu.section.statistics_task": "आकडेवारी कार्य", - // "menu.section.toggle.access_control": "Toggle Access Control section", "menu.section.toggle.access_control": "प्रवेश नियंत्रण विभाग टॉगल करा", - // "menu.section.toggle.reports": "Toggle Reports section", "menu.section.toggle.reports": "अहवाल विभाग टॉगल करा", - // "menu.section.toggle.control_panel": "Toggle Control Panel section", "menu.section.toggle.control_panel": "नियंत्रण पॅनेल विभाग टॉगल करा", - // "menu.section.toggle.curation_task": "Toggle Curation Task section", "menu.section.toggle.curation_task": "क्युरेशन कार्य विभाग टॉगल करा", - // "menu.section.toggle.edit": "Toggle Edit section", "menu.section.toggle.edit": "संपादन विभाग टॉगल करा", - // "menu.section.toggle.export": "Toggle Export section", "menu.section.toggle.export": "निर्यात विभाग टॉगल करा", - // "menu.section.toggle.find": "Toggle Find section", "menu.section.toggle.find": "शोधा विभाग टॉगल करा", - // "menu.section.toggle.import": "Toggle Import section", "menu.section.toggle.import": "आयात विभाग टॉगल करा", - // "menu.section.toggle.new": "Toggle New section", "menu.section.toggle.new": "नवीन विभाग टॉगल करा", - // "menu.section.toggle.registries": "Toggle Registries section", "menu.section.toggle.registries": "नोंदणी विभाग टॉगल करा", - // "menu.section.toggle.statistics_task": "Toggle Statistics Task section", "menu.section.toggle.statistics_task": "आकडेवारी कार्य विभाग टॉगल करा", - // "menu.section.workflow": "Administer Workflow", "menu.section.workflow": "वर्कफ्लो प्रशासित करा", - // "metadata-export-search.tooltip": "Export search results as CSV", "metadata-export-search.tooltip": "शोध परिणाम CSV म्हणून निर्यात करा", - // "metadata-export-search.submit.success": "The export was started successfully", "metadata-export-search.submit.success": "निर्यात यशस्वीरित्या सुरू झाली", - // "metadata-export-search.submit.error": "Starting the export has failed", "metadata-export-search.submit.error": "निर्यात सुरू करण्यात अयशस्वी", - // "mydspace.breadcrumbs": "MyDSpace", "mydspace.breadcrumbs": "MyDSpace", - // "mydspace.description": "", "mydspace.description": "", - // "mydspace.messages.controller-help": "Select this option to send a message to item's submitter.", "mydspace.messages.controller-help": "आयटमच्या सबमिटरला संदेश पाठवण्यासाठी हा पर्याय निवडा.", - // "mydspace.messages.description-placeholder": "Insert your message here...", "mydspace.messages.description-placeholder": "आपला संदेश येथे प्रविष्ट करा...", - // "mydspace.messages.hide-msg": "Hide message", "mydspace.messages.hide-msg": "संदेश लपवा", - // "mydspace.messages.mark-as-read": "Mark as read", "mydspace.messages.mark-as-read": "वाचले म्हणून चिन्हांकित करा", - // "mydspace.messages.mark-as-unread": "Mark as unread", "mydspace.messages.mark-as-unread": "न वाचले म्हणून चिन्हांकित करा", - // "mydspace.messages.no-content": "No content.", "mydspace.messages.no-content": "कोणतीही सामग्री नाही.", - // "mydspace.messages.no-messages": "No messages yet.", "mydspace.messages.no-messages": "अजून कोणतेही संदेश नाहीत.", - // "mydspace.messages.send-btn": "Send", "mydspace.messages.send-btn": "पाठवा", - // "mydspace.messages.show-msg": "Show message", "mydspace.messages.show-msg": "संदेश दाखवा", - // "mydspace.messages.subject-placeholder": "Subject...", "mydspace.messages.subject-placeholder": "विषय...", - // "mydspace.messages.submitter-help": "Select this option to send a message to controller.", "mydspace.messages.submitter-help": "नियंत्रकाला संदेश पाठवण्यासाठी हा पर्याय निवडा.", - // "mydspace.messages.title": "Messages", "mydspace.messages.title": "संदेश", - // "mydspace.messages.to": "To", "mydspace.messages.to": "प्रति", - // "mydspace.new-submission": "New submission", "mydspace.new-submission": "नवीन सबमिशन", - // "mydspace.new-submission-external": "Import metadata from external source", "mydspace.new-submission-external": "बाह्य स्रोतातून मेटाडेटा आयात करा", - // "mydspace.new-submission-external-short": "Import metadata", "mydspace.new-submission-external-short": "मेटाडेटा आयात करा", - // "mydspace.results.head": "Your submissions", "mydspace.results.head": "आपली सबमिशन", - // "mydspace.results.no-abstract": "No Abstract", "mydspace.results.no-abstract": "सारांश नाही", - // "mydspace.results.no-authors": "No Authors", "mydspace.results.no-authors": "लेखक नाहीत", - // "mydspace.results.no-collections": "No Collections", "mydspace.results.no-collections": "संग्रह नाहीत", - // "mydspace.results.no-date": "No Date", "mydspace.results.no-date": "तारीख नाही", - // "mydspace.results.no-files": "No Files", "mydspace.results.no-files": "फाइल्स नाहीत", - // "mydspace.results.no-results": "There were no items to show", "mydspace.results.no-results": "दाखविण्यासाठी कोणतेही आयटम नव्हते", - // "mydspace.results.no-title": "No title", "mydspace.results.no-title": "शीर्षक नाही", - // "mydspace.results.no-uri": "No URI", "mydspace.results.no-uri": "URI नाही", - // "mydspace.search-form.placeholder": "Search in MyDSpace...", "mydspace.search-form.placeholder": "MyDSpace मध्ये शोधा...", - // "mydspace.show.workflow": "Workflow tasks", "mydspace.show.workflow": "वर्कफ्लो कार्य", - // "mydspace.show.workspace": "Your submissions", "mydspace.show.workspace": "आपली सबमिशन", - // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "पर्यवेक्षित आयटम", - // "mydspace.status": "My DSpace status:", - // TODO New key - Add a translation - "mydspace.status": "My DSpace status:", - - // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "संग्रहित", - // "mydspace.status.mydspaceValidation": "Validation", "mydspace.status.mydspaceValidation": "प्रमाणीकरण", - // "mydspace.status.mydspaceWaitingController": "Waiting for reviewer", "mydspace.status.mydspaceWaitingController": "पुनरावलोककाची प्रतीक्षा", - // "mydspace.status.mydspaceWorkflow": "Workflow", "mydspace.status.mydspaceWorkflow": "वर्कफ्लो", - // "mydspace.status.mydspaceWorkspace": "Workspace", "mydspace.status.mydspaceWorkspace": "वर्कस्पेस", - // "mydspace.title": "MyDSpace", "mydspace.title": "MyDSpace", - // "mydspace.upload.upload-failed": "Error creating new workspace. Please verify the content uploaded before retry.", "mydspace.upload.upload-failed": "नवीन वर्कस्पेस तयार करताना त्रुटी. कृपया पुन्हा प्रयत्न करण्यापूर्वी अपलोड केलेली सामग्री सत्यापित करा.", - // "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.", "mydspace.upload.upload-failed-manyentries": "प्रक्रिया न होणारी फाइल. खूप जास्त नोंदी आढळल्या परंतु फाइलसाठी फक्त एकच परवानगी आहे.", - // "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.", "mydspace.upload.upload-failed-moreonefile": "प्रक्रिया न होणारी विनंती. फक्त एक फाइल परवानगी आहे.", - // "mydspace.upload.upload-multiple-successful": "{{qty}} new workspace items created.", "mydspace.upload.upload-multiple-successful": "{{qty}} नवीन वर्कस्पेस आयटम तयार केले.", - // "mydspace.view-btn": "View", "mydspace.view-btn": "पहा", - // "nav.expandable-navbar-section-suffix": "(submenu)", "nav.expandable-navbar-section-suffix": "(उपमेनू)", - // "notification.suggestion": "We found {{count}} publications in the {{source}} that seems to be related to your profile.
", "notification.suggestion": "आम्हाला {{source}} मध्ये {{count}} प्रकाशने सापडली आहेत जी तुमच्या प्रोफाइलशी संबंधित असल्याचे दिसते.
", - // "notification.suggestion.review": "review the suggestions", "notification.suggestion.review": "सूचना पुनरावलोकन करा", - // "notification.suggestion.please": "Please", "notification.suggestion.please": "कृपया", - // "nav.browse.header": "All of DSpace", "nav.browse.header": "संपूर्ण DSpace", - // "nav.community-browse.header": "By Community", "nav.community-browse.header": "समुदायानुसार", - // "nav.context-help-toggle": "Toggle context help", "nav.context-help-toggle": "संदर्भ मदत टॉगल करा", - // "nav.language": "Language switch", "nav.language": "भाषा स्विच", - // "nav.login": "Log In", "nav.login": "लॉग इन", - // "nav.user-profile-menu-and-logout": "User profile menu and log out", "nav.user-profile-menu-and-logout": "वापरकर्ता प्रोफाइल मेनू आणि लॉग आउट", - // "nav.logout": "Log Out", "nav.logout": "लॉग आउट", - // "nav.main.description": "Main navigation bar", "nav.main.description": "मुख्य नेव्हिगेशन बार", - // "nav.mydspace": "MyDSpace", "nav.mydspace": "MyDSpace", - // "nav.profile": "Profile", "nav.profile": "प्रोफाइल", - // "nav.search": "Search", "nav.search": "शोधा", - // "nav.search.button": "Submit search", "nav.search.button": "शोध सबमिट करा", - // "nav.statistics.header": "Statistics", "nav.statistics.header": "आकडेवारी", - // "nav.stop-impersonating": "Stop impersonating EPerson", "nav.stop-impersonating": "EPerson चे अनुकरण थांबवा", - // "nav.subscriptions": "Subscriptions", "nav.subscriptions": "सदस्यता", - // "nav.toggle": "Toggle navigation", "nav.toggle": "नेव्हिगेशन टॉगल करा", - // "nav.user.description": "User profile bar", "nav.user.description": "वापरकर्ता प्रोफाइल बार", - // "listelement.badge.dso-type": "Item type:", - // TODO New key - Add a translation - "listelement.badge.dso-type": "Item type:", - - // "none.listelement.badge": "Item", "none.listelement.badge": "आयटम", - // "publication-claim.title": "Publication claim", "publication-claim.title": "प्रकाशन दावा", - // "publication-claim.source.description": "Below you can see all the sources.", "publication-claim.source.description": "खाली तुम्हाला सर्व स्रोत दिसतील.", - // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "गुणवत्ता आश्वासन", - // "quality-assurance.topics.description": "Below you can see all the topics received from the subscriptions to {{source}}.", "quality-assurance.topics.description": "खाली तुम्हाला {{source}} सदस्यतांमधून प्राप्त झालेले सर्व विषय दिसतील.", - // "quality-assurance.source.description": "Below you can see all the notification's sources.", "quality-assurance.source.description": "खाली तुम्हाला सर्व सूचनांचे स्रोत दिसतील.", - // "quality-assurance.topics": "Current Topics", "quality-assurance.topics": "सध्याचे विषय", - // "quality-assurance.source": "Current Sources", "quality-assurance.source": "सध्याचे स्रोत", - // "quality-assurance.table.topic": "Topic", "quality-assurance.table.topic": "विषय", - // "quality-assurance.table.source": "Source", "quality-assurance.table.source": "स्रोत", - // "quality-assurance.table.last-event": "Last Event", "quality-assurance.table.last-event": "शेवटची घटना", - // "quality-assurance.table.actions": "Actions", "quality-assurance.table.actions": "क्रिया", - // "quality-assurance.source-list.button.detail": "Show topics for {{param}}", "quality-assurance.source-list.button.detail": "{{param}} साठी विषय दाखवा", - // "quality-assurance.topics-list.button.detail": "Show suggestions for {{param}}", "quality-assurance.topics-list.button.detail": "{{param}} साठी सूचना दाखवा", - // "quality-assurance.noTopics": "No topics found.", "quality-assurance.noTopics": "कोणतेही विषय आढळले नाहीत.", - // "quality-assurance.noSource": "No sources found.", "quality-assurance.noSource": "कोणतेही स्रोत आढळले नाहीत.", - // "notifications.events.title": "Quality Assurance Suggestions", "notifications.events.title": "गुणवत्ता आश्वासन सूचना", - // "quality-assurance.topic.error.service.retrieve": "An error occurred while loading the Quality Assurance topics", "quality-assurance.topic.error.service.retrieve": "गुणवत्ता आश्वासन विषय लोड करताना त्रुटी आली", - // "quality-assurance.source.error.service.retrieve": "An error occurred while loading the Quality Assurance source", "quality-assurance.source.error.service.retrieve": "गुणवत्ता आश्वासन स्रोत लोड करताना त्रुटी आली", - // "quality-assurance.loading": "Loading ...", "quality-assurance.loading": "लोड करत आहे ...", - // "quality-assurance.events.topic": "Topic:", - // TODO New key - Add a translation - "quality-assurance.events.topic": "Topic:", + "quality-assurance.events.topic": "विषय:", - // "quality-assurance.noEvents": "No suggestions found.", "quality-assurance.noEvents": "कोणत्याही सूचना आढळल्या नाहीत.", - // "quality-assurance.event.table.trust": "Trust", "quality-assurance.event.table.trust": "विश्वास", - // "quality-assurance.event.table.publication": "Publication", "quality-assurance.event.table.publication": "प्रकाशन", - // "quality-assurance.event.table.details": "Details", "quality-assurance.event.table.details": "तपशील", - // "quality-assurance.event.table.project-details": "Project details", "quality-assurance.event.table.project-details": "प्रकल्प तपशील", - // "quality-assurance.event.table.reasons": "Reasons", "quality-assurance.event.table.reasons": "कारणे", - // "quality-assurance.event.table.actions": "Actions", "quality-assurance.event.table.actions": "क्रिया", - // "quality-assurance.event.action.accept": "Accept suggestion", "quality-assurance.event.action.accept": "सूचना स्वीकारा", - // "quality-assurance.event.action.ignore": "Ignore suggestion", "quality-assurance.event.action.ignore": "सूचना दुर्लक्षित करा", - // "quality-assurance.event.action.undo": "Delete", "quality-assurance.event.action.undo": "हटवा", - // "quality-assurance.event.action.reject": "Reject suggestion", "quality-assurance.event.action.reject": "सूचना नाकार", - // "quality-assurance.event.action.import": "Import project and accept suggestion", "quality-assurance.event.action.import": "प्रकल्प आयात करा आणि सूचना स्वीकारा", - // "quality-assurance.event.table.pidtype": "PID Type:", - // TODO New key - Add a translation - "quality-assurance.event.table.pidtype": "PID Type:", + "quality-assurance.event.table.pidtype": "PID प्रकार:", - // "quality-assurance.event.table.pidvalue": "PID Value:", - // TODO New key - Add a translation - "quality-assurance.event.table.pidvalue": "PID Value:", + "quality-assurance.event.table.pidvalue": "PID मूल्य:", - // "quality-assurance.event.table.subjectValue": "Subject Value:", - // TODO New key - Add a translation - "quality-assurance.event.table.subjectValue": "Subject Value:", + "quality-assurance.event.table.subjectValue": "विषय मूल्य:", - // "quality-assurance.event.table.abstract": "Abstract:", - // TODO New key - Add a translation - "quality-assurance.event.table.abstract": "Abstract:", + "quality-assurance.event.table.abstract": "सारांश:", - // "quality-assurance.event.table.suggestedProject": "OpenAIRE Suggested Project data", "quality-assurance.event.table.suggestedProject": "OpenAIRE सुचवलेले प्रकल्प डेटा", - // "quality-assurance.event.table.project": "Project title:", - // TODO New key - Add a translation - "quality-assurance.event.table.project": "Project title:", + "quality-assurance.event.table.project": "प्रकल्प शीर्षक:", - // "quality-assurance.event.table.acronym": "Acronym:", - // TODO New key - Add a translation - "quality-assurance.event.table.acronym": "Acronym:", + "quality-assurance.event.table.acronym": "अक्रोनिम:", - // "quality-assurance.event.table.code": "Code:", - // TODO New key - Add a translation - "quality-assurance.event.table.code": "Code:", + "quality-assurance.event.table.code": "कोड:", - // "quality-assurance.event.table.funder": "Funder:", - // TODO New key - Add a translation - "quality-assurance.event.table.funder": "Funder:", + "quality-assurance.event.table.funder": "फंडर:", - // "quality-assurance.event.table.fundingProgram": "Funding program:", - // TODO New key - Add a translation - "quality-assurance.event.table.fundingProgram": "Funding program:", + "quality-assurance.event.table.fundingProgram": "फंडिंग कार्यक्रम:", - // "quality-assurance.event.table.jurisdiction": "Jurisdiction:", - // TODO New key - Add a translation - "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + "quality-assurance.event.table.jurisdiction": "क्षेत्राधिकार:", - // "quality-assurance.events.back": "Back to topics", "quality-assurance.events.back": "विषयांकडे परत जा", - // "quality-assurance.events.back-to-sources": "Back to sources", "quality-assurance.events.back-to-sources": "स्रोतांकडे परत जा", - // "quality-assurance.event.table.less": "Show less", "quality-assurance.event.table.less": "कमी दाखवा", - // "quality-assurance.event.table.more": "Show more", "quality-assurance.event.table.more": "अधिक दाखवा", - // "quality-assurance.event.project.found": "Bound to the local record:", - // TODO New key - Add a translation - "quality-assurance.event.project.found": "Bound to the local record:", + "quality-assurance.event.project.found": "स्थानिक नोंदीशी बांधलेले:", - // "quality-assurance.event.project.notFound": "No local record found", "quality-assurance.event.project.notFound": "कोणतीही स्थानिक नोंद आढळली नाही", - // "quality-assurance.event.sure": "Are you sure?", "quality-assurance.event.sure": "आपल्याला खात्री आहे?", - // "quality-assurance.event.ignore.description": "This operation can't be undone. Ignore this suggestion?", "quality-assurance.event.ignore.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. ही सूचना दुर्लक्षित करा?", - // "quality-assurance.event.undo.description": "This operation can't be undone!", "quality-assurance.event.undo.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही!", - // "quality-assurance.event.reject.description": "This operation can't be undone. Reject this suggestion?", "quality-assurance.event.reject.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. ही सूचना नाकार?", - // "quality-assurance.event.accept.description": "No DSpace project selected. A new project will be created based on the suggestion data.", "quality-assurance.event.accept.description": "कोणताही DSpace प्रकल्प निवडलेला नाही. सूचना डेटावर आधारित नवीन प्रकल्प तयार केला जाईल.", - // "quality-assurance.event.action.cancel": "Cancel", "quality-assurance.event.action.cancel": "रद्द करा", - // "quality-assurance.event.action.saved": "Your decision has been saved successfully.", "quality-assurance.event.action.saved": "आपला निर्णय यशस्वीरित्या जतन केला गेला आहे.", - // "quality-assurance.event.action.error": "An error has occurred. Your decision has not been saved.", "quality-assurance.event.action.error": "त्रुटी आली आहे. आपला निर्णय जतन केला गेला नाही.", - // "quality-assurance.event.modal.project.title": "Choose a project to bound", "quality-assurance.event.modal.project.title": "बांधण्यासाठी प्रकल्प निवडा", - // "quality-assurance.event.modal.project.publication": "Publication:", - // TODO New key - Add a translation - "quality-assurance.event.modal.project.publication": "Publication:", + "quality-assurance.event.modal.project.publication": "प्रकाशन:", - // "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", - // TODO New key - Add a translation - "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + "quality-assurance.event.modal.project.bountToLocal": "स्थानिक नोंदीशी बांधलेले:", - // "quality-assurance.event.modal.project.select": "Project search", "quality-assurance.event.modal.project.select": "प्रकल्प शोध", - // "quality-assurance.event.modal.project.search": "Search", "quality-assurance.event.modal.project.search": "शोधा", - // "quality-assurance.event.modal.project.clear": "Clear", "quality-assurance.event.modal.project.clear": "साफ करा", - // "quality-assurance.event.modal.project.cancel": "Cancel", "quality-assurance.event.modal.project.cancel": "रद्द करा", - // "quality-assurance.event.modal.project.bound": "Bound project", "quality-assurance.event.modal.project.bound": "बांधलेला प्रकल्प", - // "quality-assurance.event.modal.project.remove": "Remove", "quality-assurance.event.modal.project.remove": "काढा", - // "quality-assurance.event.modal.project.placeholder": "Enter a project name", "quality-assurance.event.modal.project.placeholder": "प्रकल्पाचे नाव प्रविष्ट करा", - // "quality-assurance.event.modal.project.notFound": "No project found.", "quality-assurance.event.modal.project.notFound": "कोणताही प्रकल्प आढळला नाही.", - // "quality-assurance.event.project.bounded": "The project has been linked successfully.", "quality-assurance.event.project.bounded": "प्रकल्प यशस्वीरित्या लिंक केला गेला आहे.", - // "quality-assurance.event.project.removed": "The project has been successfully unlinked.", "quality-assurance.event.project.removed": "प्रकल्प यशस्वीरित्या अनलिंक केला गेला आहे.", - // "quality-assurance.event.project.error": "An error has occurred. No operation performed.", "quality-assurance.event.project.error": "त्रुटी आली आहे. कोणतीही क्रिया केली गेली नाही.", - // "quality-assurance.event.reason": "Reason", "quality-assurance.event.reason": "कारण", - // "orgunit.listelement.badge": "Organizational Unit", "orgunit.listelement.badge": "संगठनात्मक युनिट", - // "orgunit.listelement.no-title": "Untitled", "orgunit.listelement.no-title": "शीर्षक नाही", - // "orgunit.page.city": "City", "orgunit.page.city": "शहर", - // "orgunit.page.country": "Country", "orgunit.page.country": "देश", - // "orgunit.page.dateestablished": "Date established", "orgunit.page.dateestablished": "स्थापनेची तारीख", - // "orgunit.page.description": "Description", "orgunit.page.description": "वर्णन", - // "orgunit.page.edit": "Edit this item", "orgunit.page.edit": "हा आयटम संपादित करा", - // "orgunit.page.id": "ID", "orgunit.page.id": "ID", - // "orgunit.page.options": "Options", "orgunit.page.options": "पर्याय", - // "orgunit.page.titleprefix": "Organizational Unit: ", - // TODO New key - Add a translation - "orgunit.page.titleprefix": "Organizational Unit: ", + "orgunit.page.titleprefix": "संगठनात्मक युनिट: ", - // "orgunit.page.ror": "ROR Identifier", "orgunit.page.ror": "ROR ओळखकर्ता", - // "orgunit.search.results.head": "Organizational Unit Search Results", "orgunit.search.results.head": "संगठनात्मक युनिट शोध परिणाम", - // "pagination.options.description": "Pagination options", "pagination.options.description": "पृष्ठांकन पर्याय", - // "pagination.results-per-page": "Results Per Page", "pagination.results-per-page": "प्रति पृष्ठ परिणाम", - // "pagination.showing.detail": "{{ range }} of {{ total }}", "pagination.showing.detail": "{{ range }} पैकी {{ total }}", - // "pagination.showing.label": "Now showing ", "pagination.showing.label": "आता दाखवत आहे ", - // "pagination.sort-direction": "Sort Options", "pagination.sort-direction": "क्रमवारी पर्याय", - // "person.listelement.badge": "Person", "person.listelement.badge": "व्यक्ती", - // "person.listelement.no-title": "No name found", "person.listelement.no-title": "नाव सापडले नाही", - // "person.page.birthdate": "Birth Date", "person.page.birthdate": "जन्मतारीख", - // "person.page.edit": "Edit this item", "person.page.edit": "हा आयटम संपादित करा", - // "person.page.email": "Email Address", "person.page.email": "ईमेल पत्ता", - // "person.page.firstname": "First Name", "person.page.firstname": "पहिले नाव", - // "person.page.jobtitle": "Job Title", "person.page.jobtitle": "नोकरीचे शीर्षक", - // "person.page.lastname": "Last Name", "person.page.lastname": "आडनाव", - // "person.page.name": "Name", "person.page.name": "नाव", - // "person.page.link.full": "Show all metadata", "person.page.link.full": "सर्व मेटाडेटा दाखवा", - // "person.page.options": "Options", "person.page.options": "पर्याय", - // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", - // "person.page.staffid": "Staff ID", "person.page.staffid": "कर्मचारी आयडी", - // "person.page.titleprefix": "Person: ", - // TODO New key - Add a translation - "person.page.titleprefix": "Person: ", + "person.page.titleprefix": "व्यक्ती: ", - // "person.search.results.head": "Person Search Results", "person.search.results.head": "व्यक्ती शोध परिणाम", - // "person-relationships.search.results.head": "Person Search Results", "person-relationships.search.results.head": "व्यक्ती शोध परिणाम", - // "person.search.title": "Person Search", "person.search.title": "व्यक्ती शोध", - // "process.new.select-parameters": "Parameters", "process.new.select-parameters": "पॅरामीटर्स", - // "process.new.select-parameter": "Select parameter", "process.new.select-parameter": "पॅरामीटर निवडा", - // "process.new.add-parameter": "Add a parameter...", "process.new.add-parameter": "पॅरामीटर जोडा...", - // "process.new.delete-parameter": "Delete parameter", "process.new.delete-parameter": "पॅरामीटर हटवा", - // "process.new.parameter.label": "Parameter value", "process.new.parameter.label": "पॅरामीटर मूल्य", - // "process.new.cancel": "Cancel", "process.new.cancel": "रद्द करा", - // "process.new.submit": "Save", "process.new.submit": "जतन करा", - // "process.new.select-script": "Script", "process.new.select-script": "स्क्रिप्ट", - // "process.new.select-script.placeholder": "Choose a script...", "process.new.select-script.placeholder": "स्क्रिप्ट निवडा...", - // "process.new.select-script.required": "Script is required", "process.new.select-script.required": "स्क्रिप्ट आवश्यक आहे", - // "process.new.parameter.file.upload-button": "Select file...", "process.new.parameter.file.upload-button": "फाइल निवडा...", - // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "कृपया फाइल निवडा", - // "process.new.parameter.integer.required": "Parameter value is required", "process.new.parameter.integer.required": "पॅरामीटर मूल्य आवश्यक आहे", - // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "पॅरामीटर मूल्य आवश्यक आहे", - // "process.new.parameter.type.value": "value", "process.new.parameter.type.value": "मूल्य", - // "process.new.parameter.type.file": "file", "process.new.parameter.type.file": "फाइल", - // "process.new.parameter.required.missing": "The following parameters are required but still missing:", - // TODO New key - Add a translation - "process.new.parameter.required.missing": "The following parameters are required but still missing:", + "process.new.parameter.required.missing": "खालील पॅरामीटर्स आवश्यक आहेत परंतु अद्याप गायब आहेत:", - // "process.new.notification.success.title": "Success", "process.new.notification.success.title": "यश", - // "process.new.notification.success.content": "The process was successfully created", "process.new.notification.success.content": "प्रक्रिया यशस्वीरित्या तयार केली गेली", - // "process.new.notification.error.title": "Error", "process.new.notification.error.title": "त्रुटी", - // "process.new.notification.error.content": "An error occurred while creating this process", "process.new.notification.error.content": "ही प्रक्रिया तयार करताना त्रुटी आली", - // "process.new.notification.error.max-upload.content": "The file exceeds the maximum upload size", "process.new.notification.error.max-upload.content": "फाइलने कमाल अपलोड आकार ओलांडला आहे", - // "process.new.header": "Create a new process", "process.new.header": "नवीन प्रक्रिया तयार करा", - // "process.new.title": "Create a new process", "process.new.title": "नवीन प्रक्रिया तयार करा", - // "process.new.breadcrumbs": "Create a new process", "process.new.breadcrumbs": "नवीन प्रक्रिया तयार करा", - // "process.detail.arguments": "Arguments", "process.detail.arguments": "तर्क", - // "process.detail.arguments.empty": "This process doesn't contain any arguments", "process.detail.arguments.empty": "या प्रक्रियेमध्ये कोणतेही तर्क नाहीत", - // "process.detail.back": "Back", "process.detail.back": "मागे", - // "process.detail.output": "Process Output", "process.detail.output": "प्रक्रिया आउटपुट", - // "process.detail.logs.button": "Retrieve process output", "process.detail.logs.button": "प्रक्रिया आउटपुट पुनर्प्राप्त करा", - // "process.detail.logs.loading": "Retrieving", "process.detail.logs.loading": "पुनर्प्राप्त करत आहे", - // "process.detail.logs.none": "This process has no output", "process.detail.logs.none": "या प्रक्रियेमध्ये कोणतेही आउटपुट नाही", - // "process.detail.output-files": "Output Files", "process.detail.output-files": "आउटपुट फाइल्स", - // "process.detail.output-files.empty": "This process doesn't contain any output files", "process.detail.output-files.empty": "या प्रक्रियेमध्ये कोणतेही आउटपुट फाइल्स नाहीत", - // "process.detail.script": "Script", "process.detail.script": "स्क्रिप्ट", - // "process.detail.title": "Process: {{ id }} - {{ name }}", - // TODO New key - Add a translation - "process.detail.title": "Process: {{ id }} - {{ name }}", + "process.detail.title": "प्रक्रिया: {{ id }} - {{ name }}", - // "process.detail.start-time": "Start time", "process.detail.start-time": "प्रारंभ वेळ", - // "process.detail.end-time": "Finish time", "process.detail.end-time": "समाप्ती वेळ", - // "process.detail.status": "Status", "process.detail.status": "स्थिती", - // "process.detail.create": "Create similar process", "process.detail.create": "समान प्रक्रिया तयार करा", - // "process.detail.actions": "Actions", "process.detail.actions": "क्रिया", - // "process.detail.delete.button": "Delete process", "process.detail.delete.button": "प्रक्रिया हटवा", - // "process.detail.delete.header": "Delete process", "process.detail.delete.header": "प्रक्रिया हटवा", - // "process.detail.delete.body": "Are you sure you want to delete the current process?", "process.detail.delete.body": "आपण सध्याची प्रक्रिया हटवू इच्छिता?", - // "process.detail.delete.cancel": "Cancel", "process.detail.delete.cancel": "रद्द करा", - // "process.detail.delete.confirm": "Delete process", "process.detail.delete.confirm": "प्रक्रिया हटवा", - // "process.detail.delete.success": "The process was successfully deleted.", "process.detail.delete.success": "प्रक्रिया यशस्वीरित्या हटवली गेली.", - // "process.detail.delete.error": "Something went wrong when deleting the process", "process.detail.delete.error": "प्रक्रिया हटवताना काहीतरी चूक झाली", - // "process.detail.refreshing": "Auto-refreshing…", "process.detail.refreshing": "स्वतः-ताजेतवाने करत आहे…", - // "process.overview.table.completed.info": "Finish time (UTC)", "process.overview.table.completed.info": "समाप्ती वेळ (UTC)", - // "process.overview.table.completed.title": "Succeeded processes", "process.overview.table.completed.title": "यशस्वी प्रक्रिया", - // "process.overview.table.empty": "No matching processes found.", "process.overview.table.empty": "कोणतीही जुळणारी प्रक्रिया आढळली नाही.", - // "process.overview.table.failed.info": "Finish time (UTC)", "process.overview.table.failed.info": "समाप्ती वेळ (UTC)", - // "process.overview.table.failed.title": "Failed processes", "process.overview.table.failed.title": "अयशस्वी प्रक्रिया", - // "process.overview.table.finish": "Finish time (UTC)", "process.overview.table.finish": "समाप्ती वेळ (UTC)", - // "process.overview.table.id": "Process ID", "process.overview.table.id": "प्रक्रिया आयडी", - // "process.overview.table.name": "Name", "process.overview.table.name": "नाव", - // "process.overview.table.running.info": "Start time (UTC)", "process.overview.table.running.info": "प्रारंभ वेळ (UTC)", - // "process.overview.table.running.title": "Running processes", "process.overview.table.running.title": "चालू प्रक्रिया", - // "process.overview.table.scheduled.info": "Creation time (UTC)", "process.overview.table.scheduled.info": "निर्मिती वेळ (UTC)", - // "process.overview.table.scheduled.title": "Scheduled processes", "process.overview.table.scheduled.title": "नियोजित प्रक्रिया", - // "process.overview.table.start": "Start time (UTC)", "process.overview.table.start": "प्रारंभ वेळ (UTC)", - // "process.overview.table.status": "Status", "process.overview.table.status": "स्थिती", - // "process.overview.table.user": "User", "process.overview.table.user": "वापरकर्ता", - // "process.overview.title": "Processes Overview", "process.overview.title": "प्रक्रिया विहंगावलोकन", - // "process.overview.breadcrumbs": "Processes Overview", "process.overview.breadcrumbs": "प्रक्रिया विहंगावलोकन", - // "process.overview.new": "New", "process.overview.new": "नवीन", - // "process.overview.table.actions": "Actions", "process.overview.table.actions": "क्रिया", - // "process.overview.delete": "Delete {{count}} processes", "process.overview.delete": "{{count}} प्रक्रिया हटवा", - // "process.overview.delete-process": "Delete process", "process.overview.delete-process": "प्रक्रिया हटवा", - // "process.overview.delete.clear": "Clear delete selection", "process.overview.delete.clear": "हटविण्याची निवड साफ करा", - // "process.overview.delete.processing": "{{count}} process(es) are being deleted. Please wait for the deletion to fully complete. Note that this can take a while.", "process.overview.delete.processing": "{{count}} प्रक्रिया हटवली जात आहेत. कृपया हटविणे पूर्ण होण्याची प्रतीक्षा करा. लक्षात ठेवा की यास काही वेळ लागू शकतो.", - // "process.overview.delete.body": "Are you sure you want to delete {{count}} process(es)?", "process.overview.delete.body": "आपण {{count}} प्रक्रिया हटवू इच्छिता?", - // "process.overview.delete.header": "Delete processes", "process.overview.delete.header": "प्रक्रिया हटवा", - // "process.overview.unknown.user": "Unknown", "process.overview.unknown.user": "अज्ञात", - // "process.bulk.delete.error.head": "Error on deleteing process", "process.bulk.delete.error.head": "प्रक्रिया हटवताना त्रुटी", - // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ", "process.bulk.delete.error.body": "आयडी {{processId}} असलेली प्रक्रिया हटवली जाऊ शकली नाही. उर्वरित प्रक्रिया हटवणे सुरूच राहील.", - // "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted", "process.bulk.delete.success": "{{count}} प्रक्रिया यशस्वीरित्या हटवली गेली", - // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "प्रोफाइल अद्यतनित करा", - // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - // TODO New key - Add a translation - "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - - // "profile.card.accessibility.header": "Accessibility", - // TODO New key - Add a translation - "profile.card.accessibility.header": "Accessibility", - - // "profile.card.accessibility.link": "Go to Accessibility Settings Page", - // TODO New key - Add a translation - "profile.card.accessibility.link": "Go to Accessibility Settings Page", - - // "profile.card.identify": "Identify", "profile.card.identify": "ओळख", - // "profile.card.security": "Security", "profile.card.security": "सुरक्षा", - // "profile.form.submit": "Save", "profile.form.submit": "जतन करा", - // "profile.groups.head": "Authorization groups you belong to", "profile.groups.head": "आपण ज्या प्राधिकरण गटांचा भाग आहात", - // "profile.special.groups.head": "Authorization special groups you belong to", "profile.special.groups.head": "आपण ज्या प्राधिकरण विशेष गटांचा भाग आहात", - // "profile.metadata.form.error.firstname.required": "First Name is required", "profile.metadata.form.error.firstname.required": "पहिले नाव आवश्यक आहे", - // "profile.metadata.form.error.lastname.required": "Last Name is required", "profile.metadata.form.error.lastname.required": "आडनाव आवश्यक आहे", - // "profile.metadata.form.label.email": "Email Address", "profile.metadata.form.label.email": "ईमेल पत्ता", - // "profile.metadata.form.label.firstname": "First Name", "profile.metadata.form.label.firstname": "पहिले नाव", - // "profile.metadata.form.label.language": "Language", "profile.metadata.form.label.language": "भाषा", - // "profile.metadata.form.label.lastname": "Last Name", "profile.metadata.form.label.lastname": "आडनाव", - // "profile.metadata.form.label.phone": "Contact Telephone", "profile.metadata.form.label.phone": "संपर्क दूरध्वनी", - // "profile.metadata.form.notifications.success.content": "Your changes to the profile were saved.", "profile.metadata.form.notifications.success.content": "प्रोफाइलमध्ये आपले बदल जतन केले गेले.", - // "profile.metadata.form.notifications.success.title": "Profile saved", "profile.metadata.form.notifications.success.title": "प्रोफाइल जतन केले", - // "profile.notifications.warning.no-changes.content": "No changes were made to the Profile.", "profile.notifications.warning.no-changes.content": "प्रोफाइलमध्ये कोणतेही बदल केले गेले नाहीत.", - // "profile.notifications.warning.no-changes.title": "No changes", "profile.notifications.warning.no-changes.title": "कोणतेही बदल नाहीत", - // "profile.security.form.error.matching-passwords": "The passwords do not match.", "profile.security.form.error.matching-passwords": "पासवर्ड जुळत नाहीत.", - // "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.", "profile.security.form.info": "पर्यायी, आपण खालील बॉक्समध्ये नवीन पासवर्ड प्रविष्ट करू शकता आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करू शकता.", - // "profile.security.form.label.password": "Password", "profile.security.form.label.password": "पासवर्ड", - // "profile.security.form.label.passwordrepeat": "Retype to confirm", "profile.security.form.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा", - // "profile.security.form.label.current-password": "Current password", "profile.security.form.label.current-password": "सध्याचा पासवर्ड", - // "profile.security.form.notifications.success.content": "Your changes to the password were saved.", "profile.security.form.notifications.success.content": "आपल्या पासवर्डमध्ये बदल जतन केले गेले.", - // "profile.security.form.notifications.success.title": "Password saved", "profile.security.form.notifications.success.title": "पासवर्ड जतन केले", - // "profile.security.form.notifications.error.title": "Error changing passwords", "profile.security.form.notifications.error.title": "पासवर्ड बदलताना त्रुटी", - // "profile.security.form.notifications.error.change-failed": "An error occurred while trying to change the password. Please check if the current password is correct.", "profile.security.form.notifications.error.change-failed": "पासवर्ड बदलण्याचा प्रयत्न करताना त्रुटी आली. कृपया सध्याचा पासवर्ड योग्य आहे का ते तपासा.", - // "profile.security.form.notifications.error.not-same": "The provided passwords are not the same.", "profile.security.form.notifications.error.not-same": "प्रदान केलेले पासवर्ड समान नाहीत.", - // "profile.security.form.notifications.error.general": "Please fill required fields of security form.", "profile.security.form.notifications.error.general": "कृपया सुरक्षा फॉर्मची आवश्यक फील्ड भरा.", - // "profile.title": "Update Profile", "profile.title": "प्रोफाइल अद्यतनित करा", - // "profile.card.researcher": "Researcher Profile", "profile.card.researcher": "संशोधक प्रोफाइल", - // "project.listelement.badge": "Research Project", "project.listelement.badge": "संशोधन प्रकल्प", - // "project.page.contributor": "Contributors", "project.page.contributor": "योगदानकर्ते", - // "project.page.description": "Description", "project.page.description": "वर्णन", - // "project.page.edit": "Edit this item", "project.page.edit": "हा आयटम संपादित करा", - // "project.page.expectedcompletion": "Expected Completion", "project.page.expectedcompletion": "अपेक्षित पूर्णता", - // "project.page.funder": "Funders", "project.page.funder": "फंडर", - // "project.page.id": "ID", "project.page.id": "ID", - // "project.page.keyword": "Keywords", "project.page.keyword": "कीवर्ड", - // "project.page.options": "Options", "project.page.options": "पर्याय", - // "project.page.status": "Status", "project.page.status": "स्थिती", - // "project.page.titleprefix": "Research Project: ", - // TODO New key - Add a translation - "project.page.titleprefix": "Research Project: ", + "project.page.titleprefix": "संशोधन प्रकल्प: ", - // "project.search.results.head": "Project Search Results", "project.search.results.head": "प्रकल्प शोध परिणाम", - // "project-relationships.search.results.head": "Project Search Results", "project-relationships.search.results.head": "प्रकल्प शोध परिणाम", - // "publication.listelement.badge": "Publication", "publication.listelement.badge": "प्रकाशन", - // "publication.page.description": "Description", "publication.page.description": "वर्णन", - // "publication.page.edit": "Edit this item", "publication.page.edit": "हा आयटम संपादित करा", - // "publication.page.journal-issn": "Journal ISSN", "publication.page.journal-issn": "जर्नल ISSN", - // "publication.page.journal-title": "Journal Title", "publication.page.journal-title": "जर्नल शीर्षक", - // "publication.page.publisher": "Publisher", "publication.page.publisher": "प्रकाशक", - // "publication.page.options": "Options", "publication.page.options": "पर्याय", - // "publication.page.titleprefix": "Publication: ", - // TODO New key - Add a translation - "publication.page.titleprefix": "Publication: ", + "publication.page.titleprefix": "प्रकाशन: ", - // "publication.page.volume-title": "Volume Title", "publication.page.volume-title": "खंड शीर्षक", - // "publication.search.results.head": "Publication Search Results", "publication.search.results.head": "प्रकाशन शोध परिणाम", - // "publication-relationships.search.results.head": "Publication Search Results", "publication-relationships.search.results.head": "प्रकाशन शोध परिणाम", - // "publication.search.title": "Publication Search", "publication.search.title": "प्रकाशन शोध", - // "media-viewer.next": "Next", "media-viewer.next": "पुढे", - // "media-viewer.previous": "Previous", "media-viewer.previous": "मागील", - // "media-viewer.playlist": "Playlist", "media-viewer.playlist": "प्लेलिस्ट", - // "suggestion.loading": "Loading ...", "suggestion.loading": "लोड करत आहे ...", - // "suggestion.title": "Publication Claim", "suggestion.title": "प्रकाशन दावा", - // "suggestion.title.breadcrumbs": "Publication Claim", "suggestion.title.breadcrumbs": "प्रकाशन दावा", - // "suggestion.targets.description": "Below you can see all the suggestions ", "suggestion.targets.description": "खाली तुम्हाला सर्व सूचना दिसतील ", - // "suggestion.targets": "Current Suggestions", "suggestion.targets": "सध्याच्या सूचना", - // "suggestion.table.name": "Researcher Name", "suggestion.table.name": "संशोधकाचे नाव", - // "suggestion.table.actions": "Actions", "suggestion.table.actions": "क्रिया", - // "suggestion.button.review": "Review {{ total }} suggestion(s)", "suggestion.button.review": "{{ total }} सूचना पुनरावलोकन करा", - // "suggestion.button.review.title": "Review {{ total }} suggestion(s) for ", "suggestion.button.review.title": "{{ total }} साठी सूचना पुनरावलोकन करा", - // "suggestion.noTargets": "No target found.", "suggestion.noTargets": "कोणताही लक्ष्य आढळला नाही.", - // "suggestion.target.error.service.retrieve": "An error occurred while loading the Suggestion targets", "suggestion.target.error.service.retrieve": "सूचना लक्ष्य लोड करताना त्रुटी आली", - // "suggestion.evidence.type": "Type", "suggestion.evidence.type": "प्रकार", - // "suggestion.evidence.score": "Score", "suggestion.evidence.score": "स्कोअर", - // "suggestion.evidence.notes": "Notes", "suggestion.evidence.notes": "टीप", - // "suggestion.approveAndImport": "Approve & import", "suggestion.approveAndImport": "मंजूर करा आणि आयात करा", - // "suggestion.approveAndImport.success": "The suggestion has been imported successfully. View.", "suggestion.approveAndImport.success": "सूचना यशस्वीरित्या आयात केली गेली आहे. पहा.", - // "suggestion.approveAndImport.bulk": "Approve & import Selected", "suggestion.approveAndImport.bulk": "निवडलेले मंजूर करा आणि आयात करा", - // "suggestion.approveAndImport.bulk.success": "{{ count }} suggestions have been imported successfully ", "suggestion.approveAndImport.bulk.success": "{{ count }} सूचना यशस्वीरित्या आयात केल्या गेल्या आहेत", - // "suggestion.approveAndImport.bulk.error": "{{ count }} suggestions haven't been imported due to unexpected server errors", "suggestion.approveAndImport.bulk.error": "अनपेक्षित सर्व्हर त्रुटींमुळे {{ count }} सूचना आयात केल्या गेल्या नाहीत", - // "suggestion.ignoreSuggestion": "Ignore Suggestion", "suggestion.ignoreSuggestion": "सूचना दुर्लक्षित करा", - // "suggestion.ignoreSuggestion.success": "The suggestion has been discarded", "suggestion.ignoreSuggestion.success": "सूचना रद्द केली गेली आहे", - // "suggestion.ignoreSuggestion.bulk": "Ignore Suggestion Selected", "suggestion.ignoreSuggestion.bulk": "निवडलेली सूचना दुर्लक्षित करा", - // "suggestion.ignoreSuggestion.bulk.success": "{{ count }} suggestions have been discarded ", "suggestion.ignoreSuggestion.bulk.success": "{{ count }} सूचना रद्द केल्या गेल्या आहेत", - // "suggestion.ignoreSuggestion.bulk.error": "{{ count }} suggestions haven't been discarded due to unexpected server errors", "suggestion.ignoreSuggestion.bulk.error": "अनपेक्षित सर्व्हर त्रुटींमुळे {{ count }} सूचना रद्द केल्या गेल्या नाहीत", - // "suggestion.seeEvidence": "See evidence", "suggestion.seeEvidence": "पुरावा पहा", - // "suggestion.hideEvidence": "Hide evidence", "suggestion.hideEvidence": "पुरावा लपवा", - // "suggestion.suggestionFor": "Suggestions for", "suggestion.suggestionFor": "साठी सूचना", - // "suggestion.suggestionFor.breadcrumb": "Suggestions for {{ name }}", "suggestion.suggestionFor.breadcrumb": "{{ name }} साठी सूचना", - // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "OpenAIRE ग्राफ", - // "suggestion.source.openalex": "OpenAlex", "suggestion.source.openalex": "OpenAlex", - // "suggestion.from.source": "from the ", "suggestion.from.source": "पासून", - // "suggestion.count.missing": "You have no publication claims left", "suggestion.count.missing": "आपल्याकडे कोणतेही प्रकाशन दावे शिल्लक नाहीत", - // "suggestion.totalScore": "Total Score", "suggestion.totalScore": "एकूण स्कोअर", - // "suggestion.type.openaire": "OpenAIRE", "suggestion.type.openaire": "OpenAIRE", - // "register-email.title": "New user registration", "register-email.title": "नवीन वापरकर्ता नोंदणी", - // "register-page.create-profile.header": "Create Profile", "register-page.create-profile.header": "प्रोफाइल तयार करा", - // "register-page.create-profile.identification.header": "Identify", "register-page.create-profile.identification.header": "ओळख", - // "register-page.create-profile.identification.email": "Email Address", "register-page.create-profile.identification.email": "ईमेल पत्ता", - // "register-page.create-profile.identification.first-name": "First Name *", "register-page.create-profile.identification.first-name": "पहिले नाव *", - // "register-page.create-profile.identification.first-name.error": "Please fill in a First Name", "register-page.create-profile.identification.first-name.error": "कृपया पहिले नाव भरा", - // "register-page.create-profile.identification.last-name": "Last Name *", "register-page.create-profile.identification.last-name": "आडनाव *", - // "register-page.create-profile.identification.last-name.error": "Please fill in a Last Name", "register-page.create-profile.identification.last-name.error": "कृपया आडनाव भरा", - // "register-page.create-profile.identification.contact": "Contact Telephone", "register-page.create-profile.identification.contact": "संपर्क दूरध्वनी", - // "register-page.create-profile.identification.language": "Language", "register-page.create-profile.identification.language": "भाषा", - // "register-page.create-profile.security.header": "Security", "register-page.create-profile.security.header": "सुरक्षा", - // "register-page.create-profile.security.info": "Please enter a password in the box below, and confirm it by typing it again into the second box.", "register-page.create-profile.security.info": "कृपया खालील बॉक्समध्ये पासवर्ड प्रविष्ट करा आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करा.", - // "register-page.create-profile.security.label.password": "Password *", "register-page.create-profile.security.label.password": "पासवर्ड *", - // "register-page.create-profile.security.label.passwordrepeat": "Retype to confirm *", "register-page.create-profile.security.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा *", - // "register-page.create-profile.security.error.empty-password": "Please enter a password in the box below.", "register-page.create-profile.security.error.empty-password": "कृपया खालील बॉक्समध्ये पासवर्ड प्रविष्ट करा.", - // "register-page.create-profile.security.error.matching-passwords": "The passwords do not match.", "register-page.create-profile.security.error.matching-passwords": "पासवर्ड जुळत नाहीत.", - // "register-page.create-profile.submit": "Complete Registration", "register-page.create-profile.submit": "नोंदणी पूर्ण करा", - // "register-page.create-profile.submit.error.content": "Something went wrong while registering a new user.", "register-page.create-profile.submit.error.content": "नवीन वापरकर्ता नोंदणी करताना काहीतरी चूक झाली.", - // "register-page.create-profile.submit.error.head": "Registration failed", "register-page.create-profile.submit.error.head": "नोंदणी अयशस्वी", - // "register-page.create-profile.submit.success.content": "The registration was successful. You have been logged in as the created user.", "register-page.create-profile.submit.success.content": "नोंदणी यशस्वी झाली. आपण तयार केलेल्या वापरकर्त्याच्या रूपात लॉग इन केले आहे.", - // "register-page.create-profile.submit.success.head": "Registration completed", "register-page.create-profile.submit.success.head": "नोंदणी पूर्ण झाली", - // "register-page.registration.header": "New user registration", "register-page.registration.header": "नवीन वापरकर्ता नोंदणी", - // "register-page.registration.info": "Register an account to subscribe to collections for email updates, and submit new items to DSpace.", "register-page.registration.info": "संग्रहांसाठी ईमेल अद्यतनांसाठी सदस्यता घेण्यासाठी आणि DSpace मध्ये नवीन आयटम सबमिट करण्यासाठी खाते नोंदणी करा.", - // "register-page.registration.email": "Email Address *", "register-page.registration.email": "ईमेल पत्ता *", - // "register-page.registration.email.error.required": "Please fill in an email address", "register-page.registration.email.error.required": "कृपया ईमेल पत्ता भरा", - // "register-page.registration.email.error.not-email-form": "Please fill in a valid email address.", "register-page.registration.email.error.not-email-form": "कृपया वैध ईमेल पत्ता भरा.", - // "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", - // TODO New key - Add a translation - "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + "register-page.registration.email.error.not-valid-domain": "अनुमत डोमेनसह ईमेल वापरा: {{ domains }}", - // "register-page.registration.email.hint": "This address will be verified and used as your login name.", "register-page.registration.email.hint": "हा पत्ता सत्यापित केला जाईल आणि आपले लॉगिन नाव म्हणून वापरला जाईल.", - // "register-page.registration.submit": "Register", "register-page.registration.submit": "नोंदणी करा", - // "register-page.registration.success.head": "Verification email sent", "register-page.registration.success.head": "सत्यापन ईमेल पाठवले", - // "register-page.registration.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "register-page.registration.success.content": "{{ email }} वर एक विशेष URL आणि पुढील सूचना असलेले ईमेल पाठवले गेले आहे.", - // "register-page.registration.error.head": "Error when trying to register email", "register-page.registration.error.head": "ईमेल नोंदणी करताना त्रुटी", - // "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", - // TODO New key - Add a translation - "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + "register-page.registration.error.content": "खालील ईमेल पत्ता नोंदणी करताना त्रुटी आली: {{ email }}", - // "register-page.registration.error.recaptcha": "Error when trying to authenticate with recaptcha", "register-page.registration.error.recaptcha": "recaptcha सह प्रमाणीकरण करताना त्रुटी", - // "register-page.registration.google-recaptcha.must-accept-cookies": "In order to register you must accept the Registration and Password recovery (Google reCaptcha) cookies.", "register-page.registration.google-recaptcha.must-accept-cookies": "नोंदणी करण्यासाठी आपल्याला नोंदणी आणि पासवर्ड पुनर्प्राप्ती (Google reCaptcha) कुकीज स्वीकारणे आवश्यक आहे.", - // "register-page.registration.error.maildomain": "This email address is not on the list of domains who can register. Allowed domains are {{ domains }}", "register-page.registration.error.maildomain": "हा ईमेल पत्ता नोंदणी करू शकणाऱ्या डोमेनच्या यादीत नाही. अनुमत डोमेन {{ domains }} आहेत", - // "register-page.registration.google-recaptcha.open-cookie-settings": "Open cookie settings", "register-page.registration.google-recaptcha.open-cookie-settings": "कुकी सेटिंग्ज उघडा", - // "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", - // "register-page.registration.google-recaptcha.notification.message.error": "An error occurred during reCaptcha verification", "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha सत्यापन दरम्यान त्रुटी आली", - // "register-page.registration.google-recaptcha.notification.message.expired": "Verification expired. Please verify again.", "register-page.registration.google-recaptcha.notification.message.expired": "सत्यापन कालबाह्य झाले. कृपया पुन्हा सत्यापित करा.", - // "register-page.registration.info.maildomain": "Accounts can be registered for mail addresses of the domains", "register-page.registration.info.maildomain": "खाती डोमेनच्या मेल पत्त्यांसाठी नोंदणीकृत केली जाऊ शकतात", - // "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items", "relationships.add.error.relationship-type.content": "दोन आयटममधील संबंध प्रकार {{ type }} साठी कोणताही योग्य जुळणारा सापडला नाही", - // "relationships.add.error.server.content": "The server returned an error", "relationships.add.error.server.content": "सर्व्हरने त्रुटी परत केली", - // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "संबंध जोडता येत नाही", - // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - - // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - - // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - - // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - - // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - - // "relationships.Publication.isContributorOfPublication.Person": "Contributor", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.Person": "Contributor", + "relationships.isAuthorOf": "लेखक", - // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + "relationships.isAuthorOf.Person": "लेखक (व्यक्ती)", - // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + "relationships.isAuthorOf.OrgUnit": "लेखक (संगठनात्मक युनिट)", - // "relationships.Person.isProjectOfPerson.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Person.isProjectOfPerson.Project": "Research Projects", + "relationships.isIssueOf": "जर्नल अंक", - // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + "relationships.isIssueOf.JournalIssue": "जर्नल अंक", - // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + "relationships.isJournalIssueOf": "जर्नल अंक", - // "relationships.Project.isPublicationOfProject.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Project.isPublicationOfProject.Publication": "Publications", + "relationships.isJournalOf": "जर्नल", - // "relationships.Project.isPersonOfProject.Person": "Authors", - // TODO New key - Add a translation - "relationships.Project.isPersonOfProject.Person": "Authors", + "relationships.isJournalVolumeOf": "जर्नल खंड", - // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + "relationships.isOrgUnitOf": "संगठनात्मक युनिट", - // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - // TODO New key - Add a translation - "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + "relationships.isPersonOf": "लेखक", - // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + "relationships.isProjectOf": "संशोधन प्रकल्प", - // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - // TODO New key - Add a translation - "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + "relationships.isPublicationOf": "प्रकाशने", - // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + "relationships.isPublicationOfJournalIssue": "लेख", - // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + "relationships.isSingleJournalOf": "जर्नल", - // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + "relationships.isSingleVolumeOf": "जर्नल खंड", - // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + "relationships.isVolumeOf": "जर्नल खंड", - // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + "relationships.isVolumeOf.JournalVolume": "जर्नल खंड", - // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", - // TODO New key - Add a translation - "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + "relationships.isContributorOf": "योगदानकर्ते", - // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - // TODO New key - Add a translation - "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + "relationships.isContributorOf.OrgUnit": "योगदानकर्ता (संगठनात्मक युनिट)", - // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + "relationships.isContributorOf.Person": "योगदानकर्ता", - // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + "relationships.isFundingAgencyOf.OrgUnit": "फंडर", - // "repository.image.logo": "Repository logo", "repository.image.logo": "संग्रह लोगो", - // "repository.title": "DSpace Repository", "repository.title": "DSpace संग्रह", - // "repository.title.prefix": "DSpace Repository :: ", - // TODO New key - Add a translation - "repository.title.prefix": "DSpace Repository :: ", + "repository.title.prefix": "DSpace संग्रह :: ", - // "resource-policies.add.button": "Add", "resource-policies.add.button": "जोडा", - // "resource-policies.add.for.": "Add a new policy", "resource-policies.add.for.": "नवीन धोरण जोडा", - // "resource-policies.add.for.bitstream": "Add a new Bitstream policy", "resource-policies.add.for.bitstream": "नवीन बिटस्ट्रीम धोरण जोडा", - // "resource-policies.add.for.bundle": "Add a new Bundle policy", "resource-policies.add.for.bundle": "नवीन बंडल धोरण जोडा", - // "resource-policies.add.for.item": "Add a new Item policy", "resource-policies.add.for.item": "नवीन आयटम धोरण जोडा", - // "resource-policies.add.for.community": "Add a new Community policy", "resource-policies.add.for.community": "नवीन समुदाय धोरण जोडा", - // "resource-policies.add.for.collection": "Add a new Collection policy", "resource-policies.add.for.collection": "नवीन संग्रह धोरण जोडा", - // "resource-policies.create.page.heading": "Create new resource policy for ", "resource-policies.create.page.heading": "साठी नवीन संसाधन धोरण तयार करा ", - // "resource-policies.create.page.failure.content": "An error occurred while creating the resource policy.", "resource-policies.create.page.failure.content": "संसाधन धोरण तयार करताना त्रुटी आली.", - // "resource-policies.create.page.success.content": "Operation successful", "resource-policies.create.page.success.content": "ऑपरेशन यशस्वी", - // "resource-policies.create.page.title": "Create new resource policy", "resource-policies.create.page.title": "नवीन संसाधन धोरण तयार करा", - // "resource-policies.delete.btn": "Delete selected", "resource-policies.delete.btn": "निवडलेले हटवा", - // "resource-policies.delete.btn.title": "Delete selected resource policies", "resource-policies.delete.btn.title": "निवडलेली संसाधन धोरणे हटवा", - // "resource-policies.delete.failure.content": "An error occurred while deleting selected resource policies.", "resource-policies.delete.failure.content": "निवडलेली संसाधन धोरणे हटवताना त्रुटी आली.", - // "resource-policies.delete.success.content": "Operation successful", "resource-policies.delete.success.content": "ऑपरेशन यशस्वी", - // "resource-policies.edit.page.heading": "Edit resource policy ", "resource-policies.edit.page.heading": "संसाधन धोरण संपादित करा ", - // "resource-policies.edit.page.failure.content": "An error occurred while editing the resource policy.", "resource-policies.edit.page.failure.content": "संसाधन धोरण संपादित करताना त्रुटी आली.", - // "resource-policies.edit.page.target-failure.content": "An error occurred while editing the target (ePerson or group) of the resource policy.", "resource-policies.edit.page.target-failure.content": "संसाधन धोरणाचे लक्ष्य (ePerson किंवा गट) संपादित करताना त्रुटी आली.", - // "resource-policies.edit.page.other-failure.content": "An error occurred while editing the resource policy. The target (ePerson or group) has been successfully updated.", "resource-policies.edit.page.other-failure.content": "संसाधन धोरण संपादित करताना त्रुटी आली. लक्ष्य (ePerson किंवा गट) यशस्वीरित्या अद्यतनित केले गेले आहे.", - // "resource-policies.edit.page.success.content": "Operation successful", "resource-policies.edit.page.success.content": "ऑपरेशन यशस्वी", - // "resource-policies.edit.page.title": "Edit resource policy", "resource-policies.edit.page.title": "संसाधन धोरण संपादित करा", - // "resource-policies.form.action-type.label": "Select the action type", "resource-policies.form.action-type.label": "क्रिया प्रकार निवडा", - // "resource-policies.form.action-type.required": "You must select the resource policy action.", "resource-policies.form.action-type.required": "आपल्याला संसाधन धोरण क्रिया निवडणे आवश्यक आहे.", - // "resource-policies.form.eperson-group-list.label": "The eperson or group that will be granted the permission", "resource-policies.form.eperson-group-list.label": "परवानगी दिली जाईल असा ePerson किंवा गट", - // "resource-policies.form.eperson-group-list.select.btn": "Select", "resource-policies.form.eperson-group-list.select.btn": "निवडा", - // "resource-policies.form.eperson-group-list.tab.eperson": "Search for a ePerson", "resource-policies.form.eperson-group-list.tab.eperson": "ePerson साठी शोधा", - // "resource-policies.form.eperson-group-list.tab.group": "Search for a group", "resource-policies.form.eperson-group-list.tab.group": "गटासाठी शोधा", - // "resource-policies.form.eperson-group-list.table.headers.action": "Action", "resource-policies.form.eperson-group-list.table.headers.action": "क्रिया", - // "resource-policies.form.eperson-group-list.table.headers.id": "ID", "resource-policies.form.eperson-group-list.table.headers.id": "ID", - // "resource-policies.form.eperson-group-list.table.headers.name": "Name", "resource-policies.form.eperson-group-list.table.headers.name": "नाव", - // "resource-policies.form.eperson-group-list.modal.header": "Cannot change type", "resource-policies.form.eperson-group-list.modal.header": "प्रकार बदलू शकत नाही", - // "resource-policies.form.eperson-group-list.modal.text1.toGroup": "It is not possible to replace an ePerson with a group.", "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePerson ला गटाने बदलणे शक्य नाही.", - // "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "It is not possible to replace a group with an ePerson.", "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "गटाला ePerson ने बदलणे शक्य नाही.", - // "resource-policies.form.eperson-group-list.modal.text2": "Delete the current resource policy and create a new one with the desired type.", "resource-policies.form.eperson-group-list.modal.text2": "सध्याचे संसाधन धोरण हटवा आणि इच्छित प्रकारासह नवीन तयार करा.", - // "resource-policies.form.eperson-group-list.modal.close": "Ok", "resource-policies.form.eperson-group-list.modal.close": "ठीक आहे", - // "resource-policies.form.date.end.label": "End Date", "resource-policies.form.date.end.label": "समाप्ती तारीख", - // "resource-policies.form.date.start.label": "Start Date", "resource-policies.form.date.start.label": "प्रारंभ तारीख", - // "resource-policies.form.description.label": "Description", "resource-policies.form.description.label": "वर्णन", - // "resource-policies.form.name.label": "Name", "resource-policies.form.name.label": "नाव", - // "resource-policies.form.name.hint": "Max 30 characters", "resource-policies.form.name.hint": "कमाल 30 वर्ण", - // "resource-policies.form.policy-type.label": "Select the policy type", "resource-policies.form.policy-type.label": "धोरण प्रकार निवडा", - // "resource-policies.form.policy-type.required": "You must select the resource policy type.", "resource-policies.form.policy-type.required": "आपल्याला संसाधन धोरण प्रकार निवडणे आवश्यक आहे.", - // "resource-policies.table.headers.action": "Action", "resource-policies.table.headers.action": "क्रिया", - // "resource-policies.table.headers.date.end": "End Date", "resource-policies.table.headers.date.end": "समाप्ती तारीख", - // "resource-policies.table.headers.date.start": "Start Date", "resource-policies.table.headers.date.start": "प्रारंभ तारीख", - // "resource-policies.table.headers.edit": "Edit", "resource-policies.table.headers.edit": "संपादित करा", - // "resource-policies.table.headers.edit.group": "Edit group", "resource-policies.table.headers.edit.group": "गट संपादित करा", - // "resource-policies.table.headers.edit.policy": "Edit policy", "resource-policies.table.headers.edit.policy": "धोरण संपादित करा", - // "resource-policies.table.headers.eperson": "EPerson", "resource-policies.table.headers.eperson": "ePerson", - // "resource-policies.table.headers.group": "Group", "resource-policies.table.headers.group": "गट", - // "resource-policies.table.headers.select-all": "Select all", "resource-policies.table.headers.select-all": "सर्व निवडा", - // "resource-policies.table.headers.deselect-all": "Deselect all", "resource-policies.table.headers.deselect-all": "सर्व निवड रद्द करा", - // "resource-policies.table.headers.select": "Select", "resource-policies.table.headers.select": "निवडा", - // "resource-policies.table.headers.deselect": "Deselect", "resource-policies.table.headers.deselect": "निवड रद्द करा", - // "resource-policies.table.headers.id": "ID", "resource-policies.table.headers.id": "ID", - // "resource-policies.table.headers.name": "Name", "resource-policies.table.headers.name": "नाव", - // "resource-policies.table.headers.policyType": "type", "resource-policies.table.headers.policyType": "प्रकार", - // "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream", "resource-policies.table.headers.title.for.bitstream": "बिटस्ट्रीमसाठी धोरणे", - // "resource-policies.table.headers.title.for.bundle": "Policies for Bundle", "resource-policies.table.headers.title.for.bundle": "बंडलसाठी धोरणे", - // "resource-policies.table.headers.title.for.item": "Policies for Item", "resource-policies.table.headers.title.for.item": "आयटमसाठी धोरणे", - // "resource-policies.table.headers.title.for.community": "Policies for Community", "resource-policies.table.headers.title.for.community": "समुदायासाठी धोरणे", - // "resource-policies.table.headers.title.for.collection": "Policies for Collection", "resource-policies.table.headers.title.for.collection": "संग्रहासाठी धोरणे", - // "root.skip-to-content": "Skip to main content", "root.skip-to-content": "मुख्य सामग्रीकडे जा", - // "search.description": "", "search.description": "", - // "search.switch-configuration.title": "Show", "search.switch-configuration.title": "दाखवा", - // "search.title": "Search", "search.title": "शोधा", - // "search.breadcrumbs": "Search", "search.breadcrumbs": "शोधा", - // "search.search-form.placeholder": "Search the repository ...", "search.search-form.placeholder": "संग्रहात शोधा ...", - // "search.filters.remove": "Remove filter of type {{ type }} with value {{ value }}", "search.filters.remove": "प्रकार {{ type }} सह मूल्य {{ value }} चा फिल्टर काढा", - // "search.filters.applied.f.title": "Title", "search.filters.applied.f.title": "शीर्षक", - // "search.filters.applied.f.author": "Author", "search.filters.applied.f.author": "लेखक", - // "search.filters.applied.f.dateIssued.max": "End date", "search.filters.applied.f.dateIssued.max": "समाप्ती तारीख", - // "search.filters.applied.f.dateIssued.min": "Start date", "search.filters.applied.f.dateIssued.min": "प्रारंभ तारीख", - // "search.filters.applied.f.dateSubmitted": "Date submitted", "search.filters.applied.f.dateSubmitted": "सबमिट केलेली तारीख", - // "search.filters.applied.f.discoverable": "Non-discoverable", "search.filters.applied.f.discoverable": "नॉन-डिस्कव्हरेबल", - // "search.filters.applied.f.entityType": "Item Type", "search.filters.applied.f.entityType": "आयटम प्रकार", - // "search.filters.applied.f.has_content_in_original_bundle": "Has files", "search.filters.applied.f.has_content_in_original_bundle": "फाइल्स आहेत", - // "search.filters.applied.f.original_bundle_filenames": "File name", "search.filters.applied.f.original_bundle_filenames": "फाइल नाव", - // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "फाइल वर्णन", - // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", + "search.filters.applied.f.has_geospatial_metadata": "भौगोलिक स्थान आहे", - // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "प्रकार", - // "search.filters.applied.f.namedresourcetype": "Status", "search.filters.applied.f.namedresourcetype": "स्थिती", - // "search.filters.applied.f.subject": "Subject", "search.filters.applied.f.subject": "विषय", - // "search.filters.applied.f.submitter": "Submitter", "search.filters.applied.f.submitter": "सबमिटर", - // "search.filters.applied.f.jobTitle": "Job Title", "search.filters.applied.f.jobTitle": "नोकरीचे शीर्षक", - // "search.filters.applied.f.birthDate.max": "End birth date", "search.filters.applied.f.birthDate.max": "समाप्ती जन्मतारीख", - // "search.filters.applied.f.birthDate.min": "Start birth date", "search.filters.applied.f.birthDate.min": "प्रारंभ जन्मतारीख", - // "search.filters.applied.f.supervisedBy": "Supervised by", "search.filters.applied.f.supervisedBy": "पर्यवेक्षण केलेले", - // "search.filters.applied.f.withdrawn": "Withdrawn", "search.filters.applied.f.withdrawn": "मागे घेतले", - // "search.filters.applied.operator.equals": "", "search.filters.applied.operator.equals": "", - // "search.filters.applied.operator.notequals": " not equals", "search.filters.applied.operator.notequals": " समान नाही", - // "search.filters.applied.operator.authority": "", "search.filters.applied.operator.authority": "", - // "search.filters.applied.operator.notauthority": " not authority", "search.filters.applied.operator.notauthority": " प्राधिकरण नाही", - // "search.filters.applied.operator.contains": " contains", "search.filters.applied.operator.contains": " समाविष्ट आहे", - // "search.filters.applied.operator.notcontains": " not contains", "search.filters.applied.operator.notcontains": " समाविष्ट नाही", - // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", - // "search.filters.applied.f.point": "Coordinates", "search.filters.applied.f.point": "समन्वय", - // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "शीर्षक", - // "search.filters.filter.title.placeholder": "Title", "search.filters.filter.title.placeholder": "शीर्षक", - // "search.filters.filter.title.label": "Search Title", "search.filters.filter.title.label": "शीर्षक शोधा", - // "search.filters.filter.author.head": "Author", "search.filters.filter.author.head": "लेखक", - // "search.filters.filter.author.placeholder": "Author name", "search.filters.filter.author.placeholder": "लेखकाचे नाव", - // "search.filters.filter.author.label": "Search author name", "search.filters.filter.author.label": "लेखकाचे नाव शोधा", - // "search.filters.filter.birthDate.head": "Birth Date", "search.filters.filter.birthDate.head": "जन्मतारीख", - // "search.filters.filter.birthDate.placeholder": "Birth Date", "search.filters.filter.birthDate.placeholder": "जन्मतारीख", - // "search.filters.filter.birthDate.label": "Search birth date", "search.filters.filter.birthDate.label": "जन्मतारीख शोधा", - // "search.filters.filter.collapse": "Collapse filter", "search.filters.filter.collapse": "फिल्टर संकुचित करा", - // "search.filters.filter.creativeDatePublished.head": "Date Published", "search.filters.filter.creativeDatePublished.head": "प्रकाशित तारीख", - // "search.filters.filter.creativeDatePublished.placeholder": "Date Published", "search.filters.filter.creativeDatePublished.placeholder": "प्रकाशित तारीख", - // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "प्रकाशित तारीख शोधा", - // "search.filters.filter.creativeDatePublished.min.label": "Start", "search.filters.filter.creativeDatePublished.min.label": "प्रारंभ", - // "search.filters.filter.creativeDatePublished.max.label": "End", "search.filters.filter.creativeDatePublished.max.label": "समाप्ती", - // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "संपादक", - // "search.filters.filter.creativeWorkEditor.placeholder": "Editor", "search.filters.filter.creativeWorkEditor.placeholder": "संपादक", - // "search.filters.filter.creativeWorkEditor.label": "Search editor", "search.filters.filter.creativeWorkEditor.label": "संपादक शोधा", - // "search.filters.filter.creativeWorkKeywords.head": "Subject", "search.filters.filter.creativeWorkKeywords.head": "विषय", - // "search.filters.filter.creativeWorkKeywords.placeholder": "Subject", "search.filters.filter.creativeWorkKeywords.placeholder": "विषय", - // "search.filters.filter.creativeWorkKeywords.label": "Search subject", "search.filters.filter.creativeWorkKeywords.label": "विषय शोधा", - // "search.filters.filter.creativeWorkPublisher.head": "Publisher", "search.filters.filter.creativeWorkPublisher.head": "प्रकाशक", - // "search.filters.filter.creativeWorkPublisher.placeholder": "Publisher", "search.filters.filter.creativeWorkPublisher.placeholder": "प्रकाशक", - // "search.filters.filter.creativeWorkPublisher.label": "Search publisher", "search.filters.filter.creativeWorkPublisher.label": "प्रकाशक शोधा", - // "search.filters.filter.dateIssued.head": "Date", "search.filters.filter.dateIssued.head": "तारीख", - // "search.filters.filter.dateIssued.max.placeholder": "Maximum Date", "search.filters.filter.dateIssued.max.placeholder": "कमाल तारीख", - // "search.filters.filter.dateIssued.max.label": "End", "search.filters.filter.dateIssued.max.label": "समाप्ती", - // "search.filters.filter.dateIssued.min.placeholder": "Minimum Date", "search.filters.filter.dateIssued.min.placeholder": "किमान तारीख", - // "search.filters.filter.dateIssued.min.label": "Start", "search.filters.filter.dateIssued.min.label": "प्रारंभ", - // "search.filters.filter.dateSubmitted.head": "Date submitted", "search.filters.filter.dateSubmitted.head": "सबमिट केलेली तारीख", - // "search.filters.filter.dateSubmitted.placeholder": "Date submitted", "search.filters.filter.dateSubmitted.placeholder": "सबमिट केलेली तारीख", - // "search.filters.filter.dateSubmitted.label": "Search date submitted", "search.filters.filter.dateSubmitted.label": "सबमिट केलेली तारीख शोधा", - // "search.filters.filter.discoverable.head": "Non-discoverable", "search.filters.filter.discoverable.head": "नॉन-डिस्कव्हरेबल", - // "search.filters.filter.withdrawn.head": "Withdrawn", "search.filters.filter.withdrawn.head": "मागे घेतले", - // "search.filters.filter.entityType.head": "Item Type", "search.filters.filter.entityType.head": "आयटम प्रकार", - // "search.filters.filter.entityType.placeholder": "Item Type", "search.filters.filter.entityType.placeholder": "आयटम प्रकार", - // "search.filters.filter.entityType.label": "Search item type", "search.filters.filter.entityType.label": "आयटम प्रकार शोधा", - // "search.filters.filter.expand": "Expand filter", "search.filters.filter.expand": "फिल्टर विस्तृत करा", - // "search.filters.filter.has_content_in_original_bundle.head": "Has files", "search.filters.filter.has_content_in_original_bundle.head": "फाइल्स आहेत", - // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "फाइल नाव", - // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", "search.filters.filter.has_geospatial_metadata.head": "भौगोलिक स्थान आहे", - // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "फाइल नाव", - // "search.filters.filter.original_bundle_filenames.label": "Search File name", "search.filters.filter.original_bundle_filenames.label": "फाइल नाव शोधा", - // "search.filters.filter.original_bundle_descriptions.head": "File description", "search.filters.filter.original_bundle_descriptions.head": "फाइल वर्णन", - // "search.filters.filter.original_bundle_descriptions.placeholder": "File description", "search.filters.filter.original_bundle_descriptions.placeholder": "फाइल वर्णन", - // "search.filters.filter.original_bundle_descriptions.label": "Search File description", "search.filters.filter.original_bundle_descriptions.label": "फाइल वर्णन शोधा", - // "search.filters.filter.itemtype.head": "Type", "search.filters.filter.itemtype.head": "प्रकार", - // "search.filters.filter.itemtype.placeholder": "Type", "search.filters.filter.itemtype.placeholder": "प्रकार", - // "search.filters.filter.itemtype.label": "Search type", "search.filters.filter.itemtype.label": "प्रकार शोधा", - // "search.filters.filter.jobTitle.head": "Job Title", "search.filters.filter.jobTitle.head": "नोकरीचे शीर्षक", - // "search.filters.filter.jobTitle.placeholder": "Job Title", "search.filters.filter.jobTitle.placeholder": "नोकरीचे शीर्षक", - // "search.filters.filter.jobTitle.label": "Search job title", "search.filters.filter.jobTitle.label": "नोकरीचे शीर्षक शोधा", - // "search.filters.filter.knowsLanguage.head": "Known language", "search.filters.filter.knowsLanguage.head": "ज्ञात भाषा", - // "search.filters.filter.knowsLanguage.placeholder": "Known language", "search.filters.filter.knowsLanguage.placeholder": "ज्ञात भाषा", - // "search.filters.filter.knowsLanguage.label": "Search known language", "search.filters.filter.knowsLanguage.label": "ज्ञात भाषा शोधा", - // "search.filters.filter.namedresourcetype.head": "Status", "search.filters.filter.namedresourcetype.head": "स्थिती", - // "search.filters.filter.namedresourcetype.placeholder": "Status", "search.filters.filter.namedresourcetype.placeholder": "स्थिती", - // "search.filters.filter.namedresourcetype.label": "Search status", "search.filters.filter.namedresourcetype.label": "स्थिती शोधा", - // "search.filters.filter.objectpeople.head": "People", "search.filters.filter.objectpeople.head": "लोक", - // "search.filters.filter.objectpeople.placeholder": "People", "search.filters.filter.objectpeople.placeholder": "लोक", - // "search.filters.filter.objectpeople.label": "Search people", "search.filters.filter.objectpeople.label": "लोक शोधा", - // "search.filters.filter.organizationAddressCountry.head": "Country", "search.filters.filter.organizationAddressCountry.head": "देश", - // "search.filters.filter.organizationAddressCountry.placeholder": "Country", "search.filters.filter.organizationAddressCountry.placeholder": "देश", - // "search.filters.filter.organizationAddressCountry.label": "Search country", "search.filters.filter.organizationAddressCountry.label": "देश शोधा", - // "search.filters.filter.organizationAddressLocality.head": "City", "search.filters.filter.organizationAddressLocality.head": "शहर", - // "search.filters.filter.organizationAddressLocality.placeholder": "City", "search.filters.filter.organizationAddressLocality.placeholder": "शहर", - // "search.filters.filter.organizationAddressLocality.label": "Search city", "search.filters.filter.organizationAddressLocality.label": "शहर शोधा", - // "search.filters.filter.organizationFoundingDate.head": "Date Founded", "search.filters.filter.organizationFoundingDate.head": "स्थापनेची तारीख", - // "search.filters.filter.organizationFoundingDate.placeholder": "Date Founded", "search.filters.filter.organizationFoundingDate.placeholder": "स्थापनेची तारीख", - // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "स्थापनेची तारीख शोधा", - // "search.filters.filter.organizationFoundingDate.min.label": "Start", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.min.label": "Start", - - // "search.filters.filter.organizationFoundingDate.max.label": "End", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.max.label": "End", - - // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "व्याप्ती", - // "search.filters.filter.scope.placeholder": "Scope filter", "search.filters.filter.scope.placeholder": "व्याप्ती फिल्टर", - // "search.filters.filter.scope.label": "Search scope filter", "search.filters.filter.scope.label": "व्याप्ती फिल्टर शोधा", - // "search.filters.filter.show-less": "Collapse", "search.filters.filter.show-less": "संकुचित करा", - // "search.filters.filter.show-more": "Show more", "search.filters.filter.show-more": "अधिक दाखवा", - // "search.filters.filter.subject.head": "Subject", "search.filters.filter.subject.head": "विषय", - // "search.filters.filter.subject.placeholder": "Subject", "search.filters.filter.subject.placeholder": "विषय", - // "search.filters.filter.subject.label": "Search subject", "search.filters.filter.subject.label": "विषय शोधा", - // "search.filters.filter.submitter.head": "Submitter", "search.filters.filter.submitter.head": "सबमिटर", - // "search.filters.filter.submitter.placeholder": "Submitter", "search.filters.filter.submitter.placeholder": "सबमिटर", - // "search.filters.filter.submitter.label": "Search submitter", "search.filters.filter.submitter.label": "सबमिटर शोधा", - // "search.filters.filter.show-tree": "Browse {{ name }} tree", "search.filters.filter.show-tree": "{{ name }} वृक्ष ब्राउझ करा", - // "search.filters.filter.funding.head": "Funding", "search.filters.filter.funding.head": "फंडिंग", - // "search.filters.filter.funding.placeholder": "Funding", "search.filters.filter.funding.placeholder": "फंडिंग", - // "search.filters.filter.supervisedBy.head": "Supervised By", "search.filters.filter.supervisedBy.head": "पर्यवेक्षण केलेले", - // "search.filters.filter.supervisedBy.placeholder": "Supervised By", "search.filters.filter.supervisedBy.placeholder": "पर्यवेक्षण केलेले", - // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "पर्यवेक्षण केलेले शोधा", - // "search.filters.filter.access_status.head": "Access type", "search.filters.filter.access_status.head": "प्रवेश प्रकार", - // "search.filters.filter.access_status.placeholder": "Access type", "search.filters.filter.access_status.placeholder": "प्रवेश प्रकार", - // "search.filters.filter.access_status.label": "Search by access type", "search.filters.filter.access_status.label": "प्रवेश प्रकारानुसार शोधा", - // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "जर्नल अंक", - // "search.filters.entityType.JournalVolume": "Journal Volume", "search.filters.entityType.JournalVolume": "जर्नल खंड", - // "search.filters.entityType.OrgUnit": "Organizational Unit", "search.filters.entityType.OrgUnit": "संगठनात्मक युनिट", - // "search.filters.entityType.Person": "Person", "search.filters.entityType.Person": "व्यक्ती", - // "search.filters.entityType.Project": "Project", "search.filters.entityType.Project": "प्रकल्प", - // "search.filters.entityType.Publication": "Publication", "search.filters.entityType.Publication": "प्रकाशन", - // "search.filters.has_content_in_original_bundle.true": "Yes", "search.filters.has_content_in_original_bundle.true": "होय", - // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "नाही", - // "search.filters.has_geospatial_metadata.true": "Yes", "search.filters.has_geospatial_metadata.true": "होय", - // "search.filters.has_geospatial_metadata.false": "No", "search.filters.has_geospatial_metadata.false": "नाही", - // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "नाही", - // "search.filters.discoverable.false": "Yes", "search.filters.discoverable.false": "होय", - // "search.filters.namedresourcetype.Archived": "Archived", "search.filters.namedresourcetype.Archived": "संग्रहित", - // "search.filters.namedresourcetype.Validation": "Validation", "search.filters.namedresourcetype.Validation": "प्रमाणीकरण", - // "search.filters.namedresourcetype.Waiting for Controller": "Waiting for reviewer", "search.filters.namedresourcetype.Waiting for Controller": "पुनरावलोककाची प्रतीक्षा", - // "search.filters.namedresourcetype.Workflow": "Workflow", "search.filters.namedresourcetype.Workflow": "वर्कफ्लो", - // "search.filters.namedresourcetype.Workspace": "Workspace", "search.filters.namedresourcetype.Workspace": "वर्कस्पेस", - // "search.filters.withdrawn.true": "Yes", "search.filters.withdrawn.true": "होय", - // "search.filters.withdrawn.false": "No", "search.filters.withdrawn.false": "नाही", - // "search.filters.head": "Filters", "search.filters.head": "फिल्टर", - // "search.filters.reset": "Reset filters", "search.filters.reset": "फिल्टर रीसेट करा", - // "search.filters.search.submit": "Submit", "search.filters.search.submit": "सबमिट करा", - // "search.filters.operator.equals.text": "Equals", "search.filters.operator.equals.text": "समान", - // "search.filters.operator.notequals.text": "Not Equals", "search.filters.operator.notequals.text": "समान नाही", - // "search.filters.operator.authority.text": "Authority", "search.filters.operator.authority.text": "प्राधिकरण", - // "search.filters.operator.notauthority.text": "Not Authority", "search.filters.operator.notauthority.text": "प्राधिकरण नाही", - // "search.filters.operator.contains.text": "Contains", "search.filters.operator.contains.text": "समाविष्ट आहे", - // "search.filters.operator.notcontains.text": "Not Contains", "search.filters.operator.notcontains.text": "समाविष्ट नाही", - // "search.filters.operator.query.text": "Query", "search.filters.operator.query.text": "क्वेरी", - // "search.form.search": "Search", "search.form.search": "शोधा", - // "search.form.search_dspace": "All repository", "search.form.search_dspace": "संपूर्ण संग्रह", - // "search.form.scope.all": "All of DSpace", "search.form.scope.all": "संपूर्ण DSpace", - // "search.results.head": "Search Results", "search.results.head": "शोध परिणाम", - // "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting", "search.results.no-results": "आपल्या शोधाला कोणतेही परिणाम मिळाले नाहीत. आपल्याला हवे असलेले शोधण्यात अडचण येत आहे का? प्रयत्न करा", - // "search.results.no-results-link": "quotes around it", "search.results.no-results-link": "त्याच्या भोवती उद्धरण चिन्हे लावा", - // "search.results.empty": "Your search returned no results.", "search.results.empty": "आपल्या शोधाला कोणतेही परिणाम मिळाले नाहीत.", - // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", "search.results.geospatial-map.empty": "या पृष्ठावर भौगोलिक स्थानांसह कोणतेही परिणाम नाहीत", - // "search.results.view-result": "View", "search.results.view-result": "पहा", - // "search.results.response.500": "An error occurred during query execution, please try again later", "search.results.response.500": "क्वेरी कार्यान्वित करताना त्रुटी आली, कृपया नंतर पुन्हा प्रयत्न करा", - // "default.search.results.head": "Search Results", "default.search.results.head": "शोध परिणाम", - // "default-relationships.search.results.head": "Search Results", "default-relationships.search.results.head": "शोध परिणाम", - // "search.sidebar.close": "Back to results", "search.sidebar.close": "परिणामांकडे परत जा", - // "search.sidebar.filters.title": "Filters", "search.sidebar.filters.title": "फिल्टर", - // "search.sidebar.open": "Search Tools", "search.sidebar.open": "शोध साधने", - // "search.sidebar.results": "results", "search.sidebar.results": "परिणाम", - // "search.sidebar.settings.rpp": "Results per page", "search.sidebar.settings.rpp": "प्रति पृष्ठ परिणाम", - // "search.sidebar.settings.sort-by": "Sort By", "search.sidebar.settings.sort-by": "क्रमवारी लावा", - // "search.sidebar.advanced-search.title": "Advanced Search", "search.sidebar.advanced-search.title": "प्रगत शोध", - // "search.sidebar.advanced-search.filter-by": "Filter by", "search.sidebar.advanced-search.filter-by": "फिल्टर द्वारे", - // "search.sidebar.advanced-search.filters": "Filters", "search.sidebar.advanced-search.filters": "फिल्टर", - // "search.sidebar.advanced-search.operators": "Operators", "search.sidebar.advanced-search.operators": "ऑपरेटर", - // "search.sidebar.advanced-search.add": "Add", "search.sidebar.advanced-search.add": "जोडा", - // "search.sidebar.settings.title": "Settings", "search.sidebar.settings.title": "सेटिंग्ज", - // "search.view-switch.show-detail": "Show detail", "search.view-switch.show-detail": "तपशील दाखवा", - // "search.view-switch.show-grid": "Show as grid", "search.view-switch.show-grid": "ग्रिड म्हणून दाखवा", - // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "यादी म्हणून दाखवा", - // "search.view-switch.show-geospatialMap": "Show as map", "search.view-switch.show-geospatialMap": "नकाशा म्हणून दाखवा", - // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "आयटम निवड रद्द करा", - // "selectable-list-item-control.select": "Select item", "selectable-list-item-control.select": "आयटम निवडा", - // "sorting.ASC": "Ascending", "sorting.ASC": "आरोही", - // "sorting.DESC": "Descending", "sorting.DESC": "अवरोही", - // "sorting.dc.title.ASC": "Title Ascending", "sorting.dc.title.ASC": "शीर्षक आरोही", - // "sorting.dc.title.DESC": "Title Descending", "sorting.dc.title.DESC": "शीर्षक अवरोही", - // "sorting.score.ASC": "Least Relevant", "sorting.score.ASC": "कमी संबंधित", - // "sorting.score.DESC": "Most Relevant", "sorting.score.DESC": "सर्वाधिक संबंधित", - // "sorting.dc.date.issued.ASC": "Date Issued Ascending", "sorting.dc.date.issued.ASC": "प्रकाशित तारीख आरोही", - // "sorting.dc.date.issued.DESC": "Date Issued Descending", "sorting.dc.date.issued.DESC": "प्रकाशित तारीख अवरोही", - // "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending", "sorting.dc.date.accessioned.ASC": "प्रवेश तारीख आरोही", - // "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending", "sorting.dc.date.accessioned.DESC": "प्रवेश तारीख अवरोही", - // "sorting.lastModified.ASC": "Last modified Ascending", "sorting.lastModified.ASC": "शेवटचे बदलले आरोही", - // "sorting.lastModified.DESC": "Last modified Descending", "sorting.lastModified.DESC": "शेवटचे बदलले अवरोही", - // "sorting.person.familyName.ASC": "Surname Ascending", "sorting.person.familyName.ASC": "आडनाव आरोही", - // "sorting.person.familyName.DESC": "Surname Descending", "sorting.person.familyName.DESC": "आडनाव अवरोही", - // "sorting.person.givenName.ASC": "Name Ascending", "sorting.person.givenName.ASC": "नाव आरोही", - // "sorting.person.givenName.DESC": "Name Descending", "sorting.person.givenName.DESC": "नाव अवरोही", - // "sorting.person.birthDate.ASC": "Birth Date Ascending", "sorting.person.birthDate.ASC": "जन्मतारीख आरोही", - // "sorting.person.birthDate.DESC": "Birth Date Descending", "sorting.person.birthDate.DESC": "जन्मतारीख अवरोही", - // "statistics.title": "Statistics", "statistics.title": "आकडेवारी", - // "statistics.header": "Statistics for {{ scope }}", "statistics.header": "{{ scope }} साठी आकडेवारी", - // "statistics.breadcrumbs": "Statistics", "statistics.breadcrumbs": "आकडेवारी", - // "statistics.page.no-data": "No data available", "statistics.page.no-data": "डेटा उपलब्ध नाही", - // "statistics.table.no-data": "No data available", "statistics.table.no-data": "डेटा उपलब्ध नाही", - // "statistics.table.title.TotalVisits": "Total visits", "statistics.table.title.TotalVisits": "एकूण भेटी", - // "statistics.table.title.TotalVisitsPerMonth": "Total visits per month", "statistics.table.title.TotalVisitsPerMonth": "प्रति महिना एकूण भेटी", - // "statistics.table.title.TotalDownloads": "File Visits", "statistics.table.title.TotalDownloads": "फाइल भेटी", - // "statistics.table.title.TopCountries": "Top country views", "statistics.table.title.TopCountries": "शीर्ष देश दृश्ये", - // "statistics.table.title.TopCities": "Top city views", "statistics.table.title.TopCities": "शीर्ष शहर दृश्ये", - // "statistics.table.header.views": "Views", "statistics.table.header.views": "दृश्ये", - // "statistics.table.no-name": "(object name could not be loaded)", "statistics.table.no-name": "(ऑब्जेक्ट नाव लोड केले जाऊ शकले नाही)", - // "submission.edit.breadcrumbs": "Edit Submission", "submission.edit.breadcrumbs": "सबमिशन संपादित करा", - // "submission.edit.title": "Edit Submission", "submission.edit.title": "सबमिशन संपादित करा", - // "submission.general.cancel": "Cancel", "submission.general.cancel": "रद्द करा", - // "submission.general.cannot_submit": "You don't have permission to make a new submission.", "submission.general.cannot_submit": "आपल्याला नवीन सबमिशन करण्याची परवानगी नाही.", - // "submission.general.deposit": "Deposit", "submission.general.deposit": "ठेव", - // "submission.general.discard.confirm.cancel": "Cancel", "submission.general.discard.confirm.cancel": "रद्द करा", - // "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?", "submission.general.discard.confirm.info": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. आपल्याला खात्री आहे?", - // "submission.general.discard.confirm.submit": "Yes, I'm sure", "submission.general.discard.confirm.submit": "होय, मला खात्री आहे", - // "submission.general.discard.confirm.title": "Discard submission", "submission.general.discard.confirm.title": "सबमिशन रद्द करा", - // "submission.general.discard.submit": "Discard", "submission.general.discard.submit": "रद्द करा", - // "submission.general.back.submit": "Back", "submission.general.back.submit": "मागे", - // "submission.general.info.saved": "Saved", "submission.general.info.saved": "जतन केले", - // "submission.general.info.pending-changes": "Unsaved changes", "submission.general.info.pending-changes": "न जतन केलेले बदल", - // "submission.general.save": "Save", "submission.general.save": "जतन करा", - // "submission.general.save-later": "Save for later", "submission.general.save-later": "नंतर जतन करा", - // "submission.import-external.page.title": "Import metadata from an external source", "submission.import-external.page.title": "बाह्य स्रोतातून मेटाडेटा आयात करा", - // "submission.import-external.title": "Import metadata from an external source", "submission.import-external.title": "बाह्य स्रोतातून मेटाडेटा आयात करा", - // "submission.import-external.title.Journal": "Import a journal from an external source", "submission.import-external.title.Journal": "बाह्य स्रोतातून जर्नल आयात करा", - // "submission.import-external.title.JournalIssue": "Import a journal issue from an external source", "submission.import-external.title.JournalIssue": "बाह्य स्रोतातून जर्नल अंक आयात करा", - // "submission.import-external.title.JournalVolume": "Import a journal volume from an external source", "submission.import-external.title.JournalVolume": "बाह्य स्रोतातून जर्नल खंड आयात करा", - // "submission.import-external.title.OrgUnit": "Import a publisher from an external source", "submission.import-external.title.OrgUnit": "बाह्य स्रोतातून प्रकाशक आयात करा", - // "submission.import-external.title.Person": "Import a person from an external source", "submission.import-external.title.Person": "बाह्य स्रोतातून व्यक्ती आयात करा", - // "submission.import-external.title.Project": "Import a project from an external source", "submission.import-external.title.Project": "बाह्य स्रोतातून प्रकल्प आयात करा", - // "submission.import-external.title.Publication": "Import a publication from an external source", "submission.import-external.title.Publication": "बाह्य स्रोतातून प्रकाशन आयात करा", - // "submission.import-external.title.none": "Import metadata from an external source", "submission.import-external.title.none": "बाह्य स्रोतातून मेटाडेटा आयात करा", - // "submission.import-external.page.hint": "Enter a query above to find items from the web to import in to DSpace.", "submission.import-external.page.hint": "DSpace मध्ये आयात करण्यासाठी वेबवरून आयटम शोधण्यासाठी वरील क्वेरी प्रविष्ट करा.", - // "submission.import-external.back-to-my-dspace": "Back to MyDSpace", "submission.import-external.back-to-my-dspace": "MyDSpace कडे परत जा", - // "submission.import-external.search.placeholder": "Search the external source", "submission.import-external.search.placeholder": "बाह्य स्रोत शोधा", - // "submission.import-external.search.button": "Search", "submission.import-external.search.button": "शोधा", - // "submission.import-external.search.button.hint": "Write some words to search", "submission.import-external.search.button.hint": "शोधण्यासाठी काही शब्द लिहा", - // "submission.import-external.search.source.hint": "Pick an external source", "submission.import-external.search.source.hint": "बाह्य स्रोत निवडा", - // "submission.import-external.source.arxiv": "arXiv", "submission.import-external.source.arxiv": "arXiv", - // "submission.import-external.source.ads": "NASA/ADS", "submission.import-external.source.ads": "NASA/ADS", - // "submission.import-external.source.cinii": "CiNii", "submission.import-external.source.cinii": "CiNii", - // "submission.import-external.source.crossref": "Crossref", "submission.import-external.source.crossref": "Crossref", - // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", - // "submission.import-external.source.dataciteProject": "DataCite", "submission.import-external.source.dataciteProject": "DataCite", - // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", - // "submission.import-external.source.scielo": "SciELO", "submission.import-external.source.scielo": "SciELO", - // "submission.import-external.source.scopus": "Scopus", "submission.import-external.source.scopus": "Scopus", - // "submission.import-external.source.vufind": "VuFind", "submission.import-external.source.vufind": "VuFind", - // "submission.import-external.source.wos": "Web Of Science", "submission.import-external.source.wos": "Web Of Science", - // "submission.import-external.source.orcidWorks": "ORCID", "submission.import-external.source.orcidWorks": "ORCID", - // "submission.import-external.source.epo": "European Patent Office (EPO)", "submission.import-external.source.epo": "European Patent Office (EPO)", - // "submission.import-external.source.loading": "Loading ...", "submission.import-external.source.loading": "लोड करत आहे ...", - // "submission.import-external.source.sherpaJournal": "SHERPA Journals", "submission.import-external.source.sherpaJournal": "SHERPA Journals", - // "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", "submission.import-external.source.sherpaJournalIssn": "ISSN द्वारे SHERPA Journals", - // "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", - // "submission.import-external.source.openaire": "OpenAIRE Search by Authors", "submission.import-external.source.openaire": "लेखकांद्वारे OpenAIRE शोधा", - // "submission.import-external.source.openaireTitle": "OpenAIRE Search by Title", "submission.import-external.source.openaireTitle": "शीर्षकाद्वारे OpenAIRE शोधा", - // "submission.import-external.source.openaireFunding": "OpenAIRE Search by Funder", "submission.import-external.source.openaireFunding": "फंडरद्वारे OpenAIRE शोधा", - // "submission.import-external.source.orcid": "ORCID", "submission.import-external.source.orcid": "ORCID", - // "submission.import-external.source.pubmed": "Pubmed", "submission.import-external.source.pubmed": "Pubmed", - // "submission.import-external.source.pubmedeu": "Pubmed Europe", "submission.import-external.source.pubmedeu": "Pubmed Europe", - // "submission.import-external.source.lcname": "Library of Congress Names", "submission.import-external.source.lcname": "Library of Congress Names", - // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Research Organization Registry (ROR)", - // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", "submission.import-external.source.openalexPublication": "शीर्षकाद्वारे OpenAlex शोधा", - // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", "submission.import-external.source.openalexPublicationByAuthorId": "लेखक आयडीद्वारे OpenAlex शोधा", - // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", "submission.import-external.source.openalexPublicationByDOI": "DOI द्वारे OpenAlex शोधा", - // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", "submission.import-external.source.openalexPerson": "नावाद्वारे OpenAlex शोधा", - // "submission.import-external.source.openalexJournal": "OpenAlex Journals", "submission.import-external.source.openalexJournal": "OpenAlex Journals", - // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", - // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", - // "submission.import-external.source.openalexFunder": "OpenAlex Funders", "submission.import-external.source.openalexFunder": "OpenAlex Funders", - // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "आयटम पूर्वावलोकन", - // "submission.import-external.preview.title.Publication": "Publication Preview", "submission.import-external.preview.title.Publication": "प्रकाशन पूर्वावलोकन", - // "submission.import-external.preview.title.none": "Item Preview", "submission.import-external.preview.title.none": "आयटम पूर्वावलोकन", - // "submission.import-external.preview.title.Journal": "Journal Preview", "submission.import-external.preview.title.Journal": "जर्नल पूर्वावलोकन", - // "submission.import-external.preview.title.OrgUnit": "Organizational Unit Preview", "submission.import-external.preview.title.OrgUnit": "संगठनात्मक युनिट पूर्वावलोकन", - // "submission.import-external.preview.title.Person": "Person Preview", "submission.import-external.preview.title.Person": "व्यक्ती पूर्वावलोकन", - // "submission.import-external.preview.title.Project": "Project Preview", "submission.import-external.preview.title.Project": "प्रकल्प पूर्वावलोकन", - // "submission.import-external.preview.subtitle": "The metadata below was imported from an external source. It will be pre-filled when you start the submission.", "submission.import-external.preview.subtitle": "खालील मेटाडेटा बाह्य स्रोतातून आयात केले गेले आहे. आपण सबमिशन सुरू केल्यावर ते पूर्व-भरले जाईल.", - // "submission.import-external.preview.button.import": "Start submission", "submission.import-external.preview.button.import": "सबमिशन सुरू करा", - // "submission.import-external.preview.error.import.title": "Submission error", "submission.import-external.preview.error.import.title": "सबमिशन त्रुटी", - // "submission.import-external.preview.error.import.body": "An error occurs during the external source entry import process.", "submission.import-external.preview.error.import.body": "बाह्य स्रोत प्रविष्टी आयात प्रक्रियेदरम्यान त्रुटी आली.", - // "submission.sections.describe.relationship-lookup.close": "Close", "submission.sections.describe.relationship-lookup.close": "बंद करा", - // "submission.sections.describe.relationship-lookup.external-source.added": "Successfully added local entry to the selection", "submission.sections.describe.relationship-lookup.external-source.added": "स्थानिक प्रविष्टी यशस्वीरित्या निवडमध्ये जोडली", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Import remote author", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "दूरस्थ लेखक आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Import remote journal", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "दूरस्थ जर्नल आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Import remote journal issue", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "दूरस्थ जर्नल अंक आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Import remote journal volume", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "दूरस्थ जर्नल खंड आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Import remote item", "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "दूरस्थ आयटम आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Import remote event", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "दूरस्थ कार्यक्रम आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Import remote product", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "दूरस्थ उत्पादन आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Import remote equipment", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "दूरस्थ उपकरणे आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "Import remote organizational unit", "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "दूरस्थ संगठनात्मक युनिट आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "Import remote fund", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "दूरस्थ निधी आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Import remote person", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "दूरस्थ व्यक्ती आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Import remote patent", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "दूरस्थ पेटंट आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Import remote project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "दूरस्थ प्रकल्प आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Import remote publication", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "दूरस्थ प्रकाशन आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "नवीन घटक जोडला!", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Import Remote Author", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "दूरस्थ लेखक आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Successfully added local author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "स्थानिक लेखक यशस्वीरित्या निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Successfully imported and added external author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "बाह्य लेखक यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Authority", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "प्राधिकरण", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Import as a new local authority entry", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "नवीन स्थानिक प्राधिकरण प्रविष्टी म्हणून आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Cancel", "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "रद्द करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Select a collection to import new entries to", "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "नवीन प्रविष्टी आयात करण्यासाठी संग्रह निवडा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "Entities", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "घटक", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Import as a new local entity", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "नवीन स्थानिक घटक म्हणून आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC Name मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa Journal मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Importing from Sherpa Publisher", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa Publisher मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Importing from PubMed", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Importing from arXiv", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "Import from ROR", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR मधून आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Import", "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Import Remote Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "दूरस्थ जर्नल आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Successfully added local journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "स्थानिक जर्नल यशस्वीरित्या निवडमध्ये जोडले", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Successfully imported and added external journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "बाह्य जर्नल यशस्वीरित्या आयात केले आणि निवडमध्ये जोडले", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Import Remote Journal Issue", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "दूरस्थ जर्नल अंक आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Successfully added local journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "स्थानिक जर्नल अंक यशस्वीरित्या निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Successfully imported and added external journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "बाह्य जर्नल अंक यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Import Remote Journal Volume", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "दूरस्थ जर्नल खंड आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Successfully added local journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "स्थानिक जर्नल खंड यशस्वीरित्या निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Successfully imported and added external journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "बाह्य जर्नल खंड यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "स्थानिक जुळणारे निवडा:", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "Import Remote Organization", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "दूरस्थ संगठन आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "Successfully added local organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "स्थानिक संगठन यशस्वीरित्या निवडमध्ये जोडले", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "Successfully imported and added external organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "बाह्य संगठन यशस्वीरित्या आयात केले आणि निवडमध्ये जोडले", - // "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Deselect all", "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "सर्व निवड रद्द करा", - // "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Deselect page", "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "पृष्ठ निवड रद्द करा", - // "submission.sections.describe.relationship-lookup.search-tab.loading": "Loading...", "submission.sections.describe.relationship-lookup.search-tab.loading": "लोड करत आहे...", - // "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Search query", "submission.sections.describe.relationship-lookup.search-tab.placeholder": "शोध क्वेरी", - // "submission.sections.describe.relationship-lookup.search-tab.search": "Go", "submission.sections.describe.relationship-lookup.search-tab.search": "जा", - // "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "शोधा...", - // "submission.sections.describe.relationship-lookup.search-tab.select-all": "Select all", "submission.sections.describe.relationship-lookup.search-tab.select-all": "सर्व निवडा", - // "submission.sections.describe.relationship-lookup.search-tab.select-page": "Select page", "submission.sections.describe.relationship-lookup.search-tab.select-page": "पृष्ठ निवडा", - // "submission.sections.describe.relationship-lookup.selected": "Selected {{ size }} items", "submission.sections.describe.relationship-lookup.selected": "निवडलेले {{ size }} आयटम", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "स्थानिक लेखक ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "स्थानिक जर्नल ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Local Projects ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "स्थानिक प्रकल्प ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Local Publications ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "स्थानिक प्रकाशने ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "स्थानिक लेखक ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Local Organizational Units ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "स्थानिक संगठनात्मक युनिट ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Local Data Packages ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "स्थानिक डेटा पॅकेजेस ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Local Data Files ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "स्थानिक डेटा फाइल्स ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "स्थानिक जर्नल ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "स्थानिक जर्नल अंक ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "स्थानिक जर्नल अंक ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "स्थानिक जर्नल खंड ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "स्थानिक जर्नल खंड ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "स्थानिक जर्नल खंड ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Search by Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "लेखकांद्वारे OpenAIRE शोधा ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Search by Title ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "शीर्षकाद्वारे OpenAIRE शोधा ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Search by Funder ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "फंडरद्वारे OpenAIRE शोधा ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN द्वारे Sherpa Journals ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "फंडिंग एजन्सी शोधा", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Search for Funding", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "फंडिंग शोधा", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Search for Organizational Units", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "संगठनात्मक युनिट शोधा", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "प्रकल्पाचा फंडर", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "Publication of the Author", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "लेखकाचे प्रकाशन", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "OrgUnit of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "प्रकल्पाचे संगठनात्मक युनिट", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "प्रकल्पाचा फंडर", - // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - - // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "शोधा...", - // "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Current Selection ({{ count }})", "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "सध्याची निवड ({{ count }})", - // "submission.sections.describe.relationship-lookup.title.Journal": "Journal", "submission.sections.describe.relationship-lookup.title.Journal": "जर्नल", - // "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Journal Issues", "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "जर्नल अंक", - // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "जर्नल अंक", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "जर्नल खंड", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "जर्नल खंड", - // "submission.sections.describe.relationship-lookup.title.JournalVolume": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.JournalVolume": "जर्नल खंड", - // "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "Journals", "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "जर्नल्स", - // "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Authors", "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "लेखक", - // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Funding Agency", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "निधी संस्था", - // "submission.sections.describe.relationship-lookup.title.Project": "Projects", "submission.sections.describe.relationship-lookup.title.Project": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.title.Publication": "Publications", "submission.sections.describe.relationship-lookup.title.Publication": "प्रकाशने", - // "submission.sections.describe.relationship-lookup.title.Person": "Authors", "submission.sections.describe.relationship-lookup.title.Person": "लेखक", - // "submission.sections.describe.relationship-lookup.title.OrgUnit": "Organizational Units", "submission.sections.describe.relationship-lookup.title.OrgUnit": "संघटनात्मक युनिट्स", - // "submission.sections.describe.relationship-lookup.title.DataPackage": "Data Packages", "submission.sections.describe.relationship-lookup.title.DataPackage": "डेटा पॅकेजेस", - // "submission.sections.describe.relationship-lookup.title.DataFile": "Data Files", "submission.sections.describe.relationship-lookup.title.DataFile": "डेटा फाइल्स", - // "submission.sections.describe.relationship-lookup.title.Funding Agency": "Funding Agency", "submission.sections.describe.relationship-lookup.title.Funding Agency": "निधी संस्था", - // "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Funding", "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "निधी", - // "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Parent Organizational Unit", "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "पालक संघटनात्मक युनिट", - // "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "Publication", "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "प्रकाशन", - // "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "OrgUnit", "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "संघटनात्मक युनिट", - // "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Toggle dropdown", "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ड्रॉपडाउन टॉगल करा", - // "submission.sections.describe.relationship-lookup.selection-tab.settings": "Settings", "submission.sections.describe.relationship-lookup.selection-tab.settings": "सेटिंग्ज", - // "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Your selection is currently empty.", "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "आपली निवड सध्या रिकामी आहे.", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "निवडलेले लेखक", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "निवडलेले जर्नल्स", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "निवडलेला जर्नल खंड", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "निवडलेला जर्नल खंड", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Selected Projects", "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "निवडलेले प्रकल्प", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Selected Publications", "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "निवडलेली प्रकाशने", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "निवडलेले लेखक", - // "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Selected Organizational Units", "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "निवडलेले संघटनात्मक युनिट्स", - // "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Selected Data Packages", "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "निवडलेले डेटा पॅकेजेस", - // "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Selected Data Files", "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "निवडलेल्या डेटा फाइल्स", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "निवडलेले जर्नल्स", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "निवडलेला अंक", - // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "निवडलेला जर्नल खंड", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Selected Funding Agency", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "निवडलेली निधी संस्था", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Selected Funding", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "निवडलेला निधी", - // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "निवडलेला अंक", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Selected Organizational Unit", "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "निवडलेले संघटनात्मक युनिट", - // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.", "submission.sections.describe.relationship-lookup.name-variant.notification.content": "आपण \"{{ value }}\" या व्यक्तीसाठी नावाचा प्रकार म्हणून जतन करू इच्छिता जेणेकरून आपण आणि इतर भविष्यातील सबमिशनसाठी ते पुन्हा वापरू शकतील? आपण नाही केले तरी आपण हे सबमिशनसाठी वापरू शकता.", - // "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant", "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "नवीन नावाचा प्रकार जतन करा", - // "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Use only for this submission", "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "फक्त या सबमिशनसाठी वापरा", - // "submission.sections.ccLicense.type": "License Type", "submission.sections.ccLicense.type": "परवाना प्रकार", - // "submission.sections.ccLicense.select": "Select a license type…", "submission.sections.ccLicense.select": "परवाना प्रकार निवडा…", - // "submission.sections.ccLicense.change": "Change your license type…", "submission.sections.ccLicense.change": "आपला परवाना प्रकार बदला…", - // "submission.sections.ccLicense.none": "No licenses available", "submission.sections.ccLicense.none": "कोणतेही परवाने उपलब्ध नाहीत", - // "submission.sections.ccLicense.option.select": "Select an option…", "submission.sections.ccLicense.option.select": "एक पर्याय निवडा…", - // "submission.sections.ccLicense.link": "You’ve selected the following license:", - // TODO New key - Add a translation - "submission.sections.ccLicense.link": "You’ve selected the following license:", + "submission.sections.ccLicense.link": "आपण खालील परवाना निवडला आहे:", - // "submission.sections.ccLicense.confirmation": "I grant the license above", "submission.sections.ccLicense.confirmation": "मी वरील परवाना मंजूर करतो", - // "submission.sections.general.add-more": "Add more", "submission.sections.general.add-more": "अधिक जोडा", - // "submission.sections.general.cannot_deposit": "Deposit cannot be completed due to errors in the form.
Please fill out all required fields to complete the deposit.", "submission.sections.general.cannot_deposit": "फॉर्ममध्ये त्रुटी असल्यामुळे ठेव पूर्ण केली जाऊ शकत नाही.
सर्व आवश्यक फील्ड भरा जेणेकरून ठेव पूर्ण होईल.", - // "submission.sections.general.collection": "Collection", "submission.sections.general.collection": "संग्रह", - // "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.", "submission.sections.general.deposit_error_notice": "आयटम सबमिट करताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", - // "submission.sections.general.deposit_success_notice": "Submission deposited successfully.", "submission.sections.general.deposit_success_notice": "सबमिशन यशस्वीरित्या ठेवले गेले.", - // "submission.sections.general.discard_error_notice": "There was an issue when discarding the item, please try again later.", "submission.sections.general.discard_error_notice": "आयटम काढून टाकताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", - // "submission.sections.general.discard_success_notice": "Submission discarded successfully.", "submission.sections.general.discard_success_notice": "सबमिशन यशस्वीरित्या काढून टाकले गेले.", - // "submission.sections.general.metadata-extracted": "New metadata have been extracted and added to the {{sectionId}} section.", "submission.sections.general.metadata-extracted": "नवीन मेटाडेटा काढले गेले आहेत आणि {{sectionId}} विभागात जोडले गेले आहेत.", - // "submission.sections.general.metadata-extracted-new-section": "New {{sectionId}} section has been added to submission.", "submission.sections.general.metadata-extracted-new-section": "नवीन {{sectionId}} विभाग सबमिशनमध्ये जोडला गेला आहे.", - // "submission.sections.general.no-collection": "No collection found", "submission.sections.general.no-collection": "कोणताही संग्रह सापडला नाही", - // "submission.sections.general.no-entity": "No entity types found", "submission.sections.general.no-entity": "कोणतेही घटक प्रकार सापडले नाहीत", - // "submission.sections.general.no-sections": "No options available", "submission.sections.general.no-sections": "कोणतेही पर्याय उपलब्ध नाहीत", - // "submission.sections.general.save_error_notice": "There was an issue when saving the item, please try again later.", "submission.sections.general.save_error_notice": "आयटम जतन करताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", - // "submission.sections.general.save_success_notice": "Submission saved successfully.", "submission.sections.general.save_success_notice": "सबमिशन यशस्वीरित्या जतन केले.", - // "submission.sections.general.search-collection": "Search for a collection", "submission.sections.general.search-collection": "संग्रह शोधा", - // "submission.sections.general.sections_not_valid": "There are incomplete sections.", "submission.sections.general.sections_not_valid": "अपूर्ण विभाग आहेत.", - // "submission.sections.identifiers.info": "The following identifiers will be created for your item:", - // TODO New key - Add a translation - "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + "submission.sections.identifiers.info": "आपल्या आयटमसाठी खालील ओळखपत्रे तयार केली जातील:", - // "submission.sections.identifiers.no_handle": "No handles have been minted for this item.", "submission.sections.identifiers.no_handle": "या आयटमसाठी कोणतेही हँडल तयार केले गेले नाहीत.", - // "submission.sections.identifiers.no_doi": "No DOIs have been minted for this item.", "submission.sections.identifiers.no_doi": "या आयटमसाठी कोणतेही DOI तयार केले गेले नाहीत.", - // "submission.sections.identifiers.handle_label": "Handle: ", - // TODO New key - Add a translation - "submission.sections.identifiers.handle_label": "Handle: ", + "submission.sections.identifiers.handle_label": "हँडल: ", - // "submission.sections.identifiers.doi_label": "DOI: ", "submission.sections.identifiers.doi_label": "DOI: ", - // "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", - // TODO New key - Add a translation - "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + "submission.sections.identifiers.otherIdentifiers_label": "इतर ओळखपत्रे: ", - // "submission.sections.submit.progressbar.accessCondition": "Item access conditions", "submission.sections.submit.progressbar.accessCondition": "आयटम प्रवेश अटी", - // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "क्रिएटिव्ह कॉमन्स परवाना", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "रीसायकल", - // "submission.sections.submit.progressbar.describe.stepcustom": "Describe", "submission.sections.submit.progressbar.describe.stepcustom": "वर्णन करा", - // "submission.sections.submit.progressbar.describe.stepone": "Describe", "submission.sections.submit.progressbar.describe.stepone": "वर्णन करा", - // "submission.sections.submit.progressbar.describe.steptwo": "Describe", "submission.sections.submit.progressbar.describe.steptwo": "वर्णन करा", - // "submission.sections.submit.progressbar.duplicates": "Potential duplicates", "submission.sections.submit.progressbar.duplicates": "संभाव्य डुप्लिकेट", - // "submission.sections.submit.progressbar.identifiers": "Identifiers", "submission.sections.submit.progressbar.identifiers": "ओळखपत्रे", - // "submission.sections.submit.progressbar.license": "Deposit license", "submission.sections.submit.progressbar.license": "ठेव परवाना", - // "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies", "submission.sections.submit.progressbar.sherpapolicy": "शेरपा धोरणे", - // "submission.sections.submit.progressbar.upload": "Upload files", "submission.sections.submit.progressbar.upload": "फाइल्स अपलोड करा", - // "submission.sections.submit.progressbar.sherpaPolicies": "Publisher open access policy information", "submission.sections.submit.progressbar.sherpaPolicies": "प्रकाशक खुले प्रवेश धोरण माहिती", - // "submission.sections.sherpa-policy.title-empty": "No publisher policy information available. If your work has an associated ISSN, please enter it above to see any related publisher open access policies.", "submission.sections.sherpa-policy.title-empty": "कोणतीही प्रकाशक धोरण माहिती उपलब्ध नाही. आपले कार्य संबंधित ISSN आहे, कृपया वरील प्रविष्ट करा जेणेकरून संबंधित प्रकाशक खुले प्रवेश धोरणे पाहता येतील.", - // "submission.sections.status.errors.title": "Errors", "submission.sections.status.errors.title": "त्रुटी", - // "submission.sections.status.valid.title": "Valid", "submission.sections.status.valid.title": "वैध", - // "submission.sections.status.warnings.title": "Warnings", "submission.sections.status.warnings.title": "चेतावणी", - // "submission.sections.status.errors.aria": "has errors", "submission.sections.status.errors.aria": "त्रुटी आहेत", - // "submission.sections.status.valid.aria": "is valid", "submission.sections.status.valid.aria": "वैध आहे", - // "submission.sections.status.warnings.aria": "has warnings", "submission.sections.status.warnings.aria": "चेतावणी आहेत", - // "submission.sections.status.info.title": "Additional Information", "submission.sections.status.info.title": "अतिरिक्त माहिती", - // "submission.sections.status.info.aria": "Additional Information", "submission.sections.status.info.aria": "अतिरिक्त माहिती", - // "submission.sections.toggle.open": "Open section", "submission.sections.toggle.open": "विभाग उघडा", - // "submission.sections.toggle.close": "Close section", "submission.sections.toggle.close": "विभाग बंद करा", - // "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section", "submission.sections.toggle.aria.open": "{{sectionHeader}} विभाग विस्तृत करा", - // "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section", "submission.sections.toggle.aria.close": "{{sectionHeader}} विभाग संकुचित करा", - // "submission.sections.upload.primary.make": "Make {{fileName}} the primary bitstream", "submission.sections.upload.primary.make": "{{fileName}} प्राथमिक बिटस्ट्रीम बनवा", - // "submission.sections.upload.primary.remove": "Remove {{fileName}} as the primary bitstream", "submission.sections.upload.primary.remove": "{{fileName}} प्राथमिक बिटस्ट्रीम म्हणून काढा", - // "submission.sections.upload.delete.confirm.cancel": "Cancel", "submission.sections.upload.delete.confirm.cancel": "रद्द करा", - // "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?", "submission.sections.upload.delete.confirm.info": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. आपण खात्री आहात?", - // "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure", "submission.sections.upload.delete.confirm.submit": "होय, मला खात्री आहे", - // "submission.sections.upload.delete.confirm.title": "Delete bitstream", "submission.sections.upload.delete.confirm.title": "बिटस्ट्रीम हटवा", - // "submission.sections.upload.delete.submit": "Delete", "submission.sections.upload.delete.submit": "हटवा", - // "submission.sections.upload.download.title": "Download bitstream", "submission.sections.upload.download.title": "बिटस्ट्रीम डाउनलोड करा", - // "submission.sections.upload.drop-message": "Drop files to attach them to the item", "submission.sections.upload.drop-message": "आयटमला जोडण्यासाठी फाइल्स ड्रॉप करा", - // "submission.sections.upload.edit.title": "Edit bitstream", "submission.sections.upload.edit.title": "बिटस्ट्रीम संपादित करा", - // "submission.sections.upload.form.access-condition-label": "Access condition type", "submission.sections.upload.form.access-condition-label": "प्रवेश अटी प्रकार", - // "submission.sections.upload.form.access-condition-hint": "Select an access condition to apply on the bitstream once the item is deposited", "submission.sections.upload.form.access-condition-hint": "आयटम ठेवल्यानंतर बिटस्ट्रीमवर लागू करण्यासाठी प्रवेश अटी निवडा", - // "submission.sections.upload.form.date-required": "Date is required.", "submission.sections.upload.form.date-required": "तारीख आवश्यक आहे.", - // "submission.sections.upload.form.date-required-from": "Grant access from date is required.", "submission.sections.upload.form.date-required-from": "प्रवेश देण्याची तारीख आवश्यक आहे.", - // "submission.sections.upload.form.date-required-until": "Grant access until date is required.", "submission.sections.upload.form.date-required-until": "प्रवेश देण्याची तारीख आवश्यक आहे.", - // "submission.sections.upload.form.from-label": "Grant access from", "submission.sections.upload.form.from-label": "प्रवेश देण्याची तारीख", - // "submission.sections.upload.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.upload.form.from-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", - // "submission.sections.upload.form.from-placeholder": "From", "submission.sections.upload.form.from-placeholder": "पासून", - // "submission.sections.upload.form.group-label": "Group", "submission.sections.upload.form.group-label": "गट", - // "submission.sections.upload.form.group-required": "Group is required.", "submission.sections.upload.form.group-required": "गट आवश्यक आहे.", - // "submission.sections.upload.form.until-label": "Grant access until", "submission.sections.upload.form.until-label": "पर्यंत प्रवेश द्या", - // "submission.sections.upload.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.upload.form.until-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", - // "submission.sections.upload.form.until-placeholder": "Until", "submission.sections.upload.form.until-placeholder": "पर्यंत", - // "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", - // TODO New key - Add a translation - "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", + "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} संग्रहातील अपलोड केलेल्या फाइल्स खालील गटांनुसार प्रवेशयोग्य असतील:", - // "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", - // TODO New key - Add a translation - "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + "submission.sections.upload.header.policy.default.withlist": "कृपया लक्षात घ्या की {{collectionName}} संग्रहातील अपलोड केलेल्या फाइल्स, एकल फाइलसाठी स्पष्टपणे ठरवलेल्या गोष्टींशिवाय, खालील गटांसह प्रवेशयोग्य असतील:", - // "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or upload additional files by dragging & dropping them anywhere on the page.", "submission.sections.upload.info": "येथे आपल्याला आयटममधील सर्व फाइल्स सापडतील. आपण फाइल मेटाडेटा आणि प्रवेश अटी अद्यतनित करू शकता किंवा पृष्ठावर कुठेही ड्रॅग आणि ड्रॉप करून अतिरिक्त फाइल्स अपलोड करू शकता.", - // "submission.sections.upload.no-entry": "No", "submission.sections.upload.no-entry": "नाही", - // "submission.sections.upload.no-file-uploaded": "No file uploaded yet.", "submission.sections.upload.no-file-uploaded": "अद्याप कोणतीही फाइल अपलोड केलेली नाही.", - // "submission.sections.upload.save-metadata": "Save metadata", "submission.sections.upload.save-metadata": "मेटाडेटा जतन करा", - // "submission.sections.upload.undo": "Cancel", "submission.sections.upload.undo": "रद्द करा", - // "submission.sections.upload.upload-failed": "Upload failed", "submission.sections.upload.upload-failed": "अपलोड अयशस्वी", - // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "अपलोड यशस्वी", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "जेव्हा तपासले जाते, तेव्हा हा आयटम शोध/ब्राउझमध्ये शोधण्यायोग्य असेल. जेव्हा तपासले जात नाही, तेव्हा आयटम फक्त थेट लिंकद्वारे उपलब्ध असेल आणि कधीही शोध/ब्राउझमध्ये दिसणार नाही.", - // "submission.sections.accesses.form.discoverable-label": "Discoverable", "submission.sections.accesses.form.discoverable-label": "शोधण्यायोग्य", - // "submission.sections.accesses.form.access-condition-label": "Access condition type", "submission.sections.accesses.form.access-condition-label": "प्रवेश अटी प्रकार", - // "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited", "submission.sections.accesses.form.access-condition-hint": "आयटम ठेवल्यानंतर लागू करण्यासाठी प्रवेश अटी निवडा", - // "submission.sections.accesses.form.date-required": "Date is required.", "submission.sections.accesses.form.date-required": "तारीख आवश्यक आहे.", - // "submission.sections.accesses.form.date-required-from": "Grant access from date is required.", "submission.sections.accesses.form.date-required-from": "प्रवेश देण्याची तारीख आवश्यक आहे.", - // "submission.sections.accesses.form.date-required-until": "Grant access until date is required.", "submission.sections.accesses.form.date-required-until": "प्रवेश देण्याची तारीख आवश्यक आहे.", - // "submission.sections.accesses.form.from-label": "Grant access from", "submission.sections.accesses.form.from-label": "प्रवेश देण्याची तारीख", - // "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.accesses.form.from-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", - // "submission.sections.accesses.form.from-placeholder": "From", "submission.sections.accesses.form.from-placeholder": "पासून", - // "submission.sections.accesses.form.group-label": "Group", "submission.sections.accesses.form.group-label": "गट", - // "submission.sections.accesses.form.group-required": "Group is required.", "submission.sections.accesses.form.group-required": "गट आवश्यक आहे.", - // "submission.sections.accesses.form.until-label": "Grant access until", "submission.sections.accesses.form.until-label": "पर्यंत प्रवेश द्या", - // "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.accesses.form.until-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", - // "submission.sections.accesses.form.until-placeholder": "Until", "submission.sections.accesses.form.until-placeholder": "पर्यंत", - // "submission.sections.duplicates.none": "No duplicates were detected.", "submission.sections.duplicates.none": "कोणतेही डुप्लिकेट आढळले नाहीत.", - // "submission.sections.duplicates.detected": "Potential duplicates were detected. Please review the list below.", "submission.sections.duplicates.detected": "संभाव्य डुप्लिकेट आढळले. कृपया खालील यादी पुनरावलोकन करा.", - // "submission.sections.duplicates.in-workspace": "This item is in workspace", "submission.sections.duplicates.in-workspace": "हा आयटम कार्यक्षेत्रात आहे", - // "submission.sections.duplicates.in-workflow": "This item is in workflow", "submission.sections.duplicates.in-workflow": "हा आयटम कार्यप्रवाहात आहे", - // "submission.sections.license.granted-label": "I confirm the license above", "submission.sections.license.granted-label": "मी वरील परवाना पुष्टी करतो", - // "submission.sections.license.required": "You must accept the license", "submission.sections.license.required": "आपण परवाना स्वीकारणे आवश्यक आहे", - // "submission.sections.license.notgranted": "You must accept the license", "submission.sections.license.notgranted": "आपण परवाना स्वीकारणे आवश्यक आहे", - // "submission.sections.sherpa.publication.information": "Publication information", "submission.sections.sherpa.publication.information": "प्रकाशन माहिती", - // "submission.sections.sherpa.publication.information.title": "Title", "submission.sections.sherpa.publication.information.title": "शीर्षक", - // "submission.sections.sherpa.publication.information.issns": "ISSNs", "submission.sections.sherpa.publication.information.issns": "ISSNs", - // "submission.sections.sherpa.publication.information.url": "URL", "submission.sections.sherpa.publication.information.url": "URL", - // "submission.sections.sherpa.publication.information.publishers": "Publisher", "submission.sections.sherpa.publication.information.publishers": "प्रकाशक", - // "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", "submission.sections.sherpa.publication.information.romeoPub": "रोमियो पब", - // "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", "submission.sections.sherpa.publication.information.zetoPub": "झेटो पब", - // "submission.sections.sherpa.publisher.policy": "Publisher Policy", "submission.sections.sherpa.publisher.policy": "प्रकाशक धोरण", - // "submission.sections.sherpa.publisher.policy.description": "The below information was found via Sherpa Romeo. Based on the policies of your publisher, it provides advice regarding whether an embargo may be necessary and/or which files you are allowed to upload. If you have questions, please contact your site administrator via the feedback form in the footer.", "submission.sections.sherpa.publisher.policy.description": "खालील माहिती शेरपा रोमियोद्वारे आढळली. आपल्या प्रकाशकाच्या धोरणांवर आधारित, हे सल्ला देते की एम्बार्गो आवश्यक आहे का आणि/किंवा कोणत्या फाइल्स अपलोड करण्यास परवानगी आहे. आपल्याला प्रश्न असल्यास, कृपया फूटरमधील अभिप्राय फॉर्मद्वारे आपल्या साइट प्रशासकाशी संपर्क साधा.", - // "submission.sections.sherpa.publisher.policy.openaccess": "Open Access pathways permitted by this journal's policy are listed below by article version. Click on a pathway for a more detailed view", "submission.sections.sherpa.publisher.policy.openaccess": "या जर्नलच्या धोरणाद्वारे परवानगी दिलेल्या खुले प्रवेश मार्ग खालीलप्रमाणे लेख आवृत्तीने सूचीबद्ध आहेत. अधिक तपशीलवार दृश्यासाठी मार्गावर क्लिक करा", - // "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", - // TODO New key - Add a translation - "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + "submission.sections.sherpa.publisher.policy.more.information": "अधिक माहितीसाठी, कृपया खालील दुवे पहा:", - // "submission.sections.sherpa.publisher.policy.version": "Version", "submission.sections.sherpa.publisher.policy.version": "आवृत्ती", - // "submission.sections.sherpa.publisher.policy.embargo": "Embargo", "submission.sections.sherpa.publisher.policy.embargo": "एम्बार्गो", - // "submission.sections.sherpa.publisher.policy.noembargo": "No Embargo", "submission.sections.sherpa.publisher.policy.noembargo": "कोणताही एम्बार्गो नाही", - // "submission.sections.sherpa.publisher.policy.nolocation": "None", "submission.sections.sherpa.publisher.policy.nolocation": "कोणतेही स्थान नाही", - // "submission.sections.sherpa.publisher.policy.license": "License", "submission.sections.sherpa.publisher.policy.license": "परवाना", - // "submission.sections.sherpa.publisher.policy.prerequisites": "Prerequisites", "submission.sections.sherpa.publisher.policy.prerequisites": "पूर्वअटी", - // "submission.sections.sherpa.publisher.policy.location": "Location", "submission.sections.sherpa.publisher.policy.location": "स्थान", - // "submission.sections.sherpa.publisher.policy.conditions": "Conditions", "submission.sections.sherpa.publisher.policy.conditions": "अटी", - // "submission.sections.sherpa.publisher.policy.refresh": "Refresh", "submission.sections.sherpa.publisher.policy.refresh": "रिफ्रेश", - // "submission.sections.sherpa.record.information": "Record Information", "submission.sections.sherpa.record.information": "रेकॉर्ड माहिती", - // "submission.sections.sherpa.record.information.id": "ID", "submission.sections.sherpa.record.information.id": "आयडी", - // "submission.sections.sherpa.record.information.date.created": "Date Created", "submission.sections.sherpa.record.information.date.created": "तयार केलेली तारीख", - // "submission.sections.sherpa.record.information.date.modified": "Last Modified", "submission.sections.sherpa.record.information.date.modified": "शेवटचे बदललेले", - // "submission.sections.sherpa.record.information.uri": "URI", "submission.sections.sherpa.record.information.uri": "यूआरआय", - // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations", "submission.sections.sherpa.error.message": "शेरपा माहिती मिळवताना त्रुटी आली", - // "submission.submit.breadcrumbs": "New submission", "submission.submit.breadcrumbs": "नवीन सबमिशन", - // "submission.submit.title": "New submission", "submission.submit.title": "नवीन सबमिशन", - // "submission.workflow.generic.delete": "Delete", "submission.workflow.generic.delete": "हटवा", - // "submission.workflow.generic.delete-help": "Select this option to discard this item. You will then be asked to confirm it.", "submission.workflow.generic.delete-help": "या आयटमला काढून टाकण्यासाठी हा पर्याय निवडा. तुम्हाला नंतर ते पुष्टी करण्यास सांगितले जाईल.", - // "submission.workflow.generic.edit": "Edit", "submission.workflow.generic.edit": "संपादित करा", - // "submission.workflow.generic.edit-help": "Select this option to change the item's metadata.", "submission.workflow.generic.edit-help": "आयटमची मेटाडेटा बदलण्यासाठी हा पर्याय निवडा.", - // "submission.workflow.generic.view": "View", "submission.workflow.generic.view": "पहा", - // "submission.workflow.generic.view-help": "Select this option to view the item's metadata.", "submission.workflow.generic.view-help": "आयटमची मेटाडेटा पाहण्यासाठी हा पर्याय निवडा.", - // "submission.workflow.generic.submit_select_reviewer": "Select Reviewer", "submission.workflow.generic.submit_select_reviewer": "पुनरावलोकक निवडा", - // "submission.workflow.generic.submit_select_reviewer-help": "", "submission.workflow.generic.submit_select_reviewer-help": "", - // "submission.workflow.generic.submit_score": "Rate", "submission.workflow.generic.submit_score": "रेट करा", - // "submission.workflow.generic.submit_score-help": "", "submission.workflow.generic.submit_score-help": "", - // "submission.workflow.tasks.claimed.approve": "Approve", "submission.workflow.tasks.claimed.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": "जर तुम्ही आयटमचे पुनरावलोकन केले असेल आणि ते संग्रहात समाविष्ट करण्यासाठी योग्य असल्याचे आढळले असेल, तर \"मंजूर करा\" निवडा.", - // "submission.workflow.tasks.claimed.edit": "Edit", "submission.workflow.tasks.claimed.edit": "संपादित करा", - // "submission.workflow.tasks.claimed.edit_help": "Select this option to change the item's metadata.", "submission.workflow.tasks.claimed.edit_help": "आयटमची मेटाडेटा बदलण्यासाठी हा पर्याय निवडा.", - // "submission.workflow.tasks.claimed.decline": "Decline", "submission.workflow.tasks.claimed.decline": "नकार द्या", - // "submission.workflow.tasks.claimed.decline_help": "", "submission.workflow.tasks.claimed.decline_help": "", - // "submission.workflow.tasks.claimed.reject.reason.info": "Please enter your reason for rejecting the submission into the box below, indicating whether the submitter may fix a problem and resubmit.", "submission.workflow.tasks.claimed.reject.reason.info": "कृपया सबमिशन नाकारण्याचे कारण खालील बॉक्समध्ये प्रविष्ट करा, सबमिटरला समस्या दुरुस्त करून पुन्हा सबमिट करण्याची परवानगी आहे की नाही हे दर्शवा.", - // "submission.workflow.tasks.claimed.reject.reason.placeholder": "Describe the reason of reject", "submission.workflow.tasks.claimed.reject.reason.placeholder": "नकाराचे कारण वर्णन करा", - // "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item", "submission.workflow.tasks.claimed.reject.reason.submit": "आयटम नकारा", - // "submission.workflow.tasks.claimed.reject.reason.title": "Reason", "submission.workflow.tasks.claimed.reject.reason.title": "कारण", - // "submission.workflow.tasks.claimed.reject.submit": "Reject", "submission.workflow.tasks.claimed.reject.submit": "नकारा", - // "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is not 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": "जर तुम्ही आयटमचे पुनरावलोकन केले असेल आणि ते संग्रहात समाविष्ट करण्यासाठी योग्य नसल्याचे आढळले असेल, तर \"नकारा\" निवडा. तुम्हाला नंतर आयटम का अयोग्य आहे हे दर्शविणारा संदेश प्रविष्ट करण्यास सांगितले जाईल आणि सबमिटरने काहीतरी बदलावे आणि पुन्हा सबमिट करावे का हे दर्शवावे.", - // "submission.workflow.tasks.claimed.return": "Return to pool", "submission.workflow.tasks.claimed.return": "पूलमध्ये परत करा", - // "submission.workflow.tasks.claimed.return_help": "Return the task to the pool so that another user may perform the task.", "submission.workflow.tasks.claimed.return_help": "कार्य पूलमध्ये परत करा जेणेकरून दुसरा वापरकर्ता कार्य करू शकेल.", - // "submission.workflow.tasks.generic.error": "Error occurred during operation...", "submission.workflow.tasks.generic.error": "ऑपरेशन दरम्यान त्रुटी आली...", - // "submission.workflow.tasks.generic.processing": "Processing...", "submission.workflow.tasks.generic.processing": "प्रक्रिया...", - // "submission.workflow.tasks.generic.submitter": "Submitter", "submission.workflow.tasks.generic.submitter": "सबमिटर", - // "submission.workflow.tasks.generic.success": "Operation successful", "submission.workflow.tasks.generic.success": "ऑपरेशन यशस्वी", - // "submission.workflow.tasks.pool.claim": "Claim", "submission.workflow.tasks.pool.claim": "दावा करा", - // "submission.workflow.tasks.pool.claim_help": "Assign this task to yourself.", "submission.workflow.tasks.pool.claim_help": "हे कार्य स्वतःला नियुक्त करा.", - // "submission.workflow.tasks.pool.hide-detail": "Hide detail", "submission.workflow.tasks.pool.hide-detail": "तपशील लपवा", - // "submission.workflow.tasks.pool.show-detail": "Show detail", "submission.workflow.tasks.pool.show-detail": "तपशील दाखवा", - // "submission.workflow.tasks.duplicates": "potential duplicates were detected for this item. Claim and edit this item to see details.", "submission.workflow.tasks.duplicates": "या आयटमसाठी संभाव्य डुप्लिकेट आढळले. तपशील पाहण्यासाठी हा आयटम दावा करा आणि संपादित करा.", - // "submission.workspace.generic.view": "View", "submission.workspace.generic.view": "पहा", - // "submission.workspace.generic.view-help": "Select this option to view the item's metadata.", "submission.workspace.generic.view-help": "आयटमची मेटाडेटा पाहण्यासाठी हा पर्याय निवडा.", - // "submitter.empty": "N/A", "submitter.empty": "N/A", - // "subscriptions.title": "Subscriptions", "subscriptions.title": "सदस्यता", - // "subscriptions.item": "Subscriptions for items", "subscriptions.item": "आयटमसाठी सदस्यता", - // "subscriptions.collection": "Subscriptions for collections", "subscriptions.collection": "संग्रहासाठी सदस्यता", - // "subscriptions.community": "Subscriptions for communities", "subscriptions.community": "समुदायासाठी सदस्यता", - // "subscriptions.subscription_type": "Subscription type", "subscriptions.subscription_type": "सदस्यता प्रकार", - // "subscriptions.frequency": "Subscription frequency", "subscriptions.frequency": "सदस्यता वारंवारता", - // "subscriptions.frequency.D": "Daily", "subscriptions.frequency.D": "दैनिक", - // "subscriptions.frequency.M": "Monthly", "subscriptions.frequency.M": "मासिक", - // "subscriptions.frequency.W": "Weekly", "subscriptions.frequency.W": "साप्ताहिक", - // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "सदस्यता घ्या", - // "subscriptions.unsubscribe": "Unsubscribe", "subscriptions.unsubscribe": "सदस्यता रद्द करा", - // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "सदस्यता", - // "subscriptions.modal.type-frequency": "Type and frequency", "subscriptions.modal.type-frequency": "प्रकार आणि वारंवारता", - // "subscriptions.modal.close": "Close", "subscriptions.modal.close": "बंद करा", - // "subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile", "subscriptions.modal.delete-info": "ही सदस्यता काढून टाकण्यासाठी, कृपया तुमच्या वापरकर्ता प्रोफाइल अंतर्गत \"सदस्यता\" पृष्ठावर जा", - // "subscriptions.modal.new-subscription-form.type.content": "Content", "subscriptions.modal.new-subscription-form.type.content": "सामग्री", - // "subscriptions.modal.new-subscription-form.frequency.D": "Daily", "subscriptions.modal.new-subscription-form.frequency.D": "दैनिक", - // "subscriptions.modal.new-subscription-form.frequency.W": "Weekly", "subscriptions.modal.new-subscription-form.frequency.W": "साप्ताहिक", - // "subscriptions.modal.new-subscription-form.frequency.M": "Monthly", "subscriptions.modal.new-subscription-form.frequency.M": "मासिक", - // "subscriptions.modal.new-subscription-form.submit": "Submit", "subscriptions.modal.new-subscription-form.submit": "सबमिट करा", - // "subscriptions.modal.new-subscription-form.processing": "Processing...", "subscriptions.modal.new-subscription-form.processing": "प्रक्रिया...", - // "subscriptions.modal.create.success": "Subscribed to {{ type }} successfully.", "subscriptions.modal.create.success": "{{ प्रकार }} ला यशस्वीरित्या सदस्यता घेतली.", - // "subscriptions.modal.delete.success": "Subscription deleted successfully", "subscriptions.modal.delete.success": "सदस्यता यशस्वीरित्या हटवली", - // "subscriptions.modal.update.success": "Subscription to {{ type }} updated successfully", "subscriptions.modal.update.success": "{{ प्रकार }} ला सदस्यता यशस्वीरित्या अद्यतनित केली", - // "subscriptions.modal.create.error": "An error occurs during the subscription creation", "subscriptions.modal.create.error": "सदस्यता निर्मिती दरम्यान त्रुटी आली", - // "subscriptions.modal.delete.error": "An error occurs during the subscription delete", "subscriptions.modal.delete.error": "सदस्यता हटवताना त्रुटी आली", - // "subscriptions.modal.update.error": "An error occurs during the subscription update", "subscriptions.modal.update.error": "सदस्यता अद्यतनित करताना त्रुटी आली", - // "subscriptions.table.dso": "Subject", "subscriptions.table.dso": "विषय", - // "subscriptions.table.subscription_type": "Subscription Type", "subscriptions.table.subscription_type": "सदस्यता प्रकार", - // "subscriptions.table.subscription_frequency": "Subscription Frequency", "subscriptions.table.subscription_frequency": "सदस्यता वारंवारता", - // "subscriptions.table.action": "Action", "subscriptions.table.action": "क्रिया", - // "subscriptions.table.edit": "Edit", "subscriptions.table.edit": "संपादित करा", - // "subscriptions.table.delete": "Delete", "subscriptions.table.delete": "हटवा", - // "subscriptions.table.not-available": "Not available", "subscriptions.table.not-available": "उपलब्ध नाही", - // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "सदस्यता घेतलेला आयटम हटवला गेला आहे, किंवा तुम्हाला सध्या ते पाहण्याची परवानगी नाही", - // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", "subscriptions.table.empty.message": "तुमच्याकडे सध्या कोणतीही सदस्यता नाही. समुदाय किंवा संग्रहासाठी ईमेल अद्यतनांसाठी सदस्यता घेण्यासाठी, ऑब्जेक्टच्या पृष्ठावरील सदस्यता बटण वापरा.", - // "thumbnail.default.alt": "Thumbnail Image", "thumbnail.default.alt": "थंबनेल प्रतिमा", - // "thumbnail.default.placeholder": "No Thumbnail Available", "thumbnail.default.placeholder": "थंबनेल उपलब्ध नाही", - // "thumbnail.project.alt": "Project Logo", "thumbnail.project.alt": "प्रकल्प लोगो", - // "thumbnail.project.placeholder": "Project Placeholder Image", "thumbnail.project.placeholder": "प्रकल्प प्लेसहोल्डर प्रतिमा", - // "thumbnail.orgunit.alt": "OrgUnit Logo", "thumbnail.orgunit.alt": "संगठन युनिट लोगो", - // "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image", "thumbnail.orgunit.placeholder": "संगठन युनिट प्लेसहोल्डर प्रतिमा", - // "thumbnail.person.alt": "Profile Picture", "thumbnail.person.alt": "प्रोफाइल चित्र", - // "thumbnail.person.placeholder": "No Profile Picture Available", "thumbnail.person.placeholder": "प्रोफाइल चित्र उपलब्ध नाही", - // "title": "DSpace", "title": "डीस्पेस", - // "vocabulary-treeview.header": "Hierarchical tree view", "vocabulary-treeview.header": "अनुक्रमणिका दृश्य", - // "vocabulary-treeview.load-more": "Load more", "vocabulary-treeview.load-more": "अधिक लोड करा", - // "vocabulary-treeview.search.form.reset": "Reset", "vocabulary-treeview.search.form.reset": "रीसेट करा", - // "vocabulary-treeview.search.form.search": "Search", "vocabulary-treeview.search.form.search": "शोधा", - // "vocabulary-treeview.search.form.search-placeholder": "Filter results by typing the first few letters", "vocabulary-treeview.search.form.search-placeholder": "पहिल्या काही अक्षरांनी परिणाम फिल्टर करा", - // "vocabulary-treeview.search.no-result": "There were no items to show", "vocabulary-treeview.search.no-result": "दाखवण्यासाठी कोणतेही आयटम नाहीत", - // "vocabulary-treeview.tree.description.nsi": "The Norwegian Science Index", "vocabulary-treeview.tree.description.nsi": "नॉर्वेजियन सायन्स इंडेक्स", - // "vocabulary-treeview.tree.description.srsc": "Research Subject Categories", "vocabulary-treeview.tree.description.srsc": "संशोधन विषय श्रेणी", - // "vocabulary-treeview.info": "Select a subject to add as search filter", "vocabulary-treeview.info": "शोध फिल्टर म्हणून जोडण्यासाठी एक विषय निवडा", - // "uploader.browse": "browse", "uploader.browse": "ब्राउझ करा", - // "uploader.drag-message": "Drag & Drop your files here", "uploader.drag-message": "तुमच्या फाइल्स येथे ड्रॅग आणि ड्रॉप करा", - // "uploader.delete.btn-title": "Delete", "uploader.delete.btn-title": "हटवा", - // "uploader.or": ", or ", "uploader.or": ", किंवा ", - // "uploader.processing": "Processing uploaded file(s)... (it's now safe to close this page)", "uploader.processing": "अपलोड केलेल्या फाइल्स प्रक्रिया करत आहे... (हे पृष्ठ बंद करणे आता सुरक्षित आहे)", - // "uploader.queue-length": "Queue length", "uploader.queue-length": "क्यू लांबी", - // "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": "आभासी मेटाडेटा वास्तविक मेटाडेटा म्हणून जतन करण्यासाठी तुम्हाला हवे असलेले प्रकार निवडा", - // "virtual-metadata.delete-item.modal-head": "The virtual metadata of this relation", "virtual-metadata.delete-item.modal-head": "या संबंधाचे आभासी मेटाडेटा", - // "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": "आभासी मेटाडेटा वास्तविक मेटाडेटा म्हणून जतन करण्यासाठी तुम्हाला हवे असलेले आयटम निवडा", - // "supervisedWorkspace.search.results.head": "Supervised Items", "supervisedWorkspace.search.results.head": "पर्यवेक्षित आयटम", - // "workspace.search.results.head": "Your submissions", "workspace.search.results.head": "तुमच्या सबमिशन", - // "workflowAdmin.search.results.head": "Administer Workflow", "workflowAdmin.search.results.head": "वर्कफ्लो प्रशासित करा", - // "workflow.search.results.head": "Workflow tasks", "workflow.search.results.head": "वर्कफ्लो कार्ये", - // "supervision.search.results.head": "Workflow and Workspace tasks", "supervision.search.results.head": "वर्कफ्लो आणि वर्कस्पेस कार्ये", - // "workflow-item.edit.breadcrumbs": "Edit workflowitem", "workflow-item.edit.breadcrumbs": "वर्कफ्लो आयटम संपादित करा", - // "workflow-item.edit.title": "Edit workflowitem", "workflow-item.edit.title": "वर्कफ्लो आयटम संपादित करा", - // "workflow-item.delete.notification.success.title": "Deleted", "workflow-item.delete.notification.success.title": "हटवले", - // "workflow-item.delete.notification.success.content": "This workflow item was successfully deleted", "workflow-item.delete.notification.success.content": "हा वर्कफ्लो आयटम यशस्वीरित्या हटवला गेला", - // "workflow-item.delete.notification.error.title": "Something went wrong", "workflow-item.delete.notification.error.title": "काहीतरी चुकले", - // "workflow-item.delete.notification.error.content": "The workflow item could not be deleted", "workflow-item.delete.notification.error.content": "वर्कफ्लो आयटम हटवता आला नाही", - // "workflow-item.delete.title": "Delete workflow item", "workflow-item.delete.title": "वर्कफ्लो आयटम हटवा", - // "workflow-item.delete.header": "Delete workflow item", "workflow-item.delete.header": "वर्कफ्लो आयटम हटवा", - // "workflow-item.delete.button.cancel": "Cancel", "workflow-item.delete.button.cancel": "रद्द करा", - // "workflow-item.delete.button.confirm": "Delete", "workflow-item.delete.button.confirm": "हटवा", - // "workflow-item.send-back.notification.success.title": "Sent back to submitter", "workflow-item.send-back.notification.success.title": "सबमिटरकडे परत पाठवले", - // "workflow-item.send-back.notification.success.content": "This workflow item was successfully sent back to the submitter", "workflow-item.send-back.notification.success.content": "हा वर्कफ्लो आयटम यशस्वीरित्या सबमिटरकडे परत पाठवला गेला", - // "workflow-item.send-back.notification.error.title": "Something went wrong", "workflow-item.send-back.notification.error.title": "काहीतरी चुकले", - // "workflow-item.send-back.notification.error.content": "The workflow item could not be sent back to the submitter", "workflow-item.send-back.notification.error.content": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवता आला नाही", - // "workflow-item.send-back.title": "Send workflow item back to submitter", "workflow-item.send-back.title": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवा", - // "workflow-item.send-back.header": "Send workflow item back to submitter", "workflow-item.send-back.header": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवा", - // "workflow-item.send-back.button.cancel": "Cancel", "workflow-item.send-back.button.cancel": "रद्द करा", - // "workflow-item.send-back.button.confirm": "Send back", "workflow-item.send-back.button.confirm": "परत पाठवा", - // "workflow-item.view.breadcrumbs": "Workflow View", "workflow-item.view.breadcrumbs": "वर्कफ्लो दृश्य", - // "workspace-item.view.breadcrumbs": "Workspace View", "workspace-item.view.breadcrumbs": "वर्कस्पेस दृश्य", - // "workspace-item.view.title": "Workspace View", "workspace-item.view.title": "वर्कस्पेस दृश्य", - // "workspace-item.delete.breadcrumbs": "Workspace Delete", "workspace-item.delete.breadcrumbs": "वर्कस्पेस हटवा", - // "workspace-item.delete.header": "Delete workspace item", "workspace-item.delete.header": "वर्कस्पेस आयटम हटवा", - // "workspace-item.delete.button.confirm": "Delete", "workspace-item.delete.button.confirm": "हटवा", - // "workspace-item.delete.button.cancel": "Cancel", "workspace-item.delete.button.cancel": "रद्द करा", - // "workspace-item.delete.notification.success.title": "Deleted", "workspace-item.delete.notification.success.title": "हटवले", - // "workspace-item.delete.title": "This workspace item was successfully deleted", "workspace-item.delete.title": "हा वर्कस्पेस आयटम यशस्वीरित्या हटवला गेला", - // "workspace-item.delete.notification.error.title": "Something went wrong", "workspace-item.delete.notification.error.title": "काहीतरी चुकले", - // "workspace-item.delete.notification.error.content": "The workspace item could not be deleted", "workspace-item.delete.notification.error.content": "वर्कस्पेस आयटम हटवता आला नाही", - // "workflow-item.advanced.title": "Advanced workflow", "workflow-item.advanced.title": "प्रगत वर्कफ्लो", - // "workflow-item.selectrevieweraction.notification.success.title": "Selected reviewer", "workflow-item.selectrevieweraction.notification.success.title": "पुनरावलोकक निवडले", - // "workflow-item.selectrevieweraction.notification.success.content": "The reviewer for this workflow item has been successfully selected", "workflow-item.selectrevieweraction.notification.success.content": "या वर्कफ्लो आयटमसाठी पुनरावलोकक यशस्वीरित्या निवडले गेले", - // "workflow-item.selectrevieweraction.notification.error.title": "Something went wrong", "workflow-item.selectrevieweraction.notification.error.title": "काहीतरी चुकले", - // "workflow-item.selectrevieweraction.notification.error.content": "Couldn't select the reviewer for this workflow item", "workflow-item.selectrevieweraction.notification.error.content": "या वर्कफ्लो आयटमसाठी पुनरावलोकक निवडता आला नाही", - // "workflow-item.selectrevieweraction.title": "Select Reviewer", "workflow-item.selectrevieweraction.title": "पुनरावलोकक निवडा", - // "workflow-item.selectrevieweraction.header": "Select Reviewer", "workflow-item.selectrevieweraction.header": "पुनरावलोकक निवडा", - // "workflow-item.selectrevieweraction.button.cancel": "Cancel", "workflow-item.selectrevieweraction.button.cancel": "रद्द करा", - // "workflow-item.selectrevieweraction.button.confirm": "Confirm", "workflow-item.selectrevieweraction.button.confirm": "पुष्टी करा", - // "workflow-item.scorereviewaction.notification.success.title": "Rating review", "workflow-item.scorereviewaction.notification.success.title": "रेटिंग पुनरावलोकन", - // "workflow-item.scorereviewaction.notification.success.content": "The rating for this item workflow item has been successfully submitted", "workflow-item.scorereviewaction.notification.success.content": "या वर्कफ्लो आयटमसाठी रेटिंग यशस्वीरित्या सबमिट केले गेले", - // "workflow-item.scorereviewaction.notification.error.title": "Something went wrong", "workflow-item.scorereviewaction.notification.error.title": "काहीतरी चुकले", - // "workflow-item.scorereviewaction.notification.error.content": "Couldn't rate this item", "workflow-item.scorereviewaction.notification.error.content": "या आयटमला रेट करू शकलो नाही", - // "workflow-item.scorereviewaction.title": "Rate this item", "workflow-item.scorereviewaction.title": "या आयटमला रेट करा", - // "workflow-item.scorereviewaction.header": "Rate this item", "workflow-item.scorereviewaction.header": "या आयटमला रेट करा", - // "workflow-item.scorereviewaction.button.cancel": "Cancel", "workflow-item.scorereviewaction.button.cancel": "रद्द करा", - // "workflow-item.scorereviewaction.button.confirm": "Confirm", "workflow-item.scorereviewaction.button.confirm": "पुष्टी करा", - // "idle-modal.header": "Session will expire soon", "idle-modal.header": "सत्र लवकरच समाप्त होईल", - // "idle-modal.info": "For security reasons, user sessions expire after {{ timeToExpire }} minutes of inactivity. Your session will expire soon. Would you like to extend it or log out?", "idle-modal.info": "सुरक्षा कारणांमुळे, वापरकर्ता सत्रे {{ timeToExpire }} मिनिटांच्या निष्क्रियतेनंतर समाप्त होतात. तुमचे सत्र लवकरच समाप्त होईल. तुम्हाला ते वाढवायचे आहे का किंवा लॉग आउट करायचे आहे का?", - // "idle-modal.log-out": "Log out", "idle-modal.log-out": "लॉग आउट", - // "idle-modal.extend-session": "Extend session", "idle-modal.extend-session": "सत्र वाढवा", - // "researcher.profile.action.processing": "Processing...", "researcher.profile.action.processing": "प्रक्रिया...", - // "researcher.profile.associated": "Researcher profile associated", "researcher.profile.associated": "संशोधक प्रोफाइल संबंधित", - // "researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility", "researcher.profile.change-visibility.fail": "प्रोफाइल दृश्यमानता बदलताना अनपेक्षित त्रुटी आली", - // "researcher.profile.create.new": "Create new", "researcher.profile.create.new": "नवीन तयार करा", - // "researcher.profile.create.success": "Researcher profile created successfully", "researcher.profile.create.success": "संशोधक प्रोफाइल यशस्वीरित्या तयार केले", - // "researcher.profile.create.fail": "An error occurs during the researcher profile creation", "researcher.profile.create.fail": "संशोधक प्रोफाइल तयार करताना त्रुटी आली", - // "researcher.profile.delete": "Delete", "researcher.profile.delete": "हटवा", - // "researcher.profile.expose": "Expose", "researcher.profile.expose": "प्रकट करा", - // "researcher.profile.hide": "Hide", "researcher.profile.hide": "लपवा", - // "researcher.profile.not.associated": "Researcher profile not yet associated", "researcher.profile.not.associated": "संशोधक प्रोफाइल अद्याप संबंधित नाही", - // "researcher.profile.view": "View", "researcher.profile.view": "पहा", - // "researcher.profile.private.visibility": "PRIVATE", "researcher.profile.private.visibility": "खाजगी", - // "researcher.profile.public.visibility": "PUBLIC", "researcher.profile.public.visibility": "सार्वजनिक", - // "researcher.profile.status": "Status:", - // TODO New key - Add a translation - "researcher.profile.status": "Status:", + "researcher.profile.status": "स्थिती:", - // "researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).", "researcherprofile.claim.not-authorized": "तुम्हाला हा आयटम दावा करण्याची परवानगी नाही. अधिक तपशीलांसाठी प्रशासकांशी संपर्क साधा.", - // "researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later", "researcherprofile.error.claim.body": "प्रोफाइल दावा करताना त्रुटी आली, कृपया नंतर पुन्हा प्रयत्न करा", - // "researcherprofile.error.claim.title": "Error", "researcherprofile.error.claim.title": "त्रुटी", - // "researcherprofile.success.claim.body": "Profile claimed with success", "researcherprofile.success.claim.body": "प्रोफाइल यशस्वीरित्या दावा केले", - // "researcherprofile.success.claim.title": "Success", "researcherprofile.success.claim.title": "यश", - // "person.page.orcid.create": "Create an ORCID ID", "person.page.orcid.create": "ORCID आयडी तयार करा", - // "person.page.orcid.granted-authorizations": "Granted authorizations", "person.page.orcid.granted-authorizations": "मंजूर केलेल्या परवानग्या", - // "person.page.orcid.grant-authorizations": "Grant authorizations", "person.page.orcid.grant-authorizations": "परवानग्या मंजूर करा", - // "person.page.orcid.link": "Connect to ORCID ID", "person.page.orcid.link": "ORCID आयडीशी कनेक्ट करा", - // "person.page.orcid.link.processing": "Linking profile to ORCID...", "person.page.orcid.link.processing": "प्रोफाइल ORCID शी लिंक करत आहे...", - // "person.page.orcid.link.error.message": "Something went wrong while connecting the profile with ORCID. If the problem persists, contact the administrator.", "person.page.orcid.link.error.message": "प्रोफाइल ORCID शी कनेक्ट करताना काहीतरी चुकले. समस्या कायम राहिल्यास, प्रशासकाशी संपर्क साधा.", - // "person.page.orcid.orcid-not-linked-message": "The ORCID iD of this profile ({{ orcid }}) has not yet been connected to an account on the ORCID registry or the connection is expired.", "person.page.orcid.orcid-not-linked-message": "या प्रोफाइलचा ORCID आयडी ({{ orcid }}) अद्याप ORCID रजिस्ट्रीवरील खात्याशी कनेक्ट केलेला नाही किंवा कनेक्शन कालबाह्य झाले आहे.", - // "person.page.orcid.unlink": "Disconnect from ORCID", "person.page.orcid.unlink": "ORCID पासून डिस्कनेक्ट करा", - // "person.page.orcid.unlink.processing": "Processing...", "person.page.orcid.unlink.processing": "प्रक्रिया करत आहे...", - // "person.page.orcid.missing-authorizations": "Missing authorizations", "person.page.orcid.missing-authorizations": "परवानग्या गहाळ आहेत", - // "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", - // TODO New key - Add a translation - "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + "person.page.orcid.missing-authorizations-message": "खालील परवानग्या गहाळ आहेत:", - // "person.page.orcid.no-missing-authorizations-message": "Great! This box is empty, so you have granted all access rights to use all functions offers by your institution.", "person.page.orcid.no-missing-authorizations-message": "छान! हे बॉक्स रिकामे आहे, त्यामुळे तुम्ही तुमच्या संस्थेने ऑफर केलेल्या सर्व कार्ये वापरण्यासाठी सर्व प्रवेश अधिकार मंजूर केले आहेत.", - // "person.page.orcid.no-orcid-message": "No ORCID iD associated yet. By clicking on the button below it is possible to link this profile with an ORCID account.", "person.page.orcid.no-orcid-message": "अद्याप कोणताही ORCID आयडी संबंधित नाही. खालील बटणावर क्लिक करून हा प्रोफाइल ORCID खात्याशी लिंक करणे शक्य आहे.", - // "person.page.orcid.profile-preferences": "Profile preferences", "person.page.orcid.profile-preferences": "प्रोफाइल प्राधान्ये", - // "person.page.orcid.funding-preferences": "Funding preferences", "person.page.orcid.funding-preferences": "फंडिंग प्राधान्ये", - // "person.page.orcid.publications-preferences": "Publication preferences", "person.page.orcid.publications-preferences": "प्रकाशन प्राधान्ये", - // "person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator", "person.page.orcid.remove-orcid-message": "तुम्हाला तुमचा ORCID काढून टाकायचा असल्यास, कृपया रेपॉझिटरी प्रशासकाशी संपर्क साधा", - // "person.page.orcid.save.preference.changes": "Update settings", "person.page.orcid.save.preference.changes": "सेटिंग्ज अद्यतनित करा", - // "person.page.orcid.sync-profile.affiliation": "Affiliation", "person.page.orcid.sync-profile.affiliation": "संबद्धता", - // "person.page.orcid.sync-profile.biographical": "Biographical data", "person.page.orcid.sync-profile.biographical": "जीवनी माहिती", - // "person.page.orcid.sync-profile.education": "Education", "person.page.orcid.sync-profile.education": "शिक्षण", - // "person.page.orcid.sync-profile.identifiers": "Identifiers", "person.page.orcid.sync-profile.identifiers": "ओळखपत्रे", - // "person.page.orcid.sync-fundings.all": "All fundings", "person.page.orcid.sync-fundings.all": "सर्व निधी", - // "person.page.orcid.sync-fundings.mine": "My fundings", "person.page.orcid.sync-fundings.mine": "माझे निधी", - // "person.page.orcid.sync-fundings.my_selected": "Selected fundings", "person.page.orcid.sync-fundings.my_selected": "निवडलेले निधी", - // "person.page.orcid.sync-fundings.disabled": "Disabled", "person.page.orcid.sync-fundings.disabled": "अक्षम", - // "person.page.orcid.sync-publications.all": "All publications", "person.page.orcid.sync-publications.all": "सर्व प्रकाशने", - // "person.page.orcid.sync-publications.mine": "My publications", "person.page.orcid.sync-publications.mine": "माझी प्रकाशने", - // "person.page.orcid.sync-publications.my_selected": "Selected publications", "person.page.orcid.sync-publications.my_selected": "निवडलेली प्रकाशने", - // "person.page.orcid.sync-publications.disabled": "Disabled", "person.page.orcid.sync-publications.disabled": "अक्षम", - // "person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry", "person.page.orcid.sync-queue.discard": "बदल रद्द करा आणि ORCID रजिस्ट्रीसह समक्रमित करू नका", - // "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed", "person.page.orcid.sync-queue.discard.error": "ORCID क्यू रेकॉर्ड रद्द करण्यात अयशस्वी", - // "person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully", "person.page.orcid.sync-queue.discard.success": "ORCID क्यू रेकॉर्ड यशस्वीरित्या रद्द केले गेले", - // "person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty", "person.page.orcid.sync-queue.empty-message": "ORCID क्यू रजिस्ट्री रिकामी आहे", - // "person.page.orcid.sync-queue.table.header.type": "Type", "person.page.orcid.sync-queue.table.header.type": "प्रकार", - // "person.page.orcid.sync-queue.table.header.description": "Description", "person.page.orcid.sync-queue.table.header.description": "वर्णन", - // "person.page.orcid.sync-queue.table.header.action": "Action", "person.page.orcid.sync-queue.table.header.action": "क्रिया", - // "person.page.orcid.sync-queue.description.affiliation": "Affiliations", "person.page.orcid.sync-queue.description.affiliation": "संबद्धता", - // "person.page.orcid.sync-queue.description.country": "Country", "person.page.orcid.sync-queue.description.country": "देश", - // "person.page.orcid.sync-queue.description.education": "Educations", "person.page.orcid.sync-queue.description.education": "शिक्षण", - // "person.page.orcid.sync-queue.description.external_ids": "External ids", "person.page.orcid.sync-queue.description.external_ids": "बाह्य ओळखपत्रे", - // "person.page.orcid.sync-queue.description.other_names": "Other names", "person.page.orcid.sync-queue.description.other_names": "इतर नावे", - // "person.page.orcid.sync-queue.description.qualification": "Qualifications", "person.page.orcid.sync-queue.description.qualification": "पात्रता", - // "person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls", "person.page.orcid.sync-queue.description.researcher_urls": "संशोधक URLs", - // "person.page.orcid.sync-queue.description.keywords": "Keywords", "person.page.orcid.sync-queue.description.keywords": "कीवर्ड", - // "person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry", "person.page.orcid.sync-queue.tooltip.insert": "ORCID रजिस्ट्रीमध्ये नवीन नोंद जोडा", - // "person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry", "person.page.orcid.sync-queue.tooltip.update": "ORCID रजिस्ट्रीवर ही नोंद अद्यतनित करा", - // "person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry", "person.page.orcid.sync-queue.tooltip.delete": "ORCID रजिस्ट्रीमधून ही नोंद काढा", - // "person.page.orcid.sync-queue.tooltip.publication": "Publication", "person.page.orcid.sync-queue.tooltip.publication": "प्रकाशन", - // "person.page.orcid.sync-queue.tooltip.project": "Project", "person.page.orcid.sync-queue.tooltip.project": "प्रकल्प", - // "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", "person.page.orcid.sync-queue.tooltip.affiliation": "संबद्धता", - // "person.page.orcid.sync-queue.tooltip.education": "Education", "person.page.orcid.sync-queue.tooltip.education": "शिक्षण", - // "person.page.orcid.sync-queue.tooltip.qualification": "Qualification", "person.page.orcid.sync-queue.tooltip.qualification": "पात्रता", - // "person.page.orcid.sync-queue.tooltip.other_names": "Other name", "person.page.orcid.sync-queue.tooltip.other_names": "इतर नाव", - // "person.page.orcid.sync-queue.tooltip.country": "Country", "person.page.orcid.sync-queue.tooltip.country": "देश", - // "person.page.orcid.sync-queue.tooltip.keywords": "Keyword", "person.page.orcid.sync-queue.tooltip.keywords": "कीवर्ड", - // "person.page.orcid.sync-queue.tooltip.external_ids": "External identifier", "person.page.orcid.sync-queue.tooltip.external_ids": "बाह्य ओळखपत्र", - // "person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url", "person.page.orcid.sync-queue.tooltip.researcher_urls": "संशोधक URL", - // "person.page.orcid.sync-queue.send": "Synchronize with ORCID registry", "person.page.orcid.sync-queue.send": "ORCID रजिस्ट्रीसह समक्रमित करा", - // "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.", "person.page.orcid.sync-queue.send.unauthorized-error.title": "परवानग्या गहाळ असल्यामुळे ORCID ला सबमिशन अयशस्वी.", - // "person.page.orcid.sync-queue.send.unauthorized-error.content": "Click here to grant again the required permissions. If the problem persists, contact the administrator", "person.page.orcid.sync-queue.send.unauthorized-error.content": "आवश्यक परवानग्या पुन्हा मंजूर करण्यासाठी येथे क्लिक करा. समस्या कायम राहिल्यास, प्रशासकाशी संपर्क साधा", - // "person.page.orcid.sync-queue.send.bad-request-error": "The submission to ORCID failed because the resource sent to ORCID registry is not valid", "person.page.orcid.sync-queue.send.bad-request-error": "ORCID रजिस्ट्रीला पाठवलेला संसाधन वैध नसल्यामुळे ORCID ला सबमिशन अयशस्वी", - // "person.page.orcid.sync-queue.send.error": "The submission to ORCID failed", "person.page.orcid.sync-queue.send.error": "ORCID ला सबमिशन अयशस्वी", - // "person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry", "person.page.orcid.sync-queue.send.conflict-error": "संसाधन आधीच ORCID रजिस्ट्रीवर असल्यामुळे ORCID ला सबमिशन अयशस्वी", - // "person.page.orcid.sync-queue.send.not-found-warning": "The resource does not exists anymore on the ORCID registry.", "person.page.orcid.sync-queue.send.not-found-warning": "संसाधन ORCID रजिस्ट्रीवर आता अस्तित्वात नाही.", - // "person.page.orcid.sync-queue.send.success": "The submission to ORCID was completed successfully", "person.page.orcid.sync-queue.send.success": "ORCID ला सबमिशन यशस्वीरित्या पूर्ण झाले", - // "person.page.orcid.sync-queue.send.validation-error": "The data that you want to synchronize with ORCID is not valid", "person.page.orcid.sync-queue.send.validation-error": "तुम्ही ORCID सह समक्रमित करू इच्छित असलेली माहिती वैध नाही", - // "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "The amount's currency is required", "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "रकमेची चलन आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.external-id.required": "The resource to be sent requires at least one identifier", "person.page.orcid.sync-queue.send.validation-error.external-id.required": "पाठवण्यासाठी संसाधनासाठी किमान एक ओळखपत्र आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.title.required": "The title is required", "person.page.orcid.sync-queue.send.validation-error.title.required": "शीर्षक आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required", "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required", "person.page.orcid.sync-queue.send.validation-error.start-date.required": "प्रारंभ तारीख आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required", "person.page.orcid.sync-queue.send.validation-error.funder.required": "निधीदार आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.country.invalid": "अवैध 2 अंकी ISO 3166 देश", - // "person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required", "person.page.orcid.sync-queue.send.validation-error.organization.required": "संस्था आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required", "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "संस्थेचे नाव आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900", "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "प्रकाशन तारीख 1900 नंतर एक वर्ष असणे आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address", "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "पाठवण्यासाठी संस्थेला पत्ता आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "The address of the organization to be sent requires a city", "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "पाठवण्यासाठी संस्थेच्या पत्त्याला शहर आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "The address of the organization to be sent requires a valid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "पाठवण्यासाठी संस्थेच्या पत्त्याला वैध 2 अंकी ISO 3166 देश आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "An identifier to disambiguate organizations is required. Supported ids are GRID, Ringgold, Legal Entity identifiers (LEIs) and Crossref Funder Registry identifiers", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "संस्थांना स्पष्ट करण्यासाठी ओळखपत्र आवश्यक आहे. समर्थित आयडी आहेत GRID, Ringgold, Legal Entity identifiers (LEIs) आणि Crossref Funder Registry identifiers", - // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "The organization's identifiers requires a value", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "संस्थांच्या ओळखपत्रांना मूल्य आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "The organization's identifiers requires a source", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "संस्थांच्या ओळखपत्रांना स्रोत आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "The source of one of the organization identifiers is invalid. Supported sources are RINGGOLD, GRID, LEI and FUNDREF", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "संस्थांच्या ओळखपत्रांपैकी एकाचा स्रोत अवैध आहे. समर्थित स्रोत आहेत RINGGOLD, GRID, LEI आणि FUNDREF", - // "person.page.orcid.synchronization-mode": "Synchronization mode", "person.page.orcid.synchronization-mode": "समक्रमण मोड", - // "person.page.orcid.synchronization-mode.batch": "Batch", "person.page.orcid.synchronization-mode.batch": "बॅच", - // "person.page.orcid.synchronization-mode.label": "Synchronization mode", "person.page.orcid.synchronization-mode.label": "समक्रमण मोड", - // "person.page.orcid.synchronization-mode-message": "Please select how you would like synchronization to ORCID to occur. The options include \"Manual\" (you must send your data to ORCID manually), or \"Batch\" (the system will send your data to ORCID via a scheduled script).", "person.page.orcid.synchronization-mode-message": "कृपया ORCID सह समक्रमण कसे करायचे ते निवडा. पर्यायांमध्ये \"मॅन्युअल\" (तुम्हाला तुमची माहिती ORCID ला मॅन्युअली पाठवावी लागेल), किंवा \"बॅच\" (सिस्टम तुमची माहिती ORCID ला शेड्यूल केलेल्या स्क्रिप्टद्वारे पाठवेल) समाविष्ट आहे.", - // "person.page.orcid.synchronization-mode-funding-message": "Select whether to send your linked Project entities to your ORCID record's list of funding information.", "person.page.orcid.synchronization-mode-funding-message": "तुमच्या ORCID रेकॉर्डच्या निधी माहितीच्या यादीत तुमच्या लिंक केलेल्या प्रकल्प संस्थांना पाठवायचे आहे की नाही ते निवडा.", - // "person.page.orcid.synchronization-mode-publication-message": "Select whether to send your linked Publication entities to your ORCID record's list of works.", "person.page.orcid.synchronization-mode-publication-message": "तुमच्या ORCID रेकॉर्डच्या कामांच्या यादीत तुमच्या लिंक केलेल्या प्रकाशन संस्थांना पाठवायचे आहे की नाही ते निवडा.", - // "person.page.orcid.synchronization-mode-profile-message": "Select whether to send your biographical data or personal identifiers to your ORCID record.", "person.page.orcid.synchronization-mode-profile-message": "तुमची जीवनी माहिती किंवा वैयक्तिक ओळखपत्रे तुमच्या ORCID रेकॉर्डला पाठवायची आहे की नाही ते निवडा.", - // "person.page.orcid.synchronization-settings-update.success": "The synchronization settings have been updated successfully", "person.page.orcid.synchronization-settings-update.success": "समक्रमण सेटिंग्ज यशस्वीरित्या अद्यतनित केल्या गेल्या", - // "person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed", "person.page.orcid.synchronization-settings-update.error": "समक्रमण सेटिंग्ज अद्यतनित करण्यात अयशस्वी", - // "person.page.orcid.synchronization-mode.manual": "Manual", "person.page.orcid.synchronization-mode.manual": "मॅन्युअल", - // "person.page.orcid.scope.authenticate": "Get your ORCID iD", "person.page.orcid.scope.authenticate": "तुमचा ORCID आयडी मिळवा", - // "person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties", "person.page.orcid.scope.read-limited": "विश्वासार्ह पक्षांना दृश्यमानता सेटसह तुमची माहिती वाचा", - // "person.page.orcid.scope.activities-update": "Add/update your research activities", "person.page.orcid.scope.activities-update": "तुमच्या संशोधन क्रियाकलाप जोडा/अद्यतनित करा", - // "person.page.orcid.scope.person-update": "Add/update other information about you", "person.page.orcid.scope.person-update": "तुमच्याबद्दल इतर माहिती जोडा/अद्यतनित करा", - // "person.page.orcid.unlink.success": "The disconnection between the profile and the ORCID registry was successful", "person.page.orcid.unlink.success": "प्रोफाइल आणि ORCID रजिस्ट्रीमधील डिस्कनेक्शन यशस्वी झाले", - // "person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again", "person.page.orcid.unlink.error": "प्रोफाइल आणि ORCID रजिस्ट्रीमधील डिस्कनेक्ट करताना त्रुटी आली. पुन्हा प्रयत्न करा", - // "person.orcid.sync.setting": "ORCID Synchronization settings", "person.orcid.sync.setting": "ORCID समक्रमण सेटिंग्ज", - // "person.orcid.registry.queue": "ORCID Registry Queue", "person.orcid.registry.queue": "ORCID रजिस्ट्री क्यू", - // "person.orcid.registry.auth": "ORCID Authorizations", "person.orcid.registry.auth": "ORCID परवानग्या", - // "person.orcid-tooltip.authenticated": "{{orcid}}", "person.orcid-tooltip.authenticated": "{{orcid}}", - // "person.orcid-tooltip.not-authenticated": "{{orcid}} (unconfirmed)", "person.orcid-tooltip.not-authenticated": "{{orcid}} (अप्रमाणित)", - // "home.recent-submissions.head": "Recent Submissions", "home.recent-submissions.head": "अलीकडील सबमिशन", - // "listable-notification-object.default-message": "This object couldn't be retrieved", "listable-notification-object.default-message": "हा ऑब्जेक्ट पुनर्प्राप्त केला जाऊ शकला नाही", - // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", "system-wide-alert-banner.retrieval.error": "सिस्टम-वाइड अलर्ट बॅनर पुनर्प्राप्त करताना काहीतरी चुकले", - // "system-wide-alert-banner.countdown.prefix": "In", "system-wide-alert-banner.countdown.prefix": "मध्ये", - // "system-wide-alert-banner.countdown.days": "{{days}} day(s),", "system-wide-alert-banner.countdown.days": "{{days}} दिवस(े),", - // "system-wide-alert-banner.countdown.hours": "{{hours}} hour(s) and", "system-wide-alert-banner.countdown.hours": "{{hours}} तास(े) आणि", - // "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", - // TODO New key - Add a translation - "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + "system-wide-alert-banner.countdown.minutes": "{{minutes}} मिनिट(े):", - // "menu.section.system-wide-alert": "System-wide Alert", "menu.section.system-wide-alert": "सिस्टम-वाइड अलर्ट", - // "system-wide-alert.form.header": "System-wide Alert", "system-wide-alert.form.header": "सिस्टम-वाइड अलर्ट", - // "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert", "system-wide-alert-form.retrieval.error": "सिस्टम-वाइड अलर्ट पुनर्प्राप्त करताना काहीतरी चुकले", - // "system-wide-alert.form.cancel": "Cancel", "system-wide-alert.form.cancel": "रद्द करा", - // "system-wide-alert.form.save": "Save", "system-wide-alert.form.save": "जतन करा", - // "system-wide-alert.form.label.active": "ACTIVE", "system-wide-alert.form.label.active": "सक्रिय", - // "system-wide-alert.form.label.inactive": "INACTIVE", "system-wide-alert.form.label.inactive": "निष्क्रिय", - // "system-wide-alert.form.error.message": "The system wide alert must have a message", "system-wide-alert.form.error.message": "सिस्टम-वाइड अलर्टमध्ये संदेश असणे आवश्यक आहे", - // "system-wide-alert.form.label.message": "Alert message", "system-wide-alert.form.label.message": "अलर्ट संदेश", - // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer", "system-wide-alert.form.label.countdownTo.enable": "काउंटडाउन टाइमर सक्षम करा", - // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", - // TODO New key - Add a translation - "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + "system-wide-alert.form.label.countdownTo.hint": "सूचना: काउंटडाउन टाइमर सेट करा. सक्षम केल्यावर, भविष्यातील तारीख सेट केली जाऊ शकते आणि सिस्टम-वाइड अलर्ट बॅनर सेट केलेल्या तारखेपर्यंत काउंटडाउन करेल. जेव्हा हा टाइमर संपेल, तेव्हा अलर्टमधून तो अदृश्य होईल. सर्व्हर आपोआप थांबवला जाणार नाही.", - // "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", "system-wide-alert-form.select-date-by-calendar": "कॅलेंडर वापरून तारीख निवडा", - // "system-wide-alert.form.label.preview": "System-wide alert preview", "system-wide-alert.form.label.preview": "सिस्टम-वाइड अलर्ट पूर्वावलोकन", - // "system-wide-alert.form.update.success": "The system-wide alert was successfully updated", "system-wide-alert.form.update.success": "सिस्टम-वाइड अलर्ट यशस्वीरित्या अद्यतनित केले गेले", - // "system-wide-alert.form.update.error": "Something went wrong when updating the system-wide alert", "system-wide-alert.form.update.error": "सिस्टम-वाइड अलर्ट अद्यतनित करताना काहीतरी चुकले", - // "system-wide-alert.form.create.success": "The system-wide alert was successfully created", "system-wide-alert.form.create.success": "सिस्टम-वाइड अलर्ट यशस्वीरित्या तयार केले गेले", - // "system-wide-alert.form.create.error": "Something went wrong when creating the system-wide alert", "system-wide-alert.form.create.error": "सिस्टम-वाइड अलर्ट तयार करताना काहीतरी चुकले", - // "admin.system-wide-alert.breadcrumbs": "System-wide Alerts", "admin.system-wide-alert.breadcrumbs": "सिस्टम-वाइड अलर्ट", - // "admin.system-wide-alert.title": "System-wide Alerts", "admin.system-wide-alert.title": "सिस्टम-वाइड अलर्ट", - // "discover.filters.head": "Discover", "discover.filters.head": "शोधा", - // "item-access-control-title": "This form allows you to perform changes to the access conditions of the item's metadata or its bitstreams.", "item-access-control-title": "हे फॉर्म तुम्हाला आयटमच्या मेटाडेटा किंवा त्याच्या बिटस्ट्रीम्सच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते.", - // "collection-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by this collection. Changes may be performed to either all Item metadata or all content (bitstreams).", "collection-access-control-title": "हे फॉर्म तुम्हाला या संग्रहाच्या मालकीच्या सर्व आयटमच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते. सर्व आयटम मेटाडेटा किंवा सर्व सामग्री (बिटस्ट्रीम्स) मध्ये बदल केले जाऊ शकतात.", - // "community-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by any collection under this community. Changes may be performed to either all Item metadata or all content (bitstreams).", "community-access-control-title": "हे फॉर्म तुम्हाला या समुदायाखालील कोणत्याही संग्रहाच्या मालकीच्या सर्व आयटमच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते. सर्व आयटम मेटाडेटा किंवा सर्व सामग्री (बिटस्ट्रीम्स) मध्ये बदल केले जाऊ शकतात.", - // "access-control-item-header-toggle": "Item's Metadata", "access-control-item-header-toggle": "आयटमचे मेटाडेटा", - // "access-control-item-toggle.enable": "Enable option to perform changes on the item's metadata", "access-control-item-toggle.enable": "आयटमच्या मेटाडेटावर बदल करण्याचा पर्याय सक्षम करा", - // "access-control-item-toggle.disable": "Disable option to perform changes on the item's metadata", "access-control-item-toggle.disable": "आयटमच्या मेटाडेटावर बदल करण्याचा पर्याय अक्षम करा", - // "access-control-bitstream-header-toggle": "Bitstreams", "access-control-bitstream-header-toggle": "बिटस्ट्रीम्स", - // "access-control-bitstream-toggle.enable": "Enable option to perform changes on the bitstreams", "access-control-bitstream-toggle.enable": "बिटस्ट्रीम्सवर बदल करण्याचा पर्याय सक्षम करा", - // "access-control-bitstream-toggle.disable": "Disable option to perform changes on the bitstreams", "access-control-bitstream-toggle.disable": "बिटस्ट्रीम्सवर बदल करण्याचा पर्याय अक्षम करा", - // "access-control-mode": "Mode", "access-control-mode": "मोड", - // "access-control-access-conditions": "Access conditions", "access-control-access-conditions": "प्रवेश अटी", - // "access-control-no-access-conditions-warning-message": "Currently, no access conditions are specified below. If executed, this will replace the current access conditions with the default access conditions inherited from the owning collection.", "access-control-no-access-conditions-warning-message": "सध्या, खाली कोणत्याही प्रवेश अटी निर्दिष्ट केलेल्या नाहीत. जर अंमलात आणले, तर हे वर्तमान प्रवेश अटींना मालकीच्या संग्रहाकडून वारसाहक्काने मिळालेल्या डीफॉल्ट प्रवेश अटींनी बदलले जाईल.", - // "access-control-replace-all": "Replace access conditions", "access-control-replace-all": "प्रवेश अटी बदला", - // "access-control-add-to-existing": "Add to existing ones", "access-control-add-to-existing": "अस्तित्वात असलेल्या अटींमध्ये जोडा", - // "access-control-limit-to-specific": "Limit the changes to specific bitstreams", "access-control-limit-to-specific": "विशिष्ट बिटस्ट्रीम्सपर्यंत बदल मर्यादित करा", - // "access-control-process-all-bitstreams": "Update all the bitstreams in the item", "access-control-process-all-bitstreams": "आयटममधील सर्व बिटस्ट्रीम्स अद्यतनित करा", - // "access-control-bitstreams-selected": "bitstreams selected", "access-control-bitstreams-selected": "बिटस्ट्रीम्स निवडले", - // "access-control-bitstreams-select": "Select bitstreams", "access-control-bitstreams-select": "बिटस्ट्रीम्स निवडा", - // "access-control-cancel": "Cancel", "access-control-cancel": "रद्द करा", - // "access-control-execute": "Execute", "access-control-execute": "अंमलात आणा", - // "access-control-add-more": "Add more", "access-control-add-more": "अधिक जोडा", - // "access-control-remove": "Remove access condition", "access-control-remove": "प्रवेश अट काढा", - // "access-control-select-bitstreams-modal.title": "Select bitstreams", "access-control-select-bitstreams-modal.title": "बिटस्ट्रीम्स निवडा", - // "access-control-select-bitstreams-modal.no-items": "No items to show.", "access-control-select-bitstreams-modal.no-items": "दाखवण्यासाठी कोणतेही आयटम नाहीत.", - // "access-control-select-bitstreams-modal.close": "Close", "access-control-select-bitstreams-modal.close": "बंद करा", - // "access-control-option-label": "Access condition type", "access-control-option-label": "प्रवेश अट प्रकार", - // "access-control-option-note": "Choose an access condition to apply to selected objects.", "access-control-option-note": "निवडलेल्या ऑब्जेक्ट्सवर लागू करण्यासाठी प्रवेश अट निवडा.", - // "access-control-option-start-date": "Grant access from", "access-control-option-start-date": "या तारखेपासून प्रवेश मंजूर करा", - // "access-control-option-start-date-note": "Select the date from which the related access condition is applied", "access-control-option-start-date-note": "संबंधित प्रवेश अट लागू होण्याची तारीख निवडा", - // "access-control-option-end-date": "Grant access until", "access-control-option-end-date": "या तारखेपर्यंत प्रवेश मंजूर करा", - // "access-control-option-end-date-note": "Select the date until which the related access condition is applied", "access-control-option-end-date-note": "संबंधित प्रवेश अट लागू होण्याची तारीख निवडा", - // "vocabulary-treeview.search.form.add": "Add", "vocabulary-treeview.search.form.add": "जोडा", - // "admin.notifications.publicationclaim.breadcrumbs": "Publication Claim", "admin.notifications.publicationclaim.breadcrumbs": "प्रकाशन दावा", - // "admin.notifications.publicationclaim.page.title": "Publication Claim", "admin.notifications.publicationclaim.page.title": "प्रकाशन दावा", - // "coar-notify-support.title": "COAR Notify Protocol", "coar-notify-support.title": "COAR सूचित प्रोटोकॉल", - // "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", - // TODO New key - Add a translation - "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + "coar-notify-support-title.content": "येथे, आम्ही COAR सूचित प्रोटोकॉलला पूर्णपणे समर्थन देतो, जो रेपॉझिटरीजमधील संवाद वाढवण्यासाठी डिझाइन केलेला आहे. COAR सूचित प्रोटोकॉलबद्दल अधिक जाणून घेण्यासाठी, COAR सूचित वेबसाइट ला भेट द्या.", - // "coar-notify-support.ldn-inbox.title": "LDN InBox", "coar-notify-support.ldn-inbox.title": "LDN इनबॉक्स", - // "coar-notify-support.ldn-inbox.content": "For your convenience, our LDN (Linked Data Notifications) InBox is easily accessible at {{ ldnInboxUrl }}. The LDN InBox enables seamless communication and data exchange, ensuring efficient and effective collaboration.", "coar-notify-support.ldn-inbox.content": "तुमच्या सोयीसाठी, आमचा LDN (लिंक्ड डेटा नोटिफिकेशन्स) इनबॉक्स {{ ldnInboxUrl }} येथे सहजपणे प्रवेशयोग्य आहे. LDN इनबॉक्स सहज संवाद आणि डेटा एक्सचेंज सक्षम करते, कार्यक्षम आणि प्रभावी सहयोग सुनिश्चित करते.", - // "coar-notify-support.message-moderation.title": "Message Moderation", "coar-notify-support.message-moderation.title": "संदेश संयम", - // "coar-notify-support.message-moderation.content": "To ensure a secure and productive environment, all incoming LDN messages are moderated. If you are planning to exchange information with us, kindly reach out via our dedicated", "coar-notify-support.message-moderation.content": "सुरक्षित आणि उत्पादक वातावरण सुनिश्चित करण्यासाठी, सर्व येणारे LDN संदेश नियंत्रित केले जातात. जर तुम्ही आमच्याशी माहितीची देवाणघेवाण करण्याचा विचार करत असाल, तर कृपया आमच्या समर्पित", - // "coar-notify-support.message-moderation.feedback-form": " Feedback form.", "coar-notify-support.message-moderation.feedback-form": " अभिप्राय फॉर्मद्वारे संपर्क साधा.", - // "service.overview.delete.header": "Delete Service", "service.overview.delete.header": "सेवा हटवा", - // "ldn-registered-services.title": "Registered Services", "ldn-registered-services.title": "नोंदणीकृत सेवा", - // "ldn-registered-services.table.name": "Name", + "ldn-registered-services.table.name": "नाव", - // "ldn-registered-services.table.description": "Description", + "ldn-registered-services.table.description": "वर्णन", - // "ldn-registered-services.table.status": "Status", + "ldn-registered-services.table.status": "स्थिती", - // "ldn-registered-services.table.action": "Action", + "ldn-registered-services.table.action": "क्रिया", - // "ldn-registered-services.new": "NEW", + "ldn-registered-services.new": "नवीन", - // "ldn-registered-services.new.breadcrumbs": "Registered Services", + "ldn-registered-services.new.breadcrumbs": "नोंदणीकृत सेवा", - // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "सक्षम", - // "ldn-service.overview.table.disabled": "Disabled", + "ldn-service.overview.table.disabled": "अक्षम", - // "ldn-service.overview.table.clickToEnable": "Click to enable", + "ldn-service.overview.table.clickToEnable": "सक्षम करण्यासाठी क्लिक करा", - // "ldn-service.overview.table.clickToDisable": "Click to disable", + "ldn-service.overview.table.clickToDisable": "अक्षम करण्यासाठी क्लिक करा", - // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "सेवा संपादित करा", - // "ldn-create-service.title": "Create service", + "ldn-create-service.title": "सेवा तयार करा", - // "service.overview.create.modal": "Create Service", + "service.overview.create.modal": "सेवा तयार करा", - // "service.overview.create.body": "Please confirm the creation of this service.", + "service.overview.create.body": "कृपया या सेवेची निर्मितीची पुष्टी करा.", - // "ldn-service-status": "Status", + "ldn-service-status": "स्थिती", - // "service.confirm.create": "Create", + "service.confirm.create": "तयार करा", - // "service.refuse.create": "Cancel", + "service.refuse.create": "रद्द करा", - // "ldn-register-new-service.title": "Register a new service", + "ldn-register-new-service.title": "नवीन सेवा नोंदणी करा", - // "ldn-new-service.form.label.submit": "Save", + "ldn-new-service.form.label.submit": "जतन करा", - // "ldn-new-service.form.label.name": "Name", + "ldn-new-service.form.label.name": "नाव", - // "ldn-new-service.form.label.description": "Description", + "ldn-new-service.form.label.description": "वर्णन", - // "ldn-new-service.form.label.url": "Service URL", + "ldn-new-service.form.label.url": "सेवा URL", - // "ldn-new-service.form.label.ip-range": "Service IP range", + "ldn-new-service.form.label.ip-range": "सेवा IP श्रेणी", - // "ldn-new-service.form.label.score": "Level of trust", + "ldn-new-service.form.label.score": "विश्वास पातळी", - // "ldn-new-service.form.label.ldnUrl": "LDN Inbox URL", + "ldn-new-service.form.label.ldnUrl": "LDN इनबॉक्स URL", - // "ldn-new-service.form.placeholder.name": "Please provide service name", + "ldn-new-service.form.placeholder.name": "कृपया सेवा नाव द्या", - // "ldn-new-service.form.placeholder.description": "Please provide a description regarding your service", + "ldn-new-service.form.placeholder.description": "कृपया तुमच्या सेवेसंबंधी वर्णन द्या", - // "ldn-new-service.form.placeholder.url": "Please input the URL for users to check out more information about the service", + "ldn-new-service.form.placeholder.url": "कृपया सेवा विषयी अधिक माहिती तपासण्यासाठी URL प्रविष्ट करा", - // "ldn-new-service.form.placeholder.lowerIp": "IPv4 range lower bound", + "ldn-new-service.form.placeholder.lowerIp": "IPv4 श्रेणी खालचा मर्यादा", - // "ldn-new-service.form.placeholder.upperIp": "IPv4 range upper bound", + "ldn-new-service.form.placeholder.upperIp": "IPv4 श्रेणी वरचा मर्यादा", - // "ldn-new-service.form.placeholder.ldnUrl": "Please specify the URL of the LDN Inbox", + "ldn-new-service.form.placeholder.ldnUrl": "कृपया LDN इनबॉक्सचा URL निर्दिष्ट करा", - // "ldn-new-service.form.placeholder.score": "Please enter a value between 0 and 1. Use the “.” as decimal separator", + "ldn-new-service.form.placeholder.score": "कृपया 0 आणि 1 दरम्यान मूल्य प्रविष्ट करा. दशांश विभाजक म्हणून “.” वापरा", - // "ldn-service.form.label.placeholder.default-select": "Select a pattern", + "ldn-service.form.label.placeholder.default-select": "एक नमुना निवडा", - // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "मान्य करा आणि स्वीकारा", - // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", + "ldn-service.form.pattern.ack-accept.description": "हा नमुना विनंती (ऑफर) मान्य करण्यासाठी वापरला जातो. याचा अर्थ विनंतीवर कृती करण्याचा हेतू आहे.", - // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", + "ldn-service.form.pattern.ack-accept.category": "मान्यतापत्रे", - // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "मान्य करा आणि नाकार", - // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", + "ldn-service.form.pattern.ack-reject.description": "हा नमुना विनंती (ऑफर) नाकारण्यासाठी वापरला जातो. याचा अर्थ विनंतीसंबंधी पुढील कृती नाही.", - // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", + "ldn-service.form.pattern.ack-reject.category": "मान्यतापत्रे", - // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "मान्य करा आणि तात्पुरते स्वीकारा", - // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", + "ldn-service.form.pattern.ack-tentative-accept.description": "हा नमुना विनंती (ऑफर) तात्पुरते स्वीकारण्यासाठी वापरला जातो. याचा अर्थ कृती करण्याचा हेतू आहे, जो बदलू शकतो.", - // "ldn-service.form.pattern.ack-tentative-accept.category": "Acknowledgements", + "ldn-service.form.pattern.ack-tentative-accept.category": "मान्यतापत्रे", - // "ldn-service.form.pattern.ack-tentative-reject.label": "Acknowledge and Tentatively Reject", "ldn-service.form.pattern.ack-tentative-reject.label": "मान्य करा आणि तात्पुरते नाकार", - // "ldn-service.form.pattern.ack-tentative-reject.description": "This pattern is used to acknowledge and tentatively reject a request (offer). It signifies no further action, subject to change.", + "ldn-service.form.pattern.ack-tentative-reject.description": "हा नमुना विनंती (ऑफर) तात्पुरते नाकारण्यासाठी वापरला जातो. याचा अर्थ पुढील कृती नाही, जो बदलू शकतो.", - // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", + "ldn-service.form.pattern.ack-tentative-reject.category": "मान्यतापत्रे", - // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "मान्यता जाहीर करा", - // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", + "ldn-service.form.pattern.announce-endorsement.description": "हा नमुना मान्यतेचे अस्तित्व जाहीर करण्यासाठी वापरला जातो, संदर्भित संसाधनाचा उल्लेख करतो.", - // "ldn-service.form.pattern.announce-endorsement.category": "Announcements", + "ldn-service.form.pattern.announce-endorsement.category": "जाहिराती", - // "ldn-service.form.pattern.announce-ingest.label": "Announce Ingest", "ldn-service.form.pattern.announce-ingest.label": "ग्रहण जाहीर करा", - // "ldn-service.form.pattern.announce-ingest.description": "This pattern is used to announce that a resource has been ingested.", + "ldn-service.form.pattern.announce-ingest.description": "हा नमुना संसाधन ग्रहण केले असल्याचे जाहीर करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.announce-ingest.category": "Announcements", + "ldn-service.form.pattern.announce-ingest.category": "जाहिराती", - // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "संबंध जाहीर करा", - // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", + "ldn-service.form.pattern.announce-relationship.description": "हा नमुना दोन संसाधनांमधील संबंध जाहीर करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.announce-relationship.category": "Announcements", + "ldn-service.form.pattern.announce-relationship.category": "जाहिराती", - // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "पुनरावलोकन जाहीर करा", - // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", + "ldn-service.form.pattern.announce-review.description": "हा नमुना पुनरावलोकनाचे अस्तित्व जाहीर करण्यासाठी वापरला जातो, पुनरावलोकित संसाधनाचा संदर्भ देतो.", - // "ldn-service.form.pattern.announce-review.category": "Announcements", + "ldn-service.form.pattern.announce-review.category": "जाहिराती", - // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "सेवा परिणाम जाहीर करा", - // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", + "ldn-service.form.pattern.announce-service-result.description": "हा नमुना 'सेवा परिणाम' अस्तित्व जाहीर करण्यासाठी वापरला जातो, संबंधित संसाधनाचा संदर्भ देतो.", - // "ldn-service.form.pattern.announce-service-result.category": "Announcements", + "ldn-service.form.pattern.announce-service-result.category": "जाहिराती", - // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "मान्यता विनंती", - // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", + "ldn-service.form.pattern.request-endorsement.description": "हा नमुना मूळ प्रणालीद्वारे मालकी असलेल्या संसाधनाची मान्यता विनंती करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.request-endorsement.category": "Requests", + "ldn-service.form.pattern.request-endorsement.category": "विनंत्या", - // "ldn-service.form.pattern.request-ingest.label": "Request Ingest", "ldn-service.form.pattern.request-ingest.label": "ग्रहण विनंती", - // "ldn-service.form.pattern.request-ingest.description": "This pattern is used to request that the target system ingest a resource.", + "ldn-service.form.pattern.request-ingest.description": "हा नमुना लक्ष्य प्रणालीला संसाधन ग्रहण करण्याची विनंती करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.request-ingest.category": "Requests", + "ldn-service.form.pattern.request-ingest.category": "विनंत्या", - // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "पुनरावलोकन विनंती", - // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", + "ldn-service.form.pattern.request-review.description": "हा नमुना मूळ प्रणालीद्वारे मालकी असलेल्या संसाधनाचे पुनरावलोकन करण्याची विनंती करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.request-review.category": "Requests", + "ldn-service.form.pattern.request-review.category": "विनंत्या", - // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "ऑफर रद्द करा", - // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", + "ldn-service.form.pattern.undo-offer.description": "हा नमुना पूर्वी केलेली ऑफर रद्द (मागे घेणे) करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.undo-offer.category": "Undo", + "ldn-service.form.pattern.undo-offer.category": "रद्द करा", - // "ldn-new-service.form.label.placeholder.selectedItemFilter": "No Item Filter Selected", "ldn-new-service.form.label.placeholder.selectedItemFilter": "कोणताही आयटम फिल्टर निवडलेला नाही", - // "ldn-new-service.form.label.ItemFilter": "Item Filter", + "ldn-new-service.form.label.ItemFilter": "आयटम फिल्टर", - // "ldn-new-service.form.label.automatic": "Automatic", + "ldn-new-service.form.label.automatic": "स्वयंचलित", - // "ldn-new-service.form.error.name": "Name is required", + "ldn-new-service.form.error.name": "नाव आवश्यक आहे", - // "ldn-new-service.form.error.url": "URL is required", + "ldn-new-service.form.error.url": "URL आवश्यक आहे", - // "ldn-new-service.form.error.ipRange": "Please enter a valid IP range", + "ldn-new-service.form.error.ipRange": "कृपया वैध IP श्रेणी प्रविष्ट करा", - // "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", - // TODO New key - Add a translation - "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", - // "ldn-new-service.form.error.ldnurl": "LDN URL is required", + + "ldn-new-service.form.hint.ipRange": "कृपया दोन्ही श्रेणी मर्यादांमध्ये वैध IpV4 प्रविष्ट करा (टीप: एकल IP साठी, कृपया दोन्ही फील्डमध्ये समान मूल्य प्रविष्ट करा)", + "ldn-new-service.form.error.ldnurl": "LDN URL आवश्यक आहे", - // "ldn-new-service.form.error.patterns": "At least a pattern is required", + "ldn-new-service.form.error.patterns": "किमान एक नमुना आवश्यक आहे", - // "ldn-new-service.form.error.score": "Please enter a valid score (between 0 and 1). Use the “.” as decimal separator", + "ldn-new-service.form.error.score": "कृपया वैध स्कोर प्रविष्ट करा (0 आणि 1 दरम्यान). दशांश विभाजक म्हणून “.” वापरा", - // "ldn-new-service.form.label.inboundPattern": "Supported Pattern", "ldn-new-service.form.label.inboundPattern": "समर्थित नमुना", - // "ldn-new-service.form.label.addPattern": "+ Add more", + "ldn-new-service.form.label.addPattern": "+ अधिक जोडा", - // "ldn-new-service.form.label.removeItemFilter": "Remove", + "ldn-new-service.form.label.removeItemFilter": "काढा", - // "ldn-register-new-service.breadcrumbs": "New Service", + "ldn-register-new-service.breadcrumbs": "नवीन सेवा", - // "service.overview.delete.body": "Are you sure you want to delete this service?", + "service.overview.delete.body": "तुम्हाला ही सेवा हटवायची आहे का?", - // "service.overview.edit.body": "Do you confirm the changes?", + "service.overview.edit.body": "तुम्ही बदलांची पुष्टी करता का?", - // "service.overview.edit.modal": "Edit Service", + "service.overview.edit.modal": "सेवा संपादित करा", - // "service.detail.update": "Confirm", + "service.detail.update": "पुष्टी करा", - // "service.detail.return": "Cancel", + "service.detail.return": "रद्द करा", - // "service.overview.reset-form.body": "Are you sure you want to discard the changes and leave?", + "service.overview.reset-form.body": "तुम्हाला बदल रद्द करून सोडायचे आहे का?", - // "service.overview.reset-form.modal": "Discard Changes", + "service.overview.reset-form.modal": "बदल रद्द करा", - // "service.overview.reset-form.reset-confirm": "Discard", + "service.overview.reset-form.reset-confirm": "रद्द करा", - // "admin.registries.services-formats.modify.success.head": "Successful Edit", + "admin.registries.services-formats.modify.success.head": "यशस्वी संपादन", - // "admin.registries.services-formats.modify.success.content": "The service has been edited", + "admin.registries.services-formats.modify.success.content": "सेवा संपादित केली गेली आहे", - // "admin.registries.services-formats.modify.failure.head": "Failed Edit", + "admin.registries.services-formats.modify.failure.head": "अयशस्वी संपादन", - // "admin.registries.services-formats.modify.failure.content": "The service has not been edited", + "admin.registries.services-formats.modify.failure.content": "सेवा संपादित केली गेली नाही", - // "ldn-service-notification.created.success.title": "Successful Create", + "ldn-service-notification.created.success.title": "यशस्वी निर्मिती", - // "ldn-service-notification.created.success.body": "The service has been created", + "ldn-service-notification.created.success.body": "सेवा तयार केली गेली आहे", - // "ldn-service-notification.created.failure.title": "Failed Create", + "ldn-service-notification.created.failure.title": "अयशस्वी निर्मिती", - // "ldn-service-notification.created.failure.body": "The service has not been created", + "ldn-service-notification.created.failure.body": "सेवा तयार केली गेली नाही", - // "ldn-service-notification.created.warning.title": "Please select at least one Inbound Pattern", + "ldn-service-notification.created.warning.title": "कृपया किमान एक इनबाउंड नमुना निवडा", - // "ldn-enable-service.notification.success.title": "Successful status updated", + "ldn-enable-service.notification.success.title": "यशस्वी स्थिती अद्यतनित", - // "ldn-enable-service.notification.success.content": "The service status has been updated", + "ldn-enable-service.notification.success.content": "सेवा स्थिती अद्यतनित केली गेली आहे", - // "ldn-service-delete.notification.success.title": "Successful Deletion", + "ldn-service-delete.notification.success.title": "यशस्वी हटवणे", - // "ldn-service-delete.notification.success.content": "The service has been deleted", + "ldn-service-delete.notification.success.content": "सेवा हटवली गेली आहे", - // "ldn-service-delete.notification.error.title": "Failed Deletion", + "ldn-service-delete.notification.error.title": "अयशस्वी हटवणे", - // "ldn-service-delete.notification.error.content": "The service has not been deleted", + "ldn-service-delete.notification.error.content": "सेवा हटवली गेली नाही", - // "service.overview.reset-form.reset-return": "Cancel", + "service.overview.reset-form.reset-return": "रद्द करा", - // "service.overview.delete": "Delete service", + "service.overview.delete": "सेवा हटवा", - // "ldn-edit-service.title": "Edit service", + "ldn-edit-service.title": "सेवा संपादित करा", - // "ldn-edit-service.form.label.name": "Name", + "ldn-edit-service.form.label.name": "नाव", - // "ldn-edit-service.form.label.description": "Description", + "ldn-edit-service.form.label.description": "वर्णन", - // "ldn-edit-service.form.label.url": "Service URL", + "ldn-edit-service.form.label.url": "सेवा URL", - // "ldn-edit-service.form.label.ldnUrl": "LDN Inbox URL", + "ldn-edit-service.form.label.ldnUrl": "LDN इनबॉक्स URL", - // "ldn-edit-service.form.label.inboundPattern": "Inbound Pattern", + "ldn-edit-service.form.label.inboundPattern": "इनबाउंड नमुना", - // "ldn-edit-service.form.label.noInboundPatternSelected": "No Inbound Pattern", + "ldn-edit-service.form.label.noInboundPatternSelected": "कोणताही इनबाउंड नमुना निवडलेला नाही", - // "ldn-edit-service.form.label.selectedItemFilter": "Selected Item Filter", + "ldn-edit-service.form.label.selectedItemFilter": "निवडलेला आयटम फिल्टर", - // "ldn-edit-service.form.label.selectItemFilter": "No Item Filter", + "ldn-edit-service.form.label.selectItemFilter": "कोणताही आयटम फिल्टर नाही", - // "ldn-edit-service.form.label.automatic": "Automatic", + "ldn-edit-service.form.label.automatic": "स्वयंचलित", - // "ldn-edit-service.form.label.addInboundPattern": "+ Add more", + "ldn-edit-service.form.label.addInboundPattern": "+ अधिक जोडा", - // "ldn-edit-service.form.label.submit": "Save", + "ldn-edit-service.form.label.submit": "जतन करा", - // "ldn-edit-service.breadcrumbs": "Edit Service", + "ldn-edit-service.breadcrumbs": "सेवा संपादित करा", - // "ldn-service.control-constaint-select-none": "Select none", + "ldn-service.control-constaint-select-none": "कोणताही निवडा", - // "ldn-register-new-service.notification.error.title": "Error", "ldn-register-new-service.notification.error.title": "त्रुटी", - // "ldn-register-new-service.notification.error.content": "An error occurred while creating this process", + "ldn-register-new-service.notification.error.content": "हा प्रक्रिया तयार करताना त्रुटी आली", - // "ldn-register-new-service.notification.success.title": "Success", + "ldn-register-new-service.notification.success.title": "यश", - // "ldn-register-new-service.notification.success.content": "The process was successfully created", + "ldn-register-new-service.notification.success.content": "प्रक्रिया यशस्वीरित्या तयार केली गेली", - // "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", - // TODO New key - Add a translation - "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + "submission.sections.notify.info": "निवडलेली सेवा त्याच्या वर्तमान स्थितीनुसार आयटमशी सुसंगत आहे. {{ service.name }}: {{ service.description }}", - // "item.page.endorsement": "Endorsement", "item.page.endorsement": "मान्यता", - // "item.page.places": "Related places", "item.page.places": "संबंधित ठिकाणे", - // "item.page.review": "Review", "item.page.review": "पुनरावलोकन", - // "item.page.referenced": "Referenced By", "item.page.referenced": "संदर्भित", - // "item.page.supplemented": "Supplemented By", "item.page.supplemented": "पूरक", - // "menu.section.icon.ldn_services": "LDN Services overview", "menu.section.icon.ldn_services": "LDN सेवा विहंगावलोकन", - // "menu.section.services": "LDN Services", "menu.section.services": "LDN सेवा", - // "menu.section.services_new": "LDN Service", "menu.section.services_new": "LDN सेवा", - // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "खाली तुम्ही {{source}} च्या सदस्यत्वांमधून प्राप्त सर्व विषय पाहू शकता", - // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", + "quality-assurance.events.description": "खाली निवडलेल्या विषयासाठी सर्व सुचवणुकींची यादी आहे {{topic}}, संबंधित {{source}}.", - // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "खाली निवडलेल्या विषयासाठी सर्व सुचवणुकींची यादी आहे {{topic}}, संबंधित {{source}} आणि ", - // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", - // TODO New key - Add a translation - "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + "quality-assurance.event.table.event.message.serviceUrl": "अभिनेता:", - // "quality-assurance.event.table.event.message.link": "Link:", - // TODO New key - Add a translation - "quality-assurance.event.table.event.message.link": "Link:", + "quality-assurance.event.table.event.message.link": "लिंक:", - // "service.detail.delete.cancel": "Cancel", "service.detail.delete.cancel": "रद्द करा", - // "service.detail.delete.button": "Delete service", "service.detail.delete.button": "सेवा हटवा", - // "service.detail.delete.header": "Delete service", "service.detail.delete.header": "सेवा हटवा", - // "service.detail.delete.body": "Are you sure you want to delete the current service?", "service.detail.delete.body": "तुम्हाला चालू सेवा हटवायची आहे का?", - // "service.detail.delete.confirm": "Delete service", "service.detail.delete.confirm": "सेवा हटवा", - // "service.detail.delete.success": "The service was successfully deleted.", "service.detail.delete.success": "सेवा यशस्वीरित्या हटवली गेली.", - // "service.detail.delete.error": "Something went wrong when deleting the service", "service.detail.delete.error": "सेवा हटवताना काहीतरी चूक झाली", - // "service.overview.table.id": "Services ID", "service.overview.table.id": "सेवा ID", - // "service.overview.table.name": "Name", "service.overview.table.name": "नाव", - // "service.overview.table.start": "Start time (UTC)", "service.overview.table.start": "प्रारंभ वेळ (UTC)", - // "service.overview.table.status": "Status", "service.overview.table.status": "स्थिती", - // "service.overview.table.user": "User", "service.overview.table.user": "वापरकर्ता", - // "service.overview.title": "Services Overview", "service.overview.title": "सेवा विहंगावलोकन", - // "service.overview.breadcrumbs": "Services Overview", "service.overview.breadcrumbs": "सेवा विहंगावलोकन", - // "service.overview.table.actions": "Actions", "service.overview.table.actions": "क्रिया", - // "service.overview.table.description": "Description", "service.overview.table.description": "वर्णन", - // "submission.sections.submit.progressbar.coarnotify": "COAR Notify", "submission.sections.submit.progressbar.coarnotify": "COAR सूचना", - // "submission.section.section-coar-notify.control.request-review.label": "You can request a review to one of the following services", "submission.section.section-coar-notify.control.request-review.label": "तुम्ही खालील सेवांपैकी एकाची पुनरावलोकन विनंती करू शकता", - // "submission.section.section-coar-notify.control.request-endorsement.label": "You can request an Endorsement to one of the following overlay journals", "submission.section.section-coar-notify.control.request-endorsement.label": "तुम्ही खालील ओव्हरले जर्नल्सपैकी एकाची मान्यता विनंती करू शकता", - // "submission.section.section-coar-notify.control.request-ingest.label": "You can request to ingest a copy of your submission to one of the following services", "submission.section.section-coar-notify.control.request-ingest.label": "तुमच्या सबमिशनची प्रत खालील सेवांपैकी एकाला ग्रहण करण्याची विनंती करू शकता", - // "submission.section.section-coar-notify.dropdown.no-data": "No data available", "submission.section.section-coar-notify.dropdown.no-data": "माहिती उपलब्ध नाही", - // "submission.section.section-coar-notify.dropdown.select-none": "Select none", "submission.section.section-coar-notify.dropdown.select-none": "कोणतेही निवडा", - // "submission.section.section-coar-notify.small.notification": "Select a service for {{ pattern }} of this item", "submission.section.section-coar-notify.small.notification": "या आयटमच्या {{ pattern }} साठी सेवा निवडा", - // "submission.section.section-coar-notify.selection.description": "Selected service's description:", - // TODO New key - Add a translation - "submission.section.section-coar-notify.selection.description": "Selected service's description:", + "submission.section.section-coar-notify.selection.description": "निवडलेल्या सेवेचे वर्णन:", - // "submission.section.section-coar-notify.selection.no-description": "No further information is available", "submission.section.section-coar-notify.selection.no-description": "अधिक माहिती उपलब्ध नाही", - // "submission.section.section-coar-notify.notification.error": "The selected service is not suitable for the current item. Please check the description for details about which record can be managed by this service.", "submission.section.section-coar-notify.notification.error": "निवडलेली सेवा चालू आयटमसाठी योग्य नाही. कृपया कोणते रेकॉर्ड या सेवेद्वारे व्यवस्थापित केले जाऊ शकतात याबद्दल तपशीलांसाठी वर्णन तपासा.", - // "submission.section.section-coar-notify.info.no-pattern": "No configurable patterns found.", "submission.section.section-coar-notify.info.no-pattern": "कोणतेही कॉन्फिगरेबल नमुने आढळले नाहीत.", - // "error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.", "error.validation.coarnotify.invalidfilter": "अवैध फिल्टर, कृपया दुसरी सेवा निवडा किंवा कोणतेही निवडा.", - // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.", "request-status-alert-box.accepted": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी स्वीकारले गेले आहे.", - // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी नाकारले गेले आहे.", - // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", "request-status-alert-box.tentative_rejected": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी तात्पुरते नाकारले गेले आहे. सुधारणा आवश्यक आहेत", - // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी प्रलंबित आहे.", - // "ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion", "ldn-service-button-mark-inbound-deletion": "हटवण्यासाठी समर्थित नमुना चिन्हांकित करा", - // "ldn-service-button-unmark-inbound-deletion": "Unmark supported pattern for deletion", "ldn-service-button-unmark-inbound-deletion": "हटवण्यासाठी समर्थित नमुना अनचिन्हांकित करा", - // "ldn-service-input-inbound-item-filter-dropdown": "Select Item filter for the pattern", "ldn-service-input-inbound-item-filter-dropdown": "नमुन्यासाठी आयटम फिल्टर निवडा", - // "ldn-service-input-inbound-pattern-dropdown": "Select a pattern for service", "ldn-service-input-inbound-pattern-dropdown": "सेवेच्या नमुन्यासाठी निवडा", - // "ldn-service-overview-select-delete": "Select service for deletion", "ldn-service-overview-select-delete": "हटवण्यासाठी सेवा निवडा", - // "ldn-service-overview-select-edit": "Edit LDN service", "ldn-service-overview-select-edit": "LDN सेवा संपादित करा", - // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "मोडल बंद करा", - // "ldn-service-usesActorEmailId": "Requires actor email in notifications", "ldn-service-usesActorEmailId": "सूचनांमध्ये अभिनेता ईमेल आवश्यक आहे", - // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", "ldn-service-usesActorEmailId-description": "सक्षम असल्यास, प्रारंभिक सूचना सबमिटर ईमेल समाविष्ट करतील, रेपॉझिटरी URL ऐवजी. हे सामान्यतः मान्यता किंवा पुनरावलोकन सेवांसाठी असते.", - // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "आयटम प्रकार जर्नल लेख किंवा डेटासेट आहे", - // "always_true_filter.label": "Always true", "always_true_filter.label": "नेहमी खरे", - // "automatic_processing_collection_filter_16.label": "Automatic processing", "automatic_processing_collection_filter_16.label": "स्वयंचलित प्रक्रिया", - // "dc-identifier-uri-contains-doi_condition.label": "URI contains DOI", "dc-identifier-uri-contains-doi_condition.label": "URI मध्ये DOI समाविष्ट आहे", - // "doi-filter.label": "DOI filter", "doi-filter.label": "DOI फिल्टर", - // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "दस्तऐवज प्रकार ड्रायव्हर समान आहे", - // "has-at-least-one-bitstream_condition.label": "Has at least one Bitstream", "has-at-least-one-bitstream_condition.label": "किमान एक बिटस्ट्रीम आहे", - // "has-bitstream_filter.label": "Has Bitstream", "has-bitstream_filter.label": "बिटस्ट्रीम आहे", - // "has-one-bitstream_condition.label": "Has one Bitstream", "has-one-bitstream_condition.label": "एक बिटस्ट्रीम आहे", - // "is-archived_condition.label": "Is archived", "is-archived_condition.label": "संग्रहित आहे", - // "is-withdrawn_condition.label": "Is withdrawn", "is-withdrawn_condition.label": "मागे घेतले आहे", - // "item-is-public_condition.label": "Item is public", "item-is-public_condition.label": "आयटम सार्वजनिक आहे", - // "journals_ingest_suggestion_collection_filter_18.label": "Journals ingest", "journals_ingest_suggestion_collection_filter_18.label": "जर्नल्स ग्रहण", - // "title-starts-with-pattern_condition.label": "Title starts with pattern", "title-starts-with-pattern_condition.label": "शीर्षक नमुन्याने सुरू होते", - // "type-equals-dataset_condition.label": "Type equals Dataset", "type-equals-dataset_condition.label": "प्रकार डेटासेट समान आहे", - // "type-equals-journal-article_condition.label": "Type equals Journal Article", "type-equals-journal-article_condition.label": "प्रकार जर्नल लेख समान आहे", - // "ldn.no-filter.label": "None", "ldn.no-filter.label": "कोणतेही नाही", - // "admin.notify.dashboard": "Dashboard", "admin.notify.dashboard": "डॅशबोर्ड", - // "menu.section.notify_dashboard": "Dashboard", "menu.section.notify_dashboard": "डॅशबोर्ड", - // "menu.section.coar_notify": "COAR Notify", "menu.section.coar_notify": "COAR सूचना", - // "admin-notify-dashboard.title": "Notify Dashboard", "admin-notify-dashboard.title": "सूचना डॅशबोर्ड", - // "admin-notify-dashboard.description": "The Notify dashboard monitor the general usage of the COAR Notify protocol across the repository. In the “Metrics” tab are statistics about usage of the COAR Notify protocol. In the “Logs/Inbound” and “Logs/Outbound” tabs it’s possible to search and check the individual status of each LDN message, either received or sent.", "admin-notify-dashboard.description": "सूचना डॅशबोर्ड रेपॉझिटरीमध्ये COAR सूचना प्रोटोकॉलच्या सामान्य वापराचे निरीक्षण करते. “मेट्रिक्स” टॅबमध्ये COAR सूचना प्रोटोकॉलच्या वापराबद्दल आकडेवारी आहे. “लॉग्स/इनबाउंड” आणि “लॉग्स/आउटबाउंड” टॅबमध्ये प्रत्येक LDN संदेशाची वैयक्तिक स्थिती शोधणे आणि तपासणे शक्य आहे, प्राप्त किंवा पाठवलेले.", - // "admin-notify-dashboard.metrics": "Metrics", "admin-notify-dashboard.metrics": "मेट्रिक्स", - // "admin-notify-dashboard.received-ldn": "Number of received LDN", "admin-notify-dashboard.received-ldn": "प्राप्त LDN ची संख्या", - // "admin-notify-dashboard.generated-ldn": "Number of generated LDN", "admin-notify-dashboard.generated-ldn": "उत्पन्न LDN ची संख्या", - // "admin-notify-dashboard.NOTIFY.incoming.accepted": "Accepted", "admin-notify-dashboard.NOTIFY.incoming.accepted": "स्वीकारले", - // "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "Accepted inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "स्वीकारलेल्या इनबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + "admin-notify-logs.NOTIFY.incoming.accepted": "सध्या प्रदर्शित: स्वीकारलेल्या सूचनां", - // "admin-notify-dashboard.NOTIFY.incoming.processed": "Processed LDN", "admin-notify-dashboard.NOTIFY.incoming.processed": "प्रक्रिया केलेले LDN", - // "admin-notify-dashboard.NOTIFY.incoming.processed.description": "Processed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.processed.description": "प्रक्रिया केलेल्या इनबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", + "admin-notify-logs.NOTIFY.incoming.processed": "सध्या प्रदर्शित: प्रक्रिया केलेले LDN", - // "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + "admin-notify-logs.NOTIFY.incoming.failure": "सध्या प्रदर्शित: अयशस्वी सूचनां", - // "admin-notify-dashboard.NOTIFY.incoming.failure": "Failure", "admin-notify-dashboard.NOTIFY.incoming.failure": "अयशस्वी", - // "admin-notify-dashboard.NOTIFY.incoming.failure.description": "Failed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.failure.description": "अयशस्वी इनबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + "admin-notify-logs.NOTIFY.outgoing.failure": "सध्या प्रदर्शित: अयशस्वी सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.failure": "Failure", "admin-notify-dashboard.NOTIFY.outgoing.failure": "अयशस्वी", - // "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "Failed outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "अयशस्वी आउटबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + "admin-notify-logs.NOTIFY.incoming.untrusted": "सध्या प्रदर्शित: अविश्वसनीय सूचनां", - // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "अविश्वसनीय", - // "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "Inbound notifications not trusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "अविश्वसनीय इनबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + "admin-notify-logs.NOTIFY.incoming.delivered": "सध्या प्रदर्शित: वितरित सूचनां", - // "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "Inbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "यशस्वीरित्या वितरित इनबाउंड सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.delivered": "Delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered": "वितरित", - // "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + "admin-notify-logs.NOTIFY.outgoing.delivered": "सध्या प्रदर्शित: वितरित सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "Outbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "यशस्वीरित्या वितरित आउटबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + "admin-notify-logs.NOTIFY.outgoing.queued": "सध्या प्रदर्शित: रांगेत असलेल्या सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "Notifications currently queued", "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "सध्या रांगेत असलेल्या सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.queued": "Queued", "admin-notify-dashboard.NOTIFY.outgoing.queued": "रांगेत", - // "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "सध्या प्रदर्शित: पुन्हा प्रयत्न करण्यासाठी रांगेत असलेल्या सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "Queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "पुन्हा प्रयत्न करण्यासाठी रांगेत", - // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "Notifications currently queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "सध्या पुन्हा प्रयत्न करण्यासाठी रांगेत असलेल्या सूचनां", - // "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "संबंधित आयटम", - // "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "Items related to inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "इनबाउंड सूचनांशी संबंधित आयटम", - // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "संबंधित आयटम", - // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "Items related to outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "आउटबाउंड सूचनांशी संबंधित आयटम", - // "admin.notify.dashboard.breadcrumbs": "Dashboard", "admin.notify.dashboard.breadcrumbs": "डॅशबोर्ड", - // "admin.notify.dashboard.inbound": "Inbound messages", "admin.notify.dashboard.inbound": "इनबाउंड संदेश", - // "admin.notify.dashboard.inbound-logs": "Logs/Inbound", "admin.notify.dashboard.inbound-logs": "लॉग्स/इनबाउंड", - // "admin.notify.dashboard.filter": "Filter: ", - // TODO New key - Add a translation - "admin.notify.dashboard.filter": "Filter: ", + "admin.notify.dashboard.filter": "फिल्टर: ", - // "search.filters.applied.f.relateditem": "Related items", "search.filters.applied.f.relateditem": "संबंधित आयटम", - // "search.filters.applied.f.ldn_service": "LDN Service", "search.filters.applied.f.ldn_service": "LDN सेवा", - // "search.filters.applied.f.notifyReview": "Notify Review", "search.filters.applied.f.notifyReview": "सूचना पुनरावलोकन", - // "search.filters.applied.f.notifyEndorsement": "Notify Endorsement", "search.filters.applied.f.notifyEndorsement": "सूचना मान्यता", - // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "सूचना संबंध", - // "search.filters.applied.f.access_status": "Access type", "search.filters.applied.f.access_status": "प्रवेश प्रकार", - // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "शेवटची प्रक्रिया वेळ ", - // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "किमान श्रेणी", - // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "कमाल श्रेणी", - // "search.filters.applied.f.queue_last_start_time.min": "Min range", "search.filters.applied.f.queue_last_start_time.min": "किमान श्रेणी", - // "search.filters.applied.f.queue_last_start_time.max": "Max range", "search.filters.applied.f.queue_last_start_time.max": "कमाल श्रेणी", - // "admin.notify.dashboard.outbound": "Outbound messages", "admin.notify.dashboard.outbound": "आउटबाउंड संदेश", - // "admin.notify.dashboard.outbound-logs": "Logs/Outbound", "admin.notify.dashboard.outbound-logs": "लॉग्स/आउटबाउंड", - // "NOTIFY.incoming.search.results.head": "Incoming", "NOTIFY.incoming.search.results.head": "इनकमिंग", - // "search.filters.filter.relateditem.head": "Related item", "search.filters.filter.relateditem.head": "संबंधित आयटम", - // "search.filters.filter.origin.head": "Origin", "search.filters.filter.origin.head": "मूळ", - // "search.filters.filter.ldn_service.head": "LDN Service", "search.filters.filter.ldn_service.head": "LDN सेवा", - // "search.filters.filter.target.head": "Target", "search.filters.filter.target.head": "लक्ष्य", - // "search.filters.filter.queue_status.head": "Queue status", "search.filters.filter.queue_status.head": "रांग स्थिती", - // "search.filters.filter.activity_stream_type.head": "Activity stream type", "search.filters.filter.activity_stream_type.head": "क्रियाकलाप प्रवाह प्रकार", - // "search.filters.filter.coar_notify_type.head": "COAR Notify type", "search.filters.filter.coar_notify_type.head": "COAR सूचना प्रकार", - // "search.filters.filter.notification_type.head": "Notification type", "search.filters.filter.notification_type.head": "सूचना प्रकार", - // "search.filters.filter.relateditem.label": "Search related items", "search.filters.filter.relateditem.label": "संबंधित आयटम शोधा", - // "search.filters.filter.queue_status.label": "Search queue status", "search.filters.filter.queue_status.label": "रांग स्थिती शोधा", - // "search.filters.filter.target.label": "Search target", "search.filters.filter.target.label": "लक्ष्य शोधा", - // "search.filters.filter.activity_stream_type.label": "Search activity stream type", "search.filters.filter.activity_stream_type.label": "क्रियाकलाप प्रवाह प्रकार शोधा", - // "search.filters.applied.f.queue_status": "Queue Status", "search.filters.applied.f.queue_status": "रांग स्थिती", - // "search.filters.queue_status.0,authority": "Untrusted Ip", "search.filters.queue_status.0,authority": "अविश्वसनीय IP", - // "search.filters.queue_status.1,authority": "Queued", "search.filters.queue_status.1,authority": "रांगेत", - // "search.filters.queue_status.2,authority": "Processing", "search.filters.queue_status.2,authority": "प्रक्रिया", - // "search.filters.queue_status.3,authority": "Processed", "search.filters.queue_status.3,authority": "प्रक्रिया पूर्ण", - // "search.filters.queue_status.4,authority": "Failed", "search.filters.queue_status.4,authority": "अयशस्वी", - // "search.filters.queue_status.5,authority": "Untrusted", "search.filters.queue_status.5,authority": "अविश्वसनीय", - // "search.filters.queue_status.6,authority": "Unmapped Action", "search.filters.queue_status.6,authority": "नकाशा नसलेली क्रिया", - // "search.filters.queue_status.7,authority": "Queued for retry", "search.filters.queue_status.7,authority": "पुन्हा प्रयत्नासाठी रांगेत", - // "search.filters.applied.f.activity_stream_type": "Activity stream type", "search.filters.applied.f.activity_stream_type": "क्रियाकलाप प्रवाह प्रकार", - // "search.filters.applied.f.coar_notify_type": "COAR Notify type", "search.filters.applied.f.coar_notify_type": "COAR सूचना प्रकार", - // "search.filters.applied.f.notification_type": "Notification type", "search.filters.applied.f.notification_type": "सूचना प्रकार", - // "search.filters.filter.coar_notify_type.label": "Search COAR Notify type", "search.filters.filter.coar_notify_type.label": "COAR सूचना प्रकार शोधा", - // "search.filters.filter.notification_type.label": "Search notification type", "search.filters.filter.notification_type.label": "सूचना प्रकार शोधा", - // "search.filters.filter.relateditem.placeholder": "Related items", "search.filters.filter.relateditem.placeholder": "संबंधित आयटम", - // "search.filters.filter.target.placeholder": "Target", "search.filters.filter.target.placeholder": "लक्ष्य", - // "search.filters.filter.origin.label": "Search source", "search.filters.filter.origin.label": "स्रोत शोधा", - // "search.filters.filter.origin.placeholder": "Source", "search.filters.filter.origin.placeholder": "स्रोत", - // "search.filters.filter.ldn_service.label": "Search LDN Service", "search.filters.filter.ldn_service.label": "LDN सेवा शोधा", - // "search.filters.filter.ldn_service.placeholder": "LDN Service", "search.filters.filter.ldn_service.placeholder": "LDN सेवा", - // "search.filters.filter.queue_status.placeholder": "Queue status", "search.filters.filter.queue_status.placeholder": "रांग स्थिती", - // "search.filters.filter.activity_stream_type.placeholder": "Activity stream type", "search.filters.filter.activity_stream_type.placeholder": "क्रियाकलाप प्रवाह प्रकार", - // "search.filters.filter.coar_notify_type.placeholder": "COAR Notify type", "search.filters.filter.coar_notify_type.placeholder": "COAR सूचना प्रकार", - // "search.filters.filter.notification_type.placeholder": "Notification", "search.filters.filter.notification_type.placeholder": "सूचना", - // "search.filters.filter.notifyRelation.head": "Notify Relation", "search.filters.filter.notifyRelation.head": "सूचना संबंध", - // "search.filters.filter.notifyRelation.label": "Search Notify Relation", "search.filters.filter.notifyRelation.label": "सूचना संबंध शोधा", - // "search.filters.filter.notifyRelation.placeholder": "Notify Relation", "search.filters.filter.notifyRelation.placeholder": "सूचना संबंध", - // "search.filters.filter.notifyReview.head": "Notify Review", "search.filters.filter.notifyReview.head": "सूचना पुनरावलोकन", - // "search.filters.filter.notifyReview.label": "Search Notify Review", "search.filters.filter.notifyReview.label": "सूचना पुनरावलोकन शोधा", - // "search.filters.filter.notifyReview.placeholder": "Notify Review", "search.filters.filter.notifyReview.placeholder": "सूचना पुनरावलोकन", - // "search.filters.coar_notify_type.coar-notify:ReviewAction": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction": "पुनरावलोकन क्रिया", - // "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "पुनरावलोकन क्रिया", - // "notify-detail-modal.coar-notify:ReviewAction": "Review action", "notify-detail-modal.coar-notify:ReviewAction": "पुनरावलोकन क्रिया", - // "search.filters.coar_notify_type.coar-notify:EndorsementAction": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction": "मान्यता क्रिया", - // "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "मान्यता क्रिया", - // "notify-detail-modal.coar-notify:EndorsementAction": "Endorsement action", "notify-detail-modal.coar-notify:EndorsementAction": "मान्यता क्रिया", - // "search.filters.coar_notify_type.coar-notify:IngestAction": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction": "ग्रहण क्रिया", - // "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ग्रहण क्रिया", - // "notify-detail-modal.coar-notify:IngestAction": "Ingest action", "notify-detail-modal.coar-notify:IngestAction": "ग्रहण क्रिया", - // "search.filters.coar_notify_type.coar-notify:RelationshipAction": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction": "संबंध क्रिया", - // "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "संबंध क्रिया", - // "notify-detail-modal.coar-notify:RelationshipAction": "Relationship action", "notify-detail-modal.coar-notify:RelationshipAction": "संबंध क्रिया", - // "search.filters.queue_status.QUEUE_STATUS_QUEUED": "Queued", "search.filters.queue_status.QUEUE_STATUS_QUEUED": "रांगेत", - // "notify-detail-modal.QUEUE_STATUS_QUEUED": "Queued", "notify-detail-modal.QUEUE_STATUS_QUEUED": "रांगेत", - // "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "पुन्हा प्रयत्नासाठी रांगेत", - // "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "पुन्हा प्रयत्नासाठी रांगेत", - // "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "Processing", "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "प्रक्रिया", - // "notify-detail-modal.QUEUE_STATUS_PROCESSING": "Processing", "notify-detail-modal.QUEUE_STATUS_PROCESSING": "प्रक्रिया", - // "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "Processed", "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "प्रक्रिया पूर्ण", - // "notify-detail-modal.QUEUE_STATUS_PROCESSED": "Processed", "notify-detail-modal.QUEUE_STATUS_PROCESSED": "प्रक्रिया पूर्ण", - // "search.filters.queue_status.QUEUE_STATUS_FAILED": "Failed", "search.filters.queue_status.QUEUE_STATUS_FAILED": "अयशस्वी", - // "notify-detail-modal.QUEUE_STATUS_FAILED": "Failed", "notify-detail-modal.QUEUE_STATUS_FAILED": "अयशस्वी", - // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "Untrusted", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "अविश्वसनीय", - // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "अविश्वसनीय IP", - // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "Untrusted", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "अविश्वसनीय", - // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "अविश्वसनीय IP", - // "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "नकाशा नसलेली क्रिया", - // "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "नकाशा नसलेली क्रिया", - // "sorting.queue_last_start_time.DESC": "Last started queue Descending", "sorting.queue_last_start_time.DESC": "शेवटची सुरू केलेली रांग उतरणे", - // "sorting.queue_last_start_time.ASC": "Last started queue Ascending", "sorting.queue_last_start_time.ASC": "शेवटची सुरू केलेली रांग चढणे", - // "sorting.queue_attempts.DESC": "Queue attempted Descending", "sorting.queue_attempts.DESC": "रांग प्रयत्न उतरणे", - // "sorting.queue_attempts.ASC": "Queue attempted Ascending", "sorting.queue_attempts.ASC": "रांग प्रयत्न चढणे", - // "NOTIFY.incoming.involvedItems.search.results.head": "Items involved in incoming LDN", "NOTIFY.incoming.involvedItems.search.results.head": "इनकमिंग LDN मध्ये सहभागी आयटम", - // "NOTIFY.outgoing.involvedItems.search.results.head": "Items involved in outgoing LDN", "NOTIFY.outgoing.involvedItems.search.results.head": "आउटगोइंग LDN मध्ये सहभागी आयटम", - // "type.notify-detail-modal": "Type", "type.notify-detail-modal": "प्रकार", - // "id.notify-detail-modal": "Id", "id.notify-detail-modal": "Id", - // "coarNotifyType.notify-detail-modal": "COAR Notify type", "coarNotifyType.notify-detail-modal": "COAR सूचना प्रकार", - // "activityStreamType.notify-detail-modal": "Activity stream type", "activityStreamType.notify-detail-modal": "क्रियाकलाप प्रवाह प्रकार", - // "inReplyTo.notify-detail-modal": "In reply to", "inReplyTo.notify-detail-modal": "याला उत्तर", - // "object.notify-detail-modal": "Repository Item", "object.notify-detail-modal": "रेपॉझिटरी आयटम", - // "context.notify-detail-modal": "Repository Item", "context.notify-detail-modal": "रेपॉझिटरी आयटम", - // "queueAttempts.notify-detail-modal": "Queue attempts", "queueAttempts.notify-detail-modal": "रांग प्रयत्न", - // "queueLastStartTime.notify-detail-modal": "Queue last started", "queueLastStartTime.notify-detail-modal": "रांग शेवटची सुरू केली", - // "origin.notify-detail-modal": "LDN Service", "origin.notify-detail-modal": "LDN सेवा", - // "target.notify-detail-modal": "LDN Service", "target.notify-detail-modal": "LDN सेवा", - // "queueStatusLabel.notify-detail-modal": "Queue status", "queueStatusLabel.notify-detail-modal": "रांग स्थिती", - // "queueTimeout.notify-detail-modal": "Queue timeout", "queueTimeout.notify-detail-modal": "रांग टाइमआउट", - // "notify-message-modal.title": "Message Detail", "notify-message-modal.title": "संदेश तपशील", - // "notify-message-modal.show-message": "Show message", "notify-message-modal.show-message": "संदेश दाखवा", - // "notify-message-result.timestamp": "Timestamp", "notify-message-result.timestamp": "टाइमस्टॅम्प", - // "notify-message-result.repositoryItem": "Repository Item", "notify-message-result.repositoryItem": "रेपॉझिटरी आयटम", - // "notify-message-result.ldnService": "LDN Service", "notify-message-result.ldnService": "LDN सेवा", - // "notify-message-result.type": "Type", "notify-message-result.type": "प्रकार", - // "notify-message-result.status": "Status", "notify-message-result.status": "स्थिती", - // "notify-message-result.action": "Action", "notify-message-result.action": "क्रिया", - // "notify-message-result.detail": "Detail", "notify-message-result.detail": "तपशील", - // "notify-message-result.reprocess": "Reprocess", "notify-message-result.reprocess": "पुन्हा प्रक्रिया करा", - // "notify-queue-status.processed": "Processed", "notify-queue-status.processed": "प्रक्रिया पूर्ण", - // "notify-queue-status.failed": "Failed", "notify-queue-status.failed": "अयशस्वी", - // "notify-queue-status.queue_retry": "Queued for retry", "notify-queue-status.queue_retry": "पुन्हा प्रयत्नासाठी रांगेत", - // "notify-queue-status.unmapped_action": "Unmapped action", "notify-queue-status.unmapped_action": "नकाशा नसलेली क्रिया", - // "notify-queue-status.processing": "Processing", "notify-queue-status.processing": "प्रक्रिया", - // "notify-queue-status.queued": "Queued", "notify-queue-status.queued": "रांगेत", - // "notify-queue-status.untrusted": "Untrusted", "notify-queue-status.untrusted": "अविश्वसनीय", - // "ldnService.notify-detail-modal": "LDN Service", "ldnService.notify-detail-modal": "LDN सेवा", - // "relatedItem.notify-detail-modal": "Related Item", "relatedItem.notify-detail-modal": "संबंधित आयटम", - // "search.filters.filter.notifyEndorsement.head": "Notify Endorsement", "search.filters.filter.notifyEndorsement.head": "सूचना मान्यता", - // "search.filters.filter.notifyEndorsement.placeholder": "Notify Endorsement", "search.filters.filter.notifyEndorsement.placeholder": "सूचना मान्यता", - // "search.filters.filter.notifyEndorsement.label": "Search Notify Endorsement", "search.filters.filter.notifyEndorsement.label": "सूचना मान्यता शोधा", - // "form.date-picker.placeholder.year": "Year", "form.date-picker.placeholder.year": "वर्ष", - // "form.date-picker.placeholder.month": "Month", "form.date-picker.placeholder.month": "महिना", - // "form.date-picker.placeholder.day": "Day", "form.date-picker.placeholder.day": "दिवस", - // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "क्रिएटिव्ह कॉमन्स परवाना", - // "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as", "item.page.cc.license.disclaimer": "इतरत्र नमूद केल्याशिवाय, या आयटमचा परवाना खालीलप्रमाणे वर्णन केला आहे", - // "browse.search-form.placeholder": "Search the repository", "browse.search-form.placeholder": "रेपॉझिटरी शोधा", - // "file-download-link.download": "Download ", "file-download-link.download": "डाउनलोड ", - // "register-page.registration.aria.label": "Enter your e-mail address", "register-page.registration.aria.label": "तुमचा ई-मेल पत्ता प्रविष्ट करा", - // "forgot-email.form.aria.label": "Enter your e-mail address", "forgot-email.form.aria.label": "तुमचा ई-मेल पत्ता प्रविष्ट करा", - // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "पृष्ठ पुन्हा लोड केले जाईल. फिल्टर {{ filter }} निवडले आहे.", - // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", "live-region.ordering.instructions": "{{ itemName }} पुनर्व्यवस्थित करण्यासाठी स्पेसबार दाबा.", - // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", - // TODO New key - Add a translation - "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + "live-region.ordering.status": "{{ itemName }}, पकडले. सूचीतील वर्तमान स्थिती: {{ index }} of {{ length }}. स्थिती बदलण्यासाठी वर आणि खाली बाण की दाबा, ड्रॉप करण्यासाठी स्पेसबार, रद्द करण्यासाठी एस्केप.", - // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", "live-region.ordering.moved": "{{ itemName }}, स्थिती {{ index }} of {{ length }} वर हलवले. स्थिती बदलण्यासाठी वर आणि खाली बाण की दाबा, ड्रॉप करण्यासाठी स्पेसबार, रद्द करण्यासाठी एस्केप.", - // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", "live-region.ordering.dropped": "{{ itemName }}, स्थिती {{ index }} of {{ length }} वर ड्रॉप केले.", - // "dynamic-form-array.sortable-list.label": "Sortable list", "dynamic-form-array.sortable-list.label": "सॉर्टेबल सूची", - // "external-login.component.or": "or", "external-login.component.or": "किंवा", - // "external-login.confirmation.header": "Information needed to complete the login process", "external-login.confirmation.header": "लॉगिन प्रक्रिया पूर्ण करण्यासाठी माहिती आवश्यक आहे", - // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", "external-login.noEmail.informationText": "{{authMethod}} कडून प्राप्त झालेली माहिती लॉगिन प्रक्रिया पूर्ण करण्यासाठी पुरेशी नाही. कृपया खालील माहिती द्या, किंवा विद्यमान खात्याशी तुमचे {{authMethod}} जोडण्यासाठी वेगळ्या पद्धतीने लॉगिन करा.", - // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", "external-login.haveEmail.informationText": "असे दिसते की तुम्ही या प्रणालीमध्ये अद्याप खाते तयार केलेले नाही. जर असे असेल तर, कृपया {{authMethod}} कडून प्राप्त झालेली माहिती पुष्टी करा आणि तुमच्यासाठी नवीन खाते तयार केले जाईल. अन्यथा, जर तुमच्याकडे आधीपासूनच प्रणालीमध्ये खाते असेल, तर कृपया विद्यमान खात्यात वापरलेला ईमेल पत्ता जुळवण्यासाठी ईमेल पत्ता अद्यतनित करा किंवा विद्यमान खात्याशी तुमचे {{authMethod}} जोडण्यासाठी वेगळ्या पद्धतीने लॉगिन करा.", - // "external-login.confirm-email.header": "Confirm or update email", "external-login.confirm-email.header": "ईमेल पुष्टी करा किंवा अद्यतनित करा", - // "external-login.confirmation.email-required": "Email is required.", "external-login.confirmation.email-required": "ईमेल आवश्यक आहे.", - // "external-login.confirmation.email-label": "User Email", "external-login.confirmation.email-label": "वापरकर्ता ईमेल", - // "external-login.confirmation.email-invalid": "Invalid email format.", "external-login.confirmation.email-invalid": "अवैध ईमेल स्वरूप.", - // "external-login.confirm.button.label": "Confirm this email", "external-login.confirm.button.label": "हा ईमेल पुष्टी करा", - // "external-login.confirm-email-sent.header": "Confirmation email sent", "external-login.confirm-email-sent.header": "पुष्टीकरण ईमेल पाठवले", - // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", "external-login.confirm-email-sent.info": " आम्ही दिलेल्या पत्त्यावर पुष्टीकरण ईमेल पाठवले आहे.
कृपया लॉगिन प्रक्रिया पूर्ण करण्यासाठी ईमेलमधील सूचनांचे अनुसरण करा.", - // "external-login.provide-email.header": "Provide email", "external-login.provide-email.header": "ईमेल द्या", - // "external-login.provide-email.button.label": "Send Verification link", "external-login.provide-email.button.label": "पुष्टीकरण लिंक पाठवा", - // "external-login-validation.review-account-info.header": "Review your account information", "external-login-validation.review-account-info.header": "तुमच्या खात्याची माहिती पुनरावलोकन करा", - // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", "external-login-validation.review-account-info.info": "ORCID कडून प्राप्त झालेली माहिती तुमच्या प्रोफाइलमध्ये नोंदवलेल्या माहितीपेक्षा वेगळी आहे.
कृपया त्यांचे पुनरावलोकन करा आणि तुम्हाला कोणतीही माहिती अद्यतनित करायची आहे का ते ठरवा. जतन केल्यानंतर तुम्हाला तुमच्या प्रोफाइल पृष्ठावर पुनर्निर्देशित केले जाईल.", - // "external-login-validation.review-account-info.table.header.information": "Information", "external-login-validation.review-account-info.table.header.information": "माहिती", - // "external-login-validation.review-account-info.table.header.received-value": "Received value", "external-login-validation.review-account-info.table.header.received-value": "प्राप्त मूल्य", - // "external-login-validation.review-account-info.table.header.current-value": "Current value", "external-login-validation.review-account-info.table.header.current-value": "वर्तमान मूल्य", - // "external-login-validation.review-account-info.table.header.action": "Override", "external-login-validation.review-account-info.table.header.action": "ओव्हरराइड", - // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", "external-login-validation.review-account-info.table.row.not-applicable": "N/A", - // "on-label": "ON", "on-label": "चालू", - // "off-label": "OFF", "off-label": "बंद", - // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", "review-account-info.merge-data.notification.success": "तुमची खात्याची माहिती यशस्वीरित्या अद्यतनित केली गेली आहे", - // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", "review-account-info.merge-data.notification.error": "तुमची खात्याची माहिती अद्यतनित करताना काहीतरी चूक झाली", - // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", "review-account-info.alert.error.content": "काहीतरी चूक झाली. कृपया नंतर पुन्हा प्रयत्न करा.", - // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", "external-login-page.provide-email.notifications.error": "काहीतरी चूक झाली. ईमेल पत्ता वगळला गेला किंवा ऑपरेशन वैध नाही.", - // "external-login.error.notification": "There was an error while processing your request. Please try again later.", "external-login.error.notification": "तुमची विनंती प्रक्रिया करताना एक त्रुटी आली. कृपया नंतर पुन्हा प्रयत्न करा.", - // "external-login.connect-to-existing-account.label": "Connect to an existing user", "external-login.connect-to-existing-account.label": "विद्यमान वापरकर्त्याशी कनेक्ट करा", - // "external-login.modal.label.close": "Close", "external-login.modal.label.close": "बंद करा", - // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", "external-login-page.provide-email.create-account.notifications.error.header": "काहीतरी चूक झाली", - // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", "external-login-page.provide-email.create-account.notifications.error.content": "कृपया तुमचा ईमेल पत्ता पुन्हा तपासा आणि पुन्हा प्रयत्न करा.", - // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", "external-login-page.confirm-email.create-account.notifications.error.no-netId": "या ईमेल खात्याशी काहीतरी चूक झाली. पुन्हा प्रयत्न करा किंवा लॉगिन करण्यासाठी वेगळा पद्धत वापरा.", - // "external-login-page.orcid-confirmation.firstname": "First name", "external-login-page.orcid-confirmation.firstname": "पहिले नाव", - // "external-login-page.orcid-confirmation.firstname.label": "First name", "external-login-page.orcid-confirmation.firstname.label": "पहिले नाव", - // "external-login-page.orcid-confirmation.lastname": "Last name", "external-login-page.orcid-confirmation.lastname": "आडनाव", - // "external-login-page.orcid-confirmation.lastname.label": "Last name", "external-login-page.orcid-confirmation.lastname.label": "आडनाव", - // "external-login-page.orcid-confirmation.netid": "Account Identifier", "external-login-page.orcid-confirmation.netid": "खाते ओळखकर्ता", - // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", - // "external-login-page.orcid-confirmation.email": "Email", "external-login-page.orcid-confirmation.email": "ईमेल", - // "external-login-page.orcid-confirmation.email.label": "Email", "external-login-page.orcid-confirmation.email.label": "ईमेल", - // "search.filters.access_status.open.access": "Open access", "search.filters.access_status.open.access": "मुक्त प्रवेश", - // "search.filters.access_status.restricted": "Restricted access", "search.filters.access_status.restricted": "मर्यादित प्रवेश", - // "search.filters.access_status.embargo": "Embargoed access", "search.filters.access_status.embargo": "प्रतिबंधित प्रवेश", - // "search.filters.access_status.metadata.only": "Metadata only", "search.filters.access_status.metadata.only": "फक्त मेटाडेटा", - // "search.filters.access_status.unknown": "Unknown", "search.filters.access_status.unknown": "अज्ञात", - // "metadata-export-filtered-items.tooltip": "Export report output as CSV", "metadata-export-filtered-items.tooltip": "CSV म्हणून अहवाल आउटपुट निर्यात करा", - // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", "metadata-export-filtered-items.submit.success": "CSV निर्यात यशस्वी झाली.", - // "metadata-export-filtered-items.submit.error": "CSV export failed.", "metadata-export-filtered-items.submit.error": "CSV निर्यात अयशस्वी झाली.", - // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", "metadata-export-filtered-items.columns.warning": "CSV निर्यात आपोआप सर्व संबंधित फील्ड समाविष्ट करते, त्यामुळे या सूचीतील निवडींचा विचार केला जात नाही.", - // "embargo.listelement.badge": "Embargo until {{ date }}", "embargo.listelement.badge": "{{ date }} पर्यंत प्रतिबंध", - // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", "metadata-export-search.submit.error.limit-exceeded": "फक्त पहिली {{limit}} आयटम निर्यात केली जातील", - - // "file-download-link.request-copy": "Request a copy of ", - // TODO New key - Add a translation - "file-download-link.request-copy": "Request a copy of ", - - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - - } \ No newline at end of file diff --git a/src/assets/i18n/nl.json5 b/src/assets/i18n/nl.json5 index 159d0136df3..6f15cef68f1 100644 --- a/src/assets/i18n/nl.json5 +++ b/src/assets/i18n/nl.json5 @@ -3657,26 +3657,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Fout bij het inladen van communities op het hoogste niveau", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "U moet de invoerlicentie goedkeuren om de invoer af te werken. Indien u deze licentie momenteel niet kan of mag goedkeuren, kunt u uw werk opslaan en de invoer later afwerken. U kunt dit nieuwe item ook verwijderen indien u niet voldoet aan de vereisten van de invoerlicentie.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Deze invoer wordt ingeperkt door dit patroon: {{ pattern }}.", @@ -10448,10 +10435,6 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -10645,18 +10628,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Upload geslaagd", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13848,17 +13819,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/pl.json5 b/src/assets/i18n/pl.json5 index b6160cbc918..6f5f0f1c518 100644 --- a/src/assets/i18n/pl.json5 +++ b/src/assets/i18n/pl.json5 @@ -2901,25 +2901,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Błąd podczas pobierania nadrzędnego zbioru", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Musisz wyrazić tę zgodę, aby przesłać swoje zgłoszenie. Jeśli nie możesz wyrazić zgody w tym momencie, możesz zapisać swoją pracę i wrócić do niej później lub usunąć zgłoszenie.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Musisz przyznać tę licencję cc, aby zakończyć zgłoszenie. Jeśli nie możesz przyznać licencji CC w tej chwili, możesz zapisać swoją pracę i wrócić później lub usunąć zgłoszenie.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Te dane wejściowe są ograniczone przez aktualny wzór: {{ pattern }}.", @@ -8406,10 +8393,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licencja Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Odzyskaj", @@ -8575,18 +8558,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Przesyłanie udane", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Jeśli checkbox jest zaznaczony, pozycja będzie wyświetlana w wynikach wyszukiwania. Jeśli checkbox jest odznaczony, dostęp do pozycji będzie dostępny tylko przez bezpośredni link, pozycja nie będzie wyświetlana w wynikach wyszukiwania.", @@ -10982,17 +10953,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/pt-BR.json5 b/src/assets/i18n/pt-BR.json5 index 53719494754..7d35b5ccfe8 100644 --- a/src/assets/i18n/pt-BR.json5 +++ b/src/assets/i18n/pt-BR.json5 @@ -2926,26 +2926,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erro ao carregar as comunidade de nível superior", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Você deve concordar com esta licença para completar sua submissão. Se você não estiver de acordo com esta licença neste momento você pode salvar seu trabalho para continuar depois ou remover a submissão.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Este campo está restrito ao seguinte padrão: {{ pattern }}.", @@ -8520,10 +8507,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licença Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8689,18 +8672,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Enviado com sucesso", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Quando marcado, este item poderá ser descoberto na pesquisa/navegação. Quando desmarcado, o item estará disponível apenas por meio de um link direto e nunca aparecerá na pesquisa/navegação.", @@ -11168,14 +11139,9 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", "item.preview.organization.url": "URL", - // "item.preview.organization.address.addressLocality": "City", "item.preview.organization.address.addressLocality": "Cidade", - // "item.preview.organization.alternateName": "Alternative name", "item.preview.organization.alternateName": "Nome alternativo", - - -} \ No newline at end of file +} diff --git a/src/assets/i18n/pt-PT.json5 b/src/assets/i18n/pt-PT.json5 index 6c6ac019157..9ad0690d571 100644 --- a/src/assets/i18n/pt-PT.json5 +++ b/src/assets/i18n/pt-PT.json5 @@ -2902,25 +2902,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erro ao carregar as comunidade de nível superior!", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Deve concordar com esta licença para completar o depósito. Se não estiver de acordo com a licença ou pretende ponderar, pode guardar este trabalho e retomar posteriormente ou remover definitivamente este depósito.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Deve concordar com esta licença CC para completar o depósito. Se não estiver de acordo com a licença ou pretende ponderar, pode guardar o seu trabalho e retomar posteriormente ou remover definitivamente este depósito.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Este campo está restrito ao seguinte padrão: {{ pattern }}.", @@ -8500,10 +8487,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Associar uma licença Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8670,18 +8653,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Enviado com sucesso", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Quando selecionado, este item será pesquisável na pesquisa/navegação. Se não estiver selecionado, o item apenas estará disponível através uma ligação direta (link) e não aparecerá na pesquisa/navegação.", @@ -11075,17 +11046,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/ru.json5 b/src/assets/i18n/ru.json5 index 92258be4434..c56c9f7ffb8 100644 --- a/src/assets/i18n/ru.json5 +++ b/src/assets/i18n/ru.json5 @@ -1,4 +1,5 @@ { + // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "У вас нет прав доступа к этой странице. Вы можете использовать кнопку ниже, чтобы вернуться на домашнюю страницу.", @@ -50,10 +51,6 @@ // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "Произошла ошибка при входе через ORCID. Убедитесь, что вы поделились адресом электронной почты своей учетной записи ORCID с DSpace. Если ошибка повторяется, обратитесь к администратору.", - // "listelement.badge.access-status": "Access status:", - // TODO New key - Add a translation - "listelement.badge.access-status": "Access status:", - // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "Эмбарго", @@ -459,22 +456,6 @@ // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "Удалить \"{{ name }}\"", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", - // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "Нет пользователей для отображения.", @@ -667,8 +648,7 @@ // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "Удалить группу \"{{ dsoName }}\"", - // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO Source message changed - Revise the translation + // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.info": "Вы уверены, что хотите удалить группу \"{{ dsoName }}\"?", // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", @@ -1124,10 +1104,6 @@ // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Элемент содержит по крайней мере одну миниатюру, недоступную анонимным пользователям", - // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", - // TODO New key - Add a translation - "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", - // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Элемент содержит метаданные, недоступные анонимным пользователям", @@ -1212,8 +1188,7 @@ // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "Вы можете перетащить или выбрать CSV-файлы, содержащие пакетные операции с метаданными", - // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", - // TODO Source message changed - Revise the translation + // "admin.batch-import.page.help": "Select the Collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the Items to import", "admin.batch-import.page.help": "Выберите коллекцию для импорта. Затем перетащите или выберите ZIP-файл в формате SAF, содержащий элементы для импорта", // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", @@ -1516,30 +1491,6 @@ // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "Произошла ошибка при отправке запроса элемента.", - // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", - - // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", - - // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", - - // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", - - // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", - - // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", - // "browse.back.all-results": "All browse results", "browse.back.all-results": "Все результаты поиска", @@ -1606,18 +1557,6 @@ // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "Просмотр по названию", - // "browse.metadata.map": "Browse by Geolocation", - // TODO New key - Add a translation - "browse.metadata.map": "Browse by Geolocation", - - // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", - // TODO New key - Add a translation - "browse.metadata.map.breadcrumbs": "Browse by Geolocation", - - // "browse.metadata.map.count.items": "items", - // TODO New key - Add a translation - "browse.metadata.map.count.items": "items", - // "pagination.next.button": "Next", "pagination.next.button": "Следующая", @@ -1735,8 +1674,7 @@ // "collection.create.head": "Create a Collection", "collection.create.head": "Создать коллекцию", - // "collection.create.notifications.success": "Successfully created the collection", - // TODO Source message changed - Revise the translation + // "collection.create.notifications.success": "Successfully created the Collection", "collection.create.notifications.success": "Коллекция успешно создана", // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", @@ -1844,12 +1782,10 @@ // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "Логотип коллекции", - // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", - // TODO Source message changed - Revise the translation + // "collection.edit.logo.notifications.add.error": "Uploading Collection logo failed. Please verify the content before retrying.", "collection.edit.logo.notifications.add.error": "Ошибка загрузки логотипа коллекции. Проверьте содержимое и повторите попытку.", - // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", - // TODO Source message changed - Revise the translation + // "collection.edit.logo.notifications.add.success": "Upload Collection logo successful.", "collection.edit.logo.notifications.add.success": "Логотип коллекции успешно загружен.", // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", @@ -1861,12 +1797,10 @@ // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "Ошибка при удалении логотипа", - // "collection.edit.logo.upload": "Drop a collection logo to upload", - // TODO Source message changed - Revise the translation + // "collection.edit.logo.upload": "Drop a Collection Logo to upload", "collection.edit.logo.upload": "Перетащите логотип коллекции для загрузки", - // "collection.edit.notifications.success": "Successfully edited the collection", - // TODO Source message changed - Revise the translation + // "collection.edit.notifications.success": "Successfully edited the Collection", "collection.edit.notifications.success": "Коллекция успешно отредактирована", // "collection.edit.return": "Back", @@ -1995,10 +1929,6 @@ // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "Не удалось удалить шаблон элемента.", - // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", - // TODO New key - Add a translation - "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", - // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "Редактировать шаблон элемента", @@ -2050,14 +1980,6 @@ // "collection.page.news": "News", "collection.page.news": "Новости", - // "collection.page.options": "Options", - // TODO New key - Add a translation - "collection.page.options": "Options", - - // "collection.search.breadcrumbs": "Search", - // TODO New key - Add a translation - "collection.search.breadcrumbs": "Search", - // "collection.search.results.head": "Search Results", "collection.search.results.head": "Результаты поиска", @@ -2184,8 +2106,7 @@ // "community.create.head": "Create a Community", "community.create.head": "Создать сообщество", - // "community.create.notifications.success": "Successfully created the community", - // TODO Source message changed - Revise the translation + // "community.create.notifications.success": "Successfully created the Community", "community.create.notifications.success": "Сообщество успешно создано", // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", @@ -2257,8 +2178,7 @@ // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "Перетащите логотип сообщества для загрузки", - // "community.edit.notifications.success": "Successfully edited the community", - // TODO Source message changed - Revise the translation + // "community.edit.notifications.success": "Successfully edited the Community", "community.edit.notifications.success": "Сообщество успешно отредактировано", // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", @@ -2324,22 +2244,6 @@ // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "Не удалось удалить группу роли '{{ role }}'", - // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - - // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - - // "comcol-role.edit.delete.modal.cancel": "Cancel", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.cancel": "Cancel", - - // "comcol-role.edit.delete.modal.confirm": "Delete", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.confirm": "Delete", - // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "Администраторы", @@ -2430,22 +2334,13 @@ // "community.page.news": "News", "community.page.news": "Новости", - // "community.page.options": "Options", - // TODO New key - Add a translation - "community.page.options": "Options", - // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "Подсообщества и коллекции", - // "community.search.breadcrumbs": "Search", - // TODO New key - Add a translation - "community.search.breadcrumbs": "Search", - // "community.search.results.head": "Search Results", "community.search.results.head": "Результаты поиска", - // "community.sub-collection-list.head": "Collections in this community", - // TODO Source message changed - Revise the translation + // "community.sub-collection-list.head": "Collections in this Community", "community.sub-collection-list.head": "Коллекции в этом сообществе", // "community.sub-community-list.head": "Communities in this Community", @@ -2472,6 +2367,12 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(всегда требуется)", + // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + "cookies.consent.app.disable-all.description": "Используйте этот переключатель, чтобы включить или отключить все сервисы.", + + // "cookies.consent.app.disable-all.title": "Enable or disable all services", + "cookies.consent.app.disable-all.title": "Включить или отключить все сервисы", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "С момента вашего последнего визита произошли изменения, пожалуйста, обновите своё согласие.", @@ -2481,20 +2382,21 @@ // "cookies.consent.decline": "Decline", "cookies.consent.decline": "Отклонить", - // "cookies.consent.decline-all": "Decline all", - // TODO New key - Add a translation - "cookies.consent.decline-all": "Decline all", - // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "Хорошо", // "cookies.consent.save": "Save", "cookies.consent.save": "Сохранить", - // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", - // TODO Source message changed - Revise the translation + // "cookies.consent.content-notice.title": "Cookie Consent", + "cookies.consent.content-notice.title": "Согласие на использование cookies", + + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", "cookies.consent.content-notice.description": "Мы собираем и обрабатываем вашу личную информацию для следующих целей: Аутентификация, Предпочтения, Подтверждение и Статистика.
Подробнее см. в нашей {privacyPolicy}.", + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + "cookies.consent.content-notice.description.no-privacy": "Мы собираем и обрабатываем вашу личную информацию для следующих целей: Аутентификация, Предпочтения, Подтверждение и Статистика.", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Настроить", @@ -2507,20 +2409,14 @@ // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "Чтобы узнать больше, пожалуйста, прочитайте нашу {privacyPolicy}.", - // "cookies.consent.content-modal.no-privacy-policy.text": "", - // TODO New key - Add a translation - "cookies.consent.content-modal.no-privacy-policy.text": "", - // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Информация, которую мы собираем", - // "cookies.consent.app.title.accessibility": "Accessibility Settings", - // TODO New key - Add a translation - "cookies.consent.app.title.accessibility": "Accessibility Settings", + // "cookies.consent.content-modal.services": "services", + "cookies.consent.content-modal.services": "сервисы", - // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", - // TODO New key - Add a translation - "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + // "cookies.consent.content-modal.service": "service", + "cookies.consent.content-modal.service": "сервис", // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Аутентификация", @@ -2528,14 +2424,6 @@ // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "Необходимо для входа в систему", - // "cookies.consent.app.title.correlation-id": "Correlation ID", - // TODO New key - Add a translation - "cookies.consent.app.title.correlation-id": "Correlation ID", - - // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - // TODO New key - Add a translation - "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "Предпочтения", @@ -2560,14 +2448,6 @@ // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "Мы используем сервис Google reCAPTCHA при регистрации и восстановлении пароля", - // "cookies.consent.app.title.matomo": "Matomo", - // TODO New key - Add a translation - "cookies.consent.app.title.matomo": "Matomo", - - // "cookies.consent.app.description.matomo": "Allows us to track statistical data", - // TODO New key - Add a translation - "cookies.consent.app.description.matomo": "Allows us to track statistical data", - // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "Функциональные", @@ -2651,7 +2531,7 @@ // "dynamic-list.load-more": "Load more", // TODO New key - Add a translation - "dynamic-list.load-more": "Load more", + "dynamic-list.load-more": "Загрузить ещё", // "dropdown.clear": "Clear selection", "dropdown.clear": "Очистить выбор", @@ -2860,26 +2740,6 @@ // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "Удалить", - // "confirmation-modal.review-account-info.header": "Save the changes", - // TODO New key - Add a translation - "confirmation-modal.review-account-info.header": "Save the changes", - - // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", - // TODO New key - Add a translation - "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", - - // "confirmation-modal.review-account-info.cancel": "Cancel", - // TODO New key - Add a translation - "confirmation-modal.review-account-info.cancel": "Cancel", - - // "confirmation-modal.review-account-info.confirm": "Confirm", - // TODO New key - Add a translation - "confirmation-modal.review-account-info.confirm": "Confirm", - - // "confirmation-modal.review-account-info.save": "Save", - // TODO New key - Add a translation - "confirmation-modal.review-account-info.save": "Save", - // "error.bitstream": "Error fetching bitstream", "error.bitstream": "Ошибка при получении файла", @@ -2915,7 +2775,7 @@ // "error.profile-groups": "Error retrieving profile groups", // TODO New key - Add a translation - "error.profile-groups": "Error retrieving profile groups", + "error.profile-groups": "Ошибка при получении групп профилей", // "error.search-results": "Error fetching search results", "error.search-results": "Ошибка при получении результатов поиска", @@ -2935,25 +2795,8 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Ошибка при получении сообществ верхнего уровня", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - - // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Вы должны принять эту лицензию для завершения отправки. Если вы не можете сделать это сейчас, сохраните работу и вернитесь позже или удалите отправку.", // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Это поле ограничено текущим шаблоном: {{ pattern }}.", @@ -3000,20 +2843,12 @@ // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "Ограниченный файл", - // "file-download-link.secure-access": "Restricted bitstream available via secure access token", - // TODO New key - Add a translation - "file-download-link.secure-access": "Restricted bitstream available via secure access token", - // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "Ошибка при получении файлов для этого элемента", // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "авторское право © 2002-{{ year }}", - // "footer.link.accessibility": "Accessibility settings", - // TODO New key - Add a translation - "footer.link.accessibility": "Accessibility settings", - // "footer.link.dspace": "DSpace software", "footer.link.dspace": "Программное обеспечение DSpace", @@ -3218,14 +3053,9 @@ // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "Переместите элемент на новую позицию", - // "grant-deny-request-copy.deny": "Deny access request", - // TODO Source message changed - Revise the translation + // "grant-deny-request-copy.deny": "Don't send copy", "grant-deny-request-copy.deny": "Не отправлять копию", - // "grant-deny-request-copy.revoke": "Revoke access", - // TODO New key - Add a translation - "grant-deny-request-copy.revoke": "Revoke access", - // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "Назад", @@ -3250,8 +3080,7 @@ // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "Пожалуйста, введите тему", - // "grant-deny-request-copy.grant": "Grant access request", - // TODO Source message changed - Revise the translation + // "grant-deny-request-copy.grant": "Send copy", "grant-deny-request-copy.grant": "Отправить копию", // "grant-deny-request-copy.header": "Document copy request", @@ -3266,10 +3095,6 @@ // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "После выбора варианта будет предложен текст письма, который вы можете отредактировать.", - // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", - // TODO New key - Add a translation - "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", - // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "Этот запрос уже обработан. Вы можете использовать кнопку ниже, чтобы вернуться на главную страницу.", @@ -3282,45 +3107,12 @@ // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "Разрешить запрос копии документа", - // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", - // TODO New key - Add a translation - "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", - - // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", - // TODO New key - Add a translation - "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", - - // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", - // TODO New key - Add a translation - "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // "grant-request-copy.intro": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", + "grant-request-copy.intro": "Сообщение будет отправлено заявителю. Запрошенные документы будут приложены.", // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "Запрос на предмет успешно выполнен", - // "grant-request-copy.access-period.header": "Access period", - // TODO New key - Add a translation - "grant-request-copy.access-period.header": "Access period", - - // "grant-request-copy.access-period.+1DAY": "1 day", - // TODO New key - Add a translation - "grant-request-copy.access-period.+1DAY": "1 day", - - // "grant-request-copy.access-period.+7DAYS": "1 week", - // TODO New key - Add a translation - "grant-request-copy.access-period.+7DAYS": "1 week", - - // "grant-request-copy.access-period.+1MONTH": "1 month", - // TODO New key - Add a translation - "grant-request-copy.access-period.+1MONTH": "1 month", - - // "grant-request-copy.access-period.+3MONTHS": "3 months", - // TODO New key - Add a translation - "grant-request-copy.access-period.+3MONTHS": "3 months", - - // "grant-request-copy.access-period.FOREVER": "Forever", - // TODO New key - Add a translation - "grant-request-copy.access-period.FOREVER": "Forever", - // "health.breadcrumbs": "Health", "health.breadcrumbs": "Проверки", @@ -3399,82 +3191,6 @@ // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "Выберите сообщество для просмотра коллекций.", - // "info.accessibility-settings.breadcrumbs": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.breadcrumbs": "Accessibility settings", - - // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - // TODO New key - Add a translation - "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - - // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - - // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - - // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - - // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - // TODO New key - Add a translation - "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - - // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - - // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - - // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - - // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - - // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - - // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - - // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - - // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - - // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - - // "info.accessibility-settings.reset-notification": "Successfully reset settings.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-notification": "Successfully reset settings.", - - // "info.accessibility-settings.reset": "Reset accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.reset": "Reset accessibility settings", - - // "info.accessibility-settings.submit": "Save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.submit": "Save accessibility settings", - - // "info.accessibility-settings.title": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.title": "Accessibility settings", - // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "Я прочитал и согласен с соглашением конечного пользователя.", @@ -3556,14 +3272,6 @@ // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "Поддержка COAR Notify", - // "item.alerts.private": "This item is non-discoverable", - // TODO New key - Add a translation - "item.alerts.private": "This item is non-discoverable", - - // "item.alerts.withdrawn": "This item has been withdrawn", - // TODO New key - Add a translation - "item.alerts.withdrawn": "This item has been withdrawn", - // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "Запрос на восстановление", @@ -3576,10 +3284,6 @@ // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "Редактировать политики объекта", - // "item.badge.status": "Item status:", - // TODO New key - Add a translation - "item.badge.status": "Item status:", - // "item.badge.private": "Non-discoverable", "item.badge.private": "Приватный", @@ -3735,7 +3439,7 @@ // "item.edit.bitstreams.load-more.link": "Load more", // TODO New key - Add a translation - "item.edit.bitstreams.load-more.link": "Load more", + "item.edit.bitstreams.load-more.link": "Загрузить ещё", // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "Отмена", @@ -3904,11 +3608,11 @@ // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", // TODO New key - Add a translation - "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", + "item.edit.metadata.edit.buttons.enable-free-text-editing": "Включить редактирование свободного текста", // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", // TODO New key - Add a translation - "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", + "item.edit.metadata.edit.buttons.disable-free-text-editing": "Отключить редактирование свободного текста", // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "Подтвердить", @@ -4204,8 +3908,7 @@ // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "Управлять связанными коллекциями", - // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", - // TODO Source message changed - Revise the translation + // "item.edit.tabs.status.buttons.move.button": "Move this Item to a different Collection", "item.edit.tabs.status.buttons.move.button": "Переместить этот элемент в другую коллекцию", // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", @@ -4301,62 +4004,6 @@ // "item.page.description": "Description", "item.page.description": "Описание", - // "item.page.org-unit": "Organizational Unit", - // TODO New key - Add a translation - "item.page.org-unit": "Organizational Unit", - - // "item.page.org-units": "Organizational Units", - // TODO New key - Add a translation - "item.page.org-units": "Organizational Units", - - // "item.page.project": "Research Project", - // TODO New key - Add a translation - "item.page.project": "Research Project", - - // "item.page.projects": "Research Projects", - // TODO New key - Add a translation - "item.page.projects": "Research Projects", - - // "item.page.publication": "Publications", - // TODO New key - Add a translation - "item.page.publication": "Publications", - - // "item.page.publications": "Publications", - // TODO New key - Add a translation - "item.page.publications": "Publications", - - // "item.page.article": "Article", - // TODO New key - Add a translation - "item.page.article": "Article", - - // "item.page.articles": "Articles", - // TODO New key - Add a translation - "item.page.articles": "Articles", - - // "item.page.journal": "Journal", - // TODO New key - Add a translation - "item.page.journal": "Journal", - - // "item.page.journals": "Journals", - // TODO New key - Add a translation - "item.page.journals": "Journals", - - // "item.page.journal-issue": "Journal Issue", - // TODO New key - Add a translation - "item.page.journal-issue": "Journal Issue", - - // "item.page.journal-issues": "Journal Issues", - // TODO New key - Add a translation - "item.page.journal-issues": "Journal Issues", - - // "item.page.journal-volume": "Journal Volume", - // TODO New key - Add a translation - "item.page.journal-volume": "Journal Volume", - - // "item.page.journal-volumes": "Journal Volumes", - // TODO New key - Add a translation - "item.page.journal-volumes": "Journal Volumes", - // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "ISSN журнала", @@ -4372,10 +4019,6 @@ // "item.page.volume-title": "Volume Title", "item.page.volume-title": "Название тома", - // "item.page.dcterms.spatial": "Geospatial point", - // TODO New key - Add a translation - "item.page.dcterms.spatial": "Geospatial point", - // "item.search.results.head": "Item Search Results", "item.search.results.head": "Результаты поиска элементов", @@ -4454,14 +4097,9 @@ // "item.page.abstract": "Abstract", "item.page.abstract": "Аннотация", - // "item.page.author": "Author", - // TODO Source message changed - Revise the translation + // "item.page.author": "Authors", "item.page.author": "Авторы", - // "item.page.authors": "Authors", - // TODO New key - Add a translation - "item.page.authors": "Authors", - // "item.page.citation": "Citation", "item.page.citation": "Цитирование", @@ -4507,10 +4145,6 @@ // "item.page.link.simple": "Simple item page", "item.page.link.simple": "Простая страница элемента", - // "item.page.options": "Options", - // TODO New key - Add a translation - "item.page.options": "Options", - // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", @@ -4592,10 +4226,6 @@ // "item.preview.dc.date.issued": "Published date:", "item.preview.dc.date.issued": "Дата публикации:", - // "item.preview.dc.description": "Description:", - // TODO New key - Add a translation - "item.preview.dc.description": "Description:", - // "item.preview.dc.description.abstract": "Abstract:", "item.preview.dc.description.abstract": "Резюме:", @@ -4614,44 +4244,12 @@ // "item.preview.dc.type": "Type:", "item.preview.dc.type": "Тип:", - // "item.preview.oaire.version": "Version", - // TODO New key - Add a translation - "item.preview.oaire.version": "Version", - // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "Выпуск", // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "Том", - // "item.preview.oaire.citation.title": "Citation container", - // TODO New key - Add a translation - "item.preview.oaire.citation.title": "Citation container", - - // "item.preview.oaire.citation.startPage": "Citation start page", - // TODO New key - Add a translation - "item.preview.oaire.citation.startPage": "Citation start page", - - // "item.preview.oaire.citation.endPage": "Citation end page", - // TODO New key - Add a translation - "item.preview.oaire.citation.endPage": "Citation end page", - - // "item.preview.dc.relation.hasversion": "Has version", - // TODO New key - Add a translation - "item.preview.dc.relation.hasversion": "Has version", - - // "item.preview.dc.relation.ispartofseries": "Is part of series", - // TODO New key - Add a translation - "item.preview.dc.relation.ispartofseries": "Is part of series", - - // "item.preview.dc.rights": "Rights", - // TODO New key - Add a translation - "item.preview.dc.rights": "Rights", - - // "item.preview.dc.identifier.other": "Other Identifier", - // TODO Source message changed - Revise the translation - "item.preview.dc.identifier.other": "Другой идентификатор:", - // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4679,20 +4277,12 @@ // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", - // "item.preview.person.affiliation.name": "Affiliations:", - // TODO New key - Add a translation - "item.preview.person.affiliation.name": "Affiliations:", - // "item.preview.project.funder.name": "Funder:", "item.preview.project.funder.name": "Спонсор:", // "item.preview.project.funder.identifier": "Funder Identifier:", "item.preview.project.funder.identifier": "Идентификатор спонсора:", - // "item.preview.project.investigator": "Project Investigator", - // TODO New key - Add a translation - "item.preview.project.investigator": "Project Investigator", - // "item.preview.oaire.awardNumber": "Funding ID:", "item.preview.oaire.awardNumber": "ID финансирования:", @@ -4729,26 +4319,6 @@ // "item.preview.dspace.entity.type": "Entity Type:", "item.preview.dspace.entity.type": "Тип сущности:", - // "item.preview.creativework.publisher": "Publisher", - // TODO New key - Add a translation - "item.preview.creativework.publisher": "Publisher", - - // "item.preview.creativeworkseries.issn": "ISSN", - // TODO New key - Add a translation - "item.preview.creativeworkseries.issn": "ISSN", - - // "item.preview.dc.identifier.issn": "ISSN", - // TODO New key - Add a translation - "item.preview.dc.identifier.issn": "ISSN", - - // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", - // TODO New key - Add a translation - "item.preview.dc.identifier.openalex": "OpenAlex Identifier", - - // "item.preview.dc.description": "Description", - // TODO New key - Add a translation - "item.preview.dc.description": "Description", - // "item.select.confirm": "Confirm selected", "item.select.confirm": "Подтвердить выбранное", @@ -5067,10 +4637,6 @@ // "journal.page.publisher": "Publisher", "journal.page.publisher": "Издатель", - // "journal.page.options": "Options", - // TODO New key - Add a translation - "journal.page.options": "Options", - // "journal.page.titleprefix": "Journal: ", "journal.page.titleprefix": "Журнал: ", @@ -5107,10 +4673,6 @@ // "journalissue.page.number": "Number", "journalissue.page.number": "Номер", - // "journalissue.page.options": "Options", - // TODO New key - Add a translation - "journalissue.page.options": "Options", - // "journalissue.page.titleprefix": "Journal Issue: ", "journalissue.page.titleprefix": "Выпуск журнала: ", @@ -5129,10 +4691,6 @@ // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "Дата выпуска", - // "journalvolume.page.options": "Options", - // TODO New key - Add a translation - "journalvolume.page.options": "Options", - // "journalvolume.page.titleprefix": "Journal Volume: ", "journalvolume.page.titleprefix": "Том журнала: ", @@ -5250,10 +4808,6 @@ // "login.form.password": "Password", "login.form.password": "Пароль", - // "login.form.saml": "Log in with SAML", - // TODO New key - Add a translation - "login.form.saml": "Log in with SAML", - // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Войти через Shibboleth", @@ -5350,10 +4904,6 @@ // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "Сообщества и коллекции", - // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", - // TODO New key - Add a translation - "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", - // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "Панель управления", @@ -5426,6 +4976,18 @@ // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "Закрепить боковую панель", + // "menu.section.icon.processes": "Processes Health", + "menu.section.icon.processes": "Раздел меню состояния процессов", + + // "menu.section.icon.registries": "Registries menu section", + "menu.section.icon.registries": "Раздел меню реестров", + + // "menu.section.icon.statistics_task": "Statistics Task menu section", + "menu.section.icon.statistics_task": "Раздел меню задач статистики", + + // "menu.section.icon.workflow": "Administer workflow menu section", + "menu.section.icon.workflow": "Раздел меню управления рабочим процессом", + // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "Открепить боковую панель", @@ -5633,10 +5195,6 @@ // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "Кураторские элементы", - // "mydspace.status": "My DSpace status:", - // TODO New key - Add a translation - "mydspace.status": "My DSpace status:", - // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "В архиве", @@ -5733,21 +5291,9 @@ // "nav.user.description": "User profile bar", "nav.user.description": "Панель профиля пользователя", - // "listelement.badge.dso-type": "Item type:", - // TODO New key - Add a translation - "listelement.badge.dso-type": "Item type:", - // "none.listelement.badge": "Item", "none.listelement.badge": "Элемент", - // "publication-claim.title": "Publication claim", - // TODO New key - Add a translation - "publication-claim.title": "Publication claim", - - // "publication-claim.source.description": "Below you can see all the sources.", - // TODO New key - Add a translation - "publication-claim.source.description": "Below you can see all the sources.", - // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "Контроль качества", @@ -5982,10 +5528,6 @@ // "orgunit.page.id": "ID", "orgunit.page.id": "ID", - // "orgunit.page.options": "Options", - // TODO New key - Add a translation - "orgunit.page.options": "Options", - // "orgunit.page.titleprefix": "Organizational Unit: ", "orgunit.page.titleprefix": "Организационное подразделение: ", @@ -6040,10 +5582,6 @@ // "person.page.link.full": "Show all metadata", "person.page.link.full": "Показать все метаданные", - // "person.page.options": "Options", - // TODO New key - Add a translation - "person.page.options": "Options", - // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", @@ -6098,10 +5636,6 @@ // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "Пожалуйста, выберите файл", - // "process.new.parameter.integer.required": "Parameter value is required", - // TODO New key - Add a translation - "process.new.parameter.integer.required": "Parameter value is required", - // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "Требуется значение параметра", @@ -6300,18 +5834,6 @@ // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "Обновить профиль", - // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - // TODO New key - Add a translation - "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - - // "profile.card.accessibility.header": "Accessibility", - // TODO New key - Add a translation - "profile.card.accessibility.header": "Accessibility", - - // "profile.card.accessibility.link": "Go to Accessibility Settings Page", - // TODO New key - Add a translation - "profile.card.accessibility.link": "Go to Accessibility Settings Page", - // "profile.card.identify": "Identify", "profile.card.identify": "Идентификация", @@ -6423,10 +5945,6 @@ // "project.page.keyword": "Keywords", "project.page.keyword": "Ключевые слова", - // "project.page.options": "Options", - // TODO New key - Add a translation - "project.page.options": "Options", - // "project.page.status": "Status", "project.page.status": "Статус", @@ -6457,10 +5975,6 @@ // "publication.page.publisher": "Publisher", "publication.page.publisher": "Издатель", - // "publication.page.options": "Options", - // TODO New key - Add a translation - "publication.page.options": "Options", - // "publication.page.titleprefix": "Publication: ", "publication.page.titleprefix": "Публикация: ", @@ -6572,10 +6086,6 @@ // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "Граф OpenAIRE", - // "suggestion.source.openalex": "OpenAlex", - // TODO New key - Add a translation - "suggestion.source.openalex": "OpenAlex", - // "suggestion.from.source": "from the ", "suggestion.from.source": "из ", @@ -6720,109 +6230,68 @@ // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "Не удалось добавить связь", - // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - - // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - - // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - - // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - - // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - - // "relationships.Publication.isContributorOfPublication.Person": "Contributor", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.Person": "Contributor", + // "relationships.isAuthorOf": "Authors", + "relationships.isAuthorOf": "Авторы", - // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + // "relationships.isAuthorOf.Person": "Authors (persons)", + "relationships.isAuthorOf.Person": "Авторы (физические лица)", - // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + // "relationships.isAuthorOf.OrgUnit": "Authors (organizational units)", + "relationships.isAuthorOf.OrgUnit": "Авторы (организационные единицы)", - // "relationships.Person.isProjectOfPerson.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Person.isProjectOfPerson.Project": "Research Projects", + // "relationships.isIssueOf": "Journal Issues", + "relationships.isIssueOf": "Выпуски журналов", - // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + // "relationships.isIssueOf.JournalIssue": "Journal Issue", + "relationships.isIssueOf.JournalIssue": "Выпуск журнала", - // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + // "relationships.isJournalIssueOf": "Journal Issue", + "relationships.isJournalIssueOf": "Выпуск журнала", - // "relationships.Project.isPublicationOfProject.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Project.isPublicationOfProject.Publication": "Publications", + // "relationships.isJournalOf": "Journals", + "relationships.isJournalOf": "Журналы", - // "relationships.Project.isPersonOfProject.Person": "Authors", - // TODO New key - Add a translation - "relationships.Project.isPersonOfProject.Person": "Authors", + // "relationships.isJournalVolumeOf": "Journal Volume", + "relationships.isJournalVolumeOf": "Том журнала", - // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + // "relationships.isOrgUnitOf": "Organizational Units", + "relationships.isOrgUnitOf": "Организационные единицы", - // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - // TODO New key - Add a translation - "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + // "relationships.isPersonOf": "Authors", + "relationships.isPersonOf": "Авторы", - // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + // "relationships.isProjectOf": "Research Projects", + "relationships.isProjectOf": "Научные проекты", - // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - // TODO New key - Add a translation - "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + // "relationships.isPublicationOf": "Publications", + "relationships.isPublicationOf": "Публикации", - // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + // "relationships.isPublicationOfJournalIssue": "Articles", + "relationships.isPublicationOfJournalIssue": "Статьи", - // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + // "relationships.isSingleJournalOf": "Journal", + "relationships.isSingleJournalOf": "Журнал", - // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + // "relationships.isSingleVolumeOf": "Journal Volume", + "relationships.isSingleVolumeOf": "Том журнала", - // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + // "relationships.isVolumeOf": "Journal Volumes", + "relationships.isVolumeOf": "Тома журналов", - // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + // "relationships.isVolumeOf.JournalVolume": "Journal Volume", + "relationships.isVolumeOf.JournalVolume": "Том журнала", - // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", - // TODO New key - Add a translation - "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + // "relationships.isContributorOf": "Contributors", + "relationships.isContributorOf": "Авторы", - // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - // TODO New key - Add a translation - "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + // "relationships.isContributorOf.OrgUnit": "Contributor (Organizational Unit)", + "relationships.isContributorOf.OrgUnit": "Автор (организационная единица)", - // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + // "relationships.isContributorOf.Person": "Contributor", + "relationships.isContributorOf.Person": "Автор", - // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + // "relationships.isFundingAgencyOf.OrgUnit": "Funder", + "relationships.isFundingAgencyOf.OrgUnit": "Финансирующая организация", // "repository.image.logo": "Repository logo", "repository.image.logo": "Логотип репозитория", @@ -7069,9 +6538,6 @@ // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "Описание файла", - // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", - // TODO New key - Add a translation - "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "Тип", @@ -7121,10 +6587,6 @@ // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", - // "search.filters.applied.f.point": "Coordinates", - // TODO New key - Add a translation - "search.filters.applied.f.point": "Coordinates", - // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "Название", @@ -7164,14 +6626,6 @@ // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "Поиск по дате публикации", - // "search.filters.filter.creativeDatePublished.min.label": "Start", - // TODO New key - Add a translation - "search.filters.filter.creativeDatePublished.min.label": "Start", - - // "search.filters.filter.creativeDatePublished.max.label": "End", - // TODO New key - Add a translation - "search.filters.filter.creativeDatePublished.max.label": "End", - // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "Редактор", @@ -7247,10 +6701,6 @@ // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "Имя файла", - // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", - // TODO New key - Add a translation - "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", - // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "Имя файла", @@ -7338,14 +6788,6 @@ // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "Поиск по дате основания", - // "search.filters.filter.organizationFoundingDate.min.label": "Start", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.min.label": "Start", - - // "search.filters.filter.organizationFoundingDate.max.label": "End", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.max.label": "End", - // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "Область", @@ -7397,18 +6839,6 @@ // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "Поиск по контролю", - // "search.filters.filter.access_status.head": "Access type", - // TODO New key - Add a translation - "search.filters.filter.access_status.head": "Access type", - - // "search.filters.filter.access_status.placeholder": "Access type", - // TODO New key - Add a translation - "search.filters.filter.access_status.placeholder": "Access type", - - // "search.filters.filter.access_status.label": "Search by access type", - // TODO New key - Add a translation - "search.filters.filter.access_status.label": "Search by access type", - // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "Выпуск журнала", @@ -7433,14 +6863,6 @@ // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "Нет", - // "search.filters.has_geospatial_metadata.true": "Yes", - // TODO New key - Add a translation - "search.filters.has_geospatial_metadata.true": "Yes", - - // "search.filters.has_geospatial_metadata.false": "No", - // TODO New key - Add a translation - "search.filters.has_geospatial_metadata.false": "No", - // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "Нет", @@ -7519,10 +6941,6 @@ // "search.results.empty": "Your search returned no results.", "search.results.empty": "По вашему запросу нет результатов.", - // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", - // TODO New key - Add a translation - "search.results.geospatial-map.empty": "No results on this page with geospatial locations", - // "search.results.view-result": "View", "search.results.view-result": "Просмотр", @@ -7580,10 +6998,6 @@ // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "Показать в виде списка", - // "search.view-switch.show-geospatialMap": "Show as map", - // TODO New key - Add a translation - "search.view-switch.show-geospatialMap": "Show as map", - // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "Снять выделение с элемента", @@ -7788,10 +7202,6 @@ // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", - // "submission.import-external.source.dataciteProject": "DataCite", - // TODO New key - Add a translation - "submission.import-external.source.dataciteProject": "DataCite", - // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", @@ -7849,38 +7259,6 @@ // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Реестр научных организаций (ROR)", - // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", - // TODO New key - Add a translation - "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", - - // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", - // TODO New key - Add a translation - "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", - - // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", - // TODO New key - Add a translation - "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", - - // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", - // TODO New key - Add a translation - "submission.import-external.source.openalexPerson": "OpenAlex Search by name", - - // "submission.import-external.source.openalexJournal": "OpenAlex Journals", - // TODO New key - Add a translation - "submission.import-external.source.openalexJournal": "OpenAlex Journals", - - // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", - // TODO New key - Add a translation - "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", - - // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", - // TODO New key - Add a translation - "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", - - // "submission.import-external.source.openalexFunder": "OpenAlex Funders", - // TODO New key - Add a translation - "submission.import-external.source.openalexFunder": "OpenAlex Funders", - // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "Предварительный просмотр элемента", @@ -8130,10 +7508,6 @@ // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Локальные выпуски журналов ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Локальные тома журналов ({{ count }})", @@ -8182,26 +7556,6 @@ // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Журналы Sherpa по ISSN ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Поиск финансирующих агентств", @@ -8232,10 +7586,6 @@ // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Финансирующая организация проекта", - // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Поиск...", @@ -8251,10 +7601,6 @@ // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "Выпуски журнала", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Тома журнала", @@ -8318,10 +7664,6 @@ // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Выбранные журналы", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Выбранный том журнала", @@ -8412,26 +7754,6 @@ // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Результаты поиска", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "Результаты поиска", @@ -8537,10 +7859,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Лицензия Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Переработать", @@ -8706,18 +8024,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Загрузка прошла успешно", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Если отмечено, элемент будет обнаруживаться при поиске/просмотре. Если не отмечено, элемент будет доступен только по прямой ссылке и не появится в поиске/просмотре.", @@ -9006,10 +8312,6 @@ // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "Подписаться", - // "subscriptions.unsubscribe": "Unsubscribe", - // TODO New key - Add a translation - "subscriptions.unsubscribe": "Unsubscribe", - // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "Подписки", @@ -9082,8 +8384,7 @@ // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "Подписанный элемент был удалён или у вас нет прав для его просмотра.", - // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", - // TODO Source message changed - Revise the translation + // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a Community or Collection, use the subscription button on the object's page.", "subscriptions.table.empty.message": "У вас нет подписок. Чтобы подписаться на обновления по электронной почте для сообщества или коллекции, используйте кнопку подписки на странице объекта.", // "thumbnail.default.alt": "Thumbnail Image", @@ -9925,7 +9226,6 @@ "ldn-registered-services.new": "НОВЫЙ", // "ldn-registered-services.new.breadcrumbs": "Registered Services", "ldn-registered-services.new.breadcrumbs": "Зарегистрированные сервисы", - // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "Включено", // "ldn-service.overview.table.disabled": "Disabled", @@ -9935,6 +9235,7 @@ // "ldn-service.overview.table.clickToDisable": "Click to disable", "ldn-service.overview.table.clickToDisable": "Нажмите, чтобы отключить", + // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "Редактировать сервис", // "ldn-create-service.title": "Create service", @@ -9982,6 +9283,7 @@ // "ldn-service.form.label.placeholder.default-select": "Select a pattern", "ldn-service.form.label.placeholder.default-select": "Выберите шаблон", + // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "Подтвердить и принять", // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", @@ -9989,6 +9291,7 @@ // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-accept.category": "Подтверждения", + // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "Подтвердить и отклонить", // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", @@ -9996,6 +9299,7 @@ // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-reject.category": "Подтверждения", + // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "Подтвердить и предварительно принять", // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", @@ -10010,6 +9314,7 @@ // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-reject.category": "Подтверждения", + // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "Объявить об одобрении", // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", @@ -10024,6 +9329,7 @@ // "ldn-service.form.pattern.announce-ingest.category": "Announcements", "ldn-service.form.pattern.announce-ingest.category": "Объявления", + // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "Объявить о взаимосвязи", // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", @@ -10031,6 +9337,7 @@ // "ldn-service.form.pattern.announce-relationship.category": "Announcements", "ldn-service.form.pattern.announce-relationship.category": "Объявления", + // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "Объявить о рецензии", // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", @@ -10038,6 +9345,7 @@ // "ldn-service.form.pattern.announce-review.category": "Announcements", "ldn-service.form.pattern.announce-review.category": "Объявления", + // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "Объявить о результате сервиса", // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", @@ -10045,6 +9353,7 @@ // "ldn-service.form.pattern.announce-service-result.category": "Announcements", "ldn-service.form.pattern.announce-service-result.category": "Объявления", + // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "Запросить одобрение", // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", @@ -10059,6 +9368,7 @@ // "ldn-service.form.pattern.request-ingest.category": "Requests", "ldn-service.form.pattern.request-ingest.category": "Запросы", + // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "Запросить рецензию", // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", @@ -10066,6 +9376,7 @@ // "ldn-service.form.pattern.request-review.category": "Requests", "ldn-service.form.pattern.request-review.category": "Запросы", + // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "Отменить предложение", // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", @@ -10196,10 +9507,6 @@ // "item.page.endorsement": "Endorsement", "item.page.endorsement": "Подтверждение", - // "item.page.places": "Related places", - // TODO New key - Add a translation - "item.page.places": "Related places", - // "item.page.review": "Review", "item.page.review": "Обзор", @@ -10220,15 +9527,15 @@ // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "Ниже вы можете увидеть все темы, полученные из подписок на {{source}} по поводу", + // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", "quality-assurance.events.description": "Ниже список всех предложений по выбранной теме {{topic}}, связанной с {{source}}.", // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "Ниже список всех предложений по выбранной теме {{topic}}, связанной с {{source}} и ", - // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", - // TODO New key - Add a translation - "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + // "quality-assurance.event.table.event.message.serviceUrl": "Service URL:", + "quality-assurance.event.table.event.message.serviceUrl": "URL услуги:", // "quality-assurance.event.table.event.message.link": "Link:", "quality-assurance.event.table.event.message.link": "Ссылка:", @@ -10323,10 +9630,6 @@ // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "Запрошенный {{ offerType }} для {{ serviceName }} был отклонён.", - // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", - // TODO New key - Add a translation - "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", - // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "Запрошенный {{ offerType }} для {{ serviceName }} находится в ожидании.", @@ -10351,14 +9654,6 @@ // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "Закрыть модальное окно", - // "ldn-service-usesActorEmailId": "Requires actor email in notifications", - // TODO New key - Add a translation - "ldn-service-usesActorEmailId": "Requires actor email in notifications", - - // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", - // TODO New key - Add a translation - "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", - // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "Тип элемента — статья журнала или набор данных", @@ -10374,6 +9669,8 @@ // "doi-filter.label": "DOI filter", "doi-filter.label": "Фильтр DOI", + + // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "Тип документа равен driver", @@ -10473,6 +9770,7 @@ // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", "admin-notify-logs.NOTIFY.incoming.untrusted": "Сейчас отображаются: Недоверенные уведомления", + // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Недоверенный", @@ -10551,16 +9849,13 @@ // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "Уведомление о связи", - // "search.filters.applied.f.access_status": "Access type", - // TODO New key - Add a translation - "search.filters.applied.f.access_status": "Access type", - // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "Время последней обработки ", // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "Минимальный диапазон", + // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "Максимальный диапазон", @@ -10914,15 +10209,15 @@ // "form.date-picker.placeholder.year": "Year", // TODO New key - Add a translation - "form.date-picker.placeholder.year": "Year", + "form.date-picker.placeholder.year": "Год", // "form.date-picker.placeholder.month": "Month", // TODO New key - Add a translation - "form.date-picker.placeholder.month": "Month", + "form.date-picker.placeholder.month": "Месяц", // "form.date-picker.placeholder.day": "Day", // TODO New key - Add a translation - "form.date-picker.placeholder.day": "Day", + "form.date-picker.placeholder.day": "День", // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "Лицензия Creative Commons", @@ -10945,245 +10240,30 @@ // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "Страница будет перезагружена. Выбран фильтр {{ filter }}.", + // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", // TODO New key - Add a translation - "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", + "live-region.ordering.instructions": "Нажмите пробел, чтобы изменить порядок {{ itemName }}.", // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // TODO New key - Add a translation - "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + "live-region.ordering.status": "{{ itemName }}, захвачено. Текущая позиция в списке: {{ index }} из {{ length }}. Нажимайте клавиши со стрелками вверх и вниз, чтобы изменить положение, пробел для удаления, Escape для отмены.", // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // TODO New key - Add a translation - "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + "live-region.ordering.moved": "{{ itemName }} перемещен в позицию {{ index }} на {{ length }}. Нажимайте клавиши со стрелками вверх и вниз, чтобы изменить положение, пробел, чтобы опустить, Escape, чтобы отменить.", // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", // TODO New key - Add a translation - "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", + "live-region.ordering.dropped": "{{ itemName }}, перемещен в позицию {{ index }} длины {{ length }}.", // "dynamic-form-array.sortable-list.label": "Sortable list", // TODO New key - Add a translation - "dynamic-form-array.sortable-list.label": "Sortable list", - - // "external-login.component.or": "or", - // TODO New key - Add a translation - "external-login.component.or": "or", - - // "external-login.confirmation.header": "Information needed to complete the login process", - // TODO New key - Add a translation - "external-login.confirmation.header": "Information needed to complete the login process", - - // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", - // TODO New key - Add a translation - "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", - - // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", - // TODO New key - Add a translation - "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", - - // "external-login.confirm-email.header": "Confirm or update email", - // TODO New key - Add a translation - "external-login.confirm-email.header": "Confirm or update email", - - // "external-login.confirmation.email-required": "Email is required.", - // TODO New key - Add a translation - "external-login.confirmation.email-required": "Email is required.", - - // "external-login.confirmation.email-label": "User Email", - // TODO New key - Add a translation - "external-login.confirmation.email-label": "User Email", - - // "external-login.confirmation.email-invalid": "Invalid email format.", - // TODO New key - Add a translation - "external-login.confirmation.email-invalid": "Invalid email format.", - - // "external-login.confirm.button.label": "Confirm this email", - // TODO New key - Add a translation - "external-login.confirm.button.label": "Confirm this email", - - // "external-login.confirm-email-sent.header": "Confirmation email sent", - // TODO New key - Add a translation - "external-login.confirm-email-sent.header": "Confirmation email sent", - - // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", - // TODO New key - Add a translation - "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", - - // "external-login.provide-email.header": "Provide email", - // TODO New key - Add a translation - "external-login.provide-email.header": "Provide email", - - // "external-login.provide-email.button.label": "Send Verification link", - // TODO New key - Add a translation - "external-login.provide-email.button.label": "Send Verification link", - - // "external-login-validation.review-account-info.header": "Review your account information", - // TODO New key - Add a translation - "external-login-validation.review-account-info.header": "Review your account information", - - // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", - // TODO New key - Add a translation - "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", - - // "external-login-validation.review-account-info.table.header.information": "Information", - // TODO New key - Add a translation - "external-login-validation.review-account-info.table.header.information": "Information", - - // "external-login-validation.review-account-info.table.header.received-value": "Received value", - // TODO New key - Add a translation - "external-login-validation.review-account-info.table.header.received-value": "Received value", - - // "external-login-validation.review-account-info.table.header.current-value": "Current value", - // TODO New key - Add a translation - "external-login-validation.review-account-info.table.header.current-value": "Current value", - - // "external-login-validation.review-account-info.table.header.action": "Override", - // TODO New key - Add a translation - "external-login-validation.review-account-info.table.header.action": "Override", - - // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", - // TODO New key - Add a translation - "external-login-validation.review-account-info.table.row.not-applicable": "N/A", - - // "on-label": "ON", - // TODO New key - Add a translation - "on-label": "ON", - - // "off-label": "OFF", - // TODO New key - Add a translation - "off-label": "OFF", + "dynamic-form-array.sortable-list.label": "Сортируемый список", - // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", - // TODO New key - Add a translation - "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", - - // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", - // TODO New key - Add a translation - "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", - - // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", - // TODO New key - Add a translation - "review-account-info.alert.error.content": "Something went wrong. Please try again later.", - - // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", - // TODO New key - Add a translation - "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", - - // "external-login.error.notification": "There was an error while processing your request. Please try again later.", - // TODO New key - Add a translation - "external-login.error.notification": "There was an error while processing your request. Please try again later.", - - // "external-login.connect-to-existing-account.label": "Connect to an existing user", - // TODO New key - Add a translation - "external-login.connect-to-existing-account.label": "Connect to an existing user", - - // "external-login.modal.label.close": "Close", - // TODO New key - Add a translation - "external-login.modal.label.close": "Close", - - // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", - // TODO New key - Add a translation - "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", - - // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", - // TODO New key - Add a translation - "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", - - // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", - // TODO New key - Add a translation - "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", - - // "external-login-page.orcid-confirmation.firstname": "First name", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.firstname": "First name", - - // "external-login-page.orcid-confirmation.firstname.label": "First name", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.firstname.label": "First name", - - // "external-login-page.orcid-confirmation.lastname": "Last name", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.lastname": "Last name", - - // "external-login-page.orcid-confirmation.lastname.label": "Last name", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.lastname.label": "Last name", - - // "external-login-page.orcid-confirmation.netid": "Account Identifier", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.netid": "Account Identifier", - - // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", - - // "external-login-page.orcid-confirmation.email": "Email", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.email": "Email", - - // "external-login-page.orcid-confirmation.email.label": "Email", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.email.label": "Email", - - // "search.filters.access_status.open.access": "Open access", - // TODO New key - Add a translation - "search.filters.access_status.open.access": "Open access", - - // "search.filters.access_status.restricted": "Restricted access", - // TODO New key - Add a translation - "search.filters.access_status.restricted": "Restricted access", - - // "search.filters.access_status.embargo": "Embargoed access", - // TODO New key - Add a translation - "search.filters.access_status.embargo": "Embargoed access", - - // "search.filters.access_status.metadata.only": "Metadata only", - // TODO New key - Add a translation - "search.filters.access_status.metadata.only": "Metadata only", - - // "search.filters.access_status.unknown": "Unknown", - // TODO New key - Add a translation - "search.filters.access_status.unknown": "Unknown", - - // "metadata-export-filtered-items.tooltip": "Export report output as CSV", - // TODO New key - Add a translation - "metadata-export-filtered-items.tooltip": "Export report output as CSV", - - // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", - // TODO New key - Add a translation - "metadata-export-filtered-items.submit.success": "CSV export succeeded.", - - // "metadata-export-filtered-items.submit.error": "CSV export failed.", - // TODO New key - Add a translation - "metadata-export-filtered-items.submit.error": "CSV export failed.", - - // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", - // TODO New key - Add a translation - "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", - - // "embargo.listelement.badge": "Embargo until {{ date }}", - // TODO New key - Add a translation - "embargo.listelement.badge": "Embargo until {{ date }}", - - // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", - // TODO New key - Add a translation - "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", - - // "file-download-link.request-copy": "Request a copy of ", - // TODO New key - Add a translation - "file-download-link.request-copy": "Request a copy of ", - - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", + // "browse.metadata.srsc.tree.descrption": "Select a subject to add as search filter", + "browse.metadata.srsc.tree.descrption": "Выберите тему для добавления в качестве фильтра поиска", - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", -} \ No newline at end of file +} diff --git a/src/assets/i18n/sr-cyr.json5 b/src/assets/i18n/sr-cyr.json5 index ffe2b5d6876..efeb74806ac 100644 --- a/src/assets/i18n/sr-cyr.json5 +++ b/src/assets/i18n/sr-cyr.json5 @@ -3111,26 +3111,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Грешка при преузимању заједница највишег нивоа", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Морате доделити ову лиценцу да бисте довршили свој поднесак. Ако у овом тренутку нисте у могућности да доделите ову лиценцу, можете да сачувате свој рад и вратите се касније или уклоните поднесак.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9030,10 +9017,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative Commons лиценца", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Рециклажа", @@ -9204,18 +9187,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Отпремање је успешно", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Када је означено, ова ставка ће бити видљива у претрази/прегледу. Када није означено, ставка ће бити доступна само преко директне везе и никада се неће појавити у претрази/прегледу.", @@ -12072,17 +12043,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/sr-lat.json5 b/src/assets/i18n/sr-lat.json5 index ba406a79cd7..8f32d44ecae 100644 --- a/src/assets/i18n/sr-lat.json5 +++ b/src/assets/i18n/sr-lat.json5 @@ -3110,26 +3110,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Greška pri preuzimanju zajednica najvišeg nivoa", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Morate dodeliti ovu licencu da biste dovršili svoj podnesak. Ako u ovom trenutku niste u mogućnosti da dodelite ovu licencu, možete da sačuvate svoj rad i vratite se kasnije ili uklonite podnesak.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9028,10 +9015,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative Commons licenca", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciklaža", @@ -9202,18 +9185,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Otpremanje je uspešno", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Kada je označeno, ova stavka će biti vidljiva u pretrazi/pregledu. Kada nije označeno, stavka će biti dostupna samo preko direktne veze i nikada se neće pojaviti u pretrazi/pregledu.", @@ -12069,17 +12040,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/sv.json5 b/src/assets/i18n/sv.json5 index 5eab130fc4c..8bac53d0503 100644 --- a/src/assets/i18n/sv.json5 +++ b/src/assets/i18n/sv.json5 @@ -3255,26 +3255,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Ett fel uppstod när enheter på toppnivå hämtades", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Du måste godkänna dessa villkor för att skutföra registreringen. Om detta inte är möjligt så kan du spara nu och återvända hit senare, eller radera bidraget.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9559,10 +9546,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons licens", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Återanvänd", @@ -9737,18 +9720,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Uppladdningen lyckades", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "När denna är markerad kommer posten att vara sökbar och visas i listor. I annat fall så kommer den bara att kunna nås med en direktlänk.", @@ -12880,17 +12851,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/sw.json5 b/src/assets/i18n/sw.json5 index d9cdd752e34..2d969c19464 100644 --- a/src/assets/i18n/sw.json5 +++ b/src/assets/i18n/sw.json5 @@ -3847,26 +3847,14 @@ // TODO New key - Add a translation "error.top-level-communities": "Error fetching top-level communities", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -11102,10 +11090,6 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", // TODO New key - Add a translation "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -11326,18 +11310,6 @@ // TODO New key - Add a translation "submission.sections.upload.upload-successful": "Upload successful", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -14558,17 +14530,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/tr.json5 b/src/assets/i18n/tr.json5 index 20f3d365ff4..43781f5a5a9 100644 --- a/src/assets/i18n/tr.json5 +++ b/src/assets/i18n/tr.json5 @@ -3358,26 +3358,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Üst düzey komüniteleri alma hatası", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Gönderinizi tamamlamak için bu lisansı vermelisiniz. Bu lisansı şu anda veremiyorsanız, çalışmanızı kaydedebilir ve daha sonra geri gönderebilir veya gönderimi kaldırabilirsiniz.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Bu giriş mevcut modelle sınırlandırılmıştır.: {{ pattern }}.", @@ -9703,10 +9690,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Yaratıcı Ortak Lisansları", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Geri Dönüştür", @@ -9898,18 +9881,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Yükleme Başarılı", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13074,17 +13045,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/uk.json5 b/src/assets/i18n/uk.json5 index 5d0e7da0639..58c08a82a43 100644 --- a/src/assets/i18n/uk.json5 +++ b/src/assets/i18n/uk.json5 @@ -3378,26 +3378,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Виникла помилка при отриманні фонду верхнього рівня", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Ви повинні дати згоду на умови ліцензії, щоб завершити submission. Якщо ви не можете погодитись на умови ліцензії на даний момент, ви можете зберегти свою роботу та повернутися пізніше або видалити submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Вхідна інформація обмежена поточним шаблоном: {{ pattern }}.", @@ -9733,10 +9720,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "СС ліцензії", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Переробити", @@ -9928,18 +9911,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Успішно завантажено", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13096,17 +13067,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/vi.json5 b/src/assets/i18n/vi.json5 index e26476768ca..6ac69abcb3c 100644 --- a/src/assets/i18n/vi.json5 +++ b/src/assets/i18n/vi.json5 @@ -3142,26 +3142,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Lỗi tìm kiếm đơn vị lớn", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Bạn phải đồng ý với giấy phép này để hoàn thành tài liệu biên mục của mình. Nếu hiện tại bạn không thể đồng ý giấy phép này bạn có thể lưu tài liệu biên mục của mình và quay lại sau hoặc xóa nội dung đã biên mục.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9153,10 +9140,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Bằng sáng chế", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Tái chế", @@ -9328,18 +9311,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Tải lên thành công", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Khi được chọn biểu ghi này sẽ có thể được tìm thấy trong các chức năng tìm kiếm/duyệt. Khi bỏ chọn biểu ghi sẽ chỉ có sẵn qua đường dẫn trực tiếp và sẽ không bao giờ xuất hiện trong tìm kiếm/duyệt.", @@ -12295,17 +12266,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file From 24ed3ea2fc40220c2ac90ba2b65e608ba5bdfa2f Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Thu, 29 Jan 2026 16:23:48 +0100 Subject: [PATCH 09/17] Revert "[DURACOM-413] restore changes to i18n files" This reverts commit 5df8daaa0b93cb3bc0c003322c4373e5bd5019c8. --- src/assets/i18n/ar.json5 | 53 +- src/assets/i18n/ca.json5 | 45 +- src/assets/i18n/el.json5 | 45 +- src/assets/i18n/es.json5 | 49 +- src/assets/i18n/fi.json5 | 47 +- src/assets/i18n/fr.json5 | 57 +- src/assets/i18n/gd.json5 | 47 +- src/assets/i18n/gu.json5 | 5665 ++++++++++++++++++++++++-------- src/assets/i18n/hi.json5 | 45 +- src/assets/i18n/it.json5 | 73 +- src/assets/i18n/ja.json5 | 44 +- src/assets/i18n/kk.json5 | 47 +- src/assets/i18n/lv.json5 | 45 +- src/assets/i18n/ml.json5 | 5845 ---------------------------------- src/assets/i18n/mr.json5 | 4637 ++++++++++++++++++++++++--- src/assets/i18n/nl.json5 | 45 +- src/assets/i18n/od.json5 | 5659 -------------------------------- src/assets/i18n/pl.json5 | 45 +- src/assets/i18n/pt-BR.json5 | 40 +- src/assets/i18n/pt-PT.json5 | 47 +- src/assets/i18n/ru.json5 | 1172 ++++++- src/assets/i18n/sr-cyr.json5 | 45 +- src/assets/i18n/sr-lat.json5 | 45 +- src/assets/i18n/sv.json5 | 47 +- src/assets/i18n/sw.json5 | 44 +- src/assets/i18n/te.json5 | 5491 -------------------------------- src/assets/i18n/tr.json5 | 47 +- src/assets/i18n/uk.json5 | 47 +- src/assets/i18n/vi.json5 | 45 +- 29 files changed, 10657 insertions(+), 18906 deletions(-) delete mode 100644 src/assets/i18n/ml.json5 delete mode 100644 src/assets/i18n/od.json5 delete mode 100644 src/assets/i18n/te.json5 diff --git a/src/assets/i18n/ar.json5 b/src/assets/i18n/ar.json5 index 4a4f7589d4c..3390e4efbe4 100644 --- a/src/assets/i18n/ar.json5 +++ b/src/assets/i18n/ar.json5 @@ -2885,12 +2885,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "حدث خطأ أثناء جلب مجتمعات المستوى الأعلى", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "يجب عليك منح هذا الترخيص لإكمال عملية التقديم الخاصة بك. إذا لم تتمكن من منح هذا الترخيص في هذا الوقت، يمكنك حفظ عملك والعودة لاحقاً أو إزالة التقديم.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "يجب عليك منح رخصة المشاع الإبداعي هذه لإكمال تقديمك. إذا لم تتمكن من منح الرخصة في هذا الوقت، يمكنك حفظ عملك والعودة لاحقًا أو إزالة التقديم.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "هذا الإدخال مقيد بالنمط الحالي: {{ pattern }}.", @@ -4518,7 +4531,8 @@ "item.preview.dc.rights": "الحقوق", // "item.preview.dc.identifier.other": "Other Identifier", - "item.preview.dc.identifier.other": "معرف آخر", + // TODO Source message changed - Revise the translation + "item.preview.dc.identifier.other": "معرف آخر:", // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4608,7 +4622,8 @@ "item.preview.dc.identifier.openalex": "معرّف OpenAlex", // "item.preview.dc.description": "Description", - "item.preview.dc.description": "الوصف", + // TODO Source message changed - Revise the translation + "item.preview.dc.description": "الوصف:", // "item.select.confirm": "Confirm selected", "item.select.confirm": "تأكيد المحدد", @@ -8317,6 +8332,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "الإبداعية العامة", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "إعادة تدوير", @@ -8482,6 +8501,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "نجح التحميل", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "عند التحديد، ستكون هذه المادة قابلة للاكتشاف في البحث/الاستعراض. عند إلغاء التحديد، ستكون المادة متاحة فقط عبر رابط مباشر ولن تظهر أبدًا في البحث/الاستعراض.", @@ -10869,5 +10900,17 @@ // "file-download-link.request-copy": "Request a copy of ", "file-download-link.request-copy": "طلب نسخة من ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/ca.json5 b/src/assets/i18n/ca.json5 index a984fb254c7..fbd2c8361c4 100644 --- a/src/assets/i18n/ca.json5 +++ b/src/assets/i18n/ca.json5 @@ -2923,12 +2923,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Error en recuperar les comunitats de primer nivell", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Ha de concedir aquesta llicència de dipòsit per completar l'enviament. Si no podeu concedir aquesta llicència en aquest moment, podeu desar el vostre treball i tornar més tard o bé eliminar l'enviament.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Heu de concedir aquesta llicència CC per completar l'enviament. Si no podeu concedir aquesta llicència CC en aquest moment, podeu desar el vostre treball i tornar més tard o bé eliminar l'enviament.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Aquest camp d'entrada està restringit per aquest patró: {{ pattern }}.", @@ -8476,6 +8489,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Llicència Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8641,6 +8658,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Pujada completada amb èxit", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si el marca, l'ítem serà detectable al cercador/navegador. Si el desmarca, l'ítem només estarà disponible mitjançant l'enllaç directe, i no apareixerà al cercar/navegar.", @@ -11098,5 +11127,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/el.json5 b/src/assets/i18n/el.json5 index 64f67ecec35..1dd9181ecd0 100644 --- a/src/assets/i18n/el.json5 +++ b/src/assets/i18n/el.json5 @@ -3213,13 +3213,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Σφάλμα κατά την ανάκτηση κοινοτήτων ανώτατου επιπέδου", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Πρέπει να χορηγήσετε αυτήν την άδεια για να ολοκληρώσετε την υποβολή σας. Εάν δεν μπορείτε να εκχωρήσετε αυτήν την άδεια αυτήν τη στιγμή, μπορείτε να αποθηκεύσετε την εργασία σας και να επιστρέψετε αργότερα ή να καταργήσετε την υποβολή.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9256,6 +9269,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Άδεια Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ανακυκλωνω", @@ -9427,6 +9444,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Επιτυχής μεταφόρτωση", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Όταν είναι επιλεγμένο, αυτό το τεκμήριο θα μπορεί να εντοπιστεί στην αναζήτηση/περιήγηση. Όταν δεν είναι επιλεγμένο, το τεκμήριο θα είναι διαθέσιμο μόνο μέσω απευθείας συνδέσμου και δεν θα εμφανίζεται ποτέ στην αναζήτηση/περιήγηση.", @@ -12402,5 +12431,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/es.json5 b/src/assets/i18n/es.json5 index 7f1b2f4d6f6..2623bf1d5a1 100644 --- a/src/assets/i18n/es.json5 +++ b/src/assets/i18n/es.json5 @@ -2899,12 +2899,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Error al recuperar las comunidades de primer nivel", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Debe conceder esta licencia de depósito para completar el envío. Si no puede conceder esta licencia en este momento, puede guardar su trabajo y regresar más tarde o bien eliminar el envío.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Debe conceder esta licencia CC para completar su envío. Si no puede conceder esta licencia CC en este momento, puede guardar su trabajo y regresar más tarde o bien eliminar el envío.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Esta entrada está restringida por este patrón: {{ pattern }}.", @@ -4571,6 +4584,7 @@ "item.preview.dc.rights": "Rights", // "item.preview.dc.identifier.other": "Other Identifier", + // TODO Source message changed - Revise the translation "item.preview.dc.identifier.other": "Otro identificador:", // "item.preview.dc.relation.issn": "ISSN", @@ -4661,6 +4675,7 @@ "item.preview.dc.identifier.openalex": "Identificador OpenAlex", // "item.preview.dc.description": "Description", + // TODO Source message changed - Revise the translation "item.preview.dc.description": "Descripción:", // "item.select.confirm": "Confirm selected", @@ -8420,6 +8435,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licencia Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8585,6 +8604,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Subida exitosa", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si lo marca, el ítem será detectable en el buscador/navegador. Si lo desmarca, el ítems solo estará disponible mediante el enlace directo, y no aparecerá en el buscador/navegador.", @@ -10975,5 +11006,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/fi.json5 b/src/assets/i18n/fi.json5 index a86f12487c5..5659fe9f6e4 100644 --- a/src/assets/i18n/fi.json5 +++ b/src/assets/i18n/fi.json5 @@ -3106,13 +3106,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Virhe ylätason yhteisöjä noudettaessa", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Tallennusprosessia ei voi päättää, ellet hyväksy julkaisulisenssiä. Voit myös tallentaa tiedot ja jatkaa tallennusta myöhemmin tai poistaa kaikki syöttämäsi tiedot.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Syötteen on noudatettava seuraavaa kaavaa: {{ pattern }}.", @@ -8971,6 +8984,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons -lisenssi", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Kierrätä", @@ -9139,6 +9156,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Lataus valmis", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Kun tämä on valittu, tietue on löydettävissä haussa ja selailtaessa. Kun tätä ei ole valittu, tietue on saatavilla vain suoran linkin kautta, eikä se näy haussa tai selailtaessa.", @@ -12015,5 +12044,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/fr.json5 b/src/assets/i18n/fr.json5 index 46daedcf7fd..b8c5aae9cf9 100644 --- a/src/assets/i18n/fr.json5 +++ b/src/assets/i18n/fr.json5 @@ -2917,12 +2917,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erreur lors de la récupération des communautés de 1er niveau", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Vous devez accepter cette licence pour terminer votre dépôt. Si vous êtes dans l'incapacité d'accepter cette licence actuellement, vous pouvez sauvegarder votre dépôt et y revenir ultérieurement ou le supprimer.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Vous devez approuver cette Licence Creative Commons afin de finaliser votre sumissions. Si vous n'êtes pas en mesure d'approuver la licence pour le moment, vous pouvez souvegarder votre travail pour y revenir plus tard ou supprimer la soumission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Cette entrée est invalide en vertu du modèle actuel : {{ pattern }}.", @@ -4579,6 +4592,10 @@ // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "Droits", + // "item.preview.dc.identifier.other": "Other Identifier", + // TODO Source message changed - Revise the translation + "item.preview.dc.identifier.other": "Autre identifiant :", + // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4666,6 +4683,10 @@ // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "Identifiant OpenAlex", + // "item.preview.dc.description": "Description", + // TODO Source message changed - Revise the translation + "item.preview.dc.description": "Description :", + // "item.select.confirm": "Confirm selected", "item.select.confirm": "Confirmer la sélection", @@ -6952,7 +6973,6 @@ // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "Description du fichier", - // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", "search.filters.applied.f.has_geospatial_metadata": "A l'emplacement géographique", @@ -8386,6 +8406,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licence Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Recycler", @@ -8551,6 +8575,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Téléchargement réussi", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si cette case est cochée, cet Item pourra être découvert dans la recherche/index parcourir. Si cette case n'est pas cochée, l'Item ne sera disponible que via un lien direct et n'apparaîtra jamais dans la recherche/index parcourir.", @@ -10944,4 +10980,17 @@ // "file-download-link.request-copy": "Request a copy of ", "file-download-link.request-copy": "Demander une copie de ", -} + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + + +} \ No newline at end of file diff --git a/src/assets/i18n/gd.json5 b/src/assets/i18n/gd.json5 index 82d1da5d741..ef034bd9478 100644 --- a/src/assets/i18n/gd.json5 +++ b/src/assets/i18n/gd.json5 @@ -3279,13 +3279,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Mearachd a' faighinn choimhearsnachdan sàr-ìre", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Feumaidh tu an cead seo a thoirt gus crìoch a chur air a' chur-a-steach. Mura h-urrainn dhut cead a thoirt an-dràsta is urrainn dhut an obair a shàbhaladh agus tilleadh aig àm eile no an cur-a-steach a thoirt air falbh.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9469,6 +9482,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Cead-cleachdaidh cruthachail", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ath-chuairtich", @@ -9648,6 +9665,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Dh'obraich an luchdachadh suas", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -12795,5 +12824,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/gu.json5 b/src/assets/i18n/gu.json5 index dd6cafa82aa..bb5619807d2 100644 --- a/src/assets/i18n/gu.json5 +++ b/src/assets/i18n/gu.json5 @@ -1,8191 +1,11168 @@ { + // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "તમે આ પેજને ઍક્સેસ કરવા માટે અધિકૃત નથી. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", + // "401.link.home-page": "Take me to the home page", "401.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", + // "401.unauthorized": "Unauthorized", "401.unauthorized": "અનધિકૃત", + // "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.", "403.help": "તમને આ પેજને ઍક્સેસ કરવાની પરવાનગી નથી. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", + // "403.link.home-page": "Take me to the home page", "403.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", + // "403.forbidden": "Forbidden", "403.forbidden": "પ્રતિબંધિત", + // "500.page-internal-server-error": "Service unavailable", "500.page-internal-server-error": "સેવા ઉપલબ્ધ નથી", + // "500.help": "The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.", "500.help": "સર્વર અત્યારે જાળવણી ડાઉનટાઇમ અથવા ક્ષમતા સમસ્યાઓને કારણે તમારી વિનંતીને સેવા આપવા માટે અસમર્થ છે. કૃપા કરીને થોડીવાર પછી ફરી પ્રયાસ કરો.", + // "500.link.home-page": "Take me to the home page", "500.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", + // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ", "404.help": "અમે તે પેજ શોધી શકતા નથી જે તમે શોધી રહ્યા છો. પેજને ખસેડવામાં આવ્યું હશે અથવા કાઢી નાખવામાં આવ્યું હશે. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", + // "404.link.home-page": "Take me to the home page", "404.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", + // "404.page-not-found": "Page not found", "404.page-not-found": "પેજ મળ્યું નથી", + // "error-page.description.401": "Unauthorized", "error-page.description.401": "અનધિકૃત", + // "error-page.description.403": "Forbidden", "error-page.description.403": "પ્રતિબંધિત", + // "error-page.description.500": "Service unavailable", "error-page.description.500": "સેવા ઉપલબ્ધ નથી", + // "error-page.description.404": "Page not found", "error-page.description.404": "પેજ મળ્યું નથી", + // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "ORCID મારફતે લૉગિન દરમિયાન એક ભૂલ આવી. ખાતરી કરો કે તમે DSpace સાથે તમારા ORCID ખાતા ઇમેઇલ સરનામાને શેર કર્યું છે. જો ભૂલ ચાલુ રહે, તો એડમિનિસ્ટ્રેટરને સંપર્ક કરો", + // "listelement.badge.access-status": "Access status:", + // TODO New key - Add a translation + "listelement.badge.access-status": "Access status:", + + // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "એમ્બાર્ગો", + // "access-status.metadata.only.listelement.badge": "Metadata only", "access-status.metadata.only.listelement.badge": "મેટાડેટા માત્ર", + // "access-status.open.access.listelement.badge": "Open Access", "access-status.open.access.listelement.badge": "ઓપન ઍક્સેસ", + // "access-status.restricted.listelement.badge": "Restricted", "access-status.restricted.listelement.badge": "પ્રતિબંધિત", + // "access-status.unknown.listelement.badge": "Unknown", "access-status.unknown.listelement.badge": "અજ્ઞાત", + // "admin.curation-tasks.breadcrumbs": "System curation tasks", "admin.curation-tasks.breadcrumbs": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", + // "admin.curation-tasks.title": "System curation tasks", "admin.curation-tasks.title": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", + // "admin.curation-tasks.header": "System curation tasks", "admin.curation-tasks.header": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", + // "admin.registries.bitstream-formats.breadcrumbs": "Format registry", "admin.registries.bitstream-formats.breadcrumbs": "ફોર્મેટ રજિસ્ટ્રી", + // "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.create.breadcrumbs": "બિટસ્ટ્રીમ ફોર્મેટ", + // "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.", "admin.registries.bitstream-formats.create.failure.content": "નવું બિટસ્ટ્રીમ ફોર્મેટ બનાવતી વખતે એક ભૂલ આવી.", + // "admin.registries.bitstream-formats.create.failure.head": "Failure", "admin.registries.bitstream-formats.create.failure.head": "અસફળતા", + // "admin.registries.bitstream-formats.create.head": "Create bitstream format", "admin.registries.bitstream-formats.create.head": "બિટસ્ટ્રીમ ફોર્મેટ બનાવો", + // "admin.registries.bitstream-formats.create.new": "Add a new bitstream format", "admin.registries.bitstream-formats.create.new": "નવું બિટસ્ટ્રીમ ફોર્મેટ ઉમેરો", + // "admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.", "admin.registries.bitstream-formats.create.success.content": "નવું બિટસ્ટ્રીમ ફોર્મેટ સફળતાપૂર્વક બનાવવામાં આવ્યું.", + // "admin.registries.bitstream-formats.create.success.head": "Success", "admin.registries.bitstream-formats.create.success.head": "સફળતા", + // "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} ફોર્મેટ(ઓ) દૂર કરવામાં નિષ્ફળ", + // "admin.registries.bitstream-formats.delete.failure.head": "Failure", "admin.registries.bitstream-formats.delete.failure.head": "અસફળતા", + // "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} ફોર્મેટ(ઓ) સફળતાપૂર્વક દૂર કરવામાં આવ્યા", + // "admin.registries.bitstream-formats.delete.success.head": "Success", "admin.registries.bitstream-formats.delete.success.head": "સફળતા", + // "admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.", "admin.registries.bitstream-formats.description": "આ બિટસ્ટ્રીમ ફોર્મેટ્સની યાદી જાણીતા ફોર્મેટ્સ અને તેમની સપોર્ટ લેવલ વિશેની માહિતી પ્રદાન કરે છે.", + // "admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.edit.breadcrumbs": "બિટસ્ટ્રીમ ફોર્મેટ", + // "admin.registries.bitstream-formats.edit.description.hint": "", "admin.registries.bitstream-formats.edit.description.hint": "", + // "admin.registries.bitstream-formats.edit.description.label": "Description", "admin.registries.bitstream-formats.edit.description.label": "વર્ણન", + // "admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.", "admin.registries.bitstream-formats.edit.extensions.hint": "એક્સ્ટેન્શન્સ ફાઇલ એક્સ્ટેન્શન્સ છે જે અપલોડ કરેલી ફાઇલોના ફોર્મેટને આપમેળે ઓળખવા માટે વપરાય છે. તમે દરેક ફોર્મેટ માટે અનેક એક્સ્ટેન્શન્સ દાખલ કરી શકો છો.", + // "admin.registries.bitstream-formats.edit.extensions.label": "File extensions", "admin.registries.bitstream-formats.edit.extensions.label": "ફાઇલ એક્સ્ટેન્શન્સ", + // "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot", "admin.registries.bitstream-formats.edit.extensions.placeholder": "ડોટ વિના ફાઇલ એક્સ્ટેન્શન દાખલ કરો", + // "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.", "admin.registries.bitstream-formats.edit.failure.content": "બિટસ્ટ્રીમ ફોર્મેટ સંપાદિત કરતી વખતે એક ભૂલ આવી.", + // "admin.registries.bitstream-formats.edit.failure.head": "Failure", "admin.registries.bitstream-formats.edit.failure.head": "અસફળતા", - "admin.registries.bitstream-formats.edit.head": "બિટસ્ટ્રીમ ફોર્મેટ: {{ format }}", + // "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + // TODO New key - Add a translation + "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + // "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.", "admin.registries.bitstream-formats.edit.internal.hint": "આંતરિક તરીકે ચિહ્નિત ફોર્મેટ્સ વપરાશકર્તા માટે છુપાયેલા છે અને વહીવટી હેતુઓ માટે વપરાય છે.", + // "admin.registries.bitstream-formats.edit.internal.label": "Internal", "admin.registries.bitstream-formats.edit.internal.label": "આંતરિક", + // "admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.", "admin.registries.bitstream-formats.edit.mimetype.hint": "આ ફોર્મેટ સાથે સંકળાયેલ MIME પ્રકાર, અનન્ય હોવો જરૂરી નથી.", + // "admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type", "admin.registries.bitstream-formats.edit.mimetype.label": "MIME પ્રકાર", + // "admin.registries.bitstream-formats.edit.shortDescription.hint": "A unique name for this format, (e.g. Microsoft Word XP or Microsoft Word 2000)", "admin.registries.bitstream-formats.edit.shortDescription.hint": "આ ફોર્મેટ માટેનું અનન્ય નામ, (ઉદાહરણ તરીકે, Microsoft Word XP અથવા Microsoft Word 2000)", + // "admin.registries.bitstream-formats.edit.shortDescription.label": "Name", "admin.registries.bitstream-formats.edit.shortDescription.label": "નામ", + // "admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.", "admin.registries.bitstream-formats.edit.success.content": "બિટસ્ટ્રીમ ફોર્મેટ સફળતાપૂર્વક સંપાદિત કરવામાં આવ્યું.", + // "admin.registries.bitstream-formats.edit.success.head": "Success", "admin.registries.bitstream-formats.edit.success.head": "સફળતા", + // "admin.registries.bitstream-formats.edit.supportLevel.hint": "The level of support your institution pledges for this format.", "admin.registries.bitstream-formats.edit.supportLevel.hint": "આ ફોર્મેટ માટે તમારું સંસ્થા જે સપોર્ટ લેવલ વચન આપે છે.", + // "admin.registries.bitstream-formats.edit.supportLevel.label": "Support level", "admin.registries.bitstream-formats.edit.supportLevel.label": "સપોર્ટ લેવલ", + // "admin.registries.bitstream-formats.head": "Bitstream Format Registry", "admin.registries.bitstream-formats.head": "બિટસ્ટ્રીમ ફોર્મેટ રજિસ્ટ્રી", + // "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.", "admin.registries.bitstream-formats.no-items": "બિટસ્ટ્રીમ ફોર્મેટ્સ બતાવવા માટે નથી.", + // "admin.registries.bitstream-formats.table.delete": "Delete selected", "admin.registries.bitstream-formats.table.delete": "પસંદ કરેલને કાઢી નાખો", + // "admin.registries.bitstream-formats.table.deselect-all": "Deselect all", "admin.registries.bitstream-formats.table.deselect-all": "બધા પસંદ કરેલને દૂર કરો", + // "admin.registries.bitstream-formats.table.internal": "internal", "admin.registries.bitstream-formats.table.internal": "આંતરિક", + // "admin.registries.bitstream-formats.table.mimetype": "MIME Type", "admin.registries.bitstream-formats.table.mimetype": "MIME પ્રકાર", + // "admin.registries.bitstream-formats.table.name": "Name", "admin.registries.bitstream-formats.table.name": "નામ", + // "admin.registries.bitstream-formats.table.selected": "Selected bitstream formats", "admin.registries.bitstream-formats.table.selected": "પસંદ કરેલ બિટસ્ટ્રીમ ફોર્મેટ્સ", + // "admin.registries.bitstream-formats.table.id": "ID", "admin.registries.bitstream-formats.table.id": "ID", + // "admin.registries.bitstream-formats.table.return": "Back", "admin.registries.bitstream-formats.table.return": "પાછા", + // "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known", "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "જાણીતું", + // "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported", "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "સપોર્ટેડ", + // "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown", "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "અજ્ઞાત", + // "admin.registries.bitstream-formats.table.supportLevel.head": "Support Level", "admin.registries.bitstream-formats.table.supportLevel.head": "સપોર્ટ લેવલ", + // "admin.registries.bitstream-formats.title": "Bitstream Format Registry", "admin.registries.bitstream-formats.title": "બિટસ્ટ્રીમ ફોર્મેટ રજિસ્ટ્રી", + // "admin.registries.bitstream-formats.select": "Select", "admin.registries.bitstream-formats.select": "પસંદ કરો", + // "admin.registries.bitstream-formats.deselect": "Deselect", "admin.registries.bitstream-formats.deselect": "પસંદ કરેલને દૂર કરો", + // "admin.registries.metadata.breadcrumbs": "Metadata registry", "admin.registries.metadata.breadcrumbs": "મેટાડેટા રજિસ્ટ્રી", + // "admin.registries.metadata.description": "The metadata registry maintains a list of all metadata fields available in the repository. These fields may be divided amongst multiple schemas. However, DSpace requires the qualified Dublin Core schema.", "admin.registries.metadata.description": "મેટાડેટા રજિસ્ટ્રી રિપોઝિટરીમાં ઉપલબ્ધ તમામ મેટાડેટા ફીલ્ડ્સની યાદી જાળવે છે. આ ફીલ્ડ્સને અનેક સ્કીમા વચ્ચે વિભાજિત કરી શકાય છે. જો કે, DSpace ને લાયક ડબલિન કોર સ્કીમાની જરૂર છે.", + // "admin.registries.metadata.form.create": "Create metadata schema", "admin.registries.metadata.form.create": "મેટાડેટા સ્કીમા બનાવો", + // "admin.registries.metadata.form.edit": "Edit metadata schema", "admin.registries.metadata.form.edit": "મેટાડેટા સ્કીમા સંપાદિત કરો", + // "admin.registries.metadata.form.name": "Name", "admin.registries.metadata.form.name": "નામ", + // "admin.registries.metadata.form.namespace": "Namespace", "admin.registries.metadata.form.namespace": "નેમસ્પેસ", + // "admin.registries.metadata.head": "Metadata Registry", "admin.registries.metadata.head": "મેટાડેટા રજિસ્ટ્રી", + // "admin.registries.metadata.schemas.no-items": "No metadata schemas to show.", "admin.registries.metadata.schemas.no-items": "બતાવવા માટે કોઈ મેટાડેટા સ્કીમા નથી.", + // "admin.registries.metadata.schemas.select": "Select", "admin.registries.metadata.schemas.select": "પસંદ કરો", + // "admin.registries.metadata.schemas.deselect": "Deselect", "admin.registries.metadata.schemas.deselect": "પસંદ કરેલને દૂર કરો", + // "admin.registries.metadata.schemas.table.delete": "Delete selected", "admin.registries.metadata.schemas.table.delete": "પસંદ કરેલને કાઢી નાખો", + // "admin.registries.metadata.schemas.table.selected": "Selected schemas", "admin.registries.metadata.schemas.table.selected": "પસંદ કરેલ સ્કીમા", + // "admin.registries.metadata.schemas.table.id": "ID", "admin.registries.metadata.schemas.table.id": "ID", + // "admin.registries.metadata.schemas.table.name": "Name", "admin.registries.metadata.schemas.table.name": "નામ", + // "admin.registries.metadata.schemas.table.namespace": "Namespace", "admin.registries.metadata.schemas.table.namespace": "નેમસ્પેસ", + // "admin.registries.metadata.title": "Metadata Registry", "admin.registries.metadata.title": "મેટાડેટા રજિસ્ટ્રી", + // "admin.registries.schema.breadcrumbs": "Metadata schema", "admin.registries.schema.breadcrumbs": "મેટાડેટા સ્કીમા", + // "admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".", "admin.registries.schema.description": "આ {{namespace}} માટેનું મેટાડેટા સ્કીમા છે.", + // "admin.registries.schema.fields.select": "Select", "admin.registries.schema.fields.select": "પસંદ કરો", + // "admin.registries.schema.fields.deselect": "Deselect", "admin.registries.schema.fields.deselect": "પસંદ કરેલને દૂર કરો", + // "admin.registries.schema.fields.head": "Schema metadata fields", "admin.registries.schema.fields.head": "સ્કીમા મેટાડેટા ફીલ્ડ્સ", + // "admin.registries.schema.fields.no-items": "No metadata fields to show.", "admin.registries.schema.fields.no-items": "બતાવવા માટે કોઈ મેટાડેટા ફીલ્ડ્સ નથી.", + // "admin.registries.schema.fields.table.delete": "Delete selected", "admin.registries.schema.fields.table.delete": "પસંદ કરેલને કાઢી નાખો", + // "admin.registries.schema.fields.table.field": "Field", "admin.registries.schema.fields.table.field": "ફીલ્ડ", + // "admin.registries.schema.fields.table.selected": "Selected metadata fields", "admin.registries.schema.fields.table.selected": "પસંદ કરેલ મેટાડેટા ફીલ્ડ્સ", + // "admin.registries.schema.fields.table.id": "ID", "admin.registries.schema.fields.table.id": "ID", + // "admin.registries.schema.fields.table.scopenote": "Scope Note", "admin.registries.schema.fields.table.scopenote": "સ્કોપ નોંધ", + // "admin.registries.schema.form.create": "Create metadata field", "admin.registries.schema.form.create": "મેટાડેટા ફીલ્ડ બનાવો", + // "admin.registries.schema.form.edit": "Edit metadata field", "admin.registries.schema.form.edit": "મેટાડેટા ફીલ્ડ સંપાદિત કરો", + // "admin.registries.schema.form.element": "Element", "admin.registries.schema.form.element": "એલિમેન્ટ", + // "admin.registries.schema.form.qualifier": "Qualifier", "admin.registries.schema.form.qualifier": "ક્વોલિફાયર", + // "admin.registries.schema.form.scopenote": "Scope Note", "admin.registries.schema.form.scopenote": "સ્કોપ નોંધ", + // "admin.registries.schema.head": "Metadata Schema", "admin.registries.schema.head": "મેટાડેટા સ્કીમા", + // "admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.created": "સફળતાપૂર્વક મેટાડેટા સ્કીમા {{prefix}} બનાવ્યું", + // "admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.failure": "{{amount}} મેટાડેટા સ્કીમા કાઢી નાખવામાં નિષ્ફળ", + // "admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.success": "{{amount}} મેટાડેટા સ્કીમા સફળતાપૂર્વક કાઢી નાખ્યા", + // "admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.edited": "સફળતાપૂર્વક મેટાડેટા સ્કીમા {{prefix}} સંપાદિત કર્યું", + // "admin.registries.schema.notification.failure": "Error", "admin.registries.schema.notification.failure": "ભૂલ", + // "admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"", "admin.registries.schema.notification.field.created": "સફળતાપૂર્વક મેટાડેટા ફીલ્ડ {{field}} બનાવ્યું", + // "admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.failure": "{{amount}} મેટાડેટા ફીલ્ડ્સ કાઢી નાખવામાં નિષ્ફળ", + // "admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.success": "{{amount}} મેટાડેટા ફીલ્ડ્સ સફળતાપૂર્વક કાઢી નાખ્યા", + // "admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"", "admin.registries.schema.notification.field.edited": "સફળતાપૂર્વક મેટાડેટા ફીલ્ડ {{field}} સંપાદિત કર્યું", + // "admin.registries.schema.notification.success": "Success", "admin.registries.schema.notification.success": "સફળતા", + // "admin.registries.schema.return": "Back", "admin.registries.schema.return": "પાછા", + // "admin.registries.schema.title": "Metadata Schema Registry", "admin.registries.schema.title": "મેટાડેટા સ્કીમા રજિસ્ટ્રી", + // "admin.access-control.bulk-access.breadcrumbs": "Bulk Access Management", "admin.access-control.bulk-access.breadcrumbs": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", + // "administrativeBulkAccess.search.results.head": "Search Results", "administrativeBulkAccess.search.results.head": "શોધ પરિણામો", + // "admin.access-control.bulk-access": "Bulk Access Management", "admin.access-control.bulk-access": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", + // "admin.access-control.bulk-access.title": "Bulk Access Management", "admin.access-control.bulk-access.title": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", - "admin.access-control.bulk-access-browse.header": "પગલું 1: ઑબ્જેક્ટ્સ પસંદ કરો", + // "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + // TODO New key - Add a translation + "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + // "admin.access-control.bulk-access-browse.search.header": "Search", "admin.access-control.bulk-access-browse.search.header": "શોધ", + // "admin.access-control.bulk-access-browse.selected.header": "Current selection({{number}})", "admin.access-control.bulk-access-browse.selected.header": "વર્તમાન પસંદગી({{number}})", - "admin.access-control.bulk-access-settings.header": "પગલું 2: કરવા માટેની ક્રિયા", + // "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + // TODO New key - Add a translation + "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + // "admin.access-control.epeople.actions.delete": "Delete EPerson", "admin.access-control.epeople.actions.delete": "EPerson કાઢી નાખો", + // "admin.access-control.epeople.actions.impersonate": "Impersonate EPerson", "admin.access-control.epeople.actions.impersonate": "EPerson તરીકે કામ કરો", + // "admin.access-control.epeople.actions.reset": "Reset password", "admin.access-control.epeople.actions.reset": "પાસવર્ડ રીસેટ કરો", + // "admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson", "admin.access-control.epeople.actions.stop-impersonating": "EPerson તરીકે કામ કરવાનું બંધ કરો", + // "admin.access-control.epeople.breadcrumbs": "EPeople", "admin.access-control.epeople.breadcrumbs": "EPeople", + // "admin.access-control.epeople.title": "EPeople", "admin.access-control.epeople.title": "EPeople", + // "admin.access-control.epeople.edit.breadcrumbs": "New EPerson", "admin.access-control.epeople.edit.breadcrumbs": "નવું EPerson", + // "admin.access-control.epeople.edit.title": "New EPerson", "admin.access-control.epeople.edit.title": "નવું EPerson", + // "admin.access-control.epeople.add.breadcrumbs": "Add EPerson", "admin.access-control.epeople.add.breadcrumbs": "EPerson ઉમેરો", + // "admin.access-control.epeople.add.title": "Add EPerson", "admin.access-control.epeople.add.title": "EPerson ઉમેરો", + // "admin.access-control.epeople.head": "EPeople", "admin.access-control.epeople.head": "EPeople", + // "admin.access-control.epeople.search.head": "Search", "admin.access-control.epeople.search.head": "શોધ", + // "admin.access-control.epeople.button.see-all": "Browse All", "admin.access-control.epeople.button.see-all": "બધા બ્રાઉઝ કરો", + // "admin.access-control.epeople.search.scope.metadata": "Metadata", "admin.access-control.epeople.search.scope.metadata": "મેટાડેટા", + // "admin.access-control.epeople.search.scope.email": "Email (exact)", "admin.access-control.epeople.search.scope.email": "ઇમેઇલ (ચોક્કસ)", + // "admin.access-control.epeople.search.button": "Search", "admin.access-control.epeople.search.button": "શોધ", + // "admin.access-control.epeople.search.placeholder": "Search people...", "admin.access-control.epeople.search.placeholder": "લોકોને શોધો...", + // "admin.access-control.epeople.button.add": "Add EPerson", "admin.access-control.epeople.button.add": "EPerson ઉમેરો", + // "admin.access-control.epeople.table.id": "ID", "admin.access-control.epeople.table.id": "ID", + // "admin.access-control.epeople.table.name": "Name", "admin.access-control.epeople.table.name": "નામ", + // "admin.access-control.epeople.table.email": "Email (exact)", "admin.access-control.epeople.table.email": "ઇમેઇલ (ચોક્કસ)", + // "admin.access-control.epeople.table.edit": "Edit", "admin.access-control.epeople.table.edit": "સંપાદિત કરો", + // "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", + // "admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group", "admin.access-control.epeople.table.edit.buttons.edit-disabled": "તમે આ જૂથને સંપાદિત કરવા માટે અધિકૃત નથી", + // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "{{name}} ને કાઢી નાખો", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + + // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "બતાવવા માટે કોઈ EPeople નથી.", + // "admin.access-control.epeople.form.create": "Create EPerson", "admin.access-control.epeople.form.create": "EPerson બનાવો", + // "admin.access-control.epeople.form.edit": "Edit EPerson", "admin.access-control.epeople.form.edit": "EPerson સંપાદિત કરો", + // "admin.access-control.epeople.form.firstName": "First name", "admin.access-control.epeople.form.firstName": "પ્રથમ નામ", + // "admin.access-control.epeople.form.lastName": "Last name", "admin.access-control.epeople.form.lastName": "છેલ્લું નામ", + // "admin.access-control.epeople.form.email": "Email", "admin.access-control.epeople.form.email": "ઇમેઇલ", + // "admin.access-control.epeople.form.emailHint": "Must be a valid email address", "admin.access-control.epeople.form.emailHint": "માન્ય ઇમેઇલ સરનામું હોવું જોઈએ", + // "admin.access-control.epeople.form.canLogIn": "Can log in", "admin.access-control.epeople.form.canLogIn": "લૉગ ઇન કરી શકે છે", + // "admin.access-control.epeople.form.requireCertificate": "Requires certificate", "admin.access-control.epeople.form.requireCertificate": "પ્રમાણપત્રની જરૂર છે", + // "admin.access-control.epeople.form.return": "Back", "admin.access-control.epeople.form.return": "પાછા", + // "admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.success": "સફળતાપૂર્વક EPerson {{name}} બનાવ્યું", + // "admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.failure": "EPerson {{name}} બનાવવામાં નિષ્ફળ", + // "admin.access-control.epeople.form.notification.created.failure.emailInUse": "Failed to create EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson {{name}} બનાવવામાં નિષ્ફળ, ઇમેઇલ {{email}} પહેલેથી જ વપરાય છે.", + // "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Failed to edit EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson {{name}} સંપાદિત કરવામાં નિષ્ફળ, ઇમેઇલ {{email}} પહેલેથી જ વપરાય છે.", + // "admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.success": "સફળતાપૂર્વક EPerson {{name}} સંપાદિત કર્યું", + // "admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.failure": "EPerson {{name}} સંપાદિત કરવામાં નિષ્ફળ", + // "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.success": "સફળતાપૂર્વક EPerson {{name}} કાઢી નાખ્યું", + // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.failure": "EPerson {{name}} કાઢી નાખવામાં નિષ્ફળ", - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "આ જૂથોના સભ્ય:", + // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", + // TODO New key - Add a translation + "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", + // "admin.access-control.epeople.form.table.name": "Name", "admin.access-control.epeople.form.table.name": "નામ", + // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", "admin.access-control.epeople.form.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", + // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", "admin.access-control.epeople.form.memberOfNoGroups": "આ EPerson કોઈ જૂથનો સભ્ય નથી", + // "admin.access-control.epeople.form.goToGroups": "Add to groups", "admin.access-control.epeople.form.goToGroups": "જૂથોમાં ઉમેરો", - "admin.access-control.epeople.notification.deleted.failure": "ID {{id}} સાથે EPerson કાઢી નાખતી વખતે ભૂલ આવી, કોડ: {{statusCode}} અને મેસેજ: {{restResponse.errorMessage}}", - - "admin.access-control.epeople.notification.deleted.success": "સફળતાપૂર્વક EPerson: {{name}} કાઢી નાખ્યું", - - "admin.access-control.groups.title": "જૂથો", - - "admin.access-control.groups.breadcrumbs": "જૂથો", - - "admin.access-control.groups.singleGroup.breadcrumbs": "જૂથ સંપાદિત કરો", - - "admin.access-control.groups.title.singleGroup": "જૂથ સંપાદિત કરો", - - "admin.access-control.groups.title.addGroup": "નવું જૂથ", - - "admin.access-control.groups.addGroup.breadcrumbs": "નવું જૂથ", - - "admin.access-control.groups.head": "જૂથો", - - "admin.access-control.groups.button.add": "જૂથ ઉમેરો", - - "admin.access-control.groups.search.head": "જૂથો શોધો", - - "admin.access-control.groups.button.see-all": "બધા બ્રાઉઝ કરો", - - "admin.access-control.groups.search.button": "શોધો", - - "admin.access-control.groups.search.placeholder": "જૂથો શોધો...", - - "admin.access-control.groups.table.id": "ID", - - "admin.access-control.groups.table.name": "નામ", - - "admin.access-control.groups.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", - - "admin.access-control.groups.table.members": "સભ્યો", - - "admin.access-control.groups.table.edit": "સંપાદિત કરો", - - "admin.access-control.groups.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", - - "admin.access-control.groups.table.edit.buttons.remove": "{{name}} ને કાઢી નાખો", - - "admin.access-control.groups.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", - - "admin.access-control.groups.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{name}} કાઢી નાખ્યું", - - "admin.access-control.groups.notification.deleted.failure.title": "જૂથ {{name}} કાઢી નાખવામાં નિષ્ફળ", - - "admin.access-control.groups.notification.deleted.failure.content": "કારણ: {{cause}}", - - "admin.access-control.groups.form.alert.permanent": "આ જૂથ કાયમી છે, તેથી તેને સંપાદિત અથવા કાઢી શકાતું નથી. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", - - "admin.access-control.groups.form.alert.workflowGroup": "આ જૂથને સંપાદિત અથવા કાઢી શકાતું નથી કારણ કે તે {{name}} {{comcol}} માં સબમિશન અને વર્કફ્લો પ્રક્રિયામાં ભૂમિકા સાથે મેળ ખાતું છે. તમે તેને {{comcolEditRolesRoute}} પૃષ્ઠના સંપાદન {{comcol}} પર ભૂમિકા સોંપો ટેબમાંથી કાઢી શકો છો. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", - - "admin.access-control.groups.form.head.create": "જૂથ બનાવો", - - "admin.access-control.groups.form.head.edit": "જૂથ સંપાદિત કરો", - - "admin.access-control.groups.form.groupName": "જૂથનું નામ", - - "admin.access-control.groups.form.groupCommunity": "સમુદાય અથવા સંગ્રહ", - - "admin.access-control.groups.form.groupDescription": "વર્ણન", - - "admin.access-control.groups.form.notification.created.success": "સફળતાપૂર્વક જૂથ {{name}} બનાવ્યું", - - "admin.access-control.groups.form.notification.created.failure": "જૂથ {{name}} બનાવવામાં નિષ્ફળ", - - "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "જૂથ {{name}} બનાવવામાં નિષ્ફળ, ખાતરી કરો કે નામ પહેલેથી જ વપરાય નથી.", - - "admin.access-control.groups.form.notification.edited.failure": "જૂથ {{name}} સંપાદિત કરવામાં નિષ્ફળ", - - "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "નામ {{name}} પહેલેથી જ વપરાય છે!", - - "admin.access-control.groups.form.notification.edited.success": "સફળતાપૂર્વક જૂથ {{name}} સંપાદિત કર્યું", - - "admin.access-control.groups.form.actions.delete": "જૂથ કાઢી નાખો", - - "admin.access-control.groups.form.delete-group.modal.header": "જૂથ {{ dsoName }} કાઢી નાખો", - - "admin.access-control.groups.form.delete-group.modal.info": "શું તમે ખરેખર જૂથ {{ dsoName }} કાઢી નાખવા માંગો છો?", - - "admin.access-control.groups.form.delete-group.modal.cancel": "રદ કરો", - - "admin.access-control.groups.form.delete-group.modal.confirm": "કાઢી નાખો", - - "admin.access-control.groups.form.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{ name }} કાઢી નાખ્યું", - - "admin.access-control.groups.form.notification.deleted.failure.title": "જૂથ {{ name }} કાઢી નાખવામાં નિષ્ફળ", - - "admin.access-control.groups.form.notification.deleted.failure.content": "કારણ: {{ cause }}", - - "admin.access-control.groups.form.members-list.head": "EPeople", - - "admin.access-control.groups.form.members-list.search.head": "EPeople ઉમેરો", - - "admin.access-control.groups.form.members-list.button.see-all": "બધા બ્રાઉઝ કરો", - - "admin.access-control.groups.form.members-list.headMembers": "વર્તમાન સભ્યો", - - "admin.access-control.groups.form.members-list.search.button": "શોધો", - - "admin.access-control.groups.form.members-list.table.id": "ID", - - "admin.access-control.groups.form.members-list.table.name": "નામ", - - "admin.access-control.groups.form.members-list.table.identity": "ઓળખ", - - "admin.access-control.groups.form.members-list.table.email": "ઇમેઇલ", - - "admin.access-control.groups.form.members-list.table.netid": "NetID", - - "admin.access-control.groups.form.members-list.table.edit": "દૂર કરો / ઉમેરો", - - "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "{{name}} નામના સભ્યને દૂર કરો", - - "admin.access-control.groups.form.members-list.notification.success.addMember": "સફળતાપૂર્વક {{name}} સભ્ય ઉમેર્યું", - - "admin.access-control.groups.form.members-list.notification.failure.addMember": "{{name}} સભ્ય ઉમેરવામાં નિષ્ફળ", - - "admin.access-control.groups.form.members-list.notification.success.deleteMember": "સફળતાપૂર્વક {{name}} સભ્ય કાઢી નાખ્યું", - - "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "{{name}} સભ્ય કાઢી નાખવામાં નિષ્ફળ", - - "admin.access-control.groups.form.members-list.table.edit.buttons.add": "{{name}} નામના સભ્યને ઉમેરો", - - "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", - - "admin.access-control.groups.form.members-list.no-members-yet": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", - - "admin.access-control.groups.form.members-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", - - "admin.access-control.groups.form.subgroups-list.notification.failure": "કંઈક ખોટું થયું: {{cause}}", + // "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", - "admin.access-control.groups.form.subgroups-list.head": "જૂથો", - - "admin.access-control.groups.form.subgroups-list.search.head": "સબગ્રુપ ઉમેરો", - - "admin.access-control.groups.form.subgroups-list.button.see-all": "બધા બ્રાઉઝ કરો", - - "admin.access-control.groups.form.subgroups-list.headSubgroups": "વર્તમાન સબગ્રુપ્સ", - - "admin.access-control.groups.form.subgroups-list.search.button": "શોધો", - - "admin.access-control.groups.form.subgroups-list.table.id": "ID", - - "admin.access-control.groups.form.subgroups-list.table.name": "નામ", - - "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", - - "admin.access-control.groups.form.subgroups-list.table.edit": "દૂર કરો / ઉમેરો", - - "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "{{name}} નામના સબગ્રુપને દૂર કરો", - - "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "{{name}} નામના સબગ્રુપને ઉમેરો", - - "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ ઉમેર્યું", - - "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "{{name}} સબગ્રુપ ઉમેરવામાં નિષ્ફળ", - - "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ કાઢી નાખ્યું", - - "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "{{name}} સબગ્રુપ કાઢી નાખવામાં નિષ્ફળ", - - "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", - - "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "આ વર્તમાન જૂથ છે, તેને ઉમેરવામાં નથી.", - - "admin.access-control.groups.form.subgroups-list.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", - - "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "જૂથમાં હજી સુધી કોઈ સબગ્રુપ્સ નથી.", - - "admin.access-control.groups.form.return": "પાછા", - - "admin.quality-assurance.breadcrumbs": "ગુણવત્તા ખાતરી", - - "admin.notifications.event.breadcrumbs": "ગુણવત્તા ખાતરી સૂચનો", - - "admin.notifications.event.page.title": "ગુણવત્તા ખાતરી સૂચનો", - - "admin.quality-assurance.page.title": "ગુણવત્તા ખાતરી", - - "admin.notifications.source.breadcrumbs": "ગુણવત્તા ખાતરી", - - "admin.access-control.groups.form.tooltip.editGroupPage": "આ પૃષ્ઠ પર, તમે જૂથની ગુણધર્મો અને સભ્યોને ફેરફાર કરી શકો છો. ટોચના વિભાગમાં, તમે જૂથનું નામ અને વર્ણન સંપાદિત કરી શકો છો, જો કે આ સંગ્રહ અથવા સમુદાય માટેનું એડમિન જૂથ હોય, તો જૂથનું નામ અને વર્ણન આપમેળે જનરેટ થાય છે અને તેને સંપાદિત કરી શકાતું નથી. નીચેના વિભાગોમાં, તમે જૂથ સભ્યતાને ફેરફાર કરી શકો છો. વધુ વિગતો માટે [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) જુઓ.", - - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "આ જૂથમાં EPerson ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને વપરાશકર્તાઓને શોધો (શોધ બારની ડાબી બાજુના ડ્રોપડાઉનનો ઉપયોગ કરીને મેટાડેટા અથવા ઇમેઇલ દ્વારા શોધવાનું પસંદ કરો). પછી નીચેની યાદીમાં દરેક વપરાશકર્તા માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક વપરાશકર્તા માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", - - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "આ જૂથમાં સબગ્રુપ ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને જૂથોને શોધો. પછી નીચેની યાદીમાં દરેક જૂથ માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક જૂથ માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", - - "admin.reports.collections.title": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - - "admin.reports.collections.breadcrumbs": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - - "admin.reports.collections.head": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - - "admin.reports.button.show-collections": "સંગ્રહો બતાવો", - - "admin.reports.collections.collections-report": "સંગ્રહ રિપોર્ટ", - - "admin.reports.collections.item-results": "આઇટમ પરિણામો", - - "admin.reports.collections.community": "સમુદાય", - - "admin.reports.collections.collection": "સંગ્રહ", - - "admin.reports.collections.nb_items": "આઇટમ્સની સંખ્યા", - - "admin.reports.collections.match_all_selected_filters": "બધા પસંદ કરેલ ફિલ્ટર્સ સાથે મેળ ખાતું", - - "admin.reports.items.breadcrumbs": "મેટાડેટા ક્વેરી રિપોર્ટ", - - "admin.reports.items.head": "મેટાડેટા ક્વેરી રિપોર્ટ", - - "admin.reports.items.run": "આઇટમ ક્વેરી ચલાવો", - - "admin.reports.items.section.collectionSelector": "સંગ્રહ પસંદગીકાર", - - "admin.reports.items.section.metadataFieldQueries": "મેટાડેટા ફીલ્ડ ક્વેરીઝ", - - "admin.reports.items.predefinedQueries": "પૂર્વનિર્ધારિત ક્વેરીઝ", - - "admin.reports.items.section.limitPaginateQueries": "ક્વેરીઝ મર્યાદિત/પેજિનેટ", - - "admin.reports.items.limit": "મર્યાદા/", - - "admin.reports.items.offset": "ઓફસેટ", - - "admin.reports.items.wholeRepo": "સંપૂર્ણ રિપોઝિટરી", - - "admin.reports.items.anyField": "કોઈપણ ફીલ્ડ", - - "admin.reports.items.predicate.exists": "અસ્તિત્વમાં છે", - - "admin.reports.items.predicate.doesNotExist": "અસ્તિત્વમાં નથી", - - "admin.reports.items.predicate.equals": "સમાન છે", - - "admin.reports.items.predicate.doesNotEqual": "સમાન નથી", - - "admin.reports.items.predicate.like": "માટે", - - "admin.reports.items.predicate.notLike": "માટે નથી", - - "admin.reports.items.predicate.contains": "સમાવે છે", - - "admin.reports.items.predicate.doesNotContain": "સમાવિષ્ટ નથી", - - "admin.reports.items.predicate.matches": "મેળ ખાતું", - - "admin.reports.items.predicate.doesNotMatch": "મેળ ખાતું નથી", - - "admin.reports.items.preset.new": "નવી ક્વેરી", - - "admin.reports.items.preset.hasNoTitle": "કોઈ શીર્ષક નથી", - - "admin.reports.items.preset.hasNoIdentifierUri": "કોઈ dc.identifier.uri નથી", - - "admin.access-control.epeople.notification.deleted.failure": "ID {{id}} સાથે EPerson કાઢી નાખતી વખતે ભૂલ આવી, કોડ: {{statusCode}} અને મેસેજ: {{restResponse.errorMessage}}", - - "admin.access-control.epeople.notification.deleted.success": "સફળતાપૂર્વક EPerson: {{name}} કાઢી નાખ્યું", + // "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + // "admin.access-control.groups.title": "Groups", "admin.access-control.groups.title": "જૂથો", + // "admin.access-control.groups.breadcrumbs": "Groups", "admin.access-control.groups.breadcrumbs": "જૂથો", + // "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group", "admin.access-control.groups.singleGroup.breadcrumbs": "જૂથ સંપાદિત કરો", + // "admin.access-control.groups.title.singleGroup": "Edit Group", "admin.access-control.groups.title.singleGroup": "જૂથ સંપાદિત કરો", + // "admin.access-control.groups.title.addGroup": "New Group", "admin.access-control.groups.title.addGroup": "નવું જૂથ", + // "admin.access-control.groups.addGroup.breadcrumbs": "New Group", "admin.access-control.groups.addGroup.breadcrumbs": "નવું જૂથ", + // "admin.access-control.groups.head": "Groups", "admin.access-control.groups.head": "જૂથો", + // "admin.access-control.groups.button.add": "Add group", "admin.access-control.groups.button.add": "જૂથ ઉમેરો", + // "admin.access-control.groups.search.head": "Search groups", "admin.access-control.groups.search.head": "જૂથો શોધો", + // "admin.access-control.groups.button.see-all": "Browse all", "admin.access-control.groups.button.see-all": "બધા બ્રાઉઝ કરો", + // "admin.access-control.groups.search.button": "Search", "admin.access-control.groups.search.button": "શોધો", + // "admin.access-control.groups.search.placeholder": "Search groups...", "admin.access-control.groups.search.placeholder": "જૂથો શોધો...", + // "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": "નામ", + // "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", + // "admin.access-control.groups.table.members": "Members", "admin.access-control.groups.table.members": "સભ્યો", + // "admin.access-control.groups.table.edit": "Edit", "admin.access-control.groups.table.edit": "સંપાદિત કરો", + // "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", + // "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.remove": "{{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": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", + // "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"", "admin.access-control.groups.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{name}} કાઢી નાખ્યું", + // "admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"", "admin.access-control.groups.notification.deleted.failure.title": "જૂથ {{name}} કાઢી નાખવામાં નિષ્ફળ", - "admin.access-control.groups.notification.deleted.failure.content": "કારણ: {{cause}}", + // "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + // TODO New key - Add a translation + "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + // "admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.permanent": "આ જૂથ કાયમી છે, તેથી તેને સંપાદિત અથવા કાઢી શકાતું નથી. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", + // "admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the \"assign roles\" tab on the edit {{comcol}} page. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.workflowGroup": "આ જૂથને સંપાદિત અથવા કાઢી શકાતું નથી કારણ કે તે {{name}} {{comcol}} માં સબમિશન અને વર્કફ્લો પ્રક્રિયામાં ભૂમિકા સાથે મેળ ખાતું છે. તમે તેને {{comcolEditRolesRoute}} પૃષ્ઠના સંપાદન {{comcol}} પર ભૂમિકા સોંપો ટેબમાંથી કાઢી શકો છો. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", + // "admin.access-control.groups.form.head.create": "Create group", "admin.access-control.groups.form.head.create": "જૂથ બનાવો", + // "admin.access-control.groups.form.head.edit": "Edit group", "admin.access-control.groups.form.head.edit": "જૂથ સંપાદિત કરો", + // "admin.access-control.groups.form.groupName": "Group name", "admin.access-control.groups.form.groupName": "જૂથનું નામ", + // "admin.access-control.groups.form.groupCommunity": "Community or Collection", "admin.access-control.groups.form.groupCommunity": "સમુદાય અથવા સંગ્રહ", + // "admin.access-control.groups.form.groupDescription": "Description", "admin.access-control.groups.form.groupDescription": "વર્ણન", + // "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.success": "સફળતાપૂર્વક જૂથ {{name}} બનાવ્યું", + // "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.failure": "જૂથ {{name}} બનાવવામાં નિષ્ફળ", - "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "જૂથ {{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.", + // TODO New key - Add a translation + "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.edited.failure": "Failed to edit Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.failure": "જૂથ {{name}} સંપાદિત કરવામાં નિષ્ફળ", + // "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!", "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "નામ {{name}} પહેલેથી જ વપરાય છે!", + // "admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.success": "સફળતાપૂર્વક જૂથ {{name}} સંપાદિત કર્યું", + // "admin.access-control.groups.form.actions.delete": "Delete Group", "admin.access-control.groups.form.actions.delete": "જૂથ કાઢી નાખો", + // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "જૂથ {{ dsoName }} કાઢી નાખો", + // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", "admin.access-control.groups.form.delete-group.modal.info": "શું તમે ખરેખર જૂથ {{ dsoName }} કાઢી નાખવા માંગો છો?", + // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", "admin.access-control.groups.form.delete-group.modal.cancel": "રદ કરો", + // "admin.access-control.groups.form.delete-group.modal.confirm": "Delete", "admin.access-control.groups.form.delete-group.modal.confirm": "કાઢી નાખો", + // "admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{ name }} કાઢી નાખ્યું", + // "admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.failure.title": "જૂથ {{ name }} કાઢી નાખવામાં નિષ્ફળ", - "admin.access-control.groups.form.notification.deleted.failure.content": "કારણ: {{ cause }}", + // "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + // TODO New key - Add a translation + "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + // "admin.access-control.groups.form.members-list.head": "EPeople", "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": "EPeople ઉમેરો", + // "admin.access-control.groups.form.members-list.button.see-all": "Browse All", "admin.access-control.groups.form.members-list.button.see-all": "બધા બ્રાઉઝ કરો", + // "admin.access-control.groups.form.members-list.headMembers": "Current Members", "admin.access-control.groups.form.members-list.headMembers": "વર્તમાન સભ્યો", + // "admin.access-control.groups.form.members-list.search.button": "Search", "admin.access-control.groups.form.members-list.search.button": "શોધો", + // "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": "નામ", + // "admin.access-control.groups.form.members-list.table.identity": "Identity", "admin.access-control.groups.form.members-list.table.identity": "ઓળખ", + // "admin.access-control.groups.form.members-list.table.email": "Email", "admin.access-control.groups.form.members-list.table.email": "ઇમેઇલ", + // "admin.access-control.groups.form.members-list.table.netid": "NetID", "admin.access-control.groups.form.members-list.table.netid": "NetID", + // "admin.access-control.groups.form.members-list.table.edit": "Remove / Add", "admin.access-control.groups.form.members-list.table.edit": "દૂર કરો / ઉમેરો", + // "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": "{{name}} નામના સભ્યને દૂર કરો", - "admin.access-control.groups.form.members-list.notification.success.addMember": "સફળતાપૂર્વક {{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": "Successfully added member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.failure.addMember": "{{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": "Failed to add member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.success.deleteMember": "સફળતાપૂર્વક {{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": "Successfully deleted member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "{{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": "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": "{{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": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", + // "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": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", + // "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search", "admin.access-control.groups.form.members-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", - "admin.access-control.groups.form.subgroups-list.notification.failure": "કંઈક ખોટું થયું: {{cause}}", + // "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + // TODO New key - Add a translation + "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + // "admin.access-control.groups.form.subgroups-list.head": "Groups", "admin.access-control.groups.form.subgroups-list.head": "જૂથો", + // "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup", "admin.access-control.groups.form.subgroups-list.search.head": "સબગ્રુપ ઉમેરો", + // "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All", "admin.access-control.groups.form.subgroups-list.button.see-all": "બધા બ્રાઉઝ કરો", + // "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups", "admin.access-control.groups.form.subgroups-list.headSubgroups": "વર્તમાન સબગ્રુપ્સ", + // "admin.access-control.groups.form.subgroups-list.search.button": "Search", "admin.access-control.groups.form.subgroups-list.search.button": "શોધો", + // "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": "નામ", + // "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", + // "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add", "admin.access-control.groups.form.subgroups-list.table.edit": "દૂર કરો / ઉમેરો", + // "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": "{{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": "{{name}} નામના સબગ્રુપને ઉમેરો", - "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "સફળતાપૂર્વક {{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": "Successfully added subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "{{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": "Failed to add subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "સફળતાપૂર્વક {{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": "Successfully deleted subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "{{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": "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": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", + // "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": "આ વર્તમાન જૂથ છે, તેને ઉમેરવામાં નથી.", + // "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": "આ નામ અથવા 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": "જૂથમાં હજી સુધી કોઈ સબગ્રુપ્સ નથી.", + // "admin.access-control.groups.form.return": "Back", "admin.access-control.groups.form.return": "પાછા", + // "admin.quality-assurance.breadcrumbs": "Quality Assurance", "admin.quality-assurance.breadcrumbs": "ગુણવત્તા ખાતરી", + // "admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions", "admin.notifications.event.breadcrumbs": "ગુણવત્તા ખાતરી સૂચનો", + // "admin.notifications.event.page.title": "Quality Assurance Suggestions", "admin.notifications.event.page.title": "ગુણવત્તા ખાતરી સૂચનો", + // "admin.quality-assurance.page.title": "Quality Assurance", "admin.quality-assurance.page.title": "ગુણવત્તા ખાતરી", + // "admin.notifications.source.breadcrumbs": "Quality Assurance", "admin.notifications.source.breadcrumbs": "ગુણવત્તા ખાતરી", - "admin.access-control.groups.form.tooltip.editGroupPage": "આ પૃષ્ઠ પર, તમે જૂથની ગુણધર્મો અને સભ્યોને ફેરફાર કરી શકો છો. ટોચના વિભાગમાં, તમે જૂથનું નામ અને વર્ણન સંપાદિત કરી શકો છો, જો કે આ સંગ્રહ અથવા સમુદાય માટેનું એડમિન જૂથ હોય, તો જૂથનું નામ અને વર્ણન આપમેળે જનરેટ થાય છે અને તેને સંપાદિત કરી શકાતું નથી. નીચેના વિભાગોમાં, તમે જૂથ સભ્યતાને ફેરફાર કરી શકો છો. વધુ વિગતો માટે [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) જુઓ.", + // "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "આ જૂથમાં EPerson ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને વપરાશકર્તાઓને શોધો (શોધ બારની ડાબી બાજુના ડ્રોપડાઉનનો ઉપયોગ કરીને મેટાડેટા અથવા ઇમેઇલ દ્વારા શોધવાનું પસંદ કરો). પછી નીચેની યાદીમાં દરેક વપરાશકર્તા માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક વપરાશકર્તા માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", + // "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "આ જૂથમાં સબગ્રુપ ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને જૂથોને શોધો. પછી નીચેની યાદીમાં દરેક જૂથ માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક જૂથ માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", + // "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // "admin.reports.collections.title": "Collection Filter Report", "admin.reports.collections.title": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + // "admin.reports.collections.breadcrumbs": "Collection Filter Report", "admin.reports.collections.breadcrumbs": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + // "admin.reports.collections.head": "Collection Filter Report", "admin.reports.collections.head": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + // "admin.reports.button.show-collections": "Show Collections", "admin.reports.button.show-collections": "સંગ્રહો બતાવો", + // "admin.reports.collections.collections-report": "Collection Report", "admin.reports.collections.collections-report": "સંગ્રહ રિપોર્ટ", + // "admin.reports.collections.item-results": "Item Results", "admin.reports.collections.item-results": "આઇટમ પરિણામો", + // "admin.reports.collections.community": "Community", "admin.reports.collections.community": "સમુદાય", + // "admin.reports.collections.collection": "Collection", "admin.reports.collections.collection": "સંગ્રહ", + // "admin.reports.collections.nb_items": "Nb. Items", "admin.reports.collections.nb_items": "આઇટમ્સની સંખ્યા", + // "admin.reports.collections.match_all_selected_filters": "Matching all selected filters", "admin.reports.collections.match_all_selected_filters": "બધા પસંદ કરેલ ફિલ્ટર્સ સાથે મેળ ખાતું", + // "admin.reports.items.breadcrumbs": "Metadata Query Report", "admin.reports.items.breadcrumbs": "મેટાડેટા ક્વેરી રિપોર્ટ", + // "admin.reports.items.head": "Metadata Query Report", "admin.reports.items.head": "મેટાડેટા ક્વેરી રિપોર્ટ", + // "admin.reports.items.run": "Run Item Query", "admin.reports.items.run": "આઇટમ ક્વેરી ચલાવો", + // "admin.reports.items.section.collectionSelector": "Collection Selector", "admin.reports.items.section.collectionSelector": "સંગ્રહ પસંદગીકાર", + // "admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries", "admin.reports.items.section.metadataFieldQueries": "મેટાડેટા ફીલ્ડ ક્વેરીઝ", + // "admin.reports.items.predefinedQueries": "Predefined Queries", "admin.reports.items.predefinedQueries": "પૂર્વનિર્ધારિત ક્વેરીઝ", + // "admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries", "admin.reports.items.section.limitPaginateQueries": "ક્વેરીઝ મર્યાદિત/પેજિનેટ", + // "admin.reports.items.limit": "Limit/", "admin.reports.items.limit": "મર્યાદા/", + // "admin.reports.items.offset": "Offset", "admin.reports.items.offset": "ઓફસેટ", + // "admin.reports.items.wholeRepo": "Whole Repository", "admin.reports.items.wholeRepo": "સંપૂર્ણ રિપોઝિટરી", + // "admin.reports.items.anyField": "Any field", "admin.reports.items.anyField": "કોઈપણ ફીલ્ડ", + // "admin.reports.items.predicate.exists": "exists", "admin.reports.items.predicate.exists": "અસ્તિત્વમાં છે", + // "admin.reports.items.predicate.doesNotExist": "does not exist", "admin.reports.items.predicate.doesNotExist": "અસ્તિત્વમાં નથી", + // "admin.reports.items.predicate.equals": "equals", "admin.reports.items.predicate.equals": "સમાન છે", + // "admin.reports.items.predicate.doesNotEqual": "does not equal", "admin.reports.items.predicate.doesNotEqual": "સમાન નથી", + // "admin.reports.items.predicate.like": "like", "admin.reports.items.predicate.like": "માટે", + // "admin.reports.items.predicate.notLike": "not like", "admin.reports.items.predicate.notLike": "માટે નથી", + // "admin.reports.items.predicate.contains": "contains", "admin.reports.items.predicate.contains": "સમાવે છે", + // "admin.reports.items.predicate.doesNotContain": "does not contain", "admin.reports.items.predicate.doesNotContain": "સમાવિષ્ટ નથી", + // "admin.reports.items.predicate.matches": "matches", "admin.reports.items.predicate.matches": "મેળ ખાતું", + // "admin.reports.items.predicate.doesNotMatch": "does not match", "admin.reports.items.predicate.doesNotMatch": "મેળ ખાતું નથી", + // "admin.reports.items.preset.new": "New Query", "admin.reports.items.preset.new": "નવી ક્વેરી", + // "admin.reports.items.preset.hasNoTitle": "Has No Title", "admin.reports.items.preset.hasNoTitle": "કોઈ શીર્ષક નથી", + // "admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri", "admin.reports.items.preset.hasNoIdentifierUri": "કોઈ dc.identifier.uri નથી", + // "admin.reports.items.preset.hasCompoundSubject": "Has compound subject", "admin.reports.items.preset.hasCompoundSubject": "સંયુક્ત વિષય ધરાવે છે", + // "admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author", "admin.reports.items.preset.hasCompoundAuthor": "સંયુક્ત dc.contributor.author ધરાવે છે", + // "admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator", "admin.reports.items.preset.hasCompoundCreator": "સંયુક્ત dc.creator ધરાવે છે", + // "admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description", "admin.reports.items.preset.hasUrlInDescription": "dc.description માં URL ધરાવે છે", + // "admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance", "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance માં સંપૂર્ણ લખાણ ધરાવે છે", + // "admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance", "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance માં નોન-ફુલ ટેક્સ્ટ ધરાવે છે", + // "admin.reports.items.preset.hasEmptyMetadata": "Has empty metadata", "admin.reports.items.preset.hasEmptyMetadata": "ખાલી મેટાડેટા ધરાવે છે", + // "admin.reports.items.preset.hasUnbreakingDataInDescription": "Has unbreaking metadata in description", "admin.reports.items.preset.hasUnbreakingDataInDescription": "વર્ણન માં અનબ્રેકિંગ મેટાડેટા ધરાવે છે", + // "admin.reports.items.preset.hasXmlEntityInMetadata": "Has XML entity in metadata", "admin.reports.items.preset.hasXmlEntityInMetadata": "મેટાડેટા માં XML એન્ટિટી ધરાવે છે", + // "admin.reports.items.preset.hasNonAsciiCharInMetadata": "Has non-ascii character in metadata", "admin.reports.items.preset.hasNonAsciiCharInMetadata": "મેટાડેટા માં નોન-ASCII કૅરેક્ટર ધરાવે છે", + // "admin.reports.items.number": "No.", "admin.reports.items.number": "નંબર", + // "admin.reports.items.id": "UUID", "admin.reports.items.id": "UUID", + // "admin.reports.items.collection": "Collection", "admin.reports.items.collection": "સંગ્રહ", + // "admin.reports.items.handle": "URI", "admin.reports.items.handle": "URI", + // "admin.reports.items.title": "Title", "admin.reports.items.title": "શીર્ષક", + // "admin.reports.commons.filters": "Filters", "admin.reports.commons.filters": "ફિલ્ટર્સ", + // "admin.reports.commons.additional-data": "Additional data to return", "admin.reports.commons.additional-data": "વધારાની માહિતી પરત કરો", + // "admin.reports.commons.previous-page": "Prev Page", "admin.reports.commons.previous-page": "પાછલા પૃષ્ઠ", + // "admin.reports.commons.next-page": "Next Page", "admin.reports.commons.next-page": "આગલા પૃષ્ઠ", + // "admin.reports.commons.page": "Page", "admin.reports.commons.page": "પૃષ્ઠ", + // "admin.reports.commons.of": "of", "admin.reports.commons.of": "ના", + // "admin.reports.commons.export": "Export for Metadata Update", "admin.reports.commons.export": "મેટાડેટા અપડેટ માટે નિકાસ કરો", + // "admin.reports.commons.filters.deselect_all": "Deselect all filters", "admin.reports.commons.filters.deselect_all": "બધા ફિલ્ટર્સ દૂર કરો", + // "admin.reports.commons.filters.select_all": "Select all filters", "admin.reports.commons.filters.select_all": "બધા ફિલ્ટર્સ પસંદ કરો", + // "admin.reports.commons.filters.matches_all": "Matches all specified filters", "admin.reports.commons.filters.matches_all": "બધા નિર્દિષ્ટ ફિલ્ટર્સ સાથે મેળ ખાતું", + // "admin.reports.commons.filters.property": "Item Property Filters", "admin.reports.commons.filters.property": "આઇટમ પ્રોપર્ટી ફિલ્ટર્સ", + // "admin.reports.commons.filters.property.is_item": "Is Item - always true", "admin.reports.commons.filters.property.is_item": "આઇટમ છે - હંમેશા સાચું", + // "admin.reports.commons.filters.property.is_withdrawn": "Withdrawn Items", "admin.reports.commons.filters.property.is_withdrawn": "વિથડ્રોન આઇટમ્સ", + // "admin.reports.commons.filters.property.is_not_withdrawn": "Available Items - Not Withdrawn", "admin.reports.commons.filters.property.is_not_withdrawn": "ઉપલબ્ધ આઇટમ્સ - વિથડ્રોન નથી", + // "admin.reports.commons.filters.property.is_discoverable": "Discoverable Items - Not Private", "admin.reports.commons.filters.property.is_discoverable": "ડિસ્કવરેબલ આઇટમ્સ - પ્રાઇવેટ નથી", + // "admin.reports.commons.filters.property.is_not_discoverable": "Not Discoverable - Private Item", "admin.reports.commons.filters.property.is_not_discoverable": "ડિસ્કવરેબલ નથી - પ્રાઇવેટ આઇટમ", + // "admin.reports.commons.filters.bitstream": "Basic Bitstream Filters", "admin.reports.commons.filters.bitstream": "મૂળ બિટસ્ટ્રીમ ફિલ્ટર્સ", + // "admin.reports.commons.filters.bitstream.has_multiple_originals": "Item has Multiple Original Bitstreams", "admin.reports.commons.filters.bitstream.has_multiple_originals": "આઇટમમાં અનેક મૂળ બિટસ્ટ્રીમ્સ છે", + // "admin.reports.commons.filters.bitstream.has_no_originals": "Item has No Original Bitstreams", "admin.reports.commons.filters.bitstream.has_no_originals": "આઇટમમાં કોઈ મૂળ બિટસ્ટ્રીમ્સ નથી", + // "admin.reports.commons.filters.bitstream.has_one_original": "Item has One Original Bitstream", "admin.reports.commons.filters.bitstream.has_one_original": "આઇટમમાં એક મૂળ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", + // TODO New key - Add a translation + "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", + + // "admin.reports.commons.filters.bitstream_mime.has_doc_original": "Item has a Doc Original Bitstream (PDF, Office, Text, HTML, XML, etc)", "admin.reports.commons.filters.bitstream_mime.has_doc_original": "આઇટમમાં ડોક્યુમેન્ટ ઓરિજિનલ બિટસ્ટ્રીમ છે (PDF, Office, Text, HTML, XML, વગેરે)", + // "admin.reports.commons.filters.bitstream_mime.has_image_original": "Item has an Image Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_image_original": "આઇટમમાં ઇમેજ ઓરિજિનલ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "Has Other Bitstream Types (not Doc or Image)", "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "અન્ય બિટસ્ટ્રીમ પ્રકારો ધરાવે છે (ડોક્યુમેન્ટ અથવા ઇમેજ નથી)", + // "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "Item has multiple types of Original Bitstreams (Doc, Image, Other)", "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "આઇટમમાં ઓરિજિનલ બિટસ્ટ્રીમના અનેક પ્રકારો છે (ડોક્યુમેન્ટ, ઇમેજ, અન્ય)", + // "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "Item has a PDF Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "આઇટમમાં PDF ઓરિજિનલ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "Item has JPG Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "આઇટમમાં JPG ઓરિજિનલ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "Has unusually small PDF", "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "અસામાન્ય રીતે નાનું PDF ધરાવે છે", + // "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "Has unusually large PDF", "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "અસામાન્ય રીતે મોટું PDF ધરાવે છે", + // "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "Has document bitstream without TEXT item", "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "ટેક્સ્ટ આઇટમ વિના ડોક્યુમેન્ટ બિટસ્ટ્રીમ ધરાવે છે", + // "admin.reports.commons.filters.mime": "Supported MIME Type Filters", "admin.reports.commons.filters.mime": "સપોર્ટેડ MIME પ્રકાર ફિલ્ટર્સ", + // "admin.reports.commons.filters.mime.has_only_supp_image_type": "Item Image Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_image_type": "આઇટમ ઇમેજ બિટસ્ટ્રીમ્સ સપોર્ટેડ છે", + // "admin.reports.commons.filters.mime.has_unsupp_image_type": "Item has Image Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_image_type": "આઇટમમાં અસપોર્ટેડ ઇમેજ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.mime.has_only_supp_doc_type": "Item Document Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_doc_type": "આઇટમ ડોક્યુમેન્ટ બિટસ્ટ્રીમ્સ સપોર્ટેડ છે", + // "admin.reports.commons.filters.mime.has_unsupp_doc_type": "Item has Document Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_doc_type": "આઇટમમાં અસપોર્ટેડ ડોક્યુમેન્ટ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.bundle": "Bitstream Bundle Filters", "admin.reports.commons.filters.bundle": "બિટસ્ટ્રીમ બંડલ ફિલ્ટર્સ", + // "admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle", "admin.reports.commons.filters.bundle.has_unsupported_bundle": "અસપોર્ટેડ બંડલમાં બિટસ્ટ્રીમ ધરાવે છે", + // "admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail", "admin.reports.commons.filters.bundle.has_small_thumbnail": "અસામાન્ય રીતે નાનું થંબનેલ ધરાવે છે", + // "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail", "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "થંબનેલ વિના ઓરિજિનલ બિટસ્ટ્રીમ ધરાવે છે", + // "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)", "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "અમાન્ય થંબનેલ નામ ધરાવે છે (દરેક ઓરિજિનલ માટે એક થંબનેલ માન્ય છે)", + // "admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail", "admin.reports.commons.filters.bundle.has_non_generated_thumb": "જેનરેટ ન થયેલું થંબનેલ ધરાવે છે", + // "admin.reports.commons.filters.bundle.no_license": "Doesn't have a license", "admin.reports.commons.filters.bundle.no_license": "લાઇસન્સ નથી", + // "admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle", "admin.reports.commons.filters.bundle.has_license_documentation": "લાઇસન્સ બંડલમાં દસ્તાવેજીકરણ ધરાવે છે", + // "admin.reports.commons.filters.permission": "Permission Filters", "admin.reports.commons.filters.permission": "પરમિશન ફિલ્ટર્સ", + // "admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream", "admin.reports.commons.filters.permission.has_restricted_original": "આઇટમમાં પ્રતિબંધિત ઓરિજિનલ બિટસ્ટ્રીમ છે", + // "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "આઇટમમાં ઓછામાં ઓછું એક ઓરિજિનલ બિટસ્ટ્રીમ છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", + // "admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail", "admin.reports.commons.filters.permission.has_restricted_thumbnail": "આઇટમમાં પ્રતિબંધિત થંબનેલ છે", + // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "આઇટમમાં ઓછામાં ઓછું એક થંબનેલ છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", + // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", "admin.reports.commons.filters.permission.has_restricted_metadata": "આઇટમમાં પ્રતિબંધિત મેટાડેટા છે", + // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "આઇટમમાં મેટાડેટા છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", + // "admin.search.breadcrumbs": "Administrative Search", "admin.search.breadcrumbs": "વહીવટી શોધ", + // "admin.search.collection.edit": "Edit", "admin.search.collection.edit": "સંપાદિત કરો", + // "admin.search.community.edit": "Edit", "admin.search.community.edit": "સંપાદિત કરો", + // "admin.search.item.delete": "Delete", "admin.search.item.delete": "કાઢી નાખો", + // "admin.search.item.edit": "Edit", "admin.search.item.edit": "સંપાદિત કરો", + // "admin.search.item.make-private": "Make non-discoverable", "admin.search.item.make-private": "અપ્રકાશિત બનાવો", + // "admin.search.item.make-public": "Make discoverable", "admin.search.item.make-public": "પ્રકાશિત બનાવો", + // "admin.search.item.move": "Move", "admin.search.item.move": "ખસેડો", + // "admin.search.item.reinstate": "Reinstate", "admin.search.item.reinstate": "ફરી સ્થાપિત કરો", + // "admin.search.item.withdraw": "Withdraw", "admin.search.item.withdraw": "પાછું ખેંચો", + // "admin.search.title": "Administrative Search", "admin.search.title": "વહીવટી શોધ", + // "administrativeView.search.results.head": "Administrative Search", "administrativeView.search.results.head": "વહીવટી શોધ", + // "admin.workflow.breadcrumbs": "Administer Workflow", "admin.workflow.breadcrumbs": "વર્કફ્લો વહીવટ", + // "admin.workflow.title": "Administer Workflow", "admin.workflow.title": "વર્કફ્લો વહીવટ", + // "admin.workflow.item.workflow": "Workflow", "admin.workflow.item.workflow": "વર્કફ્લો", + // "admin.workflow.item.workspace": "Workspace", "admin.workflow.item.workspace": "વર્કસ્પેસ", + // "admin.workflow.item.delete": "Delete", "admin.workflow.item.delete": "કાઢી નાખો", + // "admin.workflow.item.send-back": "Send back", "admin.workflow.item.send-back": "પાછું મોકલો", + // "admin.workflow.item.policies": "Policies", "admin.workflow.item.policies": "પોલિસી", + // "admin.workflow.item.supervision": "Supervision", "admin.workflow.item.supervision": "સુપરવિઝન", + // "admin.metadata-import.breadcrumbs": "Import Metadata", "admin.metadata-import.breadcrumbs": "મેટાડેટા આયાત", + // "admin.batch-import.breadcrumbs": "Import Batch", "admin.batch-import.breadcrumbs": "બેચ આયાત", + // "admin.metadata-import.title": "Import Metadata", "admin.metadata-import.title": "મેટાડેટા આયાત", + // "admin.batch-import.title": "Import Batch", "admin.batch-import.title": "બેચ આયાત", + // "admin.metadata-import.page.header": "Import Metadata", "admin.metadata-import.page.header": "મેટાડેટા આયાત", + // "admin.batch-import.page.header": "Import Batch", "admin.batch-import.page.header": "બેચ આયાત", + // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "તમે અહીં બેચ મેટાડેટા ઓપરેશન્સ ધરાવતી CSV ફાઇલો ડ્રોપ અથવા બ્રાઉઝ કરી શકો છો", + // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", "admin.batch-import.page.help": "આયાત કરવા માટે સંગ્રહ પસંદ કરો. પછી, SAF ઝિપ ફાઇલ ડ્રોપ અથવા બ્રાઉઝ કરો જેમાં આયાત કરવા માટેની આઇટમ્સ શામેલ છે", + // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", "admin.batch-import.page.toggle.help": "આયાત ફાઇલ અપલોડ અથવા URL દ્વારા કરી શકાય છે, ઇનપુટ સોર્સ સેટ કરવા માટે ઉપરના ટૉગલનો ઉપયોગ કરો", + // "admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import", "admin.metadata-import.page.dropMsg": "મેટાડેટા CSV આયાત કરવા માટે ડ્રોપ કરો", + // "admin.batch-import.page.dropMsg": "Drop a batch ZIP to import", "admin.batch-import.page.dropMsg": "બેચ ઝિપ આયાત કરવા માટે ડ્રોપ કરો", + // "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import", "admin.metadata-import.page.dropMsgReplace": "મેટાડેટા CSV આયાત કરવા માટે બદલો", + // "admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import", "admin.batch-import.page.dropMsgReplace": "બેચ ઝિપ આયાત કરવા માટે બદલો", + // "admin.metadata-import.page.button.return": "Back", "admin.metadata-import.page.button.return": "પાછા", + // "admin.metadata-import.page.button.proceed": "Proceed", "admin.metadata-import.page.button.proceed": "આગળ વધો", + // "admin.metadata-import.page.button.select-collection": "Select Collection", "admin.metadata-import.page.button.select-collection": "સંગ્રહ પસંદ કરો", + // "admin.metadata-import.page.error.addFile": "Select file first!", "admin.metadata-import.page.error.addFile": "પ્રથમ ફાઇલ પસંદ કરો!", + // "admin.metadata-import.page.error.addFileUrl": "Insert file URL first!", "admin.metadata-import.page.error.addFileUrl": "પ્રથમ ફાઇલ URL દાખલ કરો!", + // "admin.batch-import.page.error.addFile": "Select ZIP file first!", "admin.batch-import.page.error.addFile": "પ્રથમ ઝિપ ફાઇલ પસંદ કરો!", + // "admin.metadata-import.page.toggle.upload": "Upload", "admin.metadata-import.page.toggle.upload": "અપલોડ", + // "admin.metadata-import.page.toggle.url": "URL", "admin.metadata-import.page.toggle.url": "URL", + // "admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import", "admin.metadata-import.page.urlMsg": "આયાત કરવા માટે બેચ ઝિપ URL દાખલ કરો", + // "admin.metadata-import.page.validateOnly": "Validate Only", "admin.metadata-import.page.validateOnly": "માત્ર માન્ય કરો", + // "admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.metadata-import.page.validateOnly.hint": "જ્યારે પસંદ કરેલ હોય, ત્યારે અપલોડ કરેલ CSV માન્ય કરવામાં આવશે. તમને શોધાયેલા ફેરફારોનો અહેવાલ મળશે, પરંતુ કોઈ ફેરફારો સાચવવામાં આવશે નહીં.", + // "advanced-workflow-action.rating.form.rating.label": "Rating", "advanced-workflow-action.rating.form.rating.label": "રેટિંગ", + // "advanced-workflow-action.rating.form.rating.error": "You must rate the item", "advanced-workflow-action.rating.form.rating.error": "તમે આઇટમને રેટ કરવું જ જોઈએ", + // "advanced-workflow-action.rating.form.review.label": "Review", "advanced-workflow-action.rating.form.review.label": "સમીક્ષા", + // "advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating", "advanced-workflow-action.rating.form.review.error": "આ રેટિંગ સબમિટ કરવા માટે તમારે સમીક્ષા દાખલ કરવી જ જોઈએ", + // "advanced-workflow-action.rating.description": "Please select a rating below", "advanced-workflow-action.rating.description": "કૃપા કરીને નીચે રેટિંગ પસંદ કરો", + // "advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review", "advanced-workflow-action.rating.description-requiredDescription": "કૃપા કરીને નીચે રેટિંગ પસંદ કરો અને સમીક્ષા ઉમેરો", + // "advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting", "advanced-workflow-action.select-reviewer.description-single": "સબમિટ કરતા પહેલા કૃપા કરીને નીચે એક રિવ્યુઅર પસંદ કરો", + // "advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting", "advanced-workflow-action.select-reviewer.description-multiple": "સબમિટ કરતા પહેલા કૃપા કરીને એક અથવા વધુ રિવ્યુઅર્સ પસંદ કરો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "EPeople ઉમેરો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "બધા બ્રાઉઝ કરો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "વર્તમાન સભ્યો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "શોધો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "નામ", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ઓળખ", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ઇમેઇલ", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "દૂર કરો / ઉમેરો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "{{name}} નામના સભ્યને દૂર કરો", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "સફળતાપૂર્વક {{name}} સભ્ય ઉમેર્યું", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "{{name}} સભ્ય ઉમેરવામાં નિષ્ફળ", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "સફળતાપૂર્વક {{name}} સભ્ય કાઢી નાખ્યું", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "{{name}} સભ્ય કાઢી નાખવામાં નિષ્ફળ", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "{{name}} નામના સભ્યને ઉમેરો", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", + // "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.", "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "કોઈ રિવ્યુઅર પસંદ કરેલ નથી.", + // "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.batch-import.page.validateOnly.hint": "જ્યારે પસંદ કરેલ હોય, ત્યારે અપલોડ કરેલ ઝિપ માન્ય કરવામાં આવશે. તમને શોધાયેલા ફેરફારોનો અહેવાલ મળશે, પરંતુ કોઈ ફેરફારો સાચવવામાં આવશે નહીં.", + // "admin.batch-import.page.remove": "remove", "admin.batch-import.page.remove": "દૂર કરો", + // "auth.errors.invalid-user": "Invalid email address or password.", "auth.errors.invalid-user": "અમાન્ય ઇમેઇલ સરનામું અથવા પાસવર્ડ.", + // "auth.messages.expired": "Your session has expired. Please log in again.", "auth.messages.expired": "તમારો સત્ર સમાપ્ત થયો છે. કૃપા કરીને ફરી લૉગ ઇન કરો.", + // "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.", "auth.messages.token-refresh-failed": "તમારા સત્ર ટોકનને રિફ્રેશ કરવામાં નિષ્ફળ. કૃપા કરીને ફરી લૉગ ઇન કરો.", + // "bitstream.download.page": "Now downloading {{bitstream}}...", "bitstream.download.page": "હવે {{bitstream}} ડાઉનલોડ કરી રહ્યા છે...", + // "bitstream.download.page.back": "Back", "bitstream.download.page.back": "પાછા", + // "bitstream.edit.authorizations.link": "Edit bitstream's Policies", "bitstream.edit.authorizations.link": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો", + // "bitstream.edit.authorizations.title": "Edit bitstream's Policies", "bitstream.edit.authorizations.title": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો", + // "bitstream.edit.return": "Back", "bitstream.edit.return": "પાછા", - "bitstream.edit.bitstream": "બિટસ્ટ્રીમ: ", + // "bitstream.edit.bitstream": "Bitstream: ", + // TODO New key - Add a translation + "bitstream.edit.bitstream": "Bitstream: ", + // "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".", "bitstream.edit.form.description.hint": "વૈકલ્પિક રીતે, ફાઇલનું સંક્ષિપ્ત વર્ણન પ્રદાન કરો, ઉદાહરણ તરીકે \"મુખ્ય લેખ\" અથવા \"પ્રયોગ ડેટા રીડિંગ્સ\".", + // "bitstream.edit.form.description.label": "Description", "bitstream.edit.form.description.label": "વર્ણન", + // "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.", "bitstream.edit.form.embargo.hint": "પ્રવેશની મંજૂરી આપવામાં આવેલી પ્રથમ તારીખ. આ તારીખને આ ફોર્મ પર ફેરફાર કરી શકાતી નથી. બિટસ્ટ્રીમ માટે એમ્બાર્ગો તારીખ સેટ કરવા માટે, આઇટમ સ્ટેટસ ટેબ પર જાઓ, અધિકૃતતા... ક્લિક કરો, બિટસ્ટ્રીમની READ પોલિસી બનાવો અથવા સંપાદિત કરો, અને ઇચ્છિત પ્રારંભ તારીખ સેટ કરો.", + // "bitstream.edit.form.embargo.label": "Embargo until specific date", "bitstream.edit.form.embargo.label": "વિશિષ્ટ તારીખ સુધી એમ્બાર્ગો", + // "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": "બિટસ્ટ્રીમ માટે ફાઇલનું નામ બદલો. નોંધો કે આ બિટસ્ટ્રીમ URLને પ્રદર્શિત કરશે, પરંતુ જૂના લિંક્સ હજી પણ ઉકેલશે જો ક્રમ ID બદલાતું નથી.", + // "bitstream.edit.form.fileName.label": "Filename", "bitstream.edit.form.fileName.label": "ફાઇલનું નામ", + // "bitstream.edit.form.newFormat.label": "Describe new format", "bitstream.edit.form.newFormat.label": "નવું ફોર્મેટ વર્ણવો", + // "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"ACMESoft SuperApp version 1.5\").", "bitstream.edit.form.newFormat.hint": "ફાઇલ બનાવવા માટે તમે જે એપ્લિકેશનનો ઉપયોગ કર્યો છે, અને સંસ્કરણ નંબર (ઉદાહરણ તરીકે, \"ACMESoft SuperApp version 1.5\").", + // "bitstream.edit.form.primaryBitstream.label": "Primary File", "bitstream.edit.form.primaryBitstream.label": "પ્રાથમિક ફાઇલ", + // "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, select \"format not in list\" above and describe it under \"Describe new format\".", "bitstream.edit.form.selectedFormat.hint": "જો ફોર્મેટ ઉપરની યાદીમાં નથી, ઉપર \"યાદીમાં ફોર્મેટ નથી\" પસંદ કરો અને \"નવું ફોર્મેટ વર્ણવો\" હેઠળ તેને વર્ણવો.", + // "bitstream.edit.form.selectedFormat.label": "Selected Format", "bitstream.edit.form.selectedFormat.label": "પસંદ કરેલ ફોર્મેટ", + // "bitstream.edit.form.selectedFormat.unknown": "Format not in list", "bitstream.edit.form.selectedFormat.unknown": "યાદીમાં ફોર્મેટ નથી", + // "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format", "bitstream.edit.notifications.error.format.title": "બિટસ્ટ્રીમના ફોર્મેટને સાચવવામાં ભૂલ આવી", + // "bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream", "bitstream.edit.notifications.error.primaryBitstream.title": "પ્રાથમિક બિટસ્ટ્રીમને સાચવવામાં ભૂલ આવી", + // "bitstream.edit.form.iiifLabel.label": "IIIF Label", "bitstream.edit.form.iiifLabel.label": "IIIF લેબલ", + // "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.", "bitstream.edit.form.iiifLabel.hint": "આ છબી માટે કેનવાસ લેબલ. જો પ્રદાન ન કરવામાં આવે તો ડિફોલ્ટ લેબલનો ઉપયોગ કરવામાં આવશે.", + // "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents", "bitstream.edit.form.iiifToc.label": "IIIF ટેબલ ઓફ કન્ટેન્ટ્સ", + // "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.", "bitstream.edit.form.iiifToc.hint": "અહીં ટેક્સ્ટ ઉમેરવાથી આ નવું ટેબલ ઓફ કન્ટેન્ટ્સ રેન્જનું પ્રારંભ બને છે.", + // "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width", "bitstream.edit.form.iiifWidth.label": "IIIF કેનવાસ પહોળાઈ", + // "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.", "bitstream.edit.form.iiifWidth.hint": "કેનવાસની પહોળાઈ સામાન્ય રીતે છબીની પહોળાઈ સાથે મેળ ખાતી હોવી જોઈએ.", + // "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height", "bitstream.edit.form.iiifHeight.label": "IIIF કેનવાસ ઊંચાઈ", + // "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.", "bitstream.edit.form.iiifHeight.hint": "કેનવાસની ઊંચાઈ સામાન્ય રીતે છબીની ઊંચાઈ સાથે મેળ ખાતી હોવી જોઈએ.", + // "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.", "bitstream.edit.notifications.saved.content": "આ બિટસ્ટ્રીમ માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", + // "bitstream.edit.notifications.saved.title": "Bitstream saved", "bitstream.edit.notifications.saved.title": "બિટસ્ટ્રીમ સાચવ્યું", + // "bitstream.edit.title": "Edit bitstream", "bitstream.edit.title": "બિટસ્ટ્રીમ સંપાદિત કરો", + // "bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ", "bitstream-request-a-copy.alert.canDownload1": "તમને આ ફાઇલ ઍક્સેસ કરવાની મંજૂરી છે. જો તમે ફાઇલ ડાઉનલોડ કરવા માંગો છો, તો ક્લિક કરો ", + // "bitstream-request-a-copy.alert.canDownload2": "here", "bitstream-request-a-copy.alert.canDownload2": "અહીં", + // "bitstream-request-a-copy.header": "Request a copy of the file", "bitstream-request-a-copy.header": "ફાઇલની નકલ માટે વિનંતી કરો", - "bitstream-request-a-copy.intro": "નીચેની માહિતી દાખલ કરો જેથી નીચેના આઇટમ માટે નકલની વિનંતી કરી શકાય: ", + // "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", + // TODO New key - Add a translation + "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", - "bitstream-request-a-copy.intro.bitstream.one": "નીચેની ફાઇલ માટે વિનંતી કરી રહ્યા છે: ", + // "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + // TODO New key - Add a translation + "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + // "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ", "bitstream-request-a-copy.intro.bitstream.all": "બધી ફાઇલો માટે વિનંતી કરી રહ્યા છે. ", + // "bitstream-request-a-copy.name.label": "Name *", "bitstream-request-a-copy.name.label": "નામ *", + // "bitstream-request-a-copy.name.error": "The name is required", "bitstream-request-a-copy.name.error": "નામ જરૂરી છે", + // "bitstream-request-a-copy.email.label": "Your email address *", "bitstream-request-a-copy.email.label": "તમારું ઇમેઇલ સરનામું *", + // "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.", "bitstream-request-a-copy.email.hint": "આ ઇમેઇલ સરનામું ફાઇલ મોકલવા માટે વપરાય છે.", + // "bitstream-request-a-copy.email.error": "Please enter a valid email address.", "bitstream-request-a-copy.email.error": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું દાખલ કરો.", + // "bitstream-request-a-copy.allfiles.label": "Files", "bitstream-request-a-copy.allfiles.label": "ફાઇલો", + // "bitstream-request-a-copy.files-all-false.label": "Only the requested file", "bitstream-request-a-copy.files-all-false.label": "માત્ર વિનંતી કરેલ ફાઇલ", + // "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access", "bitstream-request-a-copy.files-all-true.label": "આઇટમની બધી ફાઇલો (પ્રતિબંધિત ઍક્સેસમાં)", + // "bitstream-request-a-copy.message.label": "Message", "bitstream-request-a-copy.message.label": "સંદેશ", + // "bitstream-request-a-copy.return": "Back", "bitstream-request-a-copy.return": "પાછા", + // "bitstream-request-a-copy.submit": "Request copy", "bitstream-request-a-copy.submit": "નકલ માટે વિનંતી કરો", + // "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.", "bitstream-request-a-copy.submit.success": "આઇટમ વિનંતી સફળતાપૂર્વક સબમિટ કરવામાં આવી.", + // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "આઇટમ વિનંતી સબમિટ કરતી વખતે કંઈક ખોટું થયું.", + // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", "bitstream-request-a-copy.access-by-token.warning": "તમે આ આઇટમને સુરક્ષિત ઍક્સેસ લિંક દ્વારા જોઈ રહ્યા છો જે તમને લેખક અથવા રિપોઝિટરી સ્ટાફ દ્વારા પ્રદાન કરવામાં આવી છે. આ લિંકને અનધિકૃત વપરાશકર્તાઓ સાથે શેર ન કરવું મહત્વપૂર્ણ છે.", + // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", "bitstream-request-a-copy.access-by-token.expiry-label": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ સમાપ્ત થશે", + // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", "bitstream-request-a-copy.access-by-token.expired": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ હવે શક્ય નથી. ઍક્સેસ સમાપ્ત થઈ ગઈ છે", + // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", "bitstream-request-a-copy.access-by-token.not-granted": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ શક્ય નથી. ઍક્સેસ είτε મંજુર કરવામાં આવી નથી, είτε રદ કરવામાં આવી છે.", + // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", "bitstream-request-a-copy.access-by-token.re-request": "ઍક્સેસ માટે નવી વિનંતી સબમિટ કરવા માટે પ્રતિબંધિત ડાઉનલોડ લિંક્સને અનુસરો.", + // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", "bitstream-request-a-copy.access-by-token.alt-text": "આ આઇટમ માટે ઍક્સેસ સુરક્ષિત ટોકન દ્વારા પ્રદાન કરવામાં આવે છે", + // "browse.back.all-results": "All browse results", "browse.back.all-results": "બધા બ્રાઉઝ પરિણામો", + // "browse.comcol.by.author": "By Author", "browse.comcol.by.author": "લેખક દ્વારા", + // "browse.comcol.by.dateissued": "By Issue Date", "browse.comcol.by.dateissued": "પ્રકાશન તારીખ દ્વારા", + // "browse.comcol.by.subject": "By Subject", "browse.comcol.by.subject": "વિષય દ્વારા", + // "browse.comcol.by.srsc": "By Subject Category", "browse.comcol.by.srsc": "વિષય શ્રેણી દ્વારા", + // "browse.comcol.by.nsi": "By Norwegian Science Index", "browse.comcol.by.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા", + // "browse.comcol.by.title": "By Title", "browse.comcol.by.title": "શીર્ષક દ્વારા", + // "browse.comcol.head": "Browse", "browse.comcol.head": "બ્રાઉઝ", + // "browse.empty": "No items to show.", "browse.empty": "બતાવવા માટે કોઈ આઇટમ્સ નથી.", + // "browse.metadata.author": "Author", "browse.metadata.author": "લેખક", + // "browse.metadata.dateissued": "Issue Date", "browse.metadata.dateissued": "પ્રકાશન તારીખ", + // "browse.metadata.subject": "Subject", "browse.metadata.subject": "વિષય", + // "browse.metadata.title": "Title", "browse.metadata.title": "શીર્ષક", + // "browse.metadata.srsc": "Subject Category", "browse.metadata.srsc": "વિષય શ્રેણી", + // "browse.metadata.author.breadcrumbs": "Browse by Author", "browse.metadata.author.breadcrumbs": "લેખક દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.dateissued.breadcrumbs": "Browse by Date", "browse.metadata.dateissued.breadcrumbs": "તારીખ દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.subject.breadcrumbs": "Browse by Subject", "browse.metadata.subject.breadcrumbs": "વિષય દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.srsc.breadcrumbs": "Browse by Subject Category", "browse.metadata.srsc.breadcrumbs": "વિષય શ્રેણી દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.srsc.tree.description": "Select a subject to add as search filter", "browse.metadata.srsc.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", + // "browse.metadata.nsi.breadcrumbs": "Browse by Norwegian Science Index", "browse.metadata.nsi.breadcrumbs": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.nsi.tree.description": "Select an index to add as search filter", "browse.metadata.nsi.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે ઇન્ડેક્સ પસંદ કરો", + // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "શીર્ષક દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.map": "Browse by Geolocation", "browse.metadata.map": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", "browse.metadata.map.breadcrumbs": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", + // "browse.metadata.map.count.items": "items", "browse.metadata.map.count.items": "આઇટમ્સ", + // "pagination.next.button": "Next", "pagination.next.button": "આગલું", + // "pagination.previous.button": "Previous", "pagination.previous.button": "પાછલું", + // "pagination.next.button.disabled.tooltip": "No more pages of results", "pagination.next.button.disabled.tooltip": "કોઈ વધુ પૃષ્ઠો નથી", - "pagination.page-number-bar": "પૃષ્ઠ નેવિગેશન માટે કંટ્રોલ બાર, ID સાથેના તત્વ માટે: ", + // "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + // TODO New key - Add a translation + "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + // "browse.startsWith": ", starting with {{ startsWith }}", "browse.startsWith": ", {{ startsWith }} થી શરૂ થાય છે", + // "browse.startsWith.choose_start": "(Choose start)", "browse.startsWith.choose_start": "(શરૂઆત પસંદ કરો)", + // "browse.startsWith.choose_year": "(Choose year)", "browse.startsWith.choose_year": "(વર્ષ પસંદ કરો)", + // "browse.startsWith.choose_year.label": "Choose the issue year", "browse.startsWith.choose_year.label": "પ્રકાશન વર્ષ પસંદ કરો", + // "browse.startsWith.jump": "Filter results by year or month", "browse.startsWith.jump": "વર્ષ અથવા મહિના દ્વારા પરિણામો ફિલ્ટર કરો", + // "browse.startsWith.months.april": "April", "browse.startsWith.months.april": "એપ્રિલ", + // "browse.startsWith.months.august": "August", "browse.startsWith.months.august": "ઑગસ્ટ", + // "browse.startsWith.months.december": "December", "browse.startsWith.months.december": "ડિસેમ્બર", + // "browse.startsWith.months.february": "February", "browse.startsWith.months.february": "ફેબ્રુઆરી", + // "browse.startsWith.months.january": "January", "browse.startsWith.months.january": "જાન્યુઆરી", + // "browse.startsWith.months.july": "July", "browse.startsWith.months.july": "જુલાઈ", + // "browse.startsWith.months.june": "June", "browse.startsWith.months.june": "જૂન", + // "browse.startsWith.months.march": "March", "browse.startsWith.months.march": "માર્ચ", + // "browse.startsWith.months.may": "May", "browse.startsWith.months.may": "મે", + // "browse.startsWith.months.none": "(Choose month)", "browse.startsWith.months.none": "(મહિનો પસંદ કરો)", + // "browse.startsWith.months.none.label": "Choose the issue month", "browse.startsWith.months.none.label": "પ્રકાશન મહિનો પસંદ કરો", + // "browse.startsWith.months.november": "November", "browse.startsWith.months.november": "નવેમ્બર", + // "browse.startsWith.months.october": "October", "browse.startsWith.months.october": "ઑક્ટોબર", + // "browse.startsWith.months.september": "September", "browse.startsWith.months.september": "સપ્ટેમ્બર", + // "browse.startsWith.submit": "Browse", "browse.startsWith.submit": "બ્રાઉઝ", + // "browse.startsWith.type_date": "Filter results by date", "browse.startsWith.type_date": "તારીખ દ્વારા પરિણામો ફિલ્ટર કરો", + // "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button", "browse.startsWith.type_date.label": "અથવા તારીખ (વર્ષ-મહિનો) દાખલ કરો અને બ્રાઉઝ બટન પર ક્લિક કરો", + // "browse.startsWith.type_text": "Filter results by typing the first few letters", "browse.startsWith.type_text": "પ્રથમ થોડા અક્ષરો ટાઇપ કરીને પરિણામો ફિલ્ટર કરો", + // "browse.startsWith.input": "Filter", "browse.startsWith.input": "ફિલ્ટર", + // "browse.taxonomy.button": "Browse", "browse.taxonomy.button": "બ્રાઉઝ", + // "browse.title": "Browsing by {{ field }}{{ startsWith }} {{ value }}", "browse.title": "{{ field }}{{ startsWith }} {{ value }} દ્વારા બ્રાઉઝિંગ", + // "browse.title.page": "Browsing by {{ field }} {{ value }}", "browse.title.page": "{{ field }} {{ value }} દ્વારા બ્રાઉઝિંગ", + // "search.browse.item-back": "Back to Results", "search.browse.item-back": "પરિણામો પર પાછા જાઓ", + // "chips.remove": "Remove chip", "chips.remove": "ચિપ દૂર કરો", + // "claimed-approved-search-result-list-element.title": "Approved", "claimed-approved-search-result-list-element.title": "મંજૂર", + // "claimed-declined-search-result-list-element.title": "Rejected, sent back to submitter", "claimed-declined-search-result-list-element.title": "નકારવામાં આવ્યું, સબમિટરને પાછું મોકલવામાં આવ્યું", + // "claimed-declined-task-search-result-list-element.title": "Declined, sent back to Review Manager's workflow", "claimed-declined-task-search-result-list-element.title": "નકારવામાં આવ્યું, રિવ્યુ મેનેજરના વર્કફ્લો પર પાછું મોકલવામાં આવ્યું", + // "collection.create.breadcrumbs": "Create collection", "collection.create.breadcrumbs": "સંગ્રહ બનાવો", + // "collection.browse.logo": "Browse for a collection logo", "collection.browse.logo": "સંગ્રહ લોગો માટે બ્રાઉઝ કરો", + // "collection.create.head": "Create a Collection", "collection.create.head": "સંગ્રહ બનાવો", + // "collection.create.notifications.success": "Successfully created the collection", "collection.create.notifications.success": "સંગ્રહ સફળતાપૂર્વક બનાવવામાં આવ્યો", + // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", "collection.create.sub-head": "સમુદાય {{ parent }} માટે સંગ્રહ બનાવો", - "collection.curate.header": "સંગ્રહ ક્યુરેટ કરો: {{collection}}", + // "collection.curate.header": "Curate Collection: {{collection}}", + // TODO New key - Add a translation + "collection.curate.header": "Curate Collection: {{collection}}", + // "collection.delete.cancel": "Cancel", "collection.delete.cancel": "રદ કરો", + // "collection.delete.confirm": "Confirm", "collection.delete.confirm": "ખાતરી કરો", + // "collection.delete.processing": "Deleting", "collection.delete.processing": "કાઢી રહ્યા છે", + // "collection.delete.head": "Delete Collection", "collection.delete.head": "સંગ્રહ કાઢી નાખો", + // "collection.delete.notification.fail": "Collection could not be deleted", "collection.delete.notification.fail": "સંગ્રહ કાઢી શકાતો નથી", + // "collection.delete.notification.success": "Successfully deleted collection", "collection.delete.notification.success": "સંગ્રહ સફળતાપૂર્વક કાઢી નાખ્યો", + // "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"", "collection.delete.text": "શું તમે ખરેખર સંગ્રહ \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", + // "collection.edit.delete": "Delete this collection", "collection.edit.delete": "આ સંગ્રહ કાઢી નાખો", + // "collection.edit.head": "Edit Collection", "collection.edit.head": "સંગ્રહ સંપાદિત કરો", + // "collection.edit.breadcrumbs": "Edit Collection", "collection.edit.breadcrumbs": "સંગ્રહ સંપાદિત કરો", + // "collection.edit.tabs.mapper.head": "Item Mapper", "collection.edit.tabs.mapper.head": "આઇટમ મેપર", + // "collection.edit.tabs.item-mapper.title": "Collection Edit - Item Mapper", "collection.edit.tabs.item-mapper.title": "સંગ્રહ સંપાદન - આઇટમ મેપર", + // "collection.edit.item-mapper.cancel": "Cancel", "collection.edit.item-mapper.cancel": "રદ કરો", - "collection.edit.item-mapper.collection": "સંગ્રહ: \\\"{{name}}\\\"", + // "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + // TODO New key - Add a translation + "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + // "collection.edit.item-mapper.confirm": "Map selected items", "collection.edit.item-mapper.confirm": "પસંદ કરેલ આઇટમ્સ મેપ કરો", + // "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.", "collection.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે સંગ્રહ વહીવટકર્તાઓને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરવાની મંજૂરી આપે છે. તમે અન્ય સંગ્રહોમાંથી આઇટમ્સ શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા હાલમાં મેપ કરેલ આઇટમ્સની યાદી બ્રાઉઝ કરી શકો છો.", + // "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections", "collection.edit.item-mapper.head": "આઇટમ મેપર - અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરો", + // "collection.edit.item-mapper.no-search": "Please enter a query to search", "collection.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", + // "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.", "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} આઇટમ્સના મેપિંગ માટે ભૂલો આવી.", + // "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors", "collection.edit.item-mapper.notifications.map.error.head": "મેપિંગ ભૂલો", + // "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.", "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} આઇટમ્સ સફળતાપૂર્વક મેપ કરવામાં આવ્યા.", + // "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed", "collection.edit.item-mapper.notifications.map.success.head": "મેપિંગ પૂર્ણ", + // "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} આઇટમ્સના મેપિંગ દૂર કરતી વખતે ભૂલો આવી.", + // "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors", "collection.edit.item-mapper.notifications.unmap.error.head": "મેપિંગ દૂર કરવાની ભૂલો", + // "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} આઇટમ્સના મેપિંગ સફળતાપૂર્વક દૂર કરવામાં આવ્યા.", + // "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed", "collection.edit.item-mapper.notifications.unmap.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", + // "collection.edit.item-mapper.remove": "Remove selected item mappings", "collection.edit.item-mapper.remove": "પસંદ કરેલ આઇટમ મેપિંગ્સ દૂર કરો", + // "collection.edit.item-mapper.search-form.placeholder": "Search items...", "collection.edit.item-mapper.search-form.placeholder": "આઇટમ્સ શોધો...", + // "collection.edit.item-mapper.tabs.browse": "Browse mapped items", "collection.edit.item-mapper.tabs.browse": "મેપ કરેલ આઇટમ્સ બ્રાઉઝ કરો", + // "collection.edit.item-mapper.tabs.map": "Map new items", "collection.edit.item-mapper.tabs.map": "નવા આઇટમ્સ મેપ કરો", + // "collection.edit.logo.delete.title": "Delete logo", "collection.edit.logo.delete.title": "લોગો કાઢી નાખો", + // "collection.edit.logo.delete-undo.title": "Undo delete", "collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "સંગ્રહ લોગો", + // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", "collection.edit.logo.notifications.add.error": "સંગ્રહ લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", + // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", "collection.edit.logo.notifications.add.success": "સંગ્રહ લોગો સફળતાપૂર્વક અપલોડ થયો.", + // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", "collection.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", + // "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo", "collection.edit.logo.notifications.delete.success.content": "સંગ્રહનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", + // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", + // "collection.edit.logo.upload": "Drop a collection logo to upload", "collection.edit.logo.upload": "અપલોડ કરવા માટે સંગ્રહ લોગો ડ્રોપ કરો", + // "collection.edit.notifications.success": "Successfully edited the collection", "collection.edit.notifications.success": "સંગ્રહ સફળતાપૂર્વક સંપાદિત કર્યો", + // "collection.edit.return": "Back", "collection.edit.return": "પાછા", + // "collection.edit.tabs.access-control.head": "Access Control", "collection.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", + // "collection.edit.tabs.access-control.title": "Collection Edit - Access Control", "collection.edit.tabs.access-control.title": "સંગ્રહ સંપાદન - ઍક્સેસ કંટ્રોલ", + // "collection.edit.tabs.curate.head": "Curate", "collection.edit.tabs.curate.head": "ક્યુરેટ", + // "collection.edit.tabs.curate.title": "Collection Edit - Curate", "collection.edit.tabs.curate.title": "સંગ્રહ સંપાદન - ક્યુરેટ", + // "collection.edit.tabs.authorizations.head": "Authorizations", "collection.edit.tabs.authorizations.head": "અધિકૃતતા", + // "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations", "collection.edit.tabs.authorizations.title": "સંગ્રહ સંપાદન - અધિકૃતતા", + // "collection.edit.item.authorizations.load-bundle-button": "Load more bundles", "collection.edit.item.authorizations.load-bundle-button": "વધુ બંડલ્સ લોડ કરો", + // "collection.edit.item.authorizations.load-more-button": "Load more", "collection.edit.item.authorizations.load-more-button": "વધુ લોડ કરો", + // "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle", "collection.edit.item.authorizations.show-bitstreams-button": "બંડલ માટે બિટસ્ટ્રીમ પોલિસી બતાવો", + // "collection.edit.tabs.metadata.head": "Edit Metadata", "collection.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", + // "collection.edit.tabs.metadata.title": "Collection Edit - Metadata", "collection.edit.tabs.metadata.title": "સંગ્રહ સંપાદન - મેટાડેટા", + // "collection.edit.tabs.roles.head": "Assign Roles", "collection.edit.tabs.roles.head": "ભૂમિકા સોંપો", + // "collection.edit.tabs.roles.title": "Collection Edit - Roles", "collection.edit.tabs.roles.title": "સંગ્રહ સંપાદન - ભૂમિકા", + // "collection.edit.tabs.source.external": "This collection harvests its content from an external source", "collection.edit.tabs.source.external": "આ સંગ્રહ તેની સામગ્રી બાહ્ય સ્ત્રોતમાંથી હાર્વેસ્ટ કરે છે", + // "collection.edit.tabs.source.form.errors.oaiSource.required": "You must provide a set id of the target collection.", "collection.edit.tabs.source.form.errors.oaiSource.required": "તમારે લક્ષ્ય સંગ્રહનો સેટ id પ્રદાન કરવો જ જોઈએ.", + // "collection.edit.tabs.source.form.harvestType": "Content being harvested", "collection.edit.tabs.source.form.harvestType": "હાર્વેસ્ટ થતી સામગ્રી", + // "collection.edit.tabs.source.form.head": "Configure an external source", "collection.edit.tabs.source.form.head": "બાહ્ય સ્ત્રોત કૉન્ફિગર કરો", + // "collection.edit.tabs.source.form.metadataConfigId": "Metadata Format", "collection.edit.tabs.source.form.metadataConfigId": "મેટાડેટા ફોર્મેટ", + // "collection.edit.tabs.source.form.oaiSetId": "OAI specific set id", "collection.edit.tabs.source.form.oaiSetId": "OAI વિશિષ્ટ સેટ id", + // "collection.edit.tabs.source.form.oaiSource": "OAI Provider", "collection.edit.tabs.source.form.oaiSource": "OAI પ્રદાતા", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Harvest metadata and bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "મેટાડેટા અને બિટસ્ટ્રીમ્સ હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Harvest metadata and references to bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "મેટાડેટા અને બિટસ્ટ્રીમ્સના સંદર્ભો હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Harvest metadata only", "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "મેટાડેટા માત્ર હાર્વેસ્ટ કરો", + // "collection.edit.tabs.source.head": "Content Source", "collection.edit.tabs.source.head": "સામગ્રી સ્ત્રોત", + // "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "collection.edit.tabs.source.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + // "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded", "collection.edit.tabs.source.notifications.discarded.title": "ફેરફારો રદ", + // "collection.edit.tabs.source.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "collection.edit.tabs.source.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", + // "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid", "collection.edit.tabs.source.notifications.invalid.title": "મેટાડેટા અમાન્ય", + // "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.", "collection.edit.tabs.source.notifications.saved.content": "આ સંગ્રહના સામગ્રી સ્ત્રોત માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", + // "collection.edit.tabs.source.notifications.saved.title": "Content Source saved", "collection.edit.tabs.source.notifications.saved.title": "સામગ્રી સ્ત્રોત સાચવ્યું", + // "collection.edit.tabs.source.title": "Collection Edit - Content Source", "collection.edit.tabs.source.title": "સંગ્રહ સંપાદન - સામગ્રી સ્ત્રોત", + // "collection.edit.template.add-button": "Add", "collection.edit.template.add-button": "ઉમેરો", + // "collection.edit.template.breadcrumbs": "Item template", "collection.edit.template.breadcrumbs": "આઇટમ ટેમ્પલેટ", + // "collection.edit.template.cancel": "Cancel", "collection.edit.template.cancel": "રદ કરો", + // "collection.edit.template.delete-button": "Delete", "collection.edit.template.delete-button": "કાઢી નાખો", + // "collection.edit.template.edit-button": "Edit", "collection.edit.template.edit-button": "સંપાદિત કરો", + // "collection.edit.template.error": "An error occurred retrieving the template item", "collection.edit.template.error": "ટેમ્પલેટ આઇટમ મેળવતી વખતે ભૂલ આવી", + // "collection.edit.template.head": "Edit Template Item for Collection \"{{ collection }}\"", "collection.edit.template.head": "સંગ્રહ \\\"{{ collection }}\\\" માટે ટેમ્પલેટ આઇટમ સંપાદિત કરો", + // "collection.edit.template.label": "Template item", "collection.edit.template.label": "ટેમ્પલેટ આઇટમ", + // "collection.edit.template.loading": "Loading template item...", "collection.edit.template.loading": "ટેમ્પલેટ આઇટમ લોડ કરી રહ્યું છે...", + // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "આઇટમ ટેમ્પલેટ કાઢી નાખવામાં નિષ્ફળ", + // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", "collection.edit.template.notifications.delete.success": "આઇટમ ટેમ્પલેટ સફળતાપૂર્વક કાઢી નાખ્યું", + // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "ટેમ્પલેટ આઇટમ સંપાદિત કરો", + // "collection.form.abstract": "Short Description", "collection.form.abstract": "સંક્ષિપ્ત વર્ણન", + // "collection.form.description": "Introductory text (HTML)", "collection.form.description": "પરિચયાત્મક લખાણ (HTML)", + // "collection.form.errors.title.required": "Please enter a collection name", "collection.form.errors.title.required": "કૃપા કરીને સંગ્રહનું નામ દાખલ કરો", + // "collection.form.license": "License", "collection.form.license": "લાઇસન્સ", + // "collection.form.provenance": "Provenance", "collection.form.provenance": "પ્રૂવનન્સ", + // "collection.form.rights": "Copyright text (HTML)", "collection.form.rights": "કૉપિરાઇટ લખાણ (HTML)", + // "collection.form.tableofcontents": "News (HTML)", "collection.form.tableofcontents": "સમાચાર (HTML)", + // "collection.form.title": "Name", "collection.form.title": "નામ", - "collection.form.entityType": "સત્તા પ્રકાર", - - "collection.listelement.badge": "સંગ્રહ", - - "collection.logo": "સંગ્રહ લોગો", - - "collection.page.browse.search.head": "શોધો", - - "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", - - "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", - - "collection.page.license": "લાઇસન્સ", - - "collection.page.news": "સમાચાર", - - "collection.page.options": "વિકલ્પો", - - "collection.search.breadcrumbs": "શોધો", - - "collection.search.results.head": "શોધ પરિણામો", - - "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", - - "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", - - "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", - - "collection.select.table.select": "સંગ્રહ પસંદ કરો", - - "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", - - "collection.select.table.title": "શીર્ષક", - - "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", - - "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", - - "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", - - "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", - - "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", - - "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - - "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "collection.source.controls.import.submit": "હવે આયાત કરો", - - "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", - - "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", - - "collection.source.controls.import.completed": "આયાત પૂર્ણ", - - "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - - "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "bitstream-request-a-copy.submit": "નકલ માટે વિનંતી કરો", - - "bitstream-request-a-copy.submit.success": "આઇટમ વિનંતી સફળતાપૂર્વક સબમિટ કરવામાં આવી.", - - "bitstream-request-a-copy.submit.error": "આઇટમ વિનંતી સબમિટ કરતી વખતે કંઈક ખોટું થયું.", - - "bitstream-request-a-copy.access-by-token.warning": "તમે આ આઇટમને સુરક્ષિત ઍક્સેસ લિંક દ્વારા જોઈ રહ્યા છો જે તમને લેખક અથવા રિપોઝિટરી સ્ટાફ દ્વારા પ્રદાન કરવામાં આવી છે. આ લિંકને અનધિકૃત વપરાશકર્તાઓ સાથે શેર ન કરવું મહત્વપૂર્ણ છે.", - - "bitstream-request-a-copy.access-by-token.expiry-label": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ સમાપ્ત થશે", - - "bitstream-request-a-copy.access-by-token.expired": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ હવે શક્ય નથી. ઍક્સેસ સમાપ્ત થઈ ગઈ છે", - - "bitstream-request-a-copy.access-by-token.not-granted": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ શક્ય નથી. ઍક્સેસ είτε મંજુર કરવામાં આવી નથી, είτε રદ કરવામાં આવી છે.", - - "bitstream-request-a-copy.access-by-token.re-request": "ઍક્સેસ માટે નવી વિનંતી સબમિટ કરવા માટે પ્રતિબંધિત ડાઉનલોડ લિંક્સને અનુસરો.", - - "bitstream-request-a-copy.access-by-token.alt-text": "આ આઇટમ માટે ઍક્સેસ સુરક્ષિત ટોકન દ્વારા પ્રદાન કરવામાં આવે છે", - - "browse.back.all-results": "બધા બ્રાઉઝ પરિણામો", - - "browse.comcol.by.author": "લેખક દ્વારા", - - "browse.comcol.by.dateissued": "પ્રકાશન તારીખ દ્વારા", - - "browse.comcol.by.subject": "વિષય દ્વારા", - - "browse.comcol.by.srsc": "વિષય શ્રેણી દ્વારા", - - "browse.comcol.by.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા", - - "browse.comcol.by.title": "શીર્ષક દ્વારા", - - "browse.comcol.head": "બ્રાઉઝ", - - "browse.empty": "બતાવવા માટે કોઈ આઇટમ્સ નથી.", - - "browse.metadata.author": "લેખક", - - "browse.metadata.dateissued": "પ્રકાશન તારીખ", - - "browse.metadata.subject": "વિષય", - - "browse.metadata.title": "શીર્ષક", - - "browse.metadata.srsc": "વિષય શ્રેણી", - - "browse.metadata.author.breadcrumbs": "લેખક દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.dateissued.breadcrumbs": "તારીખ દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.subject.breadcrumbs": "વિષય દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.srsc.breadcrumbs": "વિષય શ્રેણી દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.srsc.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", - - "browse.metadata.nsi.breadcrumbs": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.nsi.tree.description": "શોધ ફિલ્ટર તરીકે ઇન્ડેક્સ પસંદ કરો", - - "browse.metadata.title.breadcrumbs": "શીર્ષક દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.map": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.map.breadcrumbs": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", - - "browse.metadata.map.count.items": "આઇટમ્સ", - - "pagination.next.button": "આગલું", - - "pagination.previous.button": "પાછલું", - - "pagination.next.button.disabled.tooltip": "કોઈ વધુ પૃષ્ઠો નથી", - - "pagination.page-number-bar": "પૃષ્ઠ નેવિગેશન માટે કંટ્રોલ બાર, ID સાથેના તત્વ માટે: ", - - "browse.startsWith": ", {{ startsWith }} થી શરૂ થાય છે", - - "browse.startsWith.choose_start": "(શરૂઆત પસંદ કરો)", - - "browse.startsWith.choose_year": "(વર્ષ પસંદ કરો)", - - "browse.startsWith.choose_year.label": "પ્રકાશન વર્ષ પસંદ કરો", - - "browse.startsWith.jump": "વર્ષ અથવા મહિના દ્વારા પરિણામો ફિલ્ટર કરો", - - "browse.startsWith.months.april": "એપ્રિલ", - - "browse.startsWith.months.august": "ઑગસ્ટ", - - "browse.startsWith.months.december": "ડિસેમ્બર", - - "browse.startsWith.months.february": "ફેબ્રુઆરી", - - "browse.startsWith.months.january": "જાન્યુઆરી", - - "browse.startsWith.months.july": "જુલાઈ", - - "browse.startsWith.months.june": "જૂન", - - "browse.startsWith.months.march": "માર્ચ", - - "browse.startsWith.months.may": "મે", - - "browse.startsWith.months.none": "(મહિનો પસંદ કરો)", - - "browse.startsWith.months.none.label": "પ્રકાશન મહિનો પસંદ કરો", - - "browse.startsWith.months.november": "નવેમ્બર", - - "browse.startsWith.months.october": "ઑક્ટોબર", - - "browse.startsWith.months.september": "સપ્ટેમ્બર", - - "browse.startsWith.submit": "બ્રાઉઝ", - - "browse.startsWith.type_date": "તારીખ દ્વારા પરિણામો ફિલ્ટર કરો", - - "browse.startsWith.type_date.label": "અથવા તારીખ (વર્ષ-મહિનો) દાખલ કરો અને બ્રાઉઝ બટન પર ક્લિક કરો", - - "browse.startsWith.type_text": "પ્રથમ થોડા અક્ષરો ટાઇપ કરીને પરિણામો ફિલ્ટર કરો", - - "browse.startsWith.input": "ફિલ્ટર", - - "browse.taxonomy.button": "બ્રાઉઝ", - - "browse.title": "{{ field }}{{ startsWith }} {{ value }} દ્વારા બ્રાઉઝિંગ", - - "browse.title.page": "{{ field }} {{ value }} દ્વારા બ્રાઉઝિંગ", - - "search.browse.item-back": "પરિણામો પર પાછા જાઓ", - - "chips.remove": "ચિપ દૂર કરો", - - "claimed-approved-search-result-list-element.title": "મંજૂર", - - "claimed-declined-search-result-list-element.title": "નકારવામાં આવ્યું, સબમિટરને પાછું મોકલવામાં આવ્યું", - - "claimed-declined-task-search-result-list-element.title": "નકારવામાં આવ્યું, રિવ્યુ મેનેજરના વર્કફ્લો પર પાછું મોકલવામાં આવ્યું", - - "collection.create.breadcrumbs": "સંગ્રહ બનાવો", - - "collection.browse.logo": "સંગ્રહ લોગો માટે બ્રાઉઝ કરો", - - "collection.create.head": "સંગ્રહ બનાવો", - - "collection.create.notifications.success": "સંગ્રહ સફળતાપૂર્વક બનાવવામાં આવ્યો", - - "collection.create.sub-head": "સમુદાય {{ parent }} માટે સંગ્રહ બનાવો", - - "collection.curate.header": "સંગ્રહ ક્યુરેટ કરો: {{collection}}", - - "collection.delete.cancel": "રદ કરો", - - "collection.delete.confirm": "ખાતરી કરો", - - "collection.delete.processing": "કાઢી રહ્યા છે", - - "collection.delete.head": "સંગ્રહ કાઢી નાખો", - - "collection.delete.notification.fail": "સંગ્રહ કાઢી શકાતો નથી", - - "collection.delete.notification.success": "સંગ્રહ સફળતાપૂર્વક કાઢી નાખ્યો", - - "collection.delete.text": "શું તમે ખરેખર સંગ્રહ \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", - - "collection.edit.delete": "આ સંગ્રહ કાઢી નાખો", - - "collection.edit.head": "સંગ્રહ સંપાદિત કરો", - - "collection.edit.breadcrumbs": "સંગ્રહ સંપાદિત કરો", - - "collection.edit.tabs.mapper.head": "આઇટમ મેપર", - - "collection.edit.tabs.item-mapper.title": "સંગ્રહ સંપાદન - આઇટમ મેપર", - - "collection.edit.item-mapper.cancel": "રદ કરો", - - "collection.edit.item-mapper.collection": "સંગ્રહ: \\\"{{name}}\\\"", - - "collection.edit.item-mapper.confirm": "પસંદ કરેલ આઇટમ્સ મેપ કરો", - - "collection.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે સંગ્રહ વહીવટકર્તાઓને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરવાની મંજૂરી આપે છે. તમે અન્ય સંગ્રહોમાંથી આઇટમ્સ શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા હાલમાં મેપ કરેલ આઇટમ્સની યાદી બ્રાઉઝ કરી શકો છો.", - - "collection.edit.item-mapper.head": "આઇટમ મેપર - અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરો", - - "collection.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", - - "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} આઇટમ્સના મેપિંગ માટે ભૂલો આવી.", - - "collection.edit.item-mapper.notifications.map.error.head": "મેપિંગ ભૂલો", - - "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} આઇટમ્સ સફળતાપૂર્વક મેપ કરવામાં આવ્યા.", - - "collection.edit.item-mapper.notifications.map.success.head": "મેપિંગ પૂર્ણ", - - "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} આઇટમ્સના મેપિંગ દૂર કરતી વખતે ભૂલો આવી.", - - "collection.edit.item-mapper.notifications.unmap.error.head": "મેપિંગ દૂર કરવાની ભૂલો", - - "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} આઇટમ્સના મેપિંગ સફળતાપૂર્વક દૂર કરવામાં આવ્યા.", - - "collection.edit.item-mapper.notifications.unmap.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", - - "collection.edit.item-mapper.remove": "પસંદ કરેલ આઇટમ મેપિંગ્સ દૂર કરો", - - "collection.edit.item-mapper.search-form.placeholder": "આઇટમ્સ શોધો...", - - "collection.edit.item-mapper.tabs.browse": "મેપ કરેલ આઇટમ્સ બ્રાઉઝ કરો", - - "collection.edit.item-mapper.tabs.map": "નવા આઇટમ્સ મેપ કરો", - - "collection.edit.logo.delete.title": "લોગો કાઢી નાખો", - - "collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - - "collection.edit.logo.label": "સંગ્રહ લોગો", - - "collection.edit.logo.notifications.add.error": "સંગ્રહ લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", - - "collection.edit.logo.notifications.add.success": "સંગ્રહ લોગો સફળતાપૂર્વક અપલોડ થયો.", - - "collection.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", - - "collection.edit.logo.notifications.delete.success.content": "સંગ્રહનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", - - "collection.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", - - "collection.edit.logo.upload": "અપલોડ કરવા માટે સંગ્રહ લોગો ડ્રોપ કરો", - - "collection.edit.notifications.success": "સંગ્રહ સફળતાપૂર્વક સંપાદિત કર્યો", - - "collection.edit.return": "પાછા", - - "collection.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", - - "collection.edit.tabs.access-control.title": "સંગ્રહ સંપાદન - ઍક્સેસ કંટ્રોલ", - - "collection.edit.tabs.curate.head": "ક્યુરેટ", - - "collection.edit.tabs.curate.title": "સંગ્રહ સંપાદન - ક્યુરેટ", - - "collection.edit.tabs.authorizations.head": "અધિકૃતતા", - - "collection.edit.tabs.authorizations.title": "સંગ્રહ સંપાદન - અધિકૃતતા", - - "collection.edit.item.authorizations.load-bundle-button": "વધુ બંડલ્સ લોડ કરો", - - "collection.edit.item.authorizations.load-more-button": "વધુ લોડ કરો", - - "collection.edit.item.authorizations.show-bitstreams-button": "બંડલ માટે બિટસ્ટ્રીમ પોલિસી બતાવો", - - "collection.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", - - "collection.edit.tabs.metadata.title": "સંગ્રહ સંપાદન - મેટાડેટા", - - "collection.edit.tabs.roles.head": "ભૂમિકા સોંપો", - - "collection.edit.tabs.roles.title": "સંગ્રહ સંપાદન - ભૂમિકા", - - "collection.edit.tabs.source.external": "આ સંગ્રહ તેની સામગ્રી બાહ્ય સ્ત્રોતમાંથી હાર્વેસ્ટ કરે છે", - - "collection.edit.tabs.source.form.errors.oaiSource.required": "તમારે લક્ષ્ય સંગ્રહનો સેટ id પ્રદાન કરવો જ જોઈએ.", - - "collection.edit.tabs.source.form.harvestType": "હાર્વેસ્ટ થતી સામગ્રી", - - "collection.edit.tabs.source.form.head": "બાહ્ય સ્ત્રોત કૉન્ફિગર કરો", - - "collection.edit.tabs.source.form.metadataConfigId": "મેટાડેટા ફોર્મેટ", - - "collection.edit.tabs.source.form.oaiSetId": "OAI વિશિષ્ટ સેટ id", - - "collection.edit.tabs.source.form.oaiSource": "OAI પ્રદાતા", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "મેટાડેટા અને બિટસ્ટ્રીમ્સ હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "મેટાડેટા અને બિટસ્ટ્રીમ્સના સંદર્ભો હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "મેટાડેટા માત્ર હાર્વેસ્ટ કરો", - - "collection.edit.tabs.source.head": "સામગ્રી સ્ત્રોત", - - "collection.edit.tabs.source.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - - "collection.edit.tabs.source.notifications.discarded.title": "ફેરફારો રદ", - - "collection.edit.tabs.source.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", - - "collection.edit.tabs.source.notifications.invalid.title": "મેટાડેટા અમાન્ય", - - "collection.edit.tabs.source.notifications.saved.content": "આ સંગ્રહના સામગ્રી સ્ત્રોત માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", - - "collection.edit.tabs.source.notifications.saved.title": "સામગ્રી સ્ત્રોત સાચવ્યું", - - "collection.edit.tabs.source.title": "સંગ્રહ સંપાદન - સામગ્રી સ્ત્રોત", - - "collection.edit.template.add-button": "ઉમેરો", - - "collection.edit.template.breadcrumbs": "આઇટમ ટેમ્પલેટ", - - "collection.edit.template.cancel": "રદ કરો", - - "collection.edit.template.delete-button": "કાઢી નાખો", - - "collection.edit.template.edit-button": "સંપાદિત કરો", - - "collection.edit.template.error": "ટેમ્પલેટ આઇટમ મેળવતી વખતે ભૂલ આવી", - - "collection.edit.template.head": "સંગ્રહ \\\"{{ collection }}\\\" માટે ટેમ્પલેટ આઇટમ સંપાદિત કરો", - - "collection.edit.template.label": "ટેમ્પલેટ આઇટમ", - - "collection.edit.template.loading": "ટેમ્પલેટ આઇટમ લોડ કરી રહ્યું છે...", - - "collection.edit.template.notifications.delete.error": "આઇટમ ટેમ્પલેટ કાઢી નાખવામાં નિષ્ફળ", - - "collection.edit.template.notifications.delete.success": "આઇટમ ટેમ્પલેટ સફળતાપૂર્વક કાઢી નાખ્યું", - - "collection.edit.template.title": "ટેમ્પલેટ આઇટમ સંપાદિત કરો", - - "collection.form.abstract": "સંક્ષિપ્ત વર્ણન", - - "collection.form.description": "પરિચયાત્મક લખાણ (HTML)", - - "collection.form.errors.title.required": "કૃપા કરીને સંગ્રહનું નામ દાખલ કરો", - - "collection.form.license": "લાઇસન્સ", - - "collection.form.provenance": "પ્રૂવનન્સ", - - "collection.form.rights": "કૉપિરાઇટ લખાણ (HTML)", - - "collection.form.tableofcontents": "સમાચાર (HTML)", - - "collection.form.title": "નામ", - - "collection.form.entityType": "સત્તા પ્રકાર", - - "collection.listelement.badge": "સંગ્રહ", - - "collection.logo": "સંગ્રહ લોગો", - - "collection.page.browse.search.head": "શોધો", - - "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", - - "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", - - "collection.page.license": "લાઇસન્સ", - - "collection.page.news": "સમાચાર", - - "collection.page.options": "વિકલ્પો", - - "collection.search.breadcrumbs": "શોધો", - - "collection.search.results.head": "શોધ પરિણામો", - - "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", - - "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", - - "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", - - "collection.select.table.select": "સંગ્રહ પસંદ કરો", - - "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", - - "collection.select.table.title": "શીર્ષક", - - "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", - - "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", - - "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", - - "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", - - "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", - - "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - - "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "collection.source.controls.import.submit": "હવે આયાત કરો", - - "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", - - "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", - - "collection.source.controls.import.completed": "આયાત પૂર્ણ", - - "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - - "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", - - "collection.source.controls.reset.failed": "રીસેટ અને ફરી આયાત દરમિયાન ભૂલ આવી", - - "collection.source.controls.reset.completed": "રીસેટ અને ફરી આયાત પૂર્ણ", - - "collection.source.controls.reset.submit": "રીસેટ અને ફરી આયાત", - - "collection.source.controls.reset.running": "રીસેટ અને ફરી આયાત કરી રહ્યું છે...", - - "collection.source.controls.harvest.status": "હાર્વેસ્ટ સ્થિતિ:", - - "collection.source.controls.harvest.start": "હાર્વેસ્ટ શરૂ સમય:", - - "collection.source.controls.harvest.last": "છેલ્લો હાર્વેસ્ટ સમય:", - - "collection.source.controls.harvest.message": "હાર્વેસ્ટ માહિતી:", - - "collection.source.controls.harvest.no-information": "N/A", - - "collection.source.update.notifications.error.content": "પ્રદાન કરેલ સેટિંગ્સનું પરીક્ષણ કરવામાં આવ્યું છે અને તે કાર્યરત નથી.", - - "collection.source.update.notifications.error.title": "સર્વર ભૂલ", - - "communityList.breadcrumbs": "સમુદાય યાદી", - - "communityList.tabTitle": "સમુદાય યાદી", - - "communityList.title": "સમુદાયોની યાદી", - - "communityList.showMore": "વધુ બતાવો", - - "communityList.expand": "{{ name }} વિસ્તારો", - - "communityList.collapse": "{{ name }} સંકોચો", - - "community.browse.logo": "સમુદાય લોગો માટે બ્રાઉઝ કરો", - - "community.subcoms-cols.breadcrumbs": "ઉપસમુદાયો અને સંગ્રહો", - - "community.create.breadcrumbs": "સમુદાય બનાવો", - - "community.create.head": "સમુદાય બનાવો", - - "community.create.notifications.success": "સમુદાય સફળતાપૂર્વક બનાવવામાં આવ્યો", - - "community.create.sub-head": "સમુદાય {{ parent }} માટે ઉપસમુદાય બનાવો", - - "community.curate.header": "સમુદાય ક્યુરેટ કરો: {{community}}", - - "community.delete.cancel": "રદ કરો", - - "community.delete.confirm": "ખાતરી કરો", - - "community.delete.processing": "કાઢી રહ્યા છે...", - - "community.delete.head": "સમુદાય કાઢી નાખો", - - "community.delete.notification.fail": "સમુદાય કાઢી શકાતો નથી", - - "community.delete.notification.success": "સમુદાય સફળતાપૂર્વક કાઢી નાખ્યો", - - "community.delete.text": "શું તમે ખરેખર સમુદાય \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", - - "community.edit.delete": "આ સમુદાય કાઢી નાખો", - - "community.edit.head": "સમુદાય સંપાદિત કરો", - - "community.edit.breadcrumbs": "સમુદાય સંપાદિત કરો", - - "community.edit.logo.delete.title": "લોગો કાઢી નાખો", - - "community-collection.edit.logo.delete.title": "કાઢી નાખવું ખાતરી કરો", - - "community.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - - "community-collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - - "community.edit.logo.label": "સમુદાય લોગો", - - "community.edit.logo.notifications.add.error": "સમુદાય લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", - - "community.edit.logo.notifications.add.success": "સમુદાય લોગો સફળતાપૂર્વક અપલોડ થયો.", - - "community.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", - - "community.edit.logo.notifications.delete.success.content": "સમુદાયનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", - - "community.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", - - "community.edit.logo.upload": "અપલોડ કરવા માટે સમુદાય લોગો ડ્રોપ કરો", - - "community.edit.notifications.success": "સમુદાય સફળતાપૂર્વક સંપાદિત કર્યો", - - "community.edit.notifications.unauthorized": "તમને આ ફેરફાર કરવાની પરવાનગી નથી", - - "community.edit.notifications.error": "સમુદાય સંપાદિત કરતી વખતે ભૂલ આવી", - - "community.edit.return": "પાછા", - - "community.edit.tabs.curate.head": "ક્યુરેટ", - - "community.edit.tabs.curate.title": "સમુદાય સંપાદન - ક્યુરેટ", - - "community.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", - - "community.edit.tabs.access-control.title": "સમુદાય સંપાદન - ઍક્સેસ કંટ્રોલ", - - "community.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", - - "community.edit.tabs.metadata.title": "સમુદાય સંપાદન - મેટાડેટા", - - "community.edit.tabs.roles.head": "ભૂમિકા સોંપો", - - "community.edit.tabs.roles.title": "સમુદાય સંપાદન - ભૂમિકા", - - "community.edit.tabs.authorizations.head": "અધિકૃતતા", - - "community.edit.tabs.authorizations.title": "સમુદાય સંપાદન - અધિકૃતતા", - - "community.listelement.badge": "સમુદાય", - - "community.logo": "સમુદાય લોગો", - - "comcol-role.edit.no-group": "કોઈ નથી", - - "comcol-role.edit.create": "બનાવો", - - "comcol-role.edit.create.error.title": "'{{ role }}' ભૂમિકા માટે જૂથ બનાવવામાં નિષ્ફળ", - - "comcol-role.edit.restrict": "પ્રતિબંધિત", - - "comcol-role.edit.delete": "કાઢી નાખો", - - "comcol-role.edit.delete.error.title": "'{{ role }}' ભૂમિકા માટેના જૂથને કાઢી નાખવામાં નિષ્ફળ", - - "comcol-role.edit.community-admin.name": "એડમિનિસ્ટ્રેટર્સ", - - "comcol-role.edit.collection-admin.name": "એડમિનિસ્ટ્રેટર્સ", - - "comcol-role.edit.community-admin.description": "સમુદાય એડમિનિસ્ટ્રેટર્સ ઉપસમુદાયો અથવા સંગ્રહો બનાવી શકે છે, અને તે ઉપસમુદાયો અથવા સંગ્રહો માટે મેનેજમેન્ટ સોંપી શકે છે. ઉપરાંત, તેઓ નક્કી કરે છે કે કોણ ઉપસંગ્રહોમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને અન્ય સંગ્રહોમાંથી (અધિકૃતતા મુજબ) આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે.", - - "comcol-role.edit.collection-admin.description": "સંગ્રહ એડમિનિસ્ટ્રેટર્સ નક્કી કરે છે કે કોણ સંગ્રહમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે (તે સંગ્રહ માટેની અધિકૃતતા મુજબ).", - - "comcol-role.edit.submitters.name": "સબમિટર્સ", - - "comcol-role.edit.submitters.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં નવા આઇટમ્સ સબમિટ કરવાની પરવાનગી છે.", - - "comcol-role.edit.item_read.name": "ડિફોલ્ટ આઇટમ વાંચન ઍક્સેસ", - - "comcol-role.edit.item_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા આઇટમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા આઇટમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", - - "comcol-role.edit.item_read.anonymous-group": "આવતા આઇટમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", - - "comcol-role.edit.bitstream_read.name": "ડિફોલ્ટ બિટસ્ટ્રીમ વાંચન ઍક્સેસ", - - "comcol-role.edit.bitstream_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા બિટસ્ટ્રીમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા બિટસ્ટ્રીમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", - - "comcol-role.edit.bitstream_read.anonymous-group": "આવતા બિટસ્ટ્રીમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", - - "comcol-role.edit.editor.name": "સંપાદકો", - - "comcol-role.edit.editor.description": "સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, અને પછી તેમને સ્વીકારી અથવા નકારી શકે છે.", - - "comcol-role.edit.finaleditor.name": "અંતિમ સંપાદકો", - - "comcol-role.edit.finaleditor.description": "અંતિમ સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, પરંતુ તેમને નકારી શકશે નહીં.", - - "comcol-role.edit.reviewer.name": "રિવ્યુઅર્સ", - - "comcol-role.edit.reviewer.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્વીકારી અથવા નકારી શકે છે. જો કે, તેઓ સબમિશનના મેટાડેટા સંપાદિત કરી શકશે નહીં.", - - "comcol-role.edit.scorereviewers.name": "સ્કોર રિવ્યુઅર્સ", - - "comcol-role.edit.scorereviewers.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્કોર આપી શકે છે, જે નક્કી કરશે કે સબમિશન નકારવામાં આવશે કે નહીં.", - - "community.form.abstract": "સંક્ષિપ્ત વર્ણન", - - "community.form.description": "પરિચયાત્મક લખાણ (HTML)", - - "community.form.errors.title.required": "કૃપા કરીને સમુદાયનું નામ દાખલ કરો", - - "community.form.rights": "કૉપિરાઇટ લખાણ (HTML)", - - "community.form.tableofcontents": "સમાચાર (HTML)", - - "community.form.title": "નામ", - - "community.page.edit": "આ સમુદાય સંપાદિત કરો", - - "community.page.handle": "આ સમુદાય માટે કાયમી URI", - - "community.page.license": "લાઇસન્સ", - - "community.page.news": "સમાચાર", - - "community.page.options": "વિકલ્પો", - - "community.all-lists.head": "ઉપસમુદાયો અને સંગ્રહો", - - "community.search.breadcrumbs": "શોધો", - - "community.search.results.head": "શોધ પરિણામો", - - "community.sub-collection-list.head": "આ સમુદાયમાં સંગ્રહો", - - "community.sub-community-list.head": "આ સમુદાયમાં સમુદાયો", - - "cookies.consent.accept-all": "બધા સ્વીકારો", - - "cookies.consent.accept-selected": "પસંદ કરેલ સ્વીકારો", - - "cookies.consent.app.opt-out.description": "આ એપ્લિકેશન ડિફોલ્ટ દ્વારા લોડ થાય છે (પરંતુ તમે તેને ઓપ્ટ આઉટ કરી શકો છો)", - - "cookies.consent.app.opt-out.title": "(ઓપ્ટ-આઉટ)", - - "cookies.consent.app.purpose": "હેતુ", - - "cookies.consent.app.required.description": "આ એપ્લિકેશન હંમેશા જરૂરી છે", - - "cookies.consent.app.required.title": "(હંમેશા જરૂરી)", - - "cookies.consent.update": "તમારા છેલ્લા મુલાકાત પછી ફેરફારો થયા છે, કૃપા કરીને તમારી સંમતિ અપડેટ કરો.", - - "cookies.consent.close": "બંધ કરો", - - "cookies.consent.decline": "નકારો", - - "cookies.consent.decline-all": "બધા નકારો", - - "cookies.consent.ok": "તે ઠીક છે", - - "cookies.consent.save": "સાચવો", - - "cookies.consent.content-notice.description": "અમે નીચેના હેતુઓ માટે તમારી વ્યક્તિગત માહિતી એકત્રિત અને પ્રક્રિયા કરીએ છીએ: {purposes}", - - "cookies.consent.content-notice.learnMore": "કસ્ટમાઇઝ કરો", - - "cookies.consent.content-modal.description": "અહીં તમે જોઈ શકો છો અને કસ્ટમાઇઝ કરી શકો છો કે અમે તમારા વિશે કઈ માહિતી એકત્રિત કરીએ છીએ.", - - "cookies.consent.content-modal.privacy-policy.name": "ગોપનીયતા નીતિ", - - "cookies.consent.content-modal.privacy-policy.text": "વધુ જાણવા માટે, કૃપા કરીને અમારી {privacyPolicy} વાંચો.", - - "cookies.consent.content-modal.no-privacy-policy.text": "", - - "cookies.consent.content-modal.title": "અમે જે માહિતી એકત્રિત કરીએ છીએ", - - "cookies.consent.app.title.authentication": "પ્રમાણન", - - "cookies.consent.app.description.authentication": "તમને સાઇન ઇન કરવા માટે જરૂરી છે", - - "cookies.consent.app.title.preferences": "પસંદગીઓ", - - "cookies.consent.app.description.preferences": "તમારી પસંદગીઓ સાચવવા માટે જરૂરી છે", - - "cookies.consent.app.title.acknowledgement": "સ્વીકાર", - - "cookies.consent.app.description.acknowledgement": "તમારા સ્વીકાર અને સંમતિઓ સાચવવા માટે જરૂરી છે", - - "cookies.consent.app.title.google-analytics": "Google Analytics", - - "cookies.consent.app.description.google-analytics": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", - - "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", - - "cookies.consent.app.description.google-recaptcha": "અમે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ દરમિયાન Google reCAPTCHA સેવા નો ઉપયોગ કરીએ છીએ", - - "cookies.consent.app.title.matomo": "Matomo", - - "cookies.consent.app.description.matomo": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", - - "cookies.consent.purpose.functional": "કાર્યાત્મક", - - "cookies.consent.purpose.statistical": "આંકડાકીય", - - "cookies.consent.purpose.registration-password-recovery": "નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ", - - "cookies.consent.purpose.sharing": "શેરિંગ", - - "curation-task.task.citationpage.label": "સાઇટેશન પેજ જનરેટ કરો", - - "curation-task.task.checklinks.label": "મેટાડેટામાં લિંક્સ તપાસો", - - "curation-task.task.noop.label": "NOOP", - - "curation-task.task.profileformats.label": "પ્રોફાઇલ બિટસ્ટ્રીમ ફોર્મેટ્સ", - - "curation-task.task.requiredmetadata.label": "જરૂરી મેટાડેટા માટે તપાસો", - - "curation-task.task.translate.label": "Microsoft Translator", - - "curation-task.task.vscan.label": "વાયરસ સ્કેન", - - "curation-task.task.registerdoi.label": "DOI નોંધણી કરો", - - "curation.form.task-select.label": "ટાસ્ક:", - - "curation.form.submit": "શરૂ કરો", - - "curation.form.submit.success.head": "ક્યુરેશન ટાસ્ક સફળતાપૂર્વક શરૂ કરવામાં આવી", - - "curation.form.submit.success.content": "તમને સંબંધિત પ્રક્રિયા પૃષ્ઠ પર રીડાયરેક્ટ કરવામાં આવશે.", - - "curation.form.submit.error.head": "ક્યુરેશન ટાસ્ક ચલાવતી વખતે નિષ્ફળ", + // "collection.form.entityType": "Entity Type", + "collection.form.entityType": "સત્તા પ્રકાર", - "curation.form.submit.error.content": "ક્યુરેશન ટાસ્ક શરૂ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી.", + // "collection.listelement.badge": "Collection", + "collection.listelement.badge": "સંગ્રહ", - "curation.form.submit.error.invalid-handle": "આ ઑબ્જેક્ટ માટે હેન્ડલ નક્કી કરી શક્યો નથી", + // "collection.logo": "Collection logo", + "collection.logo": "સંગ્રહ લોગો", - "curation.form.handle.label": "હેન્ડલ:", + // "collection.page.browse.search.head": "Search", + "collection.page.browse.search.head": "શોધો", - "curation.form.handle.hint": "સૂચન: [તમારા-હેન્ડલ-પ્રિફિક્સ]/0 દાખલ કરો જેથી સમગ્ર સાઇટ પર ટાસ્ક ચલાવી શકાય (બધા ટાસ્ક આ ક્ષમતા સપોર્ટ કરી શકે છે)", + // "collection.page.edit": "Edit this collection", + "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", - "deny-request-copy.email.message": "પ્રિય {{ recipientName }},\\nતમારી વિનંતીનો જવાબ આપતાં મને દુઃખ છે કે હું તમને વિનંતી કરેલ ફાઇલ(ઓ)ની નકલ મોકલી શકું નહીં, દસ્તાવેજ: \\\"{{ itemUrl }}\\\" ({{ itemName }}), જેનો હું લેખક છું.\\n\\nશ્રેષ્ઠ શુભેચ્છાઓ,\\n{{ authorName }} <{{ authorEmail }}>", + // "collection.page.handle": "Permanent URI for this collection", + "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", - "deny-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", + // "collection.page.license": "License", + "collection.page.license": "લાઇસન્સ", - "deny-request-copy.error": "ભૂલ આવી", + // "collection.page.news": "News", + "collection.page.news": "સમાચાર", - "deny-request-copy.header": "દસ્તાવેજની નકલ વિનંતી નકારી", + // "collection.page.options": "Options", + "collection.page.options": "વિકલ્પો", - "deny-request-copy.intro": "આ સંદેશા વિનંતી કરનારને મોકલવામાં આવશે", + // "collection.search.breadcrumbs": "Search", + "collection.search.breadcrumbs": "શોધો", - "deny-request-copy.success": "આઇટમ વિનંતી સફળતાપૂર્વક નકારી", + // "collection.search.results.head": "Search Results", + "collection.search.results.head": "શોધ પરિણામો", - "dynamic-list.load-more": "વધુ લોડ કરો", + // "collection.select.confirm": "Confirm selected", + "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", - "dropdown.clear": "પસંદગી સાફ કરો", + // "collection.select.empty": "No collections to show", + "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", - "dropdown.clear.tooltip": "પસંદ કરેલ વિકલ્પ દૂર કરો", + // "collection.select.table.selected": "Selected collections", + "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", - "dso.name.untitled": "શીર્ષક વિના", + // "collection.select.table.select": "Select collection", + "collection.select.table.select": "સંગ્રહ પસંદ કરો", - "dso.name.unnamed": "નામ વિના", + // "collection.select.table.deselect": "Deselect collection", + "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", - "dso-selector.create.collection.head": "નવો સંગ્રહ", + // "collection.select.table.title": "Title", + "collection.select.table.title": "શીર્ષક", - "dso-selector.create.collection.sub-level": "માં નવો સંગ્રહ બનાવો", + // "collection.source.controls.head": "Harvest Controls", + "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", - "dso-selector.create.community.head": "નવો સમુદાય", + // "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings", + "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", - "dso-selector.create.community.or-divider": "અથવા", + // "collection.source.controls.test.failed": "The script to test the settings has failed", + "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", - "dso-selector.create.community.sub-level": "માં નવો સમુદાય બનાવો", + // "collection.source.controls.test.completed": "The script to test the settings has successfully finished", + "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", - "dso-selector.create.community.top-level": "ટોપ-લેવલ સમુદાય બનાવો", + // "collection.source.controls.test.submit": "Test configuration", + "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", - "dso-selector.create.item.head": "નવું આઇટમ", + // "collection.source.controls.test.running": "Testing configuration...", + "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", - "dso-selector.create.item.sub-level": "માં નવું આઇટમ બનાવો", + // "collection.source.controls.import.submit.success": "The import has been successfully initiated", + "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - "dso-selector.create.submission.head": "નવું સબમિશન", + // "collection.source.controls.import.submit.error": "Something went wrong with initiating the import", + "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", - "dso-selector.edit.collection.head": "સંગ્રહ સંપાદિત કરો", + // "collection.source.controls.import.submit": "Import now", + "collection.source.controls.import.submit": "હવે આયાત કરો", - "dso-selector.edit.community.head": "સમુદાય સંપાદિત કરો", + // "collection.source.controls.import.running": "Importing...", + "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", - "dso-selector.edit.item.head": "આઇટમ સંપાદિત કરો", + // "collection.source.controls.import.failed": "An error occurred during the import", + "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", - "dso-selector.error.title": "{{ type }} માટે શોધ કરતી વખતે ભૂલ આવી", + // "collection.source.controls.import.completed": "The import completed", + "collection.source.controls.import.completed": "આયાત પૂર્ણ", - "dso-selector.export-metadata.dspaceobject.head": "મેટાડેટા નિકાસ કરો", + // "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated", + "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", - "dso-selector.export-batch.dspaceobject.head": "બેચ (ZIP) નિકાસ કરો", + // "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport", + "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + // "collection.source.controls.reset.failed": "An error occurred during the reset and reimport", "collection.source.controls.reset.failed": "રીસેટ અને ફરી આયાત દરમિયાન ભૂલ આવી", + // "collection.source.controls.reset.completed": "The reset and reimport completed", "collection.source.controls.reset.completed": "રીસેટ અને ફરી આયાત પૂર્ણ", + // "collection.source.controls.reset.submit": "Reset and reimport", "collection.source.controls.reset.submit": "રીસેટ અને ફરી આયાત", + // "collection.source.controls.reset.running": "Resetting and reimporting...", "collection.source.controls.reset.running": "રીસેટ અને ફરી આયાત કરી રહ્યું છે...", - "collection.source.controls.harvest.status": "હાર્વેસ્ટ સ્થિતિ:", + // "collection.source.controls.harvest.status": "Harvest status:", + // TODO New key - Add a translation + "collection.source.controls.harvest.status": "Harvest status:", - "collection.source.controls.harvest.start": "હાર્વેસ્ટ શરૂ સમય:", + // "collection.source.controls.harvest.start": "Harvest start time:", + // TODO New key - Add a translation + "collection.source.controls.harvest.start": "Harvest start time:", - "collection.source.controls.harvest.last": "છેલ્લો હાર્વેસ્ટ સમય:", + // "collection.source.controls.harvest.last": "Last time harvested:", + // TODO New key - Add a translation + "collection.source.controls.harvest.last": "Last time harvested:", - "collection.source.controls.harvest.message": "હાર્વેસ્ટ માહિતી:", + // "collection.source.controls.harvest.message": "Harvest info:", + // TODO New key - Add a translation + "collection.source.controls.harvest.message": "Harvest info:", + // "collection.source.controls.harvest.no-information": "N/A", "collection.source.controls.harvest.no-information": "N/A", + // "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.", "collection.source.update.notifications.error.content": "પ્રદાન કરેલ સેટિંગ્સનું પરીક્ષણ કરવામાં આવ્યું છે અને તે કાર્યરત નથી.", + // "collection.source.update.notifications.error.title": "Server Error", "collection.source.update.notifications.error.title": "સર્વર ભૂલ", + // "communityList.breadcrumbs": "Community List", "communityList.breadcrumbs": "સમુદાય યાદી", + // "communityList.tabTitle": "Community List", "communityList.tabTitle": "સમુદાય યાદી", + // "communityList.title": "List of Communities", "communityList.title": "સમુદાયોની યાદી", + // "communityList.showMore": "Show More", "communityList.showMore": "વધુ બતાવો", + // "communityList.expand": "Expand {{ name }}", "communityList.expand": "{{ name }} વિસ્તારો", + // "communityList.collapse": "Collapse {{ name }}", "communityList.collapse": "{{ name }} સંકોચો", + // "community.browse.logo": "Browse for a community logo", "community.browse.logo": "સમુદાય લોગો માટે બ્રાઉઝ કરો", + // "community.subcoms-cols.breadcrumbs": "Subcommunities and Collections", "community.subcoms-cols.breadcrumbs": "ઉપસમુદાયો અને સંગ્રહો", + // "community.create.breadcrumbs": "Create Community", "community.create.breadcrumbs": "સમુદાય બનાવો", + // "community.create.head": "Create a Community", "community.create.head": "સમુદાય બનાવો", + // "community.create.notifications.success": "Successfully created the community", "community.create.notifications.success": "સમુદાય સફળતાપૂર્વક બનાવવામાં આવ્યો", + // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", "community.create.sub-head": "સમુદાય {{ parent }} માટે ઉપસમુદાય બનાવો", - "community.curate.header": "સમુદાય ક્યુરેટ કરો: {{community}}", + // "community.curate.header": "Curate Community: {{community}}", + // TODO New key - Add a translation + "community.curate.header": "Curate Community: {{community}}", + // "community.delete.cancel": "Cancel", "community.delete.cancel": "રદ કરો", + // "community.delete.confirm": "Confirm", "community.delete.confirm": "ખાતરી કરો", + // "community.delete.processing": "Deleting...", "community.delete.processing": "કાઢી રહ્યા છે...", + // "community.delete.head": "Delete Community", "community.delete.head": "સમુદાય કાઢી નાખો", + // "community.delete.notification.fail": "Community could not be deleted", "community.delete.notification.fail": "સમુદાય કાઢી શકાતો નથી", + // "community.delete.notification.success": "Successfully deleted community", "community.delete.notification.success": "સમુદાય સફળતાપૂર્વક કાઢી નાખ્યો", + // "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"", "community.delete.text": "શું તમે ખરેખર સમુદાય \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", + // "community.edit.delete": "Delete this community", "community.edit.delete": "આ સમુદાય કાઢી નાખો", + // "community.edit.head": "Edit Community", "community.edit.head": "સમુદાય સંપાદિત કરો", + // "community.edit.breadcrumbs": "Edit Community", "community.edit.breadcrumbs": "સમુદાય સંપાદિત કરો", + // "community.edit.logo.delete.title": "Delete logo", "community.edit.logo.delete.title": "લોગો કાઢી નાખો", + // "community-collection.edit.logo.delete.title": "Confirm deletion", "community-collection.edit.logo.delete.title": "કાઢી નાખવું ખાતરી કરો", + // "community.edit.logo.delete-undo.title": "Undo delete", "community.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + // "community-collection.edit.logo.delete-undo.title": "Undo delete", "community-collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + // "community.edit.logo.label": "Community logo", "community.edit.logo.label": "સમુદાય લોગો", + // "community.edit.logo.notifications.add.error": "Uploading community logo failed. Please verify the content before retrying.", "community.edit.logo.notifications.add.error": "સમુદાય લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", + // "community.edit.logo.notifications.add.success": "Upload community logo successful.", "community.edit.logo.notifications.add.success": "સમુદાય લોગો સફળતાપૂર્વક અપલોડ થયો.", + // "community.edit.logo.notifications.delete.success.title": "Logo deleted", "community.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", + // "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo", "community.edit.logo.notifications.delete.success.content": "સમુદાયનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", + // "community.edit.logo.notifications.delete.error.title": "Error deleting logo", "community.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", + // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "અપલોડ કરવા માટે સમુદાય લોગો ડ્રોપ કરો", + // "community.edit.notifications.success": "Successfully edited the community", "community.edit.notifications.success": "સમુદાય સફળતાપૂર્વક સંપાદિત કર્યો", + // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", "community.edit.notifications.unauthorized": "તમને આ ફેરફાર કરવાની પરવાનગી નથી", + // "community.edit.notifications.error": "An error occurred while editing the community", "community.edit.notifications.error": "સમુદાય સંપાદિત કરતી વખતે ભૂલ આવી", + // "community.edit.return": "Back", "community.edit.return": "પાછા", + // "community.edit.tabs.curate.head": "Curate", "community.edit.tabs.curate.head": "ક્યુરેટ", + // "community.edit.tabs.curate.title": "Community Edit - Curate", "community.edit.tabs.curate.title": "સમુદાય સંપાદન - ક્યુરેટ", + // "community.edit.tabs.access-control.head": "Access Control", "community.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", + // "community.edit.tabs.access-control.title": "Community Edit - Access Control", "community.edit.tabs.access-control.title": "સમુદાય સંપાદન - ઍક્સેસ કંટ્રોલ", + // "community.edit.tabs.metadata.head": "Edit Metadata", "community.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", + // "community.edit.tabs.metadata.title": "Community Edit - Metadata", "community.edit.tabs.metadata.title": "સમુદાય સંપાદન - મેટાડેટા", + // "community.edit.tabs.roles.head": "Assign Roles", "community.edit.tabs.roles.head": "ભૂમિકા સોંપો", + // "community.edit.tabs.roles.title": "Community Edit - Roles", "community.edit.tabs.roles.title": "સમુદાય સંપાદન - ભૂમિકા", + // "community.edit.tabs.authorizations.head": "Authorizations", "community.edit.tabs.authorizations.head": "અધિકૃતતા", + // "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", "community.edit.tabs.authorizations.title": "સમુદાય સંપાદન - અધિકૃતતા", + // "community.listelement.badge": "Community", "community.listelement.badge": "સમુદાય", + // "community.logo": "Community logo", "community.logo": "સમુદાય લોગો", + // "comcol-role.edit.no-group": "None", "comcol-role.edit.no-group": "કોઈ નથી", + // "comcol-role.edit.create": "Create", "comcol-role.edit.create": "બનાવો", + // "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role", "comcol-role.edit.create.error.title": "'{{ role }}' ભૂમિકા માટે જૂથ બનાવવામાં નિષ્ફળ", + // "comcol-role.edit.restrict": "Restrict", "comcol-role.edit.restrict": "પ્રતિબંધિત", + // "comcol-role.edit.delete": "Delete", "comcol-role.edit.delete": "કાઢી નાખો", + // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "'{{ role }}' ભૂમિકા માટેના જૂથને કાઢી નાખવામાં નિષ્ફળ", + // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + + // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + + // "comcol-role.edit.delete.modal.cancel": "Cancel", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.cancel": "Cancel", + + // "comcol-role.edit.delete.modal.confirm": "Delete", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.confirm": "Delete", + + // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "એડમિનિસ્ટ્રેટર્સ", + // "comcol-role.edit.collection-admin.name": "Administrators", "comcol-role.edit.collection-admin.name": "એડમિનિસ્ટ્રેટર્સ", + // "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).", "comcol-role.edit.community-admin.description": "સમુદાય એડમિનિસ્ટ્રેટર્સ ઉપસમુદાયો અથવા સંગ્રહો બનાવી શકે છે, અને તે ઉપસમુદાયો અથવા સંગ્રહો માટે મેનેજમેન્ટ સોંપી શકે છે. ઉપરાંત, તેઓ નક્કી કરે છે કે કોણ ઉપસંગ્રહોમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને અન્ય સંગ્રહોમાંથી (અધિકૃતતા મુજબ) આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે.", + // "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).", "comcol-role.edit.collection-admin.description": "સંગ્રહ એડમિનિસ્ટ્રેટર્સ નક્કી કરે છે કે કોણ સંગ્રહમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે (તે સંગ્રહ માટેની અધિકૃતતા મુજબ).", + // "comcol-role.edit.submitters.name": "Submitters", "comcol-role.edit.submitters.name": "સબમિટર્સ", + // "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.", "comcol-role.edit.submitters.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં નવા આઇટમ્સ સબમિટ કરવાની પરવાનગી છે.", + // "comcol-role.edit.item_read.name": "Default item read access", "comcol-role.edit.item_read.name": "ડિફોલ્ટ આઇટમ વાંચન ઍક્સેસ", + // "comcol-role.edit.item_read.description": "E-People and Groups that can read new items submitted to this collection. Changes to this role are not retroactive. Existing items in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.item_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા આઇટમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા આઇટમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", + // "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.", "comcol-role.edit.item_read.anonymous-group": "આવતા આઇટમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", + // "comcol-role.edit.bitstream_read.name": "Default bitstream read access", "comcol-role.edit.bitstream_read.name": "ડિફોલ્ટ બિટસ્ટ્રીમ વાંચન ઍક્સેસ", + // "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.bitstream_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા બિટસ્ટ્રીમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા બિટસ્ટ્રીમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", + // "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.", "comcol-role.edit.bitstream_read.anonymous-group": "આવતા બિટસ્ટ્રીમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", + // "comcol-role.edit.editor.name": "Editors", "comcol-role.edit.editor.name": "સંપાદકો", + // "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.", "comcol-role.edit.editor.description": "સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, અને પછી તેમને સ્વીકારી અથવા નકારી શકે છે.", + // "comcol-role.edit.finaleditor.name": "Final editors", "comcol-role.edit.finaleditor.name": "અંતિમ સંપાદકો", + // "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.", "comcol-role.edit.finaleditor.description": "અંતિમ સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, પરંતુ તેમને નકારી શકશે નહીં.", + // "comcol-role.edit.reviewer.name": "Reviewers", "comcol-role.edit.reviewer.name": "રિવ્યુઅર્સ", + // "comcol-role.edit.reviewer.description": "Reviewers are able to accept or reject incoming submissions. However, they are not able to edit the submission's metadata.", "comcol-role.edit.reviewer.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્વીકારી અથવા નકારી શકે છે. જો કે, તેઓ સબમિશનના મેટાડેટા સંપાદિત કરી શકશે નહીં.", + // "comcol-role.edit.scorereviewers.name": "Score Reviewers", "comcol-role.edit.scorereviewers.name": "સ્કોર રિવ્યુઅર્સ", + // "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.", "comcol-role.edit.scorereviewers.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્કોર આપી શકે છે, જે નક્કી કરશે કે સબમિશન નકારવામાં આવશે કે નહીં.", + // "community.form.abstract": "Short Description", "community.form.abstract": "સંક્ષિપ્ત વર્ણન", + // "community.form.description": "Introductory text (HTML)", "community.form.description": "પરિચયાત્મક લખાણ (HTML)", + // "community.form.errors.title.required": "Please enter a community name", "community.form.errors.title.required": "કૃપા કરીને સમુદાયનું નામ દાખલ કરો", + // "community.form.rights": "Copyright text (HTML)", "community.form.rights": "કૉપિરાઇટ લખાણ (HTML)", + // "community.form.tableofcontents": "News (HTML)", "community.form.tableofcontents": "સમાચાર (HTML)", + // "community.form.title": "Name", "community.form.title": "નામ", + // "community.page.edit": "Edit this community", "community.page.edit": "આ સમુદાય સંપાદિત કરો", + // "community.page.handle": "Permanent URI for this community", "community.page.handle": "આ સમુદાય માટે કાયમી URI", + // "community.page.license": "License", "community.page.license": "લાઇસન્સ", + // "community.page.news": "News", "community.page.news": "સમાચાર", + // "community.page.options": "Options", "community.page.options": "વિકલ્પો", + // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "ઉપસમુદાયો અને સંગ્રહો", + // "community.search.breadcrumbs": "Search", "community.search.breadcrumbs": "શોધો", + // "community.search.results.head": "Search Results", "community.search.results.head": "શોધ પરિણામો", + // "community.sub-collection-list.head": "Collections in this community", "community.sub-collection-list.head": "આ સમુદાયમાં સંગ્રહો", + // "community.sub-community-list.head": "Communities in this Community", "community.sub-community-list.head": "આ સમુદાયમાં સમુદાયો", + // "cookies.consent.accept-all": "Accept all", "cookies.consent.accept-all": "બધા સ્વીકારો", + // "cookies.consent.accept-selected": "Accept selected", "cookies.consent.accept-selected": "પસંદ કરેલ સ્વીકારો", + // "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)", "cookies.consent.app.opt-out.description": "આ એપ્લિકેશન ડિફોલ્ટ દ્વારા લોડ થાય છે (પરંતુ તમે તેને ઓપ્ટ આઉટ કરી શકો છો)", + // "cookies.consent.app.opt-out.title": "(opt-out)", "cookies.consent.app.opt-out.title": "(ઓપ્ટ-આઉટ)", + // "cookies.consent.app.purpose": "purpose", "cookies.consent.app.purpose": "હેતુ", + // "cookies.consent.app.required.description": "This application is always required", "cookies.consent.app.required.description": "આ એપ્લિકેશન હંમેશા જરૂરી છે", + // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(હંમેશા જરૂરી)", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "તમારા છેલ્લા મુલાકાત પછી ફેરફારો થયા છે, કૃપા કરીને તમારી સંમતિ અપડેટ કરો.", + // "cookies.consent.close": "Close", "cookies.consent.close": "બંધ કરો", + // "cookies.consent.decline": "Decline", "cookies.consent.decline": "નકારો", + // "cookies.consent.decline-all": "Decline all", "cookies.consent.decline-all": "બધા નકારો", + // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "તે ઠીક છે", + // "cookies.consent.save": "Save", "cookies.consent.save": "સાચવો", - "cookies.consent.content-notice.description": "અમે નીચેના હેતુઓ માટે તમારી વ્યક્તિગત માહિતી એકત્રિત અને પ્રક્રિયા કરીએ છીએ: {purposes}", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + // TODO New key - Add a translation + "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "કસ્ટમાઇઝ કરો", + // "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.", "cookies.consent.content-modal.description": "અહીં તમે જોઈ શકો છો અને કસ્ટમાઇઝ કરી શકો છો કે અમે તમારા વિશે કઈ માહિતી એકત્રિત કરીએ છીએ.", + // "cookies.consent.content-modal.privacy-policy.name": "privacy policy", "cookies.consent.content-modal.privacy-policy.name": "ગોપનીયતા નીતિ", + // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "વધુ જાણવા માટે, કૃપા કરીને અમારી {privacyPolicy} વાંચો.", + // "cookies.consent.content-modal.no-privacy-policy.text": "", "cookies.consent.content-modal.no-privacy-policy.text": "", + // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "અમે જે માહિતી એકત્રિત કરીએ છીએ", + // "cookies.consent.app.title.accessibility": "Accessibility Settings", + // TODO New key - Add a translation + "cookies.consent.app.title.accessibility": "Accessibility Settings", + + // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + // TODO New key - Add a translation + "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "પ્રમાણન", + // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "તમને સાઇન ઇન કરવા માટે જરૂરી છે", + // "cookies.consent.app.title.correlation-id": "Correlation ID", + // TODO New key - Add a translation + "cookies.consent.app.title.correlation-id": "Correlation ID", + + // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + // TODO New key - Add a translation + "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + + // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "પસંદગીઓ", + // "cookies.consent.app.description.preferences": "Required for saving your preferences", "cookies.consent.app.description.preferences": "તમારી પસંદગીઓ સાચવવા માટે જરૂરી છે", + // "cookies.consent.app.title.acknowledgement": "Acknowledgement", "cookies.consent.app.title.acknowledgement": "સ્વીકાર", + // "cookies.consent.app.description.acknowledgement": "Required for saving your acknowledgements and consents", "cookies.consent.app.description.acknowledgement": "તમારા સ્વીકાર અને સંમતિઓ સાચવવા માટે જરૂરી છે", + // "cookies.consent.app.title.google-analytics": "Google Analytics", "cookies.consent.app.title.google-analytics": "Google Analytics", + // "cookies.consent.app.description.google-analytics": "Allows us to track statistical data", "cookies.consent.app.description.google-analytics": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", + // "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", + // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "અમે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ દરમિયાન Google reCAPTCHA સેવા નો ઉપયોગ કરીએ છીએ", + // "cookies.consent.app.title.matomo": "Matomo", "cookies.consent.app.title.matomo": "Matomo", + // "cookies.consent.app.description.matomo": "Allows us to track statistical data", "cookies.consent.app.description.matomo": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", + // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "કાર્યાત્મક", + // "cookies.consent.purpose.statistical": "Statistical", "cookies.consent.purpose.statistical": "આંકડાકીય", + // "cookies.consent.purpose.registration-password-recovery": "Registration and Password recovery", "cookies.consent.purpose.registration-password-recovery": "નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ", + // "cookies.consent.purpose.sharing": "Sharing", "cookies.consent.purpose.sharing": "શેરિંગ", + // "curation-task.task.citationpage.label": "Generate Citation Page", "curation-task.task.citationpage.label": "સાઇટેશન પેજ જનરેટ કરો", + // "curation-task.task.checklinks.label": "Check Links in Metadata", "curation-task.task.checklinks.label": "મેટાડેટામાં લિંક્સ તપાસો", + // "curation-task.task.noop.label": "NOOP", "curation-task.task.noop.label": "NOOP", + // "curation-task.task.profileformats.label": "Profile Bitstream Formats", "curation-task.task.profileformats.label": "પ્રોફાઇલ બિટસ્ટ્રીમ ફોર્મેટ્સ", + // "curation-task.task.requiredmetadata.label": "Check for Required Metadata", "curation-task.task.requiredmetadata.label": "જરૂરી મેટાડેટા માટે તપાસો", + // "curation-task.task.translate.label": "Microsoft Translator", "curation-task.task.translate.label": "Microsoft Translator", + // "curation-task.task.vscan.label": "Virus Scan", "curation-task.task.vscan.label": "વાયરસ સ્કેન", + // "curation-task.task.registerdoi.label": "Register DOI", "curation-task.task.registerdoi.label": "DOI નોંધણી કરો", - "curation.form.task-select.label": "ટાસ્ક:", + // "curation.form.task-select.label": "Task:", + // TODO New key - Add a translation + "curation.form.task-select.label": "Task:", + // "curation.form.submit": "Start", "curation.form.submit": "શરૂ કરો", + // "curation.form.submit.success.head": "The curation task has been started successfully", "curation.form.submit.success.head": "ક્યુરેશન ટાસ્ક સફળતાપૂર્વક શરૂ કરવામાં આવી", + // "curation.form.submit.success.content": "You will be redirected to the corresponding process page.", "curation.form.submit.success.content": "તમને સંબંધિત પ્રક્રિયા પૃષ્ઠ પર રીડાયરેક્ટ કરવામાં આવશે.", + // "curation.form.submit.error.head": "Running the curation task failed", "curation.form.submit.error.head": "ક્યુરેશન ટાસ્ક ચલાવતી વખતે નિષ્ફળ", + // "curation.form.submit.error.content": "An error occurred when trying to start the curation task.", "curation.form.submit.error.content": "ક્યુરેશન ટાસ્ક શરૂ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી.", + // "curation.form.submit.error.invalid-handle": "Couldn't determine the handle for this object", "curation.form.submit.error.invalid-handle": "આ ઑબ્જેક્ટ માટે હેન્ડલ નક્કી કરી શક્યો નથી", - "curation.form.handle.label": "હેન્ડલ:", + // "curation.form.handle.label": "Handle:", + // TODO New key - Add a translation + "curation.form.handle.label": "Handle:", - "curation.form.handle.hint": "સૂચન: [તમારા-હેન્ડલ-પ્રિફિક્સ]/0 દાખલ કરો જેથી સમગ્ર સાઇટ પર ટાસ્ક ચલાવી શકાય (બધા ટાસ્ક આ ક્ષમતા સપોર્ટ કરી શકે છે)", + // "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", + // TODO New key - Add a translation + "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", - "deny-request-copy.email.message": "પ્રિય {{ recipientName }},\\nતમારી વિનંતીનો જવાબ આપતાં મને દુઃખ છે કે હું તમને વિનંતી કરેલ ફાઇલ(ઓ)ની નકલ મોકલી શકું નહીં, દસ્તાવેજ: \\\"{{ itemUrl }}\\\" ({{ itemName }}), જેનો હું લેખક છું.\\n\\nશ્રેષ્ઠ શુભેચ્છાઓ,\\n{{ authorName }} <{{ authorEmail }}>", + // "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + // TODO New key - Add a translation + "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + // "deny-request-copy.email.subject": "Request copy of document", "deny-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", + // "deny-request-copy.error": "An error occurred", "deny-request-copy.error": "ભૂલ આવી", + // "deny-request-copy.header": "Deny document copy request", "deny-request-copy.header": "દસ્તાવેજની નકલ વિનંતી નકારી", + // "deny-request-copy.intro": "This message will be sent to the applicant of the request", "deny-request-copy.intro": "આ સંદેશા વિનંતી કરનારને મોકલવામાં આવશે", + // "deny-request-copy.success": "Successfully denied item request", "deny-request-copy.success": "આઇટમ વિનંતી સફળતાપૂર્વક નકારી", + // "dynamic-list.load-more": "Load more", "dynamic-list.load-more": "વધુ લોડ કરો", + // "dropdown.clear": "Clear selection", "dropdown.clear": "પસંદગી સાફ કરો", + // "dropdown.clear.tooltip": "Clear the selected option", "dropdown.clear.tooltip": "પસંદ કરેલ વિકલ્પ દૂર કરો", + // "dso.name.untitled": "Untitled", "dso.name.untitled": "શીર્ષક વિના", + // "dso.name.unnamed": "Unnamed", "dso.name.unnamed": "નામ વિના", + // "dso-selector.create.collection.head": "New collection", "dso-selector.create.collection.head": "નવો સંગ્રહ", + // "dso-selector.create.collection.sub-level": "Create a new collection in", "dso-selector.create.collection.sub-level": "માં નવો સંગ્રહ બનાવો", + // "dso-selector.create.community.head": "New community", "dso-selector.create.community.head": "નવો સમુદાય", + // "dso-selector.create.community.or-divider": "or", "dso-selector.create.community.or-divider": "અથવા", + // "dso-selector.create.community.sub-level": "Create a new community in", "dso-selector.create.community.sub-level": "માં નવો સમુદાય બનાવો", + // "dso-selector.create.community.top-level": "Create a new top-level community", "dso-selector.create.community.top-level": "ટોપ-લેવલ સમુદાય બનાવો", + // "dso-selector.create.item.head": "New item", "dso-selector.create.item.head": "નવું આઇટમ", + // "dso-selector.create.item.sub-level": "Create a new item in", "dso-selector.create.item.sub-level": "માં નવું આઇટમ બનાવો", + // "dso-selector.create.submission.head": "New submission", "dso-selector.create.submission.head": "નવું સબમિશન", + // "dso-selector.edit.collection.head": "Edit collection", "dso-selector.edit.collection.head": "સંગ્રહ સંપાદિત કરો", + // "dso-selector.edit.community.head": "Edit community", "dso-selector.edit.community.head": "સમુદાય સંપાદિત કરો", + // "dso-selector.edit.item.head": "Edit item", "dso-selector.edit.item.head": "આઇટમ સંપાદિત કરો", + // "dso-selector.error.title": "An error occurred searching for a {{ type }}", "dso-selector.error.title": "{{ type }} માટે શોધ કરતી વખતે ભૂલ આવી", + // "dso-selector.export-metadata.dspaceobject.head": "Export metadata from", "dso-selector.export-metadata.dspaceobject.head": "મેટાડેટા નિકાસ કરો", + // "dso-selector.export-batch.dspaceobject.head": "Export Batch (ZIP) from", "dso-selector.export-batch.dspaceobject.head": "બેચ (ZIP) નિકાસ કરો", + // "dso-selector.import-batch.dspaceobject.head": "Import batch from", "dso-selector.import-batch.dspaceobject.head": "બેચ આયાત કરો", + // "dso-selector.no-results": "No {{ type }} found", "dso-selector.no-results": "કોઈ {{ type }} મળ્યું નથી", + // "dso-selector.placeholder": "Search for a {{ type }}", "dso-selector.placeholder": "{{ type }} માટે શોધો", + // "dso-selector.placeholder.type.community": "community", "dso-selector.placeholder.type.community": "સમુદાય", + // "dso-selector.placeholder.type.collection": "collection", "dso-selector.placeholder.type.collection": "સંગ્રહ", + // "dso-selector.placeholder.type.item": "item", "dso-selector.placeholder.type.item": "આઇટમ", + // "dso-selector.select.collection.head": "Select a collection", "dso-selector.select.collection.head": "સંગ્રહ પસંદ કરો", + // "dso-selector.set-scope.community.head": "Select a search scope", "dso-selector.set-scope.community.head": "શોધ સ્કોપ પસંદ કરો", + // "dso-selector.set-scope.community.button": "Search all of DSpace", "dso-selector.set-scope.community.button": "DSpace ના બધા શોધો", + // "dso-selector.set-scope.community.or-divider": "or", "dso-selector.set-scope.community.or-divider": "અથવા", + // "dso-selector.set-scope.community.input-header": "Search for a community or collection", "dso-selector.set-scope.community.input-header": "સમુદાય અથવા સંગ્રહ માટે શોધો", + // "dso-selector.claim.item.head": "Profile tips", "dso-selector.claim.item.head": "પ્રોફાઇલ ટીપ્સ", + // "dso-selector.claim.item.body": "These are existing profiles that may be related to you. If you recognize yourself in one of these profiles, select it and on the detail page, among the options, choose to claim it. Otherwise you can create a new profile from scratch using the button below.", "dso-selector.claim.item.body": "આ મોજુદા પ્રોફાઇલ્સ છે જે તમારા સંબંધિત હોઈ શકે છે. જો તમે આ પ્રોફાઇલ્સમાં પોતાને ઓળખો છો, તો તેને પસંદ કરો અને વિગત પૃષ્ઠ પર, વિકલ્પોમાંથી, તેને દાવો કરવા માટે પસંદ કરો. અન્યથા, તમે નીચેના બટનનો ઉપયોગ કરીને નવું પ્રોફાઇલ શરુ કરી શકો છો.", + // "dso-selector.claim.item.not-mine-label": "None of these are mine", "dso-selector.claim.item.not-mine-label": "આમાંથી કોઈપણ મારું નથી", + // "dso-selector.claim.item.create-from-scratch": "Create a new one", "dso-selector.claim.item.create-from-scratch": "નવું બનાવો", + // "dso-selector.results-could-not-be-retrieved": "Something went wrong, please refresh again ↻", "dso-selector.results-could-not-be-retrieved": "કંઈક ખોટું થયું, કૃપા કરીને ફરીથી રિફ્રેશ કરો ↻", + // "supervision-group-selector.header": "Supervision Group Selector", "supervision-group-selector.header": "સુપરવિઝન ગ્રુપ સિલેક્ટર", + // "supervision-group-selector.select.type-of-order.label": "Select a type of Order", "supervision-group-selector.select.type-of-order.label": "ઓર્ડરનો પ્રકાર પસંદ કરો", + // "supervision-group-selector.select.type-of-order.option.none": "NONE", "supervision-group-selector.select.type-of-order.option.none": "કોઈ નથી", + // "supervision-group-selector.select.type-of-order.option.editor": "EDITOR", "supervision-group-selector.select.type-of-order.option.editor": "સંપાદક", + // "supervision-group-selector.select.type-of-order.option.observer": "OBSERVER", "supervision-group-selector.select.type-of-order.option.observer": "નિરીક્ષક", + // "supervision-group-selector.select.group.label": "Select a Group", "supervision-group-selector.select.group.label": "જૂથ પસંદ કરો", + // "supervision-group-selector.button.cancel": "Cancel", "supervision-group-selector.button.cancel": "રદ કરો", + // "supervision-group-selector.button.save": "Save", "supervision-group-selector.button.save": "સાચવો", + // "supervision-group-selector.select.type-of-order.error": "Please select a type of order", "supervision-group-selector.select.type-of-order.error": "કૃપા કરીને ઓર્ડરનો પ્રકાર પસંદ કરો", + // "supervision-group-selector.select.group.error": "Please select a group", "supervision-group-selector.select.group.error": "કૃપા કરીને જૂથ પસંદ કરો", + // "supervision-group-selector.notification.create.success.title": "Successfully created supervision order for group {{ name }}", "supervision-group-selector.notification.create.success.title": "જૂથ {{ name }} માટે સુપરવિઝન ઓર્ડર સફળતાપૂર્વક બનાવવામાં આવ્યો", + // "supervision-group-selector.notification.create.failure.title": "Error", "supervision-group-selector.notification.create.failure.title": "ભૂલ", + // "supervision-group-selector.notification.create.already-existing": "A supervision order already exists on this item for selected group", "supervision-group-selector.notification.create.already-existing": "પસંદ કરેલ જૂથ માટે પહેલેથી જ સુપરવિઝન ઓર્ડર અસ્તિત્વમાં છે", + // "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.header": "{{ dsoName }} માટે મેટાડેટા નિકાસ કરો", + // "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.info": "શું તમે ખરેખર {{ dsoName }} માટે મેટાડેટા નિકાસ કરવા માંગો છો", + // "confirmation-modal.export-metadata.cancel": "Cancel", "confirmation-modal.export-metadata.cancel": "રદ કરો", + // "confirmation-modal.export-metadata.confirm": "Export", "confirmation-modal.export-metadata.confirm": "નિકાસ કરો", + // "confirmation-modal.export-batch.header": "Export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.header": "{{ dsoName }} માટે બેચ (ZIP) નિકાસ કરો", + // "confirmation-modal.export-batch.info": "Are you sure you want to export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.info": "શું તમે ખરેખર {{ dsoName }} માટે બેચ (ZIP) નિકાસ કરવા માંગો છો", + // "confirmation-modal.export-batch.cancel": "Cancel", "confirmation-modal.export-batch.cancel": "રદ કરો", + // "confirmation-modal.export-batch.confirm": "Export", "confirmation-modal.export-batch.confirm": "નિકાસ કરો", + // "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.header": "EPerson \\\"{{ dsoName }}\\\" કાઢી નાખો", + // "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.info": "શું તમે ખરેખર EPerson \\\"{{ dsoName }}\\\" કાઢી નાખવા માંગો છો", + // "confirmation-modal.delete-eperson.cancel": "Cancel", "confirmation-modal.delete-eperson.cancel": "રદ કરો", + // "confirmation-modal.delete-eperson.confirm": "Delete", "confirmation-modal.delete-eperson.confirm": "કાઢી નાખો", + // "confirmation-modal.delete-community-collection-logo.info": "Are you sure you want to delete the logo?", "confirmation-modal.delete-community-collection-logo.info": "શું તમે ખરેખર લોગો કાઢી નાખવા માંગો છો?", + // "confirmation-modal.delete-profile.header": "Delete Profile", "confirmation-modal.delete-profile.header": "પ્રોફાઇલ કાઢી નાખો", + // "confirmation-modal.delete-profile.info": "Are you sure you want to delete your profile", "confirmation-modal.delete-profile.info": "શું તમે ખરેખર તમારું પ્રોફાઇલ કાઢી નાખવા માંગો છો", + // "confirmation-modal.delete-profile.cancel": "Cancel", "confirmation-modal.delete-profile.cancel": "રદ કરો", + // "confirmation-modal.delete-profile.confirm": "Delete", "confirmation-modal.delete-profile.confirm": "કાઢી નાખો", + // "confirmation-modal.delete-subscription.header": "Delete Subscription", "confirmation-modal.delete-subscription.header": "સબ્સ્ક્રિપ્શન કાઢી નાખો", + // "confirmation-modal.delete-subscription.info": "Are you sure you want to delete subscription for \"{{ dsoName }}\"", "confirmation-modal.delete-subscription.info": "શું તમે ખરેખર \\\"{{ dsoName }}\\\" માટે સબ્સ્ક્રિપ્શન કાઢી નાખવા માંગો છો", + // "confirmation-modal.delete-subscription.cancel": "Cancel", "confirmation-modal.delete-subscription.cancel": "રદ કરો", + // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "કાઢી નાખો", + // "confirmation-modal.review-account-info.header": "Save the changes", "confirmation-modal.review-account-info.header": "ફેરફારો સાચવો", + // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", "confirmation-modal.review-account-info.info": "શું તમે ખરેખર તમારા પ્રોફાઇલમાં ફેરફારો સાચવવા માંગો છો", + // "confirmation-modal.review-account-info.cancel": "Cancel", "confirmation-modal.review-account-info.cancel": "રદ કરો", + // "confirmation-modal.review-account-info.confirm": "Confirm", "confirmation-modal.review-account-info.confirm": "ખાતરી કરો", + // "confirmation-modal.review-account-info.save": "Save", "confirmation-modal.review-account-info.save": "સાચવો", + // "error.bitstream": "Error fetching bitstream", "error.bitstream": "બિટસ્ટ્રીમ મેળવતી વખતે ભૂલ", + // "error.browse-by": "Error fetching items", "error.browse-by": "આઇટમ્સ મેળવતી વખતે ભૂલ", + // "error.collection": "Error fetching collection", "error.collection": "સંગ્રહ મેળવતી વખતે ભૂલ", + // "error.collections": "Error fetching collections", "error.collections": "સંગ્રહો મેળવતી વખતે ભૂલ", + // "error.community": "Error fetching community", "error.community": "સમુદાય મેળવતી વખતે ભૂલ", + // "error.identifier": "No item found for the identifier", "error.identifier": "આ ઓળખકર્તા માટે કોઈ આઇટમ મળ્યું નથી", + // "error.default": "Error", "error.default": "ભૂલ", + // "error.item": "Error fetching item", "error.item": "આઇટમ મેળવતી વખતે ભૂલ", + // "error.items": "Error fetching items", "error.items": "આઇટમ્સ મેળવતી વખતે ભૂલ", + // "error.objects": "Error fetching objects", "error.objects": "વસ્તુઓ મેળવતી વખતે ભૂલ", + // "error.recent-submissions": "Error fetching recent submissions", "error.recent-submissions": "તાજેતરના સબમિશન્સ મેળવતી વખતે ભૂલ", + // "error.profile-groups": "Error retrieving profile groups", "error.profile-groups": "પ્રોફાઇલ જૂથો મેળવતી વખતે ભૂલ", + // "error.search-results": "Error fetching search results", "error.search-results": "શોધ પરિણામો મેળવતી વખતે ભૂલ", - "error.invalid-search-query": "શોધ ક્વેરી માન્ય નથી. આ ભૂલ વિશે વધુ માહિતી માટે Solr ક્વેરી સિન્ટેક્સ શ્રેષ્ઠ પ્રથાઓ તપાસો.", + // "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + // TODO New key - Add a translation + "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + // "error.sub-collections": "Error fetching sub-collections", "error.sub-collections": "ઉપ-સંગ્રહો મેળવતી વખતે ભૂલ", + // "error.sub-communities": "Error fetching sub-communities", "error.sub-communities": "ઉપ-સમુદાયો મેળવતી વખતે ભૂલ", - "error.submission.sections.init-form-error": "વિભાગ આરંભ દરમિયાન ભૂલ આવી, કૃપા કરીને તમારા ઇનપુટ-ફોર્મ કૉન્ફિગરેશન તપાસો. વિગતો નીચે છે :

", + // "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + // TODO New key - Add a translation + "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "ટોપ-લેવલ સમુદાયો મેળવતી વખતે ભૂલ", - "error.validation.license.notgranted": "તમારે તમારા સબમિશનને પૂર્ણ કરવા માટે આ લાઇસન્સ આપવું જ જોઈએ. જો તમે આ સમયે આ લાઇસન્સ આપી શકતા નથી તો તમે તમારું કામ સાચવી શકો છો અને પછીથી પાછા આવી શકો છો અથવા સબમિશન દૂર કરી શકો છો.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "તમારે તમારા સબમિશનને પૂર્ણ કરવા માટે આ cclicense આપવું જ જોઈએ. જો તમે આ સમયે cclicense આપી શકતા નથી, તો તમે તમારું કામ સાચવી શકો છો અને પછીથી પાછા આવી શકો છો અથવા સબમિશન દૂર કરી શકો છો.", - "error.validation.pattern": "આ ઇનપુટ વર્તમાન પેટર્ન દ્વારા પ્રતિબંધિત છે: {{ pattern }}.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", + // TODO New key - Add a translation + "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", + + // "error.validation.filerequired": "The file upload is mandatory", "error.validation.filerequired": "ફાઇલ અપલોડ ફરજિયાત છે", + // "error.validation.required": "This field is required", "error.validation.required": "આ ફીલ્ડ જરૂરી છે", + // "error.validation.NotValidEmail": "This is not a valid email", "error.validation.NotValidEmail": "આ માન્ય ઇમેઇલ નથી", + // "error.validation.emailTaken": "This email is already taken", "error.validation.emailTaken": "આ ઇમેઇલ પહેલેથી જ લેવામાં આવી છે", + // "error.validation.groupExists": "This group already exists", "error.validation.groupExists": "આ જૂથ પહેલેથી જ અસ્તિત્વમાં છે", + // "error.validation.metadata.name.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Element & Qualifier fields instead", "error.validation.metadata.name.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી. કૃપા કરીને તેના બદલે એલિમેન્ટ અને ક્વોલિફાયર ફીલ્ડનો ઉપયોગ કરો", + // "error.validation.metadata.name.max-length": "This field may not contain more than 32 characters", "error.validation.metadata.name.max-length": "આ ફીલ્ડમાં 32 થી વધુ અક્ષરો હોઈ શકતા નથી", + // "error.validation.metadata.namespace.max-length": "This field may not contain more than 256 characters", "error.validation.metadata.namespace.max-length": "આ ફીલ્ડમાં 256 થી વધુ અક્ષરો હોઈ શકતા નથી", + // "error.validation.metadata.element.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Qualifier field instead", "error.validation.metadata.element.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી. કૃપા કરીને ક્વોલિફાયર ફીલ્ડનો ઉપયોગ કરો", + // "error.validation.metadata.element.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.element.max-length": "આ ફીલ્ડમાં 64 થી વધુ અક્ષરો હોઈ શકતા નથી", + // "error.validation.metadata.qualifier.invalid-pattern": "This field cannot contain dots, commas or spaces", "error.validation.metadata.qualifier.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી", + // "error.validation.metadata.qualifier.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.qualifier.max-length": "આ ફીલ્ડમાં 64 થી વધુ અક્ષરો હોઈ શકતા નથી", + // "feed.description": "Syndication feed", "feed.description": "સિન્ડિકેશન ફીડ", + // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "પ્રતિબંધિત બિટસ્ટ્રીમ", + // "file-download-link.secure-access": "Restricted bitstream available via secure access token", "file-download-link.secure-access": "સુરક્ષિત ઍક્સેસ ટોકન દ્વારા ઉપલબ્ધ પ્રતિબંધિત બિટસ્ટ્રીમ", + // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "આ આઇટમ માટે ફાઇલો મેળવતી વખતે ભૂલ", + // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "કૉપિરાઇટ © 2002-{{ year }}", + // "footer.link.accessibility": "Accessibility settings", + // TODO New key - Add a translation + "footer.link.accessibility": "Accessibility settings", + + // "footer.link.dspace": "DSpace software", "footer.link.dspace": "DSpace સોફ્ટવેર", + // "footer.link.lyrasis": "LYRASIS", "footer.link.lyrasis": "LYRASIS", + // "footer.link.cookies": "Cookie settings", "footer.link.cookies": "કૂકી સેટિંગ્સ", + // "footer.link.privacy-policy": "Privacy policy", "footer.link.privacy-policy": "ગોપનીયતા નીતિ", + // "footer.link.end-user-agreement": "End User Agreement", "footer.link.end-user-agreement": "અંતિમ વપરાશકર્તા કરાર", + // "footer.link.feedback": "Send Feedback", "footer.link.feedback": "પ્રતિસાદ મોકલો", + // "footer.link.coar-notify-support": "COAR Notify", "footer.link.coar-notify-support": "COAR Notify", + // "forgot-email.form.header": "Forgot Password", "forgot-email.form.header": "પાસવર્ડ ભૂલી ગયા", + // "forgot-email.form.info": "Enter the email address associated with the account.", "forgot-email.form.info": "ખાતાની સાથે જોડાયેલ ઇમેઇલ સરનામું દાખલ કરો.", + // "forgot-email.form.email": "Email Address *", "forgot-email.form.email": "ઇમેઇલ સરનામું *", + // "forgot-email.form.email.error.required": "Please fill in an email address", "forgot-email.form.email.error.required": "કૃપા કરીને ઇમેઇલ સરનામું દાખલ કરો", + // "forgot-email.form.email.error.not-email-form": "Please fill in a valid email address", "forgot-email.form.email.error.not-email-form": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું દાખલ કરો", + // "forgot-email.form.email.hint": "An email will be sent to this address with a further instructions.", "forgot-email.form.email.hint": "આ સરનામે વધુ સૂચનાઓ સાથે ઇમેઇલ મોકલવામાં આવશે.", + // "forgot-email.form.submit": "Reset password", "forgot-email.form.submit": "પાસવર્ડ રીસેટ કરો", + // "forgot-email.form.success.head": "Password reset email sent", "forgot-email.form.success.head": "પાસવર્ડ રીસેટ ઇમેઇલ મોકલ્યો", + // "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "forgot-email.form.success.content": "{{ email }} પર ઇમેઇલ મોકલવામાં આવ્યો છે જેમાં વિશેષ URL અને વધુ સૂચનાઓ શામેલ છે.", + // "forgot-email.form.error.head": "Error when trying to reset password", "forgot-email.form.error.head": "પાસવર્ડ રીસેટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - "forgot-email.form.error.content": "નીચેના ઇમેઇલ સરનામા સાથેના ખાતા માટે પાસવર્ડ રીસેટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી: {{ email }}", + // "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + // TODO New key - Add a translation + "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + // "forgot-password.title": "Forgot Password", "forgot-password.title": "પાસવર્ડ ભૂલી ગયા", + // "forgot-password.form.head": "Forgot Password", "forgot-password.form.head": "પાસવર્ડ ભૂલી ગયા", + // "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box.", "forgot-password.form.info": "નીચેના બોક્સમાં નવો પાસવર્ડ દાખલ કરો, અને તેને બીજી બોક્સમાં ફરીથી ટાઇપ કરીને તેની પુષ્ટિ કરો.", + // "forgot-password.form.card.security": "Security", "forgot-password.form.card.security": "સુરક્ષા", + // "forgot-password.form.identification.header": "Identify", "forgot-password.form.identification.header": "ઓળખો", - "forgot-password.form.identification.email": "ઇમેઇલ સરનામું: ", + // "forgot-password.form.identification.email": "Email address: ", + // TODO New key - Add a translation + "forgot-password.form.identification.email": "Email address: ", + // "forgot-password.form.label.password": "Password", "forgot-password.form.label.password": "પાસવર્ડ", + // "forgot-password.form.label.passwordrepeat": "Retype to confirm", "forgot-password.form.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી ટાઇપ કરો", + // "forgot-password.form.error.empty-password": "Please enter a password in the boxes above.", "forgot-password.form.error.empty-password": "કૃપા કરીને ઉપરના બોક્સમાં પાસવર્ડ દાખલ કરો.", + // "forgot-password.form.error.matching-passwords": "The passwords do not match.", "forgot-password.form.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", + // "forgot-password.form.notification.error.title": "Error when trying to submit new password", "forgot-password.form.notification.error.title": "નવો પાસવર્ડ સબમિટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ", + // "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.", "forgot-password.form.notification.success.content": "પાસવર્ડ રીસેટ સફળતાપૂર્વક પૂર્ણ થયું. તમે બનાવેલ વપરાશકર્તા તરીકે લૉગ ઇન થયા છો.", + // "forgot-password.form.notification.success.title": "Password reset completed", "forgot-password.form.notification.success.title": "પાસવર્ડ રીસેટ પૂર્ણ", + // "forgot-password.form.submit": "Submit password", "forgot-password.form.submit": "પાસવર્ડ સબમિટ કરો", + // "form.add": "Add more", "form.add": "વધુ ઉમેરો", + // "form.add-help": "Click here to add the current entry and to add another one", "form.add-help": "વર્તમાન એન્ટ્રી ઉમેરવા અને વધુ એક ઉમેરવા માટે અહીં ક્લિક કરો", + // "form.cancel": "Cancel", "form.cancel": "રદ કરો", + // "form.clear": "Clear", "form.clear": "સાફ કરો", + // "form.clear-help": "Click here to remove the selected value", "form.clear-help": "પસંદ કરેલ મૂલ્ય દૂર કરવા માટે અહીં ક્લિક કરો", + // "form.discard": "Discard", "form.discard": "રદ કરો", + // "form.drag": "Drag", "form.drag": "ડ્રેગ કરો", + // "form.edit": "Edit", "form.edit": "સંપાદિત કરો", + // "form.edit-help": "Click here to edit the selected value", "form.edit-help": "પસંદ કરેલ મૂલ્ય સંપાદિત કરવા માટે અહીં ક્લિક કરો", + // "form.first-name": "First name", "form.first-name": "પ્રથમ નામ", + // "form.group-collapse": "Collapse", "form.group-collapse": "સંકોચો", + // "form.group-collapse-help": "Click here to collapse", "form.group-collapse-help": "સંકોચવા માટે અહીં ક્લિક કરો", + // "form.group-expand": "Expand", "form.group-expand": "વિસ્તારો", + // "form.group-expand-help": "Click here to expand and add more elements", "form.group-expand-help": "વિસ્તારવા અને વધુ તત્વો ઉમેરવા માટે અહીં ક્લિક કરો", + // "form.last-name": "Last name", "form.last-name": "છેલ્લું નામ", + // "form.loading": "Loading...", "form.loading": "લોડ કરી રહ્યું છે...", + // "form.lookup": "Lookup", "form.lookup": "લુકઅપ", + // "form.lookup-help": "Click here to look up an existing relation", "form.lookup-help": "અસ્તિત્વમાં રહેલા સંબંધ માટે અહીં ક્લિક કરો", + // "form.no-results": "No results found", "form.no-results": "કોઈ પરિણામો મળ્યા નથી", + // "form.no-value": "No value entered", "form.no-value": "કોઈ મૂલ્ય દાખલ કરેલ નથી", + // "form.other-information.email": "Email", "form.other-information.email": "ઇમેઇલ", + // "form.other-information.first-name": "First Name", "form.other-information.first-name": "પ્રથમ નામ", + // "form.other-information.insolr": "In Solr Index", "form.other-information.insolr": "સોલર ઇન્ડેક્સમાં", + // "form.other-information.institution": "Institution", "form.other-information.institution": "સંસ્થા", + // "form.other-information.last-name": "Last Name", "form.other-information.last-name": "છેલ્લું નામ", + // "form.other-information.orcid": "ORCID", "form.other-information.orcid": "ORCID", + // "form.remove": "Remove", "form.remove": "દૂર કરો", + // "form.save": "Save", "form.save": "સાચવો", + // "form.save-help": "Save changes", "form.save-help": "ફેરફારો સાચવો", + // "form.search": "Search", "form.search": "શોધો", + // "form.search-help": "Click here to look for an existing correspondence", "form.search-help": "અસ્તિત્વમાં રહેલા પત્રવ્યવહાર માટે અહીં ક્લિક કરો", + // "form.submit": "Save", "form.submit": "સાચવો", + // "form.create": "Create", "form.create": "બનાવો", + // "form.number-picker.decrement": "Decrement {{field}}", "form.number-picker.decrement": "{{field}} ઘટાડો", + // "form.number-picker.increment": "Increment {{field}}", "form.number-picker.increment": "{{field}} વધારો", + // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "આઇટમને નવી સ્થિતિમાં ડ્રોપ કરો", + // "grant-deny-request-copy.deny": "Deny access request", "grant-deny-request-copy.deny": "ઍક્સેસ વિનંતી નકારી", + // "grant-deny-request-copy.revoke": "Revoke access", "grant-deny-request-copy.revoke": "ઍક્સેસ રદ કરો", + // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "પાછા", + // "grant-deny-request-copy.email.message": "Optional additional message", "grant-deny-request-copy.email.message": "વૈકલ્પિક વધારાનો સંદેશ", + // "grant-deny-request-copy.email.message.empty": "Please enter a message", "grant-deny-request-copy.email.message.empty": "કૃપા કરીને સંદેશ દાખલ કરો", + // "grant-deny-request-copy.email.permissions.info": "You may use this occasion to reconsider the access restrictions on the document, to avoid having to respond to these requests. If you’d like to ask the repository administrators to remove these restrictions, please check the box below.", "grant-deny-request-copy.email.permissions.info": "આ દસ્તાવેજ પર ઍક્સેસ પ્રતિબંધો દૂર કરવા માટે રિપોઝિટરી વહીવટકર્તાઓને પૂછવા માટે તમે આ પ્રસંગનો ઉપયોગ કરી શકો છો, જેથી આ વિનંતીઓને જવાબ આપવાની જરૂર ન પડે. જો તમે આ પ્રતિબંધો દૂર કરવા માટે રિપોઝિટરી વહીવટકર્તાઓને પૂછવા માંગતા હો, તો કૃપા કરીને નીચેના બોક્સને ચેક કરો.", + // "grant-deny-request-copy.email.permissions.label": "Change to open access", "grant-deny-request-copy.email.permissions.label": "ઓપન ઍક્સેસમાં બદલો", + // "grant-deny-request-copy.email.send": "Send", "grant-deny-request-copy.email.send": "મોકલો", + // "grant-deny-request-copy.email.subject": "Subject", "grant-deny-request-copy.email.subject": "વિષય", + // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "કૃપા કરીને વિષય દાખલ કરો", + // "grant-deny-request-copy.grant": "Grant access request", "grant-deny-request-copy.grant": "ઍક્સેસ વિનંતી મંજુર કરો", + // "grant-deny-request-copy.header": "Document copy request", "grant-deny-request-copy.header": "દસ્તાવેજ નકલ વિનંતી", + // "grant-deny-request-copy.home-page": "Take me to the home page", "grant-deny-request-copy.home-page": "મને હોમ પેજ પર લઈ જાઓ", + // "grant-deny-request-copy.intro1": "If you are one of the authors of the document {{ name }}, then please use one of the options below to respond to the user's request.", "grant-deny-request-copy.intro1": "જો તમે દસ્તાવેજના લેખકોમાંના એક છો {{ name }}, તો કૃપા કરીને વપરાશકર્તાની વિનંતીનો જવાબ આપવા માટે નીચેના વિકલ્પોનો ઉપયોગ કરો.", + // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "વિકલ્પ પસંદ કર્યા પછી, તમને સૂચિત ઇમેઇલ જવાબ રજૂ કરવામાં આવશે જે તમે સંપાદિત કરી શકો છો.", + // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", "grant-deny-request-copy.previous-decision": "આ વિનંતી અગાઉ સુરક્ષિત ઍક્સેસ ટોકન સાથે મંજુર કરવામાં આવી હતી. તમે આ ઍક્સેસને રદ કરી શકો છો જેથી ઍક્સેસ ટોકન તરત જ અમાન્ય થઈ જાય", + // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "આ વિનંતી પહેલેથી જ પ્રક્રિયા કરવામાં આવી છે. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", + // "grant-request-copy.email.subject": "Request copy of document", "grant-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", + // "grant-request-copy.error": "An error occurred", "grant-request-copy.error": "ભૂલ આવી", + // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "દસ્તાવેજ નકલ વિનંતી મંજુર કરો", + // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", "grant-request-copy.intro.attachment": "વિનંતી કરનારને સંદેશ મોકલવામાં આવશે. વિનંતી કરેલ દસ્તાવેજ(ઓ) જોડવામાં આવશે.", + // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", "grant-request-copy.intro.link": "વિનંતી કરનારને સંદેશ મોકલવામાં આવશે. વિનંતી કરેલ દસ્તાવેજ(ઓ)ને ઍક્સેસ પ્રદાન કરતી સુરક્ષિત લિંક જોડવામાં આવશે. લિંક નીચેના \\\"ઍક્સેસ પિરિયડ\\\" મેનુમાં પસંદ કરેલ સમયગાળા માટે ઍક્સેસ પ્રદાન કરશે.", - "grant-request-copy.intro.link.preview": "નીચે વિનંતી કરનારને મોકલવામાં આવનાર લિંકનું પૂર્વાવલોકન છે:", + // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // TODO New key - Add a translation + "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "વિનંતી કરેલ આઇટમ સફળતાપૂર્વક મંજુર કર્યું", + // "grant-request-copy.access-period.header": "Access period", "grant-request-copy.access-period.header": "ઍક્સેસ પિરિયડ", + // "grant-request-copy.access-period.+1DAY": "1 day", "grant-request-copy.access-period.+1DAY": "1 દિવસ", + // "grant-request-copy.access-period.+7DAYS": "1 week", "grant-request-copy.access-period.+7DAYS": "1 અઠવાડિયું", + // "grant-request-copy.access-period.+1MONTH": "1 month", "grant-request-copy.access-period.+1MONTH": "1 મહિનો", + // "grant-request-copy.access-period.+3MONTHS": "3 months", "grant-request-copy.access-period.+3MONTHS": "3 મહિના", + // "grant-request-copy.access-period.FOREVER": "Forever", "grant-request-copy.access-period.FOREVER": "કાયમ માટે", + // "health.breadcrumbs": "Health", "health.breadcrumbs": "હેલ્થ", + // "health-page.heading": "Health", "health-page.heading": "હેલ્થ", + // "health-page.info-tab": "Info", "health-page.info-tab": "માહિતી", + // "health-page.status-tab": "Status", "health-page.status-tab": "સ્થિતિ", + // "health-page.error.msg": "The health check service is temporarily unavailable", "health-page.error.msg": "હેલ્થ ચેક સેવા તાત્કાલિક ઉપલબ્ધ નથી", + // "health-page.property.status": "Status code", "health-page.property.status": "સ્થિતિ કોડ", + // "health-page.section.db.title": "Database", "health-page.section.db.title": "ડેટાબેઝ", + // "health-page.section.geoIp.title": "GeoIp", "health-page.section.geoIp.title": "GeoIp", - "health-page.section.solrAuthorityCore.title": "સોલર: ઓથોરિટી કોર", + // "health-page.section.solrAuthorityCore.title": "Solr: authority core", + // TODO New key - Add a translation + "health-page.section.solrAuthorityCore.title": "Solr: authority core", - "health-page.section.solrOaiCore.title": "સોલર: oai કોર", + // "health-page.section.solrOaiCore.title": "Solr: oai core", + // TODO New key - Add a translation + "health-page.section.solrOaiCore.title": "Solr: oai core", - "health-page.section.solrSearchCore.title": "સોલર: શોધ કોર", + // "health-page.section.solrSearchCore.title": "Solr: search core", + // TODO New key - Add a translation + "health-page.section.solrSearchCore.title": "Solr: search core", - "health-page.section.solrStatisticsCore.title": "સોલર: આંકડા કોર", + // "health-page.section.solrStatisticsCore.title": "Solr: statistics core", + // TODO New key - Add a translation + "health-page.section.solrStatisticsCore.title": "Solr: statistics core", + // "health-page.section-info.app.title": "Application Backend", "health-page.section-info.app.title": "એપ્લિકેશન બેકએન્ડ", + // "health-page.section-info.java.title": "Java", "health-page.section-info.java.title": "જાવા", + // "health-page.status": "Status", "health-page.status": "સ્થિતિ", + // "health-page.status.ok.info": "Operational", "health-page.status.ok.info": "સંચાલન", + // "health-page.status.error.info": "Problems detected", "health-page.status.error.info": "સમસ્યાઓ શોધવામાં આવી", + // "health-page.status.warning.info": "Possible issues detected", "health-page.status.warning.info": "શક્ય સમસ્યાઓ શોધવામાં આવી", + // "health-page.title": "Health", "health-page.title": "હેલ્થ", + // "health-page.section.no-issues": "No issues detected", "health-page.section.no-issues": "કોઈ સમસ્યાઓ શોધવામાં આવી નથી", + // "home.description": "", "home.description": "", + // "home.breadcrumbs": "Home", "home.breadcrumbs": "હોમ", + // "home.search-form.placeholder": "Search the repository ...", "home.search-form.placeholder": "રિપોઝિટરી શોધો ...", + // "home.title": "Home", "home.title": "હોમ", + // "home.top-level-communities.head": "Communities in DSpace", "home.top-level-communities.head": "DSpace માં સમુદાયો", + // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "તેના સંગ્રહોને બ્રાઉઝ કરવા માટે સમુદાય પસંદ કરો.", + // "info.accessibility-settings.breadcrumbs": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.breadcrumbs": "Accessibility settings", + + // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + // TODO New key - Add a translation + "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + + // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + + // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + + // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + + // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + // TODO New key - Add a translation + "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + + // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + + // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + + // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + + // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + + // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + + // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + + // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + + // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + + // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + + // "info.accessibility-settings.reset-notification": "Successfully reset settings.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-notification": "Successfully reset settings.", + + // "info.accessibility-settings.reset": "Reset accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.reset": "Reset accessibility settings", + + // "info.accessibility-settings.submit": "Save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.submit": "Save accessibility settings", + + // "info.accessibility-settings.title": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.title": "Accessibility settings", + + // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "મેં અંતિમ વપરાશકર્તા કરાર વાંચ્યો છે અને હું તેને સહમત છું", + // "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement", "info.end-user-agreement.accept.error": "અંતિમ વપરાશકર્તા કરાર સ્વીકારતી વખતે ભૂલ આવી", + // "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement", "info.end-user-agreement.accept.success": "અંતિમ વપરાશકર્તા કરાર સફળતાપૂર્વક અપડેટ કર્યો", + // "info.end-user-agreement.breadcrumbs": "End User Agreement", "info.end-user-agreement.breadcrumbs": "અંતિમ વપરાશકર્તા કરાર", + // "info.end-user-agreement.buttons.cancel": "Cancel", "info.end-user-agreement.buttons.cancel": "રદ કરો", + // "info.end-user-agreement.buttons.save": "Save", "info.end-user-agreement.buttons.save": "સાચવો", + // "info.end-user-agreement.head": "End User Agreement", "info.end-user-agreement.head": "અંતિમ વપરાશકર્તા કરાર", + // "info.end-user-agreement.title": "End User Agreement", "info.end-user-agreement.title": "અંતિમ વપરાશકર્તા કરાર", + // "info.end-user-agreement.hosting-country": "the United States", "info.end-user-agreement.hosting-country": "યુનાઇટેડ સ્ટેટ્સ", + // "info.privacy.breadcrumbs": "Privacy Statement", "info.privacy.breadcrumbs": "ગોપનીયતા નિવેદન", + // "info.privacy.head": "Privacy Statement", "info.privacy.head": "ગોપનીયતા નિવેદન", + // "info.privacy.title": "Privacy Statement", "info.privacy.title": "ગોપનીયતા નિવેદન", + // "info.feedback.breadcrumbs": "Feedback", "info.feedback.breadcrumbs": "પ્રતિસાદ", + // "info.feedback.head": "Feedback", "info.feedback.head": "પ્રતિસાદ", + // "info.feedback.title": "Feedback", "info.feedback.title": "પ્રતિસાદ", + // "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!", "info.feedback.info": "DSpace સિસ્ટમ વિશે તમારો પ્રતિસાદ શેર કરવા બદલ આભાર. તમારી ટિપ્પણીઓની પ્રશંસા કરવામાં આવે છે!", + // "info.feedback.email_help": "This address will be used to follow up on your feedback.", "info.feedback.email_help": "આ સરનામું તમારા પ્રતિસાદ પર અનુસરણ કરવા માટે વપરાશે.", + // "info.feedback.send": "Send Feedback", "info.feedback.send": "પ્રતિસાદ મોકલો", + // "info.feedback.comments": "Comments", "info.feedback.comments": "ટિપ્પણીઓ", + // "info.feedback.email-label": "Your Email", "info.feedback.email-label": "તમારું ઇમેઇલ", + // "info.feedback.create.success": "Feedback Sent Successfully!", "info.feedback.create.success": "પ્રતિસાદ સફળતાપૂર્વક મોકલ્યો!", + // "info.feedback.error.email.required": "A valid email address is required", "info.feedback.error.email.required": "માન્ય ઇમેઇલ સરનામું જરૂરી છે", + // "info.feedback.error.message.required": "A comment is required", "info.feedback.error.message.required": "ટિપ્પણી જરૂરી છે", + // "info.feedback.page-label": "Page", "info.feedback.page-label": "પૃષ્ઠ", + // "info.feedback.page_help": "The page related to your feedback", "info.feedback.page_help": "તમારા પ્રતિસાદ સાથે સંબંધિત પૃષ્ઠ", + // "info.coar-notify-support.title": "COAR Notify Support", "info.coar-notify-support.title": "COAR Notify Support", + // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "COAR Notify Support", + // "item.alerts.private": "This item is non-discoverable", "item.alerts.private": "આ આઇટમ નોન-ડિસ્કવરેબલ છે", + // "item.alerts.withdrawn": "This item has been withdrawn", "item.alerts.withdrawn": "આ આઇટમ પાછું ખેંચી લેવામાં આવ્યું છે", + // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "ફરી સ્થાપિત કરવાની વિનંતી કરો", + // "quality-assurance.event.table.person-who-requested": "Requested by", "quality-assurance.event.table.person-who-requested": "વિનંતી કરનાર", - "item.edit.authorizations.heading": "આ સંપાદક સાથે તમે આઇટમની પોલિસી જોઈ અને બદલાવી શકો છો, તેમજ વ્યક્તિગત આઇટમ ઘટકોની પોલિસી બદલી શકો છો: બંડલ્સ અને બિટસ્ટ્રીમ્સ. ટૂંકમાં, આઇટમ બંડલ્સનો કન્ટેનર છે, અને બંડલ્સ બિટસ્ટ્રીમ્સના કન્ટેનર છે. કન્ટેનર્સમાં સામાન્ય રીતે ADD/REMOVE/READ/WRITE પોલિસી હોય છે, જ્યારે બિટસ્ટ્રીમ્સમાં માત્ર READ/WRITE પોલિસી હોય છે.", + // "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + // TODO New key - Add a translation + "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "આઇટમની પોલિસી સંપાદિત કરો", + // "item.badge.status": "Item status:", + // TODO New key - Add a translation + "item.badge.status": "Item status:", + + // "item.badge.private": "Non-discoverable", "item.badge.private": "નોન-ડિસ્કવરેબલ", + // "item.badge.withdrawn": "Withdrawn", "item.badge.withdrawn": "પાછું ખેંચી લેવામાં આવ્યું", + // "item.bitstreams.upload.bundle": "Bundle", "item.bitstreams.upload.bundle": "બંડલ", + // "item.bitstreams.upload.bundle.placeholder": "Select a bundle or input new bundle name", "item.bitstreams.upload.bundle.placeholder": "બંડલ પસંદ કરો અથવા નવું બંડલ નામ દાખલ કરો", + // "item.bitstreams.upload.bundle.new": "Create bundle", "item.bitstreams.upload.bundle.new": "બંડલ બનાવો", + // "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.", "item.bitstreams.upload.bundles.empty": "આ આઇટમમાં અપલોડ કરવા માટે કોઈ બંડલ્સ નથી.", + // "item.bitstreams.upload.cancel": "Cancel", "item.bitstreams.upload.cancel": "રદ કરો", + // "item.bitstreams.upload.drop-message": "Drop a file to upload", "item.bitstreams.upload.drop-message": "અપલોડ કરવા માટે ફાઇલ ડ્રોપ કરો", - "item.bitstreams.upload.item": "આઇટમ: ", + // "item.bitstreams.upload.item": "Item: ", + // TODO New key - Add a translation + "item.bitstreams.upload.item": "Item: ", + // "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.", "item.bitstreams.upload.notifications.bundle.created.content": "નવું બંડલ સફળતાપૂર્વક બનાવવામાં આવ્યું.", + // "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle", "item.bitstreams.upload.notifications.bundle.created.title": "બંડલ બનાવ્યું", + // "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.", "item.bitstreams.upload.notifications.upload.failed": "અપલોડ નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", + // "item.bitstreams.upload.title": "Upload bitstream", "item.bitstreams.upload.title": "બિટસ્ટ્રીમ અપલોડ કરો", + // "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload", "item.edit.bitstreams.bundle.edit.buttons.upload": "અપલોડ કરો", + // "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.", "item.edit.bitstreams.bundle.displaying": "હાલમાં {{ amount }} બિટસ્ટ્રીમ્સ {{ total }} માંથી બતાવી રહ્યા છે.", + // "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})", "item.edit.bitstreams.bundle.load.all": "બધા લોડ કરો ({{ total }})", + // "item.edit.bitstreams.bundle.load.more": "Load more", "item.edit.bitstreams.bundle.load.more": "વધુ લોડ કરો", - "item.edit.bitstreams.bundle.name": "બંડલ: {{ name }}", + // "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + // TODO New key - Add a translation + "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle", "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} બંડલમાં બિટસ્ટ્રીમ્સ", + // "item.edit.bitstreams.bundle.tooltip": "You can move a bitstream to a different page by dropping it on the page number.", "item.edit.bitstreams.bundle.tooltip": "તમે બિટસ્ટ્રીમને પૃષ્ઠ નંબર પર ડ્રોપ કરીને તેને અલગ પૃષ્ઠ પર ખસેડી શકો છો.", + // "item.edit.bitstreams.discard-button": "Discard", "item.edit.bitstreams.discard-button": "રદ કરો", + // "item.edit.bitstreams.edit.buttons.download": "Download", "item.edit.bitstreams.edit.buttons.download": "ડાઉનલોડ કરો", + // "item.edit.bitstreams.edit.buttons.drag": "Drag", "item.edit.bitstreams.edit.buttons.drag": "ડ્રેગ કરો", + // "item.edit.bitstreams.edit.buttons.edit": "Edit", "item.edit.bitstreams.edit.buttons.edit": "સંપાદિત કરો", + // "item.edit.bitstreams.edit.buttons.remove": "Remove", "item.edit.bitstreams.edit.buttons.remove": "દૂર કરો", + // "item.edit.bitstreams.edit.buttons.undo": "Undo changes", "item.edit.bitstreams.edit.buttons.undo": "ફેરફારો રદ કરો", + // "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} was returned to position {{ toIndex }} and is no longer selected.", "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} ને સ્થિતિ {{ toIndex }} પર પાછું લાવવામાં આવ્યું છે અને હવે પસંદ કરેલ નથી.", + // "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} is no longer selected.", "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} હવે પસંદ કરેલ નથી.", + // "item.edit.bitstreams.edit.live.loading": "Waiting for move to complete.", "item.edit.bitstreams.edit.live.loading": "ખસેડવાનું પૂર્ણ થવાની રાહ જોઈ રહ્યા છે.", + // "item.edit.bitstreams.edit.live.select": "{{ bitstream }} is selected.", "item.edit.bitstreams.edit.live.select": "{{ bitstream }} પસંદ કરેલ છે.", + // "item.edit.bitstreams.edit.live.move": "{{ bitstream }} is now in position {{ toIndex }}.", "item.edit.bitstreams.edit.live.move": "{{ bitstream }} હવે સ્થિતિ {{ toIndex }} માં છે.", + // "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.", "item.edit.bitstreams.empty": "આ આઇટમમાં કોઈ બિટસ્ટ્રીમ્સ નથી. એક બનાવવા માટે અપલોડ બટન પર ક્લિક કરો.", - "item.edit.bitstreams.info-alert": "બિટસ્ટ્રીમ્સને તેમના બંડલ્સમાં ફરીથી ક્રમમાં ગોઠવવા માટે ડ્રેગ હેન્ડલ પકડીને અને માઉસ ખસેડીને ખસેડી શકાય છે. વૈકલ્પિક રીતે, બિટસ્ટ્રીમ્સને કીબોર્ડનો ઉપયોગ કરીને ખસેડી શકાય છે: બિટસ્ટ્રીમના ડ્રેગ હેન્ડલ પર ફોકસ હોવા પર એન્ટર દબાવીને બિટસ્ટ્રીમ પસંદ કરો. બિટસ્ટ્રીમને ખસેડવા માટે એરો કીઝનો ઉપયોગ કરો. બિટસ્ટ્રીમની વર્તમાન સ્થિતિની પુષ્ટિ કરવા માટે ફરીથી એન્ટર દબાવો.", + // "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + // TODO New key - Add a translation + "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + // "item.edit.bitstreams.headers.actions": "Actions", "item.edit.bitstreams.headers.actions": "ક્રિયાઓ", + // "item.edit.bitstreams.headers.bundle": "Bundle", "item.edit.bitstreams.headers.bundle": "બંડલ", + // "item.edit.bitstreams.headers.description": "Description", "item.edit.bitstreams.headers.description": "વર્ણન", + // "item.edit.bitstreams.headers.format": "Format", "item.edit.bitstreams.headers.format": "ફોર્મેટ", + // "item.edit.bitstreams.headers.name": "Name", "item.edit.bitstreams.headers.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": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + // "item.edit.bitstreams.notifications.discarded.title": "Changes discarded", "item.edit.bitstreams.notifications.discarded.title": "ફેરફારો રદ", + // "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams", "item.edit.bitstreams.notifications.move.failed.title": "બિટસ્ટ્રીમ્સ ખસેડવામાં ભૂલ", + // "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": "આ આઇટમના બિટસ્ટ્રીમ્સ અને બંડલ્સ માટેના તમારા ખસેડવાના ફેરફારો સાચવવામાં આવ્યા.", + // "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved", "item.edit.bitstreams.notifications.move.saved.title": "ખસેડવાના ફેરફારો સાચવ્યા", + // "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": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", + // "item.edit.bitstreams.notifications.outdated.title": "Changes outdated", "item.edit.bitstreams.notifications.outdated.title": "ફેરફારો જૂના છે", + // "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream", "item.edit.bitstreams.notifications.remove.failed.title": "બિટસ્ટ્રીમ કાઢી નાખવામાં ભૂલ", + // "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": "આ આઇટમના બિટસ્ટ્રીમ્સ માટેના તમારા દૂર કરવાના ફેરફારો સાચવવામાં આવ્યા.", + // "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved", "item.edit.bitstreams.notifications.remove.saved.title": "દૂર કરવાના ફેરફારો સાચવ્યા", + // "item.edit.bitstreams.reinstate-button": "Undo", "item.edit.bitstreams.reinstate-button": "Undo", + // "item.edit.bitstreams.save-button": "Save", "item.edit.bitstreams.save-button": "સાચવો", + // "item.edit.bitstreams.upload-button": "Upload", "item.edit.bitstreams.upload-button": "અપલોડ કરો", + // "item.edit.bitstreams.load-more.link": "Load more", "item.edit.bitstreams.load-more.link": "વધુ લોડ કરો", + // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "રદ કરો", + // "item.edit.delete.confirm": "Delete", "item.edit.delete.confirm": "કાઢી નાખો", - "item.edit.delete.description": "શું તમે ખરેખર આ આઇટમને સંપૂર્ણપણે કાઢી નાખવા માંગો છો? સાવચેત: હાલમાં, કોઈ ટોમ્બસ્ટોન બાકી રહેશે નહીં.", + // "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + // TODO New key - Add a translation + "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + // "item.edit.delete.error": "An error occurred while deleting the item", "item.edit.delete.error": "આઇટમ કાઢી નાખતી વખતે ભૂલ આવી", - "item.edit.delete.header": "આઇટમ કાઢી નાખો: {{ id }}", + // "item.edit.delete.header": "Delete item: {{ id }}", + // TODO New key - Add a translation + "item.edit.delete.header": "Delete item: {{ id }}", + // "item.edit.delete.success": "The item has been deleted", "item.edit.delete.success": "આઇટમ કાઢી નાખવામાં આવ્યું છે", + // "item.edit.head": "Edit Item", "item.edit.head": "આઇટમ સંપાદિત કરો", + // "item.edit.breadcrumbs": "Edit Item", "item.edit.breadcrumbs": "આઇટમ સંપાદિત કરો", + // "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab", "item.edit.tabs.disabled.tooltip": "તમે આ ટેબ ઍક્સેસ કરવા માટે અધિકૃત નથી", + // "item.edit.tabs.mapper.head": "Collection Mapper", "item.edit.tabs.mapper.head": "સંગ્રહ મેપર", + // "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper", "item.edit.tabs.item-mapper.title": "આઇટમ સંપાદન - સંગ્રહ મેપર", + // "item.edit.identifiers.doi.status.UNKNOWN": "Unknown", "item.edit.identifiers.doi.status.UNKNOWN": "અજ્ઞાત", + // "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "Queued for registration", "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "નોંધણી માટે કતારમાં", + // "item.edit.identifiers.doi.status.TO_BE_RESERVED": "Queued for reservation", "item.edit.identifiers.doi.status.TO_BE_RESERVED": "રિઝર્વેશન માટે કતારમાં", + // "item.edit.identifiers.doi.status.IS_REGISTERED": "Registered", "item.edit.identifiers.doi.status.IS_REGISTERED": "નોંધાયેલ", + // "item.edit.identifiers.doi.status.IS_RESERVED": "Reserved", "item.edit.identifiers.doi.status.IS_RESERVED": "રિઝર્વેશન", + // "item.edit.identifiers.doi.status.UPDATE_RESERVED": "Reserved (update queued)", "item.edit.identifiers.doi.status.UPDATE_RESERVED": "રિઝર્વેશન (અપડેટ કતારમાં)", + // "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Registered (update queued)", "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "નોંધાયેલ (અપડેટ કતારમાં)", + // "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "Queued for update and registration", "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "અપડેટ અને નોંધણી માટે કતારમાં", + // "item.edit.identifiers.doi.status.TO_BE_DELETED": "Queued for deletion", "item.edit.identifiers.doi.status.TO_BE_DELETED": "કાઢી નાખવા માટે કતારમાં", + // "item.edit.identifiers.doi.status.DELETED": "Deleted", "item.edit.identifiers.doi.status.DELETED": "કાઢી નાખ્યું", + // "item.edit.identifiers.doi.status.PENDING": "Pending (not registered)", "item.edit.identifiers.doi.status.PENDING": "બાકી (નોંધાયેલ નથી)", + // "item.edit.identifiers.doi.status.MINTED": "Minted (not registered)", "item.edit.identifiers.doi.status.MINTED": "મિન્ટેડ (નોંધાયેલ નથી)", + // "item.edit.tabs.status.buttons.register-doi.label": "Register a new or pending DOI", "item.edit.tabs.status.buttons.register-doi.label": "નવું અથવા બાકી DOI નોંધણી કરો", + // "item.edit.tabs.status.buttons.register-doi.button": "Register DOI...", "item.edit.tabs.status.buttons.register-doi.button": "DOI નોંધણી કરો...", + // "item.edit.register-doi.header": "Register a new or pending DOI", "item.edit.register-doi.header": "નવું અથવા બાકી DOI નોંધણી કરો", + // "item.edit.register-doi.description": "Review any pending identifiers and item metadata below and click Confirm to proceed with DOI registration, or Cancel to back out", "item.edit.register-doi.description": "કોઈ બાકી ઓળખકર્તાઓ અને આઇટમ મેટાડેટાની નીચે સમીક્ષા કરો અને DOI નોંધણી સાથે આગળ વધવા માટે પુષ્ટિ પર ક્લિક કરો, અથવા રદ કરવા માટે પાછા જાઓ", + // "item.edit.register-doi.confirm": "Confirm", "item.edit.register-doi.confirm": "પુષ્ટિ કરો", + // "item.edit.register-doi.cancel": "Cancel", "item.edit.register-doi.cancel": "રદ કરો", + // "item.edit.register-doi.success": "DOI queued for registration successfully.", "item.edit.register-doi.success": "DOI નોંધણી માટે કતારમાં સફળતાપૂર્વક મૂક્યું.", + // "item.edit.register-doi.error": "Error registering DOI", "item.edit.register-doi.error": "DOI નોંધણીમાં ભૂલ", + // "item.edit.register-doi.to-update": "The following DOI has already been minted and will be queued for registration online", "item.edit.register-doi.to-update": "નીચે આપેલ DOI પહેલેથી જ મિન્ટેડ છે અને ઓનલાઈન નોંધણી માટે કતારમાં મૂકવામાં આવશે", + // "item.edit.item-mapper.buttons.add": "Map item to selected collections", "item.edit.item-mapper.buttons.add": "આઇટમને પસંદ કરેલ સંગ્રહોમાં મેપ કરો", + // "item.edit.item-mapper.buttons.remove": "Remove item's mapping for selected collections", "item.edit.item-mapper.buttons.remove": "પસંદ કરેલ સંગ્રહો માટે આઇટમનું મેપિંગ દૂર કરો", + // "item.edit.item-mapper.cancel": "Cancel", "item.edit.item-mapper.cancel": "રદ કરો", + // "item.edit.item-mapper.description": "This is the item mapper tool that allows administrators to map this item to other collections. You can search for collections and map them, or browse the list of collections the item is currently mapped to.", "item.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે વહીવટકર્તાઓને આ આઇટમને અન્ય સંગ્રહોમાં મેપ કરવાની મંજૂરી આપે છે. તમે સંગ્રહો શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા આઇટમ હાલમાં જે સંગ્રહોમાં મેપ કરેલ છે તેની યાદી બ્રાઉઝ કરી શકો છો.", + // "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections", "item.edit.item-mapper.head": "આઇટમ મેપર - આઇટમને સંગ્રહોમાં મેપ કરો", - "item.edit.item-mapper.item": "આઇટમ: \\\"{{name}}\\\"", + // "item.edit.item-mapper.item": "Item: \"{{name}}\"", + // TODO New key - Add a translation + "item.edit.item-mapper.item": "Item: \"{{name}}\"", + // "item.edit.item-mapper.no-search": "Please enter a query to search", "item.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", + // "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": "આઇટમને {{amount}} સંગ્રહોમાં મેપ કરતી વખતે ભૂલો આવી.", + // "item.edit.item-mapper.notifications.add.error.head": "Mapping errors", "item.edit.item-mapper.notifications.add.error.head": "મેપિંગ ભૂલો", + // "item.edit.item-mapper.notifications.add.success.content": "Successfully mapped item to {{amount}} collections.", "item.edit.item-mapper.notifications.add.success.content": "આઇટમને {{amount}} સંગ્રહોમાં સફળતાપૂર્વક મેપ કર્યું.", + // "item.edit.item-mapper.notifications.add.success.head": "Mapping completed", "item.edit.item-mapper.notifications.add.success.head": "મેપિંગ પૂર્ણ", + // "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.error.content": "મેપિંગ {{amount}} સંગ્રહો માટે દૂર કરતી વખતે ભૂલો આવી.", + // "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors", "item.edit.item-mapper.notifications.remove.error.head": "મેપિંગ દૂર કરવાની ભૂલો", + // "item.edit.item-mapper.notifications.remove.success.content": "Successfully removed mapping of item to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.success.content": "આઇટમનું મેપિંગ {{amount}} સંગ્રહો માટે સફળતાપૂર્વક દૂર કર્યું.", + // "item.edit.item-mapper.notifications.remove.success.head": "Removal of mapping completed", "item.edit.item-mapper.notifications.remove.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", + // "item.edit.item-mapper.search-form.placeholder": "Search collections...", "item.edit.item-mapper.search-form.placeholder": "સંગ્રહો શોધો...", + // "item.edit.item-mapper.tabs.browse": "Browse mapped collections", "item.edit.item-mapper.tabs.browse": "મેપ કરેલ સંગ્રહો બ્રાઉઝ કરો", + // "item.edit.item-mapper.tabs.map": "Map new collections", "item.edit.item-mapper.tabs.map": "નવા સંગ્રહો મેપ કરો", + // "item.edit.metadata.add-button": "Add", "item.edit.metadata.add-button": "ઉમેરો", + // "item.edit.metadata.discard-button": "Discard", "item.edit.metadata.discard-button": "રદ કરો", + // "item.edit.metadata.edit.language": "Edit language", "item.edit.metadata.edit.language": "ભાષા સંપાદિત કરો", + // "item.edit.metadata.edit.value": "Edit value", "item.edit.metadata.edit.value": "મૂલ્ય સંપાદિત કરો", + // "item.edit.metadata.edit.authority.key": "Edit authority key", "item.edit.metadata.edit.authority.key": "અધિકૃતતા કી સંપાદિત કરો", + // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", "item.edit.metadata.edit.buttons.enable-free-text-editing": "મફત-ટેક્સ્ટ સંપાદન સક્ષમ કરો", + // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", "item.edit.metadata.edit.buttons.disable-free-text-editing": "મફત-ટેક્સ્ટ સંપાદન અક્ષમ કરો", + // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "પુષ્ટિ કરો", + // "item.edit.metadata.edit.buttons.drag": "Drag to reorder", "item.edit.metadata.edit.buttons.drag": "ફરીથી ક્રમમાં ગોઠવવા માટે ડ્રેગ કરો", + // "item.edit.metadata.edit.buttons.edit": "Edit", "item.edit.metadata.edit.buttons.edit": "સંપાદિત કરો", + // "item.edit.metadata.edit.buttons.remove": "Remove", "item.edit.metadata.edit.buttons.remove": "દૂર કરો", + // "item.edit.metadata.edit.buttons.undo": "Undo changes", "item.edit.metadata.edit.buttons.undo": "ફેરફારો રદ કરો", + // "item.edit.metadata.edit.buttons.unedit": "Stop editing", "item.edit.metadata.edit.buttons.unedit": "સંપાદન બંધ કરો", + // "item.edit.metadata.edit.buttons.virtual": "This is a virtual metadata value, i.e. a value inherited from a related entity. It can’t be modified directly. Add or remove the corresponding relationship in the \"Relationships\" tab", "item.edit.metadata.edit.buttons.virtual": "આ વર્ચ્યુઅલ મેટાડેટા મૂલ્ય છે, એટલે કે સંબંધિત સત્તાથી વારસામાં મળેલું મૂલ્ય. તેને સીધા રીતે બદલી શકાતું નથી. 'સંબંધો' ટેબમાં સંબંધ ઉમેરો અથવા દૂર કરો", + // "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.", "item.edit.metadata.empty": "આ આઇટમમાં હાલમાં કોઈ મેટાડેટા નથી. મેટાડેટા મૂલ્ય ઉમેરવાનું શરૂ કરવા માટે ઉમેરો પર ક્લિક કરો.", + // "item.edit.metadata.headers.edit": "Edit", "item.edit.metadata.headers.edit": "સંપાદિત કરો", + // "item.edit.metadata.headers.field": "Field", "item.edit.metadata.headers.field": "ફીલ્ડ", + // "item.edit.metadata.headers.language": "Lang", "item.edit.metadata.headers.language": "ભાષા", + // "item.edit.metadata.headers.value": "Value", "item.edit.metadata.headers.value": "મૂલ્ય", + // "item.edit.metadata.metadatafield": "Edit field", "item.edit.metadata.metadatafield": "ફીલ્ડ સંપાદિત કરો", + // "item.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "item.edit.metadata.metadatafield.error": "મેટાડેટા ફીલ્ડ માન્ય કરતી વખતે ભૂલ આવી", + // "item.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "item.edit.metadata.metadatafield.invalid": "કૃપા કરીને માન્ય મેટાડેટા ફીલ્ડ પસંદ કરો", + // "item.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.metadata.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + // "item.edit.metadata.notifications.discarded.title": "Changes discarded", "item.edit.metadata.notifications.discarded.title": "ફેરફારો રદ", + // "item.edit.metadata.notifications.error.title": "An error occurred", "item.edit.metadata.notifications.error.title": "ભૂલ આવી", + // "item.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "item.edit.metadata.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", + // "item.edit.metadata.notifications.invalid.title": "Metadata invalid", "item.edit.metadata.notifications.invalid.title": "મેટાડેટા અમાન્ય", + // "item.edit.metadata.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.metadata.notifications.outdated.content": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", + // "item.edit.metadata.notifications.outdated.title": "Changes outdated", "item.edit.metadata.notifications.outdated.title": "ફેરફારો જૂના છે", + // "item.edit.metadata.notifications.saved.content": "Your changes to this item's metadata were saved.", "item.edit.metadata.notifications.saved.content": "આ આઇટમના મેટાડેટા માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", + // "item.edit.metadata.notifications.saved.title": "Metadata saved", "item.edit.metadata.notifications.saved.title": "મેટાડેટા સાચવ્યા", + // "item.edit.metadata.reinstate-button": "Undo", "item.edit.metadata.reinstate-button": "Undo", + // "item.edit.metadata.reset-order-button": "Undo reorder", "item.edit.metadata.reset-order-button": "ફરીથી ક્રમમાં ગોઠવવું Undo", + // "item.edit.metadata.save-button": "Save", "item.edit.metadata.save-button": "સાચવો", - "item.edit.metadata.authority.label": "અધિકૃતતા: ", + // "item.edit.metadata.authority.label": "Authority: ", + // TODO New key - Add a translation + "item.edit.metadata.authority.label": "Authority: ", + // "item.edit.metadata.edit.buttons.open-authority-edition": "Unlock the authority key value for manual editing", "item.edit.metadata.edit.buttons.open-authority-edition": "મેન્યુઅલ સંપાદન માટે અધિકૃતતા કી મૂલ્યને અનલૉક કરો", + // "item.edit.metadata.edit.buttons.close-authority-edition": "Lock the authority key value for manual editing", "item.edit.metadata.edit.buttons.close-authority-edition": "મેન્યુઅલ સંપાદન માટે અધિકૃતતા કી મૂલ્યને લૉક કરો", + // "item.edit.modify.overview.field": "Field", "item.edit.modify.overview.field": "ફીલ્ડ", + // "item.edit.modify.overview.language": "Language", "item.edit.modify.overview.language": "ભાષા", + // "item.edit.modify.overview.value": "Value", "item.edit.modify.overview.value": "મૂલ્ય", + // "item.edit.move.cancel": "Back", "item.edit.move.cancel": "પાછા", + // "item.edit.move.save-button": "Save", "item.edit.move.save-button": "સાચવો", + // "item.edit.move.discard-button": "Discard", "item.edit.move.discard-button": "રદ કરો", + // "item.edit.move.description": "Select the collection you wish to move this item to. To narrow down the list of displayed collections, you can enter a search query in the box.", "item.edit.move.description": "આઇટમ ખસેડવા માટે તમે જે સંગ્રહમાં ખસેડવા માંગો છો તે પસંદ કરો. બતાવેલ સંગ્રહોની યાદી સંકોચવા માટે, તમે બોક્સમાં શોધ ક્વેરી દાખલ કરી શકો છો.", + // "item.edit.move.error": "An error occurred when attempting to move the item", "item.edit.move.error": "આઇટમ ખસેડવાનો પ્રયાસ કરતી વખતે ભૂલ આવી", - "item.edit.move.head": "આઇટમ ખસેડો: {{id}}", + // "item.edit.move.head": "Move item: {{id}}", + // TODO New key - Add a translation + "item.edit.move.head": "Move item: {{id}}", + // "item.edit.move.inheritpolicies.checkbox": "Inherit policies", "item.edit.move.inheritpolicies.checkbox": "પોલિસી વારસામાં મેળવો", + // "item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection", "item.edit.move.inheritpolicies.description": "લક્ષ્ય સંગ્રહની ડિફોલ્ટ પોલિસી વારસામાં મેળવો", - "item.edit.move.inheritpolicies.tooltip": "ચેતવણી: સક્ષમ હોવા પર, આઇટમ અને આઇટમ સાથે સંકળાયેલી કોઈપણ ફાઇલો માટેની વાંચન ઍક્સેસ પોલિસી લક્ષ્ય સંગ્રહની ડિફોલ્ટ વાંચન ઍક્સેસ પોલિસી દ્વારા બદલવામાં આવશે. આ પાછું લાવી શકાતું નથી.", + // "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + // TODO New key - Add a translation + "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + // "item.edit.move.move": "Move", "item.edit.move.move": "ખસેડો", + // "item.edit.move.processing": "Moving...", "item.edit.move.processing": "ખસેડી રહ્યા છે...", + // "item.edit.move.search.placeholder": "Enter a search query to look for collections", "item.edit.move.search.placeholder": "સંગ્રહો શોધવા માટે શોધ ક્વેરી દાખલ કરો", + // "item.edit.move.success": "The item has been moved successfully", "item.edit.move.success": "આ આઇટમ સફળતાપૂર્વક ખસેડવામાં આવ્યું છે", + // "item.edit.move.title": "Move item", "item.edit.move.title": "આઇટમ ખસેડો", + // "item.edit.private.cancel": "Cancel", "item.edit.private.cancel": "રદ કરો", + // "item.edit.private.confirm": "Make it non-discoverable", "item.edit.private.confirm": "તેને નોન-ડિસ્કવરેબલ બનાવો", + // "item.edit.private.description": "Are you sure this item should be made non-discoverable in the archive?", "item.edit.private.description": "શું તમે ખાતરી કરો છો કે આ આઇટમ આર્કાઇવમાં નોન-ડિસ્કવરેબલ બનાવવું જોઈએ?", + // "item.edit.private.error": "An error occurred while making the item non-discoverable", "item.edit.private.error": "આ આઇટમને નોન-ડિસ્કવરેબલ બનાવતી વખતે એક ભૂલ આવી", - "item.edit.private.header": "આઇટમ નોન-ડિસ્કવરેબલ બનાવો: {{ id }}", + // "item.edit.private.header": "Make item non-discoverable: {{ id }}", + // TODO New key - Add a translation + "item.edit.private.header": "Make item non-discoverable: {{ id }}", + // "item.edit.private.success": "The item is now non-discoverable", "item.edit.private.success": "આ આઇટમ હવે નોન-ડિસ્કવરેબલ છે", + // "item.edit.public.cancel": "Cancel", "item.edit.public.cancel": "રદ કરો", + // "item.edit.public.confirm": "Make it discoverable", "item.edit.public.confirm": "તેને ડિસ્કવરેબલ બનાવો", + // "item.edit.public.description": "Are you sure this item should be made discoverable in the archive?", "item.edit.public.description": "શું તમે ખાતરી કરો છો કે આ આઇટમ આર્કાઇવમાં ડિસ્કવરેબલ બનાવવું જોઈએ?", + // "item.edit.public.error": "An error occurred while making the item discoverable", "item.edit.public.error": "આ આઇટમને ડિસ્કવરેબલ બનાવતી વખતે એક ભૂલ આવી", - "item.edit.public.header": "આઇટમ ડિસ્કવરેબલ બનાવો: {{ id }}", + // "item.edit.public.header": "Make item discoverable: {{ id }}", + // TODO New key - Add a translation + "item.edit.public.header": "Make item discoverable: {{ id }}", + // "item.edit.public.success": "The item is now discoverable", "item.edit.public.success": "આ આઇટમ હવે ડિસ્કવરેબલ છે", + // "item.edit.reinstate.cancel": "Cancel", "item.edit.reinstate.cancel": "રદ કરો", + // "item.edit.reinstate.confirm": "Reinstate", "item.edit.reinstate.confirm": "ફરી સ્થાપિત કરો", + // "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?", "item.edit.reinstate.description": "શું તમે ખાતરી કરો છો કે આ આઇટમને આર્કાઇવમાં ફરી સ્થાપિત કરવું જોઈએ?", + // "item.edit.reinstate.error": "An error occurred while reinstating the item", "item.edit.reinstate.error": "આ આઇટમને ફરી સ્થાપિત કરતી વખતે એક ભૂલ આવી", - "item.edit.reinstate.header": "આઇટમ ફરી સ્થાપિત કરો: {{ id }}", + // "item.edit.reinstate.header": "Reinstate item: {{ id }}", + // TODO New key - Add a translation + "item.edit.reinstate.header": "Reinstate item: {{ id }}", + // "item.edit.reinstate.success": "The item was reinstated successfully", "item.edit.reinstate.success": "આ આઇટમ સફળતાપૂર્વક ફરી સ્થાપિત થયું", + // "item.edit.relationships.discard-button": "Discard", "item.edit.relationships.discard-button": "રદ કરો", + // "item.edit.relationships.edit.buttons.add": "Add", "item.edit.relationships.edit.buttons.add": "ઉમેરો", + // "item.edit.relationships.edit.buttons.remove": "Remove", "item.edit.relationships.edit.buttons.remove": "દૂર કરો", + // "item.edit.relationships.edit.buttons.undo": "Undo changes", "item.edit.relationships.edit.buttons.undo": "ફેરફારો રદ કરો", + // "item.edit.relationships.no-relationships": "No relationships", "item.edit.relationships.no-relationships": "કોઈ સંબંધો નથી", + // "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.relationships.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા હતા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + // "item.edit.relationships.notifications.discarded.title": "Changes discarded", "item.edit.relationships.notifications.discarded.title": "ફેરફારો રદ", + // "item.edit.relationships.notifications.failed.title": "Error editing relationships", "item.edit.relationships.notifications.failed.title": "સંબંધો સંપાદિત કરતી વખતે ભૂલ", + // "item.edit.relationships.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.relationships.notifications.outdated.content": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", + // "item.edit.relationships.notifications.outdated.title": "Changes outdated", "item.edit.relationships.notifications.outdated.title": "ફેરફારો જૂના", + // "item.edit.relationships.notifications.saved.content": "Your changes to this item's relationships were saved.", "item.edit.relationships.notifications.saved.content": "આ આઇટમના સંબંધો માટેના તમારા ફેરફારો સાચવવામાં આવ્યા હતા.", + // "item.edit.relationships.notifications.saved.title": "Relationships saved", "item.edit.relationships.notifications.saved.title": "સંબંધો સાચવ્યા", + // "item.edit.relationships.reinstate-button": "Undo", "item.edit.relationships.reinstate-button": "Undo", + // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "સાચવો", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", "item.edit.relationships.no-entity-type": "આ આઇટમ માટે સંબંધો સક્ષમ કરવા માટે 'dspace.entity.type' મેટાડેટા ઉમેરો", + // "item.edit.return": "Back", "item.edit.return": "પાછા", + // "item.edit.tabs.bitstreams.head": "Bitstreams", "item.edit.tabs.bitstreams.head": "બિટસ્ટ્રીમ્સ", + // "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams", "item.edit.tabs.bitstreams.title": "આઇટમ સંપાદન - બિટસ્ટ્રીમ્સ", + // "item.edit.tabs.curate.head": "Curate", "item.edit.tabs.curate.head": "ક્યુરેટ", + // "item.edit.tabs.curate.title": "Item Edit - Curate", "item.edit.tabs.curate.title": "આઇટમ ક્યુરેટ કરો: {{item}}", + // "item.edit.curate.title": "Curate Item: {{item}}", + // TODO New key - Add a translation + "item.edit.curate.title": "Curate Item: {{item}}", + + // "item.edit.tabs.access-control.head": "Access Control", "item.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", + // "item.edit.tabs.access-control.title": "Item Edit - Access Control", "item.edit.tabs.access-control.title": "આઇટમ સંપાદન - ઍક્સેસ કંટ્રોલ", + // "item.edit.tabs.metadata.head": "Metadata", "item.edit.tabs.metadata.head": "મેટાડેટા", + // "item.edit.tabs.metadata.title": "Item Edit - Metadata", "item.edit.tabs.metadata.title": "આઇટમ સંપાદન - મેટાડેટા", + // "item.edit.tabs.relationships.head": "Relationships", "item.edit.tabs.relationships.head": "સંબંધો", + // "item.edit.tabs.relationships.title": "Item Edit - Relationships", "item.edit.tabs.relationships.title": "આઇટમ સંપાદન - સંબંધો", + // "item.edit.tabs.status.buttons.authorizations.button": "Authorizations...", "item.edit.tabs.status.buttons.authorizations.button": "અધિકૃતતાઓ...", + // "item.edit.tabs.status.buttons.authorizations.label": "Edit item's authorization policies", "item.edit.tabs.status.buttons.authorizations.label": "આઇટમની અધિકૃતતા નીતિઓ સંપાદિત કરો", + // "item.edit.tabs.status.buttons.delete.button": "Permanently delete", "item.edit.tabs.status.buttons.delete.button": "કાયમ માટે કાઢી નાખો", + // "item.edit.tabs.status.buttons.delete.label": "Completely expunge item", "item.edit.tabs.status.buttons.delete.label": "આઇટમને સંપૂર્ણપણે કાઢી નાખો", + // "item.edit.tabs.status.buttons.mappedCollections.button": "Mapped collections", "item.edit.tabs.status.buttons.mappedCollections.button": "મૅપ કરેલ સંગ્રહો", + // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "મૅપ કરેલ સંગ્રહો મેનેજ કરો", + // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", "item.edit.tabs.status.buttons.move.button": "આ આઇટમને અલગ સંગ્રહમાં ખસેડો", + // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", "item.edit.tabs.status.buttons.move.label": "આઇટમને બીજા સંગ્રહમાં ખસેડો", + // "item.edit.tabs.status.buttons.private.button": "Make it non-discoverable...", "item.edit.tabs.status.buttons.private.button": "તેને નોન-ડિસ્કવરેબલ બનાવો...", + // "item.edit.tabs.status.buttons.private.label": "Make item non-discoverable", "item.edit.tabs.status.buttons.private.label": "આઇટમને નોન-ડિસ્કવરેબલ બનાવો", + // "item.edit.tabs.status.buttons.public.button": "Make it discoverable...", "item.edit.tabs.status.buttons.public.button": "તેને ડિસ્કવરેબલ બનાવો...", + // "item.edit.tabs.status.buttons.public.label": "Make item discoverable", "item.edit.tabs.status.buttons.public.label": "આઇટમને ડિસ્કવરેબલ બનાવો", + // "item.edit.tabs.status.buttons.reinstate.button": "Reinstate...", "item.edit.tabs.status.buttons.reinstate.button": "ફરી સ્થાપિત કરો...", + // "item.edit.tabs.status.buttons.reinstate.label": "Reinstate item into the repository", "item.edit.tabs.status.buttons.reinstate.label": "આઇટમને રિપોઝિટરીમાં ફરી સ્થાપિત કરો", + // "item.edit.tabs.status.buttons.unauthorized": "You're not authorized to perform this action", "item.edit.tabs.status.buttons.unauthorized": "તમે આ ક્રિયા કરવા માટે અધિકૃત નથી", + // "item.edit.tabs.status.buttons.withdraw.button": "Withdraw this item", "item.edit.tabs.status.buttons.withdraw.button": "આ આઇટમને પાછું ખેંચો", + // "item.edit.tabs.status.buttons.withdraw.label": "Withdraw item from the repository", "item.edit.tabs.status.buttons.withdraw.label": "આઇટમને રિપોઝિટરીમાંથી પાછું ખેંચો", + // "item.edit.tabs.status.description": "Welcome to the item management page. From here you can withdraw, reinstate, move or delete the item. You may also update or add new metadata / bitstreams on the other tabs.", "item.edit.tabs.status.description": "આઇટમ મેનેજમેન્ટ પેજમાં આપનું સ્વાગત છે. અહીંથી તમે આઇટમને પાછું ખેંચી શકો છો, ફરી સ્થાપિત કરી શકો છો, ખસેડી શકો છો અથવા કાઢી શકો છો. તમે અન્ય ટૅબ પર નવા મેટાડેટા / બિટસ્ટ્રીમ્સને અપડેટ અથવા ઉમેરવા માટે પણ કરી શકો છો.", + // "item.edit.tabs.status.head": "Status", "item.edit.tabs.status.head": "સ્થિતિ", + // "item.edit.tabs.status.labels.handle": "Handle", "item.edit.tabs.status.labels.handle": "હેન્ડલ", + // "item.edit.tabs.status.labels.id": "Item Internal ID", "item.edit.tabs.status.labels.id": "આઇટમ આંતરિક ID", + // "item.edit.tabs.status.labels.itemPage": "Item Page", "item.edit.tabs.status.labels.itemPage": "આઇટમ પેજ", + // "item.edit.tabs.status.labels.lastModified": "Last Modified", "item.edit.tabs.status.labels.lastModified": "છેલ્લે ફેરફાર", + // "item.edit.tabs.status.title": "Item Edit - Status", "item.edit.tabs.status.title": "આઇટમ સંપાદન - સ્થિતિ", + // "item.edit.tabs.versionhistory.head": "Version History", "item.edit.tabs.versionhistory.head": "આવૃત્તિ ઇતિહાસ", + // "item.edit.tabs.versionhistory.title": "Item Edit - Version History", "item.edit.tabs.versionhistory.title": "આઇટમ સંપાદન - આવૃત્તિ ઇતિહાસ", + // "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": "આ વપરાશકર્તા ઇન્ટરફેસમાં નવી આવૃત્તિઓ સંપાદિત કરવી અથવા ઉમેરવી હજી શક્ય નથી.", + // "item.edit.tabs.view.head": "View Item", "item.edit.tabs.view.head": "આઇટમ જુઓ", + // "item.edit.tabs.view.title": "Item Edit - View", "item.edit.tabs.view.title": "આઇટમ સંપાદન - જુઓ", + // "item.edit.withdraw.cancel": "Cancel", "item.edit.withdraw.cancel": "રદ કરો", + // "item.edit.withdraw.confirm": "Withdraw", "item.edit.withdraw.confirm": "પાછું ખેંચો", + // "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?", "item.edit.withdraw.description": "શું તમે ખાતરી કરો છો કે આ આઇટમને આર્કાઇવમાંથી પાછું ખેંચવું જોઈએ?", + // "item.edit.withdraw.error": "An error occurred while withdrawing the item", "item.edit.withdraw.error": "આ આઇટમને પાછું ખેંચતી વખતે એક ભૂલ આવી", - "item.edit.withdraw.header": "આઇટમ પાછું ખેંચો: {{ id }}", + // "item.edit.withdraw.header": "Withdraw item: {{ id }}", + // TODO New key - Add a translation + "item.edit.withdraw.header": "Withdraw item: {{ id }}", + // "item.edit.withdraw.success": "The item was withdrawn successfully", "item.edit.withdraw.success": "આ આઇટમ સફળતાપૂર્વક પાછું ખેંચવામાં આવ્યું", + // "item.orcid.return": "Back", "item.orcid.return": "પાછા", + // "item.listelement.badge": "Item", "item.listelement.badge": "આઇટમ", + // "item.page.description": "Description", "item.page.description": "વર્ણન", + // "item.page.org-unit": "Organizational Unit", + // TODO New key - Add a translation + "item.page.org-unit": "Organizational Unit", + + // "item.page.org-units": "Organizational Units", + // TODO New key - Add a translation + "item.page.org-units": "Organizational Units", + + // "item.page.project": "Research Project", + // TODO New key - Add a translation + "item.page.project": "Research Project", + + // "item.page.projects": "Research Projects", + // TODO New key - Add a translation + "item.page.projects": "Research Projects", + + // "item.page.publication": "Publications", + // TODO New key - Add a translation + "item.page.publication": "Publications", + + // "item.page.publications": "Publications", + // TODO New key - Add a translation + "item.page.publications": "Publications", + + // "item.page.article": "Article", + // TODO New key - Add a translation + "item.page.article": "Article", + + // "item.page.articles": "Articles", + // TODO New key - Add a translation + "item.page.articles": "Articles", + + // "item.page.journal": "Journal", + // TODO New key - Add a translation + "item.page.journal": "Journal", + + // "item.page.journals": "Journals", + // TODO New key - Add a translation + "item.page.journals": "Journals", + + // "item.page.journal-issue": "Journal Issue", + // TODO New key - Add a translation + "item.page.journal-issue": "Journal Issue", + + // "item.page.journal-issues": "Journal Issues", + // TODO New key - Add a translation + "item.page.journal-issues": "Journal Issues", + + // "item.page.journal-volume": "Journal Volume", + // TODO New key - Add a translation + "item.page.journal-volume": "Journal Volume", + + // "item.page.journal-volumes": "Journal Volumes", + // TODO New key - Add a translation + "item.page.journal-volumes": "Journal Volumes", + + // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "જર્નલ ISSN", + // "item.page.journal-title": "Journal Title", "item.page.journal-title": "જર્નલ શીર્ષક", + // "item.page.publisher": "Publisher", "item.page.publisher": "પ્રકાશક", - "item.page.titleprefix": "આઇટમ: ", + // "item.page.titleprefix": "Item: ", + // TODO New key - Add a translation + "item.page.titleprefix": "Item: ", + // "item.page.volume-title": "Volume Title", "item.page.volume-title": "વોલ્યુમ શીર્ષક", + // "item.page.dcterms.spatial": "Geospatial point", "item.page.dcterms.spatial": "ભૌગોલિક બિંદુ", + // "item.search.results.head": "Item Search Results", "item.search.results.head": "આઇટમ શોધ પરિણામો", + // "item.search.title": "Item Search", "item.search.title": "આઇટમ શોધ", + // "item.truncatable-part.show-more": "Show more", "item.truncatable-part.show-more": "વધુ બતાવો", + // "item.truncatable-part.show-less": "Collapse", "item.truncatable-part.show-less": "સંકોચો", + // "item.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "item.qa-event-notification.check.notification-info": "તમારા ખાતા સાથે સંબંધિત {{num}} પેન્ડિંગ સૂચનો છે", + // "item.qa-event-notification-info.check.button": "View", "item.qa-event-notification-info.check.button": "જુઓ", + // "mydspace.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "mydspace.qa-event-notification.check.notification-info": "તમારા ખાતા સાથે સંબંધિત {{num}} પેન્ડિંગ સૂચનો છે", + // "mydspace.qa-event-notification-info.check.button": "View", "mydspace.qa-event-notification-info.check.button": "જુઓ", + // "workflow-item.search.result.delete-supervision.modal.header": "Delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.header": "સુપરવિઝન ઓર્ડર કાઢી નાખો", + // "workflow-item.search.result.delete-supervision.modal.info": "Are you sure you want to delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.info": "શું તમે સુપરવિઝન ઓર્ડર કાઢી નાખવા માંગો છો?", + // "workflow-item.search.result.delete-supervision.modal.cancel": "Cancel", "workflow-item.search.result.delete-supervision.modal.cancel": "રદ કરો", + // "workflow-item.search.result.delete-supervision.modal.confirm": "Delete", "workflow-item.search.result.delete-supervision.modal.confirm": "કાઢી નાખો", + // "workflow-item.search.result.notification.deleted.success": "Successfully deleted supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.success": "સુપરવિઝન ઓર્ડર સફળતાપૂર્વક કાઢી નાખ્યો \"{{name}}\"", + // "workflow-item.search.result.notification.deleted.failure": "Failed to delete supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.failure": "સુપરવિઝન ઓર્ડર કાઢી શક્યો નહીં \"{{name}}\"", - "workflow-item.search.result.list.element.supervised-by": "સુપરવિઝન દ્વારા:", + // "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + // TODO New key - Add a translation + "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + // "workflow-item.search.result.list.element.supervised.remove-tooltip": "Remove supervision group", "workflow-item.search.result.list.element.supervised.remove-tooltip": "સુપરવિઝન જૂથ દૂર કરો", + // "confidence.indicator.help-text.accepted": "This authority value has been confirmed as accurate by an interactive user", "confidence.indicator.help-text.accepted": "આ અધિકૃત મૂલ્યને ઇન્ટરેક્ટિવ વપરાશકર્તા દ્વારા સચોટ તરીકે પુષ્ટિ આપવામાં આવી છે", + // "confidence.indicator.help-text.uncertain": "Value is singular and valid but has not been seen and accepted by a human so it is still uncertain", "confidence.indicator.help-text.uncertain": "મૂલ્ય એકલ અને માન્ય છે પરંતુ માનવ દ્વારા જોવામાં અને સ્વીકારવામાં આવ્યું નથી તેથી તે હજી પણ અનિશ્ચિત છે", + // "confidence.indicator.help-text.ambiguous": "There are multiple matching authority values of equal validity", "confidence.indicator.help-text.ambiguous": "સમાન માન્યતાના અનેક મેળ ખાતા અધિકૃત મૂલ્યો છે", + // "confidence.indicator.help-text.notfound": "There are no matching answers in the authority", "confidence.indicator.help-text.notfound": "અધિકૃતમાં કોઈ મેળ ખાતા જવાબો નથી", + // "confidence.indicator.help-text.failed": "The authority encountered an internal failure", "confidence.indicator.help-text.failed": "અધિકૃત આંતરિક નિષ્ફળતા અનુભવી", + // "confidence.indicator.help-text.rejected": "The authority recommends this submission be rejected", "confidence.indicator.help-text.rejected": "અધિકૃત આ સબમિશનને નકારી કાઢવાની ભલામણ કરે છે", + // "confidence.indicator.help-text.novalue": "No reasonable confidence value was returned from the authority", "confidence.indicator.help-text.novalue": "અધિકૃતમાંથી કોઈ યોગ્ય વિશ્વાસ મૂલ્ય પરત કરવામાં આવ્યું નથી", + // "confidence.indicator.help-text.unset": "Confidence was never recorded for this value", "confidence.indicator.help-text.unset": "આ મૂલ્ય માટે વિશ્વાસ ક્યારેય નોંધાયો નથી", + // "confidence.indicator.help-text.unknown": "Unknown confidence value", "confidence.indicator.help-text.unknown": "અજ્ઞાત વિશ્વાસ મૂલ્ય", + // "item.page.abstract": "Abstract", "item.page.abstract": "અભ્યાસ", + // "item.page.author": "Author", "item.page.author": "લેખકો", + // "item.page.authors": "Authors", + // TODO New key - Add a translation + "item.page.authors": "Authors", + + // "item.page.citation": "Citation", "item.page.citation": "ઉલ્લેખ", + // "item.page.collections": "Collections", "item.page.collections": "સંગ્રહો", + // "item.page.collections.loading": "Loading...", "item.page.collections.loading": "લોડ થઈ રહ્યું છે...", + // "item.page.collections.load-more": "Load more", "item.page.collections.load-more": "વધુ લોડ કરો", + // "item.page.date": "Date", "item.page.date": "તારીખ", + // "item.page.edit": "Edit this item", "item.page.edit": "આ આઇટમ સંપાદિત કરો", + // "item.page.files": "Files", "item.page.files": "ફાઇલો", - "item.page.filesection.description": "વર્ણન:", + // "item.page.filesection.description": "Description:", + // TODO New key - Add a translation + "item.page.filesection.description": "Description:", + // "item.page.filesection.download": "Download", "item.page.filesection.download": "ડાઉનલોડ", - "item.page.filesection.format": "ફોર્મેટ:", + // "item.page.filesection.format": "Format:", + // TODO New key - Add a translation + "item.page.filesection.format": "Format:", - "item.page.filesection.name": "નામ:", + // "item.page.filesection.name": "Name:", + // TODO New key - Add a translation + "item.page.filesection.name": "Name:", - "item.page.filesection.size": "કદ:", + // "item.page.filesection.size": "Size:", + // TODO New key - Add a translation + "item.page.filesection.size": "Size:", + // "item.page.journal.search.title": "Articles in this journal", "item.page.journal.search.title": "આ જર્નલમાં લેખો", + // "item.page.link.full": "Full item page", "item.page.link.full": "સંપૂર્ણ આઇટમ પેજ", + // "item.page.link.simple": "Simple item page", "item.page.link.simple": "સરળ આઇટમ પેજ", + // "item.page.options": "Options", "item.page.options": "વિકલ્પો", + // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", + // "item.page.orcid.tooltip": "Open ORCID setting page", "item.page.orcid.tooltip": "ORCID સેટિંગ પેજ ખોલો", + // "item.page.person.search.title": "Articles by this author", "item.page.person.search.title": "આ લેખક દ્વારા લેખો", + // "item.page.related-items.view-more": "Show {{ amount }} more", "item.page.related-items.view-more": "{{ amount }} વધુ બતાવો", + // "item.page.related-items.view-less": "Hide last {{ amount }}", "item.page.related-items.view-less": "છેલ્લા {{ amount }} છુપાવો", + // "item.page.relationships.isAuthorOfPublication": "Publications", "item.page.relationships.isAuthorOfPublication": "પ્રકાશનો લેખક છે", + // "item.page.relationships.isJournalOfPublication": "Publications", "item.page.relationships.isJournalOfPublication": "પ્રકાશનો જર્નલ છે", + // "item.page.relationships.isOrgUnitOfPerson": "Authors", "item.page.relationships.isOrgUnitOfPerson": "લેખકો", + // "item.page.relationships.isOrgUnitOfProject": "Research Projects", "item.page.relationships.isOrgUnitOfProject": "શોધ પ્રોજેક્ટ્સ", + // "item.page.subject": "Keywords", "item.page.subject": "કીવર્ડ્સ", + // "item.page.uri": "URI", "item.page.uri": "URI", + // "item.page.bitstreams.view-more": "Show more", "item.page.bitstreams.view-more": "વધુ બતાવો", + // "item.page.bitstreams.collapse": "Collapse", "item.page.bitstreams.collapse": "સંકોચો", + // "item.page.bitstreams.primary": "Primary", "item.page.bitstreams.primary": "પ્રાથમિક", + // "item.page.filesection.original.bundle": "Original bundle", "item.page.filesection.original.bundle": "મૂળ બંડલ", + // "item.page.filesection.license.bundle": "License bundle", "item.page.filesection.license.bundle": "લાઇસન્સ બંડલ", + // "item.page.return": "Back", "item.page.return": "પાછા", + // "item.page.version.create": "Create new version", "item.page.version.create": "નવી આવૃત્તિ બનાવો", + // "item.page.withdrawn": "Request a withdrawal for this item", "item.page.withdrawn": "આ આઇટમ માટે વિથડ્રૉલ વિનંતી કરો", + // "item.page.reinstate": "Request reinstatement", "item.page.reinstate": "ફરી સ્થાપિત કરવાની વિનંતી કરો", + // "item.page.version.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.page.version.hasDraft": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", + // "item.page.claim.button": "Claim", "item.page.claim.button": "દાવો", + // "item.page.claim.tooltip": "Claim this item as profile", "item.page.claim.tooltip": "આ આઇટમને પ્રોફાઇલ તરીકે દાવો", + // "item.page.image.alt.ROR": "ROR logo", "item.page.image.alt.ROR": "ROR લોગો", - "item.preview.dc.identifier.uri": "પરિચયકર્તા:", + // "item.preview.dc.identifier.uri": "Identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier.uri": "Identifier:", - "item.preview.dc.contributor.author": "લેખકો:", + // "item.preview.dc.contributor.author": "Authors:", + // TODO New key - Add a translation + "item.preview.dc.contributor.author": "Authors:", - "item.preview.dc.date.issued": "પ્રકાશિત તારીખ:", + // "item.preview.dc.date.issued": "Published date:", + // TODO New key - Add a translation + "item.preview.dc.date.issued": "Published date:", + // "item.preview.dc.description": "Description:", + // TODO Source message changed - Revise the translation "item.preview.dc.description": "વર્ણન:", - "item.preview.dc.description.abstract": "અભ્યાસ:", + // "item.preview.dc.description.abstract": "Abstract:", + // TODO New key - Add a translation + "item.preview.dc.description.abstract": "Abstract:", - "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા:", + // "item.preview.dc.identifier.other": "Other identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier.other": "Other identifier:", - "item.preview.dc.language.iso": "ભાષા:", + // "item.preview.dc.language.iso": "Language:", + // TODO New key - Add a translation + "item.preview.dc.language.iso": "Language:", - "item.preview.dc.subject": "વિષયો:", + // "item.preview.dc.subject": "Subjects:", + // TODO New key - Add a translation + "item.preview.dc.subject": "Subjects:", - "item.preview.dc.title": "શીર્ષક:", + // "item.preview.dc.title": "Title:", + // TODO New key - Add a translation + "item.preview.dc.title": "Title:", - "item.preview.dc.type": "પ્રકાર:", + // "item.preview.dc.type": "Type:", + // TODO New key - Add a translation + "item.preview.dc.type": "Type:", + // "item.preview.oaire.version": "Version", "item.preview.oaire.version": "આવૃત્તિ", + // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "મુદ્દો", + // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "વોલ્યુમ", + // "item.preview.oaire.citation.title": "Citation container", "item.preview.oaire.citation.title": "ઉલ્લેખ કન્ટેનર", + // "item.preview.oaire.citation.startPage": "Citation start page", "item.preview.oaire.citation.startPage": "ઉલ્લેખ પ્રારંભ પૃષ્ઠ", + // "item.preview.oaire.citation.endPage": "Citation end page", "item.preview.oaire.citation.endPage": "ઉલ્લેખ અંત પૃષ્ઠ", + // "item.preview.dc.relation.hasversion": "Has version", "item.preview.dc.relation.hasversion": "આવૃત્તિ છે", + // "item.preview.dc.relation.ispartofseries": "Is part of series", "item.preview.dc.relation.ispartofseries": "શ્રેણીનો ભાગ છે", + // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "હક્કો", - "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા", + // "item.preview.dc.identifier.other": "Other Identifier", + "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા:", + // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", + // "item.preview.dc.identifier.isbn": "ISBN", "item.preview.dc.identifier.isbn": "ISBN", - "item.preview.dc.identifier": "પરિચયકર્તા:", + // "item.preview.dc.identifier": "Identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier": "Identifier:", + // "item.preview.dc.relation.ispartof": "Journal or Series", "item.preview.dc.relation.ispartof": "જર્નલ અથવા શ્રેણી", + // "item.preview.dc.identifier.doi": "DOI", "item.preview.dc.identifier.doi": "DOI", - "item.preview.dc.publisher": "પ્રકાશક:", + // "item.preview.dc.publisher": "Publisher:", + // TODO New key - Add a translation + "item.preview.dc.publisher": "Publisher:", - "item.preview.person.familyName": "અટક:", + // "item.preview.person.familyName": "Surname:", + // TODO New key - Add a translation + "item.preview.person.familyName": "Surname:", - "item.preview.person.givenName": "નામ:", + // "item.preview.person.givenName": "Name:", + // TODO New key - Add a translation + "item.preview.person.givenName": "Name:", + // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", - "item.preview.person.affiliation.name": "સંબંધો:", + // "item.preview.person.affiliation.name": "Affiliations:", + // TODO New key - Add a translation + "item.preview.person.affiliation.name": "Affiliations:", - "item.preview.project.funder.name": "ફંડર:", + // "item.preview.project.funder.name": "Funder:", + // TODO New key - Add a translation + "item.preview.project.funder.name": "Funder:", - "item.preview.project.funder.identifier": "ફંડર પરિચયકર્તા:", + // "item.preview.project.funder.identifier": "Funder Identifier:", + // TODO New key - Add a translation + "item.preview.project.funder.identifier": "Funder Identifier:", + // "item.preview.project.investigator": "Project Investigator", "item.preview.project.investigator": "પ્રોજેક્ટ ઇન્વેસ્ટિગેટર", - "item.preview.oaire.awardNumber": "ફંડિંગ ID:", + // "item.preview.oaire.awardNumber": "Funding ID:", + // TODO New key - Add a translation + "item.preview.oaire.awardNumber": "Funding ID:", - "item.preview.dc.title.alternative": "અન્ય નામ:", + // "item.preview.dc.title.alternative": "Acronym:", + // TODO New key - Add a translation + "item.preview.dc.title.alternative": "Acronym:", - "item.preview.dc.coverage.spatial": "ક્ષેત્રાધિકાર:", + // "item.preview.dc.coverage.spatial": "Jurisdiction:", + // TODO New key - Add a translation + "item.preview.dc.coverage.spatial": "Jurisdiction:", - "item.preview.oaire.fundingStream": "ફંડિંગ સ્ટ્રીમ:", + // "item.preview.oaire.fundingStream": "Funding Stream:", + // TODO New key - Add a translation + "item.preview.oaire.fundingStream": "Funding Stream:", + // "item.preview.oairecerif.identifier.url": "URL", "item.preview.oairecerif.identifier.url": "URL", + // "item.preview.organization.address.addressCountry": "Country", "item.preview.organization.address.addressCountry": "દેશ", + // "item.preview.organization.foundingDate": "Founding Date", "item.preview.organization.foundingDate": "સ્થાપના તારીખ", + // "item.preview.organization.identifier.crossrefid": "Crossref ID", "item.preview.organization.identifier.crossrefid": "ક્રોસરેફ ID", + // "item.preview.organization.identifier.isni": "ISNI", "item.preview.organization.identifier.isni": "ISNI", + // "item.preview.organization.identifier.ror": "ROR ID", "item.preview.organization.identifier.ror": "ROR ID", + // "item.preview.organization.legalName": "Legal Name", "item.preview.organization.legalName": "કાનૂની નામ", - "item.preview.dspace.entity.type": "સત્તા પ્રકાર:", + // "item.preview.dspace.entity.type": "Entity Type:", + // TODO New key - Add a translation + "item.preview.dspace.entity.type": "Entity Type:", + // "item.preview.creativework.publisher": "Publisher", "item.preview.creativework.publisher": "પ્રકાશક", + // "item.preview.creativeworkseries.issn": "ISSN", "item.preview.creativeworkseries.issn": "ISSN", + // "item.preview.dc.identifier.issn": "ISSN", "item.preview.dc.identifier.issn": "ISSN", + // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "ઓપનએલેક્સ પરિચયકર્તા", - "item.preview.dc.description": "વર્ણન", + // "item.preview.dc.description": "Description", + // TODO Source message changed - Revise the translation + "item.preview.dc.description": "વર્ણન:", + // "item.select.confirm": "Confirm selected", "item.select.confirm": "પસંદ કરેલને પુષ્ટિ કરો", + // "item.select.empty": "No items to show", "item.select.empty": "બતાવા માટે કોઈ આઇટમ નથી", + // "item.select.table.selected": "Selected items", "item.select.table.selected": "પસંદ કરેલ આઇટમ્સ", + // "item.select.table.select": "Select item", "item.select.table.select": "આઇટમ પસંદ કરો", + // "item.select.table.deselect": "Deselect item", "item.select.table.deselect": "આઇટમ પસંદ ન કરો", + // "item.select.table.author": "Author", "item.select.table.author": "લેખક", + // "item.select.table.collection": "Collection", "item.select.table.collection": "સંગ્રહ", + // "item.select.table.title": "Title", "item.select.table.title": "શીર્ષક", + // "item.version.history.empty": "There are no other versions for this item yet.", "item.version.history.empty": "આ આઇટમ માટે હજી સુધી અન્ય આવૃત્તિઓ નથી.", + // "item.version.history.head": "Version History", "item.version.history.head": "આવૃત્તિ ઇતિહાસ", + // "item.version.history.return": "Back", "item.version.history.return": "પાછા", + // "item.version.history.selected": "Selected version", "item.version.history.selected": "પસંદ કરેલ આવૃત્તિ", + // "item.version.history.selected.alert": "You are currently viewing version {{version}} of the item.", "item.version.history.selected.alert": "તમે હાલમાં આઇટમની આવૃત્તિ {{version}} જોઈ રહ્યા છો.", + // "item.version.history.table.version": "Version", "item.version.history.table.version": "આવૃત્તિ", + // "item.version.history.table.item": "Item", "item.version.history.table.item": "આઇટમ", + // "item.version.history.table.editor": "Editor", "item.version.history.table.editor": "સંપાદક", + // "item.version.history.table.date": "Date", "item.version.history.table.date": "તારીખ", + // "item.version.history.table.summary": "Summary", "item.version.history.table.summary": "સારાંશ", + // "item.version.history.table.workspaceItem": "Workspace item", "item.version.history.table.workspaceItem": "વર્કસ્પેસ આઇટમ", + // "item.version.history.table.workflowItem": "Workflow item", "item.version.history.table.workflowItem": "વર્કફ્લો આઇટમ", + // "item.version.history.table.actions": "Action", "item.version.history.table.actions": "ક્રિયા", + // "item.version.history.table.action.editWorkspaceItem": "Edit workspace item", "item.version.history.table.action.editWorkspaceItem": "વર્કસ્પેસ આઇટમ સંપાદિત કરો", + // "item.version.history.table.action.editSummary": "Edit summary", "item.version.history.table.action.editSummary": "સારાંશ સંપાદિત કરો", + // "item.version.history.table.action.saveSummary": "Save summary edits", "item.version.history.table.action.saveSummary": "સારાંશ ફેરફારો સાચવો", + // "item.version.history.table.action.discardSummary": "Discard summary edits", "item.version.history.table.action.discardSummary": "સારાંશ ફેરફારો રદ કરો", + // "item.version.history.table.action.newVersion": "Create new version from this one", "item.version.history.table.action.newVersion": "આમાંથી નવી આવૃત્તિ બનાવો", + // "item.version.history.table.action.deleteVersion": "Delete version", "item.version.history.table.action.deleteVersion": "આવૃત્તિ કાઢી નાખો", + // "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.history.table.action.hasDraft": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", + // "item.version.notice": "This is not the latest version of this item. The latest version can be found here.", "item.version.notice": "આ આઇટમની નવીનતમ આવૃત્તિ નથી. નવીનતમ આવૃત્તિ અહીં મળી શકે છે અહીં.", + // "item.version.create.modal.header": "New version", "item.version.create.modal.header": "નવી આવૃત્તિ", + // "item.qa.withdrawn.modal.header": "Request withdrawal", "item.qa.withdrawn.modal.header": "વિથડ્રૉલ વિનંતી", + // "item.qa.reinstate.modal.header": "Request reinstate", "item.qa.reinstate.modal.header": "ફરી સ્થાપિત કરવાની વિનંતી", + // "item.qa.reinstate.create.modal.header": "New version", "item.qa.reinstate.create.modal.header": "નવી આવૃત્તિ", + // "item.version.create.modal.text": "Create a new version for this item", "item.version.create.modal.text": "આ આઇટમ માટે નવી આવૃત્તિ બનાવો", + // "item.version.create.modal.text.startingFrom": "starting from version {{version}}", "item.version.create.modal.text.startingFrom": "આવૃત્તિ {{version}} થી શરૂ", + // "item.version.create.modal.button.confirm": "Create", "item.version.create.modal.button.confirm": "બનાવો", + // "item.version.create.modal.button.confirm.tooltip": "Create new version", "item.version.create.modal.button.confirm.tooltip": "નવી આવૃત્તિ બનાવો", + // "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "Send request", "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "વિનંતી મોકલો", + // "qa-withdrown.create.modal.button.confirm": "Withdraw", "qa-withdrown.create.modal.button.confirm": "વિથડ્રૉલ", + // "qa-reinstate.create.modal.button.confirm": "Reinstate", "qa-reinstate.create.modal.button.confirm": "ફરી સ્થાપિત કરો", + // "item.version.create.modal.button.cancel": "Cancel", "item.version.create.modal.button.cancel": "રદ કરો", + // "item.qa.withdrawn-reinstate.create.modal.button.cancel": "Cancel", "item.qa.withdrawn-reinstate.create.modal.button.cancel": "રદ કરો", + // "item.version.create.modal.button.cancel.tooltip": "Do not create new version", "item.version.create.modal.button.cancel.tooltip": "નવી આવૃત્તિ ન બનાવો", + // "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "Do not send request", "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "વિનંતી ન મોકલો", + // "item.version.create.modal.form.summary.label": "Summary", "item.version.create.modal.form.summary.label": "સારાંશ", + // "qa-withdrawn.create.modal.form.summary.label": "You are requesting to withdraw this item", "qa-withdrawn.create.modal.form.summary.label": "તમે આ આઇટમને પાછું ખેંચવાની વિનંતી કરી રહ્યા છો", + // "qa-withdrawn.create.modal.form.summary2.label": "Please enter the reason for the withdrawal", "qa-withdrawn.create.modal.form.summary2.label": "કૃપા કરીને વિથડ્રૉલ માટેનું કારણ દાખલ કરો", + // "qa-reinstate.create.modal.form.summary.label": "You are requesting to reinstate this item", "qa-reinstate.create.modal.form.summary.label": "તમે આ આઇટમને ફરી સ્થાપિત કરવાની વિનંતી કરી રહ્યા છો", + // "qa-reinstate.create.modal.form.summary2.label": "Please enter the reason for the reinstatment", "qa-reinstate.create.modal.form.summary2.label": "કૃપા કરીને ફરી સ્થાપન માટેનું કારણ દાખલ કરો", + // "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version", "item.version.create.modal.form.summary.placeholder": "નવી આવૃત્તિ માટેનો સારાંશ દાખલ કરો", + // "qa-withdrown.modal.form.summary.placeholder": "Enter the reason for the withdrawal", "qa-withdrown.modal.form.summary.placeholder": "વિથડ્રૉલ માટેનું કારણ દાખલ કરો", + // "qa-reinstate.modal.form.summary.placeholder": "Enter the reason for the reinstatement", "qa-reinstate.modal.form.summary.placeholder": "ફરી સ્થાપન માટેનું કારણ દાખલ કરો", + // "item.version.create.modal.submitted.header": "Creating new version...", "item.version.create.modal.submitted.header": "નવી આવૃત્તિ બનાવી રહી છે...", + // "item.qa.withdrawn.modal.submitted.header": "Sending withdrawn request...", "item.qa.withdrawn.modal.submitted.header": "વિથડ્રૉલ વિનંતી મોકલી રહી છે...", + // "correction-type.manage-relation.action.notification.reinstate": "Reinstate request sent.", "correction-type.manage-relation.action.notification.reinstate": "ફરી સ્થાપિત કરવાની વિનંતી મોકલવામાં આવી.", + // "correction-type.manage-relation.action.notification.withdrawn": "Withdraw request sent.", "correction-type.manage-relation.action.notification.withdrawn": "વિથડ્રૉલ વિનંતી મોકલવામાં આવી.", + // "item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.", "item.version.create.modal.submitted.text": "નવી આવૃત્તિ બનાવી રહી છે. આમાં થોડો સમય લાગી શકે છે જો આઇટમમાં ઘણા સંબંધો હોય.", + // "item.version.create.notification.success": "New version has been created with version number {{version}}", "item.version.create.notification.success": "નવી આવૃત્તિ આવૃત્તિ નંબર {{version}} સાથે બનાવવામાં આવી છે", + // "item.version.create.notification.failure": "New version has not been created", "item.version.create.notification.failure": "નવી આવૃત્તિ બનાવવામાં આવી નથી", + // "item.version.create.notification.inProgress": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.create.notification.inProgress": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", + // "item.version.delete.modal.header": "Delete version", "item.version.delete.modal.header": "આવૃત્તિ કાઢી નાખો", + // "item.version.delete.modal.text": "Do you want to delete version {{version}}?", "item.version.delete.modal.text": "શું તમે આવૃત્તિ {{version}} કાઢી નાખવા માંગો છો?", + // "item.version.delete.modal.button.confirm": "Delete", "item.version.delete.modal.button.confirm": "કાઢી નાખો", + // "item.version.delete.modal.button.confirm.tooltip": "Delete this version", "item.version.delete.modal.button.confirm.tooltip": "આ આવૃત્તિ કાઢી નાખો", + // "item.version.delete.modal.button.cancel": "Cancel", "item.version.delete.modal.button.cancel": "રદ કરો", + // "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version", "item.version.delete.modal.button.cancel.tooltip": "આ આવૃત્તિ ન કાઢી નાખો", + // "item.version.delete.notification.success": "Version number {{version}} has been deleted", "item.version.delete.notification.success": "આવૃત્તિ નંબર {{version}} કાઢી નાખવામાં આવી છે", + // "item.version.delete.notification.failure": "Version number {{version}} has not been deleted", "item.version.delete.notification.failure": "આવૃત્તિ નંબર {{version}} કાઢી શકાઈ નથી", + // "item.version.edit.notification.success": "The summary of version number {{version}} has been changed", "item.version.edit.notification.success": "આવૃત્તિ નંબર {{version}} નો સારાંશ બદલવામાં આવ્યો છે", + // "item.version.edit.notification.failure": "The summary of version number {{version}} has not been changed", "item.version.edit.notification.failure": "આવૃત્તિ નંબર {{version}} નો સારાંશ બદલવામાં આવ્યો નથી", + // "itemtemplate.edit.metadata.add-button": "Add", "itemtemplate.edit.metadata.add-button": "ઉમેરો", + // "itemtemplate.edit.metadata.discard-button": "Discard", "itemtemplate.edit.metadata.discard-button": "રદ કરો", + // "itemtemplate.edit.metadata.edit.language": "Edit language", "itemtemplate.edit.metadata.edit.language": "ભાષા સંપાદિત કરો", + // "itemtemplate.edit.metadata.edit.value": "Edit value", "itemtemplate.edit.metadata.edit.value": "મૂલ્ય સંપાદિત કરો", + // "itemtemplate.edit.metadata.edit.buttons.confirm": "Confirm", "itemtemplate.edit.metadata.edit.buttons.confirm": "પુષ્ટિ કરો", + // "itemtemplate.edit.metadata.edit.buttons.drag": "Drag to reorder", "itemtemplate.edit.metadata.edit.buttons.drag": "ફેરફાર કરવા માટે ખેંચો", + // "itemtemplate.edit.metadata.edit.buttons.edit": "Edit", "itemtemplate.edit.metadata.edit.buttons.edit": "સંપાદિત કરો", + // "itemtemplate.edit.metadata.edit.buttons.remove": "Remove", "itemtemplate.edit.metadata.edit.buttons.remove": "દૂર કરો", + // "itemtemplate.edit.metadata.edit.buttons.undo": "Undo changes", "itemtemplate.edit.metadata.edit.buttons.undo": "ફેરફારો રદ કરો", + // "itemtemplate.edit.metadata.edit.buttons.unedit": "Stop editing", "itemtemplate.edit.metadata.edit.buttons.unedit": "સંપાદન બંધ કરો", + // "itemtemplate.edit.metadata.empty": "The item template currently doesn't contain any metadata. Click Add to start adding a metadata value.", "itemtemplate.edit.metadata.empty": "આઇટમ ટેમ્પલેટમાં હાલમાં કોઈ મેટાડેટા નથી. મેટાડેટા મૂલ્ય ઉમેરવાનું શરૂ કરવા માટે ઉમેરો પર ક્લિક કરો.", + // "itemtemplate.edit.metadata.headers.edit": "Edit", "itemtemplate.edit.metadata.headers.edit": "સંપાદિત કરો", + // "itemtemplate.edit.metadata.headers.field": "Field", "itemtemplate.edit.metadata.headers.field": "ક્ષેત્ર", + // "itemtemplate.edit.metadata.headers.language": "Lang", "itemtemplate.edit.metadata.headers.language": "ભાષા", + // "itemtemplate.edit.metadata.headers.value": "Value", "itemtemplate.edit.metadata.headers.value": "મૂલ્ય", + // "itemtemplate.edit.metadata.metadatafield": "Edit field", "itemtemplate.edit.metadata.metadatafield": "ક્ષેત્ર સંપાદિત કરો", + // "itemtemplate.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "itemtemplate.edit.metadata.metadatafield.error": "મેટાડેટા ક્ષેત્ર માન્ય કરતી વખતે ભૂલ આવી", + // "itemtemplate.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "itemtemplate.edit.metadata.metadatafield.invalid": "કૃપા કરીને માન્ય મેટાડેટા ક્ષેત્ર પસંદ કરો", + // "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "itemtemplate.edit.metadata.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા હતા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + // "itemtemplate.edit.metadata.notifications.discarded.title": "Changes discarded", "itemtemplate.edit.metadata.notifications.discarded.title": "ફેરફારો રદ", + // "itemtemplate.edit.metadata.notifications.error.title": "An error occurred", "itemtemplate.edit.metadata.notifications.error.title": "ભૂલ આવી", + // "itemtemplate.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "itemtemplate.edit.metadata.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને સાચવતા પહેલા ખાતરી કરો કે બધા ક્ષેત્રો માન્ય છે.", + // "itemtemplate.edit.metadata.notifications.invalid.title": "Metadata invalid", "itemtemplate.edit.metadata.notifications.invalid.title": "મેટાડેટા અમાન્ય", + // "itemtemplate.edit.metadata.notifications.outdated.content": "The item template you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", "itemtemplate.edit.metadata.notifications.outdated.content": "આઇટમ ટેમ્પલેટ તમે હાલમાં કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", + // "itemtemplate.edit.metadata.notifications.outdated.title": "Changes outdated", "itemtemplate.edit.metadata.notifications.outdated.title": "ફેરફારો જૂના", + // "itemtemplate.edit.metadata.notifications.saved.content": "Your changes to this item template's metadata were saved.", "itemtemplate.edit.metadata.notifications.saved.content": "આ આઇટમ ટેમ્પલેટના મેટાડેટા માટેના તમારા ફેરફારો સાચવવામાં આવ્યા હતા.", + // "itemtemplate.edit.metadata.notifications.saved.title": "Metadata saved", "itemtemplate.edit.metadata.notifications.saved.title": "મેટાડેટા સાચવ્યા", + // "itemtemplate.edit.metadata.reinstate-button": "Undo", "itemtemplate.edit.metadata.reinstate-button": "Undo", + // "itemtemplate.edit.metadata.reset-order-button": "Undo reorder", "itemtemplate.edit.metadata.reset-order-button": "ફેરફાર રદ કરો", + // "itemtemplate.edit.metadata.save-button": "Save", "itemtemplate.edit.metadata.save-button": "સાચવો", + // "journal.listelement.badge": "Journal", "journal.listelement.badge": "જર્નલ", + // "journal.page.description": "Description", "journal.page.description": "વર્ણન", + // "journal.page.edit": "Edit this item", "journal.page.edit": "આ આઇટમ સંપાદિત કરો", + // "journal.page.editor": "Editor-in-Chief", "journal.page.editor": "મુખ્ય સંપાદક", + // "journal.page.issn": "ISSN", "journal.page.issn": "ISSN", + // "journal.page.publisher": "Publisher", "journal.page.publisher": "પ્રકાશક", + // "journal.page.options": "Options", "journal.page.options": "વિકલ્પો", - "journal.page.titleprefix": "જર્નલ: ", + // "journal.page.titleprefix": "Journal: ", + // TODO New key - Add a translation + "journal.page.titleprefix": "Journal: ", + // "journal.search.results.head": "Journal Search Results", "journal.search.results.head": "જર્નલ શોધ પરિણામો", + // "journal-relationships.search.results.head": "Journal Search Results", "journal-relationships.search.results.head": "જર્નલ શોધ પરિણામો", + // "journal.search.title": "Journal Search", "journal.search.title": "જર્નલ શોધ", + // "journalissue.listelement.badge": "Journal Issue", "journalissue.listelement.badge": "જર્નલ ઇશ્યુ", + // "journalissue.page.description": "Description", "journalissue.page.description": "વર્ણન", + // "journalissue.page.edit": "Edit this item", "journalissue.page.edit": "આ આઇટમ સંપાદિત કરો", + // "journalissue.page.issuedate": "Issue Date", "journalissue.page.issuedate": "ઇશ્યુ તારીખ", + // "journalissue.page.journal-issn": "Journal ISSN", "journalissue.page.journal-issn": "જર્નલ ISSN", + // "journalissue.page.journal-title": "Journal Title", "journalissue.page.journal-title": "જર્નલ શીર્ષક", + // "journalissue.page.keyword": "Keywords", "journalissue.page.keyword": "કીવર્ડ્સ", + // "journalissue.page.number": "Number", "journalissue.page.number": "નંબર", + // "journalissue.page.options": "Options", "journalissue.page.options": "વિકલ્પો", - "journalissue.page.titleprefix": "જર્નલ ઇશ્યુ: ", + // "journalissue.page.titleprefix": "Journal Issue: ", + // TODO New key - Add a translation + "journalissue.page.titleprefix": "Journal Issue: ", + // "journalissue.search.results.head": "Journal Issue Search Results", "journalissue.search.results.head": "જર્નલ ઇશ્યુ શોધ પરિણામો", + // "journalvolume.listelement.badge": "Journal Volume", "journalvolume.listelement.badge": "જર્નલ વોલ્યુમ", + // "journalvolume.page.description": "Description", "journalvolume.page.description": "વર્ણન", + // "journalvolume.page.edit": "Edit this item", "journalvolume.page.edit": "આ આઇટમ સંપાદિત કરો", + // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "ઇશ્યુ તારીખ", + // "journalvolume.page.options": "Options", "journalvolume.page.options": "વિકલ્પો", - "journalvolume.page.titleprefix": "જર્નલ વોલ્યુમ: ", + // "journalvolume.page.titleprefix": "Journal Volume: ", + // TODO New key - Add a translation + "journalvolume.page.titleprefix": "Journal Volume: ", + // "journalvolume.page.volume": "Volume", "journalvolume.page.volume": "વોલ્યુમ", + // "journalvolume.search.results.head": "Journal Volume Search Results", "journalvolume.search.results.head": "જર્નલ વોલ્યુમ શોધ પરિણામો", + // "iiifsearchable.listelement.badge": "Document Media", "iiifsearchable.listelement.badge": "દસ્તાવેજ મીડિયા", - "iiifsearchable.page.titleprefix": "દસ્તાવેજ: ", + // "iiifsearchable.page.titleprefix": "Document: ", + // TODO New key - Add a translation + "iiifsearchable.page.titleprefix": "Document: ", - "iiifsearchable.page.doi": "કાયમી લિંક: ", + // "iiifsearchable.page.doi": "Permanent Link: ", + // TODO New key - Add a translation + "iiifsearchable.page.doi": "Permanent Link: ", - "iiifsearchable.page.issue": "મુદ્દો: ", + // "iiifsearchable.page.issue": "Issue: ", + // TODO New key - Add a translation + "iiifsearchable.page.issue": "Issue: ", - "iiifsearchable.page.description": "વર્ણન: ", + // "iiifsearchable.page.description": "Description: ", + // TODO New key - Add a translation + "iiifsearchable.page.description": "Description: ", + // "iiifviewer.fullscreen.notice": "Use full screen for better viewing.", "iiifviewer.fullscreen.notice": "સારા જોવાના અનુભવ માટે સંપૂર્ણ સ્ક્રીનનો ઉપયોગ કરો.", + // "iiif.listelement.badge": "Image Media", "iiif.listelement.badge": "છબી મીડિયા", - "iiif.page.titleprefix": "છબી: ", + // "iiif.page.titleprefix": "Image: ", + // TODO New key - Add a translation + "iiif.page.titleprefix": "Image: ", - "iiif.page.doi": "કાયમી લિંક: ", + // "iiif.page.doi": "Permanent Link: ", + // TODO New key - Add a translation + "iiif.page.doi": "Permanent Link: ", - "iiif.page.issue": "મુદ્દો: ", + // "iiif.page.issue": "Issue: ", + // TODO New key - Add a translation + "iiif.page.issue": "Issue: ", - "iiif.page.description": "વર્ણન: ", + // "iiif.page.description": "Description: ", + // TODO New key - Add a translation + "iiif.page.description": "Description: ", + // "loading.bitstream": "Loading bitstream...", "loading.bitstream": "બિટસ્ટ્રીમ લોડ થઈ રહ્યું છે...", + // "loading.bitstreams": "Loading bitstreams...", "loading.bitstreams": "બિટસ્ટ્રીમ્સ લોડ થઈ રહ્યા છે...", + // "loading.browse-by": "Loading items...", "loading.browse-by": "આઇટમ્સ લોડ થઈ રહ્યા છે...", + // "loading.browse-by-page": "Loading page...", "loading.browse-by-page": "પૃષ્ઠ લોડ થઈ રહ્યું છે...", + // "loading.collection": "Loading collection...", "loading.collection": "સંગ્રહ લોડ થઈ રહ્યો છે...", + // "loading.collections": "Loading collections...", "loading.collections": "સંગ્રહો લોડ થઈ રહ્યા છે...", + // "loading.content-source": "Loading content source...", "loading.content-source": "સામગ્રી સ્ત્રોત લોડ થઈ રહ્યો છે...", + // "loading.community": "Loading community...", "loading.community": "સમુદાય લોડ થઈ રહ્યો છે...", + // "loading.default": "Loading...", "loading.default": "લોડ થઈ રહ્યું છે...", + // "loading.item": "Loading item...", "loading.item": "આઇટમ લોડ થઈ રહ્યું છે...", + // "loading.items": "Loading items...", "loading.items": "આઇટમ્સ લોડ થઈ રહ્યા છે...", + // "loading.mydspace-results": "Loading items...", "loading.mydspace-results": "આઇટમ્સ લોડ થઈ રહ્યા છે...", + // "loading.objects": "Loading...", "loading.objects": "લોડ થઈ રહ્યું છે...", + // "loading.recent-submissions": "Loading recent submissions...", "loading.recent-submissions": "તાજેતરના સબમિશન લોડ થઈ રહ્યા છે...", + // "loading.search-results": "Loading search results...", "loading.search-results": "શોધ પરિણામો લોડ થઈ રહ્યા છે...", + // "loading.sub-collections": "Loading sub-collections...", "loading.sub-collections": "ઉપ-સંગ્રહો લોડ થઈ રહ્યા છે...", + // "loading.sub-communities": "Loading sub-communities...", "loading.sub-communities": "ઉપ-સમુદાયો લોડ થઈ રહ્યા છે...", + // "loading.top-level-communities": "Loading top-level communities...", "loading.top-level-communities": "ટોપ-લેવલ સમુદાયો લોડ થઈ રહ્યા છે...", + // "login.form.email": "Email address", "login.form.email": "ઇમેઇલ સરનામું", + // "login.form.forgot-password": "Have you forgotten your password?", "login.form.forgot-password": "શું તમે તમારો પાસવર્ડ ભૂલી ગયા છો?", + // "login.form.header": "Please log in to DSpace", "login.form.header": "કૃપા કરીને DSpace માં લોગિન કરો", + // "login.form.new-user": "New user? Click here to register.", "login.form.new-user": "નવો વપરાશકર્તા? નોંધણી માટે અહીં ક્લિક કરો.", + // "login.form.oidc": "Log in with OIDC", "login.form.oidc": "OIDC સાથે લોગિન કરો", + // "login.form.orcid": "Log in with ORCID", "login.form.orcid": "ORCID સાથે લોગિન કરો", + // "login.form.password": "Password", "login.form.password": "પાસવર્ડ", + // "login.form.saml": "Log in with SAML", "login.form.saml": "SAML સાથે લોગિન કરો", + // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Shibboleth સાથે લોગિન કરો", + // "login.form.submit": "Log in", "login.form.submit": "લોગિન કરો", + // "login.title": "Login", "login.title": "લોગિન", + // "login.breadcrumbs": "Login", "login.breadcrumbs": "લોગિન", + // "logout.form.header": "Log out from DSpace", "logout.form.header": "DSpace માંથી લોગ આઉટ કરો", + // "logout.form.submit": "Log out", "logout.form.submit": "લોગ આઉટ", + // "logout.title": "Logout", "logout.title": "લોગ આઉટ", + // "menu.header.nav.description": "Admin navigation bar", "menu.header.nav.description": "એડમિન નેવિગેશન બાર", + // "menu.header.admin": "Management", "menu.header.admin": "મેનેજમેન્ટ", + // "menu.header.image.logo": "Repository logo", "menu.header.image.logo": "રિપોઝિટરી લોગો", + // "menu.header.admin.description": "Management menu", "menu.header.admin.description": "મેનેજમેન્ટ મેનુ", + // "menu.section.access_control": "Access Control", "menu.section.access_control": "ઍક્સેસ કંટ્રોલ", + // "menu.section.access_control_authorizations": "Authorizations", "menu.section.access_control_authorizations": "અધિકૃતતાઓ", + // "menu.section.access_control_bulk": "Bulk Access Management", "menu.section.access_control_bulk": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", + // "menu.section.access_control_groups": "Groups", "menu.section.access_control_groups": "ગ્રુપ્સ", + // "menu.section.access_control_people": "People", "menu.section.access_control_people": "લોકો", + // "menu.section.reports": "Reports", "menu.section.reports": "અહેવાલો", + // "menu.section.reports.collections": "Filtered Collections", "menu.section.reports.collections": "ફિલ્ટર કરેલ સંગ્રહો", + // "menu.section.reports.queries": "Metadata Query", "menu.section.reports.queries": "મેટાડેટા ક્વેરી", + // "menu.section.admin_search": "Admin Search", "menu.section.admin_search": "એડમિન શોધ", + // "menu.section.browse_community": "This Community", "menu.section.browse_community": "આ સમુદાય", + // "menu.section.browse_community_by_author": "By Author", "menu.section.browse_community_by_author": "લેખક દ્વારા", + // "menu.section.browse_community_by_issue_date": "By Issue Date", "menu.section.browse_community_by_issue_date": "પ્રશ્ન તારીખ દ્વારા", + // "menu.section.browse_community_by_title": "By Title", "menu.section.browse_community_by_title": "શીર્ષક દ્વારા", + // "menu.section.browse_global": "All of DSpace", "menu.section.browse_global": "DSpace ના બધા", + // "menu.section.browse_global_by_author": "By Author", "menu.section.browse_global_by_author": "લેખક દ્વારા", + // "menu.section.browse_global_by_dateissued": "By Issue Date", "menu.section.browse_global_by_dateissued": "પ્રશ્ન તારીખ દ્વારા", + // "menu.section.browse_global_by_subject": "By Subject", "menu.section.browse_global_by_subject": "વિષય દ્વારા", + // "menu.section.browse_global_by_srsc": "By Subject Category", "menu.section.browse_global_by_srsc": "વિષય શ્રેણી દ્વારા", + // "menu.section.browse_global_by_nsi": "By Norwegian Science Index", "menu.section.browse_global_by_nsi": "નોર્વેજીયન સાયન્સ ઇન્ડેક્સ દ્વારા", + // "menu.section.browse_global_by_title": "By Title", "menu.section.browse_global_by_title": "શીર્ષક દ્વારા", + // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "સમુદાયો અને સંગ્રહો", + // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", "menu.section.browse_global_geospatial_map": "ભૌગોલિક સ્થાન દ્વારા (નકશો)", + // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "કંટ્રોલ પેનલ", + // "menu.section.curation_task": "Curation Task", "menu.section.curation_task": "ક્યુરેશન ટાસ્ક", + // "menu.section.edit": "Edit", "menu.section.edit": "સંપાદિત કરો", + // "menu.section.edit_collection": "Collection", "menu.section.edit_collection": "સંગ્રહ", + // "menu.section.edit_community": "Community", "menu.section.edit_community": "સમુદાય", + // "menu.section.edit_item": "Item", "menu.section.edit_item": "આઇટમ", + // "menu.section.export": "Export", "menu.section.export": "નિકાસ", + // "menu.section.export_collection": "Collection", "menu.section.export_collection": "સંગ્રહ", + // "menu.section.export_community": "Community", "menu.section.export_community": "સમુદાય", + // "menu.section.export_item": "Item", "menu.section.export_item": "આઇટમ", + // "menu.section.export_metadata": "Metadata", "menu.section.export_metadata": "મેટાડેટા", + // "menu.section.export_batch": "Batch Export (ZIP)", "menu.section.export_batch": "બેચ નિકાસ (ZIP)", + // "menu.section.icon.access_control": "Access Control menu section", "menu.section.icon.access_control": "ઍક્સેસ કંટ્રોલ મેનુ વિભાગ", + // "menu.section.icon.reports": "Reports menu section", "menu.section.icon.reports": "અહેવાલો મેનુ વિભાગ", + // "menu.section.icon.admin_search": "Admin search menu section", "menu.section.icon.admin_search": "એડમિન શોધ મેનુ વિભાગ", + // "menu.section.icon.control_panel": "Control Panel menu section", "menu.section.icon.control_panel": "કંટ્રોલ પેનલ મેનુ વિભાગ", + // "menu.section.icon.curation_tasks": "Curation Task menu section", "menu.section.icon.curation_tasks": "ક્યુરેશન ટાસ્ક મેનુ વિભાગ", + // "menu.section.icon.edit": "Edit menu section", "menu.section.icon.edit": "સંપાદિત કરો મેનુ વિભાગ", + // "menu.section.icon.export": "Export menu section", "menu.section.icon.export": "નિકાસ મેનુ વિભાગ", + // "menu.section.icon.find": "Find menu section", "menu.section.icon.find": "મેનુ વિભાગ શોધો", + // "menu.section.icon.health": "Health check menu section", "menu.section.icon.health": "હેલ્થ ચેક મેનુ વિભાગ", + // "menu.section.icon.import": "Import menu section", "menu.section.icon.import": "આયાત મેનુ વિભાગ", + // "menu.section.icon.new": "New menu section", "menu.section.icon.new": "નવું મેનુ વિભાગ", + // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "સાઇડબાર પિન કરો", + // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "સાઇડબાર અનપિન કરો", + // "menu.section.icon.notifications": "Notifications menu section", "menu.section.icon.notifications": "સૂચનાઓ મેનુ વિભાગ", + // "menu.section.import": "Import", "menu.section.import": "આયાત", + // "menu.section.import_batch": "Batch Import (ZIP)", "menu.section.import_batch": "બેચ આયાત (ZIP)", + // "menu.section.import_metadata": "Metadata", "menu.section.import_metadata": "મેટાડેટા", + // "menu.section.new": "New", "menu.section.new": "નવું", + // "menu.section.new_collection": "Collection", "menu.section.new_collection": "સંગ્રહ", + // "menu.section.new_community": "Community", "menu.section.new_community": "સમુદાય", + // "menu.section.new_item": "Item", "menu.section.new_item": "આઇટમ", + // "menu.section.new_item_version": "Item Version", "menu.section.new_item_version": "આઇટમ આવૃત્તિ", + // "menu.section.new_process": "Process", "menu.section.new_process": "પ્રક્રિયા", + // "menu.section.notifications": "Notifications", "menu.section.notifications": "સૂચનાઓ", + // "menu.section.quality-assurance": "Quality Assurance", "menu.section.quality-assurance": "ગુણવત્તા ખાતરી", + // "menu.section.notifications_publication-claim": "Publication Claim", "menu.section.notifications_publication-claim": "પ્રકાશન દાવો", + // "menu.section.pin": "Pin sidebar", "menu.section.pin": "સાઇડબાર પિન કરો", + // "menu.section.unpin": "Unpin sidebar", "menu.section.unpin": "સાઇડબાર અનપિન કરો", + // "menu.section.processes": "Processes", "menu.section.processes": "પ્રક્રિયાઓ", + // "menu.section.health": "Health", "menu.section.health": "હેલ્થ", + // "menu.section.registries": "Registries", "menu.section.registries": "રજિસ્ટ્રીઓ", + // "menu.section.registries_format": "Format", "menu.section.registries_format": "ફોર્મેટ", + // "menu.section.registries_metadata": "Metadata", "menu.section.registries_metadata": "મેટાડેટા", + // "menu.section.statistics": "Statistics", "menu.section.statistics": "આંકડા", + // "menu.section.statistics_task": "Statistics Task", "menu.section.statistics_task": "આંકડા કાર્ય", + // "menu.section.toggle.access_control": "Toggle Access Control section", "menu.section.toggle.access_control": "ઍક્સેસ કંટ્રોલ વિભાગ ટૉગલ કરો", + // "menu.section.toggle.reports": "Toggle Reports section", "menu.section.toggle.reports": "અહેવાલો વિભાગ ટૉગલ કરો", + // "menu.section.toggle.control_panel": "Toggle Control Panel section", "menu.section.toggle.control_panel": "કંટ્રોલ પેનલ વિભાગ ટૉગલ કરો", + // "menu.section.toggle.curation_task": "Toggle Curation Task section", "menu.section.toggle.curation_task": "ક્યુરેશન ટાસ્ક વિભાગ ટૉગલ કરો", + // "menu.section.toggle.edit": "Toggle Edit section", "menu.section.toggle.edit": "સંપાદન વિભાગ ટૉગલ કરો", + // "menu.section.toggle.export": "Toggle Export section", "menu.section.toggle.export": "નિકાસ વિભાગ ટૉગલ કરો", + // "menu.section.toggle.find": "Toggle Find section", "menu.section.toggle.find": "વિભાગ શોધો ટૉગલ કરો", + // "menu.section.toggle.import": "Toggle Import section", "menu.section.toggle.import": "આયાત વિભાગ ટૉગલ કરો", + // "menu.section.toggle.new": "Toggle New section", "menu.section.toggle.new": "નવો વિભાગ ટૉગલ કરો", + // "menu.section.toggle.registries": "Toggle Registries section", "menu.section.toggle.registries": "રજિસ્ટ્રીઓ વિભાગ ટૉગલ કરો", + // "menu.section.toggle.statistics_task": "Toggle Statistics Task section", "menu.section.toggle.statistics_task": "આંકડા કાર્ય વિભાગ ટૉગલ કરો", + // "menu.section.workflow": "Administer Workflow", "menu.section.workflow": "વર્કફ્લો મેનેજ કરો", + // "metadata-export-search.tooltip": "Export search results as CSV", "metadata-export-search.tooltip": "શોધ પરિણામો CSV તરીકે નિકાસ કરો", + // "metadata-export-search.submit.success": "The export was started successfully", "metadata-export-search.submit.success": "નિકાસ સફળતાપૂર્વક શરૂ થયું", + // "metadata-export-search.submit.error": "Starting the export has failed", "metadata-export-search.submit.error": "નિકાસ શરૂ કરવામાં નિષ્ફળ", + // "mydspace.breadcrumbs": "MyDSpace", "mydspace.breadcrumbs": "MyDSpace", + // "mydspace.description": "", "mydspace.description": "", + // "mydspace.messages.controller-help": "Select this option to send a message to item's submitter.", "mydspace.messages.controller-help": "આ વિકલ્પ પસંદ કરો આઇટમના સબમિટરને સંદેશ મોકલવા માટે.", + // "mydspace.messages.description-placeholder": "Insert your message here...", "mydspace.messages.description-placeholder": "તમારો સંદેશ અહીં દાખલ કરો...", + // "mydspace.messages.hide-msg": "Hide message", "mydspace.messages.hide-msg": "સંદેશ છુપાવો", + // "mydspace.messages.mark-as-read": "Mark as read", "mydspace.messages.mark-as-read": "વાંચેલ તરીકે ચિહ્નિત કરો", + // "mydspace.messages.mark-as-unread": "Mark as unread", "mydspace.messages.mark-as-unread": "ન વાંચેલ તરીકે ચિહ્નિત કરો", + // "mydspace.messages.no-content": "No content.", "mydspace.messages.no-content": "કોઈ સામગ્રી નથી.", + // "mydspace.messages.no-messages": "No messages yet.", "mydspace.messages.no-messages": "હજી સુધી કોઈ સંદેશ નથી.", + // "mydspace.messages.send-btn": "Send", "mydspace.messages.send-btn": "મોકલો", + // "mydspace.messages.show-msg": "Show message", "mydspace.messages.show-msg": "સંદેશ બતાવો", + // "mydspace.messages.subject-placeholder": "Subject...", "mydspace.messages.subject-placeholder": "વિષય...", + // "mydspace.messages.submitter-help": "Select this option to send a message to controller.", "mydspace.messages.submitter-help": "આ વિકલ્પ પસંદ કરો નિયંત્રકને સંદેશ મોકલવા માટે.", + // "mydspace.messages.title": "Messages", "mydspace.messages.title": "સંદેશો", + // "mydspace.messages.to": "To", "mydspace.messages.to": "પ્રતિ", + // "mydspace.new-submission": "New submission", "mydspace.new-submission": "નવું સબમિશન", + // "mydspace.new-submission-external": "Import metadata from external source", "mydspace.new-submission-external": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", + // "mydspace.new-submission-external-short": "Import metadata", "mydspace.new-submission-external-short": "મેટાડેટા આયાત કરો", + // "mydspace.results.head": "Your submissions", "mydspace.results.head": "તમારા સબમિશન", + // "mydspace.results.no-abstract": "No Abstract", "mydspace.results.no-abstract": "કોઈ અભ્યાસ નથી", + // "mydspace.results.no-authors": "No Authors", "mydspace.results.no-authors": "કોઈ લેખકો નથી", + // "mydspace.results.no-collections": "No Collections", "mydspace.results.no-collections": "કોઈ સંગ્રહો નથી", + // "mydspace.results.no-date": "No Date", "mydspace.results.no-date": "કોઈ તારીખ નથી", + // "mydspace.results.no-files": "No Files", "mydspace.results.no-files": "કોઈ ફાઇલો નથી", + // "mydspace.results.no-results": "There were no items to show", "mydspace.results.no-results": "બતાવા માટે કોઈ આઇટમ નથી", + // "mydspace.results.no-title": "No title", "mydspace.results.no-title": "કોઈ શીર્ષક નથી", + // "mydspace.results.no-uri": "No URI", "mydspace.results.no-uri": "કોઈ URI નથી", + // "mydspace.search-form.placeholder": "Search in MyDSpace...", "mydspace.search-form.placeholder": "MyDSpace માં શોધો...", + // "mydspace.show.workflow": "Workflow tasks", "mydspace.show.workflow": "વર્કફ્લો કાર્ય", + // "mydspace.show.workspace": "Your submissions", "mydspace.show.workspace": "તમારા સબમિશન", + // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "સુપરવિઝ્ડ આઇટમ્સ", + // "mydspace.status": "My DSpace status:", + // TODO New key - Add a translation + "mydspace.status": "My DSpace status:", + + // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "આર્કાઇવ્ડ", + // "mydspace.status.mydspaceValidation": "Validation", "mydspace.status.mydspaceValidation": "માન્યતા", + // "mydspace.status.mydspaceWaitingController": "Waiting for reviewer", "mydspace.status.mydspaceWaitingController": "સમીક્ષકની રાહ જોવી", + // "mydspace.status.mydspaceWorkflow": "Workflow", "mydspace.status.mydspaceWorkflow": "વર્કફ્લો", + // "mydspace.status.mydspaceWorkspace": "Workspace", "mydspace.status.mydspaceWorkspace": "વર્કસ્પેસ", + // "mydspace.title": "MyDSpace", "mydspace.title": "MyDSpace", + // "mydspace.upload.upload-failed": "Error creating new workspace. Please verify the content uploaded before retry.", "mydspace.upload.upload-failed": "નવું વર્કસ્પેસ બનાવવામાં ભૂલ. કૃપા કરીને ફરી પ્રયાસ કરતા પહેલા અપલોડ કરેલ સામગ્રીને ચકાસો.", + // "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.", "mydspace.upload.upload-failed-manyentries": "અપ્રક્રિય ફાઇલ. ઘણી એન્ટ્રીઓ શોધવામાં આવી છે પરંતુ ફાઇલ માટે માત્ર એક જ મંજૂરી છે.", + // "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.", "mydspace.upload.upload-failed-moreonefile": "અપ્રક્રિય વિનંતી. ફક્ત એક જ ફાઇલ મંજૂર છે.", + // "mydspace.upload.upload-multiple-successful": "{{qty}} new workspace items created.", "mydspace.upload.upload-multiple-successful": "{{qty}} નવા વર્કસ્પેસ આઇટમ્સ બનાવવામાં આવ્યા.", + // "mydspace.view-btn": "View", "mydspace.view-btn": "જુઓ", + // "nav.expandable-navbar-section-suffix": "(submenu)", "nav.expandable-navbar-section-suffix": "(ઉપમેનુ)", + // "notification.suggestion": "We found {{count}} publications in the {{source}} that seems to be related to your profile.
", "notification.suggestion": "અમે {{source}} માં {{count}} પ્રકાશનો શોધ્યા છે જે તમારા પ્રોફાઇલ સાથે સંબંધિત લાગે છે.
", + // "notification.suggestion.review": "review the suggestions", "notification.suggestion.review": "સૂચનોની સમીક્ષા કરો", + // "notification.suggestion.please": "Please", "notification.suggestion.please": "કૃપા કરીને", + // "nav.browse.header": "All of DSpace", "nav.browse.header": "DSpace ના બધા", + // "nav.community-browse.header": "By Community", "nav.community-browse.header": "સમુદાય દ્વારા", + // "nav.context-help-toggle": "Toggle context help", "nav.context-help-toggle": "સંદર્ભ મદદ ટૉગલ કરો", + // "nav.language": "Language switch", "nav.language": "ભાષા સ્વિચ", + // "nav.login": "Log In", "nav.login": "લોગિન", + // "nav.user-profile-menu-and-logout": "User profile menu and log out", "nav.user-profile-menu-and-logout": "વપરાશકર્તા પ્રોફાઇલ મેનુ અને લોગ આઉટ", + // "nav.logout": "Log Out", "nav.logout": "લોગ આઉટ", + // "nav.main.description": "Main navigation bar", "nav.main.description": "મુખ્ય નેવિગેશન બાર", + // "nav.mydspace": "MyDSpace", "nav.mydspace": "MyDSpace", + // "nav.profile": "Profile", "nav.profile": "પ્રોફાઇલ", + // "nav.search": "Search", "nav.search": "શોધો", + // "nav.search.button": "Submit search", "nav.search.button": "શોધ સબમિટ કરો", + // "nav.statistics.header": "Statistics", "nav.statistics.header": "આંકડા", + // "nav.stop-impersonating": "Stop impersonating EPerson", "nav.stop-impersonating": "EPerson નું અનુસરણ બંધ કરો", + // "nav.subscriptions": "Subscriptions", "nav.subscriptions": "સબ્સ્ક્રિપ્શન્સ", + // "nav.toggle": "Toggle navigation", "nav.toggle": "નેવિગેશન ટૉગલ કરો", + // "nav.user.description": "User profile bar", "nav.user.description": "વપરાશકર્તા પ્રોફાઇલ બાર", + // "listelement.badge.dso-type": "Item type:", + // TODO New key - Add a translation + "listelement.badge.dso-type": "Item type:", + + // "none.listelement.badge": "Item", "none.listelement.badge": "આઇટમ", + // "publication-claim.title": "Publication claim", "publication-claim.title": "પ્રકાશન દાવો", + // "publication-claim.source.description": "Below you can see all the sources.", "publication-claim.source.description": "નીચે તમે બધા સ્ત્રોતો જોઈ શકો છો.", + // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "ગુણવત્તા ખાતરી", + // "quality-assurance.topics.description": "Below you can see all the topics received from the subscriptions to {{source}}.", "quality-assurance.topics.description": "નીચે તમે {{source}} માટેની સબ્સ્ક્રિપ્શન્સમાંથી પ્રાપ્ત થયેલા બધા વિષયો જોઈ શકો છો.", + // "quality-assurance.source.description": "Below you can see all the notification's sources.", "quality-assurance.source.description": "નીચે તમે સૂચના ના સ્ત્રોતો જોઈ શકો છો.", + // "quality-assurance.topics": "Current Topics", "quality-assurance.topics": "વર્તમાન વિષયો", + // "quality-assurance.source": "Current Sources", "quality-assurance.source": "વર્તમાન સ્ત્રોતો", + // "quality-assurance.table.topic": "Topic", "quality-assurance.table.topic": "વિષય", + // "quality-assurance.table.source": "Source", "quality-assurance.table.source": "સ્ત્રોત", + // "quality-assurance.table.last-event": "Last Event", "quality-assurance.table.last-event": "છેલ્લી ઘટના", + // "quality-assurance.table.actions": "Actions", "quality-assurance.table.actions": "ક્રિયાઓ", + // "quality-assurance.source-list.button.detail": "Show topics for {{param}}", "quality-assurance.source-list.button.detail": "{{param}} માટેના વિષયો બતાવો", + // "quality-assurance.topics-list.button.detail": "Show suggestions for {{param}}", "quality-assurance.topics-list.button.detail": "{{param}} માટેની સૂચનો બતાવો", + // "quality-assurance.noTopics": "No topics found.", "quality-assurance.noTopics": "કોઈ વિષયો મળ્યા નથી.", + // "quality-assurance.noSource": "No sources found.", "quality-assurance.noSource": "કોઈ સ્ત્રોતો મળ્યા નથી.", + // "notifications.events.title": "Quality Assurance Suggestions", "notifications.events.title": "ગુણવત્તા ખાતરી સૂચનો", + // "quality-assurance.topic.error.service.retrieve": "An error occurred while loading the Quality Assurance topics", "quality-assurance.topic.error.service.retrieve": "ગુણવત્તા ખાતરી વિષયો લોડ કરતી વખતે ભૂલ આવી", + // "quality-assurance.source.error.service.retrieve": "An error occurred while loading the Quality Assurance source", "quality-assurance.source.error.service.retrieve": "ગુણવત્તા ખાતરી સ્ત્રોત લોડ કરતી વખતે ભૂલ આવી", + // "quality-assurance.loading": "Loading ...", "quality-assurance.loading": "લોડ થઈ રહ્યું છે ...", - "quality-assurance.events.topic": "વિષય:", + // "quality-assurance.events.topic": "Topic:", + // TODO New key - Add a translation + "quality-assurance.events.topic": "Topic:", + // "quality-assurance.noEvents": "No suggestions found.", "quality-assurance.noEvents": "કોઈ સૂચનો મળ્યા નથી.", + // "quality-assurance.event.table.trust": "Trust", "quality-assurance.event.table.trust": "વિશ્વાસ", + // "quality-assurance.event.table.publication": "Publication", "quality-assurance.event.table.publication": "પ્રકાશન", + // "quality-assurance.event.table.details": "Details", "quality-assurance.event.table.details": "વિગતો", + // "quality-assurance.event.table.project-details": "Project details", "quality-assurance.event.table.project-details": "પ્રોજેક્ટ વિગતો", + // "quality-assurance.event.table.reasons": "Reasons", "quality-assurance.event.table.reasons": "કારણો", + // "quality-assurance.event.table.actions": "Actions", "quality-assurance.event.table.actions": "ક્રિયાઓ", + // "quality-assurance.event.action.accept": "Accept suggestion", "quality-assurance.event.action.accept": "સૂચન સ્વીકારો", + // "quality-assurance.event.action.ignore": "Ignore suggestion", "quality-assurance.event.action.ignore": "સૂચન અવગણો", + // "quality-assurance.event.action.undo": "Delete", "quality-assurance.event.action.undo": "કાઢી નાખો", + // "quality-assurance.event.action.reject": "Reject suggestion", "quality-assurance.event.action.reject": "સૂચન નકારી કાઢો", + // "quality-assurance.event.action.import": "Import project and accept suggestion", "quality-assurance.event.action.import": "પ્રોજેક્ટ આયાત કરો અને સૂચન સ્વીકારો", - "quality-assurance.event.table.pidtype": "PID પ્રકાર:", + // "quality-assurance.event.table.pidtype": "PID Type:", + // TODO New key - Add a translation + "quality-assurance.event.table.pidtype": "PID Type:", - "quality-assurance.event.table.pidvalue": "PID મૂલ્ય:", + // "quality-assurance.event.table.pidvalue": "PID Value:", + // TODO New key - Add a translation + "quality-assurance.event.table.pidvalue": "PID Value:", - "quality-assurance.event.table.subjectValue": "વિષય મૂલ્ય:", + // "quality-assurance.event.table.subjectValue": "Subject Value:", + // TODO New key - Add a translation + "quality-assurance.event.table.subjectValue": "Subject Value:", - "quality-assurance.event.table.abstract": "અભ્યાસ:", + // "quality-assurance.event.table.abstract": "Abstract:", + // TODO New key - Add a translation + "quality-assurance.event.table.abstract": "Abstract:", + // "quality-assurance.event.table.suggestedProject": "OpenAIRE Suggested Project data", "quality-assurance.event.table.suggestedProject": "OpenAIRE સૂચિત પ્રોજેક્ટ ડેટા", - "quality-assurance.event.table.project": "પ્રોજેક્ટ શીર્ષક:", + // "quality-assurance.event.table.project": "Project title:", + // TODO New key - Add a translation + "quality-assurance.event.table.project": "Project title:", - "quality-assurance.event.table.acronym": "અન્ય નામ:", + // "quality-assurance.event.table.acronym": "Acronym:", + // TODO New key - Add a translation + "quality-assurance.event.table.acronym": "Acronym:", - "quality-assurance.event.table.code": "કોડ:", + // "quality-assurance.event.table.code": "Code:", + // TODO New key - Add a translation + "quality-assurance.event.table.code": "Code:", - "quality-assurance.event.table.funder": "ફંડર:", + // "quality-assurance.event.table.funder": "Funder:", + // TODO New key - Add a translation + "quality-assurance.event.table.funder": "Funder:", - "quality-assurance.event.table.fundingProgram": "ફંડિંગ પ્રોગ્રામ:", + // "quality-assurance.event.table.fundingProgram": "Funding program:", + // TODO New key - Add a translation + "quality-assurance.event.table.fundingProgram": "Funding program:", - "quality-assurance.event.table.jurisdiction": "ક્ષેત્રાધિકાર:", + // "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + // TODO New key - Add a translation + "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + // "quality-assurance.events.back": "Back to topics", "quality-assurance.events.back": "વિષયો પર પાછા જાઓ", + // "quality-assurance.events.back-to-sources": "Back to sources", "quality-assurance.events.back-to-sources": "સ્ત્રોતો પર પાછા જાઓ", + // "quality-assurance.event.table.less": "Show less", "quality-assurance.event.table.less": "ઓછું બતાવો", + // "quality-assurance.event.table.more": "Show more", "quality-assurance.event.table.more": "વધુ બતાવો", - "quality-assurance.event.project.found": "સ્થાનિક રેકોર્ડ સાથે જોડાયેલ:", + // "quality-assurance.event.project.found": "Bound to the local record:", + // TODO New key - Add a translation + "quality-assurance.event.project.found": "Bound to the local record:", + // "quality-assurance.event.project.notFound": "No local record found", "quality-assurance.event.project.notFound": "કોઈ સ્થાનિક રેકોર્ડ મળ્યો નથી", + // "quality-assurance.event.sure": "Are you sure?", "quality-assurance.event.sure": "શું તમે ખાતરી કરો છો?", + // "quality-assurance.event.ignore.description": "This operation can't be undone. Ignore this suggestion?", "quality-assurance.event.ignore.description": "આ ક્રિયા પાછી ફરી શકશે નહીં. આ સૂચન અવગણો?", + // "quality-assurance.event.undo.description": "This operation can't be undone!", "quality-assurance.event.undo.description": "આ ક્રિયા પાછી ફરી શકશે નહીં!", + // "quality-assurance.event.reject.description": "This operation can't be undone. Reject this suggestion?", "quality-assurance.event.reject.description": "આ ક્રિયા પાછી ફરી શકશે નહીં. આ સૂચન નકારી કાઢો?", + // "quality-assurance.event.accept.description": "No DSpace project selected. A new project will be created based on the suggestion data.", "quality-assurance.event.accept.description": "કોઈ DSpace પ્રોજેક્ટ પસંદ કરેલ નથી. સૂચન ડેટા પર આધારિત નવો પ્રોજેક્ટ બનાવવામાં આવશે.", + // "quality-assurance.event.action.cancel": "Cancel", "quality-assurance.event.action.cancel": "રદ કરો", + // "quality-assurance.event.action.saved": "Your decision has been saved successfully.", "quality-assurance.event.action.saved": "તમારો નિર્ણય સફળતાપૂર્વક સાચવવામાં આવ્યો છે.", + // "quality-assurance.event.action.error": "An error has occurred. Your decision has not been saved.", "quality-assurance.event.action.error": "ભૂલ આવી. તમારો નિર્ણય સાચવવામાં આવ્યો નથી.", + // "quality-assurance.event.modal.project.title": "Choose a project to bound", "quality-assurance.event.modal.project.title": "જોડવા માટે પ્રોજેક્ટ પસંદ કરો", - "quality-assurance.event.modal.project.publication": "પ્રકાશન:", + // "quality-assurance.event.modal.project.publication": "Publication:", + // TODO New key - Add a translation + "quality-assurance.event.modal.project.publication": "Publication:", - "quality-assurance.event.modal.project.bountToLocal": "સ્થાનિક રેકોર્ડ સાથે જોડાયેલ:", + // "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + // TODO New key - Add a translation + "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + // "quality-assurance.event.modal.project.select": "Project search", "quality-assurance.event.modal.project.select": "પ્રોજેક્ટ શોધ", + // "quality-assurance.event.modal.project.search": "Search", "quality-assurance.event.modal.project.search": "શોધો", + // "quality-assurance.event.modal.project.clear": "Clear", "quality-assurance.event.modal.project.clear": "સાફ કરો", + // "quality-assurance.event.modal.project.cancel": "Cancel", "quality-assurance.event.modal.project.cancel": "રદ કરો", + // "quality-assurance.event.modal.project.bound": "Bound project", "quality-assurance.event.modal.project.bound": "જોડાયેલ પ્રોજેક્ટ", + // "quality-assurance.event.modal.project.remove": "Remove", "quality-assurance.event.modal.project.remove": "દૂર કરો", + // "quality-assurance.event.modal.project.placeholder": "Enter a project name", "quality-assurance.event.modal.project.placeholder": "પ્રોજેક્ટ નામ દાખલ કરો", + // "quality-assurance.event.modal.project.notFound": "No project found.", "quality-assurance.event.modal.project.notFound": "કોઈ પ્રોજેક્ટ મળ્યો નથી.", + // "quality-assurance.event.project.bounded": "The project has been linked successfully.", "quality-assurance.event.project.bounded": "પ્રોજેક્ટ સફળતાપૂર્વક જોડાયેલ છે.", + // "quality-assurance.event.project.removed": "The project has been successfully unlinked.", "quality-assurance.event.project.removed": "પ્રોજેક્ટ સફળતાપૂર્વક અનલિંક કરવામાં આવ્યો છે.", + // "quality-assurance.event.project.error": "An error has occurred. No operation performed.", "quality-assurance.event.project.error": "ભૂલ આવી. કોઈ ક્રિયા કરવામાં આવી નથી.", + // "quality-assurance.event.reason": "Reason", "quality-assurance.event.reason": "કારણ", + // "orgunit.listelement.badge": "Organizational Unit", "orgunit.listelement.badge": "સંસ્થાકીય એકમ", + // "orgunit.listelement.no-title": "Untitled", "orgunit.listelement.no-title": "શીર્ષક વિના", + // "orgunit.page.city": "City", "orgunit.page.city": "શહેર", + // "orgunit.page.country": "Country", "orgunit.page.country": "દેશ", + // "orgunit.page.dateestablished": "Date established", "orgunit.page.dateestablished": "સ્થાપના તારીખ", + // "orgunit.page.description": "Description", "orgunit.page.description": "વર્ણન", + // "orgunit.page.edit": "Edit this item", "orgunit.page.edit": "આ આઇટમ સંપાદિત કરો", + // "orgunit.page.id": "ID", "orgunit.page.id": "ID", + // "orgunit.page.options": "Options", "orgunit.page.options": "વિકલ્પો", - "orgunit.page.titleprefix": "સંસ્થાકીય એકમ: ", + // "orgunit.page.titleprefix": "Organizational Unit: ", + // TODO New key - Add a translation + "orgunit.page.titleprefix": "Organizational Unit: ", + // "orgunit.page.ror": "ROR Identifier", "orgunit.page.ror": "ROR Identifier", + // "orgunit.search.results.head": "Organizational Unit Search Results", "orgunit.search.results.head": "સંસ્થાકીય એકમ શોધ પરિણામો", + // "pagination.options.description": "Pagination options", "pagination.options.description": "પેજિનેશન વિકલ્પો", + // "pagination.results-per-page": "Results Per Page", "pagination.results-per-page": "પ્રતિ પૃષ્ઠ પરિણામો", + // "pagination.showing.detail": "{{ range }} of {{ total }}", "pagination.showing.detail": "{{ range }} માંથી {{ total }}", + // "pagination.showing.label": "Now showing ", "pagination.showing.label": "હાલમાં બતાવી રહ્યા છે ", + // "pagination.sort-direction": "Sort Options", "pagination.sort-direction": "સૉર્ટ વિકલ્પો", + // "person.listelement.badge": "Person", "person.listelement.badge": "વ્યક્તિ", + // "person.listelement.no-title": "No name found", "person.listelement.no-title": "કોઈ નામ મળ્યું નથી", + // "person.page.birthdate": "Birth Date", "person.page.birthdate": "જન્મ તારીખ", + // "person.page.edit": "Edit this item", "person.page.edit": "આ આઇટમ સંપાદિત કરો", + // "person.page.email": "Email Address", "person.page.email": "ઇમેઇલ સરનામું", + // "person.page.firstname": "First Name", "person.page.firstname": "પ્રથમ નામ", + // "person.page.jobtitle": "Job Title", "person.page.jobtitle": "નોકરીનું શીર્ષક", + // "person.page.lastname": "Last Name", "person.page.lastname": "છેલ્લું નામ", + // "person.page.name": "Name", "person.page.name": "નામ", + // "person.page.link.full": "Show all metadata", "person.page.link.full": "બધા મેટાડેટા બતાવો", + // "person.page.options": "Options", "person.page.options": "વિકલ્પો", + // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", + // "person.page.staffid": "Staff ID", "person.page.staffid": "સ્ટાફ ID", - "person.page.titleprefix": "વ્યક્તિ: ", + // "person.page.titleprefix": "Person: ", + // TODO New key - Add a translation + "person.page.titleprefix": "Person: ", + // "person.search.results.head": "Person Search Results", "person.search.results.head": "વ્યક્તિ શોધ પરિણામો", + // "person-relationships.search.results.head": "Person Search Results", "person-relationships.search.results.head": "વ્યક્તિ શોધ પરિણામો", + // "person.search.title": "Person Search", "person.search.title": "વ્યક્તિ શોધ", + // "process.new.select-parameters": "Parameters", "process.new.select-parameters": "પરિમાણો", + // "process.new.select-parameter": "Select parameter", "process.new.select-parameter": "પરિમાણ પસંદ કરો", + // "process.new.add-parameter": "Add a parameter...", "process.new.add-parameter": "પરિમાણ ઉમેરો...", + // "process.new.delete-parameter": "Delete parameter", "process.new.delete-parameter": "પરિમાણ કાઢી નાખો", + // "process.new.parameter.label": "Parameter value", "process.new.parameter.label": "પરિમાણ મૂલ્ય", + // "process.new.cancel": "Cancel", "process.new.cancel": "રદ કરો", + // "process.new.submit": "Save", "process.new.submit": "સાચવો", + // "process.new.select-script": "Script", "process.new.select-script": "સ્ક્રિપ્ટ", + // "process.new.select-script.placeholder": "Choose a script...", "process.new.select-script.placeholder": "સ્ક્રિપ્ટ પસંદ કરો...", + // "process.new.select-script.required": "Script is required", "process.new.select-script.required": "સ્ક્રિપ્ટ જરૂરી છે", + // "process.new.parameter.file.upload-button": "Select file...", "process.new.parameter.file.upload-button": "ફાઇલ પસંદ કરો...", + // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "કૃપા કરીને ફાઇલ પસંદ કરો", + // "process.new.parameter.integer.required": "Parameter value is required", "process.new.parameter.integer.required": "પરિમાણ મૂલ્ય જરૂરી છે", + // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "પરિમાણ મૂલ્ય જરૂરી છે", + // "process.new.parameter.type.value": "value", "process.new.parameter.type.value": "મૂલ્ય", + // "process.new.parameter.type.file": "file", "process.new.parameter.type.file": "ફાઇલ", - "process.new.parameter.required.missing": "નીચેના પરિમાણો જરૂરી છે પરંતુ હજી સુધી ગૂમ છે:", + // "process.new.parameter.required.missing": "The following parameters are required but still missing:", + // TODO New key - Add a translation + "process.new.parameter.required.missing": "The following parameters are required but still missing:", + // "process.new.notification.success.title": "Success", "process.new.notification.success.title": "સફળતા", + // "process.new.notification.success.content": "The process was successfully created", "process.new.notification.success.content": "પ્રક્રિયા સફળતાપૂર્વક બનાવવામાં આવી", + // "process.new.notification.error.title": "Error", "process.new.notification.error.title": "ભૂલ", + // "process.new.notification.error.content": "An error occurred while creating this process", "process.new.notification.error.content": "આ પ્રક્રિયા બનાવતી વખતે ભૂલ આવી", + // "process.new.notification.error.max-upload.content": "The file exceeds the maximum upload size", "process.new.notification.error.max-upload.content": "ફાઇલ મહત્તમ અપલોડ કદથી વધુ છે", + // "process.new.header": "Create a new process", "process.new.header": "નવી પ્રક્રિયા બનાવો", + // "process.new.title": "Create a new process", "process.new.title": "નવી પ્રક્રિયા બનાવો", + // "process.new.breadcrumbs": "Create a new process", "process.new.breadcrumbs": "નવી પ્રક્રિયા બનાવો", + // "process.detail.arguments": "Arguments", "process.detail.arguments": "દલીલો", + // "process.detail.arguments.empty": "This process doesn't contain any arguments", "process.detail.arguments.empty": "આ પ્રક્રિયામાં કોઈ દલીલો નથી", + // "process.detail.back": "Back", "process.detail.back": "પાછા", + // "process.detail.output": "Process Output", "process.detail.output": "પ્રક્રિયા આઉટપુટ", + // "process.detail.logs.button": "Retrieve process output", "process.detail.logs.button": "પ્રક્રિયા આઉટપુટ મેળવો", + // "process.detail.logs.loading": "Retrieving", "process.detail.logs.loading": "મેળવી રહ્યા છે", + // "process.detail.logs.none": "This process has no output", "process.detail.logs.none": "આ પ્રક્રિયામાં કોઈ આઉટપુટ નથી", + // "process.detail.output-files": "Output Files", "process.detail.output-files": "આઉટપુટ ફાઇલો", + // "process.detail.output-files.empty": "This process doesn't contain any output files", "process.detail.output-files.empty": "આ પ્રક્રિયામાં કોઈ આઉટપુટ ફાઇલો નથી", + // "process.detail.script": "Script", "process.detail.script": "સ્ક્રિપ્ટ", - "process.detail.title": "પ્રક્રિયા: {{ id }} - {{ name }}", + // "process.detail.title": "Process: {{ id }} - {{ name }}", + // TODO New key - Add a translation + "process.detail.title": "Process: {{ id }} - {{ name }}", + // "process.detail.start-time": "Start time", "process.detail.start-time": "પ્રારંભ સમય", + // "process.detail.end-time": "Finish time", "process.detail.end-time": "સમાપ્તિ સમય", + // "process.detail.status": "Status", "process.detail.status": "સ્થિતિ", + // "process.detail.create": "Create similar process", "process.detail.create": "સમાન પ્રક્રિયા બનાવો", + // "process.detail.actions": "Actions", "process.detail.actions": "ક્રિયાઓ", + // "process.detail.delete.button": "Delete process", "process.detail.delete.button": "પ્રક્રિયા કાઢી નાખો", + // "process.detail.delete.header": "Delete process", "process.detail.delete.header": "પ્રક્રિયા કાઢી નાખો", + // "process.detail.delete.body": "Are you sure you want to delete the current process?", "process.detail.delete.body": "શું તમે વર્તમાન પ્રક્રિયા કાઢી નાખવા માંગો છો?", + // "process.detail.delete.cancel": "Cancel", "process.detail.delete.cancel": "રદ કરો", + // "process.detail.delete.confirm": "Delete process", "process.detail.delete.confirm": "પ્રક્રિયા કાઢી નાખો", + // "process.detail.delete.success": "The process was successfully deleted.", "process.detail.delete.success": "પ્રક્રિયા સફળતાપૂર્વક કાઢી નાખવામાં આવી.", + // "process.detail.delete.error": "Something went wrong when deleting the process", "process.detail.delete.error": "પ્રક્રિયા કાઢી નાખતી વખતે કંઈક ખોટું થયું", + // "process.detail.refreshing": "Auto-refreshing…", "process.detail.refreshing": "ઓટો-રિફ્રેશ થઈ રહ્યું છે…", + // "process.overview.table.completed.info": "Finish time (UTC)", "process.overview.table.completed.info": "સમાપ્તિ સમય (UTC)", + // "process.overview.table.completed.title": "Succeeded processes", "process.overview.table.completed.title": "સફળ પ્રક્રિયાઓ", + // "process.overview.table.empty": "No matching processes found.", "process.overview.table.empty": "કોઈ મેળ ખાતી પ્રક્રિયાઓ મળી નથી.", + // "process.overview.table.failed.info": "Finish time (UTC)", "process.overview.table.failed.info": "સમાપ્તિ સમય (UTC)", + // "process.overview.table.failed.title": "Failed processes", "process.overview.table.failed.title": "નિષ્ફળ પ્રક્રિયાઓ", + // "process.overview.table.finish": "Finish time (UTC)", "process.overview.table.finish": "સમાપ્તિ સમય (UTC)", + // "process.overview.table.id": "Process ID", "process.overview.table.id": "પ્રક્રિયા ID", + // "process.overview.table.name": "Name", "process.overview.table.name": "નામ", + // "process.overview.table.running.info": "Start time (UTC)", "process.overview.table.running.info": "પ્રારંભ સમય (UTC)", + // "process.overview.table.running.title": "Running processes", "process.overview.table.running.title": "ચાલતી પ્રક્રિયાઓ", + // "process.overview.table.scheduled.info": "Creation time (UTC)", "process.overview.table.scheduled.info": "રચના સમય (UTC)", + // "process.overview.table.scheduled.title": "Scheduled processes", "process.overview.table.scheduled.title": "નિયત પ્રક્રિયાઓ", + // "process.overview.table.start": "Start time (UTC)", "process.overview.table.start": "પ્રારંભ સમય (UTC)", + // "process.overview.table.status": "Status", "process.overview.table.status": "સ્થિતિ", + // "process.overview.table.user": "User", "process.overview.table.user": "વપરાશકર્તા", + // "process.overview.title": "Processes Overview", "process.overview.title": "પ્રક્રિયાઓની ઝાંખી", + // "process.overview.breadcrumbs": "Processes Overview", "process.overview.breadcrumbs": "પ્રક્રિયાઓની ઝાંખી", + // "process.overview.new": "New", "process.overview.new": "નવું", + // "process.overview.table.actions": "Actions", "process.overview.table.actions": "ક્રિયાઓ", + // "process.overview.delete": "Delete {{count}} processes", "process.overview.delete": "{{count}} પ્રક્રિયાઓ કાઢી નાખો", + // "process.overview.delete-process": "Delete process", "process.overview.delete-process": "પ્રક્રિયા કાઢી નાખો", + // "process.overview.delete.clear": "Clear delete selection", "process.overview.delete.clear": "કાઢી નાખવાની પસંદગી સાફ કરો", + // "process.overview.delete.processing": "{{count}} process(es) are being deleted. Please wait for the deletion to fully complete. Note that this can take a while.", "process.overview.delete.processing": "{{count}} પ્રક્રિયા(ઓ) કાઢી નાખવામાં આવી રહી છે. કૃપા કરીને સંપૂર્ણ રીતે કાઢી નાખવા માટે રાહ જુઓ. નોંધો કે આમાં થોડો સમય લાગી શકે છે.", + // "process.overview.delete.body": "Are you sure you want to delete {{count}} process(es)?", "process.overview.delete.body": "શું તમે ખરેખર {{count}} પ્રક્રિયા(ઓ) કાઢી નાખવા માંગો છો?", + // "process.overview.delete.header": "Delete processes", "process.overview.delete.header": "પ્રક્રિયાઓ કાઢી નાખો", + // "process.overview.unknown.user": "Unknown", "process.overview.unknown.user": "અજ્ઞાત", + // "process.bulk.delete.error.head": "Error on deleteing process", "process.bulk.delete.error.head": "પ્રક્રિયા કાઢી નાખવામાં ભૂલ", + // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ", "process.bulk.delete.error.body": "પ્રક્રિયા ID {{processId}} સાથેની પ્રક્રિયા કાઢી શકાઈ નથી. બાકી રહેલી પ્રક્રિયાઓ કાઢી નાખવાનું ચાલુ રહેશે.", + // "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted", "process.bulk.delete.success": "{{count}} પ્રક્રિયા(ઓ) સફળતાપૂર્વક કાઢી નાખવામાં આવી છે", + // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "પ્રોફાઇલ અપડેટ કરો", + // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + // TODO New key - Add a translation + "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + + // "profile.card.accessibility.header": "Accessibility", + // TODO New key - Add a translation + "profile.card.accessibility.header": "Accessibility", + + // "profile.card.accessibility.link": "Go to Accessibility Settings Page", + // TODO New key - Add a translation + "profile.card.accessibility.link": "Go to Accessibility Settings Page", + + // "profile.card.identify": "Identify", "profile.card.identify": "ઓળખો", + // "profile.card.security": "Security", "profile.card.security": "સુરક્ષા", + // "profile.form.submit": "Save", "profile.form.submit": "સાચવો", + // "profile.groups.head": "Authorization groups you belong to", "profile.groups.head": "તમે જે અધિકૃતતા જૂથો સાથે જોડાયેલા છો", + // "profile.special.groups.head": "Authorization special groups you belong to", "profile.special.groups.head": "તમે જે અધિકૃતતા વિશેષ જૂથો સાથે જોડાયેલા છો", + // "profile.metadata.form.error.firstname.required": "First Name is required", "profile.metadata.form.error.firstname.required": "પ્રથમ નામ જરૂરી છે", + // "profile.metadata.form.error.lastname.required": "Last Name is required", "profile.metadata.form.error.lastname.required": "છેલ્લું નામ જરૂરી છે", + // "profile.metadata.form.label.email": "Email Address", "profile.metadata.form.label.email": "ઇમેઇલ સરનામું", + // "profile.metadata.form.label.firstname": "First Name", "profile.metadata.form.label.firstname": "પ્રથમ નામ", + // "profile.metadata.form.label.language": "Language", "profile.metadata.form.label.language": "ભાષા", + // "profile.metadata.form.label.lastname": "Last Name", "profile.metadata.form.label.lastname": "છેલ્લું નામ", + // "profile.metadata.form.label.phone": "Contact Telephone", "profile.metadata.form.label.phone": "સંપર્ક ટેલિફોન", + // "profile.metadata.form.notifications.success.content": "Your changes to the profile were saved.", "profile.metadata.form.notifications.success.content": "તમારા પ્રોફાઇલ માટેના ફેરફારો સાચવવામાં આવ્યા હતા.", + // "profile.metadata.form.notifications.success.title": "Profile saved", "profile.metadata.form.notifications.success.title": "પ્રોફાઇલ સાચવી", + // "profile.notifications.warning.no-changes.content": "No changes were made to the Profile.", "profile.notifications.warning.no-changes.content": "પ્રોફાઇલમાં કોઈ ફેરફારો કરવામાં આવ્યા નથી.", + // "profile.notifications.warning.no-changes.title": "No changes", "profile.notifications.warning.no-changes.title": "કોઈ ફેરફારો નથી", + // "profile.security.form.error.matching-passwords": "The passwords do not match.", "profile.security.form.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", + // "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.", "profile.security.form.info": "વૈકલ્પિક રીતે, તમે નીચેના બોક્સમાં નવો પાસવર્ડ દાખલ કરી શકો છો અને તેને ફરીથી تایپ કરીને પુષ્ટિ કરી શકો છો.", + // "profile.security.form.label.password": "Password", "profile.security.form.label.password": "પાસવર્ડ", + // "profile.security.form.label.passwordrepeat": "Retype to confirm", "profile.security.form.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી تایપ કરો", + // "profile.security.form.label.current-password": "Current password", "profile.security.form.label.current-password": "વર્તમાન પાસવર્ડ", + // "profile.security.form.notifications.success.content": "Your changes to the password were saved.", "profile.security.form.notifications.success.content": "તમારા પાસવર્ડ માટેના ફેરફારો સાચવવામાં આવ્યા હતા.", + // "profile.security.form.notifications.success.title": "Password saved", "profile.security.form.notifications.success.title": "પાસવર્ડ સાચવી", + // "profile.security.form.notifications.error.title": "Error changing passwords", "profile.security.form.notifications.error.title": "પાસવર્ડ બદલવામાં ભૂલ", + // "profile.security.form.notifications.error.change-failed": "An error occurred while trying to change the password. Please check if the current password is correct.", "profile.security.form.notifications.error.change-failed": "પાસવર્ડ બદલવાનો પ્રયાસ કરતી વખતે ભૂલ આવી. કૃપા કરીને તપાસો કે વર્તમાન પાસવર્ડ સાચો છે કે નહીં.", + // "profile.security.form.notifications.error.not-same": "The provided passwords are not the same.", "profile.security.form.notifications.error.not-same": "પ્રદાન કરેલા પાસવર્ડો એકસરખા નથી.", + // "profile.security.form.notifications.error.general": "Please fill required fields of security form.", "profile.security.form.notifications.error.general": "કૃપા કરીને સુરક્ષા ફોર્મના જરૂરી ક્ષેત્રો ભરો.", + // "profile.title": "Update Profile", "profile.title": "પ્રોફાઇલ અપડેટ કરો", + // "profile.card.researcher": "Researcher Profile", "profile.card.researcher": "શોધક પ્રોફાઇલ", + // "project.listelement.badge": "Research Project", "project.listelement.badge": "શોધ પ્રોજેક્ટ", + // "project.page.contributor": "Contributors", "project.page.contributor": "યોગદાનકર્તાઓ", + // "project.page.description": "Description", "project.page.description": "વર્ણન", + // "project.page.edit": "Edit this item", "project.page.edit": "આ આઇટમ સંપાદિત કરો", + // "project.page.expectedcompletion": "Expected Completion", "project.page.expectedcompletion": "અપેક્ષિત પૂર્ણતા", + // "project.page.funder": "Funders", "project.page.funder": "ફંડર્સ", + // "project.page.id": "ID", "project.page.id": "ID", + // "project.page.keyword": "Keywords", "project.page.keyword": "કીવર્ડ્સ", + // "project.page.options": "Options", "project.page.options": "વિકલ્પો", + // "project.page.status": "Status", "project.page.status": "સ્થિતિ", - "project.page.titleprefix": "શોધ પ્રોજેક્ટ: ", + // "project.page.titleprefix": "Research Project: ", + // TODO New key - Add a translation + "project.page.titleprefix": "Research Project: ", + // "project.search.results.head": "Project Search Results", "project.search.results.head": "પ્રોજેક્ટ શોધ પરિણામો", + // "project-relationships.search.results.head": "Project Search Results", "project-relationships.search.results.head": "પ્રોજેક્ટ શોધ પરિણામો", + // "publication.listelement.badge": "Publication", "publication.listelement.badge": "પ્રકાશન", + // "publication.page.description": "Description", "publication.page.description": "વર્ણન", + // "publication.page.edit": "Edit this item", "publication.page.edit": "આ આઇટમ સંપાદિત કરો", + // "publication.page.journal-issn": "Journal ISSN", "publication.page.journal-issn": "જર્નલ ISSN", + // "publication.page.journal-title": "Journal Title", "publication.page.journal-title": "જર્નલ શીર્ષક", + // "publication.page.publisher": "Publisher", "publication.page.publisher": "પ્રકાશક", + // "publication.page.options": "Options", "publication.page.options": "વિકલ્પો", - "publication.page.titleprefix": "પ્રકાશન: ", + // "publication.page.titleprefix": "Publication: ", + // TODO New key - Add a translation + "publication.page.titleprefix": "Publication: ", + // "publication.page.volume-title": "Volume Title", "publication.page.volume-title": "વોલ્યુમ શીર્ષક", + // "publication.search.results.head": "Publication Search Results", "publication.search.results.head": "પ્રકાશન શોધ પરિણામો", + // "publication-relationships.search.results.head": "Publication Search Results", "publication-relationships.search.results.head": "પ્રકાશન શોધ પરિણામો", + // "publication.search.title": "Publication Search", "publication.search.title": "પ્રકાશન શોધ", + // "media-viewer.next": "Next", "media-viewer.next": "આગલું", + // "media-viewer.previous": "Previous", "media-viewer.previous": "પાછલું", + // "media-viewer.playlist": "Playlist", "media-viewer.playlist": "પ્લેલિસ્ટ", + // "suggestion.loading": "Loading ...", "suggestion.loading": "લોડ થઈ રહ્યું છે ...", + // "suggestion.title": "Publication Claim", "suggestion.title": "પ્રકાશન દાવો", + // "suggestion.title.breadcrumbs": "Publication Claim", "suggestion.title.breadcrumbs": "પ્રકાશન દાવો", + // "suggestion.targets.description": "Below you can see all the suggestions ", "suggestion.targets.description": "નીચે તમે બધા સૂચનો જોઈ શકો છો", + // "suggestion.targets": "Current Suggestions", "suggestion.targets": "વર્તમાન સૂચનો", + // "suggestion.table.name": "Researcher Name", "suggestion.table.name": "શોધકનું નામ", + // "suggestion.table.actions": "Actions", "suggestion.table.actions": "ક્રિયાઓ", + // "suggestion.button.review": "Review {{ total }} suggestion(s)", "suggestion.button.review": "{{ total }} સૂચન(ઓ)ની સમીક્ષા કરો", + // "suggestion.button.review.title": "Review {{ total }} suggestion(s) for ", "suggestion.button.review.title": "{{ total }} સૂચન(ઓ) માટેની સમીક્ષા કરો", + // "suggestion.noTargets": "No target found.", "suggestion.noTargets": "કોઈ લક્ષ્ય મળ્યું નથી.", + // "suggestion.target.error.service.retrieve": "An error occurred while loading the Suggestion targets", "suggestion.target.error.service.retrieve": "સૂચન લક્ષ્યો લોડ કરતી વખતે ભૂલ આવી", + // "suggestion.evidence.type": "Type", "suggestion.evidence.type": "પ્રકાર", + // "suggestion.evidence.score": "Score", "suggestion.evidence.score": "સ્કોર", + // "suggestion.evidence.notes": "Notes", "suggestion.evidence.notes": "નોંધો", + // "suggestion.approveAndImport": "Approve & import", "suggestion.approveAndImport": "મંજૂર કરો અને આયાત કરો", + // "suggestion.approveAndImport.success": "The suggestion has been imported successfully. View.", "suggestion.approveAndImport.success": "સૂચન સફળતાપૂર્વક આયાત કરવામાં આવ્યું છે. જુઓ.", + // "suggestion.approveAndImport.bulk": "Approve & import Selected", "suggestion.approveAndImport.bulk": "પસંદ કરેલને મંજૂર કરો અને આયાત કરો", + // "suggestion.approveAndImport.bulk.success": "{{ count }} suggestions have been imported successfully ", "suggestion.approveAndImport.bulk.success": "{{ count }} સૂચનો સફળતાપૂર્વક આયાત કરવામાં આવ્યા છે", + // "suggestion.approveAndImport.bulk.error": "{{ count }} suggestions haven't been imported due to unexpected server errors", "suggestion.approveAndImport.bulk.error": "અનપેક્ષિત સર્વર ભૂલોને કારણે {{ count }} સૂચનો આયાત કરવામાં આવ્યા નથી", + // "suggestion.ignoreSuggestion": "Ignore Suggestion", "suggestion.ignoreSuggestion": "સૂચન અવગણો", + // "suggestion.ignoreSuggestion.success": "The suggestion has been discarded", "suggestion.ignoreSuggestion.success": "સૂચન રદ કરવામાં આવ્યું છે", + // "suggestion.ignoreSuggestion.bulk": "Ignore Suggestion Selected", "suggestion.ignoreSuggestion.bulk": "પસંદ કરેલ સૂચન અવગણો", + // "suggestion.ignoreSuggestion.bulk.success": "{{ count }} suggestions have been discarded ", "suggestion.ignoreSuggestion.bulk.success": "{{ count }} સૂચનો રદ કરવામાં આવ્યા છે", + // "suggestion.ignoreSuggestion.bulk.error": "{{ count }} suggestions haven't been discarded due to unexpected server errors", "suggestion.ignoreSuggestion.bulk.error": "અનપેક્ષિત સર્વર ભૂલોને કારણે {{ count }} સૂચનો રદ કરવામાં આવ્યા નથી", + // "suggestion.seeEvidence": "See evidence", "suggestion.seeEvidence": "પુરાવા જુઓ", + // "suggestion.hideEvidence": "Hide evidence", "suggestion.hideEvidence": "પુરાવા છુપાવો", + // "suggestion.suggestionFor": "Suggestions for", "suggestion.suggestionFor": "માટેના સૂચનો", + // "suggestion.suggestionFor.breadcrumb": "Suggestions for {{ name }}", "suggestion.suggestionFor.breadcrumb": "{{ name }} માટેના સૂચનો", + // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "OpenAIRE ગ્રાફ", + // "suggestion.source.openalex": "OpenAlex", "suggestion.source.openalex": "OpenAlex", + // "suggestion.from.source": "from the ", "suggestion.from.source": "થી", + // "suggestion.count.missing": "You have no publication claims left", "suggestion.count.missing": "તમારા પાસે કોઈ પ્રકાશન દાવા બાકી નથી", + // "suggestion.totalScore": "Total Score", "suggestion.totalScore": "કુલ સ્કોર", + // "suggestion.type.openaire": "OpenAIRE", "suggestion.type.openaire": "OpenAIRE", + // "register-email.title": "New user registration", "register-email.title": "નવા વપરાશકર્તા નોંધણી", + // "register-page.create-profile.header": "Create Profile", "register-page.create-profile.header": "પ્રોફાઇલ બનાવો", + // "register-page.create-profile.identification.header": "Identify", "register-page.create-profile.identification.header": "ઓળખો", + // "register-page.create-profile.identification.email": "Email Address", "register-page.create-profile.identification.email": "ઇમેઇલ સરનામું", + // "register-page.create-profile.identification.first-name": "First Name *", "register-page.create-profile.identification.first-name": "પ્રથમ નામ *", + // "register-page.create-profile.identification.first-name.error": "Please fill in a First Name", "register-page.create-profile.identification.first-name.error": "કૃપા કરીને પ્રથમ નામ ભરો", + // "register-page.create-profile.identification.last-name": "Last Name *", "register-page.create-profile.identification.last-name": "છેલ્લું નામ *", + // "register-page.create-profile.identification.last-name.error": "Please fill in a Last Name", "register-page.create-profile.identification.last-name.error": "કૃપા કરીને છેલ્લું નામ ભરો", + // "register-page.create-profile.identification.contact": "Contact Telephone", "register-page.create-profile.identification.contact": "સંપર્ક ટેલિફોન", + // "register-page.create-profile.identification.language": "Language", "register-page.create-profile.identification.language": "ભાષા", + // "register-page.create-profile.security.header": "Security", "register-page.create-profile.security.header": "સુરક્ષા", + // "register-page.create-profile.security.info": "Please enter a password in the box below, and confirm it by typing it again into the second box.", "register-page.create-profile.security.info": "કૃપા કરીને નીચેના બોક્સમાં પાસવર્ડ દાખલ કરો અને તેને ફરીથી تایપ કરીને પુષ્ટિ કરો.", + // "register-page.create-profile.security.label.password": "Password *", "register-page.create-profile.security.label.password": "પાસવર્ડ *", + // "register-page.create-profile.security.label.passwordrepeat": "Retype to confirm *", "register-page.create-profile.security.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી تایપ કરો *", + // "register-page.create-profile.security.error.empty-password": "Please enter a password in the box below.", "register-page.create-profile.security.error.empty-password": "કૃપા કરીને નીચેના બોક્સમાં પાસવર્ડ દાખલ કરો.", + // "register-page.create-profile.security.error.matching-passwords": "The passwords do not match.", "register-page.create-profile.security.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", + // "register-page.create-profile.submit": "Complete Registration", "register-page.create-profile.submit": "નોંધણી પૂર્ણ કરો", + // "register-page.create-profile.submit.error.content": "Something went wrong while registering a new user.", "register-page.create-profile.submit.error.content": "નવા વપરાશકર્તા નોંધણી કરતી વખતે કંઈક ખોટું થયું.", + // "register-page.create-profile.submit.error.head": "Registration failed", "register-page.create-profile.submit.error.head": "નોંધણી નિષ્ફળ", + // "register-page.create-profile.submit.success.content": "The registration was successful. You have been logged in as the created user.", "register-page.create-profile.submit.success.content": "નોંધણી સફળ રહી. તમે બનાવેલ વપરાશકર્તા તરીકે લોગિન થયા છો.", + // "register-page.create-profile.submit.success.head": "Registration completed", "register-page.create-profile.submit.success.head": "નોંધણી પૂર્ણ", + // "register-page.registration.header": "New user registration", "register-page.registration.header": "નવા વપરાશકર્તા નોંધણી", + // "register-page.registration.info": "Register an account to subscribe to collections for email updates, and submit new items to DSpace.", "register-page.registration.info": "ઇમેઇલ અપડેટ્સ માટે સંગ્રહો માટે સબ્સ્ક્રાઇબ કરવા અને DSpace માં નવા આઇટમ્સ સબમિટ કરવા માટે એકાઉન્ટ નોંધણી કરો.", + // "register-page.registration.email": "Email Address *", "register-page.registration.email": "ઇમેઇલ સરનામું *", + // "register-page.registration.email.error.required": "Please fill in an email address", "register-page.registration.email.error.required": "કૃપા કરીને ઇમેઇલ સરનામું ભરો", + // "register-page.registration.email.error.not-email-form": "Please fill in a valid email address.", "register-page.registration.email.error.not-email-form": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું ભરો.", - "register-page.registration.email.error.not-valid-domain": "અનુમતિ આપેલ ડોમેઇન સાથે ઇમેઇલનો ઉપયોગ કરો: {{ domains }}", + // "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + // TODO New key - Add a translation + "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + // "register-page.registration.email.hint": "This address will be verified and used as your login name.", "register-page.registration.email.hint": "આ સરનામું ચકાસવામાં આવશે અને તમારા લોગિન નામ તરીકે ઉપયોગમાં લેવામાં આવશે.", + // "register-page.registration.submit": "Register", "register-page.registration.submit": "નોંધણી કરો", + // "register-page.registration.success.head": "Verification email sent", "register-page.registration.success.head": "ચકાસણી ઇમેઇલ મોકલવામાં આવ્યું", + // "register-page.registration.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "register-page.registration.success.content": "{{ email }} પર એક ઇમેઇલ મોકલવામાં આવ્યું છે જેમાં વિશેષ URL અને વધુ સૂચનાઓ છે.", + // "register-page.registration.error.head": "Error when trying to register email", "register-page.registration.error.head": "ઇમેઇલ નોંધણી કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - "register-page.registration.error.content": "નીચેના ઇમેઇલ સરનામું નોંધણી કરતી વખતે ભૂલ આવી: {{ email }}", + // "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + // TODO New key - Add a translation + "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + // "register-page.registration.error.recaptcha": "Error when trying to authenticate with recaptcha", "register-page.registration.error.recaptcha": "recaptcha સાથે પ્રમાણિકતા કરવાનો પ્રયાસ કરતી વખતે ભૂલ", + // "register-page.registration.google-recaptcha.must-accept-cookies": "In order to register you must accept the Registration and Password recovery (Google reCaptcha) cookies.", "register-page.registration.google-recaptcha.must-accept-cookies": "નોંધણી કરવા માટે તમારે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ (Google reCaptcha) કૂકીઝ સ્વીકારવી પડશે.", + // "register-page.registration.error.maildomain": "This email address is not on the list of domains who can register. Allowed domains are {{ domains }}", "register-page.registration.error.maildomain": "આ ઇમેઇલ સરનામું તે ડોમેઇનની યાદીમાં નથી જે નોંધણી કરી શકે છે. અનુમતિ આપેલ ડોમેઇન છે {{ domains }}", + // "register-page.registration.google-recaptcha.open-cookie-settings": "Open cookie settings", "register-page.registration.google-recaptcha.open-cookie-settings": "કૂકી સેટિંગ્સ ખોલો", + // "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", + // "register-page.registration.google-recaptcha.notification.message.error": "An error occurred during reCaptcha verification", "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha ચકાસણી દરમિયાન ભૂલ આવી", + // "register-page.registration.google-recaptcha.notification.message.expired": "Verification expired. Please verify again.", "register-page.registration.google-recaptcha.notification.message.expired": "ચકાસણી સમાપ્ત થઈ. કૃપા કરીને ફરીથી ચકાસો.", + // "register-page.registration.info.maildomain": "Accounts can be registered for mail addresses of the domains", "register-page.registration.info.maildomain": "એકાઉન્ટ્સને ડોમેઇનના મેલ સરનામા માટે નોંધણી કરી શકાય છે", + // "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items", "relationships.add.error.relationship-type.content": "સંબંધ પ્રકાર {{ type }} માટે યોગ્ય મેળ નથી મળ્યો બે આઇટમ્સ વચ્ચે", + // "relationships.add.error.server.content": "The server returned an error", "relationships.add.error.server.content": "સર્વરે ભૂલ પરત કરી", + // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "સંબંધ ઉમેરવામાં અસમર્થ", - "relationships.isAuthorOf": "લેખકો", + // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + + // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + + // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - "relationships.isAuthorOf.Person": "લેખકો (વ્યક્તિઓ)", + // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - "relationships.isAuthorOf.OrgUnit": "લેખકો (સંસ્થાકીય એકમો)", + // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - "relationships.isIssueOf": "જર્નલ ઇશ્યુઝ", + // "relationships.Publication.isContributorOfPublication.Person": "Contributor", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.Person": "Contributor", - "relationships.isIssueOf.JournalIssue": "જર્નલ ઇશ્યુ", + // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - "relationships.isJournalIssueOf": "જર્નલ ઇશ્યુ", + // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - "relationships.isJournalOf": "જર્નલ્સ", + // "relationships.Person.isProjectOfPerson.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Person.isProjectOfPerson.Project": "Research Projects", - "relationships.isJournalVolumeOf": "જર્નલ વોલ્યુમ", + // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - "relationships.isOrgUnitOf": "સંસ્થાકીય એકમો", + // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - "relationships.isPersonOf": "લેખકો", + // "relationships.Project.isPublicationOfProject.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Project.isPublicationOfProject.Publication": "Publications", - "relationships.isProjectOf": "શોધ પ્રોજેક્ટ્સ", + // "relationships.Project.isPersonOfProject.Person": "Authors", + // TODO New key - Add a translation + "relationships.Project.isPersonOfProject.Person": "Authors", - "relationships.isPublicationOf": "પ્રકાશનો", + // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - "relationships.isPublicationOfJournalIssue": "લેખો", + // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + // TODO New key - Add a translation + "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - "relationships.isSingleJournalOf": "જર્નલ", + // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - "relationships.isSingleVolumeOf": "જર્નલ વોલ્યુમ", + // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + // TODO New key - Add a translation + "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - "relationships.isVolumeOf": "જર્નલ વોલ્યુમ", + // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - "relationships.isVolumeOf.JournalVolume": "જર્નલ વોલ્યુમ", + // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - "relationships.isContributorOf": "યોગદાનકર્તાઓ", + // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - "relationships.isContributorOf.OrgUnit": "યોગદાનકર્તા (સંસ્થાકીય એકમ)", + // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - "relationships.isContributorOf.Person": "યોગદાનકર્તા", + // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - "relationships.isFundingAgencyOf.OrgUnit": "ફંડર", + // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + // TODO New key - Add a translation + "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + // TODO New key - Add a translation + "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + + // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + + // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + + // "repository.image.logo": "Repository logo", "repository.image.logo": "રિપોઝિટરી લોગો", + // "repository.title": "DSpace Repository", "repository.title": "DSpace રિપોઝિટરી", - "repository.title.prefix": "DSpace રિપોઝિટરી :: ", + // "repository.title.prefix": "DSpace Repository :: ", + // TODO New key - Add a translation + "repository.title.prefix": "DSpace Repository :: ", + // "resource-policies.add.button": "Add", "resource-policies.add.button": "ઉમેરો", + // "resource-policies.add.for.": "Add a new policy", "resource-policies.add.for.": "નવી નીતિ ઉમેરો", + // "resource-policies.add.for.bitstream": "Add a new Bitstream policy", "resource-policies.add.for.bitstream": "નવી બિટસ્ટ્રીમ નીતિ ઉમેરો", + // "resource-policies.add.for.bundle": "Add a new Bundle policy", "resource-policies.add.for.bundle": "નવી બંડલ નીતિ ઉમેરો", + // "resource-policies.add.for.item": "Add a new Item policy", "resource-policies.add.for.item": "નવી આઇટમ નીતિ ઉમેરો", + // "resource-policies.add.for.community": "Add a new Community policy", "resource-policies.add.for.community": "નવી સમુદાય નીતિ ઉમેરો", + // "resource-policies.add.for.collection": "Add a new Collection policy", "resource-policies.add.for.collection": "નવી સંગ્રહ નીતિ ઉમેરો", + // "resource-policies.create.page.heading": "Create new resource policy for ", "resource-policies.create.page.heading": "માટે નવી સંસાધન નીતિ બનાવો", + // "resource-policies.create.page.failure.content": "An error occurred while creating the resource policy.", "resource-policies.create.page.failure.content": "સંસાધન નીતિ બનાવતી વખતે ભૂલ આવી.", + // "resource-policies.create.page.success.content": "Operation successful", "resource-policies.create.page.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", + // "resource-policies.create.page.title": "Create new resource policy", "resource-policies.create.page.title": "નવી સંસાધન નીતિ બનાવો", + // "resource-policies.delete.btn": "Delete selected", "resource-policies.delete.btn": "પસંદ કરેલને કાઢી નાખો", + // "resource-policies.delete.btn.title": "Delete selected resource policies", "resource-policies.delete.btn.title": "પસંદ કરેલ સંસાધન નીતિઓ કાઢી નાખો", + // "resource-policies.delete.failure.content": "An error occurred while deleting selected resource policies.", "resource-policies.delete.failure.content": "પસંદ કરેલ સંસાધન નીતિઓ કાઢી નાખતી વખતે ભૂલ આવી.", + // "resource-policies.delete.success.content": "Operation successful", "resource-policies.delete.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", + // "resource-policies.edit.page.heading": "Edit resource policy ", "resource-policies.edit.page.heading": "સંસાધન નીતિ સંપાદિત કરો", + // "resource-policies.edit.page.failure.content": "An error occurred while editing the resource policy.", "resource-policies.edit.page.failure.content": "સંસાધન નીતિ સંપાદિત કરતી વખતે ભૂલ આવી.", + // "resource-policies.edit.page.target-failure.content": "An error occurred while editing the target (ePerson or group) of the resource policy.", "resource-policies.edit.page.target-failure.content": "સંસાધન નીતિના લક્ષ્ય (ePerson અથવા જૂથ) સંપાદિત કરતી વખતે ભૂલ આવી.", + // "resource-policies.edit.page.other-failure.content": "An error occurred while editing the resource policy. The target (ePerson or group) has been successfully updated.", "resource-policies.edit.page.other-failure.content": "સંસાધન નીતિ સંપાદિત કરતી વખતે ભૂલ આવી. લક્ષ્ય (ePerson અથવા જૂથ) સફળતાપૂર્વક અપડેટ થયું છે.", + // "resource-policies.edit.page.success.content": "Operation successful", "resource-policies.edit.page.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", + // "resource-policies.edit.page.title": "Edit resource policy", "resource-policies.edit.page.title": "સંસાધન નીતિ સંપાદિત કરો", + // "resource-policies.form.action-type.label": "Select the action type", "resource-policies.form.action-type.label": "ક્રિયા પ્રકાર પસંદ કરો", + // "resource-policies.form.action-type.required": "You must select the resource policy action.", "resource-policies.form.action-type.required": "તમારે સંસાધન નીતિ ક્રિયા પસંદ કરવી પડશે.", + // "resource-policies.form.eperson-group-list.label": "The eperson or group that will be granted the permission", "resource-policies.form.eperson-group-list.label": "ePerson અથવા જૂથ જેને પરવાનગી આપવામાં આવશે", + // "resource-policies.form.eperson-group-list.select.btn": "Select", "resource-policies.form.eperson-group-list.select.btn": "પસંદ કરો", + // "resource-policies.form.eperson-group-list.tab.eperson": "Search for a ePerson", "resource-policies.form.eperson-group-list.tab.eperson": "ePerson માટે શોધો", + // "resource-policies.form.eperson-group-list.tab.group": "Search for a group", "resource-policies.form.eperson-group-list.tab.group": "જૂથ માટે શોધો", + // "resource-policies.form.eperson-group-list.table.headers.action": "Action", "resource-policies.form.eperson-group-list.table.headers.action": "ક્રિયા", + // "resource-policies.form.eperson-group-list.table.headers.id": "ID", "resource-policies.form.eperson-group-list.table.headers.id": "ID", + // "resource-policies.form.eperson-group-list.table.headers.name": "Name", "resource-policies.form.eperson-group-list.table.headers.name": "નામ", + // "resource-policies.form.eperson-group-list.modal.header": "Cannot change type", "resource-policies.form.eperson-group-list.modal.header": "પ્રકાર બદલી શકાતો નથી", + // "resource-policies.form.eperson-group-list.modal.text1.toGroup": "It is not possible to replace an ePerson with a group.", "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePerson ને જૂથ સાથે બદલી શકાતું નથી.", + // "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "It is not possible to replace a group with an ePerson.", "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "જૂથને ePerson સાથે બદલી શકાતું નથી.", + // "resource-policies.form.eperson-group-list.modal.text2": "Delete the current resource policy and create a new one with the desired type.", "resource-policies.form.eperson-group-list.modal.text2": "વાંછિત પ્રકાર સાથે નવી નીતિ બનાવવા માટે વર્તમાન સંસાધન નીતિ કાઢી નાખો.", + // "resource-policies.form.eperson-group-list.modal.close": "Ok", "resource-policies.form.eperson-group-list.modal.close": "બરાબર", + // "resource-policies.form.date.end.label": "End Date", "resource-policies.form.date.end.label": "અંતિમ તારીખ", + // "resource-policies.form.date.start.label": "Start Date", "resource-policies.form.date.start.label": "પ્રારંભ તારીખ", + // "resource-policies.form.description.label": "Description", "resource-policies.form.description.label": "વર્ણન", + // "resource-policies.form.name.label": "Name", "resource-policies.form.name.label": "નામ", + // "resource-policies.form.name.hint": "Max 30 characters", "resource-policies.form.name.hint": "મહત્તમ 30 અક્ષરો", + // "resource-policies.form.policy-type.label": "Select the policy type", "resource-policies.form.policy-type.label": "નીતિનો પ્રકાર પસંદ કરો", + // "resource-policies.form.policy-type.required": "You must select the resource policy type.", "resource-policies.form.policy-type.required": "તમારે સંસાધન નીતિનો પ્રકાર પસંદ કરવો પડશે.", + // "resource-policies.table.headers.action": "Action", "resource-policies.table.headers.action": "ક્રિયા", + // "resource-policies.table.headers.date.end": "End Date", "resource-policies.table.headers.date.end": "અંતિમ તારીખ", + // "resource-policies.table.headers.date.start": "Start Date", "resource-policies.table.headers.date.start": "પ્રારંભ તારીખ", + // "resource-policies.table.headers.edit": "Edit", "resource-policies.table.headers.edit": "સંપાદિત કરો", + // "resource-policies.table.headers.edit.group": "Edit group", "resource-policies.table.headers.edit.group": "જૂથ સંપાદિત કરો", + // "resource-policies.table.headers.edit.policy": "Edit policy", "resource-policies.table.headers.edit.policy": "નીતિ સંપાદિત કરો", + // "resource-policies.table.headers.eperson": "EPerson", "resource-policies.table.headers.eperson": "ePerson", + // "resource-policies.table.headers.group": "Group", "resource-policies.table.headers.group": "જૂથ", + // "resource-policies.table.headers.select-all": "Select all", "resource-policies.table.headers.select-all": "બધા પસંદ કરો", + // "resource-policies.table.headers.deselect-all": "Deselect all", "resource-policies.table.headers.deselect-all": "બધા પસંદ ન કરો", + // "resource-policies.table.headers.select": "Select", "resource-policies.table.headers.select": "પસંદ કરો", + // "resource-policies.table.headers.deselect": "Deselect", "resource-policies.table.headers.deselect": "પસંદ ન કરો", + // "resource-policies.table.headers.id": "ID", "resource-policies.table.headers.id": "ID", + // "resource-policies.table.headers.name": "Name", "resource-policies.table.headers.name": "નામ", + // "resource-policies.table.headers.policyType": "type", "resource-policies.table.headers.policyType": "પ્રકાર", + // "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream", "resource-policies.table.headers.title.for.bitstream": "બિટસ્ટ્રીમ માટેની નીતિઓ", + // "resource-policies.table.headers.title.for.bundle": "Policies for Bundle", "resource-policies.table.headers.title.for.bundle": "બંડલ માટેની નીતિઓ", + // "resource-policies.table.headers.title.for.item": "Policies for Item", "resource-policies.table.headers.title.for.item": "આઇટમ માટેની નીતિઓ", + // "resource-policies.table.headers.title.for.community": "Policies for Community", "resource-policies.table.headers.title.for.community": "સમુદાય માટેની નીતિઓ", + // "resource-policies.table.headers.title.for.collection": "Policies for Collection", "resource-policies.table.headers.title.for.collection": "સંગ્રહ માટેની નીતિઓ", + // "root.skip-to-content": "Skip to main content", "root.skip-to-content": "મુખ્ય સામગ્રી પર જાઓ", + // "search.description": "", "search.description": "", + // "search.switch-configuration.title": "Show", "search.switch-configuration.title": "બતાવો", + // "search.title": "Search", "search.title": "શોધ", + // "search.breadcrumbs": "Search", "search.breadcrumbs": "શોધ", + // "search.search-form.placeholder": "Search the repository ...", "search.search-form.placeholder": "રિપોઝિટરીમાં શોધો ...", + // "search.filters.remove": "Remove filter of type {{ type }} with value {{ value }}", "search.filters.remove": "પ્રકાર {{ type }} સાથેનું મૂલ્ય {{ value }} દૂર કરો", + // "search.filters.applied.f.title": "Title", "search.filters.applied.f.title": "શીર્ષક", + // "search.filters.applied.f.author": "Author", "search.filters.applied.f.author": "લેખક", + // "search.filters.applied.f.dateIssued.max": "End date", "search.filters.applied.f.dateIssued.max": "અંતિમ તારીખ", + // "search.filters.applied.f.dateIssued.min": "Start date", "search.filters.applied.f.dateIssued.min": "પ્રારંભ તારીખ", + // "search.filters.applied.f.dateSubmitted": "Date submitted", "search.filters.applied.f.dateSubmitted": "સબમિટ તારીખ", + // "search.filters.applied.f.discoverable": "Non-discoverable", "search.filters.applied.f.discoverable": "નોન-ડિસ્કવરેબલ", + // "search.filters.applied.f.entityType": "Item Type", "search.filters.applied.f.entityType": "આઇટમ પ્રકાર", + // "search.filters.applied.f.has_content_in_original_bundle": "Has files", "search.filters.applied.f.has_content_in_original_bundle": "ફાઇલો છે", + // "search.filters.applied.f.original_bundle_filenames": "File name", "search.filters.applied.f.original_bundle_filenames": "ફાઇલ નામ", + // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "ફાઇલ વર્ણન", - + // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", "search.filters.applied.f.has_geospatial_metadata": "ભૌગોલિક સ્થાન છે", + // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "પ્રકાર", + // "search.filters.applied.f.namedresourcetype": "Status", "search.filters.applied.f.namedresourcetype": "સ્થિતિ", + // "search.filters.applied.f.subject": "Subject", "search.filters.applied.f.subject": "વિષય", + // "search.filters.applied.f.submitter": "Submitter", "search.filters.applied.f.submitter": "સબમિટર", + // "search.filters.applied.f.jobTitle": "Job Title", "search.filters.applied.f.jobTitle": "નોકરીનું શીર્ષક", + // "search.filters.applied.f.birthDate.max": "End birth date", "search.filters.applied.f.birthDate.max": "અંતિમ જન્મ તારીખ", + // "search.filters.applied.f.birthDate.min": "Start birth date", "search.filters.applied.f.birthDate.min": "પ્રારંભ જન્મ તારીખ", + // "search.filters.applied.f.supervisedBy": "Supervised by", "search.filters.applied.f.supervisedBy": "સુપરવિઝન દ્વારા", + // "search.filters.applied.f.withdrawn": "Withdrawn", "search.filters.applied.f.withdrawn": "પાછું ખેંચાયેલ", + // "search.filters.applied.operator.equals": "", "search.filters.applied.operator.equals": "", + // "search.filters.applied.operator.notequals": " not equals", "search.filters.applied.operator.notequals": " સમાન નથી", + // "search.filters.applied.operator.authority": "", "search.filters.applied.operator.authority": "", + // "search.filters.applied.operator.notauthority": " not authority", "search.filters.applied.operator.notauthority": " અધિકૃત નથી", + // "search.filters.applied.operator.contains": " contains", "search.filters.applied.operator.contains": " સમાવે છે", + // "search.filters.applied.operator.notcontains": " not contains", "search.filters.applied.operator.notcontains": " સમાવે નથી", + // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", + // "search.filters.applied.f.point": "Coordinates", "search.filters.applied.f.point": "સ્થાનાંક", + // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "શીર્ષક", + // "search.filters.filter.title.placeholder": "Title", "search.filters.filter.title.placeholder": "શીર્ષક", + // "search.filters.filter.title.label": "Search Title", "search.filters.filter.title.label": "શીર્ષક શોધો", + // "search.filters.filter.author.head": "Author", "search.filters.filter.author.head": "લેખક", + // "search.filters.filter.author.placeholder": "Author name", "search.filters.filter.author.placeholder": "લેખકનું નામ", + // "search.filters.filter.author.label": "Search author name", "search.filters.filter.author.label": "લેખકનું નામ શોધો", + // "search.filters.filter.birthDate.head": "Birth Date", "search.filters.filter.birthDate.head": "જન્મ તારીખ", + // "search.filters.filter.birthDate.placeholder": "Birth Date", "search.filters.filter.birthDate.placeholder": "જન્મ તારીખ", + // "search.filters.filter.birthDate.label": "Search birth date", "search.filters.filter.birthDate.label": "જન્મ તારીખ શોધો", + // "search.filters.filter.collapse": "Collapse filter", "search.filters.filter.collapse": "ફિલ્ટર સંકોચો", + // "search.filters.filter.creativeDatePublished.head": "Date Published", "search.filters.filter.creativeDatePublished.head": "પ્રકાશિત તારીખ", + // "search.filters.filter.creativeDatePublished.placeholder": "Date Published", "search.filters.filter.creativeDatePublished.placeholder": "પ્રકાશિત તારીખ", + // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "પ્રકાશિત તારીખ શોધો", + // "search.filters.filter.creativeDatePublished.min.label": "Start", "search.filters.filter.creativeDatePublished.min.label": "પ્રારંભ", + // "search.filters.filter.creativeDatePublished.max.label": "End", "search.filters.filter.creativeDatePublished.max.label": "અંત", + // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "સંપાદક", + // "search.filters.filter.creativeWorkEditor.placeholder": "Editor", "search.filters.filter.creativeWorkEditor.placeholder": "સંપાદક", + // "search.filters.filter.creativeWorkEditor.label": "Search editor", "search.filters.filter.creativeWorkEditor.label": "સંપાદક શોધો", + // "search.filters.filter.creativeWorkKeywords.head": "Subject", "search.filters.filter.creativeWorkKeywords.head": "વિષય", + // "search.filters.filter.creativeWorkKeywords.placeholder": "Subject", "search.filters.filter.creativeWorkKeywords.placeholder": "વિષય", + // "search.filters.filter.creativeWorkKeywords.label": "Search subject", "search.filters.filter.creativeWorkKeywords.label": "વિષય શોધો", + // "search.filters.filter.creativeWorkPublisher.head": "Publisher", "search.filters.filter.creativeWorkPublisher.head": "પ્રકાશક", + // "search.filters.filter.creativeWorkPublisher.placeholder": "Publisher", "search.filters.filter.creativeWorkPublisher.placeholder": "પ્રકાશક", + // "search.filters.filter.creativeWorkPublisher.label": "Search publisher", "search.filters.filter.creativeWorkPublisher.label": "પ્રકાશક શોધો", + // "search.filters.filter.dateIssued.head": "Date", "search.filters.filter.dateIssued.head": "તારીખ", + // "search.filters.filter.dateIssued.max.placeholder": "Maximum Date", "search.filters.filter.dateIssued.max.placeholder": "મહત્તમ તારીખ", + // "search.filters.filter.dateIssued.max.label": "End", "search.filters.filter.dateIssued.max.label": "અંત", + // "search.filters.filter.dateIssued.min.placeholder": "Minimum Date", "search.filters.filter.dateIssued.min.placeholder": "ન્યૂનતમ તારીખ", + // "search.filters.filter.dateIssued.min.label": "Start", "search.filters.filter.dateIssued.min.label": "પ્રારંભ", + // "search.filters.filter.dateSubmitted.head": "Date submitted", "search.filters.filter.dateSubmitted.head": "સબમિટ તારીખ", + // "search.filters.filter.dateSubmitted.placeholder": "Date submitted", "search.filters.filter.dateSubmitted.placeholder": "સબમિટ તારીખ", + // "search.filters.filter.dateSubmitted.label": "Search date submitted", "search.filters.filter.dateSubmitted.label": "સબમિટ તારીખ શોધો", + // "search.filters.filter.discoverable.head": "Non-discoverable", "search.filters.filter.discoverable.head": "નોન-ડિસ્કવરેબલ", + // "search.filters.filter.withdrawn.head": "Withdrawn", "search.filters.filter.withdrawn.head": "પાછું ખેંચાયેલ", + // "search.filters.filter.entityType.head": "Item Type", "search.filters.filter.entityType.head": "આઇટમ પ્રકાર", + // "search.filters.filter.entityType.placeholder": "Item Type", "search.filters.filter.entityType.placeholder": "આઇટમ પ્રકાર", + // "search.filters.filter.entityType.label": "Search item type", "search.filters.filter.entityType.label": "આઇટમ પ્રકાર શોધો", + // "search.filters.filter.expand": "Expand filter", "search.filters.filter.expand": "ફિલ્ટર વિસ્તારો", + // "search.filters.filter.has_content_in_original_bundle.head": "Has files", "search.filters.filter.has_content_in_original_bundle.head": "ફાઇલો છે", + // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "ફાઇલ નામ", + // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", "search.filters.filter.has_geospatial_metadata.head": "ભૌગોલિક સ્થાન છે", + // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "ફાઇલ નામ", + // "search.filters.filter.original_bundle_filenames.label": "Search File name", "search.filters.filter.original_bundle_filenames.label": "ફાઇલ નામ શોધો", + // "search.filters.filter.original_bundle_descriptions.head": "File description", "search.filters.filter.original_bundle_descriptions.head": "ફાઇલ વર્ણન", + // "search.filters.filter.original_bundle_descriptions.placeholder": "File description", "search.filters.filter.original_bundle_descriptions.placeholder": "ફાઇલ વર્ણન", + // "search.filters.filter.original_bundle_descriptions.label": "Search File description", "search.filters.filter.original_bundle_descriptions.label": "ફાઇલ વર્ણન શોધો", + // "search.filters.filter.itemtype.head": "Type", "search.filters.filter.itemtype.head": "પ્રકાર", + // "search.filters.filter.itemtype.placeholder": "Type", "search.filters.filter.itemtype.placeholder": "પ્રકાર", + // "search.filters.filter.itemtype.label": "Search type", "search.filters.filter.itemtype.label": "પ્રકાર શોધો", + // "search.filters.filter.jobTitle.head": "Job Title", "search.filters.filter.jobTitle.head": "નોકરીનું શીર્ષક", + // "search.filters.filter.jobTitle.placeholder": "Job Title", "search.filters.filter.jobTitle.placeholder": "નોકરીનું શીર્ષક", + // "search.filters.filter.jobTitle.label": "Search job title", "search.filters.filter.jobTitle.label": "નોકરીનું શીર્ષક શોધો", + // "search.filters.filter.knowsLanguage.head": "Known language", "search.filters.filter.knowsLanguage.head": "જાણીતી ભાષા", + // "search.filters.filter.knowsLanguage.placeholder": "Known language", "search.filters.filter.knowsLanguage.placeholder": "જાણીતી ભાષા", + // "search.filters.filter.knowsLanguage.label": "Search known language", "search.filters.filter.knowsLanguage.label": "જાણીતી ભાષા શોધો", + // "search.filters.filter.namedresourcetype.head": "Status", "search.filters.filter.namedresourcetype.head": "સ્થિતિ", + // "search.filters.filter.namedresourcetype.placeholder": "Status", "search.filters.filter.namedresourcetype.placeholder": "સ્થિતિ", + // "search.filters.filter.namedresourcetype.label": "Search status", "search.filters.filter.namedresourcetype.label": "સ્થિતિ શોધો", + // "search.filters.filter.objectpeople.head": "People", "search.filters.filter.objectpeople.head": "લોકો", + // "search.filters.filter.objectpeople.placeholder": "People", "search.filters.filter.objectpeople.placeholder": "લોકો", + // "search.filters.filter.objectpeople.label": "Search people", "search.filters.filter.objectpeople.label": "લોકો શોધો", + // "search.filters.filter.organizationAddressCountry.head": "Country", "search.filters.filter.organizationAddressCountry.head": "દેશ", + // "search.filters.filter.organizationAddressCountry.placeholder": "Country", "search.filters.filter.organizationAddressCountry.placeholder": "દેશ", + // "search.filters.filter.organizationAddressCountry.label": "Search country", "search.filters.filter.organizationAddressCountry.label": "દેશ શોધો", + // "search.filters.filter.organizationAddressLocality.head": "City", "search.filters.filter.organizationAddressLocality.head": "શહેર", + // "search.filters.filter.organizationAddressLocality.placeholder": "City", "search.filters.filter.organizationAddressLocality.placeholder": "શહેર", + // "search.filters.filter.organizationAddressLocality.label": "Search city", "search.filters.filter.organizationAddressLocality.label": "શહેર શોધો", + // "search.filters.filter.organizationFoundingDate.head": "Date Founded", "search.filters.filter.organizationFoundingDate.head": "સ્થાપના તારીખ", + // "search.filters.filter.organizationFoundingDate.placeholder": "Date Founded", "search.filters.filter.organizationFoundingDate.placeholder": "સ્થાપના તારીખ", + // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "સ્થાપના તારીખ શોધો", + // "search.filters.filter.organizationFoundingDate.min.label": "Start", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.min.label": "Start", + + // "search.filters.filter.organizationFoundingDate.max.label": "End", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.max.label": "End", + + // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "વિસ્તાર", + // "search.filters.filter.scope.placeholder": "Scope filter", "search.filters.filter.scope.placeholder": "વિસ્તાર ફિલ્ટર", + // "search.filters.filter.scope.label": "Search scope filter", "search.filters.filter.scope.label": "વિસ્તાર ફિલ્ટર શોધો", + // "search.filters.filter.show-less": "Collapse", "search.filters.filter.show-less": "સંકોચો", + // "search.filters.filter.show-more": "Show more", "search.filters.filter.show-more": "વધુ બતાવો", + // "search.filters.filter.subject.head": "Subject", "search.filters.filter.subject.head": "વિષય", + // "search.filters.filter.subject.placeholder": "Subject", "search.filters.filter.subject.placeholder": "વિષય", + // "search.filters.filter.subject.label": "Search subject", "search.filters.filter.subject.label": "વિષય શોધો", + // "search.filters.filter.submitter.head": "Submitter", "search.filters.filter.submitter.head": "સબમિટર", + // "search.filters.filter.submitter.placeholder": "Submitter", "search.filters.filter.submitter.placeholder": "સબમિટર", + // "search.filters.filter.submitter.label": "Search submitter", "search.filters.filter.submitter.label": "સબમિટર શોધો", + // "search.filters.filter.show-tree": "Browse {{ name }} tree", "search.filters.filter.show-tree": "{{ name }} વૃક્ષ બ્રાઉઝ કરો", + // "search.filters.filter.funding.head": "Funding", "search.filters.filter.funding.head": "ફંડિંગ", + // "search.filters.filter.funding.placeholder": "Funding", "search.filters.filter.funding.placeholder": "ફંડિંગ", + // "search.filters.filter.supervisedBy.head": "Supervised By", "search.filters.filter.supervisedBy.head": "સુપરવિઝન દ્વારા", + // "search.filters.filter.supervisedBy.placeholder": "Supervised By", "search.filters.filter.supervisedBy.placeholder": "સુપરવિઝન દ્વારા", + // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "સુપરવિઝન દ્વારા શોધો", + // "search.filters.filter.access_status.head": "Access type", "search.filters.filter.access_status.head": "ઍક્સેસ પ્રકાર", + // "search.filters.filter.access_status.placeholder": "Access type", "search.filters.filter.access_status.placeholder": "ઍક્સેસ પ્રકાર", + // "search.filters.filter.access_status.label": "Search by access type", "search.filters.filter.access_status.label": "ઍક્સેસ પ્રકાર દ્વારા શોધો", + // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "જર્નલ ઇશ્યુ", + // "search.filters.entityType.JournalVolume": "Journal Volume", "search.filters.entityType.JournalVolume": "જર્નલ વોલ્યુમ", + // "search.filters.entityType.OrgUnit": "Organizational Unit", "search.filters.entityType.OrgUnit": "સંસ્થાકીય એકમ", + // "search.filters.entityType.Person": "Person", "search.filters.entityType.Person": "વ્યક્તિ", + // "search.filters.entityType.Project": "Project", "search.filters.entityType.Project": "પ્રોજેક્ટ", + // "search.filters.entityType.Publication": "Publication", "search.filters.entityType.Publication": "પ્રકાશન", + // "search.filters.has_content_in_original_bundle.true": "Yes", "search.filters.has_content_in_original_bundle.true": "હા", + // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "ના", + // "search.filters.has_geospatial_metadata.true": "Yes", "search.filters.has_geospatial_metadata.true": "હા", + // "search.filters.has_geospatial_metadata.false": "No", "search.filters.has_geospatial_metadata.false": "ના", + // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "ના", + // "search.filters.discoverable.false": "Yes", "search.filters.discoverable.false": "હા", + // "search.filters.namedresourcetype.Archived": "Archived", "search.filters.namedresourcetype.Archived": "આર્કાઇવ્ડ", + // "search.filters.namedresourcetype.Validation": "Validation", "search.filters.namedresourcetype.Validation": "માન્યતા", + // "search.filters.namedresourcetype.Waiting for Controller": "Waiting for reviewer", "search.filters.namedresourcetype.Waiting for Controller": "સમીક્ષકની રાહ જોવી", + // "search.filters.namedresourcetype.Workflow": "Workflow", "search.filters.namedresourcetype.Workflow": "વર્કફ્લો", + // "search.filters.namedresourcetype.Workspace": "Workspace", "search.filters.namedresourcetype.Workspace": "વર્કસ્પેસ", + // "search.filters.withdrawn.true": "Yes", "search.filters.withdrawn.true": "હા", + // "search.filters.withdrawn.false": "No", "search.filters.withdrawn.false": "ના", + // "search.filters.head": "Filters", "search.filters.head": "ફિલ્ટર્સ", + // "search.filters.reset": "Reset filters", "search.filters.reset": "ફિલ્ટર્સ રીસેટ કરો", + // "search.filters.search.submit": "Submit", "search.filters.search.submit": "સબમિટ કરો", + // "search.filters.operator.equals.text": "Equals", "search.filters.operator.equals.text": "સમાન છે", + // "search.filters.operator.notequals.text": "Not Equals", "search.filters.operator.notequals.text": "સમાન નથી", + // "search.filters.operator.authority.text": "Authority", "search.filters.operator.authority.text": "અધિકૃત", + // "search.filters.operator.notauthority.text": "Not Authority", "search.filters.operator.notauthority.text": "અધિકૃત નથી", + // "search.filters.operator.contains.text": "Contains", "search.filters.operator.contains.text": "સમાવે છે", + // "search.filters.operator.notcontains.text": "Not Contains", "search.filters.operator.notcontains.text": "સમાવે નથી", + // "search.filters.operator.query.text": "Query", "search.filters.operator.query.text": "ક્વેરી", + // "search.form.search": "Search", "search.form.search": "શોધો", + // "search.form.search_dspace": "All repository", "search.form.search_dspace": "બધા રિપોઝિટરી", + // "search.form.scope.all": "All of DSpace", "search.form.scope.all": "બધા DSpace", + // "search.results.head": "Search Results", "search.results.head": "શોધ પરિણામો", + // "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting", "search.results.no-results": "તમારી શોધે કોઈ પરિણામ આપ્યું નથી. તમે જે શોધી રહ્યા છો તે શોધવામાં મુશ્કેલી છે? પ્રયાસ કરો", + // "search.results.no-results-link": "quotes around it", "search.results.no-results-link": "તેની આસપાસ અવતરણ ચિહ્નો મૂકો", + // "search.results.empty": "Your search returned no results.", "search.results.empty": "તમારી શોધે કોઈ પરિણામ આપ્યું નથી.", + // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", "search.results.geospatial-map.empty": "આ પૃષ્ઠ પર કોઈ ભૌગોલિક સ્થાન સાથેના પરિણામો નથી", + // "search.results.view-result": "View", "search.results.view-result": "જુઓ", + // "search.results.response.500": "An error occurred during query execution, please try again later", "search.results.response.500": "ક્વેરી અમલમાં ભૂલ આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો", + // "default.search.results.head": "Search Results", "default.search.results.head": "શોધ પરિણામો", + // "default-relationships.search.results.head": "Search Results", "default-relationships.search.results.head": "શોધ પરિણામો", + // "search.sidebar.close": "Back to results", "search.sidebar.close": "પરિણામો પર પાછા જાઓ", + // "search.sidebar.filters.title": "Filters", "search.sidebar.filters.title": "ફિલ્ટર્સ", + // "search.sidebar.open": "Search Tools", "search.sidebar.open": "શોધ સાધનો", + // "search.sidebar.results": "results", "search.sidebar.results": "પરિણામો", + // "search.sidebar.settings.rpp": "Results per page", "search.sidebar.settings.rpp": "પ્રતિ પૃષ્ઠ પરિણામો", + // "search.sidebar.settings.sort-by": "Sort By", "search.sidebar.settings.sort-by": "દ્વારા ગોઠવો", + // "search.sidebar.advanced-search.title": "Advanced Search", "search.sidebar.advanced-search.title": "ઉન્નત શોધ", + // "search.sidebar.advanced-search.filter-by": "Filter by", "search.sidebar.advanced-search.filter-by": "દ્વારા ફિલ્ટર કરો", + // "search.sidebar.advanced-search.filters": "Filters", "search.sidebar.advanced-search.filters": "ફિલ્ટર્સ", + // "search.sidebar.advanced-search.operators": "Operators", "search.sidebar.advanced-search.operators": "ઑપરેટર્સ", + // "search.sidebar.advanced-search.add": "Add", "search.sidebar.advanced-search.add": "ઉમેરો", + // "search.sidebar.settings.title": "Settings", "search.sidebar.settings.title": "સેટિંગ્સ", + // "search.view-switch.show-detail": "Show detail", "search.view-switch.show-detail": "વિગત બતાવો", + // "search.view-switch.show-grid": "Show as grid", "search.view-switch.show-grid": "ગ્રિડ તરીકે બતાવો", + // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "યાદી તરીકે બતાવો", + // "search.view-switch.show-geospatialMap": "Show as map", "search.view-switch.show-geospatialMap": "નકશા તરીકે બતાવો", + // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "આઇટમ પસંદ ન કરો", + // "selectable-list-item-control.select": "Select item", "selectable-list-item-control.select": "આઇટમ પસંદ કરો", + // "sorting.ASC": "Ascending", "sorting.ASC": "આરોહી", + // "sorting.DESC": "Descending", "sorting.DESC": "અવરોહી", + // "sorting.dc.title.ASC": "Title Ascending", "sorting.dc.title.ASC": "શીર્ષક આરોહી", + // "sorting.dc.title.DESC": "Title Descending", "sorting.dc.title.DESC": "શીર્ષક અવરોહી", + // "sorting.score.ASC": "Least Relevant", "sorting.score.ASC": "ઓછું સંબંધિત", + // "sorting.score.DESC": "Most Relevant", "sorting.score.DESC": "વધુ સંબંધિત", + // "sorting.dc.date.issued.ASC": "Date Issued Ascending", "sorting.dc.date.issued.ASC": "તારીખ આરોહી જારી", + // "sorting.dc.date.issued.DESC": "Date Issued Descending", "sorting.dc.date.issued.DESC": "તારીખ અવરોહી જારી", + // "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending", "sorting.dc.date.accessioned.ASC": "ઍક્સેશન તારીખ આરોહી", + // "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending", "sorting.dc.date.accessioned.DESC": "ઍક્સેશન તારીખ અવરોહી", + // "sorting.lastModified.ASC": "Last modified Ascending", "sorting.lastModified.ASC": "છેલ્લે ફેરફાર આરોહી", + // "sorting.lastModified.DESC": "Last modified Descending", "sorting.lastModified.DESC": "છેલ્લે ફેરફાર અવરોહી", + // "sorting.person.familyName.ASC": "Surname Ascending", "sorting.person.familyName.ASC": "અટક આરોહી", + // "sorting.person.familyName.DESC": "Surname Descending", "sorting.person.familyName.DESC": "અટક અવરોહી", + // "sorting.person.givenName.ASC": "Name Ascending", "sorting.person.givenName.ASC": "નામ આરોહી", + // "sorting.person.givenName.DESC": "Name Descending", "sorting.person.givenName.DESC": "નામ અવરોહી", + // "sorting.person.birthDate.ASC": "Birth Date Ascending", "sorting.person.birthDate.ASC": "જન્મ તારીખ આરોહી", + // "sorting.person.birthDate.DESC": "Birth Date Descending", "sorting.person.birthDate.DESC": "જન્મ તારીખ અવરોહી", + // "statistics.title": "Statistics", "statistics.title": "આંકડા", + // "statistics.header": "Statistics for {{ scope }}", "statistics.header": "{{ scope }} માટેના આંકડા", + // "statistics.breadcrumbs": "Statistics", "statistics.breadcrumbs": "આંકડા", + // "statistics.page.no-data": "No data available", "statistics.page.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", + // "statistics.table.no-data": "No data available", "statistics.table.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", + // "statistics.table.title.TotalVisits": "Total visits", "statistics.table.title.TotalVisits": "કુલ મુલાકાતો", + // "statistics.table.title.TotalVisitsPerMonth": "Total visits per month", "statistics.table.title.TotalVisitsPerMonth": "પ્રતિ મહિનો કુલ મુલાકાતો", + // "statistics.table.title.TotalDownloads": "File Visits", "statistics.table.title.TotalDownloads": "ફાઇલ મુલાકાતો", + // "statistics.table.title.TopCountries": "Top country views", "statistics.table.title.TopCountries": "ટોપ દેશ દૃશ્યો", + // "statistics.table.title.TopCities": "Top city views", "statistics.table.title.TopCities": "ટોપ શહેર દૃશ્યો", + // "statistics.table.header.views": "Views", "statistics.table.header.views": "દૃશ્યો", + // "statistics.table.no-name": "(object name could not be loaded)", "statistics.table.no-name": "(વસ્તુનું નામ લોડ કરી શકાયું નથી)", + // "submission.edit.breadcrumbs": "Edit Submission", "submission.edit.breadcrumbs": "સબમિશન સંપાદિત કરો", + // "submission.edit.title": "Edit Submission", "submission.edit.title": "સબમિશન સંપાદિત કરો", + // "submission.general.cancel": "Cancel", "submission.general.cancel": "રદ કરો", + // "submission.general.cannot_submit": "You don't have permission to make a new submission.", "submission.general.cannot_submit": "તમને નવું સબમિશન કરવાની પરવાનગી નથી.", + // "submission.general.deposit": "Deposit", "submission.general.deposit": "ડિપોઝિટ", + // "submission.general.discard.confirm.cancel": "Cancel", "submission.general.discard.confirm.cancel": "રદ કરો", + // "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?", "submission.general.discard.confirm.info": "આ ક્રિયા પાછી ફરી શકશે નહીં. શું તમે ખાતરી કરો છો?", + // "submission.general.discard.confirm.submit": "Yes, I'm sure", "submission.general.discard.confirm.submit": "હા, મને ખાતરી છે", + // "submission.general.discard.confirm.title": "Discard submission", "submission.general.discard.confirm.title": "સબમિશન રદ કરો", + // "submission.general.discard.submit": "Discard", "submission.general.discard.submit": "રદ કરો", + // "submission.general.back.submit": "Back", "submission.general.back.submit": "પાછા", + // "submission.general.info.saved": "Saved", "submission.general.info.saved": "સાચવ્યું", + // "submission.general.info.pending-changes": "Unsaved changes", "submission.general.info.pending-changes": "સાચવેલા ફેરફારો", + // "submission.general.save": "Save", "submission.general.save": "સેવ", + // "submission.general.save-later": "Save for later", "submission.general.save-later": "પછી માટે સેવ", + // "submission.import-external.page.title": "Import metadata from an external source", "submission.import-external.page.title": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", + // "submission.import-external.title": "Import metadata from an external source", "submission.import-external.title": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", + // "submission.import-external.title.Journal": "Import a journal from an external source", "submission.import-external.title.Journal": "બાહ્ય સ્ત્રોતમાંથી જર્નલ આયાત કરો", + // "submission.import-external.title.JournalIssue": "Import a journal issue from an external source", "submission.import-external.title.JournalIssue": "બાહ્ય સ્ત્રોતમાંથી જર્નલ ઇશ્યુ આયાત કરો", + // "submission.import-external.title.JournalVolume": "Import a journal volume from an external source", "submission.import-external.title.JournalVolume": "બાહ્ય સ્ત્રોતમાંથી જર્નલ વોલ્યુમ આયાત કરો", + // "submission.import-external.title.OrgUnit": "Import a publisher from an external source", "submission.import-external.title.OrgUnit": "બાહ્ય સ્ત્રોતમાંથી પ્રકાશક આયાત કરો", + // "submission.import-external.title.Person": "Import a person from an external source", "submission.import-external.title.Person": "બાહ્ય સ્ત્રોતમાંથી વ્યક્તિ આયાત કરો", + // "submission.import-external.title.Project": "Import a project from an external source", "submission.import-external.title.Project": "બાહ્ય સ્ત્રોતમાંથી પ્રોજેક્ટ આયાત કરો", + // "submission.import-external.title.Publication": "Import a publication from an external source", "submission.import-external.title.Publication": "બાહ્ય સ્ત્રોતમાંથી પ્રકાશન આયાત કરો", + // "submission.import-external.title.none": "Import metadata from an external source", "submission.import-external.title.none": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", + // "submission.import-external.page.hint": "Enter a query above to find items from the web to import in to DSpace.", "submission.import-external.page.hint": "DSpace માં આયાત કરવા માટે વેબમાંથી વસ્તુઓ શોધવા માટે ઉપર ક્વેરી દાખલ કરો.", + // "submission.import-external.back-to-my-dspace": "Back to MyDSpace", "submission.import-external.back-to-my-dspace": "મારા DSpace પર પાછા જાઓ", + // "submission.import-external.search.placeholder": "Search the external source", "submission.import-external.search.placeholder": "બાહ્ય સ્ત્રોત શોધો", + // "submission.import-external.search.button": "Search", "submission.import-external.search.button": "શોધો", + // "submission.import-external.search.button.hint": "Write some words to search", "submission.import-external.search.button.hint": "શોધવા માટે કેટલાક શબ્દો લખો", + // "submission.import-external.search.source.hint": "Pick an external source", "submission.import-external.search.source.hint": "બાહ્ય સ્ત્રોત પસંદ કરો", + // "submission.import-external.source.arxiv": "arXiv", "submission.import-external.source.arxiv": "arXiv", + // "submission.import-external.source.ads": "NASA/ADS", "submission.import-external.source.ads": "NASA/ADS", + // "submission.import-external.source.cinii": "CiNii", "submission.import-external.source.cinii": "CiNii", + // "submission.import-external.source.crossref": "Crossref", "submission.import-external.source.crossref": "Crossref", + // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", + // "submission.import-external.source.dataciteProject": "DataCite", "submission.import-external.source.dataciteProject": "DataCite", + // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", + // "submission.import-external.source.scielo": "SciELO", "submission.import-external.source.scielo": "SciELO", + // "submission.import-external.source.scopus": "Scopus", "submission.import-external.source.scopus": "Scopus", + // "submission.import-external.source.vufind": "VuFind", "submission.import-external.source.vufind": "VuFind", + // "submission.import-external.source.wos": "Web Of Science", "submission.import-external.source.wos": "Web Of Science", + // "submission.import-external.source.orcidWorks": "ORCID", "submission.import-external.source.orcidWorks": "ORCID", + // "submission.import-external.source.epo": "European Patent Office (EPO)", "submission.import-external.source.epo": "European Patent Office (EPO)", + // "submission.import-external.source.loading": "Loading ...", "submission.import-external.source.loading": "લોડ થઈ રહ્યું છે ...", + // "submission.import-external.source.sherpaJournal": "SHERPA Journals", "submission.import-external.source.sherpaJournal": "SHERPA Journals", + // "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", "submission.import-external.source.sherpaJournalIssn": "ISSN દ્વારા SHERPA Journals", + // "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", + // "submission.import-external.source.openaire": "OpenAIRE Search by Authors", "submission.import-external.source.openaire": "OpenAIRE Authors દ્વારા શોધો", + // "submission.import-external.source.openaireTitle": "OpenAIRE Search by Title", "submission.import-external.source.openaireTitle": "OpenAIRE Title દ્વારા શોધો", + // "submission.import-external.source.openaireFunding": "OpenAIRE Search by Funder", "submission.import-external.source.openaireFunding": "OpenAIRE Funding દ્વારા શોધો", + // "submission.import-external.source.orcid": "ORCID", "submission.import-external.source.orcid": "ORCID", + // "submission.import-external.source.pubmed": "Pubmed", "submission.import-external.source.pubmed": "Pubmed", + // "submission.import-external.source.pubmedeu": "Pubmed Europe", "submission.import-external.source.pubmedeu": "Pubmed Europe", + // "submission.import-external.source.lcname": "Library of Congress Names", "submission.import-external.source.lcname": "Library of Congress Names", + // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Research Organization Registry (ROR)", + // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", "submission.import-external.source.openalexPublication": "OpenAlex Title દ્વારા શોધો", + // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Author ID દ્વારા શોધો", + // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", "submission.import-external.source.openalexPublicationByDOI": "OpenAlex DOI દ્વારા શોધો", + // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", "submission.import-external.source.openalexPerson": "OpenAlex નામ દ્વારા શોધો", + // "submission.import-external.source.openalexJournal": "OpenAlex Journals", "submission.import-external.source.openalexJournal": "OpenAlex Journals", + // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", + // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", + // "submission.import-external.source.openalexFunder": "OpenAlex Funders", "submission.import-external.source.openalexFunder": "OpenAlex Funders", + // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "વસ્તુ પૂર્વાવલોકન", + // "submission.import-external.preview.title.Publication": "Publication Preview", "submission.import-external.preview.title.Publication": "પ્રકાશન પૂર્વાવલોકન", + // "submission.import-external.preview.title.none": "Item Preview", "submission.import-external.preview.title.none": "વસ્તુ પૂર્વાવલોકન", + // "submission.import-external.preview.title.Journal": "Journal Preview", "submission.import-external.preview.title.Journal": "જર્નલ પૂર્વાવલોકન", + // "submission.import-external.preview.title.OrgUnit": "Organizational Unit Preview", "submission.import-external.preview.title.OrgUnit": "સંસ્થાકીય એકમ પૂર્વાવલોકન", + // "submission.import-external.preview.title.Person": "Person Preview", "submission.import-external.preview.title.Person": "વ્યક્તિ પૂર્વાવલોકન", + // "submission.import-external.preview.title.Project": "Project Preview", "submission.import-external.preview.title.Project": "પ્રોજેક્ટ પૂર્વાવલોકન", + // "submission.import-external.preview.subtitle": "The metadata below was imported from an external source. It will be pre-filled when you start the submission.", "submission.import-external.preview.subtitle": "નીચેની મેટાડેટા બાહ્ય સ્ત્રોતમાંથી આયાત કરવામાં આવી હતી. તમે સબમિશન શરૂ કરશો ત્યારે તે પૂર્વ-ભરવામાં આવશે.", + // "submission.import-external.preview.button.import": "Start submission", "submission.import-external.preview.button.import": "સબમિશન શરૂ કરો", + // "submission.import-external.preview.error.import.title": "Submission error", "submission.import-external.preview.error.import.title": "સબમિશન ભૂલ", + // "submission.import-external.preview.error.import.body": "An error occurs during the external source entry import process.", "submission.import-external.preview.error.import.body": "બાહ્ય સ્ત્રોત એન્ટ્રી આયાત પ્રક્રિયા દરમિયાન ભૂલ થાય છે.", + // "submission.sections.describe.relationship-lookup.close": "Close", "submission.sections.describe.relationship-lookup.close": "બંધ કરો", + // "submission.sections.describe.relationship-lookup.external-source.added": "Successfully added local entry to the selection", "submission.sections.describe.relationship-lookup.external-source.added": "સ્થાનિક એન્ટ્રી પસંદગીમાં સફળતાપૂર્વક ઉમેરવામાં આવી", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Import remote author", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "દૂરના લેખક આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Import remote journal", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "દૂરના જર્નલ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Import remote journal issue", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "દૂરના જર્નલ ઇશ્યુ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Import remote journal volume", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "દૂરના જર્નલ વોલ્યુમ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Import remote item", "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "દૂરની વસ્તુ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Import remote event", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "દૂરના ઇવેન્ટ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Import remote product", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "દૂરના પ્રોડક્ટ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Import remote equipment", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "દૂરના સાધન આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "Import remote organizational unit", "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "દૂરના સંસ્થાકીય એકમ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "Import remote fund", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "દૂરના ફંડ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Import remote person", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "દૂરના વ્યક્તિ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Import remote patent", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "દૂરના પેટન્ટ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Import remote project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "દૂરના પ્રોજેક્ટ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Import remote publication", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "દૂરના પ્રકાશન આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "નવી એન્ટિટી ઉમેરવામાં આવી!", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Import Remote Author", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "દૂરના લેખક આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Successfully added local author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "સફળતાપૂર્વક સ્થાનિક લેખક પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Successfully imported and added external author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "સફળતાપૂર્વક બાહ્ય લેખક આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Authority", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "અધિકાર", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Import as a new local authority entry", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "નવા સ્થાનિક અધિકાર એન્ટ્રી તરીકે આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Cancel", "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "રદ કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Select a collection to import new entries to", "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "નવી એન્ટ્રીઓ આયાત કરવા માટે કલેક્શન પસંદ કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "Entities", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "એન્ટિટીઓ", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Import as a new local entity", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "નવા સ્થાનિક એન્ટિટી તરીકે આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC Name માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE Title માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE Funding માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa Journal માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Importing from Sherpa Publisher", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa Publisher માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Importing from PubMed", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Importing from arXiv", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv માંથી આયાત કરી રહ્યું છે", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "Import from ROR", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR માંથી આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Import", "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Import Remote Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "દૂરના જર્નલ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Successfully added local journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Successfully imported and added external journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Import Remote Journal Issue", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "દૂરના જર્નલ ઇશ્યુ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Successfully added local journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ ઇશ્યુ પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Successfully imported and added external journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ ઇશ્યુ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Import Remote Journal Volume", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "દૂરના જર્નલ વોલ્યુમ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Successfully added local journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ વોલ્યુમ પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Successfully imported and added external journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ વોલ્યુમ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "સ્થાનિક મેચ પસંદ કરો:", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "Import Remote Organization", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "દૂરના સંસ્થાકીય એકમ આયાત કરો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "Successfully added local organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "સફળતાપૂર્વક સ્થાનિક સંસ્થાકીય એકમ પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "Successfully imported and added external organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "સફળતાપૂર્વક બાહ્ય સંસ્થાકીય એકમ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", + // "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Deselect all", "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "બધા પસંદગીઓ રદ કરો", + // "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Deselect page", "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "પેજ પસંદગીઓ રદ કરો", + // "submission.sections.describe.relationship-lookup.search-tab.loading": "Loading...", "submission.sections.describe.relationship-lookup.search-tab.loading": "લોડ થઈ રહ્યું છે...", + // "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Search query", "submission.sections.describe.relationship-lookup.search-tab.placeholder": "શોધ ક્વેરી", + // "submission.sections.describe.relationship-lookup.search-tab.search": "Go", "submission.sections.describe.relationship-lookup.search-tab.search": "જાઓ", + // "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "શોધો...", + // "submission.sections.describe.relationship-lookup.search-tab.select-all": "Select all", "submission.sections.describe.relationship-lookup.search-tab.select-all": "બધા પસંદ કરો", + // "submission.sections.describe.relationship-lookup.search-tab.select-page": "Select page", "submission.sections.describe.relationship-lookup.search-tab.select-page": "પેજ પસંદ કરો", + // "submission.sections.describe.relationship-lookup.selected": "Selected {{ size }} items", "submission.sections.describe.relationship-lookup.selected": "પસંદ કરેલી {{ size }} વસ્તુઓ", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "સ્થાનિક લેખકો ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "સ્થાનિક જર્નલ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Local Projects ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "સ્થાનિક પ્રોજેક્ટ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Local Publications ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "સ્થાનિક પ્રકાશન ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "સ્થાનિક લેખકો ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Local Organizational Units ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "સ્થાનિક સંસ્થાકીય એકમ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Local Data Packages ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "સ્થાનિક ડેટા પેકેજ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Local Data Files ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "સ્થાનિક ડેટા ફાઇલ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "સ્થાનિક જર્નલ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "સ્થાનિક જર્નલ ઇશ્યુ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "સ્થાનિક જર્નલ ઇશ્યુ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Search by Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Authors ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Search by Title ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Title ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Search by Funder ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Funding ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN દ્વારા Sherpa Journals ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Funding Agencies માટે શોધો", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Search for Funding", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Funding માટે શોધો", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Search for Organizational Units", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "સંસ્થાકીય એકમ માટે શોધો", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "પ્રોજેક્ટના ફંડર", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "Publication of the Author", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "લેખકના પ્રકાશન", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "OrgUnit of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "પ્રોજેક્ટના સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "પ્રોજેક્ટના ફંડર", + // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + + // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "શોધો...", + // "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Current Selection ({{ count }})", "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "વર્તમાન પસંદગી ({{ count }})", + // "submission.sections.describe.relationship-lookup.title.Journal": "Journal", "submission.sections.describe.relationship-lookup.title.Journal": "જર્નલ", + // "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Journal Issues", "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "જર્નલ ઇશ્યુ", + // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "જર્નલ ઇશ્યુ", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.title.JournalVolume": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.JournalVolume": "જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "Journals", "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "જર્નલ", + // "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Authors", "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "લેખકો", + // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Funding Agency", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "ફંડિંગ એજન્સી", + // "submission.sections.describe.relationship-lookup.title.Project": "Projects", "submission.sections.describe.relationship-lookup.title.Project": "પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.title.Publication": "Publications", "submission.sections.describe.relationship-lookup.title.Publication": "પ્રકાશન", + // "submission.sections.describe.relationship-lookup.title.Person": "Authors", "submission.sections.describe.relationship-lookup.title.Person": "લેખકો", + // "submission.sections.describe.relationship-lookup.title.OrgUnit": "Organizational Units", "submission.sections.describe.relationship-lookup.title.OrgUnit": "સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.title.DataPackage": "Data Packages", "submission.sections.describe.relationship-lookup.title.DataPackage": "ડેટા પેકેજ", + // "submission.sections.describe.relationship-lookup.title.DataFile": "Data Files", "submission.sections.describe.relationship-lookup.title.DataFile": "ડેટા ફાઇલ", + // "submission.sections.describe.relationship-lookup.title.Funding Agency": "Funding Agency", "submission.sections.describe.relationship-lookup.title.Funding Agency": "ફંડિંગ એજન્સી", + // "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Funding", "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "ફંડિંગ", + // "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Parent Organizational Unit", "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "પેરેન્ટ સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "Publication", "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "પ્રકાશન", + // "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "OrgUnit", "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Toggle dropdown", "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ડ્રોપડાઉન ટૉગલ કરો", + // "submission.sections.describe.relationship-lookup.selection-tab.settings": "Settings", "submission.sections.describe.relationship-lookup.selection-tab.settings": "સેટિંગ્સ", + // "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Your selection is currently empty.", "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "તમારી પસંદગી હાલમાં ખાલી છે.", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "પસંદ કરેલા લેખકો", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "પસંદ કરેલા જર્નલ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "પસંદ કરેલા જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "પસંદ કરેલા જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Selected Projects", "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "પસંદ કરેલા પ્રોજેક્ટ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Selected Publications", "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "પસંદ કરેલા પ્રકાશન", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "પસંદ કરેલા લેખકો", + // "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Selected Organizational Units", "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "પસંદ કરેલા સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Selected Data Packages", "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "પસંદ કરેલા ડેટા પેકેજ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Selected Data Files", "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "પસંદ કરેલી ડેટા ફાઇલ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "પસંદ કરેલા જર્નલ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "પસંદ કરેલા ઇશ્યુ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "પસંદ કરેલા જર્નલ વોલ્યુમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Selected Funding Agency", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "પસંદ કરેલી ફંડિંગ એજન્સી", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Selected Funding", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "પસંદ કરેલા ફંડિંગ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "પસંદ કરેલા ઇશ્યુ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Selected Organizational Unit", "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "પસંદ કરેલા સંસ્થાકીય એકમ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "શોધ પરિણામ", + // "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.", "submission.sections.describe.relationship-lookup.name-variant.notification.content": "શું તમે આ નામ વેરિઅન્ટને ભવિષ્યના સબમિશન માટે ફરીથી ઉપયોગ કરવા માટે સાચવવા માંગો છો? જો તમે નહીં કરો તો તમે તેને આ સબમિશન માટે જ ઉપયોગ કરી શકો છો.", + // "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant", "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "નવું નામ વેરિઅન્ટ સાચવો", + // "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Use only for this submission", "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "આ સબમિશન માટે જ ઉપયોગ કરો", + // "submission.sections.ccLicense.type": "License Type", "submission.sections.ccLicense.type": "લાઇસન્સ પ્રકાર", + // "submission.sections.ccLicense.select": "Select a license type…", "submission.sections.ccLicense.select": "લાઇસન્સ પ્રકાર પસંદ કરો…", + // "submission.sections.ccLicense.change": "Change your license type…", "submission.sections.ccLicense.change": "તમારો લાઇસન્સ પ્રકાર બદલો…", + // "submission.sections.ccLicense.none": "No licenses available", "submission.sections.ccLicense.none": "કોઈ લાઇસન્સ ઉપલબ્ધ નથી", + // "submission.sections.ccLicense.option.select": "Select an option…", "submission.sections.ccLicense.option.select": "એક વિકલ્પ પસંદ કરો…", - "submission.sections.ccLicense.link": "તમે નીચેના લાઇસન્સ પસંદ કર્યું છે:", + // "submission.sections.ccLicense.link": "You’ve selected the following license:", + // TODO New key - Add a translation + "submission.sections.ccLicense.link": "You’ve selected the following license:", + // "submission.sections.ccLicense.confirmation": "I grant the license above", "submission.sections.ccLicense.confirmation": "હું ઉપરના લાઇસન્સને મંજૂરી આપું છું", + // "submission.sections.general.add-more": "Add more", "submission.sections.general.add-more": "વધુ ઉમેરો", + // "submission.sections.general.cannot_deposit": "Deposit cannot be completed due to errors in the form.
Please fill out all required fields to complete the deposit.", "submission.sections.general.cannot_deposit": "ફોર્મમાં ભૂલોને કારણે ડિપોઝિટ પૂર્ણ કરી શકાતી નથી.
ડિપોઝિટ પૂર્ણ કરવા માટે કૃપા કરીને બધી જરૂરી ફીલ્ડ્સ ભરો.", + // "submission.sections.general.collection": "Collection", "submission.sections.general.collection": "સંગ્રહ", + // "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.", "submission.sections.general.deposit_error_notice": "વસ્તુ સબમિટ કરતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", + // "submission.sections.general.deposit_success_notice": "Submission deposited successfully.", "submission.sections.general.deposit_success_notice": "સબમિશન સફળતાપૂર્વક ડિપોઝિટ થયું.", + // "submission.sections.general.discard_error_notice": "There was an issue when discarding the item, please try again later.", "submission.sections.general.discard_error_notice": "વસ્તુ રદ કરતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", + // "submission.sections.general.discard_success_notice": "Submission discarded successfully.", "submission.sections.general.discard_success_notice": "સબમિશન સફળતાપૂર્વક રદ થયું.", + // "submission.sections.general.metadata-extracted": "New metadata have been extracted and added to the {{sectionId}} section.", "submission.sections.general.metadata-extracted": "નવી મેટાડેટા કાઢી અને {{sectionId}} વિભાગમાં ઉમેરવામાં આવી છે.", + // "submission.sections.general.metadata-extracted-new-section": "New {{sectionId}} section has been added to submission.", "submission.sections.general.metadata-extracted-new-section": "નવી {{sectionId}} વિભાગ સબમિશનમાં ઉમેરવામાં આવી છે.", + // "submission.sections.general.no-collection": "No collection found", "submission.sections.general.no-collection": "કોઈ સંગ્રહ મળ્યો નથી", + // "submission.sections.general.no-entity": "No entity types found", "submission.sections.general.no-entity": "કોઈ એન્ટિટી પ્રકારો મળ્યા નથી", + // "submission.sections.general.no-sections": "No options available", "submission.sections.general.no-sections": "કોઈ વિકલ્પો ઉપલબ્ધ નથી", + // "submission.sections.general.save_error_notice": "There was an issue when saving the item, please try again later.", "submission.sections.general.save_error_notice": "વસ્તુ સાચવતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", + // "submission.sections.general.save_success_notice": "Submission saved successfully.", "submission.sections.general.save_success_notice": "સબમિશન સફળતાપૂર્વક સાચવાયું.", + // "submission.sections.general.search-collection": "Search for a collection", "submission.sections.general.search-collection": "સંગ્રહ માટે શોધો", + // "submission.sections.general.sections_not_valid": "There are incomplete sections.", "submission.sections.general.sections_not_valid": "અપૂર્ણ વિભાગો છે.", - "submission.sections.identifiers.info": "તમારી વસ્તુ માટે નીચેના ઓળખકર્તાઓ બનાવવામાં આવશે:", + // "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + // TODO New key - Add a translation + "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + // "submission.sections.identifiers.no_handle": "No handles have been minted for this item.", "submission.sections.identifiers.no_handle": "આ વસ્તુ માટે કોઈ હેન્ડલ મિન્ટ કરવામાં આવ્યા નથી.", + // "submission.sections.identifiers.no_doi": "No DOIs have been minted for this item.", "submission.sections.identifiers.no_doi": "આ વસ્તુ માટે કોઈ DOI મિન્ટ કરવામાં આવ્યા નથી.", - "submission.sections.identifiers.handle_label": "હેન્ડલ: ", + // "submission.sections.identifiers.handle_label": "Handle: ", + // TODO New key - Add a translation + "submission.sections.identifiers.handle_label": "Handle: ", + // "submission.sections.identifiers.doi_label": "DOI: ", "submission.sections.identifiers.doi_label": "DOI: ", - "submission.sections.identifiers.otherIdentifiers_label": "અન્ય ઓળખકર્તાઓ: ", + // "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + // TODO New key - Add a translation + "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + // "submission.sections.submit.progressbar.accessCondition": "Item access conditions", "submission.sections.submit.progressbar.accessCondition": "વસ્તુ ઍક્સેસ શરતો", + // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "ક્રિએટિવ કોમન્સ લાઇસન્સ", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "રીસાયકલ", + // "submission.sections.submit.progressbar.describe.stepcustom": "Describe", "submission.sections.submit.progressbar.describe.stepcustom": "વર્ણન કરો", + // "submission.sections.submit.progressbar.describe.stepone": "Describe", "submission.sections.submit.progressbar.describe.stepone": "વર્ણન કરો", + // "submission.sections.submit.progressbar.describe.steptwo": "Describe", "submission.sections.submit.progressbar.describe.steptwo": "વર્ણન કરો", + // "submission.sections.submit.progressbar.duplicates": "Potential duplicates", "submission.sections.submit.progressbar.duplicates": "સંભવિત નકલો", + // "submission.sections.submit.progressbar.identifiers": "Identifiers", "submission.sections.submit.progressbar.identifiers": "ઓળખકર્તાઓ", + // "submission.sections.submit.progressbar.license": "Deposit license", "submission.sections.submit.progressbar.license": "ડિપોઝિટ લાઇસન્સ", + // "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies", "submission.sections.submit.progressbar.sherpapolicy": "શેરપા નીતિઓ", + // "submission.sections.submit.progressbar.upload": "Upload files", "submission.sections.submit.progressbar.upload": "ફાઇલો અપલોડ કરો", + // "submission.sections.submit.progressbar.sherpaPolicies": "Publisher open access policy information", "submission.sections.submit.progressbar.sherpaPolicies": "પ્રકાશક ઓપન ઍક્સેસ નીતિ માહિતી", + // "submission.sections.sherpa-policy.title-empty": "No publisher policy information available. If your work has an associated ISSN, please enter it above to see any related publisher open access policies.", "submission.sections.sherpa-policy.title-empty": "કોઈ પ્રકાશક નીતિ માહિતી ઉપલબ્ધ નથી. જો તમારા કાર્ય સાથે સંકળાયેલ ISSN છે, તો કૃપા કરીને ઉપર દાખલ કરો જેથી સંબંધિત પ્રકાશક ઓપન ઍક્સેસ નીતિઓ જોઈ શકાય.", + // "submission.sections.status.errors.title": "Errors", "submission.sections.status.errors.title": "ભૂલો", + // "submission.sections.status.valid.title": "Valid", "submission.sections.status.valid.title": "માન્ય", + // "submission.sections.status.warnings.title": "Warnings", "submission.sections.status.warnings.title": "ચેતવણીઓ", + // "submission.sections.status.errors.aria": "has errors", "submission.sections.status.errors.aria": "ભૂલો છે", + // "submission.sections.status.valid.aria": "is valid", "submission.sections.status.valid.aria": "માન્ય છે", + // "submission.sections.status.warnings.aria": "has warnings", "submission.sections.status.warnings.aria": "ચેતવણીઓ છે", + // "submission.sections.status.info.title": "Additional Information", "submission.sections.status.info.title": "વધુ માહિતી", + // "submission.sections.status.info.aria": "Additional Information", "submission.sections.status.info.aria": "વધુ માહિતી", + // "submission.sections.toggle.open": "Open section", "submission.sections.toggle.open": "વિભાગ ખોલો", + // "submission.sections.toggle.close": "Close section", "submission.sections.toggle.close": "વિભાગ બંધ કરો", + // "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section", "submission.sections.toggle.aria.open": "{{sectionHeader}} વિભાગ વિસ્તૃત કરો", + // "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section", "submission.sections.toggle.aria.close": "{{sectionHeader}} વિભાગ સંકોચો", + // "submission.sections.upload.primary.make": "Make {{fileName}} the primary bitstream", "submission.sections.upload.primary.make": "{{fileName}} ને મુખ્ય બિટસ્ટ્રીમ બનાવો", + // "submission.sections.upload.primary.remove": "Remove {{fileName}} as the primary bitstream", "submission.sections.upload.primary.remove": "{{fileName}} ને મુખ્ય બિટસ્ટ્રીમ તરીકે દૂર કરો", + // "submission.sections.upload.delete.confirm.cancel": "Cancel", "submission.sections.upload.delete.confirm.cancel": "રદ કરો", + // "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?", "submission.sections.upload.delete.confirm.info": "આ કામગીરી પાછી લઈ શકાતી નથી. શું તમે ખાતરી કરો છો?", + // "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure", "submission.sections.upload.delete.confirm.submit": "હા, હું ખાતરી કરું છું", + // "submission.sections.upload.delete.confirm.title": "Delete bitstream", "submission.sections.upload.delete.confirm.title": "બિટસ્ટ્રીમ કાઢી નાખો", + // "submission.sections.upload.delete.submit": "Delete", "submission.sections.upload.delete.submit": "કાઢી નાખો", + // "submission.sections.upload.download.title": "Download bitstream", "submission.sections.upload.download.title": "બિટસ્ટ્રીમ ડાઉનલોડ કરો", + // "submission.sections.upload.drop-message": "Drop files to attach them to the item", "submission.sections.upload.drop-message": "વસ્તુ સાથે જોડવા માટે ફાઇલો છોડો", + // "submission.sections.upload.edit.title": "Edit bitstream", "submission.sections.upload.edit.title": "બિટસ્ટ્રીમ સંપાદિત કરો", + // "submission.sections.upload.form.access-condition-label": "Access condition type", "submission.sections.upload.form.access-condition-label": "ઍક્સેસ શરતો પ્રકાર", + // "submission.sections.upload.form.access-condition-hint": "Select an access condition to apply on the bitstream once the item is deposited", "submission.sections.upload.form.access-condition-hint": "વસ્તુ ડિપોઝિટ થયા પછી બિટસ્ટ્રીમ પર લાગુ કરવા માટે ઍક્સેસ શરતો પસંદ કરો", + // "submission.sections.upload.form.date-required": "Date is required.", "submission.sections.upload.form.date-required": "તારીખ જરૂરી છે.", + // "submission.sections.upload.form.date-required-from": "Grant access from date is required.", "submission.sections.upload.form.date-required-from": "તારીખથી ઍક્સેસ આપો જરૂરી છે.", + // "submission.sections.upload.form.date-required-until": "Grant access until date is required.", "submission.sections.upload.form.date-required-until": "તારીખ સુધી ઍક્સેસ આપો જરૂરી છે.", + // "submission.sections.upload.form.from-label": "Grant access from", "submission.sections.upload.form.from-label": "તારીખથી ઍક્સેસ આપો", + // "submission.sections.upload.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.upload.form.from-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", + // "submission.sections.upload.form.from-placeholder": "From", "submission.sections.upload.form.from-placeholder": "થી", + // "submission.sections.upload.form.group-label": "Group", "submission.sections.upload.form.group-label": "સમૂહ", + // "submission.sections.upload.form.group-required": "Group is required.", "submission.sections.upload.form.group-required": "સમૂહ જરૂરી છે.", + // "submission.sections.upload.form.until-label": "Grant access until", "submission.sections.upload.form.until-label": "તારીખ સુધી ઍક્સેસ આપો", + // "submission.sections.upload.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.upload.form.until-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", + // "submission.sections.upload.form.until-placeholder": "Until", "submission.sections.upload.form.until-placeholder": "સુધી", - "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} સંગ્રહમાં અપલોડ કરેલી ફાઇલો નીચેના સમૂહો અનુસાર ઍક્સેસ કરી શકાશે:", + // "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", + // TODO New key - Add a translation + "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", - "submission.sections.upload.header.policy.default.withlist": "કૃપા કરીને નોંધો કે {{collectionName}} સંગ્રહમાં અપલોડ કરેલી ફાઇલો, એકલ ફાઇલ માટે સ્પષ્ટપણે નક્કી કરેલા સમૂહો ઉપરાંત, નીચેના સમૂહો સાથે ઍક્સેસ કરી શકાશે:", + // "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + // TODO New key - Add a translation + "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + // "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or upload additional files by dragging & dropping them anywhere on the page.", "submission.sections.upload.info": "અહીં તમને વસ્તુમાં હાલની બધી ફાઇલો મળશે. તમે ફાઇલ મેટાડેટા અને ઍક્સેસ શરતોને અપડેટ કરી શકો છો અથવા પેજ પર ક્યાંય પણ ડ્રેગ અને ડ્રોપ કરીને વધારાની ફાઇલો અપલોડ કરી શકો છો.", + // "submission.sections.upload.no-entry": "No", "submission.sections.upload.no-entry": "ના", + // "submission.sections.upload.no-file-uploaded": "No file uploaded yet.", "submission.sections.upload.no-file-uploaded": "હજી સુધી કોઈ ફાઇલ અપલોડ કરવામાં આવી નથી.", + // "submission.sections.upload.save-metadata": "Save metadata", "submission.sections.upload.save-metadata": "મેટાડેટા સાચવો", + // "submission.sections.upload.undo": "Cancel", "submission.sections.upload.undo": "રદ કરો", + // "submission.sections.upload.upload-failed": "Upload failed", "submission.sections.upload.upload-failed": "અપલોડ નિષ્ફળ", + // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "અપલોડ સફળ", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "જ્યારે ચકાસવામાં આવે છે, આ વસ્તુ શોધ/બ્રાઉઝમાં શોધી શકાય તેવી હશે. જ્યારે અનચેક કરવામાં આવે છે, વસ્તુ માત્ર સીધી લિંક દ્વારા ઉપલબ્ધ હશે અને ક્યારેય શોધ/બ્રાઉઝમાં દેખાશે નહીં.", + // "submission.sections.accesses.form.discoverable-label": "Discoverable", "submission.sections.accesses.form.discoverable-label": "શોધી શકાય તેવી", + // "submission.sections.accesses.form.access-condition-label": "Access condition type", "submission.sections.accesses.form.access-condition-label": "ઍક્સેસ શરતો પ્રકાર", + // "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited", "submission.sections.accesses.form.access-condition-hint": "વસ્તુ ડિપોઝિટ થયા પછી વસ્તુ પર લાગુ કરવા માટે ઍક્સેસ શરતો પસંદ કરો", + // "submission.sections.accesses.form.date-required": "Date is required.", "submission.sections.accesses.form.date-required": "તારીખ જરૂરી છે.", + // "submission.sections.accesses.form.date-required-from": "Grant access from date is required.", "submission.sections.accesses.form.date-required-from": "તારીખથી ઍક્સેસ આપો જરૂરી છે.", + // "submission.sections.accesses.form.date-required-until": "Grant access until date is required.", "submission.sections.accesses.form.date-required-until": "તારીખ સુધી ઍક્સેસ આપો જરૂરી છે.", + // "submission.sections.accesses.form.from-label": "Grant access from", "submission.sections.accesses.form.from-label": "તારીખથી ઍક્સેસ આપો", + // "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.accesses.form.from-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", + // "submission.sections.accesses.form.from-placeholder": "From", "submission.sections.accesses.form.from-placeholder": "થી", + // "submission.sections.accesses.form.group-label": "Group", "submission.sections.accesses.form.group-label": "સમૂહ", + // "submission.sections.accesses.form.group-required": "Group is required.", "submission.sections.accesses.form.group-required": "સમૂહ જરૂરી છે.", + // "submission.sections.accesses.form.until-label": "Grant access until", "submission.sections.accesses.form.until-label": "તારીખ સુધી ઍક્સેસ આપો", + // "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.accesses.form.until-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", + // "submission.sections.accesses.form.until-placeholder": "Until", "submission.sections.accesses.form.until-placeholder": "સુધી", + // "submission.sections.duplicates.none": "No duplicates were detected.", "submission.sections.duplicates.none": "કોઈ નકલો શોધી નથી.", + // "submission.sections.duplicates.detected": "Potential duplicates were detected. Please review the list below.", "submission.sections.duplicates.detected": "સંભવિત નકલો શોધી છે. કૃપા કરીને નીચેની યાદી સમીક્ષા કરો.", + // "submission.sections.duplicates.in-workspace": "This item is in workspace", "submission.sections.duplicates.in-workspace": "આ વસ્તુ વર્કસ્પેસમાં છે", + // "submission.sections.duplicates.in-workflow": "This item is in workflow", "submission.sections.duplicates.in-workflow": "આ વસ્તુ વર્કફ્લોમાં છે", + // "submission.sections.license.granted-label": "I confirm the license above", "submission.sections.license.granted-label": "હું ઉપરના લાઇસન્સને મંજૂરી આપું છું", + // "submission.sections.license.required": "You must accept the license", "submission.sections.license.required": "તમારે લાઇસન્સ સ્વીકારવું પડશે", + // "submission.sections.license.notgranted": "You must accept the license", "submission.sections.license.notgranted": "તમારે લાઇસન્સ સ્વીકારવું પડશે", + // "submission.sections.sherpa.publication.information": "Publication information", "submission.sections.sherpa.publication.information": "પ્રકાશન માહિતી", + // "submission.sections.sherpa.publication.information.title": "Title", "submission.sections.sherpa.publication.information.title": "શીર્ષક", + // "submission.sections.sherpa.publication.information.issns": "ISSNs", "submission.sections.sherpa.publication.information.issns": "ISSNs", + // "submission.sections.sherpa.publication.information.url": "URL", "submission.sections.sherpa.publication.information.url": "URL", + // "submission.sections.sherpa.publication.information.publishers": "Publisher", "submission.sections.sherpa.publication.information.publishers": "પ્રકાશક", + // "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", + // "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", + // "submission.sections.sherpa.publisher.policy": "Publisher Policy", "submission.sections.sherpa.publisher.policy": "પ્રકાશક નીતિ", + // "submission.sections.sherpa.publisher.policy.description": "The below information was found via Sherpa Romeo. Based on the policies of your publisher, it provides advice regarding whether an embargo may be necessary and/or which files you are allowed to upload. If you have questions, please contact your site administrator via the feedback form in the footer.", "submission.sections.sherpa.publisher.policy.description": "નીચેની માહિતી Sherpa Romeo દ્વારા મળી છે. તમારા પ્રકાશકની નીતિઓના આધારે, તે સલાહ આપે છે કે શું એક એમ્બાર્ગો જરૂરી હોઈ શકે છે અને/અથવા તમે કયા ફાઇલો અપલોડ કરી શકો છો. જો તમને પ્રશ્નો હોય, તો કૃપા કરીને ફૂટર માં ફીડબેક ફોર્મ દ્વારા તમારા સાઇટ એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", + // "submission.sections.sherpa.publisher.policy.openaccess": "Open Access pathways permitted by this journal's policy are listed below by article version. Click on a pathway for a more detailed view", "submission.sections.sherpa.publisher.policy.openaccess": "આ જર્નલની નીતિ દ્વારા પરવાનગી આપેલા ઓપન ઍક્સેસ માર્ગો નીચે લેખના સંસ્કરણ દ્વારા સૂચિબદ્ધ છે. વધુ વિગતવાર દૃશ્ય માટે માર્ગ પર ક્લિક કરો", - "submission.sections.sherpa.publisher.policy.more.information": "વધુ માહિતી માટે, કૃપા કરીને નીચેના લિંક જુઓ:", + // "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + // "submission.sections.sherpa.publisher.policy.version": "Version", "submission.sections.sherpa.publisher.policy.version": "સંસ્કરણ", + // "submission.sections.sherpa.publisher.policy.embargo": "Embargo", "submission.sections.sherpa.publisher.policy.embargo": "એમ્બાર્ગો", + // "submission.sections.sherpa.publisher.policy.noembargo": "No Embargo", "submission.sections.sherpa.publisher.policy.noembargo": "કોઈ એમ્બાર્ગો નથી", + // "submission.sections.sherpa.publisher.policy.nolocation": "None", "submission.sections.sherpa.publisher.policy.nolocation": "કોઈ નથી", + // "submission.sections.sherpa.publisher.policy.license": "License", "submission.sections.sherpa.publisher.policy.license": "લાઇસન્સ", + // "submission.sections.sherpa.publisher.policy.prerequisites": "Prerequisites", "submission.sections.sherpa.publisher.policy.prerequisites": "પૂર્વશરતો", + // "submission.sections.sherpa.publisher.policy.location": "Location", "submission.sections.sherpa.publisher.policy.location": "સ્થાન", + // "submission.sections.sherpa.publisher.policy.conditions": "Conditions", "submission.sections.sherpa.publisher.policy.conditions": "શરતો", + // "submission.sections.sherpa.publisher.policy.refresh": "Refresh", "submission.sections.sherpa.publisher.policy.refresh": "રીફ્રેશ", + // "submission.sections.sherpa.record.information": "Record Information", "submission.sections.sherpa.record.information": "રેકોર્ડ માહિતી", + // "submission.sections.sherpa.record.information.id": "ID", "submission.sections.sherpa.record.information.id": "ID", + // "submission.sections.sherpa.record.information.date.created": "Date Created", "submission.sections.sherpa.record.information.date.created": "તારીખ બનાવેલ", + // "submission.sections.sherpa.record.information.date.modified": "Last Modified", "submission.sections.sherpa.record.information.date.modified": "છેલ્લે સુધારેલ", + // "submission.sections.sherpa.record.information.uri": "URI", "submission.sections.sherpa.record.information.uri": "URI", + // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations", "submission.sections.sherpa.error.message": "Sherpa માહિતી મેળવવામાં ભૂલ આવી", + // "submission.submit.breadcrumbs": "New submission", "submission.submit.breadcrumbs": "નવું સબમિશન", + // "submission.submit.title": "New submission", "submission.submit.title": "નવું સબમિશન", + // "submission.workflow.generic.delete": "Delete", "submission.workflow.generic.delete": "કાઢી નાખો", + // "submission.workflow.generic.delete-help": "Select this option to discard this item. You will then be asked to confirm it.", "submission.workflow.generic.delete-help": "આ વસ્તુને રદ કરવા માટે આ વિકલ્પ પસંદ કરો. પછી તમને તેની પુષ્ટિ કરવા માટે પૂછવામાં આવશે.", + // "submission.workflow.generic.edit": "Edit", "submission.workflow.generic.edit": "સંપાદિત કરો", + // "submission.workflow.generic.edit-help": "Select this option to change the item's metadata.", "submission.workflow.generic.edit-help": "વસ્તુના મેટાડેટા બદલવા માટે આ વિકલ્પ પસંદ કરો.", + // "submission.workflow.generic.view": "View", "submission.workflow.generic.view": "જુઓ", + // "submission.workflow.generic.view-help": "Select this option to view the item's metadata.", "submission.workflow.generic.view-help": "વસ્તુના મેટાડેટા જોવા માટે આ વિકલ્પ પસંદ કરો.", + // "submission.workflow.generic.submit_select_reviewer": "Select Reviewer", "submission.workflow.generic.submit_select_reviewer": "સમીક્ષક પસંદ કરો", + // "submission.workflow.generic.submit_select_reviewer-help": "", "submission.workflow.generic.submit_select_reviewer-help": "", + // "submission.workflow.generic.submit_score": "Rate", "submission.workflow.generic.submit_score": "મૂલ્યાંકન", + // "submission.workflow.generic.submit_score-help": "", "submission.workflow.generic.submit_score-help": "", + // "submission.workflow.tasks.claimed.approve": "Approve", "submission.workflow.tasks.claimed.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": "જો તમે વસ્તુની સમીક્ષા કરી છે અને તે સંગ્રહમાં સમાવેશ માટે યોગ્ય છે, તો \\\"મંજૂર કરો\\\" પસંદ કરો.", + // "submission.workflow.tasks.claimed.edit": "Edit", "submission.workflow.tasks.claimed.edit": "સંપાદિત કરો", + // "submission.workflow.tasks.claimed.edit_help": "Select this option to change the item's metadata.", "submission.workflow.tasks.claimed.edit_help": "વસ્તુના મેટાડેટા બદલવા માટે આ વિકલ્પ પસંદ કરો.", + // "submission.workflow.tasks.claimed.decline": "Decline", "submission.workflow.tasks.claimed.decline": "નકારો", + // "submission.workflow.tasks.claimed.decline_help": "", "submission.workflow.tasks.claimed.decline_help": "", + // "submission.workflow.tasks.claimed.reject.reason.info": "Please enter your reason for rejecting the submission into the box below, indicating whether the submitter may fix a problem and resubmit.", "submission.workflow.tasks.claimed.reject.reason.info": "કૃપા કરીને નીચેના બોક્સમાં સબમિશનને નકારવાના તમારા કારણ દાખલ કરો, જે દર્શાવે છે કે સબમિટર સમસ્યા ઠીક કરી શકે છે અને ફરીથી સબમિટ કરી શકે છે.", + // "submission.workflow.tasks.claimed.reject.reason.placeholder": "Describe the reason of reject", "submission.workflow.tasks.claimed.reject.reason.placeholder": "નકારના કારણનું વર્ણન કરો", + // "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item", "submission.workflow.tasks.claimed.reject.reason.submit": "વસ્તુ નકારો", + // "submission.workflow.tasks.claimed.reject.reason.title": "Reason", "submission.workflow.tasks.claimed.reject.reason.title": "કારણ", + // "submission.workflow.tasks.claimed.reject.submit": "Reject", "submission.workflow.tasks.claimed.reject.submit": "નકારો", + // "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is not 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": "જો તમે વસ્તુની સમીક્ષા કરી છે અને તે સંગ્રહમાં સમાવેશ માટે યોગ્ય નથી, તો \\\"નકારો\\\" પસંદ કરો. પછી તમને સંદેશ દાખલ કરવા માટે પૂછવામાં આવશે કે વસ્તુ કેમ અનુકૂળ નથી, અને સબમિટરએ કંઈક બદલવું જોઈએ અને ફરીથી સબમિટ કરવું જોઈએ.", + // "submission.workflow.tasks.claimed.return": "Return to pool", "submission.workflow.tasks.claimed.return": "પુલ પર પાછા જાઓ", + // "submission.workflow.tasks.claimed.return_help": "Return the task to the pool so that another user may perform the task.", "submission.workflow.tasks.claimed.return_help": "ટાસ્કને પુલ પર પાછા આપો જેથી અન્ય વપરાશકર્તા ટાસ્ક કરી શકે.", + // "submission.workflow.tasks.generic.error": "Error occurred during operation...", "submission.workflow.tasks.generic.error": "ઓપરેશન દરમિયાન ભૂલ આવી...", + // "submission.workflow.tasks.generic.processing": "Processing...", "submission.workflow.tasks.generic.processing": "પ્રક્રિયા...", + // "submission.workflow.tasks.generic.submitter": "Submitter", "submission.workflow.tasks.generic.submitter": "સબમિટર", + // "submission.workflow.tasks.generic.success": "Operation successful", "submission.workflow.tasks.generic.success": "ઓપરેશન સફળ", + // "submission.workflow.tasks.pool.claim": "Claim", "submission.workflow.tasks.pool.claim": "દાવો", + // "submission.workflow.tasks.pool.claim_help": "Assign this task to yourself.", "submission.workflow.tasks.pool.claim_help": "આ ટાસ્કને તમારા માટે સોંપો.", + // "submission.workflow.tasks.pool.hide-detail": "Hide detail", "submission.workflow.tasks.pool.hide-detail": "વિગત છુપાવો", + // "submission.workflow.tasks.pool.show-detail": "Show detail", "submission.workflow.tasks.pool.show-detail": "વિગત બતાવો", + // "submission.workflow.tasks.duplicates": "potential duplicates were detected for this item. Claim and edit this item to see details.", "submission.workflow.tasks.duplicates": "આ વસ્તુ માટે સંભવિત નકલો શોધી છે. વિગતો જોવા માટે આ વસ્તુનો દાવો કરો અને સંપાદિત કરો.", + // "submission.workspace.generic.view": "View", "submission.workspace.generic.view": "જુઓ", + // "submission.workspace.generic.view-help": "Select this option to view the item's metadata.", "submission.workspace.generic.view-help": "વસ્તુના મેટાડેટા જોવા માટે આ વિકલ્પ પસંદ કરો.", + // "submitter.empty": "N/A", "submitter.empty": "N/A", + // "subscriptions.title": "Subscriptions", "subscriptions.title": "સબ્સ્ક્રિપ્શન્સ", + // "subscriptions.item": "Subscriptions for items", "subscriptions.item": "વસ્તુઓ માટે સબ્સ્ક્રિપ્શન્સ", + // "subscriptions.collection": "Subscriptions for collections", "subscriptions.collection": "સંગ્રહો માટે સબ્સ્ક્રિપ્શન્સ", + // "subscriptions.community": "Subscriptions for communities", "subscriptions.community": "સમુદાયો માટે સબ્સ્ક્રિપ્શન્સ", + // "subscriptions.subscription_type": "Subscription type", "subscriptions.subscription_type": "સબ્સ્ક્રિપ્શન પ્રકાર", + // "subscriptions.frequency": "Subscription frequency", "subscriptions.frequency": "સબ્સ્ક્રિપ્શન આવર્તન", + // "subscriptions.frequency.D": "Daily", "subscriptions.frequency.D": "દૈનિક", + // "subscriptions.frequency.M": "Monthly", "subscriptions.frequency.M": "માસિક", + // "subscriptions.frequency.W": "Weekly", "subscriptions.frequency.W": "સાપ્તાહિક", + // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "સબ્સ્ક્રાઇબ કરો", + // "subscriptions.unsubscribe": "Unsubscribe", "subscriptions.unsubscribe": "સબ્સ્ક્રિપ્શન રદ કરો", + // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "સબ્સ્ક્રિપ્શન્સ", + // "subscriptions.modal.type-frequency": "Type and frequency", "subscriptions.modal.type-frequency": "પ્રકાર અને આવર્તન", + // "subscriptions.modal.close": "Close", "subscriptions.modal.close": "બંધ કરો", + // "subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile", "subscriptions.modal.delete-info": "આ સબ્સ્ક્રિપ્શનને દૂર કરવા માટે, કૃપા કરીને તમારા વપરાશકર્તા પ્રોફાઇલ હેઠળ \\\"સબ્સ્ક્રિપ્શન્સ\\\" પેજ પર જાઓ", + // "subscriptions.modal.new-subscription-form.type.content": "Content", "subscriptions.modal.new-subscription-form.type.content": "સામગ્રી", + // "subscriptions.modal.new-subscription-form.frequency.D": "Daily", "subscriptions.modal.new-subscription-form.frequency.D": "દૈનિક", + // "subscriptions.modal.new-subscription-form.frequency.W": "Weekly", "subscriptions.modal.new-subscription-form.frequency.W": "સાપ્તાહિક", + // "subscriptions.modal.new-subscription-form.frequency.M": "Monthly", "subscriptions.modal.new-subscription-form.frequency.M": "માસિક", + // "subscriptions.modal.new-subscription-form.submit": "Submit", "subscriptions.modal.new-subscription-form.submit": "સબમિટ કરો", + // "subscriptions.modal.new-subscription-form.processing": "Processing...", "subscriptions.modal.new-subscription-form.processing": "પ્રક્રિયા...", + // "subscriptions.modal.create.success": "Subscribed to {{ type }} successfully.", "subscriptions.modal.create.success": "{{ type }} માટે સફળતાપૂર્વક સબ્સ્ક્રાઇબ કર્યું.", + // "subscriptions.modal.delete.success": "Subscription deleted successfully", "subscriptions.modal.delete.success": "સબ્સ્ક્રિપ્શન સફળતાપૂર્વક દૂર કર્યું", + // "subscriptions.modal.update.success": "Subscription to {{ type }} updated successfully", "subscriptions.modal.update.success": "{{ type }} માટે સબ્સ્ક્રિપ્શન સફળતાપૂર્વક અપડેટ કર્યું", + // "subscriptions.modal.create.error": "An error occurs during the subscription creation", "subscriptions.modal.create.error": "સબ્સ્ક્રિપ્શન બનાવવાની પ્રક્રિયા દરમિયાન ભૂલ આવી", + // "subscriptions.modal.delete.error": "An error occurs during the subscription delete", "subscriptions.modal.delete.error": "સબ્સ્ક્રિપ્શન દૂર કરતી વખતે ભૂલ આવી", + // "subscriptions.modal.update.error": "An error occurs during the subscription update", "subscriptions.modal.update.error": "સબ્સ્ક્રિપ્શન અપડેટ કરતી વખતે ભૂલ આવી", + // "subscriptions.table.dso": "Subject", "subscriptions.table.dso": "વિષય", + // "subscriptions.table.subscription_type": "Subscription Type", "subscriptions.table.subscription_type": "સબ્સ્ક્રિપ્શન પ્રકાર", + // "subscriptions.table.subscription_frequency": "Subscription Frequency", "subscriptions.table.subscription_frequency": "સબ્સ્ક્રિપ્શન આવર્તન", + // "subscriptions.table.action": "Action", "subscriptions.table.action": "ક્રિયા", + // "subscriptions.table.edit": "Edit", "subscriptions.table.edit": "સંપાદિત કરો", + // "subscriptions.table.delete": "Delete", "subscriptions.table.delete": "કાઢી નાખો", + // "subscriptions.table.not-available": "Not available", "subscriptions.table.not-available": "ઉપલબ્ધ નથી", + // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "સબ્સ્ક્રાઇબ કરેલી વસ્તુને કાઢી નાખવામાં આવી છે, અથવા તમને હાલમાં તેને જોવા માટે પરવાનગી નથી", + // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", "subscriptions.table.empty.message": "તમારે આ સમયે કોઈ સબ્સ્ક્રિપ્શન નથી. સમુદાય અથવા સંગ્રહ માટે ઇમેઇલ અપડેટ્સ માટે સબ્સ્ક્રાઇબ કરવા માટે, વસ્તુના પેજ પર સબ્સ્ક્રિપ્શન બટનનો ઉપયોગ કરો.", + // "thumbnail.default.alt": "Thumbnail Image", "thumbnail.default.alt": "થંબનેલ છબી", + // "thumbnail.default.placeholder": "No Thumbnail Available", "thumbnail.default.placeholder": "કોઈ થંબનેલ ઉપલબ્ધ નથી", + // "thumbnail.project.alt": "Project Logo", "thumbnail.project.alt": "પ્રોજેક્ટ લોગો", + // "thumbnail.project.placeholder": "Project Placeholder Image", "thumbnail.project.placeholder": "પ્રોજેક્ટ પ્લેસહોલ્ડર છબી", + // "thumbnail.orgunit.alt": "OrgUnit Logo", "thumbnail.orgunit.alt": "OrgUnit લોગો", + // "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image", "thumbnail.orgunit.placeholder": "OrgUnit પ્લેસહોલ્ડર છબી", + // "thumbnail.person.alt": "Profile Picture", "thumbnail.person.alt": "પ્રોફાઇલ પિક્ચર", + // "thumbnail.person.placeholder": "No Profile Picture Available", "thumbnail.person.placeholder": "કોઈ પ્રોફાઇલ પિક્ચર ઉપલબ્ધ નથી", + // "title": "DSpace", "title": "DSpace", + // "vocabulary-treeview.header": "Hierarchical tree view", "vocabulary-treeview.header": "હાયરાર્કિકલ ટ્રી વ્યૂ", + // "vocabulary-treeview.load-more": "Load more", "vocabulary-treeview.load-more": "વધુ લોડ કરો", + // "vocabulary-treeview.search.form.reset": "Reset", "vocabulary-treeview.search.form.reset": "રીસેટ", + // "vocabulary-treeview.search.form.search": "Search", "vocabulary-treeview.search.form.search": "શોધો", + // "vocabulary-treeview.search.form.search-placeholder": "Filter results by typing the first few letters", "vocabulary-treeview.search.form.search-placeholder": "પરિણામોને ફિલ્ટર કરવા માટે પ્રથમ થોડા અક્ષરો લખો", + // "vocabulary-treeview.search.no-result": "There were no items to show", "vocabulary-treeview.search.no-result": "દેખાવ માટે કોઈ વસ્તુઓ નહોતી", + // "vocabulary-treeview.tree.description.nsi": "The Norwegian Science Index", "vocabulary-treeview.tree.description.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ", + // "vocabulary-treeview.tree.description.srsc": "Research Subject Categories", "vocabulary-treeview.tree.description.srsc": "રિસર્ચ સબજેક્ટ કેટેગરીઝ", + // "vocabulary-treeview.info": "Select a subject to add as search filter", "vocabulary-treeview.info": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", + // "uploader.browse": "browse", "uploader.browse": "બ્રાઉઝ કરો", + // "uploader.drag-message": "Drag & Drop your files here", "uploader.drag-message": "તમારી ફાઇલો અહીં ડ્રેગ અને ડ્રોપ કરો", + // "uploader.delete.btn-title": "Delete", "uploader.delete.btn-title": "કાઢી નાખો", + // "uploader.or": ", or ", "uploader.or": ", અથવા ", + // "uploader.processing": "Processing uploaded file(s)... (it's now safe to close this page)", "uploader.processing": "અપલોડ કરેલી ફાઇલોની પ્રક્રિયા કરી રહ્યું છે... (આ પેજને બંધ કરવું સુરક્ષિત છે)", + // "uploader.queue-length": "Queue length", "uploader.queue-length": "કતારની લંબાઈ", + // "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": "વાસ્તવિક મેટાડેટા તરીકે વર્ચ્યુઅલ મેટાડેટા સાચવવા માટે તમે કયા પ્રકારો પસંદ કરવા માંગો છો તે પસંદ કરો", + // "virtual-metadata.delete-item.modal-head": "The virtual metadata of this relation", "virtual-metadata.delete-item.modal-head": "આ સંબંધના વર્ચ્યુઅલ મેટાડેટા", + // "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": "વાસ્તવિક મેટાડેટા તરીકે વર્ચ્યુઅલ મેટાડેટા સાચવવા માટે તમે કયા વસ્તુઓ પસંદ કરવા માંગો છો તે પસંદ કરો", + // "supervisedWorkspace.search.results.head": "Supervised Items", "supervisedWorkspace.search.results.head": "સુપરવાઇઝ્ડ વસ્તુઓ", + // "workspace.search.results.head": "Your submissions", "workspace.search.results.head": "તમારા સબમિશન્સ", + // "workflowAdmin.search.results.head": "Administer Workflow", "workflowAdmin.search.results.head": "વર્કફ્લો સંચાલન", + // "workflow.search.results.head": "Workflow tasks", "workflow.search.results.head": "વર્કફ્લો ટાસ્ક્સ", + // "supervision.search.results.head": "Workflow and Workspace tasks", "supervision.search.results.head": "વર્કફ્લો અને વર્કસ્પેસ ટાસ્ક્સ", + // "workflow-item.edit.breadcrumbs": "Edit workflowitem", "workflow-item.edit.breadcrumbs": "વર્કફ્લો આઇટમ સંપાદિત કરો", + // "workflow-item.edit.title": "Edit workflowitem", "workflow-item.edit.title": "વર્કફ્લો આઇટમ સંપાદિત કરો", + // "workflow-item.delete.notification.success.title": "Deleted", "workflow-item.delete.notification.success.title": "કાઢી નાખ્યું", + // "workflow-item.delete.notification.success.content": "This workflow item was successfully deleted", "workflow-item.delete.notification.success.content": "આ વર્કફ્લો આઇટમ સફળતાપૂર્વક કાઢી નાખવામાં આવ્યું", + // "workflow-item.delete.notification.error.title": "Something went wrong", "workflow-item.delete.notification.error.title": "કંઈક ખોટું થયું", + // "workflow-item.delete.notification.error.content": "The workflow item could not be deleted", "workflow-item.delete.notification.error.content": "વર્કફ્લો આઇટમને કાઢી શકાતું નથી", + // "workflow-item.delete.title": "Delete workflow item", "workflow-item.delete.title": "વર્કફ્લો આઇટમ કાઢી નાખો", + // "workflow-item.delete.header": "Delete workflow item", "workflow-item.delete.header": "વર્કફ્લો આઇટમ કાઢી નાખો", + // "workflow-item.delete.button.cancel": "Cancel", "workflow-item.delete.button.cancel": "રદ કરો", + // "workflow-item.delete.button.confirm": "Delete", "workflow-item.delete.button.confirm": "કાઢી નાખો", + // "workflow-item.send-back.notification.success.title": "Sent back to submitter", "workflow-item.send-back.notification.success.title": "સબમિટર પર પાછું મોકલ્યું", + // "workflow-item.send-back.notification.success.content": "This workflow item was successfully sent back to the submitter", "workflow-item.send-back.notification.success.content": "આ વર્કફ્લો આઇટમ સફળતાપૂર્વક સબમિટર પર પાછું મોકલવામાં આવ્યું", + // "workflow-item.send-back.notification.error.title": "Something went wrong", "workflow-item.send-back.notification.error.title": "કંઈક ખોટું થયું", + // "workflow-item.send-back.notification.error.content": "The workflow item could not be sent back to the submitter", "workflow-item.send-back.notification.error.content": "વર્કફ્લો આઇટમને સબમિટર પર પાછું મોકલી શકાતું નથી", + // "workflow-item.send-back.title": "Send workflow item back to submitter", "workflow-item.send-back.title": "વર્કફ્લો આઇટમ સબમિટર પર પાછું મોકલો", + // "workflow-item.send-back.header": "Send workflow item back to submitter", "workflow-item.send-back.header": "વર્કફ્લો આઇટમ સબમિટર પર પાછું મોકલો", + // "workflow-item.send-back.button.cancel": "Cancel", "workflow-item.send-back.button.cancel": "રદ કરો", + // "workflow-item.send-back.button.confirm": "Send back", "workflow-item.send-back.button.confirm": "પાછું મોકલો", + // "workflow-item.view.breadcrumbs": "Workflow View", "workflow-item.view.breadcrumbs": "વર્કફ્લો દૃશ્ય", + // "workspace-item.view.breadcrumbs": "Workspace View", "workspace-item.view.breadcrumbs": "વર્કસ્પેસ દૃશ્ય", + // "workspace-item.view.title": "Workspace View", "workspace-item.view.title": "વર્કસ્પેસ દૃશ્ય", + // "workspace-item.delete.breadcrumbs": "Workspace Delete", "workspace-item.delete.breadcrumbs": "વર્કસ્પેસ કાઢી નાખો", + // "workspace-item.delete.header": "Delete workspace item", "workspace-item.delete.header": "વર્કસ્પેસ આઇટમ કાઢી નાખો", + // "workspace-item.delete.button.confirm": "Delete", "workspace-item.delete.button.confirm": "કાઢી નાખો", + // "workspace-item.delete.button.cancel": "Cancel", "workspace-item.delete.button.cancel": "રદ કરો", + // "workspace-item.delete.notification.success.title": "Deleted", "workspace-item.delete.notification.success.title": "કાઢી નાખ્યું", + // "workspace-item.delete.title": "This workspace item was successfully deleted", "workspace-item.delete.title": "આ વર્કસ્પેસ આઇટમ સફળતાપૂર્વક કાઢી નાખવામાં આવ્યું", + // "workspace-item.delete.notification.error.title": "Something went wrong", "workspace-item.delete.notification.error.title": "કંઈક ખોટું થયું", + // "workspace-item.delete.notification.error.content": "The workspace item could not be deleted", "workspace-item.delete.notification.error.content": "વર્કસ્પેસ આઇટમને કાઢી શકાતું નથી", + // "workflow-item.advanced.title": "Advanced workflow", "workflow-item.advanced.title": "ઉન્નત વર્કફ્લો", + // "workflow-item.selectrevieweraction.notification.success.title": "Selected reviewer", "workflow-item.selectrevieweraction.notification.success.title": "પસંદ કરેલા સમીક્ષક", + // "workflow-item.selectrevieweraction.notification.success.content": "The reviewer for this workflow item has been successfully selected", "workflow-item.selectrevieweraction.notification.success.content": "આ વર્કફ્લો આઇટમ માટે સમીક્ષક સફળતાપૂર્વક પસંદ કરવામાં આવ્યો છે", + // "workflow-item.selectrevieweraction.notification.error.title": "Something went wrong", "workflow-item.selectrevieweraction.notification.error.title": "કંઈક ખોટું થયું", + // "workflow-item.selectrevieweraction.notification.error.content": "Couldn't select the reviewer for this workflow item", "workflow-item.selectrevieweraction.notification.error.content": "આ વર્કફ્લો આઇટમ માટે સમીક્ષક પસંદ કરી શકાતું નથી", + // "workflow-item.selectrevieweraction.title": "Select Reviewer", "workflow-item.selectrevieweraction.title": "સમીક્ષક પસંદ કરો", + // "workflow-item.selectrevieweraction.header": "Select Reviewer", "workflow-item.selectrevieweraction.header": "સમીક્ષક પસંદ કરો", + // "workflow-item.selectrevieweraction.button.cancel": "Cancel", "workflow-item.selectrevieweraction.button.cancel": "રદ કરો", + // "workflow-item.selectrevieweraction.button.confirm": "Confirm", "workflow-item.selectrevieweraction.button.confirm": "પુષ્ટિ કરો", + // "workflow-item.scorereviewaction.notification.success.title": "Rating review", "workflow-item.scorereviewaction.notification.success.title": "મૂલ્યાંકન સમીક્ષા", + // "workflow-item.scorereviewaction.notification.success.content": "The rating for this item workflow item has been successfully submitted", "workflow-item.scorereviewaction.notification.success.content": "આ આઇટમ વર્કફ્લો આઇટમ માટે મૂલ્યાંકન સફળતાપૂર્વક સબમિટ કર્યું છે", + // "workflow-item.scorereviewaction.notification.error.title": "Something went wrong", "workflow-item.scorereviewaction.notification.error.title": "કંઈક ખોટું થયું", + // "workflow-item.scorereviewaction.notification.error.content": "Couldn't rate this item", "workflow-item.scorereviewaction.notification.error.content": "આ આઇટમને મૂલ્યાંકન કરી શકાતું નથી", + // "workflow-item.scorereviewaction.title": "Rate this item", "workflow-item.scorereviewaction.title": "આ આઇટમને મૂલ્યાંકન કરો", + // "workflow-item.scorereviewaction.header": "Rate this item", "workflow-item.scorereviewaction.header": "આ આઇટમને મૂલ્યાંકન કરો", + // "workflow-item.scorereviewaction.button.cancel": "Cancel", "workflow-item.scorereviewaction.button.cancel": "રદ કરો", + // "workflow-item.scorereviewaction.button.confirm": "Confirm", "workflow-item.scorereviewaction.button.confirm": "પુષ્ટિ કરો", + // "idle-modal.header": "Session will expire soon", "idle-modal.header": "સત્ર ટૂંક સમયમાં સમાપ્ત થશે", + // "idle-modal.info": "For security reasons, user sessions expire after {{ timeToExpire }} minutes of inactivity. Your session will expire soon. Would you like to extend it or log out?", "idle-modal.info": "સુરક્ષા કારણોસર, વપરાશકર્તા સત્રો {{ timeToExpire }} મિનિટની નિષ્ક્રિયતા પછી સમાપ્ત થાય છે. તમારું સત્ર ટૂંક સમયમાં સમાપ્ત થશે. શું તમે તેને વિસ્તૃત કરવા માંગો છો અથવા લોગ આઉટ કરવા માંગો છો?", + // "idle-modal.log-out": "Log out", "idle-modal.log-out": "લોગ આઉટ", + // "idle-modal.extend-session": "Extend session", "idle-modal.extend-session": "સત્ર વિસ્તૃત કરો", + // "researcher.profile.action.processing": "Processing...", "researcher.profile.action.processing": "પ્રક્રિયા...", + // "researcher.profile.associated": "Researcher profile associated", "researcher.profile.associated": "રિસર્ચર પ્રોફાઇલ સંકળાયેલ", + // "researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility", "researcher.profile.change-visibility.fail": "પ્રોફાઇલ દૃશ્યતા બદલતી વખતે અનપેક્ષિત ભૂલ આવી", + // "researcher.profile.create.new": "Create new", "researcher.profile.create.new": "નવું બનાવો", + // "researcher.profile.create.success": "Researcher profile created successfully", "researcher.profile.create.success": "રિસર્ચર પ્રોફાઇલ સફળતાપૂર્વક બનાવવામાં આવી", + // "researcher.profile.create.fail": "An error occurs during the researcher profile creation", "researcher.profile.create.fail": "રિસર્ચર પ્રોફાઇલ બનાવવાની પ્રક્રિયા દરમિયાન ભૂલ આવી", + // "researcher.profile.delete": "Delete", "researcher.profile.delete": "કાઢી નાખો", + // "researcher.profile.expose": "Expose", "researcher.profile.expose": "પ્રદર્શિત કરો", + // "researcher.profile.hide": "Hide", "researcher.profile.hide": "છુપાવો", + // "researcher.profile.not.associated": "Researcher profile not yet associated", "researcher.profile.not.associated": "રિસર્ચર પ્રોફાઇલ હજી સુધી સંકળાયેલ નથી", + // "researcher.profile.view": "View", "researcher.profile.view": "જુઓ", + // "researcher.profile.private.visibility": "PRIVATE", "researcher.profile.private.visibility": "ખાનગી", + // "researcher.profile.public.visibility": "PUBLIC", "researcher.profile.public.visibility": "જાહેર", - "researcher.profile.status": "સ્થિતિ:", + // "researcher.profile.status": "Status:", + // TODO New key - Add a translation + "researcher.profile.status": "Status:", + // "researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).", "researcherprofile.claim.not-authorized": "તમે આ આઇટમનો દાવો કરવા માટે અધિકૃત નથી. વધુ વિગતો માટે એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", + // "researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later", "researcherprofile.error.claim.body": "પ્રોફાઇલનો દાવો કરતી વખતે ભૂલ આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો", + // "researcherprofile.error.claim.title": "Error", "researcherprofile.error.claim.title": "ભૂલ", + // "researcherprofile.success.claim.body": "Profile claimed with success", "researcherprofile.success.claim.body": "પ્રોફાઇલનો દાવો સફળતાપૂર્વક થયો", + // "researcherprofile.success.claim.title": "Success", "researcherprofile.success.claim.title": "સફળતા", + // "person.page.orcid.create": "Create an ORCID ID", "person.page.orcid.create": "ORCID ID બનાવો", + // "person.page.orcid.granted-authorizations": "Granted authorizations", "person.page.orcid.granted-authorizations": "મંજૂર કરેલી અધિકૃતતાઓ", + // "person.page.orcid.grant-authorizations": "Grant authorizations", "person.page.orcid.grant-authorizations": "અધિકૃતતાઓ આપો", + // "person.page.orcid.link": "Connect to ORCID ID", "person.page.orcid.link": "ORCID ID સાથે કનેક્ટ કરો", + // "person.page.orcid.link.processing": "Linking profile to ORCID...", "person.page.orcid.link.processing": "પ્રોફાઇલને ORCID સાથે લિંક કરી રહ્યું છે...", + // "person.page.orcid.link.error.message": "Something went wrong while connecting the profile with ORCID. If the problem persists, contact the administrator.", "person.page.orcid.link.error.message": "પ્રોફાઇલને ORCID સાથે કનેક્ટ કરતી વખતે કંઈક ખોટું થયું. જો સમસ્યા ચાલુ રહે, તો એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", + // "person.page.orcid.orcid-not-linked-message": "The ORCID iD of this profile ({{ orcid }}) has not yet been connected to an account on the ORCID registry or the connection is expired.", "person.page.orcid.orcid-not-linked-message": "આ પ્રોફાઇલનો ORCID iD ({{ orcid }}) હજી સુધી ORCID રજિસ્ટ્રી સાથે કનેક્ટ થયો નથી અથવા કનેક્શન સમાપ્ત થઈ ગયું છે.", + // "person.page.orcid.unlink": "Disconnect from ORCID", "person.page.orcid.unlink": "ORCID થી ડિસકનેક્ટ કરો", + // "person.page.orcid.unlink.processing": "Processing...", "person.page.orcid.unlink.processing": "પ્રક્રિયા...", + // "person.page.orcid.missing-authorizations": "Missing authorizations", "person.page.orcid.missing-authorizations": "અધિકૃતતાઓ ગુમ છે", - "person.page.orcid.missing-authorizations-message": "નીચેની અધિકૃતતાઓ ગુમ છે:", + // "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + // TODO New key - Add a translation + "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + // "person.page.orcid.no-missing-authorizations-message": "Great! This box is empty, so you have granted all access rights to use all functions offers by your institution.", "person.page.orcid.no-missing-authorizations-message": "શાનદાર! આ બોક્સ ખાલી છે, તેથી તમે તમારી સંસ્થા દ્વારા ઓફર કરેલી બધી સુવિધાઓનો ઉપયોગ કરવા માટે બધી ઍક્સેસ અધિકૃતતાઓ આપી છે.", + // "person.page.orcid.no-orcid-message": "No ORCID iD associated yet. By clicking on the button below it is possible to link this profile with an ORCID account.", "person.page.orcid.no-orcid-message": "હજી સુધી કોઈ ORCID iD સંકળાયેલ નથી. નીચેના બટન પર ક્લિક કરીને આ પ્રોફાઇલને ORCID એકાઉન્ટ સાથે લિંક કરી શકાય છે.", + // "person.page.orcid.profile-preferences": "Profile preferences", "person.page.orcid.profile-preferences": "પ્રોફાઇલ પસંદગીઓ", + // "person.page.orcid.funding-preferences": "Funding preferences", "person.page.orcid.funding-preferences": "ફંડિંગ પસંદગીઓ", + // "person.page.orcid.publications-preferences": "Publication preferences", "person.page.orcid.publications-preferences": "પ્રકાશન પસંદગીઓ", + // "person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator", "person.page.orcid.remove-orcid-message": "જો તમારે તમારો ORCID દૂર કરવાની જરૂર હોય, તો કૃપા કરીને રિપોઝિટરી એડમિનિસ્ટ્રેટરનો સંપર્ક કરો", + // "person.page.orcid.save.preference.changes": "Update settings", "person.page.orcid.save.preference.changes": "સેટિંગ્સ અપડેટ કરો", + // "person.page.orcid.sync-profile.affiliation": "Affiliation", "person.page.orcid.sync-profile.affiliation": "સંબંધ", + // "person.page.orcid.sync-profile.biographical": "Biographical data", "person.page.orcid.sync-profile.biographical": "જીવની માહિતી", + // "person.page.orcid.sync-profile.education": "Education", "person.page.orcid.sync-profile.education": "શિક્ષણ", + // "person.page.orcid.sync-profile.identifiers": "Identifiers", "person.page.orcid.sync-profile.identifiers": "ઓળખકર્તાઓ", + // "person.page.orcid.sync-fundings.all": "All fundings", "person.page.orcid.sync-fundings.all": "બધા ફંડિંગ્સ", + // "person.page.orcid.sync-fundings.mine": "My fundings", "person.page.orcid.sync-fundings.mine": "મારા ફંડિંગ્સ", + // "person.page.orcid.sync-fundings.my_selected": "Selected fundings", "person.page.orcid.sync-fundings.my_selected": "પસંદ કરેલા ફંડિંગ્સ", + // "person.page.orcid.sync-fundings.disabled": "Disabled", "person.page.orcid.sync-fundings.disabled": "અક્ષમ", + // "person.page.orcid.sync-publications.all": "All publications", "person.page.orcid.sync-publications.all": "બધા પ્રકાશનો", + // "person.page.orcid.sync-publications.mine": "My publications", "person.page.orcid.sync-publications.mine": "મારા પ્રકાશનો", + // "person.page.orcid.sync-publications.my_selected": "Selected publications", "person.page.orcid.sync-publications.my_selected": "પસંદ કરેલા પ્રકાશનો", + // "person.page.orcid.sync-publications.disabled": "Disabled", "person.page.orcid.sync-publications.disabled": "અક્ષમ", + // "person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry", "person.page.orcid.sync-queue.discard": "બદલાવ રદ કરો અને ORCID રજિસ્ટ્રી સાથે સુમેળ ન કરો", + // "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed", "person.page.orcid.sync-queue.discard.error": "ORCID કતાર રેકોર્ડને રદ કરવામાં નિષ્ફળ", + // "person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully", "person.page.orcid.sync-queue.discard.success": "ORCID કતાર રેકોર્ડ સફળતાપૂર્વક રદ કરવામાં આવ્યો", + // "person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty", "person.page.orcid.sync-queue.empty-message": "ORCID કતાર રજિસ્ટ્રી ખાલી છે", + // "person.page.orcid.sync-queue.table.header.type": "Type", "person.page.orcid.sync-queue.table.header.type": "પ્રકાર", + // "person.page.orcid.sync-queue.table.header.description": "Description", "person.page.orcid.sync-queue.table.header.description": "વર્ણન", + // "person.page.orcid.sync-queue.table.header.action": "Action", "person.page.orcid.sync-queue.table.header.action": "ક્રિયા", + // "person.page.orcid.sync-queue.description.affiliation": "Affiliations", "person.page.orcid.sync-queue.description.affiliation": "સંબંધ", + // "person.page.orcid.sync-queue.description.country": "Country", "person.page.orcid.sync-queue.description.country": "દેશ", + // "person.page.orcid.sync-queue.description.education": "Educations", "person.page.orcid.sync-queue.description.education": "શિક્ષણ", + // "person.page.orcid.sync-queue.description.external_ids": "External ids", "person.page.orcid.sync-queue.description.external_ids": "બાહ્ય ઓળખકર્તાઓ", + // "person.page.orcid.sync-queue.description.other_names": "Other names", "person.page.orcid.sync-queue.description.other_names": "અન્ય નામો", + // "person.page.orcid.sync-queue.description.qualification": "Qualifications", "person.page.orcid.sync-queue.description.qualification": "લાયકાત", + // "person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls", "person.page.orcid.sync-queue.description.researcher_urls": "શોધક URLs", + // "person.page.orcid.sync-queue.description.keywords": "Keywords", "person.page.orcid.sync-queue.description.keywords": "કીવર્ડ્સ", + // "person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry", "person.page.orcid.sync-queue.tooltip.insert": "ORCID રજિસ્ટ્રીમાં નવી એન્ટ્રી ઉમેરો", + // "person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry", "person.page.orcid.sync-queue.tooltip.update": "આ એન્ટ્રી ORCID રજિસ્ટ્રી પર અપડેટ કરો", + // "person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry", "person.page.orcid.sync-queue.tooltip.delete": "આ એન્ટ્રી ORCID રજિસ્ટ્રીમાંથી દૂર કરો", + // "person.page.orcid.sync-queue.tooltip.publication": "Publication", "person.page.orcid.sync-queue.tooltip.publication": "પ્રકાશન", + // "person.page.orcid.sync-queue.tooltip.project": "Project", "person.page.orcid.sync-queue.tooltip.project": "પ્રોજેક્ટ", + // "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", "person.page.orcid.sync-queue.tooltip.affiliation": "સંબંધ", + // "person.page.orcid.sync-queue.tooltip.education": "Education", "person.page.orcid.sync-queue.tooltip.education": "શિક્ષણ", + // "person.page.orcid.sync-queue.tooltip.qualification": "Qualification", "person.page.orcid.sync-queue.tooltip.qualification": "લાયકાત", + // "person.page.orcid.sync-queue.tooltip.other_names": "Other name", "person.page.orcid.sync-queue.tooltip.other_names": "અન્ય નામ", + // "person.page.orcid.sync-queue.tooltip.country": "Country", "person.page.orcid.sync-queue.tooltip.country": "દેશ", + // "person.page.orcid.sync-queue.tooltip.keywords": "Keyword", "person.page.orcid.sync-queue.tooltip.keywords": "કીવર્ડ", + // "person.page.orcid.sync-queue.tooltip.external_ids": "External identifier", "person.page.orcid.sync-queue.tooltip.external_ids": "બાહ્ય ઓળખકર્તા", + // "person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url", "person.page.orcid.sync-queue.tooltip.researcher_urls": "શોધક URL", + // "person.page.orcid.sync-queue.send": "Synchronize with ORCID registry", "person.page.orcid.sync-queue.send": "ORCID રજિસ્ટ્રી સાથે સુમેળ કરો", + // "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.", "person.page.orcid.sync-queue.send.unauthorized-error.title": "અધિકૃતતાઓ ગુમ થવાને કારણે ORCID પર સબમિશન નિષ્ફળ થયું.", + // "person.page.orcid.sync-queue.send.unauthorized-error.content": "Click here to grant again the required permissions. If the problem persists, contact the administrator", "person.page.orcid.sync-queue.send.unauthorized-error.content": "આધિકૃતતાઓ ફરીથી આપવા માટે અહીં ક્લિક કરો. જો સમસ્યા ચાલુ રહે, તો એડમિનિસ્ટ્રેટરનો સંપર્ક કરો", + // "person.page.orcid.sync-queue.send.bad-request-error": "The submission to ORCID failed because the resource sent to ORCID registry is not valid", "person.page.orcid.sync-queue.send.bad-request-error": "ORCID પર સબમિશન નિષ્ફળ થયું કારણ કે ORCID રજિસ્ટ્રીને મોકલવામાં આવેલ સંસાધન માન્ય નથી", + // "person.page.orcid.sync-queue.send.error": "The submission to ORCID failed", "person.page.orcid.sync-queue.send.error": "ORCID પર સબમિશન નિષ્ફળ થયું", + // "person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry", "person.page.orcid.sync-queue.send.conflict-error": "ORCID પર સબમિશન નિષ્ફળ થયું કારણ કે સંસાધન પહેલાથી જ ORCID રજિસ્ટ્રી પર હાજર છે", + // "person.page.orcid.sync-queue.send.not-found-warning": "The resource does not exists anymore on the ORCID registry.", "person.page.orcid.sync-queue.send.not-found-warning": "સંસાધન ORCID રજિસ્ટ્રી પર હવે હાજર નથી.", + // "person.page.orcid.sync-queue.send.success": "The submission to ORCID was completed successfully", "person.page.orcid.sync-queue.send.success": "ORCID પર સબમિશન સફળતાપૂર્વક પૂર્ણ થયું", + // "person.page.orcid.sync-queue.send.validation-error": "The data that you want to synchronize with ORCID is not valid", "person.page.orcid.sync-queue.send.validation-error": "તમે ORCID સાથે સુમેળ કરવા માંગો છો તે ડેટા માન્ય નથી", + // "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "The amount's currency is required", "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "રકમની કરન્સી જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.external-id.required": "The resource to be sent requires at least one identifier", "person.page.orcid.sync-queue.send.validation-error.external-id.required": "મોકલવામાં આવતી સંસાધન માટે ઓછામાં ઓછો એક ઓળખકર્તા જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.title.required": "The title is required", "person.page.orcid.sync-queue.send.validation-error.title.required": "શીર્ષક જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required", "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required", "person.page.orcid.sync-queue.send.validation-error.start-date.required": "પ્રારંભ તારીખ જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required", "person.page.orcid.sync-queue.send.validation-error.funder.required": "ફંડર જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.country.invalid": "અમાન્ય 2 અક્ષરોનો ISO 3166 દેશ", + // "person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required", "person.page.orcid.sync-queue.send.validation-error.organization.required": "સંસ્થા જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required", "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "સંસ્થાનું નામ જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900", "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "પ્રકાશન તારીખ 1900 પછીની હોવી જોઈએ", + // "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address", "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "મોકલવામાં આવતી સંસ્થા માટે સરનામું જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "The address of the organization to be sent requires a city", "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "મોકલવામાં આવતી સંસ્થાનું સરનામું માટે શહેર જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "The address of the organization to be sent requires a valid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "મોકલવામાં આવતી સંસ્થાનું સરનામું માટે માન્ય 2 અક્ષરોનો ISO 3166 દેશ જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "An identifier to disambiguate organizations is required. Supported ids are GRID, Ringgold, Legal Entity identifiers (LEIs) and Crossref Funder Registry identifiers", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "સંસ્થાઓને સ્પષ્ટ કરવા માટે એક ઓળખકર્તા જરૂરી છે. સપોર્ટેડ IDs GRID, Ringgold, Legal Entity identifiers (LEIs) અને Crossref Funder Registry identifiers છે", + // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "The organization's identifiers requires a value", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "સંસ્થાના ઓળખકર્તાઓ માટે મૂલ્ય જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "The organization's identifiers requires a source", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "સંસ્થાના ઓળખકર્તાઓ માટે સ્ત્રોત જરૂરી છે", + // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "The source of one of the organization identifiers is invalid. Supported sources are RINGGOLD, GRID, LEI and FUNDREF", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "સંસ્થાના એક ઓળખકર્તાના સ્ત્રોત અમાન્ય છે. સપોર્ટેડ સ્ત્રોતો RINGGOLD, GRID, LEI અને FUNDREF છે", + // "person.page.orcid.synchronization-mode": "Synchronization mode", "person.page.orcid.synchronization-mode": "સુમેળ સ્થિતિ", + // "person.page.orcid.synchronization-mode.batch": "Batch", "person.page.orcid.synchronization-mode.batch": "બેચ", + // "person.page.orcid.synchronization-mode.label": "Synchronization mode", "person.page.orcid.synchronization-mode.label": "સુમેળ સ્થિતિ", + // "person.page.orcid.synchronization-mode-message": "Please select how you would like synchronization to ORCID to occur. The options include \"Manual\" (you must send your data to ORCID manually), or \"Batch\" (the system will send your data to ORCID via a scheduled script).", "person.page.orcid.synchronization-mode-message": "કૃપા કરીને પસંદ કરો કે તમે ORCID સાથે સુમેળ કેવી રીતે કરવો છે. વિકલ્પોમાં \\\"મેન્યુઅલ\\\" (તમારે તમારો ડેટા ORCID પર મેન્યુઅલી મોકલવો પડશે), અથવા \\\"બેચ\\\" (સિસ્ટમ તમારો ડેટા ORCID પર શેડ્યુલ સ્ક્રિપ્ટ દ્વારા મોકલશે) શામેલ છે.", + // "person.page.orcid.synchronization-mode-funding-message": "Select whether to send your linked Project entities to your ORCID record's list of funding information.", "person.page.orcid.synchronization-mode-funding-message": "તમારા ORCID રેકોર્ડની ફંડિંગ માહિતીની યાદીમાં તમારા લિંક કરેલા પ્રોજેક્ટ એન્ટિટીઓને મોકલવા માટે પસંદ કરો.", + // "person.page.orcid.synchronization-mode-publication-message": "Select whether to send your linked Publication entities to your ORCID record's list of works.", "person.page.orcid.synchronization-mode-publication-message": "તમારા ORCID રેકોર્ડની કાર્યોની યાદીમાં તમારા લિંક કરેલા પ્રકાશન એન્ટિટીઓને મોકલવા માટે પસંદ કરો.", + // "person.page.orcid.synchronization-mode-profile-message": "Select whether to send your biographical data or personal identifiers to your ORCID record.", "person.page.orcid.synchronization-mode-profile-message": "તમારા ORCID રેકોર્ડ પર તમારી જીવની માહિતી અથવા વ્યક્તિગત ઓળખકર્તાઓ મોકલવા માટે પસંદ કરો.", + // "person.page.orcid.synchronization-settings-update.success": "The synchronization settings have been updated successfully", "person.page.orcid.synchronization-settings-update.success": "સુમેળ સેટિંગ્સ સફળતાપૂર્વક અપડેટ કરવામાં આવ્યા છે", + // "person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed", "person.page.orcid.synchronization-settings-update.error": "સુમેળ સેટિંગ્સ અપડેટ કરવામાં નિષ્ફળ", + // "person.page.orcid.synchronization-mode.manual": "Manual", "person.page.orcid.synchronization-mode.manual": "મેન્યુઅલ", + // "person.page.orcid.scope.authenticate": "Get your ORCID iD", "person.page.orcid.scope.authenticate": "તમારો ORCID iD મેળવો", + // "person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties", "person.page.orcid.scope.read-limited": "વિશ્વસનીય પક્ષો માટે દૃશ્યતા સાથે તમારી માહિતી વાંચો", + // "person.page.orcid.scope.activities-update": "Add/update your research activities", "person.page.orcid.scope.activities-update": "તમારી સંશોધન પ્રવૃત્તિઓ ઉમેરો/અપડેટ કરો", + // "person.page.orcid.scope.person-update": "Add/update other information about you", "person.page.orcid.scope.person-update": "તમારા વિશેની અન્ય માહિતી ઉમેરો/અપડેટ કરો", + // "person.page.orcid.unlink.success": "The disconnection between the profile and the ORCID registry was successful", "person.page.orcid.unlink.success": "પ્રોફાઇલ અને ORCID રજિસ્ટ્રી વચ્ચેનું ડિસકનેક્શન સફળ રહ્યું", + // "person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again", "person.page.orcid.unlink.error": "પ્રોફાઇલ અને ORCID રજિસ્ટ્રી વચ્ચે ડિસકનેક્ટ કરતી વખતે ભૂલ આવી. ફરી પ્રયાસ કરો", + // "person.orcid.sync.setting": "ORCID Synchronization settings", "person.orcid.sync.setting": "ORCID સુમેળ સેટિંગ્સ", + // "person.orcid.registry.queue": "ORCID Registry Queue", "person.orcid.registry.queue": "ORCID રજિસ્ટ્રી કતાર", + // "person.orcid.registry.auth": "ORCID Authorizations", "person.orcid.registry.auth": "ORCID અધિકૃતતાઓ", + // "person.orcid-tooltip.authenticated": "{{orcid}}", "person.orcid-tooltip.authenticated": "{{orcid}}", + // "person.orcid-tooltip.not-authenticated": "{{orcid}} (unconfirmed)", "person.orcid-tooltip.not-authenticated": "{{orcid}} (અપુષ્ટ)", + // "home.recent-submissions.head": "Recent Submissions", "home.recent-submissions.head": "તાજેતરના સબમિશન્સ", + // "listable-notification-object.default-message": "This object couldn't be retrieved", "listable-notification-object.default-message": "આ આઇટમને મેળવવામાં આવી શક્યું નથી", + // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", "system-wide-alert-banner.retrieval.error": "સિસ્ટમ-વાઇડ એલર્ટ બેનર મેળવવામાં કંઈક ખોટું થયું", + // "system-wide-alert-banner.countdown.prefix": "In", "system-wide-alert-banner.countdown.prefix": "માં", + // "system-wide-alert-banner.countdown.days": "{{days}} day(s),", "system-wide-alert-banner.countdown.days": "{{days}} દિવસ(ઓ),", + // "system-wide-alert-banner.countdown.hours": "{{hours}} hour(s) and", "system-wide-alert-banner.countdown.hours": "{{hours}} કલાક(ઓ) અને", - "system-wide-alert-banner.countdown.minutes": "{{minutes}} મિનિટ(ઓ):", + // "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + // TODO New key - Add a translation + "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + // "menu.section.system-wide-alert": "System-wide Alert", "menu.section.system-wide-alert": "સિસ્ટમ-વાઇડ એલર્ટ", + // "system-wide-alert.form.header": "System-wide Alert", "system-wide-alert.form.header": "સિસ્ટમ-વાઇડ એલર્ટ", + // "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert", "system-wide-alert-form.retrieval.error": "સિસ્ટમ-વાઇડ એલર્ટ મેળવવામાં કંઈક ખોટું થયું", + // "system-wide-alert.form.cancel": "Cancel", "system-wide-alert.form.cancel": "રદ કરો", + // "system-wide-alert.form.save": "Save", "system-wide-alert.form.save": "સેવ", + // "system-wide-alert.form.label.active": "ACTIVE", "system-wide-alert.form.label.active": "સક્રિય", + // "system-wide-alert.form.label.inactive": "INACTIVE", "system-wide-alert.form.label.inactive": "નિષ્ક્રિય", + // "system-wide-alert.form.error.message": "The system wide alert must have a message", "system-wide-alert.form.error.message": "સિસ્ટમ-વાઇડ એલર્ટમાં સંદેશ હોવો જોઈએ", + // "system-wide-alert.form.label.message": "Alert message", "system-wide-alert.form.label.message": "એલર્ટ સંદેશ", + // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer", "system-wide-alert.form.label.countdownTo.enable": "કાઉન્ટડાઉન ટાઇમર સક્રિય કરો", - "system-wide-alert.form.label.countdownTo.hint": "હિન્ટ: કાઉન્ટડાઉન ટાઇમર સેટ કરો. જ્યારે સક્રિય થાય છે, ત્યારે ભવિષ્યમાં તારીખ સેટ કરી શકાય છે અને સિસ્ટમ-વાઇડ એલર્ટ બેનર સેટ તારીખ સુધી કાઉન્ટડાઉન કરશે. જ્યારે આ ટાઇમર સમાપ્ત થાય છે, ત્યારે તે એલર્ટમાંથી ગાયબ થઈ જશે. સર્વર આપમેળે બંધ નહીં થાય.", + // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + // TODO New key - Add a translation + "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + // "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", "system-wide-alert-form.select-date-by-calendar": "કેલેન્ડરનો ઉપયોગ કરીને તારીખ પસંદ કરો", + // "system-wide-alert.form.label.preview": "System-wide alert preview", "system-wide-alert.form.label.preview": "સિસ્ટમ-વાઇડ એલર્ટ પૂર્વાવલોકન", + // "system-wide-alert.form.update.success": "The system-wide alert was successfully updated", "system-wide-alert.form.update.success": "સિસ્ટમ-વાઇડ એલર્ટ સફળતાપૂર્વક અપડેટ થયું", + // "system-wide-alert.form.update.error": "Something went wrong when updating the system-wide alert", "system-wide-alert.form.update.error": "સિસ્ટમ-વાઇડ એલર્ટ અપડેટ કરતી વખતે કંઈક ખોટું થયું", + // "system-wide-alert.form.create.success": "The system-wide alert was successfully created", "system-wide-alert.form.create.success": "સિસ્ટમ-વાઇડ એલર્ટ સફળતાપૂર્વક બનાવ્યું", + // "system-wide-alert.form.create.error": "Something went wrong when creating the system-wide alert", "system-wide-alert.form.create.error": "સિસ્ટમ-વાઇડ એલર્ટ બનાવતી વખતે કંઈક ખોટું થયું", + // "admin.system-wide-alert.breadcrumbs": "System-wide Alerts", "admin.system-wide-alert.breadcrumbs": "સિસ્ટમ-વાઇડ એલર્ટ", + // "admin.system-wide-alert.title": "System-wide Alerts", "admin.system-wide-alert.title": "સિસ્ટમ-વાઇડ એલર્ટ", + // "discover.filters.head": "Discover", "discover.filters.head": "શોધો", + // "item-access-control-title": "This form allows you to perform changes to the access conditions of the item's metadata or its bitstreams.", "item-access-control-title": "આ ફોર્મ તમને આઇટમના મેટાડેટા અથવા તેના બિટસ્ટ્રીમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે.", + // "collection-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by this collection. Changes may be performed to either all Item metadata or all content (bitstreams).", "collection-access-control-title": "આ ફોર્મ તમને આ સંગ્રહ દ્વારા માલિકી ધરાવતી બધી આઇટમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે. ફેરફારો બધી આઇટમ મેટાડેટા અથવા બધી સામગ્રી (બિટસ્ટ્રીમ્સ) પર કરવામાં આવી શકે છે.", + // "community-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by any collection under this community. Changes may be performed to either all Item metadata or all content (bitstreams).", "community-access-control-title": "આ ફોર્મ તમને આ સમુદાય હેઠળના કોઈપણ સંગ્રહ દ્વારા માલિકી ધરાવતી બધી આઇટમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે. ફેરફારો બધી આઇટમ મેટાડેટા અથવા બધી સામગ્રી (બિટસ્ટ્રીમ્સ) પર કરવામાં આવી શકે છે.", + // "access-control-item-header-toggle": "Item's Metadata", "access-control-item-header-toggle": "આઇટમના મેટાડેટા", + // "access-control-item-toggle.enable": "Enable option to perform changes on the item's metadata", "access-control-item-toggle.enable": "આઇટમના મેટાડેટા પર ફેરફારો કરવા માટે વિકલ્પ સક્રિય કરો", + // "access-control-item-toggle.disable": "Disable option to perform changes on the item's metadata", "access-control-item-toggle.disable": "આઇટમના મેટાડેટા પર ફેરફારો કરવા માટે વિકલ્પ નિષ્ક્રિય કરો", + // "access-control-bitstream-header-toggle": "Bitstreams", "access-control-bitstream-header-toggle": "બિટસ્ટ્રીમ્સ", + // "access-control-bitstream-toggle.enable": "Enable option to perform changes on the bitstreams", "access-control-bitstream-toggle.enable": "બિટસ્ટ્રીમ્સ પર ફેરફારો કરવા માટે વિકલ્પ સક્રિય કરો", + // "access-control-bitstream-toggle.disable": "Disable option to perform changes on the bitstreams", "access-control-bitstream-toggle.disable": "બિટસ્ટ્રીમ્સ પર ફેરફારો કરવા માટે વિકલ્પ નિષ્ક્રિય કરો", + // "access-control-mode": "Mode", "access-control-mode": "મોડ", + // "access-control-access-conditions": "Access conditions", "access-control-access-conditions": "ઍક્સેસ શરતો", + // "access-control-no-access-conditions-warning-message": "Currently, no access conditions are specified below. If executed, this will replace the current access conditions with the default access conditions inherited from the owning collection.", "access-control-no-access-conditions-warning-message": "હાલમાં, નીચે કોઈ ઍક્સેસ શરતો નિર્ધારિત નથી. જો અમલમાં મૂકવામાં આવે છે, તો તે વર્તમાન ઍક્સેસ શરતોને માલિકી ધરાવતી સંગ્રહમાંથી વારસામાં મળેલી ડિફોલ્ટ ઍક્સેસ શરતો સાથે બદલી દેશે.", + // "access-control-replace-all": "Replace access conditions", "access-control-replace-all": "ઍક્સેસ શરતો બદલો", + // "access-control-add-to-existing": "Add to existing ones", "access-control-add-to-existing": "મૌજૂદા શરતોમાં ઉમેરો", + // "access-control-limit-to-specific": "Limit the changes to specific bitstreams", "access-control-limit-to-specific": "ફેરફારોને ચોક્કસ બિટસ્ટ્રીમ્સ સુધી મર્યાદિત કરો", + // "access-control-process-all-bitstreams": "Update all the bitstreams in the item", "access-control-process-all-bitstreams": "આઇટમમાં બધી બિટસ્ટ્રીમ્સને અપડેટ કરો", + // "access-control-bitstreams-selected": "bitstreams selected", "access-control-bitstreams-selected": "પસંદ કરેલી બિટસ્ટ્રીમ્સ", + // "access-control-bitstreams-select": "Select bitstreams", "access-control-bitstreams-select": "બિટસ્ટ્રીમ્સ પસંદ કરો", + // "access-control-cancel": "Cancel", "access-control-cancel": "રદ કરો", + // "access-control-execute": "Execute", "access-control-execute": "અમલમાં મૂકો", + // "access-control-add-more": "Add more", "access-control-add-more": "વધુ ઉમેરો", + // "access-control-remove": "Remove access condition", "access-control-remove": "ઍક્સેસ શરત દૂર કરો", + // "access-control-select-bitstreams-modal.title": "Select bitstreams", "access-control-select-bitstreams-modal.title": "બિટસ્ટ્રીમ્સ પસંદ કરો", + // "access-control-select-bitstreams-modal.no-items": "No items to show.", "access-control-select-bitstreams-modal.no-items": "દેખાવ માટે કોઈ વસ્તુઓ નહોતી", + // "access-control-select-bitstreams-modal.close": "Close", "access-control-select-bitstreams-modal.close": "બંધ કરો", + // "access-control-option-label": "Access condition type", "access-control-option-label": "ઍક્સેસ શરત પ્રકાર", + // "access-control-option-note": "Choose an access condition to apply to selected objects.", "access-control-option-note": "પસંદ કરેલી વસ્તુઓ પર લાગુ કરવા માટે ઍક્સેસ શરત પસંદ કરો.", + // "access-control-option-start-date": "Grant access from", "access-control-option-start-date": "તારીખથી ઍક્સેસ આપો", + // "access-control-option-start-date-note": "Select the date from which the related access condition is applied", "access-control-option-start-date-note": "સંબંધિત ઍક્સેસ શરત લાગુ થતી તારીખ પસંદ કરો", + // "access-control-option-end-date": "Grant access until", "access-control-option-end-date": "તારીખ સુધી ઍક્સેસ આપો", + // "access-control-option-end-date-note": "Select the date until which the related access condition is applied", "access-control-option-end-date-note": "સંબંધિત ઍક્સેસ શરત લાગુ થતી તારીખ પસંદ કરો", + // "vocabulary-treeview.search.form.add": "Add", "vocabulary-treeview.search.form.add": "ઉમેરો", + // "admin.notifications.publicationclaim.breadcrumbs": "Publication Claim", "admin.notifications.publicationclaim.breadcrumbs": "પ્રકાશન દાવો", + // "admin.notifications.publicationclaim.page.title": "Publication Claim", "admin.notifications.publicationclaim.page.title": "પ્રકાશન દાવો", + // "coar-notify-support.title": "COAR Notify Protocol", "coar-notify-support.title": "COAR નોટિફાય પ્રોટોકોલ", - "coar-notify-support-title.content": "અહીં, અમે COAR નોટિફાય પ્રોટોકોલને સંપૂર્ણપણે સપોર્ટ કરીએ છીએ, જે રિપોઝિટરીઝ વચ્ચેના સંચારને વધારવા માટે ડિઝાઇન કરવામાં આવ્યું છે. COAR નોટિફાય પ્રોટોકોલ વિશે વધુ જાણવા માટે, COAR નોટિફાય વેબસાઇટ પર મુલાકાત લો.", + // "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + // TODO New key - Add a translation + "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + // "coar-notify-support.ldn-inbox.title": "LDN InBox", "coar-notify-support.ldn-inbox.title": "LDN ઇનબોક્સ", + // "coar-notify-support.ldn-inbox.content": "For your convenience, our LDN (Linked Data Notifications) InBox is easily accessible at {{ ldnInboxUrl }}. The LDN InBox enables seamless communication and data exchange, ensuring efficient and effective collaboration.", "coar-notify-support.ldn-inbox.content": "તમારી સુવિધા માટે, અમારી LDN (લિંક્ડ ડેટા નોટિફિકેશન્સ) ઇનબોક્સ સરળતાથી ઉપલબ્ધ છે {{ ldnInboxUrl }}. LDN ઇનબોક્સ સરળ સંચાર અને ડેટા વિનિમયને સક્ષમ બનાવે છે, સુનિશ્ચિત કરે છે કે કાર્યક્ષમ અને અસરકારક સહકાર.", + // "coar-notify-support.message-moderation.title": "Message Moderation", "coar-notify-support.message-moderation.title": "સંદેશ મૉડરેશન", + // "coar-notify-support.message-moderation.content": "To ensure a secure and productive environment, all incoming LDN messages are moderated. If you are planning to exchange information with us, kindly reach out via our dedicated", "coar-notify-support.message-moderation.content": "સુરક્ષિત અને ઉત્પાદક વાતાવરણ સુનિશ્ચિત કરવા માટે, બધી આવનારી LDN સંદેશાઓનું મૉડરેશન કરવામાં આવે છે. જો તમે અમારી સાથે માહિતી વિનિમય કરવાની યોજના બનાવી રહ્યા છો, તો કૃપા કરીને અમારા સમર્પિત ફીડબેક ફોર્મ દ્વારા સંપર્ક કરો.", + // "coar-notify-support.message-moderation.feedback-form": " Feedback form.", + // TODO New key - Add a translation + "coar-notify-support.message-moderation.feedback-form": " Feedback form.", + + // "service.overview.delete.header": "Delete Service", "service.overview.delete.header": "સેવા કાઢી નાખો", + // "ldn-registered-services.title": "Registered Services", "ldn-registered-services.title": "નોંધાયેલ સેવાઓ", - + // "ldn-registered-services.table.name": "Name", "ldn-registered-services.table.name": "નામ", - + // "ldn-registered-services.table.description": "Description", "ldn-registered-services.table.description": "વર્ણન", - + // "ldn-registered-services.table.status": "Status", "ldn-registered-services.table.status": "સ્થિતિ", - + // "ldn-registered-services.table.action": "Action", "ldn-registered-services.table.action": "ક્રિયા", - + // "ldn-registered-services.new": "NEW", "ldn-registered-services.new": "નવી", - + // "ldn-registered-services.new.breadcrumbs": "Registered Services", "ldn-registered-services.new.breadcrumbs": "નોંધાયેલ સેવાઓ", + // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "સક્રિય", - + // "ldn-service.overview.table.disabled": "Disabled", "ldn-service.overview.table.disabled": "નિષ્ક્રિય", - + // "ldn-service.overview.table.clickToEnable": "Click to enable", "ldn-service.overview.table.clickToEnable": "સક્રિય કરવા માટે ક્લિક કરો", - + // "ldn-service.overview.table.clickToDisable": "Click to disable", "ldn-service.overview.table.clickToDisable": "નિષ્ક્રિય કરવા માટે ક્લિક કરો", + // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "સેવા સંપાદિત કરો", - + // "ldn-create-service.title": "Create service", "ldn-create-service.title": "સેવા બનાવો", - + // "service.overview.create.modal": "Create Service", "service.overview.create.modal": "સેવા બનાવો", - + // "service.overview.create.body": "Please confirm the creation of this service.", "service.overview.create.body": "કૃપા કરીને આ સેવાની રચનાની પુષ્ટિ કરો.", - + // "ldn-service-status": "Status", "ldn-service-status": "સ્થિતિ", - + // "service.confirm.create": "Create", "service.confirm.create": "બનાવો", - + // "service.refuse.create": "Cancel", "service.refuse.create": "રદ કરો", - + // "ldn-register-new-service.title": "Register a new service", "ldn-register-new-service.title": "નવી સેવા નોંધો", - + // "ldn-new-service.form.label.submit": "Save", "ldn-new-service.form.label.submit": "સેવ", - + // "ldn-new-service.form.label.name": "Name", "ldn-new-service.form.label.name": "નામ", - + // "ldn-new-service.form.label.description": "Description", "ldn-new-service.form.label.description": "વર્ણન", - + // "ldn-new-service.form.label.url": "Service URL", "ldn-new-service.form.label.url": "સેવા URL", - + // "ldn-new-service.form.label.ip-range": "Service IP range", "ldn-new-service.form.label.ip-range": "સેવા IP શ્રેણી", - + // "ldn-new-service.form.label.score": "Level of trust", "ldn-new-service.form.label.score": "વિશ્વાસનું સ્તર", - + // "ldn-new-service.form.label.ldnUrl": "LDN Inbox URL", "ldn-new-service.form.label.ldnUrl": "LDN ઇનબોક્સ URL", - + // "ldn-new-service.form.placeholder.name": "Please provide service name", "ldn-new-service.form.placeholder.name": "કૃપા કરીને સેવાનું નામ આપો", - + // "ldn-new-service.form.placeholder.description": "Please provide a description regarding your service", "ldn-new-service.form.placeholder.description": "કૃપા કરીને તમારી સેવાના વિશે વર્ણન આપો", - + // "ldn-new-service.form.placeholder.url": "Please input the URL for users to check out more information about the service", "ldn-new-service.form.placeholder.url": "વપરાશકર્તાઓને સેવાની વધુ માહિતી તપાસવા માટે URL દાખલ કરો", - + // "ldn-new-service.form.placeholder.lowerIp": "IPv4 range lower bound", "ldn-new-service.form.placeholder.lowerIp": "IPv4 શ્રેણી નીચી સીમા", - + // "ldn-new-service.form.placeholder.upperIp": "IPv4 range upper bound", "ldn-new-service.form.placeholder.upperIp": "IPv4 શ્રેણી ઊંચી સીમા", - + // "ldn-new-service.form.placeholder.ldnUrl": "Please specify the URL of the LDN Inbox", "ldn-new-service.form.placeholder.ldnUrl": "કૃપા કરીને LDN ઇનબોક્સનો URL સ્પષ્ટ કરો", - + // "ldn-new-service.form.placeholder.score": "Please enter a value between 0 and 1. Use the “.” as decimal separator", "ldn-new-service.form.placeholder.score": "કૃપા કરીને 0 અને 1 વચ્ચેનું મૂલ્ય દાખલ કરો. દશાંશ વિભાજક તરીકે “.” નો ઉપયોગ કરો", - + // "ldn-service.form.label.placeholder.default-select": "Select a pattern", "ldn-service.form.label.placeholder.default-select": "પેટર્ન પસંદ કરો", + // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "સ્વીકારો અને મંજૂર કરો", - + // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", "ldn-service.form.pattern.ack-accept.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને મંજૂર કરવા માટે વપરાય છે. તે વિનંતી પર કાર્ય કરવાની મનોવૃત્તિ દર્શાવે છે.", - + // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-accept.category": "સ્વીકાર", + // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "સ્વીકારો અને નકારો", - + // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", "ldn-service.form.pattern.ack-reject.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને નકારવા માટે વપરાય છે. તે વિનંતી અંગે કોઈ વધુ ક્રિયા દર્શાવતું નથી.", - + // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-reject.category": "સ્વીકાર", + // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "સ્વીકારો અને તાત્કાલિક સ્વીકારો", - + // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", "ldn-service.form.pattern.ack-tentative-accept.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને તાત્કાલિક સ્વીકારવા માટે વપરાય છે. તે કાર્ય કરવાની મનોવૃત્તિ દર્શાવે છે, જે બદલાઈ શકે છે.", - + // "ldn-service.form.pattern.ack-tentative-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-accept.category": "સ્વીકાર", + // "ldn-service.form.pattern.ack-tentative-reject.label": "Acknowledge and Tentatively Reject", "ldn-service.form.pattern.ack-tentative-reject.label": "સ્વીકારો અને તાત્કાલિક નકારો", - + // "ldn-service.form.pattern.ack-tentative-reject.description": "This pattern is used to acknowledge and tentatively reject a request (offer). It signifies no further action, subject to change.", "ldn-service.form.pattern.ack-tentative-reject.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને તાત્કાલિક નકારવા માટે વપરાય છે. તે કોઈ વધુ ક્રિયા દર્શાવતું નથી, જે બદલાઈ શકે છે.", - + // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-reject.category": "સ્વીકાર", + // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "મંજૂરીની જાહેરાત કરો", - + // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", "ldn-service.form.pattern.announce-endorsement.description": "આ પેટર્ન મંજૂરીના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે મંજૂર સંસાધનને સંદર્ભ આપે છે.", - + // "ldn-service.form.pattern.announce-endorsement.category": "Announcements", "ldn-service.form.pattern.announce-endorsement.category": "જાહેરાત", + // "ldn-service.form.pattern.announce-ingest.label": "Announce Ingest", "ldn-service.form.pattern.announce-ingest.label": "ઇનજેસ્ટની જાહેરાત કરો", - + // "ldn-service.form.pattern.announce-ingest.description": "This pattern is used to announce that a resource has been ingested.", "ldn-service.form.pattern.announce-ingest.description": "આ પેટર્ન એ જાહેરાત કરવા માટે વપરાય છે કે સંસાધન ઇનજેસ્ટ કરવામાં આવ્યું છે.", - + // "ldn-service.form.pattern.announce-ingest.category": "Announcements", "ldn-service.form.pattern.announce-ingest.category": "જાહેરાત", + // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "સંબંધની જાહેરાત કરો", - + // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", "ldn-service.form.pattern.announce-relationship.description": "આ પેટર્ન બે સંસાધનો વચ્ચેના સંબંધની જાહેરાત કરવા માટે વપરાય છે.", - + // "ldn-service.form.pattern.announce-relationship.category": "Announcements", "ldn-service.form.pattern.announce-relationship.category": "જાહેરાત", + // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "સમીક્ષાની જાહેરાત કરો", - + // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", "ldn-service.form.pattern.announce-review.description": "આ પેટર્ન સમીક્ષાના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે સમીક્ષિત સંસાધનને સંદર્ભ આપે છે.", - + // "ldn-service.form.pattern.announce-review.category": "Announcements", "ldn-service.form.pattern.announce-review.category": "જાહેરાત", + // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "સેવા પરિણામની જાહેરાત કરો", - + // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", "ldn-service.form.pattern.announce-service-result.description": "આ પેટર્ન 'સેવા પરિણામ'ના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે સંબંધિત સંસાધનને સંદર્ભ આપે છે.", - + // "ldn-service.form.pattern.announce-service-result.category": "Announcements", "ldn-service.form.pattern.announce-service-result.category": "જાહેરાત", + // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "મંજૂરીની વિનંતી કરો", - + // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", "ldn-service.form.pattern.request-endorsement.description": "આ પેટર્ન મૂળ સિસ્ટમ દ્વારા માલિકી ધરાવતી સંસાધન માટે મંજૂરીની વિનંતી કરવા માટે વપરાય છે.", - + // "ldn-service.form.pattern.request-endorsement.category": "Requests", "ldn-service.form.pattern.request-endorsement.category": "વિનંતીઓ", + // "ldn-service.form.pattern.request-ingest.label": "Request Ingest", "ldn-service.form.pattern.request-ingest.label": "ઇનજેસ્ટની વિનંતી કરો", - + // "ldn-service.form.pattern.request-ingest.description": "This pattern is used to request that the target system ingest a resource.", "ldn-service.form.pattern.request-ingest.description": "આ પેટર્ન લક્ષ્ય સિસ્ટમને સંસાધન ઇનજેસ્ટ કરવાની વિનંતી કરવા માટે વપરાય છે.", - + // "ldn-service.form.pattern.request-ingest.category": "Requests", "ldn-service.form.pattern.request-ingest.category": "વિનંતીઓ", + // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "સમીક્ષાની વિનંતી કરો", - + // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", "ldn-service.form.pattern.request-review.description": "આ પેટર્ન મૂળ સિસ્ટમ દ્વારા માલિકી ધરાવતી સંસાધન માટે સમીક્ષાની વિનંતી કરવા માટે વપરાય છે.", - + // "ldn-service.form.pattern.request-review.category": "Requests", "ldn-service.form.pattern.request-review.category": "વિનંતીઓ", + // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "ઓફર રદ કરો", - + // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", "ldn-service.form.pattern.undo-offer.description": "આ પેટર્ન અગાઉ કરવામાં આવેલી ઓફરને રદ (પાછી ખેંચી) કરવા માટે વપરાય છે.", - + // "ldn-service.form.pattern.undo-offer.category": "Undo", "ldn-service.form.pattern.undo-offer.category": "રદ કરો", + // "ldn-new-service.form.label.placeholder.selectedItemFilter": "No Item Filter Selected", "ldn-new-service.form.label.placeholder.selectedItemFilter": "કોઈ આઇટમ ફિલ્ટર પસંદ કરેલ નથી", - + // "ldn-new-service.form.label.ItemFilter": "Item Filter", "ldn-new-service.form.label.ItemFilter": "આઇટમ ફિલ્ટર", - + // "ldn-new-service.form.label.automatic": "Automatic", "ldn-new-service.form.label.automatic": "સ્વચાલિત", - + // "ldn-new-service.form.error.name": "Name is required", "ldn-new-service.form.error.name": "નામ જરૂરી છે", - + // "ldn-new-service.form.error.url": "URL is required", "ldn-new-service.form.error.url": "URL જરૂરી છે", - + // "ldn-new-service.form.error.ipRange": "Please enter a valid IP range", "ldn-new-service.form.error.ipRange": "કૃપા કરીને માન્ય IP શ્રેણી દાખલ કરો", - - "ldn-new-service.form.hint.ipRange": "કૃપા કરીને બંને શ્રેણી સીમાઓમાં માન્ય IpV4 દાખલ કરો (નોંધ: એકલ IP માટે, કૃપા કરીને બંને ક્ષેત્રોમાં એક જ મૂલ્ય દાખલ કરો)", - + // "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", + // TODO New key - Add a translation + "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", + // "ldn-new-service.form.error.ldnurl": "LDN URL is required", "ldn-new-service.form.error.ldnurl": "LDN URL જરૂરી છે", - + // "ldn-new-service.form.error.patterns": "At least a pattern is required", "ldn-new-service.form.error.patterns": "ઓછામાં ઓછું એક પેટર્ન જરૂરી છે", - + // "ldn-new-service.form.error.score": "Please enter a valid score (between 0 and 1). Use the “.” as decimal separator", "ldn-new-service.form.error.score": "કૃપા કરીને માન્ય સ્કોર દાખલ કરો (0 અને 1 વચ્ચે). દશાંશ વિભાજક તરીકે “.” નો ઉપયોગ કરો", + // "ldn-new-service.form.label.inboundPattern": "Supported Pattern", "ldn-new-service.form.label.inboundPattern": "સપોર્ટેડ પેટર્ન", - + // "ldn-new-service.form.label.addPattern": "+ Add more", "ldn-new-service.form.label.addPattern": "+ વધુ ઉમેરો", - + // "ldn-new-service.form.label.removeItemFilter": "Remove", "ldn-new-service.form.label.removeItemFilter": "દૂર કરો", - + // "ldn-register-new-service.breadcrumbs": "New Service", "ldn-register-new-service.breadcrumbs": "નવી સેવા", - + // "service.overview.delete.body": "Are you sure you want to delete this service?", "service.overview.delete.body": "શું તમે ખરેખર આ સેવાને કાઢી નાખવા માંગો છો?", - + // "service.overview.edit.body": "Do you confirm the changes?", "service.overview.edit.body": "શું તમે ફેરફારોની પુષ્ટિ કરો છો?", - + // "service.overview.edit.modal": "Edit Service", "service.overview.edit.modal": "સેવા સંપાદિત કરો", - + // "service.detail.update": "Confirm", "service.detail.update": "પુષ્ટિ કરો", - + // "service.detail.return": "Cancel", "service.detail.return": "રદ કરો", - + // "service.overview.reset-form.body": "Are you sure you want to discard the changes and leave?", "service.overview.reset-form.body": "શું તમે ખરેખર ફેરફારોને રદ કરવા અને છોડી દેવા માંગો છો?", - + // "service.overview.reset-form.modal": "Discard Changes", "service.overview.reset-form.modal": "ફેરફારો રદ કરો", - + // "service.overview.reset-form.reset-confirm": "Discard", "service.overview.reset-form.reset-confirm": "રદ કરો", - + // "admin.registries.services-formats.modify.success.head": "Successful Edit", "admin.registries.services-formats.modify.success.head": "સફળ સંપાદન", - + // "admin.registries.services-formats.modify.success.content": "The service has been edited", "admin.registries.services-formats.modify.success.content": "સેવા સંપાદિત કરવામાં આવી છે", - + // "admin.registries.services-formats.modify.failure.head": "Failed Edit", "admin.registries.services-formats.modify.failure.head": "અસફળ સંપાદન", - + // "admin.registries.services-formats.modify.failure.content": "The service has not been edited", "admin.registries.services-formats.modify.failure.content": "સેવા સંપાદિત કરવામાં આવી નથી", - + // "ldn-service-notification.created.success.title": "Successful Create", "ldn-service-notification.created.success.title": "સફળ રચના", - + // "ldn-service-notification.created.success.body": "The service has been created", "ldn-service-notification.created.success.body": "સેવા બનાવવામાં આવી છે", - + // "ldn-service-notification.created.failure.title": "Failed Create", "ldn-service-notification.created.failure.title": "અસફળ રચના", - + // "ldn-service-notification.created.failure.body": "The service has not been created", "ldn-service-notification.created.failure.body": "સેવા બનાવવામાં આવી નથી", - + // "ldn-service-notification.created.warning.title": "Please select at least one Inbound Pattern", "ldn-service-notification.created.warning.title": "કૃપા કરીને ઓછામાં ઓછું એક ઇનબાઉન્ડ પેટર્ન પસંદ કરો", - + // "ldn-enable-service.notification.success.title": "Successful status updated", "ldn-enable-service.notification.success.title": "સફળ સ્થિતિ અપડેટ", - + // "ldn-enable-service.notification.success.content": "The service status has been updated", "ldn-enable-service.notification.success.content": "સેવા સ્થિતિ અપડેટ કરવામાં આવી છે", - + // "ldn-service-delete.notification.success.title": "Successful Deletion", "ldn-service-delete.notification.success.title": "સફળ કાઢી નાખવું", - + // "ldn-service-delete.notification.success.content": "The service has been deleted", "ldn-service-delete.notification.success.content": "સેવા કાઢી નાખવામાં આવી છે", - + // "ldn-service-delete.notification.error.title": "Failed Deletion", "ldn-service-delete.notification.error.title": "અસફળ કાઢી નાખવું", - + // "ldn-service-delete.notification.error.content": "The service has not been deleted", "ldn-service-delete.notification.error.content": "સેવા કાઢી નાખવામાં આવી નથી", - + // "service.overview.reset-form.reset-return": "Cancel", "service.overview.reset-form.reset-return": "રદ કરો", - + // "service.overview.delete": "Delete service", "service.overview.delete": "સેવા કાઢી નાખો", - + // "ldn-edit-service.title": "Edit service", "ldn-edit-service.title": "સેવા સંપાદિત કરો", - + // "ldn-edit-service.form.label.name": "Name", "ldn-edit-service.form.label.name": "નામ", - + // "ldn-edit-service.form.label.description": "Description", "ldn-edit-service.form.label.description": "વર્ણન", - + // "ldn-edit-service.form.label.url": "Service URL", "ldn-edit-service.form.label.url": "સેવા URL", - + // "ldn-edit-service.form.label.ldnUrl": "LDN Inbox URL", "ldn-edit-service.form.label.ldnUrl": "LDN ઇનબોક્સ URL", - + // "ldn-edit-service.form.label.inboundPattern": "Inbound Pattern", "ldn-edit-service.form.label.inboundPattern": "ઇનબાઉન્ડ પેટર્ન", - + // "ldn-edit-service.form.label.noInboundPatternSelected": "No Inbound Pattern", "ldn-edit-service.form.label.noInboundPatternSelected": "કોઈ ઇનબાઉન્ડ પેટર્ન નથી", - + // "ldn-edit-service.form.label.selectedItemFilter": "Selected Item Filter", "ldn-edit-service.form.label.selectedItemFilter": "પસંદ કરેલ આઇટમ ફિલ્ટર", - + // "ldn-edit-service.form.label.selectItemFilter": "No Item Filter", "ldn-edit-service.form.label.selectItemFilter": "કોઈ આઇટમ ફિલ્ટર નથી", - + // "ldn-edit-service.form.label.automatic": "Automatic", "ldn-edit-service.form.label.automatic": "સ્વચાલિત", - + // "ldn-edit-service.form.label.addInboundPattern": "+ Add more", "ldn-edit-service.form.label.addInboundPattern": "+ વધુ ઉમેરો", - + // "ldn-edit-service.form.label.submit": "Save", "ldn-edit-service.form.label.submit": "સેવ", - + // "ldn-edit-service.breadcrumbs": "Edit Service", "ldn-edit-service.breadcrumbs": "સેવા સંપાદિત કરો", - + // "ldn-service.control-constaint-select-none": "Select none", "ldn-service.control-constaint-select-none": "કોઈ પસંદ કરો", + // "ldn-register-new-service.notification.error.title": "Error", "ldn-register-new-service.notification.error.title": "ભૂલ", - + // "ldn-register-new-service.notification.error.content": "An error occurred while creating this process", "ldn-register-new-service.notification.error.content": "આ પ્રક્રિયા બનાવતી વખતે ભૂલ આવી", - + // "ldn-register-new-service.notification.success.title": "Success", "ldn-register-new-service.notification.success.title": "સફળતા", - + // "ldn-register-new-service.notification.success.content": "The process was successfully created", "ldn-register-new-service.notification.success.content": "પ્રક્રિયા સફળતાપૂર્વક બનાવવામાં આવી", - "submission.sections.notify.info": "વર્તમાન સ્થિતિ અનુસાર આ આઇટમ સાથે સુસંગત સેવા પસંદ કરેલ છે. {{ service.name }}: {{ service.description }}", + // "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + // TODO New key - Add a translation + "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + // "item.page.endorsement": "Endorsement", "item.page.endorsement": "મંજૂરી", + // "item.page.places": "Related places", "item.page.places": "સંબંધિત સ્થળો", + // "item.page.review": "Review", "item.page.review": "સમીક્ષા", + // "item.page.referenced": "Referenced By", "item.page.referenced": "સંદર્ભ આપેલ", + // "item.page.supplemented": "Supplemented By", "item.page.supplemented": "પૂરક", + // "menu.section.icon.ldn_services": "LDN Services overview", "menu.section.icon.ldn_services": "LDN સેવાઓની ઝાંખી", + // "menu.section.services": "LDN Services", "menu.section.services": "LDN સેવાઓ", + // "menu.section.services_new": "LDN Service", "menu.section.services_new": "LDN સેવા", + // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "નીચે તમે {{source}} માટે સબ્સ્ક્રિપ્શન્સમાંથી પ્રાપ્ત તમામ વિષયો જોઈ શકો છો", - + // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", "quality-assurance.events.description": "નીચે પસંદ કરેલા વિષય {{topic}} માટેની તમામ સૂચનાઓની યાદી છે, જે {{source}} સાથે સંબંધિત છે.", + // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "નીચે પસંદ કરેલા વિષય {{topic}} માટેની તમામ સૂચનાઓની યાદી છે, જે {{source}} અને", - "quality-assurance.event.table.event.message.serviceUrl": "અભિનયકર્તા:", + // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + // TODO New key - Add a translation + "quality-assurance.event.table.event.message.serviceUrl": "Actor:", - "quality-assurance.event.table.event.message.link": "લિંક:", + // "quality-assurance.event.table.event.message.link": "Link:", + // TODO New key - Add a translation + "quality-assurance.event.table.event.message.link": "Link:", + // "service.detail.delete.cancel": "Cancel", "service.detail.delete.cancel": "રદ કરો", + // "service.detail.delete.button": "Delete service", "service.detail.delete.button": "સેવા કાઢી નાખો", + // "service.detail.delete.header": "Delete service", "service.detail.delete.header": "સેવા કાઢી નાખો", + // "service.detail.delete.body": "Are you sure you want to delete the current service?", "service.detail.delete.body": "શું તમે ખરેખર વર્તમાન સેવાને કાઢી નાખવા માંગો છો?", + // "service.detail.delete.confirm": "Delete service", "service.detail.delete.confirm": "સેવા કાઢી નાખો", + // "service.detail.delete.success": "The service was successfully deleted.", "service.detail.delete.success": "સેવા સફળતાપૂર્વક કાઢી નાખવામાં આવી.", + // "service.detail.delete.error": "Something went wrong when deleting the service", "service.detail.delete.error": "સેવા કાઢી નાખતી વખતે કંઈક ખોટું થયું", + // "service.overview.table.id": "Services ID", "service.overview.table.id": "સેવાઓ ID", + // "service.overview.table.name": "Name", "service.overview.table.name": "નામ", + // "service.overview.table.start": "Start time (UTC)", "service.overview.table.start": "પ્રારંભ સમય (UTC)", + // "service.overview.table.status": "Status", "service.overview.table.status": "સ્થિતિ", + // "service.overview.table.user": "User", "service.overview.table.user": "વપરાશકર્તા", + // "service.overview.title": "Services Overview", "service.overview.title": "સેવાઓની ઝાંખી", + // "service.overview.breadcrumbs": "Services Overview", "service.overview.breadcrumbs": "સેવાઓની ઝાંખી", + // "service.overview.table.actions": "Actions", "service.overview.table.actions": "ક્રિયાઓ", + // "service.overview.table.description": "Description", "service.overview.table.description": "વર્ણન", + // "submission.sections.submit.progressbar.coarnotify": "COAR Notify", "submission.sections.submit.progressbar.coarnotify": "COAR નોટિફાય", + // "submission.section.section-coar-notify.control.request-review.label": "You can request a review to one of the following services", "submission.section.section-coar-notify.control.request-review.label": "તમે નીચેની સેવાઓમાંથી એક સમીક્ષા માટે વિનંતી કરી શકો છો", + // "submission.section.section-coar-notify.control.request-endorsement.label": "You can request an Endorsement to one of the following overlay journals", "submission.section.section-coar-notify.control.request-endorsement.label": "તમે નીચેના ઓવરલે જર્નલ્સમાંથી એક મંજૂરી માટે વિનંતી કરી શકો છો", + // "submission.section.section-coar-notify.control.request-ingest.label": "You can request to ingest a copy of your submission to one of the following services", "submission.section.section-coar-notify.control.request-ingest.label": "તમે નીચેની સેવાઓમાંથી એકને તમારી સબમિશનની નકલ ઇનજેસ્ટ કરવા માટે વિનંતી કરી શકો છો", + // "submission.section.section-coar-notify.dropdown.no-data": "No data available", "submission.section.section-coar-notify.dropdown.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", + // "submission.section.section-coar-notify.dropdown.select-none": "Select none", "submission.section.section-coar-notify.dropdown.select-none": "કોઈ પસંદ કરો", + // "submission.section.section-coar-notify.small.notification": "Select a service for {{ pattern }} of this item", "submission.section.section-coar-notify.small.notification": "આ આઇટમ માટે {{ pattern }} માટે સેવા પસંદ કરો", - "submission.section.section-coar-notify.selection.description": "પસંદ કરેલી સેવાની વર્ણન:", + // "submission.section.section-coar-notify.selection.description": "Selected service's description:", + // TODO New key - Add a translation + "submission.section.section-coar-notify.selection.description": "Selected service's description:", + // "submission.section.section-coar-notify.selection.no-description": "No further information is available", "submission.section.section-coar-notify.selection.no-description": "કોઈ વધુ માહિતી ઉપલબ્ધ નથી", + // "submission.section.section-coar-notify.notification.error": "The selected service is not suitable for the current item. Please check the description for details about which record can be managed by this service.", "submission.section.section-coar-notify.notification.error": "પસંદ કરેલી સેવા વર્તમાન આઇટમ માટે યોગ્ય નથી. કૃપા કરીને તે રેકોર્ડ વિશેની વિગતો તપાસો કે જે આ સેવા દ્વારા સંચાલિત થઈ શકે છે.", + // "submission.section.section-coar-notify.info.no-pattern": "No configurable patterns found.", "submission.section.section-coar-notify.info.no-pattern": "કોઈ રૂપરેખાંકિત પેટર્ન મળ્યા નથી.", + // "error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.", "error.validation.coarnotify.invalidfilter": "અમાન્ય ફિલ્ટર, કૃપા કરીને બીજી સેવા અથવા કોઈ પસંદ કરો.", + // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.", "request-status-alert-box.accepted": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} સ્વીકારવામાં આવી છે.", + // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} નકારી દેવામાં આવી છે.", + // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", "request-status-alert-box.tentative_rejected": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} તાત્કાલિક નકારી દેવામાં આવી છે. સુધારાઓ જરૂરી છે", + // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} પેન્ડિંગ છે.", + // "ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion", "ldn-service-button-mark-inbound-deletion": "માર્ક સપોર્ટેડ પેટર્ન માટે ડિલીશન", + // "ldn-service-button-unmark-inbound-deletion": "Unmark supported pattern for deletion", "ldn-service-button-unmark-inbound-deletion": "માર્ક સપોર્ટેડ પેટર્ન માટે અનમાર્ક", + // "ldn-service-input-inbound-item-filter-dropdown": "Select Item filter for the pattern", "ldn-service-input-inbound-item-filter-dropdown": "પેટર્ન માટે આઇટમ ફિલ્ટર પસંદ કરો", + // "ldn-service-input-inbound-pattern-dropdown": "Select a pattern for service", "ldn-service-input-inbound-pattern-dropdown": "સેવા માટે પેટર્ન પસંદ કરો", + // "ldn-service-overview-select-delete": "Select service for deletion", "ldn-service-overview-select-delete": "ડિલીશન માટે સેવા પસંદ કરો", + // "ldn-service-overview-select-edit": "Edit LDN service", "ldn-service-overview-select-edit": "LDN સેવા સંપાદિત કરો", + // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "મોડલ બંધ કરો", + // "ldn-service-usesActorEmailId": "Requires actor email in notifications", "ldn-service-usesActorEmailId": "સૂચનાઓમાં અભિનયકર્તા ઇમેઇલની જરૂર છે", + // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", "ldn-service-usesActorEmailId-description": "જો સક્રિય છે, તો પ્રારંભિક સૂચનાઓમાં સબમિટર ઇમેઇલ શામેલ હશે, રિપોઝિટરી URL ના બદલે. આ સામાન્ય રીતે મંજૂરી અથવા સમીક્ષા સેવાઓ માટે છે.", + // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "આઇટમ પ્રકાર જર્નલ આર્ટિકલ અથવા ડેટાસેટ છે", + // "always_true_filter.label": "Always true", "always_true_filter.label": "હંમેશા સાચું", + // "automatic_processing_collection_filter_16.label": "Automatic processing", "automatic_processing_collection_filter_16.label": "સ્વચાલિત પ્રક્રિયા", + // "dc-identifier-uri-contains-doi_condition.label": "URI contains DOI", "dc-identifier-uri-contains-doi_condition.label": "URI માં DOI શામેલ છે", + // "doi-filter.label": "DOI filter", "doi-filter.label": "DOI ફિલ્ટર", + // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "ડોક્યુમેન્ટ પ્રકાર ડ્રાઇવર સમાન છે", + // "has-at-least-one-bitstream_condition.label": "Has at least one Bitstream", "has-at-least-one-bitstream_condition.label": "ઓછામાં ઓછું એક બિટસ્ટ્રીમ છે", + // "has-bitstream_filter.label": "Has Bitstream", "has-bitstream_filter.label": "બિટસ્ટ્રીમ છે", + // "has-one-bitstream_condition.label": "Has one Bitstream", "has-one-bitstream_condition.label": "એક બિટસ્ટ્રીમ છે", + // "is-archived_condition.label": "Is archived", "is-archived_condition.label": "આર્કાઇવ્ડ છે", + // "is-withdrawn_condition.label": "Is withdrawn", "is-withdrawn_condition.label": "વિથડ્રોન છે", + // "item-is-public_condition.label": "Item is public", "item-is-public_condition.label": "આઇટમ જાહેર છે", + // "journals_ingest_suggestion_collection_filter_18.label": "Journals ingest", "journals_ingest_suggestion_collection_filter_18.label": "જર્નલ્સ ઇનજેસ્ટ", + // "title-starts-with-pattern_condition.label": "Title starts with pattern", "title-starts-with-pattern_condition.label": "શીર્ષક પેટર્ન સાથે શરૂ થાય છે", + // "type-equals-dataset_condition.label": "Type equals Dataset", "type-equals-dataset_condition.label": "પ્રકાર ડેટાસેટ સમાન છે", + // "type-equals-journal-article_condition.label": "Type equals Journal Article", "type-equals-journal-article_condition.label": "પ્રકાર જર્નલ આર્ટિકલ સમાન છે", + // "ldn.no-filter.label": "None", "ldn.no-filter.label": "કોઈ નથી", + // "admin.notify.dashboard": "Dashboard", "admin.notify.dashboard": "ડેશબોર્ડ", + // "menu.section.notify_dashboard": "Dashboard", "menu.section.notify_dashboard": "ડેશબોર્ડ", + // "menu.section.coar_notify": "COAR Notify", "menu.section.coar_notify": "COAR નોટિફાય", + // "admin-notify-dashboard.title": "Notify Dashboard", "admin-notify-dashboard.title": "નોટિફાય ડેશબોર્ડ", + // "admin-notify-dashboard.description": "The Notify dashboard monitor the general usage of the COAR Notify protocol across the repository. In the “Metrics” tab are statistics about usage of the COAR Notify protocol. In the “Logs/Inbound” and “Logs/Outbound” tabs it’s possible to search and check the individual status of each LDN message, either received or sent.", "admin-notify-dashboard.description": "નોટિફાય ડેશબોર્ડ રિપોઝિટરીમાં COAR નોટિફાય પ્રોટોકોલના સામાન્ય ઉપયોગની મોનિટર કરે છે. “મેટ્રિક્સ” ટેબમાં COAR નોટિફાય પ્રોટોકોલના ઉપયોગ વિશેના આંકડા છે. “લોગ્સ/ઇનબાઉન્ડ” અને “લોગ્સ/આઉટબાઉન્ડ” ટેબમાં દરેક LDN સંદેશાની વ્યક્તિગત સ્થિતિ તપાસવી અને શોધવી શક્ય છે, જે પ્રાપ્ત અથવા મોકલવામાં આવી છે.", + // "admin-notify-dashboard.metrics": "Metrics", "admin-notify-dashboard.metrics": "મેટ્રિક્સ", + // "admin-notify-dashboard.received-ldn": "Number of received LDN", "admin-notify-dashboard.received-ldn": "પ્રાપ્ત LDN ની સંખ્યા", + // "admin-notify-dashboard.generated-ldn": "Number of generated LDN", "admin-notify-dashboard.generated-ldn": "ઉત્પાદિત LDN ની સંખ્યા", + // "admin-notify-dashboard.NOTIFY.incoming.accepted": "Accepted", "admin-notify-dashboard.NOTIFY.incoming.accepted": "સ્વીકાર્યું", + // "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "Accepted inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "સ્વીકારેલ ઇનબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.incoming.accepted": "હાલમાં દર્શાવેલ: સ્વીકારેલ સૂચનાઓ", + // "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + // "admin-notify-dashboard.NOTIFY.incoming.processed": "Processed LDN", "admin-notify-dashboard.NOTIFY.incoming.processed": "પ્રક્રિયા કરેલ LDN", + // "admin-notify-dashboard.NOTIFY.incoming.processed.description": "Processed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.processed.description": "પ્રક્રિયા કરેલ ઇનબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.incoming.processed": "હાલમાં દર્શાવેલ: પ્રક્રિયા કરેલ LDN", + // "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", - "admin-notify-logs.NOTIFY.incoming.failure": "હાલમાં દર્શાવેલ: નિષ્ફળ સૂચનાઓ", + // "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + // "admin-notify-dashboard.NOTIFY.incoming.failure": "Failure", "admin-notify-dashboard.NOTIFY.incoming.failure": "નિષ્ફળ", + // "admin-notify-dashboard.NOTIFY.incoming.failure.description": "Failed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.failure.description": "નિષ્ફળ ઇનબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.outgoing.failure": "હાલમાં દર્શાવેલ: નિષ્ફળ સૂચનાઓ", + // "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.failure": "Failure", "admin-notify-dashboard.NOTIFY.outgoing.failure": "નિષ્ફળ", + // "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "Failed outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "નિષ્ફળ આઉટબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.incoming.untrusted": "હાલમાં દર્શાવેલ: અવિશ્વસનીય સૂચનાઓ", + // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "અવિશ્વસનીય", + // "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "Inbound notifications not trusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "અવિશ્વસનીય ઇનબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.incoming.delivered": "હાલમાં દર્શાવેલ: પહોંચાડેલ સૂચનાઓ", + // "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + // "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "Inbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "સફળતાપૂર્વક પહોંચાડેલ ઇનબાઉન્ડ સૂચનાઓ", + // "admin-notify-dashboard.NOTIFY.outgoing.delivered": "Delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered": "પહોંચાડેલ", - "admin-notify-logs.NOTIFY.outgoing.delivered": "હાલમાં દર્શાવેલ: પહોંચાડેલ સૂચનાઓ", + // "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "Outbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "સફળતાપૂર્વક પહોંચાડેલ આઉટબાઉન્ડ સૂચનાઓ", - "admin-notify-logs.NOTIFY.outgoing.queued": "હાલમાં દર્શાવેલ: કતારમાં સૂચનાઓ", + // "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "Notifications currently queued", "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "હાલમાં કતારમાં સૂચનાઓ", + // "admin-notify-dashboard.NOTIFY.outgoing.queued": "Queued", "admin-notify-dashboard.NOTIFY.outgoing.queued": "કતારમાં", - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "હાલમાં દર્શાવેલ: પુનઃપ્રયાસ માટે કતારમાં સૂચનાઓ", + // "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "Queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "પુનઃપ્રયાસ માટે કતારમાં", + // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "Notifications currently queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "હાલમાં પુનઃપ્રયાસ માટે કતારમાં સૂચનાઓ", + // "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "સંબંધિત આઇટમ્સ", + // "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "Items related to inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "ઇનબાઉન્ડ સૂચનાઓ સાથે સંબંધિત આઇટમ્સ", + // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "સંબંધિત આઇટમ્સ", + // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "Items related to outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "આઉટબાઉન્ડ સૂચનાઓ સાથે સંબંધિત આઇટમ્સ", + // "admin.notify.dashboard.breadcrumbs": "Dashboard", "admin.notify.dashboard.breadcrumbs": "ડેશબોર્ડ", + // "admin.notify.dashboard.inbound": "Inbound messages", "admin.notify.dashboard.inbound": "ઇનબાઉન્ડ સંદેશાઓ", + // "admin.notify.dashboard.inbound-logs": "Logs/Inbound", "admin.notify.dashboard.inbound-logs": "લોગ્સ/ઇનબાઉન્ડ", - "admin.notify.dashboard.filter": "ફિલ્ટર: ", + // "admin.notify.dashboard.filter": "Filter: ", + // TODO New key - Add a translation + "admin.notify.dashboard.filter": "Filter: ", + // "search.filters.applied.f.relateditem": "Related items", "search.filters.applied.f.relateditem": "સંબંધિત આઇટમ્સ", + // "search.filters.applied.f.ldn_service": "LDN Service", "search.filters.applied.f.ldn_service": "LDN સેવા", + // "search.filters.applied.f.notifyReview": "Notify Review", "search.filters.applied.f.notifyReview": "નોટિફાય સમીક્ષા", + // "search.filters.applied.f.notifyEndorsement": "Notify Endorsement", "search.filters.applied.f.notifyEndorsement": "નોટિફાય મંજૂરી", + // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "નોટિફાય સંબંધ", + // "search.filters.applied.f.access_status": "Access type", "search.filters.applied.f.access_status": "ઍક્સેસ પ્રકાર", + // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "છેલ્લી પ્રક્રિયા સમય ", + // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "ન્યૂનતમ શ્રેણી", + // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "મહત્તમ શ્રેણી", + // "search.filters.applied.f.queue_last_start_time.min": "Min range", "search.filters.applied.f.queue_last_start_time.min": "ન્યૂનતમ શ્રેણી", + // "search.filters.applied.f.queue_last_start_time.max": "Max range", "search.filters.applied.f.queue_last_start_time.max": "મહત્તમ શ્રેણી", + // "admin.notify.dashboard.outbound": "Outbound messages", "admin.notify.dashboard.outbound": "આઉટબાઉન્ડ સંદેશાઓ", + // "admin.notify.dashboard.outbound-logs": "Logs/Outbound", "admin.notify.dashboard.outbound-logs": "લોગ્સ/આઉટબાઉન્ડ", + // "NOTIFY.incoming.search.results.head": "Incoming", "NOTIFY.incoming.search.results.head": "ઇનબાઉન્ડ", + // "search.filters.filter.relateditem.head": "Related item", "search.filters.filter.relateditem.head": "સંબંધિત આઇટમ", + // "search.filters.filter.origin.head": "Origin", "search.filters.filter.origin.head": "મૂળ", + // "search.filters.filter.ldn_service.head": "LDN Service", "search.filters.filter.ldn_service.head": "LDN સેવા", + // "search.filters.filter.target.head": "Target", "search.filters.filter.target.head": "લક્ષ્ય", + // "search.filters.filter.queue_status.head": "Queue status", "search.filters.filter.queue_status.head": "કતાર સ્થિતિ", + // "search.filters.filter.activity_stream_type.head": "Activity stream type", "search.filters.filter.activity_stream_type.head": "પ્રવાહ પ્રકાર", + // "search.filters.filter.coar_notify_type.head": "COAR Notify type", "search.filters.filter.coar_notify_type.head": "COAR નોટિફાય પ્રકાર", + // "search.filters.filter.notification_type.head": "Notification type", "search.filters.filter.notification_type.head": "સૂચના પ્રકાર", + // "search.filters.filter.relateditem.label": "Search related items", "search.filters.filter.relateditem.label": "સંબંધિત આઇટમ્સ માટે શોધો", + // "search.filters.filter.queue_status.label": "Search queue status", "search.filters.filter.queue_status.label": "કતાર સ્થિતિ માટે શોધો", + // "search.filters.filter.target.label": "Search target", "search.filters.filter.target.label": "લક્ષ્ય માટે શોધો", + // "search.filters.filter.activity_stream_type.label": "Search activity stream type", "search.filters.filter.activity_stream_type.label": "પ્રવાહ પ્રકાર માટે શોધો", + // "search.filters.applied.f.queue_status": "Queue Status", "search.filters.applied.f.queue_status": "કતાર સ્થિતિ", + // "search.filters.queue_status.0,authority": "Untrusted Ip", "search.filters.queue_status.0,authority": "અવિશ્વસનીય Ip", + // "search.filters.queue_status.1,authority": "Queued", "search.filters.queue_status.1,authority": "કતારમાં", + // "search.filters.queue_status.2,authority": "Processing", "search.filters.queue_status.2,authority": "પ્રક્રિયા", + // "search.filters.queue_status.3,authority": "Processed", "search.filters.queue_status.3,authority": "પ્રક્રિયા કરેલ", + // "search.filters.queue_status.4,authority": "Failed", "search.filters.queue_status.4,authority": "નિષ્ફળ", + // "search.filters.queue_status.5,authority": "Untrusted", "search.filters.queue_status.5,authority": "અવિશ્વસનીય", + // "search.filters.queue_status.6,authority": "Unmapped Action", "search.filters.queue_status.6,authority": "અનમૅપ્ડ ક્રિયા", + // "search.filters.queue_status.7,authority": "Queued for retry", "search.filters.queue_status.7,authority": "પુનઃપ્રયાસ માટે કતારમાં", + // "search.filters.applied.f.activity_stream_type": "Activity stream type", "search.filters.applied.f.activity_stream_type": "પ્રવાહ પ્રકાર", + // "search.filters.applied.f.coar_notify_type": "COAR Notify type", "search.filters.applied.f.coar_notify_type": "COAR નોટિફાય પ્રકાર", + // "search.filters.applied.f.notification_type": "Notification type", "search.filters.applied.f.notification_type": "સૂચના પ્રકાર", + // "search.filters.filter.coar_notify_type.label": "Search COAR Notify type", "search.filters.filter.coar_notify_type.label": "COAR નોટિફાય પ્રકાર માટે શોધો", + // "search.filters.filter.notification_type.label": "Search notification type", "search.filters.filter.notification_type.label": "સૂચના પ્રકાર માટે શોધો", + // "search.filters.filter.relateditem.placeholder": "Related items", "search.filters.filter.relateditem.placeholder": "સંબંધિત આઇટમ્સ", + // "search.filters.filter.target.placeholder": "Target", "search.filters.filter.target.placeholder": "લક્ષ્ય", + // "search.filters.filter.origin.label": "Search source", "search.filters.filter.origin.label": "મૂળ માટે શોધો", + // "search.filters.filter.origin.placeholder": "Source", "search.filters.filter.origin.placeholder": "મૂળ", + // "search.filters.filter.ldn_service.label": "Search LDN Service", "search.filters.filter.ldn_service.label": "LDN સેવા માટે શોધો", + // "search.filters.filter.ldn_service.placeholder": "LDN Service", "search.filters.filter.ldn_service.placeholder": "LDN સેવા", + // "search.filters.filter.queue_status.placeholder": "Queue status", "search.filters.filter.queue_status.placeholder": "કતાર સ્થિતિ", + // "search.filters.filter.activity_stream_type.placeholder": "Activity stream type", "search.filters.filter.activity_stream_type.placeholder": "પ્રવાહ પ્રકાર", + // "search.filters.filter.coar_notify_type.placeholder": "COAR Notify type", "search.filters.filter.coar_notify_type.placeholder": "COAR નોટિફાય પ્રકાર", + // "search.filters.filter.notification_type.placeholder": "Notification", "search.filters.filter.notification_type.placeholder": "સૂચના", + // "search.filters.filter.notifyRelation.head": "Notify Relation", "search.filters.filter.notifyRelation.head": "નોટિફાય સંબંધ", + // "search.filters.filter.notifyRelation.label": "Search Notify Relation", "search.filters.filter.notifyRelation.label": "નોટિફાય સંબંધ માટે શોધો", + // "search.filters.filter.notifyRelation.placeholder": "Notify Relation", "search.filters.filter.notifyRelation.placeholder": "નોટિફાય સંબંધ", + // "search.filters.filter.notifyReview.head": "Notify Review", "search.filters.filter.notifyReview.head": "નોટિફાય સમીક્ષા", + // "search.filters.filter.notifyReview.label": "Search Notify Review", "search.filters.filter.notifyReview.label": "નોટિફાય સમીક્ષા માટે શોધો", + // "search.filters.filter.notifyReview.placeholder": "Notify Review", "search.filters.filter.notifyReview.placeholder": "નોટિફાય સમીક્ષા", + // "search.filters.coar_notify_type.coar-notify:ReviewAction": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction": "સમીક્ષા ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "સમીક્ષા ક્રિયા", + // "notify-detail-modal.coar-notify:ReviewAction": "Review action", "notify-detail-modal.coar-notify:ReviewAction": "સમીક્ષા ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:EndorsementAction": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction": "મંજૂરી ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "મંજૂરી ક્રિયા", + // "notify-detail-modal.coar-notify:EndorsementAction": "Endorsement action", "notify-detail-modal.coar-notify:EndorsementAction": "મંજૂરી ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:IngestAction": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction": "ઇનજેસ્ટ ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ઇનજેસ્ટ ક્રિયા", + // "notify-detail-modal.coar-notify:IngestAction": "Ingest action", "notify-detail-modal.coar-notify:IngestAction": "ઇનજેસ્ટ ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:RelationshipAction": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction": "સંબંધ ક્રિયા", + // "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "સંબંધ ક્રિયા", + // "notify-detail-modal.coar-notify:RelationshipAction": "Relationship action", "notify-detail-modal.coar-notify:RelationshipAction": "સંબંધ ક્રિયા", + // "search.filters.queue_status.QUEUE_STATUS_QUEUED": "Queued", "search.filters.queue_status.QUEUE_STATUS_QUEUED": "કતારમાં", + // "notify-detail-modal.QUEUE_STATUS_QUEUED": "Queued", "notify-detail-modal.QUEUE_STATUS_QUEUED": "કતારમાં", + // "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "પુનઃપ્રયાસ માટે કતારમાં", + // "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "પુનઃપ્રયાસ માટે કતારમાં", + // "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "Processing", "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "પ્રક્રિયા", + // "notify-detail-modal.QUEUE_STATUS_PROCESSING": "Processing", "notify-detail-modal.QUEUE_STATUS_PROCESSING": "પ્રક્રિયા", + // "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "Processed", "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "પ્રક્રિયા કરેલ", + // "notify-detail-modal.QUEUE_STATUS_PROCESSED": "Processed", "notify-detail-modal.QUEUE_STATUS_PROCESSED": "પ્રક્રિયા કરેલ", + // "search.filters.queue_status.QUEUE_STATUS_FAILED": "Failed", "search.filters.queue_status.QUEUE_STATUS_FAILED": "નિષ્ફળ", + // "notify-detail-modal.QUEUE_STATUS_FAILED": "Failed", "notify-detail-modal.QUEUE_STATUS_FAILED": "નિષ્ફળ", + // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "Untrusted", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "અવિશ્વસનીય", + // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "અવિશ્વસનીય Ip", + // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "Untrusted", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "અવિશ્વસનીય", + // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "અવિશ્વસનીય Ip", + // "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "અનમૅપ્ડ ક્રિયા", + // "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "અનમૅપ્ડ ક્રિયા", + // "sorting.queue_last_start_time.DESC": "Last started queue Descending", "sorting.queue_last_start_time.DESC": "છેલ્લી શરૂ થયેલી કતાર ઉતરતી ક્રમમાં", + // "sorting.queue_last_start_time.ASC": "Last started queue Ascending", "sorting.queue_last_start_time.ASC": "છેલ્લી શરૂ થયેલી કતાર ચડતી ક્રમમાં", + // "sorting.queue_attempts.DESC": "Queue attempted Descending", "sorting.queue_attempts.DESC": "કતાર પ્રયાસ ઉતરતી ક્રમમાં", + // "sorting.queue_attempts.ASC": "Queue attempted Ascending", "sorting.queue_attempts.ASC": "કતાર પ્રયાસ ચડતી ક્રમમાં", + // "NOTIFY.incoming.involvedItems.search.results.head": "Items involved in incoming LDN", "NOTIFY.incoming.involvedItems.search.results.head": "ઇનબાઉન્ડ LDN માં સંકળાયેલા આઇટમ્સ", + // "NOTIFY.outgoing.involvedItems.search.results.head": "Items involved in outgoing LDN", "NOTIFY.outgoing.involvedItems.search.results.head": "આઉટબાઉન્ડ LDN માં સંકળાયેલા આઇટમ્સ", + // "type.notify-detail-modal": "Type", "type.notify-detail-modal": "પ્રકાર", + // "id.notify-detail-modal": "Id", "id.notify-detail-modal": "Id", + // "coarNotifyType.notify-detail-modal": "COAR Notify type", "coarNotifyType.notify-detail-modal": "COAR નોટિફાય પ્રકાર", + // "activityStreamType.notify-detail-modal": "Activity stream type", "activityStreamType.notify-detail-modal": "પ્રવાહ પ્રકાર", + // "inReplyTo.notify-detail-modal": "In reply to", "inReplyTo.notify-detail-modal": "જવાબમાં", + // "object.notify-detail-modal": "Repository Item", "object.notify-detail-modal": "રિપોઝિટરી આઇટમ", + // "context.notify-detail-modal": "Repository Item", "context.notify-detail-modal": "રિપોઝિટરી આઇટમ", + // "queueAttempts.notify-detail-modal": "Queue attempts", "queueAttempts.notify-detail-modal": "કતાર પ્રયાસ", + // "queueLastStartTime.notify-detail-modal": "Queue last started", "queueLastStartTime.notify-detail-modal": "છેલ્લી કતાર શરૂ", + // "origin.notify-detail-modal": "LDN Service", "origin.notify-detail-modal": "LDN સેવા", + // "target.notify-detail-modal": "LDN Service", "target.notify-detail-modal": "LDN સેવા", + // "queueStatusLabel.notify-detail-modal": "Queue status", "queueStatusLabel.notify-detail-modal": "કતાર સ્થિતિ", + // "queueTimeout.notify-detail-modal": "Queue timeout", "queueTimeout.notify-detail-modal": "કતાર સમયમર્યાદા", + // "notify-message-modal.title": "Message Detail", "notify-message-modal.title": "સંદેશ વિગત", + // "notify-message-modal.show-message": "Show message", "notify-message-modal.show-message": "સંદેશ બતાવો", + // "notify-message-result.timestamp": "Timestamp", "notify-message-result.timestamp": "ટાઇમસ્ટેમ્પ", + // "notify-message-result.repositoryItem": "Repository Item", "notify-message-result.repositoryItem": "રિપોઝિટરી આઇટમ", + // "notify-message-result.ldnService": "LDN Service", "notify-message-result.ldnService": "LDN સેવા", + // "notify-message-result.type": "Type", "notify-message-result.type": "પ્રકાર", + // "notify-message-result.status": "Status", "notify-message-result.status": "સ્થિતિ", + // "notify-message-result.action": "Action", "notify-message-result.action": "ક્રિયા", + // "notify-message-result.detail": "Detail", "notify-message-result.detail": "વિગત", + // "notify-message-result.reprocess": "Reprocess", "notify-message-result.reprocess": "ફરીથી પ્રક્રિયા", + // "notify-queue-status.processed": "Processed", "notify-queue-status.processed": "પ્રક્રિયા કરેલ", + // "notify-queue-status.failed": "Failed", "notify-queue-status.failed": "નિષ્ફળ", + // "notify-queue-status.queue_retry": "Queued for retry", "notify-queue-status.queue_retry": "પુનઃપ્રયાસ માટે કતારમાં", + // "notify-queue-status.unmapped_action": "Unmapped action", "notify-queue-status.unmapped_action": "અનમૅપ્ડ ક્રિયા", + // "notify-queue-status.processing": "Processing", "notify-queue-status.processing": "પ્રક્રિયા", + // "notify-queue-status.queued": "Queued", "notify-queue-status.queued": "કતારમાં", + // "notify-queue-status.untrusted": "Untrusted", "notify-queue-status.untrusted": "અવિશ્વસનીય", + // "ldnService.notify-detail-modal": "LDN Service", "ldnService.notify-detail-modal": "LDN સેવા", + // "relatedItem.notify-detail-modal": "Related Item", "relatedItem.notify-detail-modal": "સંબંધિત આઇટમ", + // "search.filters.filter.notifyEndorsement.head": "Notify Endorsement", "search.filters.filter.notifyEndorsement.head": "નોટિફાય મંજૂરી", + // "search.filters.filter.notifyEndorsement.placeholder": "Notify Endorsement", "search.filters.filter.notifyEndorsement.placeholder": "નોટિફાય મંજૂરી", + // "search.filters.filter.notifyEndorsement.label": "Search Notify Endorsement", "search.filters.filter.notifyEndorsement.label": "નોટિફાય મંજૂરી માટે શોધો", + // "form.date-picker.placeholder.year": "Year", "form.date-picker.placeholder.year": "વર્ષ", + // "form.date-picker.placeholder.month": "Month", "form.date-picker.placeholder.month": "મહિનો", + // "form.date-picker.placeholder.day": "Day", "form.date-picker.placeholder.day": "દિવસ", + // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "ક્રિએટિવ કોમન્સ લાઇસન્સ", + // "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as", "item.page.cc.license.disclaimer": "જ્યાં અન્યથા નોંધાયેલ નથી, ત્યાં આ આઇટમનું લાઇસન્સ આ પ્રમાણે વર્ણવવામાં આવ્યું છે", + // "browse.search-form.placeholder": "Search the repository", "browse.search-form.placeholder": "રિપોઝિટરી શોધો", + // "file-download-link.download": "Download ", "file-download-link.download": "ડાઉનલોડ કરો", + // "register-page.registration.aria.label": "Enter your e-mail address", "register-page.registration.aria.label": "તમારો ઇમેઇલ સરનામું દાખલ કરો", + // "forgot-email.form.aria.label": "Enter your e-mail address", "forgot-email.form.aria.label": "તમારો ઇમેઇલ સરનામું દાખલ કરો", + // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "પેજ ફરીથી લોડ થશે. ફિલ્ટર {{ filter }} પસંદ કરેલ છે.", + // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", "live-region.ordering.instructions": "પુનઃક્રમમાં ગોઠવવા માટે સ્પેસબાર દબાવો {{ itemName }}.", - "live-region.ordering.status": "{{ itemName }}, પકડ્યું. સૂચિમાં વર્તમાન સ્થિતિ: {{ index }} માંથી {{ length }}. સ્થિતિ બદલવા માટે ઉપર અને નીચેના તીર કીઓ દબાવો, છોડવા માટે સ્પેસબાર દબાવો, રદ કરવા માટે એસ્કેપ દબાવો.", + // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + // TODO New key - Add a translation + "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", "live-region.ordering.moved": "{{ itemName }}, સ્થિતિમાં ખસેડ્યું {{ index }} માંથી {{ length }}. સ્થિતિ બદલવા માટે ઉપર અને નીચેના તીર કીઓ દબાવો, છોડવા માટે સ્પેસબાર દબાવો, રદ કરવા માટે એસ્કેપ દબાવો.", + // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", "live-region.ordering.dropped": "{{ itemName }}, સ્થિતિમાં છોડ્યું {{ index }} માંથી {{ length }}.", + // "dynamic-form-array.sortable-list.label": "Sortable list", "dynamic-form-array.sortable-list.label": "સૉર્ટેબલ સૂચિ", + // "external-login.component.or": "or", "external-login.component.or": "અથવા", + // "external-login.confirmation.header": "Information needed to complete the login process", "external-login.confirmation.header": "લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે માહિતી જરૂરી છે", + // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", "external-login.noEmail.informationText": "{{authMethod}} માંથી પ્રાપ્ત માહિતી લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે પૂરતી નથી. કૃપા કરીને નીચેની ગુમ થયેલી માહિતી આપો, અથવા {{authMethod}} ને મોજુદા ખાતા સાથે જોડવા માટે અલગ પદ્ધતિથી લૉગિન કરો.", + // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", "external-login.haveEmail.informationText": "તમારા પાસે હજી સુધી આ સિસ્ટમમાં એકાઉન્ટ નથી એવું લાગે છે. જો એવું હોય, તો કૃપા કરીને {{authMethod}} માંથી પ્રાપ્ત ડેટાની પુષ્ટિ કરો અને તમારા માટે નવું એકાઉન્ટ બનાવવામાં આવશે. અન્યથા, જો તમારી પાસે પહેલેથી જ સિસ્ટમમાં એકાઉન્ટ છે, તો કૃપા કરીને ઇમેઇલ સરનામું અપડેટ કરો જેથી તે સિસ્ટમમાં પહેલેથી જ ઉપયોગમાં લેવાતા સરનામા સાથે મેળ ખાતું હોય અથવા તમારા મોજુદા ખાતા સાથે {{authMethod}} ને જોડવા માટે અલગ પદ્ધતિથી લૉગિન કરો.", + // "external-login.confirm-email.header": "Confirm or update email", "external-login.confirm-email.header": "ઇમેઇલની પુષ્ટિ કરો અથવા અપડેટ કરો", + // "external-login.confirmation.email-required": "Email is required.", "external-login.confirmation.email-required": "ઇમેઇલ જરૂરી છે.", + // "external-login.confirmation.email-label": "User Email", "external-login.confirmation.email-label": "વપરાશકર્તા ઇમેઇલ", + // "external-login.confirmation.email-invalid": "Invalid email format.", "external-login.confirmation.email-invalid": "અમાન્ય ઇમેઇલ ફોર્મેટ.", + // "external-login.confirm.button.label": "Confirm this email", "external-login.confirm.button.label": "આ ઇમેઇલની પુષ્ટિ કરો", + // "external-login.confirm-email-sent.header": "Confirmation email sent", "external-login.confirm-email-sent.header": "પુષ્ટિ ઇમેઇલ મોકલવામાં આવ્યું", + // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", "external-login.confirm-email-sent.info": "અમે આપેલા સરનામે ઇમેઇલ મોકલ્યો છે.
લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે ઇમેઇલમાં આપેલા સૂચનોનું અનુસરણ કરો.", + // "external-login.provide-email.header": "Provide email", "external-login.provide-email.header": "ઇમેઇલ આપો", + // "external-login.provide-email.button.label": "Send Verification link", "external-login.provide-email.button.label": "પુષ્ટિ લિંક મોકલો", + // "external-login-validation.review-account-info.header": "Review your account information", "external-login-validation.review-account-info.header": "તમારી ખાતાની માહિતી સમીક્ષા કરો", + // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", "external-login-validation.review-account-info.info": "ORCID માંથી પ્રાપ્ત માહિતી તમારી પ્રોફાઇલમાં નોંધાયેલ માહિતીથી અલગ છે.
કૃપા કરીને તેમને સમીક્ષા કરો અને નક્કી કરો કે તમે તેમાંના કોઈને અપડેટ કરવા માંગો છો કે નહીં. સાચવ્યા પછી તમને તમારી પ્રોફાઇલ પેજ પર રીડાયરેક્ટ કરવામાં આવશે.", + // "external-login-validation.review-account-info.table.header.information": "Information", "external-login-validation.review-account-info.table.header.information": "માહિતી", + // "external-login-validation.review-account-info.table.header.received-value": "Received value", "external-login-validation.review-account-info.table.header.received-value": "પ્રાપ્ત મૂલ્ય", + // "external-login-validation.review-account-info.table.header.current-value": "Current value", "external-login-validation.review-account-info.table.header.current-value": "વર્તમાન મૂલ્ય", + // "external-login-validation.review-account-info.table.header.action": "Override", "external-login-validation.review-account-info.table.header.action": "ઓવરરાઇડ", + // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", "external-login-validation.review-account-info.table.row.not-applicable": "લાગુ નથી", + // "on-label": "ON", "on-label": "ચાલુ", + // "off-label": "OFF", "off-label": "બંધ", + // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", "review-account-info.merge-data.notification.success": "તમારી ખાતાની માહિતી સફળતાપૂર્વક અપડેટ કરવામાં આવી છે", + // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", "review-account-info.merge-data.notification.error": "તમારી ખાતાની માહિતી અપડેટ કરતી વખતે કંઈક ખોટું થયું", + // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", "review-account-info.alert.error.content": "કંઈક ખોટું થયું. કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", + // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", "external-login-page.provide-email.notifications.error": "કંઈક ખોટું થયું. ઇમેઇલ સરનામું છોડી દેવામાં આવ્યું છે અથવા ઓપરેશન માન્ય નથી.", + // "external-login.error.notification": "There was an error while processing your request. Please try again later.", "external-login.error.notification": "તમારી વિનંતી પ્રક્રિયા કરતી વખતે ભૂલ આવી. કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", + // "external-login.connect-to-existing-account.label": "Connect to an existing user", "external-login.connect-to-existing-account.label": "મોજુદા વપરાશકર્તા સાથે જોડો", + // "external-login.modal.label.close": "Close", "external-login.modal.label.close": "બંધ કરો", + // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", "external-login-page.provide-email.create-account.notifications.error.header": "કંઈક ખોટું થયું", + // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", "external-login-page.provide-email.create-account.notifications.error.content": "કૃપા કરીને તમારું ઇમેઇલ સરનામું ફરીથી તપાસો અને ફરી પ્રયાસ કરો.", + // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", "external-login-page.confirm-email.create-account.notifications.error.no-netId": "આ ઇમેઇલ ખાતા સાથે કંઈક ખોટું થયું. ફરી પ્રયાસ કરો અથવા લૉગિન માટે અલગ પદ્ધતિનો ઉપયોગ કરો.", + // "external-login-page.orcid-confirmation.firstname": "First name", "external-login-page.orcid-confirmation.firstname": "પ્રથમ નામ", + // "external-login-page.orcid-confirmation.firstname.label": "First name", "external-login-page.orcid-confirmation.firstname.label": "પ્રથમ નામ", + // "external-login-page.orcid-confirmation.lastname": "Last name", "external-login-page.orcid-confirmation.lastname": "છેલ્લું નામ", + // "external-login-page.orcid-confirmation.lastname.label": "Last name", "external-login-page.orcid-confirmation.lastname.label": "છેલ્લું નામ", + // "external-login-page.orcid-confirmation.netid": "Account Identifier", "external-login-page.orcid-confirmation.netid": "ખાતા ઓળખકર્તા", + // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", + // "external-login-page.orcid-confirmation.email": "Email", "external-login-page.orcid-confirmation.email": "ઇમેઇલ", + // "external-login-page.orcid-confirmation.email.label": "Email", "external-login-page.orcid-confirmation.email.label": "ઇમેઇલ", + // "search.filters.access_status.open.access": "Open access", "search.filters.access_status.open.access": "ઓપન ઍક્સેસ", + // "search.filters.access_status.restricted": "Restricted access", "search.filters.access_status.restricted": "પ્રતિબંધિત ઍક્સેસ", + // "search.filters.access_status.embargo": "Embargoed access", "search.filters.access_status.embargo": "એમ્બાર્ગો ઍક્સેસ", + // "search.filters.access_status.metadata.only": "Metadata only", "search.filters.access_status.metadata.only": "મેટાડેટા માત્ર", + // "search.filters.access_status.unknown": "Unknown", "search.filters.access_status.unknown": "અજ્ઞાત", + // "metadata-export-filtered-items.tooltip": "Export report output as CSV", "metadata-export-filtered-items.tooltip": "CSV તરીકે રિપોર્ટ આઉટપુટ નિકાસ કરો", + // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", "metadata-export-filtered-items.submit.success": "CSV નિકાસ સફળ.", + // "metadata-export-filtered-items.submit.error": "CSV export failed.", "metadata-export-filtered-items.submit.error": "CSV નિકાસ નિષ્ફળ.", + // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", "metadata-export-filtered-items.columns.warning": "CSV નિકાસ આપમેળે બધી સંબંધિત ફીલ્ડ્સ શામેલ કરે છે, તેથી આ સૂચિમાં પસંદગીઓ ધ્યાનમાં લેવામાં આવતી નથી.", + // "embargo.listelement.badge": "Embargo until {{ date }}", "embargo.listelement.badge": "એમ્બાર્ગો સુધી {{ date }}", + // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", "metadata-export-search.submit.error.limit-exceeded": "માત્ર પ્રથમ {{limit}} આઇટમ્સ નિકાસ કરવામાં આવશે", -} + + // "file-download-link.request-copy": "Request a copy of ", + // TODO New key - Add a translation + "file-download-link.request-copy": "Request a copy of ", + + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + + +} \ No newline at end of file diff --git a/src/assets/i18n/hi.json5 b/src/assets/i18n/hi.json5 index 5fb5f9c4dd0..a92ea7203c4 100644 --- a/src/assets/i18n/hi.json5 +++ b/src/assets/i18n/hi.json5 @@ -2942,12 +2942,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "शीर्ष-स्तरीय समुदाय प्राप्त करने में त्रुटि", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "अपनी सबमिशन को पूरा करने के लिए आपको इस लाइसेंस को प्रदान करना होगा। यदि आप इस समय लाइसेंस प्रदान करने में असमर्थ हैं, तो आप अपना कार्य सहेज सकते हैं और बाद में वापस आ सकते हैं या सबमिशन को हटा सकते हैं।", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "अपनी सबमिशन को पूरा करने के लिए आपको इस cclicense को प्रदान करना होगा। यदि आप इस समय cclicense प्रदान करने में असमर्थ हैं, तो आप अपना कार्य सहेज सकते हैं और बाद में वापस आ सकते हैं या सबमिशन को हटा सकते हैं।", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -8541,6 +8554,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "क्रिएटिव कॉमन्स लाइसेंस", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "रीसायकल", @@ -8708,6 +8725,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "अपलोड सफल", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "जब चेक किया जाता है, तो यह आइटम खोज/ब्राउज़ में खोजने योग्य होगा। जब अनचेक किया जाता है, तो आइटम केवल एक सीधे लिंक के माध्यम से उपलब्ध होगा और कभी भी खोज/ब्राउज़ में दिखाई नहीं देगा।", @@ -11118,5 +11147,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/it.json5 b/src/assets/i18n/it.json5 index 26d70f3d5e9..88bd8e05745 100644 --- a/src/assets/i18n/it.json5 +++ b/src/assets/i18n/it.json5 @@ -3121,13 +3121,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Errore durante il recupero delle community di primo livello", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "È necessario concedere questa licenza per completare l'immisione. Se non sei in grado di concedere questa licenza in questo momento, puoi salvare il tuo lavoro e tornare più tardi o rimuovere l'immissione.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "L'input è limitato dal pattern in uso: {{ pattern }}.", @@ -9017,6 +9030,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licenza Creative commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ricicla", @@ -9185,6 +9202,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Caricamento riuscito", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Una volta selezionato, questo item sarà individuabile nella ricerca/navigazione. Se deselezionato, l'item sarà disponibile solo tramite un collegamento diretto e non apparirà mai nella ricerca / navigazione.", @@ -10195,7 +10224,7 @@ "listable-notification-object.default-message": "Questo oggetto non può essere recuperato", // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", - "system-wide-alert-banner.retrieval.error": "Qualcosa è andato storto nel recupero del banner del messaggio di servizio", + "system-wide-alert-banner.retrieval.error": "Qualcosa è andato storto nel recupero del banner di allarme di sistema", // "system-wide-alert-banner.countdown.prefix": "In", "system-wide-alert-banner.countdown.prefix": "Tra", @@ -10210,13 +10239,13 @@ "system-wide-alert-banner.countdown.minutes": "{{minutes}} minuti:", // "menu.section.system-wide-alert": "System-wide Alert", - "menu.section.system-wide-alert": "Messaggio di servizio", + "menu.section.system-wide-alert": "Allarme di sistema", // "system-wide-alert.form.header": "System-wide Alert", - "system-wide-alert.form.header": "Messaggio di servizio", + "system-wide-alert.form.header": "Allarme di sistema", // "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert", - "system-wide-alert-form.retrieval.error": "Qualcosa è andato storto nel recupero del messaggio di servizio", + "system-wide-alert-form.retrieval.error": "Qualcosa è andato storto nel recupero dell'allarme di sistema", // "system-wide-alert.form.cancel": "Cancel", "system-wide-alert.form.cancel": "Annulla", @@ -10231,41 +10260,41 @@ "system-wide-alert.form.label.inactive": "DISATTIVO", // "system-wide-alert.form.error.message": "The system wide alert must have a message", - "system-wide-alert.form.error.message": "Il messaggio di servizio deve avere del contenuto", + "system-wide-alert.form.error.message": "L'allarme di sistema deve avere un messaggio", // "system-wide-alert.form.label.message": "Alert message", - "system-wide-alert.form.label.message": "Messaggio di servizio", + "system-wide-alert.form.label.message": "Messaggio di allarme", // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer", "system-wide-alert.form.label.countdownTo.enable": "Attiva un conto alla rovescia", // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", - "system-wide-alert.form.label.countdownTo.hint": "Suggerimento: Imposta un conto alla rovescia. Se abilitato, è possibile impostare una data futura e il banner di messaggio di servizio eseguirà un conto alla rovescia fino alla data impostata. Quando il timer terminerà, l'avviso scomparirà. Il server NON verrà arrestato automaticamente.", + "system-wide-alert.form.label.countdownTo.hint": "Suggerimento: Imposta un conto alla rovescia. Se abilitato, è possibile impostare una data futura e il banner di allarme di sistema eseguirà un conto alla rovescia fino alla data impostata. Quando il timer terminerà, l'avviso scomparirà. Il server NON verrà arrestato automaticamente.", // "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", // TODO New key - Add a translation "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", // "system-wide-alert.form.label.preview": "System-wide alert preview", - "system-wide-alert.form.label.preview": "Anteprima del messaggio di servizio", + "system-wide-alert.form.label.preview": "Anteprima dell'allarme di sistema", // "system-wide-alert.form.update.success": "The system-wide alert was successfully updated", - "system-wide-alert.form.update.success": "Il messaggio di servizio è stato aggiornato con successo", + "system-wide-alert.form.update.success": "L'allarme di sistema è stato aggiornato con successo", // "system-wide-alert.form.update.error": "Something went wrong when updating the system-wide alert", - "system-wide-alert.form.update.error": "Qualcosa è andato storto durante l'aggiornamento del messaggio di servizio", + "system-wide-alert.form.update.error": "Qualcosa è andato storto durante l'aggiornamento dell'allarme di sistema", // "system-wide-alert.form.create.success": "The system-wide alert was successfully created", - "system-wide-alert.form.create.success": "Il messaggio di servizio è stato creato con successo", + "system-wide-alert.form.create.success": "L'allarme di sistema è stato creato con successo", // "system-wide-alert.form.create.error": "Something went wrong when creating the system-wide alert", - "system-wide-alert.form.create.error": "Qualcosa è andato storto nella creazione del messaggio di servizio", + "system-wide-alert.form.create.error": "Qualcosa è andato storto nella creazione dell'allarme di sistema", // "admin.system-wide-alert.breadcrumbs": "System-wide Alerts", - "admin.system-wide-alert.breadcrumbs": "Messaggi di servizio", + "admin.system-wide-alert.breadcrumbs": "Allarmi di sistema", // "admin.system-wide-alert.title": "System-wide Alerts", - "admin.system-wide-alert.title": "Messaggi di servizio", + "admin.system-wide-alert.title": "Allarmi di sistema", // "discover.filters.head": "Discover", // TODO New key - Add a translation @@ -12071,5 +12100,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } diff --git a/src/assets/i18n/ja.json5 b/src/assets/i18n/ja.json5 index 2d969c19464..d9cdd752e34 100644 --- a/src/assets/i18n/ja.json5 +++ b/src/assets/i18n/ja.json5 @@ -3847,14 +3847,26 @@ // TODO New key - Add a translation "error.top-level-communities": "Error fetching top-level communities", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // TODO New key - Add a translation - "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -11090,6 +11102,10 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", // TODO New key - Add a translation "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -11310,6 +11326,18 @@ // TODO New key - Add a translation "submission.sections.upload.upload-successful": "Upload successful", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -14530,5 +14558,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/kk.json5 b/src/assets/i18n/kk.json5 index 320cd39037f..fe4b2156902 100644 --- a/src/assets/i18n/kk.json5 +++ b/src/assets/i18n/kk.json5 @@ -3215,13 +3215,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Жоғары деңгейлі қауымдастықтарды алу қатесі", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Жіберуді аяқтау үшін осы лицензияны беруіңіз керек. Бұл лицензияны қазір бере алмасаңыз, жұмысыңызды сақтап, кейінірек оралуыңызға немесе жіберуді жоюға болады.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Бұл енгізу ағымдағы үлгімен шектелген: {{ pattern }}.", @@ -9253,6 +9266,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons лицензиясы", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Өңдеуге", @@ -9422,6 +9439,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Жүктеу сәтті өтті", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Егер бұл құсбелгі қойылса, бұл элемент іздеу/қарау үшін қол жетімді болады. Егер құсбелгі алынып тасталса, элемент тек тікелей сілтеме арқылы қол жетімді болады және іздеу/қарау кезінде ешқашан пайда болмайды.", @@ -12422,5 +12451,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/lv.json5 b/src/assets/i18n/lv.json5 index 1dce108b87f..f1dbcc3898e 100644 --- a/src/assets/i18n/lv.json5 +++ b/src/assets/i18n/lv.json5 @@ -3488,13 +3488,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Kļūda ielasot augstākā līmeņa kategorijas", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Jums ir jānodrošina šī licence, lai pabeigtu iesniegšanu. Ja šobrīd nevarat piešķirt šo licenci, varat saglabāt savu darbu un atgriezties vēlāk vai noņemt iesniegšanu.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Šo ievadi ierobežo pašreizējais modelis: {{ pattern }}.", @@ -10105,6 +10118,10 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Pārstrādāt", @@ -10298,6 +10315,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Augšupielāde veiksmīga", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13485,5 +13514,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/ml.json5 b/src/assets/i18n/ml.json5 deleted file mode 100644 index c603e661a04..00000000000 --- a/src/assets/i18n/ml.json5 +++ /dev/null @@ -1,5845 +0,0 @@ -{ - "401.help": "ഈ പേജ് ആക്‌സസ് ചെയ്യാൻ നിങ്ങൾക്ക് അധികാരം നൽകിയിട്ടില്ല. താഴെയുള്ള ബട്ടൺ ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഹോം പേജിലേക്ക് തിരികെ പോകാം.", - "401.link.home-page": "എന്നെ ഹോം പേജിലേക്ക് കൊണ്ടുപോകുക", - "401.unauthorized": "അനധികൃതം", - "403.help": "ഈ പേജ് ആക്‌സസ് ചെയ്യാൻ നിങ്ങൾക്ക് അനുമതി നൽകിയിട്ടില്ല. താഴെയുള്ള ബട്ടൺ ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഹോം പേജിലേക്ക് തിരികെ പോകാം.", - "403.link.home-page": "എന്നെ ഹോം പേജിലേക്ക് കൊണ്ടുപോകുക", - "403.forbidden": "നിഷേധിച്ചു", - "500.page-internal-server-error": "സേവനം ലഭ്യമല്ല", - "500.help": "പരിപാലന സമയം അല്ലെങ്കിൽ കപ്പാസിറ്റി പ്രശ്നങ്ങൾ കാരണം സെർവർ താങ്കളുടെ അഭ്യർത്ഥന സേവനം നൽകാൻ താൽക്കാലികമായി കഴിയുന്നില്ല. ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", - "500.link.home-page": "എന്നെ ഹോം പേജിലേക്ക് കൊണ്ടുപോകുക", - "404.help": "താങ്കൾ തിരയുന്ന പേജ് ഞങ്ങൾക്ക് കണ്ടെത്താൻ കഴിയുന്നില്ല. പേജ് മാറ്റിയിരിക്കാം അല്ലെങ്കിൽ ഇല്ലാതാക്കിയിരിക്കാം. താഴെയുള്ള ബട്ടൺ ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഹോം പേജിലേക്ക് തിരികെ പോകാം.", - "404.link.home-page": "എന്നെ ഹോം പേജിലേക്ക് കൊണ്ടുപോകുക", - "404.page-not-found": "പേജ് കണ്ടെത്തിയില്ല", - "error-page.description.401": "അനധികൃതം", - "error-page.description.403": "നിഷേധിച്ചു", - "error-page.description.500": "സേവനം ലഭ്യമല്ല", - "error-page.description.404": "പേജ് കണ്ടെത്തിയില്ല", - "error-page.orcid.generic-error": "ORCID വഴി ലോഗിൻ ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു. DSpace-നൊപ്പം താങ്കളുടെ ORCID അക്കൗണ്ട് ഇമെയിൽ വിലാസം പങ്കിട്ടിട്ടുണ്ടെന്ന് ഉറപ്പാക്കുക. പിശക് തുടരുകയാണെങ്കിൽ, അഡ്മിനിസ്ട്രേറ്ററെ ബന്ധപ്പെടുക", - "listelement.badge.access-status": "ആക്‌സസ് സ്റ്റാറ്റസ്:", - "access-status.embargo.listelement.badge": "എംബാർഗോ", - "access-status.metadata.only.listelement.badge": "മെറ്റാഡാറ്റ മാത്രം", - "access-status.open.access.listelement.badge": "ഓപ്പൺ ആക്‌സസ്", - "access-status.restricted.listelement.badge": "പരിമിതപ്പെടുത്തിയത്", - "access-status.unknown.listelement.badge": "അജ്ഞാതം", - "admin.curation-tasks.breadcrumbs": "സിസ്റ്റം ക്യൂറേഷൻ ടാസ്‌ക്കുകൾ", - "admin.curation-tasks.title": "സിസ്റ്റം ക്യൂറേഷൻ ടാസ്‌ക്കുകൾ", - "admin.curation-tasks.header": "സിസ്റ്റം ക്യൂറേഷൻ ടാസ്‌ക്കുകൾ", - "admin.registries.bitstream-formats.breadcrumbs": "ഫോർമാറ്റ് രജിസ്ട്രി", - "admin.registries.bitstream-formats.create.breadcrumbs": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ്", - "admin.registries.bitstream-formats.create.failure.content": "പുതിയ ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് സൃഷ്ടിക്കുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു.", - "admin.registries.bitstream-formats.create.failure.head": "പരാജയം", - "admin.registries.bitstream-formats.create.head": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് സൃഷ്ടിക്കുക", - "admin.registries.bitstream-formats.create.new": "ഒരു പുതിയ ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് ചേർക്കുക", - "admin.registries.bitstream-formats.create.success.content": "പുതിയ ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് വിജയകരമായി സൃഷ്ടിച്ചു.", - "admin.registries.bitstream-formats.create.success.head": "വിജയം", - "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} ഫോർമാറ്റ്(കൾ) നീക്കംചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു", - "admin.registries.bitstream-formats.delete.failure.head": "പരാജയം", - "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} ഫോർമാറ്റ്(കൾ) വിജയകരമായി നീക്കംചെയ്തു", - "admin.registries.bitstream-formats.delete.success.head": "വിജയം", - "admin.registries.bitstream-formats.description": "ഈ ബിറ്റ്സ്ട്രീം ഫോർമാറ്റുകളുടെ ലിസ്റ്റ് അറിയപ്പെടുന്ന ഫോർമാറ്റുകളും അവയുടെ സപ്പോർട്ട് ലെവലും കുറിച്ചുള്ള വിവരങ്ങൾ നൽകുന്നു.", - "admin.registries.bitstream-formats.edit.breadcrumbs": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ്", - "admin.registries.bitstream-formats.edit.description.hint": "", - "admin.registries.bitstream-formats.edit.description.label": "വിവരണം", - "admin.registries.bitstream-formats.edit.extensions.hint": "എക്സ്റ്റെൻഷനുകൾ ഫയൽ എക്സ്റ്റെൻഷനുകളാണ്, അപ്‌ലോഡ് ചെയ്ത ഫയലുകളുടെ ഫോർമാറ്റ് സ്വയം തിരിച്ചറിയാൻ ഉപയോഗിക്കുന്നു. ഓരോ ഫോർമാറ്റിനും നിരവധി എക്സ്റ്റെൻഷനുകൾ നൽകാം.", - "admin.registries.bitstream-formats.edit.extensions.label": "ഫയൽ എക്സ്റ്റെൻഷനുകൾ", - "admin.registries.bitstream-formats.edit.extensions.placeholder": "ഡോട്ട് ഇല്ലാതെ ഒരു ഫയൽ എക്സ്റ്റെൻഷൻ നൽകുക", - "admin.registries.bitstream-formats.edit.failure.content": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് എഡിറ്റ് ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു.", - "admin.registries.bitstream-formats.edit.failure.head": "പരാജയം", - "admin.registries.bitstream-formats.edit.head": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ്: {{ format }}", - "admin.registries.bitstream-formats.edit.internal.hint": "ഇന്റർണൽ എന്ന് മാർക്ക് ചെയ്ത ഫോർമാറ്റുകൾ ഉപയോക്താവിൽ നിന്ന് മറച്ചിരിക്കുന്നു, ഭരണപരമായ ആവശ്യങ്ങൾക്കായി ഉപയോഗിക്കുന്നു.", - "admin.registries.bitstream-formats.edit.internal.label": "ഇന്റർണൽ", - "admin.registries.bitstream-formats.edit.mimetype.hint": "ഈ ഫോർമാറ്റുമായി ബന്ധപ്പെട്ട MIME ടൈപ്പ്, അദ്വിതീയമായിരിക്കണമെന്നില്ല.", - "admin.registries.bitstream-formats.edit.mimetype.label": "MIME ടൈപ്പ്", - "admin.registries.bitstream-formats.edit.shortDescription.hint": "ഈ ഫോർമാറ്റിനായുള്ള ഒരു അദ്വിതീയമായ പേര് (ഉദാ: Microsoft Word XP അല്ലെങ്കിൽ Microsoft Word 2000)", - "admin.registries.bitstream-formats.edit.shortDescription.label": "പേര്", - "admin.registries.bitstream-formats.edit.success.content": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് വിജയകരമായി എഡിറ്റ് ചെയ്തു.", - "admin.registries.bitstream-formats.edit.success.head": "വിജയം", - "admin.registries.bitstream-formats.edit.supportLevel.hint": "നിങ്ങളുടെ സ്ഥാപനം ഈ ഫോർമാറ്റിനായി പ്രതിജ്ഞാബദ്ധമായ സപ്പോർട്ട് ലെവൽ.", - "admin.registries.bitstream-formats.edit.supportLevel.label": "സപ്പോർട്ട് ലെവൽ", - "admin.registries.bitstream-formats.head": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് രജിസ്ട്രി", - "admin.registries.bitstream-formats.no-items": "പ്രദർശിപ്പിക്കാൻ ബിറ്റ്സ്ട്രീം ഫോർമാറ്റുകൾ ഇല്ല.", - "admin.registries.bitstream-formats.table.delete": "തിരഞ്ഞെടുത്തവ ഇല്ലാതാക്കുക", - "admin.registries.bitstream-formats.table.deselect-all": "എല്ലാം അൺസെലക്ട് ചെയ്യുക", - "admin.registries.bitstream-formats.table.internal": "ഇന്റർണൽ", - "admin.registries.bitstream-formats.table.mimetype": "MIME ടൈപ്പ്", - "admin.registries.bitstream-formats.table.name": "പേര്", - "admin.registries.bitstream-formats.table.selected": "തിരഞ്ഞെടുത്ത ബിറ്റ്സ്ട്രീം ഫോർമാറ്റുകൾ", - "admin.registries.bitstream-formats.table.id": "ID", - "admin.registries.bitstream-formats.table.return": "തിരികെ", - "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "അറിയപ്പെടുന്നത്", - "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "സപ്പോർട്ട് ചെയ്യുന്നു", - "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "അജ്ഞാതം", - "admin.registries.bitstream-formats.table.supportLevel.head": "സപ്പോർട്ട് ലെവൽ", - "admin.registries.bitstream-formats.title": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് രജിസ്ട്രി", - "admin.registries.bitstream-formats.select": "തിരഞ്ഞെടുക്കുക", - "admin.registries.bitstream-formats.deselect": "അൺസെലക്ട് ചെയ്യുക", - "admin.registries.metadata.breadcrumbs": "മെറ്റാഡാറ്റ രജിസ്ട്രി", - "admin.registries.metadata.description": "മെറ്റാഡാറ്റ രജിസ്ട്രി റിപ്പോസിറ്ററിയിൽ ലഭ്യമായ എല്ലാ മെറ്റാഡാറ്റ ഫീൽഡുകളുടെയും ഒരു ലിസ്റ്റ് നിലനിർത്തുന്നു. ഈ ഫീൽഡുകൾ ഒന്നിലധികം സ്കീമകളായി വിഭജിക്കാം. എന്നിരുന്നാലും, DSpace-ന് യോഗ്യമായ ഡബ്ലിൻ കോർ സ്കീമ ആവശ്യമാണ്.", - "admin.registries.metadata.form.create": "മെറ്റാഡാറ്റ സ്കീമ സൃഷ്ടിക്കുക", - "admin.registries.metadata.form.edit": "മെറ്റാഡാറ്റ സ്കീമ എഡിറ്റ് ചെയ്യുക", - "admin.registries.metadata.form.name": "പേര്", - "admin.registries.metadata.form.namespace": "നേംസ്പേസ്", - "admin.registries.metadata.head": "മെറ്റാഡാറ്റ രജിസ്ട്രി", - "admin.registries.metadata.schemas.no-items": "പ്രദർശിപ്പിക്കാൻ മെറ്റാഡാറ്റ സ്കീമകൾ ഇല്ല.", - "admin.registries.metadata.schemas.select": "തിരഞ്ഞെടുക്കുക", - "admin.registries.metadata.schemas.deselect": "അൺസെലക്ട് ചെയ്യുക", - "admin.registries.metadata.schemas.table.delete": "തിരഞ്ഞെടുത്തവ ഇല്ലാതാക്കുക", - "admin.registries.metadata.schemas.table.selected": "തിരഞ്ഞെടുത്ത സ്കീമകൾ", - "admin.registries.metadata.schemas.table.id": "ID", - "admin.registries.metadata.schemas.table.name": "പേര്", - "admin.registries.metadata.schemas.table.namespace": "നേംസ്പേസ്", - "admin.registries.metadata.title": "മെറ്റാഡാറ്റ രജിസ്ട്രി", - "admin.registries.schema.breadcrumbs": "മെറ്റാഡാറ്റ സ്കീമ", - "admin.registries.schema.description": "ഇത് \"{{namespace}}\" എന്നതിനുള്ള മെറ്റാഡാറ്റ സ്കീമയാണ്.", - "admin.registries.schema.fields.select": "തിരഞ്ഞെടുക്കുക", - "admin.registries.schema.fields.deselect": "അൺസെലക്ട് ചെയ്യുക", - "admin.registries.schema.fields.head": "സ്കീമ മെറ്റാഡാറ്റ ഫീൽഡുകൾ", - "admin.registries.schema.fields.no-items": "പ്രദർശിപ്പിക്കാൻ മെറ്റാഡാറ്റ ഫീൽഡുകൾ ഇല്ല.", - "admin.registries.schema.fields.table.delete": "തിരഞ്ഞെടുത്തവ ഇല്ലാതാക്കുക", - "admin.registries.schema.fields.table.field": "ഫീൽഡ്", - "admin.registries.schema.fields.table.selected": "തിരഞ്ഞെടുത്ത മെറ്റാഡാറ്റ ഫീൽഡുകൾ", - "admin.registries.schema.fields.table.id": "ID", - "admin.registries.schema.fields.table.scopenote": "സ്കോപ്പ് നോട്ട്", - "admin.registries.schema.form.create": "മെറ്റാഡാറ്റ ഫീൽഡ് സൃഷ്ടിക്കുക", - "admin.registries.schema.form.edit": "മെറ്റാഡാറ്റ ഫീൽഡ് എഡിറ്റ് ചെയ്യുക", - "admin.registries.schema.form.element": "എലമെന്റ്", - "admin.registries.schema.form.qualifier": "ക്വാലിഫയർ", - "admin.registries.schema.form.scopenote": "സ്കോപ്പ് നോട്ട്", - "admin.registries.schema.head": "മെറ്റാഡാറ്റ സ്കീമ", - "admin.registries.schema.notification.created": "മെറ്റാഡാറ്റ സ്കീമ \"{{prefix}}\" വിജയകരമായി സൃഷ്ടിച്ചു", - "admin.registries.schema.notification.deleted.failure": "{{amount}} മെറ്റാഡാറ്റ സ്കീമകൾ ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", - "admin.registries.schema.notification.deleted.success": "{{amount}} മെറ്റാഡാറ്റ സ്കീമകൾ വിജയകരമായി ഇല്ലാതാക്കി", - "admin.registries.schema.notification.edited": "മെറ്റാഡാറ്റ സ്കീമ \"{{prefix}}\" വിജയകരമായി എഡിറ്റ് ചെയ്തു", - "admin.registries.schema.notification.failure": "പിശക്", - "admin.registries.schema.notification.field.created": "മെറ്റാഡാറ്റ ഫീൽഡ് \"{{field}}\" വിജയകരമായി സൃഷ്ടിച്ചു", - "admin.registries.schema.notification.field.deleted.failure": "{{amount}} മെറ്റാഡാറ്റ ഫീൽഡുകൾ ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", - "admin.registries.schema.notification.field.deleted.success": "{{amount}} മെറ്റാഡാറ്റ ഫീൽഡുകൾ വിജയകരമായി ഇല്ലാതാക്കി", - "admin.registries.schema.notification.field.edited": "മെറ്റാഡാറ്റ ഫീൽഡ് \"{{field}}\" വിജയകരമായി എഡിറ്റ് ചെയ്തു", - "admin.registries.schema.notification.success": "വിജയം", - "admin.registries.schema.return": "തിരികെ", - "admin.registries.schema.title": "മെറ്റാഡാറ്റ സ്കീമ രജിസ്ട്രി", - "admin.access-control.bulk-access.breadcrumbs": "ബൾക്ക് ആക്‌സസ് മാനേജ്മെന്റ്", - "administrativeBulkAccess.search.results.head": "തിരയൽ ഫലങ്ങൾ", - "admin.access-control.bulk-access": "ബൾക്ക് ആക്‌സസ് മാനേജ്മെന്റ്", - "admin.access-control.bulk-access.title": "ബൾക്ക് ആക്‌സസ് മാനേജ്മെന്റ്", - "admin.access-control.bulk-access-browse.header": "ഘട്ടം 1: ഒബ്ജക്റ്റുകൾ തിരഞ്ഞെടുക്കുക", - "admin.access-control.bulk-access-browse.search.header": "തിരയുക", - "admin.access-control.bulk-access-browse.selected.header": "നിലവിലെ തിരഞ്ഞെടുപ്പ്({{number}})", - "admin.access-control.bulk-access-settings.header": "ഘട്ടം 2: നടത്തേണ്ട ഓപ്പറേഷൻ", - "admin.access-control.epeople.actions.delete": "EPerson ഇല്ലാതാക്കുക", - "admin.access-control.epeople.actions.impersonate": "EPerson ആയി പ്രവർത്തിക്കുക", - "admin.access-control.epeople.actions.reset": "പാസ്‌വേഡ് റീസെറ്റ് ചെയ്യുക", - "admin.access-control.epeople.actions.stop-impersonating": "EPerson ആയി പ്രവർത്തിക്കുന്നത് നിർത്തുക", - "admin.access-control.epeople.breadcrumbs": "EPeople", - "admin.access-control.epeople.title": "EPeople", - "admin.access-control.epeople.edit.breadcrumbs": "പുതിയ EPerson", - "admin.access-control.epeople.edit.title": "പുതിയ EPerson", - "admin.access-control.epeople.add.breadcrumbs": "EPerson ചേർക്കുക", - "admin.access-control.epeople.add.title": "EPerson ചേർക്കുക", - "admin.access-control.epeople.head": "EPeople", - "admin.access-control.epeople.search.head": "തിരയുക", - "admin.access-control.epeople.button.see-all": "എല്ലാം ബ്രൗസ് ചെയ്യുക", - "admin.access-control.epeople.search.scope.metadata": "മെറ്റാഡാറ്റ", - "admin.access-control.epeople.search.scope.email": "ഇമെയിൽ (കൃത്യമായി)", - "admin.access-control.epeople.search.button": "തിരയുക", - "admin.access-control.epeople.search.placeholder": "ആളുകളെ തിരയുക...", - "admin.access-control.epeople.button.add": "EPerson ചേർക്കുക", - "admin.access-control.epeople.table.id": "ID", - "admin.access-control.epeople.table.name": "പേര്", - "admin.access-control.epeople.table.email": "ഇമെയിൽ (കൃത്യമായി)", - "admin.access-control.epeople.table.edit": "എഡിറ്റ്", - "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" എഡിറ്റ് ചെയ്യുക", - "admin.access-control.epeople.table.edit.buttons.edit-disabled": "ഈ ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യാൻ നിങ്ങൾക്ക് അധികാരം നൽകിയിട്ടില്ല", - "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" ഇല്ലാതാക്കുക", - "admin.access-control.epeople.no-items": "പ്രദർശിപ്പിക്കാൻ EPeople ഇല്ല.", - "admin.access-control.epeople.form.create": "EPerson സൃഷ്ടിക്കുക", - "admin.access-control.epeople.form.edit": "EPerson എഡിറ്റ് ചെയ്യുക", - "admin.access-control.epeople.form.firstName": "ആദ്യ പേര്", - "admin.access-control.epeople.form.lastName": "അവസാന പേര്", - "admin.access-control.epeople.form.email": "ഇമെയിൽ", - "admin.access-control.epeople.form.emailHint": "സാധുതയുള്ള ഇമെയിൽ വിലാസം ആയിരിക്കണം", - "admin.access-control.epeople.form.canLogIn": "ലോഗിൻ ചെയ്യാൻ കഴിയും", - "admin.access-control.epeople.form.requireCertificate": "സർട്ടിഫിക്കറ്റ് ആവശ്യമാണ്", - "admin.access-control.epeople.form.return": "തിരികെ", - "admin.access-control.epeople.form.notification.created.success": "EPerson \"{{name}}\" വിജയകരമായി സൃഷ്ടിച്ചു", - "admin.access-control.epeople.form.notification.created.failure": "EPerson \"{{name}}\" സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു", - "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson \"{{name}}\" സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു, ഇമെയിൽ \"{{email}}\" ഇതിനകം ഉപയോഗത്തിലാണ്.", - "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson \"{{name}}\" എഡിറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു, ഇമെയിൽ \"{{email}}\" ഇതിനകം ഉപയോഗത്തിലാണ്.", - "admin.access-control.epeople.form.notification.edited.success": "EPerson \"{{name}}\" വിജയകരമായി എഡിറ്റ് ചെയ്തു", - "admin.access-control.epeople.form.notification.edited.failure": "EPerson \"{{name}}\" എഡിറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു", - "admin.access-control.epeople.form.notification.deleted.success": "EPerson \"{{name}}\" വിജയകരമായി ഇല്ലാതാക്കി", - "admin.access-control.epeople.form.notification.deleted.failure": "EPerson \"{{name}}\" ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "ഈ ഗ്രൂപ്പുകളിലെ അംഗം:", - "admin.access-control.epeople.form.table.id": "ID", - "admin.access-control.epeople.form.table.name": "പേര്", - "admin.access-control.epeople.form.table.collectionOrCommunity": "കളക്ഷൻ/കമ്മ്യൂണിറ്റി", - "admin.access-control.epeople.form.memberOfNoGroups": "ഈ EPerson ഏതെങ്കിലും ഗ്രൂപ്പിലെ അംഗമല്ല", - "admin.access-control.epeople.form.goToGroups": "ഗ്രൂപ്പുകളിലേക്ക് ചേർക്കുക", - "admin.access-control.epeople.notification.deleted.failure": "id \"{{id}}\" ഉള്ള EPerson ഇല്ലാതാക്കാൻ ശ്രമിക്കുമ്പോൾ പിശക് സംഭവിച്ചു. കോഡ്: \"{{statusCode}}\", സന്ദേശം: \"{{restResponse.errorMessage}}\"", - "admin.access-control.epeople.notification.deleted.success": "EPerson: \"{{name}}\" വിജയകരമായി ഇല്ലാതാക്കി", - "admin.access-control.groups.title": "ഗ്രൂപ്പുകൾ", - "admin.access-control.groups.breadcrumbs": "ഗ്രൂപ്പുകൾ", - "admin.access-control.groups.singleGroup.breadcrumbs": "ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യുക", - "admin.access-control.groups.title.singleGroup": "ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യുക", - "admin.access-control.groups.title.addGroup": "പുതിയ ഗ്രൂപ്പ്", - "admin.access-control.groups.addGroup.breadcrumbs": "പുതിയ ഗ്രൂപ്പ്", - "admin.access-control.groups.head": "ഗ്രൂപ്പുകൾ", - "admin.access-control.groups.button.add": "ഗ്രൂപ്പ് ചേർക്കുക", - "admin.access-control.groups.search.head": "ഗ്രൂപ്പുകൾ തിരയുക", - "admin.access-control.groups.button.see-all": "എല്ലാം ബ്രൗസ് ചെയ്യുക", - "admin.access-control.groups.search.button": "തിരയുക", - "admin.access-control.groups.search.placeholder": "ഗ്രൂപ്പുകൾ തിരയുക...", - "admin.access-control.groups.table.id": "ID", - "admin.access-control.groups.table.name": "പേര്", - "admin.access-control.groups.table.collectionOrCommunity": "കളക്ഷൻ/കമ്മ്യൂണിറ്റി", - "admin.access-control.groups.table.members": "അംഗങ്ങൾ", - "admin.access-control.groups.table.edit": "എഡിറ്റ്", - "admin.access-control.groups.table.edit.buttons.edit": "\"{{name}}\" എഡിറ്റ് ചെയ്യുക", - "admin.access-control.groups.table.edit.buttons.remove": "\"{{name}}\" ഇല്ലാതാക്കുക", - "admin.access-control.groups.no-items": "ഈ പേരിൽ അല്ലെങ്കിൽ ഈ UUID ഉള്ള ഗ്രൂപ്പുകൾ കണ്ടെത്തിയില്ല", - "admin.access-control.groups.notification.deleted.success": "ഗ്രൂപ്പ് \"{{name}}\" വിജയകരമായി ഇല്ലാതാക്കി", - "admin.access-control.groups.notification.deleted.failure.title": "ഗ്രൂപ്പ് \"{{name}}\" ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", - "admin.access-control.groups.notification.deleted.failure.content": "കാരണം: \"{{cause}}\"", - "admin.access-control.groups.form.alert.permanent": "ഈ ഗ്രൂപ്പ് സ്ഥിരമാണ്, അതിനാൽ ഇത് എഡിറ്റ് ചെയ്യാനോ ഇല്ലാതാക്കാനോ കഴിയില്ല. ഈ പേജ് ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഇപ്പോഴും ഗ്രൂപ്പ് അംഗങ്ങളെ ചേർക്കാനും നീക്കംചെയ്യാനും കഴിയും.", - - "admin.access-control.groups.form.alert.workflowGroup": "സമർപ്പണ, വർക്ക്ഫ്ലോ പ്രക്രിയയിലെ ഒരു റോളുമായി യോജിക്കുന്നതിനാൽ ഈ ഗ്രൂപ്പ് പരിഷ്കരിക്കാനോ ഇല്ലാതാക്കാനോ കഴിയില്ല. \"{{name}}\" {{comcol}} ൽ. എഡിറ്റ് {{comcol}} പേജിലെ \"റോളുകൾ നിയോഗിക്കുക\" ടാബിൽ നിന്ന് നിങ്ങൾക്ക് ഇത് ഇല്ലാതാക്കാം. ഈ പേജ് ഉപയോഗിച്ച് ഗ്രൂപ്പ് അംഗങ്ങളെ ചേർക്കാനും നീക്കം ചെയ്യാനും നിങ്ങൾക്ക് കഴിയും.", - - "admin.access-control.groups.form.head.create": "ഗ്രൂപ്പ് സൃഷ്ടിക്കുക", - - "admin.access-control.groups.form.head.edit": "ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യുക", - - "admin.access-control.groups.form.groupName": "ഗ്രൂപ്പ് പേര്", - - "admin.access-control.groups.form.groupCommunity": "കമ്മ്യൂണിറ്റി അല്ലെങ്കിൽ കളക്ഷൻ", - - "admin.access-control.groups.form.groupDescription": "വിവരണം", - - "admin.access-control.groups.form.notification.created.success": "\"{{name}}\" ഗ്രൂപ്പ് വിജയകരമായി സൃഷ്ടിച്ചു", - - "admin.access-control.groups.form.notification.created.failure": "\"{{name}}\" ഗ്രൂപ്പ് സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "\"{{name}}\" എന്ന പേരിൽ ഗ്രൂപ്പ് സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു, പേര് ഇതിനകം ഉപയോഗത്തിലില്ലെന്ന് ഉറപ്പാക്കുക.", - - "admin.access-control.groups.form.notification.edited.failure": "\"{{name}}\" ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു", - - "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "\"{{name}}\" എന്ന പേര് ഇതിനകം ഉപയോഗത്തിലാണ്!", - - "admin.access-control.groups.form.notification.edited.success": "\"{{name}}\" ഗ്രൂപ്പ് വിജയകരമായി എഡിറ്റ് ചെയ്തു", - - "admin.access-control.groups.form.actions.delete": "ഗ്രൂപ്പ് ഇല്ലാതാക്കുക", - - "admin.access-control.groups.form.delete-group.modal.header": "\"{{ dsoName }}\" ഗ്രൂപ്പ് ഇല്ലാതാക്കുക", - - "admin.access-control.groups.form.delete-group.modal.info": "\"{{ dsoName }}\" ഗ്രൂപ്പ് ഇല്ലാതാക്കണമെന്ന് നിങ്ങൾക്ക് ഉറപ്പാണോ?", - - "admin.access-control.groups.form.delete-group.modal.cancel": "റദ്ദാക്കുക", - - "admin.access-control.groups.form.delete-group.modal.confirm": "ഇല്ലാതാക്കുക", - - "admin.access-control.groups.form.notification.deleted.success": "\"{{ name }}\" ഗ്രൂപ്പ് വിജയകരമായി ഇല്ലാതാക്കി", - - "admin.access-control.groups.form.notification.deleted.failure.title": "\"{{ name }}\" ഗ്രൂപ്പ് ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "admin.access-control.groups.form.notification.deleted.failure.content": "കാരണം: \"{{ cause }}\"", - - "admin.access-control.groups.form.members-list.head": "ഇ-പീപ്പിൾ", - - "admin.access-control.groups.form.members-list.search.head": "ഇ-പീപ്പിൾ ചേർക്കുക", - - "admin.access-control.groups.form.members-list.button.see-all": "എല്ലാം ബ്രൗസ് ചെയ്യുക", - - "admin.access-control.groups.form.members-list.headMembers": "നിലവിലെ അംഗങ്ങൾ", - - "admin.access-control.groups.form.members-list.search.button": "തിരയുക", - - "admin.access-control.groups.form.members-list.table.id": "ഐഡി", - - "admin.access-control.groups.form.members-list.table.name": "പേര്", - - "admin.access-control.groups.form.members-list.table.identity": "ഐഡന്റിറ്റി", - - "admin.access-control.groups.form.members-list.table.email": "ഇമെയിൽ", - - "admin.access-control.groups.form.members-list.table.netid": "നെറ്റ് ഐഡി", - - "admin.access-control.groups.form.members-list.table.edit": "നീക്കം ചെയ്യുക / ചേർക്കുക", - - "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "\"{{name}}\" എന്ന പേരുള്ള അംഗത്തെ നീക്കം ചെയ്യുക", - - "admin.access-control.groups.form.members-list.notification.success.addMember": "\"{{name}}\" അംഗത്തെ വിജയകരമായി ചേർത്തു", - - "admin.access-control.groups.form.members-list.notification.failure.addMember": "\"{{name}}\" അംഗത്തെ ചേർക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "admin.access-control.groups.form.members-list.notification.success.deleteMember": "\"{{name}}\" അംഗത്തെ വിജയകരമായി ഇല്ലാതാക്കി", - - "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "\"{{name}}\" അംഗത്തെ ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "admin.access-control.groups.form.members-list.table.edit.buttons.add": "\"{{name}}\" എന്ന പേരുള്ള അംഗത്തെ ചേർക്കുക", - - "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "നിലവിൽ സജീവമായ ഗ്രൂപ്പ് ഇല്ല, ആദ്യം ഒരു പേര് സമർപ്പിക്കുക.", - - "admin.access-control.groups.form.members-list.no-members-yet": "ഗ്രൂപ്പിൽ ഇതുവരെ അംഗങ്ങളില്ല, തിരയുക, ചേർക്കുക.", - - "admin.access-control.groups.form.members-list.no-items": "ആ തിരയലിൽ ഇ-പീപ്പിൾ കണ്ടെത്തിയില്ല", - - "admin.access-control.groups.form.subgroups-list.notification.failure": "എന്തോ തെറ്റുണ്ട്: \"{{cause}}\"", - - "admin.access-control.groups.form.subgroups-list.head": "ഗ്രൂപ്പുകൾ", - - "admin.access-control.groups.form.subgroups-list.search.head": "സബ്ഗ്രൂപ്പ് ചേർക്കുക", - - "admin.access-control.groups.form.subgroups-list.button.see-all": "എല്ലാം ബ്രൗസ് ചെയ്യുക", - - "admin.access-control.groups.form.subgroups-list.headSubgroups": "നിലവിലെ സബ്ഗ്രൂപ്പുകൾ", - - "admin.access-control.groups.form.subgroups-list.search.button": "തിരയുക", - - "admin.access-control.groups.form.subgroups-list.table.id": "ഐഡി", - - "admin.access-control.groups.form.subgroups-list.table.name": "പേര്", - - "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "കളക്ഷൻ/കമ്മ്യൂണിറ്റി", - - "admin.access-control.groups.form.subgroups-list.table.edit": "നീക്കം ചെയ്യുക / ചേർക്കുക", - - "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "\"{{name}}\" എന്ന പേരുള്ള സബ്ഗ്രൂപ്പ് നീക്കം ചെയ്യുക", - - "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "\"{{name}}\" എന്ന പേരുള്ള സബ്ഗ്രൂപ്പ് ചേർക്കുക", - - "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "\"{{name}}\" സബ്ഗ്രൂപ്പ് വിജയകരമായി ചേർത്തു", - - "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "\"{{name}}\" സബ്ഗ്രൂപ്പ് ചേർക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "\"{{name}}\" സബ്ഗ്രൂപ്പ് വിജയകരമായി ഇല്ലാതാക്കി", - - "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "\"{{name}}\" സബ്ഗ്രൂപ്പ് ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "നിലവിൽ സജീവമായ ഗ്രൂപ്പ് ഇല്ല, ആദ്യം ഒരു പേര് സമർപ്പിക്കുക.", - - "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "ഇത് നിലവിലെ ഗ്രൂപ്പാണ്, ചേർക്കാൻ കഴിയില്ല.", - - "admin.access-control.groups.form.subgroups-list.no-items": "ഈ പേരിൽ അല്ലെങ്കിൽ ഈ UUID ഉള്ള ഗ്രൂപ്പുകൾ കണ്ടെത്തിയില്ല", - - "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "ഗ്രൂപ്പിൽ ഇതുവരെ സബ്ഗ്രൂപ്പുകളില്ല.", - - "admin.access-control.groups.form.return": "തിരികെ", - - "admin.quality-assurance.breadcrumbs": "ഗുണനിലവാര ഉറപ്പ്", - - "admin.notifications.event.breadcrumbs": "ഗുണനിലവാര ഉറപ്പ് നിർദ്ദേശങ്ങൾ", - - "admin.notifications.event.page.title": "ഗുണനിലവാര ഉറപ്പ് നിർദ്ദേശങ്ങൾ", - - "admin.quality-assurance.page.title": "ഗുണനിലവാര ഉറപ്പ്", - - "admin.notifications.source.breadcrumbs": "ഗുണനിലവാര ഉറപ്പ്", - - "admin.access-control.groups.form.tooltip.editGroupPage": "ഈ പേജിൽ, നിങ്ങൾക്ക് ഒരു ഗ്രൂപ്പിന്റെ ഗുണങ്ങളും അംഗങ്ങളും പരിഷ്കരിക്കാനാകും. മുകളിലെ വിഭാഗത്തിൽ, നിങ്ങൾക്ക് ഗ്രൂപ്പ് പേരും വിവരണവും എഡിറ്റ് ചെയ്യാനാകും, ഒരു കളക്ഷൻ അല്ലെങ്കിൽ കമ്മ്യൂണിറ്റിക്കുള്ള ഒരു അഡ്മിൻ ഗ്രൂപ്പാണെങ്കിൽ ഒഴികെ, ഈ സാഹചര്യത്തിൽ ഗ്രൂപ്പ് പേരും വിവരണവും യാന്ത്രികമായി സൃഷ്ടിക്കപ്പെടുകയും എഡിറ്റ് ചെയ്യാൻ കഴിയില്ല. തുടർന്നുള്ള വിഭാഗങ്ങളിൽ, നിങ്ങൾക്ക് ഗ്രൂപ്പ് അംഗത്വം എഡിറ്റ് ചെയ്യാനാകും. കൂടുതൽ വിശദാംശങ്ങൾക്ക് [വിക്കി](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) കാണുക.", - - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "ഈ ഗ്രൂപ്പിൽ നിന്ന്/ലേക്ക് ഒരു ഇ-പേഴ്സൺ ചേർക്കാനോ നീക്കം ചെയ്യാനോ, ഒന്നുകിൽ 'എല്ലാം ബ്രൗസ് ചെയ്യുക' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക അല്ലെങ്കിൽ ഉപയോക്താക്കളെ തിരയാൻ താഴെയുള്ള സെർച്ച് ബാറ് ഉപയോഗിക്കുക (മെറ്റാഡാറ്റ അല്ലെങ്കിൽ ഇമെയിൽ വഴി തിരയാൻ സെർച്ച് ബാറിന്റെ ഇടതുവശത്തുള്ള ഡ്രോപ്പ്ഡൗൺ ഉപയോഗിക്കുക). തുടർന്ന് ചേർക്കാൻ ആഗ്രഹിക്കുന്ന ഓരോ ഉപയോക്താവിനും താഴെയുള്ള ലിസ്റ്റിൽ പ്ലസ് ഐക്കൺ ക്ലിക്ക് ചെയ്യുക, അല്ലെങ്കിൽ നീക്കം ചെയ്യാൻ ആഗ്രഹിക്കുന്ന ഓരോ ഉപയോക്താവിനും ട്രാഷ് കാൻ ഐക്കൺ ക്ലിക്ക് ചെയ്യുക. താഴെയുള്ള ലിസ്റ്റിൽ നിരവധി പേജുകൾ ഉണ്ടാകാം: അടുത്ത പേജുകളിലേക്ക് നാവിഗേറ്റ് ചെയ്യാൻ താഴെയുള്ള പേജ് നിയന്ത്രണങ്ങൾ ഉപയോഗിക്കുക.", - - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "ഈ ഗ്രൂപ്പിൽ നിന്ന്/ലേക്ക് ഒരു സബ്ഗ്രൂപ്പ് ചേർക്കാനോ നീക്കം ചെയ്യാനോ, ഒന്നുകിൽ 'എല്ലാം ബ്രൗസ് ചെയ്യുക' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക അല്ലെങ്കിൽ ഗ്രൂപ്പുകൾ തിരയാൻ താഴെയുള്ള സെർച്ച് ബാറ് ഉപയോഗിക്കുക. തുടർന്ന് ചേർക്കാൻ ആഗ്രഹിക്കുന്ന ഓരോ ഗ്രൂപ്പിനും താഴെയുള്ള ലിസ്റ്റിൽ പ്ലസ് ഐക്കൺ ക്ലിക്ക് ചെയ്യുക, അല്ലെങ്കിൽ നീക്കം ചെയ്യാൻ ആഗ്രഹിക്കുന്ന ഓരോ ഗ്രൂപ്പിനും ട്രാഷ് കാൻ ഐക്കൺ ക്ലിക്ക് ചെയ്യുക. താഴെയുള്ള ലിസ്റ്റിൽ നിരവധി പേജുകൾ ഉണ്ടാകാം: അടുത്ത പേജുകളിലേക്ക് നാവിഗേറ്റ് ചെയ്യാൻ താഴെയുള്ള പേജ് നിയന്ത്രണങ്ങൾ ഉപയോഗിക്കുക.", - - "admin.reports.collections.title": "കളക്ഷൻ ഫിൽട്ടർ റിപ്പോർട്ട്", - - "admin.reports.collections.breadcrumbs": "കളക്ഷൻ ഫിൽട്ടർ റിപ്പോർട്ട്", - - "admin.reports.collections.head": "കളക്ഷൻ ഫിൽട്ടർ റിപ്പോർട്ട്", - - "admin.reports.button.show-collections": "കളക്ഷനുകൾ കാണിക്കുക", - - "admin.reports.collections.collections-report": "കളക്ഷൻ റിപ്പോർട്ട്", - - "admin.reports.collections.item-results": "ഇനം ഫലങ്ങൾ", - - "admin.reports.collections.community": "കമ്മ്യൂണിറ്റി", - - "admin.reports.collections.collection": "കളക്ഷൻ", - - "admin.reports.collections.nb_items": "ഇനങ്ങളുടെ എണ്ണം", - - "admin.reports.collections.match_all_selected_filters": "തിരഞ്ഞെടുത്ത എല്ലാ ഫിൽട്ടറുകളുമായും പൊരുത്തപ്പെടുന്നു", - - "admin.reports.items.breadcrumbs": "മെറ്റാഡാറ്റ ക്വറി റിപ്പോർട്ട്", - - "admin.reports.items.head": "മെറ്റാഡാറ്റ ക്വറി റിപ്പോർട്ട്", - - "admin.reports.items.run": "ഇനം ക്വറി പ്രവർത്തിപ്പിക്കുക", - - "admin.reports.items.section.collectionSelector": "കളക്ഷൻ സെലക്ടർ", - - "admin.reports.items.section.metadataFieldQueries": "മെറ്റാഡാറ്റ ഫീൽഡ് ക്വറികൾ", - - "admin.reports.items.predefinedQueries": "മുൻകൂർ ക്വറികൾ", - - "admin.reports.items.section.limitPaginateQueries": "പരിധി/പേജിനേറ്റ് ക്വറികൾ", - - "admin.reports.items.limit": "പരിധി/", - - "admin.reports.items.offset": "ഓഫ്സെറ്റ്", - - "admin.reports.items.wholeRepo": "മുഴുവൻ റെപ്പോസിറ്ററി", - - "admin.reports.items.anyField": "ഏതെങ്കിലും ഫീൽഡ്", - - "admin.reports.items.predicate.exists": "നിലവിലുണ്ട്", - - "admin.reports.items.predicate.doesNotExist": "നിലവിലില്ല", - - "admin.reports.items.predicate.equals": "സമം", - - "admin.reports.items.predicate.doesNotEqual": "സമമല്ല", - - "admin.reports.items.predicate.like": "പോലെ", - - "admin.reports.items.predicate.notLike": "പോലെയല്ല", - - "admin.reports.items.predicate.contains": "ഉൾക്കൊള്ളുന്നു", - - "admin.reports.items.predicate.doesNotContain": "ഉൾക്കൊള്ളുന്നില്ല", - - "admin.reports.items.predicate.matches": "പൊരുത്തപ്പെടുന്നു", - - "admin.reports.items.predicate.doesNotMatch": "പൊരുത്തപ്പെടുന്നില്ല", - - "admin.reports.items.preset.new": "പുതിയ ക്വറി", - - "admin.reports.items.preset.hasNoTitle": "തലക്കെട്ട് ഇല്ല", - - "admin.reports.items.preset.hasNoIdentifierUri": "dc.identifier.uri ഇല്ല", - - "admin.reports.items.preset.hasCompoundSubject": "സംയുക്ത വിഷയം ഉണ്ട്", - - "admin.reports.items.preset.hasCompoundAuthor": "സംയുക്ത dc.contributor.author ഉണ്ട്", - - "admin.reports.items.preset.hasCompoundCreator": "സംയുക്ത dc.creator ഉണ്ട്", - - "admin.reports.items.preset.hasUrlInDescription": "dc.description-ൽ URL ഉണ്ട്", - - "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance-ൽ പൂർണ്ണ വാചകം ഉണ്ട്", - - "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance-ൽ പൂർണ്ണ വാചകമല്ലാത്തത് ഉണ്ട്", - - "admin.reports.items.preset.hasEmptyMetadata": "ശൂന്യമായ മെറ്റാഡാറ്റ ഉണ്ട്", - - "admin.reports.items.preset.hasUnbreakingDataInDescription": "വിവരണത്തിൽ അണ്ടർബ്രേക്കിംഗ് ഡാറ്റ ഉണ്ട്", - - "admin.reports.items.preset.hasXmlEntityInMetadata": "മെറ്റാഡാറ്റയിൽ XML എന്റിറ്റി ഉണ്ട്", - - "admin.reports.items.preset.hasNonAsciiCharInMetadata": "മെറ്റാഡാറ്റയിൽ നോൺ-ആസ്കി ചാര് ഉണ്ട്", - - "admin.reports.items.number": "നമ്പർ.", - - "admin.reports.items.id": "UUID", - - "admin.reports.items.collection": "കളക്ഷൻ", - - "admin.reports.items.handle": "URI", - - "admin.reports.items.title": "തലക്കെട്ട്", - - "admin.reports.commons.filters": "ഫിൽട്ടറുകൾ", - - "admin.reports.commons.additional-data": "തിരികെ നൽകേണ്ട അധിക ഡാറ്റ", - - "admin.reports.commons.previous-page": "മുമ്പത്തെ പേജ്", - - "admin.reports.commons.next-page": "അടുത്ത പേജ്", - - "admin.reports.commons.page": "പേജ്", - - "admin.reports.commons.of": "ന്റെ", - - "admin.reports.commons.export": "മെറ്റാഡാറ്റ അപ്ഡേറ്റിനായി എക്സ്പോർട്ട് ചെയ്യുക", - - "admin.reports.commons.filters.deselect_all": "എല്ലാ ഫിൽട്ടറുകളും നിർവചിക്കുക", - - "admin.reports.commons.filters.select_all": "എല്ലാ ഫിൽട്ടറുകളും തിരഞ്ഞെടുക്കുക", - - "admin.reports.commons.filters.matches_all": "സ്പെസിഫൈഡ് എല്ലാ ഫിൽട്ടറുകളുമായും പൊരുത്തപ്പെടുന്നു", - - "admin.reports.commons.filters.property": "ഇനം പ്രോപ്പർട്ടി ഫിൽട്ടറുകൾ", - - "admin.reports.commons.filters.property.is_item": "ഇനം - എല്ലായ്പ്പോഴും ശരി", - - "admin.reports.commons.filters.property.is_withdrawn": "വിത്ഡ്രോൺ ചെയ്ത ഇനങ്ങൾ", - - "admin.reports.commons.filters.property.is_not_withdrawn": "ലഭ്യമായ ഇനങ്ങൾ - വിത്ഡ്രോൺ ചെയ്തിട്ടില്ല", - - "admin.reports.commons.filters.property.is_discoverable": "ഡിസ്കവർ ചെയ്യാവുന്ന ഇനങ്ങൾ - സ്വകാര്യമല്ല", - - "admin.reports.commons.filters.property.is_not_discoverable": "ഡിസ്കവർ ചെയ്യാനാവാത്തത് - സ്വകാര്യ ഇനം", - - "admin.reports.commons.filters.bitstream": "ബേസിക് ബിറ്റ്സ്ട്രീം ഫിൽട്ടറുകൾ", - - "admin.reports.commons.filters.bitstream.has_multiple_originals": "ഇനത്തിന് ഒന്നിലധികം ഒറിജിനൽ ബിറ്റ്സ്ട്രീമുകൾ ഉണ്ട്", - - "admin.reports.commons.filters.bitstream.has_no_originals": "ഇനത്തിന് ഒറിജിനൽ ബിറ്റ്സ്ട്രീമുകൾ ഇല്ല", - - "admin.reports.commons.filters.bitstream.has_one_original": "ഇനത്തിന് ഒരു ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "admin.reports.commons.filters.bitstream_mime": "MIME തരം അനുസരിച്ച് ബിറ്റ്സ്ട്രീം ഫിൽട്ടറുകൾ", - - "admin.reports.commons.filters.bitstream_mime.has_doc_original": "ഇനത്തിന് ഒരു ഡോക്യുമെന്റ് ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട് (PDF, ഓഫീസ്, ടെക്സ്റ്റ്, HTML, XML, മുതലായവ)", - - "admin.reports.commons.filters.bitstream_mime.has_image_original": "ഇനത്തിന് ഒരു ഇമേജ് ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "മറ്റ് ബിറ്റ്സ്ട്രീം തരങ്ങൾ ഉണ്ട് (ഡോക്യുമെന്റ് അല്ലെങ്കിൽ ഇമേജ് അല്ല)", - - "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "ഇനത്തിന് ഒന്നിലധികം തരം ഒറിജിനൽ ബിറ്റ്സ്ട്രീമുകൾ ഉണ്ട് (ഡോക്യുമെന്റ്, ഇമേജ്, മറ്റുള്ളവ)", - - "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "ഇനത്തിന് ഒരു PDF ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "ഇനത്തിന് JPG ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "അസാധാരണമായ ചെറിയ PDF ഉണ്ട്", - - "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "അസാധാരണമായ വലിയ PDF ഉണ്ട്", - - "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "ടെക്സ്റ്റ് ഇനമില്ലാത്ത ഡോക്യുമെന്റ് ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "admin.reports.commons.filters.mime": "സപ്പോർട്ട് ചെയ്യുന്ന MIME തരം ഫിൽട്ടറുകൾ", - - "admin.reports.commons.filters.mime.has_only_supp_image_type": "ഇനം ഇമേജ് ബിറ്റ്സ്ട്രീമുകൾ സപ്പോർട്ട് ചെയ്യുന്നു", - - "admin.reports.commons.filters.mime.has_unsupp_image_type": "ഇനത്തിന് സപ്പോർട്ട് ചെയ്യാത്ത ഇമേജ് ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "admin.reports.commons.filters.mime.has_only_supp_doc_type": "ഇനം ഡോക്യുമെന്റ് ബിറ്റ്സ്ട്രീമുകൾ സപ്പോർട്ട് ചെയ്യുന്നു", - - "admin.reports.commons.filters.mime.has_unsupp_doc_type": "ഇനത്തിന് സപ്പോർട്ട് ചെയ്യാത്ത ഡോക്യുമെന്റ് ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "admin.reports.commons.filters.bundle": "ബിറ്റ്സ്ട്രീം ബണ്ടിൽ ഫിൽട്ടറുകൾ", - - "admin.reports.commons.filters.bundle.has_unsupported_bundle": "സപ്പോർട്ട് ചെയ്യാത്ത ബണ്ടിലിൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "admin.reports.commons.filters.bundle.has_small_thumbnail": "അസാധാരണമായ ചെറിയ തംബ്നെയിൽ ഉണ്ട്", - - "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "തംബ്നെയിൽ ഇല്ലാത്ത ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "അസാധുവായ തംബ്നെയിൽ പേര് ഉണ്ട് (ഓരോ ഒറിജിനലിനും ഒരു തംബ്നെയിൽ ഉണ്ടെന്ന് അനുമാനിക്കുന്നു)", - - "admin.reports.commons.filters.bundle.has_non_generated_thumb": "ജനറേറ്റ് ചെയ്യാത്ത തംബ്നെയിൽ ഉണ്ട്", - - "admin.reports.commons.filters.bundle.no_license": "ലൈസൻസ് ഇല്ല", - - "admin.reports.commons.filters.bundle.has_license_documentation": "ലൈസൻസ് ബണ്ടിലിൽ ഡോക്യുമെന്റേഷൻ ഉണ്ട്", - - "admin.reports.commons.filters.permission": "പെർമിഷൻ ഫിൽട്ടറുകൾ", - - "admin.reports.commons.filters.permission.has_restricted_original": "ഇനത്തിന് റിസ്ട്രിക്റ്റഡ് ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "അനോണിമസ് ഉപയോക്താവിന് ആക്സസ് ചെയ്യാൻ കഴിയാത്ത ഒരു ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഇനത്തിന് ഉണ്ട്", - - "admin.reports.commons.filters.permission.has_restricted_thumbnail": "ഇനത്തിന് റിസ്ട്രിക്റ്റഡ് തംബ്നെയിൽ ഉണ്ട്", - - "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "അനോണിമസ് ഉപയോക്താവിന് ആക്സസ് ചെയ്യാൻ കഴിയാത്ത ഒരു തംബ്നെയിൽ ഇനത്തിന് ഉണ്ട്", - - "admin.reports.commons.filters.permission.has_restricted_metadata": "ഇനത്തിൽ നിയന്ത്രിത മെറ്റാഡാറ്റ ഉണ്ട്", - - "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "അജ്ഞാത ഉപയോക്താവിന് ലഭ്യമല്ലാത്ത മെറ്റാഡാറ്റ ഇനത്തിൽ ഉണ്ട്", - - "admin.search.breadcrumbs": "അഡ്മിൻ തിരയൽ", - - "admin.search.collection.edit": "എഡിറ്റ് ചെയ്യുക", - - "admin.search.community.edit": "എഡിറ്റ് ചെയ്യുക", - - "admin.search.item.delete": "ഇല്ലാതാക്കുക", - - "admin.search.item.edit": "എഡിറ്റ് ചെയ്യുക", - - "admin.search.item.make-private": "കണ്ടെത്താൻ സാധ്യമല്ലാത്തതാക്കുക", - - "admin.search.item.make-public": "കണ്ടെത്താൻ സാധ്യമാക്കുക", - - "admin.search.item.move": "സ്ഥലം മാറ്റുക", - - "admin.search.item.reinstate": "പുനഃസ്ഥാപിക്കുക", - - "admin.search.item.withdraw": "പിൻവലിക്കുക", - - "admin.search.title": "അഡ്മിൻ തിരയൽ", - - "administrativeView.search.results.head": "അഡ്മിൻ തിരയൽ", - - "admin.workflow.breadcrumbs": "വർക്ക്ഫ്ലോ അഡ്മിനിസ്റ്റർ ചെയ്യുക", - - "admin.workflow.title": "വർക്ക്ഫ്ലോ അഡ്മിനിസ്റ്റർ ചെയ്യുക", - - "admin.workflow.item.workflow": "വർക്ക്ഫ്ലോ", - - "admin.workflow.item.workspace": "വർക്ക്സ്പേസ്", - - "admin.workflow.item.delete": "ഇല്ലാതാക്കുക", - - "admin.workflow.item.send-back": "തിരികെ അയയ്ക്കുക", - - "admin.workflow.item.policies": "പോളിസികൾ", - - "admin.workflow.item.supervision": "സൂപ്പർവിഷൻ", - - "admin.metadata-import.breadcrumbs": "മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", - - "admin.batch-import.breadcrumbs": "ബാച്ച് ഇറക്കുമതി ചെയ്യുക", - - "admin.metadata-import.title": "മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", - - "admin.batch-import.title": "ബാച്ച് ഇറക്കുമതി ചെയ്യുക", - - "admin.metadata-import.page.header": "മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", - - "admin.batch-import.page.header": "ബാച്ച് ഇറക്കുമതി ചെയ്യുക", - - "admin.metadata-import.page.help": "ഫയലുകളിൽ ബാച്ച് മെറ്റാഡാറ്റ പ്രവർത്തനങ്ങൾ അടങ്ങിയ CSV ഫയലുകൾ ഇവിടെ ഡ്രോപ്പ് ചെയ്യാം അല്ലെങ്കിൽ ബ്രൗസ് ചെയ്യാം", - - "admin.batch-import.page.help": "ഇറക്കുമതി ചെയ്യാൻ ഒരു കളക്ഷൻ തിരഞ്ഞെടുക്കുക. തുടർന്ന്, ഇറക്കുമതി ചെയ്യാൻ ഇനങ്ങൾ ഉൾപ്പെടുത്തിയ ഒരു സിംപിൾ ആർക്കൈവ് ഫോർമാറ്റ് (SAF) zip ഫയൽ ഡ്രോപ്പ് ചെയ്യുക അല്ലെങ്കിൽ ബ്രൗസ് ചെയ്യുക", - - "admin.batch-import.page.toggle.help": "ഫയൽ അപ്ലോഡ് അല്ലെങ്കിൽ URL വഴി ഇറക്കുമതി ചെയ്യാൻ സാധ്യമാണ്, ഇൻപുട്ട് സോഴ്സ് സജ്ജമാക്കാൻ മുകളിലെ ടോഗിൾ ഉപയോഗിക്കുക", - - "admin.metadata-import.page.dropMsg": "ഇറക്കുമതി ചെയ്യാൻ ഒരു മെറ്റാഡാറ്റ CSV ഡ്രോപ്പ് ചെയ്യുക", - - "admin.batch-import.page.dropMsg": "ഇറക്കുമതി ചെയ്യാൻ ഒരു ബാച്ച് ZIP ഡ്രോപ്പ് ചെയ്യുക", - - "admin.metadata-import.page.dropMsgReplace": "ഇറക്കുമതി ചെയ്യാൻ മെറ്റാഡാറ്റ CSV മാറ്റിസ്ഥാപിക്കാൻ ഡ്രോപ്പ് ചെയ്യുക", - - "admin.batch-import.page.dropMsgReplace": "ഇറക്കുമതി ചെയ്യാൻ ബാച്ച് ZIP മാറ്റിസ്ഥാപിക്കാൻ ഡ്രോപ്പ് ചെയ്യുക", - - "admin.metadata-import.page.button.return": "തിരികെ", - - "admin.metadata-import.page.button.proceed": "തുടരുക", - - "admin.metadata-import.page.button.select-collection": "കളക്ഷൻ തിരഞ്ഞെടുക്കുക", - - "admin.metadata-import.page.error.addFile": "ആദ്യം ഫയൽ തിരഞ്ഞെടുക്കുക!", - - "admin.metadata-import.page.error.addFileUrl": "ആദ്യം ഫയൽ URL നൽകുക!", - - "admin.batch-import.page.error.addFile": "ആദ്യം ZIP ഫയൽ തിരഞ്ഞെടുക്കുക!", - - "admin.metadata-import.page.toggle.upload": "അപ്ലോഡ്", - - "admin.metadata-import.page.toggle.url": "URL", - - "admin.metadata-import.page.urlMsg": "ഇറക്കുമതി ചെയ്യാൻ ബാച്ച് ZIP url നൽകുക", - - "admin.metadata-import.page.validateOnly": "സാധുത പരിശോധിക്കുക മാത്രം", - - "admin.metadata-import.page.validateOnly.hint": "തിരഞ്ഞെടുത്താൽ, അപ്ലോഡ് ചെയ്ത CSV സാധുത പരിശോധിക്കും. നിങ്ങൾക്ക് കണ്ടെത്തിയ മാറ്റങ്ങളുടെ ഒരു റിപ്പോർട്ട് ലഭിക്കും, പക്ഷേ മാറ്റങ്ങൾ സേവ് ചെയ്യില്ല.", - - "advanced-workflow-action.rating.form.rating.label": "റേറ്റിംഗ്", - - "advanced-workflow-action.rating.form.rating.error": "നിങ്ങൾ ഇനത്തെ റേറ്റ് ചെയ്യണം", - - "advanced-workflow-action.rating.form.review.label": "റിവ്യൂ", - - "advanced-workflow-action.rating.form.review.error": "ഈ റേറ്റിംഗ് സബ്മിറ്റ് ചെയ്യാൻ നിങ്ങൾ ഒരു റിവ്യൂ നൽകണം", - - "advanced-workflow-action.rating.description": "ചുവടെ നിന്ന് ഒരു റേറ്റിംഗ് തിരഞ്ഞെടുക്കുക", - - "advanced-workflow-action.rating.description-requiredDescription": "ചുവടെ നിന്ന് ഒരു റേറ്റിംഗ് തിരഞ്ഞെടുക്കുക, ഒപ്പം ഒരു റിവ്യൂ ചേർക്കുക", - - "advanced-workflow-action.select-reviewer.description-single": "സബ്മിറ്റ് ചെയ്യുന്നതിന് മുമ്പ് ചുവടെ നിന്ന് ഒരു റിവ്യൂവർ തിരഞ്ഞെടുക്കുക", - - "advanced-workflow-action.select-reviewer.description-multiple": "സബ്മിറ്റ് ചെയ്യുന്നതിന് മുമ്പ് ചുവടെ നിന്ന് ഒന്നോ അതിലധികമോ റിവ്യൂവർമാരെ തിരഞ്ഞെടുക്കുക", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "ഇ-പീപ്പിൾ", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "ഇ-പീപ്പിൾ ചേർക്കുക", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "എല്ലാം ബ്രൗസ് ചെയ്യുക", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "നിലവിലെ അംഗങ്ങൾ", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "തിരയുക", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ഐഡി", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "പേര്", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ഐഡന്റിറ്റി", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ഇമെയിൽ", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "നെറ്റ് ഐഡി", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "നീക്കം ചെയ്യുക / ചേർക്കുക", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "\"{{name}}\" എന്ന പേരുള്ള അംഗത്തെ നീക്കം ചെയ്യുക", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "\"{{name}}\" എന്ന അംഗത്തെ വിജയകരമായി ചേർത്തു", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "\"{{name}}\" എന്ന അംഗത്തെ ചേർക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "\"{{name}}\" എന്ന അംഗത്തെ വിജയകരമായി ഇല്ലാതാക്കി", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "\"{{name}}\" എന്ന അംഗത്തെ ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "\"{{name}}\" എന്ന പേരുള്ള അംഗത്തെ ചേർക്കുക", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "നിലവിൽ ഒരു സജീവ ഗ്രൂപ്പും ഇല്ല, ആദ്യം ഒരു പേര് സബ്മിറ്റ് ചെയ്യുക.", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "ഗ്രൂപ്പിൽ ഇതുവരെ അംഗങ്ങളില്ല, തിരയുകയും ചേർക്കുകയും ചെയ്യുക.", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "ആ തിരയലിൽ ഇ-പീപ്പിൾ കണ്ടെത്തിയില്ല", - - "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "റിവ്യൂവർ തിരഞ്ഞെടുത്തിട്ടില്ല.", - - "admin.batch-import.page.validateOnly.hint": "തിരഞ്ഞെടുത്താൽ, അപ്ലോഡ് ചെയ്ത ZIP സാധുത പരിശോധിക്കും. നിങ്ങൾക്ക് കണ്ടെത്തിയ മാറ്റങ്ങളുടെ ഒരു റിപ്പോർട്ട് ലഭിക്കും, പക്ഷേ മാറ്റങ്ങൾ സേവ് ചെയ്യില്ല.", - - "admin.batch-import.page.remove": "നീക്കം ചെയ്യുക", - - "auth.errors.invalid-user": "അസാധുവായ ഇമെയിൽ വിലാസം അല്ലെങ്കിൽ പാസ്വേഡ്.", - - "auth.messages.expired": "നിങ്ങളുടെ സെഷൻ കാലഹരണപ്പെട്ടിരിക്കുന്നു. ദയവായി വീണ്ടും ലോഗിൻ ചെയ്യുക.", - - "auth.messages.token-refresh-failed": "നിങ്ങളുടെ സെഷൻ ടോക്കൻ റിഫ്രഷ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. ദയവായി വീണ്ടും ലോഗിൻ ചെയ്യുക.", - - "bitstream.download.page": "ഇപ്പോൾ {{bitstream}} ഡൗൺലോഡ് ചെയ്യുന്നു...", - - "bitstream.download.page.back": "തിരികെ", - - "bitstream.edit.authorizations.link": "ബിറ്റ്സ്ട്രീമിന്റെ പോളിസികൾ എഡിറ്റ് ചെയ്യുക", - - "bitstream.edit.authorizations.title": "ബിറ്റ്സ്ട്രീമിന്റെ പോളിസികൾ എഡിറ്റ് ചെയ്യുക", - - "bitstream.edit.return": "തിരികെ", - - "bitstream.edit.bitstream": "ബിറ്റ്സ്ട്രീം: ", - - "bitstream.edit.form.description.hint": "ഓപ്ഷണലായി, ഫയലിന്റെ ഒരു ഹ്രസ്വ വിവരണം നൽകുക, ഉദാഹരണത്തിന് \"പ്രധാന ലേഖനം\" അല്ലെങ്കിൽ \"പരീക്ഷണ ഡാറ്റ വായനകൾ\".", - - "bitstream.edit.form.description.label": "വിവരണം", - - "bitstream.edit.form.embargo.hint": "ആക്സസ് അനുവദിക്കുന്ന ആദ്യ ദിവസം. ഈ തീയതി ഈ ഫോമിൽ മാറ്റാൻ കഴിയില്ല. ഒരു ബിറ്റ്സ്ട്രീമിന് ഒരു എംബാർഗോ തീയതി സജ്ജമാക്കാൻ, ഇനം സ്റ്റാറ്റസ് ടാബിൽ പോയി, Authorizations... ക്ലിക്ക് ചെയ്യുക, ബിറ്റ്സ്ട്രീമിന്റെ READ പോളിസി സൃഷ്ടിക്കുക അല്ലെങ്കിൽ എഡിറ്റ് ചെയ്യുക, ആവശ്യമുള്ളതുപോലെ Start Date സജ്ജമാക്കുക.", - - "bitstream.edit.form.embargo.label": "നിർദ്ദിഷ്ട തീയതി വരെ എംബാർഗോ", - - "bitstream.edit.form.fileName.hint": "ബിറ്റ്സ്ട്രീമിനായി ഫയൽനാമം മാറ്റുക. ഇത് ഡിസ്പ്ലേ ബിറ്റ്സ്ട്രീം URL മാറ്റുമെന്നത് ശ്രദ്ധിക്കുക, പക്ഷേ പഴയ ലിങ്കുകൾ സീക്വൻസ് ഐഡി മാറാത്തിടത്തോളം ഇപ്പോഴും പരിഹരിക്കും.", - - "bitstream.edit.form.fileName.label": "ഫയൽനാമം", - - "bitstream.edit.form.newFormat.label": "പുതിയ ഫോർമാറ്റ് വിവരിക്കുക", - - "bitstream.edit.form.newFormat.hint": "ഫയൽ സൃഷ്ടിക്കാൻ നിങ്ങൾ ഉപയോഗിച്ച അപ്ലിക്കേഷൻ, വേർഷൻ നമ്പർ (ഉദാഹരണത്തിന്, \"ACMESoft SuperApp version 1.5\").", - - "bitstream.edit.form.primaryBitstream.label": "പ്രാഥമിക ഫയൽ", - - "bitstream.edit.form.selectedFormat.hint": "ഫോർമാറ്റ് മുകളിലെ ലിസ്റ്റിൽ ഇല്ലെങ്കിൽ, മുകളിൽ \"format not in list\" തിരഞ്ഞെടുക്കുക \"Describe new format\" കീഴിൽ അത് വിവരിക്കുക.", - - "bitstream.edit.form.selectedFormat.label": "തിരഞ്ഞെടുത്ത ഫോർമാറ്റ്", - - "bitstream.edit.form.selectedFormat.unknown": "ഫോർമാറ്റ് ലിസ്റ്റിൽ ഇല്ല", - - "bitstream.edit.notifications.error.format.title": "ബിറ്റ്സ്ട്രീമിന്റെ ഫോർമാറ്റ് സേവ് ചെയ്യുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", - - "bitstream.edit.notifications.error.primaryBitstream.title": "പ്രാഥമിക ബിറ്റ്സ്ട്രീം സേവ് ചെയ്യുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", - - "bitstream.edit.form.iiifLabel.label": "IIIF ലേബൽ", - - "bitstream.edit.form.iiifLabel.hint": "ഈ ഇമേജിനുള്ള കാൻവാസ് ലേബൽ. നൽകിയിട്ടില്ലെങ്കിൽ ഡിഫോൾട്ട് ലേബൽ ഉപയോഗിക്കും.", - - "bitstream.edit.form.iiifToc.label": "IIIF ഉള്ളടക്ക പട്ടിക", - - "bitstream.edit.form.iiifToc.hint": "ഇവിടെ ടെക്സ്റ്റ് ചേർക്കുന്നത് ഒരു പുതിയ ഉള്ളടക്ക പട്ടിക റേഞ്ചിന്റെ ആരംഭമാണ്.", - - "bitstream.edit.form.iiifWidth.label": "IIIF കാൻവാസ് വീതി", - - "bitstream.edit.form.iiifWidth.hint": "കാൻവാസ് വീതി സാധാരണയായി ഇമേജ് വീതിയുമായി പൊരുത്തപ്പെടണം.", - - "bitstream.edit.form.iiifHeight.label": "IIIF കാൻവാസ് ഉയരം", - - "bitstream.edit.form.iiifHeight.hint": "കാൻവാസ് ഉയരം സാധാരണയായി ഇമേജ് ഉയരത്തിന് പൊരുത്തപ്പെടണം.", - - "bitstream.edit.notifications.saved.content": "ഈ ബിറ്റ്സ്ട്രീമിലെ നിങ്ങളുടെ മാറ്റങ്ങൾ സേവ് ചെയ്തു.", - - "bitstream.edit.notifications.saved.title": "ബിറ്റ്സ്ട്രീം സേവ് ചെയ്തു", - - "bitstream.edit.title": "ബിറ്റ്സ്ട്രീം എഡിറ്റ് ചെയ്യുക", - - "bitstream-request-a-copy.alert.canDownload1": "ഈ ഫയലിലേക്ക് നിങ്ങൾക്ക് ഇതിനകം ആക്സസ് ഉണ്ട്. ഫയൽ ഡൗൺലോഡ് ചെയ്യാൻ ആഗ്രഹിക്കുന്നുവെങ്കിൽ ക്ലിക്ക് ചെയ്യുക ", - - "bitstream-request-a-copy.alert.canDownload2": "ഇവിടെ", - - "bitstream-request-a-copy.header": "ഫയലിന്റെ ഒരു പകർപ്പ് അഭ്യർത്ഥിക്കുക", - - "bitstream-request-a-copy.intro": "ഇനിപ്പറയുന്ന ഇനത്തിനായി ഒരു പകർപ്പ് അഭ്യർത്ഥിക്കാൻ ഇനിപ്പറയുന്ന വിവരങ്ങൾ നൽകുക: ", - - "bitstream-request-a-copy.intro.bitstream.one": "ഇനിപ്പറയുന്ന ഫയൽ അഭ്യർത്ഥിക്കുന്നു: ", - - "bitstream-request-a-copy.intro.bitstream.all": "എല്ലാ ഫയലുകളും അഭ്യർത്ഥിക്കുന്നു. ", - - "bitstream-request-a-copy.name.label": "പേര് *", - - "bitstream-request-a-copy.name.error": "പേര് ആവശ്യമാണ്", - - "bitstream-request-a-copy.email.label": "നിങ്ങളുടെ ഇമെയിൽ വിലാസം *", - - "bitstream-request-a-copy.email.hint": "ഫയൽ അയയ്ക്കാൻ ഈ ഇമെയിൽ വിലാസം ഉപയോഗിക്കുന്നു.", - - "bitstream-request-a-copy.email.error": "ദയവായി ഒരു സാധുവായ ഇമെയിൽ വിലാസം നൽകുക.", - - "bitstream-request-a-copy.allfiles.label": "ഫയലുകൾ", - - "bitstream-request-a-copy.files-all-false.label": "അഭ്യർത്ഥിച്ച ഫയൽ മാത്രം", - - "bitstream-request-a-copy.files-all-true.label": "പ്രതിബന്ധിത ആക്സസിലുള്ള എല്ലാ ഫയലുകളും (ഈ ഇനത്തിന്റെ)", - - "bitstream-request-a-copy.message.label": "സന്ദേശം", - - "bitstream-request-a-copy.return": "തിരികെ", - - "bitstream-request-a-copy.submit": "പകർപ്പ് അഭ്യർത്ഥിക്കുക", - - "bitstream-request-a-copy.submit.success": "ഇനം അഭ്യർത്ഥന വിജയകരമായി സബ്മിറ്റ് ചെയ്തു.", - - "bitstream-request-a-copy.submit.error": "ഇനം അഭ്യർത്ഥന സബ്മിറ്റ് ചെയ്യുന്നതിൽ എന്തോ തെറ്റുണ്ടായി.", - - "bitstream-request-a-copy.access-by-token.warning": "ലേഖകൻ അല്ലെങ്കിൽ റിപ്പോസിറ്ററി സ്റ്റാഫ് നിങ്ങൾക്ക് നൽകിയ സുരക്ഷിത ആക്സസ് ലിങ്ക് ഉപയോഗിച്ചാണ് നിങ്ങൾ ഈ ഇനം കാണുന്നത്. അനധികൃത ഉപയോക്താക്കൾക്ക് ഈ ലിങ്ക് പങ്കിടാതിരിക്കേണ്ടത് പ്രധാനമാണ്.", - - "bitstream-request-a-copy.access-by-token.expiry-label": "ഈ ലിങ്ക് വഴി നൽകിയ ആക്സസ് കാലഹരണപ്പെടുന്നത്", - - "bitstream-request-a-copy.access-by-token.expired": "ഈ ലിങ്ക് വഴി നൽകിയ ആക്സസ് ഇനി സാധ്യമല്ല. ആക്സസ് കാലഹരണപ്പെട്ടത്", - - "bitstream-request-a-copy.access-by-token.not-granted": "ഈ ലിങ്ക് വഴി നൽകിയ ആക്സസ് സാധ്യമല്ല. ആക്സസ് നൽകിയിട്ടില്ല, അല്ലെങ്കിൽ റദ്ദാക്കിയിരിക്കുന്നു.", - - "bitstream-request-a-copy.access-by-token.re-request": "പുതിയ ആക്സസ് അഭ്യർത്ഥിക്കാൻ പ്രതിബന്ധിത ഡൗൺലോഡ് ലിങ്കുകൾ പിന്തുടരുക.", - - "bitstream-request-a-copy.access-by-token.alt-text": "ഈ ഇനത്തിലേക്കുള്ള ആക്സസ് ഒരു സുരക്ഷിത ടോക്കൺ വഴി നൽകിയിരിക്കുന്നു", - - "browse.back.all-results": "എല്ലാ ബ്രൗസ് ഫലങ്ങളും", - - "browse.comcol.by.author": "രചയിതാവ് പ്രകാരം", - - "browse.comcol.by.dateissued": "ഇഷ്യൂ തീയതി പ്രകാരം", - - "browse.comcol.by.subject": "വിഷയം പ്രകാരം", - - "browse.comcol.by.srsc": "വിഷയ വിഭാഗം പ്രകാരം", - - "browse.comcol.by.nsi": "നോർവീജിയൻ സയൻസ് ഇൻഡക്സ് പ്രകാരം", - - "browse.comcol.by.title": "ശീർഷകം പ്രകാരം", - - "browse.comcol.head": "ബ്രൗസ് ചെയ്യുക", - - "browse.empty": "കാണിക്കാൻ ഇനങ്ങളൊന്നുമില്ല.", - - "browse.metadata.author": "രചയിതാവ്", - - "browse.metadata.dateissued": "ഇഷ്യൂ തീയതി", - - "browse.metadata.subject": "വിഷയം", - - "browse.metadata.title": "ശീർഷകം", - - "browse.metadata.srsc": "വിഷയ വിഭാഗം", - - "browse.metadata.author.breadcrumbs": "രചയിതാവ് പ്രകാരം ബ്രൗസ് ചെയ്യുക", - - "browse.metadata.dateissued.breadcrumbs": "തീയതി പ്രകാരം ബ്രൗസ് ചെയ്യുക", - - "browse.metadata.subject.breadcrumbs": "വിഷയം പ്രകാരം ബ്രൗസ് ചെയ്യുക", - - "browse.metadata.srsc.breadcrumbs": "വിഷയ വിഭാഗം പ്രകാരം ബ്രൗസ് ചെയ്യുക", - - "browse.metadata.srsc.tree.description": "തിരയൽ ഫിൽട്ടറായി ചേർക്കാൻ ഒരു വിഷയം തിരഞ്ഞെടുക്കുക", - - "browse.metadata.nsi.breadcrumbs": "നോർവീജിയൻ സയൻസ് ഇൻഡക്സ് പ്രകാരം ബ്രൗസ് ചെയ്യുക", - - "browse.metadata.nsi.tree.description": "തിരയൽ ഫിൽട്ടറായി ചേർക്കാൻ ഒരു ഇൻഡക്സ് തിരഞ്ഞെടുക്കുക", - - "browse.metadata.title.breadcrumbs": "ശീർഷകം പ്രകാരം ബ്രൗസ് ചെയ്യുക", - - "browse.metadata.map": "ജിയോലൊക്കേഷൻ പ്രകാരം ബ്രൗസ് ചെയ്യുക", - - "browse.metadata.map.breadcrumbs": "ജിയോലൊക്കേഷൻ (മാപ്പ്) പ്രകാരം ബ്രൗസ് ചെയ്യുക", - - "browse.metadata.map.count.items": "ഇനങ്ങൾ", - - "pagination.next.button": "അടുത്തത്", - - "pagination.previous.button": "മുമ്പത്തേത്", - - "pagination.next.button.disabled.tooltip": "ഫലങ്ങളുടെ കൂടുതൽ പേജുകളില്ല", - - "pagination.page-number-bar": "പേജ് നാവിഗേഷനായി കൺട്രോൾ ബാർ, ഐഡി ഉള്ള ഘടകവുമായി ബന്ധപ്പെട്ടത്: ", - - "browse.startsWith": ", {{ startsWith }} ഉപയോഗിച്ച് ആരംഭിക്കുന്നു", - - "browse.startsWith.choose_start": "(ആരംഭം തിരഞ്ഞെടുക്കുക)", - - "browse.startsWith.choose_year": "(വർഷം തിരഞ്ഞെടുക്കുക)", - - "browse.startsWith.choose_year.label": "ഇഷ്യൂ വർഷം തിരഞ്ഞെടുക്കുക", - - "browse.startsWith.jump": "വർഷം അല്ലെങ്കിൽ മാസം ഉപയോഗിച്ച് ഫലങ്ങൾ ഫിൽട്ടർ ചെയ്യുക", - - "browse.startsWith.months.april": "ഏപ്രിൽ", - - "browse.startsWith.months.august": "ഓഗസ്റ്റ്", - - "browse.startsWith.months.december": "ഡിസംബർ", - - "browse.startsWith.months.february": "ഫെബ്രുവരി", - - "browse.startsWith.months.january": "ജനുവരി", - - "browse.startsWith.months.july": "ജൂലൈ", - - "browse.startsWith.months.june": "ജൂൺ", - - "browse.startsWith.months.march": "മാർച്ച്", - - "browse.startsWith.months.may": "മേയ്", - - "browse.startsWith.months.none": "(മാസം തിരഞ്ഞെടുക്കുക)", - - "browse.startsWith.months.none.label": "ഇഷ്യൂ മാസം തിരഞ്ഞെടുക്കുക", - - "browse.startsWith.months.november": "നവംബർ", - - "browse.startsWith.months.october": "ഒക്ടോബർ", - - "browse.startsWith.months.september": "സെപ്റ്റംബർ", - - "browse.startsWith.submit": "ബ്രൗസ് ചെയ്യുക", - - "browse.startsWith.type_date": "തീയതി അനുസരിച്ച് ഫിൽട്ടർ ചെയ്യുക", - - "browse.startsWith.type_date.label": "അല്ലെങ്കിൽ ഒരു തീയതി (വർഷം-മാസം) ടൈപ്പ് ചെയ്ത് ബ്രൗസ് ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", - - "browse.startsWith.type_text": "ആദ്യത്തെ കുറച്ച് അക്ഷരങ്ങൾ ടൈപ്പ് ചെയ്ത് ഫിൽട്ടർ ചെയ്യുക", - - "browse.startsWith.input": "ഫിൽട്ടർ", - - "browse.taxonomy.button": "ബ്രൗസ് ചെയ്യുക", - - "browse.title": "{{ field }}{{ startsWith }} {{ value }} ഉപയോഗിച്ച് ബ്രൗസ് ചെയ്യുന്നു", - - "browse.title.page": "{{ field }} {{ value }} ഉപയോഗിച്ച് ബ്രൗസ് ചെയ്യുന്നു", - - "search.browse.item-back": "ഫലങ്ങളിലേക്ക് തിരികെ", - - "chips.remove": "ചിപ്പ് നീക്കം ചെയ്യുക", - - "claimed-approved-search-result-list-element.title": "അംഗീകരിച്ചു", - - "claimed-declined-search-result-list-element.title": "നിരസിച്ചു, സമർപ്പകനിലേക്ക് തിരികെ അയച്ചു", - - "claimed-declined-task-search-result-list-element.title": "നിരസിച്ചു, റിവ്യൂ മാനേജറുടെ വർക്ക്ഫ്ലോയിലേക്ക് തിരികെ അയച്ചു", - - "collection.create.breadcrumbs": "കളക്ഷൻ സൃഷ്ടിക്കുക", - - "collection.browse.logo": "ഒരു കളക്ഷൻ ലോഗോയ്ക്കായി ബ്രൗസ് ചെയ്യുക", - - "collection.create.head": "ഒരു കളക്ഷൻ സൃഷ്ടിക്കുക", - - "collection.create.notifications.success": "കളക്ഷൻ വിജയകരമായി സൃഷ്ടിച്ചു", - - "collection.create.sub-head": "{{ parent }} കമ്മ്യൂണിറ്റിക്കായി ഒരു കളക്ഷൻ സൃഷ്ടിക്കുക", - - "collection.curate.header": "കളക്ഷൻ ക്യൂറേറ്റ് ചെയ്യുക: {{collection}}", - - "collection.delete.cancel": "റദ്ദാക്കുക", - - "collection.delete.confirm": "സ്ഥിരീകരിക്കുക", - - "collection.delete.processing": "ഡിലീറ്റ് ചെയ്യുന്നു", - - "collection.delete.head": "കളക്ഷൻ ഡിലീറ്റ് ചെയ്യുക", - - "collection.delete.notification.fail": "കളക്ഷൻ ഡിലീറ്റ് ചെയ്യാൻ കഴിഞ്ഞില്ല", - - "collection.delete.notification.success": "കളക്ഷൻ വിജയകരമായി ഡിലീറ്റ് ചെയ്തു", - - "collection.delete.text": "\"{{ dso }}\" കളക്ഷൻ ഡിലീറ്റ് ചെയ്യണമെന്ന് ഉറപ്പാണോ?", - - "collection.edit.delete": "ഈ കളക്ഷൻ ഡിലീറ്റ് ചെയ്യുക", - - "collection.edit.head": "കളക്ഷൻ എഡിറ്റ് ചെയ്യുക", - - "collection.edit.breadcrumbs": "കളക്ഷൻ എഡിറ്റ് ചെയ്യുക", - - "collection.edit.tabs.mapper.head": "ഇനം മാപ്പർ", - - "collection.edit.tabs.item-mapper.title": "കളക്ഷൻ എഡിറ്റ് - ഇനം മാപ്പർ", - - "collection.edit.item-mapper.cancel": "റദ്ദാക്കുക", - - "collection.edit.item-mapper.collection": "കളക്ഷൻ: \"{{name}}\"", - - "collection.edit.item-mapper.confirm": "തിരഞ്ഞെടുത്ത ഇനങ്ങൾ മാപ്പ് ചെയ്യുക", - - "collection.edit.item-mapper.description": "ഇത് ഐറ്റം മാപ്പർ ടൂൾ ആണ്, ഇത് കളക്ഷൻ അഡ്മിനിസ്ട്രേറ്റർമാർക്ക് മറ്റ് കളക്ഷനുകളിൽ നിന്ന് ഇനങ്ങൾ ഈ കളക്ഷനിലേക്ക് മാപ്പ് ചെയ്യാൻ അനുവദിക്കുന്നു. നിങ്ങൾക്ക് മറ്റ് കളക്ഷനുകളിൽ നിന്ന് ഇനങ്ങൾ തിരയാനും മാപ്പ് ചെയ്യാനും കഴിയും, അല്ലെങ്കിൽ നിലവിൽ മാപ്പ് ചെയ്ത ഇനങ്ങളുടെ ലിസ്റ്റ് ബ്രൗസ് ചെയ്യാനും കഴിയും.", - - "collection.edit.item-mapper.head": "ഇനം മാപ്പർ - മറ്റ് കളക്ഷനുകളിൽ നിന്ന് ഇനങ്ങൾ മാപ്പ് ചെയ്യുക", - - "collection.edit.item-mapper.no-search": "തിരയാൻ ഒരു ക്വറി നൽകുക", - - "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} ഇനങ്ങൾ മാപ്പ് ചെയ്യുന്നതിൽ പിശകുകൾ ഉണ്ടായി.", - - "collection.edit.item-mapper.notifications.map.error.head": "മാപ്പിംഗ് പിശകുകൾ", - - "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} ഇനങ്ങൾ വിജയകരമായി മാപ്പ് ചെയ്തു.", - - "collection.edit.item-mapper.notifications.map.success.head": "മാപ്പിംഗ് പൂർത്തിയായി", - - "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} ഇനങ്ങളുടെ മാപ്പിംഗ് നീക്കം ചെയ്യുന്നതിൽ പിശകുകൾ ഉണ്ടായി.", - - "collection.edit.item-mapper.notifications.unmap.error.head": "മാപ്പിംഗ് നീക്കം ചെയ്യുന്നതിൽ പിശകുകൾ", - - "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} ഇനങ്ങളുടെ മാപ്പിംഗ് വിജയകരമായി നീക്കം ചെയ്തു.", - - "collection.edit.item-mapper.notifications.unmap.success.head": "മാപ്പിംഗ് നീക്കം ചെയ്യൽ പൂർത്തിയായി", - - "collection.edit.item-mapper.remove": "തിരഞ്ഞെടുത്ത ഇനം മാപ്പിംഗുകൾ നീക്കം ചെയ്യുക", - - "collection.edit.item-mapper.search-form.placeholder": "ഇനങ്ങൾ തിരയുക...", - - "collection.edit.item-mapper.tabs.browse": "മാപ്പ് ചെയ്ത ഇനങ്ങൾ ബ്രൗസ് ചെയ്യുക", - - "collection.edit.item-mapper.tabs.map": "പുതിയ ഇനങ്ങൾ മാപ്പ് ചെയ്യുക", - - "collection.edit.logo.delete.title": "ലോഗോ ഡിലീറ്റ് ചെയ്യുക", - - "collection.edit.logo.delete-undo.title": "ഡിലീറ്റ് റദ്ദാക്കുക", - - "collection.edit.logo.label": "കളക്ഷൻ ലോഗോ", - - "collection.edit.logo.notifications.add.error": "കളക്ഷൻ ലോഗോ അപ്ലോഡ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. വീണ്ടും ശ്രമിക്കുന്നതിന് മുമ്പ് ഉള്ളടക്കം പരിശോധിക്കുക.", - - "collection.edit.logo.notifications.add.success": "കളക്ഷൻ ലോഗോ വിജയകരമായി അപ്ലോഡ് ചെയ്തു.", - - "collection.edit.logo.notifications.delete.success.title": "ലോഗോ ഡിലീറ്റ് ചെയ്തു", - - "collection.edit.logo.notifications.delete.success.content": "കളക്ഷന്റെ ലോഗോ വിജയകരമായി ഡിലീറ്റ് ചെയ്തു", - - "collection.edit.logo.notifications.delete.error.title": "ലോഗോ ഡിലീറ്റ് ചെയ്യുന്നതിൽ പിശക്", - - "collection.edit.logo.upload": "അപ്ലോഡ് ചെയ്യാൻ ഒരു കളക്ഷൻ ലോഗോ ഡ്രോപ്പ് ചെയ്യുക", - - "collection.edit.notifications.success": "കളക്ഷൻ വിജയകരമായി എഡിറ്റ് ചെയ്തു", - - "collection.edit.return": "തിരികെ", - - "collection.edit.tabs.access-control.head": "ആക്സസ് കൺട്രോൾ", - - "collection.edit.tabs.access-control.title": "കളക്ഷൻ എഡിറ്റ് - ആക്സസ് കൺട്രോൾ", - - "collection.edit.tabs.curate.head": "ക്യൂറേറ്റ്", - - "collection.edit.tabs.curate.title": "കളക്ഷൻ എഡിറ്റ് - ക്യൂറേറ്റ്", - - "collection.edit.tabs.authorizations.head": "അനുമതികൾ", - - "collection.edit.tabs.authorizations.title": "കളക്ഷൻ എഡിറ്റ് - അനുമതികൾ", - - "collection.edit.item.authorizations.load-bundle-button": "കൂടുതൽ ബണ്ടിലുകൾ ലോഡ് ചെയ്യുക", - - "collection.edit.item.authorizations.load-more-button": "കൂടുതൽ ലോഡ് ചെയ്യുക", - - "collection.edit.item.authorizations.show-bitstreams-button": "ബണ്ടിലിനായി ബിറ്റ്സ്ട്രീം പോളിസികൾ കാണിക്കുക", - - "collection.edit.tabs.metadata.head": "മെറ്റാഡാറ്റ എഡിറ്റ് ചെയ്യുക", - - "collection.edit.tabs.metadata.title": "കളക്ഷൻ എഡിറ്റ് - മെറ്റാഡാറ്റ", - - "collection.edit.tabs.roles.head": "റോളുകൾ നിയോഗിക്കുക", - - "collection.edit.tabs.roles.title": "കളക്ഷൻ എഡിറ്റ് - റോളുകൾ", - - "collection.edit.tabs.source.external": "ഈ കളക്ഷൻ ഒരു ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് അതിന്റെ ഉള്ളടക്കം ഹാർവെസ്റ്റ് ചെയ്യുന്നു", - - "collection.edit.tabs.source.form.errors.oaiSource.required": "ടാർഗെറ്റ് കളക്ഷന്റെ ഒരു സെറ്റ് ഐഡി നൽകണം.", - - "collection.edit.tabs.source.form.harvestType": "ഹാർവെസ്റ്റ് ചെയ്യുന്ന ഉള്ളടക്കം", - - "collection.edit.tabs.source.form.head": "ഒരു ബാഹ്യ സ്രോതസ്സ് കോൺഫിഗർ ചെയ്യുക", - - "collection.edit.tabs.source.form.metadataConfigId": "മെറ്റാഡാറ്റ ഫോർമാറ്റ്", - - "collection.edit.tabs.source.form.oaiSetId": "OAI സ്പെസിഫിക് സെറ്റ് ഐഡി", - - "collection.edit.tabs.source.form.oaiSource": "OAI പ്രൊവൈഡർ", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "മെറ്റാഡാറ്റയും ബിറ്റ്സ്ട്രീമുകളും ഹാർവെസ്റ്റ് ചെയ്യുക (ORE സപ്പോർട്ട് ആവശ്യമാണ്)", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "മെറ്റാഡാറ്റയും ബിറ്റ്സ്ട്രീമുകളിലേക്കുള്ള റഫറൻസുകളും ഹാർവെസ്റ്റ് ചെയ്യുക (ORE സപ്പോർട്ട് ആവശ്യമാണ്)", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "മെറ്റാഡാറ്റ മാത്രം ഹാർവെസ്റ്റ് ചെയ്യുക", - - "collection.edit.tabs.source.head": "ഉള്ളടക്ക സ്രോതസ്സ്", - - "collection.edit.tabs.source.notifications.discarded.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ ഉപേക്ഷിച്ചു. നിങ്ങളുടെ മാറ്റങ്ങൾ പുനഃസ്ഥാപിക്കാൻ 'അൺഡു' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", - - "collection.edit.tabs.source.notifications.discarded.title": "മാറ്റങ്ങൾ ഉപേക്ഷിച്ചു", - - "collection.edit.tabs.source.notifications.invalid.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ സേവ് ചെയ്തിട്ടില്ല. സേവ് ചെയ്യുന്നതിന് മുമ്പ് എല്ലാ ഫീൽഡുകളും സാധുതയുള്ളതാണെന്ന് ഉറപ്പാക്കുക.", - - "collection.edit.tabs.source.notifications.invalid.title": "മെറ്റാഡാറ്റ അസാധുവാണ്", - - "collection.edit.tabs.source.notifications.saved.content": "ഈ കളക്ഷന്റെ ഉള്ളടക്ക സ്രോതസ്സിലേക്കുള്ള നിങ്ങളുടെ മാറ്റങ്ങൾ സേവ് ചെയ്തു.", - - "collection.edit.tabs.source.notifications.saved.title": "ഉള്ളടക്ക സ്രോതസ്സ് സേവ് ചെയ്തു", - - "collection.edit.tabs.source.title": "കളക്ഷൻ എഡിറ്റ് - ഉള്ളടക്ക സ്രോതസ്സ്", - - "collection.edit.template.add-button": "ചേർക്കുക", - - "collection.edit.template.breadcrumbs": "ഇനം ടെംപ്ലേറ്റ്", - - "collection.edit.template.cancel": "റദ്ദാക്കുക", - - "collection.edit.template.delete-button": "ഡിലീറ്റ് ചെയ്യുക", - - "collection.edit.template.edit-button": "എഡിറ്റ് ചെയ്യുക", - - "collection.edit.template.error": "ടെംപ്ലേറ്റ് ഇനം വീണ്ടെടുക്കുന്നതിൽ ഒരു പിശക് ഉണ്ടായി", - - "collection.edit.template.head": "\"{{ collection }}\" കളക്ഷനായി ടെംപ്ലേറ്റ് ഇനം എഡിറ്റ് ചെയ്യുക", - - "collection.edit.template.label": "ടെംപ്ലേറ്റ് ഇനം", - - "collection.edit.template.loading": "ടെംപ്ലേറ്റ് ഇനം ലോഡ് ചെയ്യുന്നു...", - - "collection.edit.template.notifications.delete.error": "ഇനം ടെംപ്ലേറ്റ് ഡിലീറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു", - - "collection.edit.template.notifications.delete.success": "ഇനം ടെംപ്ലേറ്റ് വിജയകരമായി ഡിലീറ്റ് ചെയ്തു", - - "collection.edit.template.title": "ടെംപ്ലേറ്റ് ഇനം എഡിറ്റ് ചെയ്യുക", - - "collection.form.abstract": "ഹ്രസ്വ വിവരണം", - - "collection.form.description": "പരിചയ വാചകം (HTML)", - - "collection.form.errors.title.required": "ദയവായി ഒരു കളക്ഷൻ പേര് നൽകുക", - - "collection.form.license": "ലൈസൻസ്", - - "collection.form.provenance": "പ്രൊവിനൻസ്", - - "collection.form.rights": "കോപ്പിറൈറ്റ് വാചകം (HTML)", - - "collection.form.tableofcontents": "വാർത്തകൾ (HTML)", - - "collection.form.title": "പേര്", - - "collection.form.entityType": "എന്റിറ്റി തരം", - - "collection.listelement.badge": "കളക്ഷൻ", - - "collection.logo": "കളക്ഷൻ ലോഗോ", - - "collection.page.browse.search.head": "തിരയുക", - - "collection.page.edit": "ഈ കളക്ഷൻ എഡിറ്റ് ചെയ്യുക", - - "collection.page.handle": "ഈ കളക്ഷനായി സ്ഥിരമായ URI", - - "collection.page.license": "ലൈസൻസ്", - - "collection.page.news": "വാർത്തകൾ", - - "collection.page.options": "ഓപ്ഷനുകൾ", - - "collection.search.breadcrumbs": "തിരയുക", - - "collection.search.results.head": "തിരയൽ ഫലങ്ങൾ", - - "collection.select.confirm": "തിരഞ്ഞെടുത്തത് സ്ഥിരീകരിക്കുക", - - "collection.select.empty": "കാണിക്കാൻ കളക്ഷനുകളൊന്നുമില്ല", - - "collection.select.table.selected": "തിരഞ്ഞെടുത്ത കളക്ഷനുകൾ", - - "collection.select.table.select": "കളക്ഷൻ തിരഞ്ഞെടുക്കുക", - - "collection.select.table.deselect": "കളക്ഷൻ അൺസെലക്ട് ചെയ്യുക", - - "collection.select.table.title": "തലക്കെട്ട്", - - "collection.source.controls.head": "ഹാർവെസ്റ്റ് നിയന്ത്രണങ്ങൾ", - - "collection.source.controls.test.submit.error": "സെറ്റിംഗുകൾ പരീക്ഷിക്കുന്നതിൽ എന്തോ പിഴവ് സംഭവിച്ചു", - - "collection.source.controls.test.failed": "സെറ്റിംഗുകൾ പരീക്ഷിക്കുന്നതിനുള്ള സ്ക്രിപ്റ്റ് പരാജയപ്പെട്ടു", - - "collection.source.controls.test.completed": "സെറ്റിംഗുകൾ പരീക്ഷിക്കുന്നതിനുള്ള സ്ക്രിപ്റ്റ് വിജയകരമായി പൂർത്തിയായി", - - "collection.source.controls.test.submit": "കോൺഫിഗറേഷൻ പരീക്ഷിക്കുക", - - "collection.source.controls.test.running": "കോൺഫിഗറേഷൻ പരീക്ഷിക്കുന്നു...", - - "collection.source.controls.import.submit.success": "ഇംപോർട്ട് വിജയകരമായി ആരംഭിച്ചു", - - "collection.source.controls.import.submit.error": "ഇംപോർട്ട് ആരംഭിക്കുന്നതിൽ എന്തോ പിഴവ് സംഭവിച്ചു", - - "collection.source.controls.import.submit": "ഇപ്പോൾ ഇംപോർട്ട് ചെയ്യുക", - - "collection.source.controls.import.running": "ഇംപോർട്ട് ചെയ്യുന്നു...", - - "collection.source.controls.import.failed": "ഇംപോർട്ട് ചെയ്യുന്നതിനിടയിൽ ഒരു പിശക് സംഭവിച്ചു", - - "collection.source.controls.import.completed": "ഇംപോർട്ട് പൂർത്തിയായി", - - "collection.source.controls.reset.submit.success": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യൽ വിജയകരമായി ആരംഭിച്ചു", - - "collection.source.controls.reset.submit.error": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യൽ ആരംഭിക്കുന്നതിൽ എന്തോ പിഴവ് സംഭവിച്ചു", - - "collection.source.controls.reset.failed": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യുന്നതിനിടയിൽ ഒരു പിശക് സംഭവിച്ചു", - - "collection.source.controls.reset.completed": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യൽ പൂർത്തിയായി", - - "collection.source.controls.reset.submit": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യുക", - - "collection.source.controls.reset.running": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യുന്നു...", - - "collection.source.controls.harvest.status": "ഹാർവെസ്റ്റ് സ്റ്റാറ്റസ്:", - - "collection.source.controls.harvest.start": "ഹാർവെസ്റ്റ് ആരംഭിക്കുന്ന സമയം:", - - "collection.source.controls.harvest.last": "അവസാനമായി ഹാർവെസ്റ്റ് ചെയ്ത സമയം:", - - "collection.source.controls.harvest.message": "ഹാർവെസ്റ്റ് വിവരം:", - - "collection.source.controls.harvest.no-information": "N/A", - - "collection.source.update.notifications.error.content": "നൽകിയ സെറ്റിംഗുകൾ പരീക്ഷിച്ചു, പക്ഷേ പ്രവർത്തിച്ചില്ല.", - - "collection.source.update.notifications.error.title": "സെർവർ പിശക്", - - "communityList.breadcrumbs": "കമ്മ്യൂണിറ്റി ലിസ്റ്റ്", - - "communityList.tabTitle": "കമ്മ്യൂണിറ്റി ലിസ്റ്റ്", - - "communityList.title": "കമ്മ്യൂണിറ്റികളുടെ ലിസ്റ്റ്", - - "communityList.showMore": "കൂടുതൽ കാണിക്കുക", - - "communityList.expand": "{{ name }} വികസിപ്പിക്കുക", - - "communityList.collapse": "{{ name }} ചുരുക്കുക", - - "community.browse.logo": "ഒരു കമ്മ്യൂണിറ്റി ലോഗോയ്ക്കായി ബ്രൗസ് ചെയ്യുക", - - "community.subcoms-cols.breadcrumbs": "സബ്കമ്മ്യൂണിറ്റികളും കളക്ഷനുകളും", - - "community.create.breadcrumbs": "കമ്മ്യൂണിറ്റി സൃഷ്ടിക്കുക", - - "community.create.head": "ഒരു കമ്മ്യൂണിറ്റി സൃഷ്ടിക്കുക", - - "community.create.notifications.success": "കമ്മ്യൂണിറ്റി വിജയകരമായി സൃഷ്ടിച്ചു", - - "community.create.sub-head": "{{ parent }} കമ്മ്യൂണിറ്റിക്കായി ഒരു സബ്-കമ്മ്യൂണിറ്റി സൃഷ്ടിക്കുക", - - "community.curate.header": "കമ്മ്യൂണിറ്റി ക്യൂറേറ്റ് ചെയ്യുക: {{community}}", - - "community.delete.cancel": "റദ്ദാക്കുക", - - "community.delete.confirm": "സ്ഥിരീകരിക്കുക", - - "community.delete.processing": "ഡിലീറ്റ് ചെയ്യുന്നു...", - - "community.delete.head": "കമ്മ്യൂണിറ്റി ഡിലീറ്റ് ചെയ്യുക", - - "community.delete.notification.fail": "കമ്മ്യൂണിറ്റി ഡിലീറ്റ് ചെയ്യാൻ കഴിഞ്ഞില്ല", - - "community.delete.notification.success": "കമ്മ്യൂണിറ്റി വിജയകരമായി ഡിലീറ്റ് ചെയ്തു", - - "community.delete.text": "\"{{ dso }}\" കമ്മ്യൂണിറ്റി ഡിലീറ്റ് ചെയ്യണമെന്ന് ഉറപ്പാണോ?", - - "community.edit.delete": "ഈ കമ്മ്യൂണിറ്റി ഡിലീറ്റ് ചെയ്യുക", - - "community.edit.head": "കമ്മ്യൂണിറ്റി എഡിറ്റ് ചെയ്യുക", - - "community.edit.breadcrumbs": "കമ്മ്യൂണിറ്റി എഡിറ്റ് ചെയ്യുക", - - "community.edit.logo.delete.title": "ലോഗോ ഡിലീറ്റ് ചെയ്യുക", - - "community-collection.edit.logo.delete.title": "ഡിലീഷൻ സ്ഥിരീകരിക്കുക", - - "community.edit.logo.delete-undo.title": "ഡിലീറ്റ് റദ്ദാക്കുക", - - "community-collection.edit.logo.delete-undo.title": "ഡിലീറ്റ് റദ്ദാക്കുക", - - "community.edit.logo.label": "കമ്മ്യൂണിറ്റി ലോഗോ", - - "community.edit.logo.notifications.add.error": "കമ്മ്യൂണിറ്റി ലോഗോ അപ്ലോഡ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. വീണ്ടും ശ്രമിക്കുന്നതിന് മുമ്പ് ഉള്ളടക്കം പരിശോധിക്കുക.", - - "community.edit.logo.notifications.add.success": "കമ്മ്യൂണിറ്റി ലോഗോ വിജയകരമായി അപ്ലോഡ് ചെയ്തു.", - - "community.edit.logo.notifications.delete.success.title": "ലോഗോ ഡിലീറ്റ് ചെയ്തു", - - "community.edit.logo.notifications.delete.success.content": "കമ്മ്യൂണിറ്റിയുടെ ലോഗോ വിജയകരമായി ഡിലീറ്റ് ചെയ്തു", - - "community.edit.logo.notifications.delete.error.title": "ലോഗോ ഡിലീറ്റ് ചെയ്യുന്നതിൽ പിശക്", - - "community.edit.logo.upload": "അപ്ലോഡ് ചെയ്യാൻ ഒരു കമ്മ്യൂണിറ്റി ലോഗോ ഡ്രോപ്പ് ചെയ്യുക", - - "community.edit.notifications.success": "കമ്മ്യൂണിറ്റി വിജയകരമായി എഡിറ്റ് ചെയ്തു", - - "community.edit.notifications.unauthorized": "ഈ മാറ്റം വരുത്താൻ നിങ്ങൾക്ക് അനുമതിയില്ല", - - "community.edit.notifications.error": "കമ്മ്യൂണിറ്റി എഡിറ്റ് ചെയ്യുന്നതിനിടയിൽ ഒരു പിശക് സംഭവിച്ചു", - - "community.edit.return": "തിരികെ", - - "community.edit.tabs.curate.head": "ക്യൂറേറ്റ്", - - "community.edit.tabs.curate.title": "കമ്മ്യൂണിറ്റി എഡിറ്റ് - ക്യൂറേറ്റ്", - - "community.edit.tabs.access-control.head": "ആക്സസ് കൺട്രോൾ", - - "community.edit.tabs.access-control.title": "കമ്മ്യൂണിറ്റി എഡിറ്റ് - ആക്സസ് കൺട്രോൾ", - - "community.edit.tabs.metadata.head": "മെറ്റാഡാറ്റ എഡിറ്റ് ചെയ്യുക", - - "community.edit.tabs.metadata.title": "കമ്മ്യൂണിറ്റി എഡിറ്റ് - മെറ്റാഡാറ്റ", - - "community.edit.tabs.roles.head": "റോളുകൾ നിയോഗിക്കുക", - - "community.edit.tabs.roles.title": "കമ്മ്യൂണിറ്റി എഡിറ്റ് - റോളുകൾ", - - "community.edit.tabs.authorizations.head": "അനുമതികൾ", - - "community.edit.tabs.authorizations.title": "കമ്മ്യൂണിറ്റി എഡിറ്റ് - അനുമതികൾ", - - "community.listelement.badge": "കമ്മ്യൂണിറ്റി", - - "community.logo": "കമ്മ്യൂണിറ്റി ലോഗോ", - - "comcol-role.edit.no-group": "ഒന്നുമില്ല", - - "comcol-role.edit.create": "സൃഷ്ടിക്കുക", - - "comcol-role.edit.create.error.title": "'{{ role }}' റോളിനായി ഒരു ഗ്രൂപ്പ് സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "comcol-role.edit.restrict": "പരിമിതപ്പെടുത്തുക", - - "comcol-role.edit.delete": "ഡിലീറ്റ് ചെയ്യുക", - - "comcol-role.edit.delete.error.title": "'{{ role }}' റോളിന്റെ ഗ്രൂപ്പ് ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "comcol-role.edit.community-admin.name": "അഡ്മിനിസ്ട്രേറ്റർമാർ", - - "comcol-role.edit.collection-admin.name": "അഡ്മിനിസ്ട്രേറ്റർമാർ", - - "comcol-role.edit.community-admin.description": "കമ്മ്യൂണിറ്റി അഡ്മിനിസ്ട്രേറ്റർമാർക്ക് സബ്-കമ്മ്യൂണിറ്റികളോ കളക്ഷനുകളോ സൃഷ്ടിക്കാനും ആ സബ്-കമ്മ്യൂണിറ്റികളോ കളക്ഷനുകളോ മാനേജ് ചെയ്യാനോ മാനേജ്മെന്റ് നിയോഗിക്കാനോ കഴിയും. കൂടാതെ, ഏത് സബ്-കളക്ഷനുകളിലേക്ക് ഇനങ്ങൾ സമർപ്പിക്കാൻ കഴിയുമെന്നും, ഇനം മെറ്റാഡാറ്റ (സമർപ്പണത്തിന് ശേഷം) എഡിറ്റ് ചെയ്യാനും, മറ്റ് കളക്ഷനുകളിൽ നിന്ന് നിലവിലുള്ള ഇനങ്ങൾ (അധികാരപ്പെടുത്തലിന് വിധേയമായി) ചേർക്കാനും (മാപ്പ് ചെയ്യാനും) അവർ തീരുമാനിക്കുന്നു.", - - "comcol-role.edit.collection-admin.description": "കളക്ഷൻ അഡ്മിനിസ്ട്രേറ്റർമാർ ഈ കളക്ഷനിലേക്ക് ഇനങ്ങൾ സമർപ്പിക്കാൻ ആർക്കാണ് അനുമതി ഉള്ളതെന്നും, ഇനം മെറ്റാഡാറ്റ (സമർപ്പണത്തിന് ശേഷം) എഡിറ്റ് ചെയ്യാനും, മറ്റ് കളക്ഷനുകളിൽ നിന്ന് നിലവിലുള്ള ഇനങ്ങൾ ഈ കളക്ഷനിലേക്ക് ചേർക്കാനും (ആ കളക്ഷനുള്ള അധികാരപ്പെടുത്തലിന് വിധേയമായി) തീരുമാനിക്കുന്നു.", - - "comcol-role.edit.submitters.name": "സമർപ്പിക്കുന്നവർ", - - "comcol-role.edit.submitters.description": "ഈ കളക്ഷനിലേക്ക് പുതിയ ഇനങ്ങൾ സമർപ്പിക്കാൻ അനുമതി ഉള്ള ഇ-പീപ്പിൾ, ഗ്രൂപ്പുകൾ.", - - "comcol-role.edit.item_read.name": "ഡിഫോൾട്ട് ഇനം വായനാ ആക്സസ്", - - "comcol-role.edit.item_read.description": "ഈ കളക്ഷനിലേക്ക് സമർപ്പിച്ച പുതിയ ഇനങ്ങൾ വായിക്കാൻ കഴിയുന്ന ഇ-പീപ്പിൾ, ഗ്രൂപ്പുകൾ. ഈ റോളിലെ മാറ്റങ്ങൾ പിൻവലിച്ചുകൊണ്ട് പ്രവർത്തിക്കില്ല. സിസ്റ്റത്തിൽ ഇപ്പോഴുള്ള ഇനങ്ങൾ അവ ചേർക്കപ്പെട്ട സമയത്ത് വായനാ ആക്സസ് ഉണ്ടായിരുന്നവർക്ക് ഇപ്പോഴും കാണാനാകും.", - - "comcol-role.edit.item_read.anonymous-group": "ഇൻകമിംഗ് ഇനങ്ങൾക്കായുള്ള ഡിഫോൾട്ട് വായന നിലവിൽ അജ്ഞാതമായി സജ്ജമാക്കിയിരിക്കുന്നു.", - - "comcol-role.edit.bitstream_read.name": "ഡിഫോൾട്ട് ബിറ്റ്സ്ട്രീം വായനാ ആക്സസ്", - - "comcol-role.edit.bitstream_read.description": "ഈ കളക്ഷനിലേക്ക് സമർപ്പിച്ച പുതിയ ബിറ്റ്സ്ട്രീമുകൾ വായിക്കാൻ കഴിയുന്ന ഇ-പീപ്പിൾ, ഗ്രൂപ്പുകൾ. ഈ റോളിലെ മാറ്റങ്ങൾ പിൻവലിച്ചുകൊണ്ട് പ്രവർത്തിക്കില്ല. സിസ്റ്റത്തിൽ ഇപ്പോഴുള്ള ബിറ്റ്സ്ട്രീമുകൾ അവ ചേർക്കപ്പെട്ട സമയത്ത് വായനാ ആക്സസ് ഉണ്ടായിരുന്നവർക്ക് ഇപ്പോഴും കാണാനാകും.", - - "comcol-role.edit.bitstream_read.anonymous-group": "ഇൻകമിംഗ് ബിറ്റ്സ്ട്രീമുകൾക്കായുള്ള ഡിഫോൾട്ട് വായന നിലവിൽ അജ്ഞാതമായി സജ്ജമാക്കിയിരിക്കുന്നു.", - - "comcol-role.edit.editor.name": "എഡിറ്റർമാർ", - - "comcol-role.edit.editor.description": "എഡിറ്റർമാർക്ക് ഇൻകമിംഗ് സമർപ്പണങ്ങളുടെ മെറ്റാഡാറ്റ എഡിറ്റ് ചെയ്യാനും, അവ സ്വീകരിക്കാനോ നിരസിക്കാനോ കഴിയും.", - - "comcol-role.edit.finaleditor.name": "ഫൈനൽ എഡിറ്റർമാർ", - - "comcol-role.edit.finaleditor.description": "ഫൈനൽ എഡിറ്റർമാർക്ക് ഇൻകമിംഗ് സമർപ്പണങ്ങളുടെ മെറ്റാഡാറ്റ എഡിറ്റ് ചെയ്യാനാകും, പക്ഷേ അവ നിരസിക്കാൻ കഴിയില്ല.", - - "comcol-role.edit.reviewer.name": "റിവ്യൂവർമാർ", - - "comcol-role.edit.reviewer.description": "റിവ്യൂവർമാർക്ക് ഇൻകമിംഗ് സമർപ്പണങ്ങൾ സ്വീകരിക്കാനോ നിരസിക്കാനോ കഴിയും. എന്നാൽ, സമർപ്പണത്തിന്റെ മെറ്റാഡാറ്റ എഡിറ്റ് ചെയ്യാൻ അവർക്ക് കഴിയില്ല.", - - "comcol-role.edit.scorereviewers.name": "സ്കോർ റിവ്യൂവർമാർ", - - "comcol-role.edit.scorereviewers.description": "റിവ്യൂവർമാർക്ക് ഇൻകമിംഗ് സമർപ്പണങ്ങൾക്ക് ഒരു സ്കോർ നൽകാനാകും, ഇത് സമർപ്പണം നിരസിക്കപ്പെടുമോ ഇല്ലയോ എന്ന് നിർണ്ണയിക്കും.", - - "community.form.abstract": "ഹ്രസ്വ വിവരണം", - - "community.form.description": "പരിചയപ്പെടുത്തുന്ന വാചകം (HTML)", - - "community.form.errors.title.required": "ദയവായി ഒരു കമ്മ്യൂണിറ്റി പേര് നൽകുക", - - "community.form.rights": "കോപ്പിറൈറ്റ് വാചകം (HTML)", - - "community.form.tableofcontents": "വാർത്തകൾ (HTML)", - - "community.form.title": "പേര്", - - "community.page.edit": "ഈ കമ്മ്യൂണിറ്റി എഡിറ്റ് ചെയ്യുക", - - "community.page.handle": "ഈ കമ്മ്യൂണിറ്റിക്കുള്ള സ്ഥിരമായ URI", - - "community.page.license": "ലൈസൻസ്", - - "community.page.news": "വാർത്തകൾ", - - "community.page.options": "ഓപ്ഷനുകൾ", - - "community.all-lists.head": "സബ്കമ്മ്യൂണിറ്റികളും കളക്ഷനുകളും", - - "community.search.breadcrumbs": "തിരയുക", - - "community.search.results.head": "തിരയൽ ഫലങ്ങൾ", - - "community.sub-collection-list.head": "ഈ കമ്മ്യൂണിറ്റിയിലെ കളക്ഷനുകൾ", - - "community.sub-community-list.head": "ഈ കമ്മ്യൂണിറ്റിയിലെ കമ്മ്യൂണിറ്റികൾ", - - "cookies.consent.accept-all": "എല്ലാം അംഗീകരിക്കുക", - - "cookies.consent.accept-selected": "തിരഞ്ഞെടുത്തവ അംഗീകരിക്കുക", - - "cookies.consent.app.opt-out.description": "ഈ ആപ്പ് ഡിഫോൾട്ടായി ലോഡ് ചെയ്യുന്നു (പക്ഷേ നിങ്ങൾക്ക് ഒപ്റ്റ് ഔട്ട് ചെയ്യാം)", - - "cookies.consent.app.opt-out.title": "(ഒപ്റ്റ്-ഔട്ട്)", - - "cookies.consent.app.purpose": "ഉദ്ദേശ്യം", - - "cookies.consent.app.required.description": "ഈ ആപ്ലിക്കേഷൻ എല്ലായ്പ്പോഴും ആവശ്യമാണ്", - - "cookies.consent.app.required.title": "(എല്ലായ്പ്പോഴും ആവശ്യമാണ്)", - - "cookies.consent.update": "നിങ്ങളുടെ അവസാന സന്ദർശനത്തിന് ശേഷം മാറ്റങ്ങൾ ഉണ്ടായിട്ടുണ്ട്, ദയവായി നിങ്ങളുടെ സമ്മതം അപ്ഡേറ്റ് ചെയ്യുക.", - - "cookies.consent.close": "അടയ്ക്കുക", - - "cookies.consent.decline": "നിരസിക്കുക", - - "cookies.consent.decline-all": "എല്ലാം നിരസിക്കുക", - - "cookies.consent.ok": "അത് ശരിയാണ്", - - "cookies.consent.save": "സേവ് ചെയ്യുക", - - "cookies.consent.content-notice.description": "ഇനിപ്പറയുന്ന ഉദ്ദേശ്യങ്ങൾക്കായി ഞങ്ങൾ നിങ്ങളുടെ വ്യക്തിപരമായ വിവരങ്ങൾ ശേഖരിക്കുകയും പ്രോസസ്സ് ചെയ്യുകയും ചെയ്യുന്നു: {purposes}", - - "cookies.consent.content-notice.learnMore": "ഇഷ്ടാനുസൃതമാക്കുക", - - "cookies.consent.content-modal.description": "ഞങ്ങൾ നിങ്ങളെക്കുറിച്ച് ശേഖരിക്കുന്ന വിവരങ്ങൾ ഇവിടെ കാണാനും ഇഷ്ടാനുസൃതമാക്കാനും കഴിയും.", - - "cookies.consent.content-modal.privacy-policy.name": "സ്വകാര്യതാ നയം", - - "cookies.consent.content-modal.privacy-policy.text": "കൂടുതൽ അറിയാൻ, ദയവായി ഞങ്ങളുടെ {privacyPolicy} വായിക്കുക.", - - "cookies.consent.content-modal.no-privacy-policy.text": "", - - "cookies.consent.content-modal.title": "ഞങ്ങൾ ശേഖരിക്കുന്ന വിവരങ്ങൾ", - - "cookies.consent.app.title.accessibility": "ആക്സസിബിലിറ്റി സെറ്റിംഗുകൾ", - - "cookies.consent.app.description.accessibility": "നിങ്ങളുടെ ആക്സസിബിലിറ്റി സെറ്റിംഗുകൾ പ്രാദേശികമായി സംരക്ഷിക്കാൻ ആവശ്യമാണ്", - - "cookies.consent.app.title.authentication": "ഓഥന്റിക്കേഷൻ", - - "cookies.consent.app.description.authentication": "ലോഗിൻ ചെയ്യാൻ ആവശ്യമാണ്", - - "cookies.consent.app.title.correlation-id": "കോറിലേഷൻ ID", - - "cookies.consent.app.description.correlation-id": "സപ്പോർട്ട്/ഡീബഗ്ഗിംഗ് ആവശ്യങ്ങൾക്കായി ബാക്കെൻഡ് ലോഗുകളിൽ നിങ്ങളുടെ സെഷൻ ട്രാക്ക് ചെയ്യാൻ ഞങ്ങളെ അനുവദിക്കുക", - - "cookies.consent.app.title.preferences": "പ്രിഫറൻസുകൾ", - - "cookies.consent.app.description.preferences": "നിങ്ങളുടെ പ്രിഫറൻസുകൾ സംരക്ഷിക്കാൻ ആവശ്യമാണ്", - - "cookies.consent.app.title.acknowledgement": "സ്വീകാര്യത", - - "cookies.consent.app.description.acknowledgement": "നിങ്ങളുടെ സ്വീകാര്യതകളും സമ്മതങ്ങളും സംരക്ഷിക്കാൻ ആവശ്യമാണ്", - - "cookies.consent.app.title.google-analytics": "ഗൂഗിൾ അനാലിറ്റിക്സ്", - - "cookies.consent.app.description.google-analytics": "സ്ഥിതിവിവരക്കണക്ക് ഡാറ്റ ട്രാക്ക് ചെയ്യാൻ അനുവദിക്കുന്നു", - - "cookies.consent.app.title.google-recaptcha": "ഗൂഗിൾ reCaptcha", - - "cookies.consent.app.description.google-recaptcha": "രജിസ്ട്രേഷൻ, പാസ്വേഡ് റികവറി സമയത്ത് ഞങ്ങൾ ഗൂഗിൾ reCAPTCHA സേവനം ഉപയോഗിക്കുന്നു", - - "cookies.consent.app.title.matomo": "മാറ്റോമോ", - - "cookies.consent.app.description.matomo": "സ്ഥിതിവിവരക്കണക്ക് ഡാറ്റ ട്രാക്ക് ചെയ്യാൻ അനുവദിക്കുന്നു", - - "cookies.consent.purpose.functional": "ഫങ്ഷണൽ", - - "cookies.consent.purpose.statistical": "സ്ഥിതിവിവരക്കണക്ക്", - - "cookies.consent.purpose.registration-password-recovery": "രജിസ്ട്രേഷൻ, പാസ്വേഡ് റികവറി", - - "cookies.consent.purpose.sharing": "പങ്കിടൽ", - - "curation-task.task.citationpage.label": "സിറ്റേഷൻ പേജ് സൃഷ്ടിക്കുക", - - "curation-task.task.checklinks.label": "മെറ്റാഡാറ്റയിലെ ലിങ്കുകൾ പരിശോധിക്കുക", - - "curation-task.task.noop.label": "NOOP", - - "curation-task.task.profileformats.label": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റുകൾ പ്രൊഫൈൽ ചെയ്യുക", - - "curation-task.task.requiredmetadata.label": "ആവശ്യമായ മെറ്റാഡാറ്റയ്ക്കായി പരിശോധിക്കുക", - - "curation-task.task.translate.label": "മൈക്രോസോഫ്റ്റ് ട്രാൻസ്ലേറ്റർ", - - "curation-task.task.vscan.label": "വൈറസ് സ്കാൻ", - - "curation-task.task.registerdoi.label": "DOI രജിസ്റ്റർ ചെയ്യുക", - - "curation.form.task-select.label": "ടാസ്ക്:", - - "curation.form.submit": "ആരംഭിക്കുക", - - "curation.form.submit.success.head": "ക്യൂറേഷൻ ടാസ്ക് വിജയകരമായി ആരംഭിച്ചു", - - "curation.form.submit.success.content": "നിങ്ങളെ അനുബന്ധ പ്രോസസ് പേജിലേക്ക് റീഡയറക്ട് ചെയ്യും.", - - "curation.form.submit.error.head": "ക്യൂറേഷൻ ടാസ്ക് പ്രവർത്തിപ്പിക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "curation.form.submit.error.content": "ക്യൂറേഷൻ ടാസ്ക് ആരംഭിക്കാൻ ശ്രമിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു.", - - "curation.form.submit.error.invalid-handle": "ഈ ഒബ്ജക്റ്റിനായി ഹാൻഡിൽ നിർണ്ണയിക്കാൻ കഴിഞ്ഞില്ല", - - "curation.form.handle.label": "ഹാൻഡിൽ:", - - "curation.form.handle.hint": "സൂചന: [your-handle-prefix]/0 നൽകി മുഴുവൻ സൈറ്റിലും ഒരു ടാസ്ക് പ്രവർത്തിപ്പിക്കാൻ (എല്ലാ ടാസ്കുകൾക്കും ഈ കഴിവ് ഉണ്ടാകണമെന്നില്ല)", - - "deny-request-copy.email.message": "ആദരണീയ {{ recipientName }},\nനിങ്ങളുടെ അഭ്യർത്ഥനയ്ക്ക് പ്രതികരമായി, നിങ്ങൾ അഭ്യർത്ഥിച്ച ഫയൽ(കൾ) ഒരു പകർപ്പ് അയയ്ക്കുന്നത് സാധ്യമല്ലെന്ന് വിഷമത്തോടെ അറിയിക്കുന്നു, ഇത് ഈ ഡോക്യുമെന്റുമായി ബന്ധപ്പെട്ടതാണ്: \"{{ itemUrl }}\" ({{ itemName }}), അതിന്റെ രചയിതാവാണ് ഞാൻ.\n\nആദരവോടെ,\n{{ authorName }} <{{ authorEmail }}>", - - "deny-request-copy.email.subject": "ഡോക്യുമെന്റിന്റെ പകർപ്പ് അഭ്യർത്ഥിക്കുക", - - "deny-request-copy.error": "ഒരു പിശക് സംഭവിച്ചു", - - "deny-request-copy.header": "ഡോക്യുമെന്റ് പകർപ്പ് അഭ്യർത്ഥന നിരസിക്കുക", - - "deny-request-copy.intro": "ഈ സന്ദേശം അഭ്യർത്ഥന സമർപ്പിച്ചയാൾക്ക് അയയ്ക്കും", - - "deny-request-copy.success": "ഇനം അഭ്യർത്ഥന വിജയകരമായി നിരസിച്ചു", - - "dynamic-list.load-more": "കൂടുതൽ ലോഡ് ചെയ്യുക", - - "dropdown.clear": "തിരഞ്ഞെടുത്തത് മായ്ക്കുക", - - "dropdown.clear.tooltip": "തിരഞ്ഞെടുത്ത ഓപ്ഷൻ മായ്ക്കുക", - - "dso.name.untitled": "ശീർഷകമില്ലാത്തത്", - - "dso.name.unnamed": "പേരില്ലാത്തത്", - - "dso-selector.create.collection.head": "പുതിയ കളക്ഷൻ", - - "dso-selector.create.collection.sub-level": "ഇതിൽ ഒരു പുതിയ കളക്ഷൻ സൃഷ്ടിക്കുക", - - "dso-selector.create.community.head": "പുതിയ കമ്മ്യൂണിറ്റി", - - "dso-selector.create.community.or-divider": "അല്ലെങ്കിൽ", - - "dso-selector.create.community.sub-level": "ഇതിൽ ഒരു പുതിയ കമ്മ്യൂണിറ്റി സൃഷ്ടിക്കുക", - - "dso-selector.create.community.top-level": "ഒരു പുതിയ ടോപ്പ്-ലെവൽ കമ്മ്യൂണിറ്റി സൃഷ്ടിക്കുക", - - "dso-selector.create.item.head": "പുതിയ ഇനം", - - "dso-selector.create.item.sub-level": "ഇതിൽ ഒരു പുതിയ ഇനം സൃഷ്ടിക്കുക", - - "dso-selector.create.submission.head": "പുതിയ സമർപ്പണം", - - "dso-selector.edit.collection.head": "കളക്ഷൻ എഡിറ്റ് ചെയ്യുക", - - "dso-selector.edit.community.head": "കമ്മ്യൂണിറ്റി എഡിറ്റ് ചെയ്യുക", - - "dso-selector.edit.item.head": "ഇനം എഡിറ്റ് ചെയ്യുക", - - "dso-selector.error.title": "ഒരു {{ type }} തിരയുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", - - "dso-selector.export-metadata.dspaceobject.head": "ഇതിൽ നിന്ന് മെറ്റാഡാറ്റ എക്സ്പോർട്ട് ചെയ്യുക", - - "dso-selector.export-batch.dspaceobject.head": "ഇതിൽ നിന്ന് ബാച്ച് (ZIP) എക്സ്പോർട്ട് ചെയ്യുക", - - "dso-selector.import-batch.dspaceobject.head": "ഇതിൽ നിന്ന് ബാച്ച് ഇമ്പോർട്ട് ചെയ്യുക", - - "dso-selector.no-results": "{{ type }} കണ്ടെത്തിയില്ല", - - "dso-selector.placeholder": "ഒരു {{ type }} തിരയുക", - - "dso-selector.placeholder.type.community": "കമ്മ്യൂണിറ്റി", - - "dso-selector.placeholder.type.collection": "കളക്ഷൻ", - - "dso-selector.placeholder.type.item": "ഇനം", - - "dso-selector.select.collection.head": "ഒരു കളക്ഷൻ തിരഞ്ഞെടുക്കുക", - - "dso-selector.set-scope.community.head": "തിരയൽ സ്കോപ്പ് തിരഞ്ഞെടുക്കുക", - - "dso-selector.set-scope.community.button": "DSpace മുഴുവനായും തിരയുക", - - "dso-selector.set-scope.community.or-divider": "അല്ലെങ്കിൽ", - - "dso-selector.set-scope.community.input-header": "ഒരു കമ്മ്യൂണിറ്റി അല്ലെങ്കിൽ കളക്ഷൻ തിരയുക", - - "dso-selector.claim.item.head": "പ്രൊഫൈൽ ടിപ്പുകൾ", - - "dso-selector.claim.item.body": "നിങ്ങളുമായി ബന്ധപ്പെട്ടിരിക്കാനിടയുള്ള നിലവിലുള്ള പ്രൊഫൈലുകൾ ഇവയാണ്. ഈ പ്രൊഫൈലുകളിൽ ഒന്നിൽ നിങ്ങളെ തിരിച്ചറിഞ്ഞാൽ, അത് തിരഞ്ഞെടുത്ത് ഡിറ്റെയിൽ പേജിൽ, ഓപ്ഷനുകൾക്കിടയിൽ, അത് ക്ലെയിം ചെയ്യാൻ തിരഞ്ഞെടുക്കുക. അല്ലെങ്കിൽ നിങ്ങൾക്ക് താഴെയുള്ള ബട്ടൺ ഉപയോഗിച്ച് പുതിയതായി ഒരു പ്രൊഫൈൽ സൃഷ്ടിക്കാം.", - - "dso-selector.claim.item.not-mine-label": "ഇവയൊന്നും എന്റേതല്ല", - - "dso-selector.claim.item.create-from-scratch": "പുതിയതായി ഒന്ന് സൃഷ്ടിക്കുക", - - "dso-selector.results-could-not-be-retrieved": "എന്തോ തെറ്റുണ്ടായി, ദയവായി വീണ്ടും റിഫ്രഷ് ചെയ്യുക ↻", - - "supervision-group-selector.header": "സൂപ്പർവിഷൻ ഗ്രൂപ്പ് സെലക്ടർ", - - "supervision-group-selector.select.type-of-order.label": "ഒരു ഓർഡർ തരം തിരഞ്ഞെടുക്കുക", - - "supervision-group-selector.select.type-of-order.option.none": "NONE", - - "supervision-group-selector.select.type-of-order.option.editor": "EDITOR", - - "supervision-group-selector.select.type-of-order.option.observer": "OBSERVER", - - "supervision-group-selector.select.group.label": "ഒരു ഗ്രൂപ്പ് തിരഞ്ഞെടുക്കുക", - - "supervision-group-selector.button.cancel": "ക്യാൻസൽ", - - "supervision-group-selector.button.save": "സേവ്", - - "supervision-group-selector.select.type-of-order.error": "ദയവായി ഒരു ഓർഡർ തരം തിരഞ്ഞെടുക്കുക", - - "supervision-group-selector.select.group.error": "ദയവായി ഒരു ഗ്രൂപ്പ് തിരഞ്ഞെടുക്കുക", - - "supervision-group-selector.notification.create.success.title": "{{ name }} ഗ്രൂപ്പിനായി സൂപ്പർവിഷൻ ഓർഡർ വിജയകരമായി സൃഷ്ടിച്ചു", - - "supervision-group-selector.notification.create.failure.title": "പിശക്", - - "supervision-group-selector.notification.create.already-existing": "തിരഞ്ഞെടുത്ത ഗ്രൂപ്പിനായി ഈ ഇനത്തിൽ ഇതിനകം ഒരു സൂപ്പർവിഷൻ ഓർഡർ നിലവിലുണ്ട്", - - "confirmation-modal.export-metadata.header": "{{ dsoName }} നായി മെറ്റാഡാറ്റ എക്സ്പോർട്ട് ചെയ്യുക", - - "confirmation-modal.export-metadata.info": "{{ dsoName }} നായി മെറ്റാഡാറ്റ എക്സ്പോർട്ട് ചെയ്യാൻ നിങ്ങൾ ഉറപ്പാണോ", - - "confirmation-modal.export-metadata.cancel": "ക്യാൻസൽ", - - "confirmation-modal.export-metadata.confirm": "എക്സ്പോർട്ട്", - - "confirmation-modal.export-batch.header": "{{ dsoName }} നായി ബാച്ച് (ZIP) എക്സ്പോർട്ട് ചെയ്യുക", - - "confirmation-modal.export-batch.info": "{{ dsoName }} നായി ബാച്ച് (ZIP) എക്സ്പോർട്ട് ചെയ്യാൻ നിങ്ങൾ ഉറപ്പാണോ", - - "confirmation-modal.export-batch.cancel": "ക്യാൻസൽ", - - "confirmation-modal.export-batch.confirm": "എക്സ്പോർട്ട്", - - "confirmation-modal.delete-eperson.header": "\"{{ dsoName }}\" EPerson ഇല്ലാതാക്കുക", - - "confirmation-modal.delete-eperson.info": "\"{{ dsoName }}\" EPerson ഇല്ലാതാക്കാൻ നിങ്ങൾ ഉറപ്പാണോ", - - "confirmation-modal.delete-eperson.cancel": "ക്യാൻസൽ", - - "confirmation-modal.delete-eperson.confirm": "ഇല്ലാതാക്കുക", - - "confirmation-modal.delete-community-collection-logo.info": "ലോഗോ ഇല്ലാതാക്കാൻ നിങ്ങൾ ഉറപ്പാണോ?", - - "confirmation-modal.delete-profile.header": "പ്രൊഫൈൽ ഇല്ലാതാക്കുക", - - "confirmation-modal.delete-profile.info": "നിങ്ങളുടെ പ്രൊഫൈൽ ഇല്ലാതാക്കാൻ നിങ്ങൾ ഉറപ്പാണോ", - - "confirmation-modal.delete-profile.cancel": "ക്യാൻസൽ", - - "confirmation-modal.delete-profile.confirm": "ഇല്ലാതാക്കുക", - - "confirmation-modal.delete-subscription.header": "സബ്സ്ക്രിപ്ഷൻ ഇല്ലാതാക്കുക", - - "confirmation-modal.delete-subscription.info": "\"{{ dsoName }}\" നായുള്ള സബ്സ്ക്രിപ്ഷൻ ഇല്ലാതാക്കാൻ നിങ്ങൾ ഉറപ്പാണോ", - - "confirmation-modal.delete-subscription.cancel": "ക്യാൻസൽ", - - "confirmation-modal.delete-subscription.confirm": "ഇല്ലാതാക്കുക", - - "confirmation-modal.review-account-info.header": "മാറ്റങ്ങൾ സംരക്ഷിക്കുക", - - "confirmation-modal.review-account-info.info": "നിങ്ങളുടെ പ്രൊഫൈലിലെ മാറ്റങ്ങൾ സംരക്ഷിക്കാൻ നിങ്ങൾ ഉറപ്പാണോ", - - "confirmation-modal.review-account-info.cancel": "ക്യാൻസൽ", - - "confirmation-modal.review-account-info.confirm": "സ്ഥിരീകരിക്കുക", - - "confirmation-modal.review-account-info.save": "സേവ്", - - "error.bitstream": "ബിറ്റ്സ്ട്രീം എടുക്കുന്നതിൽ പിശക്", - - "error.browse-by": "ഇനങ്ങൾ എടുക്കുന്നതിൽ പിശക്", - - "error.collection": "കളക്ഷൻ എടുക്കുന്നതിൽ പിശക്", - - "error.collections": "കളക്ഷനുകൾ എടുക്കുന്നതിൽ പിശക്", - - "error.community": "കമ്മ്യൂണിറ്റി എടുക്കുന്നതിൽ പിശക്", - - "error.identifier": "ഐഡന്റിഫയറിനായി ഒരു ഇനവും കണ്ടെത്തിയില്ല", - - "error.default": "പിശക്", - - "error.item": "ഇനം എടുക്കുന്നതിൽ പിശക്", - - "error.items": "ഇനങ്ങൾ എടുക്കുന്നതിൽ പിശക്", - - "error.objects": "ഒബ്ജക്റ്റുകൾ എടുക്കുന്നതിൽ പിശക്", - - "error.recent-submissions": "ഇടുങ്ങിയ സമർപ്പണങ്ങൾ എടുക്കുന്നതിൽ പിശക്", - - "error.profile-groups": "പ്രൊഫൈൽ ഗ്രൂപ്പുകൾ വീണ്ടെടുക്കുന്നതിൽ പിശക്", - - "error.search-results": "തിരയൽ ഫലങ്ങൾ എടുക്കുന്നതിൽ പിശക്", - - "error.invalid-search-query": "തിരയൽ ക്വറി സാധുവല്ല. ഈ പിശകിനെക്കുറിച്ചുള്ള കൂടുതൽ വിവരങ്ങൾക്ക് Solr ക്വറി സിന്റാക്സ് മികച്ച പരിശീലനങ്ങൾ പരിശോധിക്കുക.", - - "error.sub-collections": "സബ്-കളക്ഷനുകൾ എടുക്കുന്നതിൽ പിശക്", - - "error.sub-communities": "സബ്-കമ്മ്യൂണിറ്റികൾ എടുക്കുന്നതിൽ പിശക്", - - "error.submission.sections.init-form-error": "സെക്ഷൻ ആരംഭിക്കുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു, ദയവായി നിങ്ങളുടെ ഇൻപുട്ട്-ഫോം കോൺഫിഗറേഷൻ പരിശോധിക്കുക. വിശദാംശങ്ങൾ ചുവടെയുണ്ട് :

", - - "error.top-level-communities": "ടോപ്പ്-ലെവൽ കമ്മ്യൂണിറ്റികൾ എടുക്കുന്നതിൽ പിശക്", - - "error.validation.license.notgranted": "നിങ്ങളുടെ സമർപ്പണം പൂർത്തിയാക്കാൻ ഈ ലൈസൻസ് നൽകണം. നിങ്ങൾക്ക് ഈ സമയത്ത് ഈ ലൈസൻസ് നൽകാൻ കഴിയുന്നില്ലെങ്കിൽ, നിങ്ങളുടെ ജോലി സംരക്ഷിച്ച് പിന്നീട് മടങ്ങാം അല്ലെങ്കിൽ സമർപ്പണം നീക്കം ചെയ്യാം.", - - "error.validation.cclicense.required": "നിങ്ങളുടെ സമർപ്പണം പൂർത്തിയാക്കാൻ ഈ cclicense നൽകണം. നിങ്ങൾക്ക് ഈ സമയത്ത് cclicense നൽകാൻ കഴിയുന്നില്ലെങ്കിൽ, നിങ്ങളുടെ ജോലി സംരക്ഷിച്ച് പിന്നീട് മടങ്ങാം അല്ലെങ്കിൽ സമർപ്പണം നീക്കം ചെയ്യാം.", - - "error.validation.pattern": "ഈ ഇൻപുട്ട് നിലവിലെ പാറ്റേണാൽ പരിമിതപ്പെടുത്തിയിരിക്കുന്നു: {{ pattern }}.", - - "error.validation.filerequired": "ഫയൽ അപ്ലോഡ് നിർബന്ധമാണ്", - - "error.validation.required": "ഈ ഫീൽഡ് ആവശ്യമാണ്", - - "error.validation.NotValidEmail": "ഇതൊരു സാധുവായ ഇമെയിൽ അല്ല", - - "error.validation.emailTaken": "ഈ ഇമെയൽ ഇതിനകം എടുത്തിരിക്കുന്നു", - - "error.validation.groupExists": "ഈ ഗ്രൂപ്പ് ഇതിനകം നിലവിലുണ്ട്", - - "error.validation.metadata.name.invalid-pattern": "ഈ ഫീൽഡിൽ ഡോട്ടുകൾ, കോമകൾ അല്ലെങ്കിൽ ഇടങ്ങൾ അടങ്ങിയിരിക്കരുത്. ദയവായി എലമെന്റ് & ക്വാലിഫയർ ഫീൽഡുകൾ ഉപയോഗിക്കുക", - - "error.validation.metadata.name.max-length": "ഈ ഫീൽഡിൽ 32 വരെയുള്ള അക്ഷരങ്ങൾ മാത്രമേ അടങ്ങിയിരിക്കൂ", - - "error.validation.metadata.namespace.max-length": "ഈ ഫീൽഡിൽ 256 വരെയുള്ള അക്ഷരങ്ങൾ മാത്രമേ അടങ്ങിയിരിക്കൂ", - - "error.validation.metadata.element.invalid-pattern": "ഈ ഫീൽഡിൽ ഡോട്ടുകൾ, കോമകൾ അല്ലെങ്കിൽ ഇടങ്ങൾ അടങ്ങിയിരിക്കരുത്. ദയവായി ക്വാലിഫയർ ഫീൽഡ് ഉപയോഗിക്കുക", - - "error.validation.metadata.element.max-length": "ഈ ഫീൽഡിൽ 64 വരെയുള്ള അക്ഷരങ്ങൾ മാത്രമേ അടങ്ങിയിരിക്കൂ", - - "error.validation.metadata.qualifier.invalid-pattern": "ഈ ഫീൽഡിൽ ഡോട്ടുകൾ, കോമകൾ അല്ലെങ്കിൽ ഇടങ്ങൾ അടങ്ങിയിരിക്കരുത്", - - "error.validation.metadata.qualifier.max-length": "ഈ ഫീൽഡിൽ 64 വരെയുള്ള അക്ഷരങ്ങൾ മാത്രമേ അടങ്ങിയിരിക്കൂ", - - "feed.description": "സിന്ഡിക്കേഷൻ ഫീഡ്", - - "file-download-link.restricted": "പരിമിതപ്പെടുത്തിയ ബിറ്റ്സ്ട്രീം", - - "file-download-link.secure-access": "സുരക്ഷിത ആക്സസ് ടോക്കൺ വഴി ലഭ്യമായ പരിമിതപ്പെടുത്തിയ ബിറ്റ്സ്ട്രീം", - - "file-section.error.header": "ഈ ഇനത്തിനായുള്ള ഫയലുകൾ ലഭിക്കുന്നതിൽ പിശക്", - - "footer.copyright": "പകർപ്പവകാശം © 2002-{{ year }}", - - "footer.link.accessibility": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ", - - "footer.link.dspace": "DSpace സോഫ്റ്റ്വെയർ", - - "footer.link.lyrasis": "LYRASIS", - - "footer.link.cookies": "കുക്കി സജ്ജീകരണങ്ങൾ", - - "footer.link.privacy-policy": "സ്വകാര്യതാ നയം", - - "footer.link.end-user-agreement": "അവസാന ഉപയോക്തൃ ഉടമ്പടി", - - "footer.link.feedback": "ഫീഡ്ബാക്ക് അയയ്ക്കുക", - - "footer.link.coar-notify-support": "COAR Notify", - - "forgot-email.form.header": "പാസ്വേഡ് മറന്നു", - - "forgot-email.form.info": "അക്കൗണ്ടുമായി ബന്ധപ്പെട്ട ഇമെയിൽ വിലാസം നൽകുക.", - - "forgot-email.form.email": "ഇമെയിൽ വിലാസം *", - - "forgot-email.form.email.error.required": "ഒരു ഇമെയിൽ വിലാസം നൽകുക", - - "forgot-email.form.email.error.not-email-form": "ഒരു സാധുവായ ഇമെയിൽ വിലാസം നൽകുക", - - "forgot-email.form.email.hint": "ഈ വിലാസത്തിലേക്ക് കൂടുതൽ നിർദ്ദേശങ്ങളുള്ള ഒരു ഇമെയിൽ അയയ്ക്കും.", - - "forgot-email.form.submit": "പാസ്വേഡ് റീസെറ്റ് ചെയ്യുക", - - "forgot-email.form.success.head": "പാസ്വേഡ് റീസെറ്റ് ഇമെയിൽ അയച്ചു", - - "forgot-email.form.success.content": "{{ email }} എന്ന വിലാസത്തിലേക്ക് ഒരു പ്രത്യേക URL ഉള്ള ഒരു ഇമെയിൽ അയച്ചിട്ടുണ്ട്.", - - "forgot-email.form.error.head": "പാസ്വേഡ് റീസെറ്റ് ചെയ്യാൻ ശ്രമിക്കുമ്പോൾ പിശക്", - - "forgot-email.form.error.content": "ഇനിപ്പറയുന്ന ഇമെയിൽ വിലാസവുമായി ബന്ധപ്പെട്ട അക്കൗണ്ടിനായി പാസ്വേഡ് റീസെറ്റ് ചെയ്യാൻ ശ്രമിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു: {{ email }}", - - "forgot-password.title": "പാസ്വേഡ് മറന്നു", - - "forgot-password.form.head": "പാസ്വേഡ് മറന്നു", - - "forgot-password.form.info": "ചുവടെയുള്ള ബോക്സിൽ ഒരു പുതിയ പാസ്വേഡ് നൽകുക, രണ്ടാമത്തെ ബോക്സിൽ അതേ പാസ്വേഡ് വീണ്ടും നൽകി സ്ഥിരീകരിക്കുക.", - - "forgot-password.form.card.security": "സുരക്ഷ", - - "forgot-password.form.identification.header": "തിരിച്ചറിയുക", - - "forgot-password.form.identification.email": "ഇമെയിൽ വിലാസം: ", - - "forgot-password.form.label.password": "പാസ്വേഡ്", - - "forgot-password.form.label.passwordrepeat": "സ്ഥിരീകരിക്കാൻ വീണ്ടും നൽകുക", - - "forgot-password.form.error.empty-password": "ബോക്സുകളിൽ ഒരു പാസ്വേഡ് നൽകുക.", - - "forgot-password.form.error.matching-passwords": "പാസ്വേഡുകൾ പൊരുത്തപ്പെടുന്നില്ല.", - - "forgot-password.form.notification.error.title": "പുതിയ പാസ്വേഡ് സമർപ്പിക്കാൻ ശ്രമിക്കുമ്പോൾ പിശക്", - - "forgot-password.form.notification.success.content": "പാസ്വേഡ് റീസെറ്റ് വിജയിച്ചു. നിങ്ങൾ സൃഷ്ടിച്ച ഉപയോക്താവായി ലോഗിൻ ചെയ്തിരിക്കുന്നു.", - - "forgot-password.form.notification.success.title": "പാസ്വേഡ് റീസെറ്റ് പൂർത്തിയായി", - - "forgot-password.form.submit": "പാസ്വേഡ് സമർപ്പിക്കുക", - - "form.add": "കൂടുതൽ ചേർക്കുക", - - "form.add-help": "നിലവിലെ എൻട്രി ചേർക്കാനും മറ്റൊന്ന് ചേർക്കാനും ഇവിടെ ക്ലിക്ക് ചെയ്യുക", - - "form.cancel": "റദ്ദാക്കുക", - - "form.clear": "മായ്ക്കുക", - - "form.clear-help": "തിരഞ്ഞെടുത്ത മൂല്യം നീക്കം ചെയ്യാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക", - - "form.discard": "നിരസിക്കുക", - - "form.drag": "വലിച്ചിടുക", - - "form.edit": "എഡിറ്റ് ചെയ്യുക", - - "form.edit-help": "തിരഞ്ഞെടുത്ത മൂല്യം എഡിറ്റ് ചെയ്യാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക", - - "form.first-name": "പേരിന്റെ ആദ്യഭാഗം", - - "form.group-collapse": "ചുരുക്കുക", - - "form.group-collapse-help": "ചുരുക്കാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക", - - "form.group-expand": "വികസിപ്പിക്കുക", - - "form.group-expand-help": "കൂടുതൽ ഘടകങ്ങൾ ചേർക്കാനും വികസിപ്പിക്കാനും ഇവിടെ ക്ലിക്ക് ചെയ്യുക", - - "form.last-name": "പേരിന്റെ അവസാന ഭാഗം", - - "form.loading": "ലോഡിംഗ്...", - - "form.lookup": "തിരയുക", - - "form.lookup-help": "നിലവിലുള്ള ബന്ധം തിരയാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക", - - "form.no-results": "ഫലങ്ങൾ ഒന്നും കണ്ടെത്തിയില്ല", - - "form.no-value": "മൂല്യം നൽകിയിട്ടില്ല", - - "form.other-information.email": "ഇമെയിൽ", - - "form.other-information.first-name": "പേരിന്റെ ആദ്യഭാഗം", - - "form.other-information.insolr": "Solr ഇൻഡെക്സിൽ", - - "form.other-information.institution": "സ്ഥാപനം", - - "form.other-information.last-name": "പേരിന്റെ അവസാന ഭാഗം", - - "form.other-information.orcid": "ORCID", - - "form.remove": "നീക്കം ചെയ്യുക", - - "form.save": "സംരക്ഷിക്കുക", - - "form.save-help": "മാറ്റങ്ങൾ സംരക്ഷിക്കുക", - - "form.search": "തിരയുക", - - "form.search-help": "നിലവിലുള്ള കത്തിടപാടുകൾ തിരയാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക", - - "form.submit": "സംരക്ഷിക്കുക", - - "form.create": "സൃഷ്ടിക്കുക", - - "form.number-picker.decrement": "{{field}} കുറയ്ക്കുക", - - "form.number-picker.increment": "{{field}} വർദ്ധിപ്പിക്കുക", - - "form.repeatable.sort.tip": "പുതിയ സ്ഥാനത്ത് ഇനം ഡ്രോപ്പ് ചെയ്യുക", - - "grant-deny-request-copy.deny": "ആക്സസ് അഭ്യർത്ഥന നിരസിക്കുക", - - "grant-deny-request-copy.revoke": "ആക്സസ് റദ്ദാക്കുക", - - "grant-deny-request-copy.email.back": "പിന്നോട്ട്", - - "grant-deny-request-copy.email.message": "ഓപ്ഷണൽ അധിക സന്ദേശം", - - "grant-deny-request-copy.email.message.empty": "ഒരു സന്ദേശം നൽകുക", - - "grant-deny-request-copy.email.permissions.info": "ഈ അഭ്യർത്ഥനകൾക്ക് പ്രതികരിക്കേണ്ടതില്ലാതാക്കാൻ, ഡോക്യുമെന്റിലെ ആക്സസ് നിയന്ത്രണങ്ങൾ പുനരാലോചിക്കാൻ നിങ്ങൾക്ക് ഈ അവസരം ഉപയോഗിക്കാം. ഈ നിയന്ത്രണങ്ങൾ നീക്കം ചെയ്യാൻ റിപ്പോസിറ്ററി അഡ്മിനിസ്ട്രേറ്റർമാരോട് ആവശ്യപ്പെടാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുവെങ്കിൽ, ചുവടെയുള്ള ബോക്സ് ചെക്ക് ചെയ്യുക.", - - "grant-deny-request-copy.email.permissions.label": "ഓപ്പൺ ആക്സസിലേക്ക് മാറ്റുക", - - "grant-deny-request-copy.email.send": "അയയ്ക്കുക", - - "grant-deny-request-copy.email.subject": "വിഷയം", - - "grant-deny-request-copy.email.subject.empty": "ഒരു വിഷയം നൽകുക", - - "grant-deny-request-copy.grant": "ആക്സസ് അഭ്യർത്ഥന അനുവദിക്കുക", - - "grant-deny-request-copy.header": "ഡോക്യുമെന്റ് പകർപ്പ് അഭ്യർത്ഥന", - - "grant-deny-request-copy.home-page": "എന്നെ ഹോം പേജിലേക്ക് കൊണ്ടുപോകുക", - - "grant-deny-request-copy.intro1": "നിങ്ങൾ {{ name }} എന്ന ഡോക്യുമെന്റിന്റെ രചയിതാക്കളിൽ ഒരാളാണെങ്കിൽ, ഉപയോക്താവിന്റെ അഭ്യർത്ഥനയ്ക്ക് പ്രതികരിക്കാൻ ചുവടെയുള്ള ഓപ്ഷനുകളിൽ ഒന്ന് ഉപയോഗിക്കുക.", - - "grant-deny-request-copy.intro2": "ഒരു ഓപ്ഷൻ തിരഞ്ഞെടുത്ത ശേഷം, നിങ്ങൾക്ക് എഡിറ്റ് ചെയ്യാവുന്ന ഒരു നിർദ്ദേശിക്കപ്പെട്ട ഇമെയിൽ മറുപടി അവതരിപ്പിക്കും.", - - "grant-deny-request-copy.previous-decision": "ഈ അഭ്യർത്ഥന മുമ്പ് ഒരു സുരക്ഷിത ആക്സസ് ടോക്കൺ ഉപയോഗിച്ച് അനുവദിച്ചിട്ടുണ്ട്. ആക്സസ് ടോക്കൺ ഉടനടി അസാധുവാക്കാൻ നിങ്ങൾക്ക് ഇപ്പോൾ ഈ ആക്സസ് റദ്ദാക്കാം", - - "grant-deny-request-copy.processed": "ഈ അഭ്യർത്ഥന ഇതിനകം പ്രോസസ്സ് ചെയ്തിട്ടുണ്ട്. ഹോം പേജിലേക്ക് മടങ്ങാൻ നിങ്ങൾക്ക് ചുവടെയുള്ള ബട്ടൺ ഉപയോഗിക്കാം.", - - "grant-request-copy.email.subject": "ഡോക്യുമെന്റിന്റെ പകർപ്പ് അഭ്യർത്ഥിക്കുക", - - "grant-request-copy.error": "ഒരു പിശക് സംഭവിച്ചു", - - "grant-request-copy.header": "ഡോക്യുമെന്റ് പകർപ്പ് അഭ്യർത്ഥന അനുവദിക്കുക", - - "grant-request-copy.intro.attachment": "അഭ്യർത്ഥകന് ഒരു സന്ദേശം അയയ്ക്കും. അഭ്യർത്ഥിച്ച ഡോക്യുമെന്റ്(കൾ) അറ്റാച്ച് ചെയ്യും.", - - "grant-request-copy.intro.link": "അഭ്യർത്ഥകന് ഒരു സന്ദേശം അയയ്ക്കും. അഭ്യർത്ഥിച്ച ഡോക്യുമെന്റ്(കൾ) ലഭ്യമാക്കുന്ന ഒരു സുരക്ഷിത ലിങ്ക് അറ്റാച്ച് ചെയ്യും. ലിങ്ക് താഴെയുള്ള \"ആക്സസ് കാലയളവ്\" മെനുവിൽ തിരഞ്ഞെടുത്ത സമയത്തേക്ക് ആക്സസ് നൽകും.", - - "grant-request-copy.intro.link.preview": "അഭ്യർത്ഥകന് അയയ്ക്കുന്ന ലിങ്കിന്റെ പ്രിവ്യൂ ചുവടെയുണ്ട്:", - - "grant-request-copy.success": "ഇനം അഭ്യർത്ഥന വിജയകരമായി അനുവദിച്ചു", - - "grant-request-copy.access-period.header": "ആക്സസ് കാലയളവ്", - - "grant-request-copy.access-period.+1DAY": "1 ദിവസം", - - "grant-request-copy.access-period.+7DAYS": "1 ആഴ്ച", - - "grant-request-copy.access-period.+1MONTH": "1 മാസം", - - "grant-request-copy.access-period.+3MONTHS": "3 മാസം", - - "grant-request-copy.access-period.FOREVER": "എന്നേക്കും", - - "health.breadcrumbs": "ആരോഗ്യം", - - "health-page.heading": "ആരോഗ്യം", - - "health-page.info-tab": "വിവരം", - - "health-page.status-tab": "സ്ഥിതി", - - "health-page.error.msg": "ആരോഗ്യ പരിശോധന സേവനം താൽക്കാലികമായി ലഭ്യമല്ല", - - "health-page.property.status": "സ്റ്റാറ്റസ് കോഡ്", - - "health-page.section.db.title": "ഡാറ്റാബേസ്", - - "health-page.section.geoIp.title": "ജിയോഐപി", - - "health-page.section.solrAuthorityCore.title": "Solr: authority core", - - "health-page.section.solrOaiCore.title": "Solr: oai core", - - "health-page.section.solrSearchCore.title": "Solr: search core", - - "health-page.section.solrStatisticsCore.title": "Solr: statistics core", - - "health-page.section-info.app.title": "ആപ്ലിക്കേഷൻ ബാക്കെൻഡ്", - - "health-page.section-info.java.title": "ജാവ", - - "health-page.status": "സ്ഥിതി", - - "health-page.status.ok.info": "പ്രവർത്തനക്ഷമം", - - "health-page.status.error.info": "പ്രശ്നങ്ങൾ കണ്ടെത്തി", - - "health-page.status.warning.info": "സാധ്യമായ പ്രശ്നങ്ങൾ കണ്ടെത്തി", - - "health-page.title": "ആരോഗ്യം", - - "health-page.section.no-issues": "പ്രശ്നങ്ങളൊന്നും കണ്ടെത്തിയില്ല", - - "home.description": "", - - "home.breadcrumbs": "ഹോം", - - "home.search-form.placeholder": "റിപ്പോസിറ്ററി തിരയുക ...", - - "home.title": "ഹോം", - - "home.top-level-communities.head": "DSpace-ലെ കമ്മ്യൂണിറ്റികൾ", - - "home.top-level-communities.help": "അതിന്റെ കളക്ഷനുകൾ ബ്രൗസ് ചെയ്യാൻ ഒരു കമ്മ്യൂണിറ്റി തിരഞ്ഞെടുക്കുക.", - - "info.accessibility-settings.breadcrumbs": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ", - - "info.accessibility-settings.cookie-warning": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ സംരക്ഷിക്കുന്നത് നിലവിൽ സാധ്യമല്ല. ഉപയോക്തൃ ഡാറ്റയിൽ സജ്ജീകരണങ്ങൾ സംരക്ഷിക്കാൻ ലോഗിൻ ചെയ്യുക, അല്ലെങ്കിൽ പേജിന്റെ അടിയിലുള്ള 'കുക്കി സജ്ജീകരണങ്ങൾ' മെനു ഉപയോഗിച്ച് 'ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ' കുക്കി സ്വീകരിക്കുക. കുക്കി സ്വീകരിച്ചുകഴിഞ്ഞാൽ, ഈ സന്ദേശം നീക്കം ചെയ്യാൻ നിങ്ങൾക്ക് പേജ് റീലോഡ് ചെയ്യാം.", - - "info.accessibility-settings.disableNotificationTimeOut.label": "ടൈം ഔട്ട് കഴിഞ്ഞാൽ സ്വയം അറിയിപ്പുകൾ അടയ്ക്കുക", - - "info.accessibility-settings.disableNotificationTimeOut.hint": "ഈ ടോഗിൾ സജീവമാക്കുമ്പോൾ, ടൈം ഔട്ട് കഴിഞ്ഞാൽ അറിയിപ്പുകൾ സ്വയം അടയും. നിർജ്ജീവമാക്കുമ്പോൾ, അറിയിപ്പുകൾ മാനുവലായി അടയ്ക്കുന്നതുവരെ തുറന്നിരിക്കും.", - - "info.accessibility-settings.failed-notification": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ സംരക്ഷിക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "info.accessibility-settings.invalid-form-notification": "സംരക്ഷിച്ചിട്ടില്ല. ഫോമിൽ അസാധുവായ മൂല്യങ്ങൾ അടങ്ങിയിരിക്കുന്നു.", - - "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live പ്രദേശ ടൈം ഔട്ട് (സെക്കൻഡിൽ)", - - "info.accessibility-settings.liveRegionTimeOut.hint": "ARIA ലൈവ് പ്രദേശത്തെ ഒരു സന്ദേശം അപ്രത്യക്ഷമാകുന്നതിനുള്ള സമയം. ARIA ലൈവ് പ്രദേശങ്ങൾ പേജിൽ ദൃശ്യമാകില്ല, പക്ഷേ സ്ക്രീൻ റീഡറുകൾക്ക് അറിയിപ്പുകളുടെ (അല്ലെങ്കിൽ മറ്റ് പ്രവർത്തനങ്ങളുടെ) പ്രഖ്യാപനങ്ങൾ നൽകുന്നു.", - - "info.accessibility-settings.liveRegionTimeOut.invalid": "ലൈവ് പ്രദേശ ടൈം ഔട്ട് 0-ൽ കൂടുതലായിരിക്കണം", - - "info.accessibility-settings.notificationTimeOut.label": "അറിയിപ്പ് ടൈം ഔട്ട് (സെക്കൻഡിൽ)", - - "info.accessibility-settings.notificationTimeOut.hint": "ഒരു അറിയിപ്പ് അപ്രത്യക്ഷമാകുന്നതിനുള്ള സമയം.", - - "info.accessibility-settings.notificationTimeOut.invalid": "അറിയിപ്പ് ടൈം ഔട്ട് 0-ൽ കൂടുതലായിരിക്കണം", - - "info.accessibility-settings.save-notification.cookie": "സജ്ജീകരണങ്ങൾ പ്രാദേശികമായി വിജയകരമായി സംരക്ഷിച്ചു.", - - "info.accessibility-settings.save-notification.metadata": "ഉപയോക്തൃ പ്രൊഫൈലിൽ സജ്ജീകരണങ്ങൾ വിജയകരമായി സംരക്ഷിച്ചു.", - - "info.accessibility-settings.reset-failed": "റീസെറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. ലോഗിൻ ചെയ്യുക അല്ലെങ്കിൽ 'ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ' കുക്കി സ്വീകരിക്കുക.", - - "info.accessibility-settings.reset-notification": "സജ്ജീകരണങ്ങൾ വിജയകരമായി റീസെറ്റ് ചെയ്തു.", - - "info.accessibility-settings.reset": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ റീസെറ്റ് ചെയ്യുക", - - "info.accessibility-settings.submit": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ സംരക്ഷിക്കുക", - - "info.accessibility-settings.title": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ", - - "info.end-user-agreement.accept": "അവസാന ഉപയോക്തൃ ഉടമ്പടി ഞാൻ വായിച്ചിരിക്കുന്നു, ഞാൻ അംഗീകരിക്കുന്നു", - - "info.end-user-agreement.accept.error": "എൻഡ് യൂസർ ഒപ്പീസ് സ്വീകരിക്കുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", - "info.end-user-agreement.accept.success": "എൻഡ് യൂസർ ഒപ്പീസ് വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു", - "info.end-user-agreement.breadcrumbs": "എൻഡ് യൂസർ ഒപ്പീസ്", - "info.end-user-agreement.buttons.cancel": "റദ്ദാക്കുക", - "info.end-user-agreement.buttons.save": "സംരക്ഷിക്കുക", - "info.end-user-agreement.head": "എൻഡ് യൂസർ ഒപ്പീസ്", - "info.end-user-agreement.title": "എൻഡ് യൂസർ ഒപ്പീസ്", - "info.end-user-agreement.hosting-country": "യുണൈറ്റഡ് സ്റ്റേറ്റ്സ്", - "info.privacy.breadcrumbs": "പ്രൈവസി പ്രസ്താവന", - "info.privacy.head": "പ്രൈവസി പ്രസ്താവന", - "info.privacy.title": "പ്രൈവസി പ്രസ്താവന", - "info.feedback.breadcrumbs": "ഫീഡ്ബാക്ക്", - "info.feedback.head": "ഫീഡ്ബാക്ക്", - "info.feedback.title": "ഫീഡ്ബാക്ക്", - "info.feedback.info": "DSpace സിസ്റ്റത്തെക്കുറിച്ചുള്ള നിങ്ങളുടെ ഫീഡ്ബാക്ക് പങ്കിട്ടതിന് നന്ദി! നിങ്ങളുടെ അഭിപ്രായങ്ങൾ വിലമതിക്കുന്നു!", - "info.feedback.email_help": "നിങ്ങളുടെ ഫീഡ്ബാക്ക് പിന്തുടരാൻ ഈ വിലാസം ഉപയോഗിക്കും.", - "info.feedback.send": "ഫീഡ്ബാക്ക് അയയ്ക്കുക", - "info.feedback.comments": "അഭിപ്രായങ്ങൾ", - "info.feedback.email-label": "നിങ്ങളുടെ ഇമെയിൽ", - "info.feedback.create.success": "ഫീഡ്ബാക്ക് വിജയകരമായി അയച്ചു!", - "info.feedback.error.email.required": "സാധുവായ ഇമെയിൽ വിലാസം ആവശ്യമാണ്", - "info.feedback.error.message.required": "ഒരു അഭിപ്രായം ആവശ്യമാണ്", - "info.feedback.page-label": "പേജ്", - "info.feedback.page_help": "നിങ്ങളുടെ ഫീഡ്ബാക്കുമായി ബന്ധപ്പെട്ട പേജ്", - "info.coar-notify-support.title": "COAR Notify പിന്തുണ", - "info.coar-notify-support.breadcrumbs": "COAR Notify പിന്തുണ", - "item.alerts.private": "ഈ ഇനം കണ്ടെത്താൻ കഴിയില്ല", - "item.alerts.withdrawn": "ഈ ഇനം പിൻവലിച്ചിരിക്കുന്നു", - "item.alerts.reinstate-request": "പുനഃസ്ഥാപിക്കാൻ അഭ്യർത്ഥിക്കുക", - "quality-assurance.event.table.person-who-requested": "അഭ്യർത്ഥിച്ചത്", - "item.edit.authorizations.heading": "ഈ എഡിറ്റർ ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഒരു ഇനത്തിന്റെ പോളിസികൾ കാണാനും മാറ്റാനും കഴിയും, കൂടാതെ ഇന ഘടകങ്ങളുടെ പോളിസികൾ മാറ്റാനും കഴിയും: ബണ്ടിലുകളും ബിറ്റ്സ്ട്രീമുകളും. ചുരുക്കത്തിൽ, ഒരു ഇനം ബണ്ടിലുകളുടെ ഒരു കണ്ടെയ്നറാണ്, ബണ്ടിലുകൾ ബിറ്റ്സ്ട്രീമുകളുടെ കണ്ടെയ്നറുകളാണ്. കണ്ടെയ്നറുകൾ സാധാരണയായി ADD/REMOVE/READ/WRITE പോളിസികൾ ഉണ്ടായിരിക്കും, ബിറ്റ്സ്ട്രീമുകൾക്ക് READ/WRITE പോളിസികൾ മാത്രമേ ഉണ്ടാകൂ.", - "item.edit.authorizations.title": "ഇനത്തിന്റെ പോളിസികൾ എഡിറ്റ് ചെയ്യുക", - "item.badge.status": "ഇനത്തിന്റെ സ്ഥിതി:", - "item.badge.private": "കണ്ടെത്താൻ കഴിയില്ല", - "item.badge.withdrawn": "പിൻവലിച്ചത്", - "item.bitstreams.upload.bundle": "ബണ്ടിൽ", - "item.bitstreams.upload.bundle.placeholder": "ഒരു ബണ്ടിൽ തിരഞ്ഞെടുക്കുക അല്ലെങ്കിൽ പുതിയ ബണ്ടിൽ പേര് നൽകുക", - "item.bitstreams.upload.bundle.new": "ബണ്ടിൽ സൃഷ്ടിക്കുക", - "item.bitstreams.upload.bundles.empty": "ബിറ്റ്സ്ട്രീം അപ്ലോഡ് ചെയ്യാൻ ഈ ഇനത്തിൽ ഒരു ബണ്ടിലും ഇല്ല.", - "item.bitstreams.upload.cancel": "റദ്ദാക്കുക", - "item.bitstreams.upload.drop-message": "അപ്ലോഡ് ചെയ്യാൻ ഒരു ഫയൽ ഡ്രോപ്പ് ചെയ്യുക", - "item.bitstreams.upload.item": "ഇനം: ", - "item.bitstreams.upload.notifications.bundle.created.content": "പുതിയ ബണ്ടിൽ വിജയകരമായി സൃഷ്ടിച്ചു.", - "item.bitstreams.upload.notifications.bundle.created.title": "ബണ്ടിൽ സൃഷ്ടിച്ചു", - "item.bitstreams.upload.notifications.upload.failed": "അപ്ലോഡ് പരാജയപ്പെട്ടു. വീണ്ടും ശ്രമിക്കുന്നതിന് മുമ്പ് ഉള്ളടക്കം പരിശോധിക്കുക.", - "item.bitstreams.upload.title": "ബിറ്റ്സ്ട്രീം അപ്ലോഡ് ചെയ്യുക", - "item.edit.bitstreams.bundle.edit.buttons.upload": "അപ്ലോഡ്", - "item.edit.bitstreams.bundle.displaying": "ഇപ്പോൾ {{ total }} എന്നതിൽ {{ amount }} ബിറ്റ്സ്ട്രീമുകൾ പ്രദർശിപ്പിക്കുന്നു.", - "item.edit.bitstreams.bundle.load.all": "എല്ലാം ലോഡ് ചെയ്യുക ({{ total }})", - "item.edit.bitstreams.bundle.load.more": "കൂടുതൽ ലോഡ് ചെയ്യുക", - "item.edit.bitstreams.bundle.name": "ബണ്ടിൽ: {{ name }}", - "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} ബണ്ടിലിലെ ബിറ്റ്സ്ട്രീമുകൾ", - "item.edit.bitstreams.bundle.tooltip": "പേജ് നമ്പറിൽ ഡ്രോപ്പ് ചെയ്ത് നിങ്ങൾക്ക് ഒരു ബിറ്റ്സ്ട്രീം വ്യത്യസ്ത പേജിലേക്ക് നീക്കാൻ കഴിയും.", - "item.edit.bitstreams.discard-button": "നിരസിക്കുക", - "item.edit.bitstreams.edit.buttons.download": "ഡൗൺലോഡ്", - "item.edit.bitstreams.edit.buttons.drag": "വലിച്ചിടുക", - "item.edit.bitstreams.edit.buttons.edit": "എഡിറ്റ്", - "item.edit.bitstreams.edit.buttons.remove": "നീക്കം ചെയ്യുക", - "item.edit.bitstreams.edit.buttons.undo": "മാറ്റങ്ങൾ റദ്ദാക്കുക", - "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} {{ toIndex }} സ്ഥാനത്തേക്ക് തിരികെ കൊണ്ടുവന്നു, തിരഞ്ഞെടുത്തിട്ടില്ല.", - "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} ഇനി തിരഞ്ഞെടുത്തിട്ടില്ല.", - "item.edit.bitstreams.edit.live.loading": "നീക്കം പൂർത്തിയാകാൻ കാത്തിരിക്കുന്നു.", - "item.edit.bitstreams.edit.live.select": "{{ bitstream }} തിരഞ്ഞെടുത്തിരിക്കുന്നു.", - "item.edit.bitstreams.edit.live.move": "{{ bitstream }} ഇപ്പോൾ {{ toIndex }} സ്ഥാനത്താണ്.", - "item.edit.bitstreams.empty": "ഈ ഇനത്തിൽ ഒരു ബിറ്റ്സ്ട്രീമും ഇല്ല. ഒന്ന് സൃഷ്ടിക്കാൻ അപ്ലോഡ് ബട്ടൺ ക്ലിക്ക് ചെയ്യുക.", - "item.edit.bitstreams.info-alert": "ബിറ്റ്സ്ട്രീമുകൾ അവയുടെ ബണ്ടിലുകളിൽ വീണ്ടും ക്രമീകരിക്കാൻ കഴിയും. ഡ്രാഗ് ഹാൻഡിൽ പിടിച്ച് മൗസ് നീക്കി. അല്ലെങ്കിൽ, കീബോർഡ് ഉപയോഗിച്ച് ബിറ്റ്സ്ട്രീമുകൾ നീക്കാൻ കഴിയും: ബിറ്റ്സ്ട്രീമിന്റെ ഡ്രാഗ് ഹാൻഡിൽ ഫോക്കസ് ആയിരിക്കുമ്പോൾ എന്റർ അമർത്തി ബിറ്റ്സ്ട്രീം തിരഞ്ഞെടുക്കുക. ആരോ ഹൈ കീകൾ ഉപയോഗിച്ച് ബിറ്റ്സ്ട്രീം മുകളിലോ താഴെയോ നീക്കുക. ബിറ്റ്സ്ട്രീമിന്റെ നിലവിലെ സ്ഥാനം സ്ഥിരീകരിക്കാൻ വീണ്ടും എന്റർ അമർത്തുക.", - "item.edit.bitstreams.headers.actions": "പ്രവർത്തനങ്ങൾ", - "item.edit.bitstreams.headers.bundle": "ബണ്ടിൽ", - "item.edit.bitstreams.headers.description": "വിവരണം", - "item.edit.bitstreams.headers.format": "ഫോർമാറ്റ്", - "item.edit.bitstreams.headers.name": "പേര്", - "item.edit.bitstreams.notifications.discarded.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ നിരസിച്ചു. നിങ്ങളുടെ മാറ്റങ്ങൾ പുനഃസ്ഥാപിക്കാൻ 'അൺഡു' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", - "item.edit.bitstreams.notifications.discarded.title": "മാറ്റങ്ങൾ നിരസിച്ചു", - "item.edit.bitstreams.notifications.move.failed.title": "ബിറ്റ്സ്ട്രീം നീക്കുന്നതിൽ പിശക്", - "item.edit.bitstreams.notifications.move.saved.content": "ഈ ഇനത്തിന്റെ ബിറ്റ്സ്ട്രീമുകളുടെയും ബണ്ടിലുകളുടെയും നീക്കം മാറ്റങ്ങൾ സംരക്ഷിച്ചു.", - "item.edit.bitstreams.notifications.move.saved.title": "നീക്കം മാറ്റങ്ങൾ സംരക്ഷിച്ചു", - "item.edit.bitstreams.notifications.outdated.content": "നിങ്ങൾ ഇപ്പോൾ പ്രവർത്തിക്കുന്ന ഇനം മറ്റൊരു ഉപയോക്താവ് മാറ്റിയിരിക്കുന്നു. conflicts ഒഴിവാക്കാൻ നിങ്ങളുടെ നിലവിലെ മാറ്റങ്ങൾ നിരസിച്ചു", - "item.edit.bitstreams.notifications.outdated.title": "മാറ്റങ്ങൾ കാലഹരണപ്പെട്ടു", - "item.edit.bitstreams.notifications.remove.failed.title": "ബിറ്റ്സ്ട്രീം ഇല്ലാതാക്കുന്നതിൽ പിശക്", - "item.edit.bitstreams.notifications.remove.saved.content": "ഈ ഇനത്തിന്റെ ബിറ്റ്സ്ട്രീമുകൾ നീക്കം ചെയ്യുന്നതിനുള്ള നിങ്ങളുടെ മാറ്റങ്ങൾ സംരക്ഷിച്ചു.", - "item.edit.bitstreams.notifications.remove.saved.title": "നീക്കം ചെയ്യൽ മാറ്റങ്ങൾ സംരക്ഷിച്ചു", - "item.edit.bitstreams.reinstate-button": "അൺഡു", - "item.edit.bitstreams.save-button": "സംരക്ഷിക്കുക", - "item.edit.bitstreams.upload-button": "അപ്ലോഡ്", - "item.edit.bitstreams.load-more.link": "കൂടുതൽ ലോഡ് ചെയ്യുക", - "item.edit.delete.cancel": "റദ്ദാക്കുക", - "item.edit.delete.confirm": "ഇല്ലാതാക്കുക", - "item.edit.delete.description": "ഈ ഇനം പൂർണ്ണമായും ഇല്ലാതാക്കണമെന്ന് നിങ്ങൾക്ക് ഉറപ്പാണോ? ശ്രദ്ധിക്കുക: നിലവിൽ, ഒരു ടോംബ്സ്റ്റോൺ ശേഷിക്കില്ല.", - "item.edit.delete.error": "ഇനം ഇല്ലാതാക്കുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", - "item.edit.delete.header": "ഇനം ഇല്ലാതാക്കുക: {{ id }}", - "item.edit.delete.success": "ഇനം ഇല്ലാതാക്കി", - "item.edit.head": "ഇനം എഡിറ്റ് ചെയ്യുക", - "item.edit.breadcrumbs": "ഇനം എഡിറ്റ് ചെയ്യുക", - "item.edit.tabs.disabled.tooltip": "ഈ ടാബ് ആക്സസ് ചെയ്യാൻ നിങ്ങൾക്ക് അധികാരമില്ല", - "item.edit.tabs.mapper.head": "കളക്ഷൻ മാപ്പർ", - "item.edit.tabs.item-mapper.title": "ഇനം എഡിറ്റ് - കളക്ഷൻ മാപ്പർ", - "item.edit.identifiers.doi.status.UNKNOWN": "അജ്ഞാതം", - "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "രജിസ്ട്രേഷനായി ക്യൂ ചെയ്തു", - "item.edit.identifiers.doi.status.TO_BE_RESERVED": "റിസർവേഷനായി ക്യൂ ചെയ്തു", - "item.edit.identifiers.doi.status.IS_REGISTERED": "രജിസ്റ്റർ ചെയ്തു", - "item.edit.identifiers.doi.status.IS_RESERVED": "റിസർവ് ചെയ്തു", - "item.edit.identifiers.doi.status.UPDATE_RESERVED": "റിസർവ് ചെയ്തു (അപ്ഡേറ്റ് ക്യൂ ചെയ്തു)", - "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "രജിസ്റ്റർ ചെയ്തു (അപ്ഡേറ്റ് ക്യൂ ചെയ്തു)", - "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "അപ്ഡേറ്റും രജിസ്ട്രേഷനും ക്യൂ ചെയ്തു", - "item.edit.identifiers.doi.status.TO_BE_DELETED": "ഇല്ലാതാക്കാൻ ക്യൂ ചെയ്തു", - "item.edit.identifiers.doi.status.DELETED": "ഇല്ലാതാക്കി", - "item.edit.identifiers.doi.status.PENDING": "തീർച്ചപ്പെടുത്താത്തത് (രജിസ്റ്റർ ചെയ്തിട്ടില്ല)", - "item.edit.identifiers.doi.status.MINTED": "മിന്റ് ചെയ്തു (രജിസ്റ്റർ ചെയ്തിട്ടില്ല)", - "item.edit.tabs.status.buttons.register-doi.label": "പുതിയതോ തീർച്ചപ്പെടുത്താത്തതോ ആയ DOI രജിസ്റ്റർ ചെയ്യുക", - "item.edit.tabs.status.buttons.register-doi.button": "DOI രജിസ്റ്റർ ചെയ്യുക...", - "item.edit.register-doi.header": "പുതിയതോ തീർച്ചപ്പെടുത്താത്തതോ ആയ DOI രജിസ്റ്റർ ചെയ്യുക", - "item.edit.register-doi.description": "താഴെയുള്ള തീർച്ചപ്പെടുത്താത്ത ഐഡന്റിഫയറുകളും ഇനം മെറ്റാഡാറ്റയും അവലോകനം ചെയ്ത് DOI രജിസ്ട്രേഷനിൽ തുടരാൻ സ്ഥിരീകരിക്കുക, അല്ലെങ്കിൽ റദ്ദാക്കുക", - "item.edit.register-doi.confirm": "സ്ഥിരീകരിക്കുക", - "item.edit.register-doi.cancel": "റദ്ദാക്കുക", - "item.edit.register-doi.success": "DOI വിജയകരമായി രജിസ്ട്രേഷനായി ക്യൂ ചെയ്തു.", - "item.edit.register-doi.error": "DOI രജിസ്റ്റർ ചെയ്യുന്നതിൽ പിശക്", - "item.edit.register-doi.to-update": "ഇനിപ്പറയുന്ന DOI ഇതിനകം മിന്റ് ചെയ്തിട്ടുണ്ട്, ഓൺലൈനിൽ രജിസ്ട്രേഷനായി ക്യൂ ചെയ്യും", - "item.edit.item-mapper.buttons.add": "തിരഞ്ഞെടുത്ത കളക്ഷനുകളിലേക്ക് ഇനം മാപ്പ് ചെയ്യുക", - "item.edit.item-mapper.buttons.remove": "തിരഞ്ഞെടുത്ത കളക്ഷനുകൾക്കായി ഇനത്തിന്റെ മാപ്പിംഗ് നീക്കം ചെയ്യുക", - "item.edit.item-mapper.cancel": "റദ്ദാക്കുക", - "item.edit.item-mapper.description": "ഇത് ഇനം മാപ്പർ ടൂളാണ്, ഇത് അഡ്മിനിസ്ട്രേറ്റർമാർക്ക് ഈ ഇനം മറ്റ് കളക്ഷനുകളിലേക്ക് മാപ്പ് ചെയ്യാൻ അനുവദിക്കുന്നു. നിങ്ങൾക്ക് കളക്ഷനുകൾ തിരയാനും മാപ്പ് ചെയ്യാനും കഴിയും, അല്ലെങ്കിൽ ഇനം നിലവിൽ മാപ്പ് ചെയ്തിരിക്കുന്ന കളക്ഷനുകളുടെ ലിസ്റ്റ് ബ്രൗസ് ചെയ്യാനും കഴിയും.", - "item.edit.item-mapper.head": "ഇനം മാപ്പർ - ഇനം കളക്ഷനുകളിലേക്ക് മാപ്പ് ചെയ്യുക", - "item.edit.item-mapper.item": "ഇനം: \"{{name}}\"", - "item.edit.item-mapper.no-search": "തിരയാൻ ഒരു ക്വറി നൽകുക", - "item.edit.item-mapper.notifications.add.error.content": "{{amount}} കളക്ഷനുകളിലേക്ക് ഇനം മാപ്പ് ചെയ്യുന്നതിൽ പിശകുകൾ സംഭവിച്ചു.", - "item.edit.item-mapper.notifications.add.error.head": "മാപ്പിംഗ് പിശകുകൾ", - "item.edit.item-mapper.notifications.add.success.content": "{{amount}} കളക്ഷനുകളിലേക്ക് ഇനം വിജയകരമായി മാപ്പ് ചെയ്തു.", - "item.edit.item-mapper.notifications.add.success.head": "മാപ്പിംഗ് പൂർത്തിയായി", - "item.edit.item-mapper.notifications.remove.error.content": "{{amount}} കളക്ഷനുകളിലേക്കുള്ള മാപ്പിംഗ് നീക്കം ചെയ്യുന്നതിൽ പിശകുകൾ സംഭവിച്ചു.", - "item.edit.item-mapper.notifications.remove.error.head": "മാപ്പിംഗ് നീക്കം ചെയ്യൽ പിശകുകൾ", - "item.edit.item-mapper.notifications.remove.success.content": "{{amount}} കളക്ഷനുകളിലേക്കുള്ള ഇനത്തിന്റെ മാപ്പിംഗ് വിജയകരമായി നീക്കം ചെയ്തു.", - "item.edit.item-mapper.notifications.remove.success.head": "മാപ്പിംഗ് നീക്കം ചെയ്യൽ പൂർത്തിയായി", - "item.edit.item-mapper.search-form.placeholder": "കളക്ഷനുകൾ തിരയുക...", - "item.edit.item-mapper.tabs.browse": "മാപ്പ് ചെയ്ത കളക്ഷനുകൾ ബ്രൗസ് ചെയ്യുക", - "item.edit.item-mapper.tabs.map": "പുതിയ കളക്ഷനുകൾ മാപ്പ് ചെയ്യുക", - "item.edit.metadata.add-button": "ചേർക്കുക", - "item.edit.metadata.discard-button": "നിരസിക്കുക", - "item.edit.metadata.edit.language": "ഭാഷ എഡിറ്റ് ചെയ്യുക", - "item.edit.metadata.edit.value": "മൂല്യം എഡിറ്റ് ചെയ്യുക", - "item.edit.metadata.edit.authority.key": "അധികാര കീ എഡിറ്റ് ചെയ്യുക", - "item.edit.metadata.edit.buttons.enable-free-text-editing": "സൗജന്യ-ടെക്സ്റ്റ് എഡിറ്റിംഗ് പ്രവർത്തനക്ഷമമാക്കുക", - "item.edit.metadata.edit.buttons.disable-free-text-editing": "സൗജന്യ-ടെക്സ്റ്റ് എഡിറ്റിംഗ് പ്രവർത്തനരഹിതമാക്കുക", - "item.edit.metadata.edit.buttons.confirm": "സ്ഥിരീകരിക്കുക", - "item.edit.metadata.edit.buttons.drag": "ക്രമീകരിക്കാൻ വലിച്ചിടുക", - "item.edit.metadata.edit.buttons.edit": "എഡിറ്റ്", - "item.edit.metadata.edit.buttons.remove": "നീക്കം ചെയ്യുക", - "item.edit.metadata.edit.buttons.undo": "മാറ്റങ്ങൾ റദ്ദാക്കുക", - "item.edit.metadata.edit.buttons.unedit": "എഡിറ്റിംഗ് നിർത്തുക", - "item.edit.metadata.edit.buttons.virtual": "ഇതൊരു വെർച്വൽ മെറ്റാഡാറ്റ മൂല്യമാണ്, അതായത് ഒരു ബന്ധപ്പെട്ട എന്റിറ്റിയിൽ നിന്ന് പാരമ്പര്യമായി ലഭിച്ച മൂല്യം. ഇത് നേരിട്ട് പരിഷ്കരിക്കാൻ കഴിയില്ല. \"ബന്ധങ്ങൾ\" ടാബിൽ അനുബന്ധ ബന്ധം ചേർക്കുകയോ നീക്കം ചെയ്യുകയോ ചെയ്യുക", - "item.edit.metadata.empty": "ഇനത്തിൽ നിലവിൽ ഒരു മെറ്റാഡാറ്റയും ഇല്ല. ഒരു മെറ്റാഡാറ്റ മൂല്യം ചേർക്കാൻ ചേർക്കുക ക്ലിക്ക് ചെയ്യുക.", - "item.edit.metadata.headers.edit": "എഡിറ്റ്", - "item.edit.metadata.headers.field": "ഫീൽഡ്", - "item.edit.metadata.headers.language": "ഭാഷ", - "item.edit.metadata.headers.value": "മൂല്യം", - "item.edit.metadata.metadatafield": "ഫീൽഡ് എഡിറ്റ് ചെയ്യുക", - "item.edit.metadata.metadatafield.error": "മെറ്റാഡാറ്റ ഫീൽഡ് സാധൂകരിക്കുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", - "item.edit.metadata.metadatafield.invalid": "ദയവായി ഒരു സാധുവായ മെറ്റാഡാറ്റ ഫീൽഡ് തിരഞ്ഞെടുക്കുക", - "item.edit.metadata.notifications.discarded.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ നിരസിച്ചു. നിങ്ങളുടെ മാറ്റങ്ങൾ പുനഃസ്ഥാപിക്കാൻ 'അൺഡു' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", - "item.edit.metadata.notifications.discarded.title": "മാറ്റങ്ങൾ നിരസിച്ചു", - "item.edit.metadata.notifications.error.title": "ഒരു പിശക് സംഭവിച്ചു", - "item.edit.metadata.notifications.invalid.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ സംരക്ഷിച്ചിട്ടില്ല. സംരക്ഷിക്കുന്നതിന് മുമ്പ് എല്ലാ ഫീൽഡുകളും സാധുവാണെന്ന് ഉറപ്പാക്കുക.", - "item.edit.metadata.notifications.invalid.title": "മെറ്റാഡാറ്റ അസാധുവാണ്", - "item.edit.metadata.notifications.outdated.content": "നിങ്ങൾ ഇപ്പോൾ പ്രവർത്തിക്കുന്ന ഇനം മറ്റൊരു ഉപയോക്താവ് മാറ്റിയിരിക്കുന്നു. conflicts ഒഴിവാക്കാൻ നിങ്ങളുടെ നിലവിലെ മാറ്റങ്ങൾ നിരസിച്ചു", - "item.edit.metadata.notifications.outdated.title": "മാറ്റങ്ങൾ കാലഹരണപ്പെട്ടു", - "item.edit.metadata.notifications.saved.content": "ഈ ഇനത്തിന്റെ മെറ്റാഡാറ്റയിലെ നിങ്ങളുടെ മാറ്റങ്ങൾ സംരക്ഷിച്ചു.", - "item.edit.metadata.notifications.saved.title": "മെറ്റാഡാറ്റ സംരക്ഷിച്ചു", - "item.edit.metadata.reinstate-button": "അൺഡു", - "item.edit.metadata.reset-order-button": "ക്രമീകരണം റദ്ദാക്കുക", - "item.edit.metadata.save-button": "സംരക്ഷിക്കുക", - "item.edit.metadata.authority.label": "അധികാരം: ", - "item.edit.metadata.edit.buttons.open-authority-edition": "മാനുവൽ എഡിറ്റിംഗിനായി അധികാര കീ മൂല്യം അൺലോക്ക് ചെയ്യുക", - "item.edit.metadata.edit.buttons.close-authority-edition": "മാനുവൽ എഡിറ്റിംഗിനായി അധികാര കീ മൂല്യം ലോക്ക് ചെയ്യുക", - "item.edit.modify.overview.field": "ഫീൽഡ്", - "item.edit.modify.overview.language": "ഭാഷ", - "item.edit.modify.overview.value": "മൂല്യം", - "item.edit.move.cancel": "പിന്നിലേക്ക്", - "item.edit.move.save-button": "സംരക്ഷിക്കുക", - "item.edit.move.discard-button": "നിരസിക്കുക", - "item.edit.move.description": "നിങ്ങൾ ഈ ഇനം നീക്കാൻ ആഗ്രഹിക്കുന്ന കളക്ഷൻ തിരഞ്ഞെടുക്കുക. പ്രദർശിപ്പിക്കുന്ന കളക്ഷനുകളുടെ ലിസ്റ്റ് ചുരുക്കാൻ, നിങ്ങൾക്ക് ബോക്സിൽ ഒരു തിരയൽ ക്വറി നൽകാം.", - "item.edit.move.error": "ഇനം നീക്കാൻ ശ്രമിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", - "item.edit.move.head": "ഇനം നീക്കുക: {{id}}", - "item.edit.move.inheritpolicies.checkbox": "പോളിസികൾ പാരമ്പര്യമായി ലഭിക്കുക", - "item.edit.move.inheritpolicies.description": "ലക്ഷ്യസംഗ്രഹത്തിന്റെ സ്ഥിരമായ നയങ്ങൾ പാരമ്പര്യമായി ലഭിക്കുക", - "item.edit.move.inheritpolicies.tooltip": "മുന്നറിയിപ്പ്: പ്രവർത്തനക്ഷമമാക്കുമ്പോൾ, ഇനത്തിനും അതുമായി ബന്ധപ്പെട്ട ഏതെങ്കിലും ഫയലുകൾക്കുമുള്ള വായനാ പ്രവേശന നയം ലക്ഷ്യസംഗ്രഹത്തിന്റെ സ്ഥിരമായ വായനാ പ്രവേശന നയം ഉപയോഗിച്ച് മാറ്റിസ്ഥാപിക്കും. ഇത് പൂർവ്വസ്ഥിതിയാക്കാൻ കഴിയില്ല.", - "item.edit.move.move": "നീക്കുക", - "item.edit.move.processing": "നീക്കുന്നു...", - "item.edit.move.search.placeholder": "സംഗ്രഹങ്ങൾക്കായി തിരയൽ ക്വറി നൽകുക", - "item.edit.move.success": "ഇനം വിജയകരമായി നീക്കി", - "item.edit.move.title": "ഇനം നീക്കുക", - "item.edit.private.cancel": "റദ്ദാക്കുക", - "item.edit.private.confirm": "ആർക്കൈവിൽ കണ്ടെത്താൻ കഴിയാത്തതാക്കുക", - "item.edit.private.description": "ഈ ഇനം ആർക്കൈവിൽ കണ്ടെത്താൻ കഴിയാത്തതാക്കണമെന്ന് ഉറപ്പാണോ?", - "item.edit.private.error": "ഇനം കണ്ടെത്താൻ കഴിയാത്തതാക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", - "item.edit.private.header": "ഇനം കണ്ടെത്താൻ കഴിയാത്തതാക്കുക: {{ id }}", - "item.edit.private.success": "ഇനം ഇപ്പോൾ കണ്ടെത്താൻ കഴിയാത്തതാണ്", - "item.edit.public.cancel": "റദ്ദാക്കുക", - "item.edit.public.confirm": "കണ്ടെത്താൻ കഴിയുന്നതാക്കുക", - "item.edit.public.description": "ഈ ഇനം ആർക്കൈവിൽ കണ്ടെത്താൻ കഴിയുന്നതാക്കണമെന്ന് ഉറപ്പാണോ?", - "item.edit.public.error": "ഇനം കണ്ടെത്താൻ കഴിയുന്നതാക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", - "item.edit.public.header": "ഇനം കണ്ടെത്താൻ കഴിയുന്നതാക്കുക: {{ id }}", - "item.edit.public.success": "ഇനം ഇപ്പോൾ കണ്ടെത്താൻ കഴിയുന്നതാണ്", - "item.edit.reinstate.cancel": "റദ്ദാക്കുക", - "item.edit.reinstate.confirm": "പുനഃസ്ഥാപിക്കുക", - "item.edit.reinstate.description": "ഈ ഇനം ആർക്കൈവിലേക്ക് പുനഃസ്ഥാപിക്കണമെന്ന് ഉറപ്പാണോ?", - "item.edit.reinstate.error": "ഇനം പുനഃസ്ഥാപിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", - "item.edit.reinstate.header": "ഇനം പുനഃസ്ഥാപിക്കുക: {{ id }}", - "item.edit.reinstate.success": "ഇനം വിജയകരമായി പുനഃസ്ഥാപിച്ചു", - "item.edit.relationships.discard-button": "നിരസിക്കുക", - "item.edit.relationships.edit.buttons.add": "ചേർക്കുക", - "item.edit.relationships.edit.buttons.remove": "നീക്കം ചെയ്യുക", - "item.edit.relationships.edit.buttons.undo": "മാറ്റങ്ങൾ റദ്ദാക്കുക", - "item.edit.relationships.no-relationships": "ബന്ധങ്ങളൊന്നുമില്ല", - "item.edit.relationships.notifications.discarded.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ നിരസിച്ചു. മാറ്റങ്ങൾ പുനഃസ്ഥാപിക്കാൻ 'റദ്ദാക്കുക' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", - "item.edit.relationships.notifications.discarded.title": "മാറ്റങ്ങൾ നിരസിച്ചു", - "item.edit.relationships.notifications.failed.title": "ബന്ധങ്ങൾ എഡിറ്റ് ചെയ്യുന്നതിൽ പിശക്", - "item.edit.relationships.notifications.outdated.content": "നിങ്ങൾ ഇപ്പോൾ പ്രവർത്തിക്കുന്ന ഇനം മറ്റൊരു ഉപയോക്താവ് മാറ്റിയിട്ടുണ്ട്. conflicts ഒഴിവാക്കാൻ നിങ്ങളുടെ നിലവിലെ മാറ്റങ്ങൾ നിരസിച്ചു", - "item.edit.relationships.notifications.outdated.title": "പഴയ മാറ്റങ്ങൾ", - "item.edit.relationships.notifications.saved.content": "ഈ ഇനത്തിന്റെ ബന്ധങ്ങളിലെ നിങ്ങളുടെ മാറ്റങ്ങൾ സംരക്ഷിച്ചു.", - "item.edit.relationships.notifications.saved.title": "ബന്ധങ്ങൾ സംരക്ഷിച്ചു", - "item.edit.relationships.reinstate-button": "റദ്ദാക്കുക", - "item.edit.relationships.save-button": "സംരക്ഷിക്കുക", - "item.edit.relationships.no-entity-type": "ഈ ഇനത്തിനായി ബന്ധങ്ങൾ പ്രവർത്തനക്ഷമമാക്കാൻ 'dspace.entity.type' മെറ്റാഡാറ്റ ചേർക്കുക", - "item.edit.return": "പിന്നിലേക്ക്", - "item.edit.tabs.bitstreams.head": "ബിറ്റ്സ്ട്രീമുകൾ", - "item.edit.tabs.bitstreams.title": "ഇനം എഡിറ്റ് - ബിറ്റ്സ്ട്രീമുകൾ", - "item.edit.tabs.curate.head": "കുറെയറ്റ്", - "item.edit.tabs.curate.title": "ഇനം എഡിറ്റ് - കുറെയറ്റ്", - "item.edit.curate.title": "ഇനം കുറെയറ്റ് ചെയ്യുക: {{item}}", - "item.edit.tabs.access-control.head": "പ്രവേശന നിയന്ത്രണം", - "item.edit.tabs.access-control.title": "ഇനം എഡിറ്റ് - പ്രവേശന നിയന്ത്രണം", - "item.edit.tabs.metadata.head": "മെറ്റാഡാറ്റ", - "item.edit.tabs.metadata.title": "ഇനം എഡിറ്റ് - മെറ്റാഡാറ്റ", - "item.edit.tabs.relationships.head": "ബന്ധങ്ങൾ", - "item.edit.tabs.relationships.title": "ഇനം എഡിറ്റ് - ബന്ധങ്ങൾ", - "item.edit.tabs.status.buttons.authorizations.button": "അനുമതികൾ...", - "item.edit.tabs.status.buttons.authorizations.label": "ഇനത്തിന്റെ അനുമതി നയങ്ങൾ എഡിറ്റ് ചെയ്യുക", - "item.edit.tabs.status.buttons.delete.button": "സ്ഥിരമായി ഇല്ലാതാക്കുക", - "item.edit.tabs.status.buttons.delete.label": "ഇനം പൂർണ്ണമായും ഇല്ലാതാക്കുക", - "item.edit.tabs.status.buttons.mappedCollections.button": "മാപ്പ് ചെയ്ത സംഗ്രഹങ്ങൾ", - "item.edit.tabs.status.buttons.mappedCollections.label": "മാപ്പ് ചെയ്ത സംഗ്രഹങ്ങൾ നിയന്ത്രിക്കുക", - "item.edit.tabs.status.buttons.move.button": "ഈ ഇനം വ്യത്യസ്തമായ ഒരു സംഗ്രഹത്തിലേക്ക് നീക്കുക", - "item.edit.tabs.status.buttons.move.label": "ഇനം മറ്റൊരു സംഗ്രഹത്തിലേക്ക് നീക്കുക", - "item.edit.tabs.status.buttons.private.button": "കണ്ടെത്താൻ കഴിയാത്തതാക്കുക...", - "item.edit.tabs.status.buttons.private.label": "ഇനം കണ്ടെത്താൻ കഴിയാത്തതാക്കുക", - "item.edit.tabs.status.buttons.public.button": "കണ്ടെത്താൻ കഴിയുന്നതാക്കുക...", - "item.edit.tabs.status.buttons.public.label": "ഇനം കണ്ടെത്താൻ കഴിയുന്നതാക്കുക", - "item.edit.tabs.status.buttons.reinstate.button": "പുനഃസ്ഥാപിക്കുക...", - "item.edit.tabs.status.buttons.reinstate.label": "റിപ്പോസിറ്ററിയിലേക്ക് ഇനം പുനഃസ്ഥാപിക്കുക", - "item.edit.tabs.status.buttons.unauthorized": "ഈ പ്രവർത്തനം നടത്താൻ നിങ്ങൾക്ക് അധികാരമില്ല", - "item.edit.tabs.status.buttons.withdraw.button": "ഈ ഇനം പിൻവലിക്കുക", - "item.edit.tabs.status.buttons.withdraw.label": "റിപ്പോസിറ്ററിയിൽ നിന്ന് ഇനം പിൻവലിക്കുക", - "item.edit.tabs.status.description": "ഇനം മാനേജ്മെന്റ് പേജിലേക്ക് സ്വാഗതം. ഇവിടെ നിന്ന് നിങ്ങൾക്ക് ഇനം പിൻവലിക്കാനോ, പുനഃസ്ഥാപിക്കാനോ, നീക്കാനോ അല്ലെങ്കിൽ ഇല്ലാതാക്കാനോ കഴിയും. മറ്റ് ടാബുകളിൽ നിങ്ങൾക്ക് മെറ്റാഡാറ്റ / ബിറ്റ്സ്ട്രീമുകൾ അപ്ഡേറ്റ് ചെയ്യാനോ പുതിയത് ചേർക്കാനോ കഴിയും.", - "item.edit.tabs.status.head": "സ്റ്റാറ്റസ്", - "item.edit.tabs.status.labels.handle": "ഹാൻഡിൽ", - "item.edit.tabs.status.labels.id": "ഇനം ആന്തരിക ID", - "item.edit.tabs.status.labels.itemPage": "ഇനം പേജ്", - "item.edit.tabs.status.labels.lastModified": "അവസാനം പരിഷ്കരിച്ചത്", - "item.edit.tabs.status.title": "ഇനം എഡിറ്റ് - സ്റ്റാറ്റസ്", - "item.edit.tabs.versionhistory.head": "പതിപ്പ് ചരിത്രം", - "item.edit.tabs.versionhistory.title": "ഇനം എഡിറ്റ് - പതിപ്പ് ചരിത്രം", - "item.edit.tabs.versionhistory.under-construction": "പുതിയ പതിപ്പുകൾ എഡിറ്റ് ചെയ്യുകയോ ചേർക്കുകയോ ചെയ്യുന്നത് ഈ യൂസർ ഇന്റർഫേസിൽ ഇതുവരെ സാധ്യമല്ല.", - "item.edit.tabs.view.head": "ഇനം കാണുക", - "item.edit.tabs.view.title": "ഇനം എഡിറ്റ് - കാഴ്ച", - "item.edit.withdraw.cancel": "റദ്ദാക്കുക", - "item.edit.withdraw.confirm": "പിൻവലിക്കുക", - "item.edit.withdraw.description": "ഈ ഇനം ആർക്കൈവിൽ നിന്ന് പിൻവലിക്കണമെന്ന് ഉറപ്പാണോ?", - "item.edit.withdraw.error": "ഇനം പിൻവലിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", - "item.edit.withdraw.header": "ഇനം പിൻവലിക്കുക: {{ id }}", - "item.edit.withdraw.success": "ഇനം വിജയകരമായി പിൻവലിച്ചു", - "item.orcid.return": "പിന്നിലേക്ക്", - "item.listelement.badge": "ഇനം", - "item.page.description": "വിവരണം", - "item.page.org-unit": "സംഘടനാ യൂണിറ്റ്", - "item.page.org-units": "സംഘടനാ യൂണിറ്റുകൾ", - "item.page.project": "ഗവേഷണ പ്രോജക്റ്റ്", - "item.page.projects": "ഗവേഷണ പ്രോജക്റ്റുകൾ", - "item.page.publication": "പ്രസിദ്ധീകരണങ്ങൾ", - "item.page.publications": "പ്രസിദ്ധീകരണങ്ങൾ", - "item.page.article": "ലേഖനം", - "item.page.articles": "ലേഖനങ്ങൾ", - "item.page.journal": "ജേണൽ", - "item.page.journals": "ജേണലുകൾ", - "item.page.journal-issue": "ജേണൽ ഇഷ്യൂ", - "item.page.journal-issues": "ജേണൽ ഇഷ്യൂകൾ", - "item.page.journal-volume": "ജേണൽ വോളിയം", - "item.page.journal-volumes": "ജേണൽ വോളിയങ്ങൾ", - "item.page.journal-issn": "ജേണൽ ISSN", - "item.page.journal-title": "ജേണൽ ശീർഷകം", - "item.page.publisher": "പ്രസാധകൻ", - "item.page.titleprefix": "ഇനം: ", - "item.page.volume-title": "വോളിയം ശീർഷകം", - "item.page.dcterms.spatial": "ജിയോസ്പേഷ്യൽ പോയിന്റ്", - "item.search.results.head": "ഇനം തിരയൽ ഫലങ്ങൾ", - "item.search.title": "ഇനം തിരയൽ", - "item.truncatable-part.show-more": "കൂടുതൽ കാണിക്കുക", - "item.truncatable-part.show-less": "ചുരുക്കുക", - "item.qa-event-notification.check.notification-info": "നിങ്ങളുടെ അക്കൗണ്ടുമായി ബന്ധപ്പെട്ട {{num}} തീർച്ചയാക്കാത്ത നിർദ്ദേശങ്ങൾ ഉണ്ട്", - "item.qa-event-notification-info.check.button": "കാണുക", - "mydspace.qa-event-notification.check.notification-info": "നിങ്ങളുടെ അക്കൗണ്ടുമായി ബന്ധപ്പെട്ട {{num}} തീർച്ചയാക്കാത്ത നിർദ്ദേശങ്ങൾ ഉണ്ട്", - "mydspace.qa-event-notification-info.check.button": "കാണുക", - "workflow-item.search.result.delete-supervision.modal.header": "സൂപ്പർവിഷൻ ഓർഡർ ഇല്ലാതാക്കുക", - "workflow-item.search.result.delete-supervision.modal.info": "സൂപ്പർവിഷൻ ഓർഡർ ഇല്ലാതാക്കണമെന്ന് ഉറപ്പാണോ?", - "workflow-item.search.result.delete-supervision.modal.cancel": "റദ്ദാക്കുക", - "workflow-item.search.result.delete-supervision.modal.confirm": "ഇല്ലാതാക്കുക", - "workflow-item.search.result.notification.deleted.success": "സൂപ്പർവിഷൻ ഓർഡർ \"{{name}}\" വിജയകരമായി ഇല്ലാതാക്കി", - "workflow-item.search.result.notification.deleted.failure": "സൂപ്പർവിഷൻ ഓർഡർ \"{{name}}\" ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", - "workflow-item.search.result.list.element.supervised-by": "സൂപ്പർവൈസ് ചെയ്യുന്നത്:", - "workflow-item.search.result.list.element.supervised.remove-tooltip": "സൂപ്പർവിഷൻ ഗ്രൂപ്പ് നീക്കം ചെയ്യുക", - "confidence.indicator.help-text.accepted": "ഈ അധികാര മൂല്യം ഒരു ഇന്ററാക്ടീവ് ഉപയോക്താവ് ശരിയാണെന്ന് സ്ഥിരീകരിച്ചിട്ടുണ്ട്", - "confidence.indicator.help-text.uncertain": "മൂല്യം ഒറ്റയടിക്ക് സാധുതയുള്ളതാണ്, പക്ഷേ ഒരു മനുഷ്യന് കണ്ടിട്ടും സ്വീകരിച്ചിട്ടും ഇല്ല, അതിനാൽ ഇപ്പോഴും അനിശ്ചിതമാണ്", - "confidence.indicator.help-text.ambiguous": "സമാന സാധുതയുള്ള ഒന്നിലധികം അധികാര മൂല്യങ്ങൾ ഉണ്ട്", - "confidence.indicator.help-text.notfound": "അധികാരത്തിൽ പൊരുത്തപ്പെടുന്ന ഉത്തരങ്ങളൊന്നുമില്ല", - "confidence.indicator.help-text.failed": "അധികാരത്തിന് ഒരു ആന്തരിക പരാജയം നേരിട്ടു", - "confidence.indicator.help-text.rejected": "ഈ സമർപ്പണം നിരസിക്കാൻ അധികാരം ശുപാർശ ചെയ്യുന്നു", - "confidence.indicator.help-text.novalue": "ഈ മൂല്യത്തിനായി യുക്തിസഹമായ ആത്മവിശ്വാസ മൂല്യം ഒന്നും തിരികെ ലഭിച്ചില്ല", - "confidence.indicator.help-text.unset": "ഈ മൂല്യത്തിനായി ആത്മവിശ്വാസം ഒരിക്കലും റെക്കോർഡ് ചെയ്തിട്ടില്ല", - "confidence.indicator.help-text.unknown": "അജ്ഞാതമായ ആത്മവിശ്വാസ മൂല്യം", - "item.page.abstract": "സംഗ്രഹം", - "item.page.author": "രചയിതാവ്", - "item.page.authors": "രചയിതാക്കൾ", - "item.page.citation": "ഉദ്ധരണി", - "item.page.collections": "സംഗ്രഹങ്ങൾ", - "item.page.collections.loading": "ലോഡ് ചെയ്യുന്നു...", - "item.page.collections.load-more": "കൂടുതൽ ലോഡ് ചെയ്യുക", - "item.page.date": "തീയതി", - "item.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", - "item.page.files": "ഫയലുകൾ", - "item.page.filesection.description": "വിവരണം:", - "item.page.filesection.download": "ഡൗൺലോഡ് ചെയ്യുക", - "item.page.filesection.format": "ഫോർമാറ്റ്:", - "item.page.filesection.name": "പേര്:", - "item.page.filesection.size": "വലുപ്പം:", - "item.page.journal.search.title": "ഈ ജേണലിലെ ലേഖനങ്ങൾ", - "item.page.link.full": "പൂർണ്ണ ഇനം പേജ്", - "item.page.link.simple": "ലളിതമായ ഇനം പേജ്", - "item.page.options": "ഓപ്ഷനുകൾ", - "item.page.orcid.title": "ORCID", - "item.page.orcid.tooltip": "ORCID സെറ്റിംഗ് പേജ് തുറക്കുക", - "item.page.person.search.title": "ഈ രചയിതാവിന്റെ ലേഖനങ്ങൾ", - "item.page.related-items.view-more": "{{ amount }} കൂടുതൽ കാണിക്കുക", - "item.page.related-items.view-less": "അവസാന {{ amount }} മറയ്ക്കുക", - "item.page.relationships.isAuthorOfPublication": "പ്രസിദ്ധീകരണങ്ങൾ", - "item.page.relationships.isJournalOfPublication": "പ്രസിദ്ധീകരണങ്ങൾ", - "item.page.relationships.isOrgUnitOfPerson": "രചയിതാക്കൾ", - "item.page.relationships.isOrgUnitOfProject": "ഗവേഷണ പ്രോജക്റ്റുകൾ", - "item.page.subject": "കീവേഡുകൾ", - "item.page.uri": "URI", - "item.page.bitstreams.view-more": "കൂടുതൽ കാണിക്കുക", - "item.page.bitstreams.collapse": "ചുരുക്കുക", - "item.page.bitstreams.primary": "പ്രാഥമികം", - "item.page.filesection.original.bundle": "യഥാർത്ഥ ബണ്ടിൽ", - "item.page.filesection.license.bundle": "ലൈസൻസ് ബണ്ടിൽ", - "item.page.return": "പിന്നിലേക്ക്", - "item.page.version.create": "പുതിയ പതിപ്പ് സൃഷ്ടിക്കുക", - "item.page.withdrawn": "ഈ ഇനത്തിനായി ഒരു പിൻവലിക്കൽ അഭ്യർത്ഥിക്കുക", - "item.page.reinstate": "പുനഃസ്ഥാപനം അഭ്യർത്ഥിക്കുക", - "item.page.version.hasDraft": "പതിപ്പ് ചരിത്രത്തിൽ ഒരു പുരോഗമിക്കുന്ന സമർപ്പണം ഉള്ളതിനാൽ ഒരു പുതിയ പതിപ്പ് സൃഷ്ടിക്കാൻ കഴിയില്ല", - "item.page.claim.button": "ക്ലെയിം ചെയ്യുക", - "item.page.claim.tooltip": "ഈ ഇനം പ്രൊഫൈലായി ക്ലെയിം ചെയ്യുക", - "item.page.image.alt.ROR": "ROR ലോഗോ", - "item.preview.dc.identifier.uri": "ഐഡന്റിഫയർ:", - "item.preview.dc.contributor.author": "രചയിതാക്കൾ:", - "item.preview.dc.date.issued": "പ്രസിദ്ധീകരിച്ച തീയതി:", - "item.preview.dc.description": "വിവരണം:", - "item.preview.dc.description.abstract": "സംഗ്രഹം:", - "item.preview.dc.identifier.other": "മറ്റ് ഐഡന്റിഫയർ:", - "item.preview.dc.language.iso": "ഭാഷ:", - "item.preview.dc.subject": "വിഷയങ്ങൾ:", - "item.preview.dc.title": "ശീർഷകം:", - "item.preview.dc.type": "തരം:", - "item.preview.oaire.version": "പതിപ്പ്", - "item.preview.oaire.citation.issue": "ഇഷ്യൂ", - "item.preview.oaire.citation.volume": "വോളിയം", - "item.preview.oaire.citation.title": "ഉദ്ധരണി കണ്ടെയ്നർ", - "item.preview.oaire.citation.startPage": "ഉദ്ധരണി ആരംഭ പേജ്", - "item.preview.oaire.citation.endPage": "ഉദ്ധരണി അവസാന പേജ്", - "item.preview.dc.relation.hasversion": "പതിപ്പ് ഉണ്ട്", - "item.preview.dc.relation.ispartofseries": "സീരീസിന്റെ ഭാഗമാണ്", - "item.preview.dc.rights": "അവകാശങ്ങൾ", - "item.preview.dc.identifier.other": "മറ്റ് ഐഡന്റിഫയർ", - "item.preview.dc.relation.issn": "ISSN", - "item.preview.dc.identifier.isbn": "ISBN", - "item.preview.dc.identifier": "ഐഡന്റിഫയർ:", - "item.preview.dc.relation.ispartof": "ജേണൽ അല്ലെങ്കിൽ സീരീസ്", - "item.preview.dc.identifier.doi": "DOI", - "item.preview.dc.publisher": "പ്രസാധകൻ:", - "item.preview.person.familyName": "അവസാന പേര്:", - "item.preview.person.givenName": "പേര്:", - "item.preview.person.identifier.orcid": "ORCID:", - "item.preview.person.affiliation.name": "അഫിലിയേഷനുകൾ:", - "item.preview.project.funder.name": "ഫണ്ടർ:", - "item.preview.project.funder.identifier": "ഫണ്ടർ ഐഡന്റിഫയർ:", - "item.preview.project.investigator": "പ്രോജക്റ്റ് അന്വേഷകൻ", - "item.preview.oaire.awardNumber": "ഫണ്ടിംഗ് ID:", - "item.preview.dc.title.alternative": "എക്രോണിം:", - "item.preview.dc.coverage.spatial": "അധികാരപരിധി:", - "item.preview.oaire.fundingStream": "ഫണ്ടിംഗ് സ്ട്രീം:", - "item.preview.oairecerif.identifier.url": "URL", - "item.preview.organization.address.addressCountry": "രാജ്യം", - "item.preview.organization.foundingDate": "സ്ഥാപന തീയതി", - "item.preview.organization.identifier.crossrefid": "Crossref ID", - "item.preview.organization.identifier.isni": "ISNI", - "item.preview.organization.identifier.ror": "ROR ID", - "item.preview.organization.legalName": "നിയമപരമായ പേര്", - "item.preview.dspace.entity.type": "എന്റിറ്റി തരം:", - "item.preview.creativework.publisher": "പ്രസാധകൻ", - "item.preview.creativeworkseries.issn": "ISSN", - "item.preview.dc.identifier.issn": "ISSN", - "item.preview.dc.identifier.openalex": "OpenAlex ഐഡന്റിഫയർ", - "item.preview.dc.description": "വിവരണം", - "item.select.confirm": "തിരഞ്ഞെടുത്തത് സ്ഥിരീകരിക്കുക", - "item.select.empty": "കാണിക്കാൻ ഇനങ്ങളൊന്നുമില്ല", - "item.select.table.selected": "തിരഞ്ഞെടുത്ത ഇനങ്ങൾ", - "item.select.table.select": "ഇനം തിരഞ്ഞെടുക്കുക", - "item.select.table.deselect": "ഇനം അൺസെലക്ട് ചെയ്യുക", - "item.select.table.author": "രചയിതാവ്", - "item.select.table.collection": "സംഗ്രഹം", - "item.select.table.title": "ശീർഷകം", - "item.version.history.empty": "ഈ ഇനത്തിന് ഇതുവരെ മറ്റ് പതിപ്പുകളൊന്നുമില്ല.", - "item.version.history.head": "പതിപ്പ് ചരിത്രം", - "item.version.history.return": "പിന്നിലേക്ക്", - "item.version.history.selected": "തിരഞ്ഞെടുത്ത പതിപ്പ്", - "item.version.history.selected.alert": "നിങ്ങൾ ഇപ്പോൾ ഇനത്തിന്റെ {{version}} പതിപ്പ് കാണുന്നു.", - "item.version.history.table.version": "പതിപ്പ്", - "item.version.history.table.item": "ഇനം", - "item.version.history.table.editor": "എഡിറ്റർ", - "item.version.history.table.date": "തീയതി", - "item.version.history.table.summary": "സംഗ്രഹം", - "item.version.history.table.workspaceItem": "വർക്ക്സ്പേസ് ഇനം", - "item.version.history.table.workflowItem": "വർക്ക്ഫ്ലോ ഇനം", - "item.version.history.table.actions": "പ്രവർത്തനം", - "item.version.history.table.action.editWorkspaceItem": "വർക്ക്സ്പേസ് ഇനം എഡിറ്റ് ചെയ്യുക", - "item.version.history.table.action.editSummary": "സംഗ്രഹം എഡിറ്റ് ചെയ്യുക", - "item.version.history.table.action.saveSummary": "സംഗ്രഹ എഡിറ്റുകൾ സംരക്ഷിക്കുക", - "item.version.history.table.action.discardSummary": "സംഗ്രഹ എഡിറ്റുകൾ നിരസിക്കുക", - "item.version.history.table.action.newVersion": "ഇതിൽ നിന്ന് ഒരു പുതിയ പതിപ്പ് സൃഷ്ടിക്കുക", - "item.version.history.table.action.deleteVersion": "പതിപ്പ് ഇല്ലാതാക്കുക", - "item.version.history.table.action.hasDraft": "പതിപ്പ് ചരിത്രത്തിൽ ഒരു പുരോഗമിക്കുന്ന സമർപ്പണം ഉള്ളതിനാൽ ഒരു പുതിയ പതിപ്പ് സൃഷ്ടിക്കാൻ കഴിയില്ല", - - "item.version.notice": "ഇത് ഈ ഇനത്തിന്റെ ഏറ്റവും പുതിയ പതിപ്പല്ല. ഏറ്റവും പുതിയ പതിപ്പ് ഇവിടെ കാണാം.", - - "item.version.create.modal.header": "പുതിയ പതിപ്പ്", - - "item.qa.withdrawn.modal.header": "പിൻവലിക്കൽ അഭ്യർത്ഥിക്കുക", - - "item.qa.reinstate.modal.header": "പുനഃസ്ഥാപിക്കൽ അഭ്യർത്ഥിക്കുക", - - "item.qa.reinstate.create.modal.header": "പുതിയ പതിപ്പ്", - - "item.version.create.modal.text": "ഈ ഇനത്തിനായി ഒരു പുതിയ പതിപ്പ് സൃഷ്ടിക്കുക", - - "item.version.create.modal.text.startingFrom": "{{version}} പതിപ്പിൽ നിന്ന് ആരംഭിക്കുന്നു", - - "item.version.create.modal.button.confirm": "സൃഷ്ടിക്കുക", - - "item.version.create.modal.button.confirm.tooltip": "പുതിയ പതിപ്പ് സൃഷ്ടിക്കുക", - - "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "അഭ്യർത്ഥന അയയ്ക്കുക", - - "qa-withdrown.create.modal.button.confirm": "പിൻവലിക്കുക", - - "qa-reinstate.create.modal.button.confirm": "പുനഃസ്ഥാപിക്കുക", - - "item.version.create.modal.button.cancel": "റദ്ദാക്കുക", - - "item.qa.withdrawn-reinstate.create.modal.button.cancel": "റദ്ദാക്കുക", - - "item.version.create.modal.button.cancel.tooltip": "പുതിയ പതിപ്പ് സൃഷ്ടിക്കരുത്", - - "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "അഭ്യർത്ഥന അയയ്ക്കരുത്", - - "item.version.create.modal.form.summary.label": "സംഗ്രഹം", - - "qa-withdrawn.create.modal.form.summary.label": "നിങ്ങൾ ഈ ഇനം പിൻവലിക്കാൻ അഭ്യർത്ഥിക്കുന്നു", - - "qa-withdrawn.create.modal.form.summary2.label": "പിൻവലിക്കലിനുള്ള കാരണം നൽകുക", - - "qa-reinstate.create.modal.form.summary.label": "നിങ്ങൾ ഈ ഇനം പുനഃസ്ഥാപിക്കാൻ അഭ്യർത്ഥിക്കുന്നു", - - "qa-reinstate.create.modal.form.summary2.label": "പുനഃസ്ഥാപിക്കലിനുള്ള കാരണം നൽകുക", - - "item.version.create.modal.form.summary.placeholder": "പുതിയ പതിപ്പിനായി സംഗ്രഹം നൽകുക", - - "qa-withdrown.modal.form.summary.placeholder": "പിൻവലിക്കലിനുള്ള കാരണം നൽകുക", - - "qa-reinstate.modal.form.summary.placeholder": "പുനഃസ്ഥാപിക്കലിനുള്ള കാരണം നൽകുക", - - "item.version.create.modal.submitted.header": "പുതിയ പതിപ്പ് സൃഷ്ടിക്കുന്നു...", - - "item.qa.withdrawn.modal.submitted.header": "പിൻവലിക്കൽ അഭ്യർത്ഥന അയയ്ക്കുന്നു...", - - "correction-type.manage-relation.action.notification.reinstate": "പുനഃസ്ഥാപിക്കൽ അഭ്യർത്ഥന അയച്ചു.", - - "correction-type.manage-relation.action.notification.withdrawn": "പിൻവലിക്കൽ അഭ്യർത്ഥന അയച്ചു.", - - "item.version.create.modal.submitted.text": "പുതിയ പതിപ്പ് സൃഷ്ടിക്കുന്നു. ഇനത്തിന് ധാരാളം ബന്ധങ്ങളുണ്ടെങ്കിൽ ഇതിന് സമയമെടുക്കാം.", - - "item.version.create.notification.success": "{{version}} പതിപ്പ് നമ്പറുള്ള പുതിയ പതിപ്പ് സൃഷ്ടിച്ചു", - - "item.version.create.notification.failure": "പുതിയ പതിപ്പ് സൃഷ്ടിച്ചിട്ടില്ല", - - "item.version.create.notification.inProgress": "പതിപ്പ് ചരിത്രത്തിൽ പ്രക്രിയയിലുള്ള സമർപ്പണമുണ്ടെന്നതിനാൽ പുതിയ പതിപ്പ് സൃഷ്ടിക്കാൻ കഴിയില്ല", - - "item.version.delete.modal.header": "പതിപ്പ് ഇല്ലാതാക്കുക", - - "item.version.delete.modal.text": "{{version}} പതിപ്പ് ഇല്ലാതാക്കണമോ?", - - "item.version.delete.modal.button.confirm": "ഇല്ലാതാക്കുക", - - "item.version.delete.modal.button.confirm.tooltip": "ഈ പതിപ്പ് ഇല്ലാതാക്കുക", - - "item.version.delete.modal.button.cancel": "റദ്ദാക്കുക", - - "item.version.delete.modal.button.cancel.tooltip": "ഈ പതിപ്പ് ഇല്ലാതാക്കരുത്", - - "item.version.delete.notification.success": "{{version}} പതിപ്പ് നമ്പർ ഇല്ലാതാക്കി", - - "item.version.delete.notification.failure": "{{version}} പതിപ്പ് നമ്പർ ഇല്ലാതാക്കിയിട്ടില്ല", - - "item.version.edit.notification.success": "{{version}} പതിപ്പ് നമ്പറിന്റെ സംഗ്രഹം മാറ്റി", - - "item.version.edit.notification.failure": "{{version}} പതിപ്പ് നമ്പറിന്റെ സംഗ്രഹം മാറ്റിയിട്ടില്ല", - - "itemtemplate.edit.metadata.add-button": "ചേർക്കുക", - - "itemtemplate.edit.metadata.discard-button": "ഉപേക്ഷിക്കുക", - - "itemtemplate.edit.metadata.edit.language": "ഭാഷ എഡിറ്റ് ചെയ്യുക", - - "itemtemplate.edit.metadata.edit.value": "മൂല്യം എഡിറ്റ് ചെയ്യുക", - - "itemtemplate.edit.metadata.edit.buttons.confirm": "സ്ഥിരീകരിക്കുക", - - "itemtemplate.edit.metadata.edit.buttons.drag": "പുനഃക്രമീകരിക്കാൻ വലിച്ചിടുക", - - "itemtemplate.edit.metadata.edit.buttons.edit": "എഡിറ്റ് ചെയ്യുക", - - "itemtemplate.edit.metadata.edit.buttons.remove": "നീക്കം ചെയ്യുക", - - "itemtemplate.edit.metadata.edit.buttons.undo": "മാറ്റങ്ങൾ റദ്ദാക്കുക", - - "itemtemplate.edit.metadata.edit.buttons.unedit": "എഡിറ്റിംഗ് നിർത്തുക", - - "itemtemplate.edit.metadata.empty": "ഇനം ടെംപ്ലേറ്റിൽ ഇപ്പോൾ മെറ്റാഡാറ്റ ഇല്ല. മെറ്റാഡാറ്റ മൂല്യം ചേർക്കാൻ ചേർക്കുക ക്ലിക്ക് ചെയ്യുക.", - - "itemtemplate.edit.metadata.headers.edit": "എഡിറ്റ് ചെയ്യുക", - - "itemtemplate.edit.metadata.headers.field": "ഫീൽഡ്", - - "itemtemplate.edit.metadata.headers.language": "ഭാഷ", - - "itemtemplate.edit.metadata.headers.value": "മൂല്യം", - - "itemtemplate.edit.metadata.metadatafield": "ഫീൽഡ് എഡിറ്റ് ചെയ്യുക", - - "itemtemplate.edit.metadata.metadatafield.error": "മെറ്റാഡാറ്റ ഫീൽഡ് സാധൂകരിക്കുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", - - "itemtemplate.edit.metadata.metadatafield.invalid": "സാധുവായ ഒരു മെറ്റാഡാറ്റ ഫീൽഡ് തിരഞ്ഞെടുക്കുക", - - "itemtemplate.edit.metadata.notifications.discarded.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ ഉപേക്ഷിച്ചു. നിങ്ങളുടെ മാറ്റങ്ങൾ പുനഃസ്ഥാപിക്കാൻ 'അൺഡു' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", - - "itemtemplate.edit.metadata.notifications.discarded.title": "മാറ്റങ്ങൾ ഉപേക്ഷിച്ചു", - - "itemtemplate.edit.metadata.notifications.error.title": "ഒരു പിശക് സംഭവിച്ചു", - - "itemtemplate.edit.metadata.notifications.invalid.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ സേവ് ചെയ്തിട്ടില്ല. സേവ് ചെയ്യുന്നതിന് മുമ്പ് എല്ലാ ഫീൽഡുകളും സാധുവാണെന്ന് ഉറപ്പാക്കുക.", - - "itemtemplate.edit.metadata.notifications.invalid.title": "മെറ്റാഡാറ്റ അസാധുവാണ്", - - "itemtemplate.edit.metadata.notifications.outdated.content": "നിങ്ങൾ ഇപ്പോൾ പ്രവർത്തിക്കുന്ന ഇനം ടെംപ്ലേറ്റ് മറ്റൊരു ഉപയോക്താവ് മാറ്റിയിട്ടുണ്ട്. conflicts ഒഴിവാക്കാൻ നിങ്ങളുടെ നിലവിലെ മാറ്റങ്ങൾ ഉപേക്ഷിച്ചു", - - "itemtemplate.edit.metadata.notifications.outdated.title": "മാറ്റങ്ങൾ കാലഹരണപ്പെട്ടു", - - "itemtemplate.edit.metadata.notifications.saved.content": "ഈ ഇനം ടെംപ്ലേറ്റിന്റെ മെറ്റാഡാറ്റയിലെ നിങ്ങളുടെ മാറ്റങ്ങൾ സേവ് ചെയ്തു.", - - "itemtemplate.edit.metadata.notifications.saved.title": "മെറ്റാഡാറ്റ സേവ് ചെയ്തു", - - "itemtemplate.edit.metadata.reinstate-button": "അൺഡു", - - "itemtemplate.edit.metadata.reset-order-button": "പുനഃക്രമീകരണം റദ്ദാക്കുക", - - "itemtemplate.edit.metadata.save-button": "സേവ് ചെയ്യുക", - - "journal.listelement.badge": "ജേണൽ", - - "journal.page.description": "വിവരണം", - - "journal.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", - - "journal.page.editor": "എഡിറ്റർ-ഇൻ-ചീഫ്", - - "journal.page.issn": "ISSN", - - "journal.page.publisher": "പ്രസാധകൻ", - - "journal.page.options": "ഓപ്ഷനുകൾ", - - "journal.page.titleprefix": "ജേണൽ: ", - - "journal.search.results.head": "ജേണൽ തിരയൽ ഫലങ്ങൾ", - - "journal-relationships.search.results.head": "ജേണൽ തിരയൽ ഫലങ്ങൾ", - - "journal.search.title": "ജേണൽ തിരയൽ", - - "journalissue.listelement.badge": "ജേണൽ ഇഷ്യൂ", - - "journalissue.page.description": "വിവരണം", - - "journalissue.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", - - "journalissue.page.issuedate": "ഇഷ്യൂ തീയതി", - - "journalissue.page.journal-issn": "ജേണൽ ISSN", - - "journalissue.page.journal-title": "ജേണൽ ശീർഷകം", - - "journalissue.page.keyword": "കീവേഡുകൾ", - - "journalissue.page.number": "നമ്പർ", - - "journalissue.page.options": "ഓപ്ഷനുകൾ", - - "journalissue.page.titleprefix": "ജേണൽ ഇഷ്യൂ: ", - - "journalissue.search.results.head": "ജേണൽ ഇഷ്യൂ തിരയൽ ഫലങ്ങൾ", - - "journalvolume.listelement.badge": "ജേണൽ വാല്യം", - - "journalvolume.page.description": "വിവരണം", - - "journalvolume.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", - - "journalvolume.page.issuedate": "ഇഷ്യൂ തീയതി", - - "journalvolume.page.options": "ഓപ്ഷനുകൾ", - - "journalvolume.page.titleprefix": "ജേണൽ വാല്യം: ", - - "journalvolume.page.volume": "വാല്യം", - - "journalvolume.search.results.head": "ജേണൽ വാല്യം തിരയൽ ഫലങ്ങൾ", - - "iiifsearchable.listelement.badge": "ഡോക്യുമെന്റ് മീഡിയ", - - "iiifsearchable.page.titleprefix": "ഡോക്യുമെന്റ്: ", - - "iiifsearchable.page.doi": "സ്ഥിരമായ ലിങ്ക്: ", - - "iiifsearchable.page.issue": "ഇഷ്യൂ: ", - - "iiifsearchable.page.description": "വിവരണം: ", - - "iiifviewer.fullscreen.notice": "മികച്ച കാഴ്ചയ്ക്ക് ഫുൾ സ്ക്രീൻ ഉപയോഗിക്കുക.", - - "iiif.listelement.badge": "ഇമേജ് മീഡിയ", - - "iiif.page.titleprefix": "ഇമേജ്: ", - - "iiif.page.doi": "സ്ഥിരമായ ലിങ്ക്: ", - - "iiif.page.issue": "ഇഷ്യൂ: ", - - "iiif.page.description": "വിവരണം: ", - - "loading.bitstream": "ബിറ്റ്സ്ട്രീം ലോഡ് ചെയ്യുന്നു...", - - "loading.bitstreams": "ബിറ്റ്സ്ട്രീമുകൾ ലോഡ് ചെയ്യുന്നു...", - - "loading.browse-by": "ഇനങ്ങൾ ലോഡ് ചെയ്യുന്നു...", - - "loading.browse-by-page": "പേജ് ലോഡ് ചെയ്യുന്നു...", - - "loading.collection": "കളക്ഷൻ ലോഡ് ചെയ്യുന്നു...", - - "loading.collections": "കളക്ഷനുകൾ ലോഡ് ചെയ്യുന്നു...", - - "loading.content-source": "ഉള്ളടക്ക ഉറവിടം ലോഡ് ചെയ്യുന്നു...", - - "loading.community": "കമ്മ്യൂണിറ്റി ലോഡ് ചെയ്യുന്നു...", - - "loading.default": "ലോഡ് ചെയ്യുന്നു...", - - "loading.item": "ഇനം ലോഡ് ചെയ്യുന്നു...", - - "loading.items": "ഇനങ്ങൾ ലോഡ് ചെയ്യുന്നു...", - - "loading.mydspace-results": "ഇനങ്ങൾ ലോഡ് ചെയ്യുന്നു...", - - "loading.objects": "ലോഡ് ചെയ്യുന്നു...", - - "loading.recent-submissions": "സമീപകാല സമർപ്പണങ്ങൾ ലോഡ് ചെയ്യുന്നു...", - - "loading.search-results": "തിരയൽ ഫലങ്ങൾ ലോഡ് ചെയ്യുന്നു...", - - "loading.sub-collections": "സബ്-കളക്ഷനുകൾ ലോഡ് ചെയ്യുന്നു...", - - "loading.sub-communities": "സബ്-കമ്മ്യൂണിറ്റികൾ ലോഡ് ചെയ്യുന്നു...", - - "loading.top-level-communities": "ടോപ്പ്-ലെവൽ കമ്മ്യൂണിറ്റികൾ ലോഡ് ചെയ്യുന്നു...", - - "login.form.email": "ഇമെയിൽ വിലാസം", - - "login.form.forgot-password": "നിങ്ങളുടെ പാസ്വേഡ് മറന്നുപോയോ?", - - "login.form.header": "ദയവായി DSpace-ലേക്ക് ലോഗിൻ ചെയ്യുക", - - "login.form.new-user": "പുതിയ ഉപയോക്താവാണോ? രജിസ്റ്റർ ചെയ്യാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക.", - - "login.form.oidc": "OIDC ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക", - - "login.form.orcid": "ORCID ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക", - - "login.form.saml": "SAML ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക", - - "login.form.shibboleth": "Shibboleth ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക", - - "login.form.password": "പാസ്വേഡ്", - - "login.form.submit": "ലോഗിൻ ചെയ്യുക", - - "login.title": "ലോഗിൻ", - - "login.breadcrumbs": "ലോഗിൻ", - - "logout.form.header": "DSpace-ൽ നിന്ന് ലോഗൗട്ട് ചെയ്യുക", - - "logout.form.submit": "ലോഗൗട്ട് ചെയ്യുക", - - "logout.title": "ലോഗൗട്ട്", - - "menu.header.nav.description": "അഡ്മിൻ നാവിഗേഷൻ ബാർ", - - "menu.header.admin": "മാനേജ്മെന്റ്", - - "menu.header.image.logo": "റെപ്പോസിറ്ററി ലോഗോ", - - "menu.header.admin.description": "മാനേജ്മെന്റ് മെനു", - - "menu.section.access_control": "ആക്സസ് കൺട്രോൾ", - - "menu.section.access_control_authorizations": "അനുമതികൾ", - - "menu.section.access_control_bulk": "ബൾക്ക് ആക്സസ് മാനേജ്മെന്റ്", - - "menu.section.access_control_groups": "ഗ്രൂപ്പുകൾ", - - "menu.section.access_control_people": "ആളുകൾ", - - "menu.section.reports": "റിപ്പോർട്ടുകൾ", - - "menu.section.reports.collections": "ഫിൽട്ടർ ചെയ്ത കളക്ഷനുകൾ", - - "menu.section.reports.queries": "മെറ്റാഡാറ്റ ക്വറി", - - "menu.section.admin_search": "അഡ്മിൻ തിരയൽ", - - "menu.section.browse_community": "ഈ കമ്മ്യൂണിറ്റി", - - "menu.section.browse_community_by_author": "രചയിതാവ് പ്രകാരം", - - "menu.section.browse_community_by_issue_date": "ഇഷ്യൂ തീയതി പ്രകാരം", - - "menu.section.browse_community_by_title": "ശീർഷകം പ്രകാരം", - - "menu.section.browse_global": "DSpace എല്ലാം", - - "menu.section.browse_global_by_author": "രചയിതാവ് പ്രകാരം", - - "menu.section.browse_global_by_dateissued": "ഇഷ്യൂ തീയതി പ്രകാരം", - - "menu.section.browse_global_by_subject": "വിഷയം പ്രകാരം", - - "menu.section.browse_global_by_srsc": "ഗവേഷണ വിഷയ വിഭാഗങ്ങൾ പ്രകാരം", - - "menu.section.browse_global_by_nsi": "നോർവീജിയൻ സയൻസ് ഇൻഡക്സ് പ്രകാരം", - - "menu.section.browse_global_by_title": "ശീർഷകം പ്രകാരം", - - "menu.section.browse_global_communities_and_collections": "കമ്മ്യൂണിറ്റികളും കളക്ഷനുകളും", - - "menu.section.browse_global_geospatial_map": "ജിയോലൊക്കേഷൻ (മാപ്പ്) പ്രകാരം", - - "menu.section.control_panel": "കൺട്രോൾ പാനൽ", - - "menu.section.curation_task": "ക്യൂറേഷൻ ടാസ്ക്", - - "menu.section.edit": "എഡിറ്റ്", - - "menu.section.edit_collection": "കളക്ഷൻ", - - "menu.section.edit_community": "കമ്മ്യൂണിറ്റി", - - "menu.section.edit_item": "ഇനം", - - "menu.section.export": "എക്സ്പോർട്ട്", - - "menu.section.export_collection": "കളക്ഷൻ", - - "menu.section.export_community": "കമ്മ്യൂണിറ്റി", - - "menu.section.export_item": "ഇനം", - - "menu.section.export_metadata": "മെറ്റാഡാറ്റ", - - "menu.section.export_batch": "ബാച്ച് എക്സ്പോർട്ട് (ZIP)", - - "menu.section.icon.access_control": "ആക്സസ് കൺട്രോൾ മെനു വിഭാഗം", - - "menu.section.icon.reports": "റിപ്പോർട്ടുകൾ മെനു വിഭാഗം", - - "menu.section.icon.admin_search": "അഡ്മിൻ തിരയൽ മെനു വിഭാഗം", - - "menu.section.icon.control_panel": "കൺട്രോൾ പാനൽ മെനു വിഭാഗം", - - "menu.section.icon.curation_tasks": "ക്യൂറേഷൻ ടാസ്ക് മെനു വിഭാഗം", - - "menu.section.icon.edit": "എഡിറ്റ് മെനു വിഭാഗം", - - "menu.section.icon.export": "എക്സ്പോർട്ട് മെനു വിഭാഗം", - - "menu.section.icon.find": "ഫൈൻഡ് മെനു വിഭാഗം", - - "menu.section.icon.health": "ഹെൽത്ത് ചെക്ക് മെനു വിഭാഗം", - - "menu.section.icon.import": "ഇംപോർട്ട് മെനു വിഭാഗം", - - "menu.section.icon.new": "ന്യൂ മെനു വിഭാഗം", - - "menu.section.icon.pin": "സൈഡ്ബാർ പിൻ ചെയ്യുക", - - "menu.section.icon.unpin": "സൈഡ്ബാർ അൺപിൻ ചെയ്യുക", - - "menu.section.icon.notifications": "നോട്ടിഫിക്കേഷനുകൾ മെനു വിഭാഗം", - - "menu.section.import": "ഇംപോർട്ട്", - - "menu.section.import_batch": "ബാച്ച് ഇംപോർട്ട് (ZIP)", - - "menu.section.import_metadata": "മെറ്റാഡാറ്റ", - - "menu.section.new": "പുതിയത്", - - "menu.section.new_collection": "കളക്ഷൻ", - - "menu.section.new_community": "കമ്മ്യൂണിറ്റി", - - "menu.section.new_item": "ഇനം", - - "menu.section.new_item_version": "ഇനം പതിപ്പ്", - - "menu.section.new_process": "പ്രോസസ്സ്", - - "menu.section.notifications": "നോട്ടിഫിക്കേഷനുകൾ", - - "menu.section.quality-assurance": "ഗുണനിലവാര ഉറപ്പ്", - - "menu.section.notifications_publication-claim": "പബ്ലിക്കേഷൻ ക്ലെയിം", - - "menu.section.pin": "സൈഡ്ബാർ പിൻ ചെയ്യുക", - - "menu.section.unpin": "സൈഡ്ബാർ അൺപിൻ ചെയ്യുക", - - "menu.section.processes": "പ്രോസസുകൾ", - - "menu.section.health": "ആരോഗ്യം", - - "menu.section.registries": "റെജിസ്ട്രികൾ", - - "menu.section.registries_format": "ഫോർമാറ്റ്", - - "menu.section.registries_metadata": "മെറ്റാഡാറ്റ", - - "menu.section.statistics": "സ്ഥിതിവിവരക്കണക്കുകൾ", - - "menu.section.statistics_task": "സ്ഥിതിവിവരക്കണക്കുകൾ ടാസ്ക്", - - "menu.section.toggle.access_control": "ആക്സസ് കൺട്രോൾ വിഭാഗം ടോഗിൾ ചെയ്യുക", - - "menu.section.toggle.reports": "റിപ്പോർട്ടുകൾ വിഭാഗം ടോഗിൾ ചെയ്യുക", - - "menu.section.toggle.control_panel": "കൺട്രോൾ പാനൽ വിഭാഗം ടോഗിൾ ചെയ്യുക", - "menu.section.toggle.curation_task": "കുറേഷൻ ടാസ്ക് വിഭാഗം ടോഗിൾ ചെയ്യുക", - "menu.section.toggle.edit": "എഡിറ്റ് വിഭാഗം ടോഗിൾ ചെയ്യുക", - "menu.section.toggle.export": "എക്സ്പോർട്ട് വിഭാഗം ടോഗിൾ ചെയ്യുക", - "menu.section.toggle.find": "ഫൈൻഡ് വിഭാഗം ടോഗിൾ ചെയ്യുക", - "menu.section.toggle.import": "ഇംപോർട്ട് വിഭാഗം ടോഗിൾ ചെയ്യുക", - "menu.section.toggle.new": "ന്യൂ വിഭാഗം ടോഗിൾ ചെയ്യുക", - "menu.section.toggle.registries": "റെജിസ്ട്രികൾ വിഭാഗം ടോഗിൾ ചെയ്യുക", - "menu.section.toggle.statistics_task": "സ്റ്റാറ്റിസ്റ്റിക്സ് ടാസ്ക് വിഭാഗം ടോഗിൾ ചെയ്യുക", - "menu.section.workflow": "വർക്ക്ഫ്ലോ അഡ്മിനിസ്റ്റർ ചെയ്യുക", - - "metadata-export-search.tooltip": "തിരയൽ ഫലങ്ങൾ CSV ആയി എക്സ്പോർട്ട് ചെയ്യുക", - "metadata-export-search.submit.success": "എക്സ്പോർട്ട് വിജയകരമായി ആരംഭിച്ചു", - "metadata-export-search.submit.error": "എക്സ്പോർട്ട് ആരംഭിക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "mydspace.breadcrumbs": "എന്റെ DSpace", - "mydspace.description": "", - "mydspace.messages.controller-help": "ഇതം സമർപ്പിച്ചയാളെ സന്ദേശം അയയ്ക്കാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", - "mydspace.messages.description-placeholder": "നിങ്ങളുടെ സന്ദേശം ഇവിടെ ഇടുക...", - "mydspace.messages.hide-msg": "സന്ദേശം മറയ്ക്കുക", - "mydspace.messages.mark-as-read": "വായിച്ചതായി അടയാളപ്പെടുത്തുക", - "mydspace.messages.mark-as-unread": "വായിക്കാത്തതായി അടയാളപ്പെടുത്തുക", - "mydspace.messages.no-content": "ഉള്ളടക്കം ഇല്ല.", - "mydspace.messages.no-messages": "ഇതുവരെ സന്ദേശങ്ങളൊന്നുമില്ല.", - "mydspace.messages.send-btn": "അയയ്ക്കുക", - "mydspace.messages.show-msg": "സന്ദേശം കാണിക്കുക", - "mydspace.messages.subject-placeholder": "വിഷയം...", - "mydspace.messages.submitter-help": "കൺട്രോളറിന് സന്ദേശം അയയ്ക്കാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", - "mydspace.messages.title": "സന്ദേശങ്ങൾ", - "mydspace.messages.to": "ഇതിലേക്ക്", - - "mydspace.new-submission": "പുതിയ സമർപ്പണം", - "mydspace.new-submission-external": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് മെറ്റാഡേറ്റ ഇംപോർട്ട് ചെയ്യുക", - "mydspace.new-submission-external-short": "മെറ്റാഡേറ്റ ഇംപോർട്ട് ചെയ്യുക", - - "mydspace.results.head": "നിങ്ങളുടെ സമർപ്പണങ്ങൾ", - "mydspace.results.no-abstract": "അമൂർത്തി ഇല്ല", - "mydspace.results.no-authors": "രചയിതാക്കൾ ഇല്ല", - "mydspace.results.no-collections": "കളക്ഷനുകൾ ഇല്ല", - "mydspace.results.no-date": "തീയതി ഇല്ല", - "mydspace.results.no-files": "ഫയലുകൾ ഇല്ല", - "mydspace.results.no-results": "കാണിക്കാൻ ഇതങ്ങളൊന്നുമില്ല", - "mydspace.results.no-title": "തലക്കെട്ട് ഇല്ല", - "mydspace.results.no-uri": "URI ഇല്ല", - - "mydspace.search-form.placeholder": "എന്റെ DSpace-ൽ തിരയുക...", - "mydspace.show.workflow": "വർക്ക്ഫ്ലോ ടാസ്ക്കുകൾ", - "mydspace.show.workspace": "നിങ്ങളുടെ സമർപ്പണങ്ങൾ", - "mydspace.show.supervisedWorkspace": "പരിപാലിക്കപ്പെട്ട ഇതങ്ങൾ", - "mydspace.status": "എന്റെ DSpace സ്ഥിതി:", - "mydspace.status.mydspaceArchived": "ആർക്കൈവ് ചെയ്തു", - "mydspace.status.mydspaceValidation": "സാധൂകരണം", - "mydspace.status.mydspaceWaitingController": "റിവ്യൂവറിനായി കാത്തിരിക്കുന്നു", - "mydspace.status.mydspaceWorkflow": "വർക്ക്ഫ്ലോ", - "mydspace.status.mydspaceWorkspace": "വർക്ക്സ്പേസ്", - "mydspace.title": "എന്റെ DSpace", - "mydspace.upload.upload-failed": "പുതിയ വർക്ക്സ്പേസ് സൃഷ്ടിക്കുന്നതിൽ പിശക്. വീണ്ടും ശ്രമിക്കുന്നതിന് മുമ്പ് അപ്ലോഡ് ചെയ്ത ഉള്ളടക്കം പരിശോധിക്കുക.", - "mydspace.upload.upload-failed-manyentries": "പ്രോസസ്സ് ചെയ്യാൻ കഴിയാത്ത ഫയൽ. ഒരു ഫയലിന് മാത്രമേ അനുവദിച്ചിട്ടുള്ളൂ എന്നാൽ ധാരാളം എൻട്രികൾ കണ്ടെത്തി.", - "mydspace.upload.upload-failed-moreonefile": "പ്രോസസ്സ് ചെയ്യാൻ കഴിയാത്ത അഭ്യർത്ഥന. ഒരു ഫയൽ മാത്രമേ അനുവദിച്ചിട്ടുള്ളൂ.", - "mydspace.upload.upload-multiple-successful": "{{qty}} പുതിയ വർക്ക്സ്പേസ് ഇതങ്ങൾ സൃഷ്ടിച്ചു.", - "mydspace.view-btn": "കാണുക", - - "nav.expandable-navbar-section-suffix": "(സബ്മെനു)", - "notification.suggestion": "ഞങ്ങൾക്ക് {{source}} ൽ നിങ്ങളുടെ പ്രൊഫൈലുമായി ബന്ധപ്പെട്ട {{count}} പബ്ലിക്കേഷനുകൾ കണ്ടെത്തി.
", - "notification.suggestion.review": "സൂചനകൾ അവലോകനം ചെയ്യുക", - "notification.suggestion.please": "ദയവായി", - - "nav.browse.header": "DSpace ന്റെ എല്ലാം", - "nav.community-browse.header": "കമ്മ്യൂണിറ്റി പ്രകാരം", - "nav.context-help-toggle": "കോൺടെക്സ്റ്റ് സഹായം ടോഗിൾ ചെയ്യുക", - "nav.language": "ഭാഷ മാറ്റുക", - "nav.login": "ലോഗിൻ ചെയ്യുക", - "nav.user-profile-menu-and-logout": "യൂസർ പ്രൊഫൈൽ മെനു, ലോഗൗട്ട്", - "nav.logout": "ലോഗൗട്ട് ചെയ്യുക", - "nav.main.description": "പ്രധാന നാവിഗേഷൻ ബാർ", - "nav.mydspace": "എന്റെ DSpace", - "nav.profile": "പ്രൊഫൈൽ", - "nav.search": "തിരയുക", - "nav.search.button": "തിരയൽ സമർപ്പിക്കുക", - "nav.statistics.header": "സ്ഥിതിവിവരക്കണക്കുകൾ", - "nav.stop-impersonating": "EPerson ആയി നടിക്കുന്നത് നിർത്തുക", - "nav.subscriptions": "സബ്സ്ക്രിപ്ഷനുകൾ", - "nav.toggle": "നാവിഗേഷൻ ടോഗിൾ ചെയ്യുക", - "nav.user.description": "യൂസർ പ്രൊഫൈൽ ബാർ", - - "listelement.badge.dso-type": "ഇതം തരം:", - "none.listelement.badge": "ഇതം", - - "publication-claim.title": "പബ്ലിക്കേഷൻ ക്ലെയിം", - "publication-claim.source.description": "ചുവടെ നിങ്ങൾക്ക് എല്ലാ സ്രോതസ്സുകളും കാണാം.", - - "quality-assurance.title": "ഗുണനിലവാര ഉറപ്പ്", - "quality-assurance.topics.description": "ചുവടെ നിങ്ങൾക്ക് {{source}} ലേക്കുള്ള സബ്സ്ക്രിപ്ഷനുകളിൽ നിന്ന് ലഭിച്ച എല്ലാ വിഷയങ്ങളും കാണാം.", - "quality-assurance.source.description": "ചുവടെ നിങ്ങൾക്ക് എല്ലാ അറിയിപ്പ് സ്രോതസ്സുകളും കാണാം.", - "quality-assurance.topics": "നിലവിലെ വിഷയങ്ങൾ", - "quality-assurance.source": "നിലവിലെ സ്രോതസ്സുകൾ", - "quality-assurance.table.topic": "വിഷയം", - "quality-assurance.table.source": "സ്രോതസ്സ്", - "quality-assurance.table.last-event": "അവസാന ഇവന്റ്", - "quality-assurance.table.actions": "പ്രവർത്തനങ്ങൾ", - "quality-assurance.source-list.button.detail": "{{param}} നായി വിഷയങ്ങൾ കാണിക്കുക", - "quality-assurance.topics-list.button.detail": "{{param}} നായി സൂചനകൾ കാണിക്കുക", - "quality-assurance.noTopics": "വിഷയങ്ങൾ ഒന്നും കണ്ടെത്തിയില്ല.", - "quality-assurance.noSource": "സ്രോതസ്സുകൾ ഒന്നും കണ്ടെത്തിയില്ല.", - "notifications.events.title": "ഗുണനിലവാര ഉറപ്പ് സൂചനകൾ", - "quality-assurance.topic.error.service.retrieve": "ഗുണനിലവാര ഉറപ്പ് വിഷയങ്ങൾ ലോഡ് ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", - "quality-assurance.source.error.service.retrieve": "ഗുണനിലവാര ഉറപ്പ് സ്രോതസ്സ് ലോഡ് ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", - "quality-assurance.loading": "ലോഡ് ചെയ്യുന്നു ...", - "quality-assurance.events.topic": "വിഷയം:", - "quality-assurance.noEvents": "സൂചനകൾ ഒന്നും കണ്ടെത്തിയില്ല.", - "quality-assurance.event.table.trust": "വിശ്വാസ്യത", - "quality-assurance.event.table.publication": "പബ്ലിക്കേഷൻ", - "quality-assurance.event.table.details": "വിശദാംശങ്ങൾ", - "quality-assurance.event.table.project-details": "പ്രോജക്റ്റ് വിശദാംശങ്ങൾ", - "quality-assurance.event.table.reasons": "കാരണങ്ങൾ", - "quality-assurance.event.table.actions": "പ്രവർത്തനങ്ങൾ", - "quality-assurance.event.action.accept": "സൂചന സ്വീകരിക്കുക", - "quality-assurance.event.action.ignore": "സൂചന അവഗണിക്കുക", - "quality-assurance.event.action.undo": "ഇല്ലാതാക്കുക", - "quality-assurance.event.action.reject": "സൂചന നിരസിക്കുക", - "quality-assurance.event.action.import": "പ്രോജക്റ്റ് ഇംപോർട്ട് ചെയ്ത് സൂചന സ്വീകരിക്കുക", - "quality-assurance.event.table.pidtype": "PID തരം:", - "quality-assurance.event.table.pidvalue": "PID മൂല്യം:", - "quality-assurance.event.table.subjectValue": "വിഷയ മൂല്യം:", - "quality-assurance.event.table.abstract": "അമൂർത്തി:", - "quality-assurance.event.table.suggestedProject": "OpenAIRE നിർദ്ദേശിച്ച പ്രോജക്റ്റ് ഡാറ്റ", - "quality-assurance.event.table.project": "പ്രോജക്റ്റ് തലക്കെട്ട്:", - "quality-assurance.event.table.acronym": "എക്രോണിം:", - "quality-assurance.event.table.code": "കോഡ്:", - "quality-assurance.event.table.funder": "ഫണ്ടർ:", - "quality-assurance.event.table.fundingProgram": "ഫണ്ടിംഗ് പ്രോഗ്രാം:", - "quality-assurance.event.table.jurisdiction": "അധികാരപരിധി:", - "quality-assurance.events.back": "വിഷയങ്ങളിലേക്ക് തിരികെ", - "quality-assurance.events.back-to-sources": "സ്രോതസ്സുകളിലേക്ക് തിരികെ", - "quality-assurance.event.table.less": "കുറച്ച് കാണിക്കുക", - "quality-assurance.event.table.more": "കൂടുതൽ കാണിക്കുക", - "quality-assurance.event.project.found": "ലോക്കൽ റെക്കോർഡുമായി ബന്ധിപ്പിച്ചിരിക്കുന്നു:", - "quality-assurance.event.project.notFound": "ലോക്കൽ റെക്കോർഡ് കണ്ടെത്തിയില്ല", - "quality-assurance.event.sure": "നിങ്ങൾക്ക് ഉറപ്പാണോ?", - "quality-assurance.event.ignore.description": "ഈ പ്രവർത്തനം പ്രത്യാവര്ത്തനം ചെയ്യാൻ കഴിയില്ല. ഈ സൂചന അവഗണിക്കണോ?", - "quality-assurance.event.undo.description": "ഈ പ്രവർത്തനം പ്രത്യാവര്ത്തനം ചെയ്യാൻ കഴിയില്ല!", - "quality-assurance.event.reject.description": "ഈ പ്രവർത്തനം പ്രത്യാവര്ത്തനം ചെയ്യാൻ കഴിയില്ല. ഈ സൂചന നിരസിക്കണോ?", - "quality-assurance.event.accept.description": "DSpace പ്രോജക്റ്റ് തിരഞ്ഞെടുത്തിട്ടില്ല. സൂചന ഡാറ്റയെ അടിസ്ഥാനമാക്കി ഒരു പുതിയ പ്രോജക്റ്റ് സൃഷ്ടിക്കും.", - "quality-assurance.event.action.cancel": "റദ്ദാക്കുക", - "quality-assurance.event.action.saved": "നിങ്ങളുടെ തീരുമാനം വിജയകരമായി സംരക്ഷിച്ചു", - "quality-assurance.event.action.error": "ഒരു പിശക് സംഭവിച്ചു. നിങ്ങളുടെ തീരുമാനം സംരക്ഷിച്ചിട്ടില്ല.", - "quality-assurance.event.modal.project.title": "ബന്ധിപ്പിക്കാൻ ഒരു പ്രോജക്റ്റ് തിരഞ്ഞെടുക്കുക", - "quality-assurance.event.modal.project.publication": "പബ്ലിക്കേഷൻ:", - "quality-assurance.event.modal.project.bountToLocal": "ലോക്കൽ റെക്കോർഡുമായി ബന്ധിപ്പിച്ചിരിക്കുന്നു:", - "quality-assurance.event.modal.project.select": "പ്രോജക്റ്റ് തിരയൽ", - "quality-assurance.event.modal.project.search": "തിരയുക", - "quality-assurance.event.modal.project.clear": "മായ്ക്കുക", - "quality-assurance.event.modal.project.cancel": "റദ്ദാക്കുക", - "quality-assurance.event.modal.project.bound": "ബന്ധിപ്പിച്ച പ്രോജക്റ്റ്", - "quality-assurance.event.modal.project.remove": "നീക്കം ചെയ്യുക", - "quality-assurance.event.modal.project.placeholder": "ഒരു പ്രോജക്റ്റ് പേര് നൽകുക", - "quality-assurance.event.modal.project.notFound": "പ്രോജക്റ്റ് കണ്ടെത്തിയില്ല.", - "quality-assurance.event.project.bounded": "പ്രോജക്റ്റ് വിജയകരമായി ലിങ്ക് ചെയ്തു.", - "quality-assurance.event.project.removed": "പ്രോജക്റ്റ് വിജയകരമായി അൺലിങ്ക് ചെയ്തു.", - "quality-assurance.event.project.error": "ഒരു പിശക് സംഭവിച്ചു. ഒരു പ്രവർത്തനവും നടത്തിയില്ല.", - "quality-assurance.event.reason": "കാരണം", - - "orgunit.listelement.badge": "ഓർഗനൈസേഷണൽ യൂണിറ്റ്", - "orgunit.listelement.no-title": "തലക്കെട്ടില്ലാത്ത", - "orgunit.page.city": "നഗരം", - "orgunit.page.country": "രാജ്യം", - "orgunit.page.dateestablished": "സ്ഥാപിച്ച തീയതി", - "orgunit.page.description": "വിവരണം", - "orgunit.page.edit": "ഈ ഇതം എഡിറ്റ് ചെയ്യുക", - "orgunit.page.id": "ID", - "orgunit.page.options": "ഓപ്ഷനുകൾ", - "orgunit.page.titleprefix": "ഓർഗനൈസേഷണൽ യൂണിറ്റ്: ", - "orgunit.page.ror": "ROR ഐഡന്റിഫയർ", - "orgunit.search.results.head": "ഓർഗനൈസേഷണൽ യൂണിറ്റ് തിരയൽ ഫലങ്ങൾ", - - "pagination.options.description": "പേജിനേഷൻ ഓപ്ഷനുകൾ", - "pagination.results-per-page": "ഒരു പേജിലെ ഫലങ്ങൾ", - "pagination.showing.detail": "{{ range }} / {{ total }}", - "pagination.showing.label": "ഇപ്പോൾ കാണിക്കുന്നു ", - "pagination.sort-direction": "സോർട്ട് ഓപ്ഷനുകൾ", - - "person.listelement.badge": "വ്യക്തി", - "person.listelement.no-title": "പേര് കണ്ടെത്തിയില്ല", - "person.page.birthdate": "ജനന തീയതി", - "person.page.edit": "ഈ ഇതം എഡിറ്റ് ചെയ്യുക", - "person.page.email": "ഇമെയിൽ വിലാസം", - "person.page.firstname": "പേരിന്റെ ആദ്യഭാഗം", - "person.page.jobtitle": "ജോലി പദവി", - "person.page.lastname": "പേരിന്റെ അവസാനഭാഗം", - "person.page.name": "പേര്", - "person.page.link.full": "എല്ലാ മെറ്റാഡാറ്റയും കാണിക്കുക", - "person.page.options": "ഓപ്ഷനുകൾ", - "person.page.orcid": "ORCID", - "person.page.staffid": "സ്റ്റാഫ് ID", - "person.page.titleprefix": "വ്യക്തി: ", - "person.search.results.head": "വ്യക്തി തിരയൽ ഫലങ്ങൾ", - "person-relationships.search.results.head": "വ്യക്തി തിരയൽ ഫലങ്ങൾ", - "person.search.title": "വ്യക്തി തിരയൽ", - - "process.new.select-parameters": "പാരാമീറ്ററുകൾ", - "process.new.select-parameter": "പാരാമീറ്റർ തിരഞ്ഞെടുക്കുക", - "process.new.add-parameter": "ഒരു പാരാമീറ്റർ ചേർക്കുക...", - "process.new.delete-parameter": "പാരാമീറ്റർ ഇല്ലാതാക്കുക", - "process.new.parameter.label": "പാരാമീറ്റർ മൂല്യം", - "process.new.cancel": "റദ്ദാക്കുക", - "process.new.submit": "സംരക്ഷിക്കുക", - "process.new.select-script": "സ്ക്രിപ്റ്റ്", - "process.new.select-script.placeholder": "ഒരു സ്ക്രിപ്റ്റ് തിരഞ്ഞെടുക്കുക...", - "process.new.select-script.required": "സ്ക്രിപ്റ്റ് ആവശ്യമാണ്", - "process.new.parameter.file.upload-button": "ഫയൽ തിരഞ്ഞെടുക്കുക...", - "process.new.parameter.file.required": "ദയവായി ഒരു ഫയൽ തിരഞ്ഞെടുക്കുക", - "process.new.parameter.integer.required": "പാരാമീറ്റർ മൂല്യം ആവശ്യമാണ്", - "process.new.parameter.string.required": "പാരാമീറ്റർ മൂല്യം ആവശ്യമാണ്", - "process.new.parameter.type.value": "മൂല്യം", - "process.new.parameter.type.file": "ഫയൽ", - "process.new.parameter.required.missing": "ഇനിപ്പറയുന്ന പാരാമീറ്ററുകൾ ആവശ്യമാണെങ്കിലും ഇപ്പോഴും കാണുന്നില്ല:", - "process.new.notification.success.title": "വിജയം", - "process.new.notification.success.content": "പ്രോസസ്സ് വിജയകരമായി സൃഷ്ടിച്ചു", - "process.new.notification.error.title": "പിശക്", - "process.new.notification.error.content": "ഈ പ്രോസസ്സ് സൃഷ്ടിക്കുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", - "process.new.notification.error.max-upload.content": "ഫയൽ പരമാവധി അപ്ലോഡ് വലുപ്പം കവിഞ്ഞിരിക്കുന്നു", - "process.new.header": "ഒരു പുതിയ പ്രോസസ്സ് സൃഷ്ടിക്കുക", - "process.new.title": "ഒരു പുതിയ പ്രോസസ്സ് സൃഷ്ടിക്കുക", - "process.new.breadcrumbs": "ഒരു പുതിയ പ്രോസസ്സ് സൃഷ്ടിക്കുക", - - "process.detail.arguments": "ആർഗ്യുമെന്റുകൾ", - "process.detail.arguments.empty": "ഈ പ്രോസസ്സിൽ ഒരു ആർഗ്യുമെന്റും ഇല്ല", - "process.detail.back": "തിരികെ", - "process.detail.output": "പ്രോസസ്സ് ഔട്ട്പുട്ട്", - "process.detail.logs.button": "പ്രോസസ്സ് ഔട്ട്പുട്ട് വീണ്ടെടുക്കുക", - "process.detail.logs.loading": "വീണ്ടെടുക്കുന്നു", - "process.detail.logs.none": "ഈ പ്രോസസ്സിന് ഔട്ട്പുട്ട് ഇല്ല", - "process.detail.output-files": "ഔട്ട്പുട്ട് ഫയലുകൾ", - "process.detail.output-files.empty": "ഈ പ്രോസസ്സിൽ ഔട്ട്പുട്ട് ഫയലുകളൊന്നുമില്ല", - "process.detail.script": "സ്ക്രിപ്റ്റ്", - "process.detail.title": "പ്രോസസ്സ്: {{ id }} - {{ name }}", - "process.detail.start-time": "ആരംഭ സമയം", - "process.detail.end-time": "പൂർത്തിയാക്കൽ സമയം", - "process.detail.status": "സ്ഥിതി", - "process.detail.create": "സമാനമായ പ്രോസസ്സ് സൃഷ്ടിക്കുക", - "process.detail.actions": "പ്രവർത്തനങ്ങൾ", - "process.detail.delete.button": "പ്രോസസ്സ് ഇല്ലാതാക്കുക", - "process.detail.delete.header": "പ്രോസസ്സ് ഇല്ലാതാക്കുക", - "process.detail.delete.body": "നിലവിലെ പ്രോസസ്സ് ഇല്ലാതാക്കണമെന്ന് നിങ്ങൾക്ക് ഉറപ്പാണോ?", - "process.detail.delete.cancel": "റദ്ദാക്കുക", - "process.detail.delete.confirm": "പ്രോസസ്സ് ഇല്ലാതാക്കുക", - "process.detail.delete.success": "പ്രോസസ്സ് വിജയകരമായി ഇല്ലാതാക്കി.", - "process.detail.delete.error": "പ്രോസസ്സ് ഇല്ലാതാക്കുന്നതിനിടെ എന്തോ തെറ്റ് സംഭവിച്ചു", - "process.detail.refreshing": "ഓട്ടോ-റിഫ്രഷ് ചെയ്യുന്നു…", - - "process.overview.table.completed.info": "പൂർത്തിയാക്കൽ സമയം (UTC)", - "process.overview.table.completed.title": "വിജയിച്ച പ്രോസസ്സുകൾ", - "process.overview.table.empty": "പൊരുത്തപ്പെടുന്ന പ്രോസസ്സുകളൊന്നും കണ്ടെത്തിയില്ല.", - "process.overview.table.failed.info": "പൂർത്തിയാക്കൽ സമയം (UTC)", - "process.overview.table.failed.title": "പരാജയപ്പെട്ട പ്രോസസ്സുകൾ", - "process.overview.table.finish": "പൂർത്തിയാക്കൽ സമയം (UTC)", - "process.overview.table.id": "പ്രോസസ്സ് ID", - "process.overview.table.name": "പേര്", - "process.overview.table.running.info": "ആരംഭ സമയം (UTC)", - "process.overview.table.running.title": "പ്രവർത്തിക്കുന്ന പ്രോസസ്സുകൾ", - "process.overview.table.scheduled.info": "സൃഷ്ടിക്കൽ സമയം (UTC)", - "process.overview.table.scheduled.title": "ഷെഡ്യൂൾ ചെയ്ത പ്രോസസ്സുകൾ", - "process.overview.table.start": "ആരംഭ സമയം (UTC)", - "process.overview.table.status": "സ്ഥിതി", - "process.overview.table.user": "ഉപയോക്താവ്", - "process.overview.title": "പ്രോസസ്സുകളുടെ അവലോകനം", - "process.overview.breadcrumbs": "പ്രോസസ്സുകളുടെ അവലോകനം", - "process.overview.new": "പുതിയത്", - "process.overview.table.actions": "പ്രവർത്തനങ്ങൾ", - "process.overview.delete": "{{count}} പ്രോസസ്സുകൾ ഇല്ലാതാക്കുക", - "process.overview.delete-process": "പ്രോസസ്സ് ഇല്ലാതാക്കുക", - "process.overview.delete.clear": "ഇല്ലാതാക്കൽ തിരഞ്ഞെടുപ്പ് മായ്ക്കുക", - "process.overview.delete.processing": "{{count}} പ്രോസസ്സ്(കൾ) ഇല്ലാതാക്കുന്നു. ഇല്ലാതാക്കൽ പൂർണ്ണമായി പൂർത്തിയാകാൻ കാത്തിരിക്കുക. ഇതിന് കുറച്ച് സമയമെടുക്കാം.", - "process.overview.delete.body": "{{count}} പ്രോസസ്സ്(കൾ) ഇല്ലാതാക്കണമെന്ന് നിങ്ങൾക്ക് ഉറപ്പാണോ?", - "process.overview.delete.header": "പ്രോസസ്സുകൾ ഇല്ലാതാക്കുക", - "process.overview.unknown.user": "അജ്ഞാതം", - - "process.bulk.delete.error.head": "പ്രോസസ്സ് ഇല്ലാതാക്കുന്നതിൽ പിശക്", - "process.bulk.delete.error.body": "ID {{processId}} ഉള്ള പ്രോസസ്സ് ഇല്ലാതാക്കാൻ കഴിഞ്ഞില്ല. ബാക്കിയുള്ള പ്രോസസ്സുകൾ ഇല്ലാതാക്കുന്നത് തുടരും. ", - - "process.bulk.delete.success": "{{count}} പ്രക്രിയ(കൾ) വിജയകരമായി ഇല്ലാതാക്കി", - - "profile.breadcrumbs": "പ്രൊഫൈൽ അപ്ഡേറ്റ് ചെയ്യുക", - - "profile.card.accessibility.content": "ആക്‌സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ ആക്‌സസിബിലിറ്റി സെറ്റിംഗ് പേജിൽ കോൺഫിഗർ ചെയ്യാവുന്നതാണ്.", - - "profile.card.accessibility.header": "ആക്‌സസിബിലിറ്റി", - - "profile.card.accessibility.link": "ആക്‌സസിബിലിറ്റി സെറ്റിംഗ് പേജിലേക്ക് പോകുക", - - "profile.card.identify": "തിരിച്ചറിയുക", - - "profile.card.security": "സുരക്ഷ", - - "profile.form.submit": "സേവ് ചെയ്യുക", - - "profile.groups.head": "നിങ്ങൾ അനുവദനീയമായ ഗ്രൂപ്പുകൾ", - - "profile.special.groups.head": "നിങ്ങൾ അനുവദനീയമായ പ്രത്യേക ഗ്രൂപ്പുകൾ", - - "profile.metadata.form.error.firstname.required": "ആദ്യ നാമം ആവശ്യമാണ്", - - "profile.metadata.form.error.lastname.required": "അവസാന നാമം ആവശ്യമാണ്", - - "profile.metadata.form.label.email": "ഇമെയിൽ വിലാസം", - - "profile.metadata.form.label.firstname": "ആദ്യ നാമം", - - "profile.metadata.form.label.language": "ഭാഷ", - - "profile.metadata.form.label.lastname": "അവസാന നാമം", - - "profile.metadata.form.label.phone": "ബന്ധപ്പെടാനുള്ള ടെലിഫോൺ", - - "profile.metadata.form.notifications.success.content": "നിങ്ങളുടെ പ്രൊഫൈലിലെ മാറ്റങ്ങൾ സേവ് ചെയ്തു.", - - "profile.metadata.form.notifications.success.title": "പ്രൊഫൈൽ സേവ് ചെയ്തു", - - "profile.notifications.warning.no-changes.content": "പ്രൊഫൈലിൽ ഒരു മാറ്റവും വരുത്തിയിട്ടില്ല.", - - "profile.notifications.warning.no-changes.title": "മാറ്റങ്ങളൊന്നുമില്ല", - - "profile.security.form.error.matching-passwords": "പാസ്‌വേഡുകൾ യോജിക്കുന്നില്ല", - - "profile.security.form.info": "ഓപ്ഷണലായി, നിങ്ങൾക്ക് താഴെയുള്ള ബോക്സിൽ ഒരു പുതിയ പാസ്‌വേഡ് നൽകാം, രണ്ടാമത്തെ ബോക്സിൽ അത് വീണ്ടും ടൈപ്പ് ചെയ്ത് സ്ഥിരീകരിക്കാം.", - - "profile.security.form.label.password": "പാസ്‌വേഡ്", - - "profile.security.form.label.passwordrepeat": "സ്ഥിരീകരിക്കാൻ വീണ്ടും ടൈപ്പ് ചെയ്യുക", - - "profile.security.form.label.current-password": "നിലവിലെ പാസ്‌വേഡ്", - - "profile.security.form.notifications.success.content": "നിങ്ങളുടെ പാസ്‌വേഡിലെ മാറ്റങ്ങൾ സേവ് ചെയ്തു.", - - "profile.security.form.notifications.success.title": "പാസ്‌വേഡ് സേവ് ചെയ്തു", - - "profile.security.form.notifications.error.title": "പാസ്‌വേഡ് മാറ്റുന്നതിൽ പിശക്", - - "profile.security.form.notifications.error.change-failed": "പാസ്‌വേഡ് മാറ്റാൻ ശ്രമിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു. നിലവിലെ പാസ്‌വേഡ് ശരിയാണോ എന്ന് പരിശോധിക്കുക.", - - "profile.security.form.notifications.error.not-same": "നൽകിയ പാസ്‌വേഡുകൾ ഒന്നല്ല.", - - "profile.security.form.notifications.error.general": "സുരക്ഷാ ഫോമിന്റെ ആവശ്യമായ ഫീൽഡുകൾ പൂരിപ്പിക്കുക.", - - "profile.title": "പ്രൊഫൈൽ അപ്ഡേറ്റ് ചെയ്യുക", - - "profile.card.researcher": "ഗവേഷക പ്രൊഫൈൽ", - - "project.listelement.badge": "ഗവേഷണ പ്രോജക്റ്റ്", - - "project.page.contributor": "സംഭാവന നൽകിയവർ", - - "project.page.description": "വിവരണം", - - "project.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", - - "project.page.expectedcompletion": "പ്രതീക്ഷിച്ച പൂർത്തീകരണം", - - "project.page.funder": "ഫണ്ടർമാർ", - - "project.page.id": "ഐഡി", - - "project.page.keyword": "കീവേഡുകൾ", - - "project.page.options": "ഓപ്ഷനുകൾ", - - "project.page.status": "സ്ഥിതി", - - "project.page.titleprefix": "ഗവേഷണ പ്രോജക്റ്റ്: ", - - "project.search.results.head": "പ്രോജക്റ്റ് തിരയൽ ഫലങ്ങൾ", - - "project-relationships.search.results.head": "പ്രോജക്റ്റ് തിരയൽ ഫലങ്ങൾ", - - "publication.listelement.badge": "പ്രസിദ്ധീകരണം", - - "publication.page.description": "വിവരണം", - - "publication.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", - - "publication.page.journal-issn": "ജേണൽ ISSN", - - "publication.page.journal-title": "ജേണൽ ശീർഷകം", - - "publication.page.publisher": "പ്രസാധകൻ", - - "publication.page.options": "ഓപ്ഷനുകൾ", - - "publication.page.titleprefix": "പ്രസിദ്ധീകരണം: ", - - "publication.page.volume-title": "വോളിയം ശീർഷകം", - - "publication.search.results.head": "പ്രസിദ്ധീകരണ തിരയൽ ഫലങ്ങൾ", - - "publication-relationships.search.results.head": "പ്രസിദ്ധീകരണ തിരയൽ ഫലങ്ങൾ", - - "publication.search.title": "പ്രസിദ്ധീകരണ തിരയൽ", - - "media-viewer.next": "അടുത്തത്", - - "media-viewer.previous": "മുമ്പത്തേത്", - - "media-viewer.playlist": "പ്ലേലിസ്റ്റ്", - - "suggestion.loading": "ലോഡിംഗ് ...", - - "suggestion.title": "പ്രസിദ്ധീകരണ ക്ലെയിം", - - "suggestion.title.breadcrumbs": "പ്രസിദ്ധീകരണ ക്ലെയിം", - - "suggestion.targets.description": "താഴെ നിങ്ങൾക്ക് എല്ലാ സജ്ജെഷനുകളും കാണാം ", - - "suggestion.targets": "നിലവിലെ സജ്ജെഷനുകൾ", - - "suggestion.table.name": "ഗവേഷകന്റെ പേര്", - - "suggestion.table.actions": "പ്രവർത്തനങ്ങൾ", - - "suggestion.button.review": "{{ total }} സജ്ജെഷൻ(കൾ) അവലോകനം ചെയ്യുക", - - "suggestion.button.review.title": "ഇതിനായുള്ള {{ total }} സജ്ജെഷൻ(കൾ) അവലോകനം ചെയ്യുക ", - - "suggestion.noTargets": "ടാർഗെറ്റ് കണ്ടെത്തിയില്ല.", - - "suggestion.target.error.service.retrieve": "സജ്ജെഷൻ ടാർഗെറ്റുകൾ ലോഡ് ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", - - "suggestion.evidence.type": "തരം", - - "suggestion.evidence.score": "സ്കോർ", - - "suggestion.evidence.notes": "കുറിപ്പുകൾ", - - "suggestion.approveAndImport": "അംഗീകരിക്കുക & ഇംപോർട്ട് ചെയ്യുക", - - "suggestion.approveAndImport.success": "സജ്ജെഷൻ വിജയകരമായി ഇംപോർട്ട് ചെയ്തു. കാണുക.", - - "suggestion.approveAndImport.bulk": "തിരഞ്ഞെടുത്തവ അംഗീകരിക്കുക & ഇംപോർട്ട് ചെയ്യുക", - - "suggestion.approveAndImport.bulk.success": "{{ count }} സജ്ജെഷനുകൾ വിജയകരമായി ഇംപോർട്ട് ചെയ്തു ", - - "suggestion.approveAndImport.bulk.error": "{{ count }} സജ്ജെഷനുകൾ സെർവർ പിശകുകൾ കാരണം ഇംപോർട്ട് ചെയ്യാൻ കഴിഞ്ഞില്ല", - - "suggestion.ignoreSuggestion": "സജ്ജെഷൻ അവഗണിക്കുക", - - "suggestion.ignoreSuggestion.success": "സജ്ജെഷൻ ഉപേക്ഷിച്ചു", - - "suggestion.ignoreSuggestion.bulk": "തിരഞ്ഞെടുത്ത സജ്ജെഷനുകൾ അവഗണിക്കുക", - - "suggestion.ignoreSuggestion.bulk.success": "{{ count }} സജ്ജെഷനുകൾ ഉപേക്ഷിച്ചു ", - - "suggestion.ignoreSuggestion.bulk.error": "{{ count }} സജ്ജെഷനുകൾ സെർവർ പിശകുകൾ കാരണം ഉപേക്ഷിക്കാൻ കഴിഞ്ഞില്ല", - - "suggestion.seeEvidence": "തെളിവുകൾ കാണുക", - - "suggestion.hideEvidence": "തെളിവുകൾ മറയ്ക്കുക", - - "suggestion.suggestionFor": "ഇതിനായുള്ള സജ്ജെഷനുകൾ", - - "suggestion.suggestionFor.breadcrumb": "{{ name }} എന്നതിനായുള്ള സജ്ജെഷനുകൾ", - - "suggestion.source.openaire": "OpenAIRE ഗ്രാഫ്", - - "suggestion.source.openalex": "OpenAlex", - - "suggestion.from.source": "ഇതിൽ നിന്ന് ", - - "suggestion.count.missing": "നിങ്ങൾക്ക് ഇനി പ്രസിദ്ധീകരണ ക്ലെയിമുകൾ ഇല്ല", - - "suggestion.totalScore": "മൊത്തം സ്കോർ", - - "suggestion.type.openaire": "OpenAIRE", - - "register-email.title": "പുതിയ ഉപയോക്തൃ രജിസ്ട്രേഷൻ", - - "register-page.create-profile.header": "പ്രൊഫൈൽ സൃഷ്ടിക്കുക", - - "register-page.create-profile.identification.header": "തിരിച്ചറിയുക", - - "register-page.create-profile.identification.email": "ഇമെയിൽ വിലാസം", - - "register-page.create-profile.identification.first-name": "ആദ്യ നാമം *", - - "register-page.create-profile.identification.first-name.error": "ഒരു ആദ്യ നാമം നൽകുക", - - "register-page.create-profile.identification.last-name": "അവസാന നാമം *", - - "register-page.create-profile.identification.last-name.error": "ഒരു അവസാന നാമം നൽകുക", - - "register-page.create-profile.identification.contact": "ബന്ധപ്പെടാനുള്ള ടെലിഫോൺ", - - "register-page.create-profile.identification.language": "ഭാഷ", - - "register-page.create-profile.security.header": "സുരക്ഷ", - - "register-page.create-profile.security.info": "താഴെയുള്ള ബോക്സിൽ ഒരു പാസ്‌വേഡ് നൽകുക, രണ്ടാമത്തെ ബോക്സിൽ അത് വീണ്ടും ടൈപ്പ് ചെയ്ത് സ്ഥിരീകരിക്കുക.", - - "register-page.create-profile.security.label.password": "പാസ്‌വേഡ് *", - - "register-page.create-profile.security.label.passwordrepeat": "സ്ഥിരീകരിക്കാൻ വീണ്ടും ടൈപ്പ് ചെയ്യുക *", - - "register-page.create-profile.security.error.empty-password": "താഴെയുള്ള ബോക്സിൽ ഒരു പാസ്‌വേഡ് നൽകുക.", - - "register-page.create-profile.security.error.matching-passwords": "പാസ്‌വേഡുകൾ യോജിക്കുന്നില്ല.", - - "register-page.create-profile.submit": "രജിസ്ട്രേഷൻ പൂർത്തിയാക്കുക", - - "register-page.create-profile.submit.error.content": "ഒരു പുതിയ ഉപയോക്താവിനെ രജിസ്ടർ ചെയ്യുമ്പോൾ എന്തോ തെറ്റ് സംഭവിച്ചു.", - - "register-page.create-profile.submit.error.head": "രജിസ്ട്രേഷൻ പരാജയപ്പെട്ടു", - - "register-page.create-profile.submit.success.content": "രജിസ്ട്രേഷൻ വിജയകരമായി. സൃഷ്ടിച്ച ഉപയോക്താവായി നിങ്ങൾ ലോഗിൻ ചെയ്തിരിക്കുന്നു.", - - "register-page.create-profile.submit.success.head": "രജിസ്ട്രേഷൻ പൂർത്തിയായി", - - "register-page.registration.header": "പുതിയ ഉപയോക്തൃ രജിസ്ട്രേഷൻ", - - "register-page.registration.info": "ഇമെയിൽ അപ്ഡേറ്റുകൾക്കായി കളക്ഷനുകളിൽ സബ്‌സ്‌ക്രൈബ് ചെയ്യാനും DSpace-ൽ പുതിയ ഇനങ്ങൾ സമർപ്പിക്കാനും ഒരു അക്കൗണ്ട് രജിസ്ടർ ചെയ്യുക.", - - "register-page.registration.email": "ഇമെയിൽ വിലാസം *", - - "register-page.registration.email.error.required": "ഒരു ഇമെയിൽ വിലാസം നൽകുക", - - "register-page.registration.email.error.not-email-form": "സാധുവായ ഒരു ഇമെയിൽ വിലാസം നൽകുക.", - - "register-page.registration.email.error.not-valid-domain": "അനുവദനീയമായ ഡൊമെയ്‌നുകളുള്ള ഇമെയിൽ ഉപയോഗിക്കുക: {{ domains }}", - - "register-page.registration.email.hint": "ഈ വിലാസം പരിശോധിച്ച് നിങ്ങളുടെ ലോഗിൻ നാമമായി ഉപയോഗിക്കും.", - - "register-page.registration.submit": "രജിസ്ടർ ചെയ്യുക", - - "register-page.registration.success.head": "പരിശോധന ഇമെയിൽ അയച്ചു", - - "register-page.registration.success.content": "{{ email }} എന്നതിലേക്ക് ഒരു പ്രത്യേക URL-ഉം കൂടുതൽ നിർദ്ദേശങ്ങളും അടങ്ങിയ ഒരു ഇമെയിൽ അയച്ചിട്ടുണ്ട്.", - - "register-page.registration.error.head": "ഇമെയിൽ രജിസ്ടർ ചെയ്യുമ്പോൾ പിശക്", - - "register-page.registration.error.content": "ഇനിപ്പറയുന്ന ഇമെയിൽ വിലാസം രജിസ്ടർ ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു: {{ email }}", - - "register-page.registration.error.recaptcha": "recaptcha ഉപയോഗിച്ച് പ്രാമാണീകരിക്കാൻ ശ്രമിക്കുമ്പോൾ പിശക്", - - "register-page.registration.google-recaptcha.must-accept-cookies": "രജിസ്ടർ ചെയ്യാൻ നിങ്ങൾ രജിസ്ട്രേഷൻ, പാസ്‌വേഡ് റികവറി (Google reCaptcha) കുക്കികൾ സ്വീകരിക്കണം.", - - "register-page.registration.google-recaptcha.open-cookie-settings": "കുക്കി സെറ്റിംഗുകൾ തുറക്കുക", - - "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", - - "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha പരിശോധനയിൽ ഒരു പിശക് സംഭവിച്ചു", - - "register-page.registration.google-recaptcha.notification.message.expired": "പരിശോധന കാലഹരണപ്പെട്ടു. വീണ്ടും പരിശോധിക്കുക.", - - "register-page.registration.info.maildomain": "ഇനിപ്പറയുന്ന ഡൊമെയ്‌നുകളുടെ മെയിൽ വിലാസങ്ങൾക്കായി അക്കൗണ്ടുകൾ രജിസ്ടർ ചെയ്യാം", - - "relationships.add.error.relationship-type.content": "രണ്ട് ഇനങ്ങൾക്കിടയിൽ {{ type }} എന്ന ബന്ധത്തിന് യോജിക്കുന്ന മാച്ച് കണ്ടെത്താൻ കഴിഞ്ഞില്ല", - - "relationships.add.error.server.content": "സെർവർ ഒരു പിശക് തിരികെ നൽകി", - - "relationships.add.error.title": "ബന്ധം ചേർക്കാൻ കഴിയുന്നില്ല", - - "relationships.Publication.isAuthorOfPublication.Person": "രചയിതാക്കൾ (വ്യക്തികൾ)", - - "relationships.Publication.isProjectOfPublication.Project": "ഗവേഷണ പ്രോജക്റ്റുകൾ", - - "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "സംഘടനാ യൂണിറ്റുകൾ", - - "relationships.Publication.isAuthorOfPublication.OrgUnit": "രചയിതാക്കൾ (സംഘടനാ യൂണിറ്റുകൾ)", - - "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "ജേണൽ ഇഷ്യൂ", - - "relationships.Publication.isContributorOfPublication.Person": "സംഭാവന നൽകിയവർ", - - "relationships.Publication.isContributorOfPublication.OrgUnit": "സംഭാവന നൽകിയവർ (സംഘടനാ യൂണിറ്റുകൾ)", - - "relationships.Person.isPublicationOfAuthor.Publication": "പ്രസിദ്ധീകരണങ്ങൾ", - - "relationships.Person.isProjectOfPerson.Project": "ഗവേഷണ പ്രോജക്റ്റുകൾ", - - "relationships.Person.isOrgUnitOfPerson.OrgUnit": "സംഘടനാ യൂണിറ്റുകൾ", - - "relationships.Person.isPublicationOfContributor.Publication": "പ്രസിദ്ധീകരണങ്ങൾ (സംഭാവന നൽകിയവ)", - - "relationships.Project.isPublicationOfProject.Publication": "പ്രസിദ്ധീകരണങ്ങൾ", - - "relationships.Project.isPersonOfProject.Person": "രചയിതാക്കൾ", - - "relationships.Project.isOrgUnitOfProject.OrgUnit": "സംഘടനാ യൂണിറ്റുകൾ", - - "relationships.Project.isFundingAgencyOfProject.OrgUnit": "ഫണ്ടർ", - - "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "സംഘടനാ പ്രസിദ്ധീകരണങ്ങൾ", - - "relationships.OrgUnit.isPersonOfOrgUnit.Person": "രചയിതാക്കൾ", - - "relationships.OrgUnit.isProjectOfOrgUnit.Project": "ഗവേഷണ പ്രോജക്റ്റുകൾ", - - "relationships.OrgUnit.isPublicationOfAuthor.Publication": "രചയിതാവിന്റെ പ്രസിദ്ധീകരണങ്ങൾ", - - "relationships.OrgUnit.isPublicationOfContributor.Publication": "പ്രസിദ്ധീകരണങ്ങൾ (സംഭാവന നൽകിയവ)", - - "relationships.OrgUnit.isProjectOfFundingAgency.Project": "ഗവേഷണ പ്രോജക്റ്റുകൾ (ഫണ്ടർ ചെയ്തവ)", - - "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "ജേണൽ വോളിയം", - - "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "പ്രസിദ്ധീകരണങ്ങൾ", - - "relationships.JournalVolume.isJournalOfVolume.Journal": "ജേണലുകൾ", - - "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "ജേണൽ ഇഷ്യൂ", - - "relationships.Journal.isVolumeOfJournal.JournalVolume": "ജേണൽ വോളിയം", - - "repository.image.logo": "റിപ്പോസിറ്ററി ലോഗോ", - - "repository.title": "DSpace റിപ്പോസിറ്ററി", - - "repository.title.prefix": "DSpace റിപ്പോസിറ്ററി :: ", - - "resource-policies.add.button": "ചേർക്കുക", - - "resource-policies.add.for.": "ഒരു പുതിയ പോളിസി ചേർക്കുക", - - "resource-policies.add.for.bitstream": "ഒരു പുതിയ ബിറ്റ്സ്ട്രീം പോളിസി ചേർക്കുക", - - "resource-policies.add.for.bundle": "ഒരു പുതിയ ബണ്ടിൽ പോളിസി ചേർക്കുക", - - "resource-policies.add.for.item": "ഒരു പുതിയ ഇനം പോളിസി ചേർക്കുക", - - "resource-policies.add.for.community": "ഒരു പുതിയ കമ്മ്യൂണിറ്റി പോളിസി ചേർക്കുക", - - "resource-policies.add.for.collection": "ഒരു പുതിയ കളക്ഷൻ പോളിസി ചേർക്കുക", - - "resource-policies.create.page.heading": "ഇതിനായി ഒരു പുതിയ റിസോഴ്‌സ് പോളിസി സൃഷ്ടിക്കുക ", - - "resource-policies.create.page.failure.content": "റിസോഴ്‌സ് പോളിസി സൃഷ്ടിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു.", - - "resource-policies.create.page.success.content": "പ്രവർത്തനം വിജയകരമായി", - - "resource-policies.create.page.title": "ഒരു പുതിയ റിസോഴ്‌സ് പോളിസി സൃഷ്ടിക്കുക", - - "resource-policies.delete.btn": "തിരഞ്ഞെടുത്തവ ഇല്ലാതാക്കുക", - - "resource-policies.delete.btn.title": "തിരഞ്ഞെടുത്ത റിസോഴ്‌സ് പോളിസികൾ ഇല്ലാതാക്കുക", - - "resource-policies.delete.failure.content": "തിരഞ്ഞെടുത്ത റിസോഴ്‌സ് പോളിസികൾ ഇല്ലാതാക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു.", - - "resource-policies.delete.success.content": "പ്രവർത്തനം വിജയകരമായി", - - "resource-policies.edit.page.heading": "റിസോഴ്‌സ് പോളിസി എഡിറ്റ് ചെയ്യുക ", - - "resource-policies.edit.page.failure.content": "റിസോഴ്‌സ് പോളിസി എഡിറ്റ് ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു.", - - "resource-policies.edit.page.target-failure.content": "റിസോഴ്‌സ് പോളിസിയുടെ ടാർഗെറ്റ് (ePerson അല്ലെങ്കിൽ ഗ്രൂപ്പ്) എഡിറ്റ് ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു.", - - "resource-policies.edit.page.other-failure.content": "റിസോഴ്‌സ് പോളിസി എഡിറ്റ് ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു. ടാർഗെറ്റ് (ePerson അല്ലെങ്കിൽ ഗ്രൂപ്പ്) വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു.", - - "resource-policies.edit.page.success.content": "പ്രവർത്തനം വിജയകരമായി", - - "resource-policies.edit.page.title": "റിസോഴ്‌സ് പോളിസി എഡിറ്റ് ചെയ്യുക", - - "resource-policies.form.action-type.label": "പ്രവർത്തന തരം തിരഞ്ഞെടുക്കുക", - - "resource-policies.form.action-type.required": "നിങ്ങൾ റിസോഴ്‌സ് പോളിസി പ്രവർത്തനം തിരഞ്ഞെടുക്കണം.", - - "resource-policies.form.eperson-group-list.label": "അനുമതി നൽകുന്ന ePerson അല്ലെങ്കിൽ ഗ്രൂപ്പ്", - - "resource-policies.form.eperson-group-list.select.btn": "തിരഞ്ഞെടുക്കുക", - - "resource-policies.form.eperson-group-list.tab.eperson": "ഒരു ePerson തിരയുക", - - "resource-policies.form.eperson-group-list.tab.group": "ഒരു ഗ്രൂപ്പ് തിരയുക", - - "resource-policies.form.eperson-group-list.table.headers.action": "പ്രവർത്തനം", - - "resource-policies.form.eperson-group-list.table.headers.id": "ഐഡി", - - "resource-policies.form.eperson-group-list.table.headers.name": "പേര്", - - "resource-policies.form.eperson-group-list.modal.header": "തരം മാറ്റാൻ കഴിയില്ല", - - "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ഒരു ePerson-നെ ഒരു ഗ്രൂപ്പ് ഉപയോഗിച്ച് മാറ്റാൻ കഴിയില്ല.", - - "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "ഒരു ഗ്രൂപ്പിനെ ഒരു ePerson ഉപയോഗിച്ച് മാറ്റാൻ കഴിയില്ല.", - - "resource-policies.form.eperson-group-list.modal.text2": "നിലവിലുള്ള റിസോഴ്‌സ് പോളിസി ഇല്ലാതാക്കി ആവശ്യമുള്ള തരത്തിൽ ഒരു പുതിയത് സൃഷ്ടിക്കുക.", - - "resource-policies.form.eperson-group-list.modal.close": "ശരി", - - "resource-policies.form.date.end.label": "അവസാന തീയതി", - - "resource-policies.form.date.start.label": "ആരംഭ തീയതി", - - "resource-policies.form.description.label": "വിവരണം", - - "resource-policies.form.name.label": "പേര്", - - "resource-policies.form.name.hint": "പരമാവധി 30 അക്ഷരങ്ങൾ", - - "resource-policies.form.policy-type.label": "പോളിസി തരം തിരഞ്ഞെടുക്കുക", - - "resource-policies.form.policy-type.required": "നിങ്ങൾ റിസോഴ്‌സ് പോളിസി തരം തിരഞ്ഞെടുക്കണം.", - - "resource-policies.table.headers.action": "പ്രവർത്തനം", - - "resource-policies.table.headers.date.end": "അവസാന തീയതി", - - "resource-policies.table.headers.date.start": "ആരംഭ തീയതി", - - "resource-policies.table.headers.edit": "എഡിറ്റ്", - - "resource-policies.table.headers.edit.group": "ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യുക", - - "resource-policies.table.headers.edit.policy": "പോളിസി എഡിറ്റ് ചെയ്യുക", - - "resource-policies.table.headers.eperson": "EPerson", - - "resource-policies.table.headers.group": "ഗ്രൂപ്പ്", - - "resource-policies.table.headers.select-all": "എല്ലാം തിരഞ്ഞെടുക്കുക", - - "resource-policies.table.headers.deselect-all": "എല്ലാം ഒഴിവാക്കുക", - - "resource-policies.table.headers.select": "തിരഞ്ഞെടുക്കുക", - - "resource-policies.table.headers.deselect": "ഒഴിവാക്കുക", - - "resource-policies.table.headers.id": "ഐഡി", - - "resource-policies.table.headers.name": "പേര്", - - "resource-policies.table.headers.policyType": "തരം", - - "resource-policies.table.headers.title.for.bitstream": "ബിറ്റ്സ്ട്രീമിനുള്ള പോളിസികൾ", - - "resource-policies.table.headers.title.for.bundle": "ബണ്ടിലിനുള്ള പോളിസികൾ", - "resource-policies.table.headers.title.for.item": "ഇനത്തിനുള്ള പോളിസികൾ", - "resource-policies.table.headers.title.for.community": "കമ്മ്യൂണിറ്റിക്കുള്ള പോളിസികൾ", - "resource-policies.table.headers.title.for.collection": "കളക്ഷനുള്ള പോളിസികൾ", - "root.skip-to-content": "ഉള്ളടക്കത്തിലേക്ക് പോകുക", - "search.description": "", - "search.switch-configuration.title": "കാണിക്കുക", - "search.title": "തിരയുക", - "search.breadcrumbs": "തിരയുക", - "search.search-form.placeholder": "റെപ്പോസിറ്ററി തിരയുക ...", - "search.filters.remove": "{{ type }} തരത്തിലുള്ള {{ value }} ഫിൽട്ടർ നീക്കം ചെയ്യുക", - "search.filters.applied.f.title": "തലക്കെട്ട്", - "search.filters.applied.f.author": "രചയിതാവ്", - "search.filters.applied.f.dateIssued.max": "അവസാന തീയതി", - "search.filters.applied.f.dateIssued.min": "ആരംഭ തീയതി", - "search.filters.applied.f.dateSubmitted": "സമർപ്പിച്ച തീയതി", - "search.filters.applied.f.discoverable": "കണ്ടെത്താനാകാത്ത", - "search.filters.applied.f.entityType": "ഇനം തരം", - "search.filters.applied.f.has_content_in_original_bundle": "ഫയലുകൾ ഉണ്ട്", - "search.filters.applied.f.original_bundle_filenames": "ഫയൽ നാമം", - "search.filters.applied.f.original_bundle_descriptions": "ഫയൽ വിവരണം", - "search.filters.applied.f.has_geospatial_metadata": "ഭൂമിശാസ്ത്ര സ്ഥാനം ഉണ്ട്", - "search.filters.applied.f.itemtype": "തരം", - "search.filters.applied.f.namedresourcetype": "സ്ഥിതി", - "search.filters.applied.f.subject": "വിഷയം", - "search.filters.applied.f.submitter": "സമർപ്പിക്കുന്നയാൾ", - "search.filters.applied.f.jobTitle": "ജോലി പദവി", - "search.filters.applied.f.birthDate.max": "ജനന അവസാന തീയതി", - "search.filters.applied.f.birthDate.min": "ജനന ആരംഭ തീയതി", - "search.filters.applied.f.supervisedBy": "പരിപാലിക്കുന്നത്", - "search.filters.applied.f.withdrawn": "വापസ് എടുത്തത്", - "search.filters.applied.operator.equals": "", - "search.filters.applied.operator.notequals": " തുല്യമല്ല", - "search.filters.applied.operator.authority": "", - "search.filters.applied.operator.notauthority": " അധികാരം അല്ല", - "search.filters.applied.operator.contains": " ഉൾക്കൊള്ളുന്നു", - "search.filters.applied.operator.notcontains": " ഉൾക്കൊള്ളുന്നില്ല", - "search.filters.applied.operator.query": "", - "search.filters.applied.f.point": "കോർഡിനേറ്റുകൾ", - "search.filters.filter.title.head": "തലക്കെട്ട്", - "search.filters.filter.title.placeholder": "തലക്കെട്ട്", - "search.filters.filter.title.label": "തലക്കെട്ട് തിരയുക", - "search.filters.filter.author.head": "രചയിതാവ്", - "search.filters.filter.author.placeholder": "രചയിതാവിന്റെ പേര്", - "search.filters.filter.author.label": "രചയിതാവിന്റെ പേര് തിരയുക", - "search.filters.filter.birthDate.head": "ജനന തീയതി", - "search.filters.filter.birthDate.placeholder": "ജനന തീയതി", - "search.filters.filter.birthDate.label": "ജനന തീയതി തിരയുക", - "search.filters.filter.collapse": "ഫിൽട്ടർ ചുരുക്കുക", - "search.filters.filter.creativeDatePublished.head": "പ്രസിദ്ധീകരിച്ച തീയതി", - "search.filters.filter.creativeDatePublished.placeholder": "പ്രസിദ്ധീകരിച്ച തീയതി", - "search.filters.filter.creativeDatePublished.label": "പ്രസിദ്ധീകരിച്ച തീയതി തിരയുക", - "search.filters.filter.creativeDatePublished.min.label": "ആരംഭം", - "search.filters.filter.creativeDatePublished.max.label": "അവസാനം", - "search.filters.filter.creativeWorkEditor.head": "എഡിറ്റർ", - "search.filters.filter.creativeWorkEditor.placeholder": "എഡിറ്റർ", - "search.filters.filter.creativeWorkEditor.label": "എഡിറ്റർ തിരയുക", - "search.filters.filter.creativeWorkKeywords.head": "വിഷയം", - "search.filters.filter.creativeWorkKeywords.placeholder": "വിഷയം", - "search.filters.filter.creativeWorkKeywords.label": "വിഷയം തിരയുക", - "search.filters.filter.creativeWorkPublisher.head": "പ്രസാധകൻ", - "search.filters.filter.creativeWorkPublisher.placeholder": "പ്രസാധകൻ", - "search.filters.filter.creativeWorkPublisher.label": "പ്രസാധകൻ തിരയുക", - "search.filters.filter.dateIssued.head": "തീയതി", - "search.filters.filter.dateIssued.max.placeholder": "പരമാവധി തീയതി", - "search.filters.filter.dateIssued.max.label": "അവസാനം", - "search.filters.filter.dateIssued.min.placeholder": "കുറഞ്ഞ തീയതി", - "search.filters.filter.dateIssued.min.label": "ആരംഭം", - "search.filters.filter.dateSubmitted.head": "സമർപ്പിച്ച തീയതി", - "search.filters.filter.dateSubmitted.placeholder": "സമർപ്പിച്ച തീയതി", - "search.filters.filter.dateSubmitted.label": "സമർപ്പിച്ച തീയതി തിരയുക", - "search.filters.filter.discoverable.head": "കണ്ടെത്താനാകാത്ത", - "search.filters.filter.withdrawn.head": "വാപസ് എടുത്തത്", - "search.filters.filter.entityType.head": "ഇനം തരം", - "search.filters.filter.entityType.placeholder": "ഇനം തരം", - "search.filters.filter.entityType.label": "ഇനം തരം തിരയുക", - "search.filters.filter.expand": "ഫിൽട്ടർ വികസിപ്പിക്കുക", - "search.filters.filter.has_content_in_original_bundle.head": "ഫയലുകൾ ഉണ്ട്", - "search.filters.filter.original_bundle_filenames.head": "ഫയൽ നാമം", - "search.filters.filter.has_geospatial_metadata.head": "ഭൂമിശാസ്ത്ര സ്ഥാനം ഉണ്ട്", - "search.filters.filter.original_bundle_filenames.placeholder": "ഫയൽ നാമം", - "search.filters.filter.original_bundle_filenames.label": "ഫയൽ നാമം തിരയുക", - "search.filters.filter.original_bundle_descriptions.head": "ഫയൽ വിവരണം", - "search.filters.filter.original_bundle_descriptions.placeholder": "ഫയൽ വിവരണം", - "search.filters.filter.original_bundle_descriptions.label": "ഫയൽ വിവരണം തിരയുക", - "search.filters.filter.itemtype.head": "തരം", - "search.filters.filter.itemtype.placeholder": "തരം", - "search.filters.filter.itemtype.label": "തരം തിരയുക", - "search.filters.filter.jobTitle.head": "ജോലി പദവി", - "search.filters.filter.jobTitle.placeholder": "ജോലി പദവി", - "search.filters.filter.jobTitle.label": "ജോലി പദവി തിരയുക", - "search.filters.filter.knowsLanguage.head": "അറിയുന്ന ഭാഷ", - "search.filters.filter.knowsLanguage.placeholder": "അറിയുന്ന ഭാഷ", - "search.filters.filter.knowsLanguage.label": "അറിയുന്ന ഭാഷ തിരയുക", - "search.filters.filter.namedresourcetype.head": "സ്ഥിതി", - "search.filters.filter.namedresourcetype.placeholder": "സ്ഥിതി", - "search.filters.filter.namedresourcetype.label": "സ്ഥിതി തിരയുക", - "search.filters.filter.objectpeople.head": "ആളുകൾ", - "search.filters.filter.objectpeople.placeholder": "ആളുകൾ", - "search.filters.filter.objectpeople.label": "ആളുകൾ തിരയുക", - "search.filters.filter.organizationAddressCountry.head": "രാജ്യം", - "search.filters.filter.organizationAddressCountry.placeholder": "രാജ്യം", - "search.filters.filter.organizationAddressCountry.label": "രാജ്യം തിരയുക", - "search.filters.filter.organizationAddressLocality.head": "നഗരം", - "search.filters.filter.organizationAddressLocality.placeholder": "നഗരം", - "search.filters.filter.organizationAddressLocality.label": "നഗരം തിരയുക", - "search.filters.filter.organizationFoundingDate.head": "സ്ഥാപിച്ച തീയതി", - "search.filters.filter.organizationFoundingDate.placeholder": "സ്ഥാപിച്ച തീയതി", - "search.filters.filter.organizationFoundingDate.label": "സ്ഥാപിച്ച തീയതി തിരയുക", - "search.filters.filter.organizationFoundingDate.min.label": "ആരംഭം", - "search.filters.filter.organizationFoundingDate.max.label": "അവസാനം", - "search.filters.filter.scope.head": "പരിധി", - "search.filters.filter.scope.placeholder": "പരിധി ഫിൽട്ടർ", - "search.filters.filter.scope.label": "പരിധി ഫിൽട്ടർ തിരയുക", - "search.filters.filter.show-less": "ചുരുക്കുക", - "search.filters.filter.show-more": "കൂടുതൽ കാണിക്കുക", - "search.filters.filter.subject.head": "വിഷയം", - "search.filters.filter.subject.placeholder": "വിഷയം", - "search.filters.filter.subject.label": "വിഷയം തിരയുക", - "search.filters.filter.submitter.head": "സമർപ്പിക്കുന്നയാൾ", - "search.filters.filter.submitter.placeholder": "സമർപ്പിക്കുന്നയാൾ", - "search.filters.filter.submitter.label": "സമർപ്പിക്കുന്നയാൾ തിരയുക", - "search.filters.filter.show-tree": "{{ name }} ട്രീ ബ്രൗസ് ചെയ്യുക", - "search.filters.filter.funding.head": "ഫണ്ടിംഗ്", - "search.filters.filter.funding.placeholder": "ഫണ്ടിംഗ്", - "search.filters.filter.supervisedBy.head": "പരിപാലിക്കുന്നത്", - "search.filters.filter.supervisedBy.placeholder": "പരിപാലിക്കുന്നത്", - "search.filters.filter.supervisedBy.label": "പരിപാലിക്കുന്നത് തിരയുക", - "search.filters.filter.access_status.head": "ആക്സസ് തരം", - "search.filters.filter.access_status.placeholder": "ആക്സസ് തരം", - "search.filters.filter.access_status.label": "ആക്സസ് തരം അനുസരിച്ച് തിരയുക", - "search.filters.entityType.JournalIssue": "ജേണൽ ഇഷ്യൂ", - "search.filters.entityType.JournalVolume": "ജേണൽ വാല്യം", - "search.filters.entityType.OrgUnit": "ഓർഗനൈസേഷണൽ യൂണിറ്റ്", - "search.filters.entityType.Person": "വ്യക്തി", - "search.filters.entityType.Project": "പ്രോജക്റ്റ്", - "search.filters.entityType.Publication": "പ്രസിദ്ധീകരണം", - "search.filters.has_content_in_original_bundle.true": "അതെ", - "search.filters.has_content_in_original_bundle.false": "ഇല്ല", - "search.filters.has_geospatial_metadata.true": "അതെ", - "search.filters.has_geospatial_metadata.false": "ഇല്ല", - "search.filters.discoverable.true": "ഇല്ല", - "search.filters.discoverable.false": "അതെ", - "search.filters.namedresourcetype.Archived": "ആർക്കൈവ് ചെയ്തത്", - "search.filters.namedresourcetype.Validation": "സാധൂകരണം", - "search.filters.namedresourcetype.Waiting for Controller": "റിവ്യൂവറിനായി കാത്തിരിക്കുന്നു", - "search.filters.namedresourcetype.Workflow": "വർക്ക്ഫ്ലോ", - "search.filters.namedresourcetype.Workspace": "വർക്ക്സ്പേസ്", - "search.filters.withdrawn.true": "അതെ", - "search.filters.withdrawn.false": "ഇല്ല", - "search.filters.head": "ഫിൽട്ടറുകൾ", - "search.filters.reset": "ഫിൽട്ടറുകൾ റീസെറ്റ് ചെയ്യുക", - "search.filters.search.submit": "സമർപ്പിക്കുക", - "search.filters.operator.equals.text": "തുല്യമാണ്", - "search.filters.operator.notequals.text": "തുല്യമല്ല", - "search.filters.operator.authority.text": "അധികാരം", - "search.filters.operator.notauthority.text": "അധികാരം അല്ല", - "search.filters.operator.contains.text": "ഉൾക്കൊള്ളുന്നു", - "search.filters.operator.notcontains.text": "ഉൾക്കൊള്ളുന്നില്ല", - "search.filters.operator.query.text": "ക്വറി", - "search.form.search": "തിരയുക", - "search.form.search_dspace": "എല്ലാ റെപ്പോസിറ്ററി", - "search.form.scope.all": "എല്ലാ DSpace", - "search.results.head": "തിരയൽ ഫലങ്ങൾ", - "search.results.no-results": "നിങ്ങളുടെ തിരയലിന് ഫലങ്ങൾ ലഭിച്ചില്ല. നിങ്ങൾ തിരയുന്നത് കണ്ടെത്താൻ പ്രയാസമാണോ? ശ്രമിക്കുക", - "search.results.no-results-link": "ഉദ്ധരണികൾ ചുറ്റും", - "search.results.empty": "നിങ്ങളുടെ തിരയലിന് ഫലങ്ങൾ ലഭിച്ചില്ല.", - "search.results.geospatial-map.empty": "ഈ പേജിൽ ഭൂമിശാസ്ത്ര സ്ഥാനങ്ങളുള്ള ഫലങ്ങൾ ഇല്ല", - "search.results.view-result": "കാണുക", - "search.results.response.500": "ക്വറി എക്സിക്യൂട്ട് ചെയ്യുന്നതിനിടയിൽ ഒരു പിശക് സംഭവിച്ചു, ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക", - "default.search.results.head": "തിരയൽ ഫലങ്ങൾ", - "default-relationships.search.results.head": "തിരയൽ ഫലങ്ങൾ", - "search.sidebar.close": "ഫലങ്ങളിലേക്ക് തിരികെ", - "search.sidebar.filters.title": "ഫിൽട്ടറുകൾ", - "search.sidebar.open": "തിരയൽ ഉപകരണങ്ങൾ", - "search.sidebar.results": "ഫലങ്ങൾ", - "search.sidebar.settings.rpp": "ഒരു പേജിലെ ഫലങ്ങൾ", - "search.sidebar.settings.sort-by": "ക്രമീകരിക്കുക", - "search.sidebar.advanced-search.title": "വിപുലമായ തിരയൽ", - "search.sidebar.advanced-search.filter-by": "ഫിൽട്ടർ ചെയ്യുക", - "search.sidebar.advanced-search.filters": "ഫിൽട്ടറുകൾ", - "search.sidebar.advanced-search.operators": "ഓപ്പറേറ്ററുകൾ", - "search.sidebar.advanced-search.add": "ചേർക്കുക", - "search.sidebar.settings.title": "ക്രമീകരണങ്ങൾ", - "search.view-switch.show-detail": "വിശദാംശങ്ങൾ കാണിക്കുക", - "search.view-switch.show-grid": "ഗ്രിഡായി കാണിക്കുക", - "search.view-switch.show-list": "ലിസ്റ്റായി കാണിക്കുക", - "search.view-switch.show-geospatialMap": "മാപ്പായി കാണിക്കുക", - "selectable-list-item-control.deselect": "ഇനം നിരസിക്കുക", - "selectable-list-item-control.select": "ഇനം തിരഞ്ഞെടുക്കുക", - "sorting.ASC": "ആരോഹണ", - "sorting.DESC": "അവരോഹണ", - "sorting.dc.title.ASC": "തലക്കെട്ട് ആരോഹണ", - "sorting.dc.title.DESC": "തലക്കെട്ട് അവരോഹണ", - "sorting.score.ASC": "കുറഞ്ഞ പ്രസക്തി", - "sorting.score.DESC": "കൂടുതൽ പ്രസക്തി", - "sorting.dc.date.issued.ASC": "പുറത്തിറക്കിയ തീയതി ആരോഹണ", - "sorting.dc.date.issued.DESC": "പുറത്തിറക്കിയ തീയതി അവരോഹണ", - "sorting.dc.date.accessioned.ASC": "ആക്സസ് ചെയ്ത തീയതി ആരോഹണ", - "sorting.dc.date.accessioned.DESC": "ആക്സസ് ചെയ്ത തീയതി അവരോഹണ", - "sorting.lastModified.ASC": "അവസാനം പരിഷ്കരിച്ചത് ആരോഹണ", - "sorting.lastModified.DESC": "അവസാനം പരിഷ്കരിച്ചത് അവരോഹണ", - "sorting.person.familyName.ASC": "അപ്പുറപ്പേര് ആരോഹണ", - "sorting.person.familyName.DESC": "അപ്പുറപ്പേര് അവരോഹണ", - "sorting.person.givenName.ASC": "പേര് ആരോഹണ", - "sorting.person.givenName.DESC": "പേര് അവരോഹണ", - "sorting.person.birthDate.ASC": "ജനന തീയതി ആരോഹണ", - "sorting.person.birthDate.DESC": "ജനന തീയതി അവരോഹണ", - "statistics.title": "സ്ഥിതിവിവരക്കണക്കുകൾ", - "statistics.header": "{{ scope }} ന്റെ സ്ഥിതിവിവരക്കണക്കുകൾ", - "statistics.breadcrumbs": "സ്ഥിതിവിവരക്കണക്കുകൾ", - "statistics.page.no-data": "ഡാറ്റ ലഭ്യമല്ല", - "statistics.table.no-data": "ഡാറ്റ ലഭ്യമല്ല", - "statistics.table.title.TotalVisits": "ആകെ സന്ദർശനങ്ങൾ", - "statistics.table.title.TotalVisitsPerMonth": "മാസം തോറും ആകെ സന്ദർശനങ്ങൾ", - "statistics.table.title.TotalDownloads": "ഫയൽ സന്ദർശനങ്ങൾ", - "statistics.table.title.TopCountries": "അധികം കണ്ട രാജ്യങ്ങൾ", - "statistics.table.title.TopCities": "അധികം കണ്ട നഗരങ്ങൾ", - "statistics.table.header.views": "കാഴ്ചകൾ", - "statistics.table.no-name": "(ഒബ്ജക്റ്റ് പേര് ലോഡ് ചെയ്യാൻ കഴിഞ്ഞില്ല)", - "submission.edit.breadcrumbs": "സമർപ്പണം എഡിറ്റ് ചെയ്യുക", - "submission.edit.title": "സമർപ്പണം എഡിറ്റ് ചെയ്യുക", - "submission.general.cancel": "റദ്ദാക്കുക", - "submission.general.cannot_submit": "നിങ്ങൾക്ക് പുതിയ സമർപ്പണം നടത്താൻ അനുമതി ഇല്ല.", - "submission.general.deposit": "ഡെപ്പോസിറ്റ്", - "submission.general.discard.confirm.cancel": "റദ്ദാക്കുക", - "submission.general.discard.confirm.info": "ഈ പ്രവർത്തനം പിൻവലിക്കാൻ കഴിയില്ല. നിങ്ങൾക്ക് ഉറപ്പാണോ?", - "submission.general.discard.confirm.submit": "അതെ, എനിക്ക് ഉറപ്പാണ്", - "submission.general.discard.confirm.title": "സമർപ്പണം നിരസിക്കുക", - "submission.general.discard.submit": "നിരസിക്കുക", - "submission.general.back.submit": "തിരികെ", - "submission.general.info.saved": "സേവ് ചെയ്തു", - "submission.general.info.pending-changes": "സേവ് ചെയ്യാത്ത മാറ്റങ്ങൾ", - "submission.general.save": "സേവ് ചെയ്യുക", - "submission.general.save-later": "പിന്നീട് സേവ് ചെയ്യുക", - "submission.import-external.page.title": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", - "submission.import-external.title": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", - "submission.import-external.title.Journal": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു ജേണൽ ഇറക്കുമതി ചെയ്യുക", - "submission.import-external.title.JournalIssue": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു ജേണൽ ഇഷ്യൂ ഇറക്കുമതി ചെയ്യുക", - "submission.import-external.title.JournalVolume": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു ജേണൽ വാല്യം ഇറക്കുമതി ചെയ്യുക", - "submission.import-external.title.OrgUnit": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു പ്രസാധകൻ ഇറക്കുമതി ചെയ്യുക", - "submission.import-external.title.Person": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു വ്യക്തി ഇറക്കുമതി ചെയ്യുക", - "submission.import-external.title.Project": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു പ്രോജക്റ്റ് ഇറക്കുമതി ചെയ്യുക", - "submission.import-external.title.Publication": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു പ്രസിദ്ധീകരണം ഇറക്കുമതി ചെയ്യുക", - "submission.import-external.title.none": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", - "submission.import-external.page.hint": "DSpace-ലേക്ക് ഇറക്കുമതി ചെയ്യാൻ വെബിൽ നിന്ന് ഇനങ്ങൾ കണ്ടെത്താൻ മുകളിൽ ഒരു ക്വറി നൽകുക.", - "submission.import-external.back-to-my-dspace": "MyDSpace-ലേക്ക് തിരികെ", - "submission.import-external.search.placeholder": "ബാഹ്യ സ്രോതസ്സ് തിരയുക", - "submission.import-external.search.button": "തിരയുക", - "submission.import-external.search.button.hint": "തിരയാൻ ചില വാക്കുകൾ എഴുതുക", - "submission.import-external.search.source.hint": "ഒരു ബാഹ്യ സ്രോതസ്സ് തിരഞ്ഞെടുക്കുക", - "submission.import-external.source.arxiv": "arXiv", - "submission.import-external.source.ads": "NASA/ADS", - "submission.import-external.source.cinii": "CiNii", - "submission.import-external.source.crossref": "Crossref", - "submission.import-external.source.datacite": "DataCite", - "submission.import-external.source.dataciteProject": "DataCite", - "submission.import-external.source.doi": "DOI", - "submission.import-external.source.scielo": "SciELO", - "submission.import-external.source.scopus": "Scopus", - "submission.import-external.source.vufind": "VuFind", - "submission.import-external.source.wos": "Web Of Science", - "submission.import-external.source.orcidWorks": "ORCID", - "submission.import-external.source.epo": "European Patent Office (EPO)", - "submission.import-external.source.loading": "ലോഡിംഗ് ...", - "submission.import-external.source.sherpaJournal": "SHERPA Journals", - "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", - "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", - "submission.import-external.source.openaire": "OpenAIRE Search by Authors", - "submission.import-external.source.openaireTitle": "OpenAIRE Search by Title", - "submission.import-external.source.openaireFunding": "OpenAIRE Search by Funder", - "submission.import-external.source.orcid": "ORCID", - "submission.import-external.source.pubmed": "Pubmed", - "submission.import-external.source.pubmedeu": "Pubmed Europe", - "submission.import-external.source.lcname": "Library of Congress Names", - "submission.import-external.source.ror": "Research Organization Registry (ROR)", - "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", - "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", - "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", - "submission.import-external.source.openalexPerson": "OpenAlex Search by name", - "submission.import-external.source.openalexJournal": "OpenAlex Journals", - "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", - "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", - "submission.import-external.source.openalexFunder": "OpenAlex Funders", - "submission.import-external.preview.title": "ഇനം പ്രിവ്യൂ", - "submission.import-external.preview.title.Publication": "പ്രസിദ്ധീകരണ പ്രിവ്യൂ", - "submission.import-external.preview.title.none": "ഇനം പ്രിവ്യൂ", - "submission.import-external.preview.title.Journal": "ജേണൽ പ്രിവ്യൂ", - "submission.import-external.preview.title.OrgUnit": "ഓർഗനൈസേഷണൽ യൂണിറ്റ് പ്രിവ്യൂ", - "submission.import-external.preview.title.Person": "വ്യക്തി പ്രിവ്യൂ", - "submission.import-external.preview.title.Project": "പ്രോജക്റ്റ് പ്രിവ്യൂ", - "submission.import-external.preview.title.Publication": "പ്രസിദ്ധീകരണം പ്രിവ്യൂ", - "submission.import-external.preview.subtitle": "ചുവടെയുള്ള മെറ്റാഡാറ്റ ഒരു ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഇറക്കുമതി ചെയ്തതാണ്. സമർപ്പണം ആരംഭിക്കുമ്പോൾ ഇത് പ്രീ-ഫിൽ ചെയ്യും.", - "submission.import-external.preview.button.import": "സമർപ്പണം ആരംഭിക്കുക", - "submission.import-external.preview.error.import.title": "സമർപ്പണ പിശക്", - "submission.import-external.preview.error.import.body": "ബാഹ്യ സ്രോതസ്സ് എൻട്രി ഇറക്കുമതി പ്രക്രിയയിൽ ഒരു പിശക് സംഭവിച്ചു.", - "submission.sections.describe.relationship-lookup.close": "അടയ്ക്കുക", - "submission.sections.describe.relationship-lookup.external-source.added": "തിരഞ്ഞെടുപ്പിലേക്ക് പ്രാദേശിക എൻട്രി വിജയകരമായി ചേർത്തു", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "റിമോട്ട് രചയിതാവ് ഇറക്കുമതി ചെയ്യുക", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "റിമോട്ട് ജേണൽ ഇറക്കുമതി ചെയ്യുക", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "റിമോട്ട് ജേണൽ ഇഷ്യൂ ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "റിമോട്ട് ജേണൽ വോളിയം ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "പ്രോജക്റ്റ്", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "റിമോട്ട് ഇനം ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "റിമോട്ട് ഇവന്റ് ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "റിമോട്ട് ഉൽപ്പന്നം ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "റിമോട്ട് ഉപകരണം ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "റിമോട്ട് ഓർഗനൈസേഷണൽ യൂണിറ്റ് ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "റിമോട്ട് ഫണ്ട് ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "റിമോട്ട് വ്യക്തി ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "റിമോട്ട് പേറ്റന്റ് ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "റിമോട്ട് പ്രോജക്റ്റ് ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "റിമോട്ട് പബ്ലിക്കേഷൻ ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "പുതിയ എന്റിറ്റി ചേർത്തു!", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "പ്രോജക്റ്റ്", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "റിമോട്ട് രചയിതാവ് ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "ലോക്കൽ രചയിതാവിനെ വിജയകരമായി തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "എക്സ്റ്റേണൽ രചയിതാവിനെ വിജയകരമായി ഇമ്പോർട്ട് ചെയ്ത് തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "അധികാരം", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "പുതിയ ലോക്കൽ അധികാര എൻട്രിയായി ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "റദ്ദാക്കുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "പുതിയ എൻട്രികൾ ഇമ്പോർട്ട് ചെയ്യാൻ ഒരു കളക്ഷൻ തിരഞ്ഞെടുക്കുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "എന്റിറ്റികൾ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "പുതിയ ലോക്കൽ എന്റിറ്റിയായി ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC നാമത്തിൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa ജേണലിൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa പബ്ലിഷറിൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "റിമോട്ട് ജേണൽ ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "ലോക്കൽ ജേണൽ വിജയകരമായി തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "എക്സ്റ്റേണൽ ജേണൽ വിജയകരമായി ഇമ്പോർട്ട് ചെയ്ത് തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "റിമോട്ട് ജേണൽ ഇഷ്യൂ ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "ലോക്കൽ ജേണൽ ഇഷ്യൂ വിജയകരമായി തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "എക്സ്റ്റേണൽ ജേണൽ ഇഷ്യൂ വിജയകരമായി ഇമ്പോർട്ട് ചെയ്ത് തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "റിമോട്ട് ജേണൽ വോളിയം ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "ലോക്കൽ ജേണൽ വോളിയം വിജയകരമായി തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "എക്സ്റ്റേണൽ ജേണൽ വോളിയം വിജയകരമായി ഇമ്പോർട്ട് ചെയ്ത് തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "ഒരു ലോക്കൽ മാച്ച് തിരഞ്ഞെടുക്കുക:", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "റിമോട്ട് ഓർഗനൈസേഷൻ ഇമ്പോർട്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "ലോക്കൽ ഓർഗനൈസേഷൻ വിജയകരമായി തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "എക്സ്റ്റേണൽ ഓർഗനൈസേഷൻ വിജയകരമായി ഇമ്പോർട്ട് ചെയ്ത് തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", - - "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "എല്ലാം അൺസെലക്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "പേജ് അൺസെലക്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.search-tab.loading": "ലോഡിംഗ്...", - - "submission.sections.describe.relationship-lookup.search-tab.placeholder": "തിരയൽ ക്വറി", - - "submission.sections.describe.relationship-lookup.search-tab.search": "തിരയുക", - - "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "തിരയുക...", - - "submission.sections.describe.relationship-lookup.search-tab.select-all": "എല്ലാം സെലക്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.search-tab.select-page": "പേജ് സെലക്ട് ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.selected": "{{ size }} ഇനങ്ങൾ തിരഞ്ഞെടുത്തു", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "ലോക്കൽ രചയിതാക്കൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "ലോക്കൽ ജേണലുകൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "ലോക്കൽ പ്രോജക്റ്റുകൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "ലോക്കൽ പബ്ലിക്കേഷനുകൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "ലോക്കൽ രചയിതാക്കൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "ലോക്കൽ ഓർഗനൈസേഷണൽ യൂണിറ്റുകൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "ലോക്കൽ ഡാറ്റ പാക്കേജുകൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "ലോക്കൽ ഡാറ്റ ഫയലുകൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "ലോക്കൽ ജേണലുകൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "ലോക്കൽ ജേണൽ ഇഷ്യൂകൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "ലോക്കൽ ജേണൽ ഇഷ്യൂകൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "ലോക്കൽ ജേണൽ വോളിയങ്ങൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "ലോക്കൽ ജേണൽ വോളിയങ്ങൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "ലോക്കൽ ജേണൽ വോളിയങ്ങൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa ജേണലുകൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa പബ്ലിഷർമാർ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC നാമങ്ങൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE രചയിതാക്കൾ അനുസരിച്ച് തിരയുക ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE ടൈറ്റിൽ അനുസരിച്ച് തിരയുക ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE ഫണ്ടർ അനുസരിച്ച് തിരയുക ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN അനുസരിച്ച് Sherpa ജേണലുകൾ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "സ്ഥാപനം അനുസരിച്ച് OpenAlex തിരയുക ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "പബ്ലിഷർ അനുസരിച്ച് OpenAlex തിരയുക ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "ഫണ്ടർ അനുസരിച്ച് OpenAlex തിരയുക ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "പ്രോജക്റ്റ് അനുസരിച്ച് DataCite തിരയുക ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "ഫണ്ടിംഗ് ഏജൻസികൾക്കായി തിരയുക", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "ഫണ്ടിംഗിനായി തിരയുക", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "ഓർഗനൈസേഷണൽ യൂണിറ്റുകൾക്കായി തിരയുക", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "പ്രോജക്റ്റുകൾ", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "പ്രോജക്റ്റിന്റെ ഫണ്ടർ", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "രചയിതാവിന്റെ പബ്ലിക്കേഷൻ", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "പ്രോജക്റ്റിന്റെ ഓർഗനൈസേഷണൽ യൂണിറ്റ്", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "പ്രോജക്റ്റ്", - - "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "പ്രോജക്റ്റുകൾ", - - "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "പ്രോജക്റ്റിന്റെ ഫണ്ടർ", - - "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "പ്രോജക്റ്റിന്റെ വ്യക്തി", - - "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "തിരയുക...", - - "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "നിലവിലെ തിരഞ്ഞെടുപ്പ് ({{ count }})", - - "submission.sections.describe.relationship-lookup.title.Journal": "ജേണൽ", - - "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "ജേണൽ ഇഷ്യൂകൾ", - - "submission.sections.describe.relationship-lookup.title.JournalIssue": "ജേണൽ ഇഷ്യൂകൾ", - - "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "ജേണൽ വോളിയങ്ങൾ", - - "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "ജേണൽ വോളിയങ്ങൾ", - - "submission.sections.describe.relationship-lookup.title.JournalVolume": "ജേണൽ വോളിയങ്ങൾ", - - "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "ജേണലുകൾ", - - "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "രചയിതാക്കൾ", - - "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "ഫണ്ടിംഗ് ഏജൻസി", - - "submission.sections.describe.relationship-lookup.title.Project": "പ്രോജക്റ്റുകൾ", - - "submission.sections.describe.relationship-lookup.title.Publication": "പബ്ലിക്കേഷനുകൾ", - - "submission.sections.describe.relationship-lookup.title.Person": "രചയിതാക്കൾ", - - "submission.sections.describe.relationship-lookup.title.OrgUnit": "ഓർഗനൈസേഷണൽ യൂണിറ്റുകൾ", - - "submission.sections.describe.relationship-lookup.title.DataPackage": "ഡാറ്റ പാക്കേജുകൾ", - - "submission.sections.describe.relationship-lookup.title.DataFile": "ഡാറ്റ ഫയലുകൾ", - - "submission.sections.describe.relationship-lookup.title.Funding Agency": "ഫണ്ടിംഗ് ഏജൻസി", - - "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "ഫണ്ടിംഗ്", - - "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "പാരന്റ് ഓർഗനൈസേഷണൽ യൂണിറ്റ്", - - "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "പബ്ലിക്കേഷൻ", - - "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "ഓർഗനൈസേഷണൽ യൂണിറ്റ്", - - "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ഡ്രോപ്പ്ഡൗൺ ടോഗിൾ ചെയ്യുക", - - "submission.sections.describe.relationship-lookup.selection-tab.settings": "സെറ്റിംഗുകൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "നിങ്ങളുടെ തിരഞ്ഞെടുപ്പ് ഇപ്പോൾ ശൂന്യമാണ്.", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "തിരഞ്ഞെടുത്ത രചയിതാക്കൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "തിരഞ്ഞെടുത്ത ജേണലുകൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "തിരഞ്ഞെടുത്ത ജേണൽ വോളിയം", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "തിരഞ്ഞെടുത്ത ജേണൽ വോളിയം", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "തിരഞ്ഞെടുത്ത പ്രോജക്റ്റുകൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "തിരഞ്ഞെടുത്ത പബ്ലിക്കേഷനുകൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "തിരഞ്ഞെടുത്ത രചയിതാക്കൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "തിരഞ്ഞെടുത്ത ഓർഗനൈസേഷണൽ യൂണിറ്റുകൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "തിരഞ്ഞെടുത്ത ഡാറ്റ പാക്കേജുകൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "തിരഞ്ഞെടുത്ത ഡാറ്റ ഫയലുകൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "തിരഞ്ഞെടുത്ത ജേണലുകൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "തിരഞ്ഞെടുത്ത ഇഷ്യൂ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "തിരഞ്ഞെടുത്ത ജേണൽ വോളിയം", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "തിരഞ്ഞെടുത്ത ഫണ്ടിംഗ് ഏജൻസി", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "തിരഞ്ഞെടുത്ത ഫണ്ടിംഗ്", - - "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "തിരഞ്ഞെടുത്ത ഇഷ്യൂ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "തിരഞ്ഞെടുത്ത ഓർഗനൈസേഷണൽ യൂണിറ്റ്", - - "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.selection-tab.title": "തിരയൽ ഫലങ്ങൾ", - - "submission.sections.describe.relationship-lookup.name-variant.notification.content": "ഈ വ്യക്തിക്കായി \"{{ value }}\" ഒരു പേര് വേരിയന്റായി സംരക്ഷിക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുണ്ടോ? അങ്ങനെ ചെയ്യാതിരിക്കുകയാണെങ്കിൽ, ഈ സബ്മിഷനിൽ മാത്രം ഇത് ഉപയോഗിക്കാം.", - - "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "ഒരു പുതിയ പേര് വേരിയന്റ് സംരക്ഷിക്കുക", - - "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "ഈ സബ്മിഷനിൽ മാത്രം ഉപയോഗിക്കുക", - - "submission.sections.ccLicense.type": "ലൈസൻസ് തരം", - - "submission.sections.ccLicense.select": "ഒരു ലൈസൻസ് തരം തിരഞ്ഞെടുക്കുക…", - - "submission.sections.ccLicense.change": "നിങ്ങളുടെ ലൈസൻസ് തരം മാറ്റുക…", - - "submission.sections.ccLicense.none": "ലൈസൻസുകൾ ലഭ്യമല്ല", - - "submission.sections.ccLicense.option.select": "ഒരു ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക…", - - "submission.sections.ccLicense.link": "നിങ്ങൾ തിരഞ്ഞെടുത്ത ലൈസൻസ്:", - - "submission.sections.ccLicense.confirmation": "ഞാൻ മുകളിലുള്ള ലൈസൻസ് അനുവദിക്കുന്നു", - - "submission.sections.general.add-more": "കൂടുതൽ ചേർക്കുക", - - "submission.sections.general.cannot_deposit": "ഫോമിൽ പിശകുകൾ കാരണം ഡെപ്പോസിറ്റ് പൂർത്തിയാക്കാൻ കഴിയില്ല.
ഡെപ്പോസിറ്റ് പൂർത്തിയാക്കാൻ എല്ലാ ആവശ്യമായ ഫീൽഡുകളും പൂരിപ്പിക്കുക.", - - "submission.sections.general.collection": "കളക്ഷൻ", - - "submission.sections.general.deposit_error_notice": "ഇനം സമർപ്പിക്കുന്നതിൽ ഒരു പ്രശ്നം ഉണ്ടായിരുന്നു, ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", - - "submission.sections.general.deposit_success_notice": "സമർപ്പണം വിജയകരമായി ഡെപ്പോസിറ്റ് ചെയ്തു.", - - "submission.sections.general.discard_error_notice": "ഇനം ഉപേക്ഷിക്കുന്നതിൽ ഒരു പ്രശ്നം ഉണ്ടായിരുന്നു, ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", - - "submission.sections.general.discard_success_notice": "സമർപ്പണം വിജയകരമായി ഉപേക്ഷിച്ചു.", - - "submission.sections.general.metadata-extracted": "പുതിയ മെറ്റാഡാറ്റ {{sectionId}} വിഭാഗത്തിലേക്ക് വേർതിരിച്ചെടുത്ത് ചേർത്തിരിക്കുന്നു.", - - "submission.sections.general.metadata-extracted-new-section": "പുതിയ {{sectionId}} വിഭാഗം സമർപ്പണത്തിലേക്ക് ചേർത്തിരിക്കുന്നു.", - - "submission.sections.general.no-collection": "കളക്ഷൻ കണ്ടെത്തിയില്ല", - - "submission.sections.general.no-entity": "എന്റിറ്റി തരങ്ങൾ കണ്ടെത്തിയില്ല", - - "submission.sections.general.no-sections": "ഒപ്ഷനുകൾ ലഭ്യമല്ല", - - "submission.sections.general.save_error_notice": "ഇനം സംരക്ഷിക്കുന്നതിൽ ഒരു പ്രശ്നം ഉണ്ടായിരുന്നു, ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", - - "submission.sections.general.save_success_notice": "സമർപ്പണം വിജയകരമായി സംരക്ഷിച്ചു.", - - "submission.sections.general.search-collection": "ഒരു കളക്ഷൻ തിരയുക", - - "submission.sections.general.sections_not_valid": "പൂർത്തിയാകാത്ത വിഭാഗങ്ങൾ ഉണ്ട്.", - - "submission.sections.identifiers.info": "നിങ്ങളുടെ ഇനത്തിനായി ഇനിപ്പറയുന്ന ഐഡന്റിഫയറുകൾ സൃഷ്ടിക്കും:", - - "submission.sections.identifiers.no_handle": "ഈ ഇനത്തിനായി ഹാൻഡിലുകൾ മിന്റ് ചെയ്തിട്ടില്ല.", - - "submission.sections.identifiers.no_doi": "ഈ ഇനത്തിനായി DOI-കൾ മിന്റ് ചെയ്തിട്ടില്ല.", - - "submission.sections.identifiers.handle_label": "ഹാൻഡിൽ: ", - - "submission.sections.identifiers.doi_label": "DOI: ", - - "submission.sections.identifiers.otherIdentifiers_label": "മറ്റ് ഐഡന്റിഫയറുകൾ: ", - - "submission.sections.submit.progressbar.accessCondition": "ഇനം ആക്സസ് വ്യവസ്ഥകൾ", - - "submission.sections.submit.progressbar.CClicense": "ക്രിയേറ്റീവ് കോമൺസ് ലൈസൻസ്", - - "submission.sections.submit.progressbar.describe.recycle": "റീസൈക്കിൾ", - - "submission.sections.submit.progressbar.describe.stepcustom": "വിവരണം", - - "submission.sections.submit.progressbar.describe.stepone": "വിവരണം", - - "submission.sections.submit.progressbar.describe.steptwo": "വിവരണം", - - "submission.sections.submit.progressbar.duplicates": "സാധ്യമായ ഡ്യൂപ്ലിക്കേറ്റുകൾ", - - "submission.sections.submit.progressbar.identifiers": "ഐഡന്റിഫയറുകൾ", - - "submission.sections.submit.progressbar.license": "ഡെപ്പോസിറ്റ് ലൈസൻസ്", - - "submission.sections.submit.progressbar.sherpapolicy": "ഷെർപ്പാ പോളിസികൾ", - - "submission.sections.submit.progressbar.upload": "ഫയലുകൾ അപ്ലോഡ് ചെയ്യുക", - - "submission.sections.submit.progressbar.sherpaPolicies": "പ്രസാധകരുടെ ഓപ്പൺ ആക്സസ് പോളിസി വിവരം", - - "submission.sections.sherpa-policy.title-empty": "പ്രസാധക പോളിസി വിവരം ലഭ്യമല്ല. നിങ്ങളുടെ ജോലിയുമായി ബന്ധപ്പെട്ട ഒരു ISSN ഉണ്ടെങ്കിൽ, ബന്ധപ്പെട്ട പ്രസാധക ഓപ്പൺ ആക്സസ് പോളിസികൾ കാണാൻ ദയവായി ഇത് മുകളിൽ നൽകുക.", - - "submission.sections.status.errors.title": "പിശകുകൾ", - - "submission.sections.status.valid.title": "സാധുത", - - "submission.sections.status.warnings.title": "മുന്നറിയിപ്പുകൾ", - - "submission.sections.status.errors.aria": "പിശകുകൾ ഉണ്ട്", - - "submission.sections.status.valid.aria": "സാധുതയുണ്ട്", - - "submission.sections.status.warnings.aria": "മുന്നറിയിപ്പുകൾ ഉണ്ട്", - - "submission.sections.status.info.title": "അധിക വിവരങ്ങൾ", - - "submission.sections.status.info.aria": "അധിക വിവരങ്ങൾ", - - "submission.sections.toggle.open": "വിഭാഗം തുറക്കുക", - - "submission.sections.toggle.close": "വിഭാഗം അടയ്ക്കുക", - - "submission.sections.toggle.aria.open": "{{sectionHeader}} വിഭാഗം വികസിപ്പിക്കുക", - - "submission.sections.toggle.aria.close": "{{sectionHeader}} വിഭാഗം ചുരുക്കുക", - - "submission.sections.upload.primary.make": "{{fileName}} പ്രാഥമിക ബിറ്റ്സ്ട്രീം ആക്കുക", - - "submission.sections.upload.primary.remove": "{{fileName}} പ്രാഥമിക ബിറ്റ്സ്ട്രീം ആയി നീക്കം ചെയ്യുക", - - "submission.sections.upload.delete.confirm.cancel": "റദ്ദാക്കുക", - - "submission.sections.upload.delete.confirm.info": "ഈ പ്രവർത്തനം പിൻവലിക്കാനാവില്ല. നിങ്ങൾക്ക് ഉറപ്പാണോ?", - - "submission.sections.upload.delete.confirm.submit": "അതെ, എനിക്ക് ഉറപ്പാണ്", - - "submission.sections.upload.delete.confirm.title": "ബിറ്റ്സ്ട്രീം ഇല്ലാതാക്കുക", - - "submission.sections.upload.delete.submit": "ഇല്ലാതാക്കുക", - - "submission.sections.upload.download.title": "ബിറ്റ്സ്ട്രീം ഡൗൺലോഡ് ചെയ്യുക", - - "submission.sections.upload.drop-message": "ഇനത്തിലേക്ക് അറ്റാച്ച് ചെയ്യാൻ ഫയലുകൾ ഡ്രോപ്പ് ചെയ്യുക", - - "submission.sections.upload.edit.title": "ബിറ്റ്സ്ട്രീം എഡിറ്റ് ചെയ്യുക", - - "submission.sections.upload.form.access-condition-label": "ആക്സസ് കണ്ടീഷൻ തരം", - - "submission.sections.upload.form.access-condition-hint": "ഇനം ഡെപ്പോസിറ്റ് ചെയ്ത ശേഷം ബിറ്റ്സ്ട്രീമിൽ പ്രയോഗിക്കാൻ ഒരു ആക്സസ് കണ്ടീഷൻ തിരഞ്ഞെടുക്കുക", - - "submission.sections.upload.form.date-required": "തീയതി ആവശ്യമാണ്.", - - "submission.sections.upload.form.date-required-from": "ആക്സസ് നൽകുന്ന തീയതി ആവശ്യമാണ്.", - - "submission.sections.upload.form.date-required-until": "ആക്സസ് നൽകുന്ന തീയതി വരെ ആവശ്യമാണ്.", - - "submission.sections.upload.form.from-label": "ആക്സസ് നൽകുന്നത്", - - "submission.sections.upload.form.from-hint": "ബന്ധപ്പെട്ട ആക്സസ് കണ്ടീഷൻ പ്രയോഗിക്കുന്ന തീയതി തിരഞ്ഞെടുക്കുക", - - "submission.sections.upload.form.from-placeholder": "മുതൽ", - - "submission.sections.upload.form.group-label": "ഗ്രൂപ്പ്", - - "submission.sections.upload.form.group-required": "ഗ്രൂപ്പ് ആവശ്യമാണ്.", - - "submission.sections.upload.form.until-label": "ആക്സസ് നൽകുന്നത് വരെ", - - "submission.sections.upload.form.until-hint": "ബന്ധപ്പെട്ട ആക്സസ് കണ്ടീഷൻ പ്രയോഗിക്കുന്ന തീയതി വരെ തിരഞ്ഞെടുക്കുക", - - "submission.sections.upload.form.until-placeholder": "വരെ", - - "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} കളക്ഷനിൽ അപ്ലോഡ് ചെയ്ത ഫയലുകൾ ഇനിപ്പറയുന്ന ഗ്രൂപ്പ്(കൾ) അനുസരിച്ച് ആക്സസ് ചെയ്യാവുന്നതാണ്:", - - "submission.sections.upload.header.policy.default.withlist": "ദയവായി ശ്രദ്ധിക്കുക, {{collectionName}} കളക്ഷനിൽ അപ്ലോഡ് ചെയ്ത ഫയലുകൾ, ഒറ്റ ഫയലിനായി വ്യക്തമായി തീരുമാനിച്ചതിന് പുറമേ, ഇനിപ്പറയുന്ന ഗ്രൂപ്പ്(കൾ) ഉപയോഗിച്ച് ആക്സസ് ചെയ്യാവുന്നതാണ്:", - - "submission.sections.upload.info": "ഇവിടെ നിങ്ങൾക്ക് ഇനത്തിൽ നിലവിൽ ഉള്ള എല്ലാ ഫയലുകളും കണ്ടെത്താനാകും. നിങ്ങൾക്ക് ഫയൽ മെറ്റാഡാറ്റയും ആക്സസ് വ്യവസ്ഥകളും അപ്ഡേറ്റ് ചെയ്യാനോ പേജിൽ എവിടെയെങ്കിലും ഫയലുകൾ വലിച്ചിട്ട് അധിക ഫയലുകൾ അപ്ലോഡ് ചെയ്യാനോ കഴിയും.", - - "submission.sections.upload.no-entry": "ഇല്ല", - - "submission.sections.upload.no-file-uploaded": "ഇതുവരെ ഫയൽ അപ്ലോഡ് ചെയ്തിട്ടില്ല.", - - "submission.sections.upload.save-metadata": "മെറ്റാഡാറ്റ സംരക്ഷിക്കുക", - - "submission.sections.upload.undo": "റദ്ദാക്കുക", - - "submission.sections.upload.upload-failed": "അപ്ലോഡ് പരാജയപ്പെട്ടു", - - "submission.sections.upload.upload-successful": "അപ്ലോഡ് വിജയിച്ചു", - - "submission.sections.accesses.form.discoverable-description": "ചെക്ക് ചെയ്യുമ്പോൾ, ഈ ഇനം തിരയൽ/ബ്രൗസിൽ കണ്ടെത്താനാകും. ചെക്ക് ചെയ്യാതിരിക്കുമ്പോൾ, ഇനം ഒരു നേരിട്ടുള്ള ലിങ്ക് വഴി മാത്രമേ ലഭ്യമാകൂ, അത് ഒരിക്കലും തിരയൽ/ബ്രൗസിൽ പ്രത്യക്ഷപ്പെടില്ല.", - - "submission.sections.accesses.form.discoverable-label": "കണ്ടെത്താനാകുന്ന", - - "submission.sections.accesses.form.access-condition-label": "ആക്സസ് കണ്ടീഷൻ തരം", - - "submission.sections.accesses.form.access-condition-hint": "ഇനം ഡെപ്പോസിറ്റ് ചെയ്ത ശേഷം പ്രയോഗിക്കാൻ ഒരു ആക്സസ് കണ്ടീഷൻ തിരഞ്ഞെടുക്കുക", - - "submission.sections.accesses.form.date-required": "തീയതി ആവശ്യമാണ്.", - - "submission.sections.accesses.form.date-required-from": "ആക്സസ് നൽകുന്ന തീയതി ആവശ്യമാണ്.", - - "submission.sections.accesses.form.date-required-until": "ആക്സസ് നൽകുന്ന തീയതി വരെ ആവശ്യമാണ്.", - - "submission.sections.accesses.form.from-label": "ആക്സസ് നൽകുന്നത്", - - "submission.sections.accesses.form.from-hint": "ബന്ധപ്പെട്ട ആക്സസ് കണ്ടീഷൻ പ്രയോഗിക്കുന്ന തീയതി തിരഞ്ഞെടുക്കുക", - - "submission.sections.accesses.form.from-placeholder": "മുതൽ", - - "submission.sections.accesses.form.group-label": "ഗ്രൂപ്പ്", - - "submission.sections.accesses.form.group-required": "ഗ്രൂപ്പ് ആവശ്യമാണ്.", - - "submission.sections.accesses.form.until-label": "ആക്സസ് നൽകുന്നത് വരെ", - - "submission.sections.accesses.form.until-hint": "ബന്ധപ്പെട്ട ആക്സസ് കണ്ടീഷൻ പ്രയോഗിക്കുന്ന തീയതി വരെ തിരഞ്ഞെടുക്കുക", - - "submission.sections.accesses.form.until-placeholder": "വരെ", - - "submission.sections.duplicates.none": "ഡ്യൂപ്ലിക്കേറ്റുകൾ കണ്ടെത്തിയില്ല.", - - "submission.sections.duplicates.detected": "സാധ്യമായ ഡ്യൂപ്ലിക്കേറ്റുകൾ കണ്ടെത്തി. ദയവായി താഴെയുള്ള ലിസ്റ്റ് അവലോകനം ചെയ്യുക.", - - "submission.sections.duplicates.in-workspace": "ഈ ഇനം വർക്ക്സ്പേസിലാണ്", - - "submission.sections.duplicates.in-workflow": "ഈ ഇനം വർക്ക്ഫ്ലോയിലാണ്", - - "submission.sections.license.granted-label": "ഞാൻ മുകളിലുള്ള ലൈസൻസ് സ്ഥിരീകരിക്കുന്നു", - - "submission.sections.license.required": "നിങ്ങൾ ലൈസൻസ് സ്വീകരിക്കണം", - - "submission.sections.license.notgranted": "നിങ്ങൾ ലൈസൻസ് സ്വീകരിക്കണം", - - "submission.sections.sherpa.publication.information": "പ്രസിദ്ധീകരണ വിവരം", - - "submission.sections.sherpa.publication.information.title": "തലക്കെട്ട്", - - "submission.sections.sherpa.publication.information.issns": "ISSNs", - - "submission.sections.sherpa.publication.information.url": "URL", - - "submission.sections.sherpa.publication.information.publishers": "പ്രസാധകർ", - - "submission.sections.sherpa.publication.information.romeoPub": "റോമിയോ പബ്", - - "submission.sections.sherpa.publication.information.zetoPub": "സെറ്റോ പബ്", - - "submission.sections.sherpa.publisher.policy": "പ്രസാധക പോളിസി", - - "submission.sections.sherpa.publisher.policy.description": "ഷെർപ്പ റോമിയോ വഴി ചുവടെയുള്ള വിവരം കണ്ടെത്തി. നിങ്ങളുടെ പ്രസാധകരുടെ പോളിസികളെ അടിസ്ഥാനമാക്കി, ഒരു എംബാർഗോ ആവശ്യമായി വരാം എന്നോ നിങ്ങൾ അപ്ലോഡ് ചെയ്യാൻ അനുവദിച്ചിരിക്കുന്ന ഫയലുകൾ ഏതൊക്കെയാണെന്നോ ഇത് ഉപദേശം നൽകുന്നു. നിങ്ങൾക്ക് എന്തെങ്കിലും ചോദ്യങ്ങൾ ഉണ്ടെങ്കിൽ, ഫീഡ്ബാക്ക് ഫോം വഴി നിങ്ങളുടെ സൈറ്റ് അഡ്മിനിസ്ട്രേറ്ററെ സമീപിക്കുക.", - - "submission.sections.sherpa.publisher.policy.openaccess": "ഈ ജേണലിന്റെ പോളിസി അനുവദിക്കുന്ന ഓപ്പൺ ആക്സസ് പാതകൾ ലേഖന പതിപ്പ് അനുസരിച്ച് താഴെ ലിസ്റ്റ് ചെയ്തിരിക്കുന്നു. കൂടുതൽ വിശദമായ കാഴ്ചയ്ക്ക് ഒരു പാതയിൽ ക്ലിക്ക് ചെയ്യുക", - - "submission.sections.sherpa.publisher.policy.more.information": "കൂടുതൽ വിവരങ്ങൾക്ക്, ഇനിപ്പറയുന്ന ലിങ്കുകൾ കാണുക:", - - "submission.sections.sherpa.publisher.policy.version": "പതിപ്പ്", - - "submission.sections.sherpa.publisher.policy.embargo": "എംബാർഗോ", - - "submission.sections.sherpa.publisher.policy.noembargo": "എംബാർഗോ ഇല്ല", - - "submission.sections.sherpa.publisher.policy.nolocation": "ഒന്നുമില്ല", - - "submission.sections.sherpa.publisher.policy.license": "ലൈസൻസ്", - - "submission.sections.sherpa.publisher.policy.prerequisites": "മുൻഗണനകൾ", - - "submission.sections.sherpa.publisher.policy.location": "സ്ഥാനം", - - "submission.sections.sherpa.publisher.policy.conditions": "വ്യവസ്ഥകൾ", - - "submission.sections.sherpa.publisher.policy.refresh": "റിഫ്രഷ്", - - "submission.sections.sherpa.record.information": "റെക്കോർഡ് വിവരം", - - "submission.sections.sherpa.record.information.id": "ID", - - "submission.sections.sherpa.record.information.date.created": "തീയതി സൃഷ്ടിച്ചു", - - "submission.sections.sherpa.record.information.date.modified": "അവസാനം പരിഷ്കരിച്ചത്", - - "submission.sections.sherpa.record.information.uri": "URI", - - "submission.sections.sherpa.error.message": "ഷെർപ്പ വിവരങ്ങൾ വീണ്ടെടുക്കുന്നതിൽ ഒരു പിശക് ഉണ്ടായിരുന്നു", - - "submission.submit.breadcrumbs": "പുതിയ സമർപ്പണം", - - "submission.submit.title": "പുതിയ സമർപ്പണം", - - "submission.workflow.generic.delete": "ഇല്ലാതാക്കുക", - - "submission.workflow.generic.delete-help": "ഈ ഇനം ഉപേക്ഷിക്കാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക. അതിനുശേഷം നിങ്ങളോട് ഇത് സ്ഥിരീകരിക്കാൻ ആവശ്യപ്പെടും.", - - "submission.workflow.generic.edit": "എഡിറ്റ് ചെയ്യുക", - - "submission.workflow.generic.edit-help": "ഇനത്തിന്റെ മെറ്റാഡാറ്റ മാറ്റാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", - - "submission.workflow.generic.view": "കാണുക", - - "submission.workflow.generic.view-help": "ഇനത്തിന്റെ മെറ്റാഡാറ്റ കാണാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", - - "submission.workflow.generic.submit_select_reviewer": "റിവ്യൂവർ തിരഞ്ഞെടുക്കുക", - - "submission.workflow.generic.submit_select_reviewer-help": "", - - "submission.workflow.generic.submit_score": "റേറ്റ് ചെയ്യുക", - - "submission.workflow.generic.submit_score-help": "", - - "submission.workflow.tasks.claimed.approve": "അംഗീകരിക്കുക", - - "submission.workflow.tasks.claimed.approve_help": "നിങ്ങൾ ഇനം അവലോകനം ചെയ്തിട്ടുണ്ടെങ്കിൽ അത് കളക്ഷനിൽ ഉൾപ്പെടുത്താൻ അനുയോജ്യമാണെങ്കിൽ, \"അംഗീകരിക്കുക\" തിരഞ്ഞെടുക്കുക.", - - "submission.workflow.tasks.claimed.edit": "എഡിറ്റ് ചെയ്യുക", - - "submission.workflow.tasks.claimed.edit_help": "ഇനത്തിന്റെ മെറ്റാഡാറ്റ മാറ്റാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", - - "submission.workflow.tasks.claimed.decline": "നിരസിക്കുക", - - "submission.workflow.tasks.claimed.decline_help": "", - - "submission.workflow.tasks.claimed.reject.reason.info": "ദയവായി സമർപ്പണം നിരസിക്കാനുള്ള കാരണം താഴെയുള്ള ബോക്സിൽ നൽകുക, സമർപ്പകന് ഒരു പ്രശ്നം പരിഹരിച്ച് വീണ്ടും സമർപ്പിക്കാൻ കഴിയുമോ എന്ന് സൂചിപ്പിക്കുക.", - - "submission.workflow.tasks.claimed.reject.reason.placeholder": "നിരസിക്കാനുള്ള കാരണം വിവരിക്കുക", - - "submission.workflow.tasks.claimed.reject.reason.submit": "ഇനം നിരസിക്കുക", - - "submission.workflow.tasks.claimed.reject.reason.title": "കാരണം", - - "submission.workflow.tasks.claimed.reject.submit": "നിരസിക്കുക", - - "submission.workflow.tasks.claimed.reject_help": "നിങ്ങൾ ഇനം അവലോകനം ചെയ്തിട്ടുണ്ടെങ്കിൽ അത് കളക്ഷനിൽ ഉൾപ്പെടുത്താൻ അനുയോജ്യമല്ലെങ്കിൽ, \"നിരസിക്കുക\" തിരഞ്ഞെടുക്കുക. അതിനുശേഷം ഇനം അനുയോജ്യമല്ലാത്തതിന്റെ കാരണം സൂചിപ്പിക്കുന്ന ഒരു സന്ദേശം നൽകാൻ ആവശ്യപ്പെടും, സമർപ്പകൻ എന്തെങ്കിലും മാറ്റണമെങ്കിൽ വീണ്ടും സമർപ്പിക്കണമോ എന്നും.", - - "submission.workflow.tasks.claimed.return": "പൂളിലേക്ക് തിരികെ നൽകുക", - - "submission.workflow.tasks.claimed.return_help": "ടാസ്ക് പൂളിലേക്ക് തിരികെ നൽകുക, അതിനാൽ മറ്റൊരു ഉപയോക്താവ് ടാസ്ക് നിർവഹിക്കാൻ കഴിയും.", - - "submission.workflow.tasks.generic.error": "പ്രവർത്തന സമയത്ത് പിശക് സംഭവിച്ചു...", - - "submission.workflow.tasks.generic.processing": "പ്രോസസ്സിംഗ്...", - - "submission.workflow.tasks.generic.submitter": "സമർപ്പകൻ", - - "submission.workflow.tasks.generic.success": "പ്രവർത്തനം വിജയിച്ചു", - - "submission.workflow.tasks.pool.claim": "ക്ലെയിം ചെയ്യുക", - - "submission.workflow.tasks.pool.claim_help": "ഈ ടാസ്ക് നിങ്ങൾക്കായി അസൈൻ ചെയ്യുക.", - - "submission.workflow.tasks.pool.hide-detail": "വിവരം മറയ്ക്കുക", - - "submission.workflow.tasks.pool.show-detail": "വിവരം കാണിക്കുക", - - "submission.workflow.tasks.duplicates": "ഈ ഇനത്തിനായി സാധ്യമായ ഡ്യൂപ്ലിക്കേറ്റുകൾ കണ്ടെത്തി. ഈ ഇനം ക്ലെയിം ചെയ്ത് എഡിറ്റ് ചെയ്യുക, വിശദാംശങ്ങൾ കാണാൻ.", - - "submission.workspace.generic.view": "കാണുക", - - "submission.workspace.generic.view-help": "ഇനത്തിന്റെ മെറ്റാഡാറ്റ കാണാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", - - "submitter.empty": "N/A", - - "subscriptions.title": "സബ്സ്ക്രിപ്ഷനുകൾ", - - "subscriptions.item": "ഇനങ്ങൾക്കുള്ള സബ്സ്ക്രിപ്ഷനുകൾ", - - "subscriptions.collection": "കളക്ഷനുകൾക്കുള്ള സബ്സ്ക്രിപ്ഷനുകൾ", - - "subscriptions.community": "കമ്മ്യൂണിറ്റികൾക്കുള്ള സബ്സ്ക്രിപ്ഷനുകൾ", - - "subscriptions.subscription_type": "സബ്സ്ക്രിപ്ഷൻ തരം", - - "subscriptions.frequency": "സബ്സ്ക്രിപ്ഷൻ ആവൃത്തി", - - "subscriptions.frequency.D": "ദിവസേന", - - "subscriptions.frequency.M": "മാസേന", - - "subscriptions.frequency.W": "ആഴ്ചതോറും", - - "subscriptions.tooltip": "സബ്സ്ക്രൈബ് ചെയ്യുക", - - "subscriptions.unsubscribe": "അൺസബ്സ്ക്രൈബ് ചെയ്യുക", - - "subscriptions.modal.title": "സബ്സ്ക്രിപ്ഷനുകൾ", - - "subscriptions.modal.type-frequency": "തരവും ആവൃത്തിയും", - - "subscriptions.modal.close": "അടയ്ക്കുക", - - "subscriptions.modal.delete-info": "ഈ സബ്സ്ക്രിപ്ഷൻ നീക്കം ചെയ്യാൻ, ദയവായി നിങ്ങളുടെ ഉപയോക്തൃ പ്രൊഫൈലിന് കീഴിലുള്ള \"സബ്സ്ക്രിപ്ഷനുകൾ\" പേജ് സന്ദർശിക്കുക", - - "subscriptions.modal.new-subscription-form.type.content": "ഉള്ളടക്കം", - - "subscriptions.modal.new-subscription-form.frequency.D": "ദിവസേന", - - "subscriptions.modal.new-subscription-form.frequency.W": "ആഴ്ചതോറും", - - "subscriptions.modal.new-subscription-form.frequency.M": "മാസേന", - - "subscriptions.modal.new-subscription-form.submit": "സമർപ്പിക്കുക", - - "subscriptions.modal.new-subscription-form.processing": "പ്രോസസ്സിംഗ്...", - - "subscriptions.modal.create.success": "{{ type }}-ലേക്ക് വിജയകരമായി സബ്സ്ക്രൈബ് ചെയ്തു.", - - "subscriptions.modal.delete.success": "സബ്സ്ക്രിപ്ഷൻ വിജയകരമായി ഇല്ലാതാക്കി", - - "subscriptions.modal.update.success": "{{ type }}-ലേക്കുള്ള സബ്സ്ക്രിപ്ഷൻ വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു", - - "subscriptions.modal.create.error": "സബ്സ്ക്രിപ്ഷൻ സൃഷ്ടിക്കുന്ന സമയത്ത് ഒരു പിശക് സംഭവിച്ചു", - - "subscriptions.modal.delete.error": "സബ്സ്ക്രിപ്ഷൻ ഇല്ലാതാക്കുന്ന സമയത്ത് ഒരു പിശക് സംഭവിച്ചു", - - "subscriptions.modal.update.error": "സബ്സ്ക്രിപ്ഷൻ അപ്ഡേറ്റ് ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", - - "subscriptions.table.dso": "വിഷയം", - - "subscriptions.table.subscription_type": "സബ്സ്ക്രിപ്ഷൻ തരം", - - "subscriptions.table.subscription_frequency": "സബ്സ്ക്രിപ്ഷൻ ആവൃത്തി", - - "subscriptions.table.action": "പ്രവർത്തനം", - - "subscriptions.table.edit": "എഡിറ്റ് ചെയ്യുക", - - "subscriptions.table.delete": "ഇല്ലാതാക്കുക", - - "subscriptions.table.not-available": "ലഭ്യമല്ല", - - "subscriptions.table.not-available-message": "സബ്സ്ക്രൈബ് ചെയ്ത ഇനം ഇല്ലാതാക്കിയിരിക്കുന്നു, അല്ലെങ്കിൽ നിങ്ങൾക്ക് ഇപ്പോൾ അത് കാണാൻ അനുമതി ഇല്ല", - - "subscriptions.table.empty.message": "നിങ്ങൾക്ക് ഇപ്പോൾ ഒരു സബ്സ്ക്രിപ്ഷനുകളും ഇല്ല. ഒരു കമ്മ്യൂണിറ്റിയിലോ കളക്ഷനിലോ ഇമെയിൽ അപ്ഡേറ്റുകൾക്കായി സബ്സ്ക്രൈബ് ചെയ്യാൻ, ഒബ്ജക്റ്റിന്റെ പേജിലെ സബ്സ്ക്രിപ്ഷൻ ബട്ടൺ ഉപയോഗിക്കുക.", - - "thumbnail.default.alt": "തംബ്നെയിൽ ഇമേജ്", - - "thumbnail.default.placeholder": "തംബ്നെയിൽ ലഭ്യമല്ല", - - "thumbnail.project.alt": "പ്രോജക്റ്റ് ലോഗോ", - - "thumbnail.project.placeholder": "പ്രോജക്റ്റ് പ്ലേസ്ഹോൾഡർ ഇമേജ്", - - "thumbnail.orgunit.alt": "ഓർഗ്യൂണിറ്റ് ലോഗോ", - - "thumbnail.orgunit.placeholder": "ഓർഗ്യൂണിറ്റ് പ്ലേസ്ഹോൾഡർ ഇമേജ്", - - "thumbnail.person.alt": "പ്രൊഫൈൽ ചിത്രം", - - "thumbnail.person.placeholder": "പ്രൊഫൈൽ ചിത്രം ലഭ്യമല്ല", - - "title": "ഡിസ്പേസ്", - - "vocabulary-treeview.header": "ഹൈരാർക്കിക്കൽ ട്രീ വ്യൂ", - - "vocabulary-treeview.load-more": "കൂടുതൽ ലോഡ് ചെയ്യുക", - - "vocabulary-treeview.search.form.reset": "റീസെറ്റ്", - - "vocabulary-treeview.search.form.search": "തിരയുക", - - "vocabulary-treeview.search.form.search-placeholder": "ആദ്യത്തെ കുറച്ച് അക്ഷരങ്ങൾ ടൈപ്പ് ചെയ്ത് ഫിൽട്ടർ ചെയ്യുക", - - "vocabulary-treeview.search.no-result": "കാണിക്കാൻ ഇനങ്ങളൊന്നും ഇല്ല", - - "vocabulary-treeview.tree.description.nsi": "ദി നോർവീജിയൻ സയൻസ് ഇൻഡെക്സ്", - - "vocabulary-treeview.tree.description.srsc": "ഗവേഷണ വിഷയ വിഭാഗങ്ങൾ", - - "vocabulary-treeview.info": "തിരയൽ ഫിൽട്ടറായി ചേർക്കാൻ ഒരു വിഷയം തിരഞ്ഞെടുക്കുക", - - "uploader.browse": "ബ്രൗസ് ചെയ്യുക", - - "uploader.drag-message": "നിങ്ങളുടെ ഫയലുകൾ ഇവിടെ വലിച്ചിടുക", - - "uploader.delete.btn-title": "ഇല്ലാതാക്കുക", - - "uploader.or": ", അല്ലെങ്കിൽ ", - - "uploader.processing": "അപ്ലോഡ് ചെയ്ത ഫയൽ(കൾ) പ്രോസസ്സ് ചെയ്യുന്നു... (ഈ പേജ് അടയ്ക്കാൻ ഇപ്പോൾ സുരക്ഷിതമാണ്)", - - "uploader.queue-length": "ക്യൂ നീളം", - - "virtual-metadata.delete-item.info": "വെർച്വൽ മെറ്റാഡാറ്റ യഥാർത്ഥ മെറ്റാഡാറ്റയായി സംരക്ഷിക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്ന തരങ്ങൾ തിരഞ്ഞെടുക്കുക", - - "virtual-metadata.delete-item.modal-head": "ഈ ബന്ധത്തിന്റെ വെർച്വൽ മെറ്റാഡാറ്റ", - - "virtual-metadata.delete-relationship.modal-head": "വെർച്വൽ മെറ്റാഡാറ്റ യഥാർത്ഥ മെറ്റാഡാറ്റയായി സംരക്ഷിക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്ന ഇനങ്ങൾ തിരഞ്ഞെടുക്കുക", - - "supervisedWorkspace.search.results.head": "പരിശോധിച്ച ഇനങ്ങൾ", - - "workspace.search.results.head": "നിങ്ങളുടെ സമർപ്പണങ്ങൾ", - - "workflowAdmin.search.results.head": "വർക്ക്ഫ്ലോ അഡ്മിനിസ്റ്റർ", - - "workflow.search.results.head": "വർക്ക്ഫ്ലോ ടാസ്ക്കുകൾ", - - "supervision.search.results.head": "വർക്ക്ഫ്ലോ, വർക്ക്സ്പേസ് ടാസ്ക്കുകൾ", - - "workflow-item.edit.breadcrumbs": "വർക്ക്ഫ്ലോഇറ്റം എഡിറ്റ് ചെയ്യുക", - - "workflow-item.edit.title": "വർക്ക്ഫ്ലോഇറ്റം എഡിറ്റ് ചെയ്യുക", - - "workflow-item.delete.notification.success.title": "ഇല്ലാതാക്കി", - - "workflow-item.delete.notification.success.content": "ഈ വർക്ക്ഫ്ലോ ഇനം വിജയകരമായി ഇല്ലാതാക്കി", - - "workflow-item.delete.notification.error.title": "എന്തോ തെറ്റായി", - - "workflow-item.delete.notification.error.content": "വർക്ക്ഫ്ലോ ഇനം ഇല്ലാതാക്കാൻ കഴിഞ്ഞില്ല", - - "workflow-item.delete.title": "വർക്ക്ഫ്ലോ ഇനം ഇല്ലാതാക്കുക", - - "workflow-item.delete.header": "വർക്ക്ഫ്ലോ ഇനം ഇല്ലാതാക്കുക", - - "workflow-item.delete.button.cancel": "റദ്ദാക്കുക", - - "workflow-item.delete.button.confirm": "ഇല്ലാതാക്കുക", - - "workflow-item.send-back.notification.success.title": "സബ്മിറ്ററിലേക്ക് തിരികെ അയച്ചു", - - "workflow-item.send-back.notification.success.content": "ഈ വർക്ക്ഫ്ലോ ഇനം വിജയകരമായി സബ്മിറ്ററിലേക്ക് തിരികെ അയച്ചു", - - "workflow-item.send-back.notification.error.title": "എന്തോ തെറ്റായി", - - "workflow-item.send-back.notification.error.content": "വർക്ക്ഫ്ലോ ഇനം സബ്മിറ്ററിലേക്ക് തിരികെ അയയ്ക്കാൻ കഴിഞ്ഞില്ല", - - "workflow-item.send-back.title": "വർക്ക്ഫ്ലോ ഇനം സബ്മിറ്ററിലേക്ക് തിരികെ അയയ്ക്കുക", - - "workflow-item.send-back.header": "വർക്ക്ഫ്ലോ ഇനം സബ്മിറ്ററിലേക്ക് തിരികെ അയയ്ക്കുക", - - "workflow-item.send-back.button.cancel": "റദ്ദാക്കുക", - - "workflow-item.send-back.button.confirm": "തിരികെ അയയ്ക്കുക", - - "workflow-item.view.breadcrumbs": "വർക്ക്ഫ്ലോ വ്യൂ", - - "workspace-item.view.breadcrumbs": "വർക്ക്സ്പേസ് വ്യൂ", - - "workspace-item.view.title": "വർക്ക്സ്പേസ് വ്യൂ", - - "workspace-item.delete.breadcrumbs": "വർക്ക്സ്പേസ് ഇനം ഇല്ലാതാക്കുക", - - "workspace-item.delete.header": "വർക്ക്സ്പേസ് ഇനം ഇല്ലാതാക്കുക", - - "workspace-item.delete.button.confirm": "ഇല്ലാതാക്കുക", - - "workspace-item.delete.button.cancel": "റദ്ദാക്കുക", - - "workspace-item.delete.notification.success.title": "ഇല്ലാതാക്കി", - - "workspace-item.delete.title": "ഈ വർക്ക്സ്പേസ് ഇനം വിജയകരമായി ഇല്ലാതാക്കി", - - "workspace-item.delete.notification.error.title": "എന്തോ തെറ്റായി", - - "workspace-item.delete.notification.error.content": "വർക്ക്സ്പേസ് ഇനം ഇല്ലാതാക്കാൻ കഴിഞ്ഞില്ല", - - "workflow-item.advanced.title": "അഡ്വാൻസ്ഡ് വർക്ക്ഫ്ലോ", - - "workflow-item.selectrevieweraction.notification.success.title": "റിവ്യൂവർ തിരഞ്ഞെടുത്തു", - - "workflow-item.selectrevieweraction.notification.success.content": "ഈ വർക്ക്ഫ്ലോ ഇനത്തിനായി റിവ്യൂവർ വിജയകരമായി തിരഞ്ഞെടുത്തു", - - "workflow-item.selectrevieweraction.notification.error.title": "എന്തോ തെറ്റായി", - - "workflow-item.selectrevieweraction.notification.error.content": "ഈ വർക്ക്ഫ്ലോ ഇനത്തിനായി റിവ്യൂവർ തിരഞ്ഞെടുക്കാൻ കഴിഞ്ഞില്ല", - - "workflow-item.selectrevieweraction.title": "റിവ്യൂവർ തിരഞ്ഞെടുക്കുക", - - "workflow-item.selectrevieweraction.header": "റിവ്യൂവർ തിരഞ്ഞെടുക്കുക", - - "workflow-item.selectrevieweraction.button.cancel": "റദ്ദാക്കുക", - - "workflow-item.selectrevieweraction.button.confirm": "സ്ഥിരീകരിക്കുക", - - "workflow-item.scorereviewaction.notification.success.title": "റേറ്റിംഗ് റിവ്യൂ", - - "workflow-item.scorereviewaction.notification.success.content": "ഈ ഇനത്തിന്റെ വർക്ക്ഫ്ലോ ഇനത്തിനായി റേറ്റിംഗ് വിജയകരമായി സമർപ്പിച്ചു", - - "workflow-item.scorereviewaction.notification.error.title": "എന്തോ തെറ്റായി", - - "workflow-item.scorereviewaction.notification.error.content": "ഈ ഇനം റേറ്റ് ചെയ്യാൻ കഴിഞ്ഞില്ല", - - "workflow-item.scorereviewaction.title": "ഈ ഇനം റേറ്റ് ചെയ്യുക", - - "workflow-item.scorereviewaction.header": "ഈ ഇനം റേറ്റ് ചെയ്യുക", - - "workflow-item.scorereviewaction.button.cancel": "റദ്ദാക്കുക", - - "workflow-item.scorereviewaction.button.confirm": "സ്ഥിരീകരിക്കുക", - - "idle-modal.header": "സെഷൻ ഉടൻ കാലഹരണപ്പെടും", - - "idle-modal.info": "സുരക്ഷാ കാരണങ്ങളാൽ, ഉപയോക്തൃ സെഷനുകൾ {{ timeToExpire }} മിനിറ്റ് നിഷ്ക്രിയതയ്ക്ക് ശേഷം കാലഹരണപ്പെടുന്നു. നിങ്ങളുടെ സെഷൻ ഉടൻ കാലഹരണപ്പെടും. നിങ്ങൾക്ക് അത് വിപുലീകരിക്കാൻ ആഗ്രഹിക്കുന്നുണ്ടോ അല്ലെങ്കിൽ ലോഗൗട്ട് ചെയ്യാൻ ആഗ്രഹിക്കുന്നുണ്ടോ?", - - "idle-modal.log-out": "ലോഗൗട്ട്", - - "idle-modal.extend-session": "സെഷൻ വിപുലീകരിക്കുക", - - "researcher.profile.action.processing": "പ്രോസസ്സിംഗ്...", - - "researcher.profile.associated": "ഗവേഷക പ്രൊഫൈൽ ബന്ധിപ്പിച്ചു", - - "researcher.profile.change-visibility.fail": "പ്രൊഫൈൽ ദൃശ്യമാക്കൽ മാറ്റുന്നതിനിടെ ഒരു പ്രതീക്ഷിതമല്ലാത്ത പിശക് സംഭവിച്ചു", - - "researcher.profile.create.new": "പുതിയത് സൃഷ്ടിക്കുക", - - "researcher.profile.create.success": "ഗവേഷക പ്രൊഫൈൽ വിജയകരമായി സൃഷ്ടിച്ചു", - - "researcher.profile.create.fail": "ഗവേഷക പ്രൊഫൈൽ സൃഷ്ടിക്കുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", - - "researcher.profile.delete": "ഇല്ലാതാക്കുക", - - "researcher.profile.expose": "പ്രദർശിപ്പിക്കുക", - - "researcher.profile.hide": "മറയ്ക്കുക", - - "researcher.profile.not.associated": "ഗവേഷക പ്രൊഫൈൽ ഇതുവരെ ബന്ധിപ്പിച്ചിട്ടില്ല", - - "researcher.profile.view": "കാണുക", - - "researcher.profile.private.visibility": "സ്വകാര്യം", - - "researcher.profile.public.visibility": "പബ്ലിക്", - - "researcher.profile.status": "സ്റ്റാറ്റസ്:", - - "researcherprofile.claim.not-authorized": "ഈ ഇനം ക്ലെയിം ചെയ്യാൻ നിങ്ങൾക്ക് അധികാരമില്ല. കൂടുതൽ വിവരങ്ങൾക്ക് അഡ്മിനിസ്ട്രേറ്റർ(മാർ) ബന്ധപ്പെടുക.", - - "researcherprofile.error.claim.body": "പ്രൊഫൈൽ ക്ലെയിം ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു, ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക", - - "researcherprofile.error.claim.title": "പിശക്", - - "researcherprofile.success.claim.body": "പ്രൊഫൈൽ വിജയകരമായി ക്ലെയിം ചെയ്തു", - - "researcherprofile.success.claim.title": "വിജയം", - - "person.page.orcid.create": "ഒരു ORCID ID സൃഷ്ടിക്കുക", - - "person.page.orcid.granted-authorizations": "അനുവദിച്ച അധികാരങ്ങൾ", - - "person.page.orcid.grant-authorizations": "അധികാരങ്ങൾ അനുവദിക്കുക", - - "person.page.orcid.link": "ORCID ID-യുമായി ബന്ധിപ്പിക്കുക", - - "person.page.orcid.link.processing": "പ്രൊഫൈൽ ORCID-ലേക്ക് ലിങ്ക് ചെയ്യുന്നു...", - - "person.page.orcid.link.error.message": "പ്രൊഫൈൽ ORCID-ലേക്ക് ബന്ധിപ്പിക്കുന്നതിനിടെ എന്തോ തെറ്റായി. പ്രശ്നം തുടരുകയാണെങ്കിൽ, അഡ്മിനിസ്ട്രേറ്ററെ ബന്ധപ്പെടുക.", - - "person.page.orcid.orcid-not-linked-message": "ഈ പ്രൊഫൈലിന്റെ ORCID iD ({{ orcid }}) ORCID രജിസ്ട്രിയിൽ ഒരു അക്കൗണ്ടുമായി ഇതുവരെ ബന്ധിപ്പിച്ചിട്ടില്ല അല്ലെങ്കിൽ കണക്ഷൻ കാലഹരണപ്പെട്ടിരിക്കുന്നു.", - - "person.page.orcid.unlink": "ORCID-ൽ നിന്ന് വിച്ഛേദിക്കുക", - - "person.page.orcid.unlink.processing": "പ്രോസസ്സിംഗ്...", - - "person.page.orcid.missing-authorizations": "കാണാതായ അധികാരങ്ങൾ", - - "person.page.orcid.missing-authorizations-message": "ഇനിപ്പറയുന്ന അധികാരങ്ങൾ കാണാതായിരിക്കുന്നു:", - - "person.page.orcid.no-missing-authorizations-message": "കൊള്ളാം! ഈ ബോക്സ് ശൂന്യമാണ്, അതിനാൽ നിങ്ങളുടെ സ്ഥാപനം വാഗ്ദാനം ചെയ്യുന്ന എല്ലാ ഫംഗ്ഷനുകളും ഉപയോഗിക്കാൻ ആവശ്യമായ എല്ലാ ആക്സസ് അവകാശങ്ങളും നിങ്ങൾ അനുവദിച്ചിട്ടുണ്ട്.", - - "person.page.orcid.no-orcid-message": "ഇതുവരെ ഒരു ORCID iD ബന്ധിപ്പിച്ചിട്ടില്ല. ചുവടെയുള്ള ബട്ടൺ ക്ലിക്ക് ചെയ്തുകൊണ്ട് ഈ പ്രൊഫൈൽ ഒരു ORCID അക്കൗണ്ടുമായി ബന്ധിപ്പിക്കാൻ കഴിയും.", - - "person.page.orcid.profile-preferences": "പ്രൊഫൈൽ പ്രിഫറൻസുകൾ", - - "person.page.orcid.funding-preferences": "ഫണ്ടിംഗ് പ്രിഫറൻസുകൾ", - - "person.page.orcid.publications-preferences": "പബ്ലിക്കേഷൻ പ്രിഫറൻസുകൾ", - - "person.page.orcid.remove-orcid-message": "നിങ്ങളുടെ ORCID നീക്കംചെയ്യണമെങ്കിൽ, ദയവായി റെപ്പോസിറ്ററി അഡ്മിനിസ്ട്രേറ്ററെ ബന്ധപ്പെടുക", - - "person.page.orcid.save.preference.changes": "ക്രമീകരണങ്ങൾ അപ്ഡേറ്റ് ചെയ്യുക", - - "person.page.orcid.sync-profile.affiliation": "അഫിലിയേഷൻ", - - "person.page.orcid.sync-profile.biographical": "ജീവചരിത്ര ഡാറ്റ", - - "person.page.orcid.sync-profile.education": "വിദ്യാഭ്യാസം", - - "person.page.orcid.sync-profile.identifiers": "ഐഡന്റിഫയറുകൾ", - - "person.page.orcid.sync-fundings.all": "എല്ലാ ഫണ്ടിംഗുകളും", - - "person.page.orcid.sync-fundings.mine": "എന്റെ ഫണ്ടിംഗുകൾ", - - "person.page.orcid.sync-fundings.my_selected": "തിരഞ്ഞെടുത്ത ഫണ്ടിംഗുകൾ", - - "person.page.orcid.sync-fundings.disabled": "പ്രവർത്തനരഹിതം", - - "person.page.orcid.sync-publications.all": "എല്ലാ പബ്ലിക്കേഷനുകളും", - - "person.page.orcid.sync-publications.mine": "എന്റെ പബ്ലിക്കേഷനുകൾ", - - "person.page.orcid.sync-publications.my_selected": "തിരഞ്ഞെടുത്ത പബ്ലിക്കേഷനുകൾ", - - "person.page.orcid.sync-publications.disabled": "പ്രവർത്തനരഹിതം", - - "person.page.orcid.sync-queue.discard": "മാറ്റം ഉപേക്ഷിച്ച് ORCID രജിസ്ട്രിയുമായി സിങ്ക് ചെയ്യരുത്", - - "person.page.orcid.sync-queue.discard.error": "ORCID ക്യൂ റെക്കോർഡ് ഉപേക്ഷിക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "person.page.orcid.sync-queue.discard.success": "ORCID ക്യൂ റെക്കോർഡ് വിജയകരമായി ഉപേക്ഷിച്ചു", - - "person.page.orcid.sync-queue.empty-message": "ORCID ക്യൂ രജിസ്ട്രി ശൂന്യമാണ്", - - "person.page.orcid.sync-queue.table.header.type": "തരം", - - "person.page.orcid.sync-queue.table.header.description": "വിവരണം", - - "person.page.orcid.sync-queue.table.header.action": "പ്രവർത്തനം", - - "person.page.orcid.sync-queue.description.affiliation": "അഫിലിയേഷനുകൾ", - - "person.page.orcid.sync-queue.description.country": "രാജ്യം", - - "person.page.orcid.sync-queue.description.education": "വിദ്യാഭ്യാസങ്ങൾ", - - "person.page.orcid.sync-queue.description.external_ids": "ബാഹ്യ ഐഡുകൾ", - - "person.page.orcid.sync-queue.description.other_names": "മറ്റ് പേരുകൾ", - - "person.page.orcid.sync-queue.description.qualification": "യോഗ്യതകൾ", - - "person.page.orcid.sync-queue.description.researcher_urls": "ഗവേഷക URL-കൾ", - - "person.page.orcid.sync-queue.description.keywords": "കീവേഡുകൾ", - - "person.page.orcid.sync-queue.tooltip.insert": "ORCID രജിസ്ട്രിയിൽ ഒരു പുതിയ എൻട്രി ചേർക്കുക", - - "person.page.orcid.sync-queue.tooltip.update": "ORCID രജിസ്ട്രിയിലെ ഈ എൻട്രി അപ്ഡേറ്റ് ചെയ്യുക", - - "person.page.orcid.sync-queue.tooltip.delete": "ORCID രജിസ്ട്രിയിൽ നിന്ന് ഈ എൻട്രി നീക്കംചെയ്യുക", - - "person.page.orcid.sync-queue.tooltip.publication": "പബ്ലിക്കേഷൻ", - - "person.page.orcid.sync-queue.tooltip.project": "പ്രോജക്റ്റ്", - - "person.page.orcid.sync-queue.tooltip.affiliation": "അഫിലിയേഷൻ", - - "person.page.orcid.sync-queue.tooltip.education": "വിദ്യാഭ്യാസം", - - "person.page.orcid.sync-queue.tooltip.qualification": "യോഗ്യത", - - "person.page.orcid.sync-queue.tooltip.other_names": "മറ്റ് പേര്", - - "person.page.orcid.sync-queue.tooltip.country": "രാജ്യം", - - "person.page.orcid.sync-queue.tooltip.keywords": "കീവേഡ്", - - "person.page.orcid.sync-queue.tooltip.external_ids": "ബാഹ്യ ഐഡന്റിഫയർ", - - "person.page.orcid.sync-queue.tooltip.researcher_urls": "ഗവേഷക URL", - - "person.page.orcid.sync-queue.send": "ORCID രജിസ്ട്രിയുമായി സിങ്ക് ചെയ്യുക", - - "person.page.orcid.sync-queue.send.unauthorized-error.title": "അധികാരങ്ങൾ കാണാത്തതിനാൽ ORCID-ലേക്ക് സമർപ്പിക്കുന്നതിൽ പരാജയപ്പെട്ടു.", - - "person.page.orcid.sync-queue.send.unauthorized-error.content": "ആവശ്യമായ അനുമതികൾ വീണ്ടും അനുവദിക്കാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക. പ്രശ്നം തുടരുകയാണെങ്കിൽ, അഡ്മിനിസ്ട്രേറ്ററെ ബന്ധപ്പെടുക", - - "person.page.orcid.sync-queue.send.bad-request-error": "ORCID രജിസ്ട്രിയിലേക്ക് അയച്ച റിസോഴ്സ് സാധുവല്ലാത്തതിനാൽ ORCID-ലേക്ക് സമർപ്പിക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "person.page.orcid.sync-queue.send.error": "ORCID-ലേക്ക് സമർപ്പിക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "person.page.orcid.sync-queue.send.conflict-error": "റിസോഴ്സ് ORCID രജിസ്ട്രിയിൽ ഇതിനകം തന്നെ ഉള്ളതിനാൽ ORCID-ലേക്ക് സമർപ്പിക്കുന്നതിൽ പരാജയപ്പെട്ടു", - - "person.page.orcid.sync-queue.send.not-found-warning": "റിസോഴ്സ് ORCID രജിസ്ട്രിയിൽ ഇനി നിലവിലില്ല.", - - "person.page.orcid.sync-queue.send.success": "ORCID-ലേക്ക് സമർപ്പിക്കൽ വിജയകരമായി പൂർത്തിയായി", - - "person.page.orcid.sync-queue.send.validation-error": "ORCID-ലേക്ക് സിങ്ക് ചെയ്യാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്ന ഡാറ്റ സാധുവല്ല", - - "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "തുകയുടെ കറൻസി ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.external-id.required": "അയയ്ക്കേണ്ട റിസോഴ്സിന് കുറഞ്ഞത് ഒരു ഐഡന്റിഫയറെങ്കിലും ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.title.required": "ശീർഷകം ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.start-date.required": "ആരംഭ തീയതി ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.funder.required": "ഫണ്ടർ ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.country.invalid": "സാധുവല്ലാത്ത 2 അക്ക ISO 3166 രാജ്യം", - - "person.page.orcid.sync-queue.send.validation-error.organization.required": "ഓർഗനൈസേഷൻ ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "ഓർഗനൈസേഷന്റെ പേര് ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "പബ്ലിക്കേഷൻ തീയതി 1900-ന് ശേഷം ഒരു വർഷമായിരിക്കണം", - - "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "അയയ്ക്കേണ്ട ഓർഗനൈസേഷന് ഒരു വിലാസം ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "അയയ്ക്കേണ്ട ഓർഗനൈസേഷന്റെ വിലാസത്തിന് ഒരു നഗരം ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "അയയ്ക്കേണ്ട ഓർഗനൈസേഷന്റെ വിലാസത്തിന് സാധുവായ 2 അക്ക ISO 3166 രാജ്യം ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "ഓർഗനൈസേഷനുകൾ വിവേചനം ചെയ്യാൻ ഒരു ഐഡന്റിഫയർ ആവശ്യമാണ്. പിന്തുണയ്ക്കുന്ന ഐഡുകൾ GRID, Ringgold, Legal Entity identifiers (LEIs), Crossref Funder Registry identifiers എന്നിവയാണ്", - - "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "ഓർഗനൈസേഷന്റെ ഐഡന്റിഫയറുകൾക്ക് ഒരു മൂല്യം ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "ഓർഗനൈസേഷന്റെ ഐഡന്റിഫയറുകൾക്ക് ഒരു സോഴ്സ് ആവശ്യമാണ്", - - "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "ഓർഗനൈസേഷൻ ഐഡന്റിഫയറുകളിൽ ഒന്നിന്റെ ഉറവിടം അസാധുവാണ്. പിന്തുണയ്ക്കുന്ന ഉറവിടങ്ങൾ RINGGOLD, GRID, LEI, FUNDREF എന്നിവയാണ്", - - "person.page.orcid.synchronization-mode": "സിങ്ക്രോണൈസേഷൻ മോഡ്", - - "person.page.orcid.synchronization-mode.batch": "ബാച്ച്", - - "person.page.orcid.synchronization-mode.label": "സിങ്ക്രോണൈസേഷൻ മോഡ്", - - "person.page.orcid.synchronization-mode-message": "ORCID-ലേക്ക് സിങ്ക്രോണൈസേഷൻ എങ്ങനെ നടത്തണമെന്ന് തിരഞ്ഞെടുക്കുക. \"മാനുവൽ\" (നിങ്ങളുടെ ഡാറ്റ ORCID-ലേക്ക് മാനുവലായി അയയ്ക്കേണ്ടതുണ്ട്) അല്ലെങ്കിൽ \"ബാച്ച്\" (സിസ്റ്റം ഒരു ഷെഡ്യൂൾ ചെയ്ത സ്ക്രിപ്റ്റ് വഴി നിങ്ങളുടെ ഡാറ്റ ORCID-ലേക്ക് അയയ്ക്കും) എന്നിവ ഓപ്ഷനുകളിൽ ഉൾപ്പെടുന്നു.", - - "person.page.orcid.synchronization-mode-funding-message": "നിങ്ങളുടെ ORCID റെക്കോർഡിന്റെ ഫണ്ടിംഗ് വിവരങ്ങളുടെ ലിസ്റ്റിലേക്ക് ലിങ്ക് ചെയ്ത പ്രോജക്റ്റ് എന്റിറ്റികൾ അയയ്ക്കാൻ തിരഞ്ഞെടുക്കുക.", - - "person.page.orcid.synchronization-mode-publication-message": "നിങ്ങളുടെ ORCID റെക്കോർഡിന്റെ ജോലികളുടെ ലിസ്റ്റിലേക്ക് ലിങ്ക് ചെയ്ത പബ്ലിക്കേഷൻ എന്റിറ്റികൾ അയയ്ക്കാൻ തിരഞ്ഞെടുക്കുക.", - - "person.page.orcid.synchronization-mode-profile-message": "നിങ്ങളുടെ ജീവചരിത്ര ഡാറ്റ അല്ലെങ്കിൽ വ്യക്തിഗത ഐഡന്റിഫയറുകൾ നിങ്ങളുടെ ORCID റെക്കോർഡിലേക്ക് അയയ്ക്കാൻ തിരഞ്ഞെടുക്കുക.", - - "person.page.orcid.synchronization-settings-update.success": "സിങ്ക്രോണൈസേഷൻ സെറ്റിംഗുകൾ വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു", - - "person.page.orcid.synchronization-settings-update.error": "സിങ്ക്രോണൈസേഷൻ സെറ്റിംഗുകൾ അപ്ഡേറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു", - - "person.page.orcid.synchronization-mode.manual": "മാനുവൽ", - - "person.page.orcid.scope.authenticate": "നിങ്ങളുടെ ORCID iD നേടുക", - - "person.page.orcid.scope.read-limited": "Trusted Parties-ലേക്ക് ലഭ്യമാക്കിയ വിവരങ്ങൾ വായിക്കുക", - - "person.page.orcid.scope.activities-update": "നിങ്ങളുടെ ഗവേഷണ പ്രവർത്തനങ്ങൾ ചേർക്കുക/അപ്ഡേറ്റ് ചെയ്യുക", - - "person.page.orcid.scope.person-update": "നിങ്ങളെക്കുറിച്ചുള്ള മറ്റ് വിവരങ്ങൾ ചേർക്കുക/അപ്ഡേറ്റ് ചെയ്യുക", - - "person.page.orcid.unlink.success": "പ്രൊഫൈലും ORCID രജിസ്ട്രിയും തമ്മിലുള്ള കണക്ഷൻ വിജയകരമായി തടയപ്പെട്ടു", - - "person.page.orcid.unlink.error": "പ്രൊഫൈലും ORCID രജിസ്ട്രിയും തമ്മിലുള്ള കണക്ഷൻ തടയുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു. വീണ്ടും ശ്രമിക്കുക", - - "person.orcid.sync.setting": "ORCID സിങ്ക്രോണൈസേഷൻ സെറ്റിംഗുകൾ", - - "person.orcid.registry.queue": "ORCID രജിസ്ട്രി ക്യൂ", - - "person.orcid.registry.auth": "ORCID അധികാരങ്ങൾ", - - "person.orcid-tooltip.authenticated": "{{orcid}}", - - "person.orcid-tooltip.not-authenticated": "{{orcid}} (സ്ഥിരീകരിക്കപ്പെട്ടിട്ടില്ല)", - - "home.recent-submissions.head": "ഏറ്റവും പുതിയ സമർപ്പണങ്ങൾ", - - "listable-notification-object.default-message": "ഈ ഒബ്ജക്റ്റ് വീണ്ടെടുക്കാൻ കഴിഞ്ഞില്ല", - - "system-wide-alert-banner.retrieval.error": "സിസ്റ്റം-വൈഡ് അലേർട്ട് ബാനർ വീണ്ടെടുക്കുന്നതിൽ എന്തോ തെറ്റ് സംഭവിച്ചു", - - "system-wide-alert-banner.countdown.prefix": "", - - "system-wide-alert-banner.countdown.days": "{{days}} ദിവസം(ങ്ങൾ),", - - "system-wide-alert-banner.countdown.hours": "{{hours}} മണിക്കൂർ(ങ്ങൾ),", - - "system-wide-alert-banner.countdown.minutes": "{{minutes}} മിനിറ്റ്(ങ്ങൾ):", - - "menu.section.system-wide-alert": "സിസ്റ്റം-വൈഡ് അലേർട്ട്", - - "system-wide-alert.form.header": "സിസ്റ്റം-വൈഡ് അലേർട്ട്", - - "system-wide-alert-form.retrieval.error": "സിസ്റ്റം-വൈഡ് അലേർട്ട് വീണ്ടെടുക്കുന്നതിൽ എന്തോ തെറ്റ് സംഭവിച്ചു", - - "system-wide-alert.form.cancel": "റദ്ദാക്കുക", - - "system-wide-alert.form.save": "സേവ് ചെയ്യുക", - - "system-wide-alert.form.label.active": "സജീവം", - - "system-wide-alert.form.label.inactive": "നിഷ്ക്രിയം", - - "system-wide-alert.form.error.message": "സിസ്റ്റം വൈഡ് അലേർട്ടിന് ഒരു സന്ദേശം ഉണ്ടായിരിക്കണം", - - "system-wide-alert.form.label.message": "അലേർട്ട് സന്ദേശം", - - "system-wide-alert.form.label.countdownTo.enable": "ഒരു കൗണ്ട്ഡൗൺ ടൈമർ പ്രവർത്തനക്ഷമമാക്കുക", - - "system-wide-alert.form.label.countdownTo.hint": "Hint: ഒരു കൗണ്ട്ഡൗൺ ടൈമർ സജ്ജമാക്കുക. പ്രവർത്തനക്ഷമമാക്കുമ്പോൾ, ഭാവിയിൽ ഒരു തീയതി സജ്ജമാക്കാം, സിസ്റ്റം-വൈഡ് അലേർട്ട് ബാനർ സജ്ജമാക്കിയ തീയതി വരെ ഒരു കൗണ്ട്ഡൗൺ നടത്തും. ഈ ടൈമർ അവസാനിക്കുമ്പോൾ, അത് അലേർട്ടിൽ നിന്ന് അപ്രത്യക്ഷമാകും. സെർവർ സ്വയമേവ നിർത്തപ്പെടുകയില്ല.", - - "system-wide-alert-form.select-date-by-calendar": "കലണ്ടർ ഉപയോഗിച്ച് തീയതി തിരഞ്ഞെടുക്കുക", - - "system-wide-alert.form.label.preview": "സിസ്റ്റം-വൈഡ് അലേർട്ട് പ്രിവ്യൂ", - - "system-wide-alert.form.update.success": "സിസ്റ്റം-വൈഡ് അലേർട്ട് വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു", - - "system-wide-alert.form.update.error": "സിസ്റ്റം-വൈഡ് അലേർട്ട് അപ്ഡേറ്റ് ചെയ്യുന്നതിനിടെ എന്തോ തെറ്റ് സംഭവിച്ചു", - - "system-wide-alert.form.create.success": "സിസ്റ്റം-വൈഡ് അലേർട്ട് വിജയകരമായി സൃഷ്ടിച്ചു", - - "system-wide-alert.form.create.error": "സിസ്റ്റം-വൈഡ് അലേർട്ട് സൃഷ്ടിക്കുന്നതിനിടെ എന്തോ തെറ്റ് സംഭവിച്ചു", - - "admin.system-wide-alert.breadcrumbs": "സിസ്റ്റം-വൈഡ് അലേർട്ടുകൾ", - - "admin.system-wide-alert.title": "സിസ്റ്റം-വൈഡ് അലേർട്ടുകൾ", - - "discover.filters.head": "ഡിസ്കവർ ചെയ്യുക", - - "item-access-control-title": "ഈ ഫോം ഐറ്റത്തിന്റെ മെറ്റാഡാറ്റയുടെയോ അതിന്റെ ബിറ്റ്സ്ട്രീമുകളുടെയോ ആക്സസ് വ്യവസ്ഥകളിൽ മാറ്റങ്ങൾ നടത്താൻ നിങ്ങളെ അനുവദിക്കുന്നു.", - - "collection-access-control-title": "ഈ കളക്ഷൻ സ്വന്തമാക്കിയ എല്ലാ ഐറ്റങ്ങളുടെയും ആക്സസ് വ്യവസ്ഥകളിൽ മാറ്റങ്ങൾ നടത്താൻ ഈ ഫോം നിങ്ങളെ അനുവദിക്കുന്നു. എല്ലാ ഐറ്റം മെറ്റാഡാറ്റയിലോ എല്ലാ ഉള്ളടക്കത്തിലോ (ബിറ്റ്സ്ട്രീമുകൾ) മാറ്റങ്ങൾ നടത്താം.", - - "community-access-control-title": "ഈ കമ്മ്യൂണിറ്റി കീഴിലുള്ള ഏതെങ്കിലും കളക്ഷൻ സ്വന്തമാക്കിയ എല്ലാ ഐറ്റങ്ങളുടെയും ആക്സസ് വ്യവസ്ഥകളിൽ മാറ്റങ്ങൾ നടത്താൻ ഈ ഫോം നിങ്ങളെ അനുവദിക്കുന്നു. എല്ലാ ഐറ്റം മെറ്റാഡാറ്റയിലോ എല്ലാ ഉള്ളടക്കത്തിലോ (ബിറ്റ്സ്ട്രീമുകൾ) മാറ്റങ്ങൾ നടത്താം.", - - "access-control-item-header-toggle": "ഐറ്റത്തിന്റെ മെറ്റാഡാറ്റ", - - "access-control-item-toggle.enable": "ഐറ്റത്തിന്റെ മെറ്റാഡാറ്റയിൽ മാറ്റങ്ങൾ നടത്താനുള്ള ഓപ്ഷൻ പ്രവർത്തനക്ഷമമാക്കുക", - - "access-control-item-toggle.disable": "ഐറ്റത്തിന്റെ മെറ്റാഡാറ്റയിൽ മാറ്റങ്ങൾ നടത്താനുള്ള ഓപ്ഷൻ പ്രവർത്തനരഹിതമാക്കുക", - - "access-control-bitstream-header-toggle": "ബിറ്റ്സ്ട്രീമുകൾ", - - "access-control-bitstream-toggle.enable": "ബിറ്റ്സ്ട്രീമുകളിൽ മാറ്റങ്ങൾ നടത്താനുള്ള ഓപ്ഷൻ പ്രവർത്തനക്ഷമമാക്കുക", - - "access-control-bitstream-toggle.disable": "ബിറ്റ്സ്ട്രീമുകളിൽ മാറ്റങ്ങൾ നടത്താനുള്ള ഓപ്ഷൻ പ്രവർത്തനരഹിതമാക്കുക", - - "access-control-mode": "മോഡ്", - - "access-control-access-conditions": "ആക്സസ് വ്യവസ്ഥകൾ", - - "access-control-no-access-conditions-warning-message": "നിലവിൽ, ചുവടെ ഒരു ആക്സസ് വ്യവസ്ഥയും വ്യക്തമാക്കിയിട്ടില്ല. ഇത് എക്സിക്യൂട്ട് ചെയ്താൽ, നിലവിലുള്ള ആക്സസ് വ്യവസ്ഥകൾ ഉടമസ്ഥ കളക്ഷനിൽ നിന്ന് പാരമ്പര്യമായി ലഭിച്ച ഡിഫോൾട്ട് ആക്സസ് വ്യവസ്ഥകൾ ഉപയോഗിച്ച് മാറ്റിസ്ഥാപിക്കും.", - - "access-control-replace-all": "ആക്സസ് വ്യവസ്ഥകൾ മാറ്റിസ്ഥാപിക്കുക", - - "access-control-add-to-existing": "നിലവിലുള്ളവയിലേക്ക് ചേർക്കുക", - - "access-control-limit-to-specific": "മാറ്റങ്ങൾ നിർദ്ദിഷ്ട ബിറ്റ്സ്ട്രീമുകളിലേക്ക് പരിമിതപ്പെടുത്തുക", - - "access-control-process-all-bitstreams": "ഐറ്റത്തിലെ എല്ലാ ബിറ്റ്സ്ട്രീമുകളും അപ്ഡേറ്റ് ചെയ്യുക", - - "access-control-bitstreams-selected": "ബിറ്റ്സ്ട്രീമുകൾ തിരഞ്ഞെടുത്തു", - - "access-control-bitstreams-select": "ബിറ്റ്സ്ട്രീമുകൾ തിരഞ്ഞെടുക്കുക", - - "access-control-cancel": "റദ്ദാക്കുക", - - "access-control-execute": "എക്സിക്യൂട്ട് ചെയ്യുക", - - "access-control-add-more": "കൂടുതൽ ചേർക്കുക", - - "access-control-remove": "ആക്സസ് വ്യവസ്ഥ നീക്കം ചെയ്യുക", - - "access-control-select-bitstreams-modal.title": "ബിറ്റ്സ്ട്രീമുകൾ തിരഞ്ഞെടുക്കുക", - - "access-control-select-bitstreams-modal.no-items": "കാണിക്കാൻ ഇനങ്ങളൊന്നുമില്ല.", - - "access-control-select-bitstreams-modal.close": "അടയ്ക്കുക", - - "access-control-option-label": "ആക്സസ് വ്യവസ്ഥ തരം", - - "access-control-option-note": "തിരഞ്ഞെടുത്ത ഒബ്ജക്റ്റുകളിൽ പ്രയോഗിക്കാൻ ഒരു ആക്സസ് വ്യവസ്ഥ തിരഞ്ഞെടുക്കുക.", - - "access-control-option-start-date": "ആക്സസ് നൽകുന്ന തീയതി", - - "access-control-option-start-date-note": "ബന്ധപ്പെട്ട ആക്സസ് വ്യവസ്ഥ പ്രയോഗിക്കുന്ന തീയതി തിരഞ്ഞെടുക്കുക", - - "access-control-option-end-date": "ആക്സസ് നൽകുന്നത് വരെയുള്ള തീയതി", - - "access-control-option-end-date-note": "ബന്ധപ്പെട്ട ആക്സസ് വ്യവസ്ഥ പ്രയോഗിക്കുന്നത് വരെയുള്ള തീയതി തിരഞ്ഞെടുക്കുക", - - "vocabulary-treeview.search.form.add": "ചേർക്കുക", - - "admin.notifications.publicationclaim.breadcrumbs": "പബ്ലിക്കേഷൻ ക്ലെയിം", - - "admin.notifications.publicationclaim.page.title": "പബ്ലിക്കേഷൻ ക്ലെയിം", - - "coar-notify-support.title": "COAR നോട്ടിഫൈ പ്രോട്ടോക്കോൾ", - - "coar-notify-support-title.content": "റെപ്പോസിറ്ററികൾ തമ്മിലുള്ള ആശയവിനിമയം മെച്ചപ്പെടുത്തുന്നതിനായി രൂപകൽപ്പന ചെയ്തിരിക്കുന്ന COAR നോട്ടിഫൈ പ്രോട്ടോക്കോൾ ഞങ്ങൾ പൂർണ്ണമായി പിന്തുണക്കുന്നു. COAR നോട്ടിഫൈ പ്രോട്ടോക്കോളിനെക്കുറിച്ച് കൂടുതൽ അറിയാൻ, COAR നോട്ടിഫൈ വെബ്സൈറ്റ് സന്ദർശിക്കുക.", - - "coar-notify-support.ldn-inbox.title": "LDN ഇൻബോക്സ്", - - "coar-notify-support.ldn-inbox.content": "നിങ്ങളുടെ സൗകര്യത്തിനായി, ഞങ്ങളുടെ LDN (Linked Data Notifications) ഇൻബോക്സ് {{ ldnInboxUrl }} എന്നതിൽ എളുപ്പത്തിൽ ആക്സസ് ചെയ്യാവുന്നതാണ്. LDN ഇൻബോക്സ് സുഗമമായ ആശയവിനിമയവും ഡാറ്റ എക്സ്ചേഞ്ചും സാധ്യമാക്കുന്നു, ഫലപ്രദവും കാര്യക്ഷമവുമായ സഹകരണം ഉറപ്പാക്കുന്നു.", - - "coar-notify-support.message-moderation.title": "സന്ദേശ മോഡറേഷൻ", - - "coar-notify-support.message-moderation.content": "ഒരു സുരക്ഷിതവും ഉൽപാദനക്ഷമവുമായ പരിസ്ഥിതി ഉറപ്പാക്കാൻ, എല്ലാ ഇൻകമിംഗ് LDN സന്ദേശങ്ങളും മോഡറേറ്റ് ചെയ്യപ്പെടുന്നു. നിങ്ങൾ ഞങ്ങളുമായി വിവരങ്ങൾ പങ്കിടാൻ ആഗ്രഹിക്കുന്നുവെങ്കിൽ, ദയവായി ഞങ്ങളുടെ സമർപ്പിച്ച", - - "coar-notify-support.message-moderation.feedback-form": " ഫീഡ്ബാക്ക് ഫോം വഴി ബന്ധപ്പെടുക.", - - "service.overview.delete.header": "സേവനം ഇല്ലാതാക്കുക", - - "ldn-registered-services.title": "രജിസ്റ്റർ ചെയ്ത സേവനങ്ങൾ", - "ldn-registered-services.table.name": "പേര്", - "ldn-registered-services.table.description": "വിവരണം", - "ldn-registered-services.table.status": "സ്ഥിതി", - "ldn-registered-services.table.action": "പ്രവർത്തനം", - "ldn-registered-services.new": "പുതിയത്", - "ldn-registered-services.new.breadcrumbs": "രജിസ്റ്റർ ചെയ്ത സേവനങ്ങൾ", - - "ldn-service.overview.table.enabled": "പ്രവർത്തനക്ഷമമാക്കി", - "ldn-service.overview.table.disabled": "പ്രവർത്തനരഹിതമാക്കി", - "ldn-service.overview.table.clickToEnable": "പ്രവർത്തനക്ഷമമാക്കാൻ ക്ലിക്ക് ചെയ്യുക", - "ldn-service.overview.table.clickToDisable": "പ്രവർത്തനരഹിതമാക്കാൻ ക്ലിക്ക് ചെയ്യുക", - - "ldn-edit-registered-service.title": "സേവനം എഡിറ്റ് ചെയ്യുക", - "ldn-create-service.title": "സേവനം സൃഷ്ടിക്കുക", - "service.overview.create.modal": "സേവനം സൃഷ്ടിക്കുക", - "service.overview.create.body": "ദയവായി ഈ സേവനത്തിന്റെ സൃഷ്ടി സ്ഥിരീകരിക്കുക.", - "ldn-service-status": "സ്ഥിതി", - "service.confirm.create": "സൃഷ്ടിക്കുക", - "service.refuse.create": "റദ്ദാക്കുക", - "ldn-register-new-service.title": "ഒരു പുതിയ സേവനം രജിസ്റ്റർ ചെയ്യുക", - "ldn-new-service.form.label.submit": "സേവ് ചെയ്യുക", - "ldn-new-service.form.label.name": "പേര്", - "ldn-new-service.form.label.description": "വിവരണം", - "ldn-new-service.form.label.url": "സേവന URL", - "ldn-new-service.form.label.ip-range": "സേവന IP റേഞ്ച്", - "ldn-new-service.form.label.score": "വിശ്വാസയോഗ്യതയുടെ നില", - "ldn-new-service.form.label.ldnUrl": "LDN ഇൻബോക്സ് URL", - "ldn-new-service.form.placeholder.name": "ദയവായി സേവനത്തിന്റെ പേര് നൽകുക", - "ldn-new-service.form.placeholder.description": "നിങ്ങളുടെ സേവനത്തെക്കുറിച്ച് ഒരു വിവരണം നൽകുക", - "ldn-new-service.form.placeholder.url": "സേവനത്തെക്കുറിച്ച് കൂടുതൽ വിവരങ്ങൾ പരിശോധിക്കാൻ ഉപയോക്താക്കൾക്കായി URL നൽകുക", - "ldn-new-service.form.placeholder.lowerIp": "IPv4 റേഞ്ച് ലോവർ ബൗണ്ട്", - "ldn-new-service.form.placeholder.upperIp": "IPv4 റേഞ്ച് അപ്പർ ബൗണ്ട്", - "ldn-new-service.form.placeholder.ldnUrl": "ദയവായി LDN ഇൻബോക്സിന്റെ URL വ്യക്തമാക്കുക", - "ldn-new-service.form.placeholder.score": "ദയവായി 0 മുതൽ 1 വരെയുള്ള ഒരു മൂല്യം നൽകുക. ഡെസിമൽ സെപ്പറേറ്ററായി \".\" ഉപയോഗിക്കുക", - "ldn-service.form.label.placeholder.default-select": "ഒരു പാറ്റേൺ തിരഞ്ഞെടുക്കുക", - - "ldn-service.form.pattern.ack-accept.label": "സ്വീകരിക്കുകയും അംഗീകരിക്കുകയും ചെയ്യുക", - "ldn-service.form.pattern.ack-accept.description": "ഒരു അഭ്യർത്ഥന (ഓഫർ) സ്വീകരിക്കുകയും അംഗീകരിക്കുകയും ചെയ്യാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു. ഇത് അഭ്യർത്ഥനയിൽ പ്രവർത്തിക്കാനുള്ള ഉദ്ദേശ്യം സൂചിപ്പിക്കുന്നു.", - "ldn-service.form.pattern.ack-accept.category": "സ്വീകാര്യതകൾ", - - "ldn-service.form.pattern.ack-reject.label": "സ്വീകരിക്കുകയും നിരസിക്കുകയും ചെയ്യുക", - "ldn-service.form.pattern.ack-reject.description": "ഒരു അഭ്യർത്ഥന (ഓഫർ) സ്വീകരിക്കുകയും നിരസിക്കുകയും ചെയ്യാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു. ഇത് അഭ്യർത്ഥനയിൽ കൂടുതൽ പ്രവർത്തനങ്ങൾ ഇല്ലെന്ന് സൂചിപ്പിക്കുന്നു.", - "ldn-service.form.pattern.ack-reject.category": "സ്വീകാര്യതകൾ", - - "ldn-service.form.pattern.ack-tentative-accept.label": "സ്വീകരിക്കുകയും താൽക്കാലികമായി അംഗീകരിക്കുകയും ചെയ്യുക", - "ldn-service.form.pattern.ack-tentative-accept.description": "ഒരു അഭ്യർത്ഥന (ഓഫർ) സ്വീകരിക്കുകയും താൽക്കാലികമായി അംഗീകരിക്കുകയും ചെയ്യാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു. ഇത് പ്രവർത്തിക്കാനുള്ള ഉദ്ദേശ്യം സൂചിപ്പിക്കുന്നു, ഇത് മാറിയേക്കാം.", - "ldn-service.form.pattern.ack-tentative-accept.category": "സ്വീകാര്യതകൾ", - - "ldn-service.form.pattern.ack-tentative-reject.label": "സ്വീകരിക്കുകയും താൽക്കാലികമായി നിരസിക്കുകയും ചെയ്യുക", - "ldn-service.form.pattern.ack-tentative-reject.description": "ഒരു അഭ്യർത്ഥന (ഓഫർ) സ്വീകരിക്കുകയും താൽക്കാലികമായി നിരസിക്കുകയും ചെയ്യാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു. ഇത് കൂടുതൽ പ്രവർത്തനങ്ങൾ ഇല്ലെന്ന് സൂചിപ്പിക്കുന്നു, ഇത് മാറിയേക്കാം.", - "ldn-service.form.pattern.ack-tentative-reject.category": "സ്വീകാര്യതകൾ", - - "ldn-service.form.pattern.announce-endorsement.label": "അംഗീകാരം പ്രഖ്യാപിക്കുക", - "ldn-service.form.pattern.announce-endorsement.description": "ഒരു അംഗീകാരത്തിന്റെ അസ്തിത്വം പ്രഖ്യാപിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു, അംഗീകരിച്ച റിസോഴ്സ് റഫർ ചെയ്യുന്നു.", - "ldn-service.form.pattern.announce-endorsement.category": "പ്രഖ്യാപനങ്ങൾ", - - "ldn-service.form.pattern.announce-ingest.label": "ഇംഗസ്റ്റ് പ്രഖ്യാപിക്കുക", - "ldn-service.form.pattern.announce-ingest.description": "ഒരു റിസോഴ്സ് ഇംഗസ്റ്റ് ചെയ്തിട്ടുണ്ടെന്ന് പ്രഖ്യാപിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", - "ldn-service.form.pattern.announce-ingest.category": "പ്രഖ്യാപനങ്ങൾ", - - "ldn-service.form.pattern.announce-relationship.label": "ബന്ധം പ്രഖ്യാപിക്കുക", - "ldn-service.form.pattern.announce-relationship.description": "രണ്ട് റിസോഴ്സുകൾ തമ്മിലുള്ള ഒരു ബന്ധം പ്രഖ്യാപിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", - "ldn-service.form.pattern.announce-relationship.category": "പ്രഖ്യാപനങ്ങൾ", - - "ldn-service.form.pattern.announce-review.label": "റിവ്യൂ പ്രഖ്യാപിക്കുക", - "ldn-service.form.pattern.announce-review.description": "ഒരു റിവ്യൂയുടെ അസ്തിത്വം പ്രഖ്യാപിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു, റിവ്യൂ ചെയ്ത റിസോഴ്സ് റഫർ ചെയ്യുന്നു.", - "ldn-service.form.pattern.announce-review.category": "പ്രഖ്യാപനങ്ങൾ", - - "ldn-service.form.pattern.announce-service-result.label": "സേവന ഫലം പ്രഖ്യാപിക്കുക", - "ldn-service.form.pattern.announce-service-result.description": "ഒരു 'സേവന ഫലം' ഉള്ളതായി പ്രഖ്യാപിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു, ബന്ധപ്പെട്ട റിസോഴ്സ് റഫർ ചെയ്യുന്നു.", - "ldn-service.form.pattern.announce-service-result.category": "പ്രഖ്യാപനങ്ങൾ", - - "ldn-service.form.pattern.request-endorsement.label": "അംഗീകാരം അഭ്യർത്ഥിക്കുക", - - "ldn-service.form.pattern.request-endorsement.description": "ഉത്ഭവ സിസ്റ്റത്തിന് സ്വന്തമായ ഒരു വിഭവത്തിന്റെ അംഗീകാരം അഭ്യർത്ഥിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", - "ldn-service.form.pattern.request-endorsement.category": "അഭ്യർത്ഥനകൾ", - - "ldn-service.form.pattern.request-ingest.label": "ഇംജസ്റ്റ് അഭ്യർത്ഥിക്കുക", - "ldn-service.form.pattern.request-ingest.description": "ടാർഗെറ്റ് സിസ്റ്റം ഒരു വിഭവം ഇംജസ്റ്റ് ചെയ്യാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", - "ldn-service.form.pattern.request-ingest.category": "അഭ്യർത്ഥനകൾ", - - "ldn-service.form.pattern.request-review.label": "അവലോകനം അഭ്യർത്ഥിക്കുക", - "ldn-service.form.pattern.request-review.description": "ഉത്ഭവ സിസ്റ്റത്തിന് സ്വന്തമായ ഒരു വിഭവത്തിന്റെ അവലോകനം അഭ്യർത്ഥിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", - "ldn-service.form.pattern.request-review.category": "അഭ്യർത്ഥനകൾ", - - "ldn-service.form.pattern.undo-offer.label": "ഓഫർ റദ്ദാക്കുക", - "ldn-service.form.pattern.undo-offer.description": "മുമ്പ് നൽകിയ ഒരു ഓഫർ റദ്ദാക്കാൻ (വാങ്ങാൻ) ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", - "ldn-service.form.pattern.undo-offer.category": "റദ്ദാക്കുക", - - "ldn-new-service.form.label.placeholder.selectedItemFilter": "ഇനം ഫിൽട്ടർ തിരഞ്ഞെടുത്തിട്ടില്ല", - "ldn-new-service.form.label.ItemFilter": "ഇനം ഫിൽട്ടർ", - "ldn-new-service.form.label.automatic": "യാന്ത്രികം", - "ldn-new-service.form.error.name": "പേര് ആവശ്യമാണ്", - "ldn-new-service.form.error.url": "URL ആവശ്യമാണ്", - "ldn-new-service.form.error.ipRange": "സാധുവായ IP ശ്രേണി നൽകുക", - "ldn-new-service.form.hint.ipRange": "സാധുവായ IpV4 രണ്ട് ശ്രേണി പരിധികളിലും നൽകുക (ശ്രദ്ധിക്കുക: ഒരൊറ്റ IP-യ്ക്ക്, രണ്ട് ഫീൽഡുകളിലും ഒരേ മൂല്യം നൽകുക)", - "ldn-new-service.form.error.ldnurl": "LDN URL ആവശ്യമാണ്", - "ldn-new-service.form.error.patterns": "കുറഞ്ഞത് ഒരു പാറ്റേൺ ആവശ്യമാണ്", - "ldn-new-service.form.error.score": "സാധുവായ സ്കോർ നൽകുക (0 മുതൽ 1 വരെ). ദശാംശ സെപ്പറേറ്ററായ “.” ഉപയോഗിക്കുക", - - "ldn-new-service.form.label.inboundPattern": "പിന്തുണയ്ക്കുന്ന പാറ്റേൺ", - "ldn-new-service.form.label.addPattern": "+ കൂടുതൽ ചേർക്കുക", - "ldn-new-service.form.label.removeItemFilter": "നീക്കം ചെയ്യുക", - "ldn-register-new-service.breadcrumbs": "പുതിയ സേവനം", - "service.overview.delete.body": "ഈ സേവനം ഇല്ലാതാക്കാൻ ആഗ്രഹിക്കുന്നുണ്ടോ?", - "service.overview.edit.body": "മാറ്റങ്ങൾ സ്ഥിരീകരിക്കുന്നുണ്ടോ?", - "service.overview.edit.modal": "സേവനം എഡിറ്റ് ചെയ്യുക", - "service.detail.update": "സ്ഥിരീകരിക്കുക", - "service.detail.return": "റദ്ദാക്കുക", - "service.overview.reset-form.body": "മാറ്റങ്ങൾ ഉപേക്ഷിച്ച് പുറത്തുകടക്കാൻ ആഗ്രഹിക്കുന്നുണ്ടോ?", - "service.overview.reset-form.modal": "മാറ്റങ്ങൾ ഉപേക്ഷിക്കുക", - "service.overview.reset-form.reset-confirm": "ഉപേക്ഷിക്കുക", - "admin.registries.services-formats.modify.success.head": "വിജയകരമായ എഡിറ്റ്", - "admin.registries.services-formats.modify.success.content": "സേവനം എഡിറ്റ് ചെയ്തു", - "admin.registries.services-formats.modify.failure.head": "എഡിറ്റ് പരാജയപ്പെട്ടു", - "admin.registries.services-formats.modify.failure.content": "സേവനം എഡിറ്റ് ചെയ്യപ്പെട്ടില്ല", - "ldn-service-notification.created.success.title": "വിജയകരമായ സൃഷ്ടി", - "ldn-service-notification.created.success.body": "സേവനം സൃഷ്ടിച്ചു", - "ldn-service-notification.created.failure.title": "സൃഷ്ടി പരാജയപ്പെട്ടു", - "ldn-service-notification.created.failure.body": "സേവനം സൃഷ്ടിച്ചിട്ടില്ല", - "ldn-service-notification.created.warning.title": "കുറഞ്ഞത് ഒരു ഇൻബൗണ്ട് പാറ്റേൺ തിരഞ്ഞെടുക്കുക", - "ldn-enable-service.notification.success.title": "വിജയകരമായ സ്റ്റാറ്റസ് അപ്ഡേറ്റ്", - "ldn-enable-service.notification.success.content": "സേവന സ്റ്റാറ്റസ് അപ്ഡേറ്റ് ചെയ്തു", - "ldn-service-delete.notification.success.title": "വിജയകരമായ ഇല്ലായ്മ", - "ldn-service-delete.notification.success.content": "സേവനം ഇല്ലാതാക്കി", - "ldn-service-delete.notification.error.title": "ഇല്ലായ്മ പരാജയപ്പെട്ടു", - "ldn-service-delete.notification.error.content": "സേവനം ഇല്ലാതാക്കിയിട്ടില്ല", - "service.overview.reset-form.reset-return": "റദ്ദാക്കുക", - "service.overview.delete": "സേവനം ഇല്ലാതാക്കുക", - "ldn-edit-service.title": "സേവനം എഡിറ്റ് ചെയ്യുക", - "ldn-edit-service.form.label.name": "പേര്", - "ldn-edit-service.form.label.description": "വിവരണം", - "ldn-edit-service.form.label.url": "സേവന URL", - "ldn-edit-service.form.label.ldnUrl": "LDN ഇൻബോക്സ് URL", - "ldn-edit-service.form.label.inboundPattern": "ഇൻബൗണ്ട് പാറ്റേൺ", - "ldn-edit-service.form.label.noInboundPatternSelected": "ഇൻബൗണ്ട് പാറ്റേൺ ഇല്ല", - "ldn-edit-service.form.label.selectedItemFilter": "തിരഞ്ഞെടുത്ത ഇനം ഫിൽട്ടർ", - "ldn-edit-service.form.label.selectItemFilter": "ഇനം ഫിൽട്ടർ ഇല്ല", - "ldn-edit-service.form.label.automatic": "യാന്ത്രികം", - "ldn-edit-service.form.label.addInboundPattern": "+ കൂടുതൽ ചേർക്കുക", - "ldn-edit-service.form.label.submit": "സേവ് ചെയ്യുക", - "ldn-edit-service.breadcrumbs": "സേവനം എഡിറ്റ് ചെയ്യുക", - "ldn-service.control-constaint-select-none": "ഒന്നും തിരഞ്ഞെടുക്കരുത്", - - "ldn-register-new-service.notification.error.title": "പിശക്", - "ldn-register-new-service.notification.error.content": "ഈ പ്രക്രിയ സൃഷ്ടിക്കുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", - "ldn-register-new-service.notification.success.title": "വിജയം", - "ldn-register-new-service.notification.success.content": "പ്രക്രിയ വിജയകരമായി സൃഷ്ടിച്ചു", - - "submission.sections.notify.info": "തിരഞ്ഞെടുത്ത സേവനം ഇനത്തിന്റെ നിലവിലെ സ്റ്റാറ്റസ് അനുസരിച്ച് അനുയോജ്യമാണ്. {{ service.name }}: {{ service.description }}", - - "item.page.endorsement": "അംഗീകാരം", - - "item.page.places": "ബന്ധപ്പെട്ട സ്ഥലങ്ങൾ", - - "item.page.review": "അവലോകനം", - - "item.page.referenced": "റഫറൻസ് ചെയ്തത്", - - "item.page.supplemented": "സപ്ലിമെന്റ് ചെയ്തത്", - - "menu.section.icon.ldn_services": "LDN സേവനങ്ങളുടെ അവലോകനം", - - "menu.section.services": "LDN സേവനങ്ങൾ", - - "menu.section.services_new": "LDN സേവനം", - - "quality-assurance.topics.description-with-target": "താഴെ നിങ്ങൾക്ക് {{source}} എന്നതിലേക്കുള്ള സബ്സ്ക്രിപ്ഷനുകളിൽ നിന്ന് ലഭിച്ച എല്ലാ വിഷയങ്ങളും കാണാൻ കഴിയും", - "quality-assurance.events.description": "തിരഞ്ഞെടുത്ത വിഷയം {{topic}}, {{source}} എന്നിവയുമായി ബന്ധപ്പെട്ട എല്ലാ നിർദ്ദേശങ്ങളുടെയും ലിസ്റ്റ് താഴെ.", - - "quality-assurance.events.description-with-topic-and-target": "തിരഞ്ഞെടുത്ത വിഷയം {{topic}}, {{source}} എന്നിവയുമായി ബന്ധപ്പെട്ട എല്ലാ നിർദ്ദേശങ്ങളുടെയും ലിസ്റ്റ് താഴെ.", - - "quality-assurance.event.table.event.message.serviceUrl": "ആക്ടർ:", - - "quality-assurance.event.table.event.message.link": "ലിങ്ക്:", - - "service.detail.delete.cancel": "റദ്ദാക്കുക", - - "service.detail.delete.button": "സേവനം ഇല്ലാതാക്കുക", - - "service.detail.delete.header": "സേവനം ഇല്ലാതാക്കുക", - - "service.detail.delete.body": "നിലവിലുള്ള സേവനം ഇല്ലാതാക്കാൻ ആഗ്രഹിക്കുന്നുണ്ടോ?", - - "service.detail.delete.confirm": "സേവനം ഇല്ലാതാക്കുക", - - "service.detail.delete.success": "സേവനം വിജയകരമായി ഇല്ലാതാക്കി.", - - "service.detail.delete.error": "സേവനം ഇല്ലാതാക്കുന്നതിനിടെ എന്തോ പിശക് സംഭവിച്ചു", - - "service.overview.table.id": "സേവനങ്ങളുടെ ID", - - "service.overview.table.name": "പേര്", - - "service.overview.table.start": "ആരംഭ സമയം (UTC)", - - "service.overview.table.status": "സ്റ്റാറ്റസ്", - - "service.overview.table.user": "ഉപയോക്താവ്", - - "service.overview.title": "സേവനങ്ങളുടെ അവലോകനം", - - "service.overview.breadcrumbs": "സേവനങ്ങളുടെ അവലോകനം", - - "service.overview.table.actions": "പ്രവർത്തനങ്ങൾ", - - "service.overview.table.description": "വിവരണം", - - "submission.sections.submit.progressbar.coarnotify": "COAR അറിയിക്കുക", - - "submission.section.section-coar-notify.control.request-review.label": "ഇനിപ്പറയുന്ന സേവനങ്ങളിൽ ഒന്നിലേക്ക് ഒരു അവലോകനം അഭ്യർത്ഥിക്കാം", - - "submission.section.section-coar-notify.control.request-endorsement.label": "ഇനിപ്പറയുന്ന ഓവർലേ ജേണലുകളിൽ ഒന്നിലേക്ക് ഒരു അംഗീകാരം അഭ്യർത്ഥിക്കാം", - - "submission.section.section-coar-notify.control.request-ingest.label": "നിങ്ങളുടെ സബ്മിഷന്റെ ഒരു കോപ്പി ഇനിപ്പറയുന്ന സേവനങ്ങളിൽ ഒന്നിലേക്ക് ഇംജസ്റ്റ് ചെയ്യാൻ അഭ്യർത്ഥിക്കാം", - - "submission.section.section-coar-notify.dropdown.no-data": "ഡാറ്റ ലഭ്യമല്ല", - - "submission.section.section-coar-notify.dropdown.select-none": "ഒന്നും തിരഞ്ഞെടുക്കരുത്", - - "submission.section.section-coar-notify.small.notification": "ഈ ഇനത്തിന്റെ {{ pattern }} എന്നതിനായി ഒരു സേവനം തിരഞ്ഞെടുക്കുക", - - "submission.section.section-coar-notify.selection.description": "തിരഞ്ഞെടുത്ത സേവനത്തിന്റെ വിവരണം:", - - "submission.section.section-coar-notify.selection.no-description": "കൂടുതൽ വിവരങ്ങൾ ലഭ്യമല്ല", - - "submission.section.section-coar-notify.notification.error": "തിരഞ്ഞെടുത്ത സേവനം നിലവിലെ ഇനത്തിന് അനുയോജ്യമല്ല. ഈ സേവനം ഏത് റെക്കോർഡുകളാണ് നിയന്ത്രിക്കുന്നത് എന്നതിനെക്കുറിച്ചുള്ള വിവരങ്ങൾക്കായി വിവരണം പരിശോധിക്കുക.", - - "submission.section.section-coar-notify.info.no-pattern": "ക്രമീകരിക്കാവുന്ന പാറ്റേണുകൾ കണ്ടെത്തിയില്ല.", - - "error.validation.coarnotify.invalidfilter": "അസാധുവായ ഫിൽട്ടർ, മറ്റൊരു സേവനം അല്ലെങ്കിൽ ഒന്നും തിരഞ്ഞെടുക്കാതെ പരീക്ഷിക്കുക.", - - "request-status-alert-box.accepted": " {{ serviceName }} എന്നതിനായി അഭ്യർത്ഥിച്ച {{ offerType }} ഏറ്റെടുത്തു.", - - "request-status-alert-box.rejected": " {{ serviceName }} എന്നതിനായി അഭ്യർത്ഥിച്ച {{ offerType }} നിരസിച്ചു.", - - "request-status-alert-box.tentative_rejected": " {{ serviceName }} എന്നതിനായി അഭ്യർത്ഥിച്ച {{ offerType }} താൽക്കാലികമായി നിരസിച്ചു. പുനരവലോകനം ആവശ്യമാണ്", - - "request-status-alert-box.requested": " {{ serviceName }} എന്നതിനായി അഭ്യർത്ഥിച്ച {{ offerType }} തീർച്ചപ്പെടുത്താത്തതാണ്.", - - "ldn-service-button-mark-inbound-deletion": "ഇല്ലാതാക്കാൻ പിന്തുണയ്ക്കുന്ന പാറ്റേൺ മാർക്ക് ചെയ്യുക", - - "ldn-service-button-unmark-inbound-deletion": "ഇല്ലാതാക്കാൻ പിന്തുണയ്ക്കുന്ന പാറ്റേൺ അൺമാർക്ക് ചെയ്യുക", - - "ldn-service-input-inbound-item-filter-dropdown": "പാറ്റേണിനായി ഇനം ഫിൽട്ടർ തിരഞ്ഞെടുക്കുക", - - "ldn-service-input-inbound-pattern-dropdown": "സേവനത്തിനായി ഒരു പാറ്റേൺ തിരഞ്ഞെടുക്കുക", - - "ldn-service-overview-select-delete": "ഇല്ലാതാക്കാൻ സേവനം തിരഞ്ഞെടുക്കുക", - - "ldn-service-overview-select-edit": "LDN സേവനം എഡിറ്റ് ചെയ്യുക", - - "ldn-service-overview-close-modal": "മോഡൽ അടയ്ക്കുക", - - "ldn-service-usesActorEmailId": "അറിയിപ്പുകളിൽ ആക്ടർ ഇമെയിൽ ഐഡി ആവശ്യമാണ്", - - "ldn-service-usesActorEmailId-description": "പ്രവർത്തനക്ഷമമാക്കിയാൽ, അയച്ച പ്രാരംഭ അറിയിപ്പുകളിൽ സബ്മിറ്റർ ഇമെയിൽ റിപോസിറ്ററി URL-യ്ക്ക് പകരം ഉൾപ്പെടുത്തും. ഇത് സാധാരണയായി അംഗീകാരം അല്ലെങ്കിൽ അവലോകന സേവനങ്ങളുടെ കാര്യത്തിലാണ്.", - - "a-common-or_statement.label": "ഇനം തരം ജേണൽ ആർട്ടിക്കിൾ അല്ലെങ്കിൽ ഡാറ്റാസെറ്റ് ആണ്", - - "always_true_filter.label": "എല്ലായ്പ്പോഴും ശരി", - - "automatic_processing_collection_filter_16.label": "യാന്ത്രിക പ്രോസസ്സിംഗ്", - - "dc-identifier-uri-contains-doi_condition.label": "URI-യിൽ DOI അടങ്ങിയിരിക്കുന്നു", - - "doi-filter.label": "DOI ഫിൽട്ടർ", - - "driver-document-type_condition.label": "ഡോക്യുമെന്റ് തരം ഡ്രൈവറിന് തുല്യമാണ്", - - "has-at-least-one-bitstream_condition.label": "കുറഞ്ഞത് ഒരു ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "has-bitstream_filter.label": "ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "has-one-bitstream_condition.label": "ഒരു ബിറ്റ്സ്ട്രീം ഉണ്ട്", - - "is-archived_condition.label": "ആർക്കൈവ് ചെയ്തിട്ടുണ്ട്", - - "is-withdrawn_condition.label": "വിട്ടുകളഞ്ഞിട്ടുണ്ട്", - - "item-is-public_condition.label": "ഇനം പബ്ലിക് ആണ്", - - "journals_ingest_suggestion_collection_filter_18.label": "ജേണലുകൾ ഇംജസ്റ്റ്", - - "title-starts-with-pattern_condition.label": "ശീർഷകം പാറ്റേൺ ഉപയോഗിച്ച് ആരംഭിക്കുന്നു", - - "type-equals-dataset_condition.label": "തരം ഡാറ്റാസെറ്റിന് തുല്യമാണ്", - - "type-equals-journal-article_condition.label": "തരം ജേണൽ ആർട്ടിക്കിന് തുല്യമാണ്", - - "ldn.no-filter.label": "ഒന്നുമില്ല", - - "admin.notify.dashboard": "ഡാഷ്ബോർഡ്", - - "menu.section.notify_dashboard": "ഡാഷ്ബോർഡ്", - - "menu.section.coar_notify": "COAR അറിയിക്കുക", - - "admin-notify-dashboard.title": "അറിയിക്കുക ഡാഷ്ബോർഡ്", - - "admin-notify-dashboard.description": "റിപോസിറ്ററിയിലുടനീളം COAR അറിയിക്കുക പ്രോട്ടോക്കോളിന്റെ പൊതുവായ ഉപയോഗം നിരീക്ഷിക്കുന്നത് അറിയിക്കുക ഡാഷ്ബോർഡ്. “മെട്രിക്സ്” ടാബിൽ COAR അറിയിക്കുക പ്രോട്ടോക്കോളിന്റെ ഉപയോഗത്തെക്കുറിച്ചുള്ള സ്ഥിതിവിവരക്കണക്കുകൾ ഉണ്ട്. “ലോഗുകൾ/ഇൻബൗണ്ട്”, “ലോഗുകൾ/ഔട്ട്ബൗണ്ട്” ടാബുകളിൽ ലഭിച്ചതോ അയച്ചതോ ആയ ഓരോ LDN സന്ദേശത്തിന്റെയും വ്യക്തിഗത സ്റ്റാറ്റസ് തിരയാനും പരിശോധിക്കാനും കഴിയും.", - - "admin-notify-dashboard.metrics": "മെട്രിക്സ്", - - "admin-notify-dashboard.received-ldn": "ലഭിച്ച LDN-കളുടെ എണ്ണം", - - "admin-notify-dashboard.generated-ldn": "സൃഷ്ടിച്ച LDN-കളുടെ എണ്ണം", - - "admin-notify-dashboard.NOTIFY.incoming.accepted": "സ്വീകരിച്ചു", - - "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "സ്വീകരിച്ച ഇൻബൗണ്ട് അറിയിപ്പുകൾ", - - "admin-notify-logs.NOTIFY.incoming.accepted": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: സ്വീകരിച്ച അറിയിപ്പുകൾ", - - "admin-notify-dashboard.NOTIFY.incoming.processed": "പ്രോസസ്സ് ചെയ്ത LDN", - - "admin-notify-dashboard.NOTIFY.incoming.processed.description": "പ്രോസസ്സ് ചെയ്ത ഇൻബൗണ്ട് അറിയിപ്പുകൾ", - - "admin-notify-logs.NOTIFY.incoming.processed": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: പ്രോസസ്സ് ചെയ്ത LDN", - - "admin-notify-logs.NOTIFY.incoming.failure": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: പരാജയപ്പെട്ട അറിയിപ്പുകൾ", - - "admin-notify-dashboard.NOTIFY.incoming.failure": "പരാജയം", - - "admin-notify-dashboard.NOTIFY.incoming.failure.description": "പരാജയപ്പെട്ട ഇൻബൗണ്ട് അറിയിപ്പുകൾ", - - "admin-notify-logs.NOTIFY.outgoing.failure": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: പരാജയപ്പെട്ട അറിയിപ്പുകൾ", - - "admin-notify-dashboard.NOTIFY.outgoing.failure": "പരാജയം", - - "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "പരാജയപ്പെട്ട ഔട്ട്ബൗണ്ട് അറിയിപ്പുകൾ", - - "admin-notify-logs.NOTIFY.incoming.untrusted": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: വിശ്വസനീയമല്ലാത്ത അറിയിപ്പുകൾ", - - "admin-notify-dashboard.NOTIFY.incoming.untrusted": "വിശ്വസനീയമല്ല", - - "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "ഇൻബൗണ്ട് അറിയിപ്പുകൾ വിശ്വസനീയമല്ല", - - "admin-notify-logs.NOTIFY.incoming.delivered": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: ഡെലിവർ ചെയ്ത അറിയിപ്പുകൾ", - - "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "ഇൻബൗണ്ട് അറിയിപ്പുകൾ വിജയകരമായി ഡെലിവർ ചെയ്തു", - - "admin-notify-dashboard.NOTIFY.outgoing.delivered": "ഡെലിവർ ചെയ്തു", - - "admin-notify-logs.NOTIFY.outgoing.delivered": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: ഡെലിവർ ചെയ്ത അറിയിപ്പുകൾ", - - "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "ഔട്ട്ബൗണ്ട് അറിയിപ്പുകൾ വിജയകരമായി ഡെലിവർ ചെയ്തു", - - "admin-notify-logs.NOTIFY.outgoing.queued": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: ക്യൂ ചെയ്ത അറിയിപ്പുകൾ", - - "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "നിലവിൽ ക്യൂ ചെയ്തിരിക്കുന്ന അറിയിപ്പുകൾ", - - "admin-notify-dashboard.NOTIFY.outgoing.queued": "ക്യൂ ചെയ്തു", - - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: വീണ്ടും ശ്രമിക്കാൻ ക്യൂ ചെയ്ത അറിയിപ്പുകൾ", - - "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "വീണ്ടും ശ്രമിക്കാൻ ക്യൂ ചെയ്തു", - - "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "നിലവിൽ വീണ്ടും ശ്രമിക്കാൻ ക്യൂ ചെയ്തിരിക്കുന്ന അറിയിപ്പുകൾ", - - "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "ഇനങ്ങൾ ഉൾപ്പെടുന്നു", - - "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "ഇൻബൗണ്ട് അറിയിപ്പുകളുമായി ബന്ധപ്പെട്ട ഇനങ്ങൾ", - - "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "ഇനങ്ങൾ ഉൾപ്പെടുന്നു", - - "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "ഔട്ട്ബൗണ്ട് അറിയിപ്പുകളുമായി ബന്ധപ്പെട്ട ഇനങ്ങൾ", - - "admin.notify.dashboard.breadcrumbs": "ഡാഷ്ബോർഡ്", - - "admin.notify.dashboard.inbound": "ഇൻബൗണ്ട് സന്ദേശങ്ങൾ", - - "admin.notify.dashboard.inbound-logs": "ലോഗുകൾ/ഇൻബൗണ്ട്", - - "admin.notify.dashboard.filter": "ഫിൽട്ടർ: ", - - "search.filters.applied.f.relateditem": "ബന്ധപ്പെട്ട ഇനങ്ങൾ", - - "search.filters.applied.f.ldn_service": "LDN സേവനം", - - "search.filters.applied.f.notifyReview": "അറിയിക്കുക അവലോകനം", - - "search.filters.applied.f.notifyEndorsement": "അറിയിക്കുക അംഗീകാരം", - - "search.filters.applied.f.notifyRelation": "അറിയിക്കുക ബന്ധം", - - "search.filters.applied.f.access_status": "ആക്സസ് തരം", - - "search.filters.filter.queue_last_start_time.head": "അവസാന പ്രോസസ്സിംഗ് സമയം ", - - "search.filters.filter.queue_last_start_time.min.label": "കുറഞ്ഞ പരിധി", - - "search.filters.filter.queue_last_start_time.max.label": "കൂടിയ പരിധി", - - "search.filters.applied.f.queue_last_start_time.min": "കുറഞ്ഞ പരിധി", - - "search.filters.applied.f.queue_last_start_time.max": "കൂടിയ പരിധി", - - "admin.notify.dashboard.outbound": "ഔട്ട്ബൗണ്ട് സന്ദേശങ്ങൾ", - - "admin.notify.dashboard.outbound-logs": "ലോഗുകൾ/ഔട്ട്ബൗണ്ട്", - - "NOTIFY.incoming.search.results.head": "ഇൻകമിംഗ്", - - "search.filters.filter.relateditem.head": "ബന്ധപ്പെട്ട ഇനം", - - "search.filters.filter.origin.head": "ഉത്ഭവം", - - "search.filters.filter.ldn_service.head": "LDN സേവനം", - - "search.filters.filter.target.head": "ടാർഗെറ്റ്", - - "search.filters.filter.queue_status.head": "ക്യൂ സ്റ്റാറ്റസ്", - - "search.filters.filter.activity_stream_type.head": "ആക്ടിവിറ്റി സ്ട്രീം തരം", - - "search.filters.filter.coar_notify_type.head": "COAR അറിയിക്കുക തരം", - - "search.filters.filter.notification_type.head": "അറിയിപ്പ് തരം", - - "search.filters.filter.relateditem.label": "ബന്ധപ്പെട്ട ഇനങ്ങൾ തിരയുക", - "search.filters.filter.queue_status.label": "ക്യൂ സ്റ്റാറ്റസ് തിരയുക", - "search.filters.filter.target.label": "ടാർഗെറ്റ് തിരയുക", - "search.filters.filter.activity_stream_type.label": "ആക്ടിവിറ്റി സ്ട്രീം തരം തിരയുക", - "search.filters.applied.f.queue_status": "ക്യൂ സ്റ്റാറ്റസ്", - "search.filters.queue_status.0,authority": "വിശ്വസനീയമല്ലാത്ത ഐപി", - "search.filters.queue_status.1,authority": "ക്യൂ ചെയ്തു", - "search.filters.queue_status.2,authority": "പ്രോസസ്സിംഗ്", - "search.filters.queue_status.3,authority": "പ്രോസസ്സ് ചെയ്തു", - "search.filters.queue_status.4,authority": "പരാജയപ്പെട്ടു", - "search.filters.queue_status.5,authority": "വിശ്വസനീയമല്ല", - "search.filters.queue_status.6,authority": "മാപ്പ് ചെയ്യാത്ത പ്രവർത്തനം", - "search.filters.queue_status.7,authority": "റീട്രൈയ്ക്കായി ക്യൂ ചെയ്തു", - "search.filters.applied.f.activity_stream_type": "ആക്ടിവിറ്റി സ്ട്രീം തരം", - "search.filters.applied.f.coar_notify_type": "COAR അറിയിപ്പ് തരം", - "search.filters.applied.f.notification_type": "അറിയിപ്പ് തരം", - "search.filters.filter.coar_notify_type.label": "COAR അറിയിപ്പ് തരം തിരയുക", - "search.filters.filter.notification_type.label": "അറിയിപ്പ് തരം തിരയുക", - "search.filters.filter.relateditem.placeholder": "ബന്ധപ്പെട്ട ഇനങ്ങൾ", - "search.filters.filter.target.placeholder": "ടാർഗെറ്റ്", - "search.filters.filter.origin.label": "ഉറവിടം തിരയുക", - "search.filters.filter.origin.placeholder": "ഉറവിടം", - "search.filters.filter.ldn_service.label": "LDN സേവനം തിരയുക", - "search.filters.filter.ldn_service.placeholder": "LDN സേവനം", - "search.filters.filter.queue_status.placeholder": "ക്യൂ സ്റ്റാറ്റസ്", - "search.filters.filter.activity_stream_type.placeholder": "ആക്ടിവിറ്റി സ്ട്രീം തരം", - "search.filters.filter.coar_notify_type.placeholder": "COAR അറിയിപ്പ് തരം", - "search.filters.filter.notification_type.placeholder": "അറിയിപ്പ്", - "search.filters.filter.notifyRelation.head": "അറിയിപ്പ് ബന്ധം", - "search.filters.filter.notifyRelation.label": "അറിയിപ്പ് ബന്ധം തിരയുക", - "search.filters.filter.notifyRelation.placeholder": "അറിയിപ്പ് ബന്ധം", - "search.filters.filter.notifyReview.head": "അറിയിപ്പ് അവലോകനം", - "search.filters.filter.notifyReview.label": "അറിയിപ്പ് അവലോകനം തിരയുക", - "search.filters.filter.notifyReview.placeholder": "അറിയിപ്പ് അവലോകനം", - "search.filters.coar_notify_type.coar-notify:ReviewAction": "അവലോകന പ്രവർത്തനം", - "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "അവലോകന പ്രവർത്തനം", - "notify-detail-modal.coar-notify:ReviewAction": "അവലോകന പ്രവർത്തനം", - "search.filters.coar_notify_type.coar-notify:EndorsementAction": "അംഗീകാര പ്രവർത്തനം", - "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "അംഗീകാര പ്രവർത്തനം", - "notify-detail-modal.coar-notify:EndorsementAction": "അംഗീകാര പ്രവർത്തനം", - "search.filters.coar_notify_type.coar-notify:IngestAction": "ഇംഗസ്റ്റ് പ്രവർത്തനം", - "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ഇംഗസ്റ്റ് പ്രവർത്തനം", - "notify-detail-modal.coar-notify:IngestAction": "ഇംഗസ്റ്റ് പ്രവർത്തനം", - "search.filters.coar_notify_type.coar-notify:RelationshipAction": "ബന്ധം പ്രവർത്തനം", - "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "ബന്ധം പ്രവർത്തനം", - "notify-detail-modal.coar-notify:RelationshipAction": "ബന്ധം പ്രവർത്തനം", - "search.filters.queue_status.QUEUE_STATUS_QUEUED": "ക്യൂ ചെയ്തു", - "notify-detail-modal.QUEUE_STATUS_QUEUED": "ക്യൂ ചെയ്തു", - "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "റീട്രൈയ്ക്കായി ക്യൂ ചെയ്തു", - "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "റീട്രൈയ്ക്കായി ക്യൂ ചെയ്തു", - "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "പ്രോസസ്സിംഗ്", - "notify-detail-modal.QUEUE_STATUS_PROCESSING": "പ്രോസസ്സിംഗ്", - "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "പ്രോസസ്സ് ചെയ്തു", - "notify-detail-modal.QUEUE_STATUS_PROCESSED": "പ്രോസസ്സ് ചെയ്തു", - "search.filters.queue_status.QUEUE_STATUS_FAILED": "പരാജയപ്പെട്ടു", - "notify-detail-modal.QUEUE_STATUS_FAILED": "പരാജയപ്പെട്ടു", - "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "വിശ്വസനീയമല്ല", - "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "വിശ്വസനീയമല്ലാത്ത ഐപി", - "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "വിശ്വസനീയമല്ല", - "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "വിശ്വസനീയമല്ലാത്ത ഐപി", - "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "മാപ്പ് ചെയ്യാത്ത പ്രവർത്തനം", - "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "മാപ്പ് ചെയ്യാത്ത പ്രവർത്തനം", - "sorting.queue_last_start_time.DESC": "ക്യൂ അവസാനം ആരംഭിച്ചത് ഇറക്കം", - "sorting.queue_last_start_time.ASC": "ക്യൂ അവസാനം ആരംഭിച്ചത് ഉയർത്തം", - "sorting.queue_attempts.DESC": "ക്യൂ ശ്രമിച്ചത് ഇറക്കം", - "sorting.queue_attempts.ASC": "ക്യൂ ശ്രമിച്ചത് ഉയർത്തം", - "NOTIFY.incoming.involvedItems.search.results.head": "ഇൻകമിംഗ് LDN-ൽ ഉൾപ്പെട്ട ഇനങ്ങൾ", - "NOTIFY.outgoing.involvedItems.search.results.head": "ഔട്ട്ഗോയിംഗ് LDN-ൽ ഉൾപ്പെട്ട ഇനങ്ങൾ", - "type.notify-detail-modal": "തരം", - "id.notify-detail-modal": "ഐഡി", - "coarNotifyType.notify-detail-modal": "COAR അറിയിപ്പ് തരം", - "activityStreamType.notify-detail-modal": "ആക്ടിവിറ്റി സ്ട്രീം തരം", - "inReplyTo.notify-detail-modal": "ഉത്തരമായി", - "object.notify-detail-modal": "റിപ്പോസിറ്ററി ഇനം", - "context.notify-detail-modal": "റിപ്പോസിറ്ററി ഇനം", - "queueAttempts.notify-detail-modal": "ക്യൂ ശ്രമങ്ങൾ", - "queueLastStartTime.notify-detail-modal": "ക്യൂ അവസാനം ആരംഭിച്ച സമയം", - "origin.notify-detail-modal": "LDN സേവനം", - "target.notify-detail-modal": "LDN സേവനം", - "queueStatusLabel.notify-detail-modal": "ക്യൂ സ്റ്റാറ്റസ്", - "queueTimeout.notify-detail-modal": "ക്യൂ ടൈംഔട്ട്", - "notify-message-modal.title": "സന്ദേശ വിവരങ്ങൾ", - "notify-message-modal.show-message": "സന്ദേശം കാണിക്കുക", - "notify-message-result.timestamp": "ടൈംസ്റ്റാമ്പ്", - "notify-message-result.repositoryItem": "റിപ്പോസിറ്ററി ഇനം", - "notify-message-result.ldnService": "LDN സേവനം", - "notify-message-result.type": "തരം", - "notify-message-result.status": "സ്റ്റാറ്റസ്", - "notify-message-result.action": "പ്രവർത്തനം", - "notify-message-result.detail": "വിവരങ്ങൾ", - "notify-message-result.reprocess": "റീപ്രോസസ്സ്", - "notify-queue-status.processed": "പ്രോസസ്സ് ചെയ്തു", - "notify-queue-status.failed": "പരാജയപ്പെട്ടു", - "notify-queue-status.queue_retry": "റീട്രൈയ്ക്കായി ക്യൂ ചെയ്തു", - "notify-queue-status.unmapped_action": "മാപ്പ് ചെയ്യാത്ത പ്രവർത്തനം", - "notify-queue-status.processing": "പ്രോസസ്സിംഗ്", - "notify-queue-status.queued": "ക്യൂ ചെയ്തു", - "notify-queue-status.untrusted": "വിശ്വസനീയമല്ല", - "ldnService.notify-detail-modal": "LDN സേവനം", - "relatedItem.notify-detail-modal": "ബന്ധപ്പെട്ട ഇനം", - "search.filters.filter.notifyEndorsement.head": "അറിയിപ്പ് അംഗീകാരം", - "search.filters.filter.notifyEndorsement.placeholder": "അറിയിപ്പ് അംഗീകാരം", - "search.filters.filter.notifyEndorsement.label": "അറിയിപ്പ് അംഗീകാരം തിരയുക", - "form.date-picker.placeholder.year": "വർഷം", - "form.date-picker.placeholder.month": "മാസം", - "form.date-picker.placeholder.day": "ദിവസം", - "item.page.cc.license.title": "ക്രിയേറ്റീവ് കോമൺസ് ലൈസൺസ്", - "item.page.cc.license.disclaimer": "മറ്റെവിടെയെങ്കിലും സൂചിപ്പിച്ചിട്ടില്ലെങ്കിൽ, ഈ ഇനത്തിന്റെ ലൈസൺസ് ഇങ്ങനെ വിവരിക്കപ്പെടുന്നു", - "browse.search-form.placeholder": "റിപ്പോസിറ്ററി തിരയുക", - "file-download-link.download": "ഡൗൺലോഡ് ചെയ്യുക ", - "register-page.registration.aria.label": "നിങ്ങളുടെ ഇമെയിൽ വിലാസം നൽകുക", - "forgot-email.form.aria.label": "നിങ്ങളുടെ ഇമെയിൽ വിലാസം നൽകുക", - "search-facet-option.update.announcement": "പേജ് റീലോഡ് ചെയ്യും. ഫിൽട്ടർ {{ filter }} തിരഞ്ഞെടുത്തിരിക്കുന്നു.", - "live-region.ordering.instructions": "{{ itemName }} ക്രമീകരിക്കാൻ സ്പേസ്ബാർ അമർത്തുക.", - "live-region.ordering.status": "{{ itemName }}, പിടിച്ചു. ലിസ്റ്റിലെ നിലവിലെ സ്ഥാനം: {{ index }} / {{ length }}. സ്ഥാനം മാറ്റാൻ മുകളിലേക്കും താഴേക്കും ആരോ കീ അമർത്തുക, ഡ്രോപ്പ് ചെയ്യാൻ സ്പേസ്ബാർ, റദ്ദാക്കാൻ എസ്കേപ്പ്.", - "live-region.ordering.moved": "{{ itemName }}, {{ index }} / {{ length }} സ്ഥാനത്തേക്ക് നീക്കി. സ്ഥാനം മാറ്റാൻ മുകളിലേക്കും താഴേക്കും ആരോ കീ അമർത്തുക, ഡ്രോപ്പ് ചെയ്യാൻ സ്പേസ്ബാർ, റദ്ദാക്കാൻ എസ്കേപ്പ്.", - "live-region.ordering.dropped": "{{ itemName }}, {{ index }} / {{ length }} സ്ഥാനത്ത് ഡ്രോപ്പ് ചെയ്തു.", - "dynamic-form-array.sortable-list.label": "ക്രമീകരിക്കാവുന്ന ലിസ്റ്റ്", - "external-login.component.or": "അല്ലെങ്കിൽ", - "external-login.confirmation.header": "ലോഗിൻ പ്രക്രിയ പൂർത്തിയാക്കാൻ ആവശ്യമായ വിവരങ്ങൾ", - "external-login.noEmail.informationText": "{{authMethod}} എന്നതിൽ നിന്ന് ലഭിച്ച വിവരങ്ങൾ ലോഗിൻ പ്രക്രിയ പൂർത്തിയാക്കാൻ പര്യാപ്തമല്ല. ദയവായി താഴെ വിവരങ്ങൾ നൽകുക, അല്ലെങ്കിൽ മറ്റൊരു രീതിയിൽ ലോഗിൻ ചെയ്ത് നിങ്ങളുടെ {{authMethod}} നിലവിലുള്ള അക്കൗണ്ടുമായി ബന്ധിപ്പിക്കുക.", - "external-login.haveEmail.informationText": "ഈ സിസ്റ്റത്തിൽ നിങ്ങൾക്ക് ഇതുവരെ ഒരു അക്കൗണ്ട് ഇല്ലെന്ന് തോന്നുന്നു. അങ്ങനെയാണെങ്കിൽ, {{authMethod}} എന്നതിൽ നിന്ന് ലഭിച്ച ഡാറ്റ സ്ഥിരീകരിച്ച് നിങ്ങൾക്ക് ഒരു പുതിയ അക്കൗണ്ട് സൃഷ്ടിക്കും. അല്ലെങ്കിൽ, സിസ്റ്റത്തിൽ നിങ്ങൾക്ക് ഇതിനകം ഒരു അക്കൗണ്ട് ഉണ്ടെങ്കിൽ, ഇമെയിൽ വിലാസം അപ്ഡേറ്റ് ചെയ്യുക അല്ലെങ്കിൽ മറ്റൊരു രീതിയിൽ ലോഗിൻ ചെയ്ത് നിങ്ങളുടെ {{authMethod}} നിലവിലുള്ള അക്കൗണ്ടുമായി ബന്ധിപ്പിക്കുക.", - "external-login.confirm-email.header": "ഇമെയിൽ സ്ഥിരീകരിക്കുക അല്ലെങ്കിൽ അപ്ഡേറ്റ് ചെയ്യുക", - "external-login.confirmation.email-required": "ഇമെയിൽ ആവശ്യമാണ്.", - "external-login.confirmation.email-label": "ഉപയോക്തൃ ഇമെയിൽ", - "external-login.confirmation.email-invalid": "ഇമെയിൽ ഫോർമാറ്റ് അസാധുവാണ്.", - "external-login.confirm.button.label": "ഈ ഇമെയിൽ സ്ഥിരീകരിക്കുക", - "external-login.confirm-email-sent.header": "സ്ഥിരീകരണ ഇമെയിൽ അയച്ചു", - "external-login.confirm-email-sent.info": "നൽകിയ വിലാസത്തിലേക്ക് ഞങ്ങൾ ഒരു ഇമെയിൽ അയച്ചിട്ടുണ്ട്.
ലോഗിൻ പ്രക്രിയ പൂർത്തിയാക്കാൻ ഇമെയിലിലെ നിർദ്ദേശങ്ങൾ പാലിക്കുക.", - "external-login.provide-email.header": "ഇമെയിൽ നൽകുക", - "external-login.provide-email.button.label": "സ്ഥിരീകരണ ലിങ്ക് അയയ്ക്കുക", - "external-login-validation.review-account-info.header": "നിങ്ങളുടെ അക്കൗണ്ട് വിവരങ്ങൾ അവലോകനം ചെയ്യുക", - "external-login-validation.review-account-info.info": "ORCID-ൽ നിന്ന് ലഭിച്ച വിവരങ്ങൾ നിങ്ങളുടെ പ്രൊഫൈലിൽ റെക്കോർഡ് ചെയ്തിരിക്കുന്നവയിൽ നിന്ന് വ്യത്യസ്തമാണ്.
ദയവായി അവ അവലോകനം ചെയ്ത് ഏതെങ്കിലും അപ്ഡേറ്റ് ചെയ്യാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുണ്ടോയെന്ന് തീരുമാനിക്കുക. സേവ് ചെയ്ത ശേഷം നിങ്ങളുടെ പ്രൊഫൈൽ പേജിലേക്ക് റീഡയറക്ട് ചെയ്യും.", - "external-login-validation.review-account-info.table.header.information": "വിവരങ്ങൾ", - "external-login-validation.review-account-info.table.header.received-value": "ലഭിച്ച മൂല്യം", - "external-login-validation.review-account-info.table.header.current-value": "നിലവിലെ മൂല്യം", - "external-login-validation.review-account-info.table.header.action": "ഓവർറൈഡ്", - "external-login-validation.review-account-info.table.row.not-applicable": "ബാധകമല്ല", - "on-label": "ഓൺ", - "off-label": "ഓഫ്", - "review-account-info.merge-data.notification.success": "നിങ്ങളുടെ അക്കൗണ്ട് വിവരങ്ങൾ വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു", - "review-account-info.merge-data.notification.error": "നിങ്ങളുടെ അക്കൗണ്ട് വിവരങ്ങൾ അപ്ഡേറ്റ് ചെയ്യുമ്പോൾ എന്തോ തെറ്റ് സംഭവിച്ചു", - "review-account-info.alert.error.content": "എന്തോ തെറ്റ് സംഭവിച്ചു. ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", - "external-login-page.provide-email.notifications.error": "എന്തോ തെറ്റ് സംഭവിച്ചു. ഇമെയിൽ വിലാസം ഒഴിവാക്കിയിട്ടുണ്ട് അല്ലെങ്കിൽ ഓപ്പറേഷൻ അസാധുവാണ്.", - "external-login.error.notification": "നിങ്ങളുടെ അഭ്യർത്ഥന പ്രോസസ്സ് ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു. ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", - "external-login.connect-to-existing-account.label": "നിലവിലുള്ള ഉപയോക്താവുമായി ബന്ധിപ്പിക്കുക", - "external-login.modal.label.close": "അടയ്ക്കുക", - "external-login-page.provide-email.create-account.notifications.error.header": "എന്തോ തെറ്റ് സംഭവിച്ചു", - "external-login-page.provide-email.create-account.notifications.error.content": "ദയവായി നിങ്ങളുടെ ഇമെയിൽ വിലാസം വീണ്ടും പരിശോധിച്ച് വീണ്ടും ശ്രമിക്കുക.", - "external-login-page.confirm-email.create-account.notifications.error.no-netId": "ഈ ഇമെയിൽ അക്കൗണ്ടിൽ എന്തോ തെറ്റ് സംഭവിച്ചു. വീണ്ടും ശ്രമിക്കുക അല്ലെങ്കിൽ ലോഗിൻ ചെയ്യാൻ മറ്റൊരു രീതി ഉപയോഗിക്കുക.", - "external-login-page.orcid-confirmation.firstname": "പേരിന്റെ ആദ്യഭാഗം", - "external-login-page.orcid-confirmation.firstname.label": "പേരിന്റെ ആദ്യഭാഗം", - "external-login-page.orcid-confirmation.lastname": "പേരിന്റെ അവസാനഭാഗം", - "external-login-page.orcid-confirmation.lastname.label": "പേരിന്റെ അവസാനഭാഗം", - "external-login-page.orcid-confirmation.netid": "അക്കൗണ്ട് ഐഡന്റിഫയർ", - "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", - "external-login-page.orcid-confirmation.email": "ഇമെയിൽ", - "external-login-page.orcid-confirmation.email.label": "ഇമെയിൽ", - "search.filters.access_status.open.access": "ഓപ്പൺ ആക്സസ്സ്", - "search.filters.access_status.restricted": "പരിമിതമായ ആക്സസ്സ്", - "search.filters.access_status.embargo": "എംബാർഗോ ആക്സസ്സ്", - "search.filters.access_status.metadata.only": "മെറ്റാഡാറ്റ മാത്രം", - "search.filters.access_status.unknown": "അജ്ഞാതം", - "metadata-export-filtered-items.tooltip": "റിപ്പോർട്ട് ഔട്ട്പുട്ട് CSV ആയി എക്സ്പോർട്ട് ചെയ്യുക", - "metadata-export-filtered-items.submit.success": "CSV എക്സ്പോർട്ട് വിജയിച്ചു.", - "metadata-export-filtered-items.submit.error": "CSV എക്സ്പോർട്ട് പരാജയപ്പെട്ടു.", - "metadata-export-filtered-items.columns.warning": "CSV എക്സ്പോർട്ട് യാന്ത്രികമായി എല്ലാ ബന്ധപ്പെട്ട ഫീൽഡുകളും ഉൾപ്പെടുത്തുന്നു, അതിനാൽ ഈ ലിസ്റ്റിലെ തിരഞ്ഞെടുപ്പുകൾ കണക്കിലെടുക്കുന്നില്ല.", - "embargo.listelement.badge": "{{ date }} വരെ എംബാർഗോ", - "metadata-export-search.submit.error.limit-exceeded": "ആദ്യ {{limit}} ഇനങ്ങൾ മാത്രം എക്സ്പോർട്ട് ചെയ്യും", - "file-download-link.request-copy": "എന്നതിന്റെ ഒരു പകർപ്പ് അഭ്യർത്ഥിക്കുക ", - -} \ No newline at end of file diff --git a/src/assets/i18n/mr.json5 b/src/assets/i18n/mr.json5 index 51e23f27d9e..a24a498dcd5 100644 --- a/src/assets/i18n/mr.json5 +++ b/src/assets/i18n/mr.json5 @@ -1,7259 +1,11162 @@ { + // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "आपल्याला या पृष्ठावर प्रवेश करण्याची परवानगी नाही. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", + // "401.link.home-page": "Take me to the home page", "401.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", + // "401.unauthorized": "Unauthorized", "401.unauthorized": "अनधिकृत", + // "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.", "403.help": "आपल्याला या पृष्ठावर प्रवेश करण्याची परवानगी नाही. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", + // "403.link.home-page": "Take me to the home page", "403.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", + // "403.forbidden": "Forbidden", "403.forbidden": "मनाई", + // "500.page-internal-server-error": "Service unavailable", "500.page-internal-server-error": "सेवा अनुपलब्ध", + // "500.help": "The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.", "500.help": "सर्व्हर तात्पुरते आपल्या विनंतीची सेवा देऊ शकत नाही कारण देखभाल डाउनटाइम किंवा क्षमता समस्या आहेत. कृपया नंतर पुन्हा प्रयत्न करा.", + // "500.link.home-page": "Take me to the home page", "500.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", + // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ", "404.help": "आपण शोधत असलेले पृष्ठ आम्हाला सापडत नाही. पृष्ठ हलविले गेले असेल किंवा हटविले गेले असेल. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", + // "404.link.home-page": "Take me to the home page", "404.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", + // "404.page-not-found": "Page not found", "404.page-not-found": "पृष्ठ सापडले नाही", + // "error-page.description.401": "Unauthorized", "error-page.description.401": "अनधिकृत", + // "error-page.description.403": "Forbidden", "error-page.description.403": "मनाई", + // "error-page.description.500": "Service unavailable", "error-page.description.500": "सेवा अनुपलब्ध", + // "error-page.description.404": "Page not found", "error-page.description.404": "पृष्ठ सापडले नाही", + // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "ORCID द्वारे लॉगिन करताना एक त्रुटी आली. कृपया खात्री करा की आपण आपला ORCID खाते ईमेल पत्ता DSpace सोबत शेअर केला आहे. त्रुटी कायम राहिल्यास, प्रशासकाशी संपर्क साधा", + // "listelement.badge.access-status": "Access status:", + // TODO New key - Add a translation + "listelement.badge.access-status": "Access status:", + + // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "एंबार्गो", + // "access-status.metadata.only.listelement.badge": "Metadata only", "access-status.metadata.only.listelement.badge": "फक्त मेटाडेटा", + // "access-status.open.access.listelement.badge": "Open Access", "access-status.open.access.listelement.badge": "मुक्त प्रवेश", + // "access-status.restricted.listelement.badge": "Restricted", "access-status.restricted.listelement.badge": "प्रतिबंधित", + // "access-status.unknown.listelement.badge": "Unknown", "access-status.unknown.listelement.badge": "अज्ञात", + // "admin.curation-tasks.breadcrumbs": "System curation tasks", "admin.curation-tasks.breadcrumbs": "सिस्टम क्यूरेशन कार्ये", + // "admin.curation-tasks.title": "System curation tasks", "admin.curation-tasks.title": "सिस्टम क्यूरेशन कार्ये", + // "admin.curation-tasks.header": "System curation tasks", "admin.curation-tasks.header": "सिस्टम क्यूरेशन कार्ये", + // "admin.registries.bitstream-formats.breadcrumbs": "Format registry", "admin.registries.bitstream-formats.breadcrumbs": "फॉरमॅट रजिस्ट्री", + // "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.create.breadcrumbs": "बिटस्ट्रीम फॉरमॅट", + // "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.", "admin.registries.bitstream-formats.create.failure.content": "नवीन बिटस्ट्रीम फॉरमॅट तयार करताना एक त्रुटी आली.", + // "admin.registries.bitstream-formats.create.failure.head": "Failure", "admin.registries.bitstream-formats.create.failure.head": "अपयश", + // "admin.registries.bitstream-formats.create.head": "Create bitstream format", "admin.registries.bitstream-formats.create.head": "बिटस्ट्रीम फॉरमॅट तयार करा", + // "admin.registries.bitstream-formats.create.new": "Add a new bitstream format", "admin.registries.bitstream-formats.create.new": "नवीन बिटस्ट्रीम फॉरमॅट जोडा", + // "admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.", "admin.registries.bitstream-formats.create.success.content": "नवीन बिटस्ट्रीम फॉरमॅट यशस्वीरित्या तयार केले गेले.", + // "admin.registries.bitstream-formats.create.success.head": "Success", "admin.registries.bitstream-formats.create.success.head": "यश", + // "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} फॉरमॅट(स) काढण्यात अपयश", + // "admin.registries.bitstream-formats.delete.failure.head": "Failure", "admin.registries.bitstream-formats.delete.failure.head": "अपयश", + // "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} फॉरमॅट(स) यशस्वीरित्या काढले", + // "admin.registries.bitstream-formats.delete.success.head": "Success", "admin.registries.bitstream-formats.delete.success.head": "यश", + // "admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.", "admin.registries.bitstream-formats.description": "बिटस्ट्रीम फॉरमॅटची ही यादी ज्ञात फॉरमॅट्स आणि त्यांच्या समर्थन स्तराबद्दल माहिती प्रदान करते.", + // "admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.edit.breadcrumbs": "बिटस्ट्रीम फॉरमॅट", + // "admin.registries.bitstream-formats.edit.description.hint": "", "admin.registries.bitstream-formats.edit.description.hint": "", + // "admin.registries.bitstream-formats.edit.description.label": "Description", "admin.registries.bitstream-formats.edit.description.label": "वर्णन", + // "admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.", "admin.registries.bitstream-formats.edit.extensions.hint": "एक्सटेंशन्स म्हणजे फाइल एक्सटेंशन्स आहेत ज्या अपलोड केलेल्या फाइल्सच्या फॉरमॅटची स्वयंचलितपणे ओळख करण्यासाठी वापरल्या जातात. आपण प्रत्येक फॉरमॅटसाठी अनेक एक्सटेंशन्स प्रविष्ट करू शकता.", + // "admin.registries.bitstream-formats.edit.extensions.label": "File extensions", "admin.registries.bitstream-formats.edit.extensions.label": "फाइल एक्सटेंशन्स", + // "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot", "admin.registries.bitstream-formats.edit.extensions.placeholder": "डॉटशिवाय फाइल एक्सटेंशन प्रविष्ट करा", + // "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.", "admin.registries.bitstream-formats.edit.failure.content": "बिटस्ट्रीम फॉरमॅट संपादित करताना एक त्रुटी आली.", + // "admin.registries.bitstream-formats.edit.failure.head": "Failure", "admin.registries.bitstream-formats.edit.failure.head": "अपयश", - "admin.registries.bitstream-formats.edit.head": "बिटस्ट्रीम फॉरमॅट: {{ format }}", + // "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + // TODO New key - Add a translation + "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + // "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.", "admin.registries.bitstream-formats.edit.internal.hint": "आतील म्हणून चिन्हांकित फॉरमॅट्स वापरकर्त्यापासून लपविले जातात आणि प्रशासकीय उद्देशांसाठी वापरले जातात.", + // "admin.registries.bitstream-formats.edit.internal.label": "Internal", "admin.registries.bitstream-formats.edit.internal.label": "आतील", + // "admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.", "admin.registries.bitstream-formats.edit.mimetype.hint": "या फॉरमॅटशी संबंधित MIME प्रकार, अद्वितीय असण्याची आवश्यकता नाही.", + // "admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type", "admin.registries.bitstream-formats.edit.mimetype.label": "MIME प्रकार", + // "admin.registries.bitstream-formats.edit.shortDescription.hint": "A unique name for this format, (e.g. Microsoft Word XP or Microsoft Word 2000)", "admin.registries.bitstream-formats.edit.shortDescription.hint": "या फॉरमॅटसाठी एक अद्वितीय नाव, (उदा. Microsoft Word XP किंवा Microsoft Word 2000)", + // "admin.registries.bitstream-formats.edit.shortDescription.label": "Name", "admin.registries.bitstream-formats.edit.shortDescription.label": "नाव", + // "admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.", "admin.registries.bitstream-formats.edit.success.content": "बिटस्ट्रीम फॉरमॅट यशस्वीरित्या संपादित केले गेले.", + // "admin.registries.bitstream-formats.edit.success.head": "Success", "admin.registries.bitstream-formats.edit.success.head": "यश", + // "admin.registries.bitstream-formats.edit.supportLevel.hint": "The level of support your institution pledges for this format.", "admin.registries.bitstream-formats.edit.supportLevel.hint": "आपली संस्था या फॉरमॅटसाठी समर्थन स्तराची प्रतिज्ञा करते.", + // "admin.registries.bitstream-formats.edit.supportLevel.label": "Support level", "admin.registries.bitstream-formats.edit.supportLevel.label": "समर्थन स्तर", + // "admin.registries.bitstream-formats.head": "Bitstream Format Registry", "admin.registries.bitstream-formats.head": "बिटस्ट्रीम फॉरमॅट रजिस्ट्री", + // "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.", "admin.registries.bitstream-formats.no-items": "दाखविण्यासाठी कोणतेही बिटस्ट्रीम फॉरमॅट नाहीत.", + // "admin.registries.bitstream-formats.table.delete": "Delete selected", "admin.registries.bitstream-formats.table.delete": "निवडलेले हटवा", + // "admin.registries.bitstream-formats.table.deselect-all": "Deselect all", "admin.registries.bitstream-formats.table.deselect-all": "सर्व निवड रद्द करा", + // "admin.registries.bitstream-formats.table.internal": "internal", "admin.registries.bitstream-formats.table.internal": "आतील", + // "admin.registries.bitstream-formats.table.mimetype": "MIME Type", "admin.registries.bitstream-formats.table.mimetype": "MIME प्रकार", + // "admin.registries.bitstream-formats.table.name": "Name", "admin.registries.bitstream-formats.table.name": "नाव", + // "admin.registries.bitstream-formats.table.selected": "Selected bitstream formats", "admin.registries.bitstream-formats.table.selected": "निवडलेले बिटस्ट्रीम फॉरमॅट्स", + // "admin.registries.bitstream-formats.table.id": "ID", "admin.registries.bitstream-formats.table.id": "ID", + // "admin.registries.bitstream-formats.table.return": "Back", "admin.registries.bitstream-formats.table.return": "मागे", + // "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known", "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "ज्ञात", + // "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported", "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "समर्थित", + // "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown", "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "अज्ञात", + // "admin.registries.bitstream-formats.table.supportLevel.head": "Support Level", "admin.registries.bitstream-formats.table.supportLevel.head": "समर्थन स्तर", + // "admin.registries.bitstream-formats.title": "Bitstream Format Registry", "admin.registries.bitstream-formats.title": "बिटस्ट्रीम फॉरमॅट रजिस्ट्री", + // "admin.registries.bitstream-formats.select": "Select", "admin.registries.bitstream-formats.select": "निवडा", + // "admin.registries.bitstream-formats.deselect": "Deselect", "admin.registries.bitstream-formats.deselect": "निवड रद्द करा", + // "admin.registries.metadata.breadcrumbs": "Metadata registry", "admin.registries.metadata.breadcrumbs": "मेटाडेटा रजिस्ट्री", + // "admin.registries.metadata.description": "The metadata registry maintains a list of all metadata fields available in the repository. These fields may be divided amongst multiple schemas. However, DSpace requires the qualified Dublin Core schema.", "admin.registries.metadata.description": "मेटाडेटा रजिस्ट्री रेपॉझिटरीमध्ये उपलब्ध असलेल्या सर्व मेटाडेटा फील्डची यादी राखते. ही फील्ड्स अनेक स्कीमांमध्ये विभागली जाऊ शकतात. तथापि, DSpace ला योग्य Dublin Core स्कीमा आवश्यक आहे.", + // "admin.registries.metadata.form.create": "Create metadata schema", "admin.registries.metadata.form.create": "मेटाडेटा स्कीमा तयार करा", + // "admin.registries.metadata.form.edit": "Edit metadata schema", "admin.registries.metadata.form.edit": "मेटाडेटा स्कीमा संपादित करा", + // "admin.registries.metadata.form.name": "Name", "admin.registries.metadata.form.name": "नाव", + // "admin.registries.metadata.form.namespace": "Namespace", "admin.registries.metadata.form.namespace": "Namespace", + // "admin.registries.metadata.head": "Metadata Registry", "admin.registries.metadata.head": "मेटाडेटा रजिस्ट्री", + // "admin.registries.metadata.schemas.no-items": "No metadata schemas to show.", "admin.registries.metadata.schemas.no-items": "दाखविण्यासाठी कोणतेही मेटाडेटा स्कीमा नाहीत.", + // "admin.registries.metadata.schemas.select": "Select", "admin.registries.metadata.schemas.select": "निवडा", + // "admin.registries.metadata.schemas.deselect": "Deselect", "admin.registries.metadata.schemas.deselect": "निवड रद्द करा", + // "admin.registries.metadata.schemas.table.delete": "Delete selected", "admin.registries.metadata.schemas.table.delete": "निवडलेले हटवा", + // "admin.registries.metadata.schemas.table.selected": "Selected schemas", "admin.registries.metadata.schemas.table.selected": "निवडलेले स्कीमा", + // "admin.registries.metadata.schemas.table.id": "ID", "admin.registries.metadata.schemas.table.id": "ID", + // "admin.registries.metadata.schemas.table.name": "Name", "admin.registries.metadata.schemas.table.name": "नाव", + // "admin.registries.metadata.schemas.table.namespace": "Namespace", "admin.registries.metadata.schemas.table.namespace": "Namespace", + // "admin.registries.metadata.title": "Metadata Registry", "admin.registries.metadata.title": "मेटाडेटा रजिस्ट्री", + // "admin.registries.schema.breadcrumbs": "Metadata schema", "admin.registries.schema.breadcrumbs": "मेटाडेटा स्कीमा", + // "admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".", "admin.registries.schema.description": "हे \"{{namespace}}\" साठी मेटाडेटा स्कीमा आहे.", + // "admin.registries.schema.fields.select": "Select", "admin.registries.schema.fields.select": "निवडा", + // "admin.registries.schema.fields.deselect": "Deselect", "admin.registries.schema.fields.deselect": "निवड रद्द करा", + // "admin.registries.schema.fields.head": "Schema metadata fields", "admin.registries.schema.fields.head": "स्कीमा मेटाडेटा फील्ड्स", + // "admin.registries.schema.fields.no-items": "No metadata fields to show.", "admin.registries.schema.fields.no-items": "दाखविण्यासाठी कोणतेही मेटाडेटा फील्ड्स नाहीत.", + // "admin.registries.schema.fields.table.delete": "Delete selected", "admin.registries.schema.fields.table.delete": "निवडलेले हटवा", + // "admin.registries.schema.fields.table.field": "Field", "admin.registries.schema.fields.table.field": "फील्ड", + // "admin.registries.schema.fields.table.selected": "Selected metadata fields", "admin.registries.schema.fields.table.selected": "निवडलेले मेटाडेटा फील्ड्स", + // "admin.registries.schema.fields.table.id": "ID", "admin.registries.schema.fields.table.id": "ID", + // "admin.registries.schema.fields.table.scopenote": "Scope Note", "admin.registries.schema.fields.table.scopenote": "स्कोप नोट", + // "admin.registries.schema.form.create": "Create metadata field", "admin.registries.schema.form.create": "मेटाडेटा फील्ड तयार करा", + // "admin.registries.schema.form.edit": "Edit metadata field", "admin.registries.schema.form.edit": "मेटाडेटा फील्ड संपादित करा", + // "admin.registries.schema.form.element": "Element", "admin.registries.schema.form.element": "एलिमेंट", + // "admin.registries.schema.form.qualifier": "Qualifier", "admin.registries.schema.form.qualifier": "क्वालिफायर", + // "admin.registries.schema.form.scopenote": "Scope Note", "admin.registries.schema.form.scopenote": "स्कोप नोट", + // "admin.registries.schema.head": "Metadata Schema", "admin.registries.schema.head": "मेटाडेटा स्कीमा", + // "admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.created": "यशस्वीरित्या मेटाडेटा स्कीमा तयार केले \"{{prefix}}\"", + // "admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.failure": "{{amount}} मेटाडेटा स्कीमा हटविण्यात अपयश", + // "admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.success": "{{amount}} मेटाडेटा स्कीमा यशस्वीरित्या हटविले", + // "admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.edited": "यशस्वीरित्या मेटाडेटा स्कीमा संपादित केले \"{{prefix}}\"", + // "admin.registries.schema.notification.failure": "Error", "admin.registries.schema.notification.failure": "त्रुटी", + // "admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"", "admin.registries.schema.notification.field.created": "यशस्वीरित्या मेटाडेटा फील्ड तयार केले \"{{field}}\"", + // "admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.failure": "{{amount}} मेटाडेटा फील्ड्स हटविण्यात अपयश", + // "admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.success": "{{amount}} मेटाडेटा फील्ड्स यशस्वीरित्या हटविले", + // "admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"", "admin.registries.schema.notification.field.edited": "यशस्वीरित्या मेटाडेटा फील्ड संपादित केले \"{{field}}\"", + // "admin.registries.schema.notification.success": "Success", "admin.registries.schema.notification.success": "यश", + // "admin.registries.schema.return": "Back", "admin.registries.schema.return": "मागे", + // "admin.registries.schema.title": "Metadata Schema Registry", "admin.registries.schema.title": "मेटाडेटा स्कीमा रजिस्ट्री", + // "admin.access-control.bulk-access.breadcrumbs": "Bulk Access Management", "admin.access-control.bulk-access.breadcrumbs": "बल्क ऍक्सेस मॅनेजमेंट", + // "administrativeBulkAccess.search.results.head": "Search Results", "administrativeBulkAccess.search.results.head": "शोध परिणाम", + // "admin.access-control.bulk-access": "Bulk Access Management", "admin.access-control.bulk-access": "बल्क ऍक्सेस मॅनेजमेंट", + // "admin.access-control.bulk-access.title": "Bulk Access Management", "admin.access-control.bulk-access.title": "बल्क ऍक्सेस मॅनेजमेंट", - "admin.access-control.bulk-access-browse.header": "पाऊल 1: ऑब्जेक्ट्स निवडा", + // "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + // TODO New key - Add a translation + "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + // "admin.access-control.bulk-access-browse.search.header": "Search", "admin.access-control.bulk-access-browse.search.header": "शोध", + // "admin.access-control.bulk-access-browse.selected.header": "Current selection({{number}})", "admin.access-control.bulk-access-browse.selected.header": "सध्याची निवड({{number}})", - "admin.access-control.bulk-access-settings.header": "पाऊल 2: ऑपरेशन करण्यासाठी", + // "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + // TODO New key - Add a translation + "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + // "admin.access-control.epeople.actions.delete": "Delete EPerson", "admin.access-control.epeople.actions.delete": "EPerson हटवा", + // "admin.access-control.epeople.actions.impersonate": "Impersonate EPerson", "admin.access-control.epeople.actions.impersonate": "EPerson चे अनुकरण करा", + // "admin.access-control.epeople.actions.reset": "Reset password", "admin.access-control.epeople.actions.reset": "पासवर्ड रीसेट करा", + // "admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson", "admin.access-control.epeople.actions.stop-impersonating": "EPerson चे अनुकरण थांबवा", + // "admin.access-control.epeople.breadcrumbs": "EPeople", "admin.access-control.epeople.breadcrumbs": "EPeople", + // "admin.access-control.epeople.title": "EPeople", "admin.access-control.epeople.title": "EPeople", + // "admin.access-control.epeople.edit.breadcrumbs": "New EPerson", "admin.access-control.epeople.edit.breadcrumbs": "नवीन EPerson", + // "admin.access-control.epeople.edit.title": "New EPerson", "admin.access-control.epeople.edit.title": "नवीन EPerson", + // "admin.access-control.epeople.add.breadcrumbs": "Add EPerson", "admin.access-control.epeople.add.breadcrumbs": "EPerson जोडा", + // "admin.access-control.epeople.add.title": "Add EPerson", "admin.access-control.epeople.add.title": "EPerson जोडा", + // "admin.access-control.epeople.head": "EPeople", "admin.access-control.epeople.head": "EPeople", + // "admin.access-control.epeople.search.head": "Search", "admin.access-control.epeople.search.head": "शोध", + // "admin.access-control.epeople.button.see-all": "Browse All", "admin.access-control.epeople.button.see-all": "सर्व ब्राउझ करा", + // "admin.access-control.epeople.search.scope.metadata": "Metadata", "admin.access-control.epeople.search.scope.metadata": "मेटाडेटा", + // "admin.access-control.epeople.search.scope.email": "Email (exact)", "admin.access-control.epeople.search.scope.email": "ईमेल (अचूक)", + // "admin.access-control.epeople.search.button": "Search", "admin.access-control.epeople.search.button": "शोधा", + // "admin.access-control.epeople.search.placeholder": "Search people...", "admin.access-control.epeople.search.placeholder": "लोकांना शोधा...", + // "admin.access-control.epeople.button.add": "Add EPerson", "admin.access-control.epeople.button.add": "EPerson जोडा", + // "admin.access-control.epeople.table.id": "ID", "admin.access-control.epeople.table.id": "ID", + // "admin.access-control.epeople.table.name": "Name", "admin.access-control.epeople.table.name": "नाव", + // "admin.access-control.epeople.table.email": "Email (exact)", "admin.access-control.epeople.table.email": "ईमेल (अचूक)", + // "admin.access-control.epeople.table.edit": "Edit", "admin.access-control.epeople.table.edit": "संपादित करा", + // "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", + // "admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group", "admin.access-control.epeople.table.edit.buttons.edit-disabled": "आपल्याला या गटाचे संपादन करण्याची परवानगी नाही", + // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" हटवा", - "admin.access-control.epeople.no-items": "दाखविण्यासाठी कोणतेही EPeople नाहीत.", - - "admin.access-control.epeople.form.create": "EPerson तयार करा", - - "admin.access-control.epeople.form.edit": "EPerson संपादित करा", - - "admin.access-control.epeople.form.firstName": "पहिले नाव", - - "admin.access-control.epeople.form.lastName": "शेवटचे नाव", - - "admin.access-control.epeople.form.email": "ईमेल", - - "admin.access-control.epeople.form.emailHint": "वैध ईमेल पत्ता असणे आवश्यक आहे", - - "admin.access-control.epeople.form.canLogIn": "लॉग इन करू शकतो", - - "admin.access-control.epeople.form.requireCertificate": "प्रमाणपत्र आवश्यक आहे", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - "admin.access-control.epeople.form.return": "मागे", - - "admin.access-control.epeople.form.notification.created.success": "यशस्वीरित्या EPerson तयार केले \"{{name}}\"", - - "admin.access-control.epeople.form.notification.created.failure": "EPerson तयार करण्यात अपयश \"{{name}}\"", - - "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson तयार करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", - - "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson संपादित करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", - - "admin.access-control.epeople.form.notification.edited.success": "यशस्वीरित्या EPerson संपादित केले \"{{name}}\"", - - "admin.access-control.epeople.form.notification.edited.failure": "EPerson संपादित करण्यात अपयश \"{{name}}\"", - - "admin.access-control.epeople.form.notification.deleted.success": "यशस्वीरित्या EPerson हटविले \"{{name}}\"", - - "admin.access-control.epeople.form.notification.deleted.failure": "EPerson हटविण्यात अपयश \"{{name}}\"", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "या गटांचा सदस्य:", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - "admin.access-control.epeople.form.table.id": "ID", - - "admin.access-control.epeople.breadcrumbs": "EPeople", - - "admin.access-control.epeople.title": "EPeople", - - "admin.access-control.epeople.edit.breadcrumbs": "नवीन EPerson", - - "admin.access-control.epeople.edit.title": "नवीन EPerson", - - "admin.access-control.epeople.add.breadcrumbs": "EPerson जोडा", - - "admin.access-control.epeople.add.title": "EPerson जोडा", - - "admin.access-control.epeople.head": "EPeople", - - "admin.access-control.epeople.search.head": "शोध", - - "admin.access-control.epeople.button.see-all": "सर्व ब्राउझ करा", - - "admin.access-control.epeople.search.scope.metadata": "Metadata", - - "admin.access-control.epeople.search.scope.email": "ईमेल (अचूक)", - - "admin.access-control.epeople.search.button": "शोधा", - - "admin.access-control.epeople.search.placeholder": "लोकांना शोधा...", - - "admin.access-control.epeople.button.add": "EPerson जोडा", - - "admin.access-control.epeople.table.id": "ID", - - "admin.access-control.epeople.table.name": "नाव", - - "admin.access-control.epeople.table.email": "ईमेल (अचूक)", - - "admin.access-control.epeople.table.edit": "संपादित करा", - - "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", - - "admin.access-control.epeople.table.edit.buttons.edit-disabled": "आपल्याला या गटाचे संपादन करण्याची परवानगी नाही", - - "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" हटवा", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "दाखविण्यासाठी कोणतेही EPeople नाहीत.", + // "admin.access-control.epeople.form.create": "Create EPerson", "admin.access-control.epeople.form.create": "EPerson तयार करा", + // "admin.access-control.epeople.form.edit": "Edit EPerson", "admin.access-control.epeople.form.edit": "EPerson संपादित करा", + // "admin.access-control.epeople.form.firstName": "First name", "admin.access-control.epeople.form.firstName": "पहिले नाव", + // "admin.access-control.epeople.form.lastName": "Last name", "admin.access-control.epeople.form.lastName": "शेवटचे नाव", + // "admin.access-control.epeople.form.email": "Email", "admin.access-control.epeople.form.email": "ईमेल", + // "admin.access-control.epeople.form.emailHint": "Must be a valid email address", "admin.access-control.epeople.form.emailHint": "वैध ईमेल पत्ता असणे आवश्यक आहे", + // "admin.access-control.epeople.form.canLogIn": "Can log in", "admin.access-control.epeople.form.canLogIn": "लॉग इन करू शकतो", + // "admin.access-control.epeople.form.requireCertificate": "Requires certificate", "admin.access-control.epeople.form.requireCertificate": "प्रमाणपत्र आवश्यक आहे", + // "admin.access-control.epeople.form.return": "Back", "admin.access-control.epeople.form.return": "मागे", + // "admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.success": "यशस्वीरित्या EPerson तयार केले \"{{name}}\"", + // "admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.failure": "EPerson तयार करण्यात अपयश \"{{name}}\"", + // "admin.access-control.epeople.form.notification.created.failure.emailInUse": "Failed to create EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson तयार करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", + // "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Failed to edit EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson संपादित करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", + // "admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.success": "यशस्वीरित्या EPerson संपादित केले \"{{name}}\"", + // "admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.failure": "EPerson संपादित करण्यात अपयश \"{{name}}\"", + // "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.success": "यशस्वीरित्या EPerson हटविले \"{{name}}\"", + // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.failure": "EPerson हटविण्यात अपयश \"{{name}}\"", - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "या गटांचा सदस्य:", + // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", + // TODO New key - Add a translation + "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", + // "admin.access-control.epeople.form.table.name": "Name", "admin.access-control.epeople.form.table.name": "नाव", + // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", "admin.access-control.epeople.form.table.collectionOrCommunity": "संग्रह/समुदाय", + // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", "admin.access-control.epeople.form.memberOfNoGroups": "हा EPerson कोणत्याही गटाचा सदस्य नाही", + // "admin.access-control.epeople.form.goToGroups": "Add to groups", "admin.access-control.epeople.form.goToGroups": "गटांमध्ये जोडा", - "admin.access-control.epeople.notification.deleted.failure": "EPerson हटवण्याचा प्रयत्न करताना त्रुटी आली \"{{id}}\" कोडसह: \"{{statusCode}}\" आणि संदेश: \"{{restResponse.errorMessage}}\"", + // "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", - "admin.access-control.epeople.notification.deleted.success": "यशस्वीरित्या EPerson हटविले: \"{{name}}\"", + // "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + // "admin.access-control.groups.title": "Groups", "admin.access-control.groups.title": "गट", + // "admin.access-control.groups.breadcrumbs": "Groups", "admin.access-control.groups.breadcrumbs": "गट", + // "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group", "admin.access-control.groups.singleGroup.breadcrumbs": "गट संपादित करा", + // "admin.access-control.groups.title.singleGroup": "Edit Group", "admin.access-control.groups.title.singleGroup": "गट संपादित करा", + // "admin.access-control.groups.title.addGroup": "New Group", "admin.access-control.groups.title.addGroup": "नवीन गट", + // "admin.access-control.groups.addGroup.breadcrumbs": "New Group", "admin.access-control.groups.addGroup.breadcrumbs": "नवीन गट", + // "admin.access-control.groups.head": "Groups", "admin.access-control.groups.head": "गट", + // "admin.access-control.groups.button.add": "Add group", "admin.access-control.groups.button.add": "गट जोडा", + // "admin.access-control.groups.search.head": "Search groups", "admin.access-control.groups.search.head": "गट शोधा", + // "admin.access-control.groups.button.see-all": "Browse all", "admin.access-control.groups.button.see-all": "सर्व ब्राउझ करा", + // "admin.access-control.groups.search.button": "Search", "admin.access-control.groups.search.button": "शोधा", + // "admin.access-control.groups.search.placeholder": "Search groups...", "admin.access-control.groups.search.placeholder": "गट शोधा...", + // "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": "नाव", + // "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.table.collectionOrCommunity": "संग्रह/समुदाय", + // "admin.access-control.groups.table.members": "Members", "admin.access-control.groups.table.members": "सदस्य", + // "admin.access-control.groups.table.edit": "Edit", "admin.access-control.groups.table.edit": "संपादित करा", + // "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", + // "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.remove": "\"{{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": "या नावाने किंवा UUID ने कोणतेही गट सापडले नाहीत", + // "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"", "admin.access-control.groups.notification.deleted.success": "यशस्वीरित्या गट हटविले \"{{name}}\"", + // "admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"", "admin.access-control.groups.notification.deleted.failure.title": "गट हटविण्यात अपयश \"{{name}}\"", - "admin.access-control.groups.notification.deleted.failure.content": "कारण: \"{{cause}}\"", + // "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + // TODO New key - Add a translation + "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + // "admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.permanent": "हा गट कायमचा आहे, त्यामुळे तो संपादित किंवा हटवता येणार नाही. आपण या पृष्ठाचा वापर करून गट सदस्यांना अद्याप जोडू आणि काढू शकता.", + // "admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the \"assign roles\" tab on the edit {{comcol}} page. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.workflowGroup": "हा गट संपादित किंवा हटवता येणार नाही कारण तो \"{{name}}\" {{comcol}} मध्ये सबमिशन आणि वर्कफ्लो प्रक्रियेत भूमिकेशी संबंधित आहे. आपण ते \"भूमिका नियुक्त करा\" टॅबवरून संपादित {{comcol}} पृष्ठावरून हटवू शकता. आपण या पृष्ठाचा वापर करून गट सदस्यांना अद्याप जोडू आणि काढू शकता.", + // "admin.access-control.groups.form.head.create": "Create group", "admin.access-control.groups.form.head.create": "गट तयार करा", + // "admin.access-control.groups.form.head.edit": "Edit group", "admin.access-control.groups.form.head.edit": "गट संपादित करा", + // "admin.access-control.groups.form.groupName": "Group name", "admin.access-control.groups.form.groupName": "गटाचे नाव", + // "admin.access-control.groups.form.groupCommunity": "Community or Collection", "admin.access-control.groups.form.groupCommunity": "समुदाय किंवा संग्रह", + // "admin.access-control.groups.form.groupDescription": "Description", "admin.access-control.groups.form.groupDescription": "वर्णन", + // "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.success": "यशस्वीरित्या गट तयार केले \"{{name}}\"", + // "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.failure": "गट तयार करण्यात अपयश \"{{name}}\"", - "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "नावाने गट तयार करण्यात अपयश: \"{{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.", + // TODO New key - Add a translation + "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.edited.failure": "Failed to edit Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.failure": "गट संपादित करण्यात अपयश \"{{name}}\"", + // "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!", "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "नाव \"{{name}}\" आधीच वापरात आहे!", + // "admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.success": "यशस्वीरित्या गट संपादित केले \"{{name}}\"", + // "admin.access-control.groups.form.actions.delete": "Delete Group", "admin.access-control.groups.form.actions.delete": "गट हटवा", + // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "गट हटवा \"{{ dsoName }}\"", + // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", "admin.access-control.groups.form.delete-group.modal.info": "आपल्याला खात्री आहे की आपण गट हटवू इच्छिता \"{{ dsoName }}\"", + // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", "admin.access-control.groups.form.delete-group.modal.cancel": "रद्द करा", + // "admin.access-control.groups.form.delete-group.modal.confirm": "Delete", "admin.access-control.groups.form.delete-group.modal.confirm": "हटवा", + // "admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.success": "यशस्वीरित्या गट हटविले \"{{ name }}\"", + // "admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.failure.title": "गट हटविण्यात अपयश \"{{ name }}\"", - "admin.access-control.groups.form.notification.deleted.failure.content": "कारण: \"{{ cause }}\"", + // "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + // TODO New key - Add a translation + "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + // "admin.access-control.groups.form.members-list.head": "EPeople", "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": "EPeople जोडा", + // "admin.access-control.groups.form.members-list.button.see-all": "Browse All", "admin.access-control.groups.form.members-list.button.see-all": "सर्व ब्राउझ करा", + // "admin.access-control.groups.form.members-list.headMembers": "Current Members", "admin.access-control.groups.form.members-list.headMembers": "सध्याचे सदस्य", + // "admin.access-control.groups.form.members-list.search.button": "Search", "admin.access-control.groups.form.members-list.search.button": "शोधा", + // "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": "नाव", + // "admin.access-control.groups.form.members-list.table.identity": "Identity", "admin.access-control.groups.form.members-list.table.identity": "ओळख", + // "admin.access-control.groups.form.members-list.table.email": "Email", "admin.access-control.groups.form.members-list.table.email": "ईमेल", + // "admin.access-control.groups.form.members-list.table.netid": "NetID", "admin.access-control.groups.form.members-list.table.netid": "NetID", + // "admin.access-control.groups.form.members-list.table.edit": "Remove / Add", "admin.access-control.groups.form.members-list.table.edit": "हटवा / जोडा", + // "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": "सदस्य हटवा नावाने \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.success.addMember": "यशस्वीरित्या सदस्य जोडले: \"{{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": "Successfully added member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.failure.addMember": "सदस्य जोडण्यात अपयश: \"{{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": "Failed to add member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.success.deleteMember": "यशस्वीरित्या सदस्य हटविले: \"{{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": "Successfully deleted member: \"{{name}}\"", - "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "सदस्य हटविण्यात अपयश: \"{{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": "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": "सदस्य जोडा नावाने \"{{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": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", + // "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": "गटात अद्याप कोणतेही सदस्य नाहीत, शोधा आणि जोडा.", + // "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search", "admin.access-control.groups.form.members-list.no-items": "त्या शोधात कोणतेही EPeople सापडले नाहीत", - "admin.access-control.groups.form.subgroups-list.notification.failure": "काहीतरी चुकले: \"{{cause}}\"", + // "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + // TODO New key - Add a translation + "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + // "admin.access-control.groups.form.subgroups-list.head": "Groups", "admin.access-control.groups.form.subgroups-list.head": "गट", + // "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup", "admin.access-control.groups.form.subgroups-list.search.head": "उपगट जोडा", + // "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All", "admin.access-control.groups.form.subgroups-list.button.see-all": "सर्व ब्राउझ करा", + // "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups", "admin.access-control.groups.form.subgroups-list.headSubgroups": "सध्याचे उपगट", + // "admin.access-control.groups.form.subgroups-list.search.button": "Search", "admin.access-control.groups.form.subgroups-list.search.button": "शोधा", + // "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": "नाव", + // "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "संग्रह/समुदाय", + // "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add", "admin.access-control.groups.form.subgroups-list.table.edit": "हटवा / जोडा", + // "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": "उपगट हटवा नावाने \"{{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": "उपगट जोडा नावाने \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "यशस्वीरित्या उपगट जोडले: \"{{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": "Successfully added subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "उपगट जोडण्यात अपयश: \"{{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": "Failed to add subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "यशस्वीरित्या उपगट हटविले: \"{{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": "Successfully deleted subgroup: \"{{name}}\"", - "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "उपगट हटविण्यात अपयश: \"{{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": "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": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", + // "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": "हा सध्याचा गट आहे, जोडता येणार नाही.", + // "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": "या नावाने किंवा 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": "गटात अद्याप कोणतेही उपगट नाहीत.", + // "admin.access-control.groups.form.return": "Back", "admin.access-control.groups.form.return": "मागे", + // "admin.quality-assurance.breadcrumbs": "Quality Assurance", "admin.quality-assurance.breadcrumbs": "गुणवत्ता आश्वासन", + // "admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions", "admin.notifications.event.breadcrumbs": "गुणवत्ता आश्वासन सूचना", + // "admin.notifications.event.page.title": "Quality Assurance Suggestions", "admin.notifications.event.page.title": "गुणवत्ता आश्वासन सूचना", + // "admin.quality-assurance.page.title": "Quality Assurance", "admin.quality-assurance.page.title": "गुणवत्ता आश्वासन", + // "admin.notifications.source.breadcrumbs": "Quality Assurance", "admin.notifications.source.breadcrumbs": "गुणवत्ता आश्वासन", - "admin.access-control.groups.form.tooltip.editGroupPage": "या पृष्ठावर, आपण गटाच्या गुणधर्म आणि सदस्यता बदलू शकता. शीर्ष विभागात, आपण गटाचे नाव आणि वर्णन संपादित करू शकता, जोपर्यंत हा संग्रह किंवा समुदायासाठी प्रशासकीय गट नाही, अशा परिस्थितीत गटाचे नाव आणि वर्णन स्वयंचलितपणे तयार केले जाते आणि संपादित केले जाऊ शकत नाही. पुढील विभागांमध्ये, आपण गट सदस्यता संपादित करू शकता. अधिक तपशीलांसाठी [विकी](https://wiki.lyrasdisplay/DSDOC7x/Create+or+manage+a+user+group पहा.", + // "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "या गटात EPerson जोडण्यासाठी किंवा काढण्यासाठी, 'सर्व ब्राउझ करा' बटणावर क्लिक करा किंवा वापरकर्त्यांना शोधण्यासाठी खालील शोध पट्टी वापरा (शोध पट्टीच्या डाव्या बाजूला ड्रॉपडाउन वापरून मेटाडेटा किंवा ईमेलद्वारे शोधायचे आहे ते निवडा). नंतर खालील यादीमध्ये आपण जोडू इच्छित असलेल्या प्रत्येक वापरकर्त्यासाठी प्लस चिन्हावर क्लिक करा, किंवा आपण काढू इच्छित असलेल्या प्रत्येक वापरकर्त्यासाठी कचरा डब्यावर क्लिक करा. खालील यादीमध्ये अनेक पृष्ठे असू शकतात: पुढील पृष्ठांवर नेण्यासाठी यादीखालील पृष्ठ नियंत्रण वापरा.", + // "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "या गटात उपगट जोडण्यासाठी किंवा काढण्यासाठी, 'सर्व ब्राउझ करा' बटणावर क्लिक करा किंवा गट शोधण्यासाठी शोध पट्टी वापरा. नंतर खालील यादीमध्ये आपण जोडू इच्छित असलेल्या प्रत्येक गटासाठी प्लस चिन्हावर क्लिक करा, किंवा आपण काढू इच्छित असलेल्या प्रत्येक गटासाठी कचरा डब्यावर क्लिक करा. खालील यादीमध्ये अनेक पृष्ठे असू शकतात: पुढील पृष्ठांवर नेण्यासाठी यादीखालील पृष्ठ नियंत्रण वापरा.", + // "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // TODO New key - Add a translation + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + // "admin.reports.collections.title": "Collection Filter Report", "admin.reports.collections.title": "संग्रह फिल्टर अहवाल", + // "admin.reports.collections.breadcrumbs": "Collection Filter Report", "admin.reports.collections.breadcrumbs": "संग्रह फिल्टर अहवाल", + // "admin.reports.collections.head": "Collection Filter Report", "admin.reports.collections.head": "संग्रह फिल्टर अहवाल", + // "admin.reports.button.show-collections": "Show Collections", "admin.reports.button.show-collections": "संग्रह दाखवा", + // "admin.reports.collections.collections-report": "Collection Report", "admin.reports.collections.collections-report": "संग्रह अहवाल", + // "admin.reports.collections.item-results": "Item Results", "admin.reports.collections.item-results": "आयटम परिणाम", + // "admin.reports.collections.community": "Community", "admin.reports.collections.community": "समुदाय", + // "admin.reports.collections.collection": "Collection", "admin.reports.collections.collection": "संग्रह", + // "admin.reports.collections.nb_items": "Nb. Items", "admin.reports.collections.nb_items": "आयटम संख्या", + // "admin.reports.collections.match_all_selected_filters": "Matching all selected filters", "admin.reports.collections.match_all_selected_filters": "सर्व निवडलेल्या फिल्टरशी जुळणारे", + // "admin.reports.items.breadcrumbs": "Metadata Query Report", "admin.reports.items.breadcrumbs": "मेटाडेटा क्वेरी अहवाल", + // "admin.reports.items.head": "Metadata Query Report", "admin.reports.items.head": "मेटाडेटा क्वेरी अहवाल", + // "admin.reports.items.run": "Run Item Query", "admin.reports.items.run": "आयटम क्वेरी चालवा", + // "admin.reports.items.section.collectionSelector": "Collection Selector", "admin.reports.items.section.collectionSelector": "संग्रह निवडकर्ता", + // "admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries", "admin.reports.items.section.metadataFieldQueries": "मेटाडेटा फील्ड क्वेरी", + // "admin.reports.items.predefinedQueries": "Predefined Queries", "admin.reports.items.predefinedQueries": "पूर्वनिर्धारित क्वेरी", + // "admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries", "admin.reports.items.section.limitPaginateQueries": "मर्यादा/पृष्ठांकन क्वेरी", + // "admin.reports.items.limit": "Limit/", "admin.reports.items.limit": "मर्यादा/", + // "admin.reports.items.offset": "Offset", "admin.reports.items.offset": "ऑफसेट", + // "admin.reports.items.wholeRepo": "Whole Repository", "admin.reports.items.wholeRepo": "संपूर्ण रेपॉझिटरी", + // "admin.reports.items.anyField": "Any field", "admin.reports.items.anyField": "कोणतेही फील्ड", + // "admin.reports.items.predicate.exists": "exists", "admin.reports.items.predicate.exists": "अस्तित्वात आहे", + // "admin.reports.items.predicate.doesNotExist": "does not exist", "admin.reports.items.predicate.doesNotExist": "अस्तित्वात नाही", + // "admin.reports.items.predicate.equals": "equals", "admin.reports.items.predicate.equals": "समान आहे", + // "admin.reports.items.predicate.doesNotEqual": "does not equal", "admin.reports.items.predicate.doesNotEqual": "समान नाही", + // "admin.reports.items.predicate.like": "like", "admin.reports.items.predicate.like": "सारखे", + // "admin.reports.items.predicate.notLike": "not like", "admin.reports.items.predicate.notLike": "सारखे नाही", + // "admin.reports.items.predicate.contains": "contains", "admin.reports.items.predicate.contains": "अंतर्भूत आहे", + // "admin.reports.items.predicate.doesNotContain": "does not contain", "admin.reports.items.predicate.doesNotContain": "अंतर्भूत नाही", + // "admin.reports.items.predicate.matches": "matches", "admin.reports.items.predicate.matches": "जुळते", + // "admin.reports.items.predicate.doesNotMatch": "does not match", "admin.reports.items.predicate.doesNotMatch": "जुळत नाही", + // "admin.reports.items.preset.new": "New Query", "admin.reports.items.preset.new": "नवीन क्वेरी", + // "admin.reports.items.preset.hasNoTitle": "Has No Title", "admin.reports.items.preset.hasNoTitle": "शीर्षक नाही", + // "admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri", "admin.reports.items.preset.hasNoIdentifierUri": "dc.identifier.uri नाही", + // "admin.reports.items.preset.hasCompoundSubject": "Has compound subject", "admin.reports.items.preset.hasCompoundSubject": "संयुक्त विषय आहे", + // "admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author", "admin.reports.items.preset.hasCompoundAuthor": "संयुक्त dc.contributor.author आहे", + // "admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator", "admin.reports.items.preset.hasCompoundCreator": "संयुक्त dc.creator आहे", + // "admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description", "admin.reports.items.preset.hasUrlInDescription": "dc.description मध्ये URL आहे", + // "admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance", "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance मध्ये पूर्ण मजकूर आहे", + // "admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance", "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance मध्ये पूर्ण मजकूर नाही", + // "admin.reports.items.preset.hasEmptyMetadata": "Has empty metadata", "admin.reports.items.preset.hasEmptyMetadata": "रिकामे मेटाडेटा आहे", + // "admin.reports.items.preset.hasUnbreakingDataInDescription": "Has unbreaking metadata in description", "admin.reports.items.preset.hasUnbreakingDataInDescription": "वर्णनात न तुटणारे मेटाडेटा आहे", + // "admin.reports.items.preset.hasXmlEntityInMetadata": "Has XML entity in metadata", "admin.reports.items.preset.hasXmlEntityInMetadata": "मेटाडेटा मध्ये XML घटक आहे", + // "admin.reports.items.preset.hasNonAsciiCharInMetadata": "Has non-ascii character in metadata", "admin.reports.items.preset.hasNonAsciiCharInMetadata": "मेटाडेटा मध्ये non-ascii वर्ण आहे", + // "admin.reports.items.number": "No.", "admin.reports.items.number": "क्रमांक.", + // "admin.reports.items.id": "UUID", "admin.reports.items.id": "UUID", + // "admin.reports.items.collection": "Collection", "admin.reports.items.collection": "संग्रह", + // "admin.reports.items.handle": "URI", "admin.reports.items.handle": "URI", + // "admin.reports.items.title": "Title", "admin.reports.items.title": "शीर्षक", + // "admin.reports.commons.filters": "Filters", "admin.reports.commons.filters": "फिल्टर्स", + // "admin.reports.commons.additional-data": "Additional data to return", "admin.reports.commons.additional-data": "अतिरिक्त डेटा परत करा", + // "admin.reports.commons.previous-page": "Prev Page", "admin.reports.commons.previous-page": "मागील पृष्ठ", + // "admin.reports.commons.next-page": "Next Page", "admin.reports.commons.next-page": "पुढील पृष्ठ", + // "admin.reports.commons.page": "Page", "admin.reports.commons.page": "पृष्ठ", + // "admin.reports.commons.of": "of", "admin.reports.commons.of": "च्या", + // "admin.reports.commons.export": "Export for Metadata Update", "admin.reports.commons.export": "मेटाडेटा अपडेटसाठी निर्यात करा", + // "admin.reports.commons.filters.deselect_all": "Deselect all filters", "admin.reports.commons.filters.deselect_all": "सर्व फिल्टर्स निवड रद्द करा", + // "admin.reports.commons.filters.select_all": "Select all filters", "admin.reports.commons.filters.select_all": "सर्व फिल्टर्स निवडा", + // "admin.reports.commons.filters.matches_all": "Matches all specified filters", "admin.reports.commons.filters.matches_all": "सर्व निर्दिष्ट फिल्टर्सशी जुळते", + // "admin.reports.commons.filters.property": "Item Property Filters", "admin.reports.commons.filters.property": "आयटम प्रॉपर्टी फिल्टर्स", + // "admin.reports.commons.filters.property.is_item": "Is Item - always true", "admin.reports.commons.filters.property.is_item": "आयटम आहे - नेहमी खरे", + // "admin.reports.commons.filters.property.is_withdrawn": "Withdrawn Items", "admin.reports.commons.filters.property.is_withdrawn": "मागे घेतलेले आयटम", + // "admin.reports.commons.filters.property.is_not_withdrawn": "Available Items - Not Withdrawn", "admin.reports.commons.filters.property.is_not_withdrawn": "उपलब्ध आयटम - मागे घेतलेले नाहीत", + // "admin.reports.commons.filters.property.is_discoverable": "Discoverable Items - Not Private", "admin.reports.commons.filters.property.is_discoverable": "शोधण्यायोग्य आयटम - खाजगी नाहीत", + // "admin.reports.commons.filters.property.is_not_discoverable": "Not Discoverable - Private Item", "admin.reports.commons.filters.property.is_not_discoverable": "शोधण्यायोग्य नाहीत - खाजगी आयटम", + // "admin.reports.commons.filters.bitstream": "Basic Bitstream Filters", "admin.reports.commons.filters.bitstream": "मूलभूत बिटस्ट्रीम फिल्टर्स", + // "admin.reports.commons.filters.bitstream.has_multiple_originals": "Item has Multiple Original Bitstreams", "admin.reports.commons.filters.bitstream.has_multiple_originals": "आयटममध्ये एकाधिक मूळ बिटस्ट्रीम आहेत", + // "admin.reports.commons.filters.bitstream.has_no_originals": "Item has No Original Bitstreams", "admin.reports.commons.filters.bitstream.has_no_originals": "आयटममध्ये कोणतेही मूळ बिटस्ट्रीम नाहीत", + // "admin.reports.commons.filters.bitstream.has_one_original": "Item has One Original Bitstream", "admin.reports.commons.filters.bitstream.has_one_original": "आयटममध्ये एक मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", "admin.reports.commons.filters.bitstream_mime": "MIME प्रकारानुसार बिटस्ट्रीम फिल्टर्स", + // "admin.reports.commons.filters.bitstream_mime.has_doc_original": "Item has a Doc Original Bitstream (PDF, Office, Text, HTML, XML, etc)", "admin.reports.commons.filters.bitstream_mime.has_doc_original": "आयटममध्ये एक डॉक मूळ बिटस्ट्रीम आहे (PDF, Office, Text, HTML, XML, इ.)", + // "admin.reports.commons.filters.bitstream_mime.has_image_original": "Item has an Image Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_image_original": "आयटममध्ये एक प्रतिमा मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "Has Other Bitstream Types (not Doc or Image)", "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "इतर बिटस्ट्रीम प्रकार आहेत (डॉक किंवा प्रतिमा नाहीत)", + // "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "Item has multiple types of Original Bitstreams (Doc, Image, Other)", "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "आयटममध्ये एकाधिक प्रकारचे मूळ बिटस्ट्रीम आहेत (डॉक, प्रतिमा, इतर)", + // "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "Item has a PDF Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "आयटममध्ये एक PDF मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "Item has JPG Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "आयटममध्ये JPG मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "Has unusually small PDF", "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "असामान्य लहान PDF आहे", + // "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "Has unusually large PDF", "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "असामान्य मोठा PDF आहे", + // "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "Has document bitstream without TEXT item", "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "TEXT आयटमशिवाय डॉक बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.mime": "Supported MIME Type Filters", "admin.reports.commons.filters.mime": "समर्थित MIME प्रकार फिल्टर्स", + // "admin.reports.commons.filters.mime.has_only_supp_image_type": "Item Image Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_image_type": "आयटम प्रतिमा बिटस्ट्रीम समर्थित आहेत", + // "admin.reports.commons.filters.mime.has_unsupp_image_type": "Item has Image Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_image_type": "आयटममध्ये असमर्थित प्रतिमा बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.mime.has_only_supp_doc_type": "Item Document Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_doc_type": "आयटम डॉक्युमेंट बिटस्ट्रीम समर्थित आहेत", + // "admin.reports.commons.filters.mime.has_unsupp_doc_type": "Item has Document Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_doc_type": "आयटममध्ये असमर्थित डॉक्युमेंट बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bundle": "Bitstream Bundle Filters", "admin.reports.commons.filters.bundle": "बिटस्ट्रीम बंडल फिल्टर्स", + // "admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle", "admin.reports.commons.filters.bundle.has_unsupported_bundle": "असमर्थित बंडलमध्ये बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail", "admin.reports.commons.filters.bundle.has_small_thumbnail": "असामान्य लहान थंबनेल आहे", + // "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail", "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "थंबनेलशिवाय मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)", "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "अवैध थंबनेल नाव आहे (प्रत्येक मूळसाठी एक थंबनेल गृहीत धरते)", + // "admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail", "admin.reports.commons.filters.bundle.has_non_generated_thumb": "नॉन-जनरेटेड थंबनेल आहे", + // "admin.reports.commons.filters.bundle.no_license": "Doesn't have a license", "admin.reports.commons.filters.bundle.no_license": "लायसन्स नाही", + // "admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle", "admin.reports.commons.filters.bundle.has_license_documentation": "लायसन्स बंडलमध्ये दस्तऐवज आहे", + // "admin.reports.commons.filters.permission": "Permission Filters", "admin.reports.commons.filters.permission": "परवानगी फिल्टर्स", + // "admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream", "admin.reports.commons.filters.permission.has_restricted_original": "आयटममध्ये प्रतिबंधित मूळ बिटस्ट्रीम आहे", + // "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "आयटममध्ये किमान एक मूळ बिटस्ट्रीम आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", + // "admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail", "admin.reports.commons.filters.permission.has_restricted_thumbnail": "आयटममध्ये प्रतिबंधित थंबनेल आहे", + // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "आयटममध्ये किमान एक थंबनेल आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", + // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", "admin.reports.commons.filters.permission.has_restricted_metadata": "आयटममध्ये प्रतिबंधित मेटाडेटा आहे", + // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "आयटममध्ये मेटाडेटा आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", + // "admin.search.breadcrumbs": "Administrative Search", "admin.search.breadcrumbs": "प्रशासकीय शोध", + // "admin.search.collection.edit": "Edit", "admin.search.collection.edit": "संपादित करा", + // "admin.search.community.edit": "Edit", "admin.search.community.edit": "संपादित करा", + // "admin.search.item.delete": "Delete", "admin.search.item.delete": "हटवा", + // "admin.search.item.edit": "Edit", "admin.search.item.edit": "संपादित करा", + // "admin.search.item.make-private": "Make non-discoverable", "admin.search.item.make-private": "शोधण्यायोग्य नाही बनवा", + // "admin.search.item.make-public": "Make discoverable", "admin.search.item.make-public": "शोधण्यायोग्य बनवा", + // "admin.search.item.move": "Move", "admin.search.item.move": "हलवा", + // "admin.search.item.reinstate": "Reinstate", "admin.search.item.reinstate": "पुनर्स्थापित करा", + // "admin.search.item.withdraw": "Withdraw", "admin.search.item.withdraw": "मागे घ्या", + // "admin.search.title": "Administrative Search", "admin.search.title": "प्रशासकीय शोध", + // "administrativeView.search.results.head": "Administrative Search", "administrativeView.search.results.head": "प्रशासकीय शोध", + // "admin.workflow.breadcrumbs": "Administer Workflow", "admin.workflow.breadcrumbs": "वर्कफ्लो प्रशासित करा", + // "admin.workflow.title": "Administer Workflow", "admin.workflow.title": "वर्कफ्लो प्रशासित करा", + // "admin.workflow.item.workflow": "Workflow", "admin.workflow.item.workflow": "वर्कफ्लो", + // "admin.workflow.item.workspace": "Workspace", "admin.workflow.item.workspace": "वर्कस्पेस", + // "admin.workflow.item.delete": "Delete", "admin.workflow.item.delete": "हटवा", + // "admin.workflow.item.send-back": "Send back", "admin.workflow.item.send-back": "मागे पाठवा", + // "admin.workflow.item.policies": "Policies", "admin.workflow.item.policies": "धोरणे", + // "admin.workflow.item.supervision": "Supervision", "admin.workflow.item.supervision": "निगराणी", + // "admin.metadata-import.breadcrumbs": "Import Metadata", "admin.metadata-import.breadcrumbs": "मेटाडेटा आयात करा", + // "admin.batch-import.breadcrumbs": "Import Batch", "admin.batch-import.breadcrumbs": "बॅच आयात करा", + // "admin.metadata-import.title": "Import Metadata", "admin.metadata-import.title": "मेटाडेटा आयात करा", + // "admin.batch-import.title": "Import Batch", "admin.batch-import.title": "बॅच आयात करा", + // "admin.metadata-import.page.header": "Import Metadata", "admin.metadata-import.page.header": "मेटाडेटा आयात करा", + // "admin.batch-import.page.header": "Import Batch", "admin.batch-import.page.header": "बॅच आयात करा", + // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "आपण येथे फाइल्सवर बॅच मेटाडेटा ऑपरेशन्स असलेली CSV फाइल्स ड्रॉप किंवा ब्राउझ करू शकता", + // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", "admin.batch-import.page.help": "आयात करण्यासाठी संग्रह निवडा. नंतर, आयटम्स आयात करण्यासाठी Simple Archive Format (SAF) zip फाइल ड्रॉप किंवा ब्राउझ करा", + // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", "admin.batch-import.page.toggle.help": "फाइल अपलोड किंवा URL द्वारे आयात करणे शक्य आहे, इनपुट स्रोत सेट करण्यासाठी वरील टॉगल वापरा", + // "admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import", "admin.metadata-import.page.dropMsg": "मेटाडेटा CSV आयात करण्यासाठी ड्रॉप करा", + // "admin.batch-import.page.dropMsg": "Drop a batch ZIP to import", "admin.batch-import.page.dropMsg": "बॅच ZIP आयात करण्यासाठी ड्रॉप करा", + // "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import", "admin.metadata-import.page.dropMsgReplace": "मेटाडेटा CSV आयात करण्यासाठी बदलण्यासाठी ड्रॉप करा", + // "admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import", "admin.batch-import.page.dropMsgReplace": "बॅच ZIP आयात करण्यासाठी बदलण्यासाठी ड्रॉप करा", + // "admin.metadata-import.page.button.return": "Back", "admin.metadata-import.page.button.return": "मागे", + // "admin.metadata-import.page.button.proceed": "Proceed", "admin.metadata-import.page.button.proceed": "पुढे जा", + // "admin.metadata-import.page.button.select-collection": "Select Collection", "admin.metadata-import.page.button.select-collection": "संग्रह निवडा", + // "admin.metadata-import.page.error.addFile": "Select file first!", "admin.metadata-import.page.error.addFile": "प्रथम फाइल निवडा!", + // "admin.metadata-import.page.error.addFileUrl": "Insert file URL first!", "admin.metadata-import.page.error.addFileUrl": "प्रथम फाइल URL प्रविष्ट करा!", + // "admin.batch-import.page.error.addFile": "Select ZIP file first!", "admin.batch-import.page.error.addFile": "प्रथम ZIP फाइल निवडा!", + // "admin.metadata-import.page.toggle.upload": "Upload", "admin.metadata-import.page.toggle.upload": "अपलोड", + // "admin.metadata-import.page.toggle.url": "URL", "admin.metadata-import.page.toggle.url": "URL", + // "admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import", "admin.metadata-import.page.urlMsg": "आयात करण्यासाठी बॅच ZIP URL प्रविष्ट करा", + // "admin.metadata-import.page.validateOnly": "Validate Only", "admin.metadata-import.page.validateOnly": "फक्त सत्यापित करा", + // "admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.metadata-import.page.validateOnly.hint": "निवडल्यास, अपलोड केलेले CSV सत्यापित केले जाईल. आपल्याला आढळलेल्या बदलांचा अहवाल मिळेल, परंतु कोणतेही बदल जतन केले जाणार नाहीत.", + // "advanced-workflow-action.rating.form.rating.label": "Rating", "advanced-workflow-action.rating.form.rating.label": "रेटिंग", + // "advanced-workflow-action.rating.form.rating.error": "You must rate the item", "advanced-workflow-action.rating.form.rating.error": "आपल्याला आयटम रेट करणे आवश्यक आहे", + // "advanced-workflow-action.rating.form.review.label": "Review", "advanced-workflow-action.rating.form.review.label": "पुनरावलोकन", + // "advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating", "advanced-workflow-action.rating.form.review.error": "आपल्याला हे रेटिंग सबमिट करण्यासाठी पुनरावलोकन प्रविष्ट करणे आवश्यक आहे", + // "advanced-workflow-action.rating.description": "Please select a rating below", "advanced-workflow-action.rating.description": "कृपया खाली रेटिंग निवडा", + // "advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review", "advanced-workflow-action.rating.description-requiredDescription": "कृपया खाली रेटिंग निवडा आणि पुनरावलोकन देखील जोडा", + // "advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting", "advanced-workflow-action.select-reviewer.description-single": "सबमिट करण्यापूर्वी कृपया खाली एकच पुनरावलोकक निवडा", + // "advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting", "advanced-workflow-action.select-reviewer.description-multiple": "सबमिट करण्यापूर्वी कृपया खाली एक किंवा अधिक पुनरावलोकक निवडा", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "EPeople जोडा", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "सर्व ब्राउझ करा", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "सध्याचे सदस्य", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "शोधा", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "नाव", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ओळख", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ईमेल", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "हटवा / जोडा", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "सदस्य हटवा नावाने \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "यशस्वीरित्या सदस्य जोडले: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "सदस्य जोडण्यात अपयश: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "यशस्वीरित्या सदस्य हटविले: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "सदस्य हटविण्यात अपयश: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + // TODO New key - Add a translation + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "सदस्य जोडा नावाने \"{{name}}\"", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "गटात अद्याप कोणतेही सदस्य नाहीत, शोधा आणि जोडा.", + // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "त्या शोधात कोणतेही EPeople सापडले नाहीत", + // "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.", "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "कोणताही पुनरावलोकक निवडलेला नाही.", + // "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.batch-import.page.validateOnly.hint": "निवडल्यास, अपलोड केलेले ZIP सत्यापित केले जाईल. आपल्याला आढळलेल्या बदलांचा अहवाल मिळेल, परंतु कोणतेही बदल जतन केले जाणार नाहीत.", + // "admin.batch-import.page.remove": "remove", "admin.batch-import.page.remove": "हटवा", + // "auth.errors.invalid-user": "Invalid email address or password.", "auth.errors.invalid-user": "अवैध ईमेल पत्ता किंवा पासवर्ड.", + // "auth.messages.expired": "Your session has expired. Please log in again.", "auth.messages.expired": "आपला सत्र कालबाह्य झाला आहे. कृपया पुन्हा लॉग इन करा.", + // "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.", "auth.messages.token-refresh-failed": "आपला सत्र टोकन रीफ्रेश करण्यात अयशस्वी. कृपया पुन्हा लॉग इन करा.", + // "bitstream.download.page": "Now downloading {{bitstream}}...", "bitstream.download.page": "आता डाउनलोड करत आहे {{bitstream}}...", + // "bitstream.download.page.back": "Back", "bitstream.download.page.back": "मागे", + // "bitstream.edit.authorizations.link": "Edit bitstream's Policies", "bitstream.edit.authorizations.link": "बिटस्ट्रीमच्या धोरणांचे संपादन करा", + // "bitstream.edit.authorizations.title": "Edit bitstream's Policies", "bitstream.edit.authorizations.title": "बिटस्ट्रीमच्या धोरणांचे संपादन करा", + // "bitstream.edit.return": "Back", "bitstream.edit.return": "मागे", - "bitstream.edit.bitstream": "बिटस्ट्रीम: ", + // "bitstream.edit.bitstream": "Bitstream: ", + // TODO New key - Add a translation + "bitstream.edit.bitstream": "Bitstream: ", + // "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".", "bitstream.edit.form.description.hint": "पर्यायी, फाईलचे संक्षिप्त वर्णन द्या, उदाहरणार्थ \"Main article\" किंवा \"Experiment data readings\".", + // "bitstream.edit.form.description.label": "Description", "bitstream.edit.form.description.label": "वर्णन", + // "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.", "bitstream.edit.form.embargo.hint": "पहिला दिवस ज्यापासून प्रवेश परवानगी आहे. ही तारीख या फॉर्मवर बदलली जाऊ शकत नाही. बिटस्ट्रीमसाठी एम्बार्गो तारीख सेट करण्यासाठी, Item Status टॅबवर जा, Authorizations... क्लिक करा, बिटस्ट्रीमच्या READ धोरणाचे निर्माण किंवा संपादन करा, आणि इच्छित Start Date सेट करा.", + // "bitstream.edit.form.embargo.label": "Embargo until specific date", "bitstream.edit.form.embargo.label": "विशिष्ट तारखेपर्यंत एम्बार्गो", + // "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": "बिटस्ट्रीमसाठी फाईलचे नाव बदला. लक्षात ठेवा की हे बिटस्ट्रीम URL बदलेल, परंतु जुने दुवे अद्याप कार्यरत राहतील जोपर्यंत अनुक्रम ID बदलत नाही.", + // "bitstream.edit.form.fileName.label": "Filename", "bitstream.edit.form.fileName.label": "फाईलचे नाव", + // "bitstream.edit.form.newFormat.label": "Describe new format", "bitstream.edit.form.newFormat.label": "नवीन स्वरूपाचे वर्णन करा", + // "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"ACMESoft SuperApp version 1.5\").", "bitstream.edit.form.newFormat.hint": "तुम्ही फाईल तयार करण्यासाठी वापरलेले अनुप्रयोग, आणि आवृत्ती क्रमांक (उदाहरणार्थ, \"ACMESoft SuperApp version 1.5\").", + // "bitstream.edit.form.primaryBitstream.label": "Primary File", "bitstream.edit.form.primaryBitstream.label": "प्राथमिक फाईल", + // "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, select \"format not in list\" above and describe it under \"Describe new format\".", "bitstream.edit.form.selectedFormat.hint": "जर स्वरूप वरील यादीत नसेल, वरील \"format not in list\" निवडा आणि \"Describe new format\" अंतर्गत त्याचे वर्णन करा.", + // "bitstream.edit.form.selectedFormat.label": "Selected Format", "bitstream.edit.form.selectedFormat.label": "निवडलेले स्वरूप", + // "bitstream.edit.form.selectedFormat.unknown": "Format not in list", "bitstream.edit.form.selectedFormat.unknown": "सूचीतील स्वरूप नाही", + // "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format", "bitstream.edit.notifications.error.format.title": "बिटस्ट्रीमचे स्वरूप जतन करताना त्रुटी आली", + // "bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream", "bitstream.edit.notifications.error.primaryBitstream.title": "प्राथमिक बिटस्ट्रीम जतन करताना त्रुटी आली", + // "bitstream.edit.form.iiifLabel.label": "IIIF Label", "bitstream.edit.form.iiifLabel.label": "IIIF लेबल", + // "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.", "bitstream.edit.form.iiifLabel.hint": "या प्रतिमेसाठी कॅनव्हास लेबल. दिले नसल्यास डीफॉल्ट लेबल वापरले जाईल.", + // "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents", "bitstream.edit.form.iiifToc.label": "IIIF सामग्री सारणी", + // "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.", "bitstream.edit.form.iiifToc.hint": "येथे मजकूर जोडल्याने नवीन सामग्री सारणी श्रेणीची सुरुवात होते.", + // "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width", "bitstream.edit.form.iiifWidth.label": "IIIF कॅनव्हास रुंदी", + // "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.", "bitstream.edit.form.iiifWidth.hint": "कॅनव्हासची रुंदी सामान्यतः प्रतिमेच्या रुंदीशी जुळली पाहिजे.", + // "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height", "bitstream.edit.form.iiifHeight.label": "IIIF कॅनव्हास उंची", + // "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.", "bitstream.edit.form.iiifHeight.hint": "कॅनव्हासची उंची सामान्यतः प्रतिमेच्या उंचीशी जुळली पाहिजे.", + // "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.", "bitstream.edit.notifications.saved.content": "तुमच्या बिटस्ट्रीममध्ये केलेले बदल जतन केले गेले.", + // "bitstream.edit.notifications.saved.title": "Bitstream saved", "bitstream.edit.notifications.saved.title": "बिटस्ट्रीम जतन केले", + // "bitstream.edit.title": "Edit bitstream", "bitstream.edit.title": "बिटस्ट्रीम संपादन करा", + // "bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ", "bitstream-request-a-copy.alert.canDownload1": "तुमच्याकडे आधीच या फाईलचा प्रवेश आहे. जर तुम्हाला फाईल डाउनलोड करायची असेल, तर क्लिक करा ", + // "bitstream-request-a-copy.alert.canDownload2": "here", "bitstream-request-a-copy.alert.canDownload2": "इथे", + // "bitstream-request-a-copy.header": "Request a copy of the file", "bitstream-request-a-copy.header": "फाईलची प्रत मागवा", - "bitstream-request-a-copy.intro": "खालील आयटमसाठी प्रत मागण्यासाठी खालील माहिती प्रविष्ट करा: ", + // "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", + // TODO New key - Add a translation + "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", - "bitstream-request-a-copy.intro.bitstream.one": "खालील फाईलची प्रत मागत आहे: ", + // "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + // TODO New key - Add a translation + "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + // "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ", "bitstream-request-a-copy.intro.bitstream.all": "सर्व फाईल्स मागत आहे. ", + // "bitstream-request-a-copy.name.label": "Name *", "bitstream-request-a-copy.name.label": "नाव *", + // "bitstream-request-a-copy.name.error": "The name is required", "bitstream-request-a-copy.name.error": "नाव आवश्यक आहे", + // "bitstream-request-a-copy.email.label": "Your email address *", "bitstream-request-a-copy.email.label": "तुमचा ईमेल पत्ता *", + // "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.", "bitstream-request-a-copy.email.hint": "ही ईमेल पत्ता फाईल पाठवण्यासाठी वापरली जाते.", + // "bitstream-request-a-copy.email.error": "Please enter a valid email address.", "bitstream-request-a-copy.email.error": "कृपया वैध ईमेल पत्ता प्रविष्ट करा.", + // "bitstream-request-a-copy.allfiles.label": "Files", "bitstream-request-a-copy.allfiles.label": "फाईल्स", + // "bitstream-request-a-copy.files-all-false.label": "Only the requested file", "bitstream-request-a-copy.files-all-false.label": "फक्त मागितलेली फाईल", + // "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access", "bitstream-request-a-copy.files-all-true.label": "सर्व फाईल्स (या आयटमच्या) प्रतिबंधित प्रवेशात", + // "bitstream-request-a-copy.message.label": "Message", "bitstream-request-a-copy.message.label": "संदेश", + // "bitstream-request-a-copy.return": "Back", "bitstream-request-a-copy.return": "मागे", + // "bitstream-request-a-copy.submit": "Request copy", "bitstream-request-a-copy.submit": "प्रत मागवा", + // "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.", "bitstream-request-a-copy.submit.success": "आयटमची विनंती यशस्वीरित्या सबमिट केली गेली.", + // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "आयटमची विनंती सबमिट करताना काहीतरी चूक झाली.", + // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", "bitstream-request-a-copy.access-by-token.warning": "तुम्ही लेखक किंवा रिपॉझिटरी स्टाफने दिलेल्या सुरक्षित प्रवेश दुव्याद्वारे हा आयटम पाहत आहात. हा दुवा अनधिकृत वापरकर्त्यांना शेअर करणे महत्त्वाचे नाही.", + // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", "bitstream-request-a-copy.access-by-token.expiry-label": "या दुव्याद्वारे दिलेला प्रवेश समाप्त होईल", + // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", "bitstream-request-a-copy.access-by-token.expired": "या दुव्याद्वारे दिलेला प्रवेश आता शक्य नाही. प्रवेश समाप्त झाला", + // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", "bitstream-request-a-copy.access-by-token.not-granted": "या दुव्याद्वारे दिलेला प्रवेश शक्य नाही. प्रवेश दिला गेला नाही, किंवा रद्द केला गेला आहे.", + // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", "bitstream-request-a-copy.access-by-token.re-request": "प्रतिबंधित डाउनलोड दुवे फॉलो करा आणि प्रवेशासाठी नवीन विनंती सबमिट करा.", + // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", "bitstream-request-a-copy.access-by-token.alt-text": "या आयटमचा प्रवेश सुरक्षित टोकनद्वारे दिला जातो", + // "browse.back.all-results": "All browse results", "browse.back.all-results": "सर्व ब्राउझ परिणाम", + // "browse.comcol.by.author": "By Author", "browse.comcol.by.author": "लेखकानुसार", + // "browse.comcol.by.dateissued": "By Issue Date", "browse.comcol.by.dateissued": "प्रकाशन तारखेनुसार", + // "browse.comcol.by.subject": "By Subject", "browse.comcol.by.subject": "विषयानुसार", + // "browse.comcol.by.srsc": "By Subject Category", "browse.comcol.by.srsc": "विषय श्रेणीनुसार", + // "browse.comcol.by.nsi": "By Norwegian Science Index", "browse.comcol.by.nsi": "नॉर्वेजियन सायन्स इंडेक्सनुसार", + // "browse.comcol.by.title": "By Title", "browse.comcol.by.title": "शीर्षकानुसार", + // "browse.comcol.head": "Browse", "browse.comcol.head": "ब्राउझ करा", + // "browse.empty": "No items to show.", "browse.empty": "दाखवण्यासाठी कोणतेही आयटम नाहीत.", + // "browse.metadata.author": "Author", "browse.metadata.author": "लेखक", + // "browse.metadata.dateissued": "Issue Date", "browse.metadata.dateissued": "प्रकाशन तारीख", + // "browse.metadata.subject": "Subject", "browse.metadata.subject": "विषय", + // "browse.metadata.title": "Title", "browse.metadata.title": "शीर्षक", + // "browse.metadata.srsc": "Subject Category", "browse.metadata.srsc": "विषय श्रेणी", + // "browse.metadata.author.breadcrumbs": "Browse by Author", "browse.metadata.author.breadcrumbs": "लेखकानुसार ब्राउझ करा", + // "browse.metadata.dateissued.breadcrumbs": "Browse by Date", "browse.metadata.dateissued.breadcrumbs": "तारखेनुसार ब्राउझ करा", + // "browse.metadata.subject.breadcrumbs": "Browse by Subject", "browse.metadata.subject.breadcrumbs": "विषयानुसार ब्राउझ करा", + // "browse.metadata.srsc.breadcrumbs": "Browse by Subject Category", "browse.metadata.srsc.breadcrumbs": "विषय श्रेणीनुसार ब्राउझ करा", + // "browse.metadata.srsc.tree.description": "Select a subject to add as search filter", "browse.metadata.srsc.tree.description": "शोध फिल्टर म्हणून जोडण्यासाठी विषय निवडा", + // "browse.metadata.nsi.breadcrumbs": "Browse by Norwegian Science Index", "browse.metadata.nsi.breadcrumbs": "नॉर्वेजियन सायन्स इंडेक्सनुसार ब्राउझ करा", + // "browse.metadata.nsi.tree.description": "Select an index to add as search filter", "browse.metadata.nsi.tree.description": "शोध फिल्टर म्हणून जोडण्यासाठी इंडेक्स निवडा", + // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "शीर्षकानुसार ब्राउझ करा", + // "browse.metadata.map": "Browse by Geolocation", "browse.metadata.map": "भौगोलिक स्थानानुसार ब्राउझ करा", + // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", "browse.metadata.map.breadcrumbs": "भौगोलिक स्थानानुसार ब्राउझ करा", + // "browse.metadata.map.count.items": "items", "browse.metadata.map.count.items": "आयटम्स", + // "pagination.next.button": "Next", "pagination.next.button": "पुढे", + // "pagination.previous.button": "Previous", "pagination.previous.button": "मागे", + // "pagination.next.button.disabled.tooltip": "No more pages of results", "pagination.next.button.disabled.tooltip": "अधिक परिणाम पृष्ठे नाहीत", - "pagination.page-number-bar": "पृष्ठ नेव्हिगेशनसाठी नियंत्रण पट्टी, ID सह घटकाच्या सापेक्ष: ", + // "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + // TODO New key - Add a translation + "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + // "browse.startsWith": ", starting with {{ startsWith }}", "browse.startsWith": ", {{ startsWith }} ने सुरू होते", + // "browse.startsWith.choose_start": "(Choose start)", "browse.startsWith.choose_start": "(प्रारंभ निवडा)", + // "browse.startsWith.choose_year": "(Choose year)", "browse.startsWith.choose_year": "(वर्ष निवडा)", + // "browse.startsWith.choose_year.label": "Choose the issue year", "browse.startsWith.choose_year.label": "प्रकाशन वर्ष निवडा", + // "browse.startsWith.jump": "Filter results by year or month", "browse.startsWith.jump": "वर्ष किंवा महिन्यानुसार परिणाम फिल्टर करा", + // "browse.startsWith.months.april": "April", "browse.startsWith.months.april": "एप्रिल", + // "browse.startsWith.months.august": "August", "browse.startsWith.months.august": "ऑगस्ट", + // "browse.startsWith.months.december": "December", "browse.startsWith.months.december": "डिसेंबर", + // "browse.startsWith.months.february": "February", "browse.startsWith.months.february": "फेब्रुवारी", + // "browse.startsWith.months.january": "January", "browse.startsWith.months.january": "जानेवारी", + // "browse.startsWith.months.july": "July", "browse.startsWith.months.july": "जुलै", + // "browse.startsWith.months.june": "June", "browse.startsWith.months.june": "जून", + // "browse.startsWith.months.march": "March", "browse.startsWith.months.march": "मार्च", + // "browse.startsWith.months.may": "May", "browse.startsWith.months.may": "मे", + // "browse.startsWith.months.none": "(Choose month)", "browse.startsWith.months.none": "(महिना निवडा)", + // "browse.startsWith.months.none.label": "Choose the issue month", "browse.startsWith.months.none.label": "प्रकाशन महिना निवडा", + // "browse.startsWith.months.november": "November", "browse.startsWith.months.november": "नोव्हेंबर", + // "browse.startsWith.months.october": "October", "browse.startsWith.months.october": "ऑक्टोबर", + // "browse.startsWith.months.september": "September", "browse.startsWith.months.september": "सप्टेंबर", + // "browse.startsWith.submit": "Browse", "browse.startsWith.submit": "ब्राउझ करा", + // "browse.startsWith.type_date": "Filter results by date", "browse.startsWith.type_date": "तारखेनुसार परिणाम फिल्टर करा", + // "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button", "browse.startsWith.type_date.label": "किंवा तारीख (वर्ष-महिना) टाइप करा आणि ब्राउझ बटणावर क्लिक करा", + // "browse.startsWith.type_text": "Filter results by typing the first few letters", "browse.startsWith.type_text": "पहिल्या काही अक्षरांनी परिणाम फिल्टर करा", + // "browse.startsWith.input": "Filter", "browse.startsWith.input": "फिल्टर", + // "browse.taxonomy.button": "Browse", "browse.taxonomy.button": "ब्राउझ करा", + // "browse.title": "Browsing by {{ field }}{{ startsWith }} {{ value }}", "browse.title": "{{ field }}{{ startsWith }} {{ value }} ने ब्राउझ करत आहे", + // "browse.title.page": "Browsing by {{ field }} {{ value }}", "browse.title.page": "{{ field }} {{ value }} ने ब्राउझ करत आहे", + // "search.browse.item-back": "Back to Results", "search.browse.item-back": "परिणामांकडे परत जा", + // "chips.remove": "Remove chip", "chips.remove": "चिप काढा", + // "claimed-approved-search-result-list-element.title": "Approved", "claimed-approved-search-result-list-element.title": "मंजूर", + // "claimed-declined-search-result-list-element.title": "Rejected, sent back to submitter", "claimed-declined-search-result-list-element.title": "नाकारले, सबमिटरकडे परत पाठवले", + // "claimed-declined-task-search-result-list-element.title": "Declined, sent back to Review Manager's workflow", "claimed-declined-task-search-result-list-element.title": "नाकारले, पुनरावलोकन व्यवस्थापकाच्या कार्यप्रवाहाकडे परत पाठवले", + // "collection.create.breadcrumbs": "Create collection", "collection.create.breadcrumbs": "संग्रह तयार करा", + // "collection.browse.logo": "Browse for a collection logo", "collection.browse.logo": "संग्रह लोगो ब्राउझ करा", + // "collection.create.head": "Create a Collection", "collection.create.head": "संग्रह तयार करा", + // "collection.create.notifications.success": "Successfully created the collection", "collection.create.notifications.success": "संग्रह यशस्वीरित्या तयार केला", + // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", "collection.create.sub-head": "समुदाय {{ parent }} साठी संग्रह तयार करा", - "collection.curate.header": "संग्रह व्यवस्थापित करा: {{collection}}", + // "collection.curate.header": "Curate Collection: {{collection}}", + // TODO New key - Add a translation + "collection.curate.header": "Curate Collection: {{collection}}", + // "collection.delete.cancel": "Cancel", "collection.delete.cancel": "रद्द करा", + // "collection.delete.confirm": "Confirm", "collection.delete.confirm": "पुष्टी करा", + // "collection.delete.processing": "Deleting", "collection.delete.processing": "हटवत आहे", + // "collection.delete.head": "Delete Collection", "collection.delete.head": "संग्रह हटवा", + // "collection.delete.notification.fail": "Collection could not be deleted", "collection.delete.notification.fail": "संग्रह हटवता आला नाही", + // "collection.delete.notification.success": "Successfully deleted collection", "collection.delete.notification.success": "संग्रह यशस्वीरित्या हटवला", + // "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"", "collection.delete.text": "तुम्हाला खात्री आहे की तुम्ही संग्रह \"{{ dso }}\" हटवू इच्छिता", + // "collection.edit.delete": "Delete this collection", "collection.edit.delete": "हा संग्रह हटवा", + // "collection.edit.head": "Edit Collection", "collection.edit.head": "संग्रह संपादन करा", + // "collection.edit.breadcrumbs": "Edit Collection", "collection.edit.breadcrumbs": "संग्रह संपादन करा", + // "collection.edit.tabs.mapper.head": "Item Mapper", "collection.edit.tabs.mapper.head": "आयटम मॅपर", + // "collection.edit.tabs.item-mapper.title": "Collection Edit - Item Mapper", "collection.edit.tabs.item-mapper.title": "संग्रह संपादन - आयटम मॅपर", + // "collection.edit.item-mapper.cancel": "Cancel", "collection.edit.item-mapper.cancel": "रद्द करा", - "collection.edit.item-mapper.collection": "संग्रह: \"{{name}}\"", + // "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + // TODO New key - Add a translation + "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + // "collection.edit.item-mapper.confirm": "Map selected items", "collection.edit.item-mapper.confirm": "निवडलेले आयटम मॅप करा", + // "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.", "collection.edit.item-mapper.description": "हे आयटम मॅपर साधन आहे जे संग्रह प्रशासकांना या संग्रहात इतर संग्रहांमधून आयटम मॅप करण्यास अनुमती देते. तुम्ही इतर संग्रहांमधून आयटम शोधू शकता आणि त्यांना मॅप करू शकता, किंवा सध्या मॅप केलेल्या आयटमची यादी ब्राउझ करू शकता.", + // "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections", "collection.edit.item-mapper.head": "आयटम मॅपर - इतर संग्रहांमधून आयटम मॅप करा", + // "collection.edit.item-mapper.no-search": "Please enter a query to search", "collection.edit.item-mapper.no-search": "शोधण्यासाठी क्वेरी प्रविष्ट करा", + // "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.", "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} आयटम्सच्या मॅपिंगसाठी त्रुटी आल्या.", + // "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors", "collection.edit.item-mapper.notifications.map.error.head": "मॅपिंग त्रुटी", + // "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.", "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} आयटम्स यशस्वीरित्या मॅप केले.", + // "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed", "collection.edit.item-mapper.notifications.map.success.head": "मॅपिंग पूर्ण झाले", + // "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} आयटम्सच्या मॅपिंग काढण्याच्या त्रुटी आल्या.", + // "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors", "collection.edit.item-mapper.notifications.unmap.error.head": "मॅपिंग काढण्याच्या त्रुटी", + // "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} आयटम्सच्या मॅपिंग काढण्याचे यशस्वी झाले.", + // "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed", "collection.edit.item-mapper.notifications.unmap.success.head": "मॅपिंग काढणे पूर्ण झाले", + // "collection.edit.item-mapper.remove": "Remove selected item mappings", "collection.edit.item-mapper.remove": "निवडलेले आयटम मॅपिंग काढा", + // "collection.edit.item-mapper.search-form.placeholder": "Search items...", "collection.edit.item-mapper.search-form.placeholder": "आयटम शोधा...", + // "collection.edit.item-mapper.tabs.browse": "Browse mapped items", "collection.edit.item-mapper.tabs.browse": "मॅप केलेले आयटम ब्राउझ करा", + // "collection.edit.item-mapper.tabs.map": "Map new items", "collection.edit.item-mapper.tabs.map": "नवीन आयटम मॅप करा", + // "collection.edit.logo.delete.title": "Delete logo", "collection.edit.logo.delete.title": "लोगो हटवा", + // "collection.edit.logo.delete-undo.title": "Undo delete", "collection.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", + // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "संग्रह लोगो", + // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", "collection.edit.logo.notifications.add.error": "संग्रह लोगो अपलोड करण्यात अयशस्वी. कृपया पुन्हा प्रयत्न करण्यापूर्वी सामग्री सत्यापित करा.", + // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", "collection.edit.logo.notifications.add.success": "संग्रह लोगो अपलोड यशस्वी.", + // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", "collection.edit.logo.notifications.delete.success.title": "लोगो हटवला", + // "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo", "collection.edit.logo.notifications.delete.success.content": "संग्रहाचा लोगो यशस्वीरित्या हटवला", + // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "लोगो हटवताना त्रुटी", + // "collection.edit.logo.upload": "Drop a collection logo to upload", "collection.edit.logo.upload": "अपलोड करण्यासाठी संग्रह लोगो ड्रॉप करा", + // "collection.edit.notifications.success": "Successfully edited the collection", "collection.edit.notifications.success": "संग्रह यशस्वीरित्या संपादित केला", + // "collection.edit.return": "Back", "collection.edit.return": "मागे", + // "collection.edit.tabs.access-control.head": "Access Control", "collection.edit.tabs.access-control.head": "प्रवेश नियंत्रण", + // "collection.edit.tabs.access-control.title": "Collection Edit - Access Control", "collection.edit.tabs.access-control.title": "संग्रह संपादन - प्रवेश नियंत्रण", + // "collection.edit.tabs.curate.head": "Curate", "collection.edit.tabs.curate.head": "व्यवस्थित करा", + // "collection.edit.tabs.curate.title": "Collection Edit - Curate", "collection.edit.tabs.curate.title": "संग्रह संपादन - व्यवस्थित करा", + // "collection.edit.tabs.authorizations.head": "Authorizations", "collection.edit.tabs.authorizations.head": "प्राधिकरणे", + // "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations", "collection.edit.tabs.authorizations.title": "संग्रह संपादन - प्राधिकरणे", + // "collection.edit.item.authorizations.load-bundle-button": "Load more bundles", "collection.edit.item.authorizations.load-bundle-button": "अधिक बंडल लोड करा", + // "collection.edit.item.authorizations.load-more-button": "Load more", "collection.edit.item.authorizations.load-more-button": "अधिक लोड करा", + // "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle", "collection.edit.item.authorizations.show-bitstreams-button": "बंडलसाठी बिटस्ट्रीम धोरणे दाखवा", + // "collection.edit.tabs.metadata.head": "Edit Metadata", "collection.edit.tabs.metadata.head": "मेटाडेटा संपादित करा", + // "collection.edit.tabs.metadata.title": "Collection Edit - Metadata", "collection.edit.tabs.metadata.title": "संग्रह संपादन - मेटाडेटा", + // "collection.edit.tabs.roles.head": "Assign Roles", "collection.edit.tabs.roles.head": "भूमिका नियुक्त करा", + // "collection.edit.tabs.roles.title": "Collection Edit - Roles", "collection.edit.tabs.roles.title": "संग्रह संपादन - भूमिका", + // "collection.edit.tabs.source.external": "This collection harvests its content from an external source", "collection.edit.tabs.source.external": "हा संग्रह त्याच्या सामग्रीला बाह्य स्रोतातून गोळा करतो", + // "collection.edit.tabs.source.form.errors.oaiSource.required": "You must provide a set id of the target collection.", "collection.edit.tabs.source.form.errors.oaiSource.required": "आपल्याला लक्ष्य संग्रहाचा सेट आयडी प्रदान करणे आवश्यक आहे.", + // "collection.edit.tabs.source.form.harvestType": "Content being harvested", "collection.edit.tabs.source.form.harvestType": "सामग्री गोळा केली जात आहे", + // "collection.edit.tabs.source.form.head": "Configure an external source", "collection.edit.tabs.source.form.head": "बाह्य स्रोत कॉन्फिगर करा", + // "collection.edit.tabs.source.form.metadataConfigId": "Metadata Format", "collection.edit.tabs.source.form.metadataConfigId": "मेटाडेटा स्वरूप", + // "collection.edit.tabs.source.form.oaiSetId": "OAI specific set id", "collection.edit.tabs.source.form.oaiSetId": "OAI विशिष्ट सेट आयडी", + // "collection.edit.tabs.source.form.oaiSource": "OAI Provider", "collection.edit.tabs.source.form.oaiSource": "OAI प्रदाता", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Harvest metadata and bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "मेटाडेटा आणि बिटस्ट्रीम्स गोळा करा (ORE समर्थन आवश्यक आहे)", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Harvest metadata and references to bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "मेटाडेटा आणि बिटस्ट्रीम्सच्या संदर्भांना गोळा करा (ORE समर्थन आवश्यक आहे)", + // "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Harvest metadata only", "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "फक्त मेटाडेटा गोळा करा", + // "collection.edit.tabs.source.head": "Content Source", "collection.edit.tabs.source.head": "सामग्री स्रोत", + // "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "collection.edit.tabs.source.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", + // "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded", "collection.edit.tabs.source.notifications.discarded.title": "बदल रद्द केले", + // "collection.edit.tabs.source.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "collection.edit.tabs.source.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", + // "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid", "collection.edit.tabs.source.notifications.invalid.title": "मेटाडेटा अवैध", + // "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.", "collection.edit.tabs.source.notifications.saved.content": "या संग्रहाच्या सामग्री स्रोतासाठी आपले बदल जतन केले गेले.", + // "collection.edit.tabs.source.notifications.saved.title": "Content Source saved", "collection.edit.tabs.source.notifications.saved.title": "सामग्री स्रोत जतन केले", + // "collection.edit.tabs.source.title": "Collection Edit - Content Source", "collection.edit.tabs.source.title": "संग्रह संपादन - सामग्री स्रोत", + // "collection.edit.template.add-button": "Add", "collection.edit.template.add-button": "जोडा", + // "collection.edit.template.breadcrumbs": "Item template", "collection.edit.template.breadcrumbs": "आयटम टेम्पलेट", + // "collection.edit.template.cancel": "Cancel", "collection.edit.template.cancel": "रद्द करा", + // "collection.edit.template.delete-button": "Delete", "collection.edit.template.delete-button": "हटवा", + // "collection.edit.template.edit-button": "Edit", "collection.edit.template.edit-button": "संपादित करा", + // "collection.edit.template.error": "An error occurred retrieving the template item", "collection.edit.template.error": "टेम्पलेट आयटम पुनर्प्राप्त करताना त्रुटी आली", + // "collection.edit.template.head": "Edit Template Item for Collection \"{{ collection }}\"", "collection.edit.template.head": "संग्रहासाठी टेम्पलेट आयटम संपादित करा \"{{ collection }}\"", + // "collection.edit.template.label": "Template item", "collection.edit.template.label": "टेम्पलेट आयटम", + // "collection.edit.template.loading": "Loading template item...", "collection.edit.template.loading": "टेम्पलेट आयटम लोड करत आहे...", + // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "आयटम टेम्पलेट हटवण्यात अयशस्वी", + // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", "collection.edit.template.notifications.delete.success": "आयटम टेम्पलेट यशस्वीरित्या हटवले", + // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "टेम्पलेट आयटम संपादित करा", + // "collection.form.abstract": "Short Description", "collection.form.abstract": "संक्षिप्त वर्णन", + // "collection.form.description": "Introductory text (HTML)", "collection.form.description": "परिचयात्मक मजकूर (HTML)", + // "collection.form.errors.title.required": "Please enter a collection name", "collection.form.errors.title.required": "कृपया संग्रहाचे नाव प्रविष्ट करा", + // "collection.form.license": "License", "collection.form.license": "परवाना", + // "collection.form.provenance": "Provenance", "collection.form.provenance": "मूळ", + // "collection.form.rights": "Copyright text (HTML)", "collection.form.rights": "कॉपीराइट मजकूर (HTML)", + // "collection.form.tableofcontents": "News (HTML)", "collection.form.tableofcontents": "बातम्या (HTML)", + // "collection.form.title": "Name", "collection.form.title": "नाव", + // "collection.form.entityType": "Entity Type", "collection.form.entityType": "घटक प्रकार", + // "collection.listelement.badge": "Collection", "collection.listelement.badge": "संग्रह", + // "collection.logo": "Collection logo", "collection.logo": "संग्रह लोगो", + // "collection.page.browse.search.head": "Search", "collection.page.browse.search.head": "शोधा", + // "collection.page.edit": "Edit this collection", "collection.page.edit": "हा संग्रह संपादित करा", + // "collection.page.handle": "Permanent URI for this collection", "collection.page.handle": "या संग्रहासाठी स्थायी URI", + // "collection.page.license": "License", "collection.page.license": "परवाना", + // "collection.page.news": "News", "collection.page.news": "बातम्या", + // "collection.page.options": "Options", "collection.page.options": "पर्याय", + // "collection.search.breadcrumbs": "Search", "collection.search.breadcrumbs": "शोधा", + // "collection.search.results.head": "Search Results", "collection.search.results.head": "शोध परिणाम", + // "collection.select.confirm": "Confirm selected", "collection.select.confirm": "निवडलेले पुष्टी करा", + // "collection.select.empty": "No collections to show", "collection.select.empty": "दाखवण्यासाठी कोणतेही संग्रह नाहीत", + // "collection.select.table.selected": "Selected collections", "collection.select.table.selected": "निवडलेले संग्रह", + // "collection.select.table.select": "Select collection", "collection.select.table.select": "संग्रह निवडा", + // "collection.select.table.deselect": "Deselect collection", "collection.select.table.deselect": "संग्रह निवड रद्द करा", + // "collection.select.table.title": "Title", "collection.select.table.title": "शीर्षक", + // "collection.source.controls.head": "Harvest Controls", "collection.source.controls.head": "गोळा नियंत्रण", + // "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings", "collection.source.controls.test.submit.error": "सेटिंग्जची चाचणी सुरू करताना काहीतरी चूक झाली", + // "collection.source.controls.test.failed": "The script to test the settings has failed", "collection.source.controls.test.failed": "सेटिंग्जची चाचणी स्क्रिप्ट अयशस्वी झाली", + // "collection.source.controls.test.completed": "The script to test the settings has successfully finished", "collection.source.controls.test.completed": "सेटिंग्जची चाचणी स्क्रिप्ट यशस्वीरित्या पूर्ण झाली", + // "collection.source.controls.test.submit": "Test configuration", "collection.source.controls.test.submit": "कॉन्फिगरेशन चाचणी करा", + // "collection.source.controls.test.running": "Testing configuration...", "collection.source.controls.test.running": "कॉन्फिगरेशन चाचणी करत आहे...", + // "collection.source.controls.import.submit.success": "The import has been successfully initiated", "collection.source.controls.import.submit.success": "आयात यशस्वीरित्या सुरू केली गेली", + // "collection.source.controls.import.submit.error": "Something went wrong with initiating the import", "collection.source.controls.import.submit.error": "आयात सुरू करताना काहीतरी चूक झाली", + // "collection.source.controls.import.submit": "Import now", "collection.source.controls.import.submit": "आता आयात करा", + // "collection.source.controls.import.running": "Importing...", "collection.source.controls.import.running": "आयात करत आहे...", + // "collection.source.controls.import.failed": "An error occurred during the import", "collection.source.controls.import.failed": "आयात करताना त्रुटी आली", + // "collection.source.controls.import.completed": "The import completed", "collection.source.controls.import.completed": "आयात पूर्ण झाली", + // "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated", "collection.source.controls.reset.submit.success": "रीसेट आणि पुनरायात यशस्वीरित्या सुरू केली गेली", + // "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport", "collection.source.controls.reset.submit.error": "रीसेट आणि पुनरायात सुरू करताना काहीतरी चूक झाली", + // "collection.source.controls.reset.failed": "An error occurred during the reset and reimport", "collection.source.controls.reset.failed": "रीसेट आणि पुनरायात करताना त्रुटी आली", + // "collection.source.controls.reset.completed": "The reset and reimport completed", "collection.source.controls.reset.completed": "रीसेट आणि पुनरायात पूर्ण झाली", + // "collection.source.controls.reset.submit": "Reset and reimport", "collection.source.controls.reset.submit": "रीसेट आणि पुनरायात", + // "collection.source.controls.reset.running": "Resetting and reimporting...", "collection.source.controls.reset.running": "रीसेट आणि पुनरायात करत आहे...", - "collection.source.controls.harvest.status": "गोळा स्थिती:", + // "collection.source.controls.harvest.status": "Harvest status:", + // TODO New key - Add a translation + "collection.source.controls.harvest.status": "Harvest status:", - "collection.source.controls.harvest.start": "गोळा सुरू होण्याची वेळ:", + // "collection.source.controls.harvest.start": "Harvest start time:", + // TODO New key - Add a translation + "collection.source.controls.harvest.start": "Harvest start time:", - "collection.source.controls.harvest.last": "शेवटचा वेळ गोळा केला:", + // "collection.source.controls.harvest.last": "Last time harvested:", + // TODO New key - Add a translation + "collection.source.controls.harvest.last": "Last time harvested:", - "collection.source.controls.harvest.message": "गोळा माहिती:", + // "collection.source.controls.harvest.message": "Harvest info:", + // TODO New key - Add a translation + "collection.source.controls.harvest.message": "Harvest info:", + // "collection.source.controls.harvest.no-information": "N/A", "collection.source.controls.harvest.no-information": "N/A", + // "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.", "collection.source.update.notifications.error.content": "प्रदान केलेल्या सेटिंग्जची चाचणी केली गेली आणि ती कार्यरत नाहीत.", + // "collection.source.update.notifications.error.title": "Server Error", "collection.source.update.notifications.error.title": "सर्व्हर त्रुटी", + // "communityList.breadcrumbs": "Community List", "communityList.breadcrumbs": "समुदाय सूची", + // "communityList.tabTitle": "Community List", "communityList.tabTitle": "समुदाय सूची", + // "communityList.title": "List of Communities", "communityList.title": "समुदायांची सूची", + // "communityList.showMore": "Show More", "communityList.showMore": "अधिक दाखवा", + // "communityList.expand": "Expand {{ name }}", "communityList.expand": "विस्तृत करा {{ name }}", + // "communityList.collapse": "Collapse {{ name }}", "communityList.collapse": "संकुचित करा {{ name }}", + // "community.browse.logo": "Browse for a community logo", "community.browse.logo": "समुदाय लोगो ब्राउझ करा", + // "community.subcoms-cols.breadcrumbs": "Subcommunities and Collections", "community.subcoms-cols.breadcrumbs": "उपसमुदाय आणि संग्रह", + // "community.create.breadcrumbs": "Create Community", "community.create.breadcrumbs": "समुदाय तयार करा", + // "community.create.head": "Create a Community", "community.create.head": "समुदाय तयार करा", + // "community.create.notifications.success": "Successfully created the community", "community.create.notifications.success": "समुदाय यशस्वीरित्या तयार केला", + // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", "community.create.sub-head": "समुदायासाठी उपसमुदाय तयार करा {{ parent }}", - "community.curate.header": "समुदाय व्यवस्थापित करा: {{community}}", + // "community.curate.header": "Curate Community: {{community}}", + // TODO New key - Add a translation + "community.curate.header": "Curate Community: {{community}}", + // "community.delete.cancel": "Cancel", "community.delete.cancel": "रद्द करा", + // "community.delete.confirm": "Confirm", "community.delete.confirm": "पुष्टी करा", + // "community.delete.processing": "Deleting...", "community.delete.processing": "हटवत आहे...", + // "community.delete.head": "Delete Community", "community.delete.head": "समुदाय हटवा", + // "community.delete.notification.fail": "Community could not be deleted", "community.delete.notification.fail": "समुदाय हटवता आला नाही", + // "community.delete.notification.success": "Successfully deleted community", "community.delete.notification.success": "समुदाय यशस्वीरित्या हटवला", + // "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"", "community.delete.text": "तुम्हाला खात्री आहे की तुम्ही समुदाय हटवू इच्छिता \"{{ dso }}\"", + // "community.edit.delete": "Delete this community", "community.edit.delete": "हा समुदाय हटवा", + // "community.edit.head": "Edit Community", "community.edit.head": "समुदाय संपादन करा", + // "community.edit.breadcrumbs": "Edit Community", "community.edit.breadcrumbs": "समुदाय संपादन करा", + // "community.edit.logo.delete.title": "Delete logo", "community.edit.logo.delete.title": "लोगो हटवा", + // "community-collection.edit.logo.delete.title": "Confirm deletion", "community-collection.edit.logo.delete.title": "हटवण्याची पुष्टी करा", + // "community.edit.logo.delete-undo.title": "Undo delete", "community.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", + // "community-collection.edit.logo.delete-undo.title": "Undo delete", "community-collection.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", + // "community.edit.logo.label": "Community logo", "community.edit.logo.label": "समुदाय लोगो", + // "community.edit.logo.notifications.add.error": "Uploading community logo failed. Please verify the content before retrying.", "community.edit.logo.notifications.add.error": "समुदाय लोगो अपलोड करण्यात अयशस्वी. कृपया पुन्हा प्रयत्न करण्यापूर्वी सामग्री सत्यापित करा.", + // "community.edit.logo.notifications.add.success": "Upload community logo successful.", "community.edit.logo.notifications.add.success": "समुदाय लोगो अपलोड यशस्वी.", + // "community.edit.logo.notifications.delete.success.title": "Logo deleted", "community.edit.logo.notifications.delete.success.title": "लोगो हटवला", + // "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo", "community.edit.logo.notifications.delete.success.content": "समुदायाचा लोगो यशस्वीरित्या हटवला", + // "community.edit.logo.notifications.delete.error.title": "Error deleting logo", "community.edit.logo.notifications.delete.error.title": "लोगो हटवताना त्रुटी", + // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "अपलोड करण्यासाठी समुदाय लोगो ड्रॉप करा", + // "community.edit.notifications.success": "Successfully edited the community", "community.edit.notifications.success": "समुदाय यशस्वीरित्या संपादित केला", + // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", "community.edit.notifications.unauthorized": "आपल्याला हा बदल करण्याचे विशेषाधिकार नाहीत", + // "community.edit.notifications.error": "An error occurred while editing the community", "community.edit.notifications.error": "समुदाय संपादित करताना त्रुटी आली", + // "community.edit.return": "Back", "community.edit.return": "मागे", + // "community.edit.tabs.curate.head": "Curate", "community.edit.tabs.curate.head": "व्यवस्थित करा", + // "community.edit.tabs.curate.title": "Community Edit - Curate", "community.edit.tabs.curate.title": "समुदाय संपादन - व्यवस्थित करा", + // "community.edit.tabs.access-control.head": "Access Control", "community.edit.tabs.access-control.head": "प्रवेश नियंत्रण", + // "community.edit.tabs.access-control.title": "Community Edit - Access Control", "community.edit.tabs.access-control.title": "समुदाय संपादन - प्रवेश नियंत्रण", + // "community.edit.tabs.metadata.head": "Edit Metadata", "community.edit.tabs.metadata.head": "मेटाडेटा संपादित करा", + // "community.edit.tabs.metadata.title": "Community Edit - Metadata", "community.edit.tabs.metadata.title": "समुदाय संपादन - मेटाडेटा", + // "community.edit.tabs.roles.head": "Assign Roles", "community.edit.tabs.roles.head": "भूमिका नियुक्त करा", + // "community.edit.tabs.roles.title": "Community Edit - Roles", "community.edit.tabs.roles.title": "Community Edit - Roles", + // "community.edit.tabs.authorizations.head": "Authorizations", "community.edit.tabs.authorizations.head": "अधिकृतता", + // "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", + // "community.listelement.badge": "Community", "community.listelement.badge": "Community", + // "community.logo": "Community logo", "community.logo": "Community लोगो", + // "comcol-role.edit.no-group": "None", "comcol-role.edit.no-group": "काहीही नाही", + // "comcol-role.edit.create": "Create", "comcol-role.edit.create": "तयार करा", + // "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role", "comcol-role.edit.create.error.title": "'{{ role }}' भूमिकेसाठी गट तयार करण्यात अयशस्वी", + // "comcol-role.edit.restrict": "Restrict", "comcol-role.edit.restrict": "प्रतिबंधित करा", + // "comcol-role.edit.delete": "Delete", "comcol-role.edit.delete": "हटवा", + // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "'{{ role }}' भूमिकेचा गट हटवण्यात अयशस्वी", + // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + + // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + + // "comcol-role.edit.delete.modal.cancel": "Cancel", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.cancel": "Cancel", + + // "comcol-role.edit.delete.modal.confirm": "Delete", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.confirm": "Delete", + + // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "प्रशासक", + // "comcol-role.edit.collection-admin.name": "Administrators", "comcol-role.edit.collection-admin.name": "प्रशासक", + // "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).", "comcol-role.edit.community-admin.description": "Community administrators उप-समुदाय किंवा संग्रह तयार करू शकतात आणि त्या उप-समुदाय किंवा संग्रहांचे व्यवस्थापन किंवा व्यवस्थापन नियुक्त करू शकतात. याव्यतिरिक्त, ते कोण उप-संग्रहांना आयटम सबमिट करू शकतात, सबमिशन नंतर आयटम मेटाडेटा संपादित करू शकतात आणि इतर संग्रहांमधून विद्यमान आयटम जोडू (नकाशा) करू शकतात (अधिकृततेच्या अधीन).", + // "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).", "comcol-role.edit.collection-admin.description": "Collection administrators ठरवतात की कोण संग्रहात आयटम सबमिट करू शकतात, सबमिशन नंतर आयटम मेटाडेटा संपादित करू शकतात आणि या संग्रहात इतर संग्रहांमधून विद्यमान आयटम जोडू (नकाशा) करू शकतात (त्या संग्रहासाठी अधिकृततेच्या अधीन).", + // "comcol-role.edit.submitters.name": "Submitters", "comcol-role.edit.submitters.name": "सबमिटर्स", + // "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.", "comcol-role.edit.submitters.description": "E-People आणि गट ज्यांना या संग्रहात नवीन आयटम सबमिट करण्याची परवानगी आहे.", + // "comcol-role.edit.item_read.name": "Default item read access", "comcol-role.edit.item_read.name": "डीफॉल्ट आयटम वाचन प्रवेश", + // "comcol-role.edit.item_read.description": "E-People and Groups that can read new items submitted to this collection. Changes to this role are not retroactive. Existing items in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.item_read.description": "E-People आणि गट जे या संग्रहात सबमिट केलेले नवीन आयटम वाचू शकतात. या भूमिकेतील बदल मागील काळात लागू होत नाहीत. प्रणालीतील विद्यमान आयटम अजूनही त्यावेळी वाचन प्रवेश असलेल्या लोकांना पाहता येतील.", + // "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.", "comcol-role.edit.item_read.anonymous-group": "आगामी आयटमसाठी डीफॉल्ट वाचन सध्या अनामिक सेट केले आहे.", + // "comcol-role.edit.bitstream_read.name": "Default bitstream read access", "comcol-role.edit.bitstream_read.name": "डीफॉल्ट बिटस्ट्रीम वाचन प्रवेश", + // "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.bitstream_read.description": "E-People आणि गट जे या संग्रहात सबमिट केलेले नवीन बिटस्ट्रीम वाचू शकतात. या भूमिकेतील बदल मागील काळात लागू होत नाहीत. प्रणालीतील विद्यमान बिटस्ट्रीम अजूनही त्यावेळी वाचन प्रवेश असलेल्या लोकांना पाहता येतील.", + // "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.", "comcol-role.edit.bitstream_read.anonymous-group": "आगामी बिटस्ट्रीमसाठी डीफॉल्ट वाचन सध्या अनामिक सेट केले आहे.", + // "comcol-role.edit.editor.name": "Editors", "comcol-role.edit.editor.name": "संपादक", + // "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.", "comcol-role.edit.editor.description": "संपादक येणाऱ्या सबमिशनचे मेटाडेटा संपादित करू शकतात आणि नंतर त्यांना स्वीकारू किंवा नाकारू शकतात.", + // "comcol-role.edit.finaleditor.name": "Final editors", "comcol-role.edit.finaleditor.name": "अंतिम संपादक", + // "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.", "comcol-role.edit.finaleditor.description": "अंतिम संपादक येणाऱ्या सबमिशनचे मेटाडेटा संपादित करू शकतात, परंतु त्यांना नाकारू शकत नाहीत.", + // "comcol-role.edit.reviewer.name": "Reviewers", "comcol-role.edit.reviewer.name": "पुनरावलोकक", + // "comcol-role.edit.reviewer.description": "Reviewers are able to accept or reject incoming submissions. However, they are not able to edit the submission's metadata.", "comcol-role.edit.reviewer.description": "पुनरावलोकक येणाऱ्या सबमिशनला स्वीकारू किंवा नाकारू शकतात. तथापि, ते सबमिशनचे मेटाडेटा संपादित करू शकत नाहीत.", + // "comcol-role.edit.scorereviewers.name": "Score Reviewers", "comcol-role.edit.scorereviewers.name": "स्कोअर पुनरावलोकक", + // "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.", "comcol-role.edit.scorereviewers.description": "पुनरावलोकक येणाऱ्या सबमिशनला स्कोअर देऊ शकतात, हे ठरवेल की सबमिशन नाकारले जाईल की नाही.", + // "community.form.abstract": "Short Description", "community.form.abstract": "संक्षिप्त वर्णन", + // "community.form.description": "Introductory text (HTML)", "community.form.description": "प्रस्तावना मजकूर (HTML)", + // "community.form.errors.title.required": "Please enter a community name", "community.form.errors.title.required": "कृपया समुदायाचे नाव प्रविष्ट करा", + // "community.form.rights": "Copyright text (HTML)", "community.form.rights": "कॉपीराइट मजकूर (HTML)", + // "community.form.tableofcontents": "News (HTML)", "community.form.tableofcontents": "बातम्या (HTML)", + // "community.form.title": "Name", "community.form.title": "नाव", + // "community.page.edit": "Edit this community", "community.page.edit": "हा समुदाय संपादित करा", + // "community.page.handle": "Permanent URI for this community", "community.page.handle": "या समुदायासाठी स्थायी URI", + // "community.page.license": "License", "community.page.license": "परवाना", + // "community.page.news": "News", "community.page.news": "बातम्या", + // "community.page.options": "Options", "community.page.options": "पर्याय", + // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "उपसमुदाय आणि संग्रह", + // "community.search.breadcrumbs": "Search", "community.search.breadcrumbs": "शोधा", + // "community.search.results.head": "Search Results", "community.search.results.head": "शोध परिणाम", + // "community.sub-collection-list.head": "Collections in this community", "community.sub-collection-list.head": "या समुदायातील संग्रह", + // "community.sub-community-list.head": "Communities in this Community", "community.sub-community-list.head": "या समुदायातील समुदाय", + // "cookies.consent.accept-all": "Accept all", "cookies.consent.accept-all": "सर्व स्वीकारा", + // "cookies.consent.accept-selected": "Accept selected", "cookies.consent.accept-selected": "निवडलेले स्वीकारा", + // "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)", "cookies.consent.app.opt-out.description": "हे अॅप डीफॉल्टने लोड केले जाते (परंतु आपण बाहेर पडू शकता)", + // "cookies.consent.app.opt-out.title": "(opt-out)", "cookies.consent.app.opt-out.title": "(opt-out)", + // "cookies.consent.app.purpose": "purpose", "cookies.consent.app.purpose": "उद्देश", + // "cookies.consent.app.required.description": "This application is always required", "cookies.consent.app.required.description": "हे अॅप्लिकेशन नेहमी आवश्यक आहे", + // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(नेहमी आवश्यक)", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "आपल्या शेवटच्या भेटीनंतर बदल झाले आहेत, कृपया आपली संमती अद्यतनित करा.", + // "cookies.consent.close": "Close", "cookies.consent.close": "बंद करा", + // "cookies.consent.decline": "Decline", "cookies.consent.decline": "नकार", + // "cookies.consent.decline-all": "Decline all", "cookies.consent.decline-all": "सर्व नकारा", + // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "ठीक आहे", + // "cookies.consent.save": "Save", "cookies.consent.save": "जतन करा", - "cookies.consent.content-notice.description": "आम्ही आपली वैयक्तिक माहिती खालील उद्देशांसाठी गोळा आणि प्रक्रिया करतो: {purposes}", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + // TODO New key - Add a translation + "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "सानुकूलित करा", + // "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.", "cookies.consent.content-modal.description": "येथे आपण आपल्याबद्दल गोळा केलेली माहिती पाहू आणि सानुकूलित करू शकता.", + // "cookies.consent.content-modal.privacy-policy.name": "privacy policy", "cookies.consent.content-modal.privacy-policy.name": "गोपनीयता धोरण", + // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "अधिक जाणून घेण्यासाठी, कृपया आमचे {privacyPolicy} वाचा.", + // "cookies.consent.content-modal.no-privacy-policy.text": "", "cookies.consent.content-modal.no-privacy-policy.text": "", + // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "आम्ही गोळा केलेली माहिती", + // "cookies.consent.app.title.accessibility": "Accessibility Settings", + // TODO New key - Add a translation + "cookies.consent.app.title.accessibility": "Accessibility Settings", + + // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + // TODO New key - Add a translation + "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "प्रमाणीकरण", + // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "आपल्याला साइन इन करण्यासाठी आवश्यक", + // "cookies.consent.app.title.correlation-id": "Correlation ID", + // TODO New key - Add a translation + "cookies.consent.app.title.correlation-id": "Correlation ID", + + // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + // TODO New key - Add a translation + "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + + // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "प्राधान्ये", + // "cookies.consent.app.description.preferences": "Required for saving your preferences", "cookies.consent.app.description.preferences": "आपली प्राधान्ये जतन करण्यासाठी आवश्यक", + // "cookies.consent.app.title.acknowledgement": "Acknowledgement", "cookies.consent.app.title.acknowledgement": "स्वीकृती", + // "cookies.consent.app.description.acknowledgement": "Required for saving your acknowledgements and consents", "cookies.consent.app.description.acknowledgement": "आपल्या स्वीकृती आणि संमती जतन करण्यासाठी आवश्यक", + // "cookies.consent.app.title.google-analytics": "Google Analytics", "cookies.consent.app.title.google-analytics": "Google Analytics", + // "cookies.consent.app.description.google-analytics": "Allows us to track statistical data", "cookies.consent.app.description.google-analytics": "आम्हाला सांख्यिकी डेटा ट्रॅक करण्याची परवानगी देते", + // "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", + // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "नोंदणी आणि पासवर्ड पुनर्प्राप्ती दरम्यान आम्ही google reCAPTCHA सेवा वापरतो", + // "cookies.consent.app.title.matomo": "Matomo", "cookies.consent.app.title.matomo": "Matomo", + // "cookies.consent.app.description.matomo": "Allows us to track statistical data", "cookies.consent.app.description.matomo": "आम्हाला सांख्यिकी डेटा ट्रॅक करण्याची परवानगी देते", + // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "कार्यात्मक", + // "cookies.consent.purpose.statistical": "Statistical", "cookies.consent.purpose.statistical": "सांख्यिकी", + // "cookies.consent.purpose.registration-password-recovery": "Registration and Password recovery", "cookies.consent.purpose.registration-password-recovery": "नोंदणी आणि पासवर्ड पुनर्प्राप्ती", + // "cookies.consent.purpose.sharing": "Sharing", "cookies.consent.purpose.sharing": "शेअरिंग", + // "curation-task.task.citationpage.label": "Generate Citation Page", "curation-task.task.citationpage.label": "उद्धरण पृष्ठ तयार करा", + // "curation-task.task.checklinks.label": "Check Links in Metadata", "curation-task.task.checklinks.label": "मेटाडेटामधील दुवे तपासा", + // "curation-task.task.noop.label": "NOOP", "curation-task.task.noop.label": "NOOP", + // "curation-task.task.profileformats.label": "Profile Bitstream Formats", "curation-task.task.profileformats.label": "प्रोफाइल बिटस्ट्रीम स्वरूप", + // "curation-task.task.requiredmetadata.label": "Check for Required Metadata", "curation-task.task.requiredmetadata.label": "आवश्यक मेटाडेटा तपासा", + // "curation-task.task.translate.label": "Microsoft Translator", "curation-task.task.translate.label": "Microsoft Translator", + // "curation-task.task.vscan.label": "Virus Scan", "curation-task.task.vscan.label": "व्हायरस स्कॅन", + // "curation-task.task.registerdoi.label": "Register DOI", "curation-task.task.registerdoi.label": "DOI नोंदणी करा", - "curation.form.task-select.label": "कार्य:", + // "curation.form.task-select.label": "Task:", + // TODO New key - Add a translation + "curation.form.task-select.label": "Task:", + // "curation.form.submit": "Start", "curation.form.submit": "प्रारंभ करा", + // "curation.form.submit.success.head": "The curation task has been started successfully", "curation.form.submit.success.head": "क्युरेशन कार्य यशस्वीरित्या सुरू केले गेले आहे", + // "curation.form.submit.success.content": "You will be redirected to the corresponding process page.", "curation.form.submit.success.content": "आपण संबंधित प्रक्रिया पृष्ठावर पुनर्निर्देशित केले जाल.", + // "curation.form.submit.error.head": "Running the curation task failed", "curation.form.submit.error.head": "क्युरेशन कार्य चालवण्यात अयशस्वी", + // "curation.form.submit.error.content": "An error occurred when trying to start the curation task.", "curation.form.submit.error.content": "क्युरेशन कार्य सुरू करण्याचा प्रयत्न करताना एक त्रुटी आली.", + // "curation.form.submit.error.invalid-handle": "Couldn't determine the handle for this object", "curation.form.submit.error.invalid-handle": "या वस्तूसाठी हँडल ठरवू शकले नाही", - "curation.form.handle.label": "हँडल:", + // "curation.form.handle.label": "Handle:", + // TODO New key - Add a translation + "curation.form.handle.label": "Handle:", - "curation.form.handle.hint": "सूचना: संपूर्ण साइटवर कार्य चालवण्यासाठी [आपले-हँडल-प्रिफिक्स]/0 प्रविष्ट करा (सर्व कार्ये ही क्षमता समर्थन करू शकत नाहीत)", + // "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", + // TODO New key - Add a translation + "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", - "deny-request-copy.email.message": "प्रिय {{ recipientName }},\nआपल्या विनंतीच्या प्रतिसादात मला आपल्याला कळविण्यात खेद आहे की आपण विनंती केलेल्या फाइल(स)ची प्रत पाठवणे शक्य नाही, दस्तऐवज: \"{{ itemUrl }}\" ({{ itemName }}), ज्याचा मी लेखक आहे.\n\nसर्वोत्तम शुभेच्छा,\n{{ authorName }} <{{ authorEmail }}>", + // "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + // TODO New key - Add a translation + "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + // "deny-request-copy.email.subject": "Request copy of document", "deny-request-copy.email.subject": "दस्तऐवजाची प्रत विनंती", + // "deny-request-copy.error": "An error occurred", "deny-request-copy.error": "एक त्रुटी आली", + // "deny-request-copy.header": "Deny document copy request", "deny-request-copy.header": "दस्तऐवज प्रत विनंती नकारा", + // "deny-request-copy.intro": "This message will be sent to the applicant of the request", "deny-request-copy.intro": "ही संदेश विनंतीच्या अर्जदाराला पाठवली जाईल", + // "deny-request-copy.success": "Successfully denied item request", "deny-request-copy.success": "आयटम विनंती यशस्वीरित्या नाकारली", + // "dynamic-list.load-more": "Load more", "dynamic-list.load-more": "अधिक लोड करा", + // "dropdown.clear": "Clear selection", "dropdown.clear": "निवड साफ करा", + // "dropdown.clear.tooltip": "Clear the selected option", "dropdown.clear.tooltip": "निवडलेला पर्याय साफ करा", + // "dso.name.untitled": "Untitled", "dso.name.untitled": "शीर्षक नसलेले", + // "dso.name.unnamed": "Unnamed", "dso.name.unnamed": "नाव नसलेले", + // "dso-selector.create.collection.head": "New collection", "dso-selector.create.collection.head": "नवीन संग्रह", + // "dso-selector.create.collection.sub-level": "Create a new collection in", "dso-selector.create.collection.sub-level": "मध्ये नवीन संग्रह तयार करा", + // "dso-selector.create.community.head": "New community", "dso-selector.create.community.head": "नवीन समुदाय", + // "dso-selector.create.community.or-divider": "or", "dso-selector.create.community.or-divider": "किंवा", + // "dso-selector.create.community.sub-level": "Create a new community in", "dso-selector.create.community.sub-level": "मध्ये नवीन समुदाय तयार करा", + // "dso-selector.create.community.top-level": "Create a new top-level community", "dso-selector.create.community.top-level": "नवीन शीर्ष-स्तरीय समुदाय तयार करा", + // "dso-selector.create.item.head": "New item", "dso-selector.create.item.head": "नवीन आयटम", + // "dso-selector.create.item.sub-level": "Create a new item in", "dso-selector.create.item.sub-level": "मध्ये नवीन आयटम तयार करा", + // "dso-selector.create.submission.head": "New submission", "dso-selector.create.submission.head": "नवीन सबमिशन", + // "dso-selector.edit.collection.head": "Edit collection", "dso-selector.edit.collection.head": "संग्रह संपादित करा", + // "dso-selector.edit.community.head": "Edit community", "dso-selector.edit.community.head": "समुदाय संपादित करा", + // "dso-selector.edit.item.head": "Edit item", "dso-selector.edit.item.head": "आयटम संपादित करा", + // "dso-selector.error.title": "An error occurred searching for a {{ type }}", "dso-selector.error.title": "{{ type }} शोधताना एक त्रुटी आली", + // "dso-selector.export-metadata.dspaceobject.head": "Export metadata from", "dso-selector.export-metadata.dspaceobject.head": "मधून मेटाडेटा निर्यात करा", + // "dso-selector.export-batch.dspaceobject.head": "Export Batch (ZIP) from", "dso-selector.export-batch.dspaceobject.head": "मधून बॅच (ZIP) निर्यात करा", + // "dso-selector.import-batch.dspaceobject.head": "Import batch from", "dso-selector.import-batch.dspaceobject.head": "मधून बॅच आयात करा", + // "dso-selector.no-results": "No {{ type }} found", "dso-selector.no-results": "कोणतेही {{ type }} सापडले नाही", + // "dso-selector.placeholder": "Search for a {{ type }}", "dso-selector.placeholder": "{{ type }} साठी शोधा", + // "dso-selector.placeholder.type.community": "community", "dso-selector.placeholder.type.community": "समुदाय", + // "dso-selector.placeholder.type.collection": "collection", "dso-selector.placeholder.type.collection": "संग्रह", + // "dso-selector.placeholder.type.item": "item", "dso-selector.placeholder.type.item": "आयटम", + // "dso-selector.select.collection.head": "Select a collection", "dso-selector.select.collection.head": "संग्रह निवडा", + // "dso-selector.set-scope.community.head": "Select a search scope", "dso-selector.set-scope.community.head": "शोधाचा व्याप्ती निवडा", + // "dso-selector.set-scope.community.button": "Search all of DSpace", "dso-selector.set-scope.community.button": "संपूर्ण DSpace शोधा", + // "dso-selector.set-scope.community.or-divider": "or", "dso-selector.set-scope.community.or-divider": "किंवा", + // "dso-selector.set-scope.community.input-header": "Search for a community or collection", "dso-selector.set-scope.community.input-header": "समुदाय किंवा संग्रहासाठी शोधा", + // "dso-selector.claim.item.head": "Profile tips", "dso-selector.claim.item.head": "प्रोफाइल टिपा", + // "dso-selector.claim.item.body": "These are existing profiles that may be related to you. If you recognize yourself in one of these profiles, select it and on the detail page, among the options, choose to claim it. Otherwise you can create a new profile from scratch using the button below.", "dso-selector.claim.item.body": "हे विद्यमान प्रोफाइल आहेत जे आपल्याशी संबंधित असू शकतात. आपण या प्रोफाइलपैकी एकामध्ये स्वतःला ओळखत असल्यास, ते निवडा आणि तपशील पृष्ठावर, पर्यायांमध्ये, ते दावा करण्यासाठी निवडा. अन्यथा आपण खालील बटण वापरून नवीन प्रोफाइल तयार करू शकता.", + // "dso-selector.claim.item.not-mine-label": "None of these are mine", "dso-selector.claim.item.not-mine-label": "हे माझे नाहीत", + // "dso-selector.claim.item.create-from-scratch": "Create a new one", "dso-selector.claim.item.create-from-scratch": "नवीन एक तयार करा", + // "dso-selector.results-could-not-be-retrieved": "Something went wrong, please refresh again ↻", "dso-selector.results-could-not-be-retrieved": "काहीतरी चुकले, कृपया पुन्हा ताजेतवाने करा ↻", + // "supervision-group-selector.header": "Supervision Group Selector", "supervision-group-selector.header": "Supervision Group Selector", + // "supervision-group-selector.select.type-of-order.label": "Select a type of Order", "supervision-group-selector.select.type-of-order.label": "ऑर्डरचा प्रकार निवडा", + // "supervision-group-selector.select.type-of-order.option.none": "NONE", "supervision-group-selector.select.type-of-order.option.none": "काहीही नाही", + // "supervision-group-selector.select.type-of-order.option.editor": "EDITOR", "supervision-group-selector.select.type-of-order.option.editor": "संपादक", + // "supervision-group-selector.select.type-of-order.option.observer": "OBSERVER", "supervision-group-selector.select.type-of-order.option.observer": "निरीक्षक", + // "supervision-group-selector.select.group.label": "Select a Group", "supervision-group-selector.select.group.label": "गट निवडा", + // "supervision-group-selector.button.cancel": "Cancel", "supervision-group-selector.button.cancel": "रद्द करा", + // "supervision-group-selector.button.save": "Save", "supervision-group-selector.button.save": "जतन करा", + // "supervision-group-selector.select.type-of-order.error": "Please select a type of order", "supervision-group-selector.select.type-of-order.error": "कृपया ऑर्डरचा प्रकार निवडा", + // "supervision-group-selector.select.group.error": "Please select a group", "supervision-group-selector.select.group.error": "कृपया गट निवडा", + // "supervision-group-selector.notification.create.success.title": "Successfully created supervision order for group {{ name }}", "supervision-group-selector.notification.create.success.title": "गट {{ name }} साठी यशस्वीरित्या सुपरविजन ऑर्डर तयार केली", + // "supervision-group-selector.notification.create.failure.title": "Error", "supervision-group-selector.notification.create.failure.title": "त्रुटी", + // "supervision-group-selector.notification.create.already-existing": "A supervision order already exists on this item for selected group", "supervision-group-selector.notification.create.already-existing": "निवडलेल्या गटासाठी या आयटमवर आधीच एक सुपरविजन ऑर्डर अस्तित्वात आहे", + // "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.header": "{{ dsoName }} साठी मेटाडेटा निर्यात करा", + // "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.info": "आपण {{ dsoName }} साठी मेटाडेटा निर्यात करू इच्छिता याची खात्री आहे का", + // "confirmation-modal.export-metadata.cancel": "Cancel", "confirmation-modal.export-metadata.cancel": "रद्द करा", + // "confirmation-modal.export-metadata.confirm": "Export", "confirmation-modal.export-metadata.confirm": "निर्यात करा", + // "confirmation-modal.export-batch.header": "Export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.header": "{{ dsoName }} साठी बॅच (ZIP) निर्यात करा", + // "confirmation-modal.export-batch.info": "Are you sure you want to export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.info": "आपण {{ dsoName }} साठी बॅच (ZIP) निर्यात करू इच्छिता याची खात्री आहे का", + // "confirmation-modal.export-batch.cancel": "Cancel", "confirmation-modal.export-batch.cancel": "रद्द करा", + // "confirmation-modal.export-batch.confirm": "Export", "confirmation-modal.export-batch.confirm": "निर्यात करा", + // "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.header": "EPerson \"{{ dsoName }}\" हटवा", + // "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.info": "आपण EPerson \"{{ dsoName }}\" हटवू इच्छिता याची खात्री आहे का", + // "confirmation-modal.delete-eperson.cancel": "Cancel", "confirmation-modal.delete-eperson.cancel": "रद्द करा", + // "confirmation-modal.delete-eperson.confirm": "Delete", "confirmation-modal.delete-eperson.confirm": "हटवा", + // "confirmation-modal.delete-community-collection-logo.info": "Are you sure you want to delete the logo?", "confirmation-modal.delete-community-collection-logo.info": "आपण लोगो हटवू इच्छिता याची खात्री आहे का?", + // "confirmation-modal.delete-profile.header": "Delete Profile", "confirmation-modal.delete-profile.header": "प्रोफाइल हटवा", + // "confirmation-modal.delete-profile.info": "Are you sure you want to delete your profile", "confirmation-modal.delete-profile.info": "आपण आपले प्रोफाइल हटवू इच्छिता याची खात्री आहे का", + // "confirmation-modal.delete-profile.cancel": "Cancel", "confirmation-modal.delete-profile.cancel": "रद्द करा", + // "confirmation-modal.delete-profile.confirm": "Delete", "confirmation-modal.delete-profile.confirm": "हटवा", + // "confirmation-modal.delete-subscription.header": "Delete Subscription", "confirmation-modal.delete-subscription.header": "सदस्यता हटवा", + // "confirmation-modal.delete-subscription.info": "Are you sure you want to delete subscription for \"{{ dsoName }}\"", "confirmation-modal.delete-subscription.info": "आपण \"{{ dsoName }}\" साठी सदस्यता हटवू इच्छिता याची खात्री आहे का", + // "confirmation-modal.delete-subscription.cancel": "Cancel", "confirmation-modal.delete-subscription.cancel": "रद्द करा", + // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "हटवा", + // "confirmation-modal.review-account-info.header": "Save the changes", "confirmation-modal.review-account-info.header": "बदल जतन करा", + // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", "confirmation-modal.review-account-info.info": "आपण आपल्या प्रोफाइलमध्ये बदल जतन करू इच्छिता याची खात्री आहे का", + // "confirmation-modal.review-account-info.cancel": "Cancel", "confirmation-modal.review-account-info.cancel": "रद्द करा", + // "confirmation-modal.review-account-info.confirm": "Confirm", "confirmation-modal.review-account-info.confirm": "पुष्टी करा", + // "confirmation-modal.review-account-info.save": "Save", "confirmation-modal.review-account-info.save": "जतन करा", + // "error.bitstream": "Error fetching bitstream", "error.bitstream": "बिटस्ट्रीम मिळवण्यात त्रुटी", + // "error.browse-by": "Error fetching items", "error.browse-by": "आयटम मिळवण्यात त्रुटी", + // "error.collection": "Error fetching collection", "error.collection": "संग्रह मिळवण्यात त्रुटी", + // "error.collections": "Error fetching collections", "error.collections": "संग्रह मिळवण्यात त्रुटी", + // "error.community": "Error fetching community", "error.community": "समुदाय मिळवण्यात त्रुटी", + // "error.identifier": "No item found for the identifier", "error.identifier": "ओळखकर्ता साठी कोणताही आयटम सापडला नाही", + // "error.default": "Error", "error.default": "त्रुटी", + // "error.item": "Error fetching item", "error.item": "आयटम मिळवण्यात त्रुटी", + // "error.items": "Error fetching items", "error.items": "आयटम मिळवण्यात त्रुटी", + // "error.objects": "Error fetching objects", "error.objects": "वस्तू मिळवण्यात त्रुटी", + // "error.recent-submissions": "Error fetching recent submissions", "error.recent-submissions": "अलीकडील सबमिशन मिळवण्यात त्रुटी", + // "error.profile-groups": "Error retrieving profile groups", "error.profile-groups": "प्रोफाइल गट मिळवण्यात त्रुटी", + // "error.search-results": "Error fetching search results", "error.search-results": "शोध परिणाम मिळवण्यात त्रुटी", - "error.invalid-search-query": "शोध क्वेरी वैध नाही. कृपया अधिक माहितीसाठी Solr query syntax सर्वोत्तम पद्धती तपासा.", + // "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + // TODO New key - Add a translation + "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + // "error.sub-collections": "Error fetching sub-collections", "error.sub-collections": "उप-संग्रह मिळवण्यात त्रुटी", + // "error.sub-communities": "Error fetching sub-communities", "error.sub-communities": "उप-समुदाय मिळवण्यात त्रुटी", - "error.submission.sections.init-form-error": "विभाग प्रारंभ करताना एक त्रुटी आली, कृपया आपल्या इनपुट-फॉर्म कॉन्फिगरेशन तपासा. तपशील खाली आहेत :

", + // "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + // TODO New key - Add a translation + "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "शीर्ष-स्तरीय समुदाय मिळवण्यात त्रुटी", - "error.validation.license.notgranted": "आपण आपले सबमिशन पूर्ण करण्यासाठी हा परवाना मंजूर करणे आवश्यक आहे. आपण सध्या हा परवाना मंजूर करण्यात अक्षम असल्यास आपण आपले कार्य जतन करू शकता आणि नंतर परत येऊ शकता किंवा सबमिशन काढून टाकू शकता.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "आपण आपले सबमिशन पूर्ण करण्यासाठी हा cclicense मंजूर करणे आवश्यक आहे. आपण सध्या हा cclicense मंजूर करण्यात अक्षम असल्यास, आपण आपले कार्य जतन करू शकता आणि नंतर परत येऊ शकता किंवा सबमिशन काढून टाकू शकता.", - "error.validation.pattern": "हे इनपुट वर्तमान पॅटर्नद्वारे प्रतिबंधित आहे: {{ pattern }}.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", + // TODO New key - Add a translation + "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", + + // "error.validation.filerequired": "The file upload is mandatory", "error.validation.filerequired": "फाइल अपलोड अनिवार्य आहे", + // "error.validation.required": "This field is required", "error.validation.required": "हे क्षेत्र आवश्यक आहे", + // "error.validation.NotValidEmail": "This is not a valid email", "error.validation.NotValidEmail": "हे वैध ईमेल नाही", + // "error.validation.emailTaken": "This email is already taken", "error.validation.emailTaken": "हे ईमेल आधीच घेतले गेले आहे", + // "error.validation.groupExists": "This group already exists", "error.validation.groupExists": "हा गट आधीच अस्तित्वात आहे", + // "error.validation.metadata.name.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Element & Qualifier fields instead", "error.validation.metadata.name.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत. कृपया एलिमेंट आणि क्वालिफायर क्षेत्रे वापरा", + // "error.validation.metadata.name.max-length": "This field may not contain more than 32 characters", "error.validation.metadata.name.max-length": "या क्षेत्रात 32 वर्णांपेक्षा जास्त असू शकत नाहीत", + // "error.validation.metadata.namespace.max-length": "This field may not contain more than 256 characters", "error.validation.metadata.namespace.max-length": "या क्षेत्रात 256 वर्णांपेक्षा जास्त असू शकत नाहीत", + // "error.validation.metadata.element.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Qualifier field instead", "error.validation.metadata.element.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत. कृपया क्वालिफायर क्षेत्र वापरा", + // "error.validation.metadata.element.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.element.max-length": "या क्षेत्रात 64 वर्णांपेक्षा जास्त असू शकत नाहीत", + // "error.validation.metadata.qualifier.invalid-pattern": "This field cannot contain dots, commas or spaces", "error.validation.metadata.qualifier.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत", + // "error.validation.metadata.qualifier.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.qualifier.max-length": "या क्षेत्रात 64 वर्णांपेक्षा जास्त असू शकत नाहीत", + // "feed.description": "Syndication feed", "feed.description": "सिंडिकेशन फीड", + // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "प्रतिबंधित बिटस्ट्रीम", + // "file-download-link.secure-access": "Restricted bitstream available via secure access token", "file-download-link.secure-access": "प्रतिबंधित बिटस्ट्रीम सुरक्षित प्रवेश टोकनद्वारे उपलब्ध", + // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "या आयटमसाठी फाइल्स मिळवण्यात त्रुटी", + // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "कॉपीराइट © 2002-{{ year }}", + // "footer.link.accessibility": "Accessibility settings", + // TODO New key - Add a translation + "footer.link.accessibility": "Accessibility settings", + + // "footer.link.dspace": "DSpace software", "footer.link.dspace": "DSpace सॉफ्टवेअर", + // "footer.link.lyrasis": "LYRASIS", "footer.link.lyrasis": "LYRASIS", + // "footer.link.cookies": "Cookie settings", "footer.link.cookies": "कुकी सेटिंग्ज", + // "footer.link.privacy-policy": "Privacy policy", "footer.link.privacy-policy": "गोपनीयता धोरण", + // "footer.link.end-user-agreement": "End User Agreement", "footer.link.end-user-agreement": "अंतिम वापरकर्ता करार", + // "footer.link.feedback": "Send Feedback", "footer.link.feedback": "प्रतिक्रिया पाठवा", + // "footer.link.coar-notify-support": "COAR Notify", "footer.link.coar-notify-support": "COAR Notify", + // "forgot-email.form.header": "Forgot Password", "forgot-email.form.header": "पासवर्ड विसरलात", + // "forgot-email.form.info": "Enter the email address associated with the account.", "forgot-email.form.info": "खात्याशी संबंधित ईमेल पत्ता प्रविष्ट करा.", + // "forgot-email.form.email": "Email Address *", "forgot-email.form.email": "ईमेल पत्ता *", + // "forgot-email.form.email.error.required": "Please fill in an email address", "forgot-email.form.email.error.required": "कृपया ईमेल पत्ता भरा", + // "forgot-email.form.email.error.not-email-form": "Please fill in a valid email address", "forgot-email.form.email.error.not-email-form": "कृपया वैध ईमेल पत्ता भरा", + // "forgot-email.form.email.hint": "An email will be sent to this address with a further instructions.", "forgot-email.form.email.hint": "या पत्त्यावर पुढील सूचनांसह एक ईमेल पाठवला जाईल.", + // "forgot-email.form.submit": "Reset password", "forgot-email.form.submit": "पासवर्ड रीसेट करा", + // "forgot-email.form.success.head": "Password reset email sent", "forgot-email.form.success.head": "पासवर्ड रीसेट ईमेल पाठवला", + // "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "forgot-email.form.success.content": "{{ email }} वर एक विशेष URL आणि पुढील सूचनांसह एक ईमेल पाठवला गेला आहे.", + // "forgot-email.form.error.head": "Error when trying to reset password", "forgot-email.form.error.head": "पासवर्ड रीसेट करण्याचा प्रयत्न करताना त्रुटी", - "forgot-email.form.error.content": "खालील ईमेल पत्त्यासह संबंधित खात्यासाठी पासवर्ड रीसेट करण्याचा प्रयत्न करताना एक त्रुटी आली: {{ email }}", + // "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + // TODO New key - Add a translation + "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + // "forgot-password.title": "Forgot Password", "forgot-password.title": "पासवर्ड विसरलात", + // "forgot-password.form.head": "Forgot Password", "forgot-password.form.head": "पासवर्ड विसरलात", + // "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box.", "forgot-password.form.info": "खालील बॉक्समध्ये नवीन पासवर्ड प्रविष्ट करा आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करा.", + // "forgot-password.form.card.security": "Security", "forgot-password.form.card.security": "सुरक्षा", + // "forgot-password.form.identification.header": "Identify", "forgot-password.form.identification.header": "ओळख", - "forgot-password.form.identification.email": "ईमेल पत्ता: ", + // "forgot-password.form.identification.email": "Email address: ", + // TODO New key - Add a translation + "forgot-password.form.identification.email": "Email address: ", + // "forgot-password.form.label.password": "Password", "forgot-password.form.label.password": "पासवर्ड", + // "forgot-password.form.label.passwordrepeat": "Retype to confirm", "forgot-password.form.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा", + // "forgot-password.form.error.empty-password": "Please enter a password in the boxes above.", "forgot-password.form.error.empty-password": "कृपया वरील बॉक्समध्ये पासवर्ड प्रविष्ट करा.", + // "forgot-password.form.error.matching-passwords": "The passwords do not match.", "forgot-password.form.error.matching-passwords": "पासवर्ड जुळत नाहीत.", + // "forgot-password.form.notification.error.title": "Error when trying to submit new password", "forgot-password.form.notification.error.title": "नवीन पासवर्ड सबमिट करण्याचा प्रयत्न करताना त्रुटी", + // "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.", "forgot-password.form.notification.success.content": "पासवर्ड रीसेट यशस्वी झाला. आपण तयार केलेल्या वापरकर्त्याच्या रूपात लॉग इन केले गेले आहे.", + // "forgot-password.form.notification.success.title": "Password reset completed", "forgot-password.form.notification.success.title": "पासवर्ड रीसेट पूर्ण", + // "forgot-password.form.submit": "Submit password", "forgot-password.form.submit": "पासवर्ड सबमिट करा", + // "form.add": "Add more", "form.add": "अधिक जोडा", + // "form.add-help": "Click here to add the current entry and to add another one", "form.add-help": "सध्याची नोंदणी जोडा आणि आणखी एक जोडा", + // "form.cancel": "Cancel", "form.cancel": "रद्द करा", + // "form.clear": "Clear", "form.clear": "साफ करा", + // "form.clear-help": "Click here to remove the selected value", "form.clear-help": "निवडलेले मूल्य काढण्यासाठी येथे क्लिक करा", + // "form.discard": "Discard", "form.discard": "काढून टाका", + // "form.drag": "Drag", "form.drag": "ओढा", + // "form.edit": "Edit", "form.edit": "संपादित करा", + // "form.edit-help": "Click here to edit the selected value", "form.edit-help": "निवडलेले मूल्य संपादित करण्यासाठी येथे क्लिक करा", + // "form.first-name": "First name", "form.first-name": "पहिले नाव", + // "form.group-collapse": "Collapse", "form.group-collapse": "संकुचित करा", + // "form.group-collapse-help": "Click here to collapse", "form.group-collapse-help": "संकुचित करण्यासाठी येथे क्लिक करा", + // "form.group-expand": "Expand", "form.group-expand": "विस्तृत करा", + // "form.group-expand-help": "Click here to expand and add more elements", "form.group-expand-help": "विस्तृत करण्यासाठी आणि अधिक घटक जोडण्यासाठी येथे क्लिक करा", + // "form.last-name": "Last name", "form.last-name": "शेवटचे नाव", + // "form.loading": "Loading...", "form.loading": "लोड करत आहे...", + // "form.lookup": "Lookup", "form.lookup": "शोधा", + // "form.lookup-help": "Click here to look up an existing relation", "form.lookup-help": "विद्यमान संबंध शोधण्यासाठी येथे क्लिक करा", + // "form.no-results": "No results found", "form.no-results": "कोणतेही परिणाम सापडले नाहीत", + // "form.no-value": "No value entered", "form.no-value": "कोणतेही मूल्य प्रविष्ट केले नाही", + // "form.other-information.email": "Email", "form.other-information.email": "ईमेल", + // "form.other-information.first-name": "First Name", "form.other-information.first-name": "पहिले नाव", + // "form.other-information.insolr": "In Solr Index", "form.other-information.insolr": "Solr अनुक्रमणिकेत", + // "form.other-information.institution": "Institution", "form.other-information.institution": "संस्था", + // "form.other-information.last-name": "Last Name", "form.other-information.last-name": "शेवटचे नाव", + // "form.other-information.orcid": "ORCID", "form.other-information.orcid": "ORCID", + // "form.remove": "Remove", "form.remove": "काढा", + // "form.save": "Save", "form.save": "जतन करा", + // "form.save-help": "Save changes", "form.save-help": "बदल जतन करा", + // "form.search": "Search", "form.search": "शोधा", + // "form.search-help": "Click here to look for an existing correspondence", "form.search-help": "विद्यमान पत्रव्यवहार शोधण्यासाठी येथे क्लिक करा", + // "form.submit": "Save", "form.submit": "जतन करा", + // "form.create": "Create", "form.create": "तयार करा", + // "form.number-picker.decrement": "Decrement {{field}}", "form.number-picker.decrement": "{{field}} कमी करा", + // "form.number-picker.increment": "Increment {{field}}", "form.number-picker.increment": "{{field}} वाढवा", + // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "आयटम नवीन स्थितीत ड्रॉप करा", + // "grant-deny-request-copy.deny": "Deny access request", "grant-deny-request-copy.deny": "प्रवेश विनंती नकारा", + // "grant-deny-request-copy.revoke": "Revoke access", "grant-deny-request-copy.revoke": "प्रवेश रद्द करा", + // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "मागे", + // "grant-deny-request-copy.email.message": "Optional additional message", "grant-deny-request-copy.email.message": "ऐच्छिक अतिरिक्त संदेश", + // "grant-deny-request-copy.email.message.empty": "Please enter a message", "grant-deny-request-copy.email.message.empty": "कृपया एक संदेश प्रविष्ट करा", + // "grant-deny-request-copy.email.permissions.info": "You may use this occasion to reconsider the access restrictions on the document, to avoid having to respond to these requests. If you’d like to ask the repository administrators to remove these restrictions, please check the box below.", "grant-deny-request-copy.email.permissions.info": "या विनंत्यांना प्रतिसाद देण्याची आवश्यकता टाळण्यासाठी, आपण दस्तऐवजावरील प्रवेश निर्बंधांचा पुनर्विचार करण्यासाठी ही संधी वापरू शकता. आपण रेपॉझिटरी प्रशासकांना हे निर्बंध काढून टाकण्याची विनंती करू इच्छित असल्यास, कृपया खालील बॉक्स तपासा.", + // "grant-deny-request-copy.email.permissions.label": "Change to open access", "grant-deny-request-copy.email.permissions.label": "मुक्त प्रवेशात बदला", + // "grant-deny-request-copy.email.send": "Send", "grant-deny-request-copy.email.send": "पाठवा", + // "grant-deny-request-copy.email.subject": "Subject", "grant-deny-request-copy.email.subject": "विषय", + // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "कृपया एक विषय प्रविष्ट करा", + // "grant-deny-request-copy.grant": "Grant access request", "grant-deny-request-copy.grant": "प्रवेश विनंती मंजूर करा", + // "grant-deny-request-copy.header": "Document copy request", "grant-deny-request-copy.header": "दस्तऐवज प्रत विनंती", + // "grant-deny-request-copy.home-page": "Take me to the home page", "grant-deny-request-copy.home-page": "मला मुख्य पृष्ठावर घेऊन जा", + // "grant-deny-request-copy.intro1": "If you are one of the authors of the document {{ name }}, then please use one of the options below to respond to the user's request.", "grant-deny-request-copy.intro1": "आपण दस्तऐवजाच्या लेखकांपैकी एक असल्यास {{ name }}, कृपया वापरकर्त्याच्या विनंतीला प्रतिसाद देण्यासाठी खालील पर्यायांपैकी एक वापरा.", + // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "पर्याय निवडल्यानंतर, आपल्याला सुचवलेले ईमेल उत्तर सादर केले जाईल जे आपण संपादित करू शकता.", + // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", "grant-deny-request-copy.previous-decision": "ही विनंती पूर्वी सुरक्षित प्रवेश टोकनसह मंजूर केली गेली होती. आपण आता हा प्रवेश रद्द करू शकता जेणेकरून प्रवेश टोकन त्वरित अमान्य होईल", + // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "ही विनंती आधीच प्रक्रिया केली गेली आहे. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", + // "grant-request-copy.email.subject": "Request copy of document", "grant-request-copy.email.subject": "दस्तऐवजाची प्रत विनंती", + // "grant-request-copy.error": "An error occurred", "grant-request-copy.error": "एक त्रुटी आली", + // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "दस्तऐवज प्रत विनंती मंजूर करा", + // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", "grant-request-copy.intro.attachment": "विनंतीच्या अर्जदाराला एक संदेश पाठवला जाईल. विनंती केलेले दस्तऐवज जोडले जातील.", + // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", "grant-request-copy.intro.link": "विनंतीच्या अर्जदाराला एक संदेश पाठवला जाईल. विनंती केलेल्या दस्तऐवजांना प्रवेश देणारा एक सुरक्षित दुवा जोडला जाईल. खालील \"प्रवेश कालावधी\" मेनूमध्ये निवडलेल्या कालावधीसाठी दुवा प्रवेश प्रदान करेल.", - "grant-request-copy.intro.link.preview": "खाली अर्जदाराला पाठवला जाणारा दुव्याचा पूर्वावलोकन आहे:", + // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // TODO New key - Add a translation + "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "आयटम विनंती यशस्वीरित्या मंजूर केली", + // "grant-request-copy.access-period.header": "Access period", "grant-request-copy.access-period.header": "प्रवेश कालावधी", + // "grant-request-copy.access-period.+1DAY": "1 day", "grant-request-copy.access-period.+1DAY": "1 दिवस", + // "grant-request-copy.access-period.+7DAYS": "1 week", "grant-request-copy.access-period.+7DAYS": "1 आठवडा", + // "grant-request-copy.access-period.+1MONTH": "1 month", "grant-request-copy.access-period.+1MONTH": "1 महिना", + // "grant-request-copy.access-period.+3MONTHS": "3 months", "grant-request-copy.access-period.+3MONTHS": "3 महिने", + // "grant-request-copy.access-period.FOREVER": "Forever", "grant-request-copy.access-period.FOREVER": "सर्वकाळ", + // "health.breadcrumbs": "Health", "health.breadcrumbs": "आरोग्य", + // "health-page.heading": "Health", "health-page.heading": "आरोग्य", + // "health-page.info-tab": "Info", "health-page.info-tab": "माहिती", + // "health-page.status-tab": "Status", "health-page.status-tab": "स्थिती", + // "health-page.error.msg": "The health check service is temporarily unavailable", "health-page.error.msg": "आरोग्य तपासणी सेवा तात्पुरती अनुपलब्ध आहे", + // "health-page.property.status": "Status code", "health-page.property.status": "स्थिती कोड", + // "health-page.section.db.title": "Database", "health-page.section.db.title": "डेटाबेस", + // "health-page.section.geoIp.title": "GeoIp", "health-page.section.geoIp.title": "GeoIp", + // "health-page.section.solrAuthorityCore.title": "Solr: authority core", "health-page.section.solrAuthorityCore.title": "Solr: authority core", + // "health-page.section.solrOaiCore.title": "Solr: oai core", "health-page.section.solrOaiCore.title": "Solr: oai core", + // "health-page.section.solrSearchCore.title": "Solr: search core", "health-page.section.solrSearchCore.title": "Solr: search core", + // "health-page.section.solrStatisticsCore.title": "Solr: statistics core", "health-page.section.solrStatisticsCore.title": "Solr: statistics core", + // "health-page.section-info.app.title": "Application Backend", "health-page.section-info.app.title": "अॅप्लिकेशन बॅकएंड", + // "health-page.section-info.java.title": "Java", "health-page.section-info.java.title": "Java", + // "health-page.status": "Status", "health-page.status": "स्थिती", + // "health-page.status.ok.info": "Operational", "health-page.status.ok.info": "ऑपरेशनल", + // "health-page.status.error.info": "Problems detected", "health-page.status.error.info": "समस्या आढळल्या", + // "health-page.status.warning.info": "Possible issues detected", "health-page.status.warning.info": "संभाव्य समस्या आढळल्या", + // "health-page.title": "Health", "health-page.title": "आरोग्य", + // "health-page.section.no-issues": "No issues detected", "health-page.section.no-issues": "कोणत्याही समस्या आढळल्या नाहीत", + // "home.description": "", "home.description": "", + // "home.breadcrumbs": "Home", "home.breadcrumbs": "मुख्य पृष्ठ", + // "home.search-form.placeholder": "Search the repository ...", "home.search-form.placeholder": "रेपॉझिटरी शोधा ...", + // "home.title": "Home", "home.title": "मुख्य पृष्ठ", + // "home.top-level-communities.head": "Communities in DSpace", "home.top-level-communities.head": "DSpace मधील समुदाय", + // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "त्याच्या संग्रह ब्राउझ करण्यासाठी एक समुदाय निवडा.", + // "info.accessibility-settings.breadcrumbs": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.breadcrumbs": "Accessibility settings", + + // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + // TODO New key - Add a translation + "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + + // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + + // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + + // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + + // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + // TODO New key - Add a translation + "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + + // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + + // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + + // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + + // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + + // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + + // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + + // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + + // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + + // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + + // "info.accessibility-settings.reset-notification": "Successfully reset settings.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-notification": "Successfully reset settings.", + + // "info.accessibility-settings.reset": "Reset accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.reset": "Reset accessibility settings", + + // "info.accessibility-settings.submit": "Save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.submit": "Save accessibility settings", + + // "info.accessibility-settings.title": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.title": "Accessibility settings", + + // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "मी अंतिम वापरकर्ता करार वाचला आहे आणि मी सहमत आहे", + // "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement", "info.end-user-agreement.accept.error": "अंतिम वापरकर्ता करार स्वीकारताना एक त्रुटी आली", + // "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement", "info.end-user-agreement.accept.success": "अंतिम वापरकर्ता करार यशस्वीरित्या अद्यतनित केला", + // "info.end-user-agreement.breadcrumbs": "End User Agreement", "info.end-user-agreement.breadcrumbs": "अंतिम वापरकर्ता करार", + // "info.end-user-agreement.buttons.cancel": "Cancel", "info.end-user-agreement.buttons.cancel": "रद्द करा", + // "info.end-user-agreement.buttons.save": "Save", "info.end-user-agreement.buttons.save": "जतन करा", + // "info.end-user-agreement.head": "End User Agreement", "info.end-user-agreement.head": "अंतिम वापरकर्ता करार", + // "info.end-user-agreement.title": "End User Agreement", "info.end-user-agreement.title": "अंतिम वापरकर्ता करार", + // "info.end-user-agreement.hosting-country": "the United States", "info.end-user-agreement.hosting-country": "संयुक्त राज्ये", + // "info.privacy.breadcrumbs": "Privacy Statement", "info.privacy.breadcrumbs": "गोपनीयता विधान", + // "info.privacy.head": "Privacy Statement", "info.privacy.head": "गोपनीयता विधान", + // "info.privacy.title": "Privacy Statement", "info.privacy.title": "गोपनीयता विधान", + // "info.feedback.breadcrumbs": "Feedback", "info.feedback.breadcrumbs": "प्रतिक्रिया", + // "info.feedback.head": "Feedback", "info.feedback.head": "प्रतिक्रिया", + // "info.feedback.title": "Feedback", "info.feedback.title": "प्रतिक्रिया", + // "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!", "info.feedback.info": "DSpace प्रणालीबद्दल आपली प्रतिक्रिया सामायिक केल्याबद्दल धन्यवाद. आपली टिप्पण्या कौतुकास्पद आहेत!", + // "info.feedback.email_help": "This address will be used to follow up on your feedback.", "info.feedback.email_help": "आपल्या प्रतिक्रियेवर फॉलो अप करण्यासाठी हा पत्ता वापरला जाईल.", + // "info.feedback.send": "Send Feedback", "info.feedback.send": "प्रतिक्रिया पाठवा", + // "info.feedback.comments": "Comments", "info.feedback.comments": "टिप्पण्या", + // "info.feedback.email-label": "Your Email", "info.feedback.email-label": "आपला ईमेल", + // "info.feedback.create.success": "Feedback Sent Successfully!", "info.feedback.create.success": "प्रतिक्रिया यशस्वीरित्या पाठवली!", + // "info.feedback.error.email.required": "A valid email address is required", "info.feedback.error.email.required": "वैध ईमेल पत्ता आवश्यक आहे", + // "info.feedback.error.message.required": "A comment is required", "info.feedback.error.message.required": "एक टिप्पणी आवश्यक आहे", + // "info.feedback.page-label": "Page", "info.feedback.page-label": "पृष्ठ", + // "info.feedback.page_help": "The page related to your feedback", "info.feedback.page_help": "आपल्या प्रतिक्रिये संबंधित पृष्ठ", + // "info.coar-notify-support.title": "COAR Notify Support", "info.coar-notify-support.title": "COAR Notify समर्थन", + // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "COAR Notify समर्थन", + // "item.alerts.private": "This item is non-discoverable", "item.alerts.private": "हा आयटम शोधण्यायोग्य नाही", + // "item.alerts.withdrawn": "This item has been withdrawn", "item.alerts.withdrawn": "हा आयटम मागे घेतला गेला आहे", + // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "पुनर्स्थितीची विनंती करा", + // "quality-assurance.event.table.person-who-requested": "Requested by", "quality-assurance.event.table.person-who-requested": "विनंती केलेले", - "item.edit.authorizations.heading": "या संपादकासह आपण आयटमच्या धोरणांचे दृश्य आणि बदल करू शकता, तसेच वैयक्तिक आयटम घटकांचे धोरण बदलू शकता: बंडल्स आणि बिटस्ट्रीम्स. थोडक्यात, एक आयटम बंडल्सचा कंटेनर आहे, आणि बंडल्स बिटस्ट्रीम्सचे कंटेनर आहेत. कंटेनरमध्ये सहसा ADD/REMOVE/READ/WRITE धोरणे असतात, तर बिटस्ट्रीम्समध्ये फक्त READ/WRITE धोरणे असतात.", + // "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + // TODO New key - Add a translation + "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "आयटमचे धोरणे संपादित करा", + // "item.badge.status": "Item status:", + // TODO New key - Add a translation + "item.badge.status": "Item status:", + + // "item.badge.private": "Non-discoverable", "item.badge.private": "शोधण्यायोग्य नाही", + // "item.badge.withdrawn": "Withdrawn", "item.badge.withdrawn": "मागे घेतले", + // "item.bitstreams.upload.bundle": "Bundle", "item.bitstreams.upload.bundle": "बंडल", + // "item.bitstreams.upload.bundle.placeholder": "Select a bundle or input new bundle name", "item.bitstreams.upload.bundle.placeholder": "एक बंडल निवडा किंवा नवीन बंडल नाव प्रविष्ट करा", + // "item.bitstreams.upload.bundle.new": "Create bundle", "item.bitstreams.upload.bundle.new": "बंडल तयार करा", + // "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.", "item.bitstreams.upload.bundles.empty": "या आयटममध्ये बिटस्ट्रीम अपलोड करण्यासाठी कोणतेही बंडल नाहीत.", + // "item.bitstreams.upload.cancel": "Cancel", "item.bitstreams.upload.cancel": "रद्द करा", + // "item.bitstreams.upload.drop-message": "Drop a file to upload", "item.bitstreams.upload.drop-message": "फाइल अपलोड करण्यासाठी ड्रॉप करा", - "item.bitstreams.upload.item": "आयटम: ", + // "item.bitstreams.upload.item": "Item: ", + // TODO New key - Add a translation + "item.bitstreams.upload.item": "Item: ", + // "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.", "item.bitstreams.upload.notifications.bundle.created.content": "नवीन बंडल यशस्वीरित्या तयार केले.", + // "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle", "item.bitstreams.upload.notifications.bundle.created.title": "बंडल तयार केले", + // "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.", "item.bitstreams.upload.notifications.upload.failed": "अपलोड अयशस्वी. कृपया सामग्री सत्यापित करा आणि पुन्हा प्रयत्न करा.", + // "item.bitstreams.upload.title": "Upload bitstream", "item.bitstreams.upload.title": "बिटस्ट्रीम अपलोड करा", + // "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload", "item.edit.bitstreams.bundle.edit.buttons.upload": "अपलोड करा", + // "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.", "item.edit.bitstreams.bundle.displaying": "सध्या {{ amount }} बिटस्ट्रीम्स {{ total }} पैकी प्रदर्शित करत आहे.", + // "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})", "item.edit.bitstreams.bundle.load.all": "सर्व लोड करा ({{ total }})", + // "item.edit.bitstreams.bundle.load.more": "Load more", "item.edit.bitstreams.bundle.load.more": "अधिक लोड करा", - "item.edit.bitstreams.bundle.name": "बंडल: {{ name }}", + // "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + // TODO New key - Add a translation + "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle", "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} बंडलमधील बिटस्ट्रीम्स", + // "item.edit.bitstreams.bundle.tooltip": "You can move a bitstream to a different page by dropping it on the page number.", "item.edit.bitstreams.bundle.tooltip": "आपण बिटस्ट्रीमला पृष्ठ क्रमांकावर ड्रॉप करून वेगळ्या पृष्ठावर हलवू शकता.", + // "item.edit.bitstreams.discard-button": "Discard", "item.edit.bitstreams.discard-button": "काढून टाका", + // "item.edit.bitstreams.edit.buttons.download": "Download", "item.edit.bitstreams.edit.buttons.download": "डाउनलोड करा", + // "item.edit.bitstreams.edit.buttons.drag": "Drag", "item.edit.bitstreams.edit.buttons.drag": "ओढा", + // "item.edit.bitstreams.edit.buttons.edit": "Edit", "item.edit.bitstreams.edit.buttons.edit": "संपादित करा", + // "item.edit.bitstreams.edit.buttons.remove": "Remove", "item.edit.bitstreams.edit.buttons.remove": "काढा", + // "item.edit.bitstreams.edit.buttons.undo": "Undo changes", "item.edit.bitstreams.edit.buttons.undo": "बदल पूर्ववत करा", + // "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} was returned to position {{ toIndex }} and is no longer selected.", "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} परत {{ toIndex }} स्थितीत आणले गेले आहे आणि आता निवडलेले नाही.", + // "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} is no longer selected.", "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} आता निवडलेले नाही.", + // "item.edit.bitstreams.edit.live.loading": "Waiting for move to complete.", "item.edit.bitstreams.edit.live.loading": "हलविण्याची प्रक्रिया पूर्ण होण्याची प्रतीक्षा करत आहे.", + // "item.edit.bitstreams.edit.live.select": "{{ bitstream }} is selected.", "item.edit.bitstreams.edit.live.select": "{{ bitstream }} निवडले गेले आहे.", + // "item.edit.bitstreams.edit.live.move": "{{ bitstream }} is now in position {{ toIndex }}.", "item.edit.bitstreams.edit.live.move": "{{ bitstream }} आता {{ toIndex }} स्थितीत आहे.", + // "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.", "item.edit.bitstreams.empty": "या आयटममध्ये कोणतेही बिटस्ट्रीम नाहीत. एक तयार करण्यासाठी अपलोड बटणावर क्लिक करा.", - "item.edit.bitstreams.info-alert": "बिटस्ट्रीम त्यांच्या बंडलमध्ये पुन्हा क्रमित केले जाऊ शकतात. ड्रॅग हँडल धरून आणि माउस हलवून. पर्यायाने, बिटस्ट्रीम कीबोर्ड वापरून हलविले जाऊ शकतात. बिटस्ट्रीमचे ड्रॅग हँडल फोकसमध्ये असताना एंटर दाबून बिटस्ट्रीम निवडा. बिटस्ट्रीम वर किंवा खाली हलविण्यासाठी बाण की वापरा. बिटस्ट्रीमची वर्तमान स्थिती पुष्टी करण्यासाठी पुन्हा एंटर दाबा.", + // "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + // TODO New key - Add a translation + "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + // "item.edit.bitstreams.headers.actions": "Actions", "item.edit.bitstreams.headers.actions": "क्रिया", + // "item.edit.bitstreams.headers.bundle": "Bundle", "item.edit.bitstreams.headers.bundle": "बंडल", + // "item.edit.bitstreams.headers.description": "Description", "item.edit.bitstreams.headers.description": "वर्णन", + // "item.edit.bitstreams.headers.format": "Format", "item.edit.bitstreams.headers.format": "फॉरमॅट", + // "item.edit.bitstreams.headers.name": "Name", "item.edit.bitstreams.headers.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": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", + // "item.edit.bitstreams.notifications.discarded.title": "Changes discarded", "item.edit.bitstreams.notifications.discarded.title": "बदल रद्द केले", + // "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams", "item.edit.bitstreams.notifications.move.failed.title": "बिटस्ट्रीम हलविण्यात त्रुटी", + // "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": "या आयटमच्या बिटस्ट्रीम आणि बंडलमध्ये आपले हलविण्याचे बदल जतन केले गेले आहेत.", + // "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved", "item.edit.bitstreams.notifications.move.saved.title": "हलविण्याचे बदल जतन केले", + // "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": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", + // "item.edit.bitstreams.notifications.outdated.title": "Changes outdated", "item.edit.bitstreams.notifications.outdated.title": "बदल कालबाह्य झाले", + // "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream", "item.edit.bitstreams.notifications.remove.failed.title": "बिटस्ट्रीम हटविण्यात त्रुटी", + // "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": "या आयटमच्या बिटस्ट्रीम हटविण्याचे बदल जतन केले गेले आहेत.", + // "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved", "item.edit.bitstreams.notifications.remove.saved.title": "हटविण्याचे बदल जतन केले", + // "item.edit.bitstreams.reinstate-button": "Undo", "item.edit.bitstreams.reinstate-button": "पूर्ववत करा", + // "item.edit.bitstreams.save-button": "Save", "item.edit.bitstreams.save-button": "जतन करा", + // "item.edit.bitstreams.upload-button": "Upload", "item.edit.bitstreams.upload-button": "अपलोड करा", + // "item.edit.bitstreams.load-more.link": "Load more", "item.edit.bitstreams.load-more.link": "अधिक लोड करा", + // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "रद्द करा", + // "item.edit.delete.confirm": "Delete", "item.edit.delete.confirm": "हटवा", - "item.edit.delete.description": "आपण खात्री आहात की हा आयटम पूर्णपणे हटविला जावा? सावधानता: सध्या, कोणतेही टॉम्बस्टोन शिल्लक राहणार नाही.", + // "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + // TODO New key - Add a translation + "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + // "item.edit.delete.error": "An error occurred while deleting the item", "item.edit.delete.error": "आयटम हटविताना त्रुटी आली", - "item.edit.delete.header": "आयटम हटवा: {{ id }}", + // "item.edit.delete.header": "Delete item: {{ id }}", + // TODO New key - Add a translation + "item.edit.delete.header": "Delete item: {{ id }}", + // "item.edit.delete.success": "The item has been deleted", "item.edit.delete.success": "आयटम हटविला गेला आहे", + // "item.edit.head": "Edit Item", "item.edit.head": "आयटम संपादित करा", + // "item.edit.breadcrumbs": "Edit Item", "item.edit.breadcrumbs": "आयटम संपादित करा", + // "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab", "item.edit.tabs.disabled.tooltip": "आपल्याला या टॅबमध्ये प्रवेश करण्याची परवानगी नाही", + // "item.edit.tabs.mapper.head": "Collection Mapper", "item.edit.tabs.mapper.head": "संग्रह मॅपर", + // "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper", "item.edit.tabs.item-mapper.title": "आयटम संपादन - संग्रह मॅपर", + // "item.edit.identifiers.doi.status.UNKNOWN": "Unknown", "item.edit.identifiers.doi.status.UNKNOWN": "अज्ञात", + // "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "Queued for registration", "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "नोंदणीसाठी रांगेत", + // "item.edit.identifiers.doi.status.TO_BE_RESERVED": "Queued for reservation", "item.edit.identifiers.doi.status.TO_BE_RESERVED": "आरक्षणासाठी रांगेत", + // "item.edit.identifiers.doi.status.IS_REGISTERED": "Registered", "item.edit.identifiers.doi.status.IS_REGISTERED": "नोंदणीकृत", + // "item.edit.identifiers.doi.status.IS_RESERVED": "Reserved", "item.edit.identifiers.doi.status.IS_RESERVED": "आरक्षित", + // "item.edit.identifiers.doi.status.UPDATE_RESERVED": "Reserved (update queued)", "item.edit.identifiers.doi.status.UPDATE_RESERVED": "आरक्षित (अपडेट रांगेत)", + // "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Registered (update queued)", "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "नोंदणीकृत (अपडेट रांगेत)", + // "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "Queued for update and registration", "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "अपडेट आणि नोंदणीसाठी रांगेत", + // "item.edit.identifiers.doi.status.TO_BE_DELETED": "Queued for deletion", "item.edit.identifiers.doi.status.TO_BE_DELETED": "हटविण्यासाठी रांगेत", + // "item.edit.identifiers.doi.status.DELETED": "Deleted", "item.edit.identifiers.doi.status.DELETED": "हटविले", + // "item.edit.identifiers.doi.status.PENDING": "Pending (not registered)", "item.edit.identifiers.doi.status.PENDING": "प्रलंबित (नोंदणीकृत नाही)", + // "item.edit.identifiers.doi.status.MINTED": "Minted (not registered)", "item.edit.identifiers.doi.status.MINTED": "मिंटेड (नोंदणीकृत नाही)", + // "item.edit.tabs.status.buttons.register-doi.label": "Register a new or pending DOI", "item.edit.tabs.status.buttons.register-doi.label": "नवीन किंवा प्रलंबित DOI नोंदणी करा", + // "item.edit.tabs.status.buttons.register-doi.button": "Register DOI...", "item.edit.tabs.status.buttons.register-doi.button": "DOI नोंदणी करा...", + // "item.edit.register-doi.header": "Register a new or pending DOI", "item.edit.register-doi.header": "नवीन किंवा प्रलंबित DOI नोंदणी करा", + // "item.edit.register-doi.description": "Review any pending identifiers and item metadata below and click Confirm to proceed with DOI registration, or Cancel to back out", "item.edit.register-doi.description": "खाली कोणतेही प्रलंबित ओळखपत्रे आणि आयटम मेटाडेटा पुनरावलोकन करा आणि DOI नोंदणीसाठी पुढे जाण्यासाठी पुष्टी करा क्लिक करा, किंवा मागे जाण्यासाठी रद्द करा", + // "item.edit.register-doi.confirm": "Confirm", "item.edit.register-doi.confirm": "पुष्टी करा", + // "item.edit.register-doi.cancel": "Cancel", "item.edit.register-doi.cancel": "रद्द करा", + // "item.edit.register-doi.success": "DOI queued for registration successfully.", "item.edit.register-doi.success": "DOI नोंदणीसाठी यशस्वीरित्या रांगेत लावले.", + // "item.edit.register-doi.error": "Error registering DOI", "item.edit.register-doi.error": "DOI नोंदणी करताना त्रुटी", + // "item.edit.register-doi.to-update": "The following DOI has already been minted and will be queued for registration online", "item.edit.register-doi.to-update": "खालील DOI आधीच मिंटेड आहे आणि ऑनलाइन नोंदणीसाठी रांगेत लावले जाईल", + // "item.edit.item-mapper.buttons.add": "Map item to selected collections", "item.edit.item-mapper.buttons.add": "निवडलेल्या संग्रहांमध्ये आयटम मॅप करा", + // "item.edit.item-mapper.buttons.remove": "Remove item's mapping for selected collections", "item.edit.item-mapper.buttons.remove": "निवडलेल्या संग्रहांसाठी आयटमचे मॅपिंग काढा", + // "item.edit.item-mapper.cancel": "Cancel", "item.edit.item-mapper.cancel": "रद्द करा", + // "item.edit.item-mapper.description": "This is the item mapper tool that allows administrators to map this item to other collections. You can search for collections and map them, or browse the list of collections the item is currently mapped to.", "item.edit.item-mapper.description": "हे आयटम मॅपर साधन आहे जे प्रशासकांना या आयटमला इतर संग्रहांमध्ये मॅप करण्याची परवानगी देते. आपण संग्रह शोधू शकता आणि त्यांना मॅप करू शकता, किंवा आयटम सध्या मॅप केलेल्या संग्रहांची यादी ब्राउझ करू शकता.", + // "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections", "item.edit.item-mapper.head": "आयटम मॅपर - आयटम संग्रहांमध्ये मॅप करा", - "item.edit.item-mapper.item": "आयटम: \"{{name}}\"", + // "item.edit.item-mapper.item": "Item: \"{{name}}\"", + // TODO New key - Add a translation + "item.edit.item-mapper.item": "Item: \"{{name}}\"", + // "item.edit.item-mapper.no-search": "Please enter a query to search", "item.edit.item-mapper.no-search": "शोधण्यासाठी क्वेरी प्रविष्ट करा", + // "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": "{{amount}} संग्रहांसाठी आयटम मॅपिंगमध्ये त्रुटी आल्या.", + // "item.edit.item-mapper.notifications.add.error.head": "Mapping errors", "item.edit.item-mapper.notifications.add.error.head": "मॅपिंग त्रुटी", + // "item.edit.item-mapper.notifications.add.success.content": "Successfully mapped item to {{amount}} collections.", "item.edit.item-mapper.notifications.add.success.content": "{{amount}} संग्रहांमध्ये आयटम यशस्वीरित्या मॅप केले.", + // "item.edit.item-mapper.notifications.add.success.head": "Mapping completed", "item.edit.item-mapper.notifications.add.success.head": "मॅपिंग पूर्ण झाले", + // "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.error.content": "{{amount}} संग्रहांसाठी मॅपिंग काढताना त्रुटी आल्या.", + // "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors", "item.edit.item-mapper.notifications.remove.error.head": "मॅपिंग काढण्याच्या त्रुटी", + // "item.edit.item-mapper.notifications.remove.success.content": "Successfully removed mapping of item to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.success.content": "{{amount}} संग्रहांमधून आयटमचे मॅपिंग यशस्वीरित्या काढले.", + // "item.edit.item-mapper.notifications.remove.success.head": "Removal of mapping completed", "item.edit.item-mapper.notifications.remove.success.head": "मॅपिंग काढणे पूर्ण झाले", + // "item.edit.item-mapper.search-form.placeholder": "Search collections...", "item.edit.item-mapper.search-form.placeholder": "संग्रह शोधा...", + // "item.edit.item-mapper.tabs.browse": "Browse mapped collections", "item.edit.item-mapper.tabs.browse": "मॅप केलेले संग्रह ब्राउझ करा", + // "item.edit.item-mapper.tabs.map": "Map new collections", "item.edit.item-mapper.tabs.map": "नवीन संग्रह मॅप करा", + // "item.edit.metadata.add-button": "Add", "item.edit.metadata.add-button": "जोडा", + // "item.edit.metadata.discard-button": "Discard", "item.edit.metadata.discard-button": "रद्द करा", + // "item.edit.metadata.edit.language": "Edit language", "item.edit.metadata.edit.language": "भाषा संपादित करा", + // "item.edit.metadata.edit.value": "Edit value", "item.edit.metadata.edit.value": "मूल्य संपादित करा", + // "item.edit.metadata.edit.authority.key": "Edit authority key", "item.edit.metadata.edit.authority.key": "प्राधिकरण की संपादित करा", + // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", "item.edit.metadata.edit.buttons.enable-free-text-editing": "फ्री-टेक्स्ट संपादन सक्षम करा", + // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", "item.edit.metadata.edit.buttons.disable-free-text-editing": "फ्री-टेक्स्ट संपादन अक्षम करा", + // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "पुष्टी करा", + // "item.edit.metadata.edit.buttons.drag": "Drag to reorder", "item.edit.metadata.edit.buttons.drag": "पुन्हा क्रमित करण्यासाठी ड्रॅग करा", + // "item.edit.metadata.edit.buttons.edit": "Edit", "item.edit.metadata.edit.buttons.edit": "संपादित करा", + // "item.edit.metadata.edit.buttons.remove": "Remove", "item.edit.metadata.edit.buttons.remove": "काढा", + // "item.edit.metadata.edit.buttons.undo": "Undo changes", "item.edit.metadata.edit.buttons.undo": "बदल पूर्ववत करा", + // "item.edit.metadata.edit.buttons.unedit": "Stop editing", "item.edit.metadata.edit.buttons.unedit": "संपादन थांबवा", + // "item.edit.metadata.edit.buttons.virtual": "This is a virtual metadata value, i.e. a value inherited from a related entity. It can’t be modified directly. Add or remove the corresponding relationship in the \"Relationships\" tab", "item.edit.metadata.edit.buttons.virtual": "हे एक आभासी मेटाडेटा मूल्य आहे, म्हणजे संबंधित घटकाकडून वारसा मिळालेल्या मूल्य. ते थेट बदलले जाऊ शकत नाही. \"संबंध\" टॅबमध्ये संबंधित संबंध जोडा किंवा काढा", + // "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.", "item.edit.metadata.empty": "आयटम सध्या कोणतेही मेटाडेटा समाविष्ट करत नाही. मेटाडेटा मूल्य जोडण्यासाठी जोडा क्लिक करा.", + // "item.edit.metadata.headers.edit": "Edit", "item.edit.metadata.headers.edit": "संपादित करा", + // "item.edit.metadata.headers.field": "Field", "item.edit.metadata.headers.field": "फील्ड", + // "item.edit.metadata.headers.language": "Lang", "item.edit.metadata.headers.language": "भाषा", + // "item.edit.metadata.headers.value": "Value", "item.edit.metadata.headers.value": "मूल्य", + // "item.edit.metadata.metadatafield": "Edit field", "item.edit.metadata.metadatafield": "फील्ड संपादित करा", + // "item.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "item.edit.metadata.metadatafield.error": "मेटाडेटा फील्ड सत्यापित करताना त्रुटी आली", + // "item.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "item.edit.metadata.metadatafield.invalid": "कृपया वैध मेटाडेटा फील्ड निवडा", + // "item.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.metadata.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", + // "item.edit.metadata.notifications.discarded.title": "Changes discarded", "item.edit.metadata.notifications.discarded.title": "बदल रद्द केले", + // "item.edit.metadata.notifications.error.title": "An error occurred", "item.edit.metadata.notifications.error.title": "त्रुटी आली", + // "item.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "item.edit.metadata.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", + // "item.edit.metadata.notifications.invalid.title": "Metadata invalid", "item.edit.metadata.notifications.invalid.title": "मेटाडेटा अवैध", + // "item.edit.metadata.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.metadata.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", + // "item.edit.metadata.notifications.outdated.title": "Changes outdated", "item.edit.metadata.notifications.outdated.title": "बदल कालबाह्य झाले", + // "item.edit.metadata.notifications.saved.content": "Your changes to this item's metadata were saved.", "item.edit.metadata.notifications.saved.content": "या आयटमच्या मेटाडेटामध्ये आपले बदल जतन केले गेले.", + // "item.edit.metadata.notifications.saved.title": "Metadata saved", "item.edit.metadata.notifications.saved.title": "मेटाडेटा जतन केले", + // "item.edit.metadata.reinstate-button": "Undo", "item.edit.metadata.reinstate-button": "पूर्ववत करा", + // "item.edit.metadata.reset-order-button": "Undo reorder", "item.edit.metadata.reset-order-button": "पुन्हा क्रमित पूर्ववत करा", + // "item.edit.metadata.save-button": "Save", "item.edit.metadata.save-button": "जतन करा", - "item.edit.metadata.authority.label": "प्राधिकरण: ", + // "item.edit.metadata.authority.label": "Authority: ", + // TODO New key - Add a translation + "item.edit.metadata.authority.label": "Authority: ", + // "item.edit.metadata.edit.buttons.open-authority-edition": "Unlock the authority key value for manual editing", "item.edit.metadata.edit.buttons.open-authority-edition": "मॅन्युअल संपादनासाठी प्राधिकरण की मूल्य अनलॉक करा", + // "item.edit.metadata.edit.buttons.close-authority-edition": "Lock the authority key value for manual editing", "item.edit.metadata.edit.buttons.close-authority-edition": "मॅन्युअल संपादनासाठी प्राधिकरण की मूल्य लॉक करा", + // "item.edit.modify.overview.field": "Field", "item.edit.modify.overview.field": "फील्ड", + // "item.edit.modify.overview.language": "Language", "item.edit.modify.overview.language": "भाषा", + // "item.edit.modify.overview.value": "Value", "item.edit.modify.overview.value": "मूल्य", + // "item.edit.move.cancel": "Back", "item.edit.move.cancel": "मागे", + // "item.edit.move.save-button": "Save", "item.edit.move.save-button": "जतन करा", + // "item.edit.move.discard-button": "Discard", "item.edit.move.discard-button": "रद्द करा", + // "item.edit.move.description": "Select the collection you wish to move this item to. To narrow down the list of displayed collections, you can enter a search query in the box.", "item.edit.move.description": "आपण या आयटमला हलवू इच्छित असलेला संग्रह निवडा. प्रदर्शित संग्रहांची यादी कमी करण्यासाठी, आपण बॉक्समध्ये शोध क्वेरी प्रविष्ट करू शकता.", + // "item.edit.move.error": "An error occurred when attempting to move the item", "item.edit.move.error": "आयटम हलविताना त्रुटी आली", - "item.edit.move.head": "आयटम हलवा: {{id}}", + // "item.edit.move.head": "Move item: {{id}}", + // TODO New key - Add a translation + "item.edit.move.head": "Move item: {{id}}", + // "item.edit.move.inheritpolicies.checkbox": "Inherit policies", "item.edit.move.inheritpolicies.checkbox": "धोरणे वारसा मिळवा", + // "item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection", "item.edit.move.inheritpolicies.description": "गंतव्य संग्रहाचे डीफॉल्ट धोरणे वारसा मिळवा", - "item.edit.move.inheritpolicies.tooltip": "चेतावणी: सक्षम केल्यास, आयटम आणि आयटमशी संबंधित कोणत्याही फाइल्ससाठी वाचन प्रवेश धोरण गंतव्य संग्रहाचे डीफॉल्ट वाचन प्रवेश धोरणाने बदलले जाईल. हे पूर्ववत केले जाऊ शकत नाही.", + // "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + // TODO New key - Add a translation + "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + // "item.edit.move.move": "Move", "item.edit.move.move": "हलवा", + // "item.edit.move.processing": "Moving...", "item.edit.move.processing": "हलवित आहे...", + // "item.edit.move.search.placeholder": "Enter a search query to look for collections", "item.edit.move.search.placeholder": "संग्रह शोधण्यासाठी शोध क्वेरी प्रविष्ट करा", + // "item.edit.move.success": "The item has been moved successfully", "item.edit.move.success": "आयटम यशस्वीरित्या हलविला गेला", + // "item.edit.move.title": "Move item", "item.edit.move.title": "आयटम हलवा", + // "item.edit.private.cancel": "Cancel", "item.edit.private.cancel": "रद्द करा", + // "item.edit.private.confirm": "Make it non-discoverable", "item.edit.private.confirm": "नॉन-डिस्कव्हरेबल करा", + // "item.edit.private.description": "Are you sure this item should be made non-discoverable in the archive?", "item.edit.private.description": "आपण खात्री आहात की हा आयटम संग्रहात नॉन-डिस्कव्हरेबल केला जावा?", + // "item.edit.private.error": "An error occurred while making the item non-discoverable", "item.edit.private.error": "आयटम नॉन-डिस्कव्हरेबल करताना त्रुटी आली", - "item.edit.private.header": "आयटम नॉन-डिस्कव्हरेबल करा: {{ id }}", + // "item.edit.private.header": "Make item non-discoverable: {{ id }}", + // TODO New key - Add a translation + "item.edit.private.header": "Make item non-discoverable: {{ id }}", + // "item.edit.private.success": "The item is now non-discoverable", "item.edit.private.success": "आयटम आता नॉन-डिस्कव्हरेबल आहे", + // "item.edit.public.cancel": "Cancel", "item.edit.public.cancel": "रद्द करा", + // "item.edit.public.confirm": "Make it discoverable", "item.edit.public.confirm": "डिस्कव्हरेबल करा", + // "item.edit.public.description": "Are you sure this item should be made discoverable in the archive?", "item.edit.public.description": "आपण खात्री आहात की हा आयटम संग्रहात डिस्कव्हरेबल केला जावा?", + // "item.edit.public.error": "An error occurred while making the item discoverable", "item.edit.public.error": "आयटम डिस्कव्हरेबल करताना त्रुटी आली", - "item.edit.public.header": "आयटम डिस्कव्हरेबल करा: {{ id }}", + // "item.edit.public.header": "Make item discoverable: {{ id }}", + // TODO New key - Add a translation + "item.edit.public.header": "Make item discoverable: {{ id }}", + // "item.edit.public.success": "The item is now discoverable", "item.edit.public.success": "आयटम आता डिस्कव्हरेबल आहे", + // "item.edit.reinstate.cancel": "Cancel", "item.edit.reinstate.cancel": "रद्द करा", + // "item.edit.reinstate.confirm": "Reinstate", "item.edit.reinstate.confirm": "पुनर्स्थापित करा", + // "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?", "item.edit.reinstate.description": "आपण खात्री आहात की हा आयटम संग्रहात पुनर्स्थापित केला जावा?", + // "item.edit.reinstate.error": "An error occurred while reinstating the item", "item.edit.reinstate.error": "आयटम पुनर्स्थापित करताना त्रुटी आली", - "item.edit.reinstate.header": "आयटम पुनर्स्थापित करा: {{ id }}", + // "item.edit.reinstate.header": "Reinstate item: {{ id }}", + // TODO New key - Add a translation + "item.edit.reinstate.header": "Reinstate item: {{ id }}", + // "item.edit.reinstate.success": "The item was reinstated successfully", "item.edit.reinstate.success": "आयटम यशस्वीरित्या पुनर्स्थापित केला गेला", + // "item.edit.relationships.discard-button": "Discard", "item.edit.relationships.discard-button": "रद्द करा", + // "item.edit.relationships.edit.buttons.add": "Add", "item.edit.relationships.edit.buttons.add": "जोडा", + // "item.edit.relationships.edit.buttons.remove": "Remove", "item.edit.relationships.edit.buttons.remove": "काढा", + // "item.edit.relationships.edit.buttons.undo": "Undo changes", "item.edit.relationships.edit.buttons.undo": "बदल पूर्ववत करा", + // "item.edit.relationships.no-relationships": "No relationships", "item.edit.relationships.no-relationships": "कोणतेही संबंध नाहीत", + // "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.relationships.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", + // "item.edit.relationships.notifications.discarded.title": "Changes discarded", "item.edit.relationships.notifications.discarded.title": "बदल रद्द केले", + // "item.edit.relationships.notifications.failed.title": "Error editing relationships", "item.edit.relationships.notifications.failed.title": "संबंध संपादित करताना त्रुटी", + // "item.edit.relationships.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.relationships.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", + // "item.edit.relationships.notifications.outdated.title": "Changes outdated", "item.edit.relationships.notifications.outdated.title": "बदल कालबाह्य झाले", + // "item.edit.relationships.notifications.saved.content": "Your changes to this item's relationships were saved.", "item.edit.relationships.notifications.saved.content": "या आयटमच्या संबंधांमध्ये आपले बदल जतन केले गेले.", + // "item.edit.relationships.notifications.saved.title": "Relationships saved", "item.edit.relationships.notifications.saved.title": "संबंध जतन केले", + // "item.edit.relationships.reinstate-button": "Undo", "item.edit.relationships.reinstate-button": "पूर्ववत करा", + // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "जतन करा", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", "item.edit.relationships.no-entity-type": "या आयटमसाठी संबंध सक्षम करण्यासाठी 'dspace.entity.type' मेटाडेटा जोडा", + // "item.edit.return": "Back", "item.edit.return": "मागे", + // "item.edit.tabs.bitstreams.head": "Bitstreams", "item.edit.tabs.bitstreams.head": "बिटस्ट्रीम", + // "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams", "item.edit.tabs.bitstreams.title": "आयटम संपादन - बिटस्ट्रीम", + // "item.edit.tabs.curate.head": "Curate", "item.edit.tabs.curate.head": "क्युरेट", + // "item.edit.tabs.curate.title": "Item Edit - Curate", "item.edit.tabs.curate.title": "आयटम संपादन - क्युरेट", - "item.edit.curate.title": "क्युरेट आयटम: {{item}}", + // "item.edit.curate.title": "Curate Item: {{item}}", + // TODO New key - Add a translation + "item.edit.curate.title": "Curate Item: {{item}}", + // "item.edit.tabs.access-control.head": "Access Control", "item.edit.tabs.access-control.head": "प्रवेश नियंत्रण", + // "item.edit.tabs.access-control.title": "Item Edit - Access Control", "item.edit.tabs.access-control.title": "आयटम संपादन - प्रवेश नियंत्रण", + // "item.edit.tabs.metadata.head": "Metadata", "item.edit.tabs.metadata.head": "मेटाडेटा", + // "item.edit.tabs.metadata.title": "Item Edit - Metadata", "item.edit.tabs.metadata.title": "आयटम संपादन - मेटाडेटा", + // "item.edit.tabs.relationships.head": "Relationships", "item.edit.tabs.relationships.head": "संबंध", + // "item.edit.tabs.relationships.title": "Item Edit - Relationships", "item.edit.tabs.relationships.title": "आयटम संपादन - संबंध", + // "item.edit.tabs.status.buttons.authorizations.button": "Authorizations...", "item.edit.tabs.status.buttons.authorizations.button": "प्राधिकरण...", + // "item.edit.tabs.status.buttons.authorizations.label": "Edit item's authorization policies", "item.edit.tabs.status.buttons.authorizations.label": "आयटमचे प्राधिकरण धोरणे संपादित करा", + // "item.edit.tabs.status.buttons.delete.button": "Permanently delete", "item.edit.tabs.status.buttons.delete.button": "कायमचे हटवा", + // "item.edit.tabs.status.buttons.delete.label": "Completely expunge item", "item.edit.tabs.status.buttons.delete.label": "आयटम पूर्णपणे हटवा", + // "item.edit.tabs.status.buttons.mappedCollections.button": "Mapped collections", "item.edit.tabs.status.buttons.mappedCollections.button": "मॅप केलेले संग्रह", + // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "मॅप केलेले संग्रह व्यवस्थापित करा", + // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", "item.edit.tabs.status.buttons.move.button": "हा आयटम दुसऱ्या संग्रहात हलवा", + // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", "item.edit.tabs.status.buttons.move.label": "आयटम दुसऱ्या संग्रहात हलवा", + // "item.edit.tabs.status.buttons.private.button": "Make it non-discoverable...", "item.edit.tabs.status.buttons.private.button": "नॉन-डिस्कव्हरेबल करा...", + // "item.edit.tabs.status.buttons.private.label": "Make item non-discoverable", "item.edit.tabs.status.buttons.private.label": "आयटम नॉन-डिस्कव्हरेबल करा", + // "item.edit.tabs.status.buttons.public.button": "Make it discoverable...", "item.edit.tabs.status.buttons.public.button": "डिस्कव्हरेबल करा...", + // "item.edit.tabs.status.buttons.public.label": "Make item discoverable", "item.edit.tabs.status.buttons.public.label": "आयटम डिस्कव्हरेबल करा", + // "item.edit.tabs.status.buttons.reinstate.button": "Reinstate...", "item.edit.tabs.status.buttons.reinstate.button": "पुनर्स्थापित करा...", + // "item.edit.tabs.status.buttons.reinstate.label": "Reinstate item into the repository", "item.edit.tabs.status.buttons.reinstate.label": "आयटम संग्रहात पुनर्स्थापित करा", + // "item.edit.tabs.status.buttons.unauthorized": "You're not authorized to perform this action", "item.edit.tabs.status.buttons.unauthorized": "आपल्याला ही क्रिया करण्याची परवानगी नाही", + // "item.edit.tabs.status.buttons.withdraw.button": "Withdraw this item", "item.edit.tabs.status.buttons.withdraw.button": "हा आयटम मागे घ्या", + // "item.edit.tabs.status.buttons.withdraw.label": "Withdraw item from the repository", "item.edit.tabs.status.buttons.withdraw.label": "आयटम संग्रहातून मागे घ्या", + // "item.edit.tabs.status.description": "Welcome to the item management page. From here you can withdraw, reinstate, move or delete the item. You may also update or add new metadata / bitstreams on the other tabs.", "item.edit.tabs.status.description": "आयटम व्यवस्थापन पृष्ठावर आपले स्वागत आहे. येथून आपण आयटम मागे घेऊ, पुनर्स्थापित करू, हलवू किंवा हटवू शकता. आपण इतर टॅबवर नवीन मेटाडेटा / बिटस्ट्रीम देखील अद्यतनित किंवा जोडू शकता.", + // "item.edit.tabs.status.head": "Status", "item.edit.tabs.status.head": "स्थिती", + // "item.edit.tabs.status.labels.handle": "Handle", "item.edit.tabs.status.labels.handle": "हँडल", + // "item.edit.tabs.status.labels.id": "Item Internal ID", "item.edit.tabs.status.labels.id": "आयटम अंतर्गत आयडी", + // "item.edit.tabs.status.labels.itemPage": "Item Page", "item.edit.tabs.status.labels.itemPage": "आयटम पृष्ठ", + // "item.edit.tabs.status.labels.lastModified": "Last Modified", "item.edit.tabs.status.labels.lastModified": "शेवटचे बदलले", + // "item.edit.tabs.status.title": "Item Edit - Status", "item.edit.tabs.status.title": "आयटम संपादन - स्थिती", + // "item.edit.tabs.versionhistory.head": "Version History", "item.edit.tabs.versionhistory.head": "आवृत्ती इतिहास", + // "item.edit.tabs.versionhistory.title": "Item Edit - Version History", "item.edit.tabs.versionhistory.title": "आयटम संपादन - आवृत्ती इतिहास", + // "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": "या वापरकर्ता इंटरफेसमध्ये आवृत्त्या संपादित करणे किंवा नवीन आवृत्त्या जोडणे अद्याप शक्य नाही.", + // "item.edit.tabs.view.head": "View Item", "item.edit.tabs.view.head": "आयटम पहा", + // "item.edit.tabs.view.title": "Item Edit - View", "item.edit.tabs.view.title": "आयटम संपादन - पहा", + // "item.edit.withdraw.cancel": "Cancel", "item.edit.withdraw.cancel": "रद्द करा", + // "item.edit.withdraw.confirm": "Withdraw", "item.edit.withdraw.confirm": "मागे घ्या", + // "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?", "item.edit.withdraw.description": "आपण खात्री आहात की हा आयटम संग्रहातून मागे घ्यावा?", + // "item.edit.withdraw.error": "An error occurred while withdrawing the item", "item.edit.withdraw.error": "आयटम मागे घेताना त्रुटी आली", - "item.edit.withdraw.header": "आयटम मागे घ्या: {{ id }}", + // "item.edit.withdraw.header": "Withdraw item: {{ id }}", + // TODO New key - Add a translation + "item.edit.withdraw.header": "Withdraw item: {{ id }}", + // "item.edit.withdraw.success": "The item was withdrawn successfully", "item.edit.withdraw.success": "आयटम यशस्वीरित्या मागे घेतला गेला", + // "item.orcid.return": "Back", "item.orcid.return": "मागे", + // "item.listelement.badge": "Item", "item.listelement.badge": "आयटम", + // "item.page.description": "Description", "item.page.description": "वर्णन", + // "item.page.org-unit": "Organizational Unit", + // TODO New key - Add a translation + "item.page.org-unit": "Organizational Unit", + + // "item.page.org-units": "Organizational Units", + // TODO New key - Add a translation + "item.page.org-units": "Organizational Units", + + // "item.page.project": "Research Project", + // TODO New key - Add a translation + "item.page.project": "Research Project", + + // "item.page.projects": "Research Projects", + // TODO New key - Add a translation + "item.page.projects": "Research Projects", + + // "item.page.publication": "Publications", + // TODO New key - Add a translation + "item.page.publication": "Publications", + + // "item.page.publications": "Publications", + // TODO New key - Add a translation + "item.page.publications": "Publications", + + // "item.page.article": "Article", + // TODO New key - Add a translation + "item.page.article": "Article", + + // "item.page.articles": "Articles", + // TODO New key - Add a translation + "item.page.articles": "Articles", + + // "item.page.journal": "Journal", + // TODO New key - Add a translation + "item.page.journal": "Journal", + + // "item.page.journals": "Journals", + // TODO New key - Add a translation + "item.page.journals": "Journals", + + // "item.page.journal-issue": "Journal Issue", + // TODO New key - Add a translation + "item.page.journal-issue": "Journal Issue", + + // "item.page.journal-issues": "Journal Issues", + // TODO New key - Add a translation + "item.page.journal-issues": "Journal Issues", + + // "item.page.journal-volume": "Journal Volume", + // TODO New key - Add a translation + "item.page.journal-volume": "Journal Volume", + + // "item.page.journal-volumes": "Journal Volumes", + // TODO New key - Add a translation + "item.page.journal-volumes": "Journal Volumes", + + // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "जर्नल ISSN", + // "item.page.journal-title": "Journal Title", "item.page.journal-title": "जर्नल शीर्षक", + // "item.page.publisher": "Publisher", "item.page.publisher": "प्रकाशक", - "item.page.titleprefix": "आयटम: ", + // "item.page.titleprefix": "Item: ", + // TODO New key - Add a translation + "item.page.titleprefix": "Item: ", + // "item.page.volume-title": "Volume Title", "item.page.volume-title": "खंड शीर्षक", + // "item.page.dcterms.spatial": "Geospatial point", "item.page.dcterms.spatial": "भौगोलिक बिंदू", + // "item.search.results.head": "Item Search Results", "item.search.results.head": "आयटम शोध परिणाम", + // "item.search.title": "Item Search", "item.search.title": "आयटम शोध", + // "item.truncatable-part.show-more": "Show more", "item.truncatable-part.show-more": "अधिक दाखवा", + // "item.truncatable-part.show-less": "Collapse", "item.truncatable-part.show-less": "संकुचित करा", + // "item.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "item.qa-event-notification.check.notification-info": "आपल्या खात्याशी संबंधित {{num}} प्रलंबित सूचना आहेत", + // "item.qa-event-notification-info.check.button": "View", "item.qa-event-notification-info.check.button": "पहा", + // "mydspace.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "mydspace.qa-event-notification.check.notification-info": "आपल्या खात्याशी संबंधित {{num}} प्रलंबित सूचना आहेत", + // "mydspace.qa-event-notification-info.check.button": "View", "mydspace.qa-event-notification-info.check.button": "पहा", + // "workflow-item.search.result.delete-supervision.modal.header": "Delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.header": "पर्यवेक्षण आदेश हटवा", + // "workflow-item.search.result.delete-supervision.modal.info": "Are you sure you want to delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.info": "आपण खात्री आहात की पर्यवेक्षण आदेश हटवू इच्छिता", + // "workflow-item.search.result.delete-supervision.modal.cancel": "Cancel", "workflow-item.search.result.delete-supervision.modal.cancel": "रद्द करा", + // "workflow-item.search.result.delete-supervision.modal.confirm": "Delete", "workflow-item.search.result.delete-supervision.modal.confirm": "हटवा", + // "workflow-item.search.result.notification.deleted.success": "Successfully deleted supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.success": "पर्यवेक्षण आदेश \"{{name}}\" यशस्वीरित्या हटविला", + // "workflow-item.search.result.notification.deleted.failure": "Failed to delete supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.failure": "पर्यवेक्षण आदेश \"{{name}}\" हटविण्यात अयशस्वी", - "workflow-item.search.result.list.element.supervised-by": "पर्यवेक्षण केलेले:", + // "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + // TODO New key - Add a translation + "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + // "workflow-item.search.result.list.element.supervised.remove-tooltip": "Remove supervision group", "workflow-item.search.result.list.element.supervised.remove-tooltip": "पर्यवेक्षण गट काढा", + // "confidence.indicator.help-text.accepted": "This authority value has been confirmed as accurate by an interactive user", "confidence.indicator.help-text.accepted": "हे प्राधिकरण मूल्य परस्पर वापरकर्त्याद्वारे अचूक म्हणून पुष्टी केले गेले आहे", + // "confidence.indicator.help-text.uncertain": "Value is singular and valid but has not been seen and accepted by a human so it is still uncertain", "confidence.indicator.help-text.uncertain": "मूल्य एकवचनी आणि वैध आहे परंतु मानवीने पाहिले आणि स्वीकारले नाही त्यामुळे ते अद्याप अनिश्चित आहे", + // "confidence.indicator.help-text.ambiguous": "There are multiple matching authority values of equal validity", "confidence.indicator.help-text.ambiguous": "समान वैधतेच्या एकाधिक जुळणारे प्राधिकरण मूल्ये आहेत", + // "confidence.indicator.help-text.notfound": "There are no matching answers in the authority", "confidence.indicator.help-text.notfound": "प्राधिकरणात कोणतेही जुळणारे उत्तर नाही", + // "confidence.indicator.help-text.failed": "The authority encountered an internal failure", "confidence.indicator.help-text.failed": "प्राधिकरणाने अंतर्गत अपयश अनुभवले", + // "confidence.indicator.help-text.rejected": "The authority recommends this submission be rejected", "confidence.indicator.help-text.rejected": "प्राधिकरणाने या सबमिशनला नाकारण्याची शिफारस केली आहे", + // "confidence.indicator.help-text.novalue": "No reasonable confidence value was returned from the authority", "confidence.indicator.help-text.novalue": "प्राधिकरणाकडून कोणतेही वाजवी आत्मविश्वास मूल्य परत आले नाही", + // "confidence.indicator.help-text.unset": "Confidence was never recorded for this value", "confidence.indicator.help-text.unset": "या मूल्यासाठी आत्मविश्वास कधीही नोंदविला गेला नाही", + // "confidence.indicator.help-text.unknown": "Unknown confidence value", "confidence.indicator.help-text.unknown": "अज्ञात आत्मविश्वास मूल्य", + // "item.page.abstract": "Abstract", "item.page.abstract": "सारांश", + // "item.page.author": "Author", "item.page.author": "लेखक", + // "item.page.authors": "Authors", + // TODO New key - Add a translation + "item.page.authors": "Authors", + + // "item.page.citation": "Citation", "item.page.citation": "उल्लेख", + // "item.page.collections": "Collections", "item.page.collections": "संग्रह", + // "item.page.collections.loading": "Loading...", "item.page.collections.loading": "लोड करत आहे...", + // "item.page.collections.load-more": "Load more", "item.page.collections.load-more": "अधिक लोड करा", + // "item.page.date": "Date", "item.page.date": "तारीख", + // "item.page.edit": "Edit this item", "item.page.edit": "हा आयटम संपादित करा", + // "item.page.files": "Files", "item.page.files": "फाइल्स", - "item.page.filesection.description": "वर्णन:", + // "item.page.filesection.description": "Description:", + // TODO New key - Add a translation + "item.page.filesection.description": "Description:", + // "item.page.filesection.download": "Download", "item.page.filesection.download": "डाउनलोड करा", - "item.page.filesection.format": "फॉरमॅट:", + // "item.page.filesection.format": "Format:", + // TODO New key - Add a translation + "item.page.filesection.format": "Format:", - "item.page.filesection.name": "नाव:", + // "item.page.filesection.name": "Name:", + // TODO New key - Add a translation + "item.page.filesection.name": "Name:", - "item.page.filesection.size": "आकार:", + // "item.page.filesection.size": "Size:", + // TODO New key - Add a translation + "item.page.filesection.size": "Size:", + // "item.page.journal.search.title": "Articles in this journal", "item.page.journal.search.title": "या जर्नलमधील लेख", + // "item.page.link.full": "Full item page", "item.page.link.full": "पूर्ण आयटम पृष्ठ", + // "item.page.link.simple": "Simple item page", "item.page.link.simple": "साधे आयटम पृष्ठ", + // "item.page.options": "Options", "item.page.options": "पर्याय", + // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", + // "item.page.orcid.tooltip": "Open ORCID setting page", "item.page.orcid.tooltip": "ORCID सेटिंग पृष्ठ उघडा", + // "item.page.person.search.title": "Articles by this author", "item.page.person.search.title": "या लेखकाचे लेख", + // "item.page.related-items.view-more": "Show {{ amount }} more", "item.page.related-items.view-more": "{{ amount }} अधिक दाखवा", + // "item.page.related-items.view-less": "Hide last {{ amount }}", "item.page.related-items.view-less": "शेवटचे {{ amount }} लपवा", + // "item.page.relationships.isAuthorOfPublication": "Publications", "item.page.relationships.isAuthorOfPublication": "प्रकाशने", + // "item.page.relationships.isJournalOfPublication": "Publications", "item.page.relationships.isJournalOfPublication": "प्रकाशने", + // "item.page.relationships.isOrgUnitOfPerson": "Authors", "item.page.relationships.isOrgUnitOfPerson": "लेखक", + // "item.page.relationships.isOrgUnitOfProject": "Research Projects", "item.page.relationships.isOrgUnitOfProject": "संशोधन प्रकल्प", + // "item.page.subject": "Keywords", "item.page.subject": "कीवर्ड", + // "item.page.uri": "URI", "item.page.uri": "URI", + // "item.page.bitstreams.view-more": "Show more", "item.page.bitstreams.view-more": "अधिक दाखवा", + // "item.page.bitstreams.collapse": "Collapse", "item.page.bitstreams.collapse": "संकुचित करा", + // "item.page.bitstreams.primary": "Primary", "item.page.bitstreams.primary": "प्राथमिक", + // "item.page.filesection.original.bundle": "Original bundle", "item.page.filesection.original.bundle": "मूळ बंडल", + // "item.page.filesection.license.bundle": "License bundle", "item.page.filesection.license.bundle": "परवाना बंडल", + // "item.page.return": "Back", "item.page.return": "मागे", + // "item.page.version.create": "Create new version", "item.page.version.create": "नवीन आवृत्ती तयार करा", + // "item.page.withdrawn": "Request a withdrawal for this item", "item.page.withdrawn": "या आयटमसाठी मागे घेण्याची विनंती करा", + // "item.page.reinstate": "Request reinstatement", "item.page.reinstate": "पुनर्स्थापनेची विनंती करा", + // "item.page.version.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.page.version.hasDraft": "नवीन आवृत्ती तयार केली जाऊ शकत नाही कारण आवृत्ती इतिहासात एक प्रगतीशील सबमिशन आहे", + // "item.page.claim.button": "Claim", "item.page.claim.button": "दावा करा", + // "item.page.claim.tooltip": "Claim this item as profile", "item.page.claim.tooltip": "हा आयटम प्रोफाइल म्हणून दावा करा", + // "item.page.image.alt.ROR": "ROR logo", "item.page.image.alt.ROR": "ROR लोगो", - "item.preview.dc.identifier.uri": "ओळखकर्ता:", + // "item.preview.dc.identifier.uri": "Identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier.uri": "Identifier:", - "item.preview.dc.contributor.author": "लेखक:", + // "item.preview.dc.contributor.author": "Authors:", + // TODO New key - Add a translation + "item.preview.dc.contributor.author": "Authors:", - "item.preview.dc.date.issued": "प्रकाशित तारीख:", + // "item.preview.dc.date.issued": "Published date:", + // TODO New key - Add a translation + "item.preview.dc.date.issued": "Published date:", + // "item.preview.dc.description": "Description:", + // TODO Source message changed - Revise the translation "item.preview.dc.description": "वर्णन:", - "item.preview.dc.description.abstract": "सारांश:", + // "item.preview.dc.description.abstract": "Abstract:", + // TODO New key - Add a translation + "item.preview.dc.description.abstract": "Abstract:", - "item.preview.dc.identifier.other": "इतर ओळखकर्ता:", + // "item.preview.dc.identifier.other": "Other identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier.other": "Other identifier:", - "item.preview.dc.language.iso": "भाषा:", + // "item.preview.dc.language.iso": "Language:", + // TODO New key - Add a translation + "item.preview.dc.language.iso": "Language:", - "item.preview.dc.subject": "विषय:", + // "item.preview.dc.subject": "Subjects:", + // TODO New key - Add a translation + "item.preview.dc.subject": "Subjects:", - "item.preview.dc.title": "शीर्षक:", + // "item.preview.dc.title": "Title:", + // TODO New key - Add a translation + "item.preview.dc.title": "Title:", - "item.preview.dc.type": "प्रकार:", + // "item.preview.dc.type": "Type:", + // TODO New key - Add a translation + "item.preview.dc.type": "Type:", + // "item.preview.oaire.version": "Version", "item.preview.oaire.version": "आवृत्ती", + // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "मुद्दा", + // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "खंड", + // "item.preview.oaire.citation.title": "Citation container", "item.preview.oaire.citation.title": "उल्लेख कंटेनर", + // "item.preview.oaire.citation.startPage": "Citation start page", "item.preview.oaire.citation.startPage": "उल्लेख प्रारंभ पृष्ठ", + // "item.preview.oaire.citation.endPage": "Citation end page", "item.preview.oaire.citation.endPage": "उल्लेख समाप्त पृष्ठ", + // "item.preview.dc.relation.hasversion": "Has version", "item.preview.dc.relation.hasversion": "आवृत्ती आहे", + // "item.preview.dc.relation.ispartofseries": "Is part of series", "item.preview.dc.relation.ispartofseries": "मालिकेचा भाग आहे", + // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "हक्क", - "item.preview.dc.identifier.other": "इतर ओळखकर्ता", + // "item.preview.dc.identifier.other": "Other Identifier", + "item.preview.dc.identifier.other": "इतर ओळखकर्ता:", + // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", + // "item.preview.dc.identifier.isbn": "ISBN", "item.preview.dc.identifier.isbn": "ISBN", - "item.preview.dc.identifier": "ओळखकर्ता:", + // "item.preview.dc.identifier": "Identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier": "Identifier:", + // "item.preview.dc.relation.ispartof": "Journal or Series", "item.preview.dc.relation.ispartof": "जर्नल किंवा मालिका", + // "item.preview.dc.identifier.doi": "DOI", "item.preview.dc.identifier.doi": "DOI", - "item.preview.dc.publisher": "प्रकाशक:", + // "item.preview.dc.publisher": "Publisher:", + // TODO New key - Add a translation + "item.preview.dc.publisher": "Publisher:", - "item.preview.person.familyName": "आडनाव:", + // "item.preview.person.familyName": "Surname:", + // TODO New key - Add a translation + "item.preview.person.familyName": "Surname:", - "item.preview.person.givenName": "नाव:", + // "item.preview.person.givenName": "Name:", + // TODO New key - Add a translation + "item.preview.person.givenName": "Name:", + // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", - "item.preview.person.affiliation.name": "संलग्नता:", + // "item.preview.person.affiliation.name": "Affiliations:", + // TODO New key - Add a translation + "item.preview.person.affiliation.name": "Affiliations:", - "item.preview.project.funder.name": "फंडर:", + // "item.preview.project.funder.name": "Funder:", + // TODO New key - Add a translation + "item.preview.project.funder.name": "Funder:", - "item.preview.project.funder.identifier": "फंडर ओळखकर्ता:", + // "item.preview.project.funder.identifier": "Funder Identifier:", + // TODO New key - Add a translation + "item.preview.project.funder.identifier": "Funder Identifier:", + // "item.preview.project.investigator": "Project Investigator", "item.preview.project.investigator": "प्रकल्प अन्वेषक", - "item.preview.oaire.awardNumber": "फंडिंग आयडी:", + // "item.preview.oaire.awardNumber": "Funding ID:", + // TODO New key - Add a translation + "item.preview.oaire.awardNumber": "Funding ID:", - "item.preview.dc.title.alternative": "अक्रोनिम:", + // "item.preview.dc.title.alternative": "Acronym:", + // TODO New key - Add a translation + "item.preview.dc.title.alternative": "Acronym:", - "item.preview.dc.coverage.spatial": "क्षेत्राधिकार:", + // "item.preview.dc.coverage.spatial": "Jurisdiction:", + // TODO New key - Add a translation + "item.preview.dc.coverage.spatial": "Jurisdiction:", - "item.preview.oaire.fundingStream": "फंडिंग स्ट्रीम:", + // "item.preview.oaire.fundingStream": "Funding Stream:", + // TODO New key - Add a translation + "item.preview.oaire.fundingStream": "Funding Stream:", + // "item.preview.oairecerif.identifier.url": "URL", "item.preview.oairecerif.identifier.url": "URL", + // "item.preview.organization.address.addressCountry": "Country", "item.preview.organization.address.addressCountry": "देश", + // "item.preview.organization.foundingDate": "Founding Date", "item.preview.organization.foundingDate": "स्थापनेची तारीख", + // "item.preview.organization.identifier.crossrefid": "Crossref ID", "item.preview.organization.identifier.crossrefid": "Crossref आयडी", + // "item.preview.organization.identifier.isni": "ISNI", "item.preview.organization.identifier.isni": "ISNI", + // "item.preview.organization.identifier.ror": "ROR ID", "item.preview.organization.identifier.ror": "ROR आयडी", + // "item.preview.organization.legalName": "Legal Name", "item.preview.organization.legalName": "कायदेशीर नाव", - "item.preview.dspace.entity.type": "घटक प्रकार:", + // "item.preview.dspace.entity.type": "Entity Type:", + // TODO New key - Add a translation + "item.preview.dspace.entity.type": "Entity Type:", + // "item.preview.creativework.publisher": "Publisher", "item.preview.creativework.publisher": "प्रकाशक", + // "item.preview.creativeworkseries.issn": "ISSN", "item.preview.creativeworkseries.issn": "ISSN", + // "item.preview.dc.identifier.issn": "ISSN", "item.preview.dc.identifier.issn": "ISSN", + // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "OpenAlex ओळखकर्ता", - "item.preview.dc.description": "वर्णन", + // "item.preview.dc.description": "Description", + // TODO Source message changed - Revise the translation + "item.preview.dc.description": "वर्णन:", + // "item.select.confirm": "Confirm selected", "item.select.confirm": "निवडलेले पुष्टी करा", + // "item.select.empty": "No items to show", "item.select.empty": "दाखविण्यासाठी कोणतेही आयटम नाहीत", + // "item.select.table.selected": "Selected items", "item.select.table.selected": "निवडलेले आयटम", + // "item.select.table.select": "Select item", "item.select.table.select": "आयटम निवडा", + // "item.select.table.deselect": "Deselect item", "item.select.table.deselect": "आयटम निवड रद्द करा", + // "item.select.table.author": "Author", "item.select.table.author": "लेखक", + // "item.select.table.collection": "Collection", "item.select.table.collection": "संग्रह", + // "item.select.table.title": "Title", "item.select.table.title": "शीर्षक", + // "item.version.history.empty": "There are no other versions for this item yet.", "item.version.history.empty": "या आयटमसाठी अद्याप इतर आवृत्त्या नाहीत.", + // "item.version.history.head": "Version History", "item.version.history.head": "आवृत्ती इतिहास", + // "item.version.history.return": "Back", "item.version.history.return": "मागे", + // "item.version.history.selected": "Selected version", "item.version.history.selected": "निवडलेली आवृत्ती", + // "item.version.history.selected.alert": "You are currently viewing version {{version}} of the item.", "item.version.history.selected.alert": "आपण सध्या आयटमची आवृत्ती {{version}} पाहत आहात.", + // "item.version.history.table.version": "Version", "item.version.history.table.version": "आवृत्ती", + // "item.version.history.table.item": "Item", "item.version.history.table.item": "आयटम", + // "item.version.history.table.editor": "Editor", "item.version.history.table.editor": "संपादक", + // "item.version.history.table.date": "Date", "item.version.history.table.date": "तारीख", + // "item.version.history.table.summary": "Summary", "item.version.history.table.summary": "सारांश", + // "item.version.history.table.workspaceItem": "Workspace item", "item.version.history.table.workspaceItem": "वर्कस्पेस आयटम", + // "item.version.history.table.workflowItem": "Workflow item", "item.version.history.table.workflowItem": "वर्कफ्लो आयटम", + // "item.version.history.table.actions": "Action", "item.version.history.table.actions": "क्रिया", + // "item.version.history.table.action.editWorkspaceItem": "Edit workspace item", "item.version.history.table.action.editWorkspaceItem": "वर्कस्पेस आयटम संपादित करा", + // "item.version.history.table.action.editSummary": "Edit summary", "item.version.history.table.action.editSummary": "सारांश संपादित करा", + // "item.version.history.table.action.saveSummary": "Save summary edits", "item.version.history.table.action.saveSummary": "सारांश संपादन जतन करा", + // "item.version.history.table.action.discardSummary": "Discard summary edits", "item.version.history.table.action.discardSummary": "सारांश संपादन रद्द करा", + // "item.version.history.table.action.newVersion": "Create new version from this one", "item.version.history.table.action.newVersion": "या आवृत्तीतून नवीन आवृत्ती तयार करा", + // "item.version.history.table.action.deleteVersion": "Delete version", "item.version.history.table.action.deleteVersion": "आवृत्ती हटवा", + // "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.history.table.action.hasDraft": "नवीन आवृत्ती तयार केली जाऊ शकत नाही कारण आवृत्ती इतिहासात एक प्रगतीशील सबमिशन आहे", + // "item.version.notice": "This is not the latest version of this item. The latest version can be found here.", "item.version.notice": "ही आयटमची नवीनतम आवृत्ती नाही. नवीनतम आवृत्ती येथे आढळू शकते येथे.", + // "item.version.create.modal.header": "New version", "item.version.create.modal.header": "नवीन आवृत्ती", + // "item.qa.withdrawn.modal.header": "Request withdrawal", "item.qa.withdrawn.modal.header": "मागे घेण्याची विनंती", + // "item.qa.reinstate.modal.header": "Request reinstate", "item.qa.reinstate.modal.header": "पुनर्स्थापनेची विनंती", + // "item.qa.reinstate.create.modal.header": "New version", "item.qa.reinstate.create.modal.header": "नवीन आवृत्ती", + // "item.version.create.modal.text": "Create a new version for this item", "item.version.create.modal.text": "या आयटमसाठी नवीन आवृत्ती तयार करा", + // "item.version.create.modal.text.startingFrom": "starting from version {{version}}", "item.version.create.modal.text.startingFrom": "आवृत्ती {{version}} पासून सुरू", + // "item.version.create.modal.button.confirm": "Create", "item.version.create.modal.button.confirm": "तयार करा", + // "item.version.create.modal.button.confirm.tooltip": "Create new version", "item.version.create.modal.button.confirm.tooltip": "नवीन आवृत्ती तयार करा", + // "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "Send request", "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "विनंती पाठवा", + // "qa-withdrown.create.modal.button.confirm": "Withdraw", "qa-withdrown.create.modal.button.confirm": "मागे घ्या", + // "qa-reinstate.create.modal.button.confirm": "Reinstate", "qa-reinstate.create.modal.button.confirm": "पुनर्स्थापित करा", + // "item.version.create.modal.button.cancel": "Cancel", "item.version.create.modal.button.cancel": "रद्द करा", + // "item.qa.withdrawn-reinstate.create.modal.button.cancel": "Cancel", "item.qa.withdrawn-reinstate.create.modal.button.cancel": "रद्द करा", + // "item.version.create.modal.button.cancel.tooltip": "Do not create new version", "item.version.create.modal.button.cancel.tooltip": "नवीन आवृत्ती तयार करू नका", + // "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "Do not send request", "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "विनंती पाठवू नका", + // "item.version.create.modal.form.summary.label": "Summary", "item.version.create.modal.form.summary.label": "सारांश", + // "qa-withdrawn.create.modal.form.summary.label": "You are requesting to withdraw this item", "qa-withdrawn.create.modal.form.summary.label": "आपण हा आयटम मागे घेण्याची विनंती करत आहात", + // "qa-withdrawn.create.modal.form.summary2.label": "Please enter the reason for the withdrawal", "qa-withdrawn.create.modal.form.summary2.label": "कृपया मागे घेण्याचे कारण प्रविष्ट करा", + // "qa-reinstate.create.modal.form.summary.label": "You are requesting to reinstate this item", "qa-reinstate.create.modal.form.summary.label": "आपण हा आयटम पुनर्स्थापित करण्याची विनंती करत आहात", + // "qa-reinstate.create.modal.form.summary2.label": "Please enter the reason for the reinstatment", "qa-reinstate.create.modal.form.summary2.label": "कृपया पुनर्स्थापनेचे कारण प्रविष्ट करा", + // "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version", "item.version.create.modal.form.summary.placeholder": "नवीन आवृत्तीचा सारांश प्रविष्ट करा", + // "qa-withdrown.modal.form.summary.placeholder": "Enter the reason for the withdrawal", "qa-withdrown.modal.form.summary.placeholder": "मागे घेण्याचे कारण प्रविष्ट करा", + // "qa-reinstate.modal.form.summary.placeholder": "Enter the reason for the reinstatement", "qa-reinstate.modal.form.summary.placeholder": "पुनर्स्थापनेचे कारण प्रविष्ट करा", + // "item.version.create.modal.submitted.header": "Creating new version...", "item.version.create.modal.submitted.header": "नवीन आवृत्ती तयार करत आहे...", + // "item.qa.withdrawn.modal.submitted.header": "Sending withdrawn request...", "item.qa.withdrawn.modal.submitted.header": "मागे घेण्याची विनंती पाठवत आहे...", + // "correction-type.manage-relation.action.notification.reinstate": "Reinstate request sent.", "correction-type.manage-relation.action.notification.reinstate": "पुनर्स्थापनेची विनंती पाठवली.", + // "correction-type.manage-relation.action.notification.withdrawn": "Withdraw request sent.", "correction-type.manage-relation.action.notification.withdrawn": "मागे घेण्याची विनंती पाठवली.", + // "item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.", "item.version.create.modal.submitted.text": "नवीन आवृत्ती तयार केली जात आहे. आयटममध्ये बरेच संबंध असल्यास यास काही वेळ लागू शकतो.", + // "item.version.create.notification.success": "New version has been created with version number {{version}}", "item.version.create.notification.success": "आवृत्ती क्रमांक {{version}} सह नवीन आवृत्ती तयार केली गेली आहे", + // "item.version.create.notification.failure": "New version has not been created", "item.version.create.notification.failure": "नवीन आवृत्ती तयार केली गेली नाही", + // "item.version.create.notification.inProgress": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.create.notification.inProgress": "आवृत्ती इतिहासात एक प्रगतीशील सबमिशन असल्यामुळे नवीन आवृत्ती तयार केली जाऊ शकत नाही", + // "item.version.delete.modal.header": "Delete version", "item.version.delete.modal.header": "आवृत्ती हटवा", + // "item.version.delete.modal.text": "Do you want to delete version {{version}}?", "item.version.delete.modal.text": "आपण आवृत्ती {{version}} हटवू इच्छिता?", + // "item.version.delete.modal.button.confirm": "Delete", "item.version.delete.modal.button.confirm": "हटवा", + // "item.version.delete.modal.button.confirm.tooltip": "Delete this version", "item.version.delete.modal.button.confirm.tooltip": "ही आवृत्ती हटवा", + // "item.version.delete.modal.button.cancel": "Cancel", "item.version.delete.modal.button.cancel": "रद्द करा", + // "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version", "item.version.delete.modal.button.cancel.tooltip": "ही आवृत्ती हटवू नका", + // "item.version.delete.notification.success": "Version number {{version}} has been deleted", "item.version.delete.notification.success": "आवृत्ती क्रमांक {{version}} हटवली गेली आहे", + // "item.version.delete.notification.failure": "Version number {{version}} has not been deleted", "item.version.delete.notification.failure": "आवृत्ती क्रमांक {{version}} हटवली गेली नाही", + // "item.version.edit.notification.success": "The summary of version number {{version}} has been changed", "item.version.edit.notification.success": "आवृत्ती क्रमांक {{version}} चा सारांश बदलला गेला आहे", + // "item.version.edit.notification.failure": "The summary of version number {{version}} has not been changed", "item.version.edit.notification.failure": "आवृत्ती क्रमांक {{version}} चा सारांश बदलला गेला नाही", + // "itemtemplate.edit.metadata.add-button": "Add", "itemtemplate.edit.metadata.add-button": "जोडा", + // "itemtemplate.edit.metadata.discard-button": "Discard", "itemtemplate.edit.metadata.discard-button": "रद्द करा", + // "itemtemplate.edit.metadata.edit.language": "Edit language", "itemtemplate.edit.metadata.edit.language": "भाषा संपादित करा", + // "itemtemplate.edit.metadata.edit.value": "Edit value", "itemtemplate.edit.metadata.edit.value": "मूल्य संपादित करा", + // "itemtemplate.edit.metadata.edit.buttons.confirm": "Confirm", "itemtemplate.edit.metadata.edit.buttons.confirm": "पुष्टी करा", + // "itemtemplate.edit.metadata.edit.buttons.drag": "Drag to reorder", "itemtemplate.edit.metadata.edit.buttons.drag": "पुन्हा क्रमित करण्यासाठी ड्रॅग करा", + // "itemtemplate.edit.metadata.edit.buttons.edit": "Edit", "itemtemplate.edit.metadata.edit.buttons.edit": "संपादित करा", + // "itemtemplate.edit.metadata.edit.buttons.remove": "Remove", "itemtemplate.edit.metadata.edit.buttons.remove": "काढा", + // "itemtemplate.edit.metadata.edit.buttons.undo": "Undo changes", "itemtemplate.edit.metadata.edit.buttons.undo": "बदल पूर्ववत करा", + // "itemtemplate.edit.metadata.edit.buttons.unedit": "Stop editing", "itemtemplate.edit.metadata.edit.buttons.unedit": "संपादन थांबवा", + // "itemtemplate.edit.metadata.empty": "The item template currently doesn't contain any metadata. Click Add to start adding a metadata value.", "itemtemplate.edit.metadata.empty": "आयटम टेम्पलेट सध्या कोणतेही मेटाडेटा समाविष्ट करत नाही. मेटाडेटा मूल्य जोडण्यासाठी जोडा क्लिक करा.", + // "itemtemplate.edit.metadata.headers.edit": "Edit", "itemtemplate.edit.metadata.headers.edit": "संपादित करा", + // "itemtemplate.edit.metadata.headers.field": "Field", "itemtemplate.edit.metadata.headers.field": "फील्ड", + // "itemtemplate.edit.metadata.headers.language": "Lang", "itemtemplate.edit.metadata.headers.language": "भाषा", + // "itemtemplate.edit.metadata.headers.value": "Value", "itemtemplate.edit.metadata.headers.value": "मूल्य", + // "itemtemplate.edit.metadata.metadatafield": "Edit field", "itemtemplate.edit.metadata.metadatafield": "फील्ड संपादित करा", + // "itemtemplate.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "itemtemplate.edit.metadata.metadatafield.error": "मेटाडेटा फील्ड सत्यापित करताना त्रुटी आली", + // "itemtemplate.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "itemtemplate.edit.metadata.metadatafield.invalid": "कृपया वैध मेटाडेटा फील्ड निवडा", + // "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "itemtemplate.edit.metadata.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", + // "itemtemplate.edit.metadata.notifications.discarded.title": "Changes discarded", "itemtemplate.edit.metadata.notifications.discarded.title": "बदल रद्द केले", + // "itemtemplate.edit.metadata.notifications.error.title": "An error occurred", "itemtemplate.edit.metadata.notifications.error.title": "त्रुटी आली", + // "itemtemplate.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "itemtemplate.edit.metadata.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", + // "itemtemplate.edit.metadata.notifications.invalid.title": "Metadata invalid", "itemtemplate.edit.metadata.notifications.invalid.title": "मेटाडेटा अवैध", + // "itemtemplate.edit.metadata.notifications.outdated.content": "The item template you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", "itemtemplate.edit.metadata.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम टेम्पलेट दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", + // "itemtemplate.edit.metadata.notifications.outdated.title": "Changes outdated", "itemtemplate.edit.metadata.notifications.outdated.title": "बदल कालबाह्य झाले", + // "itemtemplate.edit.metadata.notifications.saved.content": "Your changes to this item template's metadata were saved.", "itemtemplate.edit.metadata.notifications.saved.content": "या आयटम टेम्पलेटच्या मेटाडेटामध्ये आपले बदल जतन केले गेले.", + // "itemtemplate.edit.metadata.notifications.saved.title": "Metadata saved", "itemtemplate.edit.metadata.notifications.saved.title": "मेटाडेटा जतन केले", + // "itemtemplate.edit.metadata.reinstate-button": "Undo", "itemtemplate.edit.metadata.reinstate-button": "पूर्ववत करा", + // "itemtemplate.edit.metadata.reset-order-button": "Undo reorder", "itemtemplate.edit.metadata.reset-order-button": "पुन्हा क्रमित पूर्ववत करा", + // "itemtemplate.edit.metadata.save-button": "Save", "itemtemplate.edit.metadata.save-button": "जतन करा", + // "journal.listelement.badge": "Journal", "journal.listelement.badge": "जर्नल", + // "journal.page.description": "Description", "journal.page.description": "वर्णन", + // "journal.page.edit": "Edit this item", "journal.page.edit": "हा आयटम संपादित करा", + // "journal.page.editor": "Editor-in-Chief", "journal.page.editor": "मुख्य संपादक", + // "journal.page.issn": "ISSN", "journal.page.issn": "ISSN", + // "journal.page.publisher": "Publisher", "journal.page.publisher": "प्रकाशक", + // "journal.page.options": "Options", "journal.page.options": "पर्याय", - "journal.page.titleprefix": "जर्नल: ", + // "journal.page.titleprefix": "Journal: ", + // TODO New key - Add a translation + "journal.page.titleprefix": "Journal: ", + // "journal.search.results.head": "Journal Search Results", "journal.search.results.head": "जर्नल शोध परिणाम", + // "journal-relationships.search.results.head": "Journal Search Results", "journal-relationships.search.results.head": "जर्नल शोध परिणाम", + // "journal.search.title": "Journal Search", "journal.search.title": "जर्नल शोध", + // "journalissue.listelement.badge": "Journal Issue", "journalissue.listelement.badge": "जर्नल अंक", + // "journalissue.page.description": "Description", "journalissue.page.description": "वर्णन", + // "journalissue.page.edit": "Edit this item", "journalissue.page.edit": "हा आयटम संपादित करा", + // "journalissue.page.issuedate": "Issue Date", "journalissue.page.issuedate": "अंक तारीख", + // "journalissue.page.journal-issn": "Journal ISSN", "journalissue.page.journal-issn": "जर्नल ISSN", + // "journalissue.page.journal-title": "Journal Title", "journalissue.page.journal-title": "जर्नल शीर्षक", + // "journalissue.page.keyword": "Keywords", "journalissue.page.keyword": "कीवर्ड", + // "journalissue.page.number": "Number", "journalissue.page.number": "क्रमांक", + // "journalissue.page.options": "Options", "journalissue.page.options": "पर्याय", - "journalissue.page.titleprefix": "जर्नल अंक: ", + // "journalissue.page.titleprefix": "Journal Issue: ", + // TODO New key - Add a translation + "journalissue.page.titleprefix": "Journal Issue: ", + // "journalissue.search.results.head": "Journal Issue Search Results", "journalissue.search.results.head": "जर्नल अंक शोध परिणाम", + // "journalvolume.listelement.badge": "Journal Volume", "journalvolume.listelement.badge": "जर्नल खंड", + // "journalvolume.page.description": "Description", "journalvolume.page.description": "वर्णन", + // "journalvolume.page.edit": "Edit this item", "journalvolume.page.edit": "हा आयटम संपादित करा", + // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "अंक तारीख", + // "journalvolume.page.options": "Options", "journalvolume.page.options": "पर्याय", - "journalvolume.page.titleprefix": "जर्नल खंड: ", + // "journalvolume.page.titleprefix": "Journal Volume: ", + // TODO New key - Add a translation + "journalvolume.page.titleprefix": "Journal Volume: ", + // "journalvolume.page.volume": "Volume", "journalvolume.page.volume": "खंड", + // "journalvolume.search.results.head": "Journal Volume Search Results", "journalvolume.search.results.head": "जर्नल खंड शोध परिणाम", + // "iiifsearchable.listelement.badge": "Document Media", "iiifsearchable.listelement.badge": "दस्तऐवज मीडिया", - "iiifsearchable.page.titleprefix": "दस्तऐवज: ", + // "iiifsearchable.page.titleprefix": "Document: ", + // TODO New key - Add a translation + "iiifsearchable.page.titleprefix": "Document: ", - "iiifsearchable.page.doi": "स्थायी लिंक: ", + // "iiifsearchable.page.doi": "Permanent Link: ", + // TODO New key - Add a translation + "iiifsearchable.page.doi": "Permanent Link: ", - "iiifsearchable.page.issue": "मुद्दा: ", + // "iiifsearchable.page.issue": "Issue: ", + // TODO New key - Add a translation + "iiifsearchable.page.issue": "Issue: ", - "iiifsearchable.page.description": "वर्णन: ", + // "iiifsearchable.page.description": "Description: ", + // TODO New key - Add a translation + "iiifsearchable.page.description": "Description: ", + // "iiifviewer.fullscreen.notice": "Use full screen for better viewing.", "iiifviewer.fullscreen.notice": "चांगल्या पाहण्यासाठी पूर्ण स्क्रीन वापरा.", + // "iiif.listelement.badge": "Image Media", "iiif.listelement.badge": "प्रतिमा मीडिया", - "iiif.page.titleprefix": "प्रतिमा: ", + // "iiif.page.titleprefix": "Image: ", + // TODO New key - Add a translation + "iiif.page.titleprefix": "Image: ", - "iiif.page.doi": "स्थायी लिंक: ", + // "iiif.page.doi": "Permanent Link: ", + // TODO New key - Add a translation + "iiif.page.doi": "Permanent Link: ", - "iiif.page.issue": "मुद्दा: ", + // "iiif.page.issue": "Issue: ", + // TODO New key - Add a translation + "iiif.page.issue": "Issue: ", - "iiif.page.description": "वर्णन: ", + // "iiif.page.description": "Description: ", + // TODO New key - Add a translation + "iiif.page.description": "Description: ", + // "loading.bitstream": "Loading bitstream...", "loading.bitstream": "बिटस्ट्रीम लोड करत आहे...", + // "loading.bitstreams": "Loading bitstreams...", "loading.bitstreams": "बिटस्ट्रीम लोड करत आहे...", + // "loading.browse-by": "Loading items...", "loading.browse-by": "आयटम लोड करत आहे...", + // "loading.browse-by-page": "Loading page...", "loading.browse-by-page": "पृष्ठ लोड करत आहे...", + // "loading.collection": "Loading collection...", "loading.collection": "संग्रह लोड करत आहे...", + // "loading.collections": "Loading collections...", "loading.collections": "संग्रह लोड करत आहे...", + // "loading.content-source": "Loading content source...", "loading.content-source": "सामग्री स्रोत लोड करत आहे...", + // "loading.community": "Loading community...", "loading.community": "समुदाय लोड करत आहे...", + // "loading.default": "Loading...", "loading.default": "लोड करत आहे...", + // "loading.item": "Loading item...", "loading.item": "आयटम लोड करत आहे...", + // "loading.items": "Loading items...", "loading.items": "आयटम लोड करत आहे...", + // "loading.mydspace-results": "Loading items...", "loading.mydspace-results": "आयटम लोड करत आहे...", + // "loading.objects": "Loading...", "loading.objects": "लोड करत आहे...", + // "loading.recent-submissions": "Loading recent submissions...", "loading.recent-submissions": "अलीकडील सबमिशन लोड करत आहे...", + // "loading.search-results": "Loading search results...", "loading.search-results": "शोध परिणाम लोड करत आहे...", + // "loading.sub-collections": "Loading sub-collections...", "loading.sub-collections": "उप-संग्रह लोड करत आहे...", + // "loading.sub-communities": "Loading sub-communities...", "loading.sub-communities": "उप-समुदाय लोड करत आहे...", + // "loading.top-level-communities": "Loading top-level communities...", "loading.top-level-communities": "शीर्ष-स्तरीय समुदाय लोड करत आहे...", + // "login.form.email": "Email address", "login.form.email": "ईमेल पत्ता", + // "login.form.forgot-password": "Have you forgotten your password?", "login.form.forgot-password": "आपला पासवर्ड विसरलात?", + // "login.form.header": "Please log in to DSpace", "login.form.header": "कृपया DSpace मध्ये लॉग इन करा", + // "login.form.new-user": "New user? Click here to register.", "login.form.new-user": "नवीन वापरकर्ता? नोंदणीसाठी येथे क्लिक करा.", + // "login.form.oidc": "Log in with OIDC", "login.form.oidc": "OIDC सह लॉग इन करा", + // "login.form.orcid": "Log in with ORCID", "login.form.orcid": "ORCID सह लॉग इन करा", + // "login.form.password": "Password", "login.form.password": "पासवर्ड", + // "login.form.saml": "Log in with SAML", "login.form.saml": "SAML सह लॉग इन करा", + // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Shibboleth सह लॉग इन करा", + // "login.form.submit": "Log in", "login.form.submit": "लॉग इन करा", + // "login.title": "Login", "login.title": "लॉग इन", + // "login.breadcrumbs": "Login", "login.breadcrumbs": "लॉग इन", + // "logout.form.header": "Log out from DSpace", "logout.form.header": "DSpace मधून लॉग आउट करा", + // "logout.form.submit": "Log out", "logout.form.submit": "लॉग आउट करा", + // "logout.title": "Logout", "logout.title": "लॉग आउट", + // "menu.header.nav.description": "Admin navigation bar", "menu.header.nav.description": "प्रशासन नेव्हिगेशन बार", + // "menu.header.admin": "Management", "menu.header.admin": "व्यवस्थापन", + // "menu.header.image.logo": "Repository logo", "menu.header.image.logo": "संग्रह लोगो", + // "menu.header.admin.description": "Management menu", "menu.header.admin.description": "व्यवस्थापन मेनू", + // "menu.section.access_control": "Access Control", "menu.section.access_control": "प्रवेश नियंत्रण", + // "menu.section.access_control_authorizations": "Authorizations", "menu.section.access_control_authorizations": "प्राधिकरण", + // "menu.section.access_control_bulk": "Bulk Access Management", "menu.section.access_control_bulk": "बल्क प्रवेश व्यवस्थापन", + // "menu.section.access_control_groups": "Groups", "menu.section.access_control_groups": "गट", + // "menu.section.access_control_people": "People", "menu.section.access_control_people": "लोक", + // "menu.section.reports": "Reports", "menu.section.reports": "अहवाल", + // "menu.section.reports.collections": "Filtered Collections", "menu.section.reports.collections": "फिल्टर केलेले संग्रह", + // "menu.section.reports.queries": "Metadata Query", "menu.section.reports.queries": "मेटाडेटा क्वेरी", + // "menu.section.admin_search": "Admin Search", "menu.section.admin_search": "प्रशासन शोध", + // "menu.section.browse_community": "This Community", "menu.section.browse_community": "हा समुदाय", + // "menu.section.browse_community_by_author": "By Author", "menu.section.browse_community_by_author": "लेखकानुसार", + // "menu.section.browse_community_by_issue_date": "By Issue Date", "menu.section.browse_community_by_issue_date": "मुद्द्यानुसार", + // "menu.section.browse_community_by_title": "By Title", "menu.section.browse_community_by_title": "शीर्षकानुसार", + // "menu.section.browse_global": "All of DSpace", "menu.section.browse_global": "संपूर्ण DSpace", + // "menu.section.browse_global_by_author": "By Author", "menu.section.browse_global_by_author": "लेखकानुसार", + // "menu.section.browse_global_by_dateissued": "By Issue Date", "menu.section.browse_global_by_dateissued": "मुद्द्यानुसार", + // "menu.section.browse_global_by_subject": "By Subject", "menu.section.browse_global_by_subject": "विषयानुसार", + // "menu.section.browse_global_by_srsc": "By Subject Category", "menu.section.browse_global_by_srsc": "विषय श्रेणीनुसार", + // "menu.section.browse_global_by_nsi": "By Norwegian Science Index", "menu.section.browse_global_by_nsi": "नॉर्वेजियन सायन्स इंडेक्सनुसार", + // "menu.section.browse_global_by_title": "By Title", "menu.section.browse_global_by_title": "शीर्षकानुसार", + // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "समुदाय आणि संग्रह", + // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", "menu.section.browse_global_geospatial_map": "भौगोलिक स्थानानुसार (नकाशा)", + // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "नियंत्रण पॅनेल", + // "menu.section.curation_task": "Curation Task", "menu.section.curation_task": "क्युरेशन कार्य", + // "menu.section.edit": "Edit", "menu.section.edit": "संपादित करा", + // "menu.section.edit_collection": "Collection", "menu.section.edit_collection": "संग्रह", + // "menu.section.edit_community": "Community", "menu.section.edit_community": "समुदाय", + // "menu.section.edit_item": "Item", "menu.section.edit_item": "आयटम", + // "menu.section.export": "Export", "menu.section.export": "निर्यात", + // "menu.section.export_collection": "Collection", "menu.section.export_collection": "संग्रह", + // "menu.section.export_community": "Community", "menu.section.export_community": "समुदाय", + // "menu.section.export_item": "Item", "menu.section.export_item": "आयटम", + // "menu.section.export_metadata": "Metadata", "menu.section.export_metadata": "मेटाडेटा", + // "menu.section.export_batch": "Batch Export (ZIP)", "menu.section.export_batch": "बॅच निर्यात (ZIP)", + // "menu.section.icon.access_control": "Access Control menu section", "menu.section.icon.access_control": "प्रवेश नियंत्रण मेनू विभाग", + // "menu.section.icon.reports": "Reports menu section", "menu.section.icon.reports": "अहवाल मेनू विभाग", + // "menu.section.icon.admin_search": "Admin search menu section", "menu.section.icon.admin_search": "प्रशासन शोध मेनू विभाग", + // "menu.section.icon.control_panel": "Control Panel menu section", "menu.section.icon.control_panel": "नियंत्रण पॅनेल मेनू विभाग", + // "menu.section.icon.curation_tasks": "Curation Task menu section", "menu.section.icon.curation_tasks": "क्युरेशन कार्य मेनू विभाग", + // "menu.section.icon.edit": "Edit menu section", "menu.section.icon.edit": "संपादन मेनू विभाग", + // "menu.section.icon.export": "Export menu section", "menu.section.icon.export": "निर्यात मेनू विभाग", + // "menu.section.icon.find": "Find menu section", "menu.section.icon.find": "शोधा मेनू विभाग", + // "menu.section.icon.health": "Health check menu section", "menu.section.icon.health": "आरोग्य तपासणी मेनू विभाग", + // "menu.section.icon.import": "Import menu section", "menu.section.icon.import": "आयात मेनू विभाग", + // "menu.section.icon.new": "New menu section", "menu.section.icon.new": "नवीन मेनू विभाग", + // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "साइडबार पिन करा", + // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "साइडबार अनपिन करा", + // "menu.section.icon.notifications": "Notifications menu section", "menu.section.icon.notifications": "सूचना मेनू विभाग", + // "menu.section.import": "Import", "menu.section.import": "आयात", + // "menu.section.import_batch": "Batch Import (ZIP)", "menu.section.import_batch": "बॅच आयात (ZIP)", + // "menu.section.import_metadata": "Metadata", "menu.section.import_metadata": "मेटाडेटा", + // "menu.section.new": "New", "menu.section.new": "नवीन", + // "menu.section.new_collection": "Collection", "menu.section.new_collection": "संग्रह", + // "menu.section.new_community": "Community", "menu.section.new_community": "समुदाय", + // "menu.section.new_item": "Item", "menu.section.new_item": "आयटम", + // "menu.section.new_item_version": "Item Version", "menu.section.new_item_version": "आयटम आवृत्ती", + // "menu.section.new_process": "Process", "menu.section.new_process": "प्रक्रिया", + // "menu.section.notifications": "Notifications", "menu.section.notifications": "सूचना", + // "menu.section.quality-assurance": "Quality Assurance", "menu.section.quality-assurance": "गुणवत्ता आश्वासन", + // "menu.section.notifications_publication-claim": "Publication Claim", "menu.section.notifications_publication-claim": "प्रकाशन दावा", + // "menu.section.pin": "Pin sidebar", "menu.section.pin": "साइडबार पिन करा", + // "menu.section.unpin": "Unpin sidebar", "menu.section.unpin": "साइडबार अनपिन करा", + // "menu.section.processes": "Processes", "menu.section.processes": "प्रक्रिया", + // "menu.section.health": "Health", "menu.section.health": "आरोग्य", + // "menu.section.registries": "Registries", "menu.section.registries": "नोंदणी", + // "menu.section.registries_format": "Format", "menu.section.registries_format": "फॉरमॅट", + // "menu.section.registries_metadata": "Metadata", "menu.section.registries_metadata": "मेटाडेटा", + // "menu.section.statistics": "Statistics", "menu.section.statistics": "आकडेवारी", + // "menu.section.statistics_task": "Statistics Task", "menu.section.statistics_task": "आकडेवारी कार्य", + // "menu.section.toggle.access_control": "Toggle Access Control section", "menu.section.toggle.access_control": "प्रवेश नियंत्रण विभाग टॉगल करा", + // "menu.section.toggle.reports": "Toggle Reports section", "menu.section.toggle.reports": "अहवाल विभाग टॉगल करा", + // "menu.section.toggle.control_panel": "Toggle Control Panel section", "menu.section.toggle.control_panel": "नियंत्रण पॅनेल विभाग टॉगल करा", + // "menu.section.toggle.curation_task": "Toggle Curation Task section", "menu.section.toggle.curation_task": "क्युरेशन कार्य विभाग टॉगल करा", + // "menu.section.toggle.edit": "Toggle Edit section", "menu.section.toggle.edit": "संपादन विभाग टॉगल करा", + // "menu.section.toggle.export": "Toggle Export section", "menu.section.toggle.export": "निर्यात विभाग टॉगल करा", + // "menu.section.toggle.find": "Toggle Find section", "menu.section.toggle.find": "शोधा विभाग टॉगल करा", + // "menu.section.toggle.import": "Toggle Import section", "menu.section.toggle.import": "आयात विभाग टॉगल करा", + // "menu.section.toggle.new": "Toggle New section", "menu.section.toggle.new": "नवीन विभाग टॉगल करा", + // "menu.section.toggle.registries": "Toggle Registries section", "menu.section.toggle.registries": "नोंदणी विभाग टॉगल करा", + // "menu.section.toggle.statistics_task": "Toggle Statistics Task section", "menu.section.toggle.statistics_task": "आकडेवारी कार्य विभाग टॉगल करा", + // "menu.section.workflow": "Administer Workflow", "menu.section.workflow": "वर्कफ्लो प्रशासित करा", + // "metadata-export-search.tooltip": "Export search results as CSV", "metadata-export-search.tooltip": "शोध परिणाम CSV म्हणून निर्यात करा", + // "metadata-export-search.submit.success": "The export was started successfully", "metadata-export-search.submit.success": "निर्यात यशस्वीरित्या सुरू झाली", + // "metadata-export-search.submit.error": "Starting the export has failed", "metadata-export-search.submit.error": "निर्यात सुरू करण्यात अयशस्वी", + // "mydspace.breadcrumbs": "MyDSpace", "mydspace.breadcrumbs": "MyDSpace", + // "mydspace.description": "", "mydspace.description": "", + // "mydspace.messages.controller-help": "Select this option to send a message to item's submitter.", "mydspace.messages.controller-help": "आयटमच्या सबमिटरला संदेश पाठवण्यासाठी हा पर्याय निवडा.", + // "mydspace.messages.description-placeholder": "Insert your message here...", "mydspace.messages.description-placeholder": "आपला संदेश येथे प्रविष्ट करा...", + // "mydspace.messages.hide-msg": "Hide message", "mydspace.messages.hide-msg": "संदेश लपवा", + // "mydspace.messages.mark-as-read": "Mark as read", "mydspace.messages.mark-as-read": "वाचले म्हणून चिन्हांकित करा", + // "mydspace.messages.mark-as-unread": "Mark as unread", "mydspace.messages.mark-as-unread": "न वाचले म्हणून चिन्हांकित करा", + // "mydspace.messages.no-content": "No content.", "mydspace.messages.no-content": "कोणतीही सामग्री नाही.", + // "mydspace.messages.no-messages": "No messages yet.", "mydspace.messages.no-messages": "अजून कोणतेही संदेश नाहीत.", + // "mydspace.messages.send-btn": "Send", "mydspace.messages.send-btn": "पाठवा", + // "mydspace.messages.show-msg": "Show message", "mydspace.messages.show-msg": "संदेश दाखवा", + // "mydspace.messages.subject-placeholder": "Subject...", "mydspace.messages.subject-placeholder": "विषय...", + // "mydspace.messages.submitter-help": "Select this option to send a message to controller.", "mydspace.messages.submitter-help": "नियंत्रकाला संदेश पाठवण्यासाठी हा पर्याय निवडा.", + // "mydspace.messages.title": "Messages", "mydspace.messages.title": "संदेश", + // "mydspace.messages.to": "To", "mydspace.messages.to": "प्रति", + // "mydspace.new-submission": "New submission", "mydspace.new-submission": "नवीन सबमिशन", + // "mydspace.new-submission-external": "Import metadata from external source", "mydspace.new-submission-external": "बाह्य स्रोतातून मेटाडेटा आयात करा", + // "mydspace.new-submission-external-short": "Import metadata", "mydspace.new-submission-external-short": "मेटाडेटा आयात करा", + // "mydspace.results.head": "Your submissions", "mydspace.results.head": "आपली सबमिशन", + // "mydspace.results.no-abstract": "No Abstract", "mydspace.results.no-abstract": "सारांश नाही", + // "mydspace.results.no-authors": "No Authors", "mydspace.results.no-authors": "लेखक नाहीत", + // "mydspace.results.no-collections": "No Collections", "mydspace.results.no-collections": "संग्रह नाहीत", + // "mydspace.results.no-date": "No Date", "mydspace.results.no-date": "तारीख नाही", + // "mydspace.results.no-files": "No Files", "mydspace.results.no-files": "फाइल्स नाहीत", + // "mydspace.results.no-results": "There were no items to show", "mydspace.results.no-results": "दाखविण्यासाठी कोणतेही आयटम नव्हते", + // "mydspace.results.no-title": "No title", "mydspace.results.no-title": "शीर्षक नाही", + // "mydspace.results.no-uri": "No URI", "mydspace.results.no-uri": "URI नाही", + // "mydspace.search-form.placeholder": "Search in MyDSpace...", "mydspace.search-form.placeholder": "MyDSpace मध्ये शोधा...", + // "mydspace.show.workflow": "Workflow tasks", "mydspace.show.workflow": "वर्कफ्लो कार्य", + // "mydspace.show.workspace": "Your submissions", "mydspace.show.workspace": "आपली सबमिशन", + // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "पर्यवेक्षित आयटम", + // "mydspace.status": "My DSpace status:", + // TODO New key - Add a translation + "mydspace.status": "My DSpace status:", + + // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "संग्रहित", + // "mydspace.status.mydspaceValidation": "Validation", "mydspace.status.mydspaceValidation": "प्रमाणीकरण", + // "mydspace.status.mydspaceWaitingController": "Waiting for reviewer", "mydspace.status.mydspaceWaitingController": "पुनरावलोककाची प्रतीक्षा", + // "mydspace.status.mydspaceWorkflow": "Workflow", "mydspace.status.mydspaceWorkflow": "वर्कफ्लो", + // "mydspace.status.mydspaceWorkspace": "Workspace", "mydspace.status.mydspaceWorkspace": "वर्कस्पेस", + // "mydspace.title": "MyDSpace", "mydspace.title": "MyDSpace", + // "mydspace.upload.upload-failed": "Error creating new workspace. Please verify the content uploaded before retry.", "mydspace.upload.upload-failed": "नवीन वर्कस्पेस तयार करताना त्रुटी. कृपया पुन्हा प्रयत्न करण्यापूर्वी अपलोड केलेली सामग्री सत्यापित करा.", + // "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.", "mydspace.upload.upload-failed-manyentries": "प्रक्रिया न होणारी फाइल. खूप जास्त नोंदी आढळल्या परंतु फाइलसाठी फक्त एकच परवानगी आहे.", + // "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.", "mydspace.upload.upload-failed-moreonefile": "प्रक्रिया न होणारी विनंती. फक्त एक फाइल परवानगी आहे.", + // "mydspace.upload.upload-multiple-successful": "{{qty}} new workspace items created.", "mydspace.upload.upload-multiple-successful": "{{qty}} नवीन वर्कस्पेस आयटम तयार केले.", + // "mydspace.view-btn": "View", "mydspace.view-btn": "पहा", + // "nav.expandable-navbar-section-suffix": "(submenu)", "nav.expandable-navbar-section-suffix": "(उपमेनू)", + // "notification.suggestion": "We found {{count}} publications in the {{source}} that seems to be related to your profile.
", "notification.suggestion": "आम्हाला {{source}} मध्ये {{count}} प्रकाशने सापडली आहेत जी तुमच्या प्रोफाइलशी संबंधित असल्याचे दिसते.
", + // "notification.suggestion.review": "review the suggestions", "notification.suggestion.review": "सूचना पुनरावलोकन करा", + // "notification.suggestion.please": "Please", "notification.suggestion.please": "कृपया", + // "nav.browse.header": "All of DSpace", "nav.browse.header": "संपूर्ण DSpace", + // "nav.community-browse.header": "By Community", "nav.community-browse.header": "समुदायानुसार", + // "nav.context-help-toggle": "Toggle context help", "nav.context-help-toggle": "संदर्भ मदत टॉगल करा", + // "nav.language": "Language switch", "nav.language": "भाषा स्विच", + // "nav.login": "Log In", "nav.login": "लॉग इन", + // "nav.user-profile-menu-and-logout": "User profile menu and log out", "nav.user-profile-menu-and-logout": "वापरकर्ता प्रोफाइल मेनू आणि लॉग आउट", + // "nav.logout": "Log Out", "nav.logout": "लॉग आउट", + // "nav.main.description": "Main navigation bar", "nav.main.description": "मुख्य नेव्हिगेशन बार", + // "nav.mydspace": "MyDSpace", "nav.mydspace": "MyDSpace", + // "nav.profile": "Profile", "nav.profile": "प्रोफाइल", + // "nav.search": "Search", "nav.search": "शोधा", + // "nav.search.button": "Submit search", "nav.search.button": "शोध सबमिट करा", + // "nav.statistics.header": "Statistics", "nav.statistics.header": "आकडेवारी", + // "nav.stop-impersonating": "Stop impersonating EPerson", "nav.stop-impersonating": "EPerson चे अनुकरण थांबवा", + // "nav.subscriptions": "Subscriptions", "nav.subscriptions": "सदस्यता", + // "nav.toggle": "Toggle navigation", "nav.toggle": "नेव्हिगेशन टॉगल करा", + // "nav.user.description": "User profile bar", "nav.user.description": "वापरकर्ता प्रोफाइल बार", + // "listelement.badge.dso-type": "Item type:", + // TODO New key - Add a translation + "listelement.badge.dso-type": "Item type:", + + // "none.listelement.badge": "Item", "none.listelement.badge": "आयटम", + // "publication-claim.title": "Publication claim", "publication-claim.title": "प्रकाशन दावा", + // "publication-claim.source.description": "Below you can see all the sources.", "publication-claim.source.description": "खाली तुम्हाला सर्व स्रोत दिसतील.", + // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "गुणवत्ता आश्वासन", + // "quality-assurance.topics.description": "Below you can see all the topics received from the subscriptions to {{source}}.", "quality-assurance.topics.description": "खाली तुम्हाला {{source}} सदस्यतांमधून प्राप्त झालेले सर्व विषय दिसतील.", + // "quality-assurance.source.description": "Below you can see all the notification's sources.", "quality-assurance.source.description": "खाली तुम्हाला सर्व सूचनांचे स्रोत दिसतील.", + // "quality-assurance.topics": "Current Topics", "quality-assurance.topics": "सध्याचे विषय", + // "quality-assurance.source": "Current Sources", "quality-assurance.source": "सध्याचे स्रोत", + // "quality-assurance.table.topic": "Topic", "quality-assurance.table.topic": "विषय", + // "quality-assurance.table.source": "Source", "quality-assurance.table.source": "स्रोत", + // "quality-assurance.table.last-event": "Last Event", "quality-assurance.table.last-event": "शेवटची घटना", + // "quality-assurance.table.actions": "Actions", "quality-assurance.table.actions": "क्रिया", + // "quality-assurance.source-list.button.detail": "Show topics for {{param}}", "quality-assurance.source-list.button.detail": "{{param}} साठी विषय दाखवा", + // "quality-assurance.topics-list.button.detail": "Show suggestions for {{param}}", "quality-assurance.topics-list.button.detail": "{{param}} साठी सूचना दाखवा", + // "quality-assurance.noTopics": "No topics found.", "quality-assurance.noTopics": "कोणतेही विषय आढळले नाहीत.", + // "quality-assurance.noSource": "No sources found.", "quality-assurance.noSource": "कोणतेही स्रोत आढळले नाहीत.", + // "notifications.events.title": "Quality Assurance Suggestions", "notifications.events.title": "गुणवत्ता आश्वासन सूचना", + // "quality-assurance.topic.error.service.retrieve": "An error occurred while loading the Quality Assurance topics", "quality-assurance.topic.error.service.retrieve": "गुणवत्ता आश्वासन विषय लोड करताना त्रुटी आली", + // "quality-assurance.source.error.service.retrieve": "An error occurred while loading the Quality Assurance source", "quality-assurance.source.error.service.retrieve": "गुणवत्ता आश्वासन स्रोत लोड करताना त्रुटी आली", + // "quality-assurance.loading": "Loading ...", "quality-assurance.loading": "लोड करत आहे ...", - "quality-assurance.events.topic": "विषय:", + // "quality-assurance.events.topic": "Topic:", + // TODO New key - Add a translation + "quality-assurance.events.topic": "Topic:", + // "quality-assurance.noEvents": "No suggestions found.", "quality-assurance.noEvents": "कोणत्याही सूचना आढळल्या नाहीत.", + // "quality-assurance.event.table.trust": "Trust", "quality-assurance.event.table.trust": "विश्वास", + // "quality-assurance.event.table.publication": "Publication", "quality-assurance.event.table.publication": "प्रकाशन", + // "quality-assurance.event.table.details": "Details", "quality-assurance.event.table.details": "तपशील", + // "quality-assurance.event.table.project-details": "Project details", "quality-assurance.event.table.project-details": "प्रकल्प तपशील", + // "quality-assurance.event.table.reasons": "Reasons", "quality-assurance.event.table.reasons": "कारणे", + // "quality-assurance.event.table.actions": "Actions", "quality-assurance.event.table.actions": "क्रिया", + // "quality-assurance.event.action.accept": "Accept suggestion", "quality-assurance.event.action.accept": "सूचना स्वीकारा", + // "quality-assurance.event.action.ignore": "Ignore suggestion", "quality-assurance.event.action.ignore": "सूचना दुर्लक्षित करा", + // "quality-assurance.event.action.undo": "Delete", "quality-assurance.event.action.undo": "हटवा", + // "quality-assurance.event.action.reject": "Reject suggestion", "quality-assurance.event.action.reject": "सूचना नाकार", + // "quality-assurance.event.action.import": "Import project and accept suggestion", "quality-assurance.event.action.import": "प्रकल्प आयात करा आणि सूचना स्वीकारा", - "quality-assurance.event.table.pidtype": "PID प्रकार:", + // "quality-assurance.event.table.pidtype": "PID Type:", + // TODO New key - Add a translation + "quality-assurance.event.table.pidtype": "PID Type:", - "quality-assurance.event.table.pidvalue": "PID मूल्य:", + // "quality-assurance.event.table.pidvalue": "PID Value:", + // TODO New key - Add a translation + "quality-assurance.event.table.pidvalue": "PID Value:", - "quality-assurance.event.table.subjectValue": "विषय मूल्य:", + // "quality-assurance.event.table.subjectValue": "Subject Value:", + // TODO New key - Add a translation + "quality-assurance.event.table.subjectValue": "Subject Value:", - "quality-assurance.event.table.abstract": "सारांश:", + // "quality-assurance.event.table.abstract": "Abstract:", + // TODO New key - Add a translation + "quality-assurance.event.table.abstract": "Abstract:", + // "quality-assurance.event.table.suggestedProject": "OpenAIRE Suggested Project data", "quality-assurance.event.table.suggestedProject": "OpenAIRE सुचवलेले प्रकल्प डेटा", - "quality-assurance.event.table.project": "प्रकल्प शीर्षक:", + // "quality-assurance.event.table.project": "Project title:", + // TODO New key - Add a translation + "quality-assurance.event.table.project": "Project title:", - "quality-assurance.event.table.acronym": "अक्रोनिम:", + // "quality-assurance.event.table.acronym": "Acronym:", + // TODO New key - Add a translation + "quality-assurance.event.table.acronym": "Acronym:", - "quality-assurance.event.table.code": "कोड:", + // "quality-assurance.event.table.code": "Code:", + // TODO New key - Add a translation + "quality-assurance.event.table.code": "Code:", - "quality-assurance.event.table.funder": "फंडर:", + // "quality-assurance.event.table.funder": "Funder:", + // TODO New key - Add a translation + "quality-assurance.event.table.funder": "Funder:", - "quality-assurance.event.table.fundingProgram": "फंडिंग कार्यक्रम:", + // "quality-assurance.event.table.fundingProgram": "Funding program:", + // TODO New key - Add a translation + "quality-assurance.event.table.fundingProgram": "Funding program:", - "quality-assurance.event.table.jurisdiction": "क्षेत्राधिकार:", + // "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + // TODO New key - Add a translation + "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + // "quality-assurance.events.back": "Back to topics", "quality-assurance.events.back": "विषयांकडे परत जा", + // "quality-assurance.events.back-to-sources": "Back to sources", "quality-assurance.events.back-to-sources": "स्रोतांकडे परत जा", + // "quality-assurance.event.table.less": "Show less", "quality-assurance.event.table.less": "कमी दाखवा", + // "quality-assurance.event.table.more": "Show more", "quality-assurance.event.table.more": "अधिक दाखवा", - "quality-assurance.event.project.found": "स्थानिक नोंदीशी बांधलेले:", + // "quality-assurance.event.project.found": "Bound to the local record:", + // TODO New key - Add a translation + "quality-assurance.event.project.found": "Bound to the local record:", + // "quality-assurance.event.project.notFound": "No local record found", "quality-assurance.event.project.notFound": "कोणतीही स्थानिक नोंद आढळली नाही", + // "quality-assurance.event.sure": "Are you sure?", "quality-assurance.event.sure": "आपल्याला खात्री आहे?", + // "quality-assurance.event.ignore.description": "This operation can't be undone. Ignore this suggestion?", "quality-assurance.event.ignore.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. ही सूचना दुर्लक्षित करा?", + // "quality-assurance.event.undo.description": "This operation can't be undone!", "quality-assurance.event.undo.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही!", + // "quality-assurance.event.reject.description": "This operation can't be undone. Reject this suggestion?", "quality-assurance.event.reject.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. ही सूचना नाकार?", + // "quality-assurance.event.accept.description": "No DSpace project selected. A new project will be created based on the suggestion data.", "quality-assurance.event.accept.description": "कोणताही DSpace प्रकल्प निवडलेला नाही. सूचना डेटावर आधारित नवीन प्रकल्प तयार केला जाईल.", + // "quality-assurance.event.action.cancel": "Cancel", "quality-assurance.event.action.cancel": "रद्द करा", + // "quality-assurance.event.action.saved": "Your decision has been saved successfully.", "quality-assurance.event.action.saved": "आपला निर्णय यशस्वीरित्या जतन केला गेला आहे.", + // "quality-assurance.event.action.error": "An error has occurred. Your decision has not been saved.", "quality-assurance.event.action.error": "त्रुटी आली आहे. आपला निर्णय जतन केला गेला नाही.", + // "quality-assurance.event.modal.project.title": "Choose a project to bound", "quality-assurance.event.modal.project.title": "बांधण्यासाठी प्रकल्प निवडा", - "quality-assurance.event.modal.project.publication": "प्रकाशन:", + // "quality-assurance.event.modal.project.publication": "Publication:", + // TODO New key - Add a translation + "quality-assurance.event.modal.project.publication": "Publication:", - "quality-assurance.event.modal.project.bountToLocal": "स्थानिक नोंदीशी बांधलेले:", + // "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + // TODO New key - Add a translation + "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + // "quality-assurance.event.modal.project.select": "Project search", "quality-assurance.event.modal.project.select": "प्रकल्प शोध", + // "quality-assurance.event.modal.project.search": "Search", "quality-assurance.event.modal.project.search": "शोधा", + // "quality-assurance.event.modal.project.clear": "Clear", "quality-assurance.event.modal.project.clear": "साफ करा", + // "quality-assurance.event.modal.project.cancel": "Cancel", "quality-assurance.event.modal.project.cancel": "रद्द करा", + // "quality-assurance.event.modal.project.bound": "Bound project", "quality-assurance.event.modal.project.bound": "बांधलेला प्रकल्प", + // "quality-assurance.event.modal.project.remove": "Remove", "quality-assurance.event.modal.project.remove": "काढा", + // "quality-assurance.event.modal.project.placeholder": "Enter a project name", "quality-assurance.event.modal.project.placeholder": "प्रकल्पाचे नाव प्रविष्ट करा", + // "quality-assurance.event.modal.project.notFound": "No project found.", "quality-assurance.event.modal.project.notFound": "कोणताही प्रकल्प आढळला नाही.", + // "quality-assurance.event.project.bounded": "The project has been linked successfully.", "quality-assurance.event.project.bounded": "प्रकल्प यशस्वीरित्या लिंक केला गेला आहे.", + // "quality-assurance.event.project.removed": "The project has been successfully unlinked.", "quality-assurance.event.project.removed": "प्रकल्प यशस्वीरित्या अनलिंक केला गेला आहे.", + // "quality-assurance.event.project.error": "An error has occurred. No operation performed.", "quality-assurance.event.project.error": "त्रुटी आली आहे. कोणतीही क्रिया केली गेली नाही.", + // "quality-assurance.event.reason": "Reason", "quality-assurance.event.reason": "कारण", + // "orgunit.listelement.badge": "Organizational Unit", "orgunit.listelement.badge": "संगठनात्मक युनिट", + // "orgunit.listelement.no-title": "Untitled", "orgunit.listelement.no-title": "शीर्षक नाही", + // "orgunit.page.city": "City", "orgunit.page.city": "शहर", + // "orgunit.page.country": "Country", "orgunit.page.country": "देश", + // "orgunit.page.dateestablished": "Date established", "orgunit.page.dateestablished": "स्थापनेची तारीख", + // "orgunit.page.description": "Description", "orgunit.page.description": "वर्णन", + // "orgunit.page.edit": "Edit this item", "orgunit.page.edit": "हा आयटम संपादित करा", + // "orgunit.page.id": "ID", "orgunit.page.id": "ID", + // "orgunit.page.options": "Options", "orgunit.page.options": "पर्याय", - "orgunit.page.titleprefix": "संगठनात्मक युनिट: ", + // "orgunit.page.titleprefix": "Organizational Unit: ", + // TODO New key - Add a translation + "orgunit.page.titleprefix": "Organizational Unit: ", + // "orgunit.page.ror": "ROR Identifier", "orgunit.page.ror": "ROR ओळखकर्ता", + // "orgunit.search.results.head": "Organizational Unit Search Results", "orgunit.search.results.head": "संगठनात्मक युनिट शोध परिणाम", + // "pagination.options.description": "Pagination options", "pagination.options.description": "पृष्ठांकन पर्याय", + // "pagination.results-per-page": "Results Per Page", "pagination.results-per-page": "प्रति पृष्ठ परिणाम", + // "pagination.showing.detail": "{{ range }} of {{ total }}", "pagination.showing.detail": "{{ range }} पैकी {{ total }}", + // "pagination.showing.label": "Now showing ", "pagination.showing.label": "आता दाखवत आहे ", + // "pagination.sort-direction": "Sort Options", "pagination.sort-direction": "क्रमवारी पर्याय", + // "person.listelement.badge": "Person", "person.listelement.badge": "व्यक्ती", + // "person.listelement.no-title": "No name found", "person.listelement.no-title": "नाव सापडले नाही", + // "person.page.birthdate": "Birth Date", "person.page.birthdate": "जन्मतारीख", + // "person.page.edit": "Edit this item", "person.page.edit": "हा आयटम संपादित करा", + // "person.page.email": "Email Address", "person.page.email": "ईमेल पत्ता", + // "person.page.firstname": "First Name", "person.page.firstname": "पहिले नाव", + // "person.page.jobtitle": "Job Title", "person.page.jobtitle": "नोकरीचे शीर्षक", + // "person.page.lastname": "Last Name", "person.page.lastname": "आडनाव", + // "person.page.name": "Name", "person.page.name": "नाव", + // "person.page.link.full": "Show all metadata", "person.page.link.full": "सर्व मेटाडेटा दाखवा", + // "person.page.options": "Options", "person.page.options": "पर्याय", + // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", + // "person.page.staffid": "Staff ID", "person.page.staffid": "कर्मचारी आयडी", - "person.page.titleprefix": "व्यक्ती: ", + // "person.page.titleprefix": "Person: ", + // TODO New key - Add a translation + "person.page.titleprefix": "Person: ", + // "person.search.results.head": "Person Search Results", "person.search.results.head": "व्यक्ती शोध परिणाम", + // "person-relationships.search.results.head": "Person Search Results", "person-relationships.search.results.head": "व्यक्ती शोध परिणाम", + // "person.search.title": "Person Search", "person.search.title": "व्यक्ती शोध", + // "process.new.select-parameters": "Parameters", "process.new.select-parameters": "पॅरामीटर्स", + // "process.new.select-parameter": "Select parameter", "process.new.select-parameter": "पॅरामीटर निवडा", + // "process.new.add-parameter": "Add a parameter...", "process.new.add-parameter": "पॅरामीटर जोडा...", + // "process.new.delete-parameter": "Delete parameter", "process.new.delete-parameter": "पॅरामीटर हटवा", + // "process.new.parameter.label": "Parameter value", "process.new.parameter.label": "पॅरामीटर मूल्य", + // "process.new.cancel": "Cancel", "process.new.cancel": "रद्द करा", + // "process.new.submit": "Save", "process.new.submit": "जतन करा", + // "process.new.select-script": "Script", "process.new.select-script": "स्क्रिप्ट", + // "process.new.select-script.placeholder": "Choose a script...", "process.new.select-script.placeholder": "स्क्रिप्ट निवडा...", + // "process.new.select-script.required": "Script is required", "process.new.select-script.required": "स्क्रिप्ट आवश्यक आहे", + // "process.new.parameter.file.upload-button": "Select file...", "process.new.parameter.file.upload-button": "फाइल निवडा...", + // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "कृपया फाइल निवडा", + // "process.new.parameter.integer.required": "Parameter value is required", "process.new.parameter.integer.required": "पॅरामीटर मूल्य आवश्यक आहे", + // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "पॅरामीटर मूल्य आवश्यक आहे", + // "process.new.parameter.type.value": "value", "process.new.parameter.type.value": "मूल्य", + // "process.new.parameter.type.file": "file", "process.new.parameter.type.file": "फाइल", - "process.new.parameter.required.missing": "खालील पॅरामीटर्स आवश्यक आहेत परंतु अद्याप गायब आहेत:", + // "process.new.parameter.required.missing": "The following parameters are required but still missing:", + // TODO New key - Add a translation + "process.new.parameter.required.missing": "The following parameters are required but still missing:", + // "process.new.notification.success.title": "Success", "process.new.notification.success.title": "यश", + // "process.new.notification.success.content": "The process was successfully created", "process.new.notification.success.content": "प्रक्रिया यशस्वीरित्या तयार केली गेली", + // "process.new.notification.error.title": "Error", "process.new.notification.error.title": "त्रुटी", + // "process.new.notification.error.content": "An error occurred while creating this process", "process.new.notification.error.content": "ही प्रक्रिया तयार करताना त्रुटी आली", + // "process.new.notification.error.max-upload.content": "The file exceeds the maximum upload size", "process.new.notification.error.max-upload.content": "फाइलने कमाल अपलोड आकार ओलांडला आहे", + // "process.new.header": "Create a new process", "process.new.header": "नवीन प्रक्रिया तयार करा", + // "process.new.title": "Create a new process", "process.new.title": "नवीन प्रक्रिया तयार करा", + // "process.new.breadcrumbs": "Create a new process", "process.new.breadcrumbs": "नवीन प्रक्रिया तयार करा", + // "process.detail.arguments": "Arguments", "process.detail.arguments": "तर्क", + // "process.detail.arguments.empty": "This process doesn't contain any arguments", "process.detail.arguments.empty": "या प्रक्रियेमध्ये कोणतेही तर्क नाहीत", + // "process.detail.back": "Back", "process.detail.back": "मागे", + // "process.detail.output": "Process Output", "process.detail.output": "प्रक्रिया आउटपुट", + // "process.detail.logs.button": "Retrieve process output", "process.detail.logs.button": "प्रक्रिया आउटपुट पुनर्प्राप्त करा", + // "process.detail.logs.loading": "Retrieving", "process.detail.logs.loading": "पुनर्प्राप्त करत आहे", + // "process.detail.logs.none": "This process has no output", "process.detail.logs.none": "या प्रक्रियेमध्ये कोणतेही आउटपुट नाही", + // "process.detail.output-files": "Output Files", "process.detail.output-files": "आउटपुट फाइल्स", + // "process.detail.output-files.empty": "This process doesn't contain any output files", "process.detail.output-files.empty": "या प्रक्रियेमध्ये कोणतेही आउटपुट फाइल्स नाहीत", + // "process.detail.script": "Script", "process.detail.script": "स्क्रिप्ट", - "process.detail.title": "प्रक्रिया: {{ id }} - {{ name }}", + // "process.detail.title": "Process: {{ id }} - {{ name }}", + // TODO New key - Add a translation + "process.detail.title": "Process: {{ id }} - {{ name }}", + // "process.detail.start-time": "Start time", "process.detail.start-time": "प्रारंभ वेळ", + // "process.detail.end-time": "Finish time", "process.detail.end-time": "समाप्ती वेळ", + // "process.detail.status": "Status", "process.detail.status": "स्थिती", + // "process.detail.create": "Create similar process", "process.detail.create": "समान प्रक्रिया तयार करा", + // "process.detail.actions": "Actions", "process.detail.actions": "क्रिया", + // "process.detail.delete.button": "Delete process", "process.detail.delete.button": "प्रक्रिया हटवा", + // "process.detail.delete.header": "Delete process", "process.detail.delete.header": "प्रक्रिया हटवा", + // "process.detail.delete.body": "Are you sure you want to delete the current process?", "process.detail.delete.body": "आपण सध्याची प्रक्रिया हटवू इच्छिता?", + // "process.detail.delete.cancel": "Cancel", "process.detail.delete.cancel": "रद्द करा", + // "process.detail.delete.confirm": "Delete process", "process.detail.delete.confirm": "प्रक्रिया हटवा", + // "process.detail.delete.success": "The process was successfully deleted.", "process.detail.delete.success": "प्रक्रिया यशस्वीरित्या हटवली गेली.", + // "process.detail.delete.error": "Something went wrong when deleting the process", "process.detail.delete.error": "प्रक्रिया हटवताना काहीतरी चूक झाली", + // "process.detail.refreshing": "Auto-refreshing…", "process.detail.refreshing": "स्वतः-ताजेतवाने करत आहे…", + // "process.overview.table.completed.info": "Finish time (UTC)", "process.overview.table.completed.info": "समाप्ती वेळ (UTC)", + // "process.overview.table.completed.title": "Succeeded processes", "process.overview.table.completed.title": "यशस्वी प्रक्रिया", + // "process.overview.table.empty": "No matching processes found.", "process.overview.table.empty": "कोणतीही जुळणारी प्रक्रिया आढळली नाही.", + // "process.overview.table.failed.info": "Finish time (UTC)", "process.overview.table.failed.info": "समाप्ती वेळ (UTC)", + // "process.overview.table.failed.title": "Failed processes", "process.overview.table.failed.title": "अयशस्वी प्रक्रिया", + // "process.overview.table.finish": "Finish time (UTC)", "process.overview.table.finish": "समाप्ती वेळ (UTC)", + // "process.overview.table.id": "Process ID", "process.overview.table.id": "प्रक्रिया आयडी", + // "process.overview.table.name": "Name", "process.overview.table.name": "नाव", + // "process.overview.table.running.info": "Start time (UTC)", "process.overview.table.running.info": "प्रारंभ वेळ (UTC)", + // "process.overview.table.running.title": "Running processes", "process.overview.table.running.title": "चालू प्रक्रिया", + // "process.overview.table.scheduled.info": "Creation time (UTC)", "process.overview.table.scheduled.info": "निर्मिती वेळ (UTC)", + // "process.overview.table.scheduled.title": "Scheduled processes", "process.overview.table.scheduled.title": "नियोजित प्रक्रिया", + // "process.overview.table.start": "Start time (UTC)", "process.overview.table.start": "प्रारंभ वेळ (UTC)", + // "process.overview.table.status": "Status", "process.overview.table.status": "स्थिती", + // "process.overview.table.user": "User", "process.overview.table.user": "वापरकर्ता", + // "process.overview.title": "Processes Overview", "process.overview.title": "प्रक्रिया विहंगावलोकन", + // "process.overview.breadcrumbs": "Processes Overview", "process.overview.breadcrumbs": "प्रक्रिया विहंगावलोकन", + // "process.overview.new": "New", "process.overview.new": "नवीन", + // "process.overview.table.actions": "Actions", "process.overview.table.actions": "क्रिया", + // "process.overview.delete": "Delete {{count}} processes", "process.overview.delete": "{{count}} प्रक्रिया हटवा", + // "process.overview.delete-process": "Delete process", "process.overview.delete-process": "प्रक्रिया हटवा", + // "process.overview.delete.clear": "Clear delete selection", "process.overview.delete.clear": "हटविण्याची निवड साफ करा", + // "process.overview.delete.processing": "{{count}} process(es) are being deleted. Please wait for the deletion to fully complete. Note that this can take a while.", "process.overview.delete.processing": "{{count}} प्रक्रिया हटवली जात आहेत. कृपया हटविणे पूर्ण होण्याची प्रतीक्षा करा. लक्षात ठेवा की यास काही वेळ लागू शकतो.", + // "process.overview.delete.body": "Are you sure you want to delete {{count}} process(es)?", "process.overview.delete.body": "आपण {{count}} प्रक्रिया हटवू इच्छिता?", + // "process.overview.delete.header": "Delete processes", "process.overview.delete.header": "प्रक्रिया हटवा", + // "process.overview.unknown.user": "Unknown", "process.overview.unknown.user": "अज्ञात", + // "process.bulk.delete.error.head": "Error on deleteing process", "process.bulk.delete.error.head": "प्रक्रिया हटवताना त्रुटी", + // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ", "process.bulk.delete.error.body": "आयडी {{processId}} असलेली प्रक्रिया हटवली जाऊ शकली नाही. उर्वरित प्रक्रिया हटवणे सुरूच राहील.", + // "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted", "process.bulk.delete.success": "{{count}} प्रक्रिया यशस्वीरित्या हटवली गेली", + // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "प्रोफाइल अद्यतनित करा", + // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + // TODO New key - Add a translation + "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + + // "profile.card.accessibility.header": "Accessibility", + // TODO New key - Add a translation + "profile.card.accessibility.header": "Accessibility", + + // "profile.card.accessibility.link": "Go to Accessibility Settings Page", + // TODO New key - Add a translation + "profile.card.accessibility.link": "Go to Accessibility Settings Page", + + // "profile.card.identify": "Identify", "profile.card.identify": "ओळख", + // "profile.card.security": "Security", "profile.card.security": "सुरक्षा", + // "profile.form.submit": "Save", "profile.form.submit": "जतन करा", + // "profile.groups.head": "Authorization groups you belong to", "profile.groups.head": "आपण ज्या प्राधिकरण गटांचा भाग आहात", + // "profile.special.groups.head": "Authorization special groups you belong to", "profile.special.groups.head": "आपण ज्या प्राधिकरण विशेष गटांचा भाग आहात", + // "profile.metadata.form.error.firstname.required": "First Name is required", "profile.metadata.form.error.firstname.required": "पहिले नाव आवश्यक आहे", + // "profile.metadata.form.error.lastname.required": "Last Name is required", "profile.metadata.form.error.lastname.required": "आडनाव आवश्यक आहे", + // "profile.metadata.form.label.email": "Email Address", "profile.metadata.form.label.email": "ईमेल पत्ता", + // "profile.metadata.form.label.firstname": "First Name", "profile.metadata.form.label.firstname": "पहिले नाव", + // "profile.metadata.form.label.language": "Language", "profile.metadata.form.label.language": "भाषा", + // "profile.metadata.form.label.lastname": "Last Name", "profile.metadata.form.label.lastname": "आडनाव", + // "profile.metadata.form.label.phone": "Contact Telephone", "profile.metadata.form.label.phone": "संपर्क दूरध्वनी", + // "profile.metadata.form.notifications.success.content": "Your changes to the profile were saved.", "profile.metadata.form.notifications.success.content": "प्रोफाइलमध्ये आपले बदल जतन केले गेले.", + // "profile.metadata.form.notifications.success.title": "Profile saved", "profile.metadata.form.notifications.success.title": "प्रोफाइल जतन केले", + // "profile.notifications.warning.no-changes.content": "No changes were made to the Profile.", "profile.notifications.warning.no-changes.content": "प्रोफाइलमध्ये कोणतेही बदल केले गेले नाहीत.", + // "profile.notifications.warning.no-changes.title": "No changes", "profile.notifications.warning.no-changes.title": "कोणतेही बदल नाहीत", + // "profile.security.form.error.matching-passwords": "The passwords do not match.", "profile.security.form.error.matching-passwords": "पासवर्ड जुळत नाहीत.", + // "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.", "profile.security.form.info": "पर्यायी, आपण खालील बॉक्समध्ये नवीन पासवर्ड प्रविष्ट करू शकता आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करू शकता.", + // "profile.security.form.label.password": "Password", "profile.security.form.label.password": "पासवर्ड", + // "profile.security.form.label.passwordrepeat": "Retype to confirm", "profile.security.form.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा", + // "profile.security.form.label.current-password": "Current password", "profile.security.form.label.current-password": "सध्याचा पासवर्ड", + // "profile.security.form.notifications.success.content": "Your changes to the password were saved.", "profile.security.form.notifications.success.content": "आपल्या पासवर्डमध्ये बदल जतन केले गेले.", + // "profile.security.form.notifications.success.title": "Password saved", "profile.security.form.notifications.success.title": "पासवर्ड जतन केले", + // "profile.security.form.notifications.error.title": "Error changing passwords", "profile.security.form.notifications.error.title": "पासवर्ड बदलताना त्रुटी", + // "profile.security.form.notifications.error.change-failed": "An error occurred while trying to change the password. Please check if the current password is correct.", "profile.security.form.notifications.error.change-failed": "पासवर्ड बदलण्याचा प्रयत्न करताना त्रुटी आली. कृपया सध्याचा पासवर्ड योग्य आहे का ते तपासा.", + // "profile.security.form.notifications.error.not-same": "The provided passwords are not the same.", "profile.security.form.notifications.error.not-same": "प्रदान केलेले पासवर्ड समान नाहीत.", + // "profile.security.form.notifications.error.general": "Please fill required fields of security form.", "profile.security.form.notifications.error.general": "कृपया सुरक्षा फॉर्मची आवश्यक फील्ड भरा.", + // "profile.title": "Update Profile", "profile.title": "प्रोफाइल अद्यतनित करा", + // "profile.card.researcher": "Researcher Profile", "profile.card.researcher": "संशोधक प्रोफाइल", + // "project.listelement.badge": "Research Project", "project.listelement.badge": "संशोधन प्रकल्प", + // "project.page.contributor": "Contributors", "project.page.contributor": "योगदानकर्ते", + // "project.page.description": "Description", "project.page.description": "वर्णन", + // "project.page.edit": "Edit this item", "project.page.edit": "हा आयटम संपादित करा", + // "project.page.expectedcompletion": "Expected Completion", "project.page.expectedcompletion": "अपेक्षित पूर्णता", + // "project.page.funder": "Funders", "project.page.funder": "फंडर", + // "project.page.id": "ID", "project.page.id": "ID", + // "project.page.keyword": "Keywords", "project.page.keyword": "कीवर्ड", + // "project.page.options": "Options", "project.page.options": "पर्याय", + // "project.page.status": "Status", "project.page.status": "स्थिती", - "project.page.titleprefix": "संशोधन प्रकल्प: ", + // "project.page.titleprefix": "Research Project: ", + // TODO New key - Add a translation + "project.page.titleprefix": "Research Project: ", + // "project.search.results.head": "Project Search Results", "project.search.results.head": "प्रकल्प शोध परिणाम", + // "project-relationships.search.results.head": "Project Search Results", "project-relationships.search.results.head": "प्रकल्प शोध परिणाम", + // "publication.listelement.badge": "Publication", "publication.listelement.badge": "प्रकाशन", + // "publication.page.description": "Description", "publication.page.description": "वर्णन", + // "publication.page.edit": "Edit this item", "publication.page.edit": "हा आयटम संपादित करा", + // "publication.page.journal-issn": "Journal ISSN", "publication.page.journal-issn": "जर्नल ISSN", + // "publication.page.journal-title": "Journal Title", "publication.page.journal-title": "जर्नल शीर्षक", + // "publication.page.publisher": "Publisher", "publication.page.publisher": "प्रकाशक", + // "publication.page.options": "Options", "publication.page.options": "पर्याय", - "publication.page.titleprefix": "प्रकाशन: ", + // "publication.page.titleprefix": "Publication: ", + // TODO New key - Add a translation + "publication.page.titleprefix": "Publication: ", + // "publication.page.volume-title": "Volume Title", "publication.page.volume-title": "खंड शीर्षक", + // "publication.search.results.head": "Publication Search Results", "publication.search.results.head": "प्रकाशन शोध परिणाम", + // "publication-relationships.search.results.head": "Publication Search Results", "publication-relationships.search.results.head": "प्रकाशन शोध परिणाम", + // "publication.search.title": "Publication Search", "publication.search.title": "प्रकाशन शोध", + // "media-viewer.next": "Next", "media-viewer.next": "पुढे", + // "media-viewer.previous": "Previous", "media-viewer.previous": "मागील", + // "media-viewer.playlist": "Playlist", "media-viewer.playlist": "प्लेलिस्ट", + // "suggestion.loading": "Loading ...", "suggestion.loading": "लोड करत आहे ...", + // "suggestion.title": "Publication Claim", "suggestion.title": "प्रकाशन दावा", + // "suggestion.title.breadcrumbs": "Publication Claim", "suggestion.title.breadcrumbs": "प्रकाशन दावा", + // "suggestion.targets.description": "Below you can see all the suggestions ", "suggestion.targets.description": "खाली तुम्हाला सर्व सूचना दिसतील ", + // "suggestion.targets": "Current Suggestions", "suggestion.targets": "सध्याच्या सूचना", + // "suggestion.table.name": "Researcher Name", "suggestion.table.name": "संशोधकाचे नाव", + // "suggestion.table.actions": "Actions", "suggestion.table.actions": "क्रिया", + // "suggestion.button.review": "Review {{ total }} suggestion(s)", "suggestion.button.review": "{{ total }} सूचना पुनरावलोकन करा", + // "suggestion.button.review.title": "Review {{ total }} suggestion(s) for ", "suggestion.button.review.title": "{{ total }} साठी सूचना पुनरावलोकन करा", + // "suggestion.noTargets": "No target found.", "suggestion.noTargets": "कोणताही लक्ष्य आढळला नाही.", + // "suggestion.target.error.service.retrieve": "An error occurred while loading the Suggestion targets", "suggestion.target.error.service.retrieve": "सूचना लक्ष्य लोड करताना त्रुटी आली", + // "suggestion.evidence.type": "Type", "suggestion.evidence.type": "प्रकार", + // "suggestion.evidence.score": "Score", "suggestion.evidence.score": "स्कोअर", + // "suggestion.evidence.notes": "Notes", "suggestion.evidence.notes": "टीप", + // "suggestion.approveAndImport": "Approve & import", "suggestion.approveAndImport": "मंजूर करा आणि आयात करा", + // "suggestion.approveAndImport.success": "The suggestion has been imported successfully. View.", "suggestion.approveAndImport.success": "सूचना यशस्वीरित्या आयात केली गेली आहे. पहा.", + // "suggestion.approveAndImport.bulk": "Approve & import Selected", "suggestion.approveAndImport.bulk": "निवडलेले मंजूर करा आणि आयात करा", + // "suggestion.approveAndImport.bulk.success": "{{ count }} suggestions have been imported successfully ", "suggestion.approveAndImport.bulk.success": "{{ count }} सूचना यशस्वीरित्या आयात केल्या गेल्या आहेत", + // "suggestion.approveAndImport.bulk.error": "{{ count }} suggestions haven't been imported due to unexpected server errors", "suggestion.approveAndImport.bulk.error": "अनपेक्षित सर्व्हर त्रुटींमुळे {{ count }} सूचना आयात केल्या गेल्या नाहीत", + // "suggestion.ignoreSuggestion": "Ignore Suggestion", "suggestion.ignoreSuggestion": "सूचना दुर्लक्षित करा", + // "suggestion.ignoreSuggestion.success": "The suggestion has been discarded", "suggestion.ignoreSuggestion.success": "सूचना रद्द केली गेली आहे", + // "suggestion.ignoreSuggestion.bulk": "Ignore Suggestion Selected", "suggestion.ignoreSuggestion.bulk": "निवडलेली सूचना दुर्लक्षित करा", + // "suggestion.ignoreSuggestion.bulk.success": "{{ count }} suggestions have been discarded ", "suggestion.ignoreSuggestion.bulk.success": "{{ count }} सूचना रद्द केल्या गेल्या आहेत", + // "suggestion.ignoreSuggestion.bulk.error": "{{ count }} suggestions haven't been discarded due to unexpected server errors", "suggestion.ignoreSuggestion.bulk.error": "अनपेक्षित सर्व्हर त्रुटींमुळे {{ count }} सूचना रद्द केल्या गेल्या नाहीत", + // "suggestion.seeEvidence": "See evidence", "suggestion.seeEvidence": "पुरावा पहा", + // "suggestion.hideEvidence": "Hide evidence", "suggestion.hideEvidence": "पुरावा लपवा", + // "suggestion.suggestionFor": "Suggestions for", "suggestion.suggestionFor": "साठी सूचना", + // "suggestion.suggestionFor.breadcrumb": "Suggestions for {{ name }}", "suggestion.suggestionFor.breadcrumb": "{{ name }} साठी सूचना", + // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "OpenAIRE ग्राफ", + // "suggestion.source.openalex": "OpenAlex", "suggestion.source.openalex": "OpenAlex", + // "suggestion.from.source": "from the ", "suggestion.from.source": "पासून", + // "suggestion.count.missing": "You have no publication claims left", "suggestion.count.missing": "आपल्याकडे कोणतेही प्रकाशन दावे शिल्लक नाहीत", + // "suggestion.totalScore": "Total Score", "suggestion.totalScore": "एकूण स्कोअर", + // "suggestion.type.openaire": "OpenAIRE", "suggestion.type.openaire": "OpenAIRE", + // "register-email.title": "New user registration", "register-email.title": "नवीन वापरकर्ता नोंदणी", + // "register-page.create-profile.header": "Create Profile", "register-page.create-profile.header": "प्रोफाइल तयार करा", + // "register-page.create-profile.identification.header": "Identify", "register-page.create-profile.identification.header": "ओळख", + // "register-page.create-profile.identification.email": "Email Address", "register-page.create-profile.identification.email": "ईमेल पत्ता", + // "register-page.create-profile.identification.first-name": "First Name *", "register-page.create-profile.identification.first-name": "पहिले नाव *", + // "register-page.create-profile.identification.first-name.error": "Please fill in a First Name", "register-page.create-profile.identification.first-name.error": "कृपया पहिले नाव भरा", + // "register-page.create-profile.identification.last-name": "Last Name *", "register-page.create-profile.identification.last-name": "आडनाव *", + // "register-page.create-profile.identification.last-name.error": "Please fill in a Last Name", "register-page.create-profile.identification.last-name.error": "कृपया आडनाव भरा", + // "register-page.create-profile.identification.contact": "Contact Telephone", "register-page.create-profile.identification.contact": "संपर्क दूरध्वनी", + // "register-page.create-profile.identification.language": "Language", "register-page.create-profile.identification.language": "भाषा", + // "register-page.create-profile.security.header": "Security", "register-page.create-profile.security.header": "सुरक्षा", + // "register-page.create-profile.security.info": "Please enter a password in the box below, and confirm it by typing it again into the second box.", "register-page.create-profile.security.info": "कृपया खालील बॉक्समध्ये पासवर्ड प्रविष्ट करा आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करा.", + // "register-page.create-profile.security.label.password": "Password *", "register-page.create-profile.security.label.password": "पासवर्ड *", + // "register-page.create-profile.security.label.passwordrepeat": "Retype to confirm *", "register-page.create-profile.security.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा *", + // "register-page.create-profile.security.error.empty-password": "Please enter a password in the box below.", "register-page.create-profile.security.error.empty-password": "कृपया खालील बॉक्समध्ये पासवर्ड प्रविष्ट करा.", + // "register-page.create-profile.security.error.matching-passwords": "The passwords do not match.", "register-page.create-profile.security.error.matching-passwords": "पासवर्ड जुळत नाहीत.", + // "register-page.create-profile.submit": "Complete Registration", "register-page.create-profile.submit": "नोंदणी पूर्ण करा", + // "register-page.create-profile.submit.error.content": "Something went wrong while registering a new user.", "register-page.create-profile.submit.error.content": "नवीन वापरकर्ता नोंदणी करताना काहीतरी चूक झाली.", + // "register-page.create-profile.submit.error.head": "Registration failed", "register-page.create-profile.submit.error.head": "नोंदणी अयशस्वी", + // "register-page.create-profile.submit.success.content": "The registration was successful. You have been logged in as the created user.", "register-page.create-profile.submit.success.content": "नोंदणी यशस्वी झाली. आपण तयार केलेल्या वापरकर्त्याच्या रूपात लॉग इन केले आहे.", + // "register-page.create-profile.submit.success.head": "Registration completed", "register-page.create-profile.submit.success.head": "नोंदणी पूर्ण झाली", + // "register-page.registration.header": "New user registration", "register-page.registration.header": "नवीन वापरकर्ता नोंदणी", + // "register-page.registration.info": "Register an account to subscribe to collections for email updates, and submit new items to DSpace.", "register-page.registration.info": "संग्रहांसाठी ईमेल अद्यतनांसाठी सदस्यता घेण्यासाठी आणि DSpace मध्ये नवीन आयटम सबमिट करण्यासाठी खाते नोंदणी करा.", + // "register-page.registration.email": "Email Address *", "register-page.registration.email": "ईमेल पत्ता *", + // "register-page.registration.email.error.required": "Please fill in an email address", "register-page.registration.email.error.required": "कृपया ईमेल पत्ता भरा", + // "register-page.registration.email.error.not-email-form": "Please fill in a valid email address.", "register-page.registration.email.error.not-email-form": "कृपया वैध ईमेल पत्ता भरा.", - "register-page.registration.email.error.not-valid-domain": "अनुमत डोमेनसह ईमेल वापरा: {{ domains }}", + // "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + // TODO New key - Add a translation + "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + // "register-page.registration.email.hint": "This address will be verified and used as your login name.", "register-page.registration.email.hint": "हा पत्ता सत्यापित केला जाईल आणि आपले लॉगिन नाव म्हणून वापरला जाईल.", + // "register-page.registration.submit": "Register", "register-page.registration.submit": "नोंदणी करा", + // "register-page.registration.success.head": "Verification email sent", "register-page.registration.success.head": "सत्यापन ईमेल पाठवले", + // "register-page.registration.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "register-page.registration.success.content": "{{ email }} वर एक विशेष URL आणि पुढील सूचना असलेले ईमेल पाठवले गेले आहे.", + // "register-page.registration.error.head": "Error when trying to register email", "register-page.registration.error.head": "ईमेल नोंदणी करताना त्रुटी", - "register-page.registration.error.content": "खालील ईमेल पत्ता नोंदणी करताना त्रुटी आली: {{ email }}", + // "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + // TODO New key - Add a translation + "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + // "register-page.registration.error.recaptcha": "Error when trying to authenticate with recaptcha", "register-page.registration.error.recaptcha": "recaptcha सह प्रमाणीकरण करताना त्रुटी", + // "register-page.registration.google-recaptcha.must-accept-cookies": "In order to register you must accept the Registration and Password recovery (Google reCaptcha) cookies.", "register-page.registration.google-recaptcha.must-accept-cookies": "नोंदणी करण्यासाठी आपल्याला नोंदणी आणि पासवर्ड पुनर्प्राप्ती (Google reCaptcha) कुकीज स्वीकारणे आवश्यक आहे.", + // "register-page.registration.error.maildomain": "This email address is not on the list of domains who can register. Allowed domains are {{ domains }}", "register-page.registration.error.maildomain": "हा ईमेल पत्ता नोंदणी करू शकणाऱ्या डोमेनच्या यादीत नाही. अनुमत डोमेन {{ domains }} आहेत", + // "register-page.registration.google-recaptcha.open-cookie-settings": "Open cookie settings", "register-page.registration.google-recaptcha.open-cookie-settings": "कुकी सेटिंग्ज उघडा", + // "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", + // "register-page.registration.google-recaptcha.notification.message.error": "An error occurred during reCaptcha verification", "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha सत्यापन दरम्यान त्रुटी आली", + // "register-page.registration.google-recaptcha.notification.message.expired": "Verification expired. Please verify again.", "register-page.registration.google-recaptcha.notification.message.expired": "सत्यापन कालबाह्य झाले. कृपया पुन्हा सत्यापित करा.", + // "register-page.registration.info.maildomain": "Accounts can be registered for mail addresses of the domains", "register-page.registration.info.maildomain": "खाती डोमेनच्या मेल पत्त्यांसाठी नोंदणीकृत केली जाऊ शकतात", + // "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items", "relationships.add.error.relationship-type.content": "दोन आयटममधील संबंध प्रकार {{ type }} साठी कोणताही योग्य जुळणारा सापडला नाही", + // "relationships.add.error.server.content": "The server returned an error", "relationships.add.error.server.content": "सर्व्हरने त्रुटी परत केली", + // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "संबंध जोडता येत नाही", - "relationships.isAuthorOf": "लेखक", + // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + + // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + + // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + + // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + + // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + + // "relationships.Publication.isContributorOfPublication.Person": "Contributor", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.Person": "Contributor", - "relationships.isAuthorOf.Person": "लेखक (व्यक्ती)", + // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - "relationships.isAuthorOf.OrgUnit": "लेखक (संगठनात्मक युनिट)", + // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - "relationships.isIssueOf": "जर्नल अंक", + // "relationships.Person.isProjectOfPerson.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Person.isProjectOfPerson.Project": "Research Projects", - "relationships.isIssueOf.JournalIssue": "जर्नल अंक", + // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - "relationships.isJournalIssueOf": "जर्नल अंक", + // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - "relationships.isJournalOf": "जर्नल", + // "relationships.Project.isPublicationOfProject.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Project.isPublicationOfProject.Publication": "Publications", - "relationships.isJournalVolumeOf": "जर्नल खंड", + // "relationships.Project.isPersonOfProject.Person": "Authors", + // TODO New key - Add a translation + "relationships.Project.isPersonOfProject.Person": "Authors", - "relationships.isOrgUnitOf": "संगठनात्मक युनिट", + // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - "relationships.isPersonOf": "लेखक", + // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + // TODO New key - Add a translation + "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - "relationships.isProjectOf": "संशोधन प्रकल्प", + // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - "relationships.isPublicationOf": "प्रकाशने", + // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + // TODO New key - Add a translation + "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - "relationships.isPublicationOfJournalIssue": "लेख", + // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - "relationships.isSingleJournalOf": "जर्नल", + // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - "relationships.isSingleVolumeOf": "जर्नल खंड", + // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - "relationships.isVolumeOf": "जर्नल खंड", + // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - "relationships.isVolumeOf.JournalVolume": "जर्नल खंड", + // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - "relationships.isContributorOf": "योगदानकर्ते", + // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + // TODO New key - Add a translation + "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", - "relationships.isContributorOf.OrgUnit": "योगदानकर्ता (संगठनात्मक युनिट)", + // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + // TODO New key - Add a translation + "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - "relationships.isContributorOf.Person": "योगदानकर्ता", + // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - "relationships.isFundingAgencyOf.OrgUnit": "फंडर", + // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + // "repository.image.logo": "Repository logo", "repository.image.logo": "संग्रह लोगो", + // "repository.title": "DSpace Repository", "repository.title": "DSpace संग्रह", - "repository.title.prefix": "DSpace संग्रह :: ", + // "repository.title.prefix": "DSpace Repository :: ", + // TODO New key - Add a translation + "repository.title.prefix": "DSpace Repository :: ", + // "resource-policies.add.button": "Add", "resource-policies.add.button": "जोडा", + // "resource-policies.add.for.": "Add a new policy", "resource-policies.add.for.": "नवीन धोरण जोडा", + // "resource-policies.add.for.bitstream": "Add a new Bitstream policy", "resource-policies.add.for.bitstream": "नवीन बिटस्ट्रीम धोरण जोडा", + // "resource-policies.add.for.bundle": "Add a new Bundle policy", "resource-policies.add.for.bundle": "नवीन बंडल धोरण जोडा", + // "resource-policies.add.for.item": "Add a new Item policy", "resource-policies.add.for.item": "नवीन आयटम धोरण जोडा", + // "resource-policies.add.for.community": "Add a new Community policy", "resource-policies.add.for.community": "नवीन समुदाय धोरण जोडा", + // "resource-policies.add.for.collection": "Add a new Collection policy", "resource-policies.add.for.collection": "नवीन संग्रह धोरण जोडा", + // "resource-policies.create.page.heading": "Create new resource policy for ", "resource-policies.create.page.heading": "साठी नवीन संसाधन धोरण तयार करा ", + // "resource-policies.create.page.failure.content": "An error occurred while creating the resource policy.", "resource-policies.create.page.failure.content": "संसाधन धोरण तयार करताना त्रुटी आली.", + // "resource-policies.create.page.success.content": "Operation successful", "resource-policies.create.page.success.content": "ऑपरेशन यशस्वी", + // "resource-policies.create.page.title": "Create new resource policy", "resource-policies.create.page.title": "नवीन संसाधन धोरण तयार करा", + // "resource-policies.delete.btn": "Delete selected", "resource-policies.delete.btn": "निवडलेले हटवा", + // "resource-policies.delete.btn.title": "Delete selected resource policies", "resource-policies.delete.btn.title": "निवडलेली संसाधन धोरणे हटवा", + // "resource-policies.delete.failure.content": "An error occurred while deleting selected resource policies.", "resource-policies.delete.failure.content": "निवडलेली संसाधन धोरणे हटवताना त्रुटी आली.", + // "resource-policies.delete.success.content": "Operation successful", "resource-policies.delete.success.content": "ऑपरेशन यशस्वी", + // "resource-policies.edit.page.heading": "Edit resource policy ", "resource-policies.edit.page.heading": "संसाधन धोरण संपादित करा ", + // "resource-policies.edit.page.failure.content": "An error occurred while editing the resource policy.", "resource-policies.edit.page.failure.content": "संसाधन धोरण संपादित करताना त्रुटी आली.", + // "resource-policies.edit.page.target-failure.content": "An error occurred while editing the target (ePerson or group) of the resource policy.", "resource-policies.edit.page.target-failure.content": "संसाधन धोरणाचे लक्ष्य (ePerson किंवा गट) संपादित करताना त्रुटी आली.", + // "resource-policies.edit.page.other-failure.content": "An error occurred while editing the resource policy. The target (ePerson or group) has been successfully updated.", "resource-policies.edit.page.other-failure.content": "संसाधन धोरण संपादित करताना त्रुटी आली. लक्ष्य (ePerson किंवा गट) यशस्वीरित्या अद्यतनित केले गेले आहे.", + // "resource-policies.edit.page.success.content": "Operation successful", "resource-policies.edit.page.success.content": "ऑपरेशन यशस्वी", + // "resource-policies.edit.page.title": "Edit resource policy", "resource-policies.edit.page.title": "संसाधन धोरण संपादित करा", + // "resource-policies.form.action-type.label": "Select the action type", "resource-policies.form.action-type.label": "क्रिया प्रकार निवडा", + // "resource-policies.form.action-type.required": "You must select the resource policy action.", "resource-policies.form.action-type.required": "आपल्याला संसाधन धोरण क्रिया निवडणे आवश्यक आहे.", + // "resource-policies.form.eperson-group-list.label": "The eperson or group that will be granted the permission", "resource-policies.form.eperson-group-list.label": "परवानगी दिली जाईल असा ePerson किंवा गट", + // "resource-policies.form.eperson-group-list.select.btn": "Select", "resource-policies.form.eperson-group-list.select.btn": "निवडा", + // "resource-policies.form.eperson-group-list.tab.eperson": "Search for a ePerson", "resource-policies.form.eperson-group-list.tab.eperson": "ePerson साठी शोधा", + // "resource-policies.form.eperson-group-list.tab.group": "Search for a group", "resource-policies.form.eperson-group-list.tab.group": "गटासाठी शोधा", + // "resource-policies.form.eperson-group-list.table.headers.action": "Action", "resource-policies.form.eperson-group-list.table.headers.action": "क्रिया", + // "resource-policies.form.eperson-group-list.table.headers.id": "ID", "resource-policies.form.eperson-group-list.table.headers.id": "ID", + // "resource-policies.form.eperson-group-list.table.headers.name": "Name", "resource-policies.form.eperson-group-list.table.headers.name": "नाव", + // "resource-policies.form.eperson-group-list.modal.header": "Cannot change type", "resource-policies.form.eperson-group-list.modal.header": "प्रकार बदलू शकत नाही", + // "resource-policies.form.eperson-group-list.modal.text1.toGroup": "It is not possible to replace an ePerson with a group.", "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePerson ला गटाने बदलणे शक्य नाही.", + // "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "It is not possible to replace a group with an ePerson.", "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "गटाला ePerson ने बदलणे शक्य नाही.", + // "resource-policies.form.eperson-group-list.modal.text2": "Delete the current resource policy and create a new one with the desired type.", "resource-policies.form.eperson-group-list.modal.text2": "सध्याचे संसाधन धोरण हटवा आणि इच्छित प्रकारासह नवीन तयार करा.", + // "resource-policies.form.eperson-group-list.modal.close": "Ok", "resource-policies.form.eperson-group-list.modal.close": "ठीक आहे", + // "resource-policies.form.date.end.label": "End Date", "resource-policies.form.date.end.label": "समाप्ती तारीख", + // "resource-policies.form.date.start.label": "Start Date", "resource-policies.form.date.start.label": "प्रारंभ तारीख", + // "resource-policies.form.description.label": "Description", "resource-policies.form.description.label": "वर्णन", + // "resource-policies.form.name.label": "Name", "resource-policies.form.name.label": "नाव", + // "resource-policies.form.name.hint": "Max 30 characters", "resource-policies.form.name.hint": "कमाल 30 वर्ण", + // "resource-policies.form.policy-type.label": "Select the policy type", "resource-policies.form.policy-type.label": "धोरण प्रकार निवडा", + // "resource-policies.form.policy-type.required": "You must select the resource policy type.", "resource-policies.form.policy-type.required": "आपल्याला संसाधन धोरण प्रकार निवडणे आवश्यक आहे.", + // "resource-policies.table.headers.action": "Action", "resource-policies.table.headers.action": "क्रिया", + // "resource-policies.table.headers.date.end": "End Date", "resource-policies.table.headers.date.end": "समाप्ती तारीख", + // "resource-policies.table.headers.date.start": "Start Date", "resource-policies.table.headers.date.start": "प्रारंभ तारीख", + // "resource-policies.table.headers.edit": "Edit", "resource-policies.table.headers.edit": "संपादित करा", + // "resource-policies.table.headers.edit.group": "Edit group", "resource-policies.table.headers.edit.group": "गट संपादित करा", + // "resource-policies.table.headers.edit.policy": "Edit policy", "resource-policies.table.headers.edit.policy": "धोरण संपादित करा", + // "resource-policies.table.headers.eperson": "EPerson", "resource-policies.table.headers.eperson": "ePerson", + // "resource-policies.table.headers.group": "Group", "resource-policies.table.headers.group": "गट", + // "resource-policies.table.headers.select-all": "Select all", "resource-policies.table.headers.select-all": "सर्व निवडा", + // "resource-policies.table.headers.deselect-all": "Deselect all", "resource-policies.table.headers.deselect-all": "सर्व निवड रद्द करा", + // "resource-policies.table.headers.select": "Select", "resource-policies.table.headers.select": "निवडा", + // "resource-policies.table.headers.deselect": "Deselect", "resource-policies.table.headers.deselect": "निवड रद्द करा", + // "resource-policies.table.headers.id": "ID", "resource-policies.table.headers.id": "ID", + // "resource-policies.table.headers.name": "Name", "resource-policies.table.headers.name": "नाव", + // "resource-policies.table.headers.policyType": "type", "resource-policies.table.headers.policyType": "प्रकार", + // "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream", "resource-policies.table.headers.title.for.bitstream": "बिटस्ट्रीमसाठी धोरणे", + // "resource-policies.table.headers.title.for.bundle": "Policies for Bundle", "resource-policies.table.headers.title.for.bundle": "बंडलसाठी धोरणे", + // "resource-policies.table.headers.title.for.item": "Policies for Item", "resource-policies.table.headers.title.for.item": "आयटमसाठी धोरणे", + // "resource-policies.table.headers.title.for.community": "Policies for Community", "resource-policies.table.headers.title.for.community": "समुदायासाठी धोरणे", + // "resource-policies.table.headers.title.for.collection": "Policies for Collection", "resource-policies.table.headers.title.for.collection": "संग्रहासाठी धोरणे", + // "root.skip-to-content": "Skip to main content", "root.skip-to-content": "मुख्य सामग्रीकडे जा", + // "search.description": "", "search.description": "", + // "search.switch-configuration.title": "Show", "search.switch-configuration.title": "दाखवा", + // "search.title": "Search", "search.title": "शोधा", + // "search.breadcrumbs": "Search", "search.breadcrumbs": "शोधा", + // "search.search-form.placeholder": "Search the repository ...", "search.search-form.placeholder": "संग्रहात शोधा ...", + // "search.filters.remove": "Remove filter of type {{ type }} with value {{ value }}", "search.filters.remove": "प्रकार {{ type }} सह मूल्य {{ value }} चा फिल्टर काढा", + // "search.filters.applied.f.title": "Title", "search.filters.applied.f.title": "शीर्षक", + // "search.filters.applied.f.author": "Author", "search.filters.applied.f.author": "लेखक", + // "search.filters.applied.f.dateIssued.max": "End date", "search.filters.applied.f.dateIssued.max": "समाप्ती तारीख", + // "search.filters.applied.f.dateIssued.min": "Start date", "search.filters.applied.f.dateIssued.min": "प्रारंभ तारीख", + // "search.filters.applied.f.dateSubmitted": "Date submitted", "search.filters.applied.f.dateSubmitted": "सबमिट केलेली तारीख", + // "search.filters.applied.f.discoverable": "Non-discoverable", "search.filters.applied.f.discoverable": "नॉन-डिस्कव्हरेबल", + // "search.filters.applied.f.entityType": "Item Type", "search.filters.applied.f.entityType": "आयटम प्रकार", + // "search.filters.applied.f.has_content_in_original_bundle": "Has files", "search.filters.applied.f.has_content_in_original_bundle": "फाइल्स आहेत", + // "search.filters.applied.f.original_bundle_filenames": "File name", "search.filters.applied.f.original_bundle_filenames": "फाइल नाव", + // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "फाइल वर्णन", - + // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", "search.filters.applied.f.has_geospatial_metadata": "भौगोलिक स्थान आहे", + // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "प्रकार", + // "search.filters.applied.f.namedresourcetype": "Status", "search.filters.applied.f.namedresourcetype": "स्थिती", + // "search.filters.applied.f.subject": "Subject", "search.filters.applied.f.subject": "विषय", + // "search.filters.applied.f.submitter": "Submitter", "search.filters.applied.f.submitter": "सबमिटर", + // "search.filters.applied.f.jobTitle": "Job Title", "search.filters.applied.f.jobTitle": "नोकरीचे शीर्षक", + // "search.filters.applied.f.birthDate.max": "End birth date", "search.filters.applied.f.birthDate.max": "समाप्ती जन्मतारीख", + // "search.filters.applied.f.birthDate.min": "Start birth date", "search.filters.applied.f.birthDate.min": "प्रारंभ जन्मतारीख", + // "search.filters.applied.f.supervisedBy": "Supervised by", "search.filters.applied.f.supervisedBy": "पर्यवेक्षण केलेले", + // "search.filters.applied.f.withdrawn": "Withdrawn", "search.filters.applied.f.withdrawn": "मागे घेतले", + // "search.filters.applied.operator.equals": "", "search.filters.applied.operator.equals": "", + // "search.filters.applied.operator.notequals": " not equals", "search.filters.applied.operator.notequals": " समान नाही", + // "search.filters.applied.operator.authority": "", "search.filters.applied.operator.authority": "", + // "search.filters.applied.operator.notauthority": " not authority", "search.filters.applied.operator.notauthority": " प्राधिकरण नाही", + // "search.filters.applied.operator.contains": " contains", "search.filters.applied.operator.contains": " समाविष्ट आहे", + // "search.filters.applied.operator.notcontains": " not contains", "search.filters.applied.operator.notcontains": " समाविष्ट नाही", + // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", + // "search.filters.applied.f.point": "Coordinates", "search.filters.applied.f.point": "समन्वय", + // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "शीर्षक", + // "search.filters.filter.title.placeholder": "Title", "search.filters.filter.title.placeholder": "शीर्षक", + // "search.filters.filter.title.label": "Search Title", "search.filters.filter.title.label": "शीर्षक शोधा", + // "search.filters.filter.author.head": "Author", "search.filters.filter.author.head": "लेखक", + // "search.filters.filter.author.placeholder": "Author name", "search.filters.filter.author.placeholder": "लेखकाचे नाव", + // "search.filters.filter.author.label": "Search author name", "search.filters.filter.author.label": "लेखकाचे नाव शोधा", + // "search.filters.filter.birthDate.head": "Birth Date", "search.filters.filter.birthDate.head": "जन्मतारीख", + // "search.filters.filter.birthDate.placeholder": "Birth Date", "search.filters.filter.birthDate.placeholder": "जन्मतारीख", + // "search.filters.filter.birthDate.label": "Search birth date", "search.filters.filter.birthDate.label": "जन्मतारीख शोधा", + // "search.filters.filter.collapse": "Collapse filter", "search.filters.filter.collapse": "फिल्टर संकुचित करा", + // "search.filters.filter.creativeDatePublished.head": "Date Published", "search.filters.filter.creativeDatePublished.head": "प्रकाशित तारीख", + // "search.filters.filter.creativeDatePublished.placeholder": "Date Published", "search.filters.filter.creativeDatePublished.placeholder": "प्रकाशित तारीख", + // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "प्रकाशित तारीख शोधा", + // "search.filters.filter.creativeDatePublished.min.label": "Start", "search.filters.filter.creativeDatePublished.min.label": "प्रारंभ", + // "search.filters.filter.creativeDatePublished.max.label": "End", "search.filters.filter.creativeDatePublished.max.label": "समाप्ती", + // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "संपादक", + // "search.filters.filter.creativeWorkEditor.placeholder": "Editor", "search.filters.filter.creativeWorkEditor.placeholder": "संपादक", + // "search.filters.filter.creativeWorkEditor.label": "Search editor", "search.filters.filter.creativeWorkEditor.label": "संपादक शोधा", + // "search.filters.filter.creativeWorkKeywords.head": "Subject", "search.filters.filter.creativeWorkKeywords.head": "विषय", + // "search.filters.filter.creativeWorkKeywords.placeholder": "Subject", "search.filters.filter.creativeWorkKeywords.placeholder": "विषय", + // "search.filters.filter.creativeWorkKeywords.label": "Search subject", "search.filters.filter.creativeWorkKeywords.label": "विषय शोधा", + // "search.filters.filter.creativeWorkPublisher.head": "Publisher", "search.filters.filter.creativeWorkPublisher.head": "प्रकाशक", + // "search.filters.filter.creativeWorkPublisher.placeholder": "Publisher", "search.filters.filter.creativeWorkPublisher.placeholder": "प्रकाशक", + // "search.filters.filter.creativeWorkPublisher.label": "Search publisher", "search.filters.filter.creativeWorkPublisher.label": "प्रकाशक शोधा", + // "search.filters.filter.dateIssued.head": "Date", "search.filters.filter.dateIssued.head": "तारीख", + // "search.filters.filter.dateIssued.max.placeholder": "Maximum Date", "search.filters.filter.dateIssued.max.placeholder": "कमाल तारीख", + // "search.filters.filter.dateIssued.max.label": "End", "search.filters.filter.dateIssued.max.label": "समाप्ती", + // "search.filters.filter.dateIssued.min.placeholder": "Minimum Date", "search.filters.filter.dateIssued.min.placeholder": "किमान तारीख", + // "search.filters.filter.dateIssued.min.label": "Start", "search.filters.filter.dateIssued.min.label": "प्रारंभ", + // "search.filters.filter.dateSubmitted.head": "Date submitted", "search.filters.filter.dateSubmitted.head": "सबमिट केलेली तारीख", + // "search.filters.filter.dateSubmitted.placeholder": "Date submitted", "search.filters.filter.dateSubmitted.placeholder": "सबमिट केलेली तारीख", + // "search.filters.filter.dateSubmitted.label": "Search date submitted", "search.filters.filter.dateSubmitted.label": "सबमिट केलेली तारीख शोधा", + // "search.filters.filter.discoverable.head": "Non-discoverable", "search.filters.filter.discoverable.head": "नॉन-डिस्कव्हरेबल", + // "search.filters.filter.withdrawn.head": "Withdrawn", "search.filters.filter.withdrawn.head": "मागे घेतले", + // "search.filters.filter.entityType.head": "Item Type", "search.filters.filter.entityType.head": "आयटम प्रकार", + // "search.filters.filter.entityType.placeholder": "Item Type", "search.filters.filter.entityType.placeholder": "आयटम प्रकार", + // "search.filters.filter.entityType.label": "Search item type", "search.filters.filter.entityType.label": "आयटम प्रकार शोधा", + // "search.filters.filter.expand": "Expand filter", "search.filters.filter.expand": "फिल्टर विस्तृत करा", + // "search.filters.filter.has_content_in_original_bundle.head": "Has files", "search.filters.filter.has_content_in_original_bundle.head": "फाइल्स आहेत", + // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "फाइल नाव", + // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", "search.filters.filter.has_geospatial_metadata.head": "भौगोलिक स्थान आहे", + // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "फाइल नाव", + // "search.filters.filter.original_bundle_filenames.label": "Search File name", "search.filters.filter.original_bundle_filenames.label": "फाइल नाव शोधा", + // "search.filters.filter.original_bundle_descriptions.head": "File description", "search.filters.filter.original_bundle_descriptions.head": "फाइल वर्णन", + // "search.filters.filter.original_bundle_descriptions.placeholder": "File description", "search.filters.filter.original_bundle_descriptions.placeholder": "फाइल वर्णन", + // "search.filters.filter.original_bundle_descriptions.label": "Search File description", "search.filters.filter.original_bundle_descriptions.label": "फाइल वर्णन शोधा", + // "search.filters.filter.itemtype.head": "Type", "search.filters.filter.itemtype.head": "प्रकार", + // "search.filters.filter.itemtype.placeholder": "Type", "search.filters.filter.itemtype.placeholder": "प्रकार", + // "search.filters.filter.itemtype.label": "Search type", "search.filters.filter.itemtype.label": "प्रकार शोधा", + // "search.filters.filter.jobTitle.head": "Job Title", "search.filters.filter.jobTitle.head": "नोकरीचे शीर्षक", + // "search.filters.filter.jobTitle.placeholder": "Job Title", "search.filters.filter.jobTitle.placeholder": "नोकरीचे शीर्षक", + // "search.filters.filter.jobTitle.label": "Search job title", "search.filters.filter.jobTitle.label": "नोकरीचे शीर्षक शोधा", + // "search.filters.filter.knowsLanguage.head": "Known language", "search.filters.filter.knowsLanguage.head": "ज्ञात भाषा", + // "search.filters.filter.knowsLanguage.placeholder": "Known language", "search.filters.filter.knowsLanguage.placeholder": "ज्ञात भाषा", + // "search.filters.filter.knowsLanguage.label": "Search known language", "search.filters.filter.knowsLanguage.label": "ज्ञात भाषा शोधा", + // "search.filters.filter.namedresourcetype.head": "Status", "search.filters.filter.namedresourcetype.head": "स्थिती", + // "search.filters.filter.namedresourcetype.placeholder": "Status", "search.filters.filter.namedresourcetype.placeholder": "स्थिती", + // "search.filters.filter.namedresourcetype.label": "Search status", "search.filters.filter.namedresourcetype.label": "स्थिती शोधा", + // "search.filters.filter.objectpeople.head": "People", "search.filters.filter.objectpeople.head": "लोक", + // "search.filters.filter.objectpeople.placeholder": "People", "search.filters.filter.objectpeople.placeholder": "लोक", + // "search.filters.filter.objectpeople.label": "Search people", "search.filters.filter.objectpeople.label": "लोक शोधा", + // "search.filters.filter.organizationAddressCountry.head": "Country", "search.filters.filter.organizationAddressCountry.head": "देश", + // "search.filters.filter.organizationAddressCountry.placeholder": "Country", "search.filters.filter.organizationAddressCountry.placeholder": "देश", + // "search.filters.filter.organizationAddressCountry.label": "Search country", "search.filters.filter.organizationAddressCountry.label": "देश शोधा", + // "search.filters.filter.organizationAddressLocality.head": "City", "search.filters.filter.organizationAddressLocality.head": "शहर", + // "search.filters.filter.organizationAddressLocality.placeholder": "City", "search.filters.filter.organizationAddressLocality.placeholder": "शहर", + // "search.filters.filter.organizationAddressLocality.label": "Search city", "search.filters.filter.organizationAddressLocality.label": "शहर शोधा", + // "search.filters.filter.organizationFoundingDate.head": "Date Founded", "search.filters.filter.organizationFoundingDate.head": "स्थापनेची तारीख", + // "search.filters.filter.organizationFoundingDate.placeholder": "Date Founded", "search.filters.filter.organizationFoundingDate.placeholder": "स्थापनेची तारीख", + // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "स्थापनेची तारीख शोधा", + // "search.filters.filter.organizationFoundingDate.min.label": "Start", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.min.label": "Start", + + // "search.filters.filter.organizationFoundingDate.max.label": "End", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.max.label": "End", + + // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "व्याप्ती", + // "search.filters.filter.scope.placeholder": "Scope filter", "search.filters.filter.scope.placeholder": "व्याप्ती फिल्टर", + // "search.filters.filter.scope.label": "Search scope filter", "search.filters.filter.scope.label": "व्याप्ती फिल्टर शोधा", + // "search.filters.filter.show-less": "Collapse", "search.filters.filter.show-less": "संकुचित करा", + // "search.filters.filter.show-more": "Show more", "search.filters.filter.show-more": "अधिक दाखवा", + // "search.filters.filter.subject.head": "Subject", "search.filters.filter.subject.head": "विषय", + // "search.filters.filter.subject.placeholder": "Subject", "search.filters.filter.subject.placeholder": "विषय", + // "search.filters.filter.subject.label": "Search subject", "search.filters.filter.subject.label": "विषय शोधा", + // "search.filters.filter.submitter.head": "Submitter", "search.filters.filter.submitter.head": "सबमिटर", + // "search.filters.filter.submitter.placeholder": "Submitter", "search.filters.filter.submitter.placeholder": "सबमिटर", + // "search.filters.filter.submitter.label": "Search submitter", "search.filters.filter.submitter.label": "सबमिटर शोधा", + // "search.filters.filter.show-tree": "Browse {{ name }} tree", "search.filters.filter.show-tree": "{{ name }} वृक्ष ब्राउझ करा", + // "search.filters.filter.funding.head": "Funding", "search.filters.filter.funding.head": "फंडिंग", + // "search.filters.filter.funding.placeholder": "Funding", "search.filters.filter.funding.placeholder": "फंडिंग", + // "search.filters.filter.supervisedBy.head": "Supervised By", "search.filters.filter.supervisedBy.head": "पर्यवेक्षण केलेले", + // "search.filters.filter.supervisedBy.placeholder": "Supervised By", "search.filters.filter.supervisedBy.placeholder": "पर्यवेक्षण केलेले", + // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "पर्यवेक्षण केलेले शोधा", + // "search.filters.filter.access_status.head": "Access type", "search.filters.filter.access_status.head": "प्रवेश प्रकार", + // "search.filters.filter.access_status.placeholder": "Access type", "search.filters.filter.access_status.placeholder": "प्रवेश प्रकार", + // "search.filters.filter.access_status.label": "Search by access type", "search.filters.filter.access_status.label": "प्रवेश प्रकारानुसार शोधा", + // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "जर्नल अंक", + // "search.filters.entityType.JournalVolume": "Journal Volume", "search.filters.entityType.JournalVolume": "जर्नल खंड", + // "search.filters.entityType.OrgUnit": "Organizational Unit", "search.filters.entityType.OrgUnit": "संगठनात्मक युनिट", + // "search.filters.entityType.Person": "Person", "search.filters.entityType.Person": "व्यक्ती", + // "search.filters.entityType.Project": "Project", "search.filters.entityType.Project": "प्रकल्प", + // "search.filters.entityType.Publication": "Publication", "search.filters.entityType.Publication": "प्रकाशन", + // "search.filters.has_content_in_original_bundle.true": "Yes", "search.filters.has_content_in_original_bundle.true": "होय", + // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "नाही", + // "search.filters.has_geospatial_metadata.true": "Yes", "search.filters.has_geospatial_metadata.true": "होय", + // "search.filters.has_geospatial_metadata.false": "No", "search.filters.has_geospatial_metadata.false": "नाही", + // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "नाही", + // "search.filters.discoverable.false": "Yes", "search.filters.discoverable.false": "होय", + // "search.filters.namedresourcetype.Archived": "Archived", "search.filters.namedresourcetype.Archived": "संग्रहित", + // "search.filters.namedresourcetype.Validation": "Validation", "search.filters.namedresourcetype.Validation": "प्रमाणीकरण", + // "search.filters.namedresourcetype.Waiting for Controller": "Waiting for reviewer", "search.filters.namedresourcetype.Waiting for Controller": "पुनरावलोककाची प्रतीक्षा", + // "search.filters.namedresourcetype.Workflow": "Workflow", "search.filters.namedresourcetype.Workflow": "वर्कफ्लो", + // "search.filters.namedresourcetype.Workspace": "Workspace", "search.filters.namedresourcetype.Workspace": "वर्कस्पेस", + // "search.filters.withdrawn.true": "Yes", "search.filters.withdrawn.true": "होय", + // "search.filters.withdrawn.false": "No", "search.filters.withdrawn.false": "नाही", + // "search.filters.head": "Filters", "search.filters.head": "फिल्टर", + // "search.filters.reset": "Reset filters", "search.filters.reset": "फिल्टर रीसेट करा", + // "search.filters.search.submit": "Submit", "search.filters.search.submit": "सबमिट करा", + // "search.filters.operator.equals.text": "Equals", "search.filters.operator.equals.text": "समान", + // "search.filters.operator.notequals.text": "Not Equals", "search.filters.operator.notequals.text": "समान नाही", + // "search.filters.operator.authority.text": "Authority", "search.filters.operator.authority.text": "प्राधिकरण", + // "search.filters.operator.notauthority.text": "Not Authority", "search.filters.operator.notauthority.text": "प्राधिकरण नाही", + // "search.filters.operator.contains.text": "Contains", "search.filters.operator.contains.text": "समाविष्ट आहे", + // "search.filters.operator.notcontains.text": "Not Contains", "search.filters.operator.notcontains.text": "समाविष्ट नाही", + // "search.filters.operator.query.text": "Query", "search.filters.operator.query.text": "क्वेरी", + // "search.form.search": "Search", "search.form.search": "शोधा", + // "search.form.search_dspace": "All repository", "search.form.search_dspace": "संपूर्ण संग्रह", + // "search.form.scope.all": "All of DSpace", "search.form.scope.all": "संपूर्ण DSpace", + // "search.results.head": "Search Results", "search.results.head": "शोध परिणाम", + // "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting", "search.results.no-results": "आपल्या शोधाला कोणतेही परिणाम मिळाले नाहीत. आपल्याला हवे असलेले शोधण्यात अडचण येत आहे का? प्रयत्न करा", + // "search.results.no-results-link": "quotes around it", "search.results.no-results-link": "त्याच्या भोवती उद्धरण चिन्हे लावा", + // "search.results.empty": "Your search returned no results.", "search.results.empty": "आपल्या शोधाला कोणतेही परिणाम मिळाले नाहीत.", + // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", "search.results.geospatial-map.empty": "या पृष्ठावर भौगोलिक स्थानांसह कोणतेही परिणाम नाहीत", + // "search.results.view-result": "View", "search.results.view-result": "पहा", + // "search.results.response.500": "An error occurred during query execution, please try again later", "search.results.response.500": "क्वेरी कार्यान्वित करताना त्रुटी आली, कृपया नंतर पुन्हा प्रयत्न करा", + // "default.search.results.head": "Search Results", "default.search.results.head": "शोध परिणाम", + // "default-relationships.search.results.head": "Search Results", "default-relationships.search.results.head": "शोध परिणाम", + // "search.sidebar.close": "Back to results", "search.sidebar.close": "परिणामांकडे परत जा", + // "search.sidebar.filters.title": "Filters", "search.sidebar.filters.title": "फिल्टर", + // "search.sidebar.open": "Search Tools", "search.sidebar.open": "शोध साधने", + // "search.sidebar.results": "results", "search.sidebar.results": "परिणाम", + // "search.sidebar.settings.rpp": "Results per page", "search.sidebar.settings.rpp": "प्रति पृष्ठ परिणाम", + // "search.sidebar.settings.sort-by": "Sort By", "search.sidebar.settings.sort-by": "क्रमवारी लावा", + // "search.sidebar.advanced-search.title": "Advanced Search", "search.sidebar.advanced-search.title": "प्रगत शोध", + // "search.sidebar.advanced-search.filter-by": "Filter by", "search.sidebar.advanced-search.filter-by": "फिल्टर द्वारे", + // "search.sidebar.advanced-search.filters": "Filters", "search.sidebar.advanced-search.filters": "फिल्टर", + // "search.sidebar.advanced-search.operators": "Operators", "search.sidebar.advanced-search.operators": "ऑपरेटर", + // "search.sidebar.advanced-search.add": "Add", "search.sidebar.advanced-search.add": "जोडा", + // "search.sidebar.settings.title": "Settings", "search.sidebar.settings.title": "सेटिंग्ज", + // "search.view-switch.show-detail": "Show detail", "search.view-switch.show-detail": "तपशील दाखवा", + // "search.view-switch.show-grid": "Show as grid", "search.view-switch.show-grid": "ग्रिड म्हणून दाखवा", + // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "यादी म्हणून दाखवा", + // "search.view-switch.show-geospatialMap": "Show as map", "search.view-switch.show-geospatialMap": "नकाशा म्हणून दाखवा", + // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "आयटम निवड रद्द करा", + // "selectable-list-item-control.select": "Select item", "selectable-list-item-control.select": "आयटम निवडा", + // "sorting.ASC": "Ascending", "sorting.ASC": "आरोही", + // "sorting.DESC": "Descending", "sorting.DESC": "अवरोही", + // "sorting.dc.title.ASC": "Title Ascending", "sorting.dc.title.ASC": "शीर्षक आरोही", + // "sorting.dc.title.DESC": "Title Descending", "sorting.dc.title.DESC": "शीर्षक अवरोही", + // "sorting.score.ASC": "Least Relevant", "sorting.score.ASC": "कमी संबंधित", + // "sorting.score.DESC": "Most Relevant", "sorting.score.DESC": "सर्वाधिक संबंधित", + // "sorting.dc.date.issued.ASC": "Date Issued Ascending", "sorting.dc.date.issued.ASC": "प्रकाशित तारीख आरोही", + // "sorting.dc.date.issued.DESC": "Date Issued Descending", "sorting.dc.date.issued.DESC": "प्रकाशित तारीख अवरोही", + // "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending", "sorting.dc.date.accessioned.ASC": "प्रवेश तारीख आरोही", + // "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending", "sorting.dc.date.accessioned.DESC": "प्रवेश तारीख अवरोही", + // "sorting.lastModified.ASC": "Last modified Ascending", "sorting.lastModified.ASC": "शेवटचे बदलले आरोही", + // "sorting.lastModified.DESC": "Last modified Descending", "sorting.lastModified.DESC": "शेवटचे बदलले अवरोही", + // "sorting.person.familyName.ASC": "Surname Ascending", "sorting.person.familyName.ASC": "आडनाव आरोही", + // "sorting.person.familyName.DESC": "Surname Descending", "sorting.person.familyName.DESC": "आडनाव अवरोही", + // "sorting.person.givenName.ASC": "Name Ascending", "sorting.person.givenName.ASC": "नाव आरोही", + // "sorting.person.givenName.DESC": "Name Descending", "sorting.person.givenName.DESC": "नाव अवरोही", + // "sorting.person.birthDate.ASC": "Birth Date Ascending", "sorting.person.birthDate.ASC": "जन्मतारीख आरोही", + // "sorting.person.birthDate.DESC": "Birth Date Descending", "sorting.person.birthDate.DESC": "जन्मतारीख अवरोही", + // "statistics.title": "Statistics", "statistics.title": "आकडेवारी", + // "statistics.header": "Statistics for {{ scope }}", "statistics.header": "{{ scope }} साठी आकडेवारी", + // "statistics.breadcrumbs": "Statistics", "statistics.breadcrumbs": "आकडेवारी", + // "statistics.page.no-data": "No data available", "statistics.page.no-data": "डेटा उपलब्ध नाही", + // "statistics.table.no-data": "No data available", "statistics.table.no-data": "डेटा उपलब्ध नाही", + // "statistics.table.title.TotalVisits": "Total visits", "statistics.table.title.TotalVisits": "एकूण भेटी", + // "statistics.table.title.TotalVisitsPerMonth": "Total visits per month", "statistics.table.title.TotalVisitsPerMonth": "प्रति महिना एकूण भेटी", + // "statistics.table.title.TotalDownloads": "File Visits", "statistics.table.title.TotalDownloads": "फाइल भेटी", + // "statistics.table.title.TopCountries": "Top country views", "statistics.table.title.TopCountries": "शीर्ष देश दृश्ये", + // "statistics.table.title.TopCities": "Top city views", "statistics.table.title.TopCities": "शीर्ष शहर दृश्ये", + // "statistics.table.header.views": "Views", "statistics.table.header.views": "दृश्ये", + // "statistics.table.no-name": "(object name could not be loaded)", "statistics.table.no-name": "(ऑब्जेक्ट नाव लोड केले जाऊ शकले नाही)", + // "submission.edit.breadcrumbs": "Edit Submission", "submission.edit.breadcrumbs": "सबमिशन संपादित करा", + // "submission.edit.title": "Edit Submission", "submission.edit.title": "सबमिशन संपादित करा", + // "submission.general.cancel": "Cancel", "submission.general.cancel": "रद्द करा", + // "submission.general.cannot_submit": "You don't have permission to make a new submission.", "submission.general.cannot_submit": "आपल्याला नवीन सबमिशन करण्याची परवानगी नाही.", + // "submission.general.deposit": "Deposit", "submission.general.deposit": "ठेव", + // "submission.general.discard.confirm.cancel": "Cancel", "submission.general.discard.confirm.cancel": "रद्द करा", + // "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?", "submission.general.discard.confirm.info": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. आपल्याला खात्री आहे?", + // "submission.general.discard.confirm.submit": "Yes, I'm sure", "submission.general.discard.confirm.submit": "होय, मला खात्री आहे", + // "submission.general.discard.confirm.title": "Discard submission", "submission.general.discard.confirm.title": "सबमिशन रद्द करा", + // "submission.general.discard.submit": "Discard", "submission.general.discard.submit": "रद्द करा", + // "submission.general.back.submit": "Back", "submission.general.back.submit": "मागे", + // "submission.general.info.saved": "Saved", "submission.general.info.saved": "जतन केले", + // "submission.general.info.pending-changes": "Unsaved changes", "submission.general.info.pending-changes": "न जतन केलेले बदल", + // "submission.general.save": "Save", "submission.general.save": "जतन करा", + // "submission.general.save-later": "Save for later", "submission.general.save-later": "नंतर जतन करा", + // "submission.import-external.page.title": "Import metadata from an external source", "submission.import-external.page.title": "बाह्य स्रोतातून मेटाडेटा आयात करा", + // "submission.import-external.title": "Import metadata from an external source", "submission.import-external.title": "बाह्य स्रोतातून मेटाडेटा आयात करा", + // "submission.import-external.title.Journal": "Import a journal from an external source", "submission.import-external.title.Journal": "बाह्य स्रोतातून जर्नल आयात करा", + // "submission.import-external.title.JournalIssue": "Import a journal issue from an external source", "submission.import-external.title.JournalIssue": "बाह्य स्रोतातून जर्नल अंक आयात करा", + // "submission.import-external.title.JournalVolume": "Import a journal volume from an external source", "submission.import-external.title.JournalVolume": "बाह्य स्रोतातून जर्नल खंड आयात करा", + // "submission.import-external.title.OrgUnit": "Import a publisher from an external source", "submission.import-external.title.OrgUnit": "बाह्य स्रोतातून प्रकाशक आयात करा", + // "submission.import-external.title.Person": "Import a person from an external source", "submission.import-external.title.Person": "बाह्य स्रोतातून व्यक्ती आयात करा", + // "submission.import-external.title.Project": "Import a project from an external source", "submission.import-external.title.Project": "बाह्य स्रोतातून प्रकल्प आयात करा", + // "submission.import-external.title.Publication": "Import a publication from an external source", "submission.import-external.title.Publication": "बाह्य स्रोतातून प्रकाशन आयात करा", + // "submission.import-external.title.none": "Import metadata from an external source", "submission.import-external.title.none": "बाह्य स्रोतातून मेटाडेटा आयात करा", + // "submission.import-external.page.hint": "Enter a query above to find items from the web to import in to DSpace.", "submission.import-external.page.hint": "DSpace मध्ये आयात करण्यासाठी वेबवरून आयटम शोधण्यासाठी वरील क्वेरी प्रविष्ट करा.", + // "submission.import-external.back-to-my-dspace": "Back to MyDSpace", "submission.import-external.back-to-my-dspace": "MyDSpace कडे परत जा", + // "submission.import-external.search.placeholder": "Search the external source", "submission.import-external.search.placeholder": "बाह्य स्रोत शोधा", + // "submission.import-external.search.button": "Search", "submission.import-external.search.button": "शोधा", + // "submission.import-external.search.button.hint": "Write some words to search", "submission.import-external.search.button.hint": "शोधण्यासाठी काही शब्द लिहा", + // "submission.import-external.search.source.hint": "Pick an external source", "submission.import-external.search.source.hint": "बाह्य स्रोत निवडा", + // "submission.import-external.source.arxiv": "arXiv", "submission.import-external.source.arxiv": "arXiv", + // "submission.import-external.source.ads": "NASA/ADS", "submission.import-external.source.ads": "NASA/ADS", + // "submission.import-external.source.cinii": "CiNii", "submission.import-external.source.cinii": "CiNii", + // "submission.import-external.source.crossref": "Crossref", "submission.import-external.source.crossref": "Crossref", + // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", + // "submission.import-external.source.dataciteProject": "DataCite", "submission.import-external.source.dataciteProject": "DataCite", + // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", + // "submission.import-external.source.scielo": "SciELO", "submission.import-external.source.scielo": "SciELO", + // "submission.import-external.source.scopus": "Scopus", "submission.import-external.source.scopus": "Scopus", + // "submission.import-external.source.vufind": "VuFind", "submission.import-external.source.vufind": "VuFind", + // "submission.import-external.source.wos": "Web Of Science", "submission.import-external.source.wos": "Web Of Science", + // "submission.import-external.source.orcidWorks": "ORCID", "submission.import-external.source.orcidWorks": "ORCID", + // "submission.import-external.source.epo": "European Patent Office (EPO)", "submission.import-external.source.epo": "European Patent Office (EPO)", + // "submission.import-external.source.loading": "Loading ...", "submission.import-external.source.loading": "लोड करत आहे ...", + // "submission.import-external.source.sherpaJournal": "SHERPA Journals", "submission.import-external.source.sherpaJournal": "SHERPA Journals", + // "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", "submission.import-external.source.sherpaJournalIssn": "ISSN द्वारे SHERPA Journals", + // "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", + // "submission.import-external.source.openaire": "OpenAIRE Search by Authors", "submission.import-external.source.openaire": "लेखकांद्वारे OpenAIRE शोधा", + // "submission.import-external.source.openaireTitle": "OpenAIRE Search by Title", "submission.import-external.source.openaireTitle": "शीर्षकाद्वारे OpenAIRE शोधा", + // "submission.import-external.source.openaireFunding": "OpenAIRE Search by Funder", "submission.import-external.source.openaireFunding": "फंडरद्वारे OpenAIRE शोधा", + // "submission.import-external.source.orcid": "ORCID", "submission.import-external.source.orcid": "ORCID", + // "submission.import-external.source.pubmed": "Pubmed", "submission.import-external.source.pubmed": "Pubmed", + // "submission.import-external.source.pubmedeu": "Pubmed Europe", "submission.import-external.source.pubmedeu": "Pubmed Europe", + // "submission.import-external.source.lcname": "Library of Congress Names", "submission.import-external.source.lcname": "Library of Congress Names", + // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Research Organization Registry (ROR)", + // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", "submission.import-external.source.openalexPublication": "शीर्षकाद्वारे OpenAlex शोधा", + // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", "submission.import-external.source.openalexPublicationByAuthorId": "लेखक आयडीद्वारे OpenAlex शोधा", + // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", "submission.import-external.source.openalexPublicationByDOI": "DOI द्वारे OpenAlex शोधा", + // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", "submission.import-external.source.openalexPerson": "नावाद्वारे OpenAlex शोधा", + // "submission.import-external.source.openalexJournal": "OpenAlex Journals", "submission.import-external.source.openalexJournal": "OpenAlex Journals", + // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", + // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", + // "submission.import-external.source.openalexFunder": "OpenAlex Funders", "submission.import-external.source.openalexFunder": "OpenAlex Funders", + // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "आयटम पूर्वावलोकन", + // "submission.import-external.preview.title.Publication": "Publication Preview", "submission.import-external.preview.title.Publication": "प्रकाशन पूर्वावलोकन", + // "submission.import-external.preview.title.none": "Item Preview", "submission.import-external.preview.title.none": "आयटम पूर्वावलोकन", + // "submission.import-external.preview.title.Journal": "Journal Preview", "submission.import-external.preview.title.Journal": "जर्नल पूर्वावलोकन", + // "submission.import-external.preview.title.OrgUnit": "Organizational Unit Preview", "submission.import-external.preview.title.OrgUnit": "संगठनात्मक युनिट पूर्वावलोकन", + // "submission.import-external.preview.title.Person": "Person Preview", "submission.import-external.preview.title.Person": "व्यक्ती पूर्वावलोकन", + // "submission.import-external.preview.title.Project": "Project Preview", "submission.import-external.preview.title.Project": "प्रकल्प पूर्वावलोकन", + // "submission.import-external.preview.subtitle": "The metadata below was imported from an external source. It will be pre-filled when you start the submission.", "submission.import-external.preview.subtitle": "खालील मेटाडेटा बाह्य स्रोतातून आयात केले गेले आहे. आपण सबमिशन सुरू केल्यावर ते पूर्व-भरले जाईल.", + // "submission.import-external.preview.button.import": "Start submission", "submission.import-external.preview.button.import": "सबमिशन सुरू करा", + // "submission.import-external.preview.error.import.title": "Submission error", "submission.import-external.preview.error.import.title": "सबमिशन त्रुटी", + // "submission.import-external.preview.error.import.body": "An error occurs during the external source entry import process.", "submission.import-external.preview.error.import.body": "बाह्य स्रोत प्रविष्टी आयात प्रक्रियेदरम्यान त्रुटी आली.", + // "submission.sections.describe.relationship-lookup.close": "Close", "submission.sections.describe.relationship-lookup.close": "बंद करा", + // "submission.sections.describe.relationship-lookup.external-source.added": "Successfully added local entry to the selection", "submission.sections.describe.relationship-lookup.external-source.added": "स्थानिक प्रविष्टी यशस्वीरित्या निवडमध्ये जोडली", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Import remote author", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "दूरस्थ लेखक आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Import remote journal", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "दूरस्थ जर्नल आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Import remote journal issue", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "दूरस्थ जर्नल अंक आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Import remote journal volume", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "दूरस्थ जर्नल खंड आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Import remote item", "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "दूरस्थ आयटम आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Import remote event", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "दूरस्थ कार्यक्रम आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Import remote product", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "दूरस्थ उत्पादन आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Import remote equipment", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "दूरस्थ उपकरणे आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "Import remote organizational unit", "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "दूरस्थ संगठनात्मक युनिट आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "Import remote fund", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "दूरस्थ निधी आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Import remote person", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "दूरस्थ व्यक्ती आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Import remote patent", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "दूरस्थ पेटंट आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Import remote project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "दूरस्थ प्रकल्प आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Import remote publication", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "दूरस्थ प्रकाशन आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "नवीन घटक जोडला!", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Import Remote Author", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "दूरस्थ लेखक आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Successfully added local author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "स्थानिक लेखक यशस्वीरित्या निवडमध्ये जोडला", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Successfully imported and added external author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "बाह्य लेखक यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Authority", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "प्राधिकरण", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Import as a new local authority entry", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "नवीन स्थानिक प्राधिकरण प्रविष्टी म्हणून आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Cancel", "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "रद्द करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Select a collection to import new entries to", "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "नवीन प्रविष्टी आयात करण्यासाठी संग्रह निवडा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "Entities", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "घटक", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Import as a new local entity", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "नवीन स्थानिक घटक म्हणून आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC Name मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa Journal मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Importing from Sherpa Publisher", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa Publisher मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Importing from PubMed", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Importing from arXiv", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv मधून आयात करत आहे", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "Import from ROR", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR मधून आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Import", "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Import Remote Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "दूरस्थ जर्नल आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Successfully added local journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "स्थानिक जर्नल यशस्वीरित्या निवडमध्ये जोडले", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Successfully imported and added external journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "बाह्य जर्नल यशस्वीरित्या आयात केले आणि निवडमध्ये जोडले", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Import Remote Journal Issue", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "दूरस्थ जर्नल अंक आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Successfully added local journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "स्थानिक जर्नल अंक यशस्वीरित्या निवडमध्ये जोडला", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Successfully imported and added external journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "बाह्य जर्नल अंक यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Import Remote Journal Volume", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "दूरस्थ जर्नल खंड आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Successfully added local journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "स्थानिक जर्नल खंड यशस्वीरित्या निवडमध्ये जोडला", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Successfully imported and added external journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "बाह्य जर्नल खंड यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", - "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "स्थानिक जुळणारे निवडा:", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "Import Remote Organization", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "दूरस्थ संगठन आयात करा", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "Successfully added local organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "स्थानिक संगठन यशस्वीरित्या निवडमध्ये जोडले", + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "Successfully imported and added external organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "बाह्य संगठन यशस्वीरित्या आयात केले आणि निवडमध्ये जोडले", + // "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Deselect all", "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "सर्व निवड रद्द करा", + // "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Deselect page", "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "पृष्ठ निवड रद्द करा", + // "submission.sections.describe.relationship-lookup.search-tab.loading": "Loading...", "submission.sections.describe.relationship-lookup.search-tab.loading": "लोड करत आहे...", + // "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Search query", "submission.sections.describe.relationship-lookup.search-tab.placeholder": "शोध क्वेरी", + // "submission.sections.describe.relationship-lookup.search-tab.search": "Go", "submission.sections.describe.relationship-lookup.search-tab.search": "जा", + // "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "शोधा...", + // "submission.sections.describe.relationship-lookup.search-tab.select-all": "Select all", "submission.sections.describe.relationship-lookup.search-tab.select-all": "सर्व निवडा", + // "submission.sections.describe.relationship-lookup.search-tab.select-page": "Select page", "submission.sections.describe.relationship-lookup.search-tab.select-page": "पृष्ठ निवडा", + // "submission.sections.describe.relationship-lookup.selected": "Selected {{ size }} items", "submission.sections.describe.relationship-lookup.selected": "निवडलेले {{ size }} आयटम", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "स्थानिक लेखक ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "स्थानिक जर्नल ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Local Projects ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "स्थानिक प्रकल्प ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Local Publications ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "स्थानिक प्रकाशने ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "स्थानिक लेखक ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Local Organizational Units ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "स्थानिक संगठनात्मक युनिट ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Local Data Packages ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "स्थानिक डेटा पॅकेजेस ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Local Data Files ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "स्थानिक डेटा फाइल्स ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "स्थानिक जर्नल ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "स्थानिक जर्नल अंक ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "स्थानिक जर्नल अंक ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "स्थानिक जर्नल खंड ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "स्थानिक जर्नल खंड ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "स्थानिक जर्नल खंड ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Search by Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "लेखकांद्वारे OpenAIRE शोधा ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Search by Title ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "शीर्षकाद्वारे OpenAIRE शोधा ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Search by Funder ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "फंडरद्वारे OpenAIRE शोधा ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN द्वारे Sherpa Journals ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "फंडिंग एजन्सी शोधा", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Search for Funding", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "फंडिंग शोधा", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Search for Organizational Units", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "संगठनात्मक युनिट शोधा", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "प्रकल्पाचा फंडर", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "Publication of the Author", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "लेखकाचे प्रकाशन", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "OrgUnit of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "प्रकल्पाचे संगठनात्मक युनिट", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "प्रकल्पाचा फंडर", + // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + + // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "शोधा...", + // "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Current Selection ({{ count }})", "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "सध्याची निवड ({{ count }})", + // "submission.sections.describe.relationship-lookup.title.Journal": "Journal", "submission.sections.describe.relationship-lookup.title.Journal": "जर्नल", + // "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Journal Issues", "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "जर्नल अंक", + // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "जर्नल अंक", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "जर्नल खंड", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "जर्नल खंड", + // "submission.sections.describe.relationship-lookup.title.JournalVolume": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.JournalVolume": "जर्नल खंड", + // "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "Journals", "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "जर्नल्स", + // "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Authors", "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "लेखक", + // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Funding Agency", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "निधी संस्था", + // "submission.sections.describe.relationship-lookup.title.Project": "Projects", "submission.sections.describe.relationship-lookup.title.Project": "प्रकल्प", + // "submission.sections.describe.relationship-lookup.title.Publication": "Publications", "submission.sections.describe.relationship-lookup.title.Publication": "प्रकाशने", + // "submission.sections.describe.relationship-lookup.title.Person": "Authors", "submission.sections.describe.relationship-lookup.title.Person": "लेखक", + // "submission.sections.describe.relationship-lookup.title.OrgUnit": "Organizational Units", "submission.sections.describe.relationship-lookup.title.OrgUnit": "संघटनात्मक युनिट्स", + // "submission.sections.describe.relationship-lookup.title.DataPackage": "Data Packages", "submission.sections.describe.relationship-lookup.title.DataPackage": "डेटा पॅकेजेस", + // "submission.sections.describe.relationship-lookup.title.DataFile": "Data Files", "submission.sections.describe.relationship-lookup.title.DataFile": "डेटा फाइल्स", + // "submission.sections.describe.relationship-lookup.title.Funding Agency": "Funding Agency", "submission.sections.describe.relationship-lookup.title.Funding Agency": "निधी संस्था", + // "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Funding", "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "निधी", + // "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Parent Organizational Unit", "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "पालक संघटनात्मक युनिट", + // "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "Publication", "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "प्रकाशन", + // "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "OrgUnit", "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "संघटनात्मक युनिट", + // "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Toggle dropdown", "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ड्रॉपडाउन टॉगल करा", + // "submission.sections.describe.relationship-lookup.selection-tab.settings": "Settings", "submission.sections.describe.relationship-lookup.selection-tab.settings": "सेटिंग्ज", + // "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Your selection is currently empty.", "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "आपली निवड सध्या रिकामी आहे.", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "निवडलेले लेखक", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "निवडलेले जर्नल्स", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "निवडलेला जर्नल खंड", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "निवडलेला जर्नल खंड", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Selected Projects", "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "निवडलेले प्रकल्प", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Selected Publications", "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "निवडलेली प्रकाशने", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "निवडलेले लेखक", + // "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Selected Organizational Units", "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "निवडलेले संघटनात्मक युनिट्स", + // "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Selected Data Packages", "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "निवडलेले डेटा पॅकेजेस", + // "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Selected Data Files", "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "निवडलेल्या डेटा फाइल्स", + // "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "निवडलेले जर्नल्स", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "निवडलेला अंक", + // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "निवडलेला जर्नल खंड", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Selected Funding Agency", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "निवडलेली निधी संस्था", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Selected Funding", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "निवडलेला निधी", + // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "निवडलेला अंक", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Selected Organizational Unit", "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "निवडलेले संघटनात्मक युनिट", + // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "शोध परिणाम", + // "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.", "submission.sections.describe.relationship-lookup.name-variant.notification.content": "आपण \"{{ value }}\" या व्यक्तीसाठी नावाचा प्रकार म्हणून जतन करू इच्छिता जेणेकरून आपण आणि इतर भविष्यातील सबमिशनसाठी ते पुन्हा वापरू शकतील? आपण नाही केले तरी आपण हे सबमिशनसाठी वापरू शकता.", + // "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant", "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "नवीन नावाचा प्रकार जतन करा", + // "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Use only for this submission", "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "फक्त या सबमिशनसाठी वापरा", + // "submission.sections.ccLicense.type": "License Type", "submission.sections.ccLicense.type": "परवाना प्रकार", + // "submission.sections.ccLicense.select": "Select a license type…", "submission.sections.ccLicense.select": "परवाना प्रकार निवडा…", + // "submission.sections.ccLicense.change": "Change your license type…", "submission.sections.ccLicense.change": "आपला परवाना प्रकार बदला…", + // "submission.sections.ccLicense.none": "No licenses available", "submission.sections.ccLicense.none": "कोणतेही परवाने उपलब्ध नाहीत", + // "submission.sections.ccLicense.option.select": "Select an option…", "submission.sections.ccLicense.option.select": "एक पर्याय निवडा…", - "submission.sections.ccLicense.link": "आपण खालील परवाना निवडला आहे:", + // "submission.sections.ccLicense.link": "You’ve selected the following license:", + // TODO New key - Add a translation + "submission.sections.ccLicense.link": "You’ve selected the following license:", + // "submission.sections.ccLicense.confirmation": "I grant the license above", "submission.sections.ccLicense.confirmation": "मी वरील परवाना मंजूर करतो", + // "submission.sections.general.add-more": "Add more", "submission.sections.general.add-more": "अधिक जोडा", + // "submission.sections.general.cannot_deposit": "Deposit cannot be completed due to errors in the form.
Please fill out all required fields to complete the deposit.", "submission.sections.general.cannot_deposit": "फॉर्ममध्ये त्रुटी असल्यामुळे ठेव पूर्ण केली जाऊ शकत नाही.
सर्व आवश्यक फील्ड भरा जेणेकरून ठेव पूर्ण होईल.", + // "submission.sections.general.collection": "Collection", "submission.sections.general.collection": "संग्रह", + // "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.", "submission.sections.general.deposit_error_notice": "आयटम सबमिट करताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", + // "submission.sections.general.deposit_success_notice": "Submission deposited successfully.", "submission.sections.general.deposit_success_notice": "सबमिशन यशस्वीरित्या ठेवले गेले.", + // "submission.sections.general.discard_error_notice": "There was an issue when discarding the item, please try again later.", "submission.sections.general.discard_error_notice": "आयटम काढून टाकताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", + // "submission.sections.general.discard_success_notice": "Submission discarded successfully.", "submission.sections.general.discard_success_notice": "सबमिशन यशस्वीरित्या काढून टाकले गेले.", + // "submission.sections.general.metadata-extracted": "New metadata have been extracted and added to the {{sectionId}} section.", "submission.sections.general.metadata-extracted": "नवीन मेटाडेटा काढले गेले आहेत आणि {{sectionId}} विभागात जोडले गेले आहेत.", + // "submission.sections.general.metadata-extracted-new-section": "New {{sectionId}} section has been added to submission.", "submission.sections.general.metadata-extracted-new-section": "नवीन {{sectionId}} विभाग सबमिशनमध्ये जोडला गेला आहे.", + // "submission.sections.general.no-collection": "No collection found", "submission.sections.general.no-collection": "कोणताही संग्रह सापडला नाही", + // "submission.sections.general.no-entity": "No entity types found", "submission.sections.general.no-entity": "कोणतेही घटक प्रकार सापडले नाहीत", + // "submission.sections.general.no-sections": "No options available", "submission.sections.general.no-sections": "कोणतेही पर्याय उपलब्ध नाहीत", + // "submission.sections.general.save_error_notice": "There was an issue when saving the item, please try again later.", "submission.sections.general.save_error_notice": "आयटम जतन करताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", + // "submission.sections.general.save_success_notice": "Submission saved successfully.", "submission.sections.general.save_success_notice": "सबमिशन यशस्वीरित्या जतन केले.", + // "submission.sections.general.search-collection": "Search for a collection", "submission.sections.general.search-collection": "संग्रह शोधा", + // "submission.sections.general.sections_not_valid": "There are incomplete sections.", "submission.sections.general.sections_not_valid": "अपूर्ण विभाग आहेत.", - "submission.sections.identifiers.info": "आपल्या आयटमसाठी खालील ओळखपत्रे तयार केली जातील:", + // "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + // TODO New key - Add a translation + "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + // "submission.sections.identifiers.no_handle": "No handles have been minted for this item.", "submission.sections.identifiers.no_handle": "या आयटमसाठी कोणतेही हँडल तयार केले गेले नाहीत.", + // "submission.sections.identifiers.no_doi": "No DOIs have been minted for this item.", "submission.sections.identifiers.no_doi": "या आयटमसाठी कोणतेही DOI तयार केले गेले नाहीत.", - "submission.sections.identifiers.handle_label": "हँडल: ", + // "submission.sections.identifiers.handle_label": "Handle: ", + // TODO New key - Add a translation + "submission.sections.identifiers.handle_label": "Handle: ", + // "submission.sections.identifiers.doi_label": "DOI: ", "submission.sections.identifiers.doi_label": "DOI: ", - "submission.sections.identifiers.otherIdentifiers_label": "इतर ओळखपत्रे: ", + // "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + // TODO New key - Add a translation + "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + // "submission.sections.submit.progressbar.accessCondition": "Item access conditions", "submission.sections.submit.progressbar.accessCondition": "आयटम प्रवेश अटी", + // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "क्रिएटिव्ह कॉमन्स परवाना", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "रीसायकल", + // "submission.sections.submit.progressbar.describe.stepcustom": "Describe", "submission.sections.submit.progressbar.describe.stepcustom": "वर्णन करा", + // "submission.sections.submit.progressbar.describe.stepone": "Describe", "submission.sections.submit.progressbar.describe.stepone": "वर्णन करा", + // "submission.sections.submit.progressbar.describe.steptwo": "Describe", "submission.sections.submit.progressbar.describe.steptwo": "वर्णन करा", + // "submission.sections.submit.progressbar.duplicates": "Potential duplicates", "submission.sections.submit.progressbar.duplicates": "संभाव्य डुप्लिकेट", + // "submission.sections.submit.progressbar.identifiers": "Identifiers", "submission.sections.submit.progressbar.identifiers": "ओळखपत्रे", + // "submission.sections.submit.progressbar.license": "Deposit license", "submission.sections.submit.progressbar.license": "ठेव परवाना", + // "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies", "submission.sections.submit.progressbar.sherpapolicy": "शेरपा धोरणे", + // "submission.sections.submit.progressbar.upload": "Upload files", "submission.sections.submit.progressbar.upload": "फाइल्स अपलोड करा", + // "submission.sections.submit.progressbar.sherpaPolicies": "Publisher open access policy information", "submission.sections.submit.progressbar.sherpaPolicies": "प्रकाशक खुले प्रवेश धोरण माहिती", + // "submission.sections.sherpa-policy.title-empty": "No publisher policy information available. If your work has an associated ISSN, please enter it above to see any related publisher open access policies.", "submission.sections.sherpa-policy.title-empty": "कोणतीही प्रकाशक धोरण माहिती उपलब्ध नाही. आपले कार्य संबंधित ISSN आहे, कृपया वरील प्रविष्ट करा जेणेकरून संबंधित प्रकाशक खुले प्रवेश धोरणे पाहता येतील.", + // "submission.sections.status.errors.title": "Errors", "submission.sections.status.errors.title": "त्रुटी", + // "submission.sections.status.valid.title": "Valid", "submission.sections.status.valid.title": "वैध", + // "submission.sections.status.warnings.title": "Warnings", "submission.sections.status.warnings.title": "चेतावणी", + // "submission.sections.status.errors.aria": "has errors", "submission.sections.status.errors.aria": "त्रुटी आहेत", + // "submission.sections.status.valid.aria": "is valid", "submission.sections.status.valid.aria": "वैध आहे", + // "submission.sections.status.warnings.aria": "has warnings", "submission.sections.status.warnings.aria": "चेतावणी आहेत", + // "submission.sections.status.info.title": "Additional Information", "submission.sections.status.info.title": "अतिरिक्त माहिती", + // "submission.sections.status.info.aria": "Additional Information", "submission.sections.status.info.aria": "अतिरिक्त माहिती", + // "submission.sections.toggle.open": "Open section", "submission.sections.toggle.open": "विभाग उघडा", + // "submission.sections.toggle.close": "Close section", "submission.sections.toggle.close": "विभाग बंद करा", + // "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section", "submission.sections.toggle.aria.open": "{{sectionHeader}} विभाग विस्तृत करा", + // "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section", "submission.sections.toggle.aria.close": "{{sectionHeader}} विभाग संकुचित करा", + // "submission.sections.upload.primary.make": "Make {{fileName}} the primary bitstream", "submission.sections.upload.primary.make": "{{fileName}} प्राथमिक बिटस्ट्रीम बनवा", + // "submission.sections.upload.primary.remove": "Remove {{fileName}} as the primary bitstream", "submission.sections.upload.primary.remove": "{{fileName}} प्राथमिक बिटस्ट्रीम म्हणून काढा", + // "submission.sections.upload.delete.confirm.cancel": "Cancel", "submission.sections.upload.delete.confirm.cancel": "रद्द करा", + // "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?", "submission.sections.upload.delete.confirm.info": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. आपण खात्री आहात?", + // "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure", "submission.sections.upload.delete.confirm.submit": "होय, मला खात्री आहे", + // "submission.sections.upload.delete.confirm.title": "Delete bitstream", "submission.sections.upload.delete.confirm.title": "बिटस्ट्रीम हटवा", + // "submission.sections.upload.delete.submit": "Delete", "submission.sections.upload.delete.submit": "हटवा", + // "submission.sections.upload.download.title": "Download bitstream", "submission.sections.upload.download.title": "बिटस्ट्रीम डाउनलोड करा", + // "submission.sections.upload.drop-message": "Drop files to attach them to the item", "submission.sections.upload.drop-message": "आयटमला जोडण्यासाठी फाइल्स ड्रॉप करा", + // "submission.sections.upload.edit.title": "Edit bitstream", "submission.sections.upload.edit.title": "बिटस्ट्रीम संपादित करा", + // "submission.sections.upload.form.access-condition-label": "Access condition type", "submission.sections.upload.form.access-condition-label": "प्रवेश अटी प्रकार", + // "submission.sections.upload.form.access-condition-hint": "Select an access condition to apply on the bitstream once the item is deposited", "submission.sections.upload.form.access-condition-hint": "आयटम ठेवल्यानंतर बिटस्ट्रीमवर लागू करण्यासाठी प्रवेश अटी निवडा", + // "submission.sections.upload.form.date-required": "Date is required.", "submission.sections.upload.form.date-required": "तारीख आवश्यक आहे.", + // "submission.sections.upload.form.date-required-from": "Grant access from date is required.", "submission.sections.upload.form.date-required-from": "प्रवेश देण्याची तारीख आवश्यक आहे.", + // "submission.sections.upload.form.date-required-until": "Grant access until date is required.", "submission.sections.upload.form.date-required-until": "प्रवेश देण्याची तारीख आवश्यक आहे.", + // "submission.sections.upload.form.from-label": "Grant access from", "submission.sections.upload.form.from-label": "प्रवेश देण्याची तारीख", + // "submission.sections.upload.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.upload.form.from-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", + // "submission.sections.upload.form.from-placeholder": "From", "submission.sections.upload.form.from-placeholder": "पासून", + // "submission.sections.upload.form.group-label": "Group", "submission.sections.upload.form.group-label": "गट", + // "submission.sections.upload.form.group-required": "Group is required.", "submission.sections.upload.form.group-required": "गट आवश्यक आहे.", + // "submission.sections.upload.form.until-label": "Grant access until", "submission.sections.upload.form.until-label": "पर्यंत प्रवेश द्या", + // "submission.sections.upload.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.upload.form.until-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", + // "submission.sections.upload.form.until-placeholder": "Until", "submission.sections.upload.form.until-placeholder": "पर्यंत", - "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} संग्रहातील अपलोड केलेल्या फाइल्स खालील गटांनुसार प्रवेशयोग्य असतील:", + // "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", + // TODO New key - Add a translation + "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", - "submission.sections.upload.header.policy.default.withlist": "कृपया लक्षात घ्या की {{collectionName}} संग्रहातील अपलोड केलेल्या फाइल्स, एकल फाइलसाठी स्पष्टपणे ठरवलेल्या गोष्टींशिवाय, खालील गटांसह प्रवेशयोग्य असतील:", + // "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + // TODO New key - Add a translation + "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + // "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or upload additional files by dragging & dropping them anywhere on the page.", "submission.sections.upload.info": "येथे आपल्याला आयटममधील सर्व फाइल्स सापडतील. आपण फाइल मेटाडेटा आणि प्रवेश अटी अद्यतनित करू शकता किंवा पृष्ठावर कुठेही ड्रॅग आणि ड्रॉप करून अतिरिक्त फाइल्स अपलोड करू शकता.", + // "submission.sections.upload.no-entry": "No", "submission.sections.upload.no-entry": "नाही", + // "submission.sections.upload.no-file-uploaded": "No file uploaded yet.", "submission.sections.upload.no-file-uploaded": "अद्याप कोणतीही फाइल अपलोड केलेली नाही.", + // "submission.sections.upload.save-metadata": "Save metadata", "submission.sections.upload.save-metadata": "मेटाडेटा जतन करा", + // "submission.sections.upload.undo": "Cancel", "submission.sections.upload.undo": "रद्द करा", + // "submission.sections.upload.upload-failed": "Upload failed", "submission.sections.upload.upload-failed": "अपलोड अयशस्वी", + // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "अपलोड यशस्वी", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "जेव्हा तपासले जाते, तेव्हा हा आयटम शोध/ब्राउझमध्ये शोधण्यायोग्य असेल. जेव्हा तपासले जात नाही, तेव्हा आयटम फक्त थेट लिंकद्वारे उपलब्ध असेल आणि कधीही शोध/ब्राउझमध्ये दिसणार नाही.", + // "submission.sections.accesses.form.discoverable-label": "Discoverable", "submission.sections.accesses.form.discoverable-label": "शोधण्यायोग्य", + // "submission.sections.accesses.form.access-condition-label": "Access condition type", "submission.sections.accesses.form.access-condition-label": "प्रवेश अटी प्रकार", + // "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited", "submission.sections.accesses.form.access-condition-hint": "आयटम ठेवल्यानंतर लागू करण्यासाठी प्रवेश अटी निवडा", + // "submission.sections.accesses.form.date-required": "Date is required.", "submission.sections.accesses.form.date-required": "तारीख आवश्यक आहे.", + // "submission.sections.accesses.form.date-required-from": "Grant access from date is required.", "submission.sections.accesses.form.date-required-from": "प्रवेश देण्याची तारीख आवश्यक आहे.", + // "submission.sections.accesses.form.date-required-until": "Grant access until date is required.", "submission.sections.accesses.form.date-required-until": "प्रवेश देण्याची तारीख आवश्यक आहे.", + // "submission.sections.accesses.form.from-label": "Grant access from", "submission.sections.accesses.form.from-label": "प्रवेश देण्याची तारीख", + // "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.accesses.form.from-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", + // "submission.sections.accesses.form.from-placeholder": "From", "submission.sections.accesses.form.from-placeholder": "पासून", + // "submission.sections.accesses.form.group-label": "Group", "submission.sections.accesses.form.group-label": "गट", + // "submission.sections.accesses.form.group-required": "Group is required.", "submission.sections.accesses.form.group-required": "गट आवश्यक आहे.", + // "submission.sections.accesses.form.until-label": "Grant access until", "submission.sections.accesses.form.until-label": "पर्यंत प्रवेश द्या", + // "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.accesses.form.until-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", + // "submission.sections.accesses.form.until-placeholder": "Until", "submission.sections.accesses.form.until-placeholder": "पर्यंत", + // "submission.sections.duplicates.none": "No duplicates were detected.", "submission.sections.duplicates.none": "कोणतेही डुप्लिकेट आढळले नाहीत.", + // "submission.sections.duplicates.detected": "Potential duplicates were detected. Please review the list below.", "submission.sections.duplicates.detected": "संभाव्य डुप्लिकेट आढळले. कृपया खालील यादी पुनरावलोकन करा.", + // "submission.sections.duplicates.in-workspace": "This item is in workspace", "submission.sections.duplicates.in-workspace": "हा आयटम कार्यक्षेत्रात आहे", + // "submission.sections.duplicates.in-workflow": "This item is in workflow", "submission.sections.duplicates.in-workflow": "हा आयटम कार्यप्रवाहात आहे", + // "submission.sections.license.granted-label": "I confirm the license above", "submission.sections.license.granted-label": "मी वरील परवाना पुष्टी करतो", + // "submission.sections.license.required": "You must accept the license", "submission.sections.license.required": "आपण परवाना स्वीकारणे आवश्यक आहे", + // "submission.sections.license.notgranted": "You must accept the license", "submission.sections.license.notgranted": "आपण परवाना स्वीकारणे आवश्यक आहे", + // "submission.sections.sherpa.publication.information": "Publication information", "submission.sections.sherpa.publication.information": "प्रकाशन माहिती", + // "submission.sections.sherpa.publication.information.title": "Title", "submission.sections.sherpa.publication.information.title": "शीर्षक", + // "submission.sections.sherpa.publication.information.issns": "ISSNs", "submission.sections.sherpa.publication.information.issns": "ISSNs", + // "submission.sections.sherpa.publication.information.url": "URL", "submission.sections.sherpa.publication.information.url": "URL", + // "submission.sections.sherpa.publication.information.publishers": "Publisher", "submission.sections.sherpa.publication.information.publishers": "प्रकाशक", + // "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", "submission.sections.sherpa.publication.information.romeoPub": "रोमियो पब", + // "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", "submission.sections.sherpa.publication.information.zetoPub": "झेटो पब", + // "submission.sections.sherpa.publisher.policy": "Publisher Policy", "submission.sections.sherpa.publisher.policy": "प्रकाशक धोरण", + // "submission.sections.sherpa.publisher.policy.description": "The below information was found via Sherpa Romeo. Based on the policies of your publisher, it provides advice regarding whether an embargo may be necessary and/or which files you are allowed to upload. If you have questions, please contact your site administrator via the feedback form in the footer.", "submission.sections.sherpa.publisher.policy.description": "खालील माहिती शेरपा रोमियोद्वारे आढळली. आपल्या प्रकाशकाच्या धोरणांवर आधारित, हे सल्ला देते की एम्बार्गो आवश्यक आहे का आणि/किंवा कोणत्या फाइल्स अपलोड करण्यास परवानगी आहे. आपल्याला प्रश्न असल्यास, कृपया फूटरमधील अभिप्राय फॉर्मद्वारे आपल्या साइट प्रशासकाशी संपर्क साधा.", + // "submission.sections.sherpa.publisher.policy.openaccess": "Open Access pathways permitted by this journal's policy are listed below by article version. Click on a pathway for a more detailed view", "submission.sections.sherpa.publisher.policy.openaccess": "या जर्नलच्या धोरणाद्वारे परवानगी दिलेल्या खुले प्रवेश मार्ग खालीलप्रमाणे लेख आवृत्तीने सूचीबद्ध आहेत. अधिक तपशीलवार दृश्यासाठी मार्गावर क्लिक करा", - "submission.sections.sherpa.publisher.policy.more.information": "अधिक माहितीसाठी, कृपया खालील दुवे पहा:", + // "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + // "submission.sections.sherpa.publisher.policy.version": "Version", "submission.sections.sherpa.publisher.policy.version": "आवृत्ती", + // "submission.sections.sherpa.publisher.policy.embargo": "Embargo", "submission.sections.sherpa.publisher.policy.embargo": "एम्बार्गो", + // "submission.sections.sherpa.publisher.policy.noembargo": "No Embargo", "submission.sections.sherpa.publisher.policy.noembargo": "कोणताही एम्बार्गो नाही", + // "submission.sections.sherpa.publisher.policy.nolocation": "None", "submission.sections.sherpa.publisher.policy.nolocation": "कोणतेही स्थान नाही", + // "submission.sections.sherpa.publisher.policy.license": "License", "submission.sections.sherpa.publisher.policy.license": "परवाना", + // "submission.sections.sherpa.publisher.policy.prerequisites": "Prerequisites", "submission.sections.sherpa.publisher.policy.prerequisites": "पूर्वअटी", + // "submission.sections.sherpa.publisher.policy.location": "Location", "submission.sections.sherpa.publisher.policy.location": "स्थान", + // "submission.sections.sherpa.publisher.policy.conditions": "Conditions", "submission.sections.sherpa.publisher.policy.conditions": "अटी", + // "submission.sections.sherpa.publisher.policy.refresh": "Refresh", "submission.sections.sherpa.publisher.policy.refresh": "रिफ्रेश", + // "submission.sections.sherpa.record.information": "Record Information", "submission.sections.sherpa.record.information": "रेकॉर्ड माहिती", + // "submission.sections.sherpa.record.information.id": "ID", "submission.sections.sherpa.record.information.id": "आयडी", + // "submission.sections.sherpa.record.information.date.created": "Date Created", "submission.sections.sherpa.record.information.date.created": "तयार केलेली तारीख", + // "submission.sections.sherpa.record.information.date.modified": "Last Modified", "submission.sections.sherpa.record.information.date.modified": "शेवटचे बदललेले", + // "submission.sections.sherpa.record.information.uri": "URI", "submission.sections.sherpa.record.information.uri": "यूआरआय", + // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations", "submission.sections.sherpa.error.message": "शेरपा माहिती मिळवताना त्रुटी आली", + // "submission.submit.breadcrumbs": "New submission", "submission.submit.breadcrumbs": "नवीन सबमिशन", + // "submission.submit.title": "New submission", "submission.submit.title": "नवीन सबमिशन", + // "submission.workflow.generic.delete": "Delete", "submission.workflow.generic.delete": "हटवा", + // "submission.workflow.generic.delete-help": "Select this option to discard this item. You will then be asked to confirm it.", "submission.workflow.generic.delete-help": "या आयटमला काढून टाकण्यासाठी हा पर्याय निवडा. तुम्हाला नंतर ते पुष्टी करण्यास सांगितले जाईल.", + // "submission.workflow.generic.edit": "Edit", "submission.workflow.generic.edit": "संपादित करा", + // "submission.workflow.generic.edit-help": "Select this option to change the item's metadata.", "submission.workflow.generic.edit-help": "आयटमची मेटाडेटा बदलण्यासाठी हा पर्याय निवडा.", + // "submission.workflow.generic.view": "View", "submission.workflow.generic.view": "पहा", + // "submission.workflow.generic.view-help": "Select this option to view the item's metadata.", "submission.workflow.generic.view-help": "आयटमची मेटाडेटा पाहण्यासाठी हा पर्याय निवडा.", + // "submission.workflow.generic.submit_select_reviewer": "Select Reviewer", "submission.workflow.generic.submit_select_reviewer": "पुनरावलोकक निवडा", + // "submission.workflow.generic.submit_select_reviewer-help": "", "submission.workflow.generic.submit_select_reviewer-help": "", + // "submission.workflow.generic.submit_score": "Rate", "submission.workflow.generic.submit_score": "रेट करा", + // "submission.workflow.generic.submit_score-help": "", "submission.workflow.generic.submit_score-help": "", + // "submission.workflow.tasks.claimed.approve": "Approve", "submission.workflow.tasks.claimed.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": "जर तुम्ही आयटमचे पुनरावलोकन केले असेल आणि ते संग्रहात समाविष्ट करण्यासाठी योग्य असल्याचे आढळले असेल, तर \"मंजूर करा\" निवडा.", + // "submission.workflow.tasks.claimed.edit": "Edit", "submission.workflow.tasks.claimed.edit": "संपादित करा", + // "submission.workflow.tasks.claimed.edit_help": "Select this option to change the item's metadata.", "submission.workflow.tasks.claimed.edit_help": "आयटमची मेटाडेटा बदलण्यासाठी हा पर्याय निवडा.", + // "submission.workflow.tasks.claimed.decline": "Decline", "submission.workflow.tasks.claimed.decline": "नकार द्या", + // "submission.workflow.tasks.claimed.decline_help": "", "submission.workflow.tasks.claimed.decline_help": "", + // "submission.workflow.tasks.claimed.reject.reason.info": "Please enter your reason for rejecting the submission into the box below, indicating whether the submitter may fix a problem and resubmit.", "submission.workflow.tasks.claimed.reject.reason.info": "कृपया सबमिशन नाकारण्याचे कारण खालील बॉक्समध्ये प्रविष्ट करा, सबमिटरला समस्या दुरुस्त करून पुन्हा सबमिट करण्याची परवानगी आहे की नाही हे दर्शवा.", + // "submission.workflow.tasks.claimed.reject.reason.placeholder": "Describe the reason of reject", "submission.workflow.tasks.claimed.reject.reason.placeholder": "नकाराचे कारण वर्णन करा", + // "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item", "submission.workflow.tasks.claimed.reject.reason.submit": "आयटम नकारा", + // "submission.workflow.tasks.claimed.reject.reason.title": "Reason", "submission.workflow.tasks.claimed.reject.reason.title": "कारण", + // "submission.workflow.tasks.claimed.reject.submit": "Reject", "submission.workflow.tasks.claimed.reject.submit": "नकारा", + // "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is not 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": "जर तुम्ही आयटमचे पुनरावलोकन केले असेल आणि ते संग्रहात समाविष्ट करण्यासाठी योग्य नसल्याचे आढळले असेल, तर \"नकारा\" निवडा. तुम्हाला नंतर आयटम का अयोग्य आहे हे दर्शविणारा संदेश प्रविष्ट करण्यास सांगितले जाईल आणि सबमिटरने काहीतरी बदलावे आणि पुन्हा सबमिट करावे का हे दर्शवावे.", + // "submission.workflow.tasks.claimed.return": "Return to pool", "submission.workflow.tasks.claimed.return": "पूलमध्ये परत करा", + // "submission.workflow.tasks.claimed.return_help": "Return the task to the pool so that another user may perform the task.", "submission.workflow.tasks.claimed.return_help": "कार्य पूलमध्ये परत करा जेणेकरून दुसरा वापरकर्ता कार्य करू शकेल.", + // "submission.workflow.tasks.generic.error": "Error occurred during operation...", "submission.workflow.tasks.generic.error": "ऑपरेशन दरम्यान त्रुटी आली...", + // "submission.workflow.tasks.generic.processing": "Processing...", "submission.workflow.tasks.generic.processing": "प्रक्रिया...", + // "submission.workflow.tasks.generic.submitter": "Submitter", "submission.workflow.tasks.generic.submitter": "सबमिटर", + // "submission.workflow.tasks.generic.success": "Operation successful", "submission.workflow.tasks.generic.success": "ऑपरेशन यशस्वी", + // "submission.workflow.tasks.pool.claim": "Claim", "submission.workflow.tasks.pool.claim": "दावा करा", + // "submission.workflow.tasks.pool.claim_help": "Assign this task to yourself.", "submission.workflow.tasks.pool.claim_help": "हे कार्य स्वतःला नियुक्त करा.", + // "submission.workflow.tasks.pool.hide-detail": "Hide detail", "submission.workflow.tasks.pool.hide-detail": "तपशील लपवा", + // "submission.workflow.tasks.pool.show-detail": "Show detail", "submission.workflow.tasks.pool.show-detail": "तपशील दाखवा", + // "submission.workflow.tasks.duplicates": "potential duplicates were detected for this item. Claim and edit this item to see details.", "submission.workflow.tasks.duplicates": "या आयटमसाठी संभाव्य डुप्लिकेट आढळले. तपशील पाहण्यासाठी हा आयटम दावा करा आणि संपादित करा.", + // "submission.workspace.generic.view": "View", "submission.workspace.generic.view": "पहा", + // "submission.workspace.generic.view-help": "Select this option to view the item's metadata.", "submission.workspace.generic.view-help": "आयटमची मेटाडेटा पाहण्यासाठी हा पर्याय निवडा.", + // "submitter.empty": "N/A", "submitter.empty": "N/A", + // "subscriptions.title": "Subscriptions", "subscriptions.title": "सदस्यता", + // "subscriptions.item": "Subscriptions for items", "subscriptions.item": "आयटमसाठी सदस्यता", + // "subscriptions.collection": "Subscriptions for collections", "subscriptions.collection": "संग्रहासाठी सदस्यता", + // "subscriptions.community": "Subscriptions for communities", "subscriptions.community": "समुदायासाठी सदस्यता", + // "subscriptions.subscription_type": "Subscription type", "subscriptions.subscription_type": "सदस्यता प्रकार", + // "subscriptions.frequency": "Subscription frequency", "subscriptions.frequency": "सदस्यता वारंवारता", + // "subscriptions.frequency.D": "Daily", "subscriptions.frequency.D": "दैनिक", + // "subscriptions.frequency.M": "Monthly", "subscriptions.frequency.M": "मासिक", + // "subscriptions.frequency.W": "Weekly", "subscriptions.frequency.W": "साप्ताहिक", + // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "सदस्यता घ्या", + // "subscriptions.unsubscribe": "Unsubscribe", "subscriptions.unsubscribe": "सदस्यता रद्द करा", + // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "सदस्यता", + // "subscriptions.modal.type-frequency": "Type and frequency", "subscriptions.modal.type-frequency": "प्रकार आणि वारंवारता", + // "subscriptions.modal.close": "Close", "subscriptions.modal.close": "बंद करा", + // "subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile", "subscriptions.modal.delete-info": "ही सदस्यता काढून टाकण्यासाठी, कृपया तुमच्या वापरकर्ता प्रोफाइल अंतर्गत \"सदस्यता\" पृष्ठावर जा", + // "subscriptions.modal.new-subscription-form.type.content": "Content", "subscriptions.modal.new-subscription-form.type.content": "सामग्री", + // "subscriptions.modal.new-subscription-form.frequency.D": "Daily", "subscriptions.modal.new-subscription-form.frequency.D": "दैनिक", + // "subscriptions.modal.new-subscription-form.frequency.W": "Weekly", "subscriptions.modal.new-subscription-form.frequency.W": "साप्ताहिक", + // "subscriptions.modal.new-subscription-form.frequency.M": "Monthly", "subscriptions.modal.new-subscription-form.frequency.M": "मासिक", + // "subscriptions.modal.new-subscription-form.submit": "Submit", "subscriptions.modal.new-subscription-form.submit": "सबमिट करा", + // "subscriptions.modal.new-subscription-form.processing": "Processing...", "subscriptions.modal.new-subscription-form.processing": "प्रक्रिया...", + // "subscriptions.modal.create.success": "Subscribed to {{ type }} successfully.", "subscriptions.modal.create.success": "{{ प्रकार }} ला यशस्वीरित्या सदस्यता घेतली.", + // "subscriptions.modal.delete.success": "Subscription deleted successfully", "subscriptions.modal.delete.success": "सदस्यता यशस्वीरित्या हटवली", + // "subscriptions.modal.update.success": "Subscription to {{ type }} updated successfully", "subscriptions.modal.update.success": "{{ प्रकार }} ला सदस्यता यशस्वीरित्या अद्यतनित केली", + // "subscriptions.modal.create.error": "An error occurs during the subscription creation", "subscriptions.modal.create.error": "सदस्यता निर्मिती दरम्यान त्रुटी आली", + // "subscriptions.modal.delete.error": "An error occurs during the subscription delete", "subscriptions.modal.delete.error": "सदस्यता हटवताना त्रुटी आली", + // "subscriptions.modal.update.error": "An error occurs during the subscription update", "subscriptions.modal.update.error": "सदस्यता अद्यतनित करताना त्रुटी आली", + // "subscriptions.table.dso": "Subject", "subscriptions.table.dso": "विषय", + // "subscriptions.table.subscription_type": "Subscription Type", "subscriptions.table.subscription_type": "सदस्यता प्रकार", + // "subscriptions.table.subscription_frequency": "Subscription Frequency", "subscriptions.table.subscription_frequency": "सदस्यता वारंवारता", + // "subscriptions.table.action": "Action", "subscriptions.table.action": "क्रिया", + // "subscriptions.table.edit": "Edit", "subscriptions.table.edit": "संपादित करा", + // "subscriptions.table.delete": "Delete", "subscriptions.table.delete": "हटवा", + // "subscriptions.table.not-available": "Not available", "subscriptions.table.not-available": "उपलब्ध नाही", + // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "सदस्यता घेतलेला आयटम हटवला गेला आहे, किंवा तुम्हाला सध्या ते पाहण्याची परवानगी नाही", + // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", "subscriptions.table.empty.message": "तुमच्याकडे सध्या कोणतीही सदस्यता नाही. समुदाय किंवा संग्रहासाठी ईमेल अद्यतनांसाठी सदस्यता घेण्यासाठी, ऑब्जेक्टच्या पृष्ठावरील सदस्यता बटण वापरा.", + // "thumbnail.default.alt": "Thumbnail Image", "thumbnail.default.alt": "थंबनेल प्रतिमा", + // "thumbnail.default.placeholder": "No Thumbnail Available", "thumbnail.default.placeholder": "थंबनेल उपलब्ध नाही", + // "thumbnail.project.alt": "Project Logo", "thumbnail.project.alt": "प्रकल्प लोगो", + // "thumbnail.project.placeholder": "Project Placeholder Image", "thumbnail.project.placeholder": "प्रकल्प प्लेसहोल्डर प्रतिमा", + // "thumbnail.orgunit.alt": "OrgUnit Logo", "thumbnail.orgunit.alt": "संगठन युनिट लोगो", + // "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image", "thumbnail.orgunit.placeholder": "संगठन युनिट प्लेसहोल्डर प्रतिमा", + // "thumbnail.person.alt": "Profile Picture", "thumbnail.person.alt": "प्रोफाइल चित्र", + // "thumbnail.person.placeholder": "No Profile Picture Available", "thumbnail.person.placeholder": "प्रोफाइल चित्र उपलब्ध नाही", + // "title": "DSpace", "title": "डीस्पेस", + // "vocabulary-treeview.header": "Hierarchical tree view", "vocabulary-treeview.header": "अनुक्रमणिका दृश्य", + // "vocabulary-treeview.load-more": "Load more", "vocabulary-treeview.load-more": "अधिक लोड करा", + // "vocabulary-treeview.search.form.reset": "Reset", "vocabulary-treeview.search.form.reset": "रीसेट करा", + // "vocabulary-treeview.search.form.search": "Search", "vocabulary-treeview.search.form.search": "शोधा", + // "vocabulary-treeview.search.form.search-placeholder": "Filter results by typing the first few letters", "vocabulary-treeview.search.form.search-placeholder": "पहिल्या काही अक्षरांनी परिणाम फिल्टर करा", + // "vocabulary-treeview.search.no-result": "There were no items to show", "vocabulary-treeview.search.no-result": "दाखवण्यासाठी कोणतेही आयटम नाहीत", + // "vocabulary-treeview.tree.description.nsi": "The Norwegian Science Index", "vocabulary-treeview.tree.description.nsi": "नॉर्वेजियन सायन्स इंडेक्स", + // "vocabulary-treeview.tree.description.srsc": "Research Subject Categories", "vocabulary-treeview.tree.description.srsc": "संशोधन विषय श्रेणी", + // "vocabulary-treeview.info": "Select a subject to add as search filter", "vocabulary-treeview.info": "शोध फिल्टर म्हणून जोडण्यासाठी एक विषय निवडा", + // "uploader.browse": "browse", "uploader.browse": "ब्राउझ करा", + // "uploader.drag-message": "Drag & Drop your files here", "uploader.drag-message": "तुमच्या फाइल्स येथे ड्रॅग आणि ड्रॉप करा", + // "uploader.delete.btn-title": "Delete", "uploader.delete.btn-title": "हटवा", + // "uploader.or": ", or ", "uploader.or": ", किंवा ", + // "uploader.processing": "Processing uploaded file(s)... (it's now safe to close this page)", "uploader.processing": "अपलोड केलेल्या फाइल्स प्रक्रिया करत आहे... (हे पृष्ठ बंद करणे आता सुरक्षित आहे)", + // "uploader.queue-length": "Queue length", "uploader.queue-length": "क्यू लांबी", + // "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": "आभासी मेटाडेटा वास्तविक मेटाडेटा म्हणून जतन करण्यासाठी तुम्हाला हवे असलेले प्रकार निवडा", + // "virtual-metadata.delete-item.modal-head": "The virtual metadata of this relation", "virtual-metadata.delete-item.modal-head": "या संबंधाचे आभासी मेटाडेटा", + // "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": "आभासी मेटाडेटा वास्तविक मेटाडेटा म्हणून जतन करण्यासाठी तुम्हाला हवे असलेले आयटम निवडा", + // "supervisedWorkspace.search.results.head": "Supervised Items", "supervisedWorkspace.search.results.head": "पर्यवेक्षित आयटम", + // "workspace.search.results.head": "Your submissions", "workspace.search.results.head": "तुमच्या सबमिशन", + // "workflowAdmin.search.results.head": "Administer Workflow", "workflowAdmin.search.results.head": "वर्कफ्लो प्रशासित करा", + // "workflow.search.results.head": "Workflow tasks", "workflow.search.results.head": "वर्कफ्लो कार्ये", + // "supervision.search.results.head": "Workflow and Workspace tasks", "supervision.search.results.head": "वर्कफ्लो आणि वर्कस्पेस कार्ये", + // "workflow-item.edit.breadcrumbs": "Edit workflowitem", "workflow-item.edit.breadcrumbs": "वर्कफ्लो आयटम संपादित करा", + // "workflow-item.edit.title": "Edit workflowitem", "workflow-item.edit.title": "वर्कफ्लो आयटम संपादित करा", + // "workflow-item.delete.notification.success.title": "Deleted", "workflow-item.delete.notification.success.title": "हटवले", + // "workflow-item.delete.notification.success.content": "This workflow item was successfully deleted", "workflow-item.delete.notification.success.content": "हा वर्कफ्लो आयटम यशस्वीरित्या हटवला गेला", + // "workflow-item.delete.notification.error.title": "Something went wrong", "workflow-item.delete.notification.error.title": "काहीतरी चुकले", + // "workflow-item.delete.notification.error.content": "The workflow item could not be deleted", "workflow-item.delete.notification.error.content": "वर्कफ्लो आयटम हटवता आला नाही", + // "workflow-item.delete.title": "Delete workflow item", "workflow-item.delete.title": "वर्कफ्लो आयटम हटवा", + // "workflow-item.delete.header": "Delete workflow item", "workflow-item.delete.header": "वर्कफ्लो आयटम हटवा", + // "workflow-item.delete.button.cancel": "Cancel", "workflow-item.delete.button.cancel": "रद्द करा", + // "workflow-item.delete.button.confirm": "Delete", "workflow-item.delete.button.confirm": "हटवा", + // "workflow-item.send-back.notification.success.title": "Sent back to submitter", "workflow-item.send-back.notification.success.title": "सबमिटरकडे परत पाठवले", + // "workflow-item.send-back.notification.success.content": "This workflow item was successfully sent back to the submitter", "workflow-item.send-back.notification.success.content": "हा वर्कफ्लो आयटम यशस्वीरित्या सबमिटरकडे परत पाठवला गेला", + // "workflow-item.send-back.notification.error.title": "Something went wrong", "workflow-item.send-back.notification.error.title": "काहीतरी चुकले", + // "workflow-item.send-back.notification.error.content": "The workflow item could not be sent back to the submitter", "workflow-item.send-back.notification.error.content": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवता आला नाही", + // "workflow-item.send-back.title": "Send workflow item back to submitter", "workflow-item.send-back.title": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवा", + // "workflow-item.send-back.header": "Send workflow item back to submitter", "workflow-item.send-back.header": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवा", + // "workflow-item.send-back.button.cancel": "Cancel", "workflow-item.send-back.button.cancel": "रद्द करा", + // "workflow-item.send-back.button.confirm": "Send back", "workflow-item.send-back.button.confirm": "परत पाठवा", + // "workflow-item.view.breadcrumbs": "Workflow View", "workflow-item.view.breadcrumbs": "वर्कफ्लो दृश्य", + // "workspace-item.view.breadcrumbs": "Workspace View", "workspace-item.view.breadcrumbs": "वर्कस्पेस दृश्य", + // "workspace-item.view.title": "Workspace View", "workspace-item.view.title": "वर्कस्पेस दृश्य", + // "workspace-item.delete.breadcrumbs": "Workspace Delete", "workspace-item.delete.breadcrumbs": "वर्कस्पेस हटवा", + // "workspace-item.delete.header": "Delete workspace item", "workspace-item.delete.header": "वर्कस्पेस आयटम हटवा", + // "workspace-item.delete.button.confirm": "Delete", "workspace-item.delete.button.confirm": "हटवा", + // "workspace-item.delete.button.cancel": "Cancel", "workspace-item.delete.button.cancel": "रद्द करा", + // "workspace-item.delete.notification.success.title": "Deleted", "workspace-item.delete.notification.success.title": "हटवले", + // "workspace-item.delete.title": "This workspace item was successfully deleted", "workspace-item.delete.title": "हा वर्कस्पेस आयटम यशस्वीरित्या हटवला गेला", + // "workspace-item.delete.notification.error.title": "Something went wrong", "workspace-item.delete.notification.error.title": "काहीतरी चुकले", + // "workspace-item.delete.notification.error.content": "The workspace item could not be deleted", "workspace-item.delete.notification.error.content": "वर्कस्पेस आयटम हटवता आला नाही", + // "workflow-item.advanced.title": "Advanced workflow", "workflow-item.advanced.title": "प्रगत वर्कफ्लो", + // "workflow-item.selectrevieweraction.notification.success.title": "Selected reviewer", "workflow-item.selectrevieweraction.notification.success.title": "पुनरावलोकक निवडले", + // "workflow-item.selectrevieweraction.notification.success.content": "The reviewer for this workflow item has been successfully selected", "workflow-item.selectrevieweraction.notification.success.content": "या वर्कफ्लो आयटमसाठी पुनरावलोकक यशस्वीरित्या निवडले गेले", + // "workflow-item.selectrevieweraction.notification.error.title": "Something went wrong", "workflow-item.selectrevieweraction.notification.error.title": "काहीतरी चुकले", + // "workflow-item.selectrevieweraction.notification.error.content": "Couldn't select the reviewer for this workflow item", "workflow-item.selectrevieweraction.notification.error.content": "या वर्कफ्लो आयटमसाठी पुनरावलोकक निवडता आला नाही", + // "workflow-item.selectrevieweraction.title": "Select Reviewer", "workflow-item.selectrevieweraction.title": "पुनरावलोकक निवडा", + // "workflow-item.selectrevieweraction.header": "Select Reviewer", "workflow-item.selectrevieweraction.header": "पुनरावलोकक निवडा", + // "workflow-item.selectrevieweraction.button.cancel": "Cancel", "workflow-item.selectrevieweraction.button.cancel": "रद्द करा", + // "workflow-item.selectrevieweraction.button.confirm": "Confirm", "workflow-item.selectrevieweraction.button.confirm": "पुष्टी करा", + // "workflow-item.scorereviewaction.notification.success.title": "Rating review", "workflow-item.scorereviewaction.notification.success.title": "रेटिंग पुनरावलोकन", + // "workflow-item.scorereviewaction.notification.success.content": "The rating for this item workflow item has been successfully submitted", "workflow-item.scorereviewaction.notification.success.content": "या वर्कफ्लो आयटमसाठी रेटिंग यशस्वीरित्या सबमिट केले गेले", + // "workflow-item.scorereviewaction.notification.error.title": "Something went wrong", "workflow-item.scorereviewaction.notification.error.title": "काहीतरी चुकले", + // "workflow-item.scorereviewaction.notification.error.content": "Couldn't rate this item", "workflow-item.scorereviewaction.notification.error.content": "या आयटमला रेट करू शकलो नाही", + // "workflow-item.scorereviewaction.title": "Rate this item", "workflow-item.scorereviewaction.title": "या आयटमला रेट करा", + // "workflow-item.scorereviewaction.header": "Rate this item", "workflow-item.scorereviewaction.header": "या आयटमला रेट करा", + // "workflow-item.scorereviewaction.button.cancel": "Cancel", "workflow-item.scorereviewaction.button.cancel": "रद्द करा", + // "workflow-item.scorereviewaction.button.confirm": "Confirm", "workflow-item.scorereviewaction.button.confirm": "पुष्टी करा", + // "idle-modal.header": "Session will expire soon", "idle-modal.header": "सत्र लवकरच समाप्त होईल", + // "idle-modal.info": "For security reasons, user sessions expire after {{ timeToExpire }} minutes of inactivity. Your session will expire soon. Would you like to extend it or log out?", "idle-modal.info": "सुरक्षा कारणांमुळे, वापरकर्ता सत्रे {{ timeToExpire }} मिनिटांच्या निष्क्रियतेनंतर समाप्त होतात. तुमचे सत्र लवकरच समाप्त होईल. तुम्हाला ते वाढवायचे आहे का किंवा लॉग आउट करायचे आहे का?", + // "idle-modal.log-out": "Log out", "idle-modal.log-out": "लॉग आउट", + // "idle-modal.extend-session": "Extend session", "idle-modal.extend-session": "सत्र वाढवा", + // "researcher.profile.action.processing": "Processing...", "researcher.profile.action.processing": "प्रक्रिया...", + // "researcher.profile.associated": "Researcher profile associated", "researcher.profile.associated": "संशोधक प्रोफाइल संबंधित", + // "researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility", "researcher.profile.change-visibility.fail": "प्रोफाइल दृश्यमानता बदलताना अनपेक्षित त्रुटी आली", + // "researcher.profile.create.new": "Create new", "researcher.profile.create.new": "नवीन तयार करा", + // "researcher.profile.create.success": "Researcher profile created successfully", "researcher.profile.create.success": "संशोधक प्रोफाइल यशस्वीरित्या तयार केले", + // "researcher.profile.create.fail": "An error occurs during the researcher profile creation", "researcher.profile.create.fail": "संशोधक प्रोफाइल तयार करताना त्रुटी आली", + // "researcher.profile.delete": "Delete", "researcher.profile.delete": "हटवा", + // "researcher.profile.expose": "Expose", "researcher.profile.expose": "प्रकट करा", + // "researcher.profile.hide": "Hide", "researcher.profile.hide": "लपवा", + // "researcher.profile.not.associated": "Researcher profile not yet associated", "researcher.profile.not.associated": "संशोधक प्रोफाइल अद्याप संबंधित नाही", + // "researcher.profile.view": "View", "researcher.profile.view": "पहा", + // "researcher.profile.private.visibility": "PRIVATE", "researcher.profile.private.visibility": "खाजगी", + // "researcher.profile.public.visibility": "PUBLIC", "researcher.profile.public.visibility": "सार्वजनिक", - "researcher.profile.status": "स्थिती:", + // "researcher.profile.status": "Status:", + // TODO New key - Add a translation + "researcher.profile.status": "Status:", + // "researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).", "researcherprofile.claim.not-authorized": "तुम्हाला हा आयटम दावा करण्याची परवानगी नाही. अधिक तपशीलांसाठी प्रशासकांशी संपर्क साधा.", + // "researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later", "researcherprofile.error.claim.body": "प्रोफाइल दावा करताना त्रुटी आली, कृपया नंतर पुन्हा प्रयत्न करा", + // "researcherprofile.error.claim.title": "Error", "researcherprofile.error.claim.title": "त्रुटी", + // "researcherprofile.success.claim.body": "Profile claimed with success", "researcherprofile.success.claim.body": "प्रोफाइल यशस्वीरित्या दावा केले", + // "researcherprofile.success.claim.title": "Success", "researcherprofile.success.claim.title": "यश", + // "person.page.orcid.create": "Create an ORCID ID", "person.page.orcid.create": "ORCID आयडी तयार करा", + // "person.page.orcid.granted-authorizations": "Granted authorizations", "person.page.orcid.granted-authorizations": "मंजूर केलेल्या परवानग्या", + // "person.page.orcid.grant-authorizations": "Grant authorizations", "person.page.orcid.grant-authorizations": "परवानग्या मंजूर करा", + // "person.page.orcid.link": "Connect to ORCID ID", "person.page.orcid.link": "ORCID आयडीशी कनेक्ट करा", + // "person.page.orcid.link.processing": "Linking profile to ORCID...", "person.page.orcid.link.processing": "प्रोफाइल ORCID शी लिंक करत आहे...", + // "person.page.orcid.link.error.message": "Something went wrong while connecting the profile with ORCID. If the problem persists, contact the administrator.", "person.page.orcid.link.error.message": "प्रोफाइल ORCID शी कनेक्ट करताना काहीतरी चुकले. समस्या कायम राहिल्यास, प्रशासकाशी संपर्क साधा.", + // "person.page.orcid.orcid-not-linked-message": "The ORCID iD of this profile ({{ orcid }}) has not yet been connected to an account on the ORCID registry or the connection is expired.", "person.page.orcid.orcid-not-linked-message": "या प्रोफाइलचा ORCID आयडी ({{ orcid }}) अद्याप ORCID रजिस्ट्रीवरील खात्याशी कनेक्ट केलेला नाही किंवा कनेक्शन कालबाह्य झाले आहे.", + // "person.page.orcid.unlink": "Disconnect from ORCID", "person.page.orcid.unlink": "ORCID पासून डिस्कनेक्ट करा", + // "person.page.orcid.unlink.processing": "Processing...", "person.page.orcid.unlink.processing": "प्रक्रिया करत आहे...", + // "person.page.orcid.missing-authorizations": "Missing authorizations", "person.page.orcid.missing-authorizations": "परवानग्या गहाळ आहेत", - "person.page.orcid.missing-authorizations-message": "खालील परवानग्या गहाळ आहेत:", + // "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + // TODO New key - Add a translation + "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + // "person.page.orcid.no-missing-authorizations-message": "Great! This box is empty, so you have granted all access rights to use all functions offers by your institution.", "person.page.orcid.no-missing-authorizations-message": "छान! हे बॉक्स रिकामे आहे, त्यामुळे तुम्ही तुमच्या संस्थेने ऑफर केलेल्या सर्व कार्ये वापरण्यासाठी सर्व प्रवेश अधिकार मंजूर केले आहेत.", + // "person.page.orcid.no-orcid-message": "No ORCID iD associated yet. By clicking on the button below it is possible to link this profile with an ORCID account.", "person.page.orcid.no-orcid-message": "अद्याप कोणताही ORCID आयडी संबंधित नाही. खालील बटणावर क्लिक करून हा प्रोफाइल ORCID खात्याशी लिंक करणे शक्य आहे.", + // "person.page.orcid.profile-preferences": "Profile preferences", "person.page.orcid.profile-preferences": "प्रोफाइल प्राधान्ये", + // "person.page.orcid.funding-preferences": "Funding preferences", "person.page.orcid.funding-preferences": "फंडिंग प्राधान्ये", + // "person.page.orcid.publications-preferences": "Publication preferences", "person.page.orcid.publications-preferences": "प्रकाशन प्राधान्ये", + // "person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator", "person.page.orcid.remove-orcid-message": "तुम्हाला तुमचा ORCID काढून टाकायचा असल्यास, कृपया रेपॉझिटरी प्रशासकाशी संपर्क साधा", + // "person.page.orcid.save.preference.changes": "Update settings", "person.page.orcid.save.preference.changes": "सेटिंग्ज अद्यतनित करा", + // "person.page.orcid.sync-profile.affiliation": "Affiliation", "person.page.orcid.sync-profile.affiliation": "संबद्धता", + // "person.page.orcid.sync-profile.biographical": "Biographical data", "person.page.orcid.sync-profile.biographical": "जीवनी माहिती", + // "person.page.orcid.sync-profile.education": "Education", "person.page.orcid.sync-profile.education": "शिक्षण", + // "person.page.orcid.sync-profile.identifiers": "Identifiers", "person.page.orcid.sync-profile.identifiers": "ओळखपत्रे", + // "person.page.orcid.sync-fundings.all": "All fundings", "person.page.orcid.sync-fundings.all": "सर्व निधी", + // "person.page.orcid.sync-fundings.mine": "My fundings", "person.page.orcid.sync-fundings.mine": "माझे निधी", + // "person.page.orcid.sync-fundings.my_selected": "Selected fundings", "person.page.orcid.sync-fundings.my_selected": "निवडलेले निधी", + // "person.page.orcid.sync-fundings.disabled": "Disabled", "person.page.orcid.sync-fundings.disabled": "अक्षम", + // "person.page.orcid.sync-publications.all": "All publications", "person.page.orcid.sync-publications.all": "सर्व प्रकाशने", + // "person.page.orcid.sync-publications.mine": "My publications", "person.page.orcid.sync-publications.mine": "माझी प्रकाशने", + // "person.page.orcid.sync-publications.my_selected": "Selected publications", "person.page.orcid.sync-publications.my_selected": "निवडलेली प्रकाशने", + // "person.page.orcid.sync-publications.disabled": "Disabled", "person.page.orcid.sync-publications.disabled": "अक्षम", + // "person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry", "person.page.orcid.sync-queue.discard": "बदल रद्द करा आणि ORCID रजिस्ट्रीसह समक्रमित करू नका", + // "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed", "person.page.orcid.sync-queue.discard.error": "ORCID क्यू रेकॉर्ड रद्द करण्यात अयशस्वी", + // "person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully", "person.page.orcid.sync-queue.discard.success": "ORCID क्यू रेकॉर्ड यशस्वीरित्या रद्द केले गेले", + // "person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty", "person.page.orcid.sync-queue.empty-message": "ORCID क्यू रजिस्ट्री रिकामी आहे", + // "person.page.orcid.sync-queue.table.header.type": "Type", "person.page.orcid.sync-queue.table.header.type": "प्रकार", + // "person.page.orcid.sync-queue.table.header.description": "Description", "person.page.orcid.sync-queue.table.header.description": "वर्णन", + // "person.page.orcid.sync-queue.table.header.action": "Action", "person.page.orcid.sync-queue.table.header.action": "क्रिया", + // "person.page.orcid.sync-queue.description.affiliation": "Affiliations", "person.page.orcid.sync-queue.description.affiliation": "संबद्धता", + // "person.page.orcid.sync-queue.description.country": "Country", "person.page.orcid.sync-queue.description.country": "देश", + // "person.page.orcid.sync-queue.description.education": "Educations", "person.page.orcid.sync-queue.description.education": "शिक्षण", + // "person.page.orcid.sync-queue.description.external_ids": "External ids", "person.page.orcid.sync-queue.description.external_ids": "बाह्य ओळखपत्रे", + // "person.page.orcid.sync-queue.description.other_names": "Other names", "person.page.orcid.sync-queue.description.other_names": "इतर नावे", + // "person.page.orcid.sync-queue.description.qualification": "Qualifications", "person.page.orcid.sync-queue.description.qualification": "पात्रता", + // "person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls", "person.page.orcid.sync-queue.description.researcher_urls": "संशोधक URLs", + // "person.page.orcid.sync-queue.description.keywords": "Keywords", "person.page.orcid.sync-queue.description.keywords": "कीवर्ड", + // "person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry", "person.page.orcid.sync-queue.tooltip.insert": "ORCID रजिस्ट्रीमध्ये नवीन नोंद जोडा", + // "person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry", "person.page.orcid.sync-queue.tooltip.update": "ORCID रजिस्ट्रीवर ही नोंद अद्यतनित करा", + // "person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry", "person.page.orcid.sync-queue.tooltip.delete": "ORCID रजिस्ट्रीमधून ही नोंद काढा", + // "person.page.orcid.sync-queue.tooltip.publication": "Publication", "person.page.orcid.sync-queue.tooltip.publication": "प्रकाशन", + // "person.page.orcid.sync-queue.tooltip.project": "Project", "person.page.orcid.sync-queue.tooltip.project": "प्रकल्प", + // "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", "person.page.orcid.sync-queue.tooltip.affiliation": "संबद्धता", + // "person.page.orcid.sync-queue.tooltip.education": "Education", "person.page.orcid.sync-queue.tooltip.education": "शिक्षण", + // "person.page.orcid.sync-queue.tooltip.qualification": "Qualification", "person.page.orcid.sync-queue.tooltip.qualification": "पात्रता", + // "person.page.orcid.sync-queue.tooltip.other_names": "Other name", "person.page.orcid.sync-queue.tooltip.other_names": "इतर नाव", + // "person.page.orcid.sync-queue.tooltip.country": "Country", "person.page.orcid.sync-queue.tooltip.country": "देश", + // "person.page.orcid.sync-queue.tooltip.keywords": "Keyword", "person.page.orcid.sync-queue.tooltip.keywords": "कीवर्ड", + // "person.page.orcid.sync-queue.tooltip.external_ids": "External identifier", "person.page.orcid.sync-queue.tooltip.external_ids": "बाह्य ओळखपत्र", + // "person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url", "person.page.orcid.sync-queue.tooltip.researcher_urls": "संशोधक URL", + // "person.page.orcid.sync-queue.send": "Synchronize with ORCID registry", "person.page.orcid.sync-queue.send": "ORCID रजिस्ट्रीसह समक्रमित करा", + // "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.", "person.page.orcid.sync-queue.send.unauthorized-error.title": "परवानग्या गहाळ असल्यामुळे ORCID ला सबमिशन अयशस्वी.", + // "person.page.orcid.sync-queue.send.unauthorized-error.content": "Click here to grant again the required permissions. If the problem persists, contact the administrator", "person.page.orcid.sync-queue.send.unauthorized-error.content": "आवश्यक परवानग्या पुन्हा मंजूर करण्यासाठी येथे क्लिक करा. समस्या कायम राहिल्यास, प्रशासकाशी संपर्क साधा", + // "person.page.orcid.sync-queue.send.bad-request-error": "The submission to ORCID failed because the resource sent to ORCID registry is not valid", "person.page.orcid.sync-queue.send.bad-request-error": "ORCID रजिस्ट्रीला पाठवलेला संसाधन वैध नसल्यामुळे ORCID ला सबमिशन अयशस्वी", + // "person.page.orcid.sync-queue.send.error": "The submission to ORCID failed", "person.page.orcid.sync-queue.send.error": "ORCID ला सबमिशन अयशस्वी", + // "person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry", "person.page.orcid.sync-queue.send.conflict-error": "संसाधन आधीच ORCID रजिस्ट्रीवर असल्यामुळे ORCID ला सबमिशन अयशस्वी", + // "person.page.orcid.sync-queue.send.not-found-warning": "The resource does not exists anymore on the ORCID registry.", "person.page.orcid.sync-queue.send.not-found-warning": "संसाधन ORCID रजिस्ट्रीवर आता अस्तित्वात नाही.", + // "person.page.orcid.sync-queue.send.success": "The submission to ORCID was completed successfully", "person.page.orcid.sync-queue.send.success": "ORCID ला सबमिशन यशस्वीरित्या पूर्ण झाले", + // "person.page.orcid.sync-queue.send.validation-error": "The data that you want to synchronize with ORCID is not valid", "person.page.orcid.sync-queue.send.validation-error": "तुम्ही ORCID सह समक्रमित करू इच्छित असलेली माहिती वैध नाही", + // "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "The amount's currency is required", "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "रकमेची चलन आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.external-id.required": "The resource to be sent requires at least one identifier", "person.page.orcid.sync-queue.send.validation-error.external-id.required": "पाठवण्यासाठी संसाधनासाठी किमान एक ओळखपत्र आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.title.required": "The title is required", "person.page.orcid.sync-queue.send.validation-error.title.required": "शीर्षक आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required", "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required", "person.page.orcid.sync-queue.send.validation-error.start-date.required": "प्रारंभ तारीख आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required", "person.page.orcid.sync-queue.send.validation-error.funder.required": "निधीदार आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.country.invalid": "अवैध 2 अंकी ISO 3166 देश", + // "person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required", "person.page.orcid.sync-queue.send.validation-error.organization.required": "संस्था आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required", "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "संस्थेचे नाव आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900", "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "प्रकाशन तारीख 1900 नंतर एक वर्ष असणे आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address", "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "पाठवण्यासाठी संस्थेला पत्ता आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "The address of the organization to be sent requires a city", "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "पाठवण्यासाठी संस्थेच्या पत्त्याला शहर आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "The address of the organization to be sent requires a valid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "पाठवण्यासाठी संस्थेच्या पत्त्याला वैध 2 अंकी ISO 3166 देश आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "An identifier to disambiguate organizations is required. Supported ids are GRID, Ringgold, Legal Entity identifiers (LEIs) and Crossref Funder Registry identifiers", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "संस्थांना स्पष्ट करण्यासाठी ओळखपत्र आवश्यक आहे. समर्थित आयडी आहेत GRID, Ringgold, Legal Entity identifiers (LEIs) आणि Crossref Funder Registry identifiers", + // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "The organization's identifiers requires a value", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "संस्थांच्या ओळखपत्रांना मूल्य आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "The organization's identifiers requires a source", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "संस्थांच्या ओळखपत्रांना स्रोत आवश्यक आहे", + // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "The source of one of the organization identifiers is invalid. Supported sources are RINGGOLD, GRID, LEI and FUNDREF", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "संस्थांच्या ओळखपत्रांपैकी एकाचा स्रोत अवैध आहे. समर्थित स्रोत आहेत RINGGOLD, GRID, LEI आणि FUNDREF", + // "person.page.orcid.synchronization-mode": "Synchronization mode", "person.page.orcid.synchronization-mode": "समक्रमण मोड", + // "person.page.orcid.synchronization-mode.batch": "Batch", "person.page.orcid.synchronization-mode.batch": "बॅच", + // "person.page.orcid.synchronization-mode.label": "Synchronization mode", "person.page.orcid.synchronization-mode.label": "समक्रमण मोड", + // "person.page.orcid.synchronization-mode-message": "Please select how you would like synchronization to ORCID to occur. The options include \"Manual\" (you must send your data to ORCID manually), or \"Batch\" (the system will send your data to ORCID via a scheduled script).", "person.page.orcid.synchronization-mode-message": "कृपया ORCID सह समक्रमण कसे करायचे ते निवडा. पर्यायांमध्ये \"मॅन्युअल\" (तुम्हाला तुमची माहिती ORCID ला मॅन्युअली पाठवावी लागेल), किंवा \"बॅच\" (सिस्टम तुमची माहिती ORCID ला शेड्यूल केलेल्या स्क्रिप्टद्वारे पाठवेल) समाविष्ट आहे.", + // "person.page.orcid.synchronization-mode-funding-message": "Select whether to send your linked Project entities to your ORCID record's list of funding information.", "person.page.orcid.synchronization-mode-funding-message": "तुमच्या ORCID रेकॉर्डच्या निधी माहितीच्या यादीत तुमच्या लिंक केलेल्या प्रकल्प संस्थांना पाठवायचे आहे की नाही ते निवडा.", + // "person.page.orcid.synchronization-mode-publication-message": "Select whether to send your linked Publication entities to your ORCID record's list of works.", "person.page.orcid.synchronization-mode-publication-message": "तुमच्या ORCID रेकॉर्डच्या कामांच्या यादीत तुमच्या लिंक केलेल्या प्रकाशन संस्थांना पाठवायचे आहे की नाही ते निवडा.", + // "person.page.orcid.synchronization-mode-profile-message": "Select whether to send your biographical data or personal identifiers to your ORCID record.", "person.page.orcid.synchronization-mode-profile-message": "तुमची जीवनी माहिती किंवा वैयक्तिक ओळखपत्रे तुमच्या ORCID रेकॉर्डला पाठवायची आहे की नाही ते निवडा.", + // "person.page.orcid.synchronization-settings-update.success": "The synchronization settings have been updated successfully", "person.page.orcid.synchronization-settings-update.success": "समक्रमण सेटिंग्ज यशस्वीरित्या अद्यतनित केल्या गेल्या", + // "person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed", "person.page.orcid.synchronization-settings-update.error": "समक्रमण सेटिंग्ज अद्यतनित करण्यात अयशस्वी", + // "person.page.orcid.synchronization-mode.manual": "Manual", "person.page.orcid.synchronization-mode.manual": "मॅन्युअल", + // "person.page.orcid.scope.authenticate": "Get your ORCID iD", "person.page.orcid.scope.authenticate": "तुमचा ORCID आयडी मिळवा", + // "person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties", "person.page.orcid.scope.read-limited": "विश्वासार्ह पक्षांना दृश्यमानता सेटसह तुमची माहिती वाचा", + // "person.page.orcid.scope.activities-update": "Add/update your research activities", "person.page.orcid.scope.activities-update": "तुमच्या संशोधन क्रियाकलाप जोडा/अद्यतनित करा", + // "person.page.orcid.scope.person-update": "Add/update other information about you", "person.page.orcid.scope.person-update": "तुमच्याबद्दल इतर माहिती जोडा/अद्यतनित करा", + // "person.page.orcid.unlink.success": "The disconnection between the profile and the ORCID registry was successful", "person.page.orcid.unlink.success": "प्रोफाइल आणि ORCID रजिस्ट्रीमधील डिस्कनेक्शन यशस्वी झाले", + // "person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again", "person.page.orcid.unlink.error": "प्रोफाइल आणि ORCID रजिस्ट्रीमधील डिस्कनेक्ट करताना त्रुटी आली. पुन्हा प्रयत्न करा", + // "person.orcid.sync.setting": "ORCID Synchronization settings", "person.orcid.sync.setting": "ORCID समक्रमण सेटिंग्ज", + // "person.orcid.registry.queue": "ORCID Registry Queue", "person.orcid.registry.queue": "ORCID रजिस्ट्री क्यू", + // "person.orcid.registry.auth": "ORCID Authorizations", "person.orcid.registry.auth": "ORCID परवानग्या", + // "person.orcid-tooltip.authenticated": "{{orcid}}", "person.orcid-tooltip.authenticated": "{{orcid}}", + // "person.orcid-tooltip.not-authenticated": "{{orcid}} (unconfirmed)", "person.orcid-tooltip.not-authenticated": "{{orcid}} (अप्रमाणित)", + // "home.recent-submissions.head": "Recent Submissions", "home.recent-submissions.head": "अलीकडील सबमिशन", + // "listable-notification-object.default-message": "This object couldn't be retrieved", "listable-notification-object.default-message": "हा ऑब्जेक्ट पुनर्प्राप्त केला जाऊ शकला नाही", + // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", "system-wide-alert-banner.retrieval.error": "सिस्टम-वाइड अलर्ट बॅनर पुनर्प्राप्त करताना काहीतरी चुकले", + // "system-wide-alert-banner.countdown.prefix": "In", "system-wide-alert-banner.countdown.prefix": "मध्ये", + // "system-wide-alert-banner.countdown.days": "{{days}} day(s),", "system-wide-alert-banner.countdown.days": "{{days}} दिवस(े),", + // "system-wide-alert-banner.countdown.hours": "{{hours}} hour(s) and", "system-wide-alert-banner.countdown.hours": "{{hours}} तास(े) आणि", - "system-wide-alert-banner.countdown.minutes": "{{minutes}} मिनिट(े):", + // "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + // TODO New key - Add a translation + "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + // "menu.section.system-wide-alert": "System-wide Alert", "menu.section.system-wide-alert": "सिस्टम-वाइड अलर्ट", + // "system-wide-alert.form.header": "System-wide Alert", "system-wide-alert.form.header": "सिस्टम-वाइड अलर्ट", + // "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert", "system-wide-alert-form.retrieval.error": "सिस्टम-वाइड अलर्ट पुनर्प्राप्त करताना काहीतरी चुकले", + // "system-wide-alert.form.cancel": "Cancel", "system-wide-alert.form.cancel": "रद्द करा", + // "system-wide-alert.form.save": "Save", "system-wide-alert.form.save": "जतन करा", + // "system-wide-alert.form.label.active": "ACTIVE", "system-wide-alert.form.label.active": "सक्रिय", + // "system-wide-alert.form.label.inactive": "INACTIVE", "system-wide-alert.form.label.inactive": "निष्क्रिय", + // "system-wide-alert.form.error.message": "The system wide alert must have a message", "system-wide-alert.form.error.message": "सिस्टम-वाइड अलर्टमध्ये संदेश असणे आवश्यक आहे", + // "system-wide-alert.form.label.message": "Alert message", "system-wide-alert.form.label.message": "अलर्ट संदेश", + // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer", "system-wide-alert.form.label.countdownTo.enable": "काउंटडाउन टाइमर सक्षम करा", - "system-wide-alert.form.label.countdownTo.hint": "सूचना: काउंटडाउन टाइमर सेट करा. सक्षम केल्यावर, भविष्यातील तारीख सेट केली जाऊ शकते आणि सिस्टम-वाइड अलर्ट बॅनर सेट केलेल्या तारखेपर्यंत काउंटडाउन करेल. जेव्हा हा टाइमर संपेल, तेव्हा अलर्टमधून तो अदृश्य होईल. सर्व्हर आपोआप थांबवला जाणार नाही.", + // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + // TODO New key - Add a translation + "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + // "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", "system-wide-alert-form.select-date-by-calendar": "कॅलेंडर वापरून तारीख निवडा", + // "system-wide-alert.form.label.preview": "System-wide alert preview", "system-wide-alert.form.label.preview": "सिस्टम-वाइड अलर्ट पूर्वावलोकन", + // "system-wide-alert.form.update.success": "The system-wide alert was successfully updated", "system-wide-alert.form.update.success": "सिस्टम-वाइड अलर्ट यशस्वीरित्या अद्यतनित केले गेले", + // "system-wide-alert.form.update.error": "Something went wrong when updating the system-wide alert", "system-wide-alert.form.update.error": "सिस्टम-वाइड अलर्ट अद्यतनित करताना काहीतरी चुकले", + // "system-wide-alert.form.create.success": "The system-wide alert was successfully created", "system-wide-alert.form.create.success": "सिस्टम-वाइड अलर्ट यशस्वीरित्या तयार केले गेले", + // "system-wide-alert.form.create.error": "Something went wrong when creating the system-wide alert", "system-wide-alert.form.create.error": "सिस्टम-वाइड अलर्ट तयार करताना काहीतरी चुकले", + // "admin.system-wide-alert.breadcrumbs": "System-wide Alerts", "admin.system-wide-alert.breadcrumbs": "सिस्टम-वाइड अलर्ट", + // "admin.system-wide-alert.title": "System-wide Alerts", "admin.system-wide-alert.title": "सिस्टम-वाइड अलर्ट", + // "discover.filters.head": "Discover", "discover.filters.head": "शोधा", + // "item-access-control-title": "This form allows you to perform changes to the access conditions of the item's metadata or its bitstreams.", "item-access-control-title": "हे फॉर्म तुम्हाला आयटमच्या मेटाडेटा किंवा त्याच्या बिटस्ट्रीम्सच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते.", + // "collection-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by this collection. Changes may be performed to either all Item metadata or all content (bitstreams).", "collection-access-control-title": "हे फॉर्म तुम्हाला या संग्रहाच्या मालकीच्या सर्व आयटमच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते. सर्व आयटम मेटाडेटा किंवा सर्व सामग्री (बिटस्ट्रीम्स) मध्ये बदल केले जाऊ शकतात.", + // "community-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by any collection under this community. Changes may be performed to either all Item metadata or all content (bitstreams).", "community-access-control-title": "हे फॉर्म तुम्हाला या समुदायाखालील कोणत्याही संग्रहाच्या मालकीच्या सर्व आयटमच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते. सर्व आयटम मेटाडेटा किंवा सर्व सामग्री (बिटस्ट्रीम्स) मध्ये बदल केले जाऊ शकतात.", + // "access-control-item-header-toggle": "Item's Metadata", "access-control-item-header-toggle": "आयटमचे मेटाडेटा", + // "access-control-item-toggle.enable": "Enable option to perform changes on the item's metadata", "access-control-item-toggle.enable": "आयटमच्या मेटाडेटावर बदल करण्याचा पर्याय सक्षम करा", + // "access-control-item-toggle.disable": "Disable option to perform changes on the item's metadata", "access-control-item-toggle.disable": "आयटमच्या मेटाडेटावर बदल करण्याचा पर्याय अक्षम करा", + // "access-control-bitstream-header-toggle": "Bitstreams", "access-control-bitstream-header-toggle": "बिटस्ट्रीम्स", + // "access-control-bitstream-toggle.enable": "Enable option to perform changes on the bitstreams", "access-control-bitstream-toggle.enable": "बिटस्ट्रीम्सवर बदल करण्याचा पर्याय सक्षम करा", + // "access-control-bitstream-toggle.disable": "Disable option to perform changes on the bitstreams", "access-control-bitstream-toggle.disable": "बिटस्ट्रीम्सवर बदल करण्याचा पर्याय अक्षम करा", + // "access-control-mode": "Mode", "access-control-mode": "मोड", + // "access-control-access-conditions": "Access conditions", "access-control-access-conditions": "प्रवेश अटी", + // "access-control-no-access-conditions-warning-message": "Currently, no access conditions are specified below. If executed, this will replace the current access conditions with the default access conditions inherited from the owning collection.", "access-control-no-access-conditions-warning-message": "सध्या, खाली कोणत्याही प्रवेश अटी निर्दिष्ट केलेल्या नाहीत. जर अंमलात आणले, तर हे वर्तमान प्रवेश अटींना मालकीच्या संग्रहाकडून वारसाहक्काने मिळालेल्या डीफॉल्ट प्रवेश अटींनी बदलले जाईल.", + // "access-control-replace-all": "Replace access conditions", "access-control-replace-all": "प्रवेश अटी बदला", + // "access-control-add-to-existing": "Add to existing ones", "access-control-add-to-existing": "अस्तित्वात असलेल्या अटींमध्ये जोडा", + // "access-control-limit-to-specific": "Limit the changes to specific bitstreams", "access-control-limit-to-specific": "विशिष्ट बिटस्ट्रीम्सपर्यंत बदल मर्यादित करा", + // "access-control-process-all-bitstreams": "Update all the bitstreams in the item", "access-control-process-all-bitstreams": "आयटममधील सर्व बिटस्ट्रीम्स अद्यतनित करा", + // "access-control-bitstreams-selected": "bitstreams selected", "access-control-bitstreams-selected": "बिटस्ट्रीम्स निवडले", + // "access-control-bitstreams-select": "Select bitstreams", "access-control-bitstreams-select": "बिटस्ट्रीम्स निवडा", + // "access-control-cancel": "Cancel", "access-control-cancel": "रद्द करा", + // "access-control-execute": "Execute", "access-control-execute": "अंमलात आणा", + // "access-control-add-more": "Add more", "access-control-add-more": "अधिक जोडा", + // "access-control-remove": "Remove access condition", "access-control-remove": "प्रवेश अट काढा", + // "access-control-select-bitstreams-modal.title": "Select bitstreams", "access-control-select-bitstreams-modal.title": "बिटस्ट्रीम्स निवडा", + // "access-control-select-bitstreams-modal.no-items": "No items to show.", "access-control-select-bitstreams-modal.no-items": "दाखवण्यासाठी कोणतेही आयटम नाहीत.", + // "access-control-select-bitstreams-modal.close": "Close", "access-control-select-bitstreams-modal.close": "बंद करा", + // "access-control-option-label": "Access condition type", "access-control-option-label": "प्रवेश अट प्रकार", + // "access-control-option-note": "Choose an access condition to apply to selected objects.", "access-control-option-note": "निवडलेल्या ऑब्जेक्ट्सवर लागू करण्यासाठी प्रवेश अट निवडा.", + // "access-control-option-start-date": "Grant access from", "access-control-option-start-date": "या तारखेपासून प्रवेश मंजूर करा", + // "access-control-option-start-date-note": "Select the date from which the related access condition is applied", "access-control-option-start-date-note": "संबंधित प्रवेश अट लागू होण्याची तारीख निवडा", + // "access-control-option-end-date": "Grant access until", "access-control-option-end-date": "या तारखेपर्यंत प्रवेश मंजूर करा", + // "access-control-option-end-date-note": "Select the date until which the related access condition is applied", "access-control-option-end-date-note": "संबंधित प्रवेश अट लागू होण्याची तारीख निवडा", + // "vocabulary-treeview.search.form.add": "Add", "vocabulary-treeview.search.form.add": "जोडा", + // "admin.notifications.publicationclaim.breadcrumbs": "Publication Claim", "admin.notifications.publicationclaim.breadcrumbs": "प्रकाशन दावा", + // "admin.notifications.publicationclaim.page.title": "Publication Claim", "admin.notifications.publicationclaim.page.title": "प्रकाशन दावा", + // "coar-notify-support.title": "COAR Notify Protocol", "coar-notify-support.title": "COAR सूचित प्रोटोकॉल", - "coar-notify-support-title.content": "येथे, आम्ही COAR सूचित प्रोटोकॉलला पूर्णपणे समर्थन देतो, जो रेपॉझिटरीजमधील संवाद वाढवण्यासाठी डिझाइन केलेला आहे. COAR सूचित प्रोटोकॉलबद्दल अधिक जाणून घेण्यासाठी, COAR सूचित वेबसाइट ला भेट द्या.", + // "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + // TODO New key - Add a translation + "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + // "coar-notify-support.ldn-inbox.title": "LDN InBox", "coar-notify-support.ldn-inbox.title": "LDN इनबॉक्स", + // "coar-notify-support.ldn-inbox.content": "For your convenience, our LDN (Linked Data Notifications) InBox is easily accessible at {{ ldnInboxUrl }}. The LDN InBox enables seamless communication and data exchange, ensuring efficient and effective collaboration.", "coar-notify-support.ldn-inbox.content": "तुमच्या सोयीसाठी, आमचा LDN (लिंक्ड डेटा नोटिफिकेशन्स) इनबॉक्स {{ ldnInboxUrl }} येथे सहजपणे प्रवेशयोग्य आहे. LDN इनबॉक्स सहज संवाद आणि डेटा एक्सचेंज सक्षम करते, कार्यक्षम आणि प्रभावी सहयोग सुनिश्चित करते.", + // "coar-notify-support.message-moderation.title": "Message Moderation", "coar-notify-support.message-moderation.title": "संदेश संयम", + // "coar-notify-support.message-moderation.content": "To ensure a secure and productive environment, all incoming LDN messages are moderated. If you are planning to exchange information with us, kindly reach out via our dedicated", "coar-notify-support.message-moderation.content": "सुरक्षित आणि उत्पादक वातावरण सुनिश्चित करण्यासाठी, सर्व येणारे LDN संदेश नियंत्रित केले जातात. जर तुम्ही आमच्याशी माहितीची देवाणघेवाण करण्याचा विचार करत असाल, तर कृपया आमच्या समर्पित", + // "coar-notify-support.message-moderation.feedback-form": " Feedback form.", "coar-notify-support.message-moderation.feedback-form": " अभिप्राय फॉर्मद्वारे संपर्क साधा.", + // "service.overview.delete.header": "Delete Service", "service.overview.delete.header": "सेवा हटवा", + // "ldn-registered-services.title": "Registered Services", "ldn-registered-services.title": "नोंदणीकृत सेवा", - + // "ldn-registered-services.table.name": "Name", "ldn-registered-services.table.name": "नाव", - + // "ldn-registered-services.table.description": "Description", "ldn-registered-services.table.description": "वर्णन", - + // "ldn-registered-services.table.status": "Status", "ldn-registered-services.table.status": "स्थिती", - + // "ldn-registered-services.table.action": "Action", "ldn-registered-services.table.action": "क्रिया", - + // "ldn-registered-services.new": "NEW", "ldn-registered-services.new": "नवीन", - + // "ldn-registered-services.new.breadcrumbs": "Registered Services", "ldn-registered-services.new.breadcrumbs": "नोंदणीकृत सेवा", + // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "सक्षम", - + // "ldn-service.overview.table.disabled": "Disabled", "ldn-service.overview.table.disabled": "अक्षम", - + // "ldn-service.overview.table.clickToEnable": "Click to enable", "ldn-service.overview.table.clickToEnable": "सक्षम करण्यासाठी क्लिक करा", - + // "ldn-service.overview.table.clickToDisable": "Click to disable", "ldn-service.overview.table.clickToDisable": "अक्षम करण्यासाठी क्लिक करा", + // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "सेवा संपादित करा", - + // "ldn-create-service.title": "Create service", "ldn-create-service.title": "सेवा तयार करा", - + // "service.overview.create.modal": "Create Service", "service.overview.create.modal": "सेवा तयार करा", - + // "service.overview.create.body": "Please confirm the creation of this service.", "service.overview.create.body": "कृपया या सेवेची निर्मितीची पुष्टी करा.", - + // "ldn-service-status": "Status", "ldn-service-status": "स्थिती", - + // "service.confirm.create": "Create", "service.confirm.create": "तयार करा", - + // "service.refuse.create": "Cancel", "service.refuse.create": "रद्द करा", - + // "ldn-register-new-service.title": "Register a new service", "ldn-register-new-service.title": "नवीन सेवा नोंदणी करा", - + // "ldn-new-service.form.label.submit": "Save", "ldn-new-service.form.label.submit": "जतन करा", - + // "ldn-new-service.form.label.name": "Name", "ldn-new-service.form.label.name": "नाव", - + // "ldn-new-service.form.label.description": "Description", "ldn-new-service.form.label.description": "वर्णन", - + // "ldn-new-service.form.label.url": "Service URL", "ldn-new-service.form.label.url": "सेवा URL", - + // "ldn-new-service.form.label.ip-range": "Service IP range", "ldn-new-service.form.label.ip-range": "सेवा IP श्रेणी", - + // "ldn-new-service.form.label.score": "Level of trust", "ldn-new-service.form.label.score": "विश्वास पातळी", - + // "ldn-new-service.form.label.ldnUrl": "LDN Inbox URL", "ldn-new-service.form.label.ldnUrl": "LDN इनबॉक्स URL", - + // "ldn-new-service.form.placeholder.name": "Please provide service name", "ldn-new-service.form.placeholder.name": "कृपया सेवा नाव द्या", - + // "ldn-new-service.form.placeholder.description": "Please provide a description regarding your service", "ldn-new-service.form.placeholder.description": "कृपया तुमच्या सेवेसंबंधी वर्णन द्या", - + // "ldn-new-service.form.placeholder.url": "Please input the URL for users to check out more information about the service", "ldn-new-service.form.placeholder.url": "कृपया सेवा विषयी अधिक माहिती तपासण्यासाठी URL प्रविष्ट करा", - + // "ldn-new-service.form.placeholder.lowerIp": "IPv4 range lower bound", "ldn-new-service.form.placeholder.lowerIp": "IPv4 श्रेणी खालचा मर्यादा", - + // "ldn-new-service.form.placeholder.upperIp": "IPv4 range upper bound", "ldn-new-service.form.placeholder.upperIp": "IPv4 श्रेणी वरचा मर्यादा", - + // "ldn-new-service.form.placeholder.ldnUrl": "Please specify the URL of the LDN Inbox", "ldn-new-service.form.placeholder.ldnUrl": "कृपया LDN इनबॉक्सचा URL निर्दिष्ट करा", - + // "ldn-new-service.form.placeholder.score": "Please enter a value between 0 and 1. Use the “.” as decimal separator", "ldn-new-service.form.placeholder.score": "कृपया 0 आणि 1 दरम्यान मूल्य प्रविष्ट करा. दशांश विभाजक म्हणून “.” वापरा", - + // "ldn-service.form.label.placeholder.default-select": "Select a pattern", "ldn-service.form.label.placeholder.default-select": "एक नमुना निवडा", + // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "मान्य करा आणि स्वीकारा", - + // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", "ldn-service.form.pattern.ack-accept.description": "हा नमुना विनंती (ऑफर) मान्य करण्यासाठी वापरला जातो. याचा अर्थ विनंतीवर कृती करण्याचा हेतू आहे.", - + // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-accept.category": "मान्यतापत्रे", + // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "मान्य करा आणि नाकार", - + // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", "ldn-service.form.pattern.ack-reject.description": "हा नमुना विनंती (ऑफर) नाकारण्यासाठी वापरला जातो. याचा अर्थ विनंतीसंबंधी पुढील कृती नाही.", - + // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-reject.category": "मान्यतापत्रे", + // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "मान्य करा आणि तात्पुरते स्वीकारा", - + // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", "ldn-service.form.pattern.ack-tentative-accept.description": "हा नमुना विनंती (ऑफर) तात्पुरते स्वीकारण्यासाठी वापरला जातो. याचा अर्थ कृती करण्याचा हेतू आहे, जो बदलू शकतो.", - + // "ldn-service.form.pattern.ack-tentative-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-accept.category": "मान्यतापत्रे", + // "ldn-service.form.pattern.ack-tentative-reject.label": "Acknowledge and Tentatively Reject", "ldn-service.form.pattern.ack-tentative-reject.label": "मान्य करा आणि तात्पुरते नाकार", - + // "ldn-service.form.pattern.ack-tentative-reject.description": "This pattern is used to acknowledge and tentatively reject a request (offer). It signifies no further action, subject to change.", "ldn-service.form.pattern.ack-tentative-reject.description": "हा नमुना विनंती (ऑफर) तात्पुरते नाकारण्यासाठी वापरला जातो. याचा अर्थ पुढील कृती नाही, जो बदलू शकतो.", - + // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-reject.category": "मान्यतापत्रे", + // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "मान्यता जाहीर करा", - + // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", "ldn-service.form.pattern.announce-endorsement.description": "हा नमुना मान्यतेचे अस्तित्व जाहीर करण्यासाठी वापरला जातो, संदर्भित संसाधनाचा उल्लेख करतो.", - + // "ldn-service.form.pattern.announce-endorsement.category": "Announcements", "ldn-service.form.pattern.announce-endorsement.category": "जाहिराती", + // "ldn-service.form.pattern.announce-ingest.label": "Announce Ingest", "ldn-service.form.pattern.announce-ingest.label": "ग्रहण जाहीर करा", - + // "ldn-service.form.pattern.announce-ingest.description": "This pattern is used to announce that a resource has been ingested.", "ldn-service.form.pattern.announce-ingest.description": "हा नमुना संसाधन ग्रहण केले असल्याचे जाहीर करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.announce-ingest.category": "Announcements", "ldn-service.form.pattern.announce-ingest.category": "जाहिराती", + // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "संबंध जाहीर करा", - + // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", "ldn-service.form.pattern.announce-relationship.description": "हा नमुना दोन संसाधनांमधील संबंध जाहीर करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.announce-relationship.category": "Announcements", "ldn-service.form.pattern.announce-relationship.category": "जाहिराती", + // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "पुनरावलोकन जाहीर करा", - + // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", "ldn-service.form.pattern.announce-review.description": "हा नमुना पुनरावलोकनाचे अस्तित्व जाहीर करण्यासाठी वापरला जातो, पुनरावलोकित संसाधनाचा संदर्भ देतो.", - + // "ldn-service.form.pattern.announce-review.category": "Announcements", "ldn-service.form.pattern.announce-review.category": "जाहिराती", + // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "सेवा परिणाम जाहीर करा", - + // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", "ldn-service.form.pattern.announce-service-result.description": "हा नमुना 'सेवा परिणाम' अस्तित्व जाहीर करण्यासाठी वापरला जातो, संबंधित संसाधनाचा संदर्भ देतो.", - + // "ldn-service.form.pattern.announce-service-result.category": "Announcements", "ldn-service.form.pattern.announce-service-result.category": "जाहिराती", + // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "मान्यता विनंती", - + // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", "ldn-service.form.pattern.request-endorsement.description": "हा नमुना मूळ प्रणालीद्वारे मालकी असलेल्या संसाधनाची मान्यता विनंती करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.request-endorsement.category": "Requests", "ldn-service.form.pattern.request-endorsement.category": "विनंत्या", + // "ldn-service.form.pattern.request-ingest.label": "Request Ingest", "ldn-service.form.pattern.request-ingest.label": "ग्रहण विनंती", - + // "ldn-service.form.pattern.request-ingest.description": "This pattern is used to request that the target system ingest a resource.", "ldn-service.form.pattern.request-ingest.description": "हा नमुना लक्ष्य प्रणालीला संसाधन ग्रहण करण्याची विनंती करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.request-ingest.category": "Requests", "ldn-service.form.pattern.request-ingest.category": "विनंत्या", + // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "पुनरावलोकन विनंती", - + // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", "ldn-service.form.pattern.request-review.description": "हा नमुना मूळ प्रणालीद्वारे मालकी असलेल्या संसाधनाचे पुनरावलोकन करण्याची विनंती करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.request-review.category": "Requests", "ldn-service.form.pattern.request-review.category": "विनंत्या", + // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "ऑफर रद्द करा", - + // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", "ldn-service.form.pattern.undo-offer.description": "हा नमुना पूर्वी केलेली ऑफर रद्द (मागे घेणे) करण्यासाठी वापरला जातो.", - + // "ldn-service.form.pattern.undo-offer.category": "Undo", "ldn-service.form.pattern.undo-offer.category": "रद्द करा", + // "ldn-new-service.form.label.placeholder.selectedItemFilter": "No Item Filter Selected", "ldn-new-service.form.label.placeholder.selectedItemFilter": "कोणताही आयटम फिल्टर निवडलेला नाही", - + // "ldn-new-service.form.label.ItemFilter": "Item Filter", "ldn-new-service.form.label.ItemFilter": "आयटम फिल्टर", - + // "ldn-new-service.form.label.automatic": "Automatic", "ldn-new-service.form.label.automatic": "स्वयंचलित", - + // "ldn-new-service.form.error.name": "Name is required", "ldn-new-service.form.error.name": "नाव आवश्यक आहे", - + // "ldn-new-service.form.error.url": "URL is required", "ldn-new-service.form.error.url": "URL आवश्यक आहे", - + // "ldn-new-service.form.error.ipRange": "Please enter a valid IP range", "ldn-new-service.form.error.ipRange": "कृपया वैध IP श्रेणी प्रविष्ट करा", - - "ldn-new-service.form.hint.ipRange": "कृपया दोन्ही श्रेणी मर्यादांमध्ये वैध IpV4 प्रविष्ट करा (टीप: एकल IP साठी, कृपया दोन्ही फील्डमध्ये समान मूल्य प्रविष्ट करा)", - + // "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", + // TODO New key - Add a translation + "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", + // "ldn-new-service.form.error.ldnurl": "LDN URL is required", "ldn-new-service.form.error.ldnurl": "LDN URL आवश्यक आहे", - + // "ldn-new-service.form.error.patterns": "At least a pattern is required", "ldn-new-service.form.error.patterns": "किमान एक नमुना आवश्यक आहे", - + // "ldn-new-service.form.error.score": "Please enter a valid score (between 0 and 1). Use the “.” as decimal separator", "ldn-new-service.form.error.score": "कृपया वैध स्कोर प्रविष्ट करा (0 आणि 1 दरम्यान). दशांश विभाजक म्हणून “.” वापरा", + // "ldn-new-service.form.label.inboundPattern": "Supported Pattern", "ldn-new-service.form.label.inboundPattern": "समर्थित नमुना", - + // "ldn-new-service.form.label.addPattern": "+ Add more", "ldn-new-service.form.label.addPattern": "+ अधिक जोडा", - + // "ldn-new-service.form.label.removeItemFilter": "Remove", "ldn-new-service.form.label.removeItemFilter": "काढा", - + // "ldn-register-new-service.breadcrumbs": "New Service", "ldn-register-new-service.breadcrumbs": "नवीन सेवा", - + // "service.overview.delete.body": "Are you sure you want to delete this service?", "service.overview.delete.body": "तुम्हाला ही सेवा हटवायची आहे का?", - + // "service.overview.edit.body": "Do you confirm the changes?", "service.overview.edit.body": "तुम्ही बदलांची पुष्टी करता का?", - + // "service.overview.edit.modal": "Edit Service", "service.overview.edit.modal": "सेवा संपादित करा", - + // "service.detail.update": "Confirm", "service.detail.update": "पुष्टी करा", - + // "service.detail.return": "Cancel", "service.detail.return": "रद्द करा", - + // "service.overview.reset-form.body": "Are you sure you want to discard the changes and leave?", "service.overview.reset-form.body": "तुम्हाला बदल रद्द करून सोडायचे आहे का?", - + // "service.overview.reset-form.modal": "Discard Changes", "service.overview.reset-form.modal": "बदल रद्द करा", - + // "service.overview.reset-form.reset-confirm": "Discard", "service.overview.reset-form.reset-confirm": "रद्द करा", - + // "admin.registries.services-formats.modify.success.head": "Successful Edit", "admin.registries.services-formats.modify.success.head": "यशस्वी संपादन", - + // "admin.registries.services-formats.modify.success.content": "The service has been edited", "admin.registries.services-formats.modify.success.content": "सेवा संपादित केली गेली आहे", - + // "admin.registries.services-formats.modify.failure.head": "Failed Edit", "admin.registries.services-formats.modify.failure.head": "अयशस्वी संपादन", - + // "admin.registries.services-formats.modify.failure.content": "The service has not been edited", "admin.registries.services-formats.modify.failure.content": "सेवा संपादित केली गेली नाही", - + // "ldn-service-notification.created.success.title": "Successful Create", "ldn-service-notification.created.success.title": "यशस्वी निर्मिती", - + // "ldn-service-notification.created.success.body": "The service has been created", "ldn-service-notification.created.success.body": "सेवा तयार केली गेली आहे", - + // "ldn-service-notification.created.failure.title": "Failed Create", "ldn-service-notification.created.failure.title": "अयशस्वी निर्मिती", - + // "ldn-service-notification.created.failure.body": "The service has not been created", "ldn-service-notification.created.failure.body": "सेवा तयार केली गेली नाही", - + // "ldn-service-notification.created.warning.title": "Please select at least one Inbound Pattern", "ldn-service-notification.created.warning.title": "कृपया किमान एक इनबाउंड नमुना निवडा", - + // "ldn-enable-service.notification.success.title": "Successful status updated", "ldn-enable-service.notification.success.title": "यशस्वी स्थिती अद्यतनित", - + // "ldn-enable-service.notification.success.content": "The service status has been updated", "ldn-enable-service.notification.success.content": "सेवा स्थिती अद्यतनित केली गेली आहे", - + // "ldn-service-delete.notification.success.title": "Successful Deletion", "ldn-service-delete.notification.success.title": "यशस्वी हटवणे", - + // "ldn-service-delete.notification.success.content": "The service has been deleted", "ldn-service-delete.notification.success.content": "सेवा हटवली गेली आहे", - + // "ldn-service-delete.notification.error.title": "Failed Deletion", "ldn-service-delete.notification.error.title": "अयशस्वी हटवणे", - + // "ldn-service-delete.notification.error.content": "The service has not been deleted", "ldn-service-delete.notification.error.content": "सेवा हटवली गेली नाही", - + // "service.overview.reset-form.reset-return": "Cancel", "service.overview.reset-form.reset-return": "रद्द करा", - + // "service.overview.delete": "Delete service", "service.overview.delete": "सेवा हटवा", - + // "ldn-edit-service.title": "Edit service", "ldn-edit-service.title": "सेवा संपादित करा", - + // "ldn-edit-service.form.label.name": "Name", "ldn-edit-service.form.label.name": "नाव", - + // "ldn-edit-service.form.label.description": "Description", "ldn-edit-service.form.label.description": "वर्णन", - + // "ldn-edit-service.form.label.url": "Service URL", "ldn-edit-service.form.label.url": "सेवा URL", - + // "ldn-edit-service.form.label.ldnUrl": "LDN Inbox URL", "ldn-edit-service.form.label.ldnUrl": "LDN इनबॉक्स URL", - + // "ldn-edit-service.form.label.inboundPattern": "Inbound Pattern", "ldn-edit-service.form.label.inboundPattern": "इनबाउंड नमुना", - + // "ldn-edit-service.form.label.noInboundPatternSelected": "No Inbound Pattern", "ldn-edit-service.form.label.noInboundPatternSelected": "कोणताही इनबाउंड नमुना निवडलेला नाही", - + // "ldn-edit-service.form.label.selectedItemFilter": "Selected Item Filter", "ldn-edit-service.form.label.selectedItemFilter": "निवडलेला आयटम फिल्टर", - + // "ldn-edit-service.form.label.selectItemFilter": "No Item Filter", "ldn-edit-service.form.label.selectItemFilter": "कोणताही आयटम फिल्टर नाही", - + // "ldn-edit-service.form.label.automatic": "Automatic", "ldn-edit-service.form.label.automatic": "स्वयंचलित", - + // "ldn-edit-service.form.label.addInboundPattern": "+ Add more", "ldn-edit-service.form.label.addInboundPattern": "+ अधिक जोडा", - + // "ldn-edit-service.form.label.submit": "Save", "ldn-edit-service.form.label.submit": "जतन करा", - + // "ldn-edit-service.breadcrumbs": "Edit Service", "ldn-edit-service.breadcrumbs": "सेवा संपादित करा", - + // "ldn-service.control-constaint-select-none": "Select none", "ldn-service.control-constaint-select-none": "कोणताही निवडा", + // "ldn-register-new-service.notification.error.title": "Error", "ldn-register-new-service.notification.error.title": "त्रुटी", - + // "ldn-register-new-service.notification.error.content": "An error occurred while creating this process", "ldn-register-new-service.notification.error.content": "हा प्रक्रिया तयार करताना त्रुटी आली", - + // "ldn-register-new-service.notification.success.title": "Success", "ldn-register-new-service.notification.success.title": "यश", - + // "ldn-register-new-service.notification.success.content": "The process was successfully created", "ldn-register-new-service.notification.success.content": "प्रक्रिया यशस्वीरित्या तयार केली गेली", - "submission.sections.notify.info": "निवडलेली सेवा त्याच्या वर्तमान स्थितीनुसार आयटमशी सुसंगत आहे. {{ service.name }}: {{ service.description }}", + // "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + // TODO New key - Add a translation + "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + // "item.page.endorsement": "Endorsement", "item.page.endorsement": "मान्यता", + // "item.page.places": "Related places", "item.page.places": "संबंधित ठिकाणे", + // "item.page.review": "Review", "item.page.review": "पुनरावलोकन", + // "item.page.referenced": "Referenced By", "item.page.referenced": "संदर्भित", + // "item.page.supplemented": "Supplemented By", "item.page.supplemented": "पूरक", + // "menu.section.icon.ldn_services": "LDN Services overview", "menu.section.icon.ldn_services": "LDN सेवा विहंगावलोकन", + // "menu.section.services": "LDN Services", "menu.section.services": "LDN सेवा", + // "menu.section.services_new": "LDN Service", "menu.section.services_new": "LDN सेवा", + // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "खाली तुम्ही {{source}} च्या सदस्यत्वांमधून प्राप्त सर्व विषय पाहू शकता", - + // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", "quality-assurance.events.description": "खाली निवडलेल्या विषयासाठी सर्व सुचवणुकींची यादी आहे {{topic}}, संबंधित {{source}}.", + // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "खाली निवडलेल्या विषयासाठी सर्व सुचवणुकींची यादी आहे {{topic}}, संबंधित {{source}} आणि ", - "quality-assurance.event.table.event.message.serviceUrl": "अभिनेता:", + // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + // TODO New key - Add a translation + "quality-assurance.event.table.event.message.serviceUrl": "Actor:", - "quality-assurance.event.table.event.message.link": "लिंक:", + // "quality-assurance.event.table.event.message.link": "Link:", + // TODO New key - Add a translation + "quality-assurance.event.table.event.message.link": "Link:", + // "service.detail.delete.cancel": "Cancel", "service.detail.delete.cancel": "रद्द करा", + // "service.detail.delete.button": "Delete service", "service.detail.delete.button": "सेवा हटवा", + // "service.detail.delete.header": "Delete service", "service.detail.delete.header": "सेवा हटवा", + // "service.detail.delete.body": "Are you sure you want to delete the current service?", "service.detail.delete.body": "तुम्हाला चालू सेवा हटवायची आहे का?", + // "service.detail.delete.confirm": "Delete service", "service.detail.delete.confirm": "सेवा हटवा", + // "service.detail.delete.success": "The service was successfully deleted.", "service.detail.delete.success": "सेवा यशस्वीरित्या हटवली गेली.", + // "service.detail.delete.error": "Something went wrong when deleting the service", "service.detail.delete.error": "सेवा हटवताना काहीतरी चूक झाली", + // "service.overview.table.id": "Services ID", "service.overview.table.id": "सेवा ID", + // "service.overview.table.name": "Name", "service.overview.table.name": "नाव", + // "service.overview.table.start": "Start time (UTC)", "service.overview.table.start": "प्रारंभ वेळ (UTC)", + // "service.overview.table.status": "Status", "service.overview.table.status": "स्थिती", + // "service.overview.table.user": "User", "service.overview.table.user": "वापरकर्ता", + // "service.overview.title": "Services Overview", "service.overview.title": "सेवा विहंगावलोकन", + // "service.overview.breadcrumbs": "Services Overview", "service.overview.breadcrumbs": "सेवा विहंगावलोकन", + // "service.overview.table.actions": "Actions", "service.overview.table.actions": "क्रिया", + // "service.overview.table.description": "Description", "service.overview.table.description": "वर्णन", + // "submission.sections.submit.progressbar.coarnotify": "COAR Notify", "submission.sections.submit.progressbar.coarnotify": "COAR सूचना", + // "submission.section.section-coar-notify.control.request-review.label": "You can request a review to one of the following services", "submission.section.section-coar-notify.control.request-review.label": "तुम्ही खालील सेवांपैकी एकाची पुनरावलोकन विनंती करू शकता", + // "submission.section.section-coar-notify.control.request-endorsement.label": "You can request an Endorsement to one of the following overlay journals", "submission.section.section-coar-notify.control.request-endorsement.label": "तुम्ही खालील ओव्हरले जर्नल्सपैकी एकाची मान्यता विनंती करू शकता", + // "submission.section.section-coar-notify.control.request-ingest.label": "You can request to ingest a copy of your submission to one of the following services", "submission.section.section-coar-notify.control.request-ingest.label": "तुमच्या सबमिशनची प्रत खालील सेवांपैकी एकाला ग्रहण करण्याची विनंती करू शकता", + // "submission.section.section-coar-notify.dropdown.no-data": "No data available", "submission.section.section-coar-notify.dropdown.no-data": "माहिती उपलब्ध नाही", + // "submission.section.section-coar-notify.dropdown.select-none": "Select none", "submission.section.section-coar-notify.dropdown.select-none": "कोणतेही निवडा", + // "submission.section.section-coar-notify.small.notification": "Select a service for {{ pattern }} of this item", "submission.section.section-coar-notify.small.notification": "या आयटमच्या {{ pattern }} साठी सेवा निवडा", - "submission.section.section-coar-notify.selection.description": "निवडलेल्या सेवेचे वर्णन:", + // "submission.section.section-coar-notify.selection.description": "Selected service's description:", + // TODO New key - Add a translation + "submission.section.section-coar-notify.selection.description": "Selected service's description:", + // "submission.section.section-coar-notify.selection.no-description": "No further information is available", "submission.section.section-coar-notify.selection.no-description": "अधिक माहिती उपलब्ध नाही", + // "submission.section.section-coar-notify.notification.error": "The selected service is not suitable for the current item. Please check the description for details about which record can be managed by this service.", "submission.section.section-coar-notify.notification.error": "निवडलेली सेवा चालू आयटमसाठी योग्य नाही. कृपया कोणते रेकॉर्ड या सेवेद्वारे व्यवस्थापित केले जाऊ शकतात याबद्दल तपशीलांसाठी वर्णन तपासा.", + // "submission.section.section-coar-notify.info.no-pattern": "No configurable patterns found.", "submission.section.section-coar-notify.info.no-pattern": "कोणतेही कॉन्फिगरेबल नमुने आढळले नाहीत.", + // "error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.", "error.validation.coarnotify.invalidfilter": "अवैध फिल्टर, कृपया दुसरी सेवा निवडा किंवा कोणतेही निवडा.", + // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.", "request-status-alert-box.accepted": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी स्वीकारले गेले आहे.", + // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी नाकारले गेले आहे.", + // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", "request-status-alert-box.tentative_rejected": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी तात्पुरते नाकारले गेले आहे. सुधारणा आवश्यक आहेत", + // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी प्रलंबित आहे.", + // "ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion", "ldn-service-button-mark-inbound-deletion": "हटवण्यासाठी समर्थित नमुना चिन्हांकित करा", + // "ldn-service-button-unmark-inbound-deletion": "Unmark supported pattern for deletion", "ldn-service-button-unmark-inbound-deletion": "हटवण्यासाठी समर्थित नमुना अनचिन्हांकित करा", + // "ldn-service-input-inbound-item-filter-dropdown": "Select Item filter for the pattern", "ldn-service-input-inbound-item-filter-dropdown": "नमुन्यासाठी आयटम फिल्टर निवडा", + // "ldn-service-input-inbound-pattern-dropdown": "Select a pattern for service", "ldn-service-input-inbound-pattern-dropdown": "सेवेच्या नमुन्यासाठी निवडा", + // "ldn-service-overview-select-delete": "Select service for deletion", "ldn-service-overview-select-delete": "हटवण्यासाठी सेवा निवडा", + // "ldn-service-overview-select-edit": "Edit LDN service", "ldn-service-overview-select-edit": "LDN सेवा संपादित करा", + // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "मोडल बंद करा", + // "ldn-service-usesActorEmailId": "Requires actor email in notifications", "ldn-service-usesActorEmailId": "सूचनांमध्ये अभिनेता ईमेल आवश्यक आहे", + // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", "ldn-service-usesActorEmailId-description": "सक्षम असल्यास, प्रारंभिक सूचना सबमिटर ईमेल समाविष्ट करतील, रेपॉझिटरी URL ऐवजी. हे सामान्यतः मान्यता किंवा पुनरावलोकन सेवांसाठी असते.", + // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "आयटम प्रकार जर्नल लेख किंवा डेटासेट आहे", + // "always_true_filter.label": "Always true", "always_true_filter.label": "नेहमी खरे", + // "automatic_processing_collection_filter_16.label": "Automatic processing", "automatic_processing_collection_filter_16.label": "स्वयंचलित प्रक्रिया", + // "dc-identifier-uri-contains-doi_condition.label": "URI contains DOI", "dc-identifier-uri-contains-doi_condition.label": "URI मध्ये DOI समाविष्ट आहे", + // "doi-filter.label": "DOI filter", "doi-filter.label": "DOI फिल्टर", + // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "दस्तऐवज प्रकार ड्रायव्हर समान आहे", + // "has-at-least-one-bitstream_condition.label": "Has at least one Bitstream", "has-at-least-one-bitstream_condition.label": "किमान एक बिटस्ट्रीम आहे", + // "has-bitstream_filter.label": "Has Bitstream", "has-bitstream_filter.label": "बिटस्ट्रीम आहे", + // "has-one-bitstream_condition.label": "Has one Bitstream", "has-one-bitstream_condition.label": "एक बिटस्ट्रीम आहे", + // "is-archived_condition.label": "Is archived", "is-archived_condition.label": "संग्रहित आहे", + // "is-withdrawn_condition.label": "Is withdrawn", "is-withdrawn_condition.label": "मागे घेतले आहे", + // "item-is-public_condition.label": "Item is public", "item-is-public_condition.label": "आयटम सार्वजनिक आहे", + // "journals_ingest_suggestion_collection_filter_18.label": "Journals ingest", "journals_ingest_suggestion_collection_filter_18.label": "जर्नल्स ग्रहण", + // "title-starts-with-pattern_condition.label": "Title starts with pattern", "title-starts-with-pattern_condition.label": "शीर्षक नमुन्याने सुरू होते", + // "type-equals-dataset_condition.label": "Type equals Dataset", "type-equals-dataset_condition.label": "प्रकार डेटासेट समान आहे", + // "type-equals-journal-article_condition.label": "Type equals Journal Article", "type-equals-journal-article_condition.label": "प्रकार जर्नल लेख समान आहे", + // "ldn.no-filter.label": "None", "ldn.no-filter.label": "कोणतेही नाही", + // "admin.notify.dashboard": "Dashboard", "admin.notify.dashboard": "डॅशबोर्ड", + // "menu.section.notify_dashboard": "Dashboard", "menu.section.notify_dashboard": "डॅशबोर्ड", + // "menu.section.coar_notify": "COAR Notify", "menu.section.coar_notify": "COAR सूचना", + // "admin-notify-dashboard.title": "Notify Dashboard", "admin-notify-dashboard.title": "सूचना डॅशबोर्ड", + // "admin-notify-dashboard.description": "The Notify dashboard monitor the general usage of the COAR Notify protocol across the repository. In the “Metrics” tab are statistics about usage of the COAR Notify protocol. In the “Logs/Inbound” and “Logs/Outbound” tabs it’s possible to search and check the individual status of each LDN message, either received or sent.", "admin-notify-dashboard.description": "सूचना डॅशबोर्ड रेपॉझिटरीमध्ये COAR सूचना प्रोटोकॉलच्या सामान्य वापराचे निरीक्षण करते. “मेट्रिक्स” टॅबमध्ये COAR सूचना प्रोटोकॉलच्या वापराबद्दल आकडेवारी आहे. “लॉग्स/इनबाउंड” आणि “लॉग्स/आउटबाउंड” टॅबमध्ये प्रत्येक LDN संदेशाची वैयक्तिक स्थिती शोधणे आणि तपासणे शक्य आहे, प्राप्त किंवा पाठवलेले.", + // "admin-notify-dashboard.metrics": "Metrics", "admin-notify-dashboard.metrics": "मेट्रिक्स", + // "admin-notify-dashboard.received-ldn": "Number of received LDN", "admin-notify-dashboard.received-ldn": "प्राप्त LDN ची संख्या", + // "admin-notify-dashboard.generated-ldn": "Number of generated LDN", "admin-notify-dashboard.generated-ldn": "उत्पन्न LDN ची संख्या", + // "admin-notify-dashboard.NOTIFY.incoming.accepted": "Accepted", "admin-notify-dashboard.NOTIFY.incoming.accepted": "स्वीकारले", + // "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "Accepted inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "स्वीकारलेल्या इनबाउंड सूचनां", - "admin-notify-logs.NOTIFY.incoming.accepted": "सध्या प्रदर्शित: स्वीकारलेल्या सूचनां", + // "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + // "admin-notify-dashboard.NOTIFY.incoming.processed": "Processed LDN", "admin-notify-dashboard.NOTIFY.incoming.processed": "प्रक्रिया केलेले LDN", + // "admin-notify-dashboard.NOTIFY.incoming.processed.description": "Processed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.processed.description": "प्रक्रिया केलेल्या इनबाउंड सूचनां", - "admin-notify-logs.NOTIFY.incoming.processed": "सध्या प्रदर्शित: प्रक्रिया केलेले LDN", + // "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", - "admin-notify-logs.NOTIFY.incoming.failure": "सध्या प्रदर्शित: अयशस्वी सूचनां", + // "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + // "admin-notify-dashboard.NOTIFY.incoming.failure": "Failure", "admin-notify-dashboard.NOTIFY.incoming.failure": "अयशस्वी", + // "admin-notify-dashboard.NOTIFY.incoming.failure.description": "Failed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.failure.description": "अयशस्वी इनबाउंड सूचनां", - "admin-notify-logs.NOTIFY.outgoing.failure": "सध्या प्रदर्शित: अयशस्वी सूचनां", + // "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.failure": "Failure", "admin-notify-dashboard.NOTIFY.outgoing.failure": "अयशस्वी", + // "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "Failed outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "अयशस्वी आउटबाउंड सूचनां", - "admin-notify-logs.NOTIFY.incoming.untrusted": "सध्या प्रदर्शित: अविश्वसनीय सूचनां", + // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "अविश्वसनीय", + // "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "Inbound notifications not trusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "अविश्वसनीय इनबाउंड सूचनां", - "admin-notify-logs.NOTIFY.incoming.delivered": "सध्या प्रदर्शित: वितरित सूचनां", + // "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + // "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "Inbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "यशस्वीरित्या वितरित इनबाउंड सूचनां", + // "admin-notify-dashboard.NOTIFY.outgoing.delivered": "Delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered": "वितरित", - "admin-notify-logs.NOTIFY.outgoing.delivered": "सध्या प्रदर्शित: वितरित सूचनां", + // "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "Outbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "यशस्वीरित्या वितरित आउटबाउंड सूचनां", - "admin-notify-logs.NOTIFY.outgoing.queued": "सध्या प्रदर्शित: रांगेत असलेल्या सूचनां", + // "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "Notifications currently queued", "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "सध्या रांगेत असलेल्या सूचनां", + // "admin-notify-dashboard.NOTIFY.outgoing.queued": "Queued", "admin-notify-dashboard.NOTIFY.outgoing.queued": "रांगेत", - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "सध्या प्रदर्शित: पुन्हा प्रयत्न करण्यासाठी रांगेत असलेल्या सूचनां", + // "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + // TODO New key - Add a translation + "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "Queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "पुन्हा प्रयत्न करण्यासाठी रांगेत", + // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "Notifications currently queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "सध्या पुन्हा प्रयत्न करण्यासाठी रांगेत असलेल्या सूचनां", + // "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "संबंधित आयटम", + // "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "Items related to inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "इनबाउंड सूचनांशी संबंधित आयटम", + // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "संबंधित आयटम", + // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "Items related to outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "आउटबाउंड सूचनांशी संबंधित आयटम", + // "admin.notify.dashboard.breadcrumbs": "Dashboard", "admin.notify.dashboard.breadcrumbs": "डॅशबोर्ड", + // "admin.notify.dashboard.inbound": "Inbound messages", "admin.notify.dashboard.inbound": "इनबाउंड संदेश", + // "admin.notify.dashboard.inbound-logs": "Logs/Inbound", "admin.notify.dashboard.inbound-logs": "लॉग्स/इनबाउंड", - "admin.notify.dashboard.filter": "फिल्टर: ", + // "admin.notify.dashboard.filter": "Filter: ", + // TODO New key - Add a translation + "admin.notify.dashboard.filter": "Filter: ", + // "search.filters.applied.f.relateditem": "Related items", "search.filters.applied.f.relateditem": "संबंधित आयटम", + // "search.filters.applied.f.ldn_service": "LDN Service", "search.filters.applied.f.ldn_service": "LDN सेवा", + // "search.filters.applied.f.notifyReview": "Notify Review", "search.filters.applied.f.notifyReview": "सूचना पुनरावलोकन", + // "search.filters.applied.f.notifyEndorsement": "Notify Endorsement", "search.filters.applied.f.notifyEndorsement": "सूचना मान्यता", + // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "सूचना संबंध", + // "search.filters.applied.f.access_status": "Access type", "search.filters.applied.f.access_status": "प्रवेश प्रकार", + // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "शेवटची प्रक्रिया वेळ ", + // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "किमान श्रेणी", + // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "कमाल श्रेणी", + // "search.filters.applied.f.queue_last_start_time.min": "Min range", "search.filters.applied.f.queue_last_start_time.min": "किमान श्रेणी", + // "search.filters.applied.f.queue_last_start_time.max": "Max range", "search.filters.applied.f.queue_last_start_time.max": "कमाल श्रेणी", + // "admin.notify.dashboard.outbound": "Outbound messages", "admin.notify.dashboard.outbound": "आउटबाउंड संदेश", + // "admin.notify.dashboard.outbound-logs": "Logs/Outbound", "admin.notify.dashboard.outbound-logs": "लॉग्स/आउटबाउंड", + // "NOTIFY.incoming.search.results.head": "Incoming", "NOTIFY.incoming.search.results.head": "इनकमिंग", + // "search.filters.filter.relateditem.head": "Related item", "search.filters.filter.relateditem.head": "संबंधित आयटम", + // "search.filters.filter.origin.head": "Origin", "search.filters.filter.origin.head": "मूळ", + // "search.filters.filter.ldn_service.head": "LDN Service", "search.filters.filter.ldn_service.head": "LDN सेवा", + // "search.filters.filter.target.head": "Target", "search.filters.filter.target.head": "लक्ष्य", + // "search.filters.filter.queue_status.head": "Queue status", "search.filters.filter.queue_status.head": "रांग स्थिती", + // "search.filters.filter.activity_stream_type.head": "Activity stream type", "search.filters.filter.activity_stream_type.head": "क्रियाकलाप प्रवाह प्रकार", + // "search.filters.filter.coar_notify_type.head": "COAR Notify type", "search.filters.filter.coar_notify_type.head": "COAR सूचना प्रकार", + // "search.filters.filter.notification_type.head": "Notification type", "search.filters.filter.notification_type.head": "सूचना प्रकार", + // "search.filters.filter.relateditem.label": "Search related items", "search.filters.filter.relateditem.label": "संबंधित आयटम शोधा", + // "search.filters.filter.queue_status.label": "Search queue status", "search.filters.filter.queue_status.label": "रांग स्थिती शोधा", + // "search.filters.filter.target.label": "Search target", "search.filters.filter.target.label": "लक्ष्य शोधा", + // "search.filters.filter.activity_stream_type.label": "Search activity stream type", "search.filters.filter.activity_stream_type.label": "क्रियाकलाप प्रवाह प्रकार शोधा", + // "search.filters.applied.f.queue_status": "Queue Status", "search.filters.applied.f.queue_status": "रांग स्थिती", + // "search.filters.queue_status.0,authority": "Untrusted Ip", "search.filters.queue_status.0,authority": "अविश्वसनीय IP", + // "search.filters.queue_status.1,authority": "Queued", "search.filters.queue_status.1,authority": "रांगेत", + // "search.filters.queue_status.2,authority": "Processing", "search.filters.queue_status.2,authority": "प्रक्रिया", + // "search.filters.queue_status.3,authority": "Processed", "search.filters.queue_status.3,authority": "प्रक्रिया पूर्ण", + // "search.filters.queue_status.4,authority": "Failed", "search.filters.queue_status.4,authority": "अयशस्वी", + // "search.filters.queue_status.5,authority": "Untrusted", "search.filters.queue_status.5,authority": "अविश्वसनीय", + // "search.filters.queue_status.6,authority": "Unmapped Action", "search.filters.queue_status.6,authority": "नकाशा नसलेली क्रिया", + // "search.filters.queue_status.7,authority": "Queued for retry", "search.filters.queue_status.7,authority": "पुन्हा प्रयत्नासाठी रांगेत", + // "search.filters.applied.f.activity_stream_type": "Activity stream type", "search.filters.applied.f.activity_stream_type": "क्रियाकलाप प्रवाह प्रकार", + // "search.filters.applied.f.coar_notify_type": "COAR Notify type", "search.filters.applied.f.coar_notify_type": "COAR सूचना प्रकार", + // "search.filters.applied.f.notification_type": "Notification type", "search.filters.applied.f.notification_type": "सूचना प्रकार", + // "search.filters.filter.coar_notify_type.label": "Search COAR Notify type", "search.filters.filter.coar_notify_type.label": "COAR सूचना प्रकार शोधा", + // "search.filters.filter.notification_type.label": "Search notification type", "search.filters.filter.notification_type.label": "सूचना प्रकार शोधा", + // "search.filters.filter.relateditem.placeholder": "Related items", "search.filters.filter.relateditem.placeholder": "संबंधित आयटम", + // "search.filters.filter.target.placeholder": "Target", "search.filters.filter.target.placeholder": "लक्ष्य", + // "search.filters.filter.origin.label": "Search source", "search.filters.filter.origin.label": "स्रोत शोधा", + // "search.filters.filter.origin.placeholder": "Source", "search.filters.filter.origin.placeholder": "स्रोत", + // "search.filters.filter.ldn_service.label": "Search LDN Service", "search.filters.filter.ldn_service.label": "LDN सेवा शोधा", + // "search.filters.filter.ldn_service.placeholder": "LDN Service", "search.filters.filter.ldn_service.placeholder": "LDN सेवा", + // "search.filters.filter.queue_status.placeholder": "Queue status", "search.filters.filter.queue_status.placeholder": "रांग स्थिती", + // "search.filters.filter.activity_stream_type.placeholder": "Activity stream type", "search.filters.filter.activity_stream_type.placeholder": "क्रियाकलाप प्रवाह प्रकार", + // "search.filters.filter.coar_notify_type.placeholder": "COAR Notify type", "search.filters.filter.coar_notify_type.placeholder": "COAR सूचना प्रकार", + // "search.filters.filter.notification_type.placeholder": "Notification", "search.filters.filter.notification_type.placeholder": "सूचना", + // "search.filters.filter.notifyRelation.head": "Notify Relation", "search.filters.filter.notifyRelation.head": "सूचना संबंध", + // "search.filters.filter.notifyRelation.label": "Search Notify Relation", "search.filters.filter.notifyRelation.label": "सूचना संबंध शोधा", + // "search.filters.filter.notifyRelation.placeholder": "Notify Relation", "search.filters.filter.notifyRelation.placeholder": "सूचना संबंध", + // "search.filters.filter.notifyReview.head": "Notify Review", "search.filters.filter.notifyReview.head": "सूचना पुनरावलोकन", + // "search.filters.filter.notifyReview.label": "Search Notify Review", "search.filters.filter.notifyReview.label": "सूचना पुनरावलोकन शोधा", + // "search.filters.filter.notifyReview.placeholder": "Notify Review", "search.filters.filter.notifyReview.placeholder": "सूचना पुनरावलोकन", + // "search.filters.coar_notify_type.coar-notify:ReviewAction": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction": "पुनरावलोकन क्रिया", + // "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "पुनरावलोकन क्रिया", + // "notify-detail-modal.coar-notify:ReviewAction": "Review action", "notify-detail-modal.coar-notify:ReviewAction": "पुनरावलोकन क्रिया", + // "search.filters.coar_notify_type.coar-notify:EndorsementAction": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction": "मान्यता क्रिया", + // "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "मान्यता क्रिया", + // "notify-detail-modal.coar-notify:EndorsementAction": "Endorsement action", "notify-detail-modal.coar-notify:EndorsementAction": "मान्यता क्रिया", + // "search.filters.coar_notify_type.coar-notify:IngestAction": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction": "ग्रहण क्रिया", + // "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ग्रहण क्रिया", + // "notify-detail-modal.coar-notify:IngestAction": "Ingest action", "notify-detail-modal.coar-notify:IngestAction": "ग्रहण क्रिया", + // "search.filters.coar_notify_type.coar-notify:RelationshipAction": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction": "संबंध क्रिया", + // "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "संबंध क्रिया", + // "notify-detail-modal.coar-notify:RelationshipAction": "Relationship action", "notify-detail-modal.coar-notify:RelationshipAction": "संबंध क्रिया", + // "search.filters.queue_status.QUEUE_STATUS_QUEUED": "Queued", "search.filters.queue_status.QUEUE_STATUS_QUEUED": "रांगेत", + // "notify-detail-modal.QUEUE_STATUS_QUEUED": "Queued", "notify-detail-modal.QUEUE_STATUS_QUEUED": "रांगेत", + // "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "पुन्हा प्रयत्नासाठी रांगेत", + // "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "पुन्हा प्रयत्नासाठी रांगेत", + // "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "Processing", "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "प्रक्रिया", + // "notify-detail-modal.QUEUE_STATUS_PROCESSING": "Processing", "notify-detail-modal.QUEUE_STATUS_PROCESSING": "प्रक्रिया", + // "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "Processed", "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "प्रक्रिया पूर्ण", + // "notify-detail-modal.QUEUE_STATUS_PROCESSED": "Processed", "notify-detail-modal.QUEUE_STATUS_PROCESSED": "प्रक्रिया पूर्ण", + // "search.filters.queue_status.QUEUE_STATUS_FAILED": "Failed", "search.filters.queue_status.QUEUE_STATUS_FAILED": "अयशस्वी", + // "notify-detail-modal.QUEUE_STATUS_FAILED": "Failed", "notify-detail-modal.QUEUE_STATUS_FAILED": "अयशस्वी", + // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "Untrusted", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "अविश्वसनीय", + // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "अविश्वसनीय IP", + // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "Untrusted", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "अविश्वसनीय", + // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "अविश्वसनीय IP", + // "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "नकाशा नसलेली क्रिया", + // "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "नकाशा नसलेली क्रिया", + // "sorting.queue_last_start_time.DESC": "Last started queue Descending", "sorting.queue_last_start_time.DESC": "शेवटची सुरू केलेली रांग उतरणे", + // "sorting.queue_last_start_time.ASC": "Last started queue Ascending", "sorting.queue_last_start_time.ASC": "शेवटची सुरू केलेली रांग चढणे", + // "sorting.queue_attempts.DESC": "Queue attempted Descending", "sorting.queue_attempts.DESC": "रांग प्रयत्न उतरणे", + // "sorting.queue_attempts.ASC": "Queue attempted Ascending", "sorting.queue_attempts.ASC": "रांग प्रयत्न चढणे", + // "NOTIFY.incoming.involvedItems.search.results.head": "Items involved in incoming LDN", "NOTIFY.incoming.involvedItems.search.results.head": "इनकमिंग LDN मध्ये सहभागी आयटम", + // "NOTIFY.outgoing.involvedItems.search.results.head": "Items involved in outgoing LDN", "NOTIFY.outgoing.involvedItems.search.results.head": "आउटगोइंग LDN मध्ये सहभागी आयटम", + // "type.notify-detail-modal": "Type", "type.notify-detail-modal": "प्रकार", + // "id.notify-detail-modal": "Id", "id.notify-detail-modal": "Id", + // "coarNotifyType.notify-detail-modal": "COAR Notify type", "coarNotifyType.notify-detail-modal": "COAR सूचना प्रकार", + // "activityStreamType.notify-detail-modal": "Activity stream type", "activityStreamType.notify-detail-modal": "क्रियाकलाप प्रवाह प्रकार", + // "inReplyTo.notify-detail-modal": "In reply to", "inReplyTo.notify-detail-modal": "याला उत्तर", + // "object.notify-detail-modal": "Repository Item", "object.notify-detail-modal": "रेपॉझिटरी आयटम", + // "context.notify-detail-modal": "Repository Item", "context.notify-detail-modal": "रेपॉझिटरी आयटम", + // "queueAttempts.notify-detail-modal": "Queue attempts", "queueAttempts.notify-detail-modal": "रांग प्रयत्न", + // "queueLastStartTime.notify-detail-modal": "Queue last started", "queueLastStartTime.notify-detail-modal": "रांग शेवटची सुरू केली", + // "origin.notify-detail-modal": "LDN Service", "origin.notify-detail-modal": "LDN सेवा", + // "target.notify-detail-modal": "LDN Service", "target.notify-detail-modal": "LDN सेवा", + // "queueStatusLabel.notify-detail-modal": "Queue status", "queueStatusLabel.notify-detail-modal": "रांग स्थिती", + // "queueTimeout.notify-detail-modal": "Queue timeout", "queueTimeout.notify-detail-modal": "रांग टाइमआउट", + // "notify-message-modal.title": "Message Detail", "notify-message-modal.title": "संदेश तपशील", + // "notify-message-modal.show-message": "Show message", "notify-message-modal.show-message": "संदेश दाखवा", + // "notify-message-result.timestamp": "Timestamp", "notify-message-result.timestamp": "टाइमस्टॅम्प", + // "notify-message-result.repositoryItem": "Repository Item", "notify-message-result.repositoryItem": "रेपॉझिटरी आयटम", + // "notify-message-result.ldnService": "LDN Service", "notify-message-result.ldnService": "LDN सेवा", + // "notify-message-result.type": "Type", "notify-message-result.type": "प्रकार", + // "notify-message-result.status": "Status", "notify-message-result.status": "स्थिती", + // "notify-message-result.action": "Action", "notify-message-result.action": "क्रिया", + // "notify-message-result.detail": "Detail", "notify-message-result.detail": "तपशील", + // "notify-message-result.reprocess": "Reprocess", "notify-message-result.reprocess": "पुन्हा प्रक्रिया करा", + // "notify-queue-status.processed": "Processed", "notify-queue-status.processed": "प्रक्रिया पूर्ण", + // "notify-queue-status.failed": "Failed", "notify-queue-status.failed": "अयशस्वी", + // "notify-queue-status.queue_retry": "Queued for retry", "notify-queue-status.queue_retry": "पुन्हा प्रयत्नासाठी रांगेत", + // "notify-queue-status.unmapped_action": "Unmapped action", "notify-queue-status.unmapped_action": "नकाशा नसलेली क्रिया", + // "notify-queue-status.processing": "Processing", "notify-queue-status.processing": "प्रक्रिया", + // "notify-queue-status.queued": "Queued", "notify-queue-status.queued": "रांगेत", + // "notify-queue-status.untrusted": "Untrusted", "notify-queue-status.untrusted": "अविश्वसनीय", + // "ldnService.notify-detail-modal": "LDN Service", "ldnService.notify-detail-modal": "LDN सेवा", + // "relatedItem.notify-detail-modal": "Related Item", "relatedItem.notify-detail-modal": "संबंधित आयटम", + // "search.filters.filter.notifyEndorsement.head": "Notify Endorsement", "search.filters.filter.notifyEndorsement.head": "सूचना मान्यता", + // "search.filters.filter.notifyEndorsement.placeholder": "Notify Endorsement", "search.filters.filter.notifyEndorsement.placeholder": "सूचना मान्यता", + // "search.filters.filter.notifyEndorsement.label": "Search Notify Endorsement", "search.filters.filter.notifyEndorsement.label": "सूचना मान्यता शोधा", + // "form.date-picker.placeholder.year": "Year", "form.date-picker.placeholder.year": "वर्ष", + // "form.date-picker.placeholder.month": "Month", "form.date-picker.placeholder.month": "महिना", + // "form.date-picker.placeholder.day": "Day", "form.date-picker.placeholder.day": "दिवस", + // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "क्रिएटिव्ह कॉमन्स परवाना", + // "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as", "item.page.cc.license.disclaimer": "इतरत्र नमूद केल्याशिवाय, या आयटमचा परवाना खालीलप्रमाणे वर्णन केला आहे", + // "browse.search-form.placeholder": "Search the repository", "browse.search-form.placeholder": "रेपॉझिटरी शोधा", + // "file-download-link.download": "Download ", "file-download-link.download": "डाउनलोड ", + // "register-page.registration.aria.label": "Enter your e-mail address", "register-page.registration.aria.label": "तुमचा ई-मेल पत्ता प्रविष्ट करा", + // "forgot-email.form.aria.label": "Enter your e-mail address", "forgot-email.form.aria.label": "तुमचा ई-मेल पत्ता प्रविष्ट करा", + // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "पृष्ठ पुन्हा लोड केले जाईल. फिल्टर {{ filter }} निवडले आहे.", + // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", "live-region.ordering.instructions": "{{ itemName }} पुनर्व्यवस्थित करण्यासाठी स्पेसबार दाबा.", - "live-region.ordering.status": "{{ itemName }}, पकडले. सूचीतील वर्तमान स्थिती: {{ index }} of {{ length }}. स्थिती बदलण्यासाठी वर आणि खाली बाण की दाबा, ड्रॉप करण्यासाठी स्पेसबार, रद्द करण्यासाठी एस्केप.", + // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + // TODO New key - Add a translation + "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", "live-region.ordering.moved": "{{ itemName }}, स्थिती {{ index }} of {{ length }} वर हलवले. स्थिती बदलण्यासाठी वर आणि खाली बाण की दाबा, ड्रॉप करण्यासाठी स्पेसबार, रद्द करण्यासाठी एस्केप.", + // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", "live-region.ordering.dropped": "{{ itemName }}, स्थिती {{ index }} of {{ length }} वर ड्रॉप केले.", + // "dynamic-form-array.sortable-list.label": "Sortable list", "dynamic-form-array.sortable-list.label": "सॉर्टेबल सूची", + // "external-login.component.or": "or", "external-login.component.or": "किंवा", + // "external-login.confirmation.header": "Information needed to complete the login process", "external-login.confirmation.header": "लॉगिन प्रक्रिया पूर्ण करण्यासाठी माहिती आवश्यक आहे", + // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", "external-login.noEmail.informationText": "{{authMethod}} कडून प्राप्त झालेली माहिती लॉगिन प्रक्रिया पूर्ण करण्यासाठी पुरेशी नाही. कृपया खालील माहिती द्या, किंवा विद्यमान खात्याशी तुमचे {{authMethod}} जोडण्यासाठी वेगळ्या पद्धतीने लॉगिन करा.", + // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", "external-login.haveEmail.informationText": "असे दिसते की तुम्ही या प्रणालीमध्ये अद्याप खाते तयार केलेले नाही. जर असे असेल तर, कृपया {{authMethod}} कडून प्राप्त झालेली माहिती पुष्टी करा आणि तुमच्यासाठी नवीन खाते तयार केले जाईल. अन्यथा, जर तुमच्याकडे आधीपासूनच प्रणालीमध्ये खाते असेल, तर कृपया विद्यमान खात्यात वापरलेला ईमेल पत्ता जुळवण्यासाठी ईमेल पत्ता अद्यतनित करा किंवा विद्यमान खात्याशी तुमचे {{authMethod}} जोडण्यासाठी वेगळ्या पद्धतीने लॉगिन करा.", + // "external-login.confirm-email.header": "Confirm or update email", "external-login.confirm-email.header": "ईमेल पुष्टी करा किंवा अद्यतनित करा", + // "external-login.confirmation.email-required": "Email is required.", "external-login.confirmation.email-required": "ईमेल आवश्यक आहे.", + // "external-login.confirmation.email-label": "User Email", "external-login.confirmation.email-label": "वापरकर्ता ईमेल", + // "external-login.confirmation.email-invalid": "Invalid email format.", "external-login.confirmation.email-invalid": "अवैध ईमेल स्वरूप.", + // "external-login.confirm.button.label": "Confirm this email", "external-login.confirm.button.label": "हा ईमेल पुष्टी करा", + // "external-login.confirm-email-sent.header": "Confirmation email sent", "external-login.confirm-email-sent.header": "पुष्टीकरण ईमेल पाठवले", + // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", "external-login.confirm-email-sent.info": " आम्ही दिलेल्या पत्त्यावर पुष्टीकरण ईमेल पाठवले आहे.
कृपया लॉगिन प्रक्रिया पूर्ण करण्यासाठी ईमेलमधील सूचनांचे अनुसरण करा.", + // "external-login.provide-email.header": "Provide email", "external-login.provide-email.header": "ईमेल द्या", + // "external-login.provide-email.button.label": "Send Verification link", "external-login.provide-email.button.label": "पुष्टीकरण लिंक पाठवा", + // "external-login-validation.review-account-info.header": "Review your account information", "external-login-validation.review-account-info.header": "तुमच्या खात्याची माहिती पुनरावलोकन करा", + // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", "external-login-validation.review-account-info.info": "ORCID कडून प्राप्त झालेली माहिती तुमच्या प्रोफाइलमध्ये नोंदवलेल्या माहितीपेक्षा वेगळी आहे.
कृपया त्यांचे पुनरावलोकन करा आणि तुम्हाला कोणतीही माहिती अद्यतनित करायची आहे का ते ठरवा. जतन केल्यानंतर तुम्हाला तुमच्या प्रोफाइल पृष्ठावर पुनर्निर्देशित केले जाईल.", + // "external-login-validation.review-account-info.table.header.information": "Information", "external-login-validation.review-account-info.table.header.information": "माहिती", + // "external-login-validation.review-account-info.table.header.received-value": "Received value", "external-login-validation.review-account-info.table.header.received-value": "प्राप्त मूल्य", + // "external-login-validation.review-account-info.table.header.current-value": "Current value", "external-login-validation.review-account-info.table.header.current-value": "वर्तमान मूल्य", + // "external-login-validation.review-account-info.table.header.action": "Override", "external-login-validation.review-account-info.table.header.action": "ओव्हरराइड", + // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", "external-login-validation.review-account-info.table.row.not-applicable": "N/A", + // "on-label": "ON", "on-label": "चालू", + // "off-label": "OFF", "off-label": "बंद", + // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", "review-account-info.merge-data.notification.success": "तुमची खात्याची माहिती यशस्वीरित्या अद्यतनित केली गेली आहे", + // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", "review-account-info.merge-data.notification.error": "तुमची खात्याची माहिती अद्यतनित करताना काहीतरी चूक झाली", + // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", "review-account-info.alert.error.content": "काहीतरी चूक झाली. कृपया नंतर पुन्हा प्रयत्न करा.", + // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", "external-login-page.provide-email.notifications.error": "काहीतरी चूक झाली. ईमेल पत्ता वगळला गेला किंवा ऑपरेशन वैध नाही.", + // "external-login.error.notification": "There was an error while processing your request. Please try again later.", "external-login.error.notification": "तुमची विनंती प्रक्रिया करताना एक त्रुटी आली. कृपया नंतर पुन्हा प्रयत्न करा.", + // "external-login.connect-to-existing-account.label": "Connect to an existing user", "external-login.connect-to-existing-account.label": "विद्यमान वापरकर्त्याशी कनेक्ट करा", + // "external-login.modal.label.close": "Close", "external-login.modal.label.close": "बंद करा", + // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", "external-login-page.provide-email.create-account.notifications.error.header": "काहीतरी चूक झाली", + // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", "external-login-page.provide-email.create-account.notifications.error.content": "कृपया तुमचा ईमेल पत्ता पुन्हा तपासा आणि पुन्हा प्रयत्न करा.", + // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", "external-login-page.confirm-email.create-account.notifications.error.no-netId": "या ईमेल खात्याशी काहीतरी चूक झाली. पुन्हा प्रयत्न करा किंवा लॉगिन करण्यासाठी वेगळा पद्धत वापरा.", + // "external-login-page.orcid-confirmation.firstname": "First name", "external-login-page.orcid-confirmation.firstname": "पहिले नाव", + // "external-login-page.orcid-confirmation.firstname.label": "First name", "external-login-page.orcid-confirmation.firstname.label": "पहिले नाव", + // "external-login-page.orcid-confirmation.lastname": "Last name", "external-login-page.orcid-confirmation.lastname": "आडनाव", + // "external-login-page.orcid-confirmation.lastname.label": "Last name", "external-login-page.orcid-confirmation.lastname.label": "आडनाव", + // "external-login-page.orcid-confirmation.netid": "Account Identifier", "external-login-page.orcid-confirmation.netid": "खाते ओळखकर्ता", + // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", + // "external-login-page.orcid-confirmation.email": "Email", "external-login-page.orcid-confirmation.email": "ईमेल", + // "external-login-page.orcid-confirmation.email.label": "Email", "external-login-page.orcid-confirmation.email.label": "ईमेल", + // "search.filters.access_status.open.access": "Open access", "search.filters.access_status.open.access": "मुक्त प्रवेश", + // "search.filters.access_status.restricted": "Restricted access", "search.filters.access_status.restricted": "मर्यादित प्रवेश", + // "search.filters.access_status.embargo": "Embargoed access", "search.filters.access_status.embargo": "प्रतिबंधित प्रवेश", + // "search.filters.access_status.metadata.only": "Metadata only", "search.filters.access_status.metadata.only": "फक्त मेटाडेटा", + // "search.filters.access_status.unknown": "Unknown", "search.filters.access_status.unknown": "अज्ञात", + // "metadata-export-filtered-items.tooltip": "Export report output as CSV", "metadata-export-filtered-items.tooltip": "CSV म्हणून अहवाल आउटपुट निर्यात करा", + // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", "metadata-export-filtered-items.submit.success": "CSV निर्यात यशस्वी झाली.", + // "metadata-export-filtered-items.submit.error": "CSV export failed.", "metadata-export-filtered-items.submit.error": "CSV निर्यात अयशस्वी झाली.", + // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", "metadata-export-filtered-items.columns.warning": "CSV निर्यात आपोआप सर्व संबंधित फील्ड समाविष्ट करते, त्यामुळे या सूचीतील निवडींचा विचार केला जात नाही.", + // "embargo.listelement.badge": "Embargo until {{ date }}", "embargo.listelement.badge": "{{ date }} पर्यंत प्रतिबंध", + // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", "metadata-export-search.submit.error.limit-exceeded": "फक्त पहिली {{limit}} आयटम निर्यात केली जातील", + + // "file-download-link.request-copy": "Request a copy of ", + // TODO New key - Add a translation + "file-download-link.request-copy": "Request a copy of ", + + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + + } \ No newline at end of file diff --git a/src/assets/i18n/nl.json5 b/src/assets/i18n/nl.json5 index 6f15cef68f1..159d0136df3 100644 --- a/src/assets/i18n/nl.json5 +++ b/src/assets/i18n/nl.json5 @@ -3657,13 +3657,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Fout bij het inladen van communities op het hoogste niveau", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "U moet de invoerlicentie goedkeuren om de invoer af te werken. Indien u deze licentie momenteel niet kan of mag goedkeuren, kunt u uw werk opslaan en de invoer later afwerken. U kunt dit nieuwe item ook verwijderen indien u niet voldoet aan de vereisten van de invoerlicentie.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Deze invoer wordt ingeperkt door dit patroon: {{ pattern }}.", @@ -10435,6 +10448,10 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -10628,6 +10645,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Upload geslaagd", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13819,5 +13848,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/od.json5 b/src/assets/i18n/od.json5 deleted file mode 100644 index 1a46d28b7ea..00000000000 --- a/src/assets/i18n/od.json5 +++ /dev/null @@ -1,5659 +0,0 @@ -{ - "401.help": "ଆପଣ ଏହି ପୃଷ୍ଠାକୁ ପ୍ରବେଶ କରିବାର ଅନୁମତି ନାହିଁ। ଆପଣ ନିମ୍ନସ୍ଥ ବଟନ୍ ବ୍ୟବହାର କରି ମୂଳ ପୃଷ୍ଠାକୁ ଫେରିପାରିବେ।", - "401.link.home-page": "ମୋତେ ମୂଳ ପୃଷ୍ଠାକୁ ନେଇଯାଅ", - "401.unauthorized": "ଅନୁମତିପ୍ରାପ୍ତ ନୁହେଁ", - "403.help": "ଆପଣଙ୍କର ଏହି ପୃଷ୍ଠାକୁ ପ୍ରବେଶ କରିବାର ଅନୁମତି ନାହିଁ। ଆପଣ ନିମ୍ନସ୍ଥ ବଟନ୍ ବ୍ୟବହାର କରି ମୂଳ ପୃଷ୍ଠାକୁ ଫେରିପାରିବେ।", - "403.link.home-page": "ମୋତେ ମୂଳ ପୃଷ୍ଠାକୁ ନେଇଯାଅ", - "403.forbidden": "ନିଷିଦ୍ଧ", - "500.page-internal-server-error": "ସେବା ଉପଲବ୍ଧ ନାହିଁ", - "500.help": "ମେନ୍ଟେନାନ୍ସ ବା ସାମର୍ଥ୍ୟ ସମସ୍ୟା ଯୋଗୁଁ ସର୍ଭର୍ ଆପଣଙ୍କ ଅନୁରୋଧକୁ ସେବା ଦେଇପାରୁନାହିଁ। ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ।", - "500.link.home-page": "ମୋତେ ମୂଳ ପୃଷ୍ଠାକୁ ନେଇଯାଅ", - "404.help": "ଆପଣ ଖୋଜୁଥିବା ପୃଷ୍ଠା ଆମେ ଖୋଜି ପାରିଲୁ ନାହିଁ। ପୃଷ୍ଠା ସ୍ଥାନାନ୍ତରିତ କିମ୍ବା ବିଲୋପ ହୋଇଥାଇପାରେ। ଆପଣ ନିମ୍ନସ୍ଥ ବଟନ୍ ବ୍ୟବହାର କରି ମୂଳ ପୃଷ୍ଠାକୁ ଫେରିପାରିବେ।", - "404.link.home-page": "ମୋତେ ମୂଳ ପୃଷ୍ଠାକୁ ନେଇଯାଅ", - "404.page-not-found": "ପୃଷ୍ଠା ମିଳିଲା ନାହିଁ", - "error-page.description.401": "ଅନୁମତିପ୍ରାପ୍ତ ନୁହେଁ", - "error-page.description.403": "ନିଷିଦ୍ଧ", - "error-page.description.500": "ସେବା ଉପଲବ୍ଧ ନାହିଁ", - "error-page.description.404": "ପୃଷ୍ଠା ମିଳିଲା ନାହିଁ", - "error-page.orcid.generic-error": "ORCID ମାଧ୍ୟମରେ ଲଗଇନ୍ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା। ନିଶ୍ଚିତ କରନ୍ତୁ ଯେ ଆପଣ DSpace ସହିତ ଆପଣଙ୍କର ORCID ଆକାଉଣ୍ଟ୍ ଇମେଲ୍ ଠିକଣା ଅଂଶୀଦାର କରିଛନ୍ତି। ଯଦି ତ୍ରୁଟି ବଜାୟ ରହେ, ପ୍ରଶାସକଙ୍କୁ ଯୋଗାଯୋଗ କରନ୍ତୁ।", - "listelement.badge.access-status": "ପ୍ରବେଶ ସ୍ଥିତି:", - "access-status.embargo.listelement.badge": "ଏମ୍ବାର୍ଗୋ", - "access-status.metadata.only.listelement.badge": "କେବଳ ମେଟାଡାଟା", - "access-status.open.access.listelement.badge": "ଖୋଲା ପ୍ରବେଶ", - "access-status.restricted.listelement.badge": "ସୀମିତ", - "access-status.unknown.listelement.badge": "ଅଜ୍ଞାତ", - "admin.curation-tasks.breadcrumbs": "ସିଷ୍ଟମ୍ କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ", - "admin.curation-tasks.title": "ସିଷ୍ଟମ୍ କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ", - "admin.curation-tasks.header": "ସିଷ୍ଟମ୍ କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ", - "admin.registries.bitstream-formats.breadcrumbs": "ଫର୍ମାଟ୍ ରେଜିଷ୍ଟ୍ରି", - "admin.registries.bitstream-formats.create.breadcrumbs": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍", - "admin.registries.bitstream-formats.create.failure.content": "ନୂତନ ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସୃଷ୍ଟି କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", - "admin.registries.bitstream-formats.create.failure.head": "ବିଫଳତା", - "admin.registries.bitstream-formats.create.head": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସୃଷ୍ଟି କରନ୍ତୁ", - "admin.registries.bitstream-formats.create.new": "ଏକ ନୂତନ ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ଯୋଡନ୍ତୁ", - "admin.registries.bitstream-formats.create.success.content": "ନୂତନ ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି।", - "admin.registries.bitstream-formats.create.success.head": "ସଫଳତା", - "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} ଫର୍ମାଟ୍ ବିଲୋପ କରିବାରେ ବିଫଳ", - "admin.registries.bitstream-formats.delete.failure.head": "ବିଫଳତା", - "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} ଫର୍ମାଟ୍ ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", - "admin.registries.bitstream-formats.delete.success.head": "ସଫଳତା", - "admin.registries.bitstream-formats.description": "ଜ୍ଞାତ ଫର୍ମାଟ୍ ଏବଂ ସେମାନଙ୍କର ସମର୍ଥନ ସ୍ତର ବିଷୟରେ ସୂଚନା ପ୍ରଦାନ କରୁଥିବା ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍‌ର ଏହି ତାଲିକା।", - "admin.registries.bitstream-formats.edit.breadcrumbs": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍", - "admin.registries.bitstream-formats.edit.description.hint": "", - "admin.registries.bitstream-formats.edit.description.label": "ବର୍ଣ୍ଣନା", - "admin.registries.bitstream-formats.edit.extensions.hint": "ଏକ୍ସଟେନ୍ସନ୍ ହେଉଛି ଫାଇଲ୍ ଏକ୍ସଟେନ୍ସନ୍ ଯାହା ଅପଲୋଡ୍ କରାଯାଇଥିବା ଫାଇଲ୍‌ର ଫର୍ମାଟ୍ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଚିହ୍ନିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ। ଆପଣ ପ୍ରତ୍ୟେକ ଫର୍ମାଟ୍ ପାଇଁ ଅନେକ ଏକ୍ସଟେନ୍ସନ୍ ପ୍ରବେଶ କରିପାରିବେ।", - "admin.registries.bitstream-formats.edit.extensions.label": "ଫାଇଲ୍ ଏକ୍ସଟେନ୍ସନ୍", - "admin.registries.bitstream-formats.edit.extensions.placeholder": "ଡଟ୍ ବିନା ଏକ ଫାଇଲ୍ ଏକ୍ସଟେନ୍ସନ୍ ପ୍ରବେଶ କରନ୍ତୁ", - "admin.registries.bitstream-formats.edit.failure.content": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସଂପାଦନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", - "admin.registries.bitstream-formats.edit.failure.head": "ବିଫଳତା", - "admin.registries.bitstream-formats.edit.head": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍: {{ format }}", - "admin.registries.bitstream-formats.edit.internal.hint": "ଆନ୍ତରିକ ଭାବରେ ଚିହ୍ନିତ ଫର୍ମାଟ୍‌ଗୁଡିକ ଉପଭୋକ୍ତାଙ୍କ ପାଇଁ ଲୁକ୍କାୟିତ ହୋଇଥାଏ, ଏବଂ ପ୍ରଶାସନିକ ଉଦ୍ଦେଶ୍ୟ ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", - "admin.registries.bitstream-formats.edit.internal.label": "ଆନ୍ତରିକ", - "admin.registries.bitstream-formats.edit.mimetype.hint": "ଏହି ଫର୍ମାଟ୍ ସହିତ ସଂଯୁକ୍ତ MIME ପ୍ରକାର, ଅନନ୍ୟ ହେବା ଆବଶ୍ୟକ ନୁହେଁ।", - "admin.registries.bitstream-formats.edit.mimetype.label": "MIME ପ୍ରକାର", - "admin.registries.bitstream-formats.edit.shortDescription.hint": "ଏହି ଫର୍ମାଟ୍ ପାଇଁ ଏକ ଅନନ୍ୟ ନାମ (ଉଦାହରଣ ସ୍ୱରୂପ \"Microsoft Word XP\" କିମ୍ବା \"Microsoft Word 2000\")", - "admin.registries.bitstream-formats.edit.shortDescription.label": "ନାମ", - "admin.registries.bitstream-formats.edit.success.content": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସଫଳତାର ସହିତ ସଂପାଦିତ ହୋଇଛି।", - "admin.registries.bitstream-formats.edit.success.head": "ସଫଳତା", - "admin.registries.bitstream-formats.edit.supportLevel.hint": "ଆପଣଙ୍କ ଅନୁଷ୍ଠାନ ଏହି ଫର୍ମାଟ୍ ପାଇଁ ପ୍ରତିଶ୍ରୁତି ଦେଇଥିବା ସମର୍ଥନ ସ୍ତର।", - "admin.registries.bitstream-formats.edit.supportLevel.label": "ସମର୍ଥନ ସ୍ତର", - "admin.registries.bitstream-formats.head": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ରେଜିଷ୍ଟ୍ରି", - "admin.registries.bitstream-formats.no-items": "ଦେଖାଇବା ପାଇଁ କୌଣସି ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ନାହିଁ।", - "admin.registries.bitstream-formats.table.delete": "ଚୟନିତ ବିଲୋପ କରନ୍ତୁ", - "admin.registries.bitstream-formats.table.deselect-all": "ସମସ୍ତ ଚୟନ ରଦ୍ଦ କରନ୍ତୁ", - "admin.registries.bitstream-formats.table.internal": "ଆନ୍ତରିକ", - "admin.registries.bitstream-formats.table.mimetype": "MIME ପ୍ରକାର", - "admin.registries.bitstream-formats.table.name": "ନାମ", - "admin.registries.bitstream-formats.table.selected": "ଚୟନିତ ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍", - "admin.registries.bitstream-formats.table.id": "ID", - "admin.registries.bitstream-formats.table.return": "ପଛକୁ", - "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "ଜ୍ଞାତ", - "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "ସମର୍ଥିତ", - "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "ଅଜ୍ଞାତ", - "admin.registries.bitstream-formats.table.supportLevel.head": "ସମର୍ଥନ ସ୍ତର", - "admin.registries.bitstream-formats.title": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ରେଜିଷ୍ଟ୍ରି", - "admin.registries.bitstream-formats.select": "ଚୟନ କରନ୍ତୁ", - "admin.registries.bitstream-formats.deselect": "ଚୟନ ରଦ୍ଦ କରନ୍ତୁ", - "admin.registries.metadata.breadcrumbs": "ମେଟାଡାଟା ରେଜିଷ୍ଟ୍ରି", - "admin.registries.metadata.description": "ମେଟାଡାଟା ରେଜିଷ୍ଟ୍ରି ରେପୋଜିଟରୀରେ ଉପଲବ୍ଧ ସମସ୍ତ ମେଟାଡାଟା କ୍ଷେତ୍ରର ଏକ ତାଲିକା ରଖିଥାଏ। ଏହି କ୍ଷେତ୍ରଗୁଡିକୁ ଏକାଧିକ ସ୍କିମା ମଧ୍ୟରେ ବିଭକ୍ତ କରାଯାଇପାରେ। ତଥାପି, DSpace ପାଇଁ ଯୋଗ୍ୟ ଡବ୍ଲିନ୍ କୋର୍ ସ୍କିମା ଆବଶ୍ୟକ।", - "admin.registries.metadata.form.create": "ମେଟାଡାଟା ସ୍କିମା ସୃଷ୍ଟି କରନ୍ତୁ", - "admin.registries.metadata.form.edit": "ମେଟାଡାଟା ସ୍କିମା ସଂପାଦନ କରନ୍ତୁ", - "admin.registries.metadata.form.name": "ନାମ", - "admin.registries.metadata.form.namespace": "ନେମସ୍ପେସ୍", - "admin.registries.metadata.head": "ମେଟାଡାଟା ରେଜିଷ୍ଟ୍ରି", - "admin.registries.metadata.schemas.no-items": "ଦେଖାଇବା ପାଇଁ କୌଣସି ମେଟାଡାଟା ସ୍କିମା ନାହିଁ।", - "admin.registries.metadata.schemas.select": "ଚୟନ କରନ୍ତୁ", - "admin.registries.metadata.schemas.deselect": "ଚୟନ ରଦ୍ଦ କରନ୍ତୁ", - "admin.registries.metadata.schemas.table.delete": "ଚୟନିତ ବିଲୋପ କରନ୍ତୁ", - "admin.registries.metadata.schemas.table.selected": "ଚୟନିତ ସ୍କିମା", - "admin.registries.metadata.schemas.table.id": "ID", - "admin.registries.metadata.schemas.table.name": "ନାମ", - "admin.registries.metadata.schemas.table.namespace": "ନେମସ୍ପେସ୍", - "admin.registries.metadata.title": "ମେଟାଡାଟା ରେଜିଷ୍ଟ୍ରି", - "admin.registries.schema.breadcrumbs": "ମେଟାଡାଟା ସ୍କିମା", - "admin.registries.schema.description": "ଏହା \"{{namespace}}\" ପାଇଁ ମେଟାଡାଟା ସ୍କିମା।", - "admin.registries.schema.fields.select": "ଚୟନ କରନ୍ତୁ", - "admin.registries.schema.fields.deselect": "ଚୟନ ରଦ୍ଦ କରନ୍ତୁ", - "admin.registries.schema.fields.head": "ସ୍କିମା ମେଟାଡାଟା କ୍ଷେତ୍ର", - "admin.registries.schema.fields.no-items": "ଦେଖାଇବା ପାଇଁ କୌଣସି ମେଟାଡାଟା କ୍ଷେତ୍ର ନାହିଁ।", - "admin.registries.schema.fields.table.delete": "ଚୟନିତ ବିଲୋପ କରନ୍ତୁ", - "admin.registries.schema.fields.table.field": "କ୍ଷେତ୍ର", - "admin.registries.schema.fields.table.selected": "ଚୟନିତ ମେଟାଡାଟା କ୍ଷେତ୍ର", - "admin.registries.schema.fields.table.id": "ID", - "admin.registries.schema.fields.table.scopenote": "ସ୍କୋପ୍ ନୋଟ୍", - "admin.registries.schema.form.create": "ମେଟାଡାଟା କ୍ଷେତ୍ର ସୃଷ୍ଟି କରନ୍ତୁ", - "admin.registries.schema.form.edit": "ମେଟାଡାଟା କ୍ଷେତ୍ର ସଂପାଦନ କରନ୍ତୁ", - "admin.registries.schema.form.element": "ଏଲିମେଣ୍ଟ୍", - "admin.registries.schema.form.qualifier": "କ୍ୱାଲିଫାୟର୍", - "admin.registries.schema.form.scopenote": "ସ୍କୋପ୍ ନୋଟ୍", - "admin.registries.schema.head": "ମେଟାଡାଟା ସ୍କିମା", - "admin.registries.schema.notification.created": "ମେଟାଡାଟା ସ୍କିମା \"{{prefix}}\" ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", - "admin.registries.schema.notification.deleted.failure": "{{amount}} ମେଟାଡାଟା ସ୍କିମା ବିଲୋପ କରିବାରେ ବିଫଳ", - "admin.registries.schema.notification.deleted.success": "{{amount}} ମେଟାଡାଟା ସ୍କିମା ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", - "admin.registries.schema.notification.edited": "ମେଟାଡାଟା ସ୍କିମା \"{{prefix}}\" ସଫଳତାର ସହିତ ସଂପାଦିତ ହୋଇଛି", - "admin.registries.schema.notification.failure": "ତ୍ରୁଟି", - "admin.registries.schema.notification.field.created": "ମେଟାଡାଟା କ୍ଷେତ୍ର \"{{field}}\" ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", - "admin.registries.schema.notification.field.deleted.failure": "{{amount}} ମେଟାଡାଟା କ୍ଷେତ୍ର ବିଲୋପ କରିବାରେ ବିଫଳ", - "admin.registries.schema.notification.field.deleted.success": "{{amount}} ମେଟାଡାଟା କ୍ଷେତ୍ର ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", - "admin.registries.schema.notification.field.edited": "ମେଟାଡାଟା କ୍ଷେତ୍ର \"{{field}}\" ସଫଳତାର ସହିତ ସଂପାଦିତ ହୋଇଛି", - "admin.registries.schema.notification.success": "ସଫଳତା", - "admin.registries.schema.return": "ପଛକୁ", - "admin.registries.schema.title": "ମେଟାଡାଟା ସ୍କିମା ରେଜିଷ୍ଟ୍ରି", - "admin.access-control.bulk-access.breadcrumbs": "ବଲ୍କ୍ ଆକ୍ସେସ୍ ପରିଚାଳନା", - "administrativeBulkAccess.search.results.head": "ସନ୍ଧାନ ଫଳାଫଳ", - "admin.access-control.bulk-access": "ବଲ୍କ୍ ଆକ୍ସେସ୍ ପରିଚାଳନା", - "admin.access-control.bulk-access.title": "ବଲ୍କ୍ ଆକ୍ସେସ୍ ପରିଚାଳନା", - "admin.access-control.bulk-access-browse.header": "ପଦକ୍ଷେପ 1: ବସ୍ତୁ ଚୟନ କରନ୍ତୁ", - "admin.access-control.bulk-access-browse.search.header": "ସନ୍ଧାନ", - "admin.access-control.bulk-access-browse.selected.header": "ବର୍ତ୍ତମାନର ଚୟନ ({{number}})", - "admin.access-control.bulk-access-settings.header": "ପଦକ୍ଷେପ 2: କରିବାକୁ ପରିଚାଳନା", - "admin.access-control.epeople.actions.delete": "EPerson ବିଲୋପ କରନ୍ତୁ", - "admin.access-control.epeople.actions.impersonate": "EPerson ଭାବରେ ଅଭିନୟ କରନ୍ତୁ", - "admin.access-control.epeople.actions.reset": "ପାସୱାର୍ଡ ପୁନଃସେଟ୍ କରନ୍ତୁ", - "admin.access-control.epeople.actions.stop-impersonating": "EPerson ଭାବରେ ଅଭିନୟ ବନ୍ଦ କରନ୍ତୁ", - "admin.access-control.epeople.breadcrumbs": "EPeople", - "admin.access-control.epeople.title": "EPeople", - "admin.access-control.epeople.edit.breadcrumbs": "ନୂତନ EPerson", - "admin.access-control.epeople.edit.title": "ନୂତନ EPerson", - "admin.access-control.epeople.add.breadcrumbs": "EPerson ଯୋଡନ୍ତୁ", - "admin.access-control.epeople.add.title": "EPerson ଯୋଡନ୍ତୁ", - "admin.access-control.epeople.head": "EPeople", - "admin.access-control.epeople.search.head": "ସନ୍ଧାନ", - "admin.access-control.epeople.button.see-all": "ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ", - "admin.access-control.epeople.search.scope.metadata": "ମେଟାଡାଟା", - "admin.access-control.epeople.search.scope.email": "ଇମେଲ୍ (ଠିକ୍)", - "admin.access-control.epeople.search.button": "ସନ୍ଧାନ", - "admin.access-control.epeople.search.placeholder": "ଲୋକଙ୍କୁ ସନ୍ଧାନ କରନ୍ତୁ...", - "admin.access-control.epeople.button.add": "EPerson ଯୋଡନ୍ତୁ", - "admin.access-control.epeople.table.id": "ID", - "admin.access-control.epeople.table.name": "ନାମ", - "admin.access-control.epeople.table.email": "ଇମେଲ୍ (ଠିକ୍)", - "admin.access-control.epeople.table.edit": "ସଂପାଦନ", - "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" ସଂପାଦନ କରନ୍ତୁ", - "admin.access-control.epeople.table.edit.buttons.edit-disabled": "ଆପଣଙ୍କର ଏହି ଗୋଷ୍ଠୀ ସଂପାଦନ କରିବାର ଅନୁମତି ନାହିଁ", - "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" ବିଲୋପ କରନ୍ତୁ", - "admin.access-control.epeople.no-items": "ଦେଖାଇବା ପାଇଁ କୌଣସି EPeople ନାହିଁ।", - "admin.access-control.epeople.form.create": "EPerson ସୃଷ୍ଟି କରନ୍ତୁ", - "admin.access-control.epeople.form.edit": "EPerson ସଂପାଦନ କରନ୍ତୁ", - "admin.access-control.epeople.form.firstName": "ପ୍ରଥମ ନାମ", - "admin.access-control.epeople.form.lastName": "ଶେଷ ନାମ", - "admin.access-control.epeople.form.email": "ଇମେଲ୍", - "admin.access-control.epeople.form.emailHint": "ଏକ ବୈଧ ଇମେଲ୍ ଠିକଣା ହେବା ଆବଶ୍ୟକ", - "admin.access-control.epeople.form.canLogIn": "ଲଗ୍ ଇନ୍ କରିପାରିବେ", - "admin.access-control.epeople.form.requireCertificate": "ସାର୍ଟିଫିକେଟ୍ ଆବଶ୍ୟକ", - "admin.access-control.epeople.form.return": "ପଛକୁ", - "admin.access-control.epeople.form.notification.created.success": "EPerson \"{{name}}\" ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", - "admin.access-control.epeople.form.notification.created.failure": "EPerson \"{{name}}\" ସୃଷ୍ଟି କରିବାରେ ବିଫଳ", - "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson \"{{name}}\" ସୃଷ୍ଟି କରିବାରେ ବିଫଳ, ଇମେଲ୍ \"{{email}}\" ପୂର୍ବରୁ ବ୍ୟବହୃତ ହୋଇଛି।", - "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson \"{{name}}\" ସଂପାଦନ କରିବାରେ ବିଫଳ, ଇମେଲ୍ \"{{email}}\" ପୂର୍ବରୁ ବ୍ୟବହୃତ ହୋଇଛି।", - "admin.access-control.epeople.form.notification.edited.success": "EPerson \"{{name}}\" ସଫଳତାର ସହିତ ସଂପାଦିତ ହୋଇଛି", - "admin.access-control.epeople.form.notification.edited.failure": "EPerson \"{{name}}\" ସଂପାଦନ କରିବାରେ ବିଫଳ", - "admin.access-control.epeople.form.notification.deleted.success": "EPerson \"{{name}}\" ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", - "admin.access-control.epeople.form.notification.deleted.failure": "EPerson \"{{name}}\" ବିଲୋପ କରିବାରେ ବିଫଳ", - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "ଏହି ଗୋଷ୍ଠୀଗୁଡିକର ସଦସ୍ୟ:", - "admin.access-control.epeople.form.table.id": "ID", - "admin.access-control.epeople.form.table.name": "ନାମ", - "admin.access-control.epeople.form.table.collectionOrCommunity": "ସଂଗ୍ରହ/ସମ୍ପ୍ରଦାୟ", - "admin.access-control.epeople.form.memberOfNoGroups": "ଏହି EPerson କୌଣସି ଗୋଷ୍ଠୀର ସଦସ୍ୟ ନୁହେଁ", - "admin.access-control.epeople.form.goToGroups": "ଗୋଷ୍ଠୀଗୁଡିକୁ ଯୋଡନ୍ତୁ", - "admin.access-control.epeople.notification.deleted.failure": "EPerson \"{{id}}\" ବିଲୋପ କରିବାରେ ତ୍ରୁଟି ଘଟିଲା, କୋଡ୍: \"{{statusCode}}\" ଏବଂ ସନ୍ଦେଶ: \"{{restResponse.errorMessage}}\"", - "admin.access-control.epeople.notification.deleted.success": "EPerson \"{{name}}\" ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", - "admin.access-control.groups.title": "ଗୋଷ୍ଠୀ", - "admin.access-control.groups.breadcrumbs": "ଗୋଷ୍ଠୀ", - "admin.access-control.groups.singleGroup.breadcrumbs": "ଗୋଷ୍ଠୀ ସଂପାଦନ କରନ୍ତୁ", - "admin.access-control.groups.title.singleGroup": "ଗୋଷ୍ଠୀ ସଂପାଦନ କରନ୍ତୁ", - "admin.access-control.groups.title.addGroup": "ନୂତନ ଗୋଷ୍ଠୀ", - "admin.access-control.groups.addGroup.breadcrumbs": "ନୂତନ ଗୋଷ୍ଠୀ", - "admin.access-control.groups.head": "ଗୋଷ୍ଠୀ", - "admin.access-control.groups.button.add": "ଗୋଷ୍ଠୀ ଯୋଡନ୍ତୁ", - "admin.access-control.groups.search.head": "ଗୋଷ୍ଠୀ ସନ୍ଧାନ କରନ୍ତୁ", - "admin.access-control.groups.button.see-all": "ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ", - "admin.access-control.groups.search.button": "ସନ୍ଧାନ", - - "admin.access-control.groups.search.placeholder": "ଗୋଷ୍ଠୀଗୁଡିକୁ ଖୋଜନ୍ତୁ...", - - "admin.access-control.groups.table.id": "ଆଇଡି", - - "admin.access-control.groups.table.name": "ନାମ", - - "admin.access-control.groups.table.collectionOrCommunity": "ସଂଗ୍ରହ/ସମ୍ପ୍ରଦାୟ", - - "admin.access-control.groups.table.members": "ସଦସ୍ୟଗଣ", - - "admin.access-control.groups.table.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", - - "admin.access-control.groups.table.edit.buttons.edit": "\"{{name}}\" କୁ ସମ୍ପାଦନ କରନ୍ତୁ", - - "admin.access-control.groups.table.edit.buttons.remove": "\"{{name}}\" କୁ ବିଲୋପ କରନ୍ତୁ", - - "admin.access-control.groups.no-items": "ଏହି ନାମ ବା UUID ସହିତ କୌଣସି ଗୋଷ୍ଠୀ ମିଳିଲା ନାହିଁ", - - "admin.access-control.groups.notification.deleted.success": "\"{{name}}\" ଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", - - "admin.access-control.groups.notification.deleted.failure.title": "\"{{name}}\" ଗୋଷ୍ଠୀ ବିଲୋପ କରିବାରେ ବିଫଳ ହେଲା", - - "admin.access-control.groups.notification.deleted.failure.content": "କାରଣ: \"{{cause}}\"", - - "admin.access-control.groups.form.alert.permanent": "ଏହି ଗୋଷ୍ଠୀ ସ୍ଥାୟୀ, ତେଣୁ ଏହାକୁ ସମ୍ପାଦନ କିମ୍ବା ବିଲୋପ କରାଯାଇପାରିବ ନାହିଁ। ଆପଣ ଏହି ପୃଷ୍ଠା ବ୍ୟବହାର କରି ଗୋଷ୍ଠୀ ସଦସ୍ୟମାନଙ୍କୁ ଯୋଡିବା ଏବଂ ଅପସାରଣ କରିପାରିବେ।", - - "admin.access-control.groups.form.alert.workflowGroup": "ଏହି ଗୋଷ୍ଠୀକୁ ପରିବର୍ତ୍ତନ କିମ୍ବା ବିଲୋପ କରାଯାଇପାରିବ ନାହିଁ କାରଣ ଏହା \"{{name}}\" {{comcol}} ରେ ଦାଖଲା ଏବଂ କାର୍ଯ୍ୟପ୍ରଣାଳୀ ପ୍ରକ୍ରିୟାରେ ଏକ ଭୂମିକା ସହିତ ସମ୍ବନ୍ଧିତ। ଆପଣ ଏହାକୁ \"ଭୂମିକା ନିର୍ଦ୍ଧାରଣ\" ଟ୍ୟାବରେ ସମ୍ପାଦନ {{comcol}} ପୃଷ୍ଠାରୁ ବିଲୋପ କରିପାରିବେ। ଆପଣ ଏହି ପୃଷ୍ଠା ବ୍ୟବହାର କରି ଗୋଷ୍ଠୀ ସଦସ୍ୟମାନଙ୍କୁ ଯୋଡିବା ଏବଂ ଅପସାରଣ କରିପାରିବେ।", - - "admin.access-control.groups.form.head.create": "ଗୋଷ୍ଠୀ ସୃଷ୍ଟି କରନ୍ତୁ", - - "admin.access-control.groups.form.head.edit": "ଗୋଷ୍ଠୀ ସମ୍ପାଦନ କରନ୍ତୁ", - - "admin.access-control.groups.form.groupName": "ଗୋଷ୍ଠୀର ନାମ", - - "admin.access-control.groups.form.groupCommunity": "ସମ୍ପ୍ରଦାୟ କିମ୍ବା ସଂଗ୍ରହ", - - "admin.access-control.groups.form.groupDescription": "ବର୍ଣ୍ଣନା", - - "admin.access-control.groups.form.notification.created.success": "\"{{name}}\" ଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", - - "admin.access-control.groups.form.notification.created.failure": "\"{{name}}\" ଗୋଷ୍ଠୀ ସୃଷ୍ଟି କରିବାରେ ବିଫଳ ହେଲା", - - "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "\"{{name}}\" ନାମ ସହିତ ଗୋଷ୍ଠୀ ସୃଷ୍ଟି କରିବାରେ ବିଫଳ ହେଲା, ନିଶ୍ଚିତ କରନ୍ତୁ ଯେ ନାମ ପୂର୍ବରୁ ବ୍ୟବହୃତ ହୋଇନାହିଁ।", - - "admin.access-control.groups.form.notification.edited.failure": "\"{{name}}\" ଗୋଷ୍ଠୀ ସମ୍ପାଦନ କରିବାରେ ବିଫଳ ହେଲା", - - "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "\"{{name}}\" ନାମ ପୂର୍ବରୁ ବ୍ୟବହୃତ ହୋଇଛି!", - - "admin.access-control.groups.form.notification.edited.success": "\"{{name}}\" ଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ସମ୍ପାଦିତ ହୋଇଛି", - - "admin.access-control.groups.form.actions.delete": "ଗୋଷ୍ଠୀ ବିଲୋପ କରନ୍ତୁ", - - "admin.access-control.groups.form.delete-group.modal.header": "\"{{ dsoName }}\" ଗୋଷ୍ଠୀ ବିଲୋପ କରନ୍ତୁ", - - "admin.access-control.groups.form.delete-group.modal.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ \"{{ dsoName }}\" ଗୋଷ୍ଠୀ ବିଲୋପ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", - - "admin.access-control.groups.form.delete-group.modal.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "admin.access-control.groups.form.delete-group.modal.confirm": "ବିଲୋପ କରନ୍ତୁ", - - "admin.access-control.groups.form.notification.deleted.success": "\"{{ name }}\" ଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", - - "admin.access-control.groups.form.notification.deleted.failure.title": "\"{{ name }}\" ଗୋଷ୍ଠୀ ବିଲୋପ କରିବାରେ ବିଫଳ ହେଲା", - - "admin.access-control.groups.form.notification.deleted.failure.content": "କାରଣ: \"{{ cause }}\"", - - "admin.access-control.groups.form.members-list.head": "ଇ-ଲୋକ", - - "admin.access-control.groups.form.members-list.search.head": "ଇ-ଲୋକ ଯୋଡନ୍ତୁ", - - "admin.access-control.groups.form.members-list.button.see-all": "ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "admin.access-control.groups.form.members-list.headMembers": "ବର୍ତ୍ତମାନର ସଦସ୍ୟଗଣ", - - "admin.access-control.groups.form.members-list.search.button": "ଖୋଜନ୍ତୁ", - - "admin.access-control.groups.form.members-list.table.id": "ଆଇଡି", - - "admin.access-control.groups.form.members-list.table.name": "ନାମ", - - "admin.access-control.groups.form.members-list.table.identity": "ପରିଚୟ", - - "admin.access-control.groups.form.members-list.table.email": "ଇମେଲ୍", - - "admin.access-control.groups.form.members-list.table.netid": "ନେଟଆଇଡି", - - "admin.access-control.groups.form.members-list.table.edit": "ଅପସାରଣ / ଯୋଡନ୍ତୁ", - - "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "\"{{name}}\" ନାମ ସହିତ ସଦସ୍ୟ ଅପସାରଣ କରନ୍ତୁ", - - "admin.access-control.groups.form.members-list.notification.success.addMember": "\"{{name}}\" ସଦସ୍ୟ ସଫଳତାର ସହିତ ଯୋଡାଗଲା", - - "admin.access-control.groups.form.members-list.notification.failure.addMember": "\"{{name}}\" ସଦସ୍ୟ ଯୋଡିବାରେ ବିଫଳ ହେଲା", - - "admin.access-control.groups.form.members-list.notification.success.deleteMember": "\"{{name}}\" ସଦସ୍ୟ ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", - - "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "\"{{name}}\" ସଦସ୍ୟ ବିଲୋପ କରିବାରେ ବିଫଳ ହେଲା", - - "admin.access-control.groups.form.members-list.table.edit.buttons.add": "\"{{name}}\" ନାମ ସହିତ ସଦସ୍ୟ ଯୋଡନ୍ତୁ", - - "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "ବର୍ତ୍ତମାନ କୌଣସି ସକ୍ରିୟ ଗୋଷ୍ଠୀ ନାହିଁ, ପ୍ରଥମେ ଏକ ନାମ ଦାଖଲ କରନ୍ତୁ।", - - "admin.access-control.groups.form.members-list.no-members-yet": "ଗୋଷ୍ଠୀରେ ବର୍ତ୍ତମାନ କୌଣସି ସଦସ୍ୟ ନାହିଁ, ଖୋଜନ୍ତୁ ଏବଂ ଯୋଡନ୍ତୁ।", - - "admin.access-control.groups.form.members-list.no-items": "ସେହି ଖୋଜରେ କୌଣସି ଇ-ଲୋକ ମିଳିଲା ନାହିଁ", - - "admin.access-control.groups.form.subgroups-list.notification.failure": "କିଛି ଭୁଲ୍ ହୋଇଛି: \"{{cause}}\"", - - "admin.access-control.groups.form.subgroups-list.head": "ଗୋଷ୍ଠୀଗୁଡିକ", - - "admin.access-control.groups.form.subgroups-list.search.head": "ଉପଗୋଷ୍ଠୀ ଯୋଡନ୍ତୁ", - - "admin.access-control.groups.form.subgroups-list.button.see-all": "ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "admin.access-control.groups.form.subgroups-list.headSubgroups": "ବର୍ତ୍ତମାନର ଉପଗୋଷ୍ଠୀଗୁଡିକ", - - "admin.access-control.groups.form.subgroups-list.search.button": "ଖୋଜନ୍ତୁ", - - "admin.access-control.groups.form.subgroups-list.table.id": "ଆଇଡି", - - "admin.access-control.groups.form.subgroups-list.table.name": "ନାମ", - - "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "ସଂଗ୍ରହ/ସମ୍ପ୍ରଦାୟ", - - "admin.access-control.groups.form.subgroups-list.table.edit": "ଅପସାରଣ / ଯୋଡନ୍ତୁ", - - "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "\"{{name}}\" ନାମ ସହିତ ଉପଗୋଷ୍ଠୀ ଅପସାରଣ କରନ୍ତୁ", - - "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "\"{{name}}\" ନାମ ସହିତ ଉପଗୋଷ୍ଠୀ ଯୋଡନ୍ତୁ", - - "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "\"{{name}}\" ଉପଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ଯୋଡାଗଲା", - - "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "\"{{name}}\" ଉପଗୋଷ୍ଠୀ ଯୋଡିବାରେ ବିଫଳ ହେଲା", - - "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "\"{{name}}\" ଉପଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", - - "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "\"{{name}}\" ଉପଗୋଷ୍ଠୀ ବିଲୋପ କରିବାରେ ବିଫଳ ହେଲା", - - "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "ବର୍ତ୍ତମାନ କୌଣସି ସକ୍ରିୟ ଗୋଷ୍ଠୀ ନାହିଁ, ପ୍ରଥମେ ଏକ ନାମ ଦାଖଲ କରନ୍ତୁ।", - - "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "ଏହା ବର୍ତ୍ତମାନର ଗୋଷ୍ଠୀ, ଯୋଡାଯାଇପାରିବ ନାହିଁ।", - - "admin.access-control.groups.form.subgroups-list.no-items": "ଏହି ନାମ ବା UUID ସହିତ କୌଣସି ଗୋଷ୍ଠୀ ମିଳିଲା ନାହିଁ", - - "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "ଗୋଷ୍ଠୀରେ ବର୍ତ୍ତମାନ କୌଣସି ଉପଗୋଷ୍ଠୀ ନାହିଁ।", - - "admin.access-control.groups.form.return": "ପଛକୁ", - - "admin.quality-assurance.breadcrumbs": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ", - - "admin.notifications.event.breadcrumbs": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ ସୁଚନା", - - "admin.notifications.event.page.title": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ ସୁଚନା", - - "admin.quality-assurance.page.title": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ", - - "admin.notifications.source.breadcrumbs": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ", - - "admin.access-control.groups.form.tooltip.editGroupPage": "ଏହି ପୃଷ୍ଠାରେ, ଆପଣ ଏକ ଗୋଷ୍ଠୀର ଗୁଣଧର୍ମ ଏବଂ ସଦସ୍ୟମାନଙ୍କୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ। ଉପର ବିଭାଗରେ, ଆପଣ ଗୋଷ୍ଠୀର ନାମ ଏବଂ ବର୍ଣ୍ଣନା ସମ୍ପାଦନ କରିପାରିବେ, ଯଦି ଏହା ଏକ ସଂଗ୍ରହ କିମ୍ବା ସମ୍ପ୍ରଦାୟ ପାଇଁ ଏକ ପ୍ରଶାସନିକ ଗୋଷ୍ଠୀ ନୁହେଁ, ଯେଉଁଠାରେ ଗୋଷ୍ଠୀର ନାମ ଏବଂ ବର୍ଣ୍ଣନା ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଉତ୍ପାଦିତ ହୁଏ ଏବଂ ସମ୍ପାଦନ କରାଯାଇପାରିବ ନାହିଁ। ନିମ୍ନଲିଖିତ ବିଭାଗଗୁଡିକରେ, ଆପଣ ଗୋଷ୍ଠୀ ସଦସ୍ୟତା ସମ୍ପାଦନ କରିପାରିବେ। ଅଧିକ ବିବରଣୀ ପାଇଁ [ୱିକି](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) ଦେଖନ୍ତୁ।", - - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "ଏହି ଗୋଷ୍ଠୀରେ/ରୁ ଏକ ଇ-ଲୋକ ଯୋଡିବା/ଅପସାରଣ କରିବା ପାଇଁ, କିମ୍ବା 'ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ କିମ୍ବା ନିମ୍ନରେ ଥିବା ସନ୍ଧାନ ବାର୍ ବ୍ୟବହାର କରି ଉପଭୋକ୍ତାମାନଙ୍କୁ ଖୋଜନ୍ତୁ (ସନ୍ଧାନ ବାର୍ ବାମରେ ଥିବା ଡ୍ରପଡାଉନ୍ ବ୍ୟବହାର କରି ମେଟାଡାଟା କିମ୍ବା ଇମେଲ୍ ଦ୍ୱାରା ଖୋଜିବାକୁ ଚୟନ କରନ୍ତୁ)। ତା’ପରେ ନିମ୍ନରେ ଥିବା ତାଲିକାରେ ପ୍ରତ୍ୟେକ ଉପଭୋକ୍ତା ପାଇଁ ପ୍ଲସ୍ ଆଇକନ୍ କ୍ଲିକ୍ କରନ୍ତୁ ଯାହାକୁ ଆପଣ ଯୋଡିବାକୁ ଚାହୁଁଛନ୍ତି, କିମ୍ବା ପ୍ରତ୍ୟେକ ଉପଭୋକ୍ତା ପାଇଁ ଟ୍ରାସ୍ କ୍ୟାନ୍ ଆଇକନ୍ କ୍ଲିକ୍ କରନ୍ତୁ ଯାହାକୁ ଆପଣ ଅପସାରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି। ନିମ୍ନରେ ଥିବା ତାଲିକାରେ ଅନେକ ପୃଷ୍ଠା ରହିପାରେ: ପରବର୍ତ୍ତୀ ପୃଷ୍ଠାଗୁଡିକୁ ନେଭିଗେଟ୍ କରିବାକୁ ତଳେ ଥିବା ପୃଷ୍ଠା ନିୟନ୍ତ୍ରଣଗୁଡିକ ବ୍ୟବହାର କରନ୍ତୁ।", - - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "ଏହି ଗୋଷ୍ଠୀରେ/ରୁ ଏକ ଉପଗୋଷ୍ଠୀ ଯୋଡିବା/ଅପସାରଣ କରିବା ପାଇଁ, କିମ୍ବା 'ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ କିମ୍ବା ନିମ୍ନରେ ଥିବା ସନ୍ଧାନ ବାର୍ ବ୍ୟବହାର କରି ଗୋଷ୍ଠୀଗୁଡିକୁ ଖୋଜନ୍ତୁ। ତା’ପରେ ନିମ୍ନରେ ଥିବା ତାଲିକାରେ ପ୍ରତ୍ୟେକ ଗୋଷ୍ଠୀ ପାଇଁ ପ୍ଲସ୍ ଆଇକନ୍ କ୍ଲିକ୍ କରନ୍ତୁ ଯାହାକୁ ଆପଣ ଯୋଡିବାକୁ ଚାହୁଁଛନ୍ତି, କିମ୍ବା ପ୍ରତ୍ୟେକ ଗୋଷ୍ଠୀ ପାଇଁ ଟ୍ରାସ୍ କ୍ୟାନ୍ ଆଇକନ୍ କ୍ଲିକ୍ କରନ୍ତୁ ଯାହାକୁ ଆପଣ ଅପସାରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି। ନିମ୍ନରେ ଥିବା ତାଲିକାରେ ଅନେକ ପୃଷ୍ଠା ରହିପାରେ: ପରବର୍ତ୍ତୀ ପୃଷ୍ଠାଗୁଡିକୁ ନେଭିଗେଟ୍ କରିବାକୁ ତଳେ ଥିବା ପୃଷ୍ଠା ନିୟନ୍ତ୍ରଣଗୁଡିକ ବ୍ୟବହାର କରନ୍ତୁ।", - - "admin.reports.collections.title": "ସଂଗ୍ରହ ଫିଲ୍ଟର୍ ରିପୋର୍ଟ", - - "admin.reports.collections.breadcrumbs": "ସଂଗ୍ରହ ଫିଲ୍ଟର୍ ରିପୋର୍ଟ", - - "admin.reports.collections.head": "ସଂଗ୍ରହ ଫିଲ୍ଟର୍ ରିପୋର୍ଟ", - - "admin.reports.button.show-collections": "ସଂଗ୍ରହଗୁଡିକ ଦେଖାନ୍ତୁ", - - "admin.reports.collections.collections-report": "ସଂଗ୍ରହ ରିପୋର୍ଟ", - - "admin.reports.collections.item-results": "ଆଇଟମ୍ ଫଳାଫଳ", - - "admin.reports.collections.community": "ସମ୍ପ୍ରଦାୟ", - - "admin.reports.collections.collection": "ସଂଗ୍ରହ", - - "admin.reports.collections.nb_items": "ଆଇଟମ୍ ସଂଖ୍ୟା", - - "admin.reports.collections.match_all_selected_filters": "ସମସ୍ତ ଚୟନିତ ଫିଲ୍ଟର୍ ସହିତ ମେଳ ଖାଉଛି", - - "admin.reports.items.breadcrumbs": "ମେଟାଡାଟା କ୍ୱେରି ରିପୋର୍ଟ", - - "admin.reports.items.head": "ମେଟାଡାଟା କ୍ୱେରି ରିପୋର୍ଟ", - - "admin.reports.items.run": "ଆଇଟମ୍ କ୍ୱେରି ଚଲାନ୍ତୁ", - - "admin.reports.items.section.collectionSelector": "ସଂଗ୍ରହ ଚୟନକାରୀ", - - "admin.reports.items.section.metadataFieldQueries": "ମେଟାଡାଟା ଫିଲ୍ଡ୍ କ୍ୱେରିଗୁଡିକ", - - "admin.reports.items.predefinedQueries": "ପୂର୍ବନିର୍ଦ୍ଧାରିତ କ୍ୱେରିଗୁଡିକ", - - "admin.reports.items.section.limitPaginateQueries": "ସୀମା/ପୃଷ୍ଠାକରଣ କ୍ୱେରିଗୁଡିକ", - - "admin.reports.items.limit": "ସୀମା/", - - "admin.reports.items.offset": "ଅଫସେଟ୍", - - "admin.reports.items.wholeRepo": "ସମ୍ପୂର୍ଣ୍ଣ ଭଣ୍ଡାର", - - "admin.reports.items.anyField": "କୌଣସି ଫିଲ୍ଡ୍", - - "admin.reports.items.predicate.exists": "ଅଛି", - - "admin.reports.items.predicate.doesNotExist": "ନାହିଁ", - - "admin.reports.items.predicate.equals": "ସମାନ", - - "admin.reports.items.predicate.doesNotEqual": "ସମାନ ନୁହେଁ", - - "admin.reports.items.predicate.like": "ପରି", - - "admin.reports.items.predicate.notLike": "ପରି ନୁହେଁ", - - "admin.reports.items.predicate.contains": "ଧାରଣ କରେ", - - "admin.reports.items.predicate.doesNotContain": "ଧାରଣ କରେ ନାହିଁ", - - "admin.reports.items.predicate.matches": "ମେଳ ଖାଏ", - - "admin.reports.items.predicate.doesNotMatch": "ମେଳ ଖାଏ ନାହିଁ", - - "admin.reports.items.preset.new": "ନୂତନ କ୍ୱେରି", - - "admin.reports.items.preset.hasNoTitle": "କୌଣସି ଶୀର୍ଷକ ନାହିଁ", - - "admin.reports.items.preset.hasNoIdentifierUri": "dc.identifier.uri ନାହିଁ", - - "admin.reports.items.preset.hasCompoundSubject": "ଯୌଗିକ ବିଷୟ ଅଛି", - - "admin.reports.items.preset.hasCompoundAuthor": "ଯୌଗିକ dc.contributor.author ଅଛି", - - "admin.reports.items.preset.hasCompoundCreator": "ଯୌଗିକ dc.creator ଅଛି", - - "admin.reports.items.preset.hasUrlInDescription": "dc.description ରେ URL ଅଛି", - - "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance ରେ ସମ୍ପୂର୍ଣ୍ଣ ପାଠ୍ୟ ଅଛି", - - "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance ରେ ସମ୍ପୂର୍ଣ୍ଣ ପାଠ୍ୟ ନାହିଁ", - - "admin.reports.items.preset.hasEmptyMetadata": "ଖାଲି ମେଟାଡାଟା ଅଛି", - - "admin.reports.items.preset.hasUnbreakingDataInDescription": "ବର୍ଣ୍ଣନାରେ ଅବିଚ୍ଛିନ୍ନ ମେଟାଡାଟା ଅଛି", - - "admin.reports.items.preset.hasXmlEntityInMetadata": "ମେଟାଡାଟାରେ XML ଏଣ୍ଟିଟି ଅଛି", - - "admin.reports.items.preset.hasNonAsciiCharInMetadata": "ମେଟାଡାଟାରେ ନନ୍-ASCII ଅକ୍ଷର ଅଛି", - - "admin.reports.items.number": "ନଂ.", - - "admin.reports.items.id": "UUID", - - "admin.reports.items.collection": "ସଂଗ୍ରହ", - - "admin.reports.items.handle": "URI", - - "admin.reports.items.title": "ଶୀର୍ଷକ", - - "admin.reports.commons.filters": "ଫିଲ୍ଟର୍‌ଗୁଡିକ", - - "admin.reports.commons.additional-data": "ଫେରସ୍ତ କରିବାକୁ ଅତିରିକ୍ତ ତଥ୍ୟ", - - "admin.reports.commons.previous-page": "ପୂର୍ବ ପୃଷ୍ଠା", - - "admin.reports.commons.next-page": "ପରବର୍ତ୍ତୀ ପୃଷ୍ଠା", - - "admin.reports.commons.page": "ପୃଷ୍ଠା", - - "admin.reports.commons.of": "ର", - - "admin.reports.commons.export": "ମେଟାଡାଟା ଅପଡେଟ୍ ପାଇଁ ରପ୍ତାନି କରନ୍ତୁ", - - "admin.reports.commons.filters.deselect_all": "ସମସ୍ତ ଫିଲ୍ଟର୍‌ଗୁଡିକୁ ଅଚୟନ କରନ୍ତୁ", - - "admin.reports.commons.filters.select_all": "ସମସ୍ତ ଫିଲ୍ଟର୍‌ଗୁଡିକୁ ଚୟନ କରନ୍ତୁ", - - "admin.reports.commons.filters.matches_all": "ନିର୍ଦ୍ଦିଷ୍ଟ ସମସ୍ତ ଫିଲ୍ଟର୍‌ଗୁଡିକ ସହିତ ମେଳ ଖାଏ", - - "admin.reports.commons.filters.property": "ଆଇଟମ୍ ଗୁଣଧର୍ମ ଫିଲ୍ଟର୍‌ଗୁଡିକ", - - "admin.reports.commons.filters.property.is_item": "ଆଇଟମ୍ - ସର୍ବଦା ସତ୍ୟ", - - "admin.reports.commons.filters.property.is_withdrawn": "ପ୍ରତ୍ୟାହୃତ ଆଇଟମ୍‌ଗୁଡିକ", - - "admin.reports.commons.filters.property.is_not_withdrawn": "ଉପଲବ୍ଧ ଆଇଟମ୍‌ଗୁଡିକ - ପ୍ରତ୍ୟାହୃତ ନୁହେଁ", - - "admin.reports.commons.filters.property.is_discoverable": "ଆବିଷ୍କାରଯୋଗ୍ୟ ଆଇଟମ୍‌ଗୁଡିକ - ବ୍ୟକ୍ତିଗତ ନୁହେଁ", - - "admin.reports.commons.filters.property.is_not_discoverable": "ଆବିଷ୍କାରଯୋଗ୍ୟ ନୁହେଁ - ବ୍ୟକ୍ତିଗତ ଆଇଟମ୍", - - "admin.reports.commons.filters.bitstream": "ମୌଳିକ ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫିଲ୍ଟର୍‌ଗୁଡିକ", - - "admin.reports.commons.filters.bitstream.has_multiple_originals": "ଆଇଟମରେ ଏକାଧିକ ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - "admin.reports.commons.filters.bitstream.has_no_originals": "ଆଇଟମରେ କୌଣସି ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ନାହିଁ", - "admin.reports.commons.filters.bitstream.has_one_original": "ଆଇଟମରେ ଗୋଟିଏ ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - "admin.reports.commons.filters.bitstream_mime": "MIME ପ୍ରକାର ଦ୍ୱାରା ବିଟଷ୍ଟ୍ରିମ୍ ଫିଲ୍ଟର୍", - "admin.reports.commons.filters.bitstream_mime.has_doc_original": "ଆଇଟମରେ ଏକ ଡକ୍ ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି (PDF, ଅଫିସ୍, ଟେକ୍ସଟ୍, HTML, XML, ଇତ୍ୟାଦି)", - "admin.reports.commons.filters.bitstream_mime.has_image_original": "ଆଇଟମରେ ଏକ ପ୍ରତିଛବି ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "ଅନ୍ୟ ବିଟଷ୍ଟ୍ରିମ୍ ପ୍ରକାର ଅଛି (ଡକ୍ କିମ୍ବା ପ୍ରତିଛବି ନୁହେଁ)", - "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "ଆଇଟମରେ ଏକାଧିକ ପ୍ରକାରର ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି (ଡକ୍, ପ୍ରତିଛବି, ଅନ୍ୟ)", - "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "ଆଇଟମରେ ଏକ PDF ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "ଆଇଟମରେ JPG ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "ଅସାଧାରଣ ଛୋଟ PDF ଅଛି", - "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "ଅସାଧାରଣ ବଡ଼ PDF ଅଛି", - "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "ଟେକ୍ସଟ୍ ଆଇଟମ ବିନା ଡକ୍ୟୁମେଣ୍ଟ୍ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - "admin.reports.commons.filters.mime": "ସମର୍ଥିତ MIME ପ୍ରକାର ଫିଲ୍ଟର୍", - "admin.reports.commons.filters.mime.has_only_supp_image_type": "ଆଇଟମ ପ୍ରତିଛବି ବିଟଷ୍ଟ୍ରିମ୍ ସମର୍ଥିତ", - "admin.reports.commons.filters.mime.has_unsupp_image_type": "ଆଇଟମରେ ଅସମର୍ଥିତ ପ୍ରତିଛବି ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - "admin.reports.commons.filters.mime.has_only_supp_doc_type": "ଆଇଟମ ଡକ୍ୟୁମେଣ୍ଟ୍ ବିଟଷ୍ଟ୍ରିମ୍ ସମର୍ଥିତ", - "admin.reports.commons.filters.mime.has_unsupp_doc_type": "ଆଇଟମରେ ଅସମର୍ଥିତ ଡକ୍ୟୁମେଣ୍ଟ୍ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - "admin.reports.commons.filters.bundle": "ବିଟଷ୍ଟ୍ରିମ୍ ବଣ୍ଡଲ୍ ଫିଲ୍ଟର୍", - "admin.reports.commons.filters.bundle.has_unsupported_bundle": "ଅସମର୍ଥିତ ବଣ୍ଡଲରେ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - "admin.reports.commons.filters.bundle.has_small_thumbnail": "ଅସାଧାରଣ ଛୋଟ ଥମ୍ବନେଲ୍ ଅଛି", - "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "ଥମ୍ବନେଲ୍ ବିନା ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "ଅବৈଧ ଥମ୍ବନେଲ୍ ନାମ ଅଛି (ପ୍ରତ୍ୟେକ ମୂଳ ପାଇଁ ଗୋଟିଏ ଥମ୍ବନେଲ୍ ଧାରଣା କରେ)", - "admin.reports.commons.filters.bundle.has_non_generated_thumb": "ଅଣ-ଜେନେରେଟେଡ୍ ଥମ୍ବନେଲ୍ ଅଛି", - "admin.reports.commons.filters.bundle.no_license": "ଲାଇସେନ୍ସ୍ ନାହିଁ", - "admin.reports.commons.filters.bundle.has_license_documentation": "ଲାଇସେନ୍ସ୍ ବଣ୍ଡଲରେ ଡକ୍ୟୁମେଣ୍ଟେସନ୍ ଅଛି", - "admin.reports.commons.filters.permission": "ଅନୁମତି ଫିଲ୍ଟର୍", - "admin.reports.commons.filters.permission.has_restricted_original": "ଆଇଟମରେ ସୀମିତ ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "ଆଇଟମରେ ଅତିକମରେ ଗୋଟିଏ ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି ଯାହା ବେନାମୀ ଉପଯୋଗକର୍ତ୍ତାଙ୍କ ପାଇଁ ପ୍ରବେଶଯୋଗ୍ୟ ନୁହେଁ", - "admin.reports.commons.filters.permission.has_restricted_thumbnail": "ଆଇଟମରେ ସୀମିତ ଥମ୍ବନେଲ୍ ଅଛି", - "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "ଆଇଟମରେ ଅତିକମରେ ଗୋଟିଏ ଥମ୍ବନେଲ୍ ଅଛି ଯାହା ବେନାମୀ ଉପଯୋଗକର୍ତ୍ତାଙ୍କ ପାଇଁ ପ୍ରବେଶଯୋଗ୍ୟ ନୁହେଁ", - "admin.reports.commons.filters.permission.has_restricted_metadata": "ଆଇଟମରେ ସୀମିତ ମେଟାଡାଟା ଅଛି", - "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "ଆଇଟମରେ ମେଟାଡାଟା ଅଛି ଯାହା ବେନାମୀ ଉପଯୋଗକର୍ତ୍ତାଙ୍କ ପାଇଁ ପ୍ରବେଶଯୋଗ୍ୟ ନୁହେଁ", - "admin.search.breadcrumbs": "ପ୍ରଶାସନିକ ଖୋଜ", - "admin.search.collection.edit": "ସଂପାଦନ କରନ୍ତୁ", - "admin.search.community.edit": "ସଂପାଦନ କରନ୍ତୁ", - "admin.search.item.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", - "admin.search.item.edit": "ସଂପାଦନ କରନ୍ତୁ", - "admin.search.item.make-private": "ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ", - "admin.search.item.make-public": "ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ", - "admin.search.item.move": "ସ୍ଥାନାନ୍ତର କରନ୍ତୁ", - "admin.search.item.reinstate": "ପୁନଃସ୍ଥାପନ କରନ୍ତୁ", - "admin.search.item.withdraw": "ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", - "admin.search.title": "ପ୍ରଶାସନିକ ଖୋଜ", - "administrativeView.search.results.head": "ପ୍ରଶାସନିକ ଖୋଜ", - "admin.workflow.breadcrumbs": "ୱର୍କଫ୍ଲୋ ପରିଚାଳନା କରନ୍ତୁ", - "admin.workflow.title": "ୱର୍କଫ୍ଲୋ ପରିଚାଳନା କରନ୍ତୁ", - "admin.workflow.item.workflow": "ୱର୍କଫ୍ଲୋ", - "admin.workflow.item.workspace": "ୱର୍କସ୍ପେସ୍", - "admin.workflow.item.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", - "admin.workflow.item.send-back": "ଫେରାଇ ଦିଅନ୍ତୁ", - "admin.workflow.item.policies": "ନୀତି", - "admin.workflow.item.supervision": "ପରିଚାଳନା", - "admin.metadata-import.breadcrumbs": "ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", - "admin.batch-import.breadcrumbs": "ବ୍ୟାଚ୍ ଆମଦାନୀ କରନ୍ତୁ", - "admin.metadata-import.title": "ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", - "admin.batch-import.title": "ବ୍ୟାଚ୍ ଆମଦାନୀ କରନ୍ତୁ", - "admin.metadata-import.page.header": "ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", - "admin.batch-import.page.header": "ବ୍ୟାଚ୍ ଆମଦାନୀ କରନ୍ତୁ", - "admin.metadata-import.page.help": "ଆପଣ ଏଠାରେ CSV ଫାଇଲ୍ ଡ୍ରପ୍ କିମ୍ବା ବ୍ରାଉଜ୍ କରିପାରିବେ ଯାହା ଫାଇଲ୍ ଉପରେ ବ୍ୟାଚ୍ ମେଟାଡାଟା କାର୍ଯ୍ୟଗୁଡିକ ଅନ୍ତର୍ଭୁକ୍ତ କରେ", - "admin.batch-import.page.help": "ଆମଦାନୀ କରିବାକୁ ସଂଗ୍ରହ ଚୟନ କରନ୍ତୁ। ତା'ପରେ, ଆମଦାନୀ କରିବାକୁ ଆଇଟମ୍ ଅନ୍ତର୍ଭୁକ୍ତ କରୁଥିବା ଏକ ସରଳ ଆର୍କାଇଭ୍ ଫର୍ମାଟ୍ (SAF) ଜିପ୍ ଫାଇଲ୍ ଡ୍ରପ୍ କିମ୍ବା ବ୍ରାଉଜ୍ କରନ୍ତୁ", - "admin.batch-import.page.toggle.help": "ଫାଇଲ୍ ଅପଲୋଡ୍ କିମ୍ବା URL ମାଧ୍ୟମରେ ଆମଦାନୀ କରିବା ସମ୍ଭବ, ଇନପୁଟ୍ ସୋର୍ସ ସେଟ୍ କରିବାକୁ ଉପରୋକ୍ତ ଟୋଗଲ୍ ବ୍ୟବହାର କରନ୍ତୁ", - "admin.metadata-import.page.dropMsg": "ଆମଦାନୀ କରିବାକୁ ଏକ ମେଟାଡାଟା CSV ଡ୍ରପ୍ କରନ୍ତୁ", - "admin.batch-import.page.dropMsg": "ଆମଦାନୀ କରିବାକୁ ଏକ ବ୍ୟାଚ୍ ZIP ଡ୍ରପ୍ କରନ୍ତୁ", - "admin.metadata-import.page.dropMsgReplace": "ଆମଦାନୀ କରିବାକୁ ମେଟାଡାଟା CSV ବଦଳାଇବାକୁ ଡ୍ରପ୍ କରନ୍ତୁ", - "admin.batch-import.page.dropMsgReplace": "ଆମଦାନୀ କରିବାକୁ ବ୍ୟାଚ୍ ZIP ବଦଳାଇବାକୁ ଡ୍ରପ୍ କରନ୍ତୁ", - "admin.metadata-import.page.button.return": "ପଛକୁ", - "admin.metadata-import.page.button.proceed": "ଆଗକୁ ବଢନ୍ତୁ", - "admin.metadata-import.page.button.select-collection": "ସଂଗ୍ରହ ଚୟନ କରନ୍ତୁ", - "admin.metadata-import.page.error.addFile": "ପ୍ରଥମେ ଫାଇଲ୍ ଚୟନ କରନ୍ତୁ!", - "admin.metadata-import.page.error.addFileUrl": "ପ୍ରଥମେ ଫାଇଲ୍ URL ଇନସର୍ଟ କରନ୍ତୁ!", - "admin.batch-import.page.error.addFile": "ପ୍ରଥମେ ZIP ଫାଇଲ୍ ଚୟନ କରନ୍ତୁ!", - "admin.metadata-import.page.toggle.upload": "ଅପଲୋଡ୍", - "admin.metadata-import.page.toggle.url": "URL", - "admin.metadata-import.page.urlMsg": "ଆମଦାନୀ କରିବାକୁ ବ୍ୟାଚ୍ ZIP url ଇନସର୍ଟ କରନ୍ତୁ", - "admin.metadata-import.page.validateOnly": "କେବଳ ଯାଞ୍ଚ କରନ୍ତୁ", - "admin.metadata-import.page.validateOnly.hint": "ଚୟନ କରାଯାଇଥିଲେ, ଅପଲୋଡ୍ କରାଯାଇଥିବା CSV ଯାଞ୍ଚ କରାଯିବ। ଆପଣ ଚିହ୍ନିତ ପରିବର୍ତ୍ତନର ଏକ ରିପୋର୍ଟ ପାଇବେ, କିନ୍ତୁ କୌଣସି ପରିବର୍ତ୍ତନ ସେଭ୍ ହେବ ନାହିଁ।", - "advanced-workflow-action.rating.form.rating.label": "ମୂଲ୍ୟାଙ୍କନ", - "advanced-workflow-action.rating.form.rating.error": "ଆପଣ ଆଇଟମକୁ ମୂଲ୍ୟାଙ୍କନ କରିବା ଆବଶ୍ୟକ", - "advanced-workflow-action.rating.form.review.label": "ସମୀକ୍ଷା", - "advanced-workflow-action.rating.form.review.error": "ଏହି ମୂଲ୍ୟାଙ୍କନ ଦାଖଲ କରିବାକୁ ଆପଣଙ୍କୁ ଏକ ସମୀକ୍ଷା ପ୍ରବେଶ କରିବା ଆବଶ୍ୟକ", - "advanced-workflow-action.rating.description": "ନିମ୍ନରେ ଏକ ମୂଲ୍ୟାଙ୍କନ ଚୟନ କରନ୍ତୁ", - "advanced-workflow-action.rating.description-requiredDescription": "ନିମ୍ନରେ ଏକ ମୂଲ୍ୟାଙ୍କନ ଚୟନ କରନ୍ତୁ ଏବଂ ଏକ ସମୀକ୍ଷା ମଧ୍ୟ ଯୋଡନ୍ତୁ", - "advanced-workflow-action.select-reviewer.description-single": "ଦାଖଲ କରିବା ପୂର୍ବରୁ ଦୟାକରି ନିମ୍ନରେ ଗୋଟିଏ ସମୀକ୍ଷକ ଚୟନ କରନ୍ତୁ", - "advanced-workflow-action.select-reviewer.description-multiple": "ଦାଖଲ କରିବା ପୂର୍ବରୁ ଦୟାକରି ନିମ୍ନରେ ଗୋଟିଏ କିମ୍ବା ଅଧିକ ସମୀକ୍ଷକ ଚୟନ କରନ୍ତୁ", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "EPeople ଯୋଡନ୍ତୁ", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "ବର୍ତ୍ତମାନର ସଦସ୍ୟଗଣ", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "ଖୋଜନ୍ତୁ", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "ନାମ", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ପରିଚୟ", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ଇମେଲ୍", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "ନେଟ୍ ID", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "ଅପସାରଣ / ଯୋଡନ୍ତୁ", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "\"{{name}}\" ନାମ ସହିତ ସଦସ୍ୟ ଅପସାରଣ କରନ୍ତୁ", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "\"{{name}}\" ସଦସ୍ୟ ସଫଳତାର ସହିତ ଯୋଡାଗଲା", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "\"{{name}}\" ସଦସ୍ୟ ଯୋଡିବାରେ ବିଫଳ ହେଲା", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "\"{{name}}\" ସଦସ୍ୟ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହେଲା", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "\"{{name}}\" ସଦସ୍ୟ ଡିଲିଟ୍ କରିବାରେ ବିଫଳ ହେଲା", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "\"{{name}}\" ନାମ ସହିତ ସଦସ୍ୟ ଯୋଡନ୍ତୁ", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "କ current ଣସି ବର୍ତ୍ତମାନର ସକ୍ରିୟ ଗୋଷ୍ଠୀ ନାହିଁ, ପ୍ରଥମେ ଏକ ନାମ ଦାଖଲ କରନ୍ତୁ।", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "ଗୋଷ୍ଠୀରେ ଏପର୍ଯ୍ୟନ୍ତ କ current ଣସି ସଦସ୍ୟ ନାହିଁ, ଖୋଜନ୍ତୁ ଏବଂ ଯୋଡନ୍ତୁ।", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "ସେହି ଖୋଜରେ କ current ଣସି EPeople ମିଳିଲା ନାହିଁ", - "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "କ current ଣସି ସମୀକ୍ଷକ ଚୟନ କରାଯାଇନାହିଁ।", - "admin.batch-import.page.validateOnly.hint": "ଚୟନ କରାଯାଇଥିଲେ, ଅପଲୋଡ୍ କରାଯାଇଥିବା ZIP ଯାଞ୍ଚ କରାଯିବ। ଆପଣ ଚିହ୍ନିତ ପରିବର୍ତ୍ତନର ଏକ ରିପୋର୍ଟ ପାଇବେ, କିନ୍ତୁ କୌଣସି ପରିବର୍ତ୍ତନ ସେଭ୍ ହେବ ନାହିଁ।", - "admin.batch-import.page.remove": "ଅପସାରଣ କରନ୍ତୁ", - "auth.errors.invalid-user": "ଅବୈଧ ଇମେଲ୍ ଠିକଣା କିମ୍ବା ପାସୱାର୍ଡ।", - "auth.messages.expired": "ଆପଣଙ୍କର ସେସନ୍ ସମୟ ସମାପ୍ତ ହୋଇଛି। ଦୟାକରି ପୁନର୍ବାର ଲଗ୍ ଇନ୍ କରନ୍ତୁ।", - "auth.messages.token-refresh-failed": "ଆପଣଙ୍କର ସେସନ୍ ଟୋକନ୍ ରିଫ୍ରେସ୍ କରିବାରେ ବିଫଳ ହେଲା। ଦୟାକରି ପୁନର୍ବାର ଲଗ୍ ଇନ୍ କରନ୍ତୁ।", - "bitstream.download.page": "ବର୍ତ୍ତମାନ {{bitstream}} ଡାଉନଲୋଡ୍ କରୁଛି...", - "bitstream.download.page.back": "ପଛକୁ", - "bitstream.edit.authorizations.link": "ବିଟଷ୍ଟ୍ରିମ୍ ନୀତି ସଂପାଦନ କରନ୍ତୁ", - "bitstream.edit.authorizations.title": "ବିଟଷ୍ଟ୍ରିମ୍ ନୀତି ସଂପାଦନ କରନ୍ତୁ", - "bitstream.edit.return": "ପଛକୁ", - "bitstream.edit.bitstream": "ବିଟଷ୍ଟ୍ରିମ୍: ", - "bitstream.edit.form.description.hint": "ଇଚ୍ଛାଧୀନ ଭାବରେ, ଫାଇଲ୍ ବିଷୟରେ ଏକ ସଂକ୍ଷିପ୍ତ ବର୍ଣ୍ଣନା ପ୍ରଦାନ କରନ୍ତୁ, ଉଦାହରଣ ସ୍ୱରୂପ \"ମୁଖ୍ୟ ପ୍ରବନ୍ଧ\" କିମ୍ବା \"ପରୀକ୍ଷଣ ଡାଟା ପ reading ିବା\"।", - "bitstream.edit.form.description.label": "ବର୍ଣ୍ଣନା", - "bitstream.edit.form.embargo.hint": "ପ୍ରଥମ ଦିନ ଯେଉଁଥିରୁ ପ୍ରବେଶ ଅନୁମୋଦିତ। ଏହି ତାରିଖକୁ ଏହି ଫର୍ମରେ ସଂଶୋଧନ କରାଯାଇପାରିବ ନାହିଁ। ଏକ ବିଟଷ୍ଟ୍ରିମ୍ ପାଇଁ ଏକ ଏମ୍ବାର୍ଗୋ ତାରିଖ ସେଟ୍ କରିବାକୁ, ଆଇଟମ୍ ସ୍ଥିତି ଟ୍ୟାବ୍ କୁ ଯାଆନ୍ତୁ, ଅନୁମତି... କ୍ଲିକ୍ କରନ୍ତୁ, ବିଟଷ୍ଟ୍ରିମ୍ READ ନୀତି ସୃଷ୍ଟି କରନ୍ତୁ କିମ୍ବା ସଂପାଦନ କରନ୍ତୁ, ଏବଂ ଇଚ୍ଛିତ ଭାବରେ ଆରମ୍ଭ ତାରିଖ ସେଟ୍ କରନ୍ତୁ।", - "bitstream.edit.form.embargo.label": "ସ୍ଥିର ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ଏମ୍ବାର୍ଗୋ", - "bitstream.edit.form.fileName.hint": "ବିଟଷ୍ଟ୍ରିମ୍ ପାଇଁ ଫାଇଲ୍ ନାମ ପରିବର୍ତ୍ତନ କରନ୍ତୁ। ଧ୍ୟାନ ଦିଅନ୍ତୁ ଯେ ଏହା ପ୍ରଦର୍ଶନ ବିଟଷ୍ଟ୍ରିମ୍ URL କୁ ପରିବର୍ତ୍ତନ କରିବ, କିନ୍ତୁ ପୁରାଣା ଲିଙ୍କ୍ ଗୁଡିକ ଏପର୍ଯ୍ୟନ୍ତ ସମାଧାନ ହେବ ଯେପର୍ଯ୍ୟନ୍ତ ସିକ୍ୟୁଏନ୍ସ୍ ID ପରିବର୍ତ୍ତନ ହୁଏ ନାହିଁ।", - "bitstream.edit.form.fileName.label": "ଫାଇଲ୍ ନାମ", - "bitstream.edit.form.newFormat.label": "ନୂତନ ଫର୍ମାଟ୍ ବର୍ଣ୍ଣନା କରନ୍ତୁ", - "bitstream.edit.form.newFormat.hint": "ଫାଇଲ୍ ସୃଷ୍ଟି କରିବା ପାଇଁ ଆପଣ ବ୍ୟବହାର କରିଥିବା ଆପ୍ଲିକେସନ୍, ଏବଂ ସଂସ୍କରଣ ସଂଖ୍ୟା (ଉଦାହରଣ ସ୍ୱରୂପ, \"ACMESoft SuperApp ସଂସ୍କରଣ 1.5\")।", - "bitstream.edit.form.primaryBitstream.label": "ପ୍ରାଥମିକ ଫାଇଲ୍", - "bitstream.edit.form.selectedFormat.hint": "ଯଦି ଫର୍ମାଟ୍ ଉପରୋକ୍ତ ତାଲିକାରେ ନାହିଁ, ଉପରେ \"ତାଲିକାରେ ଫର୍ମାଟ୍ ନାହିଁ\" ଚୟନ କରନ୍ତୁ ଏବଂ ଏହାକୁ \"ନୂତନ ଫର୍ମାଟ୍ ବର୍ଣ୍ଣନା କରନ୍ତୁ\" ତଳେ ବର୍ଣ୍ଣନା କରନ୍ତୁ।", - "bitstream.edit.form.selectedFormat.label": "ଚୟନ କରାଯାଇଥିବା ଫର୍ମାଟ୍", - "bitstream.edit.form.selectedFormat.unknown": "ତାଲିକାରେ ଫର୍ମାଟ୍ ନାହିଁ", - "bitstream.edit.notifications.error.format.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସେଭ୍ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "bitstream.edit.notifications.error.primaryBitstream.title": "ପ୍ରାଥମିକ ବିଟଷ୍ଟ୍ରିମ୍ ସେଭ୍ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "bitstream.edit.form.iiifLabel.label": "IIIF ଲେବଲ୍", - "bitstream.edit.form.iiifLabel.hint": "ଏହି ପ୍ରତିଛବି ପାଇଁ କ୍ୟାନଭାସ୍ ଲେବଲ୍। ଯଦି ପ୍ରଦାନ କରାଯାଇନଥାଏ, ଡିଫଲ୍ଟ ଲେବଲ୍ ବ୍ୟବହୃତ ହେବ।", - "bitstream.edit.form.iiifToc.label": "IIIF ବିଷୟସୂଚୀ", - "bitstream.edit.form.iiifToc.hint": "ଏଠାରେ ଟେକ୍ସଟ୍ ଯୋଡିବା ଏହାକୁ ଏକ ନୂତନ ବିଷୟସୂଚୀ ରେଞ୍ଜର ଆରମ୍ଭ କରେ।", - "bitstream.edit.form.iiifWidth.label": "IIIF କ୍ୟାନଭାସ୍ ଓସାର", - "bitstream.edit.form.iiifWidth.hint": "କ୍ୟାନଭାସ୍ ଓସାର ସାଧାରଣତ ପ୍ରତିଛବି ଓସାର ସହିତ ମେଳ ଖାଇବା ଉଚିତ୍।", - "bitstream.edit.form.iiifHeight.label": "IIIF କ୍ୟାନଭାସ୍ ଉଚ୍ଚତା", - "bitstream.edit.form.iiifHeight.hint": "କ୍ୟାନଭାସ୍ ଉଚ୍ଚତା ସାଧାରଣତ ପ୍ରତିଛବି ଉଚ୍ଚତା ସହିତ ମେଳ ଖାଇବା ଉଚିତ୍।", - - "bitstream.edit.notifications.saved.content": "ଏହି ବିଟଷ୍ଟ୍ରିମରେ ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଞ୍ଚୟ ହୋଇଛି।", - - "bitstream.edit.notifications.saved.title": "ବିଟଷ୍ଟ୍ରିମ ସଞ୍ଚୟ ହୋଇଛି", - - "bitstream.edit.title": "ବିଟଷ୍ଟ୍ରିମ ସମ୍ପାଦନ କରନ୍ତୁ", - - "bitstream-request-a-copy.alert.canDownload1": "ଆପଣ ଏହି ଫାଇଲକୁ ପୂର୍ବରୁ ଆକ୍ସେସ୍ କରିପାରିଛନ୍ତି। ଯଦି ଆପଣ ଫାଇଲଟିକୁ ଡାଉନଲୋଡ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି, ତେବେ ", - - "bitstream-request-a-copy.alert.canDownload2": "ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", - - "bitstream-request-a-copy.header": "ଫାଇଲର ଏକ କପି ଅନୁରୋଧ କରନ୍ତୁ", - - "bitstream-request-a-copy.intro": "ନିମ୍ନଲିଖିତ ଆଇଟମ୍ ପାଇଁ ଏକ କପି ଅନୁରୋଧ କରିବାକୁ ନିମ୍ନଲିଖିତ ସୂଚନା ପ୍ରବେଶ କରନ୍ତୁ: ", - - "bitstream-request-a-copy.intro.bitstream.one": "ନିମ୍ନଲିଖିତ ଫାଇଲ ଅନୁରୋଧ କରାଯାଉଛି: ", - - "bitstream-request-a-copy.intro.bitstream.all": "ସମସ୍ତ ଫାଇଲ ଅନୁରୋଧ କରାଯାଉଛି। ", - - "bitstream-request-a-copy.name.label": "ନାମ *", - - "bitstream-request-a-copy.name.error": "ନାମ ଆବଶ୍ୟକ", - - "bitstream-request-a-copy.email.label": "ଆପଣଙ୍କର ଇମେଲ୍ ଠିକଣା *", - - "bitstream-request-a-copy.email.hint": "ଫାଇଲ ପଠାଇବା ପାଇଁ ଏହି ଇମେଲ୍ ଠିକଣା ବ୍ୟବହୃତ ହୁଏ।", - - "bitstream-request-a-copy.email.error": "ଦୟାକରି ଏକ ବୈଧ ଇମେଲ୍ ଠିକଣା ପ୍ରବେଶ କରନ୍ତୁ।", - - "bitstream-request-a-copy.allfiles.label": "ଫାଇଲଗୁଡିକ", - - "bitstream-request-a-copy.files-all-false.label": "କେବଳ ଅନୁରୋଧିତ ଫାଇଲ", - - "bitstream-request-a-copy.files-all-true.label": "ସମସ୍ତ ଫାଇଲ (ଏହି ଆଇଟମର) ସୀମିତ ଆକ୍ସେସ୍ ରେ", - - "bitstream-request-a-copy.message.label": "ବାର୍ତ୍ତା", - - "bitstream-request-a-copy.return": "ପଛକୁ", - - "bitstream-request-a-copy.submit": "କପି ଅନୁରୋଧ କରନ୍ତୁ", - - "bitstream-request-a-copy.submit.success": "ଆଇଟମ୍ ଅନୁରୋଧ ସଫଳତାର ସହିତ ଦାଖଲ ହୋଇଛି।", - - "bitstream-request-a-copy.submit.error": "ଆଇଟମ୍ ଅନୁରୋଧ ଦାଖଲ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି।", - - "bitstream-request-a-copy.access-by-token.warning": "ଆପଣ ଲେଖକ କିମ୍ବା ରିପୋଜିଟରୀ କର୍ମଚାରୀଙ୍କ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଥିବା ସୁରକ୍ଷିତ ଆକ୍ସେସ୍ ଲିଙ୍କ୍ ବ୍ୟବହାର କରି ଏହି ଆଇଟମ୍ ଦେଖୁଛନ୍ତି। ଅନନୁମୋଦିତ ଉପଭୋକ୍ତାଙ୍କୁ ଏହି ଲିଙ୍କ୍ ଅଂଶୀଦାର ନକରିବା ଗୁରୁତ୍ୱପୂର୍ଣ୍ଣ।", - - "bitstream-request-a-copy.access-by-token.expiry-label": "ଏହି ଲିଙ୍କ୍ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଥିବା ଆକ୍ସେସ୍ ବିତରଣ ହେବ", - - "bitstream-request-a-copy.access-by-token.expired": "ଏହି ଲିଙ୍କ୍ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଥିବା ଆକ୍ସେସ୍ ଆଉ ସମ୍ଭବ ନୁହେଁ। ଆକ୍ସେସ୍ ବିତରଣ ହୋଇଛି", - - "bitstream-request-a-copy.access-by-token.not-granted": "ଏହି ଲିଙ୍କ୍ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଥିବା ଆକ୍ସେସ୍ ସମ୍ଭବ ନୁହେଁ। ଆକ୍ସେସ୍ ପ୍ରଦାନ କରାଯାଇନାହିଁ, କିମ୍ବା ପ୍ରତ୍ୟାହାର କରାଯାଇଛି।", - - "bitstream-request-a-copy.access-by-token.re-request": "ନୂତନ ଆକ୍ସେସ୍ ପାଇଁ ଏକ ନୂତନ ଅନୁରୋଧ ଦାଖଲ କରିବାକୁ ସୀମିତ ଡାଉନଲୋଡ୍ ଲିଙ୍କ୍ ଅନୁସରଣ କରନ୍ତୁ।", - - "bitstream-request-a-copy.access-by-token.alt-text": "ଏହି ଆଇଟମ୍ ପାଇଁ ଆକ୍ସେସ୍ ଏକ ସୁରକ୍ଷିତ ଟୋକେନ୍ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଛି", - - "browse.back.all-results": "ସମସ୍ତ ବ୍ରାଉଜ୍ ଫଳାଫଳ", - - "browse.comcol.by.author": "ଲେଖକ ଦ୍ୱାରା", - - "browse.comcol.by.dateissued": "ପ୍ରକାଶନ ତାରିଖ ଦ୍ୱାରା", - - "browse.comcol.by.subject": "ବିଷୟ ଦ୍ୱାରା", - - "browse.comcol.by.srsc": "ବିଷୟ ବର୍ଗ ଦ୍ୱାରା", - - "browse.comcol.by.nsi": "ନରୱେଜିଆନ ସାଇନ୍ସ ସୂଚୀ ଦ୍ୱାରା", - - "browse.comcol.by.title": "ଶୀର୍ଷକ ଦ୍ୱାରା", - - "browse.comcol.head": "ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "browse.empty": "ଦେଖାଇବାକୁ କୌଣସି ଆଇଟମ୍ ନାହିଁ।", - - "browse.metadata.author": "ଲେଖକ", - - "browse.metadata.dateissued": "ପ୍ରକାଶନ ତାରିଖ", - - "browse.metadata.subject": "ବିଷୟ", - - "browse.metadata.title": "ଶୀର୍ଷକ", - - "browse.metadata.srsc": "ବିଷୟ ବର୍ଗ", - - "browse.metadata.author.breadcrumbs": "ଲେଖକ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "browse.metadata.dateissued.breadcrumbs": "ତାରିଖ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "browse.metadata.subject.breadcrumbs": "ବିଷୟ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "browse.metadata.srsc.breadcrumbs": "ବିଷୟ ବର୍ଗ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "browse.metadata.srsc.tree.description": "ଏକ ବିଷୟ ବାଛନ୍ତୁ ଏବଂ ଏହାକୁ ସନ୍ଧାନ ଫିଲ୍ଟର୍ ଭାବରେ ଯୋଡନ୍ତୁ", - - "browse.metadata.nsi.breadcrumbs": "ନରୱେଜିଆନ ସାଇନ୍ସ ସୂଚୀ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "browse.metadata.nsi.tree.description": "ଏକ ସୂଚୀ ବାଛନ୍ତୁ ଏବଂ ଏହାକୁ ସନ୍ଧାନ ଫିଲ୍ଟର୍ ଭାବରେ ଯୋଡନ୍ତୁ", - - "browse.metadata.title.breadcrumbs": "ଶୀର୍ଷକ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "browse.metadata.map": "ଭୌଗୋଳିକ ସ୍ଥାନ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "browse.metadata.map.breadcrumbs": "ଭୌଗୋଳିକ ସ୍ଥାନ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "browse.metadata.map.count.items": "ଆଇଟମ୍", - - "pagination.next.button": "ପରବର୍ତ୍ତୀ", - - "pagination.previous.button": "ପୂର୍ବବର୍ତ୍ତୀ", - - "pagination.next.button.disabled.tooltip": "ଫଳାଫଳର ଆଉ କୌଣସି ପୃଷ୍ଠା ନାହିଁ", - - "pagination.page-number-bar": "ପୃଷ୍ଠା ନେଭିଗେସନ୍ ପାଇଁ ନିୟନ୍ତ୍ରଣ ବାର, ଆଇଡି ସହିତ ଆପେକ୍ଷିକ: ", - - "browse.startsWith": ", ଆରମ୍ଭ ହେଉଛି {{ startsWith }}", - - "browse.startsWith.choose_start": "(ଆରମ୍ଭ ବାଛନ୍ତୁ)", - - "browse.startsWith.choose_year": "(ବର୍ଷ ବାଛନ୍ତୁ)", - - "browse.startsWith.choose_year.label": "ପ୍ରକାଶନ ବର୍ଷ ବାଛନ୍ତୁ", - - "browse.startsWith.jump": "ବର୍ଷ କିମ୍ବା ମାସ ଦ୍ୱାରା ଫଳାଫଳ ଫିଲ୍ଟର୍ କରନ୍ତୁ", - - "browse.startsWith.months.april": "ଅପ୍ରେଲ୍", - - "browse.startsWith.months.august": "ଅଗଷ୍ଟ", - - "browse.startsWith.months.december": "ଡିସେମ୍ବର", - - "browse.startsWith.months.february": "ଫେବୃଆରୀ", - - "browse.startsWith.months.january": "ଜାନୁଆରୀ", - - "browse.startsWith.months.july": "ଜୁଲାଇ", - - "browse.startsWith.months.june": "ଜୁନ୍", - - "browse.startsWith.months.march": "ମାର୍ଚ୍ଚ", - - "browse.startsWith.months.may": "ମେ", - - "browse.startsWith.months.none": "(ମାସ ବାଛନ୍ତୁ)", - - "browse.startsWith.months.none.label": "ପ୍ରକାଶନ ମାସ ବାଛନ୍ତୁ", - - "browse.startsWith.months.november": "ନଭେମ୍ବର", - - "browse.startsWith.months.october": "ଅକ୍ଟୋବର", - - "browse.startsWith.months.september": "ସେପ୍ଟେମ୍ବର", - - "browse.startsWith.submit": "ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "browse.startsWith.type_date": "ତାରିଖ ଦ୍ୱାରା ଫଳାଫଳ ଫିଲ୍ଟର୍ କରନ୍ତୁ", - - "browse.startsWith.type_date.label": "କିମ୍ବା ଏକ ତାରିଖ (ବର୍ଷ-ମାସ) ଟାଇପ୍ କରନ୍ତୁ ଏବଂ ବ୍ରାଉଜ୍ ବଟନ୍ ଉପରେ କ୍ଲିକ୍ କରନ୍ତୁ", - - "browse.startsWith.type_text": "ପ୍ରଥମ କିଛି ଅକ୍ଷର ଟାଇପ୍ କରି ଫଳାଫଳ ଫିଲ୍ଟର୍ କରନ୍ତୁ", - - "browse.startsWith.input": "ଫିଲ୍ଟର୍", - - "browse.taxonomy.button": "ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "browse.title": "{{ field }} ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରୁଛନ୍ତି {{ startsWith }} {{ value }}", - - "browse.title.page": "{{ field }} ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରୁଛନ୍ତି {{ value }}", - - "search.browse.item-back": "ଫଳାଫଳକୁ ଫେରନ୍ତୁ", - - "chips.remove": "ଚିପ୍ ଅପସାରଣ କରନ୍ତୁ", - - "claimed-approved-search-result-list-element.title": "ଅନୁମୋଦିତ", - - "claimed-declined-search-result-list-element.title": "ପ୍ରତ୍ୟାଖ୍ୟାତ, ଦାଖଲକାରୀଙ୍କ ପାଖକୁ ଫେରିଛି", - - "claimed-declined-task-search-result-list-element.title": "ପ୍ରତ୍ୟାଖ୍ୟାତ, ରିଭ୍ୟୁ ମ୍ୟାନେଜର୍ କାର୍ଯ୍ୟପ୍ରଣାଳୀକୁ ଫେରିଛି", - - "collection.create.breadcrumbs": "କଲେକ୍ସନ୍ ସୃଷ୍ଟି କରନ୍ତୁ", - - "collection.browse.logo": "ଏକ କଲେକ୍ସନ୍ ଲୋଗୋ ପାଇଁ ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "collection.create.head": "ଏକ କଲେକ୍ସନ୍ ସୃଷ୍ଟି କରନ୍ତୁ", - - "collection.create.notifications.success": "କଲେକ୍ସନ୍ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", - - "collection.create.sub-head": "କମ୍ୟୁନିଟି {{ parent }} ପାଇଁ ଏକ କଲେକ୍ସନ୍ ସୃଷ୍ଟି କରନ୍ତୁ", - - "collection.curate.header": "କଲେକ୍ସନ୍ କ୍ୟୁରେଟ୍ କରନ୍ତୁ: {{collection}}", - - "collection.delete.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "collection.delete.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", - - "collection.delete.processing": "ଡିଲିଟ୍ କରୁଛି", - - "collection.delete.head": "କଲେକ୍ସନ୍ ଡିଲିଟ୍ କରନ୍ତୁ", - - "collection.delete.notification.fail": "କଲେକ୍ସନ୍ ଡିଲିଟ୍ କରାଯାଇପାରିବ ନାହିଁ", - - "collection.delete.notification.success": "କଲେକ୍ସନ୍ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", - - "collection.delete.text": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ \"{{ dso }}\" କଲେକ୍ସନ୍ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି", - - "collection.edit.delete": "ଏହି କଲେକ୍ସନ୍ ଡିଲିଟ୍ କରନ୍ତୁ", - - "collection.edit.head": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ କରନ୍ତୁ", - - "collection.edit.breadcrumbs": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ କରନ୍ତୁ", - - "collection.edit.tabs.mapper.head": "ଆଇଟମ୍ ମ୍ୟାପର୍", - - "collection.edit.tabs.item-mapper.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - ଆଇଟମ୍ ମ୍ୟାପର୍", - - "collection.edit.item-mapper.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "collection.edit.item-mapper.collection": "କଲେକ୍ସନ୍: \"{{name}}\"", - - "collection.edit.item-mapper.confirm": "ବଚ୍ଛିତ ଆଇଟମ୍ ମ୍ୟାପ୍ କରନ୍ତୁ", - - "collection.edit.item-mapper.description": "ଏହା ହେଉଛି ଆଇଟମ୍ ମ୍ୟାପର୍ ସାଧନ ଯାହା କଲେକ୍ସନ୍ ପ୍ରଶାସକଙ୍କୁ ଅନ୍ୟ କଲେକ୍ସନ୍ ମଧ୍ୟରୁ ଆଇଟମ୍ ମ୍ୟାପ୍ କରିବାକୁ ଅନୁମତି ଦେଇଥାଏ। ଆପଣ ଅନ୍ୟ କଲେକ୍ସନ୍ ମଧ୍ୟରୁ ଆଇଟମ୍ ଖୋଜିପାରିବେ ଏବଂ ସେଗୁଡିକୁ ମ୍ୟାପ୍ କରିପାରିବେ, କିମ୍ବା ବର୍ତ୍ତମାନ ମ୍ୟାପ୍ ହୋଇଥିବା ଆଇଟମ୍ ତାଲିକା ବ୍ରାଉଜ୍ କରିପାରିବେ।", - - "collection.edit.item-mapper.head": "ଆଇଟମ୍ ମ୍ୟାପର୍ - ଅନ୍ୟ କଲେକ୍ସନ୍ ମଧ୍ୟରୁ ଆଇଟମ୍ ମ୍ୟାପ୍ କରନ୍ତୁ", - - "collection.edit.item-mapper.no-search": "ଖୋଜିବାକୁ ଏକ ପ୍ରଶ୍ନ ପ୍ରବେଶ କରନ୍ତୁ", - - "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} ଆଇଟମ୍ ମ୍ୟାପିଂରେ ତ୍ରୁଟି ଘଟିଛି।", - - "collection.edit.item-mapper.notifications.map.error.head": "ମ୍ୟାପିଂ ତ୍ରୁଟି", - - "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} ଆଇଟମ୍ ସଫଳତାର ସହିତ ମ୍ୟାପ୍ ହୋଇଛି।", - - "collection.edit.item-mapper.notifications.map.success.head": "ମ୍ୟାପିଂ ସମାପ୍ତ", - - "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} ଆଇଟମ୍ ମ୍ୟାପିଂ ଅପସାରଣରେ ତ୍ରୁଟି ଘଟିଛି।", - - "collection.edit.item-mapper.notifications.unmap.error.head": "ମ୍ୟାପିଂ ଅପସାରଣ ତ୍ରୁଟି", - - "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} ଆଇଟମ୍ ମ୍ୟାପିଂ ସଫଳତାର ସହିତ ଅପସାରଣ ହୋଇଛି।", - - "collection.edit.item-mapper.notifications.unmap.success.head": "ମ୍ୟାପିଂ ଅପସାରଣ ସମାପ୍ତ", - - "collection.edit.item-mapper.remove": "ବଚ୍ଛିତ ଆଇଟମ୍ ମ୍ୟାପିଂ ଅପସାରଣ କରନ୍ତୁ", - - "collection.edit.item-mapper.search-form.placeholder": "ଆଇଟମ୍ ଖୋଜନ୍ତୁ...", - - "collection.edit.item-mapper.tabs.browse": "ମ୍ୟାପ୍ ହୋଇଥିବା ଆଇଟମ୍ ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "collection.edit.item-mapper.tabs.map": "ନୂତନ ଆଇଟମ୍ ମ୍ୟାପ୍ କରନ୍ତୁ", - - "collection.edit.logo.delete.title": "ଲୋଗୋ ଡିଲିଟ୍ କରନ୍ତୁ", - - "collection.edit.logo.delete-undo.title": "ଡିଲିଟ୍ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", - - "collection.edit.logo.label": "କଲେକ୍ସନ୍ ଲୋଗୋ", - - "collection.edit.logo.notifications.add.error": "କଲେକ୍ସନ୍ ଲୋଗୋ ଅପଲୋଡ୍ ବିଫଳ ହୋଇଛି। ପୁନରାବୃତ୍ତି କରିବା ପୂର୍ବରୁ ଦୟାକରି ବିଷୟବସ୍ତୁ ଯାଞ୍ଚ କରନ୍ତୁ।", - - "collection.edit.logo.notifications.add.success": "କଲେକ୍ସନ୍ ଲୋଗୋ ଅପଲୋଡ୍ ସଫଳ ହୋଇଛି।", - - "collection.edit.logo.notifications.delete.success.title": "ଲୋଗୋ ଡିଲିଟ୍ ହୋଇଛି", - - "collection.edit.logo.notifications.delete.success.content": "କଲେକ୍ସନ୍ ଲୋଗୋ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", - - "collection.edit.logo.upload": "ଅପଲୋଡ୍ କରିବାକୁ ଏକ କଲେକ୍ସନ୍ ଲୋଗୋ ଡ୍ରପ୍ କରନ୍ତୁ", - - "collection.edit.notifications.success": "କଲେକ୍ସନ୍ ସଫଳତାର ସହିତ ସମ୍ପାଦିତ ହୋଇଛି", - - "collection.edit.return": "ପଛକୁ", - - "collection.edit.tabs.access-control.head": "ଆକ୍ସେସ୍ ନିୟନ୍ତ୍ରଣ", - - "collection.edit.tabs.access-control.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - ଆକ୍ସେସ୍ ନିୟନ୍ତ୍ରଣ", - - "collection.edit.tabs.curate.head": "କ୍ୟୁରେଟ୍", - - "collection.edit.tabs.curate.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - କ୍ୟୁରେଟ୍", - - "collection.edit.tabs.authorizations.head": "ଅନୁମତି", - - "collection.edit.tabs.authorizations.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - ଅନୁମତି", - - "collection.edit.item.authorizations.load-bundle-button": "ଅଧିକ ବଣ୍ଡଲ୍ ଲୋଡ୍ କରନ୍ତୁ", - - "collection.edit.item.authorizations.load-more-button": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", - - "collection.edit.item.authorizations.show-bitstreams-button": "ବଣ୍ଡଲ୍ ପାଇଁ ବିଟଷ୍ଟ୍ରିମ୍ ନୀତି ଦେଖାନ୍ତୁ", - - "collection.edit.tabs.metadata.head": "ମେଟାଡାଟା ସମ୍ପାଦନ କରନ୍ତୁ", - - "collection.edit.tabs.metadata.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - ମେଟାଡାଟା", - - "collection.edit.tabs.roles.head": "ଭୂମିକା ନ୍ୟସ୍ତ କରନ୍ତୁ", - - "collection.edit.tabs.roles.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - ଭୂମିକା", - - "collection.edit.tabs.source.external": "ଏହି କଲେକ୍ସନ୍ ଏକ ବାହ୍ୟ ଉତ୍ସରୁ ଏହାର ବିଷୟବସ୍ତୁ ହାର୍ଭେଷ୍ଟ୍ କରେ", - - "collection.edit.tabs.source.form.errors.oaiSource.required": "ଆପଣ ଲକ୍ଷ୍ୟ କଲେକ୍ସନ୍ର ଏକ ସେଟ୍ ଆଇଡି ପ୍ରଦାନ କରିବା ଆବଶ୍ୟକ।", - - "collection.edit.tabs.source.form.harvestType": "ହାର୍ଭେଷ୍ଟ୍ ହେଉଥିବା ବିଷୟବସ୍ତୁ", - - "collection.edit.tabs.source.form.head": "ଏକ ବାହ୍ୟ ଉତ୍ସ କନଫିଗର୍ କରନ୍ତୁ", - - "collection.edit.tabs.source.form.metadataConfigId": "ମେଟାଡାଟା ଫର୍ମାଟ୍", - - "collection.edit.tabs.source.form.oaiSetId": "OAI ସ୍ପେସିଫିକ୍ ସେଟ୍ ଆଇଡି", - - "collection.edit.tabs.source.form.oaiSource": "OAI ପ୍ରୋଭାଇଡର୍", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "ମେଟାଡାଟା ଏବଂ ବିଟଷ୍ଟ୍ରିମ୍ ହାର୍ଭେଷ୍ଟ୍ କରନ୍ତୁ (ORE ସମର୍ଥନ ଆବଶ୍ୟକ)", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "ମେଟାଡାଟା ଏବଂ ବିଟଷ୍ଟ୍ରିମ୍ ରେଫରେନ୍ସ୍ ହାର୍ଭେଷ୍ଟ୍ କରନ୍ତୁ (ORE ସମର୍ଥନ ଆବଶ୍ୟକ)", - - "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "କେବଳ ମେଟାଡାଟା ହାର୍ଭେଷ୍ଟ୍ କରନ୍ତୁ", - - "collection.edit.tabs.source.head": "ବିଷୟବସ୍ତୁ ଉତ୍ସ", - - "collection.edit.tabs.source.notifications.discarded.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଛି। ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକୁ ପୁନର୍ବ୍ଯବହାର କରିବାକୁ 'ଅଣ୍ଡୁ' ବଟନ୍ ଉପରେ କ୍ଲିକ୍ କରନ୍ତୁ।", - - "collection.edit.tabs.source.notifications.discarded.title": "ପରିବର୍ତ୍ତନ ପରିତ୍ୟାଗ କରାଯାଇଛି", - "collection.edit.tabs.source.notifications.invalid.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ସଂରକ୍ଷିତ ହୋଇନାହିଁ। ସଂରକ୍ଷଣ କରିବା ପୂର୍ବରୁ ଦୟାକରି ନିଶ୍ଚିତ କରନ୍ତୁ ଯେ ସମସ୍ତ କ୍ଷେତ୍ରଗୁଡ଼ିକ ବୈଧ ଅଛି।", - "collection.edit.tabs.source.notifications.invalid.title": "ମେଟାଡାଟା ଅବୈଧ", - "collection.edit.tabs.source.notifications.saved.content": "ଏହି ସଂଗ୍ରହର ବିଷୟବସ୍ତୁ ସ୍ରୋତକୁ ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ସଂରକ୍ଷିତ ହୋଇଛି।", - "collection.edit.tabs.source.notifications.saved.title": "ବିଷୟବସ୍ତୁ ସ୍ରୋତ ସଂରକ୍ଷିତ", - "collection.edit.tabs.source.title": "ସଂଗ୍ରହ ସଂପାଦନା - ବିଷୟବସ୍ତୁ ସ୍ରୋତ", - "collection.edit.template.add-button": "ଯୋଡନ୍ତୁ", - "collection.edit.template.breadcrumbs": "ଆଇଟମ ଟେମ୍ପଲେଟ୍", - "collection.edit.template.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "collection.edit.template.delete-button": "ଡିଲିଟ୍ କରନ୍ତୁ", - "collection.edit.template.edit-button": "ସଂପାଦନ କରନ୍ତୁ", - "collection.edit.template.error": "ଟେମ୍ପଲେଟ୍ ଆଇଟମ୍ ପ୍ରାପ୍ତ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - "collection.edit.template.head": "\"{{ collection }}\" ସଂଗ୍ରହ ପାଇଁ ଟେମ୍ପଲେଟ୍ ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - "collection.edit.template.label": "ଟେମ୍ପଲେଟ୍ ଆଇଟମ୍", - "collection.edit.template.loading": "ଟେମ୍ପଲେଟ୍ ଆଇଟମ୍ ଲୋଡ୍ ହେଉଛି...", - "collection.edit.template.notifications.delete.error": "ଆଇଟମ୍ ଟେମ୍ପଲେଟ୍ ଡିଲିଟ୍ କରିବାରେ ବିଫଳ ହେଲା", - "collection.edit.template.notifications.delete.success": "ଆଇଟମ୍ ଟେମ୍ପଲେଟ୍ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", - "collection.edit.template.title": "ଟେମ୍ପଲେଟ୍ ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - "collection.form.abstract": "ସଂକ୍ଷିପ୍ତ ବର୍ଣ୍ଣନା", - "collection.form.description": "ପରିଚୟାତ୍ମକ ପାଠ୍ୟ (HTML)", - "collection.form.errors.title.required": "ଦୟାକରି ଏକ ସଂଗ୍ରହ ନାମ ପ୍ରବେଶ କରନ୍ତୁ", - "collection.form.license": "ଲାଇସେନ୍ସ", - "collection.form.provenance": "ଉତ୍ପତ୍ତି", - "collection.form.rights": "କପିରାଇଟ୍ ପାଠ୍ୟ (HTML)", - "collection.form.tableofcontents": "ଖବର (HTML)", - "collection.form.title": "ନାମ", - "collection.form.entityType": "ସଂସ୍ଥା ପ୍ରକାର", - "collection.listelement.badge": "ସଂଗ୍ରହ", - "collection.logo": "ସଂଗ୍ରହ ଲୋଗୋ", - "collection.page.browse.search.head": "ସନ୍ଧାନ କରନ୍ତୁ", - "collection.page.edit": "ଏହି ସଂଗ୍ରହକୁ ସଂପାଦନ କରନ୍ତୁ", - "collection.page.handle": "ଏହି ସଂଗ୍ରହ ପାଇଁ ସ୍ଥାୟୀ URI", - "collection.page.license": "ଲାଇସେନ୍ସ", - "collection.page.news": "ଖବର", - "collection.page.options": "ବିକଳ୍ପଗୁଡ଼ିକ", - "collection.search.breadcrumbs": "ସନ୍ଧାନ କରନ୍ତୁ", - "collection.search.results.head": "ସନ୍ଧାନ ଫଳାଫଳ", - "collection.select.confirm": "ଚୟନିତକୁ ନିଶ୍ଚିତ କରନ୍ତୁ", - "collection.select.empty": "ଦେଖାଇବା ପାଇଁ କୌଣସି ସଂଗ୍ରହ ନାହିଁ", - "collection.select.table.selected": "ଚୟନିତ ସଂଗ୍ରହଗୁଡ଼ିକ", - "collection.select.table.select": "ସଂଗ୍ରହ ଚୟନ କରନ୍ତୁ", - "collection.select.table.deselect": "ସଂଗ୍ରହ ଚୟନ ବାତିଲ୍ କରନ୍ତୁ", - "collection.select.table.title": "ଶୀର୍ଷକ", - "collection.source.controls.head": "ହାର୍ଭେଷ୍ଟ ନିୟନ୍ତ୍ରଣ", - "collection.source.controls.test.submit.error": "ସେଟିଂସମୂହ ପରୀକ୍ଷା କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", - "collection.source.controls.test.failed": "ସେଟିଂସମୂହ ପରୀକ୍ଷା କରିବାର ସ୍କ୍ରିପ୍ଟ ବିଫଳ ହୋଇଛି", - "collection.source.controls.test.completed": "ସେଟିଂସମୂହ ପରୀକ୍ଷା କରିବାର ସ୍କ୍ରିପ୍ଟ ସଫଳତାର ସହିତ ସମାପ୍ତ ହୋଇଛି", - "collection.source.controls.test.submit": "ବିନ୍ୟାସ ପରୀକ୍ଷା କରନ୍ତୁ", - "collection.source.controls.test.running": "ବିନ୍ୟାସ ପରୀକ୍ଷା ଚାଲିଛି...", - "collection.source.controls.import.submit.success": "ଆମଦାନୀ ସଫଳତାର ସହିତ ଆରମ୍ଭ ହୋଇଛି", - "collection.source.controls.import.submit.error": "ଆମଦାନୀ ଆରମ୍ଭ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", - "collection.source.controls.import.submit": "ବର୍ତ୍ତମାନ ଆମଦାନୀ କରନ୍ତୁ", - "collection.source.controls.import.running": "ଆମଦାନୀ ଚାଲିଛି...", - "collection.source.controls.import.failed": "ଆମଦାନୀ ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - "collection.source.controls.import.completed": "ଆମଦାନୀ ସମାପ୍ତ ହୋଇଛି", - "collection.source.controls.reset.submit.success": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ ସଫଳତାର ସହିତ ଆରମ୍ଭ ହୋଇଛି", - "collection.source.controls.reset.submit.error": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ ଆରମ୍ଭ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", - "collection.source.controls.reset.failed": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - "collection.source.controls.reset.completed": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ ସମାପ୍ତ ହୋଇଛି", - "collection.source.controls.reset.submit": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ କରନ୍ତୁ", - "collection.source.controls.reset.running": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ ଚାଲିଛି...", - "collection.source.controls.harvest.status": "ହାର୍ଭେଷ୍ଟ ସ୍ଥିତି:", - "collection.source.controls.harvest.start": "ହାର୍ଭେଷ୍ଟ ଆରମ୍ଭ ସମୟ:", - "collection.source.controls.harvest.last": "ଶେଷ ଥର ହାର୍ଭେଷ୍ଟ ହୋଇଥିଲା:", - "collection.source.controls.harvest.message": "ହାର୍ଭେଷ୍ଟ ସୂଚନା:", - "collection.source.controls.harvest.no-information": "N/A", - "collection.source.update.notifications.error.content": "ପ୍ରଦାନ କରାଯାଇଥିବା ସେଟିଂସମୂହ ପରୀକ୍ଷା କରାଯାଇଛି ଏବଂ କାମ କରିନାହିଁ।", - "collection.source.update.notifications.error.title": "ସର୍ଭର ତ୍ରୁଟି", - "communityList.breadcrumbs": "କମ୍ୟୁନିଟି ତାଲିକା", - "communityList.tabTitle": "କମ୍ୟୁନିଟି ତାଲିକା", - "communityList.title": "କମ୍ୟୁନିଟିଗୁଡ଼ିକର ତାଲିକା", - "communityList.showMore": "ଅଧିକ ଦେଖାନ୍ତୁ", - "communityList.expand": "{{ name }} ବିସ୍ତାର କରନ୍ତୁ", - "communityList.collapse": "{{ name }} ସଂକୋଚନ କରନ୍ତୁ", - "community.browse.logo": "ଏକ କମ୍ୟୁନିଟି ଲୋଗୋ ପାଇଁ ବ୍ରାଉଜ୍ କରନ୍ତୁ", - "community.subcoms-cols.breadcrumbs": "ଉପ-କମ୍ୟୁନିଟି ଏବଂ ସଂଗ୍ରହଗୁଡ଼ିକ", - "community.create.breadcrumbs": "କମ୍ୟୁନିଟି ସୃଷ୍ଟି କରନ୍ତୁ", - "community.create.head": "ଏକ କମ୍ୟୁନିଟି ସୃଷ୍ଟି କରନ୍ତୁ", - "community.create.notifications.success": "କମ୍ୟୁନିଟି ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", - "community.create.sub-head": "{{ parent }} କମ୍ୟୁନିଟି ପାଇଁ ଏକ ଉପ-କମ୍ୟୁନିଟି ସୃଷ୍ଟି କରନ୍ତୁ", - "community.curate.header": "କମ୍ୟୁନିଟି କ୍ୟୁରେଟ୍ କରନ୍ତୁ: {{community}}", - "community.delete.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "community.delete.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", - "community.delete.processing": "ଡିଲିଟ୍ ହେଉଛି...", - "community.delete.head": "କମ୍ୟୁନିଟି ଡିଲିଟ୍ କରନ୍ତୁ", - "community.delete.notification.fail": "କମ୍ୟୁନିଟି ଡିଲିଟ୍ କରାଯାଇପାରିବ ନାହିଁ", - "community.delete.notification.success": "କମ୍ୟୁନିଟି ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", - "community.delete.text": "ଆପଣ ନିଶ୍ଚିତ କି \"{{ dso }}\" କମ୍ୟୁନିଟିକୁ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", - "community.edit.delete": "ଏହି କମ୍ୟୁନିଟିକୁ ଡିଲିଟ୍ କରନ୍ତୁ", - "community.edit.head": "କମ୍ୟୁନିଟି ସଂପାଦନ କରନ୍ତୁ", - "community.edit.breadcrumbs": "କମ୍ୟୁନିଟି ସଂପାଦନ କରନ୍ତୁ", - "community.edit.logo.delete.title": "ଲୋଗୋ ଡିଲିଟ୍ କରନ୍ତୁ", - "community-collection.edit.logo.delete.title": "ଡିଲିଟ୍ ନିଶ୍ଚିତ କରନ୍ତୁ", - "community.edit.logo.delete-undo.title": "ଡିଲିଟ୍ ବାତିଲ୍ କରନ୍ତୁ", - "community-collection.edit.logo.delete-undo.title": "ଡିଲିଟ୍ ବାତିଲ୍ କରନ୍ତୁ", - "community.edit.logo.label": "କମ୍ୟୁନିଟି ଲୋଗୋ", - "community.edit.logo.notifications.add.error": "କମ୍ୟୁନିଟି ଲୋଗୋ ଅପଲୋଡ୍ କରିବାରେ ବିଫଳ ହେଲା। ପୁନର୍ବାର ଚେଷ୍ଟା କରିବା ପୂର୍ବରୁ ଦୟାକରି ବିଷୟବସ୍ତୁ ଯାଞ୍ଚ କରନ୍ତୁ।", - "community.edit.logo.notifications.add.success": "କମ୍ୟୁନିଟି ଲୋଗୋ ଅପଲୋଡ୍ ସଫଳ", - "community.edit.logo.notifications.delete.success.title": "ଲୋଗୋ ଡିଲିଟ୍ ହୋଇଛି", - "community.edit.logo.notifications.delete.success.content": "କମ୍ୟୁନିଟିର ଲୋଗୋ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", - "community.edit.logo.notifications.delete.error.title": "ଲୋଗୋ ଡିଲିଟ୍ କରିବାରେ ତ୍ରୁଟି", - "community.edit.logo.upload": "ଅପଲୋଡ୍ କରିବାକୁ ଏକ କମ୍ୟୁନିଟି ଲୋଗୋ ଡ୍ରପ୍ କରନ୍ତୁ", - "community.edit.notifications.success": "କମ୍ୟୁନିଟି ସଫଳତାର ସହିତ ସଂପାଦିତ ହୋଇଛି", - "community.edit.notifications.unauthorized": "ଏହି ପରିବର୍ତ୍ତନ କରିବାକୁ ଆପଣଙ୍କର ଅଧିକାର ନାହିଁ", - "community.edit.notifications.error": "କମ୍ୟୁନିଟି ସଂପାଦନ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - "community.edit.return": "ପଛକୁ ଯାଆନ୍ତୁ", - "community.edit.tabs.curate.head": "କ୍ୟୁରେଟ୍", - "community.edit.tabs.curate.title": "କମ୍ୟୁନିଟି ସଂପାଦନା - କ୍ୟୁରେଟ୍", - "community.edit.tabs.access-control.head": "ପ୍ରବେଶ ନିୟନ୍ତ୍ରଣ", - "community.edit.tabs.access-control.title": "କମ୍ୟୁନିଟି ସଂପାଦନା - ପ୍ରବେଶ ନିୟନ୍ତ୍ରଣ", - "community.edit.tabs.metadata.head": "ମେଟାଡାଟା ସଂପାଦନ କରନ୍ତୁ", - "community.edit.tabs.metadata.title": "କମ୍ୟୁନିଟି ସଂପାଦନା - ମେଟାଡାଟା", - "community.edit.tabs.roles.head": "ଭୂମିକା ନ୍ୟସ୍ତ କରନ୍ତୁ", - "community.edit.tabs.roles.title": "କମ୍ୟୁନିଟି ସଂପାଦନା - ଭୂମିକା", - "community.edit.tabs.authorizations.head": "ଅନୁମୋଦନ", - "community.edit.tabs.authorizations.title": "କମ୍ୟୁନିଟି ସଂପାଦନା - ଅନୁମୋଦନ", - "community.listelement.badge": "କମ୍ୟୁନିଟି", - "community.logo": "କମ୍ୟୁନିଟି ଲୋଗୋ", - "comcol-role.edit.no-group": "କିଛି ନାହିଁ", - "comcol-role.edit.create": "ସୃଷ୍ଟି କରନ୍ତୁ", - "comcol-role.edit.create.error.title": "'{{ role }}' ଭୂମିକା ପାଇଁ ଏକ ଗୋଷ୍ଠୀ ସୃଷ୍ଟି କରିବାରେ ବିଫଳ ହେଲା", - "comcol-role.edit.restrict": "ସୀମିତ କରନ୍ତୁ", - "comcol-role.edit.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", - "comcol-role.edit.delete.error.title": "'{{ role }}' ଭୂମିକାର ଗୋଷ୍ଠୀ ଡିଲିଟ୍ କରିବାରେ ବିଫଳ ହେଲା", - "comcol-role.edit.community-admin.name": "ପ୍ରଶାସକଗଣ", - "comcol-role.edit.collection-admin.name": "ପ୍ରଶାସକଗଣ", - "comcol-role.edit.community-admin.description": "କମ୍ୟୁନିଟି ପ୍ରଶାସକଗଣ ଉପ-କମ୍ୟୁନିଟି କିମ୍ବା ସଂଗ୍ରହ ସୃଷ୍ଟି କରିପାରିବେ, ଏବଂ ସେହି ଉପ-କମ୍ୟୁନିଟି କିମ୍ବା ସଂଗ୍ରହଗୁଡ଼ିକୁ ପରିଚାଳନା କିମ୍ବା ପରିଚାଳନା ନ୍ୟସ୍ତ କରିପାରିବେ। ଏହା ଛଡା, ସେମାନେ ନିଷ୍ପତି ନେଇପାରିବେ ଯେ କେଉଁମାନେ କୌଣସି ଉପ-ସଂଗ୍ରହକୁ ଆଇଟମ୍ ଦାଖଲ କରିପାରିବେ, ଆଇଟମ୍ ମେଟାଡାଟା ସଂପାଦନ କରିପାରିବେ (ଦାଖଲ ପରେ), ଏବଂ ଅନ୍ୟ ସଂଗ୍ରହରୁ ବିଦ୍ୟମାନ ଆଇଟମ୍ ଯୋଡନ୍ତୁ (ମାନ୍ୟତା ପାଇଁ)।", - "comcol-role.edit.collection-admin.description": "ସଂଗ୍ରହ ପ୍ରଶାସକଗଣ ନିଷ୍ପତି ନିଅନ୍ତି ଯେ କେଉଁମାନେ ସଂଗ୍ରହକୁ ନୂତନ ଆଇଟମ୍ ଦାଖଲ କରିପାରିବେ, ଆଇଟମ୍ ମେଟାଡାଟା ସଂପାଦନ କରିପାରିବେ (ଦାଖଲ ପରେ), ଏବଂ ଅନ୍ୟ ସଂଗ୍ରହରୁ ବିଦ୍ୟମାନ ଆଇଟମ୍ ଯୋଡନ୍ତୁ (ମାନ୍ୟତା ପାଇଁ)।", - "comcol-role.edit.submitters.name": "ଦାଖଲକାରୀଗଣ", - "comcol-role.edit.submitters.description": "E-ଲୋକ ଏବଂ ଗୋଷ୍ଠୀଗୁଡ଼ିକ ଯାହାଙ୍କର ଏହି ସଂଗ୍ରହକୁ ନୂତନ ଆଇଟମ୍ ଦାଖଲ କରିବାର ଅନୁମତି ଅଛି।", - "comcol-role.edit.item_read.name": "ଡିଫଲ୍ଟ ଆଇଟମ୍ ପଢିବା ପ୍ରବେଶ", - "comcol-role.edit.item_read.description": "E-ଲୋକ ଏବଂ ଗୋଷ୍ଠୀଗୁଡ଼ିକ ଯାହାଙ୍କର ଏହି ସଂଗ୍ରହକୁ ଦାଖଲ କରାଯାଇଥିବା ନୂତନ ଆଇଟମ୍ ପଢିବାର ଅନୁମତି ଅଛି। ଏହି ଭୂମିକାରେ ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ପ୍ରତ୍ୟାବର୍ତ୍ତନୀ ନୁହେଁ। ସିଷ୍ଟମରେ ଥିବା ବିଦ୍ୟମାନ ଆଇଟମ୍ ସେମାନଙ୍କ ପାଇଁ ଦୃଶ୍ୟମାନ ହେବ ଯେଉଁମାନଙ୍କର ସେମାନଙ୍କର ଯୋଗଦାନ ସମୟରେ ପଢିବାର ପ୍ରବେଶ ଥିଲା।", - "comcol-role.edit.item_read.anonymous-group": "ଆଗମନ ଆଇଟମ୍ ପାଇଁ ଡିଫଲ୍ଟ ପଢିବା ବର୍ତ୍ତମାନ ବେନାମୀ ଭାବରେ ସେଟ୍ ହୋଇଛି।", - "comcol-role.edit.bitstream_read.name": "ଡିଫଲ୍ଟ ବିଟଷ୍ଟ୍ରିମ୍ ପଢିବା ପ୍ରବେଶ", - "comcol-role.edit.bitstream_read.description": "E-ଲୋକ ଏବଂ ଗୋଷ୍ଠୀଗୁଡ଼ିକ ଯାହାଙ୍କର ଏହି ସଂଗ୍ରହକୁ ଦାଖଲ କରାଯାଇଥିବା ନୂତନ ବିଟଷ୍ଟ୍ରିମ୍ ପଢିବାର ଅନୁମତି ଅଛି। ଏହି ଭୂମିକାରେ ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ପ୍ରତ୍ୟାବର୍ତ୍ତନୀ ନୁହେଁ। ସିଷ୍ଟମରେ ଥିବା ବିଦ୍ୟମାନ ବିଟଷ୍ଟ୍ରିମ୍ ସେମାନଙ୍କ ପାଇଁ ଦୃଶ୍ୟମାନ ହେବ ଯେଉଁମାନଙ୍କର ସେମାନଙ୍କର ଯୋଗଦାନ ସମୟରେ ପଢିବାର ପ୍ରବେଶ ଥିଲା।", - "comcol-role.edit.bitstream_read.anonymous-group": "ଆଗମନ ବିଟଷ୍ଟ୍ରିମ୍ ପାଇଁ ଡିଫଲ୍ଟ ପଢିବା ବର୍ତ୍ତମାନ ବେନାମୀ ଭାବରେ ସେଟ୍ ହୋଇଛି।", - "comcol-role.edit.editor.name": "ସଂପାଦକଗଣ", - "comcol-role.edit.editor.description": "ସଂପାଦକଗଣ ଆଗମନ ଦାଖଲର ମେଟାଡାଟା ସଂପାଦନ କରିପାରିବେ, ଏବଂ ତା'ପରେ ସେଗୁଡ଼ିକୁ ଗ୍ରହଣ କିମ୍ବା ପ୍ରତ୍ୟାଖ୍ୟାନ କରିପାରିବେ।", - "comcol-role.edit.finaleditor.name": "ଅନ୍ତିମ ସଂପାଦକଗଣ", - "comcol-role.edit.finaleditor.description": "ଅନ୍ତିମ ସଂପାଦକଗଣ ଆଗମନ ଦାଖଲର ମେଟାଡାଟା ସଂପାଦନ କରିପାରିବେ, କିନ୍ତୁ ସେଗୁଡ଼ିକୁ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିପାରିବେ ନାହିଁ।", - "comcol-role.edit.reviewer.name": "ସମୀକ୍ଷକଗଣ", - "comcol-role.edit.reviewer.description": "ସମୀକ୍ଷକଗଣ ଆଗମନ ଦାଖଲକୁ ଗ୍ରହଣ କିମ୍ବା ପ୍ରତ୍ୟାଖ୍ୟାନ କରିପାରିବେ। ତଥାପି, ସେମାନେ ଦାଖଲର ମେଟାଡାଟା ସଂପାଦନ କରିପାରିବେ ନାହିଁ।", - "comcol-role.edit.scorereviewers.name": "ସ୍କୋର ସମୀକ୍ଷକଗଣ", - "comcol-role.edit.scorereviewers.description": "ସମୀକ୍ଷକଗଣ ଆଗମନ ଦାଖଲକୁ ଏକ ସ୍କୋର ଦେଇପାରିବେ, ଏହା ନିର୍ଣ୍ଣୟ କରିବ ଯେ ଦାଖଲ ପ୍ରତ୍ୟାଖ୍ୟାନ ହେବ କି ନାହିଁ।", - "community.form.abstract": "ସଂକ୍ଷିପ୍ତ ବର୍ଣ୍ଣନା", - "community.form.description": "ପରିଚୟାତ୍ମକ ପାଠ୍ୟ (HTML)", - "community.form.errors.title.required": "ଦୟାକରି ଏକ କମ୍ୟୁନିଟି ନାମ ପ୍ରବେଶ କରନ୍ତୁ", - "community.form.rights": "କପିରାଇଟ୍ ପାଠ୍ୟ (HTML)", - "community.form.tableofcontents": "ଖବର (HTML)", - "community.form.title": "ନାମ", - "community.page.edit": "ଏହି କମ୍ୟୁନିଟିକୁ ସଂପାଦନ କରନ୍ତୁ", - "community.page.handle": "ଏହି କମ୍ୟୁନିଟି ପାଇଁ ସ୍ଥାୟୀ URI", - "community.page.license": "ଲାଇସେନ୍ସ", - "community.page.news": "ଖବର", - "community.page.options": "ବିକଳ୍ପଗୁଡ଼ିକ", - "community.all-lists.head": "ଉପ-କମ୍ୟୁନିଟି ଏବଂ ସଂଗ୍ରହଗୁଡ଼ିକ", - "community.search.breadcrumbs": "ସନ୍ଧାନ କରନ୍ତୁ", - "community.search.results.head": "ସନ୍ଧାନ ଫଳାଫଳ", - "community.sub-collection-list.head": "ଏହି କମ୍ୟୁନିଟିରେ ସଂଗ୍ରହଗୁଡ଼ିକ", - "community.sub-community-list.head": "ଏହି କମ୍ୟୁନିଟିରେ କମ୍ୟୁନିଟିଗୁଡ଼ିକ", - "cookies.consent.accept-all": "ସମସ୍ତ ଗ୍ରହଣ କରନ୍ତୁ", - "cookies.consent.accept-selected": "ଚୟନିତ ଗ୍ରହଣ କରନ୍ତୁ", - "cookies.consent.app.opt-out.description": "ଏହି ଆପ୍ ଡିଫଲ୍ଟ ଭାବରେ ଲୋଡ୍ ହୋଇଛି (କିନ୍ତୁ ଆପଣ ବାହାରିପାରିବେ)", - "cookies.consent.app.opt-out.title": "(ବାହାରିବା)", - "cookies.consent.app.purpose": "ଉଦ୍ଦେଶ୍ୟ", - "cookies.consent.app.required.description": "ଏହି ଆପ୍ଲିକେସନ୍ ସର୍ବଦା ଆବଶ୍ୟକ", - "cookies.consent.app.required.title": "(ସର୍ବଦା ଆବଶ୍ୟକ)", - "cookies.consent.update": "ଆପଣଙ୍କର ଶେଷ ପରିଦର୍ଶନ ପରଠାରୁ ପରିବର୍ତ୍ତନ ହୋଇଛି, ଦୟାକରି ଆପଣଙ୍କର ସମ୍ମତି ଅଦ୍ୟତନ କରନ୍ତୁ।", - "cookies.consent.close": "ବନ୍ଦ କରନ୍ତୁ", - "cookies.consent.decline": "ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", - "cookies.consent.decline-all": "ସମସ୍ତ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", - "cookies.consent.ok": "ଠିକ୍ ଅଛି", - "cookies.consent.save": "ସଂରକ୍ଷଣ କରନ୍ତୁ", - "cookies.consent.content-notice.description": "ଆମେ ନିମ୍ନଲିଖିତ ଉଦ୍ଦେଶ୍ୟ ପାଇଁ ଆପଣଙ୍କର ବ୍ୟକ୍ତିଗତ ସୂଚନା ସଂଗ୍ରହ ଏବଂ ପ୍ରକ୍ରିୟା କରୁ: {purposes}", - "cookies.consent.content-notice.learnMore": "କଷ୍ଟମାଇଜ୍ କରନ୍ତୁ", - "cookies.consent.content-modal.description": "ଏଠାରେ ଆପଣ ଆମେ ଆପଣଙ୍କ ବିଷୟରେ ଯାହା ସଂଗ୍ରହ କରୁ ତାହା ଦେଖିପାରିବେ ଏବଂ କଷ୍ଟମାଇଜ୍ କରିପାରିବେ।", - "cookies.consent.content-modal.privacy-policy.name": "ଗୋପନୀୟତା ନୀତି", - "cookies.consent.content-modal.privacy-policy.text": "ଅଧିକ ଜାଣିବା ପାଇଁ, ଦୟାକରି ଆମର {privacyPolicy} ପଢନ୍ତୁ।", - "cookies.consent.content-modal.no-privacy-policy.text": "", - "cookies.consent.content-modal.title": "ଆମେ ଯାହା ସଂଗ୍ରହ କରୁ", - "cookies.consent.app.title.accessibility": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍", - "cookies.consent.app.description.accessibility": "ଆପଣଙ୍କର ଅଭିଗମ୍ୟତା ସେଟିଂସ୍ ସ୍ଥାନୀୟ ଭାବରେ ସଂରକ୍ଷଣ ପାଇଁ ଆବଶ୍ୟକ", - "cookies.consent.app.title.authentication": "ପ୍ରାମାଣିକରଣ", - "cookies.consent.app.description.authentication": "ଆପଣଙ୍କୁ ସାଇନ୍ ଇନ୍ କରିବା ପାଇଁ ଆବଶ୍ୟକ", - "cookies.consent.app.title.correlation-id": "ସମ୍ପର୍କ ଆଇଡି", - "cookies.consent.app.description.correlation-id": "ସହାୟତା/ଡିବଗ୍ ଉଦ୍ଦେଶ୍ୟ ପାଇଁ ବ୍ୟାକେଣ୍ଡ ଲଗ୍ ରେ ଆପଣଙ୍କର ସେସନ୍ ଟ୍ରାକ୍ କରିବା ପାଇଁ ଆମକୁ ଅନୁମତି ଦିଅନ୍ତୁ", - "cookies.consent.app.title.preferences": "ପସନ୍ଦ", - "cookies.consent.app.description.preferences": "ଆପଣଙ୍କର ପସନ୍ଦ ସଂରକ୍ଷଣ ପାଇଁ ଆବଶ୍ୟକ", - "cookies.consent.app.title.acknowledgement": "ସ୍ୱୀକୃତି", - "cookies.consent.app.description.acknowledgement": "ଆପଣଙ୍କର ସ୍ୱୀକୃତି ଏବଂ ସମ୍ମତି ସଂରକ୍ଷଣ ପାଇଁ ଆବଶ୍ୟକ", - "cookies.consent.app.title.google-analytics": "ଗୁଗଲ୍ ଆନାଲିଟିକ୍ସ୍", - "cookies.consent.app.description.google-analytics": "ଆମକୁ ସ୍ଥିତିକ ତଥ୍ୟ ଟ୍ରାକ୍ କରିବା ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ", - "cookies.consent.app.title.google-recaptcha": "ଗୁଗଲ୍ reCaptcha", - "cookies.consent.app.description.google-recaptcha": "ଆମେ ରେଜିଷ୍ଟ୍ରେସନ୍ ଏବଂ ପାସୱାର୍ଡ୍ ପୁନରୁଦ୍ଧାର ସମୟରେ ଗୁଗଲ୍ reCAPTCHA ସେବା ବ୍ୟବହାର କରୁ", - "cookies.consent.app.title.matomo": "ମାଟୋମୋ", - "cookies.consent.app.description.matomo": "ଆମକୁ ସ୍ଥିତିକ ତଥ୍ୟ ଟ୍ରାକ୍ କରିବା ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ", - "cookies.consent.purpose.functional": "କାର୍ଯ୍ୟାତ୍ମକ", - "cookies.consent.purpose.statistical": "ସ୍ଥିତିକ", - "cookies.consent.purpose.registration-password-recovery": "ରେଜିଷ୍ଟ୍ରେସନ୍ ଏବଂ ପାସୱାର୍ଡ୍ ପୁନରୁଦ୍ଧାର", - "cookies.consent.purpose.sharing": "ଅଂଶୀଦାର କରିବା", - "curation-task.task.citationpage.label": "ଉଦ୍ଧୃତି ପୃଷ୍ଠା ସୃଷ୍ଟି କରନ୍ତୁ", - "curation-task.task.checklinks.label": "ମେଟାଡାଟାରେ ଲିଙ୍କ୍ ଯାଞ୍ଚ କରନ୍ତୁ", - "curation-task.task.noop.label": "NOOP", - "curation-task.task.profileformats.label": "ବିଟଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ପ୍ରୋଫାଇଲ୍ କରନ୍ତୁ", - "curation-task.task.requiredmetadata.label": "ଆବଶ୍ୟକ ମେଟାଡାଟା ପାଇଁ ଯାଞ୍ଚ କରନ୍ତୁ", - "curation-task.task.translate.label": "ମାଇକ୍ରୋସଫ୍ଟ ଅନୁବାଦକ", - "curation-task.task.vscan.label": "ଭାଇରସ୍ ସ୍କାନ୍", - "curation-task.task.registerdoi.label": "DOI ରେଜିଷ୍ଟର୍ କରନ୍ତୁ", - "curation.form.task-select.label": "କାର୍ଯ୍ୟ:", - "curation.form.submit": "ଆରମ୍ଭ କରନ୍ତୁ", - "curation.form.submit.success.head": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ ସଫଳତାର ସହିତ ଆରମ୍ଭ ହୋଇଛି", - "curation.form.submit.success.content": "ଆପଣଙ୍କୁ ସମ୍ବନ୍ଧିତ ପ୍ରକ୍ରିୟା ପୃଷ୍ଠାକୁ ପୁନଃନିର୍ଦ୍ଦେଶିତ କରାଯିବ।", - "curation.form.submit.error.head": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ ଚଳାଇବାରେ ବିଫଳ ହେଲା", - "curation.form.submit.error.content": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ ଆରମ୍ଭ କରିବାବେଳେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", - "curation.form.submit.error.invalid-handle": "ଏହି ବସ୍ତୁ ପାଇଁ ହ୍ୟାଣ୍ଡଲ୍ ନିର୍ଣ୍ଣୟ କରିପାରିଲା ନାହିଁ", - "curation.form.handle.label": "ହ୍ୟାଣ୍ଡଲ୍:", - "curation.form.handle.hint": "ସୂଚନା: ସମଗ୍ର ସାଇଟ୍ ରେ ଏକ କାର୍ଯ୍ୟ ଚଳାଇବା ପାଇଁ [your-handle-prefix]/0 ପ୍ରବେଶ କରନ୍ତୁ (ସମସ୍ତ କାର୍ଯ୍ୟ ଏହି କ୍ଷମତାକୁ ସମର୍ଥନ କରିପାରିବ ନାହିଁ)", - "deny-request-copy.email.message": "ପ୍ରିୟ {{ recipientName }},\nଆପଣଙ୍କ ଅନୁରୋଧର ପ୍ରତିକ୍ରିୟାରେ ମୁଁ ଦୁଃଖିତ ଯେ ଆପଣଙ୍କୁ ଅନୁରୋଧିତ ଫାଇଲ୍(ଗୁଡିକ)ର ଏକ କପି ପଠାଇବା ସମ୍ଭବ ନୁହେଁ, ଯାହା ଦଲିଲ \"{{ itemUrl }}\" ({{ itemName }}) ସମ୍ବନ୍ଧିତ, ଯାହାର ମୁଁ ଲେଖକ ଅଟେ।\n\nଶୁଭେଚ୍ଛା ସହିତ,\n{{ authorName }} <{{ authorEmail }}>", - "deny-request-copy.email.subject": "ଦଲିଲର କପି ଅନୁରୋଧ", - "deny-request-copy.error": "ଏକ ତ୍ରୁଟି ଘଟିଲା", - "deny-request-copy.header": "ଦଲିଲ କପି ଅନୁରୋଧ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", - "deny-request-copy.intro": "ଏହି ବାର୍ତ୍ତା ଅନୁରୋଧକାରୀକୁ ପଠାଯିବ", - "deny-request-copy.success": "ଦଲିଲ ଅନୁରୋଧ ସଫଳତାର ସହିତ ପ୍ରତ୍ୟାଖ୍ୟାନ ହୋଇଛି", - "dynamic-list.load-more": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", - "dropdown.clear": "ଚୟନ ସଫା କରନ୍ତୁ", - "dropdown.clear.tooltip": "ଚୟନିତ ବିକଳ୍ପ ସଫା କରନ୍ତୁ", - "dso.name.untitled": "ଶୀର୍ଷକହୀନ", - "dso.name.unnamed": "ନାମହୀନ", - "dso-selector.create.collection.head": "ନୂତନ ସଂଗ୍ରହ", - "dso-selector.create.collection.sub-level": "ରେ ଏକ ନୂତନ ସଂଗ୍ରହ ସୃଷ୍ଟି କରନ୍ତୁ", - "dso-selector.create.community.head": "ନୂତନ ସମ୍ପ୍ରଦାୟ", - "dso-selector.create.community.or-divider": "କିମ୍ବା", - "dso-selector.create.community.sub-level": "ରେ ଏକ ନୂତନ ସମ୍ପ୍ରଦାୟ ସୃଷ୍ଟି କରନ୍ତୁ", - "dso-selector.create.community.top-level": "ଏକ ନୂତନ ଟପ୍-ଲେଭେଲ୍ ସମ୍ପ୍ରଦାୟ ସୃଷ୍ଟି କରନ୍ତୁ", - "dso-selector.create.item.head": "ନୂତନ ଆଇଟମ୍", - "dso-selector.create.item.sub-level": "ରେ ଏକ ନୂତନ ଆଇଟମ୍ ସୃଷ୍ଟି କରନ୍ତୁ", - "dso-selector.create.submission.head": "ନୂତନ ଦାଖଲା", - "dso-selector.edit.collection.head": "ସଂଗ୍ରହ ସଂପାଦନ କରନ୍ତୁ", - "dso-selector.edit.community.head": "ସମ୍ପ୍ରଦାୟ ସଂପାଦନ କରନ୍ତୁ", - "dso-selector.edit.item.head": "ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - "dso-selector.error.title": "{{ type }} ଖୋଜିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "dso-selector.export-metadata.dspaceobject.head": "ରୁ ମେଟାଡାଟା ରପ୍ତାନି କରନ୍ତୁ", - "dso-selector.export-batch.dspaceobject.head": "ରୁ ବ୍ୟାଚ୍ ରପ୍ତାନି କରନ୍ତୁ (ZIP)", - "dso-selector.import-batch.dspaceobject.head": "ରୁ ବ୍ୟାଚ୍ ଆମଦାନି କରନ୍ତୁ", - "dso-selector.no-results": "କୌଣସି {{ type }} ମିଳିଲା ନାହିଁ", - "dso-selector.placeholder": "ଏକ {{ type }} ଖୋଜନ୍ତୁ", - "dso-selector.placeholder.type.community": "ସମ୍ପ୍ରଦାୟ", - "dso-selector.placeholder.type.collection": "ସଂଗ୍ରହ", - "dso-selector.placeholder.type.item": "ଆଇଟମ୍", - "dso-selector.select.collection.head": "ଏକ ସଂଗ୍ରହ ଚୟନ କରନ୍ତୁ", - "dso-selector.set-scope.community.head": "ଏକ ଖୋଜା ସ୍କୋପ୍ ଚୟନ କରନ୍ତୁ", - "dso-selector.set-scope.community.button": "ସମସ୍ତ DSpace ଖୋଜନ୍ତୁ", - "dso-selector.set-scope.community.or-divider": "କିମ୍ବା", - "dso-selector.set-scope.community.input-header": "ଏକ ସମ୍ପ୍ରଦାୟ କିମ୍ବା ସଂଗ୍ରହ ଖୋଜନ୍ତୁ", - "dso-selector.claim.item.head": "ପ୍ରୋଫାଇଲ୍ ଟିପ୍ସ", - "dso-selector.claim.item.body": "ଏଗୁଡ଼ିକ ବିଦ୍ୟମାନ ପ୍ରୋଫାଇଲ୍ ଯାହା ଆପଣଙ୍କ ସହିତ ସମ୍ବନ୍ଧିତ ହୋଇପାରେ। ଯଦି ଆପଣ ଏହି ପ୍ରୋଫାଇଲ୍ ମଧ୍ୟରୁ କୌଣସି ଏକରେ ନିଜକୁ ଚିହ୍ନିପାରନ୍ତି, ତାହା ଚୟନ କରନ୍ତୁ ଏବଂ ବିବରଣୀ ପୃଷ୍ଠାରେ, ବିକଳ୍ପ ମଧ୍ୟରୁ, ଏହାକୁ ଦାବି କରିବାକୁ ଚୟନ କରନ୍ତୁ। ଅନ୍ୟଥା ଆପଣ ନିମ୍ନରେ ଥିବା ବଟନ୍ ବ୍ୟବହାର କରି ଏକ ନୂତନ ପ୍ରୋଫାଇଲ୍ ସୃଷ୍ଟି କରିପାରିବେ।", - "dso-selector.claim.item.not-mine-label": "ଏଗୁଡ଼ିକ ମୋର ନୁହେଁ", - "dso-selector.claim.item.create-from-scratch": "ଏକ ନୂତନ ସୃଷ୍ଟି କରନ୍ତୁ", - "dso-selector.results-could-not-be-retrieved": "କିଛି ଭୁଲ୍ ହୋଇଛି, ଦୟାକରି ପୁନର୍ବାର ରିଫ୍ରେସ୍ କରନ୍ତୁ ↻", - "supervision-group-selector.header": "ସୁପରଭିଜନ୍ ଗ୍ରୁପ୍ ସିଲେକ୍ଟର୍", - "supervision-group-selector.select.type-of-order.label": "ଏକ ଅର୍ଡର୍ ପ୍ରକାର ଚୟନ କରନ୍ତୁ", - "supervision-group-selector.select.type-of-order.option.none": "NONE", - "supervision-group-selector.select.type-of-order.option.editor": "ସମ୍ପାଦକ", - "supervision-group-selector.select.type-of-order.option.observer": "ପର୍ଯ୍ୟବେକ୍ଷକ", - "supervision-group-selector.select.group.label": "ଏକ ଗ୍ରୁପ୍ ଚୟନ କରନ୍ତୁ", - "supervision-group-selector.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "supervision-group-selector.button.save": "ସଂରକ୍ଷଣ କରନ୍ତୁ", - "supervision-group-selector.select.type-of-order.error": "ଦୟାକରି ଏକ ଅର୍ଡର୍ ପ୍ରକାର ଚୟନ କରନ୍ତୁ", - "supervision-group-selector.select.group.error": "ଦୟାକରି ଏକ ଗ୍ରୁପ୍ ଚୟନ କରନ୍ତୁ", - "supervision-group-selector.notification.create.success.title": "ଗ୍ରୁପ୍ {{ name }} ପାଇଁ ସୁପରଭିଜନ୍ ଅର୍ଡର୍ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", - "supervision-group-selector.notification.create.failure.title": "ତ୍ରୁଟି", - "supervision-group-selector.notification.create.already-existing": "ଏହି ଆଇଟମ୍ ପାଇଁ ଚୟନିତ ଗ୍ରୁପ୍ ପାଇଁ ଏକ ସୁପରଭିଜନ୍ ଅର୍ଡର୍ ପୂର୍ବରୁ ବିଦ୍ୟମାନ ଅଛି", - "confirmation-modal.export-metadata.header": "{{ dsoName }} ପାଇଁ ମେଟାଡାଟା ରପ୍ତାନି କରନ୍ତୁ", - "confirmation-modal.export-metadata.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ {{ dsoName }} ପାଇଁ ମେଟାଡାଟା ରପ୍ତାନି କରିବାକୁ ଚାହୁଁଛନ୍ତି", - "confirmation-modal.export-metadata.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "confirmation-modal.export-metadata.confirm": "ରପ୍ତାନି କରନ୍ତୁ", - "confirmation-modal.export-batch.header": "{{ dsoName }} ପାଇଁ ବ୍ୟାଚ୍ ରପ୍ତାନି କରନ୍ତୁ (ZIP)", - "confirmation-modal.export-batch.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ {{ dsoName }} ପାଇଁ ବ୍ୟାଚ୍ (ZIP) ରପ୍ତାନି କରିବାକୁ ଚାହୁଁଛନ୍ତି", - "confirmation-modal.export-batch.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "confirmation-modal.export-batch.confirm": "ରପ୍ତାନି କରନ୍ତୁ", - "confirmation-modal.delete-eperson.header": "EPerson \"{{ dsoName }}\" ଡିଲିଟ୍ କରନ୍ତୁ", - "confirmation-modal.delete-eperson.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ EPerson \"{{ dsoName }}\" ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି", - "confirmation-modal.delete-eperson.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "confirmation-modal.delete-eperson.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", - "confirmation-modal.delete-community-collection-logo.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ ଲୋଗୋ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", - "confirmation-modal.delete-profile.header": "ପ୍ରୋଫାଇଲ୍ ଡିଲିଟ୍ କରନ୍ତୁ", - "confirmation-modal.delete-profile.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ ଆପଣଙ୍କର ପ୍ରୋଫାଇଲ୍ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି", - "confirmation-modal.delete-profile.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "confirmation-modal.delete-profile.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", - "confirmation-modal.delete-subscription.header": "ସବସ୍କ୍ରିପସନ୍ ଡିଲିଟ୍ କରନ୍ତୁ", - "confirmation-modal.delete-subscription.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ \"{{ dsoName }}\" ପାଇଁ ସବସ୍କ୍ରିପସନ୍ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି", - "confirmation-modal.delete-subscription.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "confirmation-modal.delete-subscription.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", - "confirmation-modal.review-account-info.header": "ପରିବର୍ତ୍ତନଗୁଡିକ ସଂରକ୍ଷଣ କରନ୍ତୁ", - "confirmation-modal.review-account-info.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ ଆପଣଙ୍କର ପ୍ରୋଫାଇଲ୍ ରେ ପରିବର୍ତ୍ତନଗୁଡିକ ସଂରକ୍ଷଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି", - "confirmation-modal.review-account-info.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "confirmation-modal.review-account-info.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", - "confirmation-modal.review-account-info.save": "ସଂରକ୍ଷଣ କରନ୍ତୁ", - "error.bitstream": "ବିଟଷ୍ଟ୍ରିମ୍ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.browse-by": "ଆଇଟମ୍ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.collection": "ସଂଗ୍ରହ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.collections": "ସଂଗ୍ରହଗୁଡିକ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.community": "ସମ୍ପ୍ରଦାୟ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.identifier": "ଆଇଡେଣ୍ଟିଫାୟର୍ ପାଇଁ କୌଣସି ଆଇଟମ୍ ମିଳିଲା ନାହିଁ", - "error.default": "ତ୍ରୁଟି", - "error.item": "ଆଇଟମ୍ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.items": "ଆଇଟମ୍ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.objects": "ବସ୍ତୁ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.recent-submissions": "ସାମ୍ପ୍ରତିକ ଦାଖଲା ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.profile-groups": "ପ୍ରୋଫାଇଲ୍ ଗ୍ରୁପ୍ ପ୍ରାପ୍ତ କରିବାରେ ତ୍ରୁଟି", - "error.search-results": "ଖୋଜା ଫଳାଫଳ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.invalid-search-query": "ଖୋଜା କ୍ୱେରୀ ବୈଧ ନୁହେଁ। ଦୟାକରି ଏହି ତ୍ରୁଟି ବିଷୟରେ ଅଧିକ ସୂଚନା ପାଇଁ Solr କ୍ୱେରୀ ସିଣ୍ଟାକ୍ସ୍ ସର୍ବୋତ୍ତମ ପ୍ରଥା ଯାଞ୍ଚ କରନ୍ତୁ।", - "error.sub-collections": "ଉପ-ସଂଗ୍ରହ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.sub-communities": "ଉପ-ସମ୍ପ୍ରଦାୟ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.top-level-communities": "ଟପ୍-ଲେଭେଲ୍ ସମ୍ପ୍ରଦାୟ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", - "error.validation.license.notgranted": "ଆପଣଙ୍କର ଦାଖଲା ସମାପ୍ତ କରିବାକୁ ଆପଣ ଏହି ଲାଇସେନ୍ସ୍ ଗ୍ରାଣ୍ଟ୍ କରିବା ଆବଶ୍ୟକ। ଯଦି ଆପଣ ବର୍ତ୍ତମାନ ଏହି ଲାଇସେନ୍ସ୍ ଗ୍ରାଣ୍ଟ୍ କରିବାକୁ ଅସମର୍ଥ, ତେବେ ଆପଣ ଆପଣଙ୍କର କାର୍ଯ୍ୟ ସଂରକ୍ଷଣ କରିପାରିବେ ଏବଂ ପରେ ଫେରିପାରିବେ କିମ୍ବା ଦାଖଲା ହଟାଇପାରିବେ।", - "error.validation.cclicense.required": "ଆପଣଙ୍କର ଦାଖଲା ସମାପ୍ତ କରିବାକୁ ଆପଣ ଏହି cclicense ଗ୍ରାଣ୍ଟ୍ କରିବା ଆବଶ୍ୟକ। ଯଦି ଆପଣ ବର୍ତ୍ତମାନ cclicense ଗ୍ରାଣ୍ଟ୍ କରିବାକୁ ଅସମର୍ଥ, ତେବେ ଆପଣ ଆପଣଙ୍କର କାର୍ଯ୍ୟ ସଂରକ୍ଷଣ କରିପାରିବେ ଏବଂ ପରେ ଫେରିପାରିବେ କିମ୍ବା ଦାଖଲା ହଟାଇପାରିବେ।", - "error.validation.pattern": "ଏହି ଇନପୁଟ୍ ବର୍ତ୍ତମାନ ପ୍ୟାଟର୍ନ୍ ଦ୍ୱାରା ସୀମିତ: {{ pattern }}।", - "error.validation.filerequired": "ଫାଇଲ୍ ଅପଲୋଡ୍ ବାଧ୍ୟତାମୂଳକ", - "error.validation.required": "ଏହି କ୍ଷେତ୍ର ଆବଶ୍ୟକ", - "error.validation.NotValidEmail": "ଏହା ଏକ ବୈଧ ଇମେଲ୍ ନୁହେଁ", - "error.validation.emailTaken": "ଏହି ଇମେଲ୍ ପୂର୍ବରୁ ନିଆଯାଇଛି", - "error.validation.groupExists": "ଏହି ଗ୍ରୁପ୍ ପୂର୍ବରୁ ବିଦ୍ୟମାନ ଅଛି", - "error.validation.metadata.name.invalid-pattern": "ଏହି କ୍ଷେତ୍ରରେ ଡଟ୍, କମା କିମ୍ବା ସ୍ପେସ୍ ରହିପାରିବ ନାହିଁ। ଦୟାକରି ଏଲିମେଣ୍ଟ୍ ଏବଂ କ୍ୱାଲିଫାୟର୍ କ୍ଷେତ୍ରଗୁଡିକ ବ୍ୟବହାର କରନ୍ତୁ", - "error.validation.metadata.name.max-length": "ଏହି କ୍ଷେତ୍ରରେ 32 ରୁ ଅଧିକ ଅକ୍ଷର ରହିପାରିବ ନାହିଁ", - "error.validation.metadata.namespace.max-length": "ଏହି କ୍ଷେତ୍ରରେ 256 ରୁ ଅଧିକ ଅକ୍ଷର ରହିପାରିବ ନାହିଁ", - - "error.validation.metadata.element.invalid-pattern": "ଏହି କ୍ଷେତ୍ରରେ ବିନ୍ଦୁ, କମା କିମ୍ବା ସ୍ଥାନ ଅନ୍ତର୍ଭୁକ୍ତ କରିପାରିବେ ନାହିଁ। ଦୟାକରି Qualifier କ୍ଷେତ୍ର ବ୍ୟବହାର କରନ୍ତୁ", - - "error.validation.metadata.element.max-length": "ଏହି କ୍ଷେତ୍ରରେ ୬୪ ଅକ୍ଷରରୁ ଅଧିକ ଅନ୍ତର୍ଭୁକ୍ତ କରିପାରିବେ ନାହିଁ", - - "error.validation.metadata.qualifier.invalid-pattern": "ଏହି କ୍ଷେତ୍ରରେ ବିନ୍ଦୁ, କମା କିମ୍ବା ସ୍ଥାନ ଅନ୍ତର୍ଭୁକ୍ତ କରିପାରିବେ ନାହିଁ", - - "error.validation.metadata.qualifier.max-length": "ଏହି କ୍ଷେତ୍ରରେ ୬୪ ଅକ୍ଷରରୁ ଅଧିକ ଅନ୍ତର୍ଭୁକ୍ତ କରିପାରିବେ ନାହିଁ", - - "feed.description": "ସିଣ୍ଡିକେସନ ଫିଡ୍", - - "file-download-link.restricted": "ସୀମିତ ବିଟଷ୍ଟ୍ରିମ୍", - - "file-download-link.secure-access": "ସୁରକ୍ଷିତ ପ୍ରବେଶ ଟୋକେନ୍ ମାଧ୍ୟମରେ ସୀମିତ ବିଟଷ୍ଟ୍ରିମ୍ ଉପଲବ୍ଧ", - - "file-section.error.header": "ଏହି ଆଇଟମ୍ ପାଇଁ ଫାଇଲ୍ ପ୍ରାପ୍ତ କରିବାରେ ତ୍ରୁଟି", - - "footer.copyright": "କପିରାଇଟ୍ © ୨୦୦୨-{{ year }}", - - "footer.link.accessibility": "ସୁଗମତା ସେଟିଂସ୍", - - "footer.link.dspace": "DSpace ସଫ୍ଟୱେର୍", - - "footer.link.lyrasis": "LYRASIS", - - "footer.link.cookies": "କୁକି ସେଟିଂସ୍", - - "footer.link.privacy-policy": "ଗୋପନୀୟତା ନୀତି", - - "footer.link.end-user-agreement": "ଶେଷ ଉପଭୋକ୍ତା ଚୁକ୍ତିନାମା", - - "footer.link.feedback": "ମତାମତ ପଠାନ୍ତୁ", - - "footer.link.coar-notify-support": "COAR ନୋଟିଫାଇ", - - "forgot-email.form.header": "ପାସୱାର୍ଡ ଭୁଲି ଗଲେ", - - "forgot-email.form.info": "ଆକାଉଣ୍ଟ୍ ସହିତ ଜଡିତ ଇମେଲ୍ ଠିକଣା ପ୍ରବେଶ କରନ୍ତୁ।", - - "forgot-email.form.email": "ଇମେଲ୍ ଠିକଣା *", - - "forgot-email.form.email.error.required": "ଦୟାକରି ଏକ ଇମେଲ୍ ଠିକଣା ପୂରଣ କରନ୍ତୁ", - - "forgot-email.form.email.error.not-email-form": "ଦୟାକରି ଏକ ବୈଧ ଇମେଲ୍ ଠିକଣା ପୂରଣ କରନ୍ତୁ", - - "forgot-email.form.email.hint": "ଏହି ଠିକଣାକୁ ଏକ ଇମେଲ୍ ପଠାଯିବ ଯାହା ଅଧିକ ସୂଚନା ସହିତ ଏକ ବିଶେଷ URL ଅନ୍ତର୍ଭୁକ୍ତ କରିଥାଏ।", - - "forgot-email.form.submit": "ପାସୱାର୍ଡ ରିସେଟ୍ କରନ୍ତୁ", - - "forgot-email.form.success.head": "ପାସୱାର୍ଡ ରିସେଟ୍ ଇମେଲ୍ ପଠାଯାଇଛି", - - "forgot-email.form.success.content": "{{ email }} କୁ ଏକ ଇମେଲ୍ ପଠାଯାଇଛି ଯାହା ଏକ ବିଶେଷ URL ଏବଂ ଅଧିକ ସୂଚନା ଅନ୍ତର୍ଭୁକ୍ତ କରିଥାଏ।", - - "forgot-email.form.error.head": "ପାସୱାର୍ଡ ରିସେଟ୍ କରିବାବେଳେ ତ୍ରୁଟି", - - "forgot-email.form.error.content": "ନିମ୍ନଲିଖିତ ଇମେଲ୍ ଠିକଣା ସହିତ ଜଡିତ ଆକାଉଣ୍ଟ୍ ପାଇଁ ପାସୱାର୍ଡ ରିସେଟ୍ କରିବାବେଳେ ଏକ ତ୍ରୁଟି ଘଟିଛି: {{ email }}", - - "forgot-password.title": "ପାସୱାର୍ଡ ଭୁଲି ଗଲେ", - - "forgot-password.form.head": "ପାସୱାର୍ଡ ଭୁଲି ଗଲେ", - - "forgot-password.form.info": "ନିମ୍ନରେ ଥିବା ବାକ୍ସରେ ଏକ ନୂତନ ପାସୱାର୍ଡ ପ୍ରବେଶ କରନ୍ତୁ, ଏବଂ ଏହାକୁ ଦ୍ୱିତୀୟ ବାକ୍ସରେ ପୁନର୍ବାର ଟାଇପ୍ କରି ନିଶ୍ଚିତ କରନ୍ତୁ।", - - "forgot-password.form.card.security": "ସୁରକ୍ଷା", - - "forgot-password.form.identification.header": "ଚିହ୍ନିତ କରନ୍ତୁ", - - "forgot-password.form.identification.email": "ଇମେଲ୍ ଠିକଣା: ", - - "forgot-password.form.label.password": "ପାସୱାର୍ଡ", - - "forgot-password.form.label.passwordrepeat": "ନିଶ୍ଚିତ କରିବାକୁ ପୁନର୍ବାର ଟାଇପ୍ କରନ୍ତୁ", - - "forgot-password.form.error.empty-password": "ଦୟାକରି ଉପରେ ଥିବା ବାକ୍ସରେ ଏକ ପାସୱାର୍ଡ ପ୍ରବେଶ କରନ୍ତୁ।", - - "forgot-password.form.error.matching-passwords": "ପାସୱାର୍ଡଗୁଡିକ ମେଳ ଖାଉନାହିଁ।", - - "forgot-password.form.notification.error.title": "ନୂତନ ପାସୱାର୍ଡ ଦାଖଲ କରିବାବେଳେ ତ୍ରୁଟି", - - "forgot-password.form.notification.success.content": "ପାସୱାର୍ଡ ରିସେଟ୍ ସଫଳ ହୋଇଛି। ଆପଣ ସୃଷ୍ଟି କରାଯାଇଥିବା ଉପଭୋକ୍ତା ଭାବରେ ଲଗ୍ ଇନ୍ ହୋଇଛନ୍ତି।", - - "forgot-password.form.notification.success.title": "ପାସୱାର୍ଡ ରିସେଟ୍ ସମ୍ପୂର୍ଣ୍ଣ", - - "forgot-password.form.submit": "ପାସୱାର୍ଡ ଦାଖଲ କରନ୍ତୁ", - - "form.add": "ଅଧିକ ଯୋଡନ୍ତୁ", - - "form.add-help": "ବର୍ତ୍ତମାନର ପ୍ରବେଶ ଯୋଡିବାକୁ ଏବଂ ଅନ୍ୟ ଏକ ଯୋଡିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", - - "form.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "form.clear": "ସଫା କରନ୍ତୁ", - - "form.clear-help": "ଚୟନିତ ମୂଲ୍ୟ ଅପସାରଣ କରିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", - - "form.discard": "ପରିତ୍ୟାଗ କରନ୍ତୁ", - - "form.drag": "ଟାଣନ୍ତୁ", - - "form.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", - - "form.edit-help": "ଚୟନିତ ମୂଲ୍ୟ ସମ୍ପାଦନ କରିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", - - "form.first-name": "ପ୍ରଥମ ନାମ", - - "form.group-collapse": "ସଙ୍କୁଚିତ କରନ୍ତୁ", - - "form.group-collapse-help": "ସଙ୍କୁଚିତ କରିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", - - "form.group-expand": "ପ୍ରସାରିତ କରନ୍ତୁ", - - "form.group-expand-help": "ଅଧିକ ଉପାଦାନ ଯୋଡିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", - - "form.last-name": "ଶେଷ ନାମ", - - "form.loading": "ଲୋଡ୍ ହେଉଛି...", - - "form.lookup": "ଖୋଜନ୍ତୁ", - - "form.lookup-help": "ଏକ ପୂର୍ବରୁ ଥିବା ସମ୍ପର୍କ ଖୋଜିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", - - "form.no-results": "କୌଣସି ଫଳାଫଳ ମିଳିଲା ନାହିଁ", - - "form.no-value": "କୌଣସି ମୂଲ୍ୟ ପ୍ରବେଶ କରାଯାଇନାହିଁ", - - "form.other-information.email": "ଇମେଲ୍", - - "form.other-information.first-name": "ପ୍ରଥମ ନାମ", - - "form.other-information.insolr": "Solr ସୂଚିକାରେ", - - "form.other-information.institution": "ଅନୁଷ୍ଠାନ", - - "form.other-information.last-name": "ଶେଷ ନାମ", - - "form.other-information.orcid": "ORCID", - - "form.remove": "ଅପସାରଣ କରନ୍ତୁ", - - "form.save": "ସଂରକ୍ଷଣ କରନ୍ତୁ", - - "form.save-help": "ପରିବର୍ତ୍ତନଗୁଡିକୁ ସଂରକ୍ଷଣ କରନ୍ତୁ", - - "form.search": "ସନ୍ଧାନ କରନ୍ତୁ", - - "form.search-help": "ଏକ ପୂର୍ବରୁ ଥିବା ପତ୍ରବିନିମୟ ଖୋଜିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", - - "form.submit": "ସଂରକ୍ଷଣ କରନ୍ତୁ", - - "form.create": "ସୃଷ୍ଟି କରନ୍ତୁ", - - "form.number-picker.decrement": "{{field}} ହ୍ରାସ କରନ୍ତୁ", - - "form.number-picker.increment": "{{field}} ବୃଦ୍ଧି କରନ୍ତୁ", - - "form.repeatable.sort.tip": "ନୂତନ ସ୍ଥାନରେ ଆଇଟମ୍ ଡ୍ରପ୍ କରନ୍ତୁ", - - "grant-deny-request-copy.deny": "ପ୍ରବେଶ ଅନୁରୋଧ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", - - "grant-deny-request-copy.revoke": "ପ୍ରବେଶ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", - - "grant-deny-request-copy.email.back": "ପଛକୁ ଯାଆନ୍ତୁ", - - "grant-deny-request-copy.email.message": "ବୈକଳ୍ପିକ ଅତିରିକ୍ତ ସନ୍ଦେଶ", - - "grant-deny-request-copy.email.message.empty": "ଦୟାକରି ଏକ ସନ୍ଦେଶ ପ୍ରବେଶ କରନ୍ତୁ", - - "grant-deny-request-copy.email.permissions.info": "ଆପଣ ଏହି ଅନୁରୋଧଗୁଡିକୁ ଉତ୍ତର ଦେବା ପାଇଁ ଦଲିଲରେ ଥିବା ପ୍ରବେଶ ନିର୍ବାଚନଗୁଡିକୁ ପୁନର୍ବିଚାର କରିପାରିବେ। ଯଦି ଆପଣ ରିପୋଜିଟରି ପ୍ରଶାସକଙ୍କୁ ଏହି ନିର୍ବାଚନଗୁଡିକୁ ଅପସାରଣ କରିବାକୁ ଅନୁରୋଧ କରିବାକୁ ଚାହୁଁଛନ୍ତି, ଦୟାକରି ନିମ୍ନରେ ଥିବା ବାକ୍ସରେ ଚେକ୍ କରନ୍ତୁ।", - - "grant-deny-request-copy.email.permissions.label": "ଖୋଲା ପ୍ରବେଶକୁ ପରିବର୍ତ୍ତନ କରନ୍ତୁ", - - "grant-deny-request-copy.email.send": "ପଠାନ୍ତୁ", - - "grant-deny-request-copy.email.subject": "ବିଷୟ", - - "grant-deny-request-copy.email.subject.empty": "ବିଷୟ ପ୍ରବେଶ କରନ୍ତୁ", - "grant-deny-request-copy.grant": "ଅନୁରୋଧ ପ୍ରବେଶ ଅନୁମତି ଦିଅନ୍ତୁ", - "grant-deny-request-copy.header": "ଡକ୍ୟୁମେଣ୍ଟ କପି ଅନୁରୋଧ", - "grant-deny-request-copy.home-page": "ମୋତେ ମୂଳପୃଷ୍ଠାକୁ ନିଅନ୍ତୁ", - "grant-deny-request-copy.intro1": "ଯଦି ଆପଣ ଡକ୍ୟୁମେଣ୍ଟ {{ name }}ର ଲେଖକଙ୍କ ମଧ୍ୟରୁ ଜଣେ, ତେବେ ଦୟାକରି ନିମ୍ନଲିଖିତ ବିକଳ୍ପଗୁଡ଼ିକ ମଧ୍ୟରୁ ଗୋଟିଏ ବ୍ୟବହାର କରି ଉପଭୋକ୍ତାଙ୍କ ଅନୁରୋଧକୁ ପ୍ରତିକ୍ରିୟା ଦିଅନ୍ତୁ।", - "grant-deny-request-copy.intro2": "ଏକ ବିକଳ୍ପ ଚୟନ କରିବା ପରେ, ଆପଣଙ୍କୁ ଏକ ପ୍ରସ୍ତାବିତ ଇମେଲ୍ ପ୍ରତିକ୍ରିୟା ଦେଖାଯିବ ଯାହାକୁ ଆପଣ ସମ୍ପାଦନ କରିପାରିବେ।", - "grant-deny-request-copy.previous-decision": "ଏହି ଅନୁରୋଧକୁ ପୂର୍ବରୁ ଏକ ସୁରକ୍ଷିତ ପ୍ରବେଶ ଟୋକେନ୍ ସହିତ ଅନୁମତି ଦିଆଯାଇଥିଲା। ଆପଣ ବର୍ତ୍ତମାନ ଏହି ପ୍ରବେଶକୁ ବାତିଲ୍ କରିପାରିବେ ଯାହାଦ୍ୱାରା ପ୍ରବେଶ ଟୋକେନ୍ ତୁରନ୍ତ ଅବୈଧ ହେବ", - "grant-deny-request-copy.processed": "ଏହି ଅନୁରୋଧକୁ ପୂର୍ବରୁ ପ୍ରକ୍ରିୟାକରଣ କରାଯାଇଛି। ଆପଣ ନିମ୍ନରେ ଥିବା ବଟନ୍ ବ୍ୟବହାର କରି ମୂଳପୃଷ୍ଠାକୁ ଫେରିପାରିବେ।", - "grant-request-copy.email.subject": "ଡକ୍ୟୁମେଣ୍ଟର କପି ଅନୁରୋଧ", - "grant-request-copy.error": "ଏକ ତ୍ରୁଟି ଘଟିଲା", - "grant-request-copy.header": "ଡକ୍ୟୁମେଣ୍ଟ କପି ଅନୁରୋଧକୁ ଅନୁମତି ଦିଅନ୍ତୁ", - "grant-request-copy.intro.attachment": "ଅନୁରୋଧକାରୀଙ୍କୁ ଏକ ସନ୍ଦେଶ ପଠାଯିବ। ଅନୁରୋଧିତ ଡକ୍ୟୁମେଣ୍ଟ(ଗୁଡ଼ିକ) ସଂଲଗ୍ନ ହେବ।", - "grant-request-copy.intro.link": "ଅନୁରୋଧକାରୀଙ୍କୁ ଏକ ସନ୍ଦେଶ ପଠାଯିବ। ଅନୁରୋଧିତ ଡକ୍ୟୁମେଣ୍ଟ(ଗୁଡ଼ିକ)କୁ ପ୍ରବେଶ ପ୍ରଦାନ କରୁଥିବା ଏକ ସୁରକ୍ଷିତ ଲିଙ୍କ୍ ସଂଲଗ୍ନ ହେବ। ଲିଙ୍କ୍ ନିମ୍ନରେ ଥିବା \"ପ୍ରବେଶ ସମୟ\" ମେନୁରେ ଚୟନ କରାଯାଇଥିବା ସମୟ ପର୍ଯ୍ୟନ୍ତ ପ୍ରବେଶ ପ୍ରଦାନ କରିବ।", - "grant-request-copy.intro.link.preview": "ନିମ୍ନରେ ଅନୁରୋଧକାରୀଙ୍କୁ ପଠାଯିବାକୁ ଥିବା ଲିଙ୍କ୍ର ଏକ ପ୍ରିଭ୍ୟୁ ଦେଖାଯାଉଛି:", - "grant-request-copy.success": "ଆଇଟମ୍ ଅନୁରୋଧ ସଫଳତାର ସହିତ ଅନୁମତି ଦିଆଗଲା", - "grant-request-copy.access-period.header": "ପ୍ରବେଶ ସମୟ", - "grant-request-copy.access-period.+1DAY": "1 ଦିନ", - "grant-request-copy.access-period.+7DAYS": "1 ସପ୍ତାହ", - "grant-request-copy.access-period.+1MONTH": "1 ମାସ", - "grant-request-copy.access-period.+3MONTHS": "3 ମାସ", - "grant-request-copy.access-period.FOREVER": "ଚିରକାଳୀନ", - "health.breadcrumbs": "ସ୍ୱାସ୍ଥ୍ୟ", - "health-page.heading": "ସ୍ୱାସ୍ଥ୍ୟ", - "health-page.info-tab": "ସୂଚନା", - "health-page.status-tab": "ସ୍ଥିତି", - "health-page.error.msg": "ସ୍ୱାସ୍ଥ୍ୟ ଯାଞ୍ଚ ସେବା ଅସ୍ଥାୟୀ ଭାବରେ ଅପ୍ରାପ୍ୟ", - "health-page.property.status": "ସ୍ଥିତି କୋଡ୍", - "health-page.section.db.title": "ଡାଟାବେସ୍", - "health-page.section.geoIp.title": "ଜିଓଆଇପି", - "health-page.section.solrAuthorityCore.title": "Solr: ପ୍ରାଧିକୃତ କୋର୍", - "health-page.section.solrOaiCore.title": "Solr: OAI କୋର୍", - "health-page.section.solrSearchCore.title": "Solr: ସନ୍ଧାନ କୋର୍", - "health-page.section.solrStatisticsCore.title": "Solr: ପରିସଂଖ୍ୟାନ କୋର୍", - "health-page.section-info.app.title": "ଆପ୍ଲିକେସନ୍ ବ୍ୟାକେଣ୍ଡ", - "health-page.section-info.java.title": "ଜାଭା", - "health-page.status": "ସ୍ଥିତି", - "health-page.status.ok.info": "କାର୍ଯ୍ୟକାରୀ", - "health-page.status.error.info": "ସମସ୍ୟା ଚିହ୍ନଟ ହୋଇଛି", - "health-page.status.warning.info": "ସମ୍ଭାବ୍ୟ ସମସ୍ୟା ଚିହ୍ନଟ ହୋଇଛି", - "health-page.title": "ସ୍ୱାସ୍ଥ୍ୟ", - "health-page.section.no-issues": "କୌଣସି ସମସ୍ୟା ଚିହ୍ନଟ ହୋଇନାହିଁ", - "home.description": "", - "home.breadcrumbs": "ମୂଳପୃଷ୍ଠା", - "home.search-form.placeholder": "ଭଣ୍ଡାର ଖୋଜନ୍ତୁ ...", - "home.title": "ମୂଳପୃଷ୍ଠା", - "home.top-level-communities.head": "DSpaceରେ ସମ୍ପ୍ରଦାୟଗୁଡ଼ିକ", - "home.top-level-communities.help": "ଏହାର ସଂଗ୍ରହଗୁଡ଼ିକୁ ବ୍ରାଉଜ୍ କରିବାକୁ ଏକ ସମ୍ପ୍ରଦାୟ ଚୟନ କରନ୍ତୁ।", - "info.accessibility-settings.breadcrumbs": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍", - "info.accessibility-settings.cookie-warning": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍ ସଞ୍ଚୟ କରିବା ବର୍ତ୍ତମାନ ସମ୍ଭବ ନୁହେଁ। କିମ୍ବା ତଥ୍ୟରେ ସେଟିଂସ୍ ସଞ୍ଚୟ କରିବାକୁ ଲଗ୍ ଇନ୍ କରନ୍ତୁ, କିମ୍ବା ପୃଷ୍ଠାର ତଳେ ଥିବା 'କୁକି ସେଟିଂସ୍' ମେନୁ ବ୍ୟବହାର କରି 'ଅଭିଗମ୍ୟତା ସେଟିଂସ୍' କୁକି ଗ୍ରହଣ କରନ୍ତୁ। ଥରେ କୁକି ଗ୍ରହଣ କରାଯାଇଗଲେ, ଆପଣ ଏହି ସନ୍ଦେଶକୁ ଅପସାରଣ କରିବାକୁ ପୃଷ୍ଠାକୁ ପୁନର୍ବାର ଲୋଡ୍ କରିପାରିବେ।", - "info.accessibility-settings.disableNotificationTimeOut.label": "ସମୟ ସମାପ୍ତି ପରେ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ବନ୍ଦ କରନ୍ତୁ", - "info.accessibility-settings.disableNotificationTimeOut.hint": "ଯେତେବେଳେ ଏହି ଟୋଗଲ୍ ସକ୍ରିୟ ହୁଏ, ସମୟ ସମାପ୍ତି ପରେ ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ବନ୍ଦ ହେବ। ଯେତେବେଳେ ନିଷ୍କ୍ରିୟ ହୁଏ, ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକ ହସ୍ତଚାଳିତ ଭାବରେ ବନ୍ଦ ନହେବା ପର୍ଯ୍ୟନ୍ତ ଖୋଲା ରହିବ।", - "info.accessibility-settings.failed-notification": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍ ସଞ୍ଚୟ କରିବାରେ ବିଫଳ", - "info.accessibility-settings.invalid-form-notification": "ସଞ୍ଚୟ କରାଯାଇନାହିଁ। ଫର୍ମରେ ଅବୈଧ ମୂଲ୍ୟଗୁଡ଼ିକ ଅଛି।", - "info.accessibility-settings.liveRegionTimeOut.label": "ARIA ଲାଇଭ୍ ଅଞ୍ଚଳ ସମୟ ସମାପ୍ତି (ସେକେଣ୍ଡରେ)", - "info.accessibility-settings.liveRegionTimeOut.hint": "ସମୟ ଯାହା ପରେ ARIA ଲାଇଭ୍ ଅଞ୍ଚଳରେ ଥିବା ଏକ ସନ୍ଦେଶ ଅଦୃଶ୍ୟ ହୁଏ। ARIA ଲାଇଭ୍ ଅଞ୍ଚଳଗୁଡ଼ିକ ପୃଷ୍ଠାରେ ଦୃଶ୍ୟମାନ ନୁହେଁ, କିନ୍ତୁ ସ୍କ୍ରିନ୍ ରିଡର୍ ପାଇଁ ବିଜ୍ଞପ୍ତି (କିମ୍ବା ଅନ୍ୟାନ୍ୟ କାର୍ଯ୍ୟ)ର ଘୋଷଣା ପ୍ରଦାନ କରନ୍ତି।", - "info.accessibility-settings.liveRegionTimeOut.invalid": "ଲାଇଭ୍ ଅଞ୍ଚଳ ସମୟ ସମାପ୍ତି 0 ଠାରୁ ବଡ଼ ହେବା ଆବଶ୍ୟକ", - "info.accessibility-settings.notificationTimeOut.label": "ବିଜ୍ଞପ୍ତି ସମୟ ସମାପ୍ତି (ସେକେଣ୍ଡରେ)", - "info.accessibility-settings.notificationTimeOut.hint": "ସମୟ ଯାହା ପରେ ଏକ ବିଜ୍ଞପ୍ତି ଅଦୃଶ୍ୟ ହୁଏ।", - "info.accessibility-settings.notificationTimeOut.invalid": "ବିଜ୍ଞପ୍ତି ସମୟ ସମାପ୍ତି 0 ଠାରୁ ବଡ଼ ହେବା ଆବଶ୍ୟକ", - "info.accessibility-settings.save-notification.cookie": "ସେଟିଂସ୍ ସ୍ଥାନୀୟ ଭାବରେ ସଫଳତାର ସହିତ ସଞ୍ଚୟ ହୋଇଛି।", - "info.accessibility-settings.save-notification.metadata": "ଉପଯୋଗକର୍ତ୍ତା ପ୍ରୋଫାଇଲରେ ସେଟିଂସ୍ ସଫଳତାର ସହିତ ସଞ୍ଚୟ ହୋଇଛି।", - "info.accessibility-settings.reset-failed": "ପୁନଃସେଟ୍ କରିବାରେ ବିଫଳ। କିମ୍ବା ଲଗ୍ ଇନ୍ କରନ୍ତୁ କିମ୍ବା 'ଅଭିଗମ୍ୟତା ସେଟିଂସ୍' କୁକି ଗ୍ରହଣ କରନ୍ତୁ।", - "info.accessibility-settings.reset-notification": "ସେଟିଂସ୍ ସଫଳତାର ସହିତ ପୁନଃସେଟ୍ ହୋଇଛି।", - "info.accessibility-settings.reset": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍ ପୁନଃସେଟ୍ କରନ୍ତୁ", - "info.accessibility-settings.submit": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍ ସଞ୍ଚୟ କରନ୍ତୁ", - "info.accessibility-settings.title": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍", - "info.end-user-agreement.accept": "ମୁଁ ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା ପଢ଼ିଛି ଏବଂ ମୁଁ ସହମତ", - "info.end-user-agreement.accept.error": "ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା ଗ୍ରହଣ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "info.end-user-agreement.accept.success": "ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା ସଫଳତାର ସହିତ ଅଦ୍ୟତନ ହୋଇଛି", - "info.end-user-agreement.breadcrumbs": "ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା", - "info.end-user-agreement.buttons.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "info.end-user-agreement.buttons.save": "ସଞ୍ଚୟ କରନ୍ତୁ", - "info.end-user-agreement.head": "ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା", - "info.end-user-agreement.title": "ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା", - "info.end-user-agreement.hosting-country": "ଯୁକ୍ତରାଷ୍ଟ୍ର ଆମେରିକା", - "info.privacy.breadcrumbs": "ଗୋପନୀୟତା ବିବୃତି", - "info.privacy.head": "ଗୋପନୀୟତା ବିବୃତି", - "info.privacy.title": "ଗୋପନୀୟତା ବିବୃତି", - "info.feedback.breadcrumbs": "ମତାମତ", - "info.feedback.head": "ମତାମତ", - "info.feedback.title": "ମତାମତ", - "info.feedback.info": "DSpace ସିଷ୍ଟମ୍ ବିଷୟରେ ଆପଣଙ୍କର ମତାମତ ଅଂଶୀଦାର କରିବାକୁ ଧନ୍ୟବାଦ! ଆପଣଙ୍କର ମନ୍ତବ୍ୟଗୁଡ଼ିକ ପ୍ରଶଂସନୀୟ!", - "info.feedback.email_help": "ଆପଣଙ୍କ ମତାମତ ଉପରେ ଅନୁସରଣ କରିବାକୁ ଏହି ଠିକଣା ବ୍ୟବହାର କରାଯିବ।", - "info.feedback.send": "ମତାମତ ପଠାନ୍ତୁ", - "info.feedback.comments": "ମନ୍ତବ୍ୟ", - "info.feedback.email-label": "ଆପଣଙ୍କର ଇମେଲ୍", - "info.feedback.create.success": "ମତାମତ ସଫଳତାର ସହିତ ପଠାଯାଇଛି!", - "info.feedback.error.email.required": "ଏକ ବୈଧ ଇମେଲ୍ ଠିକଣା ଆବଶ୍ୟକ", - "info.feedback.error.message.required": "ଏକ ମନ୍ତବ୍ୟ ଆବଶ୍ୟକ", - "info.feedback.page-label": "ପୃଷ୍ଠା", - "info.feedback.page_help": "ଆପଣଙ୍କ ମତାମତ ସହିତ ସମ୍ବନ୍ଧିତ ପୃଷ୍ଠା", - "info.coar-notify-support.title": "COAR ନୋଟିଫାଇ ସମର୍ଥନ", - "info.coar-notify-support.breadcrumbs": "COAR ନୋଟିଫାଇ ସମର୍ଥନ", - "item.alerts.private": "ଏହି ଆଇଟମ୍ ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ", - "item.alerts.withdrawn": "ଏହି ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର କରାଯାଇଛି", - "item.alerts.reinstate-request": "ପୁନଃସ୍ଥାପନ ଅନୁରୋଧ", - "quality-assurance.event.table.person-who-requested": "ଅନୁରୋଧ କରିଥିବା ବ୍ୟକ୍ତି", - "item.edit.authorizations.heading": "ଏହି ସମ୍ପାଦକ ସହିତ, ଆପଣ ଏକ ଆଇଟମ୍ ନୀତିଗୁଡ଼ିକୁ ଦେଖିପାରିବେ ଏବଂ ପରିବର୍ତ୍ତନ କରିପାରିବେ, ଏବଂ ପୃଷ୍ଠା ସଂଖ୍ୟା ଉପରେ ଡ୍ରପ୍ କରି ଏକ ବିଟଷ୍ଟ୍ରିମ୍ କୁ ଏକ ଭିନ୍ନ ପୃଷ୍ଠାକୁ ଘୁଞ୍ଚାଇପାରିବେ।", - "item.edit.authorizations.title": "ଆଇଟମ୍ ନୀତିଗୁଡ଼ିକୁ ସମ୍ପାଦନ କରନ୍ତୁ", - "item.badge.status": "ଆଇଟମ୍ ସ୍ଥିତି:", - "item.badge.private": "ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ", - "item.badge.withdrawn": "ପ୍ରତ୍ୟାହାର କରାଯାଇଛି", - "item.bitstreams.upload.bundle": "ବଣ୍ଡଲ୍", - "item.bitstreams.upload.bundle.placeholder": "ଏକ ବଣ୍ଡଲ୍ ଚୟନ କରନ୍ତୁ କିମ୍ବା ନୂତନ ବଣ୍ଡଲ୍ ନାମ ପ୍ରବେଶ କରନ୍ତୁ", - "item.bitstreams.upload.bundle.new": "ବଣ୍ଡଲ୍ ସୃଷ୍ଟି କରନ୍ତୁ", - "item.bitstreams.upload.bundles.empty": "ଏହି ଆଇଟମ୍ ରେ କୌଣସି ବଣ୍ଡଲ୍ ନାହିଁ ଯାହାକୁ ଏକ ବିଟଷ୍ଟ୍ରିମ୍ ଅପଲୋଡ୍ କରାଯାଇପାରିବ।", - "item.bitstreams.upload.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "item.bitstreams.upload.drop-message": "ଅପଲୋଡ୍ କରିବାକୁ ଏକ ଫାଇଲ୍ ଡ୍ରପ୍ କରନ୍ତୁ", - "item.bitstreams.upload.item": "ଆଇଟମ୍: ", - "item.bitstreams.upload.notifications.bundle.created.content": "ନୂତନ ବଣ୍ଡଲ୍ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି।", - "item.bitstreams.upload.notifications.bundle.created.title": "ବଣ୍ଡଲ୍ ସୃଷ୍ଟି ହୋଇଛି", - "item.bitstreams.upload.notifications.upload.failed": "ଅପଲୋଡ୍ ବିଫଳ ହୋଇଛି। ଦୟାକରି ପୁନରାବୃତ୍ତି କରିବା ପୂର୍ବରୁ ବିଷୟବସ୍ତୁ ଯାଞ୍ଚ କରନ୍ତୁ।", - "item.bitstreams.upload.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଅପଲୋଡ୍ କରନ୍ତୁ", - "item.edit.bitstreams.bundle.edit.buttons.upload": "ଅପଲୋଡ୍ କରନ୍ତୁ", - "item.edit.bitstreams.bundle.displaying": "ବର୍ତ୍ତମାନ {{ total }} ରୁ {{ amount }} ବିଟଷ୍ଟ୍ରିମ୍ ପ୍ରଦର୍ଶିତ ହେଉଛି।", - "item.edit.bitstreams.bundle.load.all": "ସମସ୍ତ ({{ total }}) ଲୋଡ୍ କରନ୍ତୁ", - "item.edit.bitstreams.bundle.load.more": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", - "item.edit.bitstreams.bundle.name": "ବଣ୍ଡଲ୍: {{ name }}", - "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} ବଣ୍ଡଲ୍ ରେ ଥିବା ବିଟଷ୍ଟ୍ରିମ୍", - "item.edit.bitstreams.bundle.tooltip": "ଆପଣ ଏକ ବିଟଷ୍ଟ୍ରିମ୍ କୁ ପୃଷ୍ଠା ସଂଖ୍ୟା ଉପରେ ଡ୍ରପ୍ କରି ଏକ ଭିନ୍ନ ପୃଷ୍ଠାକୁ ଘୁଞ୍ଚାଇପାରିବେ।", - "item.edit.bitstreams.discard-button": "ପରିତ୍ୟାଗ କରନ୍ତୁ", - "item.edit.bitstreams.edit.buttons.download": "ଡାଉନଲୋଡ୍ କରନ୍ତୁ", - "item.edit.bitstreams.edit.buttons.drag": "ଟାଣନ୍ତୁ", - "item.edit.bitstreams.edit.buttons.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", - "item.edit.bitstreams.edit.buttons.remove": "ଅପସାରଣ କରନ୍ତୁ", - "item.edit.bitstreams.edit.buttons.undo": "ପରିବର୍ତ୍ତନଗୁଡ଼ିକୁ ପ୍ରତ୍ୟାବର୍ତ୍ତନ କରନ୍ତୁ", - "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} କୁ ସ୍ଥିତି {{ toIndex }} କୁ ଫେରାଇ ଦିଆଯାଇଛି ଏବଂ ଏହା ବର୍ତ୍ତମାନ ଚୟନିତ ନୁହେଁ।", - "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} ବର୍ତ୍ତମାନ ଚୟନିତ ନୁହେଁ।", - "item.edit.bitstreams.edit.live.loading": "ଘୁଞ୍ଚାଇବା ସମାପ୍ତ ହେବା ପର୍ଯ୍ୟନ୍ତ ଅପେକ୍ଷା କରୁଛି।", - "item.edit.bitstreams.edit.live.select": "{{ bitstream }} ଚୟନିତ ହୋଇଛି।", - "item.edit.bitstreams.edit.live.move": "{{ bitstream }} ବର୍ତ୍ତମାନ ସ୍ଥିତି {{ toIndex }} ରେ ଅଛି।", - "item.edit.bitstreams.empty": "ଏହି ଆଇଟମ୍ ରେ କୌଣସି ବିଟଷ୍ଟ୍ରିମ୍ ନାହିଁ। ଗୋଟିଏ ସୃଷ୍ଟି କରିବାକୁ ଅପଲୋଡ୍ ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ।", - "item.edit.bitstreams.info-alert": "ବିଟଷ୍ଟ୍ରିମ୍ ଗୁଡ଼ିକୁ ସେମାନଙ୍କ ବଣ୍ଡଲ୍ ମଧ୍ୟରେ ଡ୍ରାଗ୍ ହ୍ୟାଣ୍ଡଲ୍ ଧରି ଏବଂ ମାଉସ୍ ଘୁଞ୍ଚାଇ ପୁନର୍ବିନ୍ୟାସ କରାଯାଇପାରିବ। ବିକଳ୍ପ ଭାବରେ, ନିମ୍ନଲିଖିତ ଉପାୟରେ କିବୋର୍ଡ୍ ବ୍ୟବହାର କରି ବିଟଷ୍ଟ୍ରିମ୍ ଗୁଡ଼ିକୁ ଘୁଞ୍ଚାଇପାରିବେ: ବିଟଷ୍ଟ୍ରିମ୍ ର ଡ୍ରାଗ୍ ହ୍ୟାଣ୍ଡଲ୍ ଫୋକସ୍ ରେ ଥିବା ସମୟରେ ଏଣ୍ଟର୍ ଦବାଇ ବିଟଷ୍ଟ୍ରିମ୍ ଚୟନ କରନ୍ତୁ। ବିଟଷ୍ଟ୍ରିମ୍ କୁ ଉପର କିମ୍ବା ତଳକୁ ଘୁଞ୍ଚାଇବାକୁ ଏରୋ କି ବ୍ୟବହାର କରନ୍ତୁ। ବିଟଷ୍ଟ୍ରିମ୍ ର ବର୍ତ୍ତମାନ ସ୍ଥିତି ନିଶ୍ଚିତ କରିବାକୁ ପୁନର୍ବାର ଏଣ୍ଟର୍ ଦବାନ୍ତୁ।", - "item.edit.bitstreams.headers.actions": "କାର୍ଯ୍ୟ", - "item.edit.bitstreams.headers.bundle": "ବଣ୍ଡଲ୍", - "item.edit.bitstreams.headers.description": "ବିବରଣୀ", - "item.edit.bitstreams.headers.format": "ଫର୍ମାଟ୍", - "item.edit.bitstreams.headers.name": "ନାମ", - "item.edit.bitstreams.notifications.discarded.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡ଼ିକୁ ପରିତ୍ୟାଗ କରାଯାଇଛି। ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡ଼ିକୁ ପୁନର୍ସ୍ଥାପନ କରିବାକୁ 'ପ୍ରତ୍ୟାବର୍ତ୍ତନ' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ", - "item.edit.bitstreams.notifications.discarded.title": "ପରିବର୍ତ୍ତନ ପରିତ୍ୟାଗ କରାଯାଇଛି", - "item.edit.bitstreams.notifications.move.failed.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଘୁଞ୍ଚାଇବାରେ ତ୍ରୁଟି", - "item.edit.bitstreams.notifications.move.saved.content": "ଆପଣଙ୍କର ଏହି ଆଇଟମ୍ ର ବିଟଷ୍ଟ୍ରିମ୍ ଏବଂ ବଣ୍ଡଲ୍ ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ସଞ୍ଚୟ ହୋଇଛି।", - "item.edit.bitstreams.notifications.move.saved.title": "ପରିବର୍ତ୍ତନ ସଂରକ୍ଷିତ ହେଲା", - "item.edit.bitstreams.notifications.outdated.content": "ଆପଣ ବର୍ତ୍ତମାନ କାମ କରୁଥିବା ଆଇଟମ୍ ଅନ୍ୟ ଏକ ଉପଯୋଗକର୍ତ୍ତା ଦ୍ୱାରା ପରିବର୍ତ୍ତିତ ହୋଇଛି। ବିବାଦ ରୋକିବା ପାଇଁ ଆପଣଙ୍କର ବର୍ତ୍ତମାନର ପରିବର୍ତ୍ତନଗୁଡିକ ବାତିଲ ହୋଇଛି", - "item.edit.bitstreams.notifications.outdated.title": "ପୁରାତନ ପରିବର୍ତ୍ତନ", - "item.edit.bitstreams.notifications.remove.failed.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଡିଲିଟ୍ କରିବାରେ ତ୍ରୁଟି", - "item.edit.bitstreams.notifications.remove.saved.content": "ଆଇଟମ୍ର ବିଟଷ୍ଟ୍ରିମ୍ ପାଇଁ ଆପଣଙ୍କର ଅପସାରଣ ପରିବର୍ତ୍ତନ ସଂରକ୍ଷିତ ହୋଇଛି।", - "item.edit.bitstreams.notifications.remove.saved.title": "ଅପସାରଣ ପରିବର୍ତ୍ତନ ସଂରକ୍ଷିତ", - "item.edit.bitstreams.reinstate-button": "ପୂର୍ବବତ୍ କରନ୍ତୁ", - "item.edit.bitstreams.save-button": "ସେଭ୍ କରନ୍ତୁ", - "item.edit.bitstreams.upload-button": "ଅପଲୋଡ୍ କରନ୍ତୁ", - "item.edit.bitstreams.load-more.link": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", - "item.edit.delete.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "item.edit.delete.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", - "item.edit.delete.description": "ଆପଣ ନିଶ୍ଚିତ କି ଏହି ଆଇଟମ୍ ସମ୍ପୂର୍ଣ୍ଣ ଭାବରେ ଡିଲିଟ୍ ହେବା ଉଚିତ୍? ସତର୍କତା: ବର୍ତ୍ତମାନ, କୌଣସି ଟୋମ୍ବଷ୍ଟୋନ୍ ଛାଡି ହେବ ନାହିଁ।", - "item.edit.delete.error": "ଆଇଟମ୍ ଡିଲିଟ୍ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "item.edit.delete.header": "ଆଇଟମ୍ ଡିଲିଟ୍ କରନ୍ତୁ: {{ id }}", - "item.edit.delete.success": "ଆଇଟମ୍ ଡିଲିଟ୍ ହୋଇଛି", - "item.edit.head": "ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - "item.edit.breadcrumbs": "ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - "item.edit.tabs.disabled.tooltip": "ଆପଣ ଏହି ଟ୍ୟାବ୍ ପ୍ରବେଶ କରିବାକୁ ଅଧିକୃତ ନୁହଁନ୍ତି", - "item.edit.tabs.mapper.head": "କଲେକ୍ସନ୍ ମ୍ୟାପର୍", - "item.edit.tabs.item-mapper.title": "ଆଇଟମ୍ ସଂପାଦନ - କଲେକ୍ସନ୍ ମ୍ୟାପର୍", - "item.edit.identifiers.doi.status.UNKNOWN": "ଅଜ୍ଞାତ", - "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "ପଞ୍ଜିକରଣ ପାଇଁ ଧାଡିରେ ଅଛି", - "item.edit.identifiers.doi.status.TO_BE_RESERVED": "ସଂରକ୍ଷଣ ପାଇଁ ଧାଡିରେ ଅଛି", - "item.edit.identifiers.doi.status.IS_REGISTERED": "ପଞ୍ଜିକୃତ", - "item.edit.identifiers.doi.status.IS_RESERVED": "ସଂରକ୍ଷିତ", - "item.edit.identifiers.doi.status.UPDATE_RESERVED": "ସଂରକ୍ଷିତ (ଅପଡେଟ୍ ଧାଡିରେ ଅଛି)", - "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "ପଞ୍ଜିକୃତ (ଅପଡେଟ୍ ଧାଡିରେ ଅଛି)", - "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "ଅପଡେଟ୍ ଏବଂ ପଞ୍ଜିକରଣ ପାଇଁ ଧାଡିରେ ଅଛି", - "item.edit.identifiers.doi.status.TO_BE_DELETED": "ଡିଲିଟ୍ ପାଇଁ ଧାଡିରେ ଅଛି", - "item.edit.identifiers.doi.status.DELETED": "ଡିଲିଟ୍ ହୋଇଛି", - "item.edit.identifiers.doi.status.PENDING": "ବିଚାରାଧୀନ (ପଞ୍ଜିକୃତ ନୁହେଁ)", - "item.edit.identifiers.doi.status.MINTED": "ମିଣ୍ଟେଡ୍ (ପଞ୍ଜିକୃତ ନୁହେଁ)", - "item.edit.tabs.status.buttons.register-doi.label": "ଏକ ନୂତନ କିମ୍ବା ବିଚାରାଧୀନ DOI ପଞ୍ଜିକରଣ କରନ୍ତୁ", - "item.edit.tabs.status.buttons.register-doi.button": "DOI ପଞ୍ଜିକରଣ କରନ୍ତୁ...", - "item.edit.register-doi.header": "ଏକ ନୂତନ କିମ୍ବା ବିଚାରାଧୀନ DOI ପଞ୍ଜିକରଣ କରନ୍ତୁ", - "item.edit.register-doi.description": "ନିମ୍ନରେ କୌଣସି ବିଚାରାଧୀନ ପରିଚୟକାରୀ ଏବଂ ଆଇଟମ୍ ମେଟାଡାଟା ସମୀକ୍ଷା କରନ୍ତୁ ଏବଂ DOI ପଞ୍ଜିକରଣ ସହିତ ଆଗେଇବାକୁ ନିଶ୍ଚିତ କରନ୍ତୁ, କିମ୍ବା ବାହାରକୁ ଯିବାକୁ ବାତିଲ୍ କରନ୍ତୁ", - "item.edit.register-doi.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", - "item.edit.register-doi.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "item.edit.register-doi.success": "DOI ସଫଳତାର ସହିତ ପଞ୍ଜିକରଣ ପାଇଁ ଧାଡିରେ ଅଛି।", - "item.edit.register-doi.error": "DOI ପଞ୍ଜିକରଣରେ ତ୍ରୁଟି", - "item.edit.register-doi.to-update": "ନିମ୍ନଲିଖିତ DOI ପୂର୍ବରୁ ମିଣ୍ଟେଡ୍ ହୋଇଛି ଏବଂ ଅନଲାଇନ୍ ପଞ୍ଜିକରଣ ପାଇଁ ଧାଡିରେ ରଖାଯିବ", - "item.edit.item-mapper.buttons.add": "ଚୟନିତ କଲେକ୍ସନ୍ ଗୁଡିକୁ ଆଇଟମ୍ ମ୍ୟାପ୍ କରନ୍ତୁ", - "item.edit.item-mapper.buttons.remove": "ଚୟନିତ କଲେକ୍ସନ୍ ଗୁଡିକ ପାଇଁ ଆଇଟମ୍ର ମ୍ୟାପିଂ ଅପସାରଣ କରନ୍ତୁ", - "item.edit.item-mapper.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "item.edit.item-mapper.description": "ଏହା ହେଉଛି ଆଇଟମ୍ ମ୍ୟାପର୍ ଟୁଲ୍ ଯାହା ପ୍ରଶାସକମାନଙ୍କୁ ଏହି ଆଇଟମ୍ କୁ ଅନ୍ୟ କଲେକ୍ସନ୍ ଗୁଡିକୁ ମ୍ୟାପ୍ କରିବାକୁ ଅନୁମତି ଦେଇଥାଏ। ଆପଣ କଲେକ୍ସନ୍ ଗୁଡିକୁ ସନ୍ଧାନ କରିପାରିବେ ଏବଂ ସେଗୁଡିକୁ ମ୍ୟାପ୍ କରିପାରିବେ, କିମ୍ବା ଆଇଟମ୍ ବର୍ତ୍ତମାନ ମ୍ୟାପ୍ ହୋଇଥିବା କଲେକ୍ସନ୍ ଗୁଡିକର ତାଲିକା ବ୍ରାଉଜ୍ କରିପାରିବେ।", - "item.edit.item-mapper.head": "ଆଇଟମ୍ ମ୍ୟାପର୍ - କଲେକ୍ସନ୍ ଗୁଡିକୁ ଆଇଟମ୍ ମ୍ୟାପ୍ କରନ୍ତୁ", - "item.edit.item-mapper.item": "ଆଇଟମ୍: \"{{name}}\"", - "item.edit.item-mapper.no-search": "ସନ୍ଧାନ କରିବାକୁ ଏକ ପ୍ରଶ୍ନ ପ୍ରବେଶ କରନ୍ତୁ", - "item.edit.item-mapper.notifications.add.error.content": "{{amount}} କଲେକ୍ସନ୍ ଗୁଡିକୁ ଆଇଟମ୍ ମ୍ୟାପିଂ ପାଇଁ ତ୍ରୁଟି ଘଟିଲା।", - "item.edit.item-mapper.notifications.add.error.head": "ମ୍ୟାପିଂ ତ୍ରୁଟି", - "item.edit.item-mapper.notifications.add.success.content": "ଆଇଟମ୍ କୁ {{amount}} କଲେକ୍ସନ୍ ଗୁଡିକୁ ସଫଳତାର ସହିତ ମ୍ୟାପ୍ କରାଯାଇଛି।", - "item.edit.item-mapper.notifications.add.success.head": "ମ୍ୟାପିଂ ସମ୍ପୂର୍ଣ୍ଣ", - "item.edit.item-mapper.notifications.remove.error.content": "{{amount}} କଲେକ୍ସନ୍ ଗୁଡିକୁ ମ୍ୟାପିଂ ଅପସାରଣ ପାଇଁ ତ୍ରୁଟି ଘଟିଲା।", - "item.edit.item-mapper.notifications.remove.error.head": "ମ୍ୟାପିଂ ଅପସାରଣ ତ୍ରୁଟି", - "item.edit.item-mapper.notifications.remove.success.content": "ଆଇଟମ୍ କୁ {{amount}} କଲେକ୍ସନ୍ ଗୁଡିକୁ ମ୍ୟାପିଂ ସଫଳତାର ସହିତ ଅପସାରଣ କରାଯାଇଛି।", - "item.edit.item-mapper.notifications.remove.success.head": "ମ୍ୟାପିଂ ଅପସାରଣ ସମ୍ପୂର୍ଣ୍ଣ", - "item.edit.item-mapper.search-form.placeholder": "କଲେକ୍ସନ୍ ଗୁଡିକୁ ସନ୍ଧାନ କରନ୍ତୁ...", - "item.edit.item-mapper.tabs.browse": "ମ୍ୟାପ୍ ହୋଇଥିବା କଲେକ୍ସନ୍ ଗୁଡିକୁ ବ୍ରାଉଜ୍ କରନ୍ତୁ", - "item.edit.item-mapper.tabs.map": "ନୂତନ କଲେକ୍ସନ୍ ଗୁଡିକୁ ମ୍ୟାପ୍ କରନ୍ତୁ", - "item.edit.metadata.add-button": "ଯୋଡନ୍ତୁ", - "item.edit.metadata.discard-button": "ପରିତ୍ୟାଗ କରନ୍ତୁ", - "item.edit.metadata.edit.language": "ଭାଷା ସଂପାଦନ କରନ୍ତୁ", - "item.edit.metadata.edit.value": "ମୂଲ୍ୟ ସଂପାଦନ କରନ୍ତୁ", - "item.edit.metadata.edit.authority.key": "ପ୍ରାଧିକରଣ କି ସଂପାଦନ କରନ୍ତୁ", - "item.edit.metadata.edit.buttons.enable-free-text-editing": "ମୁକ୍ତ-ପାଠ୍ୟ ସଂପାଦନ ସକ୍ଷମ କରନ୍ତୁ", - "item.edit.metadata.edit.buttons.disable-free-text-editing": "ମୁକ୍ତ-ପାଠ୍ୟ ସଂପାଦନ ଅକ୍ଷମ କରନ୍ତୁ", - "item.edit.metadata.edit.buttons.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", - "item.edit.metadata.edit.buttons.drag": "ପୁନଃକ୍ରମିକରଣ ପାଇଁ ଟାଣନ୍ତୁ", - "item.edit.metadata.edit.buttons.edit": "ସଂପାଦନ କରନ୍ତୁ", - "item.edit.metadata.edit.buttons.remove": "ଅପସାରଣ କରନ୍ତୁ", - "item.edit.metadata.edit.buttons.undo": "ପରିବର୍ତ୍ତନଗୁଡିକୁ ପୂର୍ବବତ୍ କରନ୍ତୁ", - "item.edit.metadata.edit.buttons.unedit": "ସଂପାଦନ ବନ୍ଦ କରନ୍ତୁ", - "item.edit.metadata.edit.buttons.virtual": "ଏହା ଏକ ଭର୍ଚୁଆଲ୍ ମେଟାଡାଟା ମୂଲ୍ୟ, ଅର୍ଥାତ୍ ଏକ ସମ୍ବନ୍ଧିତ ସଂସ୍ଥା ଠାରୁ ଉତ୍ତରାଧିକାର ସୂତ୍ରରେ ପ୍ରାପ୍ତ ଏକ ମୂଲ୍ୟ। ଏହାକୁ ସିଧାସଳଖ ସଂଶୋଧନ କରାଯାଇପାରିବ ନାହିଁ। \"ସମ୍ପର୍କ\" ଟ୍ୟାବରେ ସମ୍ବନ୍ଧିତ ସମ୍ପର୍କ ଯୋଡନ୍ତୁ କିମ୍ବା ଅପସାରଣ କରନ୍ତୁ", - "item.edit.metadata.empty": "ଆଇଟମ୍ ବର୍ତ୍ତମାନ କୌଣସି ମେଟାଡାଟା ଧାରଣ କରୁନାହିଁ। ଏକ ମେଟାଡାଟା ମୂଲ୍ୟ ଯୋଡିବା ଆରମ୍ଭ କରିବାକୁ ଯୋଡନ୍ତୁ କ୍ଲିକ୍ କରନ୍ତୁ।", - "item.edit.metadata.headers.edit": "ସଂପାଦନ କରନ୍ତୁ", - "item.edit.metadata.headers.field": "କ୍ଷେତ୍ର", - "item.edit.metadata.headers.language": "ଭାଷା", - "item.edit.metadata.headers.value": "ମୂଲ୍ୟ", - "item.edit.metadata.metadatafield": "କ୍ଷେତ୍ର ସଂପାଦନ କରନ୍ତୁ", - "item.edit.metadata.metadatafield.error": "ମେଟାଡାଟା କ୍ଷେତ୍ର ଯାଞ୍ଚ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "item.edit.metadata.metadatafield.invalid": "ଦୟାକରି ଏକ ବୈଧ ମେଟାଡାଟା କ୍ଷେତ୍ର ଚୟନ କରନ୍ତୁ", - "item.edit.metadata.notifications.discarded.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଛି। ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକୁ ପୁନର୍ସ୍ଥାପନ କରିବାକୁ 'ପୂର୍ବବତ୍' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ", - "item.edit.metadata.notifications.discarded.title": "ପରିବର୍ତ୍ତନ ପରିତ୍ୟାଗ କରାଯାଇଛି", - "item.edit.metadata.notifications.error.title": "ଏକ ତ୍ରୁଟି ଘଟିଲା", - "item.edit.metadata.notifications.invalid.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଂରକ୍ଷିତ ହୋଇନାହିଁ। ଦୟାକରି ସଂରକ୍ଷଣ କରିବା ପୂର୍ବରୁ ସମସ୍ତ କ୍ଷେତ୍ର ବୈଧ ବୋଲି ନିଶ୍ଚିତ କରନ୍ତୁ।", - "item.edit.metadata.notifications.invalid.title": "ମେଟାଡାଟା ଅବୈଧ", - "item.edit.metadata.notifications.outdated.content": "ଆପଣ ବର୍ତ୍ତମାନ କାମ କରୁଥିବା ଆଇଟମ୍ ଅନ୍ୟ ଏକ ଉପଯୋଗକର୍ତ୍ତା ଦ୍ୱାରା ପରିବର୍ତ୍ତିତ ହୋଇଛି। ବିବାଦ ରୋକିବା ପାଇଁ ଆପଣଙ୍କର ବର୍ତ୍ତମାନର ପରିବର୍ତ୍ତନଗୁଡିକ ବାତିଲ ହୋଇଛି", - "item.edit.metadata.notifications.outdated.title": "ପୁରାତନ ପରିବର୍ତ୍ତନ", - "item.edit.metadata.notifications.saved.content": "ଆଇଟମ୍ର ମେଟାଡାଟାରେ ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଂରକ୍ଷିତ ହୋଇଛି।", - "item.edit.metadata.notifications.saved.title": "ମେଟାଡାଟା ସଂରକ୍ଷିତ", - "item.edit.metadata.reinstate-button": "ପୂର୍ବବତ୍ କରନ୍ତୁ", - "item.edit.metadata.reset-order-button": "ପୁନଃକ୍ରମିକରଣ ପୂର୍ବବତ୍ କରନ୍ତୁ", - "item.edit.metadata.save-button": "ସେଭ୍ କରନ୍ତୁ", - "item.edit.metadata.authority.label": "ପ୍ରାଧିକରଣ: ", - "item.edit.metadata.edit.buttons.open-authority-edition": "ହସ୍ତକୃତ ସଂପାଦନ ପାଇଁ ପ୍ରାଧିକରଣ କି ମୂଲ୍ୟ ଅନଲକ୍ କରନ୍ତୁ", - "item.edit.metadata.edit.buttons.close-authority-edition": "ହସ୍ତକୃତ ସଂପାଦନ ପାଇଁ ପ୍ରାଧିକରଣ କି ମୂଲ୍ୟ ଲକ୍ କରନ୍ତୁ", - "item.edit.modify.overview.field": "କ୍ଷେତ୍ର", - "item.edit.modify.overview.language": "ଭାଷା", - "item.edit.modify.overview.value": "ମୂଲ୍ୟ", - "item.edit.move.cancel": "ପଛକୁ", - "item.edit.move.save-button": "ସେଭ୍ କରନ୍ତୁ", - "item.edit.move.discard-button": "ପରିତ୍ୟାଗ କରନ୍ତୁ", - "item.edit.move.description": "ଆପଣ ଏହି ଆଇଟମ୍ କୁ ଯେଉଁ କଲେକ୍ସନ୍ କୁ ଗତି କରିବାକୁ ଚାହୁଁଛନ୍ତି ତାହା ଚୟନ କରନ୍ତୁ। ପ୍ରଦର୍ଶିତ କଲେକ୍ସନ୍ ଗୁଡିକର ତାଲିକାକୁ ସଂକୀର୍ଣ୍ଣ କରିବାକୁ, ଆପଣ ବାକ୍ସରେ ଏକ ସନ୍ଧାନ ପ୍ରଶ୍ନ ପ୍ରବେଶ କରିପାରିବେ।", - "item.edit.move.error": "ଆଇଟମ୍ ଗତି କରିବାକୁ ଚେଷ୍ଟା କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "item.edit.move.head": "ଆଇଟମ୍ ଗତି କରନ୍ତୁ: {{id}}", - "item.edit.move.inheritpolicies.checkbox": "ନୀତି ଉତ୍ତରାଧିକାର କରନ୍ତୁ", - "item.edit.move.inheritpolicies.description": "ଗନ୍ତବ୍ୟସ୍ଥଳ କଲେକ୍ସନ୍ର ଡିଫଲ୍ଟ ନୀତି ଉତ୍ତରାଧିକାର କରନ୍ତୁ", - "item.edit.move.inheritpolicies.tooltip": "ଚେତାବନୀ: ସକ୍ଷମ ହେଲେ, ଆଇଟମ୍ ଏବଂ ଆଇଟମ୍ ସହିତ ଜଡିତ କୌଣସି ଫାଇଲ୍ ପାଇଁ ପଠନ ପ୍ରବେଶ ନୀତି କଲେକ୍ସନ୍ର ଡିଫଲ୍ଟ ପଠନ ପ୍ରବେଶ ନୀତି ଦ୍ୱାରା ପ୍ରତିସ୍ଥାପିତ ହେବ। ଏହାକୁ ପୂର୍ବବତ୍ କରାଯାଇପାରିବ ନାହିଁ।", - "item.edit.move.move": "ଗତି କରନ୍ତୁ", - "item.edit.move.processing": "ଗତି କରୁଛି...", - "item.edit.move.search.placeholder": "କଲେକ୍ସନ୍ ଗୁଡିକୁ ଖୋଜିବା ପାଇଁ ଏକ ସନ୍ଧାନ ପ୍ରଶ୍ନ ପ୍ରବେଶ କରନ୍ତୁ", - "item.edit.move.success": "ଆଇଟମ୍ ସଫଳତାର ସହିତ ଗତି କରାଯାଇଛି", - "item.edit.move.title": "ଆଇଟମ୍ ଗତି କରନ୍ତୁ", - "item.edit.private.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "item.edit.private.confirm": "ଏହାକୁ ଅସନ୍ଧାନଯୋଗ୍ୟ କରନ୍ତୁ", - "item.edit.private.description": "ଆପଣ ନିଶ୍ଚିତ କି ଏହି ଆଇଟମ୍ ଆର୍କାଇଭରେ ଅସନ୍ଧାନଯୋଗ୍ୟ ହେବା ଉଚିତ୍?", - "item.edit.private.error": "ଆଇଟମ୍ କୁ ଅସନ୍ଧାନଯୋଗ୍ୟ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "item.edit.private.header": "ଆଇଟମ୍ ଅସନ୍ଧାନଯୋଗ୍ୟ କରନ୍ତୁ: {{ id }}", - "item.edit.private.success": "ଆଇଟମ୍ ବର୍ତ୍ତମାନ ଅସନ୍ଧାନଯୋଗ୍ୟ", - "item.edit.public.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "item.edit.public.confirm": "ଏହାକୁ ସନ୍ଧାନଯୋଗ୍ୟ କରନ୍ତୁ", - "item.edit.public.description": "ଆପଣ ନିଶ୍ଚିତ କି ଏହି ଆଇଟମ୍ ଆର୍କାଇଭରେ ସନ୍ଧାନଯୋଗ୍ୟ ହେବା ଉଚିତ୍?", - "item.edit.public.error": "ଆଇଟମ୍ କୁ ସନ୍ଧାନଯୋଗ୍ୟ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "item.edit.public.header": "ଆଇଟମ୍ ସନ୍ଧାନଯୋଗ୍ୟ କରନ୍ତୁ: {{ id }}", - "item.edit.public.success": "ଆଇଟମ୍ ବର୍ତ୍ତମାନ ସନ୍ଧାନଯୋଗ୍ୟ", - "item.edit.reinstate.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "item.edit.reinstate.confirm": "ପୁନର୍ସ୍ଥାପନ କରନ୍ତୁ", - "item.edit.reinstate.description": "ଆପଣ ନିଶ୍ଚିତ କି ଏହି ଆଇଟମ୍ ଆର୍କାଇଭକୁ ପୁନର୍ସ୍ଥାପନ କରିବା ଉଚିତ୍?", - "item.edit.reinstate.error": "ଆଇଟମ୍ ପୁନର୍ସ୍ଥାପନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "item.edit.reinstate.header": "ଆଇଟମ୍ ପୁନର୍ସ୍ଥାପନ କରନ୍ତୁ: {{ id }}", - "item.edit.reinstate.success": "ଆଇଟମ୍ ସଫଳତାର ସହିତ ପୁନର୍ସ୍ଥାପିତ ହୋଇଛି", - "item.edit.relationships.discard-button": "ପରିତ୍ୟାଗ କରନ୍ତୁ", - "item.edit.relationships.edit.buttons.add": "ଯୋଡନ୍ତୁ", - "item.edit.relationships.edit.buttons.remove": "ଅପସାରଣ କରନ୍ତୁ", - "item.edit.relationships.edit.buttons.undo": "ପରିବର୍ତ୍ତନଗୁଡିକୁ ପୂର୍ବବତ୍ କରନ୍ତୁ", - "item.edit.relationships.no-relationships": "କୌଣସି ସମ୍ପର୍କ ନାହିଁ", - "item.edit.relationships.notifications.discarded.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଛି। ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକୁ ପୁନର୍ସ୍ଥାପନ କରିବାକୁ 'ପୂର୍ବବତ୍' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ", - "item.edit.relationships.notifications.discarded.title": "ପରିବର୍ତ୍ତନ ପରିତ୍ୟାଗ କରାଯାଇଛି", - "item.edit.relationships.notifications.failed.title": "ସମ୍ପର୍କ ସଂପାଦନରେ ତ୍ରୁଟି", - "item.edit.relationships.notifications.outdated.content": "ଆପଣ ବର୍ତ୍ତମାନ କାମ କରୁଥିବା ଆଇଟମ୍ ଅନ୍ୟ ଏକ ଉପଯୋଗକର୍ତ୍ତା ଦ୍ୱାରା ପରିବର୍ତ୍ତିତ ହୋଇଛି। ବିବାଦ ରୋକିବା ପାଇଁ ଆପଣଙ୍କର ବର୍ତ୍ତମାନର ପରିବର୍ତ୍ତନଗୁଡିକ ବାତିଲ ହୋଇଛି", - "item.edit.relationships.notifications.outdated.title": "ପୁରାତନ ପରିବର୍ତ୍ତନ", - "item.edit.relationships.notifications.saved.content": "ଆଇଟମ୍ର ସମ୍ପର୍କରେ ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଂରକ୍ଷିତ ହୋଇଛି।", - "item.edit.relationships.notifications.saved.title": "ସମ୍ପର୍କ ସଂରକ୍ଷିତ", - "item.edit.relationships.reinstate-button": "ପୂର୍ବବତ୍ କରନ୍ତୁ", - "item.edit.relationships.save-button": "ସେଭ୍ କରନ୍ତୁ", - - "item.edit.relationships.no-entity-type": "ଏହି ଆଇଟମ୍ ପାଇଁ ସମ୍ପର୍କ ସକ୍ଷମ କରିବାକୁ 'dspace.entity.type' ମେଟାଡାଟା ଯୋଡନ୍ତୁ", - - "item.edit.return": "ପଛକୁ ଯାଆନ୍ତୁ", - - "item.edit.tabs.bitstreams.head": "ବିଟଷ୍ଟ୍ରିମ୍", - - "item.edit.tabs.bitstreams.title": "ଆଇଟମ୍ ସଂପାଦନା - ବିଟଷ୍ଟ୍ରିମ୍", - - "item.edit.tabs.curate.head": "କ୍ୟୁରେଟ୍", - - "item.edit.tabs.curate.title": "ଆଇଟମ୍ ସଂପାଦନା - କ୍ୟୁରେଟ୍", - - "item.edit.curate.title": "ଆଇଟମ୍ କ୍ୟୁରେଟ୍ କରନ୍ତୁ: {{item}}", - - "item.edit.tabs.access-control.head": "ଆକ୍ସେସ୍ ନିୟନ୍ତ୍ରଣ", - - "item.edit.tabs.access-control.title": "ଆଇଟମ୍ ସଂପାଦନା - ଆକ୍ସେସ୍ ନିୟନ୍ତ୍ରଣ", - - "item.edit.tabs.metadata.head": "ମେଟାଡାଟା", - - "item.edit.tabs.metadata.title": "ଆଇଟମ୍ ସଂପାଦନା - ମେଟାଡାଟା", - - "item.edit.tabs.relationships.head": "ସମ୍ପର୍କ", - - "item.edit.tabs.relationships.title": "ଆଇଟମ୍ ସଂପାଦନା - ସମ୍ପର୍କ", - - "item.edit.tabs.status.buttons.authorizations.button": "ଅଧିକାର...", - - "item.edit.tabs.status.buttons.authorizations.label": "ଆଇଟମ୍ ର ଅଧିକାର ନୀତି ସଂପାଦନ କରନ୍ତୁ", - - "item.edit.tabs.status.buttons.delete.button": "ସ୍ଥାୟୀ ଭାବେ ଡିଲିଟ୍ କରନ୍ତୁ", - - "item.edit.tabs.status.buttons.delete.label": "ଆଇଟମ୍ କୁ ସମ୍ପୂର୍ଣ୍ଣ ଭାବେ ମିଟାଇଦିଅନ୍ତୁ", - - "item.edit.tabs.status.buttons.mappedCollections.button": "ମ୍ୟାପ୍ କରାଯାଇଥିବା ସଂଗ୍ରହ", - - "item.edit.tabs.status.buttons.mappedCollections.label": "ମ୍ୟାପ୍ କରାଯାଇଥିବା ସଂଗ୍ରହ ପରିଚାଳନା କରନ୍ତୁ", - - "item.edit.tabs.status.buttons.move.button": "ଏହି ଆଇଟମ୍ କୁ ଏକ ଭିନ୍ନ ସଂଗ୍ରହକୁ ଘୁଞ୍ଚାନ୍ତୁ", - - "item.edit.tabs.status.buttons.move.label": "ଆଇଟମ୍ କୁ ଅନ୍ୟ ସଂଗ୍ରହକୁ ଘୁଞ୍ଚାନ୍ତୁ", - - "item.edit.tabs.status.buttons.private.button": "ଏହାକୁ ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ...", - - "item.edit.tabs.status.buttons.private.label": "ଆଇଟମ୍ କୁ ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ", - - "item.edit.tabs.status.buttons.public.button": "ଏହାକୁ ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ...", - - "item.edit.tabs.status.buttons.public.label": "ଆଇଟମ୍ କୁ ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ", - - "item.edit.tabs.status.buttons.reinstate.button": "ପୁନଃ ସ୍ଥାପନ କରନ୍ତୁ...", - - "item.edit.tabs.status.buttons.reinstate.label": "ଆଇଟମ୍ କୁ ରିପୋଜିଟରିରେ ପୁନଃ ସ୍ଥାପନ କରନ୍ତୁ", - - "item.edit.tabs.status.buttons.unauthorized": "ଆପଣ ଏହି କାର୍ଯ୍ୟକୁ କରିବାକୁ ଅଧିକୃତ ନୁହଁନ୍ତି", - - "item.edit.tabs.status.buttons.withdraw.button": "ଏହି ଆଇଟମ୍ କୁ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", - - "item.edit.tabs.status.buttons.withdraw.label": "ରିପୋଜିଟରିରୁ ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", - - "item.edit.tabs.status.description": "ଆଇଟମ୍ ପରିଚାଳନା ପୃଷ୍ଠାକୁ ସ୍ୱାଗତ | ଏଠାରୁ ଆପଣ ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର, ପୁନଃ ସ୍ଥାପନ, ଘୁଞ୍ଚାଇବା କିମ୍ବା ଡିଲିଟ୍ କରିପାରିବେ | ଆପଣ ଅନ୍ୟ ଟ୍ୟାବ୍ ଗୁଡିକରେ ମେଟାଡାଟା / ବିଟଷ୍ଟ୍ରିମ୍ ଅଦ୍ୟତନ କିମ୍ବା ନୂତନ ଯୋଡିପାରିବେ |", - - "item.edit.tabs.status.head": "ସ୍ଥିତି", - - "item.edit.tabs.status.labels.handle": "ହ୍ୟାଣ୍ଡଲ୍", - - "item.edit.tabs.status.labels.id": "ଆଇଟମ୍ ଆଭ୍ୟନ୍ତରୀଣ ID", - - "item.edit.tabs.status.labels.itemPage": "ଆଇଟମ୍ ପୃଷ୍ଠା", - - "item.edit.tabs.status.labels.lastModified": "ଶେଷ ସଂଶୋଧିତ", - - "item.edit.tabs.status.title": "ଆଇଟମ୍ ସଂପାଦନା - ସ୍ଥିତି", - - "item.edit.tabs.versionhistory.head": "ସଂସ୍କରଣ ଇତିହାସ", - - "item.edit.tabs.versionhistory.title": "ଆଇଟମ୍ ସଂପାଦନା - ସଂସ୍କରଣ ଇତିହାସ", - - "item.edit.tabs.versionhistory.under-construction": "ଏହି ଉପଯୋଗକର୍ତ୍ତା ଇଣ୍ଟରଫେସରେ ସଂସ୍କରଣ ସଂପାଦନା କିମ୍ବା ନୂତନ ସଂସ୍କରଣ ଯୋଡିବା ଏପର୍ଯ୍ୟନ୍ତ ସମ୍ଭବ ନୁହେଁ |", - - "item.edit.tabs.view.head": "ଆଇଟମ୍ ଦେଖନ୍ତୁ", - - "item.edit.tabs.view.title": "ଆଇଟମ୍ ସଂପାଦନା - ଦେଖନ୍ତୁ", - - "item.edit.withdraw.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "item.edit.withdraw.confirm": "ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", - - "item.edit.withdraw.description": "ଆପଣ ନିଶ୍ଚିତ କି ଏହି ଆଇଟମ୍ କୁ ଆର୍କାଇଭରୁ ପ୍ରତ୍ୟାହାର କରିବା ଉଚିତ୍?", - - "item.edit.withdraw.error": "ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - - "item.edit.withdraw.header": "ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ: {{ id }}", - - "item.edit.withdraw.success": "ଆଇଟମ୍ ସଫଳତାର ସହିତ ପ୍ରତ୍ୟାହାର ହୋଇଛି", - - "item.orcid.return": "ପଛକୁ ଯାଆନ୍ତୁ", - - "item.listelement.badge": "ଆଇଟମ୍", - - "item.page.description": "ବର୍ଣ୍ଣନା", - - "item.page.org-unit": "ସାଂଗଠନିକ ଏକକ", - - "item.page.org-units": "ସାଂଗଠନିକ ଏକକ", - - "item.page.project": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟ", - - "item.page.projects": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟ", - - "item.page.publication": "ପ୍ରକାଶନ", - - "item.page.publications": "ପ୍ରକାଶନ", - - "item.page.article": "ପ୍ରବନ୍ଧ", - - "item.page.articles": "ପ୍ରବନ୍ଧ", - - "item.page.journal": "ଜର୍ଣ୍ଣାଲ୍", - - "item.page.journals": "ଜର୍ଣ୍ଣାଲ୍", - - "item.page.journal-issue": "ଜର୍ଣ୍ଣାଲ୍ ଇସୁ", - - "item.page.journal-issues": "ଜର୍ଣ୍ଣାଲ୍ ଇସୁ", - - "item.page.journal-volume": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍", - - "item.page.journal-volumes": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍", - - "item.page.journal-issn": "ଜର୍ଣ୍ଣାଲ୍ ISSN", - - "item.page.journal-title": "ଜର୍ଣ୍ଣାଲ୍ ଆଖ୍ୟା", - - "item.page.publisher": "ପ୍ରକାଶକ", - - "item.page.titleprefix": "ଆଇଟମ୍: ", - - "item.page.volume-title": "ଭଲ୍ୟୁମ୍ ଆଖ୍ୟା", - - "item.page.dcterms.spatial": "ଭୌଗୋଳିକ ବିନ୍ଦୁ", - - "item.search.results.head": "ଆଇଟମ୍ ସନ୍ଧାନ ଫଳାଫଳ", - - "item.search.title": "ଆଇଟମ୍ ସନ୍ଧାନ", - - "item.truncatable-part.show-more": "ଅଧିକ ଦେଖାନ୍ତୁ", - - "item.truncatable-part.show-less": "ସଂକୋଚନ କରନ୍ତୁ", - - "item.qa-event-notification.check.notification-info": "ଆପଣଙ୍କ ଆକାଉଣ୍ଟ୍ ସହିତ ଜଡିତ {{num}} ବିଚାରାଧୀନ ପରାମର୍ଶ ଅଛି", - - "item.qa-event-notification-info.check.button": "ଦେଖନ୍ତୁ", - - "mydspace.qa-event-notification.check.notification-info": "ଆପଣଙ୍କ ଆକାଉଣ୍ଟ୍ ସହିତ ଜଡିତ {{num}} ବିଚାରାଧୀନ ପରାମର୍ଶ ଅଛି", - - "mydspace.qa-event-notification-info.check.button": "ଦେଖନ୍ତୁ", - - "workflow-item.search.result.delete-supervision.modal.header": "ପରିଚାଳନା ଅର୍ଡର୍ ଡିଲିଟ୍ କରନ୍ତୁ", - - "workflow-item.search.result.delete-supervision.modal.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ ପରିଚାଳନା ଅର୍ଡର୍ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", - - "workflow-item.search.result.delete-supervision.modal.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "workflow-item.search.result.delete-supervision.modal.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", - - "workflow-item.search.result.notification.deleted.success": "ପରିଚାଳନା ଅର୍ଡର୍ \"{{name}}\" ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", - - "workflow-item.search.result.notification.deleted.failure": "ପରିଚାଳନା ଅର୍ଡର୍ \"{{name}}\" ଡିଲିଟ୍ ହେଲା ନାହିଁ", - - "workflow-item.search.result.list.element.supervised-by": "ପରିଚାଳିତ ହେଉଛି:", - - "workflow-item.search.result.list.element.supervised.remove-tooltip": "ପରିଚାଳନା ଗୃପ୍ ହଟାନ୍ତୁ", - - "confidence.indicator.help-text.accepted": "ଏହି ପ୍ରାଧିକୃତ ମୂଲ୍ୟ ଏକ ଇଣ୍ଟରାକ୍ଟିଭ୍ ଉପଯୋଗକର୍ତ୍ତା ଦ୍ୱାରା ସଠିକ୍ ଭାବରେ ନିଶ୍ଚିତ ହୋଇଛି", - - "confidence.indicator.help-text.uncertain": "ମୂଲ୍ୟ ଏକକ ଏବଂ ବୈଧ, କିନ୍ତୁ ଏହା ଏକ ମାନବ ଦ୍ୱାରା ଦେଖାଯାଇ ନାହିଁ ଏବଂ ଗ୍ରହଣ କରାଯାଇ ନାହିଁ, ତେଣୁ ଏହା ଏପର୍ଯ୍ୟନ୍ତ ଅନିଶ୍ଚିତ ଅଛି", - - "confidence.indicator.help-text.ambiguous": "ସମାନ ବୈଧତା ର ଅନେକ ମେଳ ଖାଉଥିବା ପ୍ରାଧିକୃତ ମୂଲ୍ୟ ଅଛି", - - "confidence.indicator.help-text.notfound": "ପ୍ରାଧିକୃତ କୌଣସି ମେଳ ଖାଉଥିବା ଉତ୍ତର ନାହିଁ", - - "confidence.indicator.help-text.failed": "ପ୍ରାଧିକୃତ ଏକ ଆଭ୍ୟନ୍ତରୀଣ ବିଫଳତା ସମ୍ମୁଖୀନ କରିଛି", - - "confidence.indicator.help-text.rejected": "ପ୍ରାଧିକୃତ ଏହି ଦାଖଲାକୁ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିବାକୁ ସୁପାରିଶ କରେ", - - "confidence.indicator.help-text.novalue": "ପ୍ରାଧିକୃତରୁ କୌଣସି ଯୁକ୍ତିଯୁକ୍ତ ଆତ୍ମବିଶ୍ୱାସ ମୂଲ୍ୟ ଫେରିନାହିଁ", - - "confidence.indicator.help-text.unset": "ଏହି ମୂଲ୍ୟ ପାଇଁ ଆତ୍ମବିଶ୍ୱାସ କେବେ ରେକର୍ଡ ହୋଇନାହିଁ", - - "confidence.indicator.help-text.unknown": "ଅଜ୍ଞାତ ଆତ୍ମବିଶ୍ୱାସ ମୂଲ୍ୟ", - - "item.page.abstract": "ସାରାଂଶ", - - "item.page.author": "ଲେଖକ", - - "item.page.authors": "ଲେଖକ", - - "item.page.citation": "ଉଦ୍ଧରଣ", - - "item.page.collections": "ସଂଗ୍ରହ", - - "item.page.collections.loading": "ଲୋଡ୍ ହେଉଛି...", - - "item.page.collections.load-more": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", - - "item.page.date": "ତାରିଖ", - - "item.page.edit": "ଏହି ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - - "item.page.files": "ଫାଇଲ୍", - - "item.page.filesection.description": "ବର୍ଣ୍ଣନା:", - - "item.page.filesection.download": "ଡାଉନଲୋଡ୍ କରନ୍ତୁ", - - "item.page.filesection.format": "ଫର୍ମାଟ୍:", - - "item.page.filesection.name": "ନାମ:", - - "item.page.filesection.size": "ଆକାର:", - - "item.page.journal.search.title": "ଏହି ଜର୍ଣ୍ଣାଲରେ ପ୍ରବନ୍ଧ", - - "item.page.link.full": "ପୂର୍ଣ୍ଣ ଆଇଟମ୍ ପୃଷ୍ଠା", - - "item.page.link.simple": "ସରଳ ଆଇଟମ୍ ପୃଷ୍ଠା", - - "item.page.options": "ବିକଳ୍ପ", - - "item.page.orcid.title": "ORCID", - - "item.page.orcid.tooltip": "ORCID ସେଟିଂ ପୃଷ୍ଠା ଖୋଲନ୍ତୁ", - - "item.page.person.search.title": "ଏହି ଲେଖକଙ୍କ ଦ୍ୱାରା ପ୍ରବନ୍ଧ", - - "item.page.related-items.view-more": "{{ amount }} ଅଧିକ ଦେଖାନ୍ତୁ", - - "item.page.related-items.view-less": "ଶେଷ {{ amount }} ଲୁଚାନ୍ତୁ", - - "item.page.relationships.isAuthorOfPublication": "ପ୍ରକାଶନ", - - "item.page.relationships.isJournalOfPublication": "ପ୍ରକାଶନ", - - "item.page.relationships.isOrgUnitOfPerson": "ଲେଖକ", - - "item.page.relationships.isOrgUnitOfProject": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟ", - - "item.page.subject": "କିୱାର୍ଡ", - - "item.page.uri": "URI", - - "item.page.bitstreams.view-more": "ଅଧିକ ଦେଖାନ୍ତୁ", - - "item.page.bitstreams.collapse": "ସଂକୋଚନ କରନ୍ତୁ", - - "item.page.bitstreams.primary": "ପ୍ରାଥମିକ", - - "item.page.filesection.original.bundle": "ମୂଳ ବଣ୍ଡଲ୍", - - "item.page.filesection.license.bundle": "ଲାଇସେନ୍ସ ବଣ୍ଡଲ୍", - - "item.page.return": "ପଛକୁ ଯାଆନ୍ତୁ", - - "item.page.version.create": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରନ୍ତୁ", - - "item.page.withdrawn": "ଏହି ଆଇଟମ୍ ପାଇଁ ଏକ ପ୍ରତ୍ୟାହାର ଅନୁରୋଧ କରନ୍ତୁ", - - "item.page.reinstate": "ପୁନଃ ସ୍ଥାପନ ଅନୁରୋଧ କରନ୍ତୁ", - - "item.page.version.hasDraft": "ସଂସ୍କରଣ ଇତିହାସରେ ଏକ ଚାଲିଥିବା ଦାଖଲା ଥିବାରୁ ଏକ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରାଯାଇପାରିବ ନାହିଁ", - - "item.page.claim.button": "ଦାବି କରନ୍ତୁ", - - "item.page.claim.tooltip": "ଏହି ଆଇଟମ୍ କୁ ପ୍ରୋଫାଇଲ୍ ଭାବରେ ଦାବି କରନ୍ତୁ", - - "item.page.image.alt.ROR": "ROR ଲୋଗୋ", - - "item.preview.dc.identifier.uri": "ପରିଚୟକାରୀ:", - - "item.preview.dc.contributor.author": "ଲେଖକ:", - - "item.preview.dc.date.issued": "ପ୍ରକାଶିତ ତାରିଖ:", - - "item.preview.dc.description": "ବର୍ଣ୍ଣନା:", - - "item.preview.dc.description.abstract": "ସାରାଂଶ:", - - "item.preview.dc.identifier.other": "ଅନ୍ୟ ପରିଚୟକାରୀ:", - - "item.preview.dc.language.iso": "ଭାଷା:", - - "item.preview.dc.subject": "ବିଷୟ:", - - "item.preview.dc.title": "ଆଖ୍ୟା:", - - "item.preview.dc.type": "ପ୍ରକାର:", - - "item.preview.oaire.version": "ସଂସ୍କରଣ", - - "item.preview.oaire.citation.issue": "ଇସୁ", - - "item.preview.oaire.citation.volume": "ଭଲ୍ୟୁମ୍", - - "item.preview.oaire.citation.title": "ଉଦ୍ଧରଣ କଣ୍ଟେନର", - - "item.preview.oaire.citation.startPage": "ଉଦ୍ଧରଣ ଆରମ୍ଭ ପୃଷ୍ଠା", - - "item.preview.oaire.citation.endPage": "ଉଦ୍ଧରଣ ଶେଷ ପୃଷ୍ଠା", - - "item.preview.dc.relation.hasversion": "ସଂସ୍କରଣ ଅଛି", - - "item.preview.dc.relation.ispartofseries": "ସିରିଜର ଅଂଶ", - - "item.preview.dc.rights": "ଅଧିକାର", - - "item.preview.dc.identifier.other": "ଅନ୍ୟ ପରିଚୟକାରୀ", - - "item.preview.dc.relation.issn": "ISSN", - - "item.preview.dc.identifier.isbn": "ISBN", - - "item.preview.dc.identifier": "ପରିଚୟକାରୀ:", - - "item.preview.dc.relation.ispartof": "ଜର୍ଣ୍ଣାଲ୍ କିମ୍ବା ସିରିଜ୍", - - "item.preview.dc.identifier.doi": "DOI", - - "item.preview.dc.publisher": "ପ୍ରକାଶକ:", - - "item.preview.person.familyName": "ଉପନାମ:", - - "item.preview.person.givenName": "ନାମ:", - - "item.preview.person.identifier.orcid": "ORCID:", - - "item.preview.person.affiliation.name": "ସଂଲଗ୍ନତା:", - - "item.preview.project.funder.name": "ଅର୍ଥଦାତା:", - - "item.preview.project.funder.identifier": "ଅର୍ଥଦାତା ପରିଚୟକାରୀ:", - - "item.preview.project.investigator": "ପ୍ରୋଜେକ୍ଟ୍ ଗବେଷକ", - - "item.preview.oaire.awardNumber": "ଅନୁଦାନ ID:", - - "item.preview.dc.title.alternative": "ସଂକ୍ଷିପ୍ତ ନାମ:", - - "item.preview.dc.coverage.spatial": "କ୍ଷେତ୍ରାଧିକାର:", - - "item.preview.oaire.fundingStream": "ଅନୁଦାନ ଧାରା:", - - "item.preview.oairecerif.identifier.url": "URL", - - "item.preview.organization.address.addressCountry": "ଦେଶ", - - "item.preview.organization.foundingDate": "ପ୍ରତିଷ୍ଠା ତାରିଖ", - - "item.preview.organization.identifier.crossrefid": "Crossref ID", - - "item.preview.organization.identifier.isni": "ISNI", - - "item.preview.organization.identifier.ror": "ROR ID", - - "item.preview.organization.legalName": "ଆଇନଗତ ନାମ", - - "item.preview.dspace.entity.type": "ଏଣ୍ଟିଟି ପ୍ରକାର:", - - "item.preview.creativework.publisher": "ପ୍ରକାଶକ", - - "item.preview.creativeworkseries.issn": "ISSN", - - "item.preview.dc.identifier.issn": "ISSN", - - "item.preview.dc.identifier.openalex": "OpenAlex ପରିଚୟକାରୀ", - - "item.preview.dc.description": "ବର୍ଣ୍ଣନା", - - "item.select.confirm": "ଚୟନିତ ନିଶ୍ଚିତ କରନ୍ତୁ", - - "item.select.empty": "ଦେଖାଇବାକୁ କୌଣସି ଆଇଟମ୍ ନାହିଁ", - - "item.select.table.selected": "ଚୟନିତ ଆଇଟମ୍", - - "item.select.table.select": "ଆଇଟମ୍ ଚୟନ କରନ୍ତୁ", - - "item.select.table.deselect": "ଆଇଟମ୍ ଅଚୟନ କରନ୍ତୁ", - - "item.select.table.author": "ଲେଖକ", - - "item.select.table.collection": "ସଂଗ୍ରହ", - - "item.select.table.title": "ଆଖ୍ୟା", - - "item.version.history.empty": "ଏହି ଆଇଟମ୍ ପାଇଁ ଏପର୍ଯ୍ୟନ୍ତ ଅନ୍ୟ କୌଣସି ସଂସ୍କରଣ ନାହିଁ |", - - "item.version.history.head": "ସଂସ୍କରଣ ଇତିହାସ", - - "item.version.history.return": "ପଛକୁ ଯାଆନ୍ତୁ", - - "item.version.history.selected": "ଚୟନିତ ସଂସ୍କରଣ", - - "item.version.history.selected.alert": "ଆପଣ ବର୍ତ୍ତମାନ ଆଇଟମ୍ ର ସଂସ୍କରଣ {{version}} ଦେଖୁଛନ୍ତି |", - - "item.version.history.table.version": "ସଂସ୍କରଣ", - - "item.version.history.table.item": "ଆଇଟମ୍", - - "item.version.history.table.editor": "ସଂପାଦକ", - - "item.version.history.table.date": "ତାରିଖ", - - "item.version.history.table.summary": "ସାରାଂଶ", - - "item.version.history.table.workspaceItem": "ୱର୍କସ୍ପେସ୍ ଆଇଟମ୍", - - "item.version.history.table.workflowItem": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍", - - "item.version.history.table.actions": "କାର୍ଯ୍ୟ", - - "item.version.history.table.action.editWorkspaceItem": "ୱର୍କସ୍ପେସ୍ ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - - "item.version.history.table.action.editSummary": "ସାରାଂଶ ସଂପାଦନ କରନ୍ତୁ", - - "item.version.history.table.action.saveSummary": "ସାରାଂଶ ସଂପାଦନ ସେଭ୍ କରନ୍ତୁ", - - "item.version.history.table.action.discardSummary": "ସାରାଂଶ ସଂପାଦନ ପରିତ୍ୟାଗ କରନ୍ତୁ", - - "item.version.history.table.action.newVersion": "ଏହି ସଂସ୍କରଣରୁ ଏକ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରନ୍ତୁ", - - "item.version.history.table.action.deleteVersion": "ସଂସ୍କରଣ ଡିଲିଟ୍ କରନ୍ତୁ", - - "item.version.history.table.action.hasDraft": "ସଂସ୍କରଣ ଇତିହାସରେ ଏକ ଚାଲିଥିବା ଦାଖଲା ଥିବାରୁ ଏକ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରାଯାଇପାରିବ ନାହିଁ", - - "item.version.notice": "ଏହା ଏହି ଆଇଟମ୍ ର ସର୍ବଶେଷ ସଂସ୍କରଣ ନୁହେଁ | ସର୍ବଶେଷ ସଂସ୍କରଣ ଏଠାରେ ମିଳିପାରିବ |", - - "item.version.create.modal.header": "ନୂତନ ସଂସ୍କରଣ", - - "item.qa.withdrawn.modal.header": "ପ୍ରତ୍ୟାହାର ଅନୁରୋଧ", - - "item.qa.reinstate.modal.header": "ପୁନଃ ସ୍ଥାପନ ଅନୁରୋଧ", - - "item.qa.reinstate.create.modal.header": "ନୂତନ ସଂସ୍କରଣ", - - "item.version.create.modal.text": "ଏହି ଆଇଟମ୍ ପାଇଁ ଏକ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରନ୍ତୁ", - - "item.version.create.modal.text.startingFrom": "ସଂସ୍କରଣ {{version}} ରୁ ଆରମ୍ଭ କରି", - - "item.version.create.modal.button.confirm": "ସୃଷ୍ଟି କରନ୍ତୁ", - - "item.version.create.modal.button.confirm.tooltip": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରନ୍ତୁ", - - "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "ଅନୁରୋଧ ପଠାନ୍ତୁ", - - "qa-withdrown.create.modal.button.confirm": "ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", - - "qa-reinstate.create.modal.button.confirm": "ପୁନଃ ସ୍ଥାପନ କରନ୍ତୁ", - - "item.version.create.modal.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "item.qa.withdrawn-reinstate.create.modal.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "item.version.create.modal.button.cancel.tooltip": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ନକରନ୍ତୁ", - - "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "ଅନୁରୋଧ ପଠାନ୍ତୁ ନାହିଁ", - - "item.version.create.modal.form.summary.label": "ସାରାଂଶ", - - "qa-withdrawn.create.modal.form.summary.label": "ଆପଣ ଏହି ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର କରିବାକୁ ଅନୁରୋଧ କରୁଛନ୍ତି", - - "qa-withdrawn.create.modal.form.summary2.label": "ପ୍ରତ୍ୟାହାରର କାରଣ ପ୍ରବେଶ କରନ୍ତୁ", - - "qa-reinstate.create.modal.form.summary.label": "ଆପଣ ଏହି ଆଇଟମ୍ ପୁନଃସ୍ଥାପନ କରିବାକୁ ଅନୁରୋଧ କରୁଛନ୍ତି", - - "qa-reinstate.create.modal.form.summary2.label": "ପୁନଃସ୍ଥାପନର କାରଣ ପ୍ରବେଶ କରନ୍ତୁ", - - "item.version.create.modal.form.summary.placeholder": "ନୂତନ ସଂସ୍କରଣ ପାଇଁ ସାରାଂଶ ଭର୍ତ୍ତି କରନ୍ତୁ", - - "qa-withdrown.modal.form.summary.placeholder": "ପ୍ରତ୍ୟାହାରର କାରଣ ପ୍ରବେଶ କରନ୍ତୁ", - - "qa-reinstate.modal.form.summary.placeholder": "ପୁନଃସ୍ଥାପନର କାରଣ ପ୍ରବେଶ କରନ୍ତୁ", - - "item.version.create.modal.submitted.header": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ହେଉଛି...", - - "item.qa.withdrawn.modal.submitted.header": "ପ୍ରତ୍ୟାହାର ଅନୁରୋଧ ପଠାଯାଉଛି...", - - "correction-type.manage-relation.action.notification.reinstate": "ପୁନଃସ୍ଥାପନ ଅନୁରୋଧ ପଠାଯାଇଛି।", - - "correction-type.manage-relation.action.notification.withdrawn": "ପ୍ରତ୍ୟାହାର ଅନୁରୋଧ ପଠାଯାଇଛି।", - - "item.version.create.modal.submitted.text": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ହେଉଛି। ଆଇଟମ୍ର ଅନେକ ସମ୍ପର୍କ ଥିଲେ ଏହା କିଛି ସମୟ ନେଇପାରେ।", - - "item.version.create.notification.success": "{{version}} ସଂଖ୍ୟା ସହିତ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ହୋଇଛି", - - "item.version.create.notification.failure": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ହୋଇନାହିଁ", - - "item.version.create.notification.inProgress": "ଏକ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ହୋଇପାରିବ ନାହିଁ କାରଣ ସଂସ୍କରଣ ଇତିହାସରେ ଏକ ଚାଲିଥିବା ଦାଖଲା ଅଛି", - - "item.version.delete.modal.header": "ସଂସ୍କରଣ ବିଲୋପ କରନ୍ତୁ", - - "item.version.delete.modal.text": "ଆପଣ {{version}} ସଂସ୍କରଣ ବିଲୋପ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି?", - - "item.version.delete.modal.button.confirm": "ବିଲୋପ କରନ୍ତୁ", - - "item.version.delete.modal.button.confirm.tooltip": "ଏହି ସଂସ୍କରଣ ବିଲୋପ କରନ୍ତୁ", - - "item.version.delete.modal.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "item.version.delete.modal.button.cancel.tooltip": "ଏହି ସଂସ୍କରଣ ବିଲୋପ ନକରନ୍ତୁ", - - "item.version.delete.notification.success": "{{version}} ସଂଖ୍ୟା ସହିତ ସଂସ୍କରଣ ବିଲୋପ ହୋଇଛି", - - "item.version.delete.notification.failure": "{{version}} ସଂଖ୍ୟା ସହିତ ସଂସ୍କରଣ ବିଲୋପ ହୋଇନାହିଁ", - - "item.version.edit.notification.success": "{{version}} ସଂଖ୍ୟା ସହିତ ସଂସ୍କରଣର ସାରାଂଶ ପରିବର୍ତ୍ତନ ହୋଇଛି", - - "item.version.edit.notification.failure": "{{version}} ସଂଖ୍ୟା ସହିତ ସଂସ୍କରଣର ସାରାଂଶ ପରିବର୍ତ୍ତନ ହୋଇନାହିଁ", - - "itemtemplate.edit.metadata.add-button": "ଯୋଡନ୍ତୁ", - - "itemtemplate.edit.metadata.discard-button": "ପରିତ୍ୟାଗ କରନ୍ତୁ", - - "itemtemplate.edit.metadata.edit.language": "ଭାଷା ସମ୍ପାଦନ କରନ୍ତୁ", - - "itemtemplate.edit.metadata.edit.value": "ମୂଲ୍ୟ ସମ୍ପାଦନ କରନ୍ତୁ", - - "itemtemplate.edit.metadata.edit.buttons.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", - - "itemtemplate.edit.metadata.edit.buttons.drag": "ପୁନଃକ୍ରମାଙ୍କନ କରିବାକୁ ଟାଣନ୍ତୁ", - - "itemtemplate.edit.metadata.edit.buttons.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", - - "itemtemplate.edit.metadata.edit.buttons.remove": "ଅପସାରଣ କରନ୍ତୁ", - - "itemtemplate.edit.metadata.edit.buttons.undo": "ପରିବର୍ତ୍ତନଗୁଡିକ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", - - "itemtemplate.edit.metadata.edit.buttons.unedit": "ସମ୍ପାଦନା ବନ୍ଦ କରନ୍ତୁ", - - "itemtemplate.edit.metadata.empty": "ଆଇଟମ୍ ଟେମ୍ପଲେଟ୍ ବର୍ତ୍ତମାନ କୌଣସି ମେଟାଡାଟା ଧାରଣ କରୁନାହିଁ। ଏକ ମେଟାଡାଟା ମୂଲ୍ୟ ଯୋଡିବା ଆରମ୍ଭ କରିବାକୁ ଯୋଡନ୍ତୁ କ୍ଲିକ୍ କରନ୍ତୁ।", - - "itemtemplate.edit.metadata.headers.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", - - "itemtemplate.edit.metadata.headers.field": "କ୍ଷେତ୍ର", - - "itemtemplate.edit.metadata.headers.language": "ଭାଷା", - - "itemtemplate.edit.metadata.headers.value": "ମୂଲ୍ୟ", - - "itemtemplate.edit.metadata.metadatafield": "କ୍ଷେତ୍ର ସମ୍ପାଦନ କରନ୍ତୁ", - - "itemtemplate.edit.metadata.metadatafield.error": "ମେଟାଡାଟା କ୍ଷେତ୍ର ଯାଞ୍ଚ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - - "itemtemplate.edit.metadata.metadatafield.invalid": "ଦୟାକରି ଏକ ବ valid ଧ ମେଟାଡାଟା କ୍ଷେତ୍ର ବାଛନ୍ତୁ", - - "itemtemplate.edit.metadata.notifications.discarded.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଥିଲା। ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ପୁନର୍ବାର ସ୍ଥାପନ କରିବାକୁ 'ପ୍ରତ୍ୟାହାର' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ", - - "itemtemplate.edit.metadata.notifications.discarded.title": "ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଛି", - - "itemtemplate.edit.metadata.notifications.error.title": "ଏକ ତ୍ରୁଟି ଘଟିଛି", - - "itemtemplate.edit.metadata.notifications.invalid.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଞ୍ଚୟ ହୋଇନାହିଁ। ଦୟାକରି ସଞ୍ଚୟ କରିବା ପୂର୍ବରୁ ସମସ୍ତ କ୍ଷେତ୍ରଗୁଡିକ ବ valid ଧ କି ନାହିଁ ନିଶ୍ଚିତ କରନ୍ତୁ।", - - "itemtemplate.edit.metadata.notifications.invalid.title": "ମେଟାଡାଟା ଅବৈଧ", - - "itemtemplate.edit.metadata.notifications.outdated.content": "ଆପଣ ବର୍ତ୍ତମାନ ଯାହା ଉପରେ କାମ କରୁଛନ୍ତି ସେହି ଆଇଟମ୍ ଟେମ୍ପଲେଟ୍ ଅନ୍ୟ ଏକ ଉପଯୋଗକର୍ତ୍ତା ଦ୍ୱାରା ପରିବର୍ତ୍ତିତ ହୋଇଛି। ସଂଘର୍ଷ ରୋକିବା ପାଇଁ ଆପଣଙ୍କର ବର୍ତ୍ତମାନର ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଛି", - - "itemtemplate.edit.metadata.notifications.outdated.title": "ପରିବର୍ତ୍ତନଗୁଡିକ ପୁରାତନ", - - "itemtemplate.edit.metadata.notifications.saved.content": "ଏହି ଆଇଟମ୍ ଟେମ୍ପଲେଟ୍ ର ମେଟାଡାଟାକୁ ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଞ୍ଚୟ ହୋଇଛି।", - - "itemtemplate.edit.metadata.notifications.saved.title": "ମେଟାଡାଟା ସଞ୍ଚୟ ହୋଇଛି", - - "itemtemplate.edit.metadata.reinstate-button": "ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", - - "itemtemplate.edit.metadata.reset-order-button": "ପୁନଃକ୍ରମାଙ୍କନ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", - - "itemtemplate.edit.metadata.save-button": "ସଞ୍ଚୟ କରନ୍ତୁ", - - "journal.listelement.badge": "ଜର୍ଣ୍ଣାଲ୍", - - "journal.page.description": "ବର୍ଣ୍ଣନା", - - "journal.page.edit": "ଏହି ଆଇଟମ୍ ସମ୍ପାଦନ କରନ୍ତୁ", - - "journal.page.editor": "ମୁଖ୍ୟ ସମ୍ପାଦକ", - - "journal.page.issn": "ISSN", - - "journal.page.publisher": "ପ୍ରକାଶକ", - - "journal.page.options": "ବିକଳ୍ପଗୁଡିକ", - - "journal.page.titleprefix": "ଜର୍ଣ୍ଣାଲ୍: ", - - "journal.search.results.head": "ଜର୍ଣ୍ଣାଲ୍ ସନ୍ଧାନ ଫଳାଫଳ", - - "journal-relationships.search.results.head": "ଜର୍ଣ୍ଣାଲ୍ ସନ୍ଧାନ ଫଳାଫଳ", - - "journal.search.title": "ଜର୍ଣ୍ଣାଲ୍ ସନ୍ଧାନ", - - "journalissue.listelement.badge": "ଜର୍ଣ୍ଣାଲ୍ ଇସ୍ୟୁ", - - "journalissue.page.description": "ବର୍ଣ୍ଣନା", - - "journalissue.page.edit": "ଏହି ଆଇଟମ୍ ସମ୍ପାଦନ କରନ୍ତୁ", - - "journalissue.page.issuedate": "ଇସ୍ୟୁ ତାରିଖ", - - "journalissue.page.journal-issn": "ଜର୍ଣ୍ଣାଲ୍ ISSN", - - "journalissue.page.journal-title": "ଜର୍ଣ୍ଣାଲ୍ ଆଖ୍ୟା", - - "journalissue.page.keyword": "କିୱାର୍ଡଗୁଡିକ", - - "journalissue.page.number": "ସଂଖ୍ୟା", - - "journalissue.page.options": "ବିକଳ୍ପଗୁଡିକ", - - "journalissue.page.titleprefix": "ଜର୍ଣ୍ଣାଲ୍ ଇସ୍ୟୁ: ", - - "journalissue.search.results.head": "ଜର୍ଣ୍ଣାଲ୍ ଇସ୍ୟୁ ସନ୍ଧାନ ଫଳାଫଳ", - - "journalvolume.listelement.badge": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍", - - "journalvolume.page.description": "ବର୍ଣ୍ଣନା", - - "journalvolume.page.edit": "ଏହି ଆଇଟମ୍ ସମ୍ପାଦନ କରନ୍ତୁ", - - "journalvolume.page.issuedate": "ଇସ୍ୟୁ ତାରିଖ", - - "journalvolume.page.options": "ବିକଳ୍ପଗୁଡିକ", - - "journalvolume.page.titleprefix": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍: ", - - "journalvolume.page.volume": "ଭଲ୍ୟୁମ୍", - - "journalvolume.search.results.head": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍ ସନ୍ଧାନ ଫଳାଫଳ", - - "iiifsearchable.listelement.badge": "ଡକ୍ୟୁମେଣ୍ଟ ମିଡିଆ", - - "iiifsearchable.page.titleprefix": "ଡକ୍ୟୁମେଣ୍ଟ: ", - - "iiifsearchable.page.doi": "ସ୍ଥାୟୀ ଲିଙ୍କ୍: ", - - "iiifsearchable.page.issue": "ଇସ୍ୟୁ: ", - - "iiifsearchable.page.description": "ବର୍ଣ୍ଣନା: ", - - "iiifviewer.fullscreen.notice": "ଉନ୍ନତ ଦର୍ଶନ ପାଇଁ ପୂର୍ଣ୍ଣ ସ୍କ୍ରିନ୍ ବ୍ୟବହାର କରନ୍ତୁ।", - - "iiif.listelement.badge": "ପ୍ରତିଛବି ମିଡିଆ", - - "iiif.page.titleprefix": "ପ୍ରତିଛବି: ", - - "iiif.page.doi": "ସ୍ଥାୟୀ ଲିଙ୍କ୍: ", - - "iiif.page.issue": "ଇସ୍ୟୁ: ", - - "iiif.page.description": "ବର୍ଣ୍ଣନା: ", - - "loading.bitstream": "ବିଟଷ୍ଟ୍ରିମ୍ ଲୋଡ୍ ହେଉଛି...", - - "loading.bitstreams": "ବିଟଷ୍ଟ୍ରିମ୍ ଲୋଡ୍ ହେଉଛି...", - - "loading.browse-by": "ଆଇଟମ୍ ଲୋଡ୍ ହେଉଛି...", - - "loading.browse-by-page": "ପୃଷ୍ଠା ଲୋଡ୍ ହେଉଛି...", - - "loading.collection": "ସଂଗ୍ରହ ଲୋଡ୍ ହେଉଛି...", - - "loading.collections": "ସଂଗ୍ରହ ଲୋଡ୍ ହେଉଛି...", - - "loading.content-source": "ବିଷୟବସ୍ତୁ ସ୍ରୋତ ଲୋଡ୍ ହେଉଛି...", - - "loading.community": "ସମ୍ପ୍ରଦାୟ ଲୋଡ୍ ହେଉଛି...", - - "loading.default": "ଲୋଡ୍ ହେଉଛି...", - - "loading.item": "ଆଇଟମ୍ ଲୋଡ୍ ହେଉଛି...", - - "loading.items": "ଆଇଟମ୍ ଲୋଡ୍ ହେଉଛି...", - - "loading.mydspace-results": "ଆଇଟମ୍ ଲୋଡ୍ ହେଉଛି...", - - "loading.objects": "ଲୋଡ୍ ହେଉଛି...", - - "loading.recent-submissions": "ସାମ୍ପ୍ରତିକ ଦାଖଲା ଲୋଡ୍ ହେଉଛି...", - - "loading.search-results": "ସନ୍ଧାନ ଫଳାଫଳ ଲୋଡ୍ ହେଉଛି...", - - "loading.sub-collections": "ଉପ-ସଂଗ୍ରହ ଲୋଡ୍ ହେଉଛି...", - - "loading.sub-communities": "ଉପ-ସମ୍ପ୍ରଦାୟ ଲୋଡ୍ ହେଉଛି...", - - "loading.top-level-communities": "ଶୀର୍ଷ ସ୍ତରର ସମ୍ପ୍ରଦାୟ ଲୋଡ୍ ହେଉଛି...", - - "login.form.email": "ଇମେଲ୍ ଠିକଣା", - - "login.form.forgot-password": "ଆପଣ ଆପଣଙ୍କର ପାସୱାର୍ଡ ଭୁଲି ଯାଇଛନ୍ତି କି?", - - "login.form.header": "ଦୟାକରି DSpace ରେ ଲଗ୍ ଇନ୍ କରନ୍ତୁ", - - "login.form.new-user": "ନୂତନ ଉପଯୋଗକର୍ତ୍ତା? ରେଜିଷ୍ଟର କରିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ।", - - "login.form.oidc": "OIDC ସହିତ ଲଗ୍ ଇନ୍ କରନ୍ତୁ", - - "login.form.orcid": "ORCID ସହିତ ଲଗ୍ ଇନ୍ କରନ୍ତୁ", - - "login.form.password": "ପାସୱାର୍ଡ", - - "login.form.saml": "SAML ସହିତ ଲଗ୍ ଇନ୍ କରନ୍ତୁ", - - "login.form.shibboleth": "Shibboleth ସହିତ ଲଗ୍ ଇନ୍ କରନ୍ତୁ", - - "login.form.submit": "ଲଗ୍ ଇନ୍ କରନ୍ତୁ", - - "login.title": "ଲଗ୍ ଇନ୍", - - "login.breadcrumbs": "ଲଗ୍ ଇନ୍", - - "logout.form.header": "DSpace ରୁ ଲଗ୍ ଆଉଟ୍ କରନ୍ତୁ", - - "logout.form.submit": "ଲଗ୍ ଆଉଟ୍ କରନ୍ତୁ", - - "logout.title": "ଲଗ୍ ଆଉଟ୍", - - "menu.header.nav.description": "ପ୍ରଶାସନ ନାଭିଗେସନ୍ ବାର", - - "menu.header.admin": "ପରିଚାଳନା", - - "menu.header.image.logo": "ରେପୋଜିଟରୀ ଲୋଗୋ", - - "menu.header.admin.description": "ପରିଚାଳନା ମେନୁ", - - "menu.section.access_control": "ପ୍ରବେଶ ନିୟନ୍ତ୍ରଣ", - - "menu.section.access_control_authorizations": "ଅନୁମୋଦନ", - - "menu.section.access_control_bulk": "ବଲ୍କ ପ୍ରବେଶ ପରିଚାଳନା", - - "menu.section.access_control_groups": "ଗୋଷ୍ଠୀ", - - "menu.section.access_control_people": "ଲୋକ", - - "menu.section.reports": "ରିପୋର୍ଟଗୁଡିକ", - - "menu.section.reports.collections": "ଫିଲ୍ଟର୍ କରାଯାଇଥିବା ସଂଗ୍ରହ", - - "menu.section.reports.queries": "ମେଟାଡାଟା ପ୍ରଶ୍ନ", - - "menu.section.admin_search": "ପ୍ରଶାସନ ସନ୍ଧାନ", - - "menu.section.browse_community": "ଏହି ସମ୍ପ୍ରଦାୟ", - - "menu.section.browse_community_by_author": "ଲେଖକ ଦ୍ୱାରା", - - "menu.section.browse_community_by_issue_date": "ଇସ୍ୟୁ ତାରିଖ ଦ୍ୱାରା", - - "menu.section.browse_community_by_title": "ଆଖ୍ୟା ଦ୍ୱାରା", - - "menu.section.browse_global": "ସମସ୍ତ DSpace", - - "menu.section.browse_global_by_author": "ଲେଖକ ଦ୍ୱାରା", - - "menu.section.browse_global_by_dateissued": "ଇସ୍ୟୁ ତାରିଖ ଦ୍ୱାରା", - - "menu.section.browse_global_by_subject": "ବିଷୟ ଦ୍ୱାରା", - - "menu.section.browse_global_by_srsc": "ବିଷୟ ବର୍ଗ ଦ୍ୱାରା", - - "menu.section.browse_global_by_nsi": "ନରୱେଜିଆନ୍ ବିଜ୍ଞାନ ସୂଚୀ ଦ୍ୱାରା", - - "menu.section.browse_global_by_title": "ଆଖ୍ୟା ଦ୍ୱାରା", - - "menu.section.browse_global_communities_and_collections": "ସମ୍ପ୍ରଦାୟ ଏବଂ ସଂଗ୍ରହ", - - "menu.section.browse_global_geospatial_map": "ଭୌଗୋଳିକ ସ୍ଥାନ (ମାନଚିତ୍ର) ଦ୍ୱାରା", - - "menu.section.control_panel": "ନିୟନ୍ତ୍ରଣ ପ୍ୟାନେଲ୍", - - "menu.section.curation_task": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ", - - "menu.section.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", - - "menu.section.edit_collection": "ସଂଗ୍ରହ", - - "menu.section.edit_community": "ସମ୍ପ୍ରଦାୟ", - - "menu.section.edit_item": "ଆଇଟମ୍", - - "menu.section.export": "ରପ୍ତାନି କରନ୍ତୁ", - - "menu.section.export_collection": "ସଂଗ୍ରହ", - - "menu.section.export_community": "ସମ୍ପ୍ରଦାୟ", - - "menu.section.export_item": "ଆଇଟମ୍", - - "menu.section.export_metadata": "ମେଟାଡାଟା", - - "menu.section.export_batch": "ବ୍ୟାଚ୍ ରପ୍ତାନି (ZIP)", - - "menu.section.icon.access_control": "ପ୍ରବେଶ ନିୟନ୍ତ୍ରଣ ମେନୁ ବିଭାଗ", - - "menu.section.icon.reports": "ରିପୋର୍ଟ ମେନୁ ବିଭାଗ", - - "menu.section.icon.admin_search": "ପ୍ରଶାସନ ସନ୍ଧାନ ମେନୁ ବିଭାଗ", - - "menu.section.icon.control_panel": "ନିୟନ୍ତ୍ରଣ ପ୍ୟାନେଲ୍ ମେନୁ ବିଭାଗ", - - "menu.section.icon.curation_tasks": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ ମେନୁ ବିଭାଗ", - - "menu.section.icon.edit": "ସମ୍ପାଦନ ମେନୁ ବିଭାଗ", - - "menu.section.icon.export": "ରପ୍ତାନି ମେନୁ ବିଭାଗ", - - "menu.section.icon.find": "ସନ୍ଧାନ ମେନୁ ବିଭାଗ", - - "menu.section.icon.health": "ସ୍ୱାସ୍ଥ୍ୟ ଯାଞ୍ଚ ମେନୁ ବିଭାଗ", - - "menu.section.icon.import": "ଆମଦାନୀ ମେନୁ ବିଭାଗ", - - "menu.section.icon.new": "ନୂତନ ମେନୁ ବିଭାଗ", - - "menu.section.icon.pin": "ସାଇଡବାର୍ ପିନ୍ କରନ୍ତୁ", - - "menu.section.icon.unpin": "ସାଇଡବାର୍ ଅନ୍ପିନ୍ କରନ୍ତୁ", - - "menu.section.icon.notifications": "ବିଜ୍ଞପ୍ତି ମେନୁ ବିଭାଗ", - - "menu.section.import": "ଆମଦାନୀ କରନ୍ତୁ", - - "menu.section.import_batch": "ବ୍ୟାଚ୍ ଆମଦାନୀ (ZIP)", - - "menu.section.import_metadata": "ମେଟାଡାଟା", - - "menu.section.new": "ନୂତନ", - - "menu.section.new_collection": "ସଂଗ୍ରହ", - - "menu.section.new_community": "ସମ୍ପ୍ରଦାୟ", - - "menu.section.new_item": "ଆଇଟମ୍", - - "menu.section.new_item_version": "ଆଇଟମ୍ ସଂସ୍କରଣ", - - "menu.section.new_process": "ପ୍ରକ୍ରିୟା", - - "menu.section.notifications": "ବିଜ୍ଞପ୍ତିଗୁଡିକ", - - "menu.section.quality-assurance": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ", - - "menu.section.notifications_publication-claim": "ପ୍ରକାଶନ ଦାବି", - - "menu.section.pin": "ସାଇଡବାର୍ ପିନ୍ କରନ୍ତୁ", - - "menu.section.unpin": "ସାଇଡବାର୍ ଅନ୍ପିନ୍ କରନ୍ତୁ", - - "menu.section.processes": "ପ୍ରକ୍ରିୟାଗୁଡିକ", - - "menu.section.health": "ସ୍ୱାସ୍ଥ୍ୟ", - - "menu.section.registries": "ରେଜିଷ୍ଟ୍ରି", - - "menu.section.registries_format": "ଫର୍ମାଟ୍", - - "menu.section.registries_metadata": "ମେଟାଡାଟା", - - "menu.section.statistics": "ପରିସଂଖ୍ୟାନ", - - "menu.section.statistics_task": "ପରିସଂଖ୍ୟାନ କାର୍ଯ୍ୟ", - - "menu.section.toggle.access_control": "ପ୍ରବେଶ ନିୟନ୍ତ୍ରଣ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", - - "menu.section.toggle.reports": "ରିପୋର୍ଟ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", - - "menu.section.toggle.control_panel": "ନିୟନ୍ତ୍ରଣ ପ୍ୟାନେଲ୍ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", - - "menu.section.toggle.curation_task": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", - - "menu.section.toggle.edit": "ସମ୍ପାଦନ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", - - "menu.section.toggle.export": "ରପ୍ତାନି ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", - - "menu.section.toggle.find": "ସନ୍ଧାନ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", - - "menu.section.toggle.import": "ଆମଦାନୀ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", - - "menu.section.toggle.new": "ନୂତନ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", - - "menu.section.toggle.registries": "ରେଜିଷ୍ଟ୍ରି ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", - - "menu.section.toggle.statistics_task": "ପରିସଂଖ୍ୟାନ କାର୍ଯ୍ୟ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", - - "menu.section.workflow": "ୱର୍କଫ୍ଲୋ ପରିଚାଳନା କରନ୍ତୁ", - - "metadata-export-search.tooltip": "ସନ୍ଧାନ ଫଳାଫଳକୁ CSV ଭାବରେ ରପ୍ତାନି କରନ୍ତୁ", - - "metadata-export-search.submit.success": "ରପ୍ତାନି ସଫଳତାର ସହିତ ଆରମ୍ଭ ହୋଇଥିଲା", - - "metadata-export-search.submit.error": "ରପ୍ତାନି ଆରମ୍ଭ କରିବାରେ ବିଫଳ ହୋଇଛି", - - "mydspace.breadcrumbs": "ମୋର DSpace", - - "mydspace.description": "", - - "mydspace.messages.controller-help": "ଆଇଟମ୍ ପ୍ରେରକକୁ ଏକ ସନ୍ଦେଶ ପଠାଇବା ପାଇଁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", - "mydspace.messages.description-placeholder": "ଆପଣଙ୍କର ସନ୍ଦେଶ ଏଠାରେ ଲେଖନ୍ତୁ...", - "mydspace.messages.hide-msg": "ସନ୍ଦେଶ ଲୁଚାନ୍ତୁ", - "mydspace.messages.mark-as-read": "ପଢ଼ିସାରିଛି ଭାବେ ଚିହ୍ନିତ କରନ୍ତୁ", - "mydspace.messages.mark-as-unread": "ଅପଢ଼ା ଭାବେ ଚିହ୍ନିତ କରନ୍ତୁ", - "mydspace.messages.no-content": "କୌଣସି ବିଷୟବସ୍ତୁ ନାହିଁ।", - "mydspace.messages.no-messages": "ଏପର୍ଯ୍ୟନ୍ତ କୌଣସି ସନ୍ଦେଶ ନାହିଁ।", - "mydspace.messages.send-btn": "ପଠାନ୍ତୁ", - "mydspace.messages.show-msg": "ସନ୍ଦେଶ ଦେଖାନ୍ତୁ", - "mydspace.messages.subject-placeholder": "ବିଷୟ...", - "mydspace.messages.submitter-help": "ନିୟନ୍ତ୍ରକଙ୍କୁ ଏକ ସନ୍ଦେଶ ପଠାଇବା ପାଇଁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", - "mydspace.messages.title": "ସନ୍ଦେଶଗୁଡିକ", - "mydspace.messages.to": "ପ୍ରତି", - "mydspace.new-submission": "ନୂତନ ଦାଖଲା", - "mydspace.new-submission-external": "ବାହ୍ୟ ସ୍ରୋତରୁ ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", - "mydspace.new-submission-external-short": "ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", - "mydspace.results.head": "ଆପଣଙ୍କର ଦାଖଲାଗୁଡିକ", - "mydspace.results.no-abstract": "କୌଣସି ସାରାଂଶ ନାହିଁ", - "mydspace.results.no-authors": "କୌଣସି ଲେଖକ ନାହିଁ", - "mydspace.results.no-collections": "କୌଣସି ସଂଗ୍ରହ ନାହିଁ", - "mydspace.results.no-date": "କୌଣସି ତାରିଖ ନାହିଁ", - "mydspace.results.no-files": "କୌଣସି ଫାଇଲ୍ ନାହିଁ", - "mydspace.results.no-results": "ଦେଖାଇବା ପାଇଁ କୌଣସି ଆଇଟମ୍ ନଥିଲା", - "mydspace.results.no-title": "କୌଣସି ଶୀର୍ଷକ ନାହିଁ", - "mydspace.results.no-uri": "କୌଣସି URI ନାହିଁ", - "mydspace.search-form.placeholder": "ମୋର DSpace ରେ ଖୋଜନ୍ତୁ...", - "mydspace.show.workflow": "ୱାର୍କଫ୍ଲୋ କାର୍ଯ୍ୟଗୁଡିକ", - "mydspace.show.workspace": "ଆପଣଙ୍କର ଦାଖଲାଗୁଡିକ", - "mydspace.show.supervisedWorkspace": "ତଦାରଖ କରାଯାଇଥିବା ଆଇଟମ୍", - "mydspace.status": "ମୋର DSpace ସ୍ଥିତି:", - "mydspace.status.mydspaceArchived": "ସଂରକ୍ଷିତ", - "mydspace.status.mydspaceValidation": "ଯାଞ୍ଚ", - "mydspace.status.mydspaceWaitingController": "ସମୀକ୍ଷକଙ୍କ ପ୍ରତୀକ୍ଷାରେ", - "mydspace.status.mydspaceWorkflow": "ୱାର୍କଫ୍ଲୋ", - "mydspace.status.mydspaceWorkspace": "ୱାର୍କସ୍ପେସ୍", - "mydspace.title": "ମୋର DSpace", - "mydspace.upload.upload-failed": "ନୂତନ ୱାର୍କସ୍ପେସ୍ ସୃଷ୍ଟି କରିବାରେ ତ୍ରୁଟି। ପୁନରାବୃତ୍ତି କରିବା ପୂର୍ବରୁ ଅପଲୋଡ୍ କରାଯାଇଥିବା ବିଷୟବସ୍ତୁ ଯାଞ୍ଚ କରନ୍ତୁ।", - "mydspace.upload.upload-failed-manyentries": "ଅପ୍ରକ୍ରିୟାଶୀଳ ଫାଇଲ୍। ଏକ ଫାଇଲ୍ ପାଇଁ କେବଳ ଗୋଟିଏ ଏଣ୍ଟ୍ରି ଅନୁମତି ଥିବାବେଳେ ଅନେକ ଏଣ୍ଟ୍ରି ଚିହ୍ନିତ ହୋଇଛି।", - "mydspace.upload.upload-failed-moreonefile": "ଅପ୍ରକ୍ରିୟାଶୀଳ ଅନୁରୋଧ। କେବଳ ଗୋଟିଏ ଫାଇଲ୍ ଅନୁମତି ଅଛି।", - "mydspace.upload.upload-multiple-successful": "{{qty}} ନୂତନ ୱାର୍କସ୍ପେସ୍ ଆଇଟମ୍ ସୃଷ୍ଟି ହୋଇଛି।", - "mydspace.view-btn": "ଦେଖନ୍ତୁ", - "nav.expandable-navbar-section-suffix": "(ଉପମେନୁ)", - "notification.suggestion": "ଆମେ {{source}} ରେ {{count}} ପ୍ରକାଶନ ପାଇଛୁ ଯାହା ଆପଣଙ୍କ ପ୍ରୋଫାଇଲ୍ ସହିତ ସମ୍ବନ୍ଧିତ ପ୍ରତୀତ ହୁଏ।
", - "notification.suggestion.review": "ପରାମର୍ଶଗୁଡିକ ସମୀକ୍ଷା କରନ୍ତୁ", - "notification.suggestion.please": "ଦୟାକରି", - "nav.browse.header": "ସମସ୍ତ DSpace", - "nav.community-browse.header": "କମ୍ୟୁନିଟି ଦ୍ୱାରା", - "nav.context-help-toggle": "ପ୍ରସଙ୍ଗ ସହାୟତା ଟୋଗଲ୍ କରନ୍ତୁ", - "nav.language": "ଭାଷା ପରିବର୍ତ୍ତନ କରନ୍ତୁ", - "nav.login": "ଲଗ୍ ଇନ୍ କରନ୍ତୁ", - "nav.user-profile-menu-and-logout": "ଉପଯୋଗକର୍ତ୍ତା ପ୍ରୋଫାଇଲ୍ ମେନୁ ଏବଂ ଲଗ୍ ଆଉଟ୍", - "nav.logout": "ଲଗ୍ ଆଉଟ୍ କରନ୍ତୁ", - "nav.main.description": "ମୁଖ୍ୟ ନେଭିଗେସନ୍ ବାର୍", - "nav.mydspace": "ମୋର DSpace", - "nav.profile": "ପ୍ରୋଫାଇଲ୍", - "nav.search": "ଖୋଜନ୍ତୁ", - "nav.search.button": "ଖୋଜା ଦାଖଲ କରନ୍ତୁ", - "nav.statistics.header": "ପରିସଂଖ୍ୟାନ", - "nav.stop-impersonating": "EPerson ଭାବେ ଅଭିନୟ ବନ୍ଦ କରନ୍ତୁ", - "nav.subscriptions": "ସବସ୍କ୍ରିପସନ୍", - "nav.toggle": "ନେଭିଗେସନ୍ ଟୋଗଲ୍ କରନ୍ତୁ", - "nav.user.description": "ଉପଯୋଗକର୍ତ୍ତା ପ୍ରୋଫାଇଲ୍ ବାର୍", - "listelement.badge.dso-type": "ଆଇଟମ୍ ପ୍ରକାର:", - "none.listelement.badge": "ଆଇଟମ୍", - "publication-claim.title": "ପ୍ରକାଶନ ଦାବି", - "publication-claim.source.description": "ନିମ୍ନରେ ଆପଣ ସମସ୍ତ ସ୍ରୋତ ଦେଖିପାରିବେ।", - "quality-assurance.title": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ", - "quality-assurance.topics.description": "ନିମ୍ନରେ ଆପଣ {{source}} କୁ ସବସ୍କ୍ରିପସନ୍ ରୁ ପ୍ରାପ୍ତ ସମସ୍ତ ବିଷୟ ଦେଖିପାରିବେ।", - "quality-assurance.source.description": "ନିମ୍ନରେ ଆପଣ ସମସ୍ତ ବିଜ୍ଞପ୍ତି ସ୍ରୋତ ଦେଖିପାରିବେ।", - "quality-assurance.topics": "ବର୍ତ୍ତମାନର ବିଷୟଗୁଡିକ", - "quality-assurance.source": "ବର୍ତ୍ତମାନର ସ୍ରୋତଗୁଡିକ", - "quality-assurance.table.topic": "ବିଷୟ", - "quality-assurance.table.source": "ସ୍ରୋତ", - "quality-assurance.table.last-event": "ଶେଷ ଘଟଣା", - "quality-assurance.table.actions": "କାର୍ଯ୍ୟଗୁଡିକ", - "quality-assurance.source-list.button.detail": "{{param}} ପାଇଁ ବିଷୟଗୁଡିକ ଦେଖାନ୍ତୁ", - "quality-assurance.topics-list.button.detail": "{{param}} ପାଇଁ ପରାମର୍ଶଗୁଡିକ ଦେଖାନ୍ତୁ", - "quality-assurance.noTopics": "କୌଣସି ବିଷୟ ମିଳିଲା ନାହିଁ।", - "quality-assurance.noSource": "କୌଣସି ସ୍ରୋତ ମିଳିଲା ନାହିଁ।", - "notifications.events.title": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ ପରାମର୍ଶ", - "quality-assurance.topic.error.service.retrieve": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ ବିଷୟଗୁଡିକ ଲୋଡ୍ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - "quality-assurance.source.error.service.retrieve": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ ସ୍ରୋତ ଲୋଡ୍ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - "quality-assurance.loading": "ଲୋଡ୍ ହେଉଛି ...", - "quality-assurance.events.topic": "ବିଷୟ:", - "quality-assurance.noEvents": "କୌଣସି ପରାମର୍ଶ ମିଳିଲା ନାହିଁ।", - "quality-assurance.event.table.trust": "ବିଶ୍ୱାସ", - "quality-assurance.event.table.publication": "ପ୍ରକାଶନ", - "quality-assurance.event.table.details": "ବିବରଣୀ", - "quality-assurance.event.table.project-details": "ପ୍ରୋଜେକ୍ଟ ବିବରଣୀ", - "quality-assurance.event.table.reasons": "କାରଣଗୁଡିକ", - "quality-assurance.event.table.actions": "କାର୍ଯ୍ୟଗୁଡିକ", - "quality-assurance.event.action.accept": "ପରାମର୍ଶ ଗ୍ରହଣ କରନ୍ତୁ", - "quality-assurance.event.action.ignore": "ପରାମର୍ଶ ଅଗ୍ରାହ୍ୟ କରନ୍ତୁ", - "quality-assurance.event.action.undo": "ଡିଲିଟ୍ କରନ୍ତୁ", - "quality-assurance.event.action.reject": "ପରାମର୍ଶ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", - "quality-assurance.event.action.import": "ପ୍ରୋଜେକ୍ଟ ଆମଦାନୀ କରନ୍ତୁ ଏବଂ ପରାମର୍ଶ ଗ୍ରହଣ କରନ୍ତୁ", - "quality-assurance.event.table.pidtype": "PID ପ୍ରକାର:", - "quality-assurance.event.table.pidvalue": "PID ମୂଲ୍ୟ:", - "quality-assurance.event.table.subjectValue": "ବିଷୟ ମୂଲ୍ୟ:", - "quality-assurance.event.table.abstract": "ସାରାଂଶ:", - "quality-assurance.event.table.suggestedProject": "OpenAIRE ଦ୍ୱାରା ପ୍ରସ୍ତାବିତ ପ୍ରୋଜେକ୍ଟ ତଥ୍ୟ", - "quality-assurance.event.table.project": "ପ୍ରୋଜେକ୍ଟ ଶୀର୍ଷକ:", - "quality-assurance.event.table.acronym": "ସଂକ୍ଷିପ୍ତ ନାମ:", - "quality-assurance.event.table.code": "କୋଡ୍:", - "quality-assurance.event.table.funder": "ଅର୍ଥଦାତା:", - "quality-assurance.event.table.fundingProgram": "ଅର୍ଥଦାନ ପ୍ରୋଗ୍ରାମ୍:", - "quality-assurance.event.table.jurisdiction": "କ୍ଷେତ୍ରାଧିକାର:", - "quality-assurance.events.back": "ବିଷୟଗୁଡିକ ପାଖକୁ ଫେରନ୍ତୁ", - "quality-assurance.events.back-to-sources": "ସ୍ରୋତଗୁଡିକ ପାଖକୁ ଫେରନ୍ତୁ", - "quality-assurance.event.table.less": "କମ୍ ଦେଖାନ୍ତୁ", - "quality-assurance.event.table.more": "ଅଧିକ ଦେଖାନ୍ତୁ", - "quality-assurance.event.project.found": "ସ୍ଥାନୀୟ ରେକର୍ଡ୍ ସହିତ ବାନ୍ଧିଛି:", - "quality-assurance.event.project.notFound": "କୌଣସି ସ୍ଥାନୀୟ ରେକର୍ଡ୍ ମିଳିଲା ନାହିଁ", - "quality-assurance.event.sure": "ଆପଣ ନିଶ୍ଚିତ କି?", - "quality-assurance.event.ignore.description": "ଏହି କାର୍ଯ୍ୟକୁ ପଛକୁ ଫେରାଇ ହେବ ନାହିଁ। ଏହି ପରାମର୍ଶକୁ ଅଗ୍ରାହ୍ୟ କରିବେ କି?", - "quality-assurance.event.undo.description": "ଏହି କାର୍ଯ୍ୟକୁ ପଛକୁ ଫେରାଇ ହେବ ନାହିଁ!", - "quality-assurance.event.reject.description": "ଏହି କାର୍ଯ୍ୟକୁ ପଛକୁ ଫେରାଇ ହେବ ନାହିଁ। ଏହି ପରାମର୍ଶକୁ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିବେ କି?", - "quality-assurance.event.accept.description": "କୌଣସି DSpace ପ୍ରୋଜେକ୍ଟ ଚୟନ କରାଯାଇନାହିଁ। ପରାମର୍ଶ ତଥ୍ୟ ଉପରେ ଆଧାରିତ ଏକ ନୂତନ ପ୍ରୋଜେକ୍ଟ ସୃଷ୍ଟି ହେବ।", - "quality-assurance.event.action.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "quality-assurance.event.action.saved": "ଆପଣଙ୍କର ନିଷ୍ପତ୍ତି ସଫଳତାର ସହିତ ସଞ୍ଚୟ ହୋଇଛି।", - "quality-assurance.event.action.error": "ଏକ ତ୍ରୁଟି ଘଟିଛି। ଆପଣଙ୍କର ନିଷ୍ପତ୍ତି ସଞ୍ଚୟ ହୋଇନାହିଁ।", - "quality-assurance.event.modal.project.title": "ବାନ୍ଧିବା ପାଇଁ ଏକ ପ୍ରୋଜେକ୍ଟ ଚୟନ କରନ୍ତୁ", - "quality-assurance.event.modal.project.publication": "ପ୍ରକାଶନ:", - "quality-assurance.event.modal.project.bountToLocal": "ସ୍ଥାନୀୟ ରେକର୍ଡ୍ ସହିତ ବାନ୍ଧିଛି:", - "quality-assurance.event.modal.project.select": "ପ୍ରୋଜେକ୍ଟ ଖୋଜନ୍ତୁ", - "quality-assurance.event.modal.project.search": "ଖୋଜନ୍ତୁ", - "quality-assurance.event.modal.project.clear": "ପରିଷ୍କାର କରନ୍ତୁ", - "quality-assurance.event.modal.project.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "quality-assurance.event.modal.project.bound": "ବାନ୍ଧିଥିବା ପ୍ରୋଜେକ୍ଟ", - "quality-assurance.event.modal.project.remove": "ଅପସାରଣ କରନ୍ତୁ", - "quality-assurance.event.modal.project.placeholder": "ଏକ ପ୍ରୋଜେକ୍ଟ ନାମ ପ୍ରବେଶ କରନ୍ତୁ", - "quality-assurance.event.modal.project.notFound": "କୌଣସି ପ୍ରୋଜେକ୍ଟ ମିଳିଲା ନାହିଁ।", - "quality-assurance.event.project.bounded": "ପ୍ରୋଜେକ୍ଟ ସଫଳତାର ସହିତ ଲିଙ୍କ୍ ହୋଇଛି।", - "quality-assurance.event.project.removed": "ପ୍ରୋଜେକ୍ଟ ସଫଳତାର ସହିତ ଅଲିଙ୍କ୍ ହୋଇଛି।", - "quality-assurance.event.project.error": "ଏକ ତ୍ରୁଟି ଘଟିଛି। କୌଣସି କାର୍ଯ୍ୟ କରାଯାଇନାହିଁ।", - "quality-assurance.event.reason": "କାରଣ", - "orgunit.listelement.badge": "ସାଂସ୍ଥିକ ଏକକ", - "orgunit.listelement.no-title": "ଶୀର୍ଷକବିହୀନ", - "orgunit.page.city": "ସହର", - "orgunit.page.country": "ଦେଶ", - "orgunit.page.dateestablished": "ସ୍ଥାପନ ତାରିଖ", - "orgunit.page.description": "ବର୍ଣ୍ଣନା", - "orgunit.page.edit": "ଏହି ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - "orgunit.page.id": "ID", - "orgunit.page.options": "ବିକଳ୍ପଗୁଡିକ", - "orgunit.page.titleprefix": "ସାଂସ୍ଥିକ ଏକକ: ", - "orgunit.page.ror": "ROR ପରିଚୟକାରୀ", - "orgunit.search.results.head": "ସାଂସ୍ଥିକ ଏକକ ଖୋଜା ଫଳାଫଳ", - "pagination.options.description": "ପୃଷ୍ଠାକରଣ ବିକଳ୍ପଗୁଡିକ", - "pagination.results-per-page": "ପ୍ରତି ପୃଷ୍ଠାରେ ଫଳାଫଳ", - "pagination.showing.detail": "{{ range }} ର {{ total }}", - "pagination.showing.label": "ବର୍ତ୍ତମାନ ଦେଖାଯାଉଛି ", - "pagination.sort-direction": "କ୍ରମ ବିକଳ୍ପଗୁଡିକ", - "person.listelement.badge": "ବ୍ୟକ୍ତି", - "person.listelement.no-title": "କୌଣସି ନାମ ମିଳିଲା ନାହିଁ", - "person.page.birthdate": "ଜନ୍ମ ତାରିଖ", - "person.page.edit": "ଏହି ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - "person.page.email": "ଇମେଲ୍ ଠିକଣା", - "person.page.firstname": "ପ୍ରଥମ ନାମ", - "person.page.jobtitle": "ଚାକିରି ଶୀର୍ଷକ", - "person.page.lastname": "ଶେଷ ନାମ", - "person.page.name": "ନାମ", - "person.page.link.full": "ସମସ୍ତ ମେଟାଡାଟା ଦେଖାନ୍ତୁ", - "person.page.options": "ବିକଳ୍ପଗୁଡିକ", - "person.page.orcid": "ORCID", - "person.page.staffid": "ସ୍ଟାଫ୍ ID", - "person.page.titleprefix": "ବ୍ୟକ୍ତି: ", - "person.search.results.head": "ବ୍ୟକ୍ତି ଖୋଜା ଫଳାଫଳ", - "person-relationships.search.results.head": "ବ୍ୟକ୍ତି ଖୋଜା ଫଳାଫଳ", - "person.search.title": "ବ୍ୟକ୍ତି ଖୋଜା", - "process.new.select-parameters": "ପାରାମିଟର୍", - "process.new.select-parameter": "ପାରାମିଟର୍ ଚୟନ କରନ୍ତୁ", - "process.new.add-parameter": "ଏକ ପାରାମିଟର୍ ଯୋଡନ୍ତୁ...", - "process.new.delete-parameter": "ପାରାମିଟର୍ ଡିଲିଟ୍ କରନ୍ତୁ", - "process.new.parameter.label": "ପାରାମିଟର୍ ମୂଲ୍ୟ", - "process.new.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "process.new.submit": "ସଞ୍ଚୟ କରନ୍ତୁ", - "process.new.select-script": "ସ୍କ୍ରିପ୍ଟ୍", - "process.new.select-script.placeholder": "ଏକ ସ୍କ୍ରିପ୍ଟ୍ ଚୟନ କରନ୍ତୁ...", - "process.new.select-script.required": "ସ୍କ୍ରିପ୍ଟ୍ ଆବଶ୍ୟକ", - "process.new.parameter.file.upload-button": "ଫାଇଲ୍ ଚୟନ କରନ୍ତୁ...", - "process.new.parameter.file.required": "ଦୟାକରି ଏକ ଫାଇଲ୍ ଚୟନ କରନ୍ତୁ", - "process.new.parameter.integer.required": "ପାରାମିଟର୍ ମୂଲ୍ୟ ଆବଶ୍ୟକ", - "process.new.parameter.string.required": "ପାରାମିଟର୍ ମୂଲ୍ୟ ଆବଶ୍ୟକ", - "process.new.parameter.type.value": "ମୂଲ୍ୟ", - "process.new.parameter.type.file": "ଫାଇଲ୍", - "process.new.parameter.required.missing": "ନିମ୍ନଲିଖିତ ପାରାମିଟର୍ ଆବଶ୍ୟକ କିନ୍ତୁ ଏପର୍ଯ୍ୟନ୍ତ ଅନୁପସ୍ଥିତ:", - "process.new.notification.success.title": "ସଫଳତା", - "process.new.notification.success.content": "ପ୍ରକ୍ରିୟା ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", - "process.new.notification.error.title": "ତ୍ରୁଟି", - "process.new.notification.error.content": "ଏହି ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - "process.new.notification.error.max-upload.content": "ଫାଇଲ୍ ଅଧିକତମ ଅପଲୋଡ୍ ଆକାର ଅତିକ୍ରମ କରିଛି", - "process.new.header": "ଏକ ନୂତନ ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରନ୍ତୁ", - "process.new.title": "ଏକ ନୂତନ ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରନ୍ତୁ", - "process.new.breadcrumbs": "ଏକ ନୂତନ ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରନ୍ତୁ", - "process.detail.arguments": "ଯୁକ୍ତିଗୁଡିକ", - "process.detail.arguments.empty": "ଏହି ପ୍ରକ୍ରିୟାରେ କୌଣସି ଯୁକ୍ତି ନାହିଁ", - "process.detail.back": "ପଛକୁ ଯାଆନ୍ତୁ", - "process.detail.output": "ପ୍ରକ୍ରିୟା ଆଉଟପୁଟ୍", - "process.detail.logs.button": "ପ୍ରକ୍ରିୟା ଆଉଟପୁଟ୍ ପ୍ରାପ୍ତ କରନ୍ତୁ", - "process.detail.logs.loading": "ପ୍ରାପ୍ତ କରୁଛି", - "process.detail.logs.none": "ଏହି ପ୍ରକ୍ରିୟାରେ କୌଣସି ଆଉଟପୁଟ୍ ନାହିଁ", - "process.detail.output-files": "ଆଉଟପୁଟ୍ ଫାଇଲ୍", - "process.detail.output-files.empty": "ଏହି ପ୍ରକ୍ରିୟାରେ କୌଣସି ଆଉଟପୁଟ୍ ଫାଇଲ୍ ନାହିଁ", - "process.detail.script": "ସ୍କ୍ରିପ୍ଟ୍", - "process.detail.title": "ପ୍ରକ୍ରିୟା: {{ id }} - {{ name }}", - "process.detail.start-time": "ଆରମ୍ଭ ସମୟ", - "process.detail.end-time": "ସମାପ୍ତି ସମୟ", - "process.detail.status": "ସ୍ଥିତି", - "process.detail.create": "ସମାନ ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରନ୍ତୁ", - "process.detail.actions": "କାର୍ଯ୍ୟଗୁଡିକ", - "process.detail.delete.button": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", - "process.detail.delete.header": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", - "process.detail.delete.body": "ଆପଣ ନିଶ୍ଚିତ କି ବର୍ତ୍ତମାନର ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", - "process.detail.delete.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - "process.detail.delete.confirm": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", - "process.detail.delete.success": "ପ୍ରକ୍ରିୟା ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି।", - "process.detail.delete.error": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", - "process.detail.refreshing": "ସ୍ୱୟଂଚାଳିତ ରିଫ୍ରେସ୍ ହେଉଛି…", - "process.overview.table.completed.info": "ସମାପ୍ତି ସମୟ (UTC)", - "process.overview.table.completed.title": "ସଫଳ ପ୍ରକ୍ରିୟାଗୁଡିକ", - "process.overview.table.empty": "କୌଣସି ମେଳ ଖାଉଥିବା ପ୍ରକ୍ରିୟା ମିଳିଲା ନାହିଁ।", - "process.overview.table.failed.info": "ସମାପ୍ତି ସମୟ (UTC)", - "process.overview.table.failed.title": "ବିଫଳ ପ୍ରକ୍ରିୟାଗୁଡିକ", - "process.overview.table.finish": "ସମାପ୍ତି ସମୟ (UTC)", - "process.overview.table.id": "ପ୍ରକ୍ରିୟା ID", - "process.overview.table.name": "ନାମ", - "process.overview.table.running.info": "ଆରମ୍ଭ ସମୟ (UTC)", - "process.overview.table.running.title": "ଚାଲିଥିବା ପ୍ରକ୍ରିୟାଗୁଡିକ", - "process.overview.table.scheduled.info": "ସୃଷ୍ଟି ସମୟ (UTC)", - "process.overview.table.scheduled.title": "ଯୋଜନାକୃତ ପ୍ରକ୍ରିୟାଗୁଡିକ", - "process.overview.table.start": "ଆରମ୍ଭ ସମୟ (UTC)", - "process.overview.table.status": "ସ୍ଥିତି", - "process.overview.table.user": "ଉପଯୋଗକର୍ତ୍ତା", - "process.overview.title": "ପ୍ରକ୍ରିୟା ସମୀକ୍ଷା", - "process.overview.breadcrumbs": "ପ୍ରକ୍ରିୟା ସମୀକ୍ଷା", - "process.overview.new": "ନୂତନ", - "process.overview.table.actions": "କ୍ରିୟାଗୁଡ଼ିକ", - "process.overview.delete": "{{count}} ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", - "process.overview.delete-process": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", - "process.overview.delete.clear": "ଡିଲିଟ୍ ଚୟନ ସଫା କରନ୍ତୁ", - "process.overview.delete.processing": "{{count}} ପ୍ରକ୍ରିୟା(ଗୁଡ଼ିକ) ଡିଲିଟ୍ ହେଉଛି। ଦୟାକରି ଡିଲିଟ୍ ସମ୍ପୂର୍ଣ୍ଣ ହେବା ପର୍ଯ୍ୟନ୍ତ ଅପେକ୍ଷା କରନ୍ତୁ। ଏହା କିଛି ସମୟ ନେଇପାରେ।", - "process.overview.delete.body": "ଆପଣ ନିଶ୍ଚିତ କି {{count}} ପ୍ରକ୍ରିୟା(ଗୁଡ଼ିକ) ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", - "process.overview.delete.header": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", - "process.overview.unknown.user": "ଅଜ୍ଞାତ", - "process.bulk.delete.error.head": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରିବାରେ ତ୍ରୁଟି", - "process.bulk.delete.error.body": "ID {{processId}} ସହିତ ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ ହୋଇପାରିବ ନାହିଁ। ଅନ୍ୟ ପ୍ରକ୍ରିୟାଗୁଡ଼ିକ ଡିଲିଟ୍ ହେବା ଜାରି ରହିବ।", - "process.bulk.delete.success": "{{count}} ପ୍ରକ୍ରିୟା(ଗୁଡ଼ିକ) ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", - "profile.breadcrumbs": "ପ୍ରୋଫାଇଲ୍ ଅପଡେଟ୍ କରନ୍ତୁ", - "profile.card.accessibility.content": "ସୁଗମତା ସେଟିଂସ୍ ସୁଗମତା ସେଟିଂସ୍ ପୃଷ୍ଠାରେ କନଫିଗର୍ କରାଯାଇପାରିବ।", - "profile.card.accessibility.header": "ସୁଗମତା", - "profile.card.accessibility.link": "ସୁଗମତା ସେଟିଂସ୍ ପୃଷ୍ଠାକୁ ଯାଆନ୍ତୁ", - "profile.card.identify": "ଚିହ୍ନଟ କରନ୍ତୁ", - "profile.card.security": "ସୁରକ୍ଷା", - "profile.form.submit": "ସେଭ୍ କରନ୍ତୁ", - "profile.groups.head": "ଆପଣ ଯେଉଁ ଅଧିକାର ଗୋଷ୍ଠୀଗୁଡ଼ିକରେ ଅଛନ୍ତି", - "profile.special.groups.head": "ଆପଣ ଯେଉଁ ବିଶେଷ ଅଧିକାର ଗୋଷ୍ଠୀଗୁଡ଼ିକରେ ଅଛନ୍ତି", - "profile.metadata.form.error.firstname.required": "ପ୍ରଥମ ନାମ ଆବଶ୍ୟକ", - "profile.metadata.form.error.lastname.required": "ଶେଷ ନାମ ଆବଶ୍ୟକ", - "profile.metadata.form.label.email": "ଇମେଲ୍ ଠିକଣା", - "profile.metadata.form.label.firstname": "ପ୍ରଥମ ନାମ", - "profile.metadata.form.label.language": "ଭାଷା", - "profile.metadata.form.label.lastname": "ଶେଷ ନାମ", - "profile.metadata.form.label.phone": "ଯୋଗାଯୋଗ ଫୋନ୍", - "profile.metadata.form.notifications.success.content": "ଆପଣଙ୍କର ପ୍ରୋଫାଇଲ୍ ରେ ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ସେଭ୍ ହୋଇଛି।", - "profile.metadata.form.notifications.success.title": "ପ୍ରୋଫାଇଲ୍ ସେଭ୍ ହୋଇଛି", - "profile.notifications.warning.no-changes.content": "ପ୍ରୋଫାଇଲ୍ ରେ କୌଣସି ପରିବର୍ତ୍ତନ ହୋଇନାହିଁ।", - "profile.notifications.warning.no-changes.title": "କୌଣସି ପରିବର୍ତ୍ତନ ନାହିଁ", - "profile.security.form.error.matching-passwords": "ପାସୱାର୍ଡଗୁଡ଼ିକ ମେଳ ଖାଉନାହିଁନ୍ତି।", - "profile.security.form.info": "ବାଛିକରି, ଆପଣ ନିମ୍ନ ବାକ୍ସରେ ଏକ ନୂତନ ପାସୱାର୍ଡ୍ ପ୍ରବେଶ କରିପାରିବେ, ଏବଂ ଏହାକୁ ଦ୍ୱିତୀୟ ବାକ୍ସରେ ପୁନର୍ବାର ଟାଇପ୍ କରି ନିଶ୍ଚିତ କରିପାରିବେ।", - "profile.security.form.label.password": "ପାସୱାର୍ଡ୍", - "profile.security.form.label.passwordrepeat": "ନିଶ୍ଚିତକରଣ ପାଇଁ ପୁନରାବୃତ୍ତି କରନ୍ତୁ", - "profile.security.form.label.current-password": "ବର୍ତ୍ତମାନର ପାସୱାର୍ଡ୍", - "profile.security.form.notifications.success.content": "ଆପଣଙ୍କର ପାସୱାର୍ଡ୍ ରେ ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ସେଭ୍ ହୋଇଛି।", - "profile.security.form.notifications.success.title": "ପାସୱାର୍ଡ୍ ସେଭ୍ ହୋଇଛି", - "profile.security.form.notifications.error.title": "ପାସୱାର୍ଡ୍ ପରିବର୍ତ୍ତନରେ ତ୍ରୁଟି", - "profile.security.form.notifications.error.change-failed": "ପାସୱାର୍ଡ୍ ପରିବର୍ତ୍ତନ କରିବାବେଳେ ଏକ ତ୍ରୁଟି ଘଟିଲା। ଦୟାକରି ଯାଞ୍ଚ କରନ୍ତୁ ଯେ ବର୍ତ୍ତମାନର ପାସୱାର୍ଡ୍ ସଠିକ୍ ଅଛି କି ନାହିଁ।", - "profile.security.form.notifications.error.not-same": "ପ୍ରଦାନ କରାଯାଇଥିବା ପାସୱାର୍ଡଗୁଡ଼ିକ ସମାନ ନୁହେଁ।", - "profile.security.form.notifications.error.general": "ଦୟାକରି ସୁରକ୍ଷା ଫର୍ମର ଆବଶ୍ୟକ କ୍ଷେତ୍ରଗୁଡ଼ିକ ପୂରଣ କରନ୍ତୁ।", - "profile.title": "ପ୍ରୋଫାଇଲ୍ ଅପଡେଟ୍ କରନ୍ତୁ", - "profile.card.researcher": "ଗବେଷକ ପ୍ରୋଫାଇଲ୍", - "project.listelement.badge": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟ୍", - "project.page.contributor": "ଯୋଗଦାନକାରୀଗଣ", - "project.page.description": "ବର୍ଣ୍ଣନା", - "project.page.edit": "ଏହି ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - "project.page.expectedcompletion": "ଆଶା କରାଯାଉଥିବା ସମାପ୍ତି", - "project.page.funder": "ଅର୍ଥଦାତାଗଣ", - "project.page.id": "ID", - "project.page.keyword": "କିୱାର୍ଡଗୁଡ଼ିକ", - "project.page.options": "ବିକଳ୍ପଗୁଡ଼ିକ", - "project.page.status": "ସ୍ଥିତି", - "project.page.titleprefix": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟ୍: ", - "project.search.results.head": "ପ୍ରୋଜେକ୍ଟ୍ ସନ୍ଧାନ ଫଳାଫଳ", - "project-relationships.search.results.head": "ପ୍ରୋଜେକ୍ଟ୍ ସନ୍ଧାନ ଫଳାଫଳ", - "publication.listelement.badge": "ପ୍ରକାଶନ", - "publication.page.description": "ବର୍ଣ୍ଣନା", - "publication.page.edit": "ଏହି ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - "publication.page.journal-issn": "ଜର୍ଣ୍ଣାଲ୍ ISSN", - "publication.page.journal-title": "ଜର୍ଣ୍ଣାଲ୍ ଶୀର୍ଷକ", - "publication.page.publisher": "ପ୍ରକାଶକ", - "publication.page.options": "ବିକଳ୍ପଗୁଡ଼ିକ", - "publication.page.titleprefix": "ପ୍ରକାଶନ: ", - "publication.page.volume-title": "ଭଲ୍ୟୁମ୍ ଶୀର୍ଷକ", - "publication.search.results.head": "ପ୍ରକାଶନ ସନ୍ଧାନ ଫଳାଫଳ", - "publication-relationships.search.results.head": "ପ୍ରକାଶନ ସନ୍ଧାନ ଫଳାଫଳ", - "publication.search.title": "ପ୍ରକାଶନ ସନ୍ଧାନ", - "media-viewer.next": "ପରବର୍ତ୍ତୀ", - "media-viewer.previous": "ପୂର୍ବବର୍ତ୍ତୀ", - "media-viewer.playlist": "ପ୍ଲେଲିଷ୍ଟ୍", - "suggestion.loading": "ଲୋଡ୍ ହେଉଛି ...", - "suggestion.title": "ପ୍ରକାଶନ ଦାବି", - "suggestion.title.breadcrumbs": "ପ୍ରକାଶନ ଦାବି", - "suggestion.targets.description": "ନିମ୍ନରେ ଆପଣ ସମସ୍ତ ପ୍ରସ୍ତାବଗୁଡ଼ିକ ଦେଖିପାରିବେ ", - "suggestion.targets": "ବର୍ତ୍ତମାନର ପ୍ରସ୍ତାବଗୁଡ଼ିକ", - "suggestion.table.name": "ଗବେଷକ ନାମ", - "suggestion.table.actions": "କ୍ରିୟାଗୁଡ଼ିକ", - "suggestion.button.review": "{{ total }} ପ୍ରସ୍ତାବ(ଗୁଡ଼ିକ) ସମୀକ୍ଷା କରନ୍ତୁ", - "suggestion.button.review.title": "{{ total }} ପ୍ରସ୍ତାବ(ଗୁଡ଼ିକ) ସମୀକ୍ଷା କରନ୍ତୁ ", - "suggestion.noTargets": "କୌଣସି ଟାର୍ଗେଟ୍ ମିଳିଲା ନାହିଁ।", - "suggestion.target.error.service.retrieve": "ପ୍ରସ୍ତାବ ଟାର୍ଗେଟ୍ ଲୋଡ୍ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "suggestion.evidence.type": "ପ୍ରକାର", - "suggestion.evidence.score": "ସ୍କୋର୍", - "suggestion.evidence.notes": "ଟିପ୍ପଣୀଗୁଡ଼ିକ", - "suggestion.approveAndImport": "ଅନୁମୋଦନ କରନ୍ତୁ ଏବଂ ଆମଦାନୀ କରନ୍ତୁ", - "suggestion.approveAndImport.success": "ପ୍ରସ୍ତାବ ସଫଳତାର ସହିତ ଆମଦାନୀ ହୋଇଛି। ଦେଖନ୍ତୁ।", - "suggestion.approveAndImport.bulk": "ଚୟନିତ ଅନୁମୋଦନ କରନ୍ତୁ ଏବଂ ଆମଦାନୀ କରନ୍ତୁ", - "suggestion.approveAndImport.bulk.success": "{{ count }} ପ୍ରସ୍ତାବଗୁଡ଼ିକ ସଫଳତାର ସହିତ ଆମଦାନୀ ହୋଇଛି ", - "suggestion.approveAndImport.bulk.error": "{{ count }} ପ୍ରସ୍ତାବଗୁଡ଼ିକ ଅପ୍ରତ୍ୟାଶିତ ସର୍ଭର୍ ତ୍ରୁଟି ଯୋଗୁଁ ଆମଦାନୀ ହୋଇନାହିଁ", - "suggestion.ignoreSuggestion": "ପ୍ରସ୍ତାବ ଅଣଦେଖା କରନ୍ତୁ", - "suggestion.ignoreSuggestion.success": "ପ୍ରସ୍ତାବ ପରିତ୍ୟକ୍ତ ହୋଇଛି", - "suggestion.ignoreSuggestion.bulk": "ଚୟନିତ ପ୍ରସ୍ତାବ ଅଣଦେଖା କରନ୍ତୁ", - "suggestion.ignoreSuggestion.bulk.success": "{{ count }} ପ୍ରସ୍ତାବଗୁଡ଼ିକ ପରିତ୍ୟକ୍ତ ହୋଇଛି ", - "suggestion.ignoreSuggestion.bulk.error": "{{ count }} ପ୍ରସ୍ତାବଗୁଡ଼ିକ ଅପ୍ରତ୍ୟାଶିତ ସର୍ଭର୍ ତ୍ରୁଟି ଯୋଗୁଁ ପରିତ୍ୟକ୍ତ ହୋଇନାହିଁ", - "suggestion.seeEvidence": "ପ୍ରମାଣ ଦେଖନ୍ତୁ", - "suggestion.hideEvidence": "ପ୍ରମାଣ ଲୁଚାନ୍ତୁ", - "suggestion.suggestionFor": "ପ୍ରସ୍ତାବଗୁଡ଼ିକ ", - "suggestion.suggestionFor.breadcrumb": "{{ name }} ପାଇଁ ପ୍ରସ୍ତାବଗୁଡ଼ିକ", - "suggestion.source.openaire": "OpenAIRE ଗ୍ରାଫ୍", - "suggestion.source.openalex": "OpenAlex", - "suggestion.from.source": "ଠାରୁ ", - "suggestion.count.missing": "ଆପଣଙ୍କର କୌଣସି ପ୍ରକାଶନ ଦାବି ବାକି ନାହିଁ", - "suggestion.totalScore": "ସମୁଦାୟ ସ୍କୋର୍", - "suggestion.type.openaire": "OpenAIRE", - "register-email.title": "ନୂତନ ଉପଯୋଗକର୍ତ୍ତା ପଞ୍ଜିକରଣ", - "register-page.create-profile.header": "ପ୍ରୋଫାଇଲ୍ ସୃଷ୍ଟି କରନ୍ତୁ", - "register-page.create-profile.identification.header": "ଚିହ୍ନଟ କରନ୍ତୁ", - "register-page.create-profile.identification.email": "ଇମେଲ୍ ଠିକଣା", - "register-page.create-profile.identification.first-name": "ପ୍ରଥମ ନାମ *", - "register-page.create-profile.identification.first-name.error": "ଦୟାକରି ଏକ ପ୍ରଥମ ନାମ ପୂରଣ କରନ୍ତୁ", - "register-page.create-profile.identification.last-name": "ଶେଷ ନାମ *", - "register-page.create-profile.identification.last-name.error": "ଦୟାକରି ଏକ ଶେଷ ନାମ ପୂରଣ କରନ୍ତୁ", - "register-page.create-profile.identification.contact": "ଯୋଗାଯୋଗ ଫୋନ୍", - "register-page.create-profile.identification.language": "ଭାଷା", - "register-page.create-profile.security.header": "ସୁରକ୍ଷା", - "register-page.create-profile.security.info": "ଦୟାକରି ନିମ୍ନ ବାକ୍ସରେ ଏକ ପାସୱାର୍ଡ୍ ପ୍ରବେଶ କରନ୍ତୁ, ଏବଂ ଏହାକୁ ଦ୍ୱିତୀୟ ବାକ୍ସରେ ପୁନର୍ବାର ଟାଇପ୍ କରି ନିଶ୍ଚିତ କରନ୍ତୁ।", - "register-page.create-profile.security.label.password": "ପାସୱାର୍ଡ୍ *", - "register-page.create-profile.security.label.passwordrepeat": "ନିଶ୍ଚିତକରଣ ପାଇଁ ପୁନରାବୃତ୍ତି କରନ୍ତୁ *", - "register-page.create-profile.security.error.empty-password": "ଦୟାକରି ନିମ୍ନ ବାକ୍ସରେ ଏକ ପାସୱାର୍ଡ୍ ପ୍ରବେଶ କରନ୍ତୁ।", - "register-page.create-profile.security.error.matching-passwords": "ପାସୱାର୍ଡଗୁଡ଼ିକ ମେଳ ଖାଉନାହିଁନ୍ତି।", - "register-page.create-profile.submit": "ପଞ୍ଜିକରଣ ସମାପ୍ତ କରନ୍ତୁ", - "register-page.create-profile.submit.error.content": "ନୂତନ ଉପଯୋଗକର୍ତ୍ତା ପଞ୍ଜିକରଣ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଲା।", - "register-page.create-profile.submit.error.head": "ପଞ୍ଜିକରଣ ବିଫଳ ହେଲା", - "register-page.create-profile.submit.success.content": "ପଞ୍ଜିକରଣ ସଫଳ ହୋଇଛି। ଆପଣ ସୃଷ୍ଟି କରାଯାଇଥିବା ଉପଯୋଗକର୍ତ୍ତା ଭାବରେ ଲଗ୍ ଇନ୍ ହୋଇଛନ୍ତି।", - "register-page.create-profile.submit.success.head": "ପଞ୍ଜିକରଣ ସମାପ୍ତ ହେଲା", - "register-page.registration.header": "ନୂତନ ଉପଯୋଗକର୍ତ୍ତା ପଞ୍ଜିକରଣ", - "register-page.registration.info": "ଇମେଲ୍ ଅପଡେଟ୍ ପାଇଁ ସଂଗ୍ରହଗୁଡ଼ିକୁ ସବସ୍କ୍ରାଇବ୍ କରିବାକୁ ଏବଂ DSpace ରେ ନୂତନ ଆଇଟମ୍ ଦାଖଲ କରିବାକୁ ଏକ ଆକାଉଣ୍ଟ୍ ପଞ୍ଜିକରଣ କରନ୍ତୁ।", - "register-page.registration.email": "ଇମେଲ୍ ଠିକଣା *", - "register-page.registration.email.error.required": "ଦୟାକରି ଏକ ଇମେଲ୍ ଠିକଣା ପୂରଣ କରନ୍ତୁ", - "register-page.registration.email.error.not-email-form": "ଦୟାକରି ଏକ ବୈଧ ଇମେଲ୍ ଠିକଣା ପୂରଣ କରନ୍ତୁ।", - "register-page.registration.email.error.not-valid-domain": "ଅନୁମୋଦିତ ଡୋମେନ୍ ସହିତ ଇମେଲ୍ ବ୍ୟବହାର କରନ୍ତୁ: {{ domains }}", - "register-page.registration.email.hint": "ଏହି ଠିକଣା ଯାଞ୍ଚ ହେବ ଏବଂ ଆପଣଙ୍କର ଲଗଇନ୍ ନାମ ଭାବରେ ବ୍ୟବହୃତ ହେବ।", - "register-page.registration.submit": "ପଞ୍ଜିକରଣ କରନ୍ତୁ", - "register-page.registration.success.head": "ଯାଞ୍ଚ ଇମେଲ୍ ପଠାଯାଇଛି", - "register-page.registration.success.content": "{{ email }} କୁ ଏକ ବିଶେଷ URL ଏବଂ ଅଧିକ ନିର୍ଦ୍ଦେଶନାମା ସହିତ ଏକ ଇମେଲ୍ ପଠାଯାଇଛି।", - "register-page.registration.error.head": "ଇମେଲ୍ ପଞ୍ଜିକରଣ କରିବାରେ ତ୍ରୁଟି", - "register-page.registration.error.content": "ନିମ୍ନଲିଖିତ ଇମେଲ୍ ଠିକଣା ପଞ୍ଜିକରଣ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା: {{ email }}", - "register-page.registration.error.recaptcha": "recaptcha ସହିତ ପ୍ରାମାଣିକରଣ କରିବାରେ ତ୍ରୁଟି", - "register-page.registration.google-recaptcha.must-accept-cookies": "ପଞ୍ଜିକରଣ କରିବାକୁ ଆପଣଙ୍କୁ ପଞ୍ଜିକରଣ ଏବଂ ପାସୱାର୍ଡ୍ ପୁନରୁଦ୍ଧାର (Google reCaptcha) କୁକିଗୁଡ଼ିକୁ ଗ୍ରହଣ କରିବାକୁ ହେବ।", - "register-page.registration.google-recaptcha.open-cookie-settings": "କୁକି ସେଟିଂସ୍ ଖୋଲନ୍ତୁ", - "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", - "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha ଯାଞ୍ଚ ବେଳେ ଏକ ତ୍ରୁଟି ଘଟିଲା", - "register-page.registration.google-recaptcha.notification.message.expired": "ଯାଞ୍ଚ ସମୟ ସମାପ୍ତ ହୋଇଛି। ଦୟାକରି ପୁନର୍ବାର ଯାଞ୍ଚ କରନ୍ତୁ।", - "register-page.registration.info.maildomain": "ଡୋମେନ୍ ଗୁଡ଼ିକର ମେଲ୍ ଠିକଣା ପାଇଁ ଆକାଉଣ୍ଟ୍ ପଞ୍ଜିକରଣ କରାଯାଇପାରିବ", - "relationships.add.error.relationship-type.content": "ଦୁଇଟି ଆଇଟମ୍ ମଧ୍ୟରେ ସମ୍ବନ୍ଧ ପ୍ରକାର {{ type }} ପାଇଁ କୌଣସି ଉପଯୁକ୍ତ ମେଳ ମିଳିପାରିବ ନାହିଁ", - "relationships.add.error.server.content": "ସର୍ଭର୍ ଏକ ତ୍ରୁଟି ଫେରାଇଛି", - "relationships.add.error.title": "ସମ୍ବନ୍ଧ ଯୋଡ଼ିବା ସମ୍ଭବ ନାହିଁ", - "relationships.Publication.isAuthorOfPublication.Person": "ଲେଖକଗଣ (ବ୍ୟକ୍ତିଗତ)", - "relationships.Publication.isProjectOfPublication.Project": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟଗୁଡ଼ିକ", - "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "ସାଂଗଠନିକ ଏକକଗୁଡ଼ିକ", - "relationships.Publication.isAuthorOfPublication.OrgUnit": "ଲେଖକଗଣ (ସାଂଗଠନିକ ଏକକ)", - "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "ଜର୍ଣ୍ଣାଲ୍ ଇସ୍ୟୁ", - "relationships.Publication.isContributorOfPublication.Person": "ଯୋଗଦାନକାରୀ", - "relationships.Publication.isContributorOfPublication.OrgUnit": "ଯୋଗଦାନକାରୀ (ସାଂଗଠନିକ ଏକକ)", - "relationships.Person.isPublicationOfAuthor.Publication": "ପ୍ରକାଶନଗୁଡ଼ିକ", - "relationships.Person.isProjectOfPerson.Project": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟଗୁଡ଼ିକ", - "relationships.Person.isOrgUnitOfPerson.OrgUnit": "ସାଂଗଠନିକ ଏକକଗୁଡ଼ିକ", - "relationships.Person.isPublicationOfContributor.Publication": "ପ୍ରକାଶନଗୁଡ଼ିକ (ଯୋଗଦାନକାରୀ ଭାବରେ)", - "relationships.Project.isPublicationOfProject.Publication": "ପ୍ରକାଶନଗୁଡ଼ିକ", - "relationships.Project.isPersonOfProject.Person": "ଲେଖକଗଣ", - "relationships.Project.isOrgUnitOfProject.OrgUnit": "ସାଂଗଠନିକ ଏକକଗୁଡ଼ିକ", - "relationships.Project.isFundingAgencyOfProject.OrgUnit": "ଅର୍ଥଦାତା", - "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "ସଂଗଠନ ପ୍ରକାଶନଗୁଡ଼ିକ", - "relationships.OrgUnit.isPersonOfOrgUnit.Person": "ଲେଖକଗଣ", - "relationships.OrgUnit.isProjectOfOrgUnit.Project": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟଗୁଡ଼ିକ", - "relationships.OrgUnit.isPublicationOfAuthor.Publication": "ଲେଖିତ ପ୍ରକାଶନଗୁଡ଼ିକ", - "relationships.OrgUnit.isPublicationOfContributor.Publication": "ପ୍ରକାଶନଗୁଡ଼ିକ (ଯୋଗଦାନକାରୀ ଭାବରେ)", - "relationships.OrgUnit.isProjectOfFundingAgency.Project": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟଗୁଡ଼ିକ (ଅର୍ଥଦାତା ଭାବରେ)", - "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍", - "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "ପ୍ରକାଶନଗୁଡ଼ିକ", - "relationships.JournalVolume.isJournalOfVolume.Journal": "ଜର୍ଣ୍ଣାଲଗୁଡ଼ିକ", - "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "ଜର୍ଣ୍ଣାଲ୍ ଇସ୍ୟୁ", - "relationships.Journal.isVolumeOfJournal.JournalVolume": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍", - "repository.image.logo": "ରିପୋଜିଟରି ଲୋଗୋ", - "repository.title": "DSpace ରିପୋଜିଟରି", - "repository.title.prefix": "DSpace ରିପୋଜିଟରି :: ", - "resource-policies.add.button": "ଯୋଡ଼ନ୍ତୁ", - "resource-policies.add.for.": "ଏକ ନୂତନ ନୀତି ଯୋଡ଼ନ୍ତୁ", - "resource-policies.add.for.bitstream": "ଏକ ନୂତନ ବିଟଷ୍ଟ୍ରିମ୍ ନୀତି ଯୋଡ଼ନ୍ତୁ", - "resource-policies.add.for.bundle": "ଏକ ନୂତନ ବଣ୍ଡଲ୍ ନୀତି ଯୋଡ଼ନ୍ତୁ", - "resource-policies.add.for.item": "ଏକ ନୂତନ ଆଇଟମ୍ ନୀତି ଯୋଡ଼ନ୍ତୁ", - "resource-policies.add.for.community": "ଏକ ନୂତନ ସମ୍ପ୍ରଦାୟ ନୀତି ଯୋଡ଼ନ୍ତୁ", - "resource-policies.add.for.collection": "ଏକ ନୂତନ ସଂଗ୍ରହ ନୀତି ଯୋଡ଼ନ୍ତୁ", - "resource-policies.create.page.heading": "ପାଇଁ ନୂତନ ସମ୍ବଳ ନୀତି ସୃଷ୍ଟି କରନ୍ତୁ ", - "resource-policies.create.page.failure.content": "ସମ୍ବଳ ନୀତି ସୃଷ୍ଟି କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", - "resource-policies.create.page.success.content": "ଅପରେସନ୍ ସଫଳ", - "resource-policies.create.page.title": "ନୂତନ ସମ୍ବଳ ନୀତି ସୃଷ୍ଟି କରନ୍ତୁ", - "resource-policies.delete.btn": "ଚୟନ କରାଯାଇଥିବା ଡିଲିଟ୍ କରନ୍ତୁ", - "resource-policies.delete.btn.title": "ଚୟନ କରାଯାଇଥିବା ସମ୍ବଳ ନୀତିଗୁଡିକୁ ଡିଲିଟ୍ କରନ୍ତୁ", - "resource-policies.delete.failure.content": "ଚୟନ କରାଯାଇଥିବା ସମ୍ବଳ ନୀତିଗୁଡିକୁ ଡିଲିଟ୍ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", - "resource-policies.delete.success.content": "ଅପରେସନ୍ ସଫଳ ହେଲା", - "resource-policies.edit.page.heading": "ସମ୍ବଳ ନୀତି ସଂପାଦନ କରନ୍ତୁ ", - "resource-policies.edit.page.failure.content": "ସମ୍ବଳ ନୀତି ସଂପାଦନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", - "resource-policies.edit.page.target-failure.content": "ଟାର୍ଗେଟ୍ (ePerson କିମ୍ବା ଗୋଷ୍ଠୀ) ସଂପାଦନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", - "resource-policies.edit.page.other-failure.content": "ସମ୍ବଳ ନୀତି ସଂପାଦନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା। ଟାର୍ଗେଟ୍ (ePerson କିମ୍ବା ଗୋଷ୍ଠୀ) ସଫଳତାର ସହିତ ଅପଡେଟ୍ ହୋଇଛି।", - "resource-policies.edit.page.success.content": "ଅପରେସନ୍ ସଫଳ ହେଲା", - "resource-policies.edit.page.title": "ସମ୍ବଳ ନୀତି ସଂପାଦନ କରନ୍ତୁ", - "resource-policies.form.action-type.label": "କାର୍ଯ୍ୟ ପ୍ରକାର ଚୟନ କରନ୍ତୁ", - "resource-policies.form.action-type.required": "ଆପଣଙ୍କୁ ସମ୍ବଳ ନୀତି କାର୍ଯ୍ୟ ଚୟନ କରିବାକୁ ପଡିବ।", - "resource-policies.form.eperson-group-list.label": "ePerson କିମ୍ବା ଗୋଷ୍ଠୀ ଯାହାକୁ ଅନୁମତି ଦିଆଯିବ", - "resource-policies.form.eperson-group-list.select.btn": "ଚୟନ କରନ୍ତୁ", - "resource-policies.form.eperson-group-list.tab.eperson": "ePerson ପାଇଁ ଖୋଜନ୍ତୁ", - "resource-policies.form.eperson-group-list.tab.group": "ଗୋଷ୍ଠୀ ପାଇଁ ଖୋଜନ୍ତୁ", - "resource-policies.form.eperson-group-list.table.headers.action": "କାର୍ଯ୍ୟ", - "resource-policies.form.eperson-group-list.table.headers.id": "ID", - "resource-policies.form.eperson-group-list.table.headers.name": "ନାମ", - "resource-policies.form.eperson-group-list.modal.header": "ପ୍ରକାର ପରିବର୍ତ୍ତନ କରିବା ସମ୍ଭବ ନୁହେଁ", - "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePerson କୁ ଗୋଷ୍ଠୀ ସହିତ ପରିବର୍ତ୍ତନ କରିବା ସମ୍ଭବ ନୁହେଁ।", - "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "ଗୋଷ୍ଠୀକୁ ePerson ସହିତ ପରିବର୍ତ୍ତନ କରିବା ସମ୍ଭବ ନୁହେଁ।", - "resource-policies.form.eperson-group-list.modal.text2": "ବର୍ତ୍ତମାନର ସମ୍ବଳ ନୀତି ଡିଲିଟ୍ କରନ୍ତୁ ଏବଂ ନୂତନ ଏକ ଇଚ୍ଛିତ ପ୍ରକାର ସହିତ ସୃଷ୍ଟି କରନ୍ତୁ।", - "resource-policies.form.eperson-group-list.modal.close": "ଠିକ୍ ଅଛି", - "resource-policies.form.date.end.label": "ଶେଷ ତାରିଖ", - "resource-policies.form.date.start.label": "ଆରମ୍ଭ ତାରିଖ", - "resource-policies.form.description.label": "ବର୍ଣ୍ଣନା", - "resource-policies.form.name.label": "ନାମ", - "resource-policies.form.name.hint": "ସର୍ବାଧିକ 30 ଅକ୍ଷର", - "resource-policies.form.policy-type.label": "ନୀତି ପ୍ରକାର ଚୟନ କରନ୍ତୁ", - "resource-policies.form.policy-type.required": "ଆପଣଙ୍କୁ ସମ୍ବଳ ନୀତି ପ୍ରକାର ଚୟନ କରିବାକୁ ପଡିବ।", - "resource-policies.table.headers.action": "କାର୍ଯ୍ୟ", - "resource-policies.table.headers.date.end": "ଶେଷ ତାରିଖ", - "resource-policies.table.headers.date.start": "ଆରମ୍ଭ ତାରିଖ", - "resource-policies.table.headers.edit": "ସଂପାଦନ କରନ୍ତୁ", - "resource-policies.table.headers.edit.group": "ଗୋଷ୍ଠୀ ସଂପାଦନ କରନ୍ତୁ", - "resource-policies.table.headers.edit.policy": "ନୀତି ସଂପାଦନ କରନ୍ତୁ", - "resource-policies.table.headers.eperson": "ePerson", - "resource-policies.table.headers.group": "ଗୋଷ୍ଠୀ", - "resource-policies.table.headers.select-all": "ସମସ୍ତ ଚୟନ କରନ୍ତୁ", - "resource-policies.table.headers.deselect-all": "ସମସ୍ତ ଅଚୟନ କରନ୍ତୁ", - "resource-policies.table.headers.select": "ଚୟନ କରନ୍ତୁ", - "resource-policies.table.headers.deselect": "ଅଚୟନ କରନ୍ତୁ", - "resource-policies.table.headers.id": "ID", - "resource-policies.table.headers.name": "ନାମ", - "resource-policies.table.headers.policyType": "ପ୍ରକାର", - "resource-policies.table.headers.title.for.bitstream": "ବିଟଷ୍ଟ୍ରିମ୍ ପାଇଁ ନୀତିଗୁଡିକ", - "resource-policies.table.headers.title.for.bundle": "ବଣ୍ଡଲ୍ ପାଇଁ ନୀତିଗୁଡିକ", - "resource-policies.table.headers.title.for.item": "ଆଇଟମ୍ ପାଇଁ ନୀତିଗୁଡିକ", - "resource-policies.table.headers.title.for.community": "କମ୍ୟୁନିଟି ପାଇଁ ନୀତିଗୁଡିକ", - "resource-policies.table.headers.title.for.collection": "କଲେକ୍ସନ୍ ପାଇଁ ନୀତିଗୁଡିକ", - "root.skip-to-content": "ମୁଖ୍ୟ ବିଷୟବସ୍ତୁକୁ ଛାଡିଦିଅନ୍ତୁ", - "search.description": "", - "search.switch-configuration.title": "ଦେଖାନ୍ତୁ", - "search.title": "ଖୋଜନ୍ତୁ", - "search.breadcrumbs": "ଖୋଜନ୍ତୁ", - "search.search-form.placeholder": "ରେପୋଜିଟରୀ ଖୋଜନ୍ତୁ ...", - "search.filters.remove": "{{ type }} ପ୍ରକାରର ଫିଲ୍ଟର୍ କୁ ଅପସାରଣ କରନ୍ତୁ ଯାହାର ମୂଲ୍ୟ {{ value }}", - "search.filters.applied.f.title": "ଶୀର୍ଷକ", - "search.filters.applied.f.author": "ଲେଖକ", - "search.filters.applied.f.dateIssued.max": "ଶେଷ ତାରିଖ", - "search.filters.applied.f.dateIssued.min": "ଆରମ୍ଭ ତାରିଖ", - "search.filters.applied.f.dateSubmitted": "ଦାଖଲ ତାରିଖ", - "search.filters.applied.f.discoverable": "ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ", - "search.filters.applied.f.entityType": "ଆଇଟମ୍ ପ୍ରକାର", - "search.filters.applied.f.has_content_in_original_bundle": "ଫାଇଲ୍ ଅଛି", - "search.filters.applied.f.original_bundle_filenames": "ଫାଇଲ୍ ନାମ", - "search.filters.applied.f.original_bundle_descriptions": "ଫାଇଲ୍ ବର୍ଣ୍ଣନା", - "search.filters.applied.f.has_geospatial_metadata": "ଭୌଗଳିକ ସ୍ଥାନ ଅଛି", - "search.filters.applied.f.itemtype": "ପ୍ରକାର", - "search.filters.applied.f.namedresourcetype": "ସ୍ଥିତି", - "search.filters.applied.f.subject": "ବିଷୟ", - "search.filters.applied.f.submitter": "ଦାଖଲକାରୀ", - "search.filters.applied.f.jobTitle": "କାର୍ଯ୍ୟ ଶୀର୍ଷକ", - "search.filters.applied.f.birthDate.max": "ଜନ୍ମ ଶେଷ ତାରିଖ", - "search.filters.applied.f.birthDate.min": "ଜନ୍ମ ଆରମ୍ଭ ତାରିଖ", - "search.filters.applied.f.supervisedBy": "ପରିଚାଳିତ", - "search.filters.applied.f.withdrawn": "ପ୍ରତ୍ୟାହାର କରାଯାଇଛି", - "search.filters.applied.operator.equals": "", - "search.filters.applied.operator.notequals": " ସମାନ ନୁହେଁ", - "search.filters.applied.operator.authority": "", - "search.filters.applied.operator.notauthority": " ପ୍ରାଧିକରଣ ନୁହେଁ", - "search.filters.applied.operator.contains": " ଧାରଣ କରେ", - "search.filters.applied.operator.notcontains": " ଧାରଣ କରେ ନାହିଁ", - "search.filters.applied.operator.query": "", - "search.filters.applied.f.point": "ଦିଗବାରେଣି", - "search.filters.filter.title.head": "ଶୀର୍ଷକ", - "search.filters.filter.title.placeholder": "ଶୀର୍ଷକ", - "search.filters.filter.title.label": "ଶୀର୍ଷକ ଖୋଜନ୍ତୁ", - "search.filters.filter.author.head": "ଲେଖକ", - "search.filters.filter.author.placeholder": "ଲେଖକ ନାମ", - "search.filters.filter.author.label": "ଲେଖକ ନାମ ଖୋଜନ୍ତୁ", - "search.filters.filter.birthDate.head": "ଜନ୍ମ ତାରିଖ", - "search.filters.filter.birthDate.placeholder": "ଜନ୍ମ ତାରିଖ", - "search.filters.filter.birthDate.label": "ଜନ୍ମ ତାରିଖ ଖୋଜନ୍ତୁ", - "search.filters.filter.collapse": "ଫିଲ୍ଟର୍ ସଂକୋଚନ କରନ୍ତୁ", - "search.filters.filter.creativeDatePublished.head": "ପ୍ରକାଶନ ତାରିଖ", - "search.filters.filter.creativeDatePublished.placeholder": "ପ୍ରକାଶନ ତାରିଖ", - "search.filters.filter.creativeDatePublished.label": "ପ୍ରକାଶନ ତାରିଖ ଖୋଜନ୍ତୁ", - "search.filters.filter.creativeDatePublished.min.label": "ଆରମ୍ଭ", - "search.filters.filter.creativeDatePublished.max.label": "ଶେଷ", - "search.filters.filter.creativeWorkEditor.head": "ସମ୍ପାଦକ", - "search.filters.filter.creativeWorkEditor.placeholder": "ସମ୍ପାଦକ", - "search.filters.filter.creativeWorkEditor.label": "ସମ୍ପାଦକ ଖୋଜନ୍ତୁ", - "search.filters.filter.creativeWorkKeywords.head": "ବିଷୟ", - "search.filters.filter.creativeWorkKeywords.placeholder": "ବିଷୟ", - "search.filters.filter.creativeWorkKeywords.label": "ବିଷୟ ଖୋଜନ୍ତୁ", - "search.filters.filter.creativeWorkPublisher.head": "ପ୍ରକାଶକ", - "search.filters.filter.creativeWorkPublisher.placeholder": "ପ୍ରକାଶକ", - "search.filters.filter.creativeWorkPublisher.label": "ପ୍ରକାଶକ ଖୋଜନ୍ତୁ", - "search.filters.filter.dateIssued.head": "ତାରିଖ", - "search.filters.filter.dateIssued.max.placeholder": "ସର୍ବାଧିକ ତାରିଖ", - "search.filters.filter.dateIssued.max.label": "ଶେଷ", - "search.filters.filter.dateIssued.min.placeholder": "ସର୍ବନିମ୍ନ ତାରିଖ", - "search.filters.filter.dateIssued.min.label": "ଆରମ୍ଭ", - "search.filters.filter.dateSubmitted.head": "ଦାଖଲ ତାରିଖ", - "search.filters.filter.dateSubmitted.placeholder": "ଦାଖଲ ତାରିଖ", - "search.filters.filter.dateSubmitted.label": "ଦାଖଲ ତାରିଖ ଖୋଜନ୍ତୁ", - "search.filters.filter.discoverable.head": "ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ", - "search.filters.filter.withdrawn.head": "ପ୍ରତ୍ୟାହାର କରାଯାଇଛି", - "search.filters.filter.entityType.head": "ଆଇଟମ୍ ପ୍ରକାର", - "search.filters.filter.entityType.placeholder": "ଆଇଟମ୍ ପ୍ରକାର", - "search.filters.filter.entityType.label": "ଆଇଟମ୍ ପ୍ରକାର ଖୋଜନ୍ତୁ", - "search.filters.filter.expand": "ଫିଲ୍ଟର୍ ପ୍ରସାରିତ କରନ୍ତୁ", - "search.filters.filter.has_content_in_original_bundle.head": "ଫାଇଲ୍ ଅଛି", - "search.filters.filter.original_bundle_filenames.head": "ଫାଇଲ୍ ନାମ", - "search.filters.filter.has_geospatial_metadata.head": "ଭୌଗଳିକ ସ୍ଥାନ ଅଛି", - "search.filters.filter.original_bundle_filenames.placeholder": "ଫାଇଲ୍ ନାମ", - "search.filters.filter.original_bundle_filenames.label": "ଫାଇଲ୍ ନାମ ଖୋଜନ୍ତୁ", - "search.filters.filter.original_bundle_descriptions.head": "ଫାଇଲ୍ ବର୍ଣ୍ଣନା", - "search.filters.filter.original_bundle_descriptions.placeholder": "ଫାଇଲ୍ ବର୍ଣ୍ଣନା", - "search.filters.filter.original_bundle_descriptions.label": "ଫାଇଲ୍ ବର୍ଣ୍ଣନା ଖୋଜନ୍ତୁ", - "search.filters.filter.itemtype.head": "ପ୍ରକାର", - "search.filters.filter.itemtype.placeholder": "ପ୍ରକାର", - "search.filters.filter.itemtype.label": "ପ୍ରକାର ଖୋଜନ୍ତୁ", - "search.filters.filter.jobTitle.head": "କାର୍ଯ୍ୟ ଶୀର୍ଷକ", - "search.filters.filter.jobTitle.placeholder": "କାର୍ଯ୍ୟ ଶୀର୍ଷକ", - "search.filters.filter.jobTitle.label": "କାର୍ଯ୍ୟ ଶୀର୍ଷକ ଖୋଜନ୍ତୁ", - "search.filters.filter.knowsLanguage.head": "ଜଣାଶୁଣା ଭାଷା", - "search.filters.filter.knowsLanguage.placeholder": "ଜଣାଶୁଣା ଭାଷା", - "search.filters.filter.knowsLanguage.label": "ଜଣାଶୁଣା ଭାଷା ଖୋଜନ୍ତୁ", - "search.filters.filter.namedresourcetype.head": "ସ୍ଥିତି", - "search.filters.filter.namedresourcetype.placeholder": "ସ୍ଥିତି", - "search.filters.filter.namedresourcetype.label": "ସ୍ଥିତି ଖୋଜନ୍ତୁ", - "search.filters.filter.objectpeople.head": "ଲୋକ", - "search.filters.filter.objectpeople.placeholder": "ଲୋକ", - "search.filters.filter.objectpeople.label": "ଲୋକ ଖୋଜନ୍ତୁ", - "search.filters.filter.organizationAddressCountry.head": "ଦେଶ", - "search.filters.filter.organizationAddressCountry.placeholder": "ଦେଶ", - "search.filters.filter.organizationAddressCountry.label": "ଦେଶ ଖୋଜନ୍ତୁ", - "search.filters.filter.organizationAddressLocality.head": "ସହର", - "search.filters.filter.organizationAddressLocality.placeholder": "ସହର", - "search.filters.filter.organizationAddressLocality.label": "ସହର ଖୋଜନ୍ତୁ", - "search.filters.filter.organizationFoundingDate.head": "ପ୍ରତିଷ୍ଠା ତାରିଖ", - "search.filters.filter.organizationFoundingDate.placeholder": "ପ୍ରତିଷ୍ଠା ତାରିଖ", - "search.filters.filter.organizationFoundingDate.label": "ପ୍ରତିଷ୍ଠା ତାରିଖ ଖୋଜନ୍ତୁ", - "search.filters.filter.organizationFoundingDate.min.label": "ଆରମ୍ଭ", - "search.filters.filter.organizationFoundingDate.max.label": "ଶେଷ", - "search.filters.filter.scope.head": "ସ୍କୋପ୍", - "search.filters.filter.scope.placeholder": "ସ୍କୋପ୍ ଫିଲ୍ଟର୍", - "search.filters.filter.scope.label": "ସ୍କୋପ୍ ଫିଲ୍ଟର୍ ଖୋଜନ୍ତୁ", - "search.filters.filter.show-less": "ସଂକୋଚନ କରନ୍ତୁ", - "search.filters.filter.show-more": "ଅଧିକ ଦେଖାନ୍ତୁ", - "search.filters.filter.subject.head": "ବିଷୟ", - "search.filters.filter.subject.placeholder": "ବିଷୟ", - "search.filters.filter.subject.label": "ବିଷୟ ଖୋଜନ୍ତୁ", - "search.filters.filter.submitter.head": "ଦାଖଲକାରୀ", - "search.filters.filter.submitter.placeholder": "ଦାଖଲକାରୀ", - "search.filters.filter.submitter.label": "ଦାଖଲକାରୀ ଖୋଜନ୍ତୁ", - "search.filters.filter.show-tree": "{{ name }} ଟ୍ରି ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "search.filters.filter.funding.head": "ଫଣ୍ଡିଂ", - - "search.filters.filter.funding.placeholder": "ଫଣ୍ଡିଂ", - - "search.filters.filter.supervisedBy.head": "ପରିଚାଳନା କରୁଛନ୍ତି", - - "search.filters.filter.supervisedBy.placeholder": "ପରିଚାଳନା କରୁଛନ୍ତି", - - "search.filters.filter.supervisedBy.label": "ପରିଚାଳନା କରୁଥିବା ଖୋଜନ୍ତୁ", - - "search.filters.filter.access_status.head": "ପ୍ରବେଶ ପ୍ରକାର", - - "search.filters.filter.access_status.placeholder": "ପ୍ରବେଶ ପ୍ରକାର", - - "search.filters.filter.access_status.label": "ପ୍ରବେଶ ପ୍ରକାର ଦ୍ୱାରା ଖୋଜନ୍ତୁ", - - "search.filters.entityType.JournalIssue": "ଜର୍ଣ୍ଣାଲ ଇସୁ", - - "search.filters.entityType.JournalVolume": "ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", - - "search.filters.entityType.OrgUnit": "ସାଂଗଠନିକ ଏକକ", - - "search.filters.entityType.Person": "ବ୍ୟକ୍ତି", - - "search.filters.entityType.Project": "ପ୍ରୋଜେକ୍ଟ", - - "search.filters.entityType.Publication": "ପ୍ରକାଶନ", - - "search.filters.has_content_in_original_bundle.true": "ହଁ", - - "search.filters.has_content_in_original_bundle.false": "ନାହିଁ", - - "search.filters.has_geospatial_metadata.true": "ହଁ", - - "search.filters.has_geospatial_metadata.false": "ନାହିଁ", - - "search.filters.discoverable.true": "ନାହିଁ", - - "search.filters.discoverable.false": "ହଁ", - - "search.filters.namedresourcetype.Archived": "ଆର୍କାଇଭ୍ ହୋଇଛି", - - "search.filters.namedresourcetype.Validation": "ଯାଞ୍ଚ", - - "search.filters.namedresourcetype.Waiting for Controller": "ସମୀକ୍ଷକ ପାଇଁ ଅପେକ୍ଷା", - - "search.filters.namedresourcetype.Workflow": "ୱର୍କଫ୍ଲୋ", - - "search.filters.namedresourcetype.Workspace": "ୱର୍କସ୍ପେସ୍", - - "search.filters.withdrawn.true": "ହଁ", - - "search.filters.withdrawn.false": "ନାହିଁ", - - "search.filters.head": "ଫିଲ୍ଟରଗୁଡିକ", - - "search.filters.reset": "ଫିଲ୍ଟରଗୁଡିକ ପୁନଃସେଟ୍ କରନ୍ତୁ", - - "search.filters.search.submit": "ଦାଖଲ କରନ୍ତୁ", - - "search.filters.operator.equals.text": "ସମାନ", - - "search.filters.operator.notequals.text": "ସମାନ ନୁହେଁ", - - "search.filters.operator.authority.text": "ପ୍ରାଧିକରଣ", - - "search.filters.operator.notauthority.text": "ପ୍ରାଧିକରଣ ନୁହେଁ", - - "search.filters.operator.contains.text": "ଧାରଣ କରେ", - - "search.filters.operator.notcontains.text": "ଧାରଣ କରେ ନାହିଁ", - - "search.filters.operator.query.text": "କ୍ୟୁଏରି", - - "search.form.search": "ଖୋଜନ୍ତୁ", - - "search.form.search_dspace": "ସମସ୍ତ ରେପୋଜିଟୋରୀ", - - "search.form.scope.all": "ଡିଏସ୍ପେସ୍ ର ସମସ୍ତ", - - "search.results.head": "ଖୋଜା ଫଳାଫଳ", - - "search.results.no-results": "ଆପଣଙ୍କର ଖୋଜା କୌଣସି ଫଳାଫଳ ଫେରାଇ ନାହିଁ। ଆପଣ ଯାହା ଖୋଜୁଛନ୍ତି ତାହା ଖୋଜିବାରେ ସମସ୍ୟା ହେଉଛି କି? ଏହାକୁ", - - "search.results.no-results-link": "କୋଟେସନ୍ ମଧ୍ୟରେ ରଖି ଚେଷ୍ଟା କରନ୍ତୁ", - - "search.results.empty": "ଆପଣଙ୍କର ଖୋଜା କୌଣସି ଫଳାଫଳ ଫେରାଇ ନାହିଁ।", - - "search.results.geospatial-map.empty": "ଏହି ପୃଷ୍ଠାରେ କୌଣସି ଭୌଗୋଳିକ ସ୍ଥାନ ସହିତ ଫଳାଫଳ ନାହିଁ", - - "search.results.view-result": "ଦେଖନ୍ତୁ", - - "search.results.response.500": "କ୍ୟୁଏରି କାର୍ଯ୍ୟକାରୀ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି, ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ", - - "default.search.results.head": "ଖୋଜା ଫଳାଫଳ", - - "default-relationships.search.results.head": "ଖୋଜା ଫଳାଫଳ", - - "search.sidebar.close": "ଫଳାଫଳକୁ ଫେରନ୍ତୁ", - - "search.sidebar.filters.title": "ଫିଲ୍ଟରଗୁଡିକ", - - "search.sidebar.open": "ଖୋଜା ସାଧନଗୁଡିକ", - - "search.sidebar.results": "ଫଳାଫଳ", - - "search.sidebar.settings.rpp": "ପ୍ରତି ପୃଷ୍ଠାରେ ଫଳାଫଳ", - - "search.sidebar.settings.sort-by": "ଦ୍ୱାରା ସଜାନ୍ତୁ", - - "search.sidebar.advanced-search.title": "ଉନ୍ନତ ଖୋଜା", - - "search.sidebar.advanced-search.filter-by": "ଦ୍ୱାରା ଫିଲ୍ଟର୍ କରନ୍ତୁ", - - "search.sidebar.advanced-search.filters": "ଫିଲ୍ଟରଗୁଡିକ", - - "search.sidebar.advanced-search.operators": "ଅପରେଟରଗୁଡିକ", - - "search.sidebar.advanced-search.add": "ଯୋଡନ୍ତୁ", - - "search.sidebar.settings.title": "ସେଟିଂସ୍", - - "search.view-switch.show-detail": "ବିସ୍ତୃତ ଦେଖାନ୍ତୁ", - - "search.view-switch.show-grid": "ଗ୍ରିଡ୍ ଭାବରେ ଦେଖାନ୍ତୁ", - - "search.view-switch.show-list": "ତାଲିକା ଭାବରେ ଦେଖାନ୍ତୁ", - - "search.view-switch.show-geospatialMap": "ମାନଚିତ୍ର ଭାବରେ ଦେଖାନ୍ତୁ", - - "selectable-list-item-control.deselect": "ଆଇଟମ୍ ଅଚୟନ କରନ୍ତୁ", - - "selectable-list-item-control.select": "ଆଇଟମ୍ ଚୟନ କରନ୍ତୁ", - - "sorting.ASC": "ଆରୋହୀ", - - "sorting.DESC": "ଅବରୋହୀ", - - "sorting.dc.title.ASC": "ଆଖ୍ୟା ଆରୋହୀ", - - "sorting.dc.title.DESC": "ଆଖ୍ୟା ଅବରୋହୀ", - - "sorting.score.ASC": "ସମ୍ବନ୍ଧିତ ନୁହେଁ", - - "sorting.score.DESC": "ଅଧିକ ସମ୍ବନ୍ଧିତ", - - "sorting.dc.date.issued.ASC": "ଜାରି ତାରିଖ ଆରୋହୀ", - - "sorting.dc.date.issued.DESC": "ଜାରି ତାରିଖ ଅବରୋହୀ", - - "sorting.dc.date.accessioned.ASC": "ପ୍ରବେଶ ତାରିଖ ଆରୋହୀ", - - "sorting.dc.date.accessioned.DESC": "ପ୍ରବେଶ ତାରିଖ ଅବରୋହୀ", - - "sorting.lastModified.ASC": "ଶେଷ ପରିବର୍ତ୍ତନ ଆରୋହୀ", - - "sorting.lastModified.DESC": "ଶେଷ ପରିବର୍ତ୍ତନ ଅବରୋହୀ", - - "sorting.person.familyName.ASC": "ଉପନାମ ଆରୋହୀ", - - "sorting.person.familyName.DESC": "ଉପନାମ ଅବରୋହୀ", - - "sorting.person.givenName.ASC": "ନାମ ଆରୋହୀ", - - "sorting.person.givenName.DESC": "ନାମ ଅବରୋହୀ", - - "sorting.person.birthDate.ASC": "ଜନ୍ମ ତାରିଖ ଆରୋହୀ", - - "sorting.person.birthDate.DESC": "ଜନ୍ମ ତାରିଖ ଅବରୋହୀ", - - "statistics.title": "ପରିସଂଖ୍ୟାନ", - - "statistics.header": "{{ scope }} ପାଇଁ ପରିସଂଖ୍ୟାନ", - - "statistics.breadcrumbs": "ପରିସଂଖ୍ୟାନ", - - "statistics.page.no-data": "କୌଣସି ତଥ୍ୟ ଉପଲବ୍ଧ ନାହିଁ", - - "statistics.table.no-data": "କୌଣସି ତଥ୍ୟ ଉପଲବ୍ଧ ନାହିଁ", - - "statistics.table.title.TotalVisits": "ସମୁଦାୟ ପରିଦର୍ଶନ", - - "statistics.table.title.TotalVisitsPerMonth": "ପ୍ରତି ମାସରେ ସମୁଦାୟ ପରିଦର୍ଶନ", - - "statistics.table.title.TotalDownloads": "ଫାଇଲ୍ ପରିଦର୍ଶନ", - - "statistics.table.title.TopCountries": "ଶୀର୍ଷ ଦେଶ ଦୃଶ୍ୟ", - - "statistics.table.title.TopCities": "ଶୀର୍ଷ ସହର ଦୃଶ୍ୟ", - - "statistics.table.header.views": "ଦୃଶ୍ୟ", - - "statistics.table.no-name": "(ବସ୍ତୁର ନାମ ଲୋଡ୍ କରାଯାଇପାରିବ ନାହିଁ)", - - "submission.edit.breadcrumbs": "ସବମିସନ୍ ସଂପାଦନ କରନ୍ତୁ", - - "submission.edit.title": "ସବମିସନ୍ ସଂପାଦନ କରନ୍ତୁ", - - "submission.general.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "submission.general.cannot_submit": "ଆପଣଙ୍କର ଏକ ନୂତନ ସବମିସନ୍ କରିବାର ଅନୁମତି ନାହିଁ।", - - "submission.general.deposit": "ଡିପୋଜିଟ୍", - - "submission.general.discard.confirm.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "submission.general.discard.confirm.info": "ଏହି କାର୍ଯ୍ୟକୁ ପ୍ରତ୍ୟାବର୍ତ୍ତନ କରାଯାଇପାରିବ ନାହିଁ। ଆପଣ ନିଶ୍ଚିତ କି?", - - "submission.general.discard.confirm.submit": "ହଁ, ମୁଁ ନିଶ୍ଚିତ", - - "submission.general.discard.confirm.title": "ସବମିସନ୍ ପରିତ୍ୟାଗ କରନ୍ତୁ", - - "submission.general.discard.submit": "ପରିତ୍ୟାଗ କରନ୍ତୁ", - - "submission.general.back.submit": "ପଛକୁ", - - "submission.general.info.saved": "ସେଭ୍ ହୋଇଛି", - - "submission.general.info.pending-changes": "ଅସେଭ୍ ହୋଇଥିବା ପରିବର୍ତ୍ତନଗୁଡିକ", - - "submission.general.save": "ସେଭ୍ କରନ୍ତୁ", - - "submission.general.save-later": "ପରେ ପାଇଁ ସେଭ୍ କରନ୍ତୁ", - - "submission.import-external.page.title": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", - - "submission.import-external.title": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", - - "submission.import-external.title.Journal": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ଜର୍ଣ୍ଣାଲ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.import-external.title.JournalIssue": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ଜର୍ଣ୍ଣାଲ ଇସୁ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.import-external.title.JournalVolume": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.import-external.title.OrgUnit": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ପ୍ରକାଶକ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.import-external.title.Person": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ବ୍ୟକ୍ତି ଆମଦାନୀ କରନ୍ତୁ", - - "submission.import-external.title.Project": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ପ୍ରୋଜେକ୍ଟ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.import-external.title.Publication": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ପ୍ରକାଶନ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.import-external.title.none": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", - - "submission.import-external.page.hint": "DSpace ରେ ଆମଦାନୀ କରିବାକୁ ୱେବରୁ ଆଇଟମ୍ ଖୋଜିବା ପାଇଁ ଉପରେ ଏକ କ୍ୟୁଏରି ପ୍ରବେଶ କରନ୍ତୁ।", - - "submission.import-external.back-to-my-dspace": "ମୋର DSpace କୁ ଫେରନ୍ତୁ", - - "submission.import-external.search.placeholder": "ବାହ୍ୟ ସ୍ରୋତ ଖୋଜନ୍ତୁ", - - "submission.import-external.search.button": "ଖୋଜନ୍ତୁ", - - "submission.import-external.search.button.hint": "ଖୋଜିବା ପାଇଁ କିଛି ଶବ୍ଦ ଲେଖନ୍ତୁ", - - "submission.import-external.search.source.hint": "ଏକ ବାହ୍ୟ ସ୍ରୋତ ଚୟନ କରନ୍ତୁ", - - "submission.import-external.source.arxiv": "arXiv", - - "submission.import-external.source.ads": "NASA/ADS", - - "submission.import-external.source.cinii": "CiNii", - - "submission.import-external.source.crossref": "Crossref", - - "submission.import-external.source.datacite": "DataCite", - - "submission.import-external.source.dataciteProject": "DataCite", - - "submission.import-external.source.doi": "DOI", - - "submission.import-external.source.scielo": "SciELO", - - "submission.import-external.source.scopus": "Scopus", - - "submission.import-external.source.vufind": "VuFind", - - "submission.import-external.source.wos": "Web Of Science", - - "submission.import-external.source.orcidWorks": "ORCID", - - "submission.import-external.source.epo": "ୟୁରୋପୀୟ ପେଟେଣ୍ଟ ଅଫିସ୍ (EPO)", - - "submission.import-external.source.loading": "ଲୋଡ୍ ହେଉଛି ...", - - "submission.import-external.source.sherpaJournal": "SHERPA ଜର୍ଣ୍ଣାଲଗୁଡିକ", - - "submission.import-external.source.sherpaJournalIssn": "ISSN ଦ୍ୱାରା SHERPA ଜର୍ଣ୍ଣାଲଗୁଡିକ", - - "submission.import-external.source.sherpaPublisher": "SHERPA ପ୍ରକାଶକଗୁଡିକ", - - "submission.import-external.source.openaire": "OpenAIRE ଲେଖକଙ୍କ ଦ୍ୱାରା ଖୋଜନ୍ତୁ", - - "submission.import-external.source.openaireTitle": "OpenAIRE ଆଖ୍ୟା ଦ୍ୱାରା ଖୋଜନ୍ତୁ", - - "submission.import-external.source.openaireFunding": "OpenAIRE ଫଣ୍ଡର୍ ଦ୍ୱାରା ଖୋଜନ୍ତୁ", - - "submission.import-external.source.orcid": "ORCID", - - "submission.import-external.source.pubmed": "Pubmed", - - "submission.import-external.source.pubmedeu": "Pubmed Europe", - - "submission.import-external.source.lcname": "ଲାଇବ୍ରେରୀ ଅଫ୍ କଂଗ୍ରେସ୍ ନାମଗୁଡିକ", - - "submission.import-external.source.ror": "ଗବେଷଣା ସଂଗଠନ ରେଜିଷ୍ଟ୍ରି (ROR)", - - "submission.import-external.source.openalexPublication": "OpenAlex ଆଖ୍ୟା ଦ୍ୱାରା ଖୋଜନ୍ତୁ", - - "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex ଲେଖକ ID ଦ୍ୱାରା ଖୋଜନ୍ତୁ", - - "submission.import-external.source.openalexPublicationByDOI": "OpenAlex DOI ଦ୍ୱାରା ଖୋଜନ୍ତୁ", - - "submission.import-external.source.openalexPerson": "OpenAlex ନାମ ଦ୍ୱାରା ଖୋଜନ୍ତୁ", - - "submission.import-external.source.openalexJournal": "OpenAlex ଜର୍ଣ୍ଣାଲଗୁଡିକ", - - "submission.import-external.source.openalexInstitution": "OpenAlex ସଂସ୍ଥାଗୁଡିକ", - - "submission.import-external.source.openalexPublisher": "OpenAlex ପ୍ରକାଶକଗୁଡିକ", - - "submission.import-external.source.openalexFunder": "OpenAlex ଫଣ୍ଡରଗୁଡିକ", - - "submission.import-external.preview.title": "ଆଇଟମ୍ ପ୍ରିଭ୍ୟୁ", - - "submission.import-external.preview.title.Publication": "ପ୍ରକାଶନ ପ୍ରିଭ୍ୟୁ", - - "submission.import-external.preview.title.none": "ଆଇଟମ୍ ପ୍ରିଭ୍ୟୁ", - - "submission.import-external.preview.title.Journal": "ଜର୍ଣ୍ଣାଲ ପ୍ରିଭ୍ୟୁ", - - "submission.import-external.preview.title.OrgUnit": "ସାଂଗଠନିକ ଏକକ ପ୍ରିଭ୍ୟୁ", - - "submission.import-external.preview.title.Person": "ବ୍ୟକ୍ତି ପ୍ରିଭ୍ୟୁ", - - "submission.import-external.preview.title.Project": "ପ୍ରୋଜେକ୍ଟ ପ୍ରିଭ୍ୟୁ", - - "submission.import-external.preview.subtitle": "ନିମ୍ନରେ ଥିବା ମେଟାଡାଟା ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଆମଦାନୀ କରାଯାଇଥିଲା। ଆପଣ ସବମିସନ୍ ଆରମ୍ଭ କରିବା ସମୟରେ ଏହା ପୂର୍ବ-ପୂରଣ ହୋଇଥିବ।", - - "submission.import-external.preview.button.import": "ସବମିସନ୍ ଆରମ୍ଭ କରନ୍ତୁ", - - "submission.import-external.preview.error.import.title": "ସବମିସନ୍ ତ୍ରୁଟି", - - "submission.import-external.preview.error.import.body": "ବାହ୍ୟ ସ୍ରୋତ ଆମଦାନୀ ପ୍ରକ୍ରିୟାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି।", - - "submission.sections.describe.relationship-lookup.close": "ବନ୍ଦ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.added": "ଚୟନକୁ ସ୍ଥାନୀୟ ପ୍ରବେଶ ସଫଳତାର ସହିତ ଯୋଡା ଯାଇଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "ଦୂରସ୍ଥ ଲେଖକ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଇସୁ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "ପ୍ରୋଜେକ୍ଟ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "ଦୂରସ୍ଥ ଆଇଟମ୍ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "ଦୂରସ୍ଥ ଇଭେଣ୍ଟ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "ଦୂରସ୍ଥ ଉତ୍ପାଦ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "ଦୂରସ୍ଥ ଉପକରଣ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "ଦୂରସ୍ଥ ସାଂଗଠନିକ ଏକକ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "ଦୂରସ୍ଥ ଫଣ୍ଡ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "ଦୂରସ୍ଥ ବ୍ୟକ୍ତି ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "ଦୂରସ୍ଥ ପେଟେଣ୍ଟ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "ଦୂରସ୍ଥ ପ୍ରୋଜେକ୍ଟ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "ଦୂରସ୍ଥ ପ୍ରକାଶନ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "ନୂତନ ଏଣ୍ଟିଟି ଯୋଡା ଯାଇଛି!", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "ପ୍ରୋଜେକ୍ଟ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "ଦୂରସ୍ଥ ଲେଖକ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "ସ୍ଥାନୀୟ ଲେଖକକୁ ଚୟନକୁ ସଫଳତାର ସହିତ ଯୋଡା ଯାଇଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "ବାହ୍ୟ ଲେଖକକୁ ସଫଳତାର ସହିତ ଆମଦାନୀ ଏବଂ ଚୟନକୁ ଯୋଡା ଯାଇଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "ପ୍ରାଧିକରଣ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "ଏକ ନୂତନ ସ୍ଥାନୀୟ ପ୍ରାଧିକରଣ ପ୍ରବେଶ ଭାବରେ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "ନୂତନ ପ୍ରବେଶଗୁଡିକ ଆମଦାନୀ କରିବାକୁ ଏକ ସଂଗ୍ରହ ଚୟନ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "ଏଣ୍ଟିଟିଗୁଡିକ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "ଏକ ନୂତନ ସ୍ଥାନୀୟ ଏଣ୍ଟିଟି ଭାବରେ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC ନାମରୁ ଆମଦାନୀ କରୁଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID ରୁ ଆମଦାନୀ କରୁଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE ରୁ ଆମଦାନୀ କରୁଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE ରୁ ଆମଦାନୀ କରୁଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE ରୁ ଆମଦାନୀ କରୁଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa ଜର୍ଣ୍ଣାଲରୁ ଆମଦାନୀ କରୁଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa ପ୍ରକାଶକରୁ ଆମଦାନୀ କରୁଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed ରୁ ଆମଦାନୀ କରୁଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv ରୁ ଆମଦାନୀ କରୁଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR ରୁ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "ଚୟନକୁ ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ସଫଳତାର ସହିତ ଯୋଗ କରାଯାଇଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "ବାହ୍ୟ ଜର୍ଣ୍ଣାଲ ସଫଳତାର ସହିତ ଆମଦାନୀ ଏବଂ ଚୟନକୁ ଯୋଗ କରାଯାଇଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "ଚୟନକୁ ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ ସଫଳତାର ସହିତ ଯୋଗ କରାଯାଇଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "ବାହ୍ୟ ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ ସଫଳତାର ସହିତ ଆମଦାନୀ ଏବଂ ଚୟନକୁ ଯୋଗ କରାଯାଇଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "ଚୟନକୁ ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ସଫଳତାର ସହିତ ଯୋଗ କରାଯାଇଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "ବାହ୍ୟ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ସଫଳତାର ସହିତ ଆମଦାନୀ ଏବଂ ଚୟନକୁ ଯୋଗ କରାଯାଇଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "ଏକ ସ୍ଥାନୀୟ ମେଳ ଚୟନ କରନ୍ତୁ:", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "ଦୂରସ୍ଥ ସଂଗଠନ ଆମଦାନୀ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "ଚୟନକୁ ସ୍ଥାନୀୟ ସଂଗଠନ ସଫଳତାର ସହିତ ଯୋଗ କରାଯାଇଛି", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "ବାହ୍ୟ ସଂଗଠନ ସଫଳତାର ସହିତ ଆମଦାନୀ ଏବଂ ଚୟନକୁ ଯୋଗ କରାଯାଇଛି", - - "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "ସମସ୍ତ ଚୟନ ଅଣଚୟନ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "ପୃଷ୍ଠା ଅଣଚୟନ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.search-tab.loading": "ଲୋଡ୍ ହେଉଛି...", - - "submission.sections.describe.relationship-lookup.search-tab.placeholder": "ସନ୍ଧାନ ପ୍ରଶ୍ନ", - - "submission.sections.describe.relationship-lookup.search-tab.search": "ଯାଆନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "ସନ୍ଧାନ କରନ୍ତୁ...", - - "submission.sections.describe.relationship-lookup.search-tab.select-all": "ସମସ୍ତ ଚୟନ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.search-tab.select-page": "ପୃଷ୍ଠା ଚୟନ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.selected": "{{ size }} ଆଇଟମ୍ ଚୟନ କରାଯାଇଛି", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "ସ୍ଥାନୀୟ ଲେଖକ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "ସ୍ଥାନୀୟ ପ୍ରୋଜେକ୍ଟ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "ସ୍ଥାନୀୟ ପ୍ରକାଶନ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "ସ୍ଥାନୀୟ ଲେଖକ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "ସ୍ଥାନୀୟ ସାଂଗଠନିକ ୟୁନିଟ୍ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "ସ୍ଥାନୀୟ ଡାଟା ପ୍ୟାକେଜ୍ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "ସ୍ଥାନୀୟ ଡାଟା ଫାଇଲ୍ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "ଶେରପା ଜର୍ଣ୍ଣାଲ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "ଶେରପା ପ୍ରକାଶକ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC ନାମ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "ପବମେଡ୍ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "କ୍ରସ୍ରେଫ୍ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "ସ୍କୋପସ୍ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "ଲେଖକ ଦ୍ୱାରା ଓପେନଏଆଇଆରଇ ସନ୍ଧାନ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "ଶୀର୍ଷକ ଦ୍ୱାରା ଓପେନଏଆଇଆରଇ ସନ୍ଧାନ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "ଫଣ୍ଡର୍ ଦ୍ୱାରା ଓପେନଏଆଇଆରଇ ସନ୍ଧାନ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN ଦ୍ୱାରା ଶେରପା ଜର୍ଣ୍ଣାଲ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "ଓପେନଆଲେକ୍ସ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "ଅନୁଷ୍ଠାନ ଦ୍ୱାରା ଓପେନଆଲେକ୍ସ ସନ୍ଧାନ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "ପ୍ରକାଶକ ଦ୍ୱାରା ଓପେନଆଲେକ୍ସ ସନ୍ଧାନ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "ଫଣ୍ଡର୍ ଦ୍ୱାରା ଓପେନଆଲେକ୍ସ ସନ୍ଧାନ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "ପ୍ରୋଜେକ୍ଟ ଦ୍ୱାରା ଡାଟାସାଇଟ୍ ସନ୍ଧାନ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "ଫଣ୍ଡିଂ ଏଜେନ୍ସି ଖୋଜନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "ଫଣ୍ଡିଂ ଖୋଜନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "ସାଂଗଠନିକ ୟୁନିଟ୍ ଖୋଜନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "ପ୍ରୋଜେକ୍ଟ", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "ପ୍ରୋଜେକ୍ଟର ଫଣ୍ଡର୍", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "ଲେଖକର ପ୍ରକାଶନ", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "ପ୍ରୋଜେକ୍ଟର ଅର୍ଗଏକକ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "ପ୍ରୋଜେକ୍ଟ", - - "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "ପ୍ରୋଜେକ୍ଟ", - - "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "ପ୍ରୋଜେକ୍ଟର ଫଣ୍ଡର୍", - - "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "ପ୍ରୋଜେକ୍ଟର ବ୍ୟକ୍ତି", - - "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "ସନ୍ଧାନ କରନ୍ତୁ...", - - "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "ବର୍ତ୍ତମାନର ଚୟନ ({{ count }})", - - "submission.sections.describe.relationship-lookup.title.Journal": "ଜର୍ଣ୍ଣାଲ", - - "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ", - - "submission.sections.describe.relationship-lookup.title.JournalIssue": "ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ", - - "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", - - "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", - - "submission.sections.describe.relationship-lookup.title.JournalVolume": "ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", - - "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "ଜର୍ଣ୍ଣାଲ", - - "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "ଲେଖକ", - - "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "ଫଣ୍ଡିଂ ଏଜେନ୍ସି", - - "submission.sections.describe.relationship-lookup.title.Project": "ପ୍ରୋଜେକ୍ଟ", - - "submission.sections.describe.relationship-lookup.title.Publication": "ପ୍ରକାଶନ", - - "submission.sections.describe.relationship-lookup.title.Person": "ଲେଖକ", - - "submission.sections.describe.relationship-lookup.title.OrgUnit": "ସାଂଗଠନିକ ୟୁନିଟ୍", - - "submission.sections.describe.relationship-lookup.title.DataPackage": "ଡାଟା ପ୍ୟାକେଜ୍", - - "submission.sections.describe.relationship-lookup.title.DataFile": "ଡାଟା ଫାଇଲ୍", - - "submission.sections.describe.relationship-lookup.title.Funding Agency": "ଫଣ୍ଡିଂ ଏଜେନ୍ସି", - - "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "ଫଣ୍ଡିଂ", - - "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "ପିତୃ ସାଂଗଠନିକ ୟୁନିଟ୍", - - "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "ପ୍ରକାଶନ", - - "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "ଅର୍ଗଏକକ", - - "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ଡ୍ରପଡାଉନ୍ ଟୋଗଲ୍ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.selection-tab.settings": "ସେଟିଂସ୍", - - "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "ଆପଣଙ୍କର ଚୟନ ବର୍ତ୍ତମାନ ଖାଲି ଅଛି।", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "ଚୟନିତ ଲେଖକ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "ଚୟନିତ ଜର୍ଣ୍ଣାଲ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "ଚୟନିତ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "ଚୟନିତ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "ଚୟନିତ ପ୍ରୋଜେକ୍ଟ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "ଚୟନିତ ପ୍ରକାଶନ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "ଚୟନିତ ଲେଖକ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "ଚୟନିତ ସାଂଗଠନିକ ୟୁନିଟ୍", - - "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "ଚୟନିତ ଡାଟା ପ୍ୟାକେଜ୍", - - "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "ଚୟନିତ ଡାଟା ଫାଇଲ୍", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "ଚୟନିତ ଜର୍ଣ୍ଣାଲ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "ଚୟନିତ ଇସ୍ୟୁ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "ଚୟନିତ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "ଚୟନିତ ଫଣ୍ଡିଂ ଏଜେନ୍ସି", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "ଚୟନିତ ଫଣ୍ଡିଂ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "ଚୟନିତ ଇସ୍ୟୁ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "ଚୟନିତ ସାଂଗଠନିକ ୟୁନିଟ୍", - - "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.selection-tab.title": "ସନ୍ଧାନ ଫଳାଫଳ", - - "submission.sections.describe.relationship-lookup.name-variant.notification.content": "ଆପଣ ଏହି ବ୍ୟକ୍ତିଙ୍କ ପାଇଁ \"{{ value }}\" ଏକ ନାମ ଭାରିଏଣ୍ଟ୍ ଭାବରେ ସଞ୍ଚୟ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ଯାହା ଆପଣ ଏବଂ ଅନ୍ୟମାନେ ଭବିଷ୍ୟତରେ ଦାଖଲା ପାଇଁ ପୁନର୍ବାର ବ୍ୟବହାର କରିପାରିବେ? ଯଦି ଆପଣ ନକଲି ତେବେ ଆପଣ ଏହି ଦାଖଲା ପାଇଁ ଏହାକୁ ବ୍ୟବହାର କରିପାରିବେ।", - - "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "ଏକ ନୂତନ ନାମ ଭାରିଏଣ୍ଟ୍ ସଞ୍ଚୟ କରନ୍ତୁ", - - "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "କେବଳ ଏହି ଦାଖଲା ପାଇଁ ବ୍ୟବହାର କରନ୍ତୁ", - - "submission.sections.ccLicense.type": "ଲାଇସେନ୍ସ ପ୍ରକାର", - - "submission.sections.ccLicense.select": "ଏକ ଲାଇସେନ୍ସ ପ୍ରକାର ଚୟନ କରନ୍ତୁ…", - - "submission.sections.ccLicense.change": "ଆପଣଙ୍କର ଲାଇସେନ୍ସ ପ୍ରକାର ପରିବର୍ତ୍ତନ କରନ୍ତୁ…", - - "submission.sections.ccLicense.none": "କୌଣସି ଲାଇସେନ୍ସ ଉପଲବ୍ଧ ନାହିଁ", - - "submission.sections.ccLicense.option.select": "ଏକ ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ…", - - "submission.sections.ccLicense.link": "ଆପଣ ନିମ୍ନଲିଖିତ ଲାଇସେନ୍ସ ଚୟନ କରିଛନ୍ତି:", - - "submission.sections.ccLicense.confirmation": "ମୁଁ ଉପରୋକ୍ତ ଲାଇସେନ୍ସ ପ୍ରଦାନ କରେ", - - "submission.sections.general.add-more": "ଅଧିକ ଯୋଡନ୍ତୁ", - - "submission.sections.general.cannot_deposit": "ଫର୍ମରେ ତ୍ରୁଟି ଥିବାରୁ ଡିପୋଜିଟ୍ ସମ୍ପୂର୍ଣ୍ଣ କରାଯାଇପାରିବ ନାହିଁ।
ଦୟାକରି ସମସ୍ତ ଆବଶ୍ୟକ କ୍ଷେତ୍ର ପୂରଣ କରି ଡିପୋଜିଟ୍ ସମ୍ପୂର୍ଣ୍ଣ କରନ୍ତୁ।", - - "submission.sections.general.collection": "ସଂଗ୍ରହ", - - "submission.sections.general.deposit_error_notice": "ଆଇଟମ୍ ଦାଖଲ କରିବା ସମୟରେ ଏକ ସମସ୍ୟା ଘଟିଥିଲା, ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ।", - - "submission.sections.general.deposit_success_notice": "ଦାଖଲା ସଫଳତାର ସହିତ ଡିପୋଜିଟ୍ ହୋଇଛି।", - - "submission.sections.general.discard_error_notice": "ଆଇଟମ୍ ପରିତ୍ୟାଗ କରିବା ସମୟରେ ଏକ ସମସ୍ୟା ଘଟିଥିଲା, ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ।", - - "submission.sections.general.discard_success_notice": "ଦାଖଲା ସଫଳତାର ସହିତ ପରିତ୍ୟାଗ ହୋଇଛି।", - - "submission.sections.general.metadata-extracted": "ନୂତନ ମେଟାଡାଟା ବାହାର କରାଯାଇଛି ଏବଂ {{sectionId}} ବିଭାଗରେ ଯୋଡା ଯାଇଛି।", - - "submission.sections.general.metadata-extracted-new-section": "ନୂତନ {{sectionId}} ବିଭାଗ ଦାଖଲାରେ ଯୋଡା ଯାଇଛି।", - - "submission.sections.general.no-collection": "କୌଣସି ସଂଗ୍ରହ ମିଳିଲା ନାହିଁ", - - "submission.sections.general.no-entity": "କୌଣସି ଏଣ୍ଟିଟି ପ୍ରକାର ମିଳିଲା ନାହିଁ", - - "submission.sections.general.no-sections": "କୌଣସି ବିକଳ୍ପ ଉପଲବ୍ଧ ନାହିଁ", - - "submission.sections.general.save_error_notice": "ଆଇଟମ୍ ସଞ୍ଚୟ କରିବା ସମୟରେ ଏକ ସମସ୍ୟା ଘଟିଥିଲା, ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ।", - - "submission.sections.general.save_success_notice": "ଦାଖଲା ସଫଳତାର ସହିତ ସଞ୍ଚୟ ହୋଇଛି।", - - "submission.sections.general.search-collection": "ଏକ ସଂଗ୍ରହ ଖୋଜନ୍ତୁ", - - "submission.sections.general.sections_not_valid": "ଅସମ୍ପୂର୍ଣ୍ଣ ବିଭାଗ ଅଛି।", - - "submission.sections.identifiers.info": "ଆପଣଙ୍କ ଆଇଟମ୍ ପାଇଁ ନିମ୍ନଲିଖିତ ଆଇଡେଣ୍ଟିଫାୟର୍ ସୃଷ୍ଟି ହେବ:", - - "submission.sections.identifiers.no_handle": "ଏହି ଆଇଟମ୍ ପାଇଁ କୌଣସି ହ୍ୟାଣ୍ଡଲ୍ ମିଣ୍ଟ ହୋଇନାହିଁ।", - - "submission.sections.identifiers.no_doi": "ଏହି ଆଇଟମ୍ ପାଇଁ କୌଣସି DOI ମିଣ୍ଟ ହୋଇନାହିଁ।", - - "submission.sections.identifiers.handle_label": "ହ୍ୟାଣ୍ଡଲ୍: ", - - "submission.sections.identifiers.doi_label": "DOI: ", - - "submission.sections.identifiers.otherIdentifiers_label": "ଅନ୍ୟ ଆଇଡେଣ୍ଟିଫାୟର୍: ", - - "submission.sections.submit.progressbar.accessCondition": "ଆଇଟମ୍ ପ୍ରବେଶ ଶର୍ତ୍ତ", - - "submission.sections.submit.progressbar.CClicense": "କ୍ରିଏଟିଭ୍ କମନ୍ସ ଲାଇସେନ୍ସ", - - "submission.sections.submit.progressbar.describe.recycle": "ରିସାଇକଲ୍", - - "submission.sections.submit.progressbar.describe.stepcustom": "ବର୍ଣ୍ଣନା କରନ୍ତୁ", - - "submission.sections.submit.progressbar.describe.stepone": "ବର୍ଣ୍ଣନା କରନ୍ତୁ", - - "submission.sections.submit.progressbar.describe.steptwo": "ବର୍ଣ୍ଣନା କରନ୍ତୁ", - - "submission.sections.submit.progressbar.duplicates": "ସମ୍ଭାବ୍ୟ ଡୁପ୍ଲିକେଟ୍", - - "submission.sections.submit.progressbar.identifiers": "ଆଇଡେଣ୍ଟିଫାୟର୍", - - "submission.sections.submit.progressbar.license": "ଡିପୋଜିଟ୍ ଲାଇସେନ୍ସ", - - "submission.sections.submit.progressbar.sherpapolicy": "ଶେରପା ନୀତି", - - "submission.sections.submit.progressbar.upload": "ଫାଇଲ୍ ଅପଲୋଡ୍ କରନ୍ତୁ", - - "submission.sections.submit.progressbar.sherpaPolicies": "ପ୍ରକାଶକ ଖୋଲା ପ୍ରବେଶ ନୀତି ସୂଚନା", - - "submission.sections.sherpa-policy.title-empty": "କୌଣସି ପ୍ରକାଶକ ନୀତି ସୂଚନା ଉପଲବ୍ଧ ନାହିଁ। ଯଦି ଆପଣଙ୍କ କାର୍ଯ୍ୟରେ ଏକ ସମ୍ବନ୍ଧିତ ISSN ଅଛି, ଦୟାକରି ଉପରେ ଏହାକୁ ପ୍ରବେଶ କରନ୍ତୁ ଯେପରିକି ସମ୍ବନ୍ଧିତ ପ୍ରକାଶକ ଖୋଲା ପ୍ରବେଶ ନୀତିଗୁଡିକ ଦେଖାଯାଇପାରିବ।", - - "submission.sections.status.errors.title": "ତ୍ରୁଟିଗୁଡିକ", - - "submission.sections.status.valid.title": "ବ valid ଧ", - - "submission.sections.status.warnings.title": "ଚେତାବନୀ", - - "submission.sections.status.errors.aria": "ତ୍ରୁଟି ଅଛି", - - "submission.sections.status.valid.aria": "ବ valid ଧ", - - "submission.sections.status.warnings.aria": "ଚେତାବନୀ ଅଛି", - - "submission.sections.status.info.title": "ଅତିରିକ୍ତ ସୂଚନା", - - "submission.sections.status.info.aria": "ଅତିରିକ୍ତ ସୂଚନା", - - "submission.sections.toggle.open": "ବିଭାଗ ଖୋଲନ୍ତୁ", - - "submission.sections.toggle.close": "ବିଭାଗ ବନ୍ଦ କରନ୍ତୁ", - - "submission.sections.toggle.aria.open": "{{sectionHeader}} ବିଭାଗ ବିସ୍ତାର କରନ୍ତୁ", - - "submission.sections.toggle.aria.close": "{{sectionHeader}} ବିଭାଗ ସଂକୋଚନ କରନ୍ତୁ", - - "submission.sections.upload.primary.make": "{{fileName}} କୁ ପ୍ରାଥମିକ ବିଟଷ୍ଟ୍ରିମ୍ କରନ୍ତୁ", - - "submission.sections.upload.primary.remove": "{{fileName}} କୁ ପ୍ରାଥମିକ ବିଟଷ୍ଟ୍ରିମ୍ ଭାବରେ ଅପସାରଣ କରନ୍ତୁ", - - "submission.sections.upload.delete.confirm.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "submission.sections.upload.delete.confirm.info": "ଏହି କାର୍ଯ୍ୟକୁ ପ୍ରତ୍ୟାବର୍ତ୍ତନ କରାଯାଇପାରିବ ନାହିଁ। ଆପଣ ନିଶ୍ଚିତ କି?", - - "submission.sections.upload.delete.confirm.submit": "ହଁ, ମୁଁ ନିଶ୍ଚିତ", - - "submission.sections.upload.delete.confirm.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଡିଲିଟ୍ କରନ୍ତୁ", - - "submission.sections.upload.delete.submit": "ଡିଲିଟ୍ କରନ୍ତୁ", - - "submission.sections.upload.download.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଡାଉନଲୋଡ୍ କରନ୍ତୁ", - - "submission.sections.upload.drop-message": "ଆଇଟମ୍ ସହିତ ସେଗୁଡିକୁ ଜୋଡିବା ପାଇଁ ଫାଇଲ୍ ଡ୍ରପ୍ କରନ୍ତୁ", - - "submission.sections.upload.edit.title": "ବିଟଷ୍ଟ୍ରିମ୍ ସଂପାଦନ କରନ୍ତୁ", - - "submission.sections.upload.form.access-condition-label": "ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରକାର", - - "submission.sections.upload.form.access-condition-hint": "ଆଇଟମ୍ ଡିପୋଜିଟ୍ ହେବା ପରେ ବିଟଷ୍ଟ୍ରିମ୍ ଉପରେ ପ୍ରୟୋଗ କରିବାକୁ ଏକ ପ୍ରବେଶ ସର୍ତ୍ତ ଚୟନ କରନ୍ତୁ", - - "submission.sections.upload.form.date-required": "ତାରିଖ ଆବଶ୍ୟକ।", - - "submission.sections.upload.form.date-required-from": "ପ୍ରବେଶ ତାରିଖରୁ ଆବଶ୍ୟକ।", - - "submission.sections.upload.form.date-required-until": "ପ୍ରବେଶ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ଆବଶ୍ୟକ।", - - "submission.sections.upload.form.from-label": "ଠାରୁ ପ୍ରବେଶ ଦିଅନ୍ତୁ", - - "submission.sections.upload.form.from-hint": "ଯେଉଁ ତାରିଖରୁ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରୟୋଗ କରାଯାଇଛି ସେହି ତାରିଖ ଚୟନ କରନ୍ତୁ", - - "submission.sections.upload.form.from-placeholder": "ଠାରୁ", - - "submission.sections.upload.form.group-label": "ଗୋଷ୍ଠୀ", - - "submission.sections.upload.form.group-required": "ଗୋଷ୍ଠୀ ଆବଶ୍ୟକ।", - - "submission.sections.upload.form.until-label": "ପର୍ଯ୍ୟନ୍ତ ପ୍ରବେଶ ଦିଅନ୍ତୁ", - - "submission.sections.upload.form.until-hint": "ଯେଉଁ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରୟୋଗ କରାଯାଇଛି ସେହି ତାରିଖ ଚୟନ କରନ୍ତୁ", - - "submission.sections.upload.form.until-placeholder": "ପର୍ଯ୍ୟନ୍ତ", - - "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} ସଂଗ୍ରହରେ ଅପଲୋଡ୍ କରାଯାଇଥିବା ଫାଇଲ୍ ନିମ୍ନଲିଖିତ ଗୋଷ୍ଠୀ(ଗୁଡିକ) ଅନୁଯାୟୀ ପ୍ରବେଶଯୋଗ୍ୟ ହେବ:", - - "submission.sections.upload.header.policy.default.withlist": "ଦୟାକରି ଧ୍ୟାନ ଦିଅନ୍ତୁ ଯେ {{collectionName}} ସଂଗ୍ରହରେ ଅପଲୋଡ୍ କରାଯାଇଥିବା ଫାଇଲ୍, ଏକକ ଫାଇଲ୍ ପାଇଁ ସ୍ପଷ୍ଟ ଭାବରେ ନିଷ୍ପତ୍ତି ନିଆଯାଇଥିବା ବ୍ୟତିତ, ନିମ୍ନଲିଖିତ ଗୋଷ୍ଠୀ(ଗୁଡିକ) ସହିତ ପ୍ରବେଶଯୋଗ୍ୟ ହେବ:", - - "submission.sections.upload.info": "ଏଠାରେ ଆପଣ ବର୍ତ୍ତମାନ ଆଇଟମ୍ ରେ ଥିବା ସମସ୍ତ ଫାଇଲ୍ ପାଇବେ। ଆପଣ ଫାଇଲ୍ ମେଟାଡାଟା ଏବଂ ପ୍ରବେଶ ସର୍ତ୍ତ ଅଦ୍ୟତନ କରିପାରିବେ କିମ୍ବା ପୃଷ୍ଠାରେ ଯେକୌଣସି ସ୍ଥାନରେ ସେଗୁଡିକୁ ଟାଣି ଛାଡିବା ଦ୍ୱାରା ଅତିରିକ୍ତ ଫାଇଲ୍ ଅପଲୋଡ୍ କରିପାରିବେ।", - - "submission.sections.upload.no-entry": "ନା", - - "submission.sections.upload.no-file-uploaded": "ଏପର୍ଯ୍ୟନ୍ତ କୌଣସି ଫାଇଲ୍ ଅପଲୋଡ୍ ହୋଇନାହିଁ।", - - "submission.sections.upload.save-metadata": "ମେଟାଡାଟା ସେଭ୍ କରନ୍ତୁ", - - "submission.sections.upload.undo": "ବାତିଲ୍ କରନ୍ତୁ", - - "submission.sections.upload.upload-failed": "ଅପଲୋଡ୍ ବିଫଳ ହେଲା", - - "submission.sections.upload.upload-successful": "ଅପଲୋଡ୍ ସଫଳ ହେଲା", - - "submission.sections.accesses.form.discoverable-description": "ଚେକ୍ କରାଯାଇଥିବା ବେଳେ, ଏହି ଆଇଟମ୍ ଖୋଜା/ବ୍ରାଉଜ୍ ରେ ଦେଖାଯିବ। ଅଚେକ୍ କରାଯାଇଥିବା ବେଳେ, ଆଇଟମ୍ କେବଳ ଏକ ସିଧାସଳଖ ଲିଙ୍କ୍ ମାଧ୍ୟମରେ ଉପଲବ୍ଧ ହେବ ଏବଂ ଖୋଜା/ବ୍ରାଉଜ୍ ରେ କଦାପି ଦେଖାଯିବ ନାହିଁ।", - - "submission.sections.accesses.form.discoverable-label": "ଆବିଷ୍କାରଯୋଗ୍ୟ", - - "submission.sections.accesses.form.access-condition-label": "ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରକାର", - - "submission.sections.accesses.form.access-condition-hint": "ଆଇଟମ୍ ଡିପୋଜିଟ୍ ହେବା ପରେ ଏହା ଉପରେ ପ୍ରୟୋଗ କରିବାକୁ ଏକ ପ୍ରବେଶ ସର୍ତ୍ତ ଚୟନ କରନ୍ତୁ", - - "submission.sections.accesses.form.date-required": "ତାରିଖ ଆବଶ୍ୟକ।", - - "submission.sections.accesses.form.date-required-from": "ପ୍ରବେଶ ତାରିଖରୁ ଆବଶ୍ୟକ।", - - "submission.sections.accesses.form.date-required-until": "ପ୍ରବେଶ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ଆବଶ୍ୟକ।", - - "submission.sections.accesses.form.from-label": "ଠାରୁ ପ୍ରବେଶ ଦିଅନ୍ତୁ", - - "submission.sections.accesses.form.from-hint": "ଯେଉଁ ତାରିଖରୁ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରୟୋଗ କରାଯାଇଛି ସେହି ତାରିଖ ଚୟନ କରନ୍ତୁ", - - "submission.sections.accesses.form.from-placeholder": "ଠାରୁ", - - "submission.sections.accesses.form.group-label": "ଗୋଷ୍ଠୀ", - - "submission.sections.accesses.form.group-required": "ଗୋଷ୍ଠୀ ଆବଶ୍ୟକ।", - - "submission.sections.accesses.form.until-label": "ପର୍ଯ୍ୟନ୍ତ ପ୍ରବେଶ ଦିଅନ୍ତୁ", - - "submission.sections.accesses.form.until-hint": "ଯେଉଁ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରୟୋଗ କରାଯାଇଛି ସେହି ତାରିଖ ଚୟନ କରନ୍ତୁ", - - "submission.sections.accesses.form.until-placeholder": "ପର୍ଯ୍ୟନ୍ତ", - - "submission.sections.duplicates.none": "କୌଣସି ନକଲ ଚିହ୍ନଟ ହୋଇନାହିଁ।", - - "submission.sections.duplicates.detected": "ସମ୍ଭାବ୍ୟ ନକଲ ଚିହ୍ନଟ ହୋଇଛି। ଦୟାକରି ନିମ୍ନରେ ଥିବା ତାଲିକାକୁ ସମୀକ୍ଷା କରନ୍ତୁ।", - - "submission.sections.duplicates.in-workspace": "ଏହି ଆଇଟମ୍ କାର୍ଯ୍ୟସ୍ଥଳରେ ଅଛି", - - "submission.sections.duplicates.in-workflow": "ଏହି ଆଇଟମ୍ କାର୍ଯ୍ୟପ୍ରଣାଳୀରେ ଅଛି", - - "submission.sections.license.granted-label": "ମୁଁ ଉପରେ ଥିବା ଲାଇସେନ୍ସକୁ ନିଶ୍ଚିତ କରେ", - - "submission.sections.license.required": "ଆପଣଙ୍କୁ ଲାଇସେନ୍ସ ଗ୍ରହଣ କରିବାକୁ ପଡିବ", - - "submission.sections.license.notgranted": "ଆପଣଙ୍କୁ ଲାଇସେନ୍ସ ଗ୍ରହଣ କରିବାକୁ ପଡିବ", - - "submission.sections.sherpa.publication.information": "ପ୍ରକାଶନ ସୂଚନା", - - "submission.sections.sherpa.publication.information.title": "ଶୀର୍ଷକ", - - "submission.sections.sherpa.publication.information.issns": "ISSNs", - - "submission.sections.sherpa.publication.information.url": "URL", - - "submission.sections.sherpa.publication.information.publishers": "ପ୍ରକାଶକ", - - "submission.sections.sherpa.publication.information.romeoPub": "ରୋମିଓ ପବ୍", - - "submission.sections.sherpa.publication.information.zetoPub": "ଜେଟୋ ପବ୍", - - "submission.sections.sherpa.publisher.policy": "ପ୍ରକାଶକ ନୀତି", - - "submission.sections.sherpa.publisher.policy.description": "ନିମ୍ନରେ ଥିବା ସୂଚନା ଶେରପା ରୋମିଓ ମାଧ୍ୟମରେ ମିଳିଛି। ଆପଣଙ୍କ ପ୍ରକାଶକର ନୀତି ଉପରେ ଆଧାରିତ, ଏହା ଏକ ଏମ୍ବାର୍ଗୋ ଆବଶ୍ୟକ କି ନାହିଁ ଏବଂ/କିମ୍ବା କେଉଁ ଫାଇଲ୍ ଆପଣ ଅପଲୋଡ୍ କରିପାରିବେ ସେ ସମ୍ବନ୍ଧରେ ପରାମର୍ଶ ଦିଏ। ଯଦି ଆପଣଙ୍କର ପ୍ରଶ୍ନ ଅଛି, ଦୟାକରି ଫୁଟରରେ ଥିବା ଫିଡବ୍ୟାକ୍ ଫର୍ମ ମାଧ୍ୟମରେ ଆପଣଙ୍କ ସାଇଟ୍ ପ୍ରଶାସକଙ୍କ ସହିତ ଯୋଗାଯୋଗ କରନ୍ତୁ।", - - "submission.sections.sherpa.publisher.policy.openaccess": "ଏହି ଜର୍ଣ୍ଣାଲର ନୀତି ଦ୍ୱାରା ଅନୁମୋଦିତ ଖୋଲା ପ୍ରବେଶ ପଥଗୁଡିକ ନିମ୍ନରେ ଆର୍ଟିକଲ୍ ସଂସ୍କରଣ ଅନୁଯାୟୀ ତାଲିକାଭୁକ୍ତ ହୋଇଛି। ଅଧିକ ବିସ୍ତୃତ ଦୃଶ୍ୟ ପାଇଁ ଏକ ପଥ ଉପରେ କ୍ଲିକ୍ କରନ୍ତୁ", - - "submission.sections.sherpa.publisher.policy.more.information": "ଅଧିକ ସୂଚନା ପାଇଁ, ଦୟାକରି ନିମ୍ନଲିଖିତ ଲିଙ୍କ୍ ଦେଖନ୍ତୁ:", - - "submission.sections.sherpa.publisher.policy.version": "ସଂସ୍କରଣ", - - "submission.sections.sherpa.publisher.policy.embargo": "ଏମ୍ବାର୍ଗୋ", - - "submission.sections.sherpa.publisher.policy.noembargo": "କୌଣସି ଏମ୍ବାର୍ଗୋ ନାହିଁ", - - "submission.sections.sherpa.publisher.policy.nolocation": "କିଛି ନାହିଁ", - - "submission.sections.sherpa.publisher.policy.license": "ଲାଇସେନ୍ସ", - - "submission.sections.sherpa.publisher.policy.prerequisites": "ପୂର୍ବାପେକ୍ଷା", - - "submission.sections.sherpa.publisher.policy.location": "ଅବସ୍ଥାନ", - - "submission.sections.sherpa.publisher.policy.conditions": "ସର୍ତ୍ତଗୁଡିକ", - - "submission.sections.sherpa.publisher.policy.refresh": "ରିଫ୍ରେସ୍ କରନ୍ତୁ", - - "submission.sections.sherpa.record.information": "ରେକର୍ଡ ସୂଚନା", - - "submission.sections.sherpa.record.information.id": "ID", - - "submission.sections.sherpa.record.information.date.created": "ତାରିଖ ସୃଷ୍ଟି ହୋଇଛି", - - "submission.sections.sherpa.record.information.date.modified": "ଶେଷ ପରିବର୍ତ୍ତିତ", - - "submission.sections.sherpa.record.information.uri": "URI", - - "submission.sections.sherpa.error.message": "ଶେରପା ସୂଚନା ପ୍ରାପ୍ତିରେ ଏକ ତ୍ରୁଟି ହୋଇଛି", - - "submission.submit.breadcrumbs": "ନୂତନ ଦାଖଲା", - - "submission.submit.title": "ନୂତନ ଦାଖଲା", - - "submission.workflow.generic.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", - - "submission.workflow.generic.delete-help": "ଏହି ଆଇଟମ୍ ପରିତ୍ୟାଗ କରିବାକୁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ। ତା’ପରେ ଆପଣଙ୍କୁ ଏହାକୁ ନିଶ୍ଚିତ କରିବାକୁ କୁହାଯିବ।", - - "submission.workflow.generic.edit": "ସଂପାଦନ କରନ୍ତୁ", - - "submission.workflow.generic.edit-help": "ଆଇଟମ୍ ର ମେଟାଡାଟା ପରିବର୍ତ୍ତନ କରିବାକୁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", - - "submission.workflow.generic.view": "ଦେଖନ୍ତୁ", - - "submission.workflow.generic.view-help": "ଆଇଟମ୍ ର ମେଟାଡାଟା ଦେଖିବାକୁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", - - "submission.workflow.generic.submit_select_reviewer": "ସମୀକ୍ଷକ ଚୟନ କରନ୍ତୁ", - - "submission.workflow.generic.submit_select_reviewer-help": "", - - "submission.workflow.generic.submit_score": "ମୂଲ୍ୟାୟନ କରନ୍ତୁ", - - "submission.workflow.generic.submit_score-help": "", - - "submission.workflow.tasks.claimed.approve": "ଅନୁମୋଦନ କରନ୍ତୁ", - - "submission.workflow.tasks.claimed.approve_help": "ଯଦି ଆପଣ ଆଇଟମ୍ ର ସମୀକ୍ଷା କରିଛନ୍ତି ଏବଂ ଏହା ସଂଗ୍ରହରେ ସମାଵେଶ ପାଇଁ ଉପଯୁକ୍ତ, \"ଅନୁମୋଦନ କରନ୍ତୁ\" ଚୟନ କରନ୍ତୁ।", - - "submission.workflow.tasks.claimed.edit": "ସଂପାଦନ କରନ୍ତୁ", - - "submission.workflow.tasks.claimed.edit_help": "ଆଇଟମ୍ ର ମେଟାଡାଟା ପରିବର୍ତ୍ତନ କରିବାକୁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", - - "submission.workflow.tasks.claimed.decline": "ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", - - "submission.workflow.tasks.claimed.decline_help": "", - - "submission.workflow.tasks.claimed.reject.reason.info": "ଦୟାକରି ନିମ୍ନରେ ଥିବା ବାକ୍ସରେ ଦାଖଲାକୁ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିବାର କାରଣ ପ୍ରବେଶ କରନ୍ତୁ, ସୂଚାଅନ୍ତୁ ଯେ ଦାଖଲକାରୀ ଏକ ସମସ୍ୟା ସମାଧାନ କରିପାରିବେ କି ନାହିଁ ଏବଂ ପୁନର୍ବାର ଦାଖଲ କରିପାରିବେ।", - - "submission.workflow.tasks.claimed.reject.reason.placeholder": "ପ୍ରତ୍ୟାଖ୍ୟାନର କାରଣ ବର୍ଣ୍ଣନା କରନ୍ତୁ", - - "submission.workflow.tasks.claimed.reject.reason.submit": "ଆଇଟମ୍ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", - - "submission.workflow.tasks.claimed.reject.reason.title": "କାରଣ", - - "submission.workflow.tasks.claimed.reject.submit": "ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", - - "submission.workflow.tasks.claimed.reject_help": "ଯଦି ଆପଣ ଆଇଟମ୍ ର ସମୀକ୍ଷା କରିଛନ୍ତି ଏବଂ ଏହା ସଂଗ୍ରହରେ ସମାଵେଶ ପାଇଁ ନୁହେଁ ଉପଯୁକ୍ତ, \"ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ\" ଚୟନ କରନ୍ତୁ। ତା’ପରେ ଆପଣଙ୍କୁ ଏକ ବାର୍ତ୍ତା ପ୍ରବେଶ କରିବାକୁ କୁହାଯିବ ଯାହା ସୂଚାଇବ କାହିଁକି ଆଇଟମ୍ ଟି ଅନୁପଯୁକ୍ତ, ଏବଂ ଦାଖଲକାରୀ କିଛି ପରିବର୍ତ୍ତନ କରିବା ଉଚିତ୍ କି ନାହିଁ ଏବଂ ପୁନର୍ବାର ଦାଖଲ କରିବା ଉଚିତ୍।", - - "submission.workflow.tasks.claimed.return": "ପୁଲ୍ କୁ ଫେରନ୍ତୁ", - - "submission.workflow.tasks.claimed.return_help": "ଅନ୍ୟ ଏକ ଉପଯୋଗକର୍ତ୍ତା କାର୍ଯ୍ୟ କରିପାରିବେ ତାହା ପାଇଁ କାର୍ଯ୍ୟକୁ ପୁଲ୍ କୁ ଫେରାନ୍ତୁ।", - - "submission.workflow.tasks.generic.error": "କାର୍ଯ୍ୟ ସମୟରେ ତ୍ରୁଟି ଘଟିଲା...", - - "submission.workflow.tasks.generic.processing": "ପ୍ରକ୍ରିୟାକରଣ...", - - "submission.workflow.tasks.generic.submitter": "ଦାଖଲକାରୀ", - - "submission.workflow.tasks.generic.success": "କାର୍ଯ୍ୟ ସଫଳ ହେଲା", - - "submission.workflow.tasks.pool.claim": "ଦାବି କରନ୍ତୁ", - - "submission.workflow.tasks.pool.claim_help": "ଏହି କାର୍ଯ୍ୟକୁ ନିଜେ ନିଯୁକ୍ତ କରନ୍ତୁ।", - - "submission.workflow.tasks.pool.hide-detail": "ବିବରଣୀ ଲୁଚାନ୍ତୁ", - - "submission.workflow.tasks.pool.show-detail": "ବିବରଣୀ ଦେଖାନ୍ତୁ", - - "submission.workflow.tasks.duplicates": "ଏହି ଆଇଟମ୍ ପାଇଁ ସମ୍ଭାବ୍ୟ ନକଲ ଚିହ୍ନଟ ହୋଇଛି। ବିବରଣୀ ଦେଖିବାକୁ ଏହି ଆଇଟମ୍ କୁ ଦାବି କରନ୍ତୁ ଏବଂ ସଂପାଦନ କରନ୍ତୁ।", - - "submission.workspace.generic.view": "ଦେଖନ୍ତୁ", - - "submission.workspace.generic.view-help": "ଆଇଟମ୍ ର ମେଟାଡାଟା ଦେଖିବାକୁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", - - "submitter.empty": "N/A", - - "subscriptions.title": "ସବସ୍କ୍ରିପ୍ସନ୍", - - "subscriptions.item": "ଆଇଟମ୍ ପାଇଁ ସବସ୍କ୍ରିପ୍ସନ୍", - - "subscriptions.collection": "ସଂଗ୍ରହ ପାଇଁ ସବସ୍କ୍ରିପ୍ସନ୍", - - "subscriptions.community": "ସମ୍ପ୍ରଦାୟ ପାଇଁ ସବସ୍କ୍ରିପ୍ସନ୍", - - "subscriptions.subscription_type": "ସବସ୍କ୍ରିପ୍ସନ୍ ପ୍ରକାର", - - "subscriptions.frequency": "ସବସ୍କ୍ରିପ୍ସନ୍ ଆବୃତ୍ତି", - - "subscriptions.frequency.D": "ଦ Daily ନିକ", - - "subscriptions.frequency.M": "ମାସିକ", - - "subscriptions.frequency.W": "ସାପ୍ତାହିକ", - - "subscriptions.tooltip": "ସବସ୍କ୍ରାଇବ୍ କରନ୍ତୁ", - - "subscriptions.unsubscribe": "ଅନସବସ୍କ୍ରାଇବ୍ କରନ୍ତୁ", - - "subscriptions.modal.title": "ସବସ୍କ୍ରିପ୍ସନ୍", - - "subscriptions.modal.type-frequency": "ପ୍ରକାର ଏବଂ ଆବୃତ୍ତି", - - "subscriptions.modal.close": "ବନ୍ଦ କରନ୍ତୁ", - - "subscriptions.modal.delete-info": "ଏହି ସବସ୍କ୍ରିପ୍ସନ୍ ଅପସାରଣ କରିବାକୁ, ଦୟାକରି ଆପଣଙ୍କ ଉପଯୋଗକର୍ତ୍ତା ପ୍ରୋଫାଇଲ୍ ଅଧୀନରେ \"ସବସ୍କ୍ରିପ୍ସନ୍\" ପୃଷ୍ଠା ପରିଦର୍ଶନ କରନ୍ତୁ", - - "subscriptions.modal.new-subscription-form.type.content": "ବିଷୟବସ୍ତୁ", - - "subscriptions.modal.new-subscription-form.frequency.D": "ଦ Daily ନିକ", - - "subscriptions.modal.new-subscription-form.frequency.W": "ସାପ୍ତାହିକ", - - "subscriptions.modal.new-subscription-form.frequency.M": "ମାସିକ", - - "subscriptions.modal.new-subscription-form.submit": "ଦାଖଲ କରନ୍ତୁ", - - "subscriptions.modal.new-subscription-form.processing": "ପ୍ରକ୍ରିୟାକରଣ...", - - "subscriptions.modal.create.success": "{{ type }} କୁ ସଫଳତାର ସହିତ ସବସ୍କ୍ରାଇବ୍ ହୋଇଛି।", - - "subscriptions.modal.delete.success": "ସବସ୍କ୍ରିପ୍ସନ୍ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", - - "subscriptions.modal.update.success": "{{ type }} ରେ ସବସ୍କ୍ରିପ୍ସନ୍ ସଫଳତାର ସହିତ ଅପଡେଟ୍ ହୋଇଛି", - - "subscriptions.modal.create.error": "ସବସ୍କ୍ରିପ୍ସନ୍ ସୃଷ୍ଟି କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - - "subscriptions.modal.delete.error": "ସବସ୍କ୍ରିପ୍ସନ୍ ଡିଲିଟ୍ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - - "subscriptions.modal.update.error": "ସବସ୍କ୍ରିପ୍ସନ୍ ଅପଡେଟ୍ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - - "subscriptions.table.dso": "ବିଷୟ", - - "subscriptions.table.subscription_type": "ସବସ୍କ୍ରିପ୍ସନ୍ ପ୍ରକାର", - - "subscriptions.table.subscription_frequency": "ସବସ୍କ୍ରିପ୍ସନ୍ ଫ୍ରିକ୍ୱେନ୍ସି", - - "subscriptions.table.action": "କାର୍ଯ୍ୟ", - - "subscriptions.table.edit": "ସଂପାଦନ କରନ୍ତୁ", - - "subscriptions.table.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", - - "subscriptions.table.not-available": "ଉପଲବ୍ଧ ନାହିଁ", - - "subscriptions.table.not-available-message": "ସବସ୍କ୍ରାଇବ୍ ହୋଇଥିବା ଆଇଟମ୍ ଡିଲିଟ୍ ହୋଇଛି, କିମ୍ବା ଆପଣଙ୍କର ଏହାକୁ ଦେଖିବାର ଅନୁମତି ନାହିଁ", - - "subscriptions.table.empty.message": "ଆପଣଙ୍କର ବର୍ତ୍ତମାନ କୌଣସି ସବସ୍କ୍ରିପ୍ସନ୍ ନାହିଁ। ଏକ ସମୁଦାୟ କିମ୍ବା ସଂଗ୍ରହ ପାଇଁ ଇମେଲ୍ ଅପଡେଟ୍ ଗୁଡିକୁ ସବସ୍କ୍ରାଇବ୍ କରିବା ପାଇଁ, ଆଇଟମ୍ ପୃଷ୍ଠାରେ ସବସ୍କ୍ରିପ୍ସନ୍ ବଟନ୍ ବ୍ୟବହାର କରନ୍ତୁ।", - - "thumbnail.default.alt": "ଥମ୍ବନେଲ୍ ପ୍ରତିଛବି", - - "thumbnail.default.placeholder": "କୌଣସି ଥମ୍ବନେଲ୍ ଉପଲବ୍ଧ ନାହିଁ", - - "thumbnail.project.alt": "ପ୍ରୋଜେକ୍ଟ ଲୋଗୋ", - - "thumbnail.project.placeholder": "ପ୍ରୋଜେକ୍ଟ ପ୍ଲେସହୋଲ୍ଡର୍ ପ୍ରତିଛବି", - - "thumbnail.orgunit.alt": "ଅର୍ଗୟୁନିଟ୍ ଲୋଗୋ", - - "thumbnail.orgunit.placeholder": "ଅର୍ଗୟୁନିଟ୍ ପ୍ଲେସହୋଲ୍ଡର୍ ପ୍ରତିଛବି", - - "thumbnail.person.alt": "ପ୍ରୋଫାଇଲ୍ ଚିତ୍ର", - - "thumbnail.person.placeholder": "କୌଣସି ପ୍ରୋଫାଇଲ୍ ଚିତ୍ର ଉପଲବ୍ଧ ନାହିଁ", - - "title": "ଡିଏସ୍ପେସ୍", - - "vocabulary-treeview.header": "ହାୟାରାର୍କିକାଲ୍ ଟ୍ରି ଭ୍ୟୁ", - - "vocabulary-treeview.load-more": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", - - "vocabulary-treeview.search.form.reset": "ରିସେଟ୍ କରନ୍ତୁ", - - "vocabulary-treeview.search.form.search": "ସନ୍ଧାନ କରନ୍ତୁ", - - "vocabulary-treeview.search.form.search-placeholder": "ପ୍ରଥମ କିଛି ଅକ୍ଷର ଟାଇପ୍ କରି ଫିଲ୍ଟର୍ ଫଳାଫଳ", - - "vocabulary-treeview.search.no-result": "ଦେଖାଇବା ପାଇଁ କୌଣସି ଆଇଟମ୍ ନାହିଁ", - - "vocabulary-treeview.tree.description.nsi": "ନରୱେଜିଆନ୍ ସାଇନ୍ସ ଇଣ୍ଡେକ୍ସ୍", - - "vocabulary-treeview.tree.description.srsc": "ଗବେଷଣା ବିଷୟ ବର୍ଗୀକରଣ", - - "vocabulary-treeview.info": "ସନ୍ଧାନ ଫିଲ୍ଟର୍ ଭାବରେ ଯୋଡିବା ପାଇଁ ଏକ ବିଷୟ ଚୟନ କରନ୍ତୁ", - - "uploader.browse": "ବ୍ରାଉଜ୍ କରନ୍ତୁ", - - "uploader.drag-message": "ଆପଣଙ୍କର ଫାଇଲ୍ ଗୁଡିକୁ ଏଠାରେ ଡ୍ରାଗ୍ ଏବଂ ଡ୍ରପ୍ କରନ୍ତୁ", - - "uploader.delete.btn-title": "ଡିଲିଟ୍ କରନ୍ତୁ", - - "uploader.or": ", କିମ୍ବା ", - - "uploader.processing": "ଅପଲୋଡ୍ ଫାଇଲ୍(ଗୁଡିକ) ପ୍ରକ୍ରିୟାକରଣ ଚାଲିଛି... (ଏହି ପୃଷ୍ଠାକୁ ବନ୍ଦ କରିବା ବିପଦମୁକ୍ତ)", - - "uploader.queue-length": "କ୍ୟୁ ଲମ୍ବ", - - "virtual-metadata.delete-item.info": "ଯେଉଁସବୁ ପ୍ରକାର ପାଇଁ ଆପଣ ଭର୍ଚୁଆଲ୍ ମେଟାଡାଟାକୁ ପ୍ରକୃତ ମେଟାଡାଟା ଭାବରେ ସେଭ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି, ସେଗୁଡିକୁ ଚୟନ କରନ୍ତୁ", - - "virtual-metadata.delete-item.modal-head": "ଏହି ସମ୍ପର୍କର ଭର୍ଚୁଆଲ୍ ମେଟାଡାଟା", - - "virtual-metadata.delete-relationship.modal-head": "ଯେଉଁସବୁ ଆଇଟମ୍ ପାଇଁ ଆପଣ ଭର୍ଚୁଆଲ୍ ମେଟାଡାଟାକୁ ପ୍ରକୃତ ମେଟାଡାଟା ଭାବରେ ସେଭ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି, ସେଗୁଡିକୁ ଚୟନ କରନ୍ତୁ", - - "supervisedWorkspace.search.results.head": "ପରିଦର୍ଶିତ ଆଇଟମ୍ ଗୁଡିକ", - - "workspace.search.results.head": "ଆପଣଙ୍କର ସବମିସନ୍ ଗୁଡିକ", - - "workflowAdmin.search.results.head": "ୱର୍କଫ୍ଲୋ ପରିଚାଳନା କରନ୍ତୁ", - - "workflow.search.results.head": "ୱର୍କଫ୍ଲୋ କାର୍ଯ୍ୟଗୁଡିକ", - - "supervision.search.results.head": "ୱର୍କଫ୍ଲୋ ଏବଂ ୱର୍କସ୍ପେସ୍ କାର୍ଯ୍ୟଗୁଡିକ", - - "workflow-item.edit.breadcrumbs": "ୱର୍କଫ୍ଲୋଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - - "workflow-item.edit.title": "ୱର୍କଫ୍ଲୋଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", - - "workflow-item.delete.notification.success.title": "ଡିଲିଟ୍ ହୋଇଛି", - - "workflow-item.delete.notification.success.content": "ଏହି ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", - - "workflow-item.delete.notification.error.title": "କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "workflow-item.delete.notification.error.content": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ଡିଲିଟ୍ ହୋଇପାରିବ ନାହିଁ", - - "workflow-item.delete.title": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ଡିଲିଟ୍ କରନ୍ତୁ", - - "workflow-item.delete.header": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ଡିଲିଟ୍ କରନ୍ତୁ", - - "workflow-item.delete.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "workflow-item.delete.button.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", - - "workflow-item.send-back.notification.success.title": "ସବମିଟର୍ ପାଖକୁ ପଠାଯାଇଛି", - - "workflow-item.send-back.notification.success.content": "ଏହି ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ସଫଳତାର ସହିତ ସବମିଟର୍ ପାଖକୁ ପଠାଯାଇଛି", - - "workflow-item.send-back.notification.error.title": "କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "workflow-item.send-back.notification.error.content": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ସବମିଟର୍ ପାଖକୁ ପଠାଯାଇପାରିବ ନାହିଁ", - - "workflow-item.send-back.title": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ସବମିଟର୍ ପାଖକୁ ପଠାନ୍ତୁ", - - "workflow-item.send-back.header": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ସବମିଟର୍ ପାଖକୁ ପଠାନ୍ତୁ", - - "workflow-item.send-back.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "workflow-item.send-back.button.confirm": "ପଠାନ୍ତୁ", - - "workflow-item.view.breadcrumbs": "ୱର୍କଫ୍ଲୋ ଦୃଶ୍ୟ", - - "workspace-item.view.breadcrumbs": "ୱର୍କସ୍ପେସ୍ ଦୃଶ୍ୟ", - - "workspace-item.view.title": "ୱର୍କସ୍ପେସ୍ ଦୃଶ୍ୟ", - - "workspace-item.delete.breadcrumbs": "ୱର୍କସ୍ପେସ୍ ଡିଲିଟ୍ କରନ୍ତୁ", - - "workspace-item.delete.header": "ୱର୍କସ୍ପେସ୍ ଆଇଟମ୍ ଡିଲିଟ୍ କରନ୍ତୁ", - - "workspace-item.delete.button.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", - - "workspace-item.delete.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "workspace-item.delete.notification.success.title": "ଡିଲିଟ୍ ହୋଇଛି", - - "workspace-item.delete.title": "ଏହି ୱର୍କସ୍ପେସ୍ ଆଇଟମ୍ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", - - "workspace-item.delete.notification.error.title": "କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "workspace-item.delete.notification.error.content": "ୱର୍କସ୍ପେସ୍ ଆଇଟମ୍ ଡିଲିଟ୍ ହୋଇପାରିବ ନାହିଁ", - - "workflow-item.advanced.title": "ଆଡଭାନ୍ସଡ୍ ୱର୍କଫ୍ଲୋ", - - "workflow-item.selectrevieweraction.notification.success.title": "ରିଭ୍ୟୁୟର୍ ଚୟନ କରାଯାଇଛି", - - "workflow-item.selectrevieweraction.notification.success.content": "ଏହି ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ପାଇଁ ରିଭ୍ୟୁୟର୍ ସଫଳତାର ସହିତ ଚୟନ କରାଯାଇଛି", - - "workflow-item.selectrevieweraction.notification.error.title": "କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "workflow-item.selectrevieweraction.notification.error.content": "ଏହି ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ପାଇଁ ରିଭ୍ୟୁୟର୍ ଚୟନ କରାଯାଇପାରିବ ନାହିଁ", - - "workflow-item.selectrevieweraction.title": "ରିଭ୍ୟୁୟର୍ ଚୟନ କରନ୍ତୁ", - - "workflow-item.selectrevieweraction.header": "ରିଭ୍ୟୁୟର୍ ଚୟନ କରନ୍ତୁ", - - "workflow-item.selectrevieweraction.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "workflow-item.selectrevieweraction.button.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", - - "workflow-item.scorereviewaction.notification.success.title": "ରେଟିଂ ରିଭ୍ୟୁ", - - "workflow-item.scorereviewaction.notification.success.content": "ଏହି ଆଇଟମ୍ ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ପାଇଁ ରେଟିଂ ସଫଳତାର ସହିତ ସବମିଟ୍ ହୋଇଛି", - - "workflow-item.scorereviewaction.notification.error.title": "କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "workflow-item.scorereviewaction.notification.error.content": "ଏହି ଆଇଟମ୍ ରେଟ୍ କରାଯାଇପାରିବ ନାହିଁ", - - "workflow-item.scorereviewaction.title": "ଏହି ଆଇଟମ୍ ରେଟ୍ କରନ୍ତୁ", - - "workflow-item.scorereviewaction.header": "ଏହି ଆଇଟମ୍ ରେଟ୍ କରନ୍ତୁ", - - "workflow-item.scorereviewaction.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "workflow-item.scorereviewaction.button.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", - - "idle-modal.header": "ସେସନ୍ ଶୀଘ୍ର ମିଆଦ୍ ଅତିକ୍ରମ କରିବ", - - "idle-modal.info": "ସୁରକ୍ଷା କାରଣରୁ, ଉପଯୋଗକର୍ତ୍ତା ସେସନ୍ ଗୁଡିକ {{ timeToExpire }} ମିନିଟ୍ ନିଷ୍କ୍ରିୟତା ପରେ ମିଆଦ୍ ଅତିକ୍ରମ କରିଥାଏ। ଆପଣଙ୍କର ସେସନ୍ ଶୀଘ୍ର ମିଆଦ୍ ଅତିକ୍ରମ କରିବ। ଆପଣ ଏହାକୁ ବୃଦ୍ଧି କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ଲଗ୍ ଆଉଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", - - "idle-modal.log-out": "ଲଗ୍ ଆଉଟ୍ କରନ୍ତୁ", - - "idle-modal.extend-session": "ସେସନ୍ ବୃଦ୍ଧି କରନ୍ତୁ", - - "researcher.profile.action.processing": "ପ୍ରକ୍ରିୟାକରଣ ଚାଲିଛି...", - - "researcher.profile.associated": "ଗବେଷକ ପ୍ରୋଫାଇଲ୍ ସଂଯୁକ୍ତ ହୋଇଛି", - - "researcher.profile.change-visibility.fail": "ପ୍ରୋଫାଇଲ୍ ଦୃଶ୍ୟମାନତା ପରିବର୍ତ୍ତନ କରିବା ସମୟରେ ଏକ ଅପ୍ରତ୍ୟାଶିତ ତ୍ରୁଟି ଘଟିଛି", - - "researcher.profile.create.new": "ନୂତନ ସୃଷ୍ଟି କରନ୍ତୁ", - - "researcher.profile.create.success": "ଗବେଷକ ପ୍ରୋଫାଇଲ୍ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", - - "researcher.profile.create.fail": "ଗବେଷକ ପ୍ରୋଫାଇଲ୍ ସୃଷ୍ଟି କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - - "researcher.profile.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", - - "researcher.profile.expose": "ପ୍ରଦର୍ଶନ କରନ୍ତୁ", - - "researcher.profile.hide": "ଲୁଚାନ୍ତୁ", - - "researcher.profile.not.associated": "ଗବେଷକ ପ୍ରୋଫାଇଲ୍ ଏପର୍ଯ୍ୟନ୍ତ ସଂଯୁକ୍ତ ହୋଇନାହିଁ", - - "researcher.profile.view": "ଦେଖନ୍ତୁ", - - "researcher.profile.private.visibility": "ପ୍ରାଇଭେଟ୍", - - "researcher.profile.public.visibility": "ପବ୍ଲିକ୍", - - "researcher.profile.status": "ସ୍ଥିତି:", - - "researcherprofile.claim.not-authorized": "ଆପଣ ଏହି ଆଇଟମ୍ ଦାବି କରିବା ପାଇଁ ଅଧିକୃତ ନୁହଁନ୍ତି। ଅଧିକ ବିବରଣୀ ପାଇଁ ପ୍ରଶାସକ(ମାନେ)ଙ୍କ ସହିତ ଯୋଗାଯୋଗ କରନ୍ତୁ।", - - "researcherprofile.error.claim.body": "ପ୍ରୋଫାଇଲ୍ ଦାବି କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି, ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ", - - "researcherprofile.error.claim.title": "ତ୍ରୁଟି", - - "researcherprofile.success.claim.body": "ପ୍ରୋଫାଇଲ୍ ସଫଳତାର ସହିତ ଦାବି କରାଯାଇଛି", - - "researcherprofile.success.claim.title": "ସଫଳତା", - - "person.page.orcid.create": "ଏକ ORCID ID ସୃଷ୍ଟି କରନ୍ତୁ", - - "person.page.orcid.granted-authorizations": "ପ୍ରଦାନ କରାଯାଇଥିବା ଅନୁମତି ଗୁଡିକ", - - "person.page.orcid.grant-authorizations": "ଅନୁମତି ପ୍ରଦାନ କରନ୍ତୁ", - - "person.page.orcid.link": "ORCID ID ସହିତ ସଂଯୋଗ କରନ୍ତୁ", - - "person.page.orcid.link.processing": "ORCID ସହିତ ପ୍ରୋଫାଇଲ୍ ଲିଙ୍କ୍ କରାଯାଉଛି...", - - "person.page.orcid.link.error.message": "ORCID ସହିତ ପ୍ରୋଫାଇଲ୍ ସଂଯୋଗ କରିବା ସମୟରେ କିଛି ତ୍ରୁଟି ଘଟିଛି। ଯଦି ସମସ୍ୟା ବଜାୟ ରହେ, ପ୍ରଶାସକଙ୍କ ସହିତ ଯୋଗାଯୋଗ କରନ୍ତୁ।", - - "person.page.orcid.orcid-not-linked-message": "ଏହି ପ୍ରୋଫାଇଲ୍ ({{ orcid }})ର ORCID iD ଏପର୍ଯ୍ୟନ୍ତ ORCID ରେଜିଷ୍ଟ୍ରିରେ ଏକ ଆକାଉଣ୍ଟ୍ ସହିତ ସଂଯୋଗ ହୋଇନାହିଁ କିମ୍ବା ସଂଯୋଗ ମିଆଦ୍ ଅତିକ୍ରମ କରିଛି।", - - "person.page.orcid.unlink": "ORCID ରୁ ଡିସ୍କନେକ୍ଟ୍ କରନ୍ତୁ", - - "person.page.orcid.unlink.processing": "ପ୍ରକ୍ରିୟାକରଣ ଚାଲିଛି...", - - "person.page.orcid.missing-authorizations": "ଅନୁମତି ଅନୁପସ୍ଥିତ", - - "person.page.orcid.missing-authorizations-message": "ନିମ୍ନଲିଖିତ ଅନୁମତି ଗୁଡିକ ଅନୁପସ୍ଥିତ:", - - "person.page.orcid.no-missing-authorizations-message": "ବହୁତ ଭଲ! ଏହି ବାକ୍ସଟି ଖାଲି ଅଛି, ତେଣୁ ଆପଣ ଆପଣଙ୍କର ଅନୁଷ୍ଠାନ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଥିବା ସମସ୍ତ କାର୍ଯ୍ୟକ୍ଷମତା ବ୍ୟବହାର କରିବା ପାଇଁ ସମସ୍ତ ପ୍ରବେଶ ଅଧିକାର ପ୍ରାପ୍ତ କରିଛନ୍ତି।", - - "person.page.orcid.no-orcid-message": "ଏପର୍ଯ୍ୟନ୍ତ କୌଣସି ORCID iD ସଂଯୁକ୍ତ ହୋଇନାହିଁ। ନିମ୍ନରେ ଥିବା ବଟନ୍ ଉପରେ କ୍ଲିକ୍ କରି ଏହି ପ୍ରୋଫାଇଲ୍ କୁ ଏକ ORCID ଆକାଉଣ୍ଟ୍ ସହିତ ଲିଙ୍କ୍ କରିବା ସମ୍ଭବ।", - - "person.page.orcid.profile-preferences": "ପ୍ରୋଫାଇଲ୍ ପସନ୍ଦଗୁଡିକ", - - "person.page.orcid.funding-preferences": "ଫଣ୍ଡିଂ ପସନ୍ଦଗୁଡିକ", - - "person.page.orcid.publications-preferences": "ପ୍ରକାଶନ ପସନ୍ଦଗୁଡିକ", - - "person.page.orcid.remove-orcid-message": "ଯଦି ଆପଣଙ୍କୁ ଆପଣଙ୍କର ORCID ଅପସାରଣ କରିବା ଆବଶ୍ୟକ, ଦୟାକରି ରିପୋଜିଟରି ପ୍ରଶାସକଙ୍କ ସହିତ ଯୋଗାଯୋଗ କରନ୍ତୁ", - - "person.page.orcid.save.preference.changes": "ସେଟିଂସ୍ ଅପଡେଟ୍ କରନ୍ତୁ", - - "person.page.orcid.sync-profile.affiliation": "ଅନୁବନ୍ଧନ", - - "person.page.orcid.sync-profile.biographical": "ଜୀବନୀ ତଥ୍ୟ", - - "person.page.orcid.sync-profile.education": "ଶିକ୍ଷା", - - "person.page.orcid.sync-profile.identifiers": "ଆଇଡେଣ୍ଟିଫାୟର୍ ଗୁଡିକ", - - "person.page.orcid.sync-fundings.all": "ସମସ୍ତ ଫଣ୍ଡିଂଗୁଡିକ", - - "person.page.orcid.sync-fundings.mine": "ମୋର ଫଣ୍ଡିଂଗୁଡିକ", - - "person.page.orcid.sync-fundings.my_selected": "ଚୟନିତ ଫଣ୍ଡିଂଗୁଡିକ", - - "person.page.orcid.sync-fundings.disabled": "ଅକ୍ଷମ କରାଯାଇଛି", - - "person.page.orcid.sync-publications.all": "ସମସ୍ତ ପ୍ରକାଶନଗୁଡିକ", - - "person.page.orcid.sync-publications.mine": "ମୋର ପ୍ରକାଶନଗୁଡିକ", - - "person.page.orcid.sync-publications.my_selected": "ଚୟନିତ ପ୍ରକାଶନଗୁଡିକ", - - "person.page.orcid.sync-publications.disabled": "ଅକ୍ଷମ କରାଯାଇଛି", - - "person.page.orcid.sync-queue.discard": "ପରିବର୍ତ୍ତନକୁ ପରିତ୍ୟାଗ କରନ୍ତୁ ଏବଂ ORCID ରେଜିଷ୍ଟ୍ରି ସହିତ ସିଙ୍କ୍ରୋନାଇଜ୍ କରନ୍ତୁ ନାହିଁ", - - "person.page.orcid.sync-queue.discard.error": "ORCID କ୍ୟୁ ରେକର୍ଡ୍ ପରିତ୍ୟାଗ କରିବାରେ ବିଫଳ ହୋଇଛି", - - "person.page.orcid.sync-queue.discard.success": "ORCID କ୍ୟୁ ରେକର୍ଡ୍ ସଫଳତାର ସହିତ ପରିତ୍ୟାଗ କରାଯାଇଛି", - - "person.page.orcid.sync-queue.empty-message": "ORCID କ୍ୟୁ ରେଜିଷ୍ଟ୍ରି ଖାଲି ଅଛି", - - "person.page.orcid.sync-queue.table.header.type": "ପ୍ରକାର", - - "person.page.orcid.sync-queue.table.header.description": "ବର୍ଣ୍ଣନା", - - "person.page.orcid.sync-queue.table.header.action": "କାର୍ଯ୍ୟ", - - "person.page.orcid.sync-queue.description.affiliation": "ଅନୁବନ୍ଧନଗୁଡିକ", - - "person.page.orcid.sync-queue.description.country": "ଦେଶ", - - "person.page.orcid.sync-queue.description.education": "ଶିକ୍ଷାଗୁଡିକ", - - "person.page.orcid.sync-queue.description.external_ids": "ବାହ୍ୟ ଆଇଡି ଗୁଡିକ", - - "person.page.orcid.sync-queue.description.other_names": "ଅନ୍ୟ ନାମଗୁଡିକ", - - "person.page.orcid.sync-queue.description.qualification": "ଯୋଗ୍ୟତାଗୁଡିକ", - - "person.page.orcid.sync-queue.description.researcher_urls": "ଗବେଷକ URL ଗୁଡିକ", - - "person.page.orcid.sync-queue.description.keywords": "କିୱାର୍ଡଗୁଡିକ", - - "person.page.orcid.sync-queue.tooltip.insert": "ORCID ରେଜିଷ୍ଟ୍ରିରେ ଏକ ନୂତନ ଏଣ୍ଟ୍ରି ଯୋଡନ୍ତୁ", - - "person.page.orcid.sync-queue.tooltip.update": "ORCID ରେଜିଷ୍ଟ୍ରିରେ ଏହି ଏଣ୍ଟ୍ରି ଅପଡେଟ୍ କରନ୍ତୁ", - - "person.page.orcid.sync-queue.tooltip.delete": "ORCID ରେଜିଷ୍ଟ୍ରିରୁ ଏହି ଏଣ୍ଟ୍ରି ଅପସାରଣ କରନ୍ତୁ", - - "person.page.orcid.sync-queue.tooltip.publication": "ପ୍ରକାଶନ", - - "person.page.orcid.sync-queue.tooltip.project": "ପ୍ରୋଜେକ୍ଟ୍", - - "person.page.orcid.sync-queue.tooltip.affiliation": "ଅନୁବନ୍ଧନ", - - "person.page.orcid.sync-queue.tooltip.education": "ଶିକ୍ଷା", - - "person.page.orcid.sync-queue.tooltip.qualification": "ଯୋଗ୍ୟତା", - - "person.page.orcid.sync-queue.tooltip.other_names": "ଅନ୍ୟ ନାମ", - - "person.page.orcid.sync-queue.tooltip.country": "ଦେଶ", - - "person.page.orcid.sync-queue.tooltip.keywords": "କିୱାର୍ଡ୍", - - "person.page.orcid.sync-queue.tooltip.external_ids": "ବାହ୍ୟ ଆଇଡେଣ୍ଟିଫାୟର୍", - - "person.page.orcid.sync-queue.tooltip.researcher_urls": "ଗବେଷକ URL", - - "person.page.orcid.sync-queue.send": "ORCID ରେଜିଷ୍ଟ୍ରି ସହିତ ସିଙ୍କ୍ରୋନାଇଜ୍ କରନ୍ତୁ", - - "person.page.orcid.sync-queue.send.unauthorized-error.title": "ORCID କୁ ପ୍ରେରଣ ବିଫଳ ହେଲା ଅନୁମୋଦନ ନଥିବାରୁ।", - - "person.page.orcid.sync-queue.send.unauthorized-error.content": "ଆବଶ୍ୟକ ଅନୁମତିଗୁଡିକୁ ପୁନର୍ବାର ଦେବା ପାଇଁ ଏଠି କ୍ଲିକ୍ କରନ୍ତୁ। ଯଦି ସମସ୍ୟା ବଜାୟ ରହିଥାଏ, ପ୍ରଶାସକଙ୍କୁ ଯୋଗାଯୋଗ କରନ୍ତୁ", - - "person.page.orcid.sync-queue.send.bad-request-error": "ORCID କୁ ପ୍ରେରଣ ବିଫଳ ହେଲା କାରଣ ORCID ରେଜିଷ୍ଟ୍ରି ପାଇଁ ପ୍ରେରିତ ସମ୍ବଳ ବୈଧ ନୁହେଁ", - - "person.page.orcid.sync-queue.send.error": "ORCID କୁ ପ୍ରେରଣ ବିଫଳ ହେଲା", - - "person.page.orcid.sync-queue.send.conflict-error": "ORCID କୁ ପ୍ରେରଣ ବିଫଳ ହେଲା କାରଣ ସମ୍ବଳ ପୂର୍ବରୁ ORCID ରେଜିଷ୍ଟ୍ରିରେ ଉପସ୍ଥିତ ଅଛି", - - "person.page.orcid.sync-queue.send.not-found-warning": "ସମ୍ବଳ ବର୍ତ୍ତମାନ ORCID ରେଜିଷ୍ଟ୍ରିରେ ଉପସ୍ଥିତ ନାହିଁ।", - - "person.page.orcid.sync-queue.send.success": "ORCID କୁ ପ୍ରେରଣ ସଫଳତାର ସହିତ ସମାପ୍ତ ହେଲା", - - "person.page.orcid.sync-queue.send.validation-error": "ଆପଣ ORCID ସହିତ ସିଙ୍କ୍ରୋନାଇଜ୍ କରିବାକୁ ଚାହୁଁଥିବା ତଥ୍ୟ ବୈଧ ନୁହେଁ", - - "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "ପରିମାଣର ମୁଦ୍ରା ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.external-id.required": "ପ୍ରେରଣ କରାଯାଇଥିବା ସମ୍ବଳ ପାଇଁ ଅତିକମରେ ଗୋଟିଏ ପରିଚୟକାରୀ ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.title.required": "ଶୀର୍ଷକ ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.start-date.required": "ଆରମ୍ଭ ତାରିଖ ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.funder.required": "ଅର୍ଥଦାତା ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.country.invalid": "ଅବୈଧ 2 ଅଙ୍କ ISO 3166 ଦେଶ", - - "person.page.orcid.sync-queue.send.validation-error.organization.required": "ସଂଗଠନ ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "ସଂଗଠନର ନାମ ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "ପ୍ରକାଶନ ତାରିଖ 1900 ପରବର୍ତ୍ତୀ ଗୋଟିଏ ବର୍ଷ ହେବା ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "ପ୍ରେରଣ କରାଯାଇଥିବା ସଂଗଠନ ପାଇଁ ଗୋଟିଏ ଠିକଣା ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "ପ୍ରେରଣ କରାଯାଇଥିବା ସଂଗଠନର ଠିକଣା ପାଇଁ ଗୋଟିଏ ସହର ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "ପ୍ରେରଣ କରାଯାଇଥିବା ସଂଗଠନର ଠିକଣା ପାଇଁ ଗୋଟିଏ ବୈଧ 2 ଅଙ୍କ ISO 3166 ଦେଶ ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "ସଂଗଠନଗୁଡିକୁ ପୃଥକ କରିବା ପାଇଁ ଗୋଟିଏ ପରିଚୟକାରୀ ଆବଶ୍ୟକ। ସମର୍ଥିତ ଆଇଡି ହେଉଛି GRID, Ringgold, Legal Entity identifiers (LEIs) ଏବଂ Crossref Funder Registry identifiers", - - "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "ସଂଗଠନର ପରିଚୟକାରୀଗୁଡିକ ପାଇଁ ଗୋଟିଏ ମୂଲ୍ୟ ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "ସଂଗଠନର ପରିଚୟକାରୀଗୁଡିକ ପାଇଁ ଗୋଟିଏ ଉତ୍ସ ଆବଶ୍ୟକ", - - "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "ସଂଗଠନର ଗୋଟିଏ ପରିଚୟକାରୀର ଉତ୍ସ ଅବୈଧ। ସମର୍ଥିତ ଉତ୍ସଗୁଡିକ ହେଉଛି RINGGOLD, GRID, LEI ଏବଂ FUNDREF", - - "person.page.orcid.synchronization-mode": "ସିଙ୍କ୍ରୋନାଇଜେସନ୍ ମୋଡ୍", - - "person.page.orcid.synchronization-mode.batch": "ବ୍ୟାଚ୍", - - "person.page.orcid.synchronization-mode.label": "ସିଙ୍କ୍ରୋନାଇଜେସନ୍ ମୋଡ୍", - - "person.page.orcid.synchronization-mode-message": "ଦୟାକରି ମନୋନୟନ କରନ୍ତୁ ଯେ ଆପଣ ORCID ସହିତ ସିଙ୍କ୍ରୋନାଇଜେସନ୍ କିପରି ଘଟିବା ଚାହୁଁଛନ୍ତି। ବିକଳ୍ପଗୁଡିକରେ \"ମ୍ୟାନୁଆଲ୍\" (ଆପଣଙ୍କୁ ନିଜ ତଥ୍ୟ ORCID କୁ ମାନୁଆଲି ପ୍ରେରଣ କରିବାକୁ ହେବ) କିମ୍ବା \"ବ୍ୟାଚ୍\" (ସିଷ୍ଟମ୍ ଏକ ନିର୍ଦ୍ଧାରିତ ସ୍କ୍ରିପ୍ଟ୍ ମାଧ୍ୟମରେ ଆପଣଙ୍କ ତଥ୍ୟ ORCID କୁ ପ୍ରେରଣ କରିବ) ଅନ୍ତର୍ଭୁକ୍ତ ଅଛି।", - - "person.page.orcid.synchronization-mode-funding-message": "ଆପଣଙ୍କର ଲିଙ୍କ୍ ହୋଇଥିବା ପ୍ରୋଜେକ୍ଟ ଏଣ୍ଟିଟିଗୁଡିକୁ ଆପଣଙ୍କ ORCID ରେକର୍ଡର ଫଣ୍ଡିଂ ସୂଚନାର ତାଲିକାକୁ ପ୍ରେରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ନାହିଁ ମନୋନୟନ କରନ୍ତୁ।", - - "person.page.orcid.synchronization-mode-publication-message": "ଆପଣଙ୍କର ଲିଙ୍କ୍ ହୋଇଥିବା ପ୍ରକାଶନ ଏଣ୍ଟିଟିଗୁଡିକୁ ଆପଣଙ୍କ ORCID ରେକର୍ଡର କାର୍ଯ୍ୟଗୁଡିକର ତାଲିକାକୁ ପ୍ରେରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ନାହିଁ ମନୋନୟନ କରନ୍ତୁ।", - - "person.page.orcid.synchronization-mode-profile-message": "ଆପଣଙ୍କ ଜୀବନୀ ତଥ୍ୟ କିମ୍ବା ବ୍ୟକ୍ତିଗତ ପରିଚୟକାରୀଗୁଡିକୁ ଆପଣଙ୍କ ORCID ରେକର୍ଡକୁ ପ୍ରେରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ନାହିଁ ମନୋନୟନ କରନ୍ତୁ।", - - "person.page.orcid.synchronization-settings-update.success": "ସିଙ୍କ୍ରୋନାଇଜେସନ୍ ସେଟିଂସ୍ ସଫଳତାର ସହିତ ଅପଡେଟ୍ ହୋଇଛି", - - "person.page.orcid.synchronization-settings-update.error": "ସିଙ୍କ୍ରୋନାଇଜେସନ୍ ସେଟିଂସ୍ ଅପଡେଟ୍ ବିଫଳ ହେଲା", - - "person.page.orcid.synchronization-mode.manual": "ମ୍ୟାନୁଆଲ୍", - - "person.page.orcid.scope.authenticate": "ଆପଣଙ୍କର ORCID iD ପ୍ରାପ୍ତ କରନ୍ତୁ", - - "person.page.orcid.scope.read-limited": "ବିଶ୍ୱସ୍ତ ପକ୍ଷଗୁଡିକ ପାଇଁ ଦୃଶ୍ୟମାନ ଥିବା ଆପଣଙ୍କ ସୂଚନାକୁ ପଢନ୍ତୁ", - - "person.page.orcid.scope.activities-update": "ଆପଣଙ୍କର ଗବେଷଣା କାର୍ଯ୍ୟକଳାପଗୁଡିକୁ ଯୋଡନ୍ତୁ/ଅପଡେଟ୍ କରନ୍ତୁ", - - "person.page.orcid.scope.person-update": "ଆପଣଙ୍କ ବିଷୟରେ ଅନ୍ୟ ସୂଚନା ଯୋଡନ୍ତୁ/ଅପଡେଟ୍ କରନ୍ତୁ", - - "person.page.orcid.unlink.success": "ପ୍ରୋଫାଇଲ୍ ଏବଂ ORCID ରେଜିଷ୍ଟ୍ରି ମଧ୍ୟରେ ସଂଯୋଗ ବିଚ୍ଛିନ୍ନ ସଫଳତାର ସହିତ ହୋଇଛି", - - "person.page.orcid.unlink.error": "ପ୍ରୋଫାଇଲ୍ ଏବଂ ORCID ରେଜିଷ୍ଟ୍ରି ମଧ୍ୟରେ ସଂଯୋଗ ବିଚ୍ଛିନ୍ନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି। ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ", - - "person.orcid.sync.setting": "ORCID ସିଙ୍କ୍ରୋନାଇଜେସନ୍ ସେଟିଂସ୍", - - "person.orcid.registry.queue": "ORCID ରେଜିଷ୍ଟ୍ରି କ୍ୟୁ", - - "person.orcid.registry.auth": "ORCID ଅନୁମୋଦନଗୁଡିକ", - - "person.orcid-tooltip.authenticated": "{{orcid}}", - - "person.orcid-tooltip.not-authenticated": "{{orcid}} (ଅସ୍ଥିର)", - - "home.recent-submissions.head": "ସାମ୍ପ୍ରତିକ ଦାଖଲଗୁଡିକ", - - "listable-notification-object.default-message": "ଏହି ବସ୍ତୁ ପ୍ରାପ୍ତ ହୋଇପାରିବ ନାହିଁ", - - "system-wide-alert-banner.retrieval.error": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ବ୍ୟାନର୍ ପ୍ରାପ୍ତ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "system-wide-alert-banner.countdown.prefix": "ମାତ୍ର", - - "system-wide-alert-banner.countdown.days": "{{days}} ଦିନ(ଗୁଡିକ),", - - "system-wide-alert-banner.countdown.hours": "{{hours}} ଘଣ୍ଟା(ଗୁଡିକ) ଏବଂ", - - "system-wide-alert-banner.countdown.minutes": "{{minutes}} ମିନିଟ୍(ଗୁଡିକ):", - - "menu.section.system-wide-alert": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ", - - "system-wide-alert.form.header": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ", - - "system-wide-alert-form.retrieval.error": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ପ୍ରାପ୍ତ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "system-wide-alert.form.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "system-wide-alert.form.save": "ସେଭ୍ କରନ୍ତୁ", - - "system-wide-alert.form.label.active": "ସକ୍ରିୟ", - - "system-wide-alert.form.label.inactive": "ନିଷ୍କ୍ରିୟ", - - "system-wide-alert.form.error.message": "ସିଷ୍ଟମ୍ ବ୍ୟାପୀ ଆଲର୍ଟ ପାଇଁ ଏକ ସନ୍ଦେଶ ରହିବା ଆବଶ୍ୟକ", - - "system-wide-alert.form.label.message": "ଆଲର୍ଟ ସନ୍ଦେଶ", - - "system-wide-alert.form.label.countdownTo.enable": "ଏକ କାଉଣ୍ଟଡାଉନ୍ ଟାଇମର୍ ସକ୍ଷମ କରନ୍ତୁ", - - "system-wide-alert.form.label.countdownTo.hint": "ସୂଚନା: ଏକ କାଉଣ୍ଟଡାଉନ୍ ଟାଇମର୍ ସେଟ୍ କରନ୍ତୁ। ସକ୍ଷମ ହୋଇଥିବା ବେଳେ, ଭବିଷ୍ୟତରେ ଏକ ତାରିଖ ସେଟ୍ କରାଯାଇପାରିବ ଏବଂ ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ବ୍ୟାନର୍ ସେଟ୍ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ କାଉଣ୍ଟଡାଉନ୍ କରିବ। ଯେତେବେଳେ ଏହି ଟାଇମର୍ ଶେଷ ହେବ, ଏହା ଆଲର୍ଟରୁ ଅଦୃଶ୍ୟ ହୋଇଯିବ। ସର୍ଭର୍ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ବନ୍ଦ ହେବ ନାହିଁ।", - - "system-wide-alert-form.select-date-by-calendar": "କ୍ୟାଲେଣ୍ଡର ବ୍ୟବହାର କରି ତାରିଖ ଚୟନ କରନ୍ତୁ", - - "system-wide-alert.form.label.preview": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ପ୍ରିଭ୍ୟୁ", - - "system-wide-alert.form.update.success": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ସଫଳତାର ସହିତ ଅପଡେଟ୍ ହୋଇଛି", - - "system-wide-alert.form.update.error": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ଅପଡେଟ୍ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "system-wide-alert.form.create.success": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", - - "system-wide-alert.form.create.error": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ସୃଷ୍ଟି କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "admin.system-wide-alert.breadcrumbs": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟଗୁଡିକ", - - "admin.system-wide-alert.title": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟଗୁଡିକ", - - "discover.filters.head": "ଆବିଷ୍କାର କରନ୍ତୁ", - - "item-access-control-title": "ଏହି ଫର୍ମ ଆପଣଙ୍କୁ ଆଇଟମ୍ ମେଟାଡାଟା କିମ୍ବା ଏହାର ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକର ପ୍ରବେଶ ପରିସ୍ଥିତିରେ ପରିବର୍ତ୍ତନ କରିବାକୁ ଅନୁମତି ଦେଇଥାଏ।", - - "collection-access-control-title": "ଏହି ଫର୍ମ ଆପଣଙ୍କୁ ଏହି ସଂଗ୍ରହ ଦ୍ୱାରା ମାଲିକାନା କରାଯାଇଥିବା ସମସ୍ତ ଆଇଟମ୍ ପାଇଁ ପ୍ରବେଶ ପରିସ୍ଥିତିରେ ପରିବର୍ତ୍ତନ କରିବାକୁ ଅନୁମତି ଦେଇଥାଏ। ପରିବର୍ତ୍ତନଗୁଡିକ ସମସ୍ତ ଆଇଟମ୍ ମେଟାଡାଟା କିମ୍ବା ସମସ୍ତ ବିଷୟବସ୍ତୁ (ବିଟ୍ସ୍ଟ୍ରିମ୍) ପାଇଁ କରାଯାଇପାରିବ।", - - "community-access-control-title": "ଏହି ଫର୍ମ ଆପଣଙ୍କୁ ଏହି ସମ୍ପ୍ରଦାୟ ତଳେ ଥିବା କୌଣସି ସଂଗ୍ରହ ଦ୍ୱାରା ମାଲିକାନା କରାଯାଇଥିବା ସମସ୍ତ ଆଇଟମ୍ ପାଇଁ ପ୍ରବେଶ ପରିସ୍ଥିତିରେ ପରିବର୍ତ୍ତନ କରିବାକୁ ଅନୁମତି ଦେଇଥାଏ। ପରିବର୍ତ୍ତନଗୁଡିକ ସମସ୍ତ ଆଇଟମ୍ ମେଟାଡାଟା କିମ୍ବା ସମସ୍ତ ବିଷୟବସ୍ତୁ (ବିଟ୍ସ୍ଟ୍ରିମ୍) ପାଇଁ କରାଯାଇପାରିବ।", - - "access-control-item-header-toggle": "ଆଇଟମ୍ ମେଟାଡାଟା", - - "access-control-item-toggle.enable": "ଆଇଟମ୍ ମେଟାଡାଟାରେ ପରିବର୍ତ୍ତନ କରିବାର ବିକଳ୍ପ ସକ୍ଷମ କରନ୍ତୁ", - - "access-control-item-toggle.disable": "ଆଇଟମ୍ ମେଟାଡାଟାରେ ପରିବର୍ତ୍ତନ କରିବାର ବିକଳ୍ପ ଅକ୍ଷମ କରନ୍ତୁ", - - "access-control-bitstream-header-toggle": "ବିଟ୍ସ୍ଟ୍ରିମ୍", - - "access-control-bitstream-toggle.enable": "ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକରେ ପରିବର୍ତ୍ତନ କରିବାର ବିକଳ୍ପ ସକ୍ଷମ କରନ୍ତୁ", - - "access-control-bitstream-toggle.disable": "ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକରେ ପରିବର୍ତ୍ତନ କରିବାର ବିକଳ୍ପ ଅକ୍ଷମ କରନ୍ତୁ", - - "access-control-mode": "ମୋଡ୍", - - "access-control-access-conditions": "ପ୍ରବେଶ ପରିସ୍ଥିତି", - - "access-control-no-access-conditions-warning-message": "ବର୍ତ୍ତମାନ, ନିମ୍ନରେ କୌଣସି ପ୍ରବେଶ ପରିସ୍ଥିତି ଉଲ୍ଲେଖ କରାଯାଇନାହିଁ। ଯଦି ଏହା କାର୍ଯ୍ୟକାରୀ ହୁଏ, ଏହା ବର୍ତ୍ତମାନର ପ୍ରବେଶ ପରିସ୍ଥିତିଗୁଡିକୁ ସଂଗ୍ରହ ଦ୍ୱାରା ଅନୁବଂଶାନୁକ୍ରମେ ପ୍ରାପ୍ତ ଡିଫଲ୍ଟ ପ୍ରବେଶ ପରିସ୍ଥିତିଗୁଡିକ ସହିତ ପ୍ରତିସ୍ଥାପନ କରିବ।", - - "access-control-replace-all": "ପ୍ରବେଶ ପରିସ୍ଥିତିଗୁଡିକୁ ପ୍ରତିସ୍ଥାପନ କରନ୍ତୁ", - - "access-control-add-to-existing": "ବିଦ୍ୟମାନ ଗୁଡିକରେ ଯୋଡନ୍ତୁ", - - "access-control-limit-to-specific": "ପରିବର୍ତ୍ତନଗୁଡିକୁ ସ୍ଥିର ବିଟ୍ସ୍ଟ୍ରିମ୍ ପାଇଁ ସୀମିତ କରନ୍ତୁ", - - "access-control-process-all-bitstreams": "ଆଇଟମ୍ ର ସମସ୍ତ ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକୁ ଅପଡେଟ୍ କରନ୍ତୁ", - - "access-control-bitstreams-selected": "ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକ ଚୟନ କରାଯାଇଛି", - - "access-control-bitstreams-select": "ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକ ଚୟନ କରନ୍ତୁ", - - "access-control-cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "access-control-execute": "କାର୍ଯ୍ୟକାରୀ କରନ୍ତୁ", - - "access-control-add-more": "ଅଧିକ ଯୋଡନ୍ତୁ", - - "access-control-remove": "ପ୍ରବେଶ ପରିସ୍ଥିତି ଅପସାରଣ କରନ୍ତୁ", - - "access-control-select-bitstreams-modal.title": "ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକ ଚୟନ କରନ୍ତୁ", - - "access-control-select-bitstreams-modal.no-items": "ଦେଖାଇବାକୁ କୌଣସି ଆଇଟମ୍ ନାହିଁ।", - - "access-control-select-bitstreams-modal.close": "ବନ୍ଦ କରନ୍ତୁ", - - "access-control-option-label": "ପ୍ରବେଶ ପରିସ୍ଥିତି ପ୍ରକାର", - - "access-control-option-note": "ଚୟନିତ ବସ୍ତୁଗୁଡିକୁ ପ୍ରୟୋଗ କରିବାକୁ ଏକ ପ୍ରବେଶ ପରିସ୍ଥିତି ଚୟନ କରନ୍ତୁ।", - - "access-control-option-start-date": "ପ୍ରବେଶ ଦିଅନ୍ତୁ ଯେଉଁଠାରୁ", - - "access-control-option-start-date-note": "ଯେଉଁ ତାରିଖରୁ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ପରିସ୍ଥିତି ପ୍ରୟୋଗ କରାଯାଇଛି ତାହା ଚୟନ କରନ୍ତୁ", - - "access-control-option-end-date": "ପ୍ରବେଶ ଦିଅନ୍ତୁ ଯେପର୍ଯ୍ୟନ୍ତ", - - "access-control-option-end-date-note": "ଯେଉଁ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ପରିସ୍ଥିତି ପ୍ରୟୋଗ କରାଯାଇଛି ତାହା ଚୟନ କରନ୍ତୁ", - - "vocabulary-treeview.search.form.add": "ଯୋଡନ୍ତୁ", - - "admin.notifications.publicationclaim.breadcrumbs": "ପ୍ରକାଶନ ଦାବି", - - "admin.notifications.publicationclaim.page.title": "ପ୍ରକାଶନ ଦାବି", - - "coar-notify-support.title": "COAR ନୋଟିଫାଇ ପ୍ରୋଟୋକଲ୍", - - "coar-notify-support-title.content": "ଏଠାରେ, ଆମେ COAR ନୋଟିଫାଇ ପ୍ରୋଟୋକଲ୍ ପାଇଁ ସମ୍ପୂର୍ଣ୍ଣ ସମର୍ଥନ ପ୍ରଦାନ କରୁ, ଯାହା ରିପୋଜିଟରୀ ମଧ୍ୟରେ ସଂଚାରକୁ ଉନ୍ନତ କରିବା ପାଇଁ ଡିଜାଇନ୍ କରାଯାଇଛି। COAR ନୋଟିଫାଇ ପ୍ରୋଟୋକଲ୍ ବିଷୟରେ ଅଧିକ ଜାଣିବା ପାଇଁ, COAR ନୋଟିଫାଇ ୱେବସାଇଟ୍ ପରିଦର୍ଶନ କରନ୍ତୁ।", - - "coar-notify-support.ldn-inbox.title": "LDN ଇନବକ୍ସ", - - "coar-notify-support.ldn-inbox.content": "ଆପଣଙ୍କର ସୁବିଧା ପାଇଁ, ଆମର LDN (ଲିଙ୍କ୍ ଡାଟା ନୋଟିଫିକେସନ୍) ଇନବକ୍ସ {{ ldnInboxUrl }} ରେ ସହଜରେ ପ୍ରବେଶଯୋଗ୍ୟ। LDN ଇନବକ୍ସ ସୁଗମ ସଂଚାର ଏବଂ ତଥ୍ୟ ବିନିମୟକୁ ସକ୍ଷମ କରେ, ଯାହା କାର୍ଯ୍ୟକ୍ଷମ ଏବଂ ପ୍ରଭାବଶାଳୀ ସହଯୋଗକୁ ନିଶ୍ଚିତ କରେ।", - - "coar-notify-support.message-moderation.title": "ସନ୍ଦେଶ ମଡରେସନ୍", - - "coar-notify-support.message-moderation.content": "ଏକ ସୁରକ୍ଷିତ ଏବଂ ଉତ୍ପାଦନଶୀଳ ପରିବେଶ ନିଶ୍ଚିତ କରିବା ପାଇଁ, ସମସ୍ତ ଇନକମିଂ LDN ସନ୍ଦେଶଗୁଡିକ ମଡରେଟ୍ କରାଯାଇଥାଏ। ଯଦି ଆପଣ ଆମ ସହିତ ସୂଚନା ବିନିମୟ କରିବାକୁ ଯୋଜନା କରୁଛନ୍ତି, ଦୟାକରି ଆମର ସ୍ୱତନ୍ତ୍ର", - - "coar-notify-support.message-moderation.feedback-form": " ଫିଡବ୍ୟାକ୍ ଫର୍ମ ମାଧ୍ୟମରେ ଯୋଗାଯୋଗ କରନ୍ତୁ।", - - "service.overview.delete.header": "ସେବା ଡିଲିଟ୍ କରନ୍ତୁ", - - "ldn-registered-services.title": "ନିବନ୍ଧିତ ସେବାଗୁଡିକ", - "ldn-registered-services.table.name": "ନାମ", - - "ldn-registered-services.table.description": "ବର୍ଣ୍ଣନା", - "ldn-registered-services.table.status": "ସ୍ଥିତି", - "ldn-registered-services.table.action": "କାର୍ଯ୍ୟ", - "ldn-registered-services.new": "ନୂତନ", - "ldn-registered-services.new.breadcrumbs": "ପଞ୍ଜିକୃତ ସେବାଗୁଡ଼ିକ", - - "ldn-service.overview.table.enabled": "ସକ୍ରିୟ", - "ldn-service.overview.table.disabled": "ନିଷ୍କ୍ରିୟ", - "ldn-service.overview.table.clickToEnable": "ସକ୍ରିୟ କରିବା ପାଇଁ କ୍ଲିକ୍ କରନ୍ତୁ", - "ldn-service.overview.table.clickToDisable": "ନିଷ୍କ୍ରିୟ କରିବା ପାଇଁ କ୍ଲିକ୍ କରନ୍ତୁ", - - "ldn-edit-registered-service.title": "ସେବା ସମ୍ପାଦନ କରନ୍ତୁ", - "ldn-create-service.title": "ସେବା ସୃଷ୍ଟି କରନ୍ତୁ", - "service.overview.create.modal": "ସେବା ସୃଷ୍ଟି କରନ୍ତୁ", - "service.overview.create.body": "ଦୟାକରି ଏହି ସେବାର ସୃଷ୍ଟି ନିଶ୍ଚିତ କରନ୍ତୁ।", - "ldn-service-status": "ସ୍ଥିତି", - "service.confirm.create": "ସୃଷ୍ଟି କରନ୍ତୁ", - "service.refuse.create": "ବାତିଲ୍ କରନ୍ତୁ", - "ldn-register-new-service.title": "ଏକ ନୂତନ ସେବା ପଞ୍ଜିକରଣ କରନ୍ତୁ", - "ldn-new-service.form.label.submit": "ସଂରକ୍ଷଣ କରନ୍ତୁ", - "ldn-new-service.form.label.name": "ନାମ", - "ldn-new-service.form.label.description": "ବର୍ଣ୍ଣନା", - "ldn-new-service.form.label.url": "ସେବା URL", - "ldn-new-service.form.label.ip-range": "ସେବା IP ପରିସର", - "ldn-new-service.form.label.score": "ବିଶ୍ୱାସର ସ୍ତର", - "ldn-new-service.form.label.ldnUrl": "LDN ଇନବକ୍ସ URL", - "ldn-new-service.form.placeholder.name": "ଦୟାକରି ସେବାର ନାମ ପ୍ରଦାନ କରନ୍ତୁ", - - "ldn-new-service.form.placeholder.description": "ଦୟାକରି ଆପଣଙ୍କ ସେବା ସମ୍ବନ୍ଧୀୟ ଏକ ବର୍ଣ୍ଣନା ପ୍ରଦାନ କରନ୍ତୁ", - "ldn-new-service.form.placeholder.url": "ଦୟାକରି ସେବା ସମ୍ବନ୍ଧୀୟ ଅଧିକ ସୂଚନା ପାଇଁ URL ଇନପୁଟ୍ କରନ୍ତୁ", - "ldn-new-service.form.placeholder.lowerIp": "IPv4 ରେଞ୍ଜର ନିମ୍ନ ସୀମା", - "ldn-new-service.form.placeholder.upperIp": "IPv4 ରେଞ୍ଜର ଉଚ୍ଚ ସୀମା", - "ldn-new-service.form.placeholder.ldnUrl": "ଦୟାକରି LDN ଇନବକ୍ସର URL ନିର୍ଦ୍ଦିଷ୍ଟ କରନ୍ତୁ", - "ldn-new-service.form.placeholder.score": "ଦୟାକରି 0 ରୁ 1 ମଧ୍ୟରେ ଏକ ମୂଲ୍ୟ ପ୍ରବେଶ କରନ୍ତୁ। ଦଶମିକ ସେପାରେଟର ଭାବରେ “.” ବ୍ୟବହାର କରନ୍ତୁ", - "ldn-service.form.label.placeholder.default-select": "ଏକ ପ୍ୟାଟର୍ନ ଚୟନ କରନ୍ତୁ", - - "ldn-service.form.pattern.ack-accept.label": "ସ୍ୱୀକାର ଏବଂ ଗ୍ରହଣ କରନ୍ତୁ", - "ldn-service.form.pattern.ack-accept.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ଅନୁରୋଧ (ଅଫର୍)କୁ ସ୍ୱୀକାର ଏବଂ ଗ୍ରହଣ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ। ଏହା ଅନୁରୋଧ ଉପରେ କାର୍ଯ୍ୟ କରିବାର ଇଚ୍ଛାକୁ ସୂଚିତ କରେ।", - "ldn-service.form.pattern.ack-accept.category": "ସ୍ୱୀକୃତି", - - "ldn-service.form.pattern.ack-reject.label": "ସ୍ୱୀକାର ଏବଂ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", - "ldn-service.form.pattern.ack-reject.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ଅନୁରୋଧ (ଅଫର୍)କୁ ସ୍ୱୀକାର ଏବଂ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ। ଏହା ଅନୁରୋଧ ସମ୍ବନ୍ଧୀୟ କୌଣସି ଅତିରିକ୍ତ କାର୍ଯ୍ୟକୁ ସୂଚିତ କରେ ନାହିଁ।", - "ldn-service.form.pattern.ack-reject.category": "ସ୍ୱୀକୃତି", - - "ldn-service.form.pattern.ack-tentative-accept.label": "ସ୍ୱୀକାର ଏବଂ ଅନିଶ୍ଚିତ ଭାବରେ ଗ୍ରହଣ କରନ୍ତୁ", - "ldn-service.form.pattern.ack-tentative-accept.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ଅନୁରୋଧ (ଅଫର୍)କୁ ସ୍ୱୀକାର ଏବଂ ଅନିଶ୍ଚିତ ଭାବରେ ଗ୍ରହଣ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ। ଏହା କାର୍ଯ୍ୟ କରିବାର ଇଚ୍ଛାକୁ ସୂଚିତ କରେ, ଯାହା ପରିବର୍ତ୍ତନ ହୋଇପାରେ।", - "ldn-service.form.pattern.ack-tentative-accept.category": "ସ୍ୱୀକୃତି", - - "ldn-service.form.pattern.ack-tentative-reject.label": "ସ୍ୱୀକାର ଏବଂ ଅନିଶ୍ଚିତ ଭାବରେ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", - "ldn-service.form.pattern.ack-tentative-reject.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ଅନୁରୋଧ (ଅଫର୍)କୁ ସ୍ୱୀକାର ଏବଂ ଅନିଶ୍ଚିତ ଭାବରେ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ। ଏହା ପରିବର୍ତ୍ତନ ବିଷୟରେ କୌଣସି ଅତିରିକ୍ତ କାର୍ଯ୍ୟକୁ ସୂଚିତ କରେ ନାହିଁ।", - "ldn-service.form.pattern.ack-tentative-reject.category": "ସ୍ୱୀକୃତି", - - "ldn-service.form.pattern.announce-endorsement.label": "ସମର୍ଥନ ଘୋଷଣା କରନ୍ତୁ", - "ldn-service.form.pattern.announce-endorsement.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ସମର୍ଥନର ଅସ୍ତିତ୍ୱ ଘୋଷଣା କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ, ଯାହା ସମର୍ଥିତ ସମ୍ବଳକୁ ସନ୍ଦର୍ଭିତ କରେ।", - "ldn-service.form.pattern.announce-endorsement.category": "ଘୋଷଣା", - - "ldn-service.form.pattern.announce-ingest.label": "ଇନଜେଷ୍ଟ ଘୋଷଣା କରନ୍ତୁ", - "ldn-service.form.pattern.announce-ingest.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ସମ୍ବଳ ଇନଜେଷ୍ଟ ହୋଇଛି ବୋଲି ଘୋଷଣା କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", - "ldn-service.form.pattern.announce-ingest.category": "ଘୋଷଣା", - - "ldn-service.form.pattern.announce-relationship.label": "ସମ୍ପର୍କ ଘୋଷଣା କରନ୍ତୁ", - "ldn-service.form.pattern.announce-relationship.description": "ଏହି ପ୍ୟାଟର୍ନ ଦୁଇଟି ସମ୍ବଳ ମଧ୍ୟରେ ଏକ ସମ୍ପର୍କ ଘୋଷଣା କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", - "ldn-service.form.pattern.announce-relationship.category": "ଘୋଷଣା", - - "ldn-service.form.pattern.announce-review.label": "ସମୀକ୍ଷା ଘୋଷଣା କରନ୍ତୁ", - "ldn-service.form.pattern.announce-review.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ସମୀକ୍ଷାର ଅସ୍ତିତ୍ୱ ଘୋଷଣା କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ, ଯାହା ସମୀକ୍ଷିତ ସମ୍ବଳକୁ ସନ୍ଦର୍ଭିତ କରେ।", - "ldn-service.form.pattern.announce-review.category": "ଘୋଷଣା", - - "ldn-service.form.pattern.announce-service-result.label": "ସେବା ଫଳାଫଳ ଘୋଷଣା କରନ୍ତୁ", - "ldn-service.form.pattern.announce-service-result.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ 'ସେବା ଫଳାଫଳ'ର ଅସ୍ତିତ୍ୱ ଘୋଷଣା କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ, ଯାହା ସମ୍ବନ୍ଧିତ ସମ୍ବଳକୁ ସନ୍ଦର୍ଭିତ କରେ।", - "ldn-service.form.pattern.announce-service-result.category": "ଘୋଷଣା", - - "ldn-service.form.pattern.request-endorsement.label": "ସମର୍ଥନ ଅନୁରୋଧ କରନ୍ତୁ", - "ldn-service.form.pattern.request-endorsement.description": "ଏହି ପ୍ୟାଟର୍ନ ଉତ୍ପତ୍ତି ସିଷ୍ଟମ ଦ୍ୱାରା ମାଲିକାନା କରାଯାଇଥିବା ଏକ ସମ୍ବଳର ସମର୍ଥନ ଅନୁରୋଧ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", - "ldn-service.form.pattern.request-endorsement.category": "ଅନୁରୋଧ", - - "ldn-service.form.pattern.request-ingest.label": "ଇନଜେଷ୍ଟ ଅନୁରୋଧ କରନ୍ତୁ", - "ldn-service.form.pattern.request-ingest.description": "ଏହି ପ୍ୟାଟର୍ନ ଲକ୍ଷ୍ୟ ସିଷ୍ଟମ ଏକ ସମ୍ବଳ ଇନଜେଷ୍ଟ କରିବା ପାଇଁ ଅନୁରୋଧ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", - "ldn-service.form.pattern.request-ingest.category": "ଅନୁରୋଧ", - - "ldn-service.form.pattern.request-review.label": "ସମୀକ୍ଷା ଅନୁରୋଧ କରନ୍ତୁ", - "ldn-service.form.pattern.request-review.description": "ଏହି ପ୍ୟାଟର୍ନ ଉତ୍ପତ୍ତି ସିଷ୍ଟମ ଦ୍ୱାରା ମାଲିକାନା କରାଯାଇଥିବା ଏକ ସମ୍ବଳର ସମୀକ୍ଷା ଅନୁରୋଧ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", - "ldn-service.form.pattern.request-review.category": "ଅନୁରୋଧ", - - "ldn-service.form.pattern.undo-offer.label": "ଅଫର୍ ବାତିଲ୍ କରନ୍ତୁ", - "ldn-service.form.pattern.undo-offer.description": "ଏହି ପ୍ୟାଟର୍ନ ପୂର୍ବରୁ କରାଯାଇଥିବା ଏକ ଅଫର୍ (ପ୍ରତ୍ୟାହାର)କୁ ବାତିଲ୍ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", - "ldn-service.form.pattern.undo-offer.category": "ବାତିଲ୍", - - "ldn-new-service.form.label.placeholder.selectedItemFilter": "କୌଣସି ଆଇଟମ୍ ଫିଲ୍ଟର୍ ଚୟନ କରାଯାଇନାହିଁ", - "ldn-new-service.form.label.ItemFilter": "ଆଇଟମ୍ ଫିଲ୍ଟର୍", - "ldn-new-service.form.label.automatic": "ସ୍ୱୟଂଚାଳିତ", - "ldn-new-service.form.error.name": "ନାମ ଆବଶ୍ୟକ", - "ldn-new-service.form.error.url": "URL ଆବଶ୍ୟକ", - "ldn-new-service.form.error.ipRange": "ଦୟାକରି ଏକ ବୈଧ IP ରେଞ୍ଜ ପ୍ରବେଶ କରନ୍ତୁ", - "ldn-new-service.form.hint.ipRange": "ଦୟାକରି ଉଭୟ ରେଞ୍ଜ ସୀମାରେ ଏକ ବୈଧ IpV4 ପ୍ରବେଶ କରନ୍ତୁ (ଟିପ୍ପଣୀ: ଏକକ IP ପାଇଁ, ଦୟାକରି ଉଭୟ କ୍ଷେତ୍ରରେ ସମାନ ମୂଲ୍ୟ ପ୍ରବେଶ କରନ୍ତୁ)", - "ldn-new-service.form.error.ldnurl": "LDN URL ଆବଶ୍ୟକ", - "ldn-new-service.form.error.patterns": "ଅତିକମରେ ଏକ ପ୍ୟାଟର୍ନ୍ ଆବଶ୍ୟକ", - "ldn-new-service.form.error.score": "ଦୟାକରି ଏକ ବୈଧ ସ୍କୋର୍ ପ୍ରବେଶ କରନ୍ତୁ (0 ରୁ 1 ମଧ୍ୟରେ)। ଦଶମିକ ସେପାରେଟର ଭାବରେ “.” ବ୍ୟବହାର କରନ୍ତୁ", - - "ldn-new-service.form.label.inboundPattern": "ସମର୍ଥିତ ପ୍ୟାଟର୍ନ୍", - "ldn-new-service.form.label.addPattern": "+ ଅଧିକ ଯୋଡନ୍ତୁ", - "ldn-new-service.form.label.removeItemFilter": "ଅପସାରଣ କରନ୍ତୁ", - "ldn-register-new-service.breadcrumbs": "ନୂତନ ସେବା", - "service.overview.delete.body": "ଆପଣ ଏହି ସେବାକୁ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି?", - "service.overview.edit.body": "ଆପଣ ପରିବର୍ତ୍ତନଗୁଡିକୁ ନିଶ୍ଚିତ କରନ୍ତି କି?", - "service.overview.edit.modal": "ସେବା ସଂପାଦନ କରନ୍ତୁ", - "service.detail.update": "ନିଶ୍ଚିତ କରନ୍ତୁ", - "service.detail.return": "ବାତିଲ୍ କରନ୍ତୁ", - "service.overview.reset-form.body": "ଆପଣ ପରିବର୍ତ୍ତନଗୁଡିକୁ ପରିତ୍ୟାଗ କରି ଛାଡିବାକୁ ଚାହୁଁଛନ୍ତି କି?", - "service.overview.reset-form.modal": "ପରିବର୍ତ୍ତନଗୁଡିକୁ ପରିତ୍ୟାଗ କରନ୍ତୁ", - "service.overview.reset-form.reset-confirm": "ପରିତ୍ୟାଗ କରନ୍ତୁ", - "admin.registries.services-formats.modify.success.head": "ସଫଳ ସଂପାଦନ", - "admin.registries.services-formats.modify.success.content": "ସେବା ସଂପାଦିତ ହୋଇଛି", - "admin.registries.services-formats.modify.failure.head": "ସଂପାଦନ ବିଫଳ", - "admin.registries.services-formats.modify.failure.content": "ସେବା ସଂପାଦିତ ହୋଇନାହିଁ", - "ldn-service-notification.created.success.title": "ସଫଳ ସୃଷ୍ଟି", - "ldn-service-notification.created.success.body": "ସେବା ସୃଷ୍ଟି ହୋଇଛି", - "ldn-service-notification.created.failure.title": "ସୃଷ୍ଟି ବିଫଳ", - "ldn-service-notification.created.failure.body": "ସେବା ସୃଷ୍ଟି ହୋଇନାହିଁ", - "ldn-service-notification.created.warning.title": "ଦୟାକରି ଅତିକମରେ ଗୋଟିଏ ଇନବାଉଣ୍ଡ୍ ପ୍ୟାଟର୍ନ୍ ଚୟନ କରନ୍ତୁ", - "ldn-enable-service.notification.success.title": "ସଫଳ ସ୍ଥିତି ଅଦ୍ୟତନ", - "ldn-enable-service.notification.success.content": "ସେବା ସ୍ଥିତି ଅଦ୍ୟତନ ହୋଇଛି", - "ldn-service-delete.notification.success.title": "ସଫଳ ବିଲୋପ", - "ldn-service-delete.notification.success.content": "ସେବା ଡିଲିଟ୍ ହୋଇଛି", - "ldn-service-delete.notification.error.title": "ବିଲୋପ ବିଫଳ", - "ldn-service-delete.notification.error.content": "ସେବା ଡିଲିଟ୍ ହୋଇନାହିଁ", - "service.overview.reset-form.reset-return": "ବାତିଲ୍ କରନ୍ତୁ", - "service.overview.delete": "ସେବା ଡିଲିଟ୍ କରନ୍ତୁ", - "ldn-edit-service.title": "ସେବା ସଂପାଦନ କରନ୍ତୁ", - "ldn-edit-service.form.label.name": "ନାମ", - "ldn-edit-service.form.label.description": "ବର୍ଣ୍ଣନା", - "ldn-edit-service.form.label.url": "ସେବା URL", - "ldn-edit-service.form.label.ldnUrl": "LDN ଇନବକ୍ସ URL", - "ldn-edit-service.form.label.inboundPattern": "ଇନବାଉଣ୍ଡ୍ ପ୍ୟାଟର୍ନ୍", - "ldn-edit-service.form.label.noInboundPatternSelected": "କୌଣସି ଇନବାଉଣ୍ଡ୍ ପ୍ୟାଟର୍ନ୍ ନାହିଁ", - "ldn-edit-service.form.label.selectedItemFilter": "ଚୟନିତ ଆଇଟମ୍ ଫିଲ୍ଟର୍", - "ldn-edit-service.form.label.selectItemFilter": "କୌଣସି ଆଇଟମ୍ ଫିଲ୍ଟର୍ ନାହିଁ", - "ldn-edit-service.form.label.automatic": "ସ୍ୱୟଂଚାଳିତ", - "ldn-edit-service.form.label.addInboundPattern": "+ ଅଧିକ ଯୋଡନ୍ତୁ", - "ldn-edit-service.form.label.submit": "ସେଭ୍ କରନ୍ତୁ", - "ldn-edit-service.breadcrumbs": "ସେବା ସଂପାଦନ କରନ୍ତୁ", - "ldn-service.control-constaint-select-none": "କିଛି ମଧ୍ୟ ଚୟନ କରନ୍ତୁ ନାହିଁ", - - "ldn-register-new-service.notification.error.title": "ତ୍ରୁଟି", - "ldn-register-new-service.notification.error.content": "ଏହି ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", - "ldn-register-new-service.notification.success.title": "ସଫଳତା", - "ldn-register-new-service.notification.success.content": "ପ୍ରକ୍ରିୟା ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", - - "submission.sections.notify.info": "ଚୟନିତ ସେବା ଆଇଟମ୍ ସହିତ ସୁସଂଗତ ଅଟେ ଏହାର ବର୍ତ୍ତମାନ ସ୍ଥିତି ଅନୁଯାୟୀ। {{ service.name }}: {{ service.description }}", - - "item.page.endorsement": "ସମର୍ଥନ", - - "item.page.places": "ସମ୍ବନ୍ଧିତ ସ୍ଥାନଗୁଡିକ", - - "item.page.review": "ସମୀକ୍ଷା", - - "item.page.referenced": "ଦ୍ୱାରା ସନ୍ଦର୍ଭିତ", - - "item.page.supplemented": "ଦ୍ୱାରା ପରିପୂରକ", - - "menu.section.icon.ldn_services": "LDN ସେବା ସମୀକ୍ଷା", - - "menu.section.services": "LDN ସେବାଗୁଡିକ", - - "menu.section.services_new": "LDN ସେବା", - - "quality-assurance.topics.description-with-target": "ନିମ୍ନରେ ଆପଣ {{source}} ସହିତ ସବସ୍କ୍ରିପସନ୍ ରୁ ପ୍ରାପ୍ତ ସମସ୍ତ ବିଷୟଗୁଡିକ ଦେଖିପାରିବେ, ଯାହା ସମ୍ବନ୍ଧିତ ଅଟେ", - - "quality-assurance.events.description": "ନିମ୍ନରେ ଚୟନିତ ବିଷୟ {{topic}} ପାଇଁ ସମସ୍ତ ସୁଚନାଗୁଡିକର ତାଲିକା, ଯାହା {{source}} ସହିତ ସମ୍ବନ୍ଧିତ।", - - "quality-assurance.events.description-with-topic-and-target": "ନିମ୍ନରେ ଚୟନିତ ବିଷୟ {{topic}} ପାଇଁ ସମସ୍ତ ସୁଚନାଗୁଡିକର ତାଲିକା, ଯାହା {{source}} ସହିତ ସମ୍ବନ୍ଧିତ ଏବଂ ", - - "quality-assurance.event.table.event.message.serviceUrl": "ଅଭିନେତା:", - - "quality-assurance.event.table.event.message.link": "ଲିଙ୍କ୍:", - - "service.detail.delete.cancel": "ବାତିଲ୍ କରନ୍ତୁ", - - "service.detail.delete.button": "ସେବା ଡିଲିଟ୍ କରନ୍ତୁ", - - "service.detail.delete.header": "ସେବା ଡିଲିଟ୍ କରନ୍ତୁ", - - "service.detail.delete.body": "ଆପଣ ବର୍ତ୍ତମାନ ସେବାକୁ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି?", - - "service.detail.delete.confirm": "ସେବା ଡିଲିଟ୍ କରନ୍ତୁ", - - "service.detail.delete.success": "ସେବା ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି।", - - "service.detail.delete.error": "ସେବା ଡିଲିଟ୍ କରିବା ସମୟରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "service.overview.table.id": "ସେବା ID", - - "service.overview.table.name": "ନାମ", - - "service.overview.table.start": "ଆରମ୍ଭ ସମୟ (UTC)", - - "service.overview.table.status": "ସ୍ଥିତି", - - "service.overview.table.user": "ଉପଯୋଗକର୍ତ୍ତା", - - "service.overview.title": "ସେବା ସମୀକ୍ଷା", - - "service.overview.breadcrumbs": "ସେବା ସମୀକ୍ଷା", - - "service.overview.table.actions": "କାର୍ଯ୍ୟଗୁଡିକ", - - "service.overview.table.description": "ବର୍ଣ୍ଣନା", - - "submission.sections.submit.progressbar.coarnotify": "COAR ନୋଟିଫାଇ", - - "submission.section.section-coar-notify.control.request-review.label": "ଆପଣ ନିମ୍ନଲିଖିତ ସେବାଗୁଡିକ ମଧ୍ୟରୁ ଗୋଟିଏକୁ ସମୀକ୍ଷା ଅନୁରୋଧ କରିପାରିବେ", - - "submission.section.section-coar-notify.control.request-endorsement.label": "ଆପଣ ନିମ୍ନଲିଖିତ ଓଭରଲେ ଜର୍ନାଲଗୁଡିକ ମଧ୍ୟରୁ ଗୋଟିଏକୁ ସମର୍ଥନ ଅନୁରୋଧ କରିପାରିବେ", - - "submission.section.section-coar-notify.control.request-ingest.label": "ଆପଣ ନିମ୍ନଲିଖିତ ସେବାଗୁଡିକ ମଧ୍ୟରୁ ଗୋଟିଏକୁ ଆପଣଙ୍କ ସବମିସନ୍ର ଏକ କପି ଇନଜେଷ୍ଟ କରିବାକୁ ଅନୁରୋଧ କରିପାରିବେ", - - "submission.section.section-coar-notify.dropdown.no-data": "କୌଣସି ଡାଟା ଉପଲବ୍ଧ ନାହିଁ", - - "submission.section.section-coar-notify.dropdown.select-none": "କିଛି ମଧ୍ୟ ଚୟନ କରନ୍ତୁ ନାହିଁ", - - "submission.section.section-coar-notify.small.notification": "ଏହି ଆଇଟମ୍ର {{ pattern }} ପାଇଁ ଏକ ସେବା ଚୟନ କରନ୍ତୁ", - - "submission.section.section-coar-notify.selection.description": "ଚୟନିତ ସେବାର ବର୍ଣ୍ଣନା:", - - "submission.section.section-coar-notify.selection.no-description": "ଅତିରିକ୍ତ ସୂଚନା ଉପଲବ୍ଧ ନାହିଁ", - - "submission.section.section-coar-notify.notification.error": "ଚୟନିତ ସେବା ବର୍ତ୍ତମାନର ଆଇଟମ୍ ପାଇଁ ଉପଯୁକ୍ତ ନୁହେଁ। ଦୟାକରି ବର୍ଣ୍ଣନା ଯାଞ୍ଚ କରନ୍ତୁ ଏବଂ ଏହି ସେବା ଦ୍ୱାରା କେଉଁ ରେକର୍ଡ୍ ପରିଚାଳିତ ହୋଇପାରିବ ତାହା ବିଷୟରେ ସୂଚନା ପାଇଁ।", - - "submission.section.section-coar-notify.info.no-pattern": "କୌଣସି କଂଫିଗରେବଲ୍ ପ୍ୟାଟର୍ନ୍ ମିଳିଲା ନାହିଁ।", - - "error.validation.coarnotify.invalidfilter": "ଅବୈଧ ଫିଲ୍ଟର୍, ଦୟାକରି ଅନ୍ୟ ସେବା କିମ୍ବା କିଛି ମଧ୍ୟ ନାହିଁ ଚୟନ କରିବାକୁ ଚେଷ୍ଟା କରନ୍ତୁ।", - - "request-status-alert-box.accepted": " {{ serviceName }} ପାଇଁ ଅନୁରୋଧିତ {{ offerType }} ଗ୍ରହଣ କରାଯାଇଛି।", - - "request-status-alert-box.rejected": " {{ serviceName }} ପାଇଁ ଅନୁରୋଧିତ {{ offerType }} ପ୍ରତ୍ୟାଖ୍ୟାନ କରାଯାଇଛି।", - - "request-status-alert-box.tentative_rejected": " {{ serviceName }} ପାଇଁ ଅନୁରୋଧିତ {{ offerType }} ଅନିଶ୍ଚିତ ଭାବରେ ପ୍ରତ୍ୟାଖ୍ୟାନ କରାଯାଇଛି। ସଂଶୋଧନ ଆବଶ୍ୟକ", - - "request-status-alert-box.requested": " {{ serviceName }} ପାଇଁ ଅନୁରୋଧିତ {{ offerType }} ବିଚାରାଧୀନ ଅଛି।", - - "ldn-service-button-mark-inbound-deletion": "ଡିଲିସନ୍ ପାଇଁ ସମର୍ଥିତ ପ୍ୟାଟର୍ନ୍ ଚିହ୍ନିତ କରନ୍ତୁ", - - "ldn-service-button-unmark-inbound-deletion": "ଡିଲିସନ୍ ପାଇଁ ସମର୍ଥିତ ପ୍ୟାଟର୍ନ୍ ଅଚିହ୍ନିତ କରନ୍ତୁ", - - "ldn-service-input-inbound-item-filter-dropdown": "ପ୍ୟାଟର୍ନ୍ ପାଇଁ ଆଇଟମ୍ ଫିଲ୍ଟର୍ ଚୟନ କରନ୍ତୁ", - - "ldn-service-input-inbound-pattern-dropdown": "ସେବା ପାଇଁ ଏକ ପ୍ୟାଟର୍ନ୍ ଚୟନ କରନ୍ତୁ", - - "ldn-service-overview-select-delete": "ଡିଲିସନ୍ ପାଇଁ ସେବା ଚୟନ କରନ୍ତୁ", - - "ldn-service-overview-select-edit": "LDN ସେବା ସଂପାଦନ କରନ୍ତୁ", - - "ldn-service-overview-close-modal": "ମୋଡାଲ୍ ବନ୍ଦ କରନ୍ତୁ", - - "ldn-service-usesActorEmailId": "ବିଜ୍ଞପ୍ତିରେ ଅଭିନେତା ଇମେଲ୍ ଆବଶ୍ୟକ କରେ", - - "ldn-service-usesActorEmailId-description": "ଯଦି ସକ୍ଷମ କରାଯାଏ, ପ୍ରାରମ୍ଭିକ ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକେ ସବ୍ମିଟର ଇମେଲ୍ ରେପୋଜିଟରି URL ପରିବର୍ତ୍ତେ ଅନ୍ତର୍ଭୁକ୍ତ ହେବ। ଏହା ସାଧାରଣତଃ ଅନୁମୋଦନ କିମ୍ବା ସମୀକ୍ଷା ସେବା ପାଇଁ ପ୍ରଯୁଜ୍ୟ।", - - "a-common-or_statement.label": "ଆଇଟମ୍ ପ୍ରକାର ହେଉଛି ଜର୍ଣ୍ଣାଲ ଆର୍ଟିକଲ୍ କିମ୍ବା ଡାଟାସେଟ୍", - - "always_true_filter.label": "ସର୍ବଦା ସତ୍ୟ", - - "automatic_processing_collection_filter_16.label": "ସ୍ୱୟଂଚାଳିତ ପ୍ରକ୍ରିୟାକରଣ", - - "dc-identifier-uri-contains-doi_condition.label": "URI ରେ DOI ଅନ୍ତର୍ଭୁକ୍ତ", - - "doi-filter.label": "DOI ଫିଲ୍ଟର୍", - - "driver-document-type_condition.label": "ଡକ୍ୟୁମେଣ୍ଟ ପ୍ରକାର ଡ୍ରାଇଭର୍ ସହିତ ସମାନ", - - "has-at-least-one-bitstream_condition.label": "ଅତିକମରେ ଗୋଟିଏ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - - "has-bitstream_filter.label": "ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - - "has-one-bitstream_condition.label": "ଗୋଟିଏ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", - - "is-archived_condition.label": "ଆର୍କାଇଭ୍ ହୋଇଛି", - - "is-withdrawn_condition.label": "ପ୍ରତ୍ୟାହାର କରାଯାଇଛି", - - "item-is-public_condition.label": "ଆଇଟମ୍ ସାର୍ବଜନୀନ ଅଟେ", - - "journals_ingest_suggestion_collection_filter_18.label": "ଜର୍ଣ୍ଣାଲ୍ ଇନଜେଷ୍ଟ୍", - - "title-starts-with-pattern_condition.label": "ଆଖ୍ୟା ପ୍ୟାଟର୍ନ୍ ସହିତ ଆରମ୍ଭ ହୁଏ", - - "type-equals-dataset_condition.label": "ପ୍ରକାର ଡାଟାସେଟ୍ ସହିତ ସମାନ", - - "type-equals-journal-article_condition.label": "ପ୍ରକାର ଜର୍ଣ୍ଣାଲ୍ ଆର୍ଟିକଲ୍ ସହିତ ସମାନ", - - "ldn.no-filter.label": "କିଛି ନାହିଁ", - - "admin.notify.dashboard": "ଡ୍ୟାସବୋର୍ଡ୍", - - "menu.section.notify_dashboard": "ଡ୍ୟାସବୋର୍ଡ୍", - - "menu.section.coar_notify": "COAR ନୋଟିଫାଇ", - - "admin-notify-dashboard.title": "ନୋଟିଫାଇ ଡ୍ୟାସବୋର୍ଡ୍", - - "admin-notify-dashboard.description": "ନୋଟିଫାଇ ଡ୍ୟାସବୋର୍ଡ୍ ରେପୋଜିଟରିରେ COAR ନୋଟିଫାଇ ପ୍ରୋଟୋକଲ୍ ବ୍ୟବହାରକୁ ମନିଟର୍ କରେ। “ମେଟ୍ରିକ୍ସ” ଟ୍ୟାବରେ COAR ନୋଟିଫାଇ ପ୍ରୋଟୋକଲ୍ ବ୍ୟବହାର ସମ୍ବନ୍ଧୀୟ ପରିସଂଖ୍ୟାନ ଅନ୍ତର୍ଭୁକ୍ତ। “ଲଗ୍/ଇନବାଉଣ୍ଡ” ଏବଂ “ଲଗ୍/ଆଉଟବାଉଣ୍ଡ” ଟ୍ୟାବଗୁଡ଼ିକରେ ପ୍ରତ୍ୟେକ LDN ବାର୍ତ୍ତାର ସ୍ଥିତି ଖୋଜିବା ଏବଂ ଯାଞ୍ଚ କରିବା ସମ୍ଭବ, ଯାହା ଗ୍ରହଣ କିମ୍ବା ପ୍ରେରଣ କରାଯାଇଥାଏ।", - - "admin-notify-dashboard.metrics": "ମେଟ୍ରିକ୍ସ", - - "admin-notify-dashboard.received-ldn": "ଗ୍ରହଣ କରାଯାଇଥିବା LDN ର ସଂଖ୍ୟା", - - "admin-notify-dashboard.generated-ldn": "ଉତ୍ପାଦିତ LDN ର ସଂଖ୍ୟା", - - "admin-notify-dashboard.NOTIFY.incoming.accepted": "ଗ୍ରହଣ କରାଯାଇଛି", - - "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "ଗ୍ରହଣ କରାଯାଇଥିବା ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", - - "admin-notify-logs.NOTIFY.incoming.accepted": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ଗ୍ରହଣ କରାଯାଇଥିବା ବିଜ୍ଞପ୍ତି", - - "admin-notify-dashboard.NOTIFY.incoming.processed": "ପ୍ରକ୍ରିୟାକରଣ କରାଯାଇଥିବା LDN", - - "admin-notify-dashboard.NOTIFY.incoming.processed.description": "ପ୍ରକ୍ରିୟାକରଣ କରାଯାଇଥିବା ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", - - "admin-notify-logs.NOTIFY.incoming.processed": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ପ୍ରକ୍ରିୟାକରଣ କରାଯାଇଥିବା LDN", - - "admin-notify-logs.NOTIFY.incoming.failure": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ବିଫଳ ବିଜ୍ଞପ୍ତି", - - "admin-notify-dashboard.NOTIFY.incoming.failure": "ବିଫଳତା", - - "admin-notify-dashboard.NOTIFY.incoming.failure.description": "ବିଫଳ ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", - - "admin-notify-logs.NOTIFY.outgoing.failure": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ବିଫଳ ବିଜ୍ଞପ୍ତି", - - "admin-notify-dashboard.NOTIFY.outgoing.failure": "ବିଫଳତା", - - "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "ବିଫଳ ଆଉଟବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", - - "admin-notify-logs.NOTIFY.incoming.untrusted": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ଅବିଶ୍ୱସନୀୟ ବିଜ୍ଞପ୍ତି", - - "admin-notify-dashboard.NOTIFY.incoming.untrusted": "ଅବିଶ୍ୱସନୀୟ", - - "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "ଅବିଶ୍ୱସନୀୟ ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", - - "admin-notify-logs.NOTIFY.incoming.delivered": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ବିତରଣ କରାଯାଇଥିବା ବିଜ୍ଞପ୍ତି", - - "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "ସଫଳତାର ସହିତ ବିତରଣ କରାଯାଇଥିବା ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", - - "admin-notify-dashboard.NOTIFY.outgoing.delivered": "ବିତରଣ କରାଯାଇଛି", - - "admin-notify-logs.NOTIFY.outgoing.delivered": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ବିତରଣ କରାଯାଇଥିବା ବିଜ୍ଞପ୍ତି", - - "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "ସଫଳତାର ସହିତ ବିତରଣ କରାଯାଇଥିବା ଆଉଟବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", - - "admin-notify-logs.NOTIFY.outgoing.queued": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ଧାଡିରେ ଥିବା ବିଜ୍ଞପ୍ତି", - - "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "ଧାଡିରେ ଥିବା ବିଜ୍ଞପ୍ତି", - - "admin-notify-dashboard.NOTIFY.outgoing.queued": "ଧାଡିରେ ଅଛି", - - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଥିବା ବିଜ୍ଞପ୍ତି", - - "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଅଛି", - - "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଥିବା ବିଜ୍ଞପ୍ତି", - - "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "ଜଡିତ ଆଇଟମ୍", - - "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି ସହିତ ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", - - "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "ଜଡିତ ଆଇଟମ୍", - - "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "ଆଉଟବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି ସହିତ ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", - - "admin.notify.dashboard.breadcrumbs": "ଡ୍ୟାସବୋର୍ଡ୍", - - "admin.notify.dashboard.inbound": "ଇନବାଉଣ୍ଡ ବାର୍ତ୍ତା", - - "admin.notify.dashboard.inbound-logs": "ଲଗ୍/ଇନବାଉଣ୍ଡ", - - "admin.notify.dashboard.filter": "ଫିଲ୍ଟର୍: ", - - "search.filters.applied.f.relateditem": "ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", - - "search.filters.applied.f.ldn_service": "LDN ସେବା", - - "search.filters.applied.f.notifyReview": "ନୋଟିଫାଇ ସମୀକ୍ଷା", - - "search.filters.applied.f.notifyEndorsement": "ନୋଟିଫାଇ ଅନୁମୋଦନ", - - "search.filters.applied.f.notifyRelation": "ନୋଟିଫାଇ ସମ୍ପର୍କ", - - "search.filters.applied.f.access_status": "ପ୍ରବେଶ ପ୍ରକାର", - - "search.filters.filter.queue_last_start_time.head": "ଶେଷ ପ୍ରକ୍ରିୟାକରଣ ସମୟ ", - - "search.filters.filter.queue_last_start_time.min.label": "ସର୍ବନିମ୍ନ ପରିସର", - - "search.filters.filter.queue_last_start_time.max.label": "ସର୍ବାଧିକ ପରିସର", - - "search.filters.applied.f.queue_last_start_time.min": "ସର୍ବନିମ୍ନ ପରିସର", - - "search.filters.applied.f.queue_last_start_time.max": "ସର୍ବାଧିକ ପରିସର", - - "admin.notify.dashboard.outbound": "ଆଉଟବାଉଣ୍ଡ ବାର୍ତ୍ତା", - - "admin.notify.dashboard.outbound-logs": "ଲଗ୍/ଆଉଟବାଉଣ୍ଡ", - - "NOTIFY.incoming.search.results.head": "ଆସୁଥିବା", - - "search.filters.filter.relateditem.head": "ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", - - "search.filters.filter.origin.head": "ଉତ୍ସ", - - "search.filters.filter.ldn_service.head": "LDN ସେବା", - - "search.filters.filter.target.head": "ଲକ୍ଷ୍ୟ", - - "search.filters.filter.queue_status.head": "ଧାଡି ସ୍ଥିତି", - - "search.filters.filter.activity_stream_type.head": "କାର୍ଯ୍ୟକଳାପ ଧାରା ପ୍ରକାର", - - "search.filters.filter.coar_notify_type.head": "COAR ନୋଟିଫାଇ ପ୍ରକାର", - - "search.filters.filter.notification_type.head": "ବିଜ୍ଞପ୍ତି ପ୍ରକାର", - - "search.filters.filter.relateditem.label": "ସମ୍ବନ୍ଧିତ ଆଇଟମ୍ ଖୋଜନ୍ତୁ", - - "search.filters.filter.queue_status.label": "ଧାଡି ସ୍ଥିତି ଖୋଜନ୍ତୁ", - - "search.filters.filter.target.label": "ଲକ୍ଷ୍ୟ ଖୋଜନ୍ତୁ", - - "search.filters.filter.activity_stream_type.label": "କାର୍ଯ୍ୟକଳାପ ଧାରା ପ୍ରକାର ଖୋଜନ୍ତୁ", - - "search.filters.applied.f.queue_status": "ଧାଡି ସ୍ଥିତି", - - "search.filters.queue_status.0,authority": "ଅବିଶ୍ୱସନୀୟ IP", - - "search.filters.queue_status.1,authority": "ଧାଡିରେ ଅଛି", - - "search.filters.queue_status.2,authority": "ପ୍ରକ୍ରିୟାକରଣରେ ଅଛି", - - "search.filters.queue_status.3,authority": "ପ୍ରକ୍ରିୟାକରଣ ହୋଇସାରିଛି", - - "search.filters.queue_status.4,authority": "ବିଫଳ", - - "search.filters.queue_status.5,authority": "ଅବିଶ୍ୱସନୀୟ", - - "search.filters.queue_status.6,authority": "ଅଣମାନଚିତ୍ରିତ କାର୍ଯ୍ୟ", - - "search.filters.queue_status.7,authority": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଅଛି", - - "search.filters.applied.f.activity_stream_type": "କାର୍ଯ୍ୟକଳାପ ଧାରା ପ୍ରକାର", - - "search.filters.applied.f.coar_notify_type": "COAR ନୋଟିଫାଇ ପ୍ରକାର", - - "search.filters.applied.f.notification_type": "ବିଜ୍ଞପ୍ତି ପ୍ରକାର", - - "search.filters.filter.coar_notify_type.label": "COAR ନୋଟିଫାଇ ପ୍ରକାର ଖୋଜନ୍ତୁ", - - "search.filters.filter.notification_type.label": "ବିଜ୍ଞପ୍ତି ପ୍ରକାର ଖୋଜନ୍ତୁ", - - "search.filters.filter.relateditem.placeholder": "ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", - - "search.filters.filter.target.placeholder": "ଲକ୍ଷ୍ୟ", - - "search.filters.filter.origin.label": "ଉତ୍ସ ଖୋଜନ୍ତୁ", - - "search.filters.filter.origin.placeholder": "ଉତ୍ସ", - - "search.filters.filter.ldn_service.label": "LDN ସେବା ଖୋଜନ୍ତୁ", - - "search.filters.filter.ldn_service.placeholder": "LDN ସେବା", - - "search.filters.filter.queue_status.placeholder": "ଧାଡି ସ୍ଥିତି", - - "search.filters.filter.activity_stream_type.placeholder": "କାର୍ଯ୍ୟକଳାପ ଧାରା ପ୍ରକାର", - - "search.filters.filter.coar_notify_type.placeholder": "COAR ନୋଟିଫାଇ ପ୍ରକାର", - - "search.filters.filter.notification_type.placeholder": "ବିଜ୍ଞପ୍ତି", - - "search.filters.filter.notifyRelation.head": "ନୋଟିଫାଇ ସମ୍ପର୍କ", - - "search.filters.filter.notifyRelation.label": "ନୋଟିଫାଇ ସମ୍ପର୍କ ଖୋଜନ୍ତୁ", - - "search.filters.filter.notifyRelation.placeholder": "ନୋଟିଫାଇ ସମ୍ପର୍କ", - - "search.filters.filter.notifyReview.head": "ନୋଟିଫାଇ ସମୀକ୍ଷା", - - "search.filters.filter.notifyReview.label": "ନୋଟିଫାଇ ସମୀକ୍ଷା ଖୋଜନ୍ତୁ", - - "search.filters.filter.notifyReview.placeholder": "ନୋଟିଫାଇ ସମୀକ୍ଷା", - - "search.filters.coar_notify_type.coar-notify:ReviewAction": "ସମୀକ୍ଷା କାର୍ଯ୍ୟ", - - "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "ସମୀକ୍ଷା କାର୍ଯ୍ୟ", - - "notify-detail-modal.coar-notify:ReviewAction": "ସମୀକ୍ଷା କାର୍ଯ୍ୟ", - - "search.filters.coar_notify_type.coar-notify:EndorsementAction": "ଅନୁମୋଦନ କାର୍ଯ୍ୟ", - - "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "ଅନୁମୋଦନ କାର୍ଯ୍ୟ", - - "notify-detail-modal.coar-notify:EndorsementAction": "ଅନୁମୋଦନ କାର୍ଯ୍ୟ", - - "search.filters.coar_notify_type.coar-notify:IngestAction": "ଇନଜେଷ୍ଟ୍ କାର୍ଯ୍ୟ", - - "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ଇନଜେଷ୍ଟ୍ କାର୍ଯ୍ୟ", - - "notify-detail-modal.coar-notify:IngestAction": "ଇନଜେଷ୍ଟ୍ କାର୍ଯ୍ୟ", - - "search.filters.coar_notify_type.coar-notify:RelationshipAction": "ସମ୍ପର୍କ କାର୍ଯ୍ୟ", - - "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "ସମ୍ପର୍କ କାର୍ଯ୍ୟ", - - "notify-detail-modal.coar-notify:RelationshipAction": "ସମ୍ପର୍କ କାର୍ଯ୍ୟ", - - "search.filters.queue_status.QUEUE_STATUS_QUEUED": "ଧାଡିରେ ଅଛି", - - "notify-detail-modal.QUEUE_STATUS_QUEUED": "ଧାଡିରେ ଅଛି", - - "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଅଛି", - - "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଅଛି", - - "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "ପ୍ରକ୍ରିୟାକରଣରେ ଅଛି", - - "notify-detail-modal.QUEUE_STATUS_PROCESSING": "ପ୍ରକ୍ରିୟାକରଣରେ ଅଛି", - - "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "ପ୍ରକ୍ରିୟାକରଣ ହୋଇସାରିଛି", - - "notify-detail-modal.QUEUE_STATUS_PROCESSED": "ପ୍ରକ୍ରିୟାକରଣ ହୋଇସାରିଛି", - - "search.filters.queue_status.QUEUE_STATUS_FAILED": "ବିଫଳ", - - "notify-detail-modal.QUEUE_STATUS_FAILED": "ବିଫଳ", - - "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "ଅବିଶ୍ୱସନୀୟ", - - "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "ଅବିଶ୍ୱସନୀୟ IP", - - "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "ଅବିଶ୍ୱସନୀୟ", - - "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "ଅବିଶ୍ୱସନୀୟ IP", - - "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "ଅଣମାନଚିତ୍ରିତ କାର୍ଯ୍ୟ", - - "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "ଅଣମାନଚିତ୍ରିତ କାର୍ଯ୍ୟ", - - "sorting.queue_last_start_time.DESC": "ଶେଷ ଆରମ୍ଭ ଧାଡି ଅବରୋହୀ", - - "sorting.queue_last_start_time.ASC": "ଶେଷ ଆରମ୍ଭ ଧାଡି ଆରୋହୀ", - - "sorting.queue_attempts.DESC": "ଧାଡି ଚେଷ୍ଟା ଅବରୋହୀ", - - "sorting.queue_attempts.ASC": "ଧାଡି ଚେଷ୍ଟା ଆରୋହୀ", - - "NOTIFY.incoming.involvedItems.search.results.head": "ଆସୁଥିବା LDN ରେ ଜଡିତ ଆଇଟମ୍", - - "NOTIFY.outgoing.involvedItems.search.results.head": "ଯାଉଥିବା LDN ରେ ଜଡିତ ଆଇଟମ୍", - - "type.notify-detail-modal": "ପ୍ରକାର", - - "id.notify-detail-modal": "ଆଇଡି", - - "coarNotifyType.notify-detail-modal": "COAR ନୋଟିଫାଇ ପ୍ରକାର", - - "activityStreamType.notify-detail-modal": "କାର୍ଯ୍ୟକଳାପ ଧାରା ପ୍ରକାର", - - "inReplyTo.notify-detail-modal": "ଉତ୍ତରରେ", - - "object.notify-detail-modal": "ରେପୋଜିଟରି ଆଇଟମ୍", - - "context.notify-detail-modal": "ରେପୋଜିଟରି ଆଇଟମ୍", - - "queueAttempts.notify-detail-modal": "ଧାଡି ଚେଷ୍ଟା", - - "queueLastStartTime.notify-detail-modal": "ଧାଡି ଶେଷ ଆରମ୍ଭ ସମୟ", - - "origin.notify-detail-modal": "LDN ସେବା", - - "target.notify-detail-modal": "LDN ସେବା", - - "queueStatusLabel.notify-detail-modal": "ଧାଡି ସ୍ଥିତି", - - "queueTimeout.notify-detail-modal": "ଧାଡି ସମୟ ସମାପ୍ତି", - - "notify-message-modal.title": "ବାର୍ତ୍ତା ବିବରଣୀ", - - "notify-message-modal.show-message": "ବାର୍ତ୍ତା ଦେଖାନ୍ତୁ", - - "notify-message-result.timestamp": "ସମୟସ୍ଟାମ୍ପ", - - "notify-message-result.repositoryItem": "ରେପୋଜିଟରି ଆଇଟମ୍", - - "notify-message-result.ldnService": "LDN ସେବା", - - "notify-message-result.type": "ପ୍ରକାର", - - "notify-message-result.status": "ସ୍ଥିତି", - - "notify-message-result.action": "କାର୍ଯ୍ୟ", - - "notify-message-result.detail": "ବିବରଣୀ", - - "notify-message-result.reprocess": "ପୁନଃପ୍ରକ୍ରିୟାକରଣ", - - "notify-queue-status.processed": "ପ୍ରକ୍ରିୟାକରଣ ହୋଇସାରିଛି", - - "notify-queue-status.failed": "ବିଫଳ", - - "notify-queue-status.queue_retry": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଅଛି", - - "notify-queue-status.unmapped_action": "ଅଣମାନଚିତ୍ରିତ କାର୍ଯ୍ୟ", - - "notify-queue-status.processing": "ପ୍ରକ୍ରିୟାକରଣରେ ଅଛି", - - "notify-queue-status.queued": "ଧାଡିରେ ଅଛି", - - "notify-queue-status.untrusted": "ଅବିଶ୍ୱସନୀୟ", - - "ldnService.notify-detail-modal": "LDN ସେବା", - - "relatedItem.notify-detail-modal": "ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", - - "search.filters.filter.notifyEndorsement.head": "ନୋଟିଫାଇ ଅନୁମୋଦନ", - - "search.filters.filter.notifyEndorsement.placeholder": "ନୋଟିଫାଇ ଅନୁମୋଦନ", - - "search.filters.filter.notifyEndorsement.label": "ନୋଟିଫାଇ ଅନୁମୋଦନ ଖୋଜନ୍ତୁ", - - "form.date-picker.placeholder.year": "ବର୍ଷ", - - "form.date-picker.placeholder.month": "ମାସ", - - "form.date-picker.placeholder.day": "ଦିନ", - - "item.page.cc.license.title": "କ୍ରିଏଟିଭ୍ କମନ୍ସ୍ ଲାଇସେନ୍ସ୍", - - "item.page.cc.license.disclaimer": "ଅନ୍ୟଥା ଉଲ୍ଲେଖ ନକରିବା ସ୍ଥଳେ, ଏହି ଆଇଟମର ଲାଇସେନ୍ସ୍ ଏହିପରି ବର୍ଣ୍ଣନା କରାଯାଇଛି", - - "browse.search-form.placeholder": "ରେପୋଜିଟରି ଖୋଜନ୍ତୁ", - - "file-download-link.download": "ଡାଉନଲୋଡ୍ କରନ୍ତୁ ", - - "register-page.registration.aria.label": "ଆପଣଙ୍କର ଇମେଲ୍ ଠିକଣା ପ୍ରବେଶ କରନ୍ତୁ", - - "forgot-email.form.aria.label": "ଆପଣଙ୍କର ଇମେଲ୍ ଠିକଣା ପ୍ରବେଶ କରନ୍ତୁ", - - "search-facet-option.update.announcement": "ପୃଷ୍ଠା ପୁନର୍ଲୋଡ୍ ହେବ। ଫିଲ୍ଟର୍ {{ filter }} ଚୟନ କରାଯାଇଛି।", - - "live-region.ordering.instructions": "{{ itemName }} କୁ ପୁନଃବିନ୍ୟାସ କରିବାକୁ ସ୍ପେସବାର୍ ଦବାନ୍ତୁ।", - - "live-region.ordering.status": "{{ itemName }}, ଧରାଯାଇଛି। ତାଲିକାରେ ବର୍ତ୍ତମାନ ସ୍ଥାନ: {{ index }} ର {{ length }}। ସ୍ଥାନ ପରିବର୍ତ୍ତନ କରିବାକୁ ଉପର ଏବଂ ତଳ ତୀର କି ଦବାନ୍ତୁ, ଡ୍ରପ୍ କରିବାକୁ ସ୍ପେସବାର୍, ବାତିଲ୍ କରିବାକୁ ଏସ୍କେପ୍।", - - "live-region.ordering.moved": "{{ itemName }}, ସ୍ଥାନ {{ index }} ର {{ length }} କୁ ଗତି କରିଛି। ସ୍ଥାନ ପରିବର୍ତ୍ତନ କରିବାକୁ ଉପର ଏବଂ ତଳ ତୀର କି ଦବାନ୍ତୁ, ଡ୍ରପ୍ କରିବାକୁ ସ୍ପେସବାର୍, ବାତିଲ୍ କରିବାକୁ ଏସ୍କେପ୍।", - - "live-region.ordering.dropped": "{{ itemName }}, ସ୍ଥାନ {{ index }} ର {{ length }} ରେ ଡ୍ରପ୍ ହୋଇଛି।", - - "dynamic-form-array.sortable-list.label": "ସର୍ଟେବଲ୍ ତାଲିକା", - - "external-login.component.or": "କିମ୍ବା", - - "external-login.confirmation.header": "ଲଗଇନ୍ ପ୍ରକ୍ରିୟା ସମ୍ପୂର୍ଣ୍ଣ କରିବା ପାଇଁ ଆବଶ୍ୟକ ତଥ୍ୟ", - - "external-login.noEmail.informationText": "{{authMethod}} ରୁ ପ୍ରାପ୍ତ ସୂଚନା ଲଗଇନ୍ ପ୍ରକ୍ରିୟା ସମ୍ପୂର୍ଣ୍ଣ କରିବା ପାଇଁ ପର୍ଯ୍ୟାପ୍ତ ନୁହେଁ। ଦୟାକରି ନିମ୍ନରେ ଅନୁପସ୍ଥିତ ସୂଚନା ପ୍ରଦାନ କରନ୍ତୁ, କିମ୍ବା ଏକ ଭିନ୍ନ ପଦ୍ଧତିରେ ଲଗଇନ୍ କରି ଆପଣଙ୍କର {{authMethod}} କୁ ଏକ ପୂର୍ବରୁ ଥିବା ଖାତା ସହିତ ସଂଯୋଗ କରନ୍ତୁ।", - - "external-login.haveEmail.informationText": "ଏହି ବ୍ୟବସ୍ଥାରେ ଆପଣଙ୍କର ଏକ ଖାତା ନାହିଁ ବୋଲି ଜଣାପଡୁଛି। ଯଦି ଏହା ସତ୍ୟ ହୋଇଥାଏ, ଦୟାକରି {{authMethod}} ରୁ ପ୍ରାପ୍ତ ତଥ୍ୟ ନିଶ୍ଚିତ କରନ୍ତୁ ଏବଂ ଆପଣଙ୍କ ପାଇଁ ଏକ ନୂତନ ଖାତା ସୃଷ୍ଟି କରାଯିବ। ଅନ୍ୟଥା, ଯଦି ଆପଣଙ୍କର ଏହି ବ୍ୟବସ୍ଥାରେ ପୂର୍ବରୁ ଏକ ଖାତା ଅଛି, ଦୟାକରି ଇମେଲ୍ ଠିକଣାକୁ ବ୍ୟବସ୍ଥାରେ ପୂର୍ବରୁ ବ୍ୟବହୃତ ଇମେଲ୍ ସହିତ ମେଳ କରନ୍ତୁ କିମ୍ବା ଏକ ଭିନ୍ନ ପଦ୍ଧତିରେ ଲଗଇନ୍ କରି ଆପଣଙ୍କର {{authMethod}} କୁ ଆପଣଙ୍କର ପୂର୍ବରୁ ଥିବା ଖାତା ସହିତ ସଂଯୋଗ କରନ୍ତୁ।", - - "external-login.confirm-email.header": "ଇମେଲ୍ ନିଶ୍ଚିତ କିମ୍ବା ଅଦ୍ୟତନ କରନ୍ତୁ", - - "external-login.confirmation.email-required": "ଇମେଲ୍ ଆବଶ୍ୟକ।", - - "external-login.confirmation.email-label": "ଉପଯୋଗକର୍ତ୍ତା ଇମେଲ୍", - - "external-login.confirmation.email-invalid": "ଅବୈଧ ଇମେଲ୍ ଫର୍ମାଟ୍।", - - "external-login.confirm.button.label": "ଏହି ଇମେଲ୍ ନିଶ୍ଚିତ କରନ୍ତୁ", - - "external-login.confirm-email-sent.header": "ନିଶ୍ଚିତକରଣ ଇମେଲ୍ ପଠାଯାଇଛି", - - "external-login.confirm-email-sent.info": "ଆମେ ଆପଣଙ୍କର ଇନପୁଟ୍ ବୈଧ କରିବା ପାଇଁ ପ୍ରଦାନ କରାଯାଇଥିବା ଠିକଣାକୁ ଏକ ଇମେଲ୍ ପଠାଇଛୁ।
ଦୟାକରି ଲଗଇନ୍ ପ୍ରକ୍ରିୟା ସମ୍ପୂର୍ଣ୍ଣ କରିବା ପାଇଁ ଇମେଲ୍ରେ ଥିବା ନିର୍ଦ୍ଦେଶାବଳୀ ଅନୁସରଣ କରନ୍ତୁ।", - - "external-login.provide-email.header": "ଇମେଲ୍ ପ୍ରଦାନ କରନ୍ତୁ", - - "external-login.provide-email.button.label": "ଯାଞ୍ଚ ଲିଙ୍କ୍ ପଠାନ୍ତୁ", - - "external-login-validation.review-account-info.header": "ଆପଣଙ୍କର ଖାତା ସୂଚନା ସମୀକ୍ଷା କରନ୍ତୁ", - - "external-login-validation.review-account-info.info": "ORCID ରୁ ପ୍ରାପ୍ତ ସୂଚନା ଆପଣଙ୍କ ପ୍ରୋଫାଇଲ୍ରେ ରେକର୍ଡ କରାଯାଇଥିବା ସୂଚନା ଠାରୁ ଭିନ୍ନ।
ଦୟାକରି ସେଗୁଡିକ ସମୀକ୍ଷା କରନ୍ତୁ ଏବଂ ସ୍ଥିର କରନ୍ତୁ ଯେ ଆପଣ କୌଣସି ସୂଚନା ଅଦ୍ୟତନ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ନାହିଁ। ସଂରକ୍ଷଣ କରିବା ପରେ ଆପଣଙ୍କୁ ଆପଣଙ୍କ ପ୍ରୋଫାଇଲ୍ ପେଜ୍ କୁ ପୁନଃନିର୍ଦ୍ଦେଶିତ କରାଯିବ।", - - "external-login-validation.review-account-info.table.header.information": "ସୂଚନା", - - "external-login-validation.review-account-info.table.header.received-value": "ପ୍ରାପ୍ତ ମୂଲ୍ୟ", - - "external-login-validation.review-account-info.table.header.current-value": "ବର୍ତ୍ତମାନ ମୂଲ୍ୟ", - - "external-login-validation.review-account-info.table.header.action": "ଅତିକ୍ରମ କରନ୍ତୁ", - - "external-login-validation.review-account-info.table.row.not-applicable": "ପ୍ରଯୁଜ୍ୟ ନୁହେଁ", - - "on-label": "ଚାଲୁ", - - "off-label": "ବନ୍ଦ", - - "review-account-info.merge-data.notification.success": "ଆପଣଙ୍କର ଖାତା ସୂଚନା ସଫଳତାର ସହିତ ଅଦ୍ୟତନ ହୋଇଛି", - - "review-account-info.merge-data.notification.error": "ଆପଣଙ୍କର ଖାତା ସୂଚନା ଅଦ୍ୟତନ କରିବା ସମୟରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "review-account-info.alert.error.content": "କିଛି ତ୍ରୁଟି ଘଟିଛି। ଦୟାକରି ପରବର୍ତ୍ତୀ ସମୟରେ ପୁନଃଚେଷ୍ଟା କରନ୍ତୁ।", - - "external-login-page.provide-email.notifications.error": "କିଛି ତ୍ରୁଟି ଘଟିଛି। ଇମେଲ୍ ଠିକଣା ବାଦ ଦିଆଯାଇଛି କିମ୍ବା କାର୍ଯ୍ୟଟି ବୈଧ ନୁହେଁ।", - - "external-login.error.notification": "ଆପଣଙ୍କର ଅନୁରୋଧ ପ୍ରକ୍ରିୟାକରଣ ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି। ଦୟାକରି ପରବର୍ତ୍ତୀ ସମୟରେ ପୁନଃଚେଷ୍ଟା କରନ୍ତୁ।", - - "external-login.connect-to-existing-account.label": "ଏକ ପୂର୍ବରୁ ଥିବା ଉପଯୋଗକର୍ତ୍ତା ସହିତ ସଂଯୋଗ କରନ୍ତୁ", - - "external-login.modal.label.close": "ବନ୍ଦ କରନ୍ତୁ", - - "external-login-page.provide-email.create-account.notifications.error.header": "କିଛି ତ୍ରୁଟି ଘଟିଛି", - - "external-login-page.provide-email.create-account.notifications.error.content": "ଦୟାକରି ଆପଣଙ୍କର ଇମେଲ୍ ଠିକଣାକୁ ପୁନର୍ବାର ଯାଞ୍ଚ କରନ୍ତୁ ଏବଂ ପୁନଃଚେଷ୍ଟା କରନ୍ତୁ।", - - "external-login-page.confirm-email.create-account.notifications.error.no-netId": "ଏହି ଇମେଲ୍ ଖାତା ସହିତ କିଛି ତ୍ରୁଟି ଘଟିଛି। ପୁନଃଚେଷ୍ଟା କରନ୍ତୁ କିମ୍ବା ଲଗଇନ୍ କରିବା ପାଇଁ ଏକ ଭିନ୍ନ ପଦ୍ଧତି ବ୍ୟବହାର କରନ୍ତୁ।", - - "external-login-page.orcid-confirmation.firstname": "ପ୍ରଥମ ନାମ", - - "external-login-page.orcid-confirmation.firstname.label": "ପ୍ରଥମ ନାମ", - - "external-login-page.orcid-confirmation.lastname": "ଶେଷ ନାମ", - - "external-login-page.orcid-confirmation.lastname.label": "ଶେଷ ନାମ", - - "external-login-page.orcid-confirmation.netid": "ଖାତା ଚିହ୍ନଟକାରୀ", - - "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", - - "external-login-page.orcid-confirmation.email": "ଇମେଲ୍", - - "external-login-page.orcid-confirmation.email.label": "ଇମେଲ୍", - - "search.filters.access_status.open.access": "ଖୋଲା ପ୍ରବେଶ", - - "search.filters.access_status.restricted": "ସୀମିତ ପ୍ରବେଶ", - - "search.filters.access_status.embargo": "ନିଷେଧିତ ପ୍ରବେଶ", - - "search.filters.access_status.metadata.only": "ମେଟାଡାଟା ମାତ୍ର", - - "search.filters.access_status.unknown": "ଅଜ୍ଞାତ", - - "metadata-export-filtered-items.tooltip": "CSV ଭାବରେ ରିପୋର୍ଟ ଆଉଟପୁଟ୍ ରପ୍ତାନି କରନ୍ତୁ", - - "metadata-export-filtered-items.submit.success": "CSV ରପ୍ତାନି ସଫଳ ହୋଇଛି।", - - "metadata-export-filtered-items.submit.error": "CSV ରପ୍ତାନି ବିଫଳ ହୋଇଛି।", - - "metadata-export-filtered-items.columns.warning": "CSV ରପ୍ତାନି ସ୍ୱୟଂଚାଳିତ ଭାବରେ ସମସ୍ତ ପ୍ରାସଙ୍ଗିକ କ୍ଷେତ୍ରଗୁଡିକୁ ଅନ୍ତର୍ଭୁକ୍ତ କରେ, ତେଣୁ ଏହି ତାଲିକାରେ ଚୟନଗୁଡିକ ଗ୍ରହଣ କରାଯାଇନଥାଏ।", - - "embargo.listelement.badge": "{{ date }} ପର୍ଯ୍ୟନ୍ତ ନିଷେଧ", - - "metadata-export-search.submit.error.limit-exceeded": "କେବଳ ପ୍ରଥମ {{limit}} ଆଇଟମ୍ ଗୁଡିକ ରପ୍ତାନି କରାଯିବ", - - "file-download-link.request-copy": "ଏହାର ଏକ କପି ଅନୁରୋଧ କରନ୍ତୁ ", - -} diff --git a/src/assets/i18n/pl.json5 b/src/assets/i18n/pl.json5 index 6f5f0f1c518..b6160cbc918 100644 --- a/src/assets/i18n/pl.json5 +++ b/src/assets/i18n/pl.json5 @@ -2901,12 +2901,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Błąd podczas pobierania nadrzędnego zbioru", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Musisz wyrazić tę zgodę, aby przesłać swoje zgłoszenie. Jeśli nie możesz wyrazić zgody w tym momencie, możesz zapisać swoją pracę i wrócić do niej później lub usunąć zgłoszenie.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Musisz przyznać tę licencję cc, aby zakończyć zgłoszenie. Jeśli nie możesz przyznać licencji CC w tej chwili, możesz zapisać swoją pracę i wrócić później lub usunąć zgłoszenie.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Te dane wejściowe są ograniczone przez aktualny wzór: {{ pattern }}.", @@ -8393,6 +8406,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licencja Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Odzyskaj", @@ -8558,6 +8575,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Przesyłanie udane", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Jeśli checkbox jest zaznaczony, pozycja będzie wyświetlana w wynikach wyszukiwania. Jeśli checkbox jest odznaczony, dostęp do pozycji będzie dostępny tylko przez bezpośredni link, pozycja nie będzie wyświetlana w wynikach wyszukiwania.", @@ -10953,5 +10982,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/pt-BR.json5 b/src/assets/i18n/pt-BR.json5 index 7d35b5ccfe8..53719494754 100644 --- a/src/assets/i18n/pt-BR.json5 +++ b/src/assets/i18n/pt-BR.json5 @@ -2926,13 +2926,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erro ao carregar as comunidade de nível superior", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Você deve concordar com esta licença para completar sua submissão. Se você não estiver de acordo com esta licença neste momento você pode salvar seu trabalho para continuar depois ou remover a submissão.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Este campo está restrito ao seguinte padrão: {{ pattern }}.", @@ -8507,6 +8520,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licença Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8672,6 +8689,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Enviado com sucesso", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Quando marcado, este item poderá ser descoberto na pesquisa/navegação. Quando desmarcado, o item estará disponível apenas por meio de um link direto e nunca aparecerá na pesquisa/navegação.", @@ -11139,9 +11168,14 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", "item.preview.organization.url": "URL", + // "item.preview.organization.address.addressLocality": "City", "item.preview.organization.address.addressLocality": "Cidade", + // "item.preview.organization.alternateName": "Alternative name", "item.preview.organization.alternateName": "Nome alternativo", -} + + +} \ No newline at end of file diff --git a/src/assets/i18n/pt-PT.json5 b/src/assets/i18n/pt-PT.json5 index 9ad0690d571..6c6ac019157 100644 --- a/src/assets/i18n/pt-PT.json5 +++ b/src/assets/i18n/pt-PT.json5 @@ -2902,12 +2902,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erro ao carregar as comunidade de nível superior!", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Deve concordar com esta licença para completar o depósito. Se não estiver de acordo com a licença ou pretende ponderar, pode guardar este trabalho e retomar posteriormente ou remover definitivamente este depósito.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Deve concordar com esta licença CC para completar o depósito. Se não estiver de acordo com a licença ou pretende ponderar, pode guardar o seu trabalho e retomar posteriormente ou remover definitivamente este depósito.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Este campo está restrito ao seguinte padrão: {{ pattern }}.", @@ -8487,6 +8500,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Associar uma licença Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8653,6 +8670,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Enviado com sucesso", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Quando selecionado, este item será pesquisável na pesquisa/navegação. Se não estiver selecionado, o item apenas estará disponível através uma ligação direta (link) e não aparecerá na pesquisa/navegação.", @@ -11046,5 +11075,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/ru.json5 b/src/assets/i18n/ru.json5 index c56c9f7ffb8..92258be4434 100644 --- a/src/assets/i18n/ru.json5 +++ b/src/assets/i18n/ru.json5 @@ -1,5 +1,4 @@ { - // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "У вас нет прав доступа к этой странице. Вы можете использовать кнопку ниже, чтобы вернуться на домашнюю страницу.", @@ -51,6 +50,10 @@ // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "Произошла ошибка при входе через ORCID. Убедитесь, что вы поделились адресом электронной почты своей учетной записи ORCID с DSpace. Если ошибка повторяется, обратитесь к администратору.", + // "listelement.badge.access-status": "Access status:", + // TODO New key - Add a translation + "listelement.badge.access-status": "Access status:", + // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "Эмбарго", @@ -456,6 +459,22 @@ // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "Удалить \"{{ name }}\"", + // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + + // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "Нет пользователей для отображения.", @@ -648,7 +667,8 @@ // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "Удалить группу \"{{ dsoName }}\"", - // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\"", + // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO Source message changed - Revise the translation "admin.access-control.groups.form.delete-group.modal.info": "Вы уверены, что хотите удалить группу \"{{ dsoName }}\"?", // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", @@ -1104,6 +1124,10 @@ // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Элемент содержит по крайней мере одну миниатюру, недоступную анонимным пользователям", + // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", + // TODO New key - Add a translation + "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", + // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Элемент содержит метаданные, недоступные анонимным пользователям", @@ -1188,7 +1212,8 @@ // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "Вы можете перетащить или выбрать CSV-файлы, содержащие пакетные операции с метаданными", - // "admin.batch-import.page.help": "Select the Collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the Items to import", + // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", + // TODO Source message changed - Revise the translation "admin.batch-import.page.help": "Выберите коллекцию для импорта. Затем перетащите или выберите ZIP-файл в формате SAF, содержащий элементы для импорта", // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", @@ -1491,6 +1516,30 @@ // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "Произошла ошибка при отправке запроса элемента.", + // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", + + // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", + + // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", + + // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", + + // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", + + // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", + // TODO New key - Add a translation + "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", + // "browse.back.all-results": "All browse results", "browse.back.all-results": "Все результаты поиска", @@ -1557,6 +1606,18 @@ // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "Просмотр по названию", + // "browse.metadata.map": "Browse by Geolocation", + // TODO New key - Add a translation + "browse.metadata.map": "Browse by Geolocation", + + // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", + // TODO New key - Add a translation + "browse.metadata.map.breadcrumbs": "Browse by Geolocation", + + // "browse.metadata.map.count.items": "items", + // TODO New key - Add a translation + "browse.metadata.map.count.items": "items", + // "pagination.next.button": "Next", "pagination.next.button": "Следующая", @@ -1674,7 +1735,8 @@ // "collection.create.head": "Create a Collection", "collection.create.head": "Создать коллекцию", - // "collection.create.notifications.success": "Successfully created the Collection", + // "collection.create.notifications.success": "Successfully created the collection", + // TODO Source message changed - Revise the translation "collection.create.notifications.success": "Коллекция успешно создана", // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", @@ -1782,10 +1844,12 @@ // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "Логотип коллекции", - // "collection.edit.logo.notifications.add.error": "Uploading Collection logo failed. Please verify the content before retrying.", + // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", + // TODO Source message changed - Revise the translation "collection.edit.logo.notifications.add.error": "Ошибка загрузки логотипа коллекции. Проверьте содержимое и повторите попытку.", - // "collection.edit.logo.notifications.add.success": "Upload Collection logo successful.", + // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", + // TODO Source message changed - Revise the translation "collection.edit.logo.notifications.add.success": "Логотип коллекции успешно загружен.", // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", @@ -1797,10 +1861,12 @@ // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "Ошибка при удалении логотипа", - // "collection.edit.logo.upload": "Drop a Collection Logo to upload", + // "collection.edit.logo.upload": "Drop a collection logo to upload", + // TODO Source message changed - Revise the translation "collection.edit.logo.upload": "Перетащите логотип коллекции для загрузки", - // "collection.edit.notifications.success": "Successfully edited the Collection", + // "collection.edit.notifications.success": "Successfully edited the collection", + // TODO Source message changed - Revise the translation "collection.edit.notifications.success": "Коллекция успешно отредактирована", // "collection.edit.return": "Back", @@ -1929,6 +1995,10 @@ // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "Не удалось удалить шаблон элемента.", + // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", + // TODO New key - Add a translation + "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", + // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "Редактировать шаблон элемента", @@ -1980,6 +2050,14 @@ // "collection.page.news": "News", "collection.page.news": "Новости", + // "collection.page.options": "Options", + // TODO New key - Add a translation + "collection.page.options": "Options", + + // "collection.search.breadcrumbs": "Search", + // TODO New key - Add a translation + "collection.search.breadcrumbs": "Search", + // "collection.search.results.head": "Search Results", "collection.search.results.head": "Результаты поиска", @@ -2106,7 +2184,8 @@ // "community.create.head": "Create a Community", "community.create.head": "Создать сообщество", - // "community.create.notifications.success": "Successfully created the Community", + // "community.create.notifications.success": "Successfully created the community", + // TODO Source message changed - Revise the translation "community.create.notifications.success": "Сообщество успешно создано", // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", @@ -2178,7 +2257,8 @@ // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "Перетащите логотип сообщества для загрузки", - // "community.edit.notifications.success": "Successfully edited the Community", + // "community.edit.notifications.success": "Successfully edited the community", + // TODO Source message changed - Revise the translation "community.edit.notifications.success": "Сообщество успешно отредактировано", // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", @@ -2244,6 +2324,22 @@ // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "Не удалось удалить группу роли '{{ role }}'", + // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", + + // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + + // "comcol-role.edit.delete.modal.cancel": "Cancel", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.cancel": "Cancel", + + // "comcol-role.edit.delete.modal.confirm": "Delete", + // TODO New key - Add a translation + "comcol-role.edit.delete.modal.confirm": "Delete", + // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "Администраторы", @@ -2334,13 +2430,22 @@ // "community.page.news": "News", "community.page.news": "Новости", + // "community.page.options": "Options", + // TODO New key - Add a translation + "community.page.options": "Options", + // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "Подсообщества и коллекции", + // "community.search.breadcrumbs": "Search", + // TODO New key - Add a translation + "community.search.breadcrumbs": "Search", + // "community.search.results.head": "Search Results", "community.search.results.head": "Результаты поиска", - // "community.sub-collection-list.head": "Collections in this Community", + // "community.sub-collection-list.head": "Collections in this community", + // TODO Source message changed - Revise the translation "community.sub-collection-list.head": "Коллекции в этом сообществе", // "community.sub-community-list.head": "Communities in this Community", @@ -2367,12 +2472,6 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(всегда требуется)", - // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", - "cookies.consent.app.disable-all.description": "Используйте этот переключатель, чтобы включить или отключить все сервисы.", - - // "cookies.consent.app.disable-all.title": "Enable or disable all services", - "cookies.consent.app.disable-all.title": "Включить или отключить все сервисы", - // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "С момента вашего последнего визита произошли изменения, пожалуйста, обновите своё согласие.", @@ -2382,21 +2481,20 @@ // "cookies.consent.decline": "Decline", "cookies.consent.decline": "Отклонить", + // "cookies.consent.decline-all": "Decline all", + // TODO New key - Add a translation + "cookies.consent.decline-all": "Decline all", + // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "Хорошо", // "cookies.consent.save": "Save", "cookies.consent.save": "Сохранить", - // "cookies.consent.content-notice.title": "Cookie Consent", - "cookies.consent.content-notice.title": "Согласие на использование cookies", - - // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + // TODO Source message changed - Revise the translation "cookies.consent.content-notice.description": "Мы собираем и обрабатываем вашу личную информацию для следующих целей: Аутентификация, Предпочтения, Подтверждение и Статистика.
Подробнее см. в нашей {privacyPolicy}.", - // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", - "cookies.consent.content-notice.description.no-privacy": "Мы собираем и обрабатываем вашу личную информацию для следующих целей: Аутентификация, Предпочтения, Подтверждение и Статистика.", - // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Настроить", @@ -2409,14 +2507,20 @@ // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "Чтобы узнать больше, пожалуйста, прочитайте нашу {privacyPolicy}.", + // "cookies.consent.content-modal.no-privacy-policy.text": "", + // TODO New key - Add a translation + "cookies.consent.content-modal.no-privacy-policy.text": "", + // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Информация, которую мы собираем", - // "cookies.consent.content-modal.services": "services", - "cookies.consent.content-modal.services": "сервисы", + // "cookies.consent.app.title.accessibility": "Accessibility Settings", + // TODO New key - Add a translation + "cookies.consent.app.title.accessibility": "Accessibility Settings", - // "cookies.consent.content-modal.service": "service", - "cookies.consent.content-modal.service": "сервис", + // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + // TODO New key - Add a translation + "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Аутентификация", @@ -2424,6 +2528,14 @@ // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "Необходимо для входа в систему", + // "cookies.consent.app.title.correlation-id": "Correlation ID", + // TODO New key - Add a translation + "cookies.consent.app.title.correlation-id": "Correlation ID", + + // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + // TODO New key - Add a translation + "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", + // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "Предпочтения", @@ -2448,6 +2560,14 @@ // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "Мы используем сервис Google reCAPTCHA при регистрации и восстановлении пароля", + // "cookies.consent.app.title.matomo": "Matomo", + // TODO New key - Add a translation + "cookies.consent.app.title.matomo": "Matomo", + + // "cookies.consent.app.description.matomo": "Allows us to track statistical data", + // TODO New key - Add a translation + "cookies.consent.app.description.matomo": "Allows us to track statistical data", + // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "Функциональные", @@ -2531,7 +2651,7 @@ // "dynamic-list.load-more": "Load more", // TODO New key - Add a translation - "dynamic-list.load-more": "Загрузить ещё", + "dynamic-list.load-more": "Load more", // "dropdown.clear": "Clear selection", "dropdown.clear": "Очистить выбор", @@ -2740,6 +2860,26 @@ // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "Удалить", + // "confirmation-modal.review-account-info.header": "Save the changes", + // TODO New key - Add a translation + "confirmation-modal.review-account-info.header": "Save the changes", + + // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", + // TODO New key - Add a translation + "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", + + // "confirmation-modal.review-account-info.cancel": "Cancel", + // TODO New key - Add a translation + "confirmation-modal.review-account-info.cancel": "Cancel", + + // "confirmation-modal.review-account-info.confirm": "Confirm", + // TODO New key - Add a translation + "confirmation-modal.review-account-info.confirm": "Confirm", + + // "confirmation-modal.review-account-info.save": "Save", + // TODO New key - Add a translation + "confirmation-modal.review-account-info.save": "Save", + // "error.bitstream": "Error fetching bitstream", "error.bitstream": "Ошибка при получении файла", @@ -2775,7 +2915,7 @@ // "error.profile-groups": "Error retrieving profile groups", // TODO New key - Add a translation - "error.profile-groups": "Ошибка при получении групп профилей", + "error.profile-groups": "Error retrieving profile groups", // "error.search-results": "Error fetching search results", "error.search-results": "Ошибка при получении результатов поиска", @@ -2795,8 +2935,25 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Ошибка при получении сообществ верхнего уровня", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Вы должны принять эту лицензию для завершения отправки. Если вы не можете сделать это сейчас, сохраните работу и вернитесь позже или удалите отправку.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + + // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Это поле ограничено текущим шаблоном: {{ pattern }}.", @@ -2843,12 +3000,20 @@ // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "Ограниченный файл", + // "file-download-link.secure-access": "Restricted bitstream available via secure access token", + // TODO New key - Add a translation + "file-download-link.secure-access": "Restricted bitstream available via secure access token", + // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "Ошибка при получении файлов для этого элемента", // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "авторское право © 2002-{{ year }}", + // "footer.link.accessibility": "Accessibility settings", + // TODO New key - Add a translation + "footer.link.accessibility": "Accessibility settings", + // "footer.link.dspace": "DSpace software", "footer.link.dspace": "Программное обеспечение DSpace", @@ -3053,9 +3218,14 @@ // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "Переместите элемент на новую позицию", - // "grant-deny-request-copy.deny": "Don't send copy", + // "grant-deny-request-copy.deny": "Deny access request", + // TODO Source message changed - Revise the translation "grant-deny-request-copy.deny": "Не отправлять копию", + // "grant-deny-request-copy.revoke": "Revoke access", + // TODO New key - Add a translation + "grant-deny-request-copy.revoke": "Revoke access", + // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "Назад", @@ -3080,7 +3250,8 @@ // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "Пожалуйста, введите тему", - // "grant-deny-request-copy.grant": "Send copy", + // "grant-deny-request-copy.grant": "Grant access request", + // TODO Source message changed - Revise the translation "grant-deny-request-copy.grant": "Отправить копию", // "grant-deny-request-copy.header": "Document copy request", @@ -3095,6 +3266,10 @@ // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "После выбора варианта будет предложен текст письма, который вы можете отредактировать.", + // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", + // TODO New key - Add a translation + "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", + // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "Этот запрос уже обработан. Вы можете использовать кнопку ниже, чтобы вернуться на главную страницу.", @@ -3107,12 +3282,45 @@ // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "Разрешить запрос копии документа", - // "grant-request-copy.intro": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", - "grant-request-copy.intro": "Сообщение будет отправлено заявителю. Запрошенные документы будут приложены.", + // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", + // TODO New key - Add a translation + "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", + + // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", + // TODO New key - Add a translation + "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", + + // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // TODO New key - Add a translation + "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "Запрос на предмет успешно выполнен", + // "grant-request-copy.access-period.header": "Access period", + // TODO New key - Add a translation + "grant-request-copy.access-period.header": "Access period", + + // "grant-request-copy.access-period.+1DAY": "1 day", + // TODO New key - Add a translation + "grant-request-copy.access-period.+1DAY": "1 day", + + // "grant-request-copy.access-period.+7DAYS": "1 week", + // TODO New key - Add a translation + "grant-request-copy.access-period.+7DAYS": "1 week", + + // "grant-request-copy.access-period.+1MONTH": "1 month", + // TODO New key - Add a translation + "grant-request-copy.access-period.+1MONTH": "1 month", + + // "grant-request-copy.access-period.+3MONTHS": "3 months", + // TODO New key - Add a translation + "grant-request-copy.access-period.+3MONTHS": "3 months", + + // "grant-request-copy.access-period.FOREVER": "Forever", + // TODO New key - Add a translation + "grant-request-copy.access-period.FOREVER": "Forever", + // "health.breadcrumbs": "Health", "health.breadcrumbs": "Проверки", @@ -3191,6 +3399,82 @@ // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "Выберите сообщество для просмотра коллекций.", + // "info.accessibility-settings.breadcrumbs": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.breadcrumbs": "Accessibility settings", + + // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + // TODO New key - Add a translation + "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", + + // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", + + // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + // TODO New key - Add a translation + "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", + + // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", + + // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + // TODO New key - Add a translation + "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", + + // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", + + // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", + + // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", + + // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", + + // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", + + // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + // TODO New key - Add a translation + "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", + + // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", + + // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + // TODO New key - Add a translation + "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", + + // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", + + // "info.accessibility-settings.reset-notification": "Successfully reset settings.", + // TODO New key - Add a translation + "info.accessibility-settings.reset-notification": "Successfully reset settings.", + + // "info.accessibility-settings.reset": "Reset accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.reset": "Reset accessibility settings", + + // "info.accessibility-settings.submit": "Save accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.submit": "Save accessibility settings", + + // "info.accessibility-settings.title": "Accessibility settings", + // TODO New key - Add a translation + "info.accessibility-settings.title": "Accessibility settings", + // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "Я прочитал и согласен с соглашением конечного пользователя.", @@ -3272,6 +3556,14 @@ // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "Поддержка COAR Notify", + // "item.alerts.private": "This item is non-discoverable", + // TODO New key - Add a translation + "item.alerts.private": "This item is non-discoverable", + + // "item.alerts.withdrawn": "This item has been withdrawn", + // TODO New key - Add a translation + "item.alerts.withdrawn": "This item has been withdrawn", + // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "Запрос на восстановление", @@ -3284,6 +3576,10 @@ // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "Редактировать политики объекта", + // "item.badge.status": "Item status:", + // TODO New key - Add a translation + "item.badge.status": "Item status:", + // "item.badge.private": "Non-discoverable", "item.badge.private": "Приватный", @@ -3439,7 +3735,7 @@ // "item.edit.bitstreams.load-more.link": "Load more", // TODO New key - Add a translation - "item.edit.bitstreams.load-more.link": "Загрузить ещё", + "item.edit.bitstreams.load-more.link": "Load more", // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "Отмена", @@ -3608,11 +3904,11 @@ // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", // TODO New key - Add a translation - "item.edit.metadata.edit.buttons.enable-free-text-editing": "Включить редактирование свободного текста", + "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", // TODO New key - Add a translation - "item.edit.metadata.edit.buttons.disable-free-text-editing": "Отключить редактирование свободного текста", + "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "Подтвердить", @@ -3908,7 +4204,8 @@ // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "Управлять связанными коллекциями", - // "item.edit.tabs.status.buttons.move.button": "Move this Item to a different Collection", + // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", + // TODO Source message changed - Revise the translation "item.edit.tabs.status.buttons.move.button": "Переместить этот элемент в другую коллекцию", // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", @@ -4004,6 +4301,62 @@ // "item.page.description": "Description", "item.page.description": "Описание", + // "item.page.org-unit": "Organizational Unit", + // TODO New key - Add a translation + "item.page.org-unit": "Organizational Unit", + + // "item.page.org-units": "Organizational Units", + // TODO New key - Add a translation + "item.page.org-units": "Organizational Units", + + // "item.page.project": "Research Project", + // TODO New key - Add a translation + "item.page.project": "Research Project", + + // "item.page.projects": "Research Projects", + // TODO New key - Add a translation + "item.page.projects": "Research Projects", + + // "item.page.publication": "Publications", + // TODO New key - Add a translation + "item.page.publication": "Publications", + + // "item.page.publications": "Publications", + // TODO New key - Add a translation + "item.page.publications": "Publications", + + // "item.page.article": "Article", + // TODO New key - Add a translation + "item.page.article": "Article", + + // "item.page.articles": "Articles", + // TODO New key - Add a translation + "item.page.articles": "Articles", + + // "item.page.journal": "Journal", + // TODO New key - Add a translation + "item.page.journal": "Journal", + + // "item.page.journals": "Journals", + // TODO New key - Add a translation + "item.page.journals": "Journals", + + // "item.page.journal-issue": "Journal Issue", + // TODO New key - Add a translation + "item.page.journal-issue": "Journal Issue", + + // "item.page.journal-issues": "Journal Issues", + // TODO New key - Add a translation + "item.page.journal-issues": "Journal Issues", + + // "item.page.journal-volume": "Journal Volume", + // TODO New key - Add a translation + "item.page.journal-volume": "Journal Volume", + + // "item.page.journal-volumes": "Journal Volumes", + // TODO New key - Add a translation + "item.page.journal-volumes": "Journal Volumes", + // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "ISSN журнала", @@ -4019,6 +4372,10 @@ // "item.page.volume-title": "Volume Title", "item.page.volume-title": "Название тома", + // "item.page.dcterms.spatial": "Geospatial point", + // TODO New key - Add a translation + "item.page.dcterms.spatial": "Geospatial point", + // "item.search.results.head": "Item Search Results", "item.search.results.head": "Результаты поиска элементов", @@ -4097,9 +4454,14 @@ // "item.page.abstract": "Abstract", "item.page.abstract": "Аннотация", - // "item.page.author": "Authors", + // "item.page.author": "Author", + // TODO Source message changed - Revise the translation "item.page.author": "Авторы", + // "item.page.authors": "Authors", + // TODO New key - Add a translation + "item.page.authors": "Authors", + // "item.page.citation": "Citation", "item.page.citation": "Цитирование", @@ -4145,6 +4507,10 @@ // "item.page.link.simple": "Simple item page", "item.page.link.simple": "Простая страница элемента", + // "item.page.options": "Options", + // TODO New key - Add a translation + "item.page.options": "Options", + // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", @@ -4226,6 +4592,10 @@ // "item.preview.dc.date.issued": "Published date:", "item.preview.dc.date.issued": "Дата публикации:", + // "item.preview.dc.description": "Description:", + // TODO New key - Add a translation + "item.preview.dc.description": "Description:", + // "item.preview.dc.description.abstract": "Abstract:", "item.preview.dc.description.abstract": "Резюме:", @@ -4244,12 +4614,44 @@ // "item.preview.dc.type": "Type:", "item.preview.dc.type": "Тип:", + // "item.preview.oaire.version": "Version", + // TODO New key - Add a translation + "item.preview.oaire.version": "Version", + // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "Выпуск", // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "Том", + // "item.preview.oaire.citation.title": "Citation container", + // TODO New key - Add a translation + "item.preview.oaire.citation.title": "Citation container", + + // "item.preview.oaire.citation.startPage": "Citation start page", + // TODO New key - Add a translation + "item.preview.oaire.citation.startPage": "Citation start page", + + // "item.preview.oaire.citation.endPage": "Citation end page", + // TODO New key - Add a translation + "item.preview.oaire.citation.endPage": "Citation end page", + + // "item.preview.dc.relation.hasversion": "Has version", + // TODO New key - Add a translation + "item.preview.dc.relation.hasversion": "Has version", + + // "item.preview.dc.relation.ispartofseries": "Is part of series", + // TODO New key - Add a translation + "item.preview.dc.relation.ispartofseries": "Is part of series", + + // "item.preview.dc.rights": "Rights", + // TODO New key - Add a translation + "item.preview.dc.rights": "Rights", + + // "item.preview.dc.identifier.other": "Other Identifier", + // TODO Source message changed - Revise the translation + "item.preview.dc.identifier.other": "Другой идентификатор:", + // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4277,12 +4679,20 @@ // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", + // "item.preview.person.affiliation.name": "Affiliations:", + // TODO New key - Add a translation + "item.preview.person.affiliation.name": "Affiliations:", + // "item.preview.project.funder.name": "Funder:", "item.preview.project.funder.name": "Спонсор:", // "item.preview.project.funder.identifier": "Funder Identifier:", "item.preview.project.funder.identifier": "Идентификатор спонсора:", + // "item.preview.project.investigator": "Project Investigator", + // TODO New key - Add a translation + "item.preview.project.investigator": "Project Investigator", + // "item.preview.oaire.awardNumber": "Funding ID:", "item.preview.oaire.awardNumber": "ID финансирования:", @@ -4319,6 +4729,26 @@ // "item.preview.dspace.entity.type": "Entity Type:", "item.preview.dspace.entity.type": "Тип сущности:", + // "item.preview.creativework.publisher": "Publisher", + // TODO New key - Add a translation + "item.preview.creativework.publisher": "Publisher", + + // "item.preview.creativeworkseries.issn": "ISSN", + // TODO New key - Add a translation + "item.preview.creativeworkseries.issn": "ISSN", + + // "item.preview.dc.identifier.issn": "ISSN", + // TODO New key - Add a translation + "item.preview.dc.identifier.issn": "ISSN", + + // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", + // TODO New key - Add a translation + "item.preview.dc.identifier.openalex": "OpenAlex Identifier", + + // "item.preview.dc.description": "Description", + // TODO New key - Add a translation + "item.preview.dc.description": "Description", + // "item.select.confirm": "Confirm selected", "item.select.confirm": "Подтвердить выбранное", @@ -4637,6 +5067,10 @@ // "journal.page.publisher": "Publisher", "journal.page.publisher": "Издатель", + // "journal.page.options": "Options", + // TODO New key - Add a translation + "journal.page.options": "Options", + // "journal.page.titleprefix": "Journal: ", "journal.page.titleprefix": "Журнал: ", @@ -4673,6 +5107,10 @@ // "journalissue.page.number": "Number", "journalissue.page.number": "Номер", + // "journalissue.page.options": "Options", + // TODO New key - Add a translation + "journalissue.page.options": "Options", + // "journalissue.page.titleprefix": "Journal Issue: ", "journalissue.page.titleprefix": "Выпуск журнала: ", @@ -4691,6 +5129,10 @@ // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "Дата выпуска", + // "journalvolume.page.options": "Options", + // TODO New key - Add a translation + "journalvolume.page.options": "Options", + // "journalvolume.page.titleprefix": "Journal Volume: ", "journalvolume.page.titleprefix": "Том журнала: ", @@ -4808,6 +5250,10 @@ // "login.form.password": "Password", "login.form.password": "Пароль", + // "login.form.saml": "Log in with SAML", + // TODO New key - Add a translation + "login.form.saml": "Log in with SAML", + // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Войти через Shibboleth", @@ -4904,6 +5350,10 @@ // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "Сообщества и коллекции", + // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", + // TODO New key - Add a translation + "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", + // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "Панель управления", @@ -4976,18 +5426,6 @@ // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "Закрепить боковую панель", - // "menu.section.icon.processes": "Processes Health", - "menu.section.icon.processes": "Раздел меню состояния процессов", - - // "menu.section.icon.registries": "Registries menu section", - "menu.section.icon.registries": "Раздел меню реестров", - - // "menu.section.icon.statistics_task": "Statistics Task menu section", - "menu.section.icon.statistics_task": "Раздел меню задач статистики", - - // "menu.section.icon.workflow": "Administer workflow menu section", - "menu.section.icon.workflow": "Раздел меню управления рабочим процессом", - // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "Открепить боковую панель", @@ -5195,6 +5633,10 @@ // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "Кураторские элементы", + // "mydspace.status": "My DSpace status:", + // TODO New key - Add a translation + "mydspace.status": "My DSpace status:", + // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "В архиве", @@ -5291,9 +5733,21 @@ // "nav.user.description": "User profile bar", "nav.user.description": "Панель профиля пользователя", + // "listelement.badge.dso-type": "Item type:", + // TODO New key - Add a translation + "listelement.badge.dso-type": "Item type:", + // "none.listelement.badge": "Item", "none.listelement.badge": "Элемент", + // "publication-claim.title": "Publication claim", + // TODO New key - Add a translation + "publication-claim.title": "Publication claim", + + // "publication-claim.source.description": "Below you can see all the sources.", + // TODO New key - Add a translation + "publication-claim.source.description": "Below you can see all the sources.", + // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "Контроль качества", @@ -5528,6 +5982,10 @@ // "orgunit.page.id": "ID", "orgunit.page.id": "ID", + // "orgunit.page.options": "Options", + // TODO New key - Add a translation + "orgunit.page.options": "Options", + // "orgunit.page.titleprefix": "Organizational Unit: ", "orgunit.page.titleprefix": "Организационное подразделение: ", @@ -5582,6 +6040,10 @@ // "person.page.link.full": "Show all metadata", "person.page.link.full": "Показать все метаданные", + // "person.page.options": "Options", + // TODO New key - Add a translation + "person.page.options": "Options", + // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", @@ -5636,6 +6098,10 @@ // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "Пожалуйста, выберите файл", + // "process.new.parameter.integer.required": "Parameter value is required", + // TODO New key - Add a translation + "process.new.parameter.integer.required": "Parameter value is required", + // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "Требуется значение параметра", @@ -5834,6 +6300,18 @@ // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "Обновить профиль", + // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + // TODO New key - Add a translation + "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", + + // "profile.card.accessibility.header": "Accessibility", + // TODO New key - Add a translation + "profile.card.accessibility.header": "Accessibility", + + // "profile.card.accessibility.link": "Go to Accessibility Settings Page", + // TODO New key - Add a translation + "profile.card.accessibility.link": "Go to Accessibility Settings Page", + // "profile.card.identify": "Identify", "profile.card.identify": "Идентификация", @@ -5945,6 +6423,10 @@ // "project.page.keyword": "Keywords", "project.page.keyword": "Ключевые слова", + // "project.page.options": "Options", + // TODO New key - Add a translation + "project.page.options": "Options", + // "project.page.status": "Status", "project.page.status": "Статус", @@ -5975,6 +6457,10 @@ // "publication.page.publisher": "Publisher", "publication.page.publisher": "Издатель", + // "publication.page.options": "Options", + // TODO New key - Add a translation + "publication.page.options": "Options", + // "publication.page.titleprefix": "Publication: ", "publication.page.titleprefix": "Публикация: ", @@ -6086,6 +6572,10 @@ // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "Граф OpenAIRE", + // "suggestion.source.openalex": "OpenAlex", + // TODO New key - Add a translation + "suggestion.source.openalex": "OpenAlex", + // "suggestion.from.source": "from the ", "suggestion.from.source": "из ", @@ -6230,68 +6720,109 @@ // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "Не удалось добавить связь", - // "relationships.isAuthorOf": "Authors", - "relationships.isAuthorOf": "Авторы", + // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", + + // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Publication.isProjectOfPublication.Project": "Research Projects", + + // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + + // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + + // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + + // "relationships.Publication.isContributorOfPublication.Person": "Contributor", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.Person": "Contributor", - // "relationships.isAuthorOf.Person": "Authors (persons)", - "relationships.isAuthorOf.Person": "Авторы (физические лица)", + // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + // TODO New key - Add a translation + "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - // "relationships.isAuthorOf.OrgUnit": "Authors (organizational units)", - "relationships.isAuthorOf.OrgUnit": "Авторы (организационные единицы)", + // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - // "relationships.isIssueOf": "Journal Issues", - "relationships.isIssueOf": "Выпуски журналов", + // "relationships.Person.isProjectOfPerson.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.Person.isProjectOfPerson.Project": "Research Projects", - // "relationships.isIssueOf.JournalIssue": "Journal Issue", - "relationships.isIssueOf.JournalIssue": "Выпуск журнала", + // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - // "relationships.isJournalIssueOf": "Journal Issue", - "relationships.isJournalIssueOf": "Выпуск журнала", + // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - // "relationships.isJournalOf": "Journals", - "relationships.isJournalOf": "Журналы", + // "relationships.Project.isPublicationOfProject.Publication": "Publications", + // TODO New key - Add a translation + "relationships.Project.isPublicationOfProject.Publication": "Publications", - // "relationships.isJournalVolumeOf": "Journal Volume", - "relationships.isJournalVolumeOf": "Том журнала", + // "relationships.Project.isPersonOfProject.Person": "Authors", + // TODO New key - Add a translation + "relationships.Project.isPersonOfProject.Person": "Authors", - // "relationships.isOrgUnitOf": "Organizational Units", - "relationships.isOrgUnitOf": "Организационные единицы", + // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + // TODO New key - Add a translation + "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - // "relationships.isPersonOf": "Authors", - "relationships.isPersonOf": "Авторы", + // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + // TODO New key - Add a translation + "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - // "relationships.isProjectOf": "Research Projects", - "relationships.isProjectOf": "Научные проекты", + // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - // "relationships.isPublicationOf": "Publications", - "relationships.isPublicationOf": "Публикации", + // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + // TODO New key - Add a translation + "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - // "relationships.isPublicationOfJournalIssue": "Articles", - "relationships.isPublicationOfJournalIssue": "Статьи", + // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - // "relationships.isSingleJournalOf": "Journal", - "relationships.isSingleJournalOf": "Журнал", + // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - // "relationships.isSingleVolumeOf": "Journal Volume", - "relationships.isSingleVolumeOf": "Том журнала", + // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + // TODO New key - Add a translation + "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - // "relationships.isVolumeOf": "Journal Volumes", - "relationships.isVolumeOf": "Тома журналов", + // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + // TODO New key - Add a translation + "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - // "relationships.isVolumeOf.JournalVolume": "Journal Volume", - "relationships.isVolumeOf.JournalVolume": "Том журнала", + // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - // "relationships.isContributorOf": "Contributors", - "relationships.isContributorOf": "Авторы", + // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + // TODO New key - Add a translation + "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", - // "relationships.isContributorOf.OrgUnit": "Contributor (Organizational Unit)", - "relationships.isContributorOf.OrgUnit": "Автор (организационная единица)", + // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + // TODO New key - Add a translation + "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - // "relationships.isContributorOf.Person": "Contributor", - "relationships.isContributorOf.Person": "Автор", + // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + // TODO New key - Add a translation + "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - // "relationships.isFundingAgencyOf.OrgUnit": "Funder", - "relationships.isFundingAgencyOf.OrgUnit": "Финансирующая организация", + // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + // TODO New key - Add a translation + "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", // "repository.image.logo": "Repository logo", "repository.image.logo": "Логотип репозитория", @@ -6538,6 +7069,9 @@ // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "Описание файла", + // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", + // TODO New key - Add a translation + "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "Тип", @@ -6587,6 +7121,10 @@ // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", + // "search.filters.applied.f.point": "Coordinates", + // TODO New key - Add a translation + "search.filters.applied.f.point": "Coordinates", + // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "Название", @@ -6626,6 +7164,14 @@ // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "Поиск по дате публикации", + // "search.filters.filter.creativeDatePublished.min.label": "Start", + // TODO New key - Add a translation + "search.filters.filter.creativeDatePublished.min.label": "Start", + + // "search.filters.filter.creativeDatePublished.max.label": "End", + // TODO New key - Add a translation + "search.filters.filter.creativeDatePublished.max.label": "End", + // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "Редактор", @@ -6701,6 +7247,10 @@ // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "Имя файла", + // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", + // TODO New key - Add a translation + "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", + // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "Имя файла", @@ -6788,6 +7338,14 @@ // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "Поиск по дате основания", + // "search.filters.filter.organizationFoundingDate.min.label": "Start", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.min.label": "Start", + + // "search.filters.filter.organizationFoundingDate.max.label": "End", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.max.label": "End", + // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "Область", @@ -6839,6 +7397,18 @@ // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "Поиск по контролю", + // "search.filters.filter.access_status.head": "Access type", + // TODO New key - Add a translation + "search.filters.filter.access_status.head": "Access type", + + // "search.filters.filter.access_status.placeholder": "Access type", + // TODO New key - Add a translation + "search.filters.filter.access_status.placeholder": "Access type", + + // "search.filters.filter.access_status.label": "Search by access type", + // TODO New key - Add a translation + "search.filters.filter.access_status.label": "Search by access type", + // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "Выпуск журнала", @@ -6863,6 +7433,14 @@ // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "Нет", + // "search.filters.has_geospatial_metadata.true": "Yes", + // TODO New key - Add a translation + "search.filters.has_geospatial_metadata.true": "Yes", + + // "search.filters.has_geospatial_metadata.false": "No", + // TODO New key - Add a translation + "search.filters.has_geospatial_metadata.false": "No", + // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "Нет", @@ -6941,6 +7519,10 @@ // "search.results.empty": "Your search returned no results.", "search.results.empty": "По вашему запросу нет результатов.", + // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", + // TODO New key - Add a translation + "search.results.geospatial-map.empty": "No results on this page with geospatial locations", + // "search.results.view-result": "View", "search.results.view-result": "Просмотр", @@ -6998,6 +7580,10 @@ // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "Показать в виде списка", + // "search.view-switch.show-geospatialMap": "Show as map", + // TODO New key - Add a translation + "search.view-switch.show-geospatialMap": "Show as map", + // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "Снять выделение с элемента", @@ -7202,6 +7788,10 @@ // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", + // "submission.import-external.source.dataciteProject": "DataCite", + // TODO New key - Add a translation + "submission.import-external.source.dataciteProject": "DataCite", + // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", @@ -7259,6 +7849,38 @@ // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Реестр научных организаций (ROR)", + // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", + // TODO New key - Add a translation + "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", + + // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", + // TODO New key - Add a translation + "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", + + // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", + // TODO New key - Add a translation + "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", + + // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", + // TODO New key - Add a translation + "submission.import-external.source.openalexPerson": "OpenAlex Search by name", + + // "submission.import-external.source.openalexJournal": "OpenAlex Journals", + // TODO New key - Add a translation + "submission.import-external.source.openalexJournal": "OpenAlex Journals", + + // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", + // TODO New key - Add a translation + "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", + + // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", + // TODO New key - Add a translation + "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", + + // "submission.import-external.source.openalexFunder": "OpenAlex Funders", + // TODO New key - Add a translation + "submission.import-external.source.openalexFunder": "OpenAlex Funders", + // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "Предварительный просмотр элемента", @@ -7508,6 +8130,10 @@ // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Локальные выпуски журналов ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Локальные тома журналов ({{ count }})", @@ -7556,6 +8182,26 @@ // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Журналы Sherpa по ISSN ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Поиск финансирующих агентств", @@ -7586,6 +8232,10 @@ // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Финансирующая организация проекта", + // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", + // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Поиск...", @@ -7601,6 +8251,10 @@ // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "Выпуски журнала", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", + // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Тома журнала", @@ -7664,6 +8318,10 @@ // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Выбранные журналы", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", + // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Выбранный том журнала", @@ -7754,6 +8412,26 @@ // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Результаты поиска", + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", + // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "Результаты поиска", @@ -7859,6 +8537,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Лицензия Creative Commons", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Переработать", @@ -8024,6 +8706,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Загрузка прошла успешно", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Если отмечено, элемент будет обнаруживаться при поиске/просмотре. Если не отмечено, элемент будет доступен только по прямой ссылке и не появится в поиске/просмотре.", @@ -8312,6 +9006,10 @@ // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "Подписаться", + // "subscriptions.unsubscribe": "Unsubscribe", + // TODO New key - Add a translation + "subscriptions.unsubscribe": "Unsubscribe", + // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "Подписки", @@ -8384,7 +9082,8 @@ // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "Подписанный элемент был удалён или у вас нет прав для его просмотра.", - // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a Community or Collection, use the subscription button on the object's page.", + // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", + // TODO Source message changed - Revise the translation "subscriptions.table.empty.message": "У вас нет подписок. Чтобы подписаться на обновления по электронной почте для сообщества или коллекции, используйте кнопку подписки на странице объекта.", // "thumbnail.default.alt": "Thumbnail Image", @@ -9226,6 +9925,7 @@ "ldn-registered-services.new": "НОВЫЙ", // "ldn-registered-services.new.breadcrumbs": "Registered Services", "ldn-registered-services.new.breadcrumbs": "Зарегистрированные сервисы", + // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "Включено", // "ldn-service.overview.table.disabled": "Disabled", @@ -9235,7 +9935,6 @@ // "ldn-service.overview.table.clickToDisable": "Click to disable", "ldn-service.overview.table.clickToDisable": "Нажмите, чтобы отключить", - // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "Редактировать сервис", // "ldn-create-service.title": "Create service", @@ -9283,7 +9982,6 @@ // "ldn-service.form.label.placeholder.default-select": "Select a pattern", "ldn-service.form.label.placeholder.default-select": "Выберите шаблон", - // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "Подтвердить и принять", // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", @@ -9291,7 +9989,6 @@ // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-accept.category": "Подтверждения", - // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "Подтвердить и отклонить", // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", @@ -9299,7 +9996,6 @@ // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-reject.category": "Подтверждения", - // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "Подтвердить и предварительно принять", // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", @@ -9314,7 +10010,6 @@ // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-reject.category": "Подтверждения", - // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "Объявить об одобрении", // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", @@ -9329,7 +10024,6 @@ // "ldn-service.form.pattern.announce-ingest.category": "Announcements", "ldn-service.form.pattern.announce-ingest.category": "Объявления", - // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "Объявить о взаимосвязи", // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", @@ -9337,7 +10031,6 @@ // "ldn-service.form.pattern.announce-relationship.category": "Announcements", "ldn-service.form.pattern.announce-relationship.category": "Объявления", - // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "Объявить о рецензии", // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", @@ -9345,7 +10038,6 @@ // "ldn-service.form.pattern.announce-review.category": "Announcements", "ldn-service.form.pattern.announce-review.category": "Объявления", - // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "Объявить о результате сервиса", // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", @@ -9353,7 +10045,6 @@ // "ldn-service.form.pattern.announce-service-result.category": "Announcements", "ldn-service.form.pattern.announce-service-result.category": "Объявления", - // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "Запросить одобрение", // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", @@ -9368,7 +10059,6 @@ // "ldn-service.form.pattern.request-ingest.category": "Requests", "ldn-service.form.pattern.request-ingest.category": "Запросы", - // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "Запросить рецензию", // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", @@ -9376,7 +10066,6 @@ // "ldn-service.form.pattern.request-review.category": "Requests", "ldn-service.form.pattern.request-review.category": "Запросы", - // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "Отменить предложение", // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", @@ -9507,6 +10196,10 @@ // "item.page.endorsement": "Endorsement", "item.page.endorsement": "Подтверждение", + // "item.page.places": "Related places", + // TODO New key - Add a translation + "item.page.places": "Related places", + // "item.page.review": "Review", "item.page.review": "Обзор", @@ -9527,15 +10220,15 @@ // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "Ниже вы можете увидеть все темы, полученные из подписок на {{source}} по поводу", - // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", "quality-assurance.events.description": "Ниже список всех предложений по выбранной теме {{topic}}, связанной с {{source}}.", // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "Ниже список всех предложений по выбранной теме {{topic}}, связанной с {{source}} и ", - // "quality-assurance.event.table.event.message.serviceUrl": "Service URL:", - "quality-assurance.event.table.event.message.serviceUrl": "URL услуги:", + // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + // TODO New key - Add a translation + "quality-assurance.event.table.event.message.serviceUrl": "Actor:", // "quality-assurance.event.table.event.message.link": "Link:", "quality-assurance.event.table.event.message.link": "Ссылка:", @@ -9630,6 +10323,10 @@ // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "Запрошенный {{ offerType }} для {{ serviceName }} был отклонён.", + // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", + // TODO New key - Add a translation + "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", + // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "Запрошенный {{ offerType }} для {{ serviceName }} находится в ожидании.", @@ -9654,6 +10351,14 @@ // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "Закрыть модальное окно", + // "ldn-service-usesActorEmailId": "Requires actor email in notifications", + // TODO New key - Add a translation + "ldn-service-usesActorEmailId": "Requires actor email in notifications", + + // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", + // TODO New key - Add a translation + "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", + // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "Тип элемента — статья журнала или набор данных", @@ -9669,8 +10374,6 @@ // "doi-filter.label": "DOI filter", "doi-filter.label": "Фильтр DOI", - - // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "Тип документа равен driver", @@ -9770,7 +10473,6 @@ // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", "admin-notify-logs.NOTIFY.incoming.untrusted": "Сейчас отображаются: Недоверенные уведомления", - // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Недоверенный", @@ -9849,13 +10551,16 @@ // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "Уведомление о связи", + // "search.filters.applied.f.access_status": "Access type", + // TODO New key - Add a translation + "search.filters.applied.f.access_status": "Access type", + // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "Время последней обработки ", // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "Минимальный диапазон", - // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "Максимальный диапазон", @@ -10209,15 +10914,15 @@ // "form.date-picker.placeholder.year": "Year", // TODO New key - Add a translation - "form.date-picker.placeholder.year": "Год", + "form.date-picker.placeholder.year": "Year", // "form.date-picker.placeholder.month": "Month", // TODO New key - Add a translation - "form.date-picker.placeholder.month": "Месяц", + "form.date-picker.placeholder.month": "Month", // "form.date-picker.placeholder.day": "Day", // TODO New key - Add a translation - "form.date-picker.placeholder.day": "День", + "form.date-picker.placeholder.day": "Day", // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "Лицензия Creative Commons", @@ -10240,30 +10945,245 @@ // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "Страница будет перезагружена. Выбран фильтр {{ filter }}.", - // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", // TODO New key - Add a translation - "live-region.ordering.instructions": "Нажмите пробел, чтобы изменить порядок {{ itemName }}.", + "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // TODO New key - Add a translation - "live-region.ordering.status": "{{ itemName }}, захвачено. Текущая позиция в списке: {{ index }} из {{ length }}. Нажимайте клавиши со стрелками вверх и вниз, чтобы изменить положение, пробел для удаления, Escape для отмены.", + "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // TODO New key - Add a translation - "live-region.ordering.moved": "{{ itemName }} перемещен в позицию {{ index }} на {{ length }}. Нажимайте клавиши со стрелками вверх и вниз, чтобы изменить положение, пробел, чтобы опустить, Escape, чтобы отменить.", + "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", // TODO New key - Add a translation - "live-region.ordering.dropped": "{{ itemName }}, перемещен в позицию {{ index }} длины {{ length }}.", + "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", // "dynamic-form-array.sortable-list.label": "Sortable list", // TODO New key - Add a translation - "dynamic-form-array.sortable-list.label": "Сортируемый список", + "dynamic-form-array.sortable-list.label": "Sortable list", + + // "external-login.component.or": "or", + // TODO New key - Add a translation + "external-login.component.or": "or", + + // "external-login.confirmation.header": "Information needed to complete the login process", + // TODO New key - Add a translation + "external-login.confirmation.header": "Information needed to complete the login process", + + // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", + // TODO New key - Add a translation + "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", + + // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", + // TODO New key - Add a translation + "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", + + // "external-login.confirm-email.header": "Confirm or update email", + // TODO New key - Add a translation + "external-login.confirm-email.header": "Confirm or update email", + + // "external-login.confirmation.email-required": "Email is required.", + // TODO New key - Add a translation + "external-login.confirmation.email-required": "Email is required.", + + // "external-login.confirmation.email-label": "User Email", + // TODO New key - Add a translation + "external-login.confirmation.email-label": "User Email", + + // "external-login.confirmation.email-invalid": "Invalid email format.", + // TODO New key - Add a translation + "external-login.confirmation.email-invalid": "Invalid email format.", + + // "external-login.confirm.button.label": "Confirm this email", + // TODO New key - Add a translation + "external-login.confirm.button.label": "Confirm this email", + + // "external-login.confirm-email-sent.header": "Confirmation email sent", + // TODO New key - Add a translation + "external-login.confirm-email-sent.header": "Confirmation email sent", + + // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", + // TODO New key - Add a translation + "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", + + // "external-login.provide-email.header": "Provide email", + // TODO New key - Add a translation + "external-login.provide-email.header": "Provide email", + + // "external-login.provide-email.button.label": "Send Verification link", + // TODO New key - Add a translation + "external-login.provide-email.button.label": "Send Verification link", + + // "external-login-validation.review-account-info.header": "Review your account information", + // TODO New key - Add a translation + "external-login-validation.review-account-info.header": "Review your account information", + + // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", + // TODO New key - Add a translation + "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", + + // "external-login-validation.review-account-info.table.header.information": "Information", + // TODO New key - Add a translation + "external-login-validation.review-account-info.table.header.information": "Information", + + // "external-login-validation.review-account-info.table.header.received-value": "Received value", + // TODO New key - Add a translation + "external-login-validation.review-account-info.table.header.received-value": "Received value", + + // "external-login-validation.review-account-info.table.header.current-value": "Current value", + // TODO New key - Add a translation + "external-login-validation.review-account-info.table.header.current-value": "Current value", + + // "external-login-validation.review-account-info.table.header.action": "Override", + // TODO New key - Add a translation + "external-login-validation.review-account-info.table.header.action": "Override", + + // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", + // TODO New key - Add a translation + "external-login-validation.review-account-info.table.row.not-applicable": "N/A", + + // "on-label": "ON", + // TODO New key - Add a translation + "on-label": "ON", + + // "off-label": "OFF", + // TODO New key - Add a translation + "off-label": "OFF", - // "browse.metadata.srsc.tree.descrption": "Select a subject to add as search filter", - "browse.metadata.srsc.tree.descrption": "Выберите тему для добавления в качестве фильтра поиска", + // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", + // TODO New key - Add a translation + "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", + + // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", + // TODO New key - Add a translation + "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", + + // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", + // TODO New key - Add a translation + "review-account-info.alert.error.content": "Something went wrong. Please try again later.", + + // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", + // TODO New key - Add a translation + "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", + + // "external-login.error.notification": "There was an error while processing your request. Please try again later.", + // TODO New key - Add a translation + "external-login.error.notification": "There was an error while processing your request. Please try again later.", + + // "external-login.connect-to-existing-account.label": "Connect to an existing user", + // TODO New key - Add a translation + "external-login.connect-to-existing-account.label": "Connect to an existing user", + + // "external-login.modal.label.close": "Close", + // TODO New key - Add a translation + "external-login.modal.label.close": "Close", + + // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", + // TODO New key - Add a translation + "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", + + // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", + // TODO New key - Add a translation + "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", + + // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", + // TODO New key - Add a translation + "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", + + // "external-login-page.orcid-confirmation.firstname": "First name", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.firstname": "First name", + + // "external-login-page.orcid-confirmation.firstname.label": "First name", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.firstname.label": "First name", + + // "external-login-page.orcid-confirmation.lastname": "Last name", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.lastname": "Last name", + + // "external-login-page.orcid-confirmation.lastname.label": "Last name", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.lastname.label": "Last name", + + // "external-login-page.orcid-confirmation.netid": "Account Identifier", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.netid": "Account Identifier", + + // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", + + // "external-login-page.orcid-confirmation.email": "Email", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.email": "Email", + + // "external-login-page.orcid-confirmation.email.label": "Email", + // TODO New key - Add a translation + "external-login-page.orcid-confirmation.email.label": "Email", + + // "search.filters.access_status.open.access": "Open access", + // TODO New key - Add a translation + "search.filters.access_status.open.access": "Open access", + + // "search.filters.access_status.restricted": "Restricted access", + // TODO New key - Add a translation + "search.filters.access_status.restricted": "Restricted access", + + // "search.filters.access_status.embargo": "Embargoed access", + // TODO New key - Add a translation + "search.filters.access_status.embargo": "Embargoed access", + + // "search.filters.access_status.metadata.only": "Metadata only", + // TODO New key - Add a translation + "search.filters.access_status.metadata.only": "Metadata only", + + // "search.filters.access_status.unknown": "Unknown", + // TODO New key - Add a translation + "search.filters.access_status.unknown": "Unknown", + + // "metadata-export-filtered-items.tooltip": "Export report output as CSV", + // TODO New key - Add a translation + "metadata-export-filtered-items.tooltip": "Export report output as CSV", + + // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", + // TODO New key - Add a translation + "metadata-export-filtered-items.submit.success": "CSV export succeeded.", + + // "metadata-export-filtered-items.submit.error": "CSV export failed.", + // TODO New key - Add a translation + "metadata-export-filtered-items.submit.error": "CSV export failed.", + + // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", + // TODO New key - Add a translation + "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", + + // "embargo.listelement.badge": "Embargo until {{ date }}", + // TODO New key - Add a translation + "embargo.listelement.badge": "Embargo until {{ date }}", + + // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", + // TODO New key - Add a translation + "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", + + // "file-download-link.request-copy": "Request a copy of ", + // TODO New key - Add a translation + "file-download-link.request-copy": "Request a copy of ", + + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", -} +} \ No newline at end of file diff --git a/src/assets/i18n/sr-cyr.json5 b/src/assets/i18n/sr-cyr.json5 index efeb74806ac..ffe2b5d6876 100644 --- a/src/assets/i18n/sr-cyr.json5 +++ b/src/assets/i18n/sr-cyr.json5 @@ -3111,13 +3111,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Грешка при преузимању заједница највишег нивоа", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Морате доделити ову лиценцу да бисте довршили свој поднесак. Ако у овом тренутку нисте у могућности да доделите ову лиценцу, можете да сачувате свој рад и вратите се касније или уклоните поднесак.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9017,6 +9030,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative Commons лиценца", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Рециклажа", @@ -9187,6 +9204,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Отпремање је успешно", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Када је означено, ова ставка ће бити видљива у претрази/прегледу. Када није означено, ставка ће бити доступна само преко директне везе и никада се неће појавити у претрази/прегледу.", @@ -12043,5 +12072,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/sr-lat.json5 b/src/assets/i18n/sr-lat.json5 index 8f32d44ecae..ba406a79cd7 100644 --- a/src/assets/i18n/sr-lat.json5 +++ b/src/assets/i18n/sr-lat.json5 @@ -3110,13 +3110,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Greška pri preuzimanju zajednica najvišeg nivoa", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Morate dodeliti ovu licencu da biste dovršili svoj podnesak. Ako u ovom trenutku niste u mogućnosti da dodelite ovu licencu, možete da sačuvate svoj rad i vratite se kasnije ili uklonite podnesak.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9015,6 +9028,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative Commons licenca", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciklaža", @@ -9185,6 +9202,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Otpremanje je uspešno", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Kada je označeno, ova stavka će biti vidljiva u pretrazi/pregledu. Kada nije označeno, stavka će biti dostupna samo preko direktne veze i nikada se neće pojaviti u pretrazi/pregledu.", @@ -12040,5 +12069,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/sv.json5 b/src/assets/i18n/sv.json5 index 8bac53d0503..5eab130fc4c 100644 --- a/src/assets/i18n/sv.json5 +++ b/src/assets/i18n/sv.json5 @@ -3255,13 +3255,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Ett fel uppstod när enheter på toppnivå hämtades", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Du måste godkänna dessa villkor för att skutföra registreringen. Om detta inte är möjligt så kan du spara nu och återvända hit senare, eller radera bidraget.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9546,6 +9559,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons licens", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Återanvänd", @@ -9720,6 +9737,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Uppladdningen lyckades", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "När denna är markerad kommer posten att vara sökbar och visas i listor. I annat fall så kommer den bara att kunna nås med en direktlänk.", @@ -12851,5 +12880,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/sw.json5 b/src/assets/i18n/sw.json5 index 2d969c19464..d9cdd752e34 100644 --- a/src/assets/i18n/sw.json5 +++ b/src/assets/i18n/sw.json5 @@ -3847,14 +3847,26 @@ // TODO New key - Add a translation "error.top-level-communities": "Error fetching top-level communities", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // TODO New key - Add a translation - "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -11090,6 +11102,10 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", // TODO New key - Add a translation "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -11310,6 +11326,18 @@ // TODO New key - Add a translation "submission.sections.upload.upload-successful": "Upload successful", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -14530,5 +14558,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file diff --git a/src/assets/i18n/te.json5 b/src/assets/i18n/te.json5 deleted file mode 100644 index 6f2fe1986b0..00000000000 --- a/src/assets/i18n/te.json5 +++ /dev/null @@ -1,5491 +0,0 @@ -{ - "401.help": "మీరు ఈ పేజీని యాక్సెస్ చేయడానికి అధికారం లేదు. మీరు దిగువ బటన్ ఉపయోగించి హోమ్ పేజీకి తిరిగి వెళ్లవచ్చు.", - "401.link.home-page": "నన్ను హోమ్ పేజీకి తీసుకెళ్లండి", - "401.unauthorized": "అనధికారం", - "403.help": "మీకు ఈ పేజీని యాక్సెస్ చేయడానికి అనుమతి లేదు. మీరు దిగువ బటన్ ఉపయోగించి హోమ్ పేజీకి తిరిగి వెళ్లవచ్చు.", - "403.link.home-page": "నన్ను హోమ్ పేజీకి తీసుకెళ్లండి", - "403.forbidden": "నిషేధించబడింది", - "500.page-internal-server-error": "సేవ అందుబాటులో లేదు", - "500.help": "మెయింటెనెన్స్ డౌన్ టైమ్ లేదా సామర్థ్య సమస్యల కారణంగా సర్వర్ తాత్కాలికంగా మీ అభ్యర్థనను సేవ చేయడంలో అసమర్థంగా ఉంది. దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి.", - "500.link.home-page": "నన్ను హోమ్ పేజీకి తీసుకెళ్లండి", - "404.help": "మీరు చూస్తున్న పేజీ మాకు కనుగొనబడలేదు. పేజీ తరలించబడి లేదా తొలగించబడి ఉండవచ్చు. మీరు దిగువ బటన్ ఉపయోగించి హోమ్ పేజీకి తిరిగి వెళ్లవచ్చు.", - "404.link.home-page": "నన్ను హోమ్ పేజీకి తీసుకెళ్లండి", - "404.page-not-found": "పేజీ కనుగొనబడలేదు", - "error-page.description.401": "అనధికారం", - "error-page.description.403": "నిషేధించబడింది", - "error-page.description.500": "సేవ అందుబాటులో లేదు", - "error-page.description.404": "పేజీ కనుగొనబడలేదు", - "error-page.orcid.generic-error": "ORCID ద్వారా లాగిన్ సమయంలో లోపం సంభవించింది. మీరు DSpace తో మీ ORCID ఖాతా ఇమెయిల్ చిరునామాను పంచుకున్నారని నిర్ధారించుకోండి. లోపం కొనసాగితే, నిర్వాహకుని సంప్రదించండి", - "listelement.badge.access-status": "యాక్సెస్ స్థితి:", - "access-status.embargo.listelement.badge": "ఎంబార్గో", - "access-status.metadata.only.listelement.badge": "మెటాడేటా మాత్రమే", - "access-status.open.access.listelement.badge": "ఓపెన్ యాక్సెస్", - "access-status.restricted.listelement.badge": "పరిమితం", - "access-status.unknown.listelement.badge": "తెలియదు", - "admin.curation-tasks.breadcrumbs": "సిస్టమ్ క్యూరేషన్ టాస్క్స్", - "admin.curation-tasks.title": "సిస్టమ్ క్యూరేషన్ టాస్క్స్", - "admin.curation-tasks.header": "సిస్టమ్ క్యూరేషన్ టాస్క్స్", - "admin.registries.bitstream-formats.breadcrumbs": "ఫార్మాట్ రిజిస్ట్రీ", - "admin.registries.bitstream-formats.create.breadcrumbs": "బిట్స్ట్రీమ్ ఫార్మాట్", - "admin.registries.bitstream-formats.create.failure.content": "కొత్త బిట్స్ట్రీమ్ ఫార్మాట్ సృష్టించడంలో లోపం సంభవించింది.", - "admin.registries.bitstream-formats.create.failure.head": "విఫలం", - "admin.registries.bitstream-formats.create.head": "బిట్స్ట్రీమ్ ఫార్మాట్ సృష్టించండి", - "admin.registries.bitstream-formats.create.new": "కొత్త బిట్స్ట్రీమ్ ఫార్మాట్ జోడించండి", - "admin.registries.bitstream-formats.create.success.content": "కొత్త బిట్స్ట్రీమ్ ఫార్మాట్ విజయవంతంగా సృష్టించబడింది.", - "admin.registries.bitstream-formats.create.success.head": "విజయం", - "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} ఫార్మాట్(లు) తొలగించడంలో విఫలమైంది", - "admin.registries.bitstream-formats.delete.failure.head": "విఫలం", - "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} ఫార్మాట్(లు) విజయవంతంగా తొలగించబడ్డాయి", - "admin.registries.bitstream-formats.delete.success.head": "విజయం", - "admin.registries.bitstream-formats.description": "ఈ బిట్స్ట్రీమ్ ఫార్మాట్ల జాబితా తెలిసిన ఫార్మాట్లు మరియు వాటి మద్దతు స్థాయి గురించి సమాచారాన్ని అందిస్తుంది.", - "admin.registries.bitstream-formats.edit.breadcrumbs": "బిట్స్ట్రీమ్ ఫార్మాట్", - "admin.registries.bitstream-formats.edit.description.hint": "", - "admin.registries.bitstream-formats.edit.description.label": "వివరణ", - "admin.registries.bitstream-formats.edit.extensions.hint": "ఎక్స్టెన్షన్లు అప్లోడ్ చేయబడిన ఫైళ్ల ఫార్మాట్ను స్వయంచాలకంగా గుర్తించడానికి ఉపయోగించే ఫైల్ ఎక్స్టెన్షన్లు. మీరు ప్రతి ఫార్మాట్ కోసం అనేక ఎక్స్టెన్షన్లను నమోదు చేయవచ్చు.", - "admin.registries.bitstream-formats.edit.extensions.label": "ఫైల్ ఎక్స్టెన్షన్లు", - "admin.registries.bitstream-formats.edit.extensions.placeholder": "డాట్ లేకుండా ఫైల్ ఎక్స్టెన్షన్ నమోదు చేయండి", - "admin.registries.bitstream-formats.edit.failure.content": "బిట్స్ట్రీమ్ ఫార్మాట్ సవరించడంలో లోపం సంభవించింది.", - "admin.registries.bitstream-formats.edit.failure.head": "విఫలం", - "admin.registries.bitstream-formats.edit.head": "బిట్స్ట్రీమ్ ఫార్మాట్: {{ format }}", - "admin.registries.bitstream-formats.edit.internal.hint": "అంతర్గతంగా గుర్తించబడిన ఫార్మాట్లు వినియోగదారు నుండి దాచబడతాయి మరియు నిర్వహణా ప్రయోజనాల కోసం ఉపయోగించబడతాయి.", - "admin.registries.bitstream-formats.edit.internal.label": "అంతర్గత", - "admin.registries.bitstream-formats.edit.mimetype.hint": "ఈ ఫార్మాట్ కోసం అనుబంధించబడిన MIME రకం, ప్రత్యేకంగా ఉండాల్సిన అవసరం లేదు.", - "admin.registries.bitstream-formats.edit.mimetype.label": "MIME రకం", - "admin.registries.bitstream-formats.edit.shortDescription.hint": "ఈ ఫార్మాట్ కోసం ఒక ప్రత్యేకమైన పేరు, (ఉదా. \"Microsoft Word XP\" లేదా \"Microsoft Word 2000\")", - "admin.registries.bitstream-formats.edit.shortDescription.label": "పేరు", - "admin.registries.bitstream-formats.edit.success.content": "బిట్స్ట్రీమ్ ఫార్మాట్ విజయవంతంగా సవరించబడింది.", - "admin.registries.bitstream-formats.edit.success.head": "విజయం", - "admin.registries.bitstream-formats.edit.supportLevel.hint": "మీ సంస్థ ఈ ఫార్మాట్ కోసం హామీ ఇచ్చిన మద్దతు స్థాయి.", - "admin.registries.bitstream-formats.edit.supportLevel.label": "మద్దతు స్థాయి", - "admin.registries.bitstream-formats.head": "బిట్స్ట్రీమ్ ఫార్మాట్ రిజిస్ట్రీ", - "admin.registries.bitstream-formats.no-items": "చూపించడానికి బిట్స్ట్రీమ్ ఫార్మాట్లు లేవు.", - "admin.registries.bitstream-formats.table.delete": "ఎంచుకున్నవి తొలగించండి", - "admin.registries.bitstream-formats.table.deselect-all": "అన్నింటినీ ఎంపిక రద్దు చేయండి", - "admin.registries.bitstream-formats.table.internal": "అంతర్గత", - "admin.registries.bitstream-formats.table.mimetype": "MIME రకం", - "admin.registries.bitstream-formats.table.name": "పేరు", - "admin.registries.bitstream-formats.table.selected": "ఎంచుకున్న బిట్స్ట్రీమ్ ఫార్మాట్లు", - "admin.registries.bitstream-formats.table.id": "ID", - "admin.registries.bitstream-formats.table.return": "తిరిగి వెళ్లండి", - "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "తెలిసినది", - "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "మద్దతు ఉంది", - "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "తెలియదు", - "admin.registries.bitstream-formats.table.supportLevel.head": "మద్దతు స్థాయి", - "admin.registries.bitstream-formats.title": "బిట్స్ట్రీమ్ ఫార్మాట్ రిజిస్ట్రీ", - "admin.registries.bitstream-formats.select": "ఎంచుకోండి", - "admin.registries.bitstream-formats.deselect": "ఎంపిక రద్దు చేయండి", - "admin.registries.metadata.breadcrumbs": "మెటాడేటా రిజిస్ట్రీ", - "admin.registries.metadata.description": "మెటాడేటా రిజిస్ట్రీ రిపోజిటరీలో అందుబాటులో ఉన్న అన్ని మెటాడేటా ఫీల్డ్ల జాబితాను నిర్వహిస్తుంది. ఈ ఫీల్డ్లు బహుళ స్కీమాల మధ్య విభజించబడి ఉండవచ్చు. అయితే, DSpace కు క్వాలిఫైడ్ డబ్లిన్ కోర్ స్కీమా అవసరం.", - "admin.registries.metadata.form.create": "మెటాడేటా స్కీమా సృష్టించండి", - "admin.registries.metadata.form.edit": "మెటాడేటా స్కీమా సవరించండి", - "admin.registries.metadata.form.name": "పేరు", - "admin.registries.metadata.form.namespace": "నేమ్స్పేస్", - "admin.registries.metadata.head": "మెటాడేటా రిజిస్ట్రీ", - "admin.registries.metadata.schemas.no-items": "చూపించడానికి మెటాడేటా స్కీమాలు లేవు.", - "admin.registries.metadata.schemas.select": "ఎంచుకోండి", - "admin.registries.metadata.schemas.deselect": "ఎంపిక రద్దు చేయండి", - "admin.registries.metadata.schemas.table.delete": "ఎంచుకున్నవి తొలగించండి", - "admin.registries.metadata.schemas.table.selected": "ఎంచుకున్న స్కీమాలు", - "admin.registries.metadata.schemas.table.id": "ID", - "admin.registries.metadata.schemas.table.name": "పేరు", - "admin.registries.metadata.schemas.table.namespace": "నేమ్స్పేస్", - "admin.registries.metadata.title": "మెటాడేటా రిజిస్ట్రీ", - "admin.registries.schema.breadcrumbs": "మెటాడేటా స్కీమా", - "admin.registries.schema.description": "ఇది \"{{namespace}}\" కోసం మెటాడేటా స్కీమా.", - "admin.registries.schema.fields.select": "ఎంచుకోండి", - "admin.registries.schema.fields.deselect": "ఎంపిక రద్దు చేయండి", - "admin.registries.schema.fields.head": "స్కీమా మెటాడేటా ఫీల్డ్లు", - "admin.registries.schema.fields.no-items": "చూపించడానికి మెటాడేటా ఫీల్డ్లు లేవు.", - "admin.registries.schema.fields.table.delete": "ఎంచుకున్నవి తొలగించండి", - "admin.registries.schema.fields.table.field": "ఫీల్డ్", - "admin.registries.schema.fields.table.selected": "ఎంచుకున్న మెటాడేటా ఫీల్డ్లు", - "admin.registries.schema.fields.table.id": "ID", - "admin.registries.schema.fields.table.scopenote": "స్కోప్ నోట్", - "admin.registries.schema.form.create": "మెటాడేటా ఫీల్డ్ సృష్టించండి", - "admin.registries.schema.form.edit": "మెటాడేటా ఫీల్డ్ సవరించండి", - "admin.registries.schema.form.element": "ఎలిమెంట్", - "admin.registries.schema.form.qualifier": "క్వాలిఫైయర్", - "admin.registries.schema.form.scopenote": "స్కోప్ నోట్", - "admin.registries.schema.head": "మెటాడేటా స్కీమా", - "admin.registries.schema.notification.created": "మెటాడేటా స్కీమా \"{{prefix}}\" విజయవంతంగా సృష్టించబడింది", - "admin.registries.schema.notification.deleted.failure": "{{amount}} మెటాడేటా స్కీమాలను తొలగించడంలో విఫలమైంది", - "admin.registries.schema.notification.deleted.success": "{{amount}} మెటాడేటా స్కీమాలు విజయవంతంగా తొలగించబడ్డాయి", - "admin.registries.schema.notification.edited": "మెటాడేటా స్కీమా \"{{prefix}}\" విజయవంతంగా సవరించబడింది", - "admin.registries.schema.notification.failure": "లోపం", - "admin.registries.schema.notification.field.created": "మెటాడేటా ఫీల్డ్ \"{{field}}\" విజయవంతంగా సృష్టించబడింది", - "admin.registries.schema.notification.field.deleted.failure": "{{amount}} మెటాడేటా ఫీల్డ్లను తొలగించడంలో విఫలమైంది", - "admin.registries.schema.notification.field.deleted.success": "{{amount}} మెటాడేటా ఫీల్డ్లు విజయవంతంగా తొలగించబడ్డాయి", - "admin.registries.schema.notification.field.edited": "మెటాడేటా ఫీల్డ్ \"{{field}}\" విజయవంతంగా సవరించబడింది", - "admin.registries.schema.notification.success": "విజయం", - "admin.registries.schema.return": "తిరిగి వెళ్లండి", - "admin.registries.schema.title": "మెటాడేటా స్కీమా రిజిస్ట్రీ", - "admin.access-control.bulk-access.breadcrumbs": "బల్క్ యాక్సెస్ మేనేజ్మెంట్", - "administrativeBulkAccess.search.results.head": "శోధన ఫలితాలు", - "admin.access-control.bulk-access": "బల్క్ యాక్సెస్ మేనేజ్మెంట్", - "admin.access-control.bulk-access.title": "బల్క్ యాక్సెస్ మేనేజ్మెంట్", - "admin.access-control.bulk-access-browse.header": "దశ 1: ఆబ్జెక్ట్లను ఎంచుకోండి", - "admin.access-control.bulk-access-browse.search.header": "శోధించండి", - "admin.access-control.bulk-access-browse.selected.header": "ప్రస్తుత ఎంపిక({{number}})", - "admin.access-control.bulk-access-settings.header": "దశ 2: నిర్వహించాల్సిన ఆపరేషన్", - "admin.access-control.epeople.actions.delete": "EPerson తొలగించండి", - "admin.access-control.epeople.actions.impersonate": "EPersonగా ప్రవర్తించండి", - "admin.access-control.epeople.actions.reset": "పాస్వర్డ్ రీసెట్ చేయండి", - "admin.access-control.epeople.actions.stop-impersonating": "EPersonగా ప్రవర్తించడం ఆపండి", - "admin.access-control.epeople.breadcrumbs": "EPeople", - "admin.access-control.epeople.title": "EPeople", - "admin.access-control.epeople.edit.breadcrumbs": "కొత్త EPerson", - "admin.access-control.epeople.edit.title": "కొత్త EPerson", - "admin.access-control.epeople.add.breadcrumbs": "EPerson జోడించండి", - "admin.access-control.epeople.add.title": "EPerson జోడించండి", - "admin.access-control.epeople.head": "EPeople", - "admin.access-control.epeople.search.head": "శోధించండి", - "admin.access-control.epeople.button.see-all": "అన్నింటినీ బ్రౌజ్ చేయండి", - "admin.access-control.epeople.search.scope.metadata": "మెటాడేటా", - "admin.access-control.epeople.search.scope.email": "ఇమెయిల్ (ఖచ్చితమైనది)", - "admin.access-control.epeople.search.button": "శోధించండి", - "admin.access-control.epeople.search.placeholder": "వ్యక్తులను శోధించండి...", - "admin.access-control.epeople.button.add": "EPerson జోడించండి", - "admin.access-control.epeople.table.id": "ID", - "admin.access-control.epeople.table.name": "పేరు", - "admin.access-control.epeople.table.email": "ఇమెయిల్ (ఖచ్చితమైనది)", - "admin.access-control.epeople.table.edit": "సవరించండి", - "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" సవరించండి", - "admin.access-control.epeople.table.edit.buttons.edit-disabled": "మీరు ఈ గ్రూప్‌ను సవరించడానికి అధికారం లేదు", - "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" తొలగించండి", - "admin.access-control.epeople.no-items": "చూపించడానికి EPeople లేవు.", - "admin.access-control.epeople.form.create": "EPerson సృష్టించండి", - "admin.access-control.epeople.form.edit": "EPerson సవరించండి", - "admin.access-control.epeople.form.firstName": "మొదటి పేరు", - "admin.access-control.epeople.form.lastName": "చివరి పేరు", - "admin.access-control.epeople.form.email": "ఇమెయిల్", - "admin.access-control.epeople.form.emailHint": "చెల్లుబాటు అయ్యే ఇమెయిల్ చిరునామా ఉండాలి", - "admin.access-control.epeople.form.canLogIn": "లాగిన్ అవ్వవచ్చు", - "admin.access-control.epeople.form.requireCertificate": "సర్టిఫికేట్ అవసరం", - "admin.access-control.epeople.form.return": "తిరిగి వెళ్లండి", - "admin.access-control.epeople.form.notification.created.success": "EPerson \"{{name}}\" విజయవంతంగా సృష్టించబడింది", - "admin.access-control.epeople.form.notification.created.failure": "EPerson \"{{name}}\" సృష్టించడంలో విఫలమైంది", - "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson \"{{name}}\" సృష్టించడంలో విఫలమైంది, ఇమెయిల్ \"{{email}}\" ఇప్పటికే ఉపయోగంలో ఉంది.", - "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson \"{{name}}\" సవరించడంలో విఫలమైంది, ఇమెయిల్ \"{{email}}\" ఇప్పటికే ఉపయోగంలో ఉంది.", - "admin.access-control.epeople.form.notification.edited.success": "EPerson \"{{name}}\" విజయవంతంగా సవరించబడింది", - "admin.access-control.epeople.form.notification.edited.failure": "EPerson \"{{name}}\" సవరించడంలో విఫలమైంది", - "admin.access-control.epeople.form.notification.deleted.success": "EPerson \"{{name}}\" విజయవంతంగా తొలగించబడింది", - "admin.access-control.epeople.form.notification.deleted.failure": "EPerson \"{{name}}\" తొలగించడంలో విఫలమైంది", - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "ఈ గ్రూప్‌లకు సభ్యుడు:", - "admin.access-control.epeople.form.table.id": "ID", - "admin.access-control.epeople.form.table.name": "పేరు", - "admin.access-control.epeople.form.table.collectionOrCommunity": "కలెక్షన్/కమ్యూనిటీ", - "admin.access-control.epeople.form.memberOfNoGroups": "ఈ EPerson ఏ గ్రూప్‌కు సభ్యుడు కాదు", - "admin.access-control.epeople.form.goToGroups": "గ్రూప్‌లకు జోడించండి", - "admin.access-control.epeople.notification.deleted.failure": "EPerson \"{{id}}\" తొలగించడంలో లోపం సంభవించింది: \"{{statusCode}}\" మరియు సందేశం: \"{{restResponse.errorMessage}}\"", - "admin.access-control.epeople.notification.deleted.success": "EPerson \"{{name}}\" విజయవంతంగా తొలగించబడింది", - "admin.access-control.groups.title": "గ్రూప్‌లు", - "admin.access-control.groups.breadcrumbs": "గ్రూప్‌లు", - "admin.access-control.groups.singleGroup.breadcrumbs": "గ్రూప్ సవరించండి", - "admin.access-control.groups.title.singleGroup": "గ్రూప్ సవరించండి", - "admin.access-control.groups.title.addGroup": "కొత్త గ్రూప్", - "admin.access-control.groups.addGroup.breadcrumbs": "కొత్త గ్రూప్", - "admin.access-control.groups.head": "గ్రూప్‌లు", - "admin.access-control.groups.button.add": "గ్రూప్ జోడించండి", - "admin.access-control.groups.search.head": "గ్రూప్‌లను శోధించండి", - "admin.access-control.groups.button.see-all": "అన్నింటినీ బ్రౌజ్ చేయండి", - "admin.access-control.groups.search.button": "శోధించండి", - "admin.access-control.groups.search.placeholder": "గ్రూప్‌లను శోధించండి...", - "admin.access-control.groups.table.id": "ID", - "admin.access-control.groups.table.name": "పేరు", - "admin.access-control.groups.table.collectionOrCommunity": "కలెక్షన్/కమ్యూనిటీ", - "admin.access-control.groups.table.members": "సభ్యులు", - "admin.access-control.groups.table.edit": "సవరించండి", - "admin.access-control.groups.table.edit.buttons.edit": "\"{{name}}\" సవరించండి", - "admin.access-control.groups.table.edit.buttons.remove": "\"{{name}}\" తొలగించండి", - "admin.access-control.groups.no-items": "దీని పేరులో లేదా ఈ UUIDతో ఏ గ్రూప్‌లు కనుగొనబడలేదు", - "admin.access-control.groups.notification.deleted.success": "గ్రూప్ \"{{name}}\" విజయవంతంగా తొలగించబడింది", - "admin.access-control.groups.notification.deleted.failure.title": "గ్రూప్ \"{{name}}\" తొలగించడంలో విఫలమైంది", - "admin.access-control.groups.notification.deleted.failure.content": "కారణం: \"{{cause}}\"", - "admin.access-control.groups.form.alert.permanent": "ఈ గ్రూప్ శాశ్వతమైనది, కాబట్టి దీన్ని సవరించలేరు లేదా తొలగించలేరు. మీరు ఈ పేజీని ఉపయోగించి గ్రూప్ సభ్యులను జోడించడానికి మరియు తొలగించడానికి ఇంకా సాధ్యమే.", - "admin.access-control.groups.form.alert.workflowGroup": "ఈ గ్రూప్‌ను సవరించలేరు లేదా తొలగించలేరు ఎందుకంటే ఇది \"{{name}}\" {{comcol}}లో సబ్మిషన్ మరియు వర్క్‌ఫ్లో ప్రక్రియలో ఒక రోల్‌కు అనుగుణంగా ఉంది. మీరు దీన్ని \"రోల్‌లను కేటాయించండి\" ట్యాబ్‌లో {{comcol}} పేజీని సవరించడం ద్వారా తొలగించవచ్చు. మీరు ఇంకా ఈ పేజీని ఉపయోగించి గ్రూప్ సభ్యులను జోడించడానికి మరియు తొలగించడానికి సాధ్యమే.", - "admin.access-control.groups.form.tooltip.editGroupPage": "ఈ పేజీలో, మీరు ఒక గ్రూప్ యొక్క లక్షణాలను మరియు సభ్యులను సవరించవచ్చు. ఎగువ విభాగంలో, మీరు గ్రూప్ పేరు మరియు వివరణను సవరించవచ్చు, ఇది ఒక కలెక్షన్ లేదా కమ్యూనిటీ కోసం అడ్మిన్ గ్రూప్ అయితే, గ్రూప్ పేరు మరియు వివరణ స్వయంచాలకంగా ఉత్పన్నమవుతాయి మరియు సవరించలేరు. క్రింది విభాగాలలో, మీరు గ్రూప్ సభ్యత్వాన్ని సవరించవచ్చు. మరిన్ని వివరాల కోసం [వికీ](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) చూడండి.", - - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "ఈ గ్రూప్‌కు ఇ-పీపుల్‌ని జోడించడానికి లేదా తీసివేయడానికి, 'బ్రౌజ్ ఆల్' బటన్‌పై క్లిక్ చేయండి లేదా క్రింద ఉన్న సెర్చ్ బార్‌ను ఉపయోగించండి (సెర్చ్ బార్‌కు ఎడమవైపు డ్రాప్‌డౌన్‌ను ఉపయోగించి మెటాడేటా ద్వారా లేదా ఇమెయిల్ ద్వారా శోధించడానికి ఎంచుకోండి). తర్వాత క్రింది జాబితాలో మీరు జోడించాలనుకున్న ప్రతి వినియోగదారు కోసం ప్లస్ ఐకాన్‌పై క్లిక్ చేయండి, లేదా తీసివేయాలనుకున్న ప్రతి వినియోగదారు కోసం ట్రాష్ కాన్ ఐకాన్‌పై క్లిక్ చేయండి. క్రింది జాబితాలో అనేక పేజీలు ఉండవచ్చు: తర్వాతి పేజీలకు నావిగేట్ చేయడానికి జాబితా క్రింద ఉన్న పేజీ నియంత్రణలను ఉపయోగించండి.", - - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "ఈ గ్రూప్‌కు సబ్‌గ్రూప్‌ని జోడించడానికి లేదా తీసివేయడానికి, 'బ్రౌజ్ ఆల్' బటన్‌పై క్లిక్ చేయండి లేదా క్రింద ఉన్న సెర్చ్ బార్‌ను ఉపయోగించి గ్రూప్‌ల కోసం శోధించండి. తర్వాత క్రింది జాబితాలో మీరు జోడించాలనుకున్న ప్రతి గ్రూప్ కోసం ప్లస్ ఐకాన్‌పై క్లిక్ చేయండి, లేదా తీసివేయాలనుకున్న ప్రతి గ్రూప్ కోసం ట్రాష్ కాన్ ఐకాన్‌పై క్లిక్ చేయండి. క్రింది జాబితాలో అనేక పేజీలు ఉండవచ్చు: తర్వాతి పేజీలకు నావిగేట్ చేయడానికి జాబితా క్రింద ఉన్న పేజీ నియంత్రణలను ఉపయోగించండి.", - - "admin.reports.collections.title": "కలెక్షన్ ఫిల్టర్ రిపోర్ట్", - - "admin.reports.collections.breadcrumbs": "కలెక్షన్ ఫిల్టర్ రిపోర్ట్", - - "admin.reports.collections.head": "కలెక్షన్ ఫిల్టర్ రిపోర్ట్", - - "admin.reports.button.show-collections": "కలెక్షన్‌లను చూపించు", - - "admin.reports.collections.collections-report": "కలెక్షన్ రిపోర్ట్", - - "admin.reports.collections.item-results": "ఐటెమ్ ఫలితాలు", - - "admin.reports.collections.community": "కమ్యూనిటీ", - - "admin.reports.collections.collection": "కలెక్షన్", - - "admin.reports.collections.nb_items": "ఐటెమ్‌ల సంఖ్య", - - "admin.reports.collections.match_all_selected_filters": "ఎంచుకున్న అన్ని ఫిల్టర్‌లతో సరిపోలుతుంది", - - "admin.reports.items.breadcrumbs": "మెటాడేటా క్వెరీ రిపోర్ట్", - - "admin.reports.items.head": "మెటాడేటా క్వెరీ రిపోర్ట్", - - "admin.reports.items.run": "ఐటెమ్ క్వెరీని రన్ చేయండి", - - "admin.reports.items.section.collectionSelector": "కలెక్షన్ సెలెక్టర్", - - "admin.reports.items.section.metadataFieldQueries": "మెటాడేటా ఫీల్డ్ క్వెరీలు", - - "admin.reports.items.predefinedQueries": "ముందే నిర్వచించబడిన క్వెరీలు", - - "admin.reports.items.section.limitPaginateQueries": "లిమిట్/పేజినేట్ క్వెరీలు", - - "admin.reports.items.limit": "లిమిట్/", - - "admin.reports.items.offset": "ఆఫ్సెట్", - - "admin.reports.items.wholeRepo": "మొత్తం రిపోజిటరీ", - - "admin.reports.items.anyField": "ఏదైనా ఫీల్డ్", - - "admin.reports.items.predicate.exists": "ఉంది", - - "admin.reports.items.predicate.doesNotExist": "లేదు", - - "admin.reports.items.predicate.equals": "సమానం", - - "admin.reports.items.predicate.doesNotEqual": "సమానం కాదు", - - "admin.reports.items.predicate.like": "వంటిది", - - "admin.reports.items.predicate.notLike": "వంటిది కాదు", - - "admin.reports.items.predicate.contains": "కలిగి ఉంది", - - "admin.reports.items.predicate.doesNotContain": "కలిగి లేదు", - - "admin.reports.items.predicate.matches": "సరిపోలుతుంది", - - "admin.reports.items.predicate.doesNotMatch": "సరిపోలడం లేదు", - - "admin.reports.items.preset.new": "కొత్త క్వెరీ", - - "admin.reports.items.preset.hasNoTitle": "టైటిల్ లేదు", - - "admin.reports.items.preset.hasNoIdentifierUri": "dc.identifier.uri లేదు", - - "admin.reports.items.preset.hasCompoundSubject": "సమ్మేళన విషయం ఉంది", - - "admin.reports.items.preset.hasCompoundAuthor": "సమ్మేళన dc.contributor.author ఉంది", - - "admin.reports.items.preset.hasCompoundCreator": "సమ్మేళన dc.creator ఉంది", - - "admin.reports.items.preset.hasUrlInDescription": "dc.descriptionలో URL ఉంది", - - "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenanceలో పూర్తి టెక్స్ట్ ఉంది", - - "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenanceలో పూర్తి టెక్స్ట్ కాదు", - - "admin.reports.items.preset.hasEmptyMetadata": "ఖాళీ మెటాడేటా ఉంది", - - "admin.reports.items.preset.hasUnbreakingDataInDescription": "వివరణలో విచ్ఛిన్నం కాని మెటాడేటా ఉంది", - - "admin.reports.items.preset.hasXmlEntityInMetadata": "మెటాడేటాలో XML ఎంటిటీ ఉంది", - - "admin.reports.items.preset.hasNonAsciiCharInMetadata": "మెటాడేటాలో నాన్-అస్కీ అక్షరం ఉంది", - - "admin.reports.items.number": "సంఖ్య.", - - "admin.reports.items.id": "UUID", - - "admin.reports.items.collection": "కలెక్షన్", - - "admin.reports.items.handle": "URI", - - "admin.reports.items.title": "టైటిల్", - - "admin.reports.commons.filters": "ఫిల్టర్‌లు", - - "admin.reports.commons.additional-data": "తిరిగి పొందడానికి అదనపు డేటా", - - "admin.reports.commons.previous-page": "మునుపటి పేజీ", - - "admin.reports.commons.next-page": "తర్వాతి పేజీ", - - "admin.reports.commons.page": "పేజీ", - - "admin.reports.commons.of": "లో", - - "admin.reports.commons.export": "మెటాడేటా నవీకరణ కోసం ఎగుమతి చేయండి", - - "admin.reports.commons.filters.deselect_all": "అన్ని ఫిల్టర్‌లను ఎంపికను తొలగించండి", - - "admin.reports.commons.filters.select_all": "అన్ని ఫిల్టర్‌లను ఎంచుకోండి", - - "admin.reports.commons.filters.matches_all": "నిర్దిష్టపరచిన అన్ని ఫిల్టర్‌లతో సరిపోలుతుంది", - - "admin.reports.commons.filters.property": "ఐటెమ్ ప్రాపర్టీ ఫిల్టర్‌లు", - - "admin.reports.commons.filters.property.is_item": "ఐటెమ్ - ఎల్లప్పుడూ నిజం", - - "admin.reports.commons.filters.property.is_withdrawn": "విడిపోయిన ఐటెమ్‌లు", - - "admin.reports.commons.filters.property.is_not_withdrawn": "అందుబాటులో ఉన్న ఐటెమ్‌లు - విడిపోలేదు", - - "admin.reports.commons.filters.property.is_discoverable": "డిస్కవర్ చేయగల ఐటెమ్‌లు - ప్రైవేట్ కాదు", - - "admin.reports.commons.filters.property.is_not_discoverable": "డిస్కవర్ చేయలేము - ప్రైవేట్ ఐటెమ్", - - "admin.reports.commons.filters.bitstream": "బేసిక్ బిట్‌స్ట్రీమ్ ఫిల్టర్‌లు", - - "admin.reports.commons.filters.bitstream.has_multiple_originals": "ఐటెమ్‌కు బహుళ ఆరిజినల్ బిట్‌స్ట్రీమ్‌లు ఉన్నాయి", - - "admin.reports.commons.filters.bitstream.has_no_originals": "ఐటెమ్‌కు ఆరిజినల్ బిట్‌స్ట్రీమ్‌లు లేవు", - - "admin.reports.commons.filters.bitstream.has_one_original": "ఐటెమ్‌కు ఒక ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", - - "admin.reports.commons.filters.bitstream_mime": "MIME రకం ద్వారా బిట్‌స్ట్రీమ్ ఫిల్టర్‌లు", - - "admin.reports.commons.filters.bitstream_mime.has_doc_original": "ఐటెమ్‌కు డాక్ ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది (PDF, Office, Text, HTML, XML, మొదలైనవి)", - - "admin.reports.commons.filters.bitstream_mime.has_image_original": "ఐటెమ్‌కు ఇమేజ్ ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", - - "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "ఇతర బిట్‌స్ట్రీమ్ రకాలు ఉన్నాయి (డాక్ లేదా ఇమేజ్ కాదు)", - - "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "ఐటెమ్‌కు బహుళ రకాల ఆరిజినల్ బిట్‌స్ట్రీమ్‌లు ఉన్నాయి (డాక్, ఇమేజ్, ఇతర)", - - "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "ఐటెమ్‌కు PDF ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", - - "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "ఐటెమ్‌కు JPG ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", - - "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "అసాధారణంగా చిన్న PDF ఉంది", - - "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "అసాధారణంగా పెద్ద PDF ఉంది", - - "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "TEXT ఐటెమ్ లేకుండా డాక్యుమెంట్ బిట్‌స్ట్రీమ్ ఉంది", - - "admin.reports.commons.filters.mime": "సపోర్ట్ చేయబడిన MIME రకం ఫిల్టర్‌లు", - - "admin.reports.commons.filters.mime.has_only_supp_image_type": "ఐటెమ్ ఇమేజ్ బిట్‌స్ట్రీమ్‌లు సపోర్ట్ చేయబడ్డాయి", - - "admin.reports.commons.filters.mime.has_unsupp_image_type": "ఐటెమ్‌కు సపోర్ట్ చేయని ఇమేజ్ బిట్‌స్ట్రీమ్ ఉంది", - - "admin.reports.commons.filters.mime.has_only_supp_doc_type": "ఐటెమ్ డాక్యుమెంట్ బిట్‌స్ట్రీమ్‌లు సపోర్ట్ చేయబడ్డాయి", - - "admin.reports.commons.filters.mime.has_unsupp_doc_type": "ఐటెమ్‌కు సపోర్ట్ చేయని డాక్యుమెంట్ బిట్‌స్ట్రీమ్ ఉంది", - - "admin.reports.commons.filters.bundle": "బిట్‌స్ట్రీమ్ బండిల్ ఫిల్టర్‌లు", - - "admin.reports.commons.filters.bundle.has_unsupported_bundle": "సపోర్ట్ చేయని బండిల్‌లో బిట్‌స్ట్రీమ్ ఉంది", - - "admin.reports.commons.filters.bundle.has_small_thumbnail": "అసాధారణంగా చిన్న థంబ్‌నెయిల్ ఉంది", - - "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "థంబ్‌నెయిల్ లేకుండా ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", - - "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "చెల్లని థంబ్‌నెయిల్ పేరు ఉంది (ప్రతి ఆరిజినల్ కోసం ఒక థంబ్‌నెయిల్ అని భావిస్తుంది)", - - "admin.reports.commons.filters.bundle.has_non_generated_thumb": "జనరేట్ చేయని థంబ్‌నెయిల్ ఉంది", - - "admin.reports.commons.filters.bundle.no_license": "లైసెన్స్ లేదు", - - "admin.reports.commons.filters.bundle.has_license_documentation": "లైసెన్స్ బండిల్‌లో డాక్యుమెంటేషన్ ఉంది", - - "admin.reports.commons.filters.permission": "పర్మిషన్ ఫిల్టర్‌లు", - - "admin.reports.commons.filters.permission.has_restricted_original": "ఐటెమ్‌కు రిస్ట్రిక్టెడ్ ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", - - "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "ఐటెమ్‌కు కనీసం ఒక ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది, ఇది అనామక వినియోగదారుకు అందుబాటులో లేదు", - - "admin.reports.commons.filters.permission.has_restricted_thumbnail": "ఐటెమ్‌కు రిస్ట్రిక్టెడ్ థంబ్‌నెయిల్ ఉంది", - - "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "ఐటెమ్‌కు కనీసం ఒక థంబ్‌నెయిల్ ఉంది, ఇది అనామక వినియోగదారుకు అందుబాటులో లేదు", - - "admin.reports.commons.filters.permission.has_restricted_metadata": "ఐటెమ్‌కు రిస్ట్రిక్టెడ్ మెటాడేటా ఉంది", - - "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "ఐటెమ్‌కు మెటాడేటా ఉంది, ఇది అనామక వినియోగదారుకు అందుబాటులో లేదు", - - "admin.search.breadcrumbs": "అడ్మినిస్ట్రేటివ్ సెర్చ్", - - "admin.search.collection.edit": "ఎడిట్", - - "admin.search.community.edit": "ఎడిట్", - - "admin.search.item.delete": "డిలీట్", - - "admin.search.item.edit": "ఎడిట్", - - "admin.search.item.make-private": "డిస్కవర్ చేయలేనిదిగా చేయండి", - - "admin.search.item.make-public": "డిస్కవర్ చేయగలిగేదిగా చేయండి", - - "admin.search.item.move": "మూవ్", - - "admin.search.item.reinstate": "రీఇన్‌స్టేట్", - - "admin.search.item.withdraw": "విథ్‌డ్రా", - - "admin.search.title": "అడ్మినిస్ట్రేటివ్ సెర్చ్", - - "administrativeView.search.results.head": "అడ్మినిస్ట్రేటివ్ సెర్చ్", - - "admin.workflow.breadcrumbs": "వర్క్‌ఫ్లోను అడ్మినిస్టర్ చేయండి", - - "admin.workflow.title": "వర్క్‌ఫ్లోను అడ్మినిస్టర్ చేయండి", - - "admin.workflow.item.workflow": "వర్క్‌ఫ్లో", - - "admin.workflow.item.workspace": "వర్క్‌స్పేస్", - - "admin.workflow.item.delete": "డిలీట్", - - "admin.workflow.item.send-back": "తిరిగి పంపండి", - - "admin.workflow.item.policies": "పాలిసీలు", - - "admin.workflow.item.supervision": "సూపర్విజన్", - - "admin.metadata-import.breadcrumbs": "మెటాడేటాను ఇంపోర్ట్ చేయండి", - - "admin.batch-import.breadcrumbs": "బ్యాచ్‌ను ఇంపోర్ట్ చేయండి", - - "admin.metadata-import.title": "మెటాడేటాను ఇంపోర్ట్ చేయండి", - - "admin.batch-import.title": "బ్యాచ్‌ను ఇంపోర్ట్ చేయండి", - - "admin.metadata-import.page.header": "మెటాడేటాను ఇంపోర్ట్ చేయండి", - - "admin.batch-import.page.header": "బ్యాచ్‌ను ఇంపోర్ట్ చేయండి", - - "admin.metadata-import.page.help": "ఫైళ్లపై బ్యాచ్ మెటాడేటా ఆపరేషన్లను కలిగి ఉన్న CSV ఫైళ్లను ఇక్కడ డ్రాప్ చేయవచ్చు లేదా బ్రౌజ్ చేయవచ్చు", - - "admin.batch-import.page.help": "ఇంపోర్ట్ చేయడానికి కలెక్షన్‌ను ఎంచుకోండి. తర్వాత, ఇంపోర్ట్ చేయడానికి ఐటెమ్‌లను కలిగి ఉన్న సింపుల్ ఆర్కైవ్ ఫార్మాట్ (SAF) జిప్ ఫైల్‌ను డ్రాప్ చేయండి లేదా బ్రౌజ్ చేయండి", - - "admin.batch-import.page.toggle.help": "ఫైల్ అప్‌లోడ్ ద్వారా లేదా URL ద్వారా ఇంపోర్ట్ చేయడం సాధ్యమే, ఇన్‌పుట్ సోర్స్‌ను సెట్ చేయడానికి పై టోగుల్‌ను ఉపయోగించండి", - - "admin.metadata-import.page.dropMsg": "ఇంపోర్ట్ చేయడానికి మెటాడేటా CSVని డ్రాప్ చేయండి", - - "admin.batch-import.page.dropMsg": "ఇంపోర్ట్ చేయడానికి బ్యాచ్ ZIPని డ్రాప్ చేయండి", - - "admin.metadata-import.page.dropMsgReplace": "ఇంపోర్ట్ చేయడానికి మెటాడేటా CSVని భర్తీ చేయడానికి డ్రాప్ చేయండి", - - "admin.batch-import.page.dropMsgReplace": "ఇంపోర్ట్ చేయడానికి బ్యాచ్ ZIPని భర్తీ చేయడానికి డ్రాప్ చేయండి", - - "admin.metadata-import.page.button.return": "బ్యాక్", - - "admin.metadata-import.page.button.proceed": "ప్రాసీడ్", - - "admin.metadata-import.page.button.select-collection": "కలెక్షన్‌ను ఎంచుకోండి", - - "admin.metadata-import.page.error.addFile": "ముందుగా ఫైల్‌ను ఎంచుకోండి!", - - "admin.metadata-import.page.error.addFileUrl": "ముందుగా ఫైల్ URLని ఇన్‌సర్ట్ చేయండి!", - - "admin.batch-import.page.error.addFile": "ముందుగా ZIP ఫైల్‌ను ఎంచుకోండి!", - - "admin.metadata-import.page.toggle.upload": "అప్‌లోడ్", - - "admin.metadata-import.page.toggle.url": "URL", - - "admin.metadata-import.page.urlMsg": "ఇంపోర్ట్ చేయడానికి బ్యాచ్ ZIP urlని ఇన్‌సర్ట్ చేయండి", - - "admin.metadata-import.page.validateOnly": "వాలిడేట్ మాత్రమే", - - "admin.metadata-import.page.validateOnly.hint": "ఎంచుకున్నప్పుడు, అప్‌లోడ్ చేసిన CSV వాలిడేట్ చేయబడుతుంది. మీరు కనుగొన్న మార్పుల రిపోర్ట్‌ను పొందుతారు, కానీ మార్పులు సేవ్ చేయబడవు.", - - "advanced-workflow-action.rating.form.rating.label": "రేటింగ్", - - "advanced-workflow-action.rating.form.rating.error": "మీరు ఐటెమ్‌ను రేట్ చేయాలి", - - "advanced-workflow-action.rating.form.review.label": "రివ్యూ", - - "advanced-workflow-action.rating.form.review.error": "ఈ రేటింగ్‌ను సబ్‌మిట్ చేయడానికి మీరు రివ్యూను ఎంటర్ చేయాలి", - - "advanced-workflow-action.rating.description": "దయచేసి క్రింద ఒక రేటింగ్‌ను ఎంచుకోండి", - - "advanced-workflow-action.rating.description-requiredDescription": "దయచేసి క్రింద ఒక రేటింగ్‌ను ఎంచుకోండి మరియు ఒక రివ్యూను కూడా జోడించండి", - - "advanced-workflow-action.select-reviewer.description-single": "సబ్‌మిట్ చేయడానికి ముందు దయచేసి క్రింద ఒక రివ్యూయర్‌ను ఎంచుకోండి", - - "advanced-workflow-action.select-reviewer.description-multiple": "సబ్‌మిట్ చేయడానికి ముందు దయచేసి క్రింద ఒకటి లేదా అంతకంటే ఎక్కువ రివ్యూయర్‌లను ఎంచుకోండి", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "ఇ-పీపుల్", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "ఇ-పీపుల్‌ను జోడించండి", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "అన్నింటినీ బ్రౌజ్ చేయండి", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "ప్రస్తుత సభ్యులు", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "శోధించండి", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "పేరు", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ఐడెంటిటీ", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ఇమెయిల్", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "నెట్ ID", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "తీసివేయండి / జోడించండి", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "\"{{name}}\" పేరుతో ఉన్న సభ్యుని తీసివేయండి", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "\"{{name}}\" సభ్యుని విజయవంతంగా జోడించబడింది", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "\"{{name}}\" సభ్యుని జోడించడంలో విఫలమైంది", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "\"{{name}}\" సభ్యుని విజయవంతంగా తొలగించబడింది", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "\"{{name}}\" సభ్యుని తొలగించడంలో విఫలమైంది", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "\"{{name}}\" పేరుతో ఉన్న సభ్యుని జోడించండి", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "ప్రస్తుతం యాక్టివ్ గ్రూప్ లేదు, ముందుగా ఒక పేరును సబ్‌మిట్ చేయండి.", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "గ్రూప్‌లో ఇంకా సభ్యులు లేరు, శోధించి జోడించండి.", - - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "ఆ శోధనలో ఇ-పీపుల్ కనుగొనబడలేదు", - - "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "రివ్యూయర్ ఎంచుకోబడలేదు.", - - "admin.batch-import.page.validateOnly.hint": "ఎంచుకున్నప్పుడు, అప్‌లోడ్ చేసిన ZIP వాలిడేట్ చేయబడుతుంది. మీరు కనుగొన్న మార్పుల రిపోర్ట్‌ను పొందుతారు, కానీ మార్పులు సేవ్ చేయబడవు.", - - "admin.batch-import.page.remove": "తీసివేయండి", - - "auth.errors.invalid-user": "చెల్లని ఇమెయిల్ చిరునామా లేదా పాస్‌వర్డ్.", - - "auth.messages.expired": "మీ సెషన్ కాలం చెల్లింది. దయచేసి మళ్లీ లాగిన్ అవ్వండి.", - - "auth.messages.token-refresh-failed": "మీ సెషన్ టోకన్‌ను రిఫ్రెష్ చేయడంలో విఫలమైంది. దయచేసి మళ్లీ లాగిన్ అవ్వండి.", - - "bitstream.download.page": "ఇప్పుడు {{bitstream}} డౌన్‌లోడ్ అవుతోంది...", - - "bitstream.download.page.back": "బ్యాక్", - - "bitstream.edit.authorizations.link": "బిట్స్ట్రీమ్ యొక్క విధానాలను సవరించండి", - "bitstream.edit.authorizations.title": "బిట్స్ట్రీమ్ యొక్క విధానాలను సవరించండి", - "bitstream.edit.return": "తిరిగి", - "bitstream.edit.bitstream": "బిట్స్ట్రీమ్: ", - "bitstream.edit.form.description.hint": "ఐచ్ఛికంగా, ఫైల్ యొక్క సంక్షిప్త వివరణను అందించండి, ఉదాహరణకు \"ప్రధాన వ్యాసం\" లేదా \"ప్రయోగ డేటా రీడింగులు\".", - "bitstream.edit.form.description.label": "వివరణ", - "bitstream.edit.form.embargo.hint": "యాక్సెస్ అనుమతించబడిన మొదటి రోజు. ఈ తేదీని ఈ ఫారమ్‌లో సవరించలేరు. బిట్స్ట్రీమ్‌కు ఎంబార్గో తేదీని సెట్ చేయడానికి, అంశం స్థితి ట్యాబ్‌కు వెళ్లి, అధికారాలు... క్లిక్ చేయండి, బిట్స్ట్రీమ్ యొక్క READ విధానాన్ని సృష్టించండి లేదా సవరించండి మరియు ప్రారంభ తేదీని కోరుకున్న విధంగా సెట్ చేయండి.", - "bitstream.edit.form.embargo.label": "నిర్దిష్ట తేదీ వరకు ఎంబార్గో", - "bitstream.edit.form.fileName.hint": "బిట్స్ట్రీమ్ కోసం ఫైల్ పేరును మార్చండి. ఇది ప్రదర్శన బిట్స్ట్రీమ్ URLని మారుస్తుంది, కానీ పాత లింక్‌లు సీక్వెన్స్ ID మారకపోతే ఇంకా పరిష్కరించబడతాయి.", - "bitstream.edit.form.fileName.label": "ఫైల్ పేరు", - "bitstream.edit.form.newFormat.label": "కొత్త ఫార్మాట్‌ను వివరించండి", - "bitstream.edit.form.newFormat.hint": "ఫైల్‌ను సృష్టించడానికి మీరు ఉపయోగించిన అప్లికేషన్ మరియు వెర్షన్ నంబర్ (ఉదాహరణకు, \"ACMESoft SuperApp వెర్షన్ 1.5\").", - "bitstream.edit.form.primaryBitstream.label": "ప్రాథమిక ఫైల్", - "bitstream.edit.form.selectedFormat.hint": "ఫార్మాట్ పైన ఉన్న జాబితాలో లేకుంటే, \"ఫార్మాట్ జాబితాలో లేదు\"ని ఎంచుకోండి మరియు దానిని \"కొత్త ఫార్మాట్‌ను వివరించండి\" క్రింద వివరించండి.", - "bitstream.edit.form.selectedFormat.label": "ఎంచుకున్న ఫార్మాట్", - "bitstream.edit.form.selectedFormat.unknown": "ఫార్మాట్ జాబితాలో లేదు", - "bitstream.edit.notifications.error.format.title": "బిట్స్ట్రీమ్ ఫార్మాట్‌ను సేవ్ చేయడంలో లోపం సంభవించింది", - "bitstream.edit.notifications.error.primaryBitstream.title": "ప్రాథమిక బిట్స్ట్రీమ్‌ను సేవ్ చేయడంలో లోపం సంభవించింది", - "bitstream.edit.form.iiifLabel.label": "IIIF లేబుల్", - "bitstream.edit.form.iiifLabel.hint": "ఈ చిత్రం కోసం కెన్వాస్ లేబుల్. అందించకపోతే డిఫాల్ట్ లేబుల్ ఉపయోగించబడుతుంది.", - "bitstream.edit.form.iiifToc.label": "IIIF విషయ సూచిక", - "bitstream.edit.form.iiifToc.hint": "ఇక్కడ టెక్స్ట్‌ను జోడించడం దీనిని కొత్త విషయ సూచిక పరిధి యొక్క ప్రారంభంగా చేస్తుంది.", - "bitstream.edit.form.iiifWidth.label": "IIIF కెన్వాస్ వెడల్పు", - "bitstream.edit.form.iiifWidth.hint": "కెన్వాస్ వెడల్పు సాధారణంగా ఇమేజ్ వెడల్పుతో సరిపోలాలి.", - "bitstream.edit.form.iiifHeight.label": "IIIF కెన్వాస్ ఎత్తు", - "bitstream.edit.form.iiifHeight.hint": "కెన్వాస్ ఎత్తు సాధారణంగా ఇమేజ్ ఎత్తుతో సరిపోలాలి.", - "bitstream.edit.notifications.saved.content": "ఈ బిట్స్ట్రీమ్‌కు మీ మార్పులు సేవ్ చేయబడ్డాయి.", - "bitstream.edit.notifications.saved.title": "బిట్స్ట్రీమ్ సేవ్ చేయబడింది", - "bitstream.edit.title": "బిట్స్ట్రీమ్‌ను సవరించండి", - "bitstream-request-a-copy.alert.canDownload1": "మీకు ఇప్పటికే ఈ ఫైల్‌కు యాక్సెస్ ఉంది. మీరు ఫైల్‌ను డౌన్‌లోడ్ చేయాలనుకుంటే, క్లిక్ చేయండి ", - "bitstream-request-a-copy.alert.canDownload2": "ఇక్కడ", - "bitstream-request-a-copy.header": "ఫైల్ యొక్క కాపీని అభ్యర్థించండి", - "bitstream-request-a-copy.intro": "క్రింది అంశం కోసం కాపీని అభ్యర్థించడానికి క్రింది సమాచారాన్ని నమోదు చేయండి: ", - "bitstream-request-a-copy.intro.bitstream.one": "క్రింది ఫైల్‌ను అభ్యర్థిస్తున్నారు: ", - "bitstream-request-a-copy.intro.bitstream.all": "అన్ని ఫైల్‌లను అభ్యర్థిస్తున్నారు. ", - "bitstream-request-a-copy.name.label": "పేరు *", - "bitstream-request-a-copy.name.error": "పేరు అవసరం", - "bitstream-request-a-copy.email.label": "మీ ఇమెయిల్ చిరునామా *", - "bitstream-request-a-copy.email.hint": "ఈ ఇమెయిల్ చిరునామా ఫైల్‌ను పంపడానికి ఉపయోగించబడుతుంది.", - "bitstream-request-a-copy.email.error": "దయచేసి సరైన ఇమెయిల్ చిరునామాను నమోదు చేయండి.", - "bitstream-request-a-copy.allfiles.label": "ఫైల్‌లు", - "bitstream-request-a-copy.files-all-false.label": "అభ్యర్థించిన ఫైల్ మాత్రమే", - "bitstream-request-a-copy.files-all-true.label": "అన్ని ఫైల్‌లు (ఈ అంశం యొక్క) పరిమిత యాక్సెస్‌లో", - "bitstream-request-a-copy.message.label": "సందేశం", - "bitstream-request-a-copy.return": "తిరిగి", - "bitstream-request-a-copy.submit": "కాపీని అభ్యర్థించండి", - "bitstream-request-a-copy.submit.success": "అంశం అభ్యర్థన విజయవంతంగా సమర్పించబడింది.", - "bitstream-request-a-copy.submit.error": "అంశం అభ్యర్థనను సమర్పించడంలో ఏదో తప్పు జరిగింది.", - "bitstream-request-a-copy.access-by-token.warning": "మీరు రచయిత లేదా రిపోజిటరీ సిబ్బంది మీకు అందించిన సురక్షిత యాక్సెస్ లింక్‌తో ఈ అంశాన్ని చూస్తున్నారు. ఈ లింక్‌ను అనధికార వినియోగదారులతో భాగస్వామ్యం చేయకుండా ఉండటం ముఖ్యం.", - "bitstream-request-a-copy.access-by-token.expiry-label": "ఈ లింక్ ద్వారా అందించబడిన యాక్సెస్ ముగుస్తుంది", - "bitstream-request-a-copy.access-by-token.expired": "ఈ లింక్ ద్వారా అందించబడిన యాక్సెస్ ఇకపై సాధ్యం కాదు. యాక్సెస్ ముగిసింది", - "bitstream-request-a-copy.access-by-token.not-granted": "ఈ లింక్ ద్వారా అందించబడిన యాక్సెస్ సాధ్యం కాదు. యాక్సెస్ ఇంకా మంజూరు చేయబడలేదు లేదా రద్దు చేయబడింది.", - "bitstream-request-a-copy.access-by-token.re-request": "కొత్త అభ్యర్థనను సమర్పించడానికి పరిమిత డౌన్‌లోడ్ లింక్‌లను అనుసరించండి.", - "bitstream-request-a-copy.access-by-token.alt-text": "ఈ అంశానికి యాక్సెస్ సురక్షిత టోకెన్ ద్వారా అందించబడింది", - "browse.back.all-results": "అన్ని బ్రౌజ్ ఫలితాలు", - "browse.comcol.by.author": "రచయిత ద్వారా", - "browse.comcol.by.dateissued": "ఇష్యూ తేదీ ద్వారా", - "browse.comcol.by.subject": "విషయం ద్వారా", - "browse.comcol.by.srsc": "విషయం వర్గం ద్వారా", - "browse.comcol.by.nsi": "నార్వేజియన్ సైన్స్ ఇండెక్స్ ద్వారా", - "browse.comcol.by.title": "శీర్షిక ద్వారా", - "browse.comcol.head": "బ్రౌజ్ చేయండి", - "browse.empty": "చూపించడానికి అంశాలు లేవు.", - "browse.metadata.author": "రచయిత", - "browse.metadata.dateissued": "ఇష్యూ తేదీ", - "browse.metadata.subject": "విషయం", - "browse.metadata.title": "శీర్షిక", - "browse.metadata.srsc": "విషయం వర్గం", - "browse.metadata.author.breadcrumbs": "రచయిత ద్వారా బ్రౌజ్ చేయండి", - "browse.metadata.dateissued.breadcrumbs": "తేదీ ద్వారా బ్రౌజ్ చేయండి", - "browse.metadata.subject.breadcrumbs": "విషయం ద్వారా బ్రౌజ్ చేయండి", - "browse.metadata.srsc.breadcrumbs": "విషయం వర్గం ద్వారా బ్రౌజ్ చేయండి", - "browse.metadata.srsc.tree.description": "శోధన ఫిల్టర్‌గా జోడించడానికి ఒక విషయాన్ని ఎంచుకోండి", - "browse.metadata.nsi.breadcrumbs": "నార్వేజియన్ సైన్స్ ఇండెక్స్ ద్వారా బ్రౌజ్ చేయండి", - "browse.metadata.nsi.tree.description": "శోధన ఫిల్టర్‌గా జోడించడానికి ఒక ఇండెక్స్‌ను ఎంచుకోండి", - "browse.metadata.title.breadcrumbs": "శీర్షిక ద్వారా బ్రౌజ్ చేయండి", - "browse.metadata.map": "భౌగోళిక స్థానం ద్వారా బ్రౌజ్ చేయండి", - "browse.metadata.map.breadcrumbs": "భౌగోళిక స్థానం ద్వారా బ్రౌజ్ చేయండి", - "browse.metadata.map.count.items": "అంశాలు", - "pagination.next.button": "తర్వాత", - "pagination.previous.button": "మునుపటి", - "pagination.next.button.disabled.tooltip": "ఫలితాల యొక్క మరిన్ని పేజీలు లేవు", - "pagination.page-number-bar": "పేజీ నావిగేషన్ కోసం కంట్రోల్ బార్, IDతో మూలకానికి సంబంధించి: ", - "browse.startsWith": ", {{ startsWith }} తో ప్రారంభమవుతుంది", - "browse.startsWith.choose_start": "(ప్రారంభాన్ని ఎంచుకోండి)", - "browse.startsWith.choose_year": "(సంవత్సరాన్ని ఎంచుకోండి)", - "browse.startsWith.choose_year.label": "ఇష్యూ సంవత్సరాన్ని ఎంచుకోండి", - "browse.startsWith.jump": "సంవత్సరం లేదా నెల ద్వారా ఫలితాలను ఫిల్టర్ చేయండి", - "browse.startsWith.months.april": "ఏప్రిల్", - "browse.startsWith.months.august": "ఆగస్టు", - "browse.startsWith.months.december": "డిసెంబర్", - "browse.startsWith.months.february": "ఫిబ్రవరి", - "browse.startsWith.months.january": "జనవరి", - "browse.startsWith.months.july": "జూలై", - "browse.startsWith.months.june": "జూన్", - "browse.startsWith.months.march": "మార్చి", - "browse.startsWith.months.may": "మే", - "browse.startsWith.months.none": "(నెలను ఎంచుకోండి)", - "browse.startsWith.months.none.label": "ఇష్యూ నెలను ఎంచుకోండి", - "browse.startsWith.months.november": "నవంబర్", - "browse.startsWith.months.october": "అక్టోబర్", - "browse.startsWith.months.september": "సెప్టెంబర్", - "browse.startsWith.submit": "బ్రౌజ్ చేయండి", - "browse.startsWith.type_date": "తేదీ ద్వారా ఫలితాలను ఫిల్టర్ చేయండి", - "browse.startsWith.type_date.label": "లేదా ఒక తేదీని (సంవత్సరం-నెల) టైప్ చేసి బ్రౌజ్ బటన్‌పై క్లిక్ చేయండి", - "browse.startsWith.type_text": "మొదటి కొన్ని అక్షరాలను టైప్ చేయడం ద్వారా ఫలితాలను ఫిల్టర్ చేయండి", - "browse.startsWith.input": "ఫిల్టర్", - "browse.taxonomy.button": "బ్రౌజ్ చేయండి", - "browse.title": "{{ field }} ద్వారా బ్రౌజ్ చేస్తున్నారు{{ startsWith }} {{ value }}", - "browse.title.page": "{{ field }} ద్వారా బ్రౌజ్ చేస్తున్నారు {{ value }}", - "search.browse.item-back": "ఫలితాలకు తిరిగి వెళ్లండి", - "chips.remove": "చిప్‌ను తీసివేయండి", - "claimed-approved-search-result-list-element.title": "ఆమోదించబడింది", - "claimed-declined-search-result-list-element.title": "తిరస్కరించబడింది, సమర్పించేవారికి తిరిగి పంపబడింది", - "claimed-declined-task-search-result-list-element.title": "తిరస్కరించబడింది, రివ్యూ మేనేజర్ యొక్క వర్క్‌ఫ్లోకు తిరిగి పంపబడింది", - "collection.create.breadcrumbs": "కలెక్షన్‌ను సృష్టించండి", - "collection.browse.logo": "కలెక్షన్ లోగో కోసం బ్రౌజ్ చేయండి", - "collection.create.head": "ఒక కలెక్షన్‌ను సృష్టించండి", - "collection.create.notifications.success": "కలెక్షన్ విజయవంతంగా సృష్టించబడింది", - "collection.create.sub-head": "కమ్యూనిటీ {{ parent }} కోసం కలెక్షన్‌ను సృష్టించండి", - "collection.curate.header": "కలెక్షన్‌ను క్యూరేట్ చేయండి: {{collection}}", - "collection.delete.cancel": "రద్దు చేయండి", - "collection.delete.confirm": "నిర్ధారించండి", - "collection.delete.processing": "తొలగిస్తోంది", - "collection.delete.head": "కలెక్షన్‌ను తొలగించండి", - "collection.delete.notification.fail": "కలెక్షన్ తొలగించబడలేదు", - "collection.delete.notification.success": "కలెక్షన్ విజయవంతంగా తొలగించబడింది", - "collection.delete.text": "మీరు కలెక్షన్ \"{{ dso }}\"ని తొలగించాలని నిజంగా నిర్ధారించుకున్నారా", - "collection.edit.delete": "ఈ కలెక్షన్‌ను తొలగించండి", - "collection.edit.head": "కలెక్షన్‌ను సవరించండి", - "collection.edit.breadcrumbs": "కలెక్షన్‌ను సవరించండి", - "collection.edit.tabs.mapper.head": "అంశం మ్యాపర్", - "collection.edit.tabs.item-mapper.title": "కలెక్షన్ ఎడిట్ - అంశం మ్యాపర్", - "collection.edit.item-mapper.cancel": "రద్దు చేయండి", - "collection.edit.item-mapper.collection": "కలెక్షన్: \"{{name}}\"", - "collection.edit.item-mapper.confirm": "ఎంచుకున్న అంశాలను మ్యాప్ చేయండి", - "collection.edit.item-mapper.description": "ఇది అంశం మ్యాపర్ సాధనం, ఇది కలెక్షన్ నిర్వాహకులకు ఇతర కలెక్షన్‌ల నుండి అంశాలను ఈ కలెక్షన్‌కు మ్యాప్ చేయడానికి అనుమతిస్తుంది. మీరు ఇతర కలెక్షన్‌ల నుండి అంశాలను శోధించవచ్చు మరియు వాటిని మ్యాప్ చేయవచ్చు లేదా ప్రస్తుతం మ్యాప్ చేయబడిన అంశాల జాబితాను బ్రౌజ్ చేయవచ్చు.", - "collection.edit.item-mapper.head": "అంశం మ్యాపర్ - ఇతర కలెక్షన్‌ల నుండి అంశాలను మ్యాప్ చేయండి", - "collection.edit.item-mapper.no-search": "శోధించడానికి ఒక ప్రశ్నను నమోదు చేయండి", - "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} అంశాల మ్యాపింగ్‌లో లోపాలు సంభవించాయి.", - "collection.edit.item-mapper.notifications.map.error.head": "మ్యాపింగ్ లోపాలు", - "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} అంశాలు విజయవంతంగా మ్యాప్ చేయబడ్డాయి.", - "collection.edit.item-mapper.notifications.map.success.head": "మ్యాపింగ్ పూర్తయింది", - "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} అంశాల మ్యాపింగ్‌లను తొలగించడంలో లోపాలు సంభవించాయి.", - "collection.edit.item-mapper.notifications.unmap.error.head": "మ్యాపింగ్‌లను తొలగించడంలో లోపాలు", - "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} అంశాల మ్యాపింగ్‌లు విజయవంతంగా తొలగించబడ్డాయి.", - "collection.edit.item-mapper.notifications.unmap.success.head": "మ్యాపింగ్‌లను తొలగించడం పూర్తయింది", - "collection.edit.item-mapper.remove": "ఎంచుకున్న అంశం మ్యాపింగ్‌లను తొలగించండి", - "collection.edit.item-mapper.search-form.placeholder": "అంశాలను శోధించండి...", - "collection.edit.item-mapper.tabs.browse": "మ్యాప్ చేయబడిన అంశాలను బ్రౌజ్ చేయండి", - "collection.edit.item-mapper.tabs.map": "కొత్త అంశాలను మ్యాప్ చేయండి", - "collection.edit.logo.delete.title": "లోగోను తొలగించండి", - "collection.edit.logo.delete-undo.title": "తొలగింపును రద్దు చేయండి", - "collection.edit.logo.label": "కలెక్షన్ లోగో", - "collection.edit.logo.notifications.add.error": "కలెక్షన్ లోగోను అప్‌లోడ్ చేయడం విఫలమైంది. దయచేసి మళ్లీ ప్రయత్నించే ముందు కంటెంట్‌ను ధృవీకరించండి.", - "collection.edit.logo.notifications.add.success": "కలెక్షన్ లోగో అప్‌లోడ్ విజయవంతమైంది.", - "collection.edit.logo.notifications.delete.success.title": "లోగో తొలగించబడింది", - "collection.edit.logo.notifications.delete.success.content": "కలెక్షన్ యొక్క లోగో విజయవంతంగా తొలగించబడింది", - "collection.edit.logo.notifications.delete.error.title": "లోగో తొలగించడంలో లోపం", - "collection.edit.logo.upload": "అప్‌లోడ్ చేయడానికి ఒక కలెక్షన్ లోగోను డ్రాప్ చేయండి", - "collection.edit.notifications.success": "కలెక్షన్ విజయవంతంగా సవరించబడింది", - "collection.edit.return": "తిరిగి", - "collection.edit.tabs.access-control.head": "యాక్సెస్ కంట్రోల్", - "collection.edit.tabs.access-control.title": "కలెక్షన్ ఎడిట్ - యాక్సెస్ కంట్రోల్", - "collection.edit.tabs.curate.head": "క్యూరేట్", - "collection.edit.tabs.curate.title": "కలెక్షన్ ఎడిట్ - క్యూరేట్", - "collection.edit.tabs.authorizations.head": "అధికారాలు", - "collection.edit.tabs.authorizations.title": "కలెక్షన్ ఎడిట్ - అధికారాలు", - "collection.edit.item.authorizations.load-bundle-button": "మరిన్ని బండిల్‌లను లోడ్ చేయండి", - "collection.edit.item.authorizations.load-more-button": "మరిన్ని లోడ్ చేయండి", - "collection.edit.item.authorizations.show-bitstreams-button": "బండిల్ కోసం బిట్స్ట్రీమ్ విధానాలను చూపించండి", - "collection.edit.tabs.metadata.head": "మెటాడేటాను సవరించండి", - "collection.edit.tabs.metadata.title": "కలెక్షన్ ఎడిట్ - మెటాడేటా", - "collection.edit.tabs.roles.head": "రోల్‌లను కేటాయించండి", - "collection.edit.tabs.roles.title": "కలెక్షన్ ఎడిట్ - రోల్‌లు", - "collection.edit.tabs.source.external": "ఈ కలెక్షన్ దాని కంటెంట్‌ను బాహ్య మూలం నుండి సేకరిస్తుంది", - "collection.edit.tabs.source.form.errors.oaiSource.required": "మీరు టార్గెట్ కలెక్షన్ యొక్క సెట్ IDని అందించాలి.", - "collection.edit.tabs.source.form.harvestType": "సేకరించబడిన కంటెంట్", - "collection.edit.tabs.source.form.head": "బాహ్య మూలాన్ని కాన్ఫిగర్ చేయండి", - "collection.edit.tabs.source.form.metadataConfigId": "మెటాడేటా ఫార్మాట్", - "collection.edit.tabs.source.form.oaiSetId": "OAI ప్రత్యేక సెట్ ID", - "collection.edit.tabs.source.form.oaiSource": "OAI ప్రొవైడర్", - "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "మెటాడేటా మరియు బిట్స్ట్రీమ్‌లను సేకరించండి (ORE మద్దతు అవసరం)", - "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "మెటాడేటా మరియు బిట్స్ట్రీమ్‌లకు సూచనలను సేకరించండి (ORE మద్దతు అవసరం)", - "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "మెటాడేటాను మాత్రమే సేకరించండి", - "collection.edit.tabs.source.head": "కంటెంట్ మూలం", - "collection.edit.tabs.source.notifications.discarded.content": "మీ మార్పులు విస్మరించబడ్డాయి. మీ మార్పులను పునరుద్ధరించడానికి 'అన్డు' బటన్‌పై క్లిక్ చేయండి", - "collection.edit.tabs.source.notifications.discarded.title": "మార్పులు విస్మరించబడ్డాయి", - "collection.edit.tabs.source.notifications.invalid.content": "మీ మార్పులు సేవ్ చేయబడలేదు. సేవ్ చేయడానికి ముందు అన్ని ఫీల్డ్‌లు చెల్లుబాటు అయ్యేవిధంగా ఉన్నాయని నిర్ధారించుకోండి.", - "collection.edit.tabs.source.notifications.invalid.title": "మెటాడేటా చెల్లదు", - "collection.edit.tabs.source.notifications.saved.content": "ఈ కలెక్షన్ యొక్క కంటెంట్ మూలానికి మీ మార్పులు సేవ్ చేయబడ్డాయి.", - "collection.edit.tabs.source.notifications.saved.title": "కంటెంట్ మూలం సేవ్ చేయబడింది", - "collection.edit.tabs.source.title": "కలెక్షన్ ఎడిట్ - కంటెంట్ మూలం", - "collection.edit.template.add-button": "జోడించండి", - "collection.edit.template.breadcrumbs": "అంశం టెంప్లేట్", - "collection.edit.template.cancel": "రద్దు చేయండి", - "collection.edit.template.delete-button": "తొలగించండి", - "collection.edit.template.edit-button": "సవరించండి", - "collection.edit.template.error": "టెంప్లేట్ అంశాన్ని తిరిగి పొందడంలో లోపం సంభవించింది", - "collection.edit.template.head": "సేకరణ \"{{ collection }}\" కోసం టెంప్లేట్ అంశాన్ని సవరించండి", - "collection.edit.template.label": "టెంప్లేట్ అంశం", - "collection.edit.template.loading": "టెంప్లేట్ అంశం లోడ్ అవుతోంది...", - "collection.edit.template.notifications.delete.error": "అంశం టెంప్లేట్ను తొలగించడంలో విఫలమైంది", - "collection.edit.template.notifications.delete.success": "అంశం టెంప్లేట్ విజయవంతంగా తొలగించబడింది", - "collection.edit.template.title": "టెంప్లేట్ అంశాన్ని సవరించండి", - "collection.form.abstract": "సంక్షిప్త వివరణ", - "collection.form.description": "పరిచయ వచనం (HTML)", - "collection.form.errors.title.required": "దయచేసి సేకరణ పేరును నమోదు చేయండి", - "collection.form.license": "లైసెన్స్", - "collection.form.provenance": "మూలం", - "collection.form.rights": "కాపీరైట్ వచనం (HTML)", - "collection.form.tableofcontents": "వార్తలు (HTML)", - "collection.form.title": "పేరు", - "collection.form.entityType": "ఎంటిటీ రకం", - "collection.listelement.badge": "సేకరణ", - "collection.logo": "సేకరణ లోగో", - "collection.page.browse.search.head": "శోధించండి", - "collection.page.edit": "ఈ సేకరణను సవరించండి", - "collection.page.handle": "ఈ సేకరణకు శాశ్వత URI", - "collection.page.license": "లైసెన్స్", - "collection.page.news": "వార్తలు", - "collection.page.options": "ఎంపికలు", - "collection.search.breadcrumbs": "శోధించండి", - "collection.search.results.head": "శోధన ఫలితాలు", - "collection.select.confirm": "ఎంపికను నిర్ధారించండి", - "collection.select.empty": "చూపించడానికి సేకరణలు లేవు", - "collection.select.table.selected": "ఎంపిక చేసిన సేకరణలు", - "collection.select.table.select": "సేకరణను ఎంచుకోండి", - "collection.select.table.deselect": "సేకరణను ఎంపిక చేయకు", - "collection.select.table.title": "శీర్షిక", - "collection.source.controls.head": "హార్వెస్ట్ నియంత్రణలు", - "collection.source.controls.test.submit.error": "సెట్టింగ్లను పరీక్షించడాన్ని ప్రారంభించడంలో ఏదో తప్పు జరిగింది", - "collection.source.controls.test.failed": "సెట్టింగ్లను పరీక్షించడానికి స్క్రిప్ట్ విఫలమైంది", - "collection.source.controls.test.completed": "సెట్టింగ్లను పరీక్షించడానికి స్క్రిప్ట్ విజయవంతంగా పూర్తయింది", - "collection.source.controls.test.submit": "కాన్ఫిగరేషన్ పరీక్షించండి", - "collection.source.controls.test.running": "కాన్ఫిగరేషన్ పరీక్షిస్తోంది...", - "collection.source.controls.import.submit.success": "దిగుమతి విజయవంతంగా ప్రారంభించబడింది", - "collection.source.controls.import.submit.error": "దిగుమతిని ప్రారంభించడంలో ఏదో తప్పు జరిగింది", - "collection.source.controls.import.submit": "ఇప్పుడే దిగుమతి చేయండి", - "collection.source.controls.import.running": "దిగుమతి చేస్తోంది...", - "collection.source.controls.import.failed": "దిగుమతి సమయంలో లోపం సంభవించింది", - "collection.source.controls.import.completed": "దిగుమతి పూర్తయింది", - "collection.source.controls.reset.submit.success": "రీసెట్ మరియు రీఇంపోర్ట్ విజయవంతంగా ప్రారంభించబడింది", - "collection.source.controls.reset.submit.error": "రీసెట్ మరియు రీఇంపోర్ట్ ప్రారంభించడంలో ఏదో తప్పు జరిగింది", - "collection.source.controls.reset.failed": "రీసెట్ మరియు రీఇంపోర్ట్ సమయంలో లోపం సంభవించింది", - "collection.source.controls.reset.completed": "రీసెట్ మరియు రీఇంపోర్ట్ పూర్తయింది", - "collection.source.controls.reset.submit": "రీసెట్ చేసి మళ్లీ దిగుమతి చేయండి", - "collection.source.controls.reset.running": "రీసెట్ చేసి మళ్లీ దిగుమతి చేస్తోంది...", - "collection.source.controls.harvest.status": "హార్వెస్ట్ స్థితి:", - "collection.source.controls.harvest.start": "హార్వెస్ట్ ప్రారంభ సమయం:", - "collection.source.controls.harvest.last": "చివరిసారి హార్వెస్ట్ చేసిన సమయం:", - "collection.source.controls.harvest.message": "హార్వెస్ట్ సమాచారం:", - "collection.source.controls.harvest.no-information": "N/A", - "collection.source.update.notifications.error.content": "ఇచ్చిన సెట్టింగ్లు పరీక్షించబడి పని చేయలేదు.", - "collection.source.update.notifications.error.title": "సర్వర్ లోపం", - "communityList.breadcrumbs": "సంఘాల జాబితా", - "communityList.tabTitle": "సంఘాల జాబితా", - "communityList.title": "సంఘాల జాబితా", - "communityList.showMore": "మరిన్ని చూపించు", - "communityList.expand": "{{ name }} విస్తరించండి", - "communityList.collapse": "{{ name }} ముడుచుకోండి", - "community.browse.logo": "సంఘం లోగో కోసం బ్రౌజ్ చేయండి", - "community.subcoms-cols.breadcrumbs": "ఉపసంఘాలు మరియు సేకరణలు", - "community.create.breadcrumbs": "సంఘాన్ని సృష్టించండి", - "community.create.head": "సంఘాన్ని సృష్టించండి", - "community.create.notifications.success": "సంఘం విజయవంతంగా సృష్టించబడింది", - "community.create.sub-head": "సంఘం {{ parent }} కోసం ఉప-సంఘాన్ని సృష్టించండి", - "community.curate.header": "సంఘాన్ని క్యూరేట్ చేయండి: {{community}}", - "community.delete.cancel": "రద్దు చేయండి", - "community.delete.confirm": "నిర్ధారించండి", - "community.delete.processing": "తొలగిస్తోంది...", - "community.delete.head": "సంఘాన్ని తొలగించండి", - "community.delete.notification.fail": "సంఘాన్ని తొలగించలేకపోయాం", - "community.delete.notification.success": "సంఘం విజయవంతంగా తొలగించబడింది", - "community.delete.text": "మీరు నిజంగా \"{{ dso }}\" సంఘాన్ని తొలగించాలనుకుంటున్నారా?", - "community.edit.delete": "ఈ సంఘాన్ని తొలగించండి", - "community.edit.head": "సంఘాన్ని సవరించండి", - "community.edit.breadcrumbs": "సంఘాన్ని సవరించండి", - "community.edit.logo.delete.title": "లోగోను తొలగించండి", - "community-collection.edit.logo.delete.title": "తొలగింపును నిర్ధారించండి", - "community.edit.logo.delete-undo.title": "తొలగింపును రద్దు చేయండి", - "community-collection.edit.logo.delete-undo.title": "తొలగింపును రద్దు చేయండి", - "community.edit.logo.label": "సంఘం లోగో", - "community.edit.logo.notifications.add.error": "సంఘం లోగో అప్లోడ్ చేయడంలో విఫలమైంది. దయచేసి మళ్లీ ప్రయత్నించే ముందు కంటెంట్ను ధృవీకరించండి.", - "community.edit.logo.notifications.add.success": "సంఘం లోగో అప్లోడ్ విజయవంతమైంది.", - "community.edit.logo.notifications.delete.success.title": "లోగో తొలగించబడింది", - "community.edit.logo.notifications.delete.success.content": "సంఘం లోగో విజయవంతంగా తొలగించబడింది", - "community.edit.logo.notifications.delete.error.title": "లోగో తొలగించడంలో లోపం", - "community.edit.logo.upload": "అప్లోడ్ చేయడానికి సంఘం లోగోను డ్రాప్ చేయండి", - "community.edit.notifications.success": "సంఘం విజయవంతంగా సవరించబడింది", - "community.edit.notifications.unauthorized": "ఈ మార్పును చేయడానికి మీకు అనుమతులు లేవు", - "community.edit.notifications.error": "సంఘాన్ని సవరించడంలో లోపం సంభవించింది", - "community.edit.return": "వెనక్కి", - "community.edit.tabs.curate.head": "క్యూరేట్", - "community.edit.tabs.curate.title": "సంఘం సవరణ - క్యూరేట్", - "community.edit.tabs.access-control.head": "యాక్సెస్ కంట్రోల్", - "community.edit.tabs.access-control.title": "సంఘం సవరణ - యాక్సెస్ కంట్రోల్", - "community.edit.tabs.metadata.head": "మెటాడేటాను సవరించండి", - "community.edit.tabs.metadata.title": "సంఘం సవరణ - మెటాడేటా", - "community.edit.tabs.roles.head": "రోల్స్ కేటాయించండి", - "community.edit.tabs.roles.title": "సంఘం సవరణ - రోల్స్", - "community.edit.tabs.authorizations.head": "అధికారాలు", - "community.edit.tabs.authorizations.title": "సంఘం సవరణ - అధికారాలు", - "community.listelement.badge": "సంఘం", - "community.logo": "సంఘం లోగో", - "comcol-role.edit.no-group": "ఏదీ లేదు", - "comcol-role.edit.create": "సృష్టించండి", - "comcol-role.edit.create.error.title": "'{{ role }}' రోల్ కోసం గ్రూప్ సృష్టించడంలో విఫలమైంది", - "comcol-role.edit.restrict": "పరిమితం చేయండి", - "comcol-role.edit.delete": "తొలగించండి", - "comcol-role.edit.delete.error.title": "'{{ role }}' రోల్ గ్రూప్ను తొలగించడంలో విఫలమైంది", - "comcol-role.edit.community-admin.name": "నిర్వాహకులు", - "comcol-role.edit.collection-admin.name": "నిర్వాహకులు", - "comcol-role.edit.community-admin.description": "సంఘ నిర్వాహకులు ఉప-సంఘాలు లేదా సేకరణలను సృష్టించవచ్చు, మరియు ఆ ఉప-సంఘాలు లేదా సేకరణలను నిర్వహించవచ్చు లేదా నిర్వహణను కేటాయించవచ్చు. అదనంగా, ఏ ఉప-సేకరణలకు అంశాలను సమర్పించవచ్చు, అంశ మెటాడేటాను సవరించవచ్చు (సమర్పణ తర్వాత), మరియు ఇతర సేకరణల నుండి ఇప్పటికే ఉన్న అంశాలను జోడించవచ్చు (మ్యాప్) (ఆ సేకరణకు అధికారం ఉంటే).", - "comcol-role.edit.collection-admin.description": "సేకరణ నిర్వాహకులు ఏ వ్యక్తులు సేకరణకు అంశాలను సమర్పించవచ్చు, అంశ మెటాడేటాను సవరించవచ్చు (సమర్పణ తర్వాత), మరియు ఇతర సేకరణల నుండి ఇప్పటికే ఉన్న అంశాలను ఈ సేకరణకు జోడించవచ్చు (మ్యాప్) (ఆ సేకరణకు అధికారం ఉంటే).", - "comcol-role.edit.submitters.name": "సమర్పించేవారు", - "comcol-role.edit.submitters.description": "ఈ సేకరణకు కొత్త అంశాలను సమర్పించడానికి అనుమతి ఉన్న E-ప్రజలు మరియు గ్రూపులు.", - "comcol-role.edit.item_read.name": "డిఫాల్ట్ అంశం చదవడానికి యాక్సెస్", - "comcol-role.edit.item_read.description": "ఈ సేకరణకు సమర్పించబడిన కొత్త అంశాలను చదవగల E-ప్రజలు మరియు గ్రూపులు. ఈ రోల్కు మార్పులు రెట్రోయాక్టివ్గా ఉండవు. సిస్టమ్లో ఇప్పటికే ఉన్న అంశాలు వాటిని జోడించిన సమయంలో చదవడానికి యాక్సెస్ ఉన్న వారికి ఇప్పటికీ చూడగలుగుతారు.", - "comcol-role.edit.item_read.anonymous-group": "ఇన్కమింగ్ అంశాలకు డిఫాల్ట్ చదవడం ప్రస్తుతం అనామకంగా సెట్ చేయబడింది.", - "comcol-role.edit.bitstream_read.name": "డిఫాల్ట్ బిట్స్ట్రీమ్ చదవడానికి యాక్సెస్", - "comcol-role.edit.bitstream_read.description": "ఈ సేకరణకు సమర్పించబడిన కొత్త బిట్స్ట్రీమ్లను చదవగల E-ప్రజలు మరియు గ్రూపులు. ఈ రోల్కు మార్పులు రెట్రోయాక్టివ్గా ఉండవు. సిస్టమ్లో ఇప్పటికే ఉన్న బిట్స్ట్రీమ్లు వాటిని జోడించిన సమయంలో చదవడానికి యాక్సెస్ ఉన్న వారికి ఇప్పటికీ చూడగలుగుతారు.", - "comcol-role.edit.bitstream_read.anonymous-group": "ఇన్కమింగ్ బిట్స్ట్రీమ్లకు డిఫాల్ట్ చదవడం ప్రస్తుతం అనామకంగా సెట్ చేయబడింది.", - "comcol-role.edit.editor.name": "ఎడిటర్లు", - "comcol-role.edit.editor.description": "ఎడిటర్లు ఇన్కమింగ్ సమర్పణల మెటాడేటాను సవరించగలరు, ఆపై వాటిని అంగీకరించవచ్చు లేదా తిరస్కరించవచ్చు.", - "comcol-role.edit.finaleditor.name": "ఫైనల్ ఎడిటర్లు", - "comcol-role.edit.finaleditor.description": "ఫైనల్ ఎడిటర్లు ఇన్కమింగ్ సమర్పణల మెటాడేటాను సవరించగలరు, కానీ వాటిని తిరస్కరించలేరు.", - "comcol-role.edit.reviewer.name": "రివ్యూయర్లు", - "comcol-role.edit.reviewer.description": "రివ్యూయర్లు ఇన్కమింగ్ సమర్పణలను అంగీకరించవచ్చు లేదా తిరస్కరించవచ్చు. అయితే, వారు సమర్పణ మెటాడేటాను సవరించలేరు.", - "comcol-role.edit.scorereviewers.name": "స్కోర్ రివ్యూయర్లు", - "comcol-role.edit.scorereviewers.description": "రివ్యూయర్లు ఇన్కమింగ్ సమర్పణలకు స్కోర్ ఇవ్వగలరు, ఇది సమర్పణ తిరస్కరించబడుతుందో లేదో నిర్ణయిస్తుంది.", - "community.form.abstract": "సంక్షిప్త వివరణ", - "community.form.description": "పరిచయ వచనం (HTML)", - "community.form.errors.title.required": "దయచేసి సంఘం పేరును నమోదు చేయండి", - "community.form.rights": "కాపీరైట్ వచనం (HTML)", - "community.form.tableofcontents": "వార్తలు (HTML)", - "community.form.title": "పేరు", - "community.page.edit": "ఈ సంఘాన్ని సవరించండి", - "community.page.handle": "ఈ సంఘానికి శాశ్వత URI", - "community.page.license": "లైసెన్స్", - "community.page.news": "వార్తలు", - "community.page.options": "ఎంపికలు", - "community.all-lists.head": "ఉపసంఘాలు మరియు సేకరణలు", - "community.search.breadcrumbs": "శోధించండి", - "community.search.results.head": "శోధన ఫలితాలు", - "community.sub-collection-list.head": "ఈ సంఘంలోని సేకరణలు", - "community.sub-community-list.head": "ఈ సంఘంలోని సంఘాలు", - "cookies.consent.accept-all": "అన్నింటినీ అంగీకరించండి", - "cookies.consent.accept-selected": "ఎంపిక చేసినవి అంగీకరించండి", - "cookies.consent.app.opt-out.description": "ఈ యాప్ డిఫాల్ట్గా లోడ్ చేయబడుతుంది (కానీ మీరు ఆప్ట్ అవుట్ చేయవచ్చు)", - "cookies.consent.app.opt-out.title": "(ఆప్ట్-అవుట్)", - "cookies.consent.app.purpose": "ప్రయోజనం", - "cookies.consent.app.required.description": "ఈ అప్లికేషన్ ఎల్లప్పుడూ అవసరం", - "cookies.consent.app.required.title": "(ఎల్లప్పుడూ అవసరం)", - "cookies.consent.update": "మీ చివరి సందర్శన నుండి మార్పులు ఉన్నాయి, దయచేసి మీ సమ్మతిని నవీకరించండి.", - "cookies.consent.close": "మూసివేయి", - "cookies.consent.decline": "తిరస్కరించు", - "cookies.consent.decline-all": "అన్నింటినీ తిరస్కరించు", - "cookies.consent.ok": "సరే", - "cookies.consent.save": "సేవ్ చేయండి", - "cookies.consent.content-notice.description": "మేము మీ వ్యక్తిగత సమాచారాన్ని క్రింది ప్రయోజనాల కోసం సేకరిస్తాము మరియు ప్రాసెస్ చేస్తాము: {purposes}", - "cookies.consent.content-notice.learnMore": "కస్టమైజ్ చేయండి", - "cookies.consent.content-modal.description": "ఇక్కడ మీరు మేము మీ గురించి సేకరించే సమాచారాన్ని చూడవచ్చు మరియు కస్టమైజ్ చేయవచ్చు.", - "cookies.consent.content-modal.privacy-policy.name": "గోప్యతా విధానం", - "cookies.consent.content-modal.privacy-policy.text": "మరింత తెలుసుకోవడానికి, దయచేసి మా {privacyPolicy} చదవండి.", - "cookies.consent.content-modal.no-privacy-policy.text": "", - "cookies.consent.content-modal.title": "మేము సేకరించే సమాచారం", - "cookies.consent.app.title.accessibility": "యాక్సెసిబిలిటీ సెట్టింగ్లు", - "cookies.consent.app.description.accessibility": "మీ యాక్సెసిబిలిటీ సెట్టింగ్లను స్థానికంగా సేవ్ చేయడానికి అవసరం", - "cookies.consent.app.title.authentication": "ఆథెంటికేషన్", - "cookies.consent.app.description.authentication": "లాగిన్ అవ్వడానికి అవసరం", - "cookies.consent.app.title.correlation-id": "కోరిలేషన్ ID", - "cookies.consent.app.description.correlation-id": "సపోర్ట్/డీబగ్గింగ్ ప్రయోజనాల కోసం బ్యాకెండ్ లాగ్లలో మీ సెషన్ను ట్రాక్ చేయడానికి అనుమతించండి", - "cookies.consent.app.title.preferences": "ప్రాధాన్యతలు", - "cookies.consent.app.description.preferences": "మీ ప్రాధాన్యతలను సేవ్ చేయడానికి అవసరం", - "cookies.consent.app.title.acknowledgement": "ఆమోదం", - "cookies.consent.app.description.acknowledgement": "మీ ఆమోదాలు మరియు సమ్మతులను సేవ్ చేయడానికి అవసరం", - "cookies.consent.app.title.google-analytics": "గూగుల్ అనాలిటిక్స్", - "cookies.consent.app.description.google-analytics": "స్టాటిస్టికల్ డేటాను ట్రాక్ చేయడానికి అనుమతిస్తుంది", - "cookies.consent.app.title.google-recaptcha": "గూగుల్ reCaptcha", - "cookies.consent.app.description.google-recaptcha": "మేము రిజిస్ట్రేషన్ మరియు పాస్వర్డ్ రికవరీ సమయంలో గూగుల్ reCAPTCHA సేవను ఉపయోగిస్తాము", - "cookies.consent.app.title.matomo": "మాటోమో", - "cookies.consent.app.description.matomo": "స్టాటిస్టికల్ డేటాను ట్రాక్ చేయడానికి అనుమతిస్తుంది", - "cookies.consent.purpose.functional": "ఫంక్షనల్", - "cookies.consent.purpose.statistical": "స్టాటిస్టికల్", - "cookies.consent.purpose.registration-password-recovery": "రిజిస్ట్రేషన్ మరియు పాస్వర్డ్ రికవరీ", - "cookies.consent.purpose.sharing": "షేరింగ్", - "curation-task.task.citationpage.label": "సైటేషన్ పేజీని జనరేట్ చేయండి", - "curation-task.task.checklinks.label": "మెటాడేటాలో లింక్లను తనిఖీ చేయండి", - "curation-task.task.noop.label": "NOOP", - "curation-task.task.profileformats.label": "బిట్స్ట్రీమ్ ఫార్మాట్లను ప్రొఫైల్ చేయండి", - "curation-task.task.requiredmetadata.label": "అవసరమైన మెటాడేటా కోసం తనిఖీ చేయండి", - "curation-task.task.translate.label": "మైక్రోసాఫ్ట్ ట్రాన్స్లేటర్", - "curation-task.task.vscan.label": "వైరస్ స్కాన్", - "curation-task.task.registerdoi.label": "DOI నమోదు చేయండి", - "curation.form.task-select.label": "టాస్క్:", - "curation.form.submit": "ప్రారంభించండి", - "curation.form.submit.success.head": "క్యూరేషన్ టాస్క్ విజయవంతంగా ప్రారంభించబడింది", - "curation.form.submit.success.content": "మీరు సంబంధిత ప్రాసెస్ పేజీకి రీడైరెక్ట్ చేయబడతారు.", - "curation.form.submit.error.head": "క్యూరేషన్ టాస్క్ రన్ చేయడంలో విఫలమైంది", - "curation.form.submit.error.content": "క్యూరేషన్ టాస్క్ ప్రారంభించడానికి ప్రయత్నించేటప్పుడు లోపం సంభవించింది.", - "curation.form.submit.error.invalid-handle": "ఈ ఆబ్జెక్ట్ కోసం హ్యాండల్ను నిర్ణయించలేకపోయాం", - "curation.form.handle.label": "హ్యాండల్:", - "curation.form.handle.hint": "హింట్: మొత్తం సైట్ అంతటా టాస్క్ రన్ చేయడానికి [your-handle-prefix]/0 ను నమోదు చేయండి (అన్ని టాస్క్లు ఈ సామర్థ్యాన్ని మద్దతు ఇవ్వకపోవచ్చు)", - "deny-request-copy.email.message": "ప్రియమైన {{ recipientName }},\nమీరు అభ్యర్థించిన ఫైల్(ల)కు కాపీని పంపడం సాధ్యం కాదని విచారంగా తెలియజేస్తున్నాము, డాక్యుమెంట్: \"{{ itemUrl }}\" ({{ itemName }}), దీనికి నేను రచయితను.\n\nఉత్తమ శుభాకాంక్షలు,\n{{ authorName }} <{{ authorEmail }}>", - "deny-request-copy.email.subject": "డాక్యుమెంట్ కాపీని అభ్యర్థించండి", - "deny-request-copy.error": "లోపం సంభవించింది", - "deny-request-copy.header": "డాక్యుమెంట్ కాపీ అభ్యర్థనను తిరస్కరించండి", - "deny-request-copy.intro": "ఈ సందేశం అభ్యర్థన దరఖాస్తుదారుకు పంపబడుతుంది", - "deny-request-copy.success": "అంశం అభ్యర్థన విజయవంతంగా తిరస్కరించబడింది", - "dropdown.clear": "ఎంపికను క్లియర్ చేయండి", - "dropdown.clear.tooltip": "ఎంపిక చేసిన ఎంపికను క్లియర్ చేయండి", - "dso.name.untitled": "శీర్షిక లేనిది", - "dso.name.unnamed": "పేరు లేనిది", - "dso-selector.create.collection.head": "కొత్త సేకరణ", - "dso-selector.create.collection.sub-level": "లో కొత్త సేకరణను సృష్టించండి", - "dso-selector.create.community.head": "కొత్త సంఘం", - "dso-selector.create.community.or-divider": "లేదా", - "dso-selector.create.community.sub-level": "లో కొత్త సంఘాన్ని సృష్టించండి", - "dso-selector.create.community.top-level": "కొత్త టాప్-లెవల్ సంఘాన్ని సృష్టించండి", - "dso-selector.create.item.head": "కొత్త అంశం", - "dso-selector.create.item.sub-level": "లో కొత్త అంశాన్ని సృష్టించండి", - "dso-selector.create.submission.head": "కొత్త సమర్పణ", - "dso-selector.edit.collection.head": "సేకరణను సవరించండి", - - "dso-selector.edit.community.head": "సంఘం సవరించు", - - "dso-selector.edit.item.head": "అంశం సవరించు", - - "dso-selector.error.title": "{{ type }} కోసం శోధించడంలో లోపం సంభవించింది", - - "dso-selector.export-metadata.dspaceobject.head": "నుండి మెటాడేటా ఎగుమతి చేయండి", - - "dso-selector.export-batch.dspaceobject.head": "బ్యాచ్ (ZIP) నుండి ఎగుమతి చేయండి", - - "dso-selector.import-batch.dspaceobject.head": "నుండి బ్యాచ్ దిగుమతి చేయండి", - - "dso-selector.no-results": "{{ type }} కనుగొనబడలేదు", - - "dso-selector.placeholder": "{{ type }} కోసం శోధించండి", - - "dso-selector.placeholder.type.community": "సంఘం", - - "dso-selector.placeholder.type.collection": "సేకరణ", - - "dso-selector.placeholder.type.item": "అంశం", - - "dso-selector.select.collection.head": "సేకరణను ఎంచుకోండి", - - "dso-selector.set-scope.community.head": "శోధన పరిధిని ఎంచుకోండి", - - "dso-selector.set-scope.community.button": "DSpace అంతటా శోధించండి", - - "dso-selector.set-scope.community.or-divider": "లేదా", - - "dso-selector.set-scope.community.input-header": "సంఘం లేదా సేకరణ కోసం శోధించండి", - - "dso-selector.claim.item.head": "ప్రొఫైల్ చిట్కాలు", - - "dso-selector.claim.item.body": "ఇవి మీకు సంబంధించిన ప్రొఫైల్స్. మీరు ఈ ప్రొఫైల్స్లో మిమ్మల్ని గుర్తించినట్లయితే, దాన్ని ఎంచుకోండి మరియు వివరాల పేజీలో, ఎంపికలలో, దాన్ని క్లెయిమ్ చేయడానికి ఎంచుకోండి. లేకపోతే మీరు క్రింద ఉన్న బటన్ను ఉపయోగించి కొత్తదాన్ని స్క్రాచ్ నుండి సృష్టించవచ్చు.", - - "dso-selector.claim.item.not-mine-label": "ఇవి ఏవీ నావి కావు", - - "dso-selector.claim.item.create-from-scratch": "కొత్తదాన్ని సృష్టించండి", - - "dso-selector.results-could-not-be-retrieved": "ఏదో తప్పు జరిగింది, దయచేసి మళ్లీ రిఫ్రెష్ చేయండి ↻", - - "supervision-group-selector.header": "సూపర్విజన్ గ్రూప్ సెలెక్టర్", - - "supervision-group-selector.select.type-of-order.label": "ఆర్డర్ రకాన్ని ఎంచుకోండి", - - "supervision-group-selector.select.type-of-order.option.none": "ఏదీ లేదు", - - "supervision-group-selector.select.type-of-order.option.editor": "ఎడిటర్", - - "supervision-group-selector.select.type-of-order.option.observer": "ఆబ్జర్వర్", - - "supervision-group-selector.select.group.label": "గ్రూప్ను ఎంచుకోండి", - - "supervision-group-selector.button.cancel": "రద్దు చేయండి", - - "supervision-group-selector.button.save": "సేవ్ చేయండి", - - "supervision-group-selector.select.type-of-order.error": "దయచేసి ఆర్డర్ రకాన్ని ఎంచుకోండి", - - "supervision-group-selector.select.group.error": "దయచేసి గ్రూప్ను ఎంచుకోండి", - - "supervision-group-selector.notification.create.success.title": "{{ name }} గ్రూప్ కోసం సూపర్విజన్ ఆర్డర్ విజయవంతంగా సృష్టించబడింది", - - "supervision-group-selector.notification.create.failure.title": "లోపం", - - "supervision-group-selector.notification.create.already-existing": "ఈ అంశంపై ఎంచుకున్న గ్రూప్ కోసం ఇప్పటికే సూపర్విజన్ ఆర్డర్ ఉంది", - - "confirmation-modal.export-metadata.header": "{{ dsoName }} కోసం మెటాడేటా ఎగుమతి చేయండి", - - "confirmation-modal.export-metadata.info": "మీరు {{ dsoName }} కోసం మెటాడేటాను ఎగుమతి చేయాలని ఖచ్చితంగా అనుకుంటున్నారా?", - - "confirmation-modal.export-metadata.cancel": "రద్దు చేయండి", - - "confirmation-modal.export-metadata.confirm": "ఎగుమతి చేయండి", - - "confirmation-modal.export-batch.header": "{{ dsoName }} కోసం బ్యాచ్ (ZIP) ఎగుమతి చేయండి", - - "confirmation-modal.export-batch.info": "మీరు {{ dsoName }} కోసం బ్యాచ్ (ZIP) ఎగుమతి చేయాలని ఖచ్చితంగా అనుకుంటున్నారా?", - - "confirmation-modal.export-batch.cancel": "రద్దు చేయండి", - - "confirmation-modal.export-batch.confirm": "ఎగుమతి చేయండి", - - "confirmation-modal.delete-eperson.header": "EPerson \"{{ dsoName }}\" ను తొలగించండి", - - "confirmation-modal.delete-eperson.info": "మీరు EPerson \"{{ dsoName }}\" ను తొలగించాలని ఖచ్చితంగా అనుకుంటున్నారా?", - - "confirmation-modal.delete-eperson.cancel": "రద్దు చేయండి", - - "confirmation-modal.delete-eperson.confirm": "తొలగించండి", - - "confirmation-modal.delete-community-collection-logo.info": "మీరు లోగోను తొలగించాలని ఖచ్చితంగా అనుకుంటున్నారా?", - - "confirmation-modal.delete-profile.header": "ప్రొఫైల్ తొలగించండి", - - "confirmation-modal.delete-profile.info": "మీరు మీ ప్రొఫైల్ను తొలగించాలని ఖచ్చితంగా అనుకుంటున్నారా?", - - "confirmation-modal.delete-profile.cancel": "రద్దు చేయండి", - - "confirmation-modal.delete-profile.confirm": "తొలగించండి", - - "confirmation-modal.delete-subscription.header": "చందాను తొలగించండి", - - "confirmation-modal.delete-subscription.info": "మీరు \"{{ dsoName }}\" కోసం చందాను తొలగించాలని ఖచ్చితంగా అనుకుంటున్నారా?", - - "confirmation-modal.delete-subscription.cancel": "రద్దు చేయండి", - - "confirmation-modal.delete-subscription.confirm": "తొలగించండి", - - "confirmation-modal.review-account-info.header": "మార్పులను సేవ్ చేయండి", - - "confirmation-modal.review-account-info.info": "మీరు మీ ప్రొఫైల్కు మార్పులను సేవ్ చేయాలని ఖచ్చితంగా అనుకుంటున్నారా?", - - "confirmation-modal.review-account-info.cancel": "రద్దు చేయండి", - - "confirmation-modal.review-account-info.confirm": "నిర్ధారించండి", - - "confirmation-modal.review-account-info.save": "సేవ్ చేయండి", - - "error.bitstream": "బిట్స్ట్రీమ్ పొందడంలో లోపం", - - "error.browse-by": "అంశాలను పొందడంలో లోపం", - - "error.collection": "సేకరణ పొందడంలో లోపం", - - "error.collections": "సేకరణలు పొందడంలో లోపం", - - "error.community": "సంఘం పొందడంలో లోపం", - - "error.identifier": "ఐడెంటిఫైయర్ కోసం ఏ అంశం కనుగొనబడలేదు", - - "error.default": "లోపం", - - "error.item": "అంశం పొందడంలో లోపం", - - "error.items": "అంశాలను పొందడంలో లోపం", - - "error.objects": "ఆబ్జెక్ట్లను పొందడంలో లోపం", - - "error.recent-submissions": "ఇటీవలి సబ్మిషన్లు పొందడంలో లోపం", - - "error.profile-groups": "ప్రొఫైల్ గ్రూప్లను పొందడంలో లోపం", - - "error.search-results": "శోధన ఫలితాలను పొందడంలో లోపం", - - "error.invalid-search-query": "శోధన ప్రశ్న చెల్లదు. దయచేసి ఈ లోపం గురించి మరింత సమాచారం కోసం Solr ప్రశ్న సింటాక్స్ ఉత్తమ పద్ధతులను తనిఖీ చేయండి.", - - "error.sub-collections": "ఉప సేకరణలు పొందడంలో లోపం", - - "error.sub-communities": "ఉప సంఘాలు పొందడంలో లోపం", - - "error.submission.sections.init-form-error": "సెక్షన్ ప్రారంభించడంలో లోపం సంభవించింది, దయచేసి మీ ఇన్పుట్-ఫారమ్ కాన్ఫిగరేషన్ను తనిఖీ చేయండి. వివరాలు క్రింద ఉన్నాయి :

", - - "error.top-level-communities": "టాప్-లెవల్ సంఘాలు పొందడంలో లోపం", - - "error.validation.license.notgranted": "మీ సబ్మిషన్ను పూర్తి చేయడానికి మీరు ఈ లైసెన్స్ను మంజూరు చేయాలి. మీరు ప్రస్తుతం ఈ లైసెన్స్ను మంజూరు చేయలేకపోతే, మీరు మీ పనిని సేవ్ చేసి తర్వాత తిరిగి రావచ్చు లేదా సబ్మిషన్ను తీసివేయవచ్చు.", - - "error.validation.cclicense.required": "మీ సబ్మిషన్ను పూర్తి చేయడానికి మీరు ఈ cclicenseని మంజూరు చేయాలి. మీరు ప్రస్తుతం cclicenseని మంజూరు చేయలేకపోతే, మీరు మీ పనిని సేవ్ చేసి తర్వాత తిరిగి రావచ్చు లేదా సబ్మిషన్ను తీసివేయవచ్చు.", - - "error.validation.pattern": "ఈ ఇన్పుట్ ప్రస్తుత నమూనా ద్వారా పరిమితం చేయబడింది: {{ pattern }}.", - - "error.validation.filerequired": "ఫైల్ అప్లోడ్ తప్పనిసరి", - - "error.validation.required": "ఈ ఫీల్డ్ అవసరం", - - "error.validation.NotValidEmail": "ఇది చెల్లుబాటు అయ్యే ఇమెయిల్ కాదు", - - "error.validation.emailTaken": "ఈ ఇమెయిల్ ఇప్పటికే తీసుకోబడింది", - - "error.validation.groupExists": "ఈ గ్రూప్ ఇప్పటికే ఉంది", - - "error.validation.metadata.name.invalid-pattern": "ఈ ఫీల్డ్ డాట్స్, కామాలు లేదా స్పేస్లను కలిగి ఉండకూడదు. దయచేసి ఎలిమెంట్ & క్వాలిఫైయర్ ఫీల్డ్లను ఉపయోగించండి", - - "error.validation.metadata.name.max-length": "ఈ ఫీల్డ్ 32 క్యారెక్టర్ల కంటే ఎక్కువ కలిగి ఉండకూడదు", - - "error.validation.metadata.namespace.max-length": "ఈ ఫీల్డ్ 256 క్యారెక్టర్ల కంటే ఎక్కువ కలిగి ఉండకూడదు", - - "error.validation.metadata.element.invalid-pattern": "ఈ ఫీల్డ్ డాట్స్, కామాలు లేదా స్పేస్లను కలిగి ఉండకూడదు. దయచేసి క్వాలిఫైయర్ ఫీల్డ్ను ఉపయోగించండి", - - "error.validation.metadata.element.max-length": "ఈ ఫీల్డ్ 64 క్యారెక్టర్ల కంటే ఎక్కువ కలిగి ఉండకూడదు", - - "error.validation.metadata.qualifier.invalid-pattern": "ఈ ఫీల్డ్ డాట్స్, కామాలు లేదా స్పేస్లను కలిగి ఉండకూడదు", - - "error.validation.metadata.qualifier.max-length": "ఈ ఫీల్డ్ 64 క్యారెక్టర్ల కంటే ఎక్కువ కలిగి ఉండకూడదు", - - "feed.description": "సిండికేషన్ ఫీడ్", - - "file-download-link.restricted": "పరిమిత బిట్స్ట్రీమ్", - - "file-download-link.secure-access": "సురక్షిత యాక్సెస్ టోకెన్ ద్వారా అందుబాటులో ఉన్న పరిమిత బిట్స్ట్రీమ్", - - "file-section.error.header": "ఈ అంశం కోసం ఫైళ్లను పొందడంలో లోపం", - - "footer.copyright": "కాపీరైట్ © 2002-{{ year }}", - - "footer.link.accessibility": "యాక్సెసిబిలిటీ సెట్టింగ్లు", - - "footer.link.dspace": "DSpace సాఫ్ట్వేర్", - - "footer.link.lyrasis": "LYRASIS", - - "footer.link.cookies": "కుకీ సెట్టింగ్లు", - - "footer.link.privacy-policy": "గోప్యతా విధానం", - - "footer.link.end-user-agreement": "ఎండ్ యూజర్ ఒప్పందం", - - "footer.link.feedback": "ఫీడ్బ్యాక్ పంపండి", - - "footer.link.coar-notify-support": "COAR నోటిఫై", - - "forgot-email.form.header": "పాస్వర్డ్ మర్చిపోయాను", - - "forgot-email.form.info": "ఖాతాతో అనుబంధించబడిన ఇమెయిల్ చిరునామాను నమోదు చేయండి.", - - "forgot-email.form.email": "ఇమెయిల్ చిరునామా *", - - "forgot-email.form.email.error.required": "దయచేసి ఇమెయిల్ చిరునామాను నమోదు చేయండి", - - "forgot-email.form.email.error.not-email-form": "దయచేసి చెల్లుబాటు అయ్యే ఇమెయిల్ చిరునామాను నమోదు చేయండి", - - "forgot-email.form.email.hint": "ఈ చిరునామాకు ఇమెయిల్ పంపబడుతుంది, దానితో మరింత సూచనలు ఉంటాయి.", - - "forgot-email.form.submit": "పాస్వర్డ్ రీసెట్ చేయండి", - - "forgot-email.form.success.head": "పాస్వర్డ్ రీసెట్ ఇమెయిల్ పంపబడింది", - - "forgot-email.form.success.content": "{{ email }} కు ఒక ప్రత్యేక URL మరియు మరింత సూచనలతో కూడిన ఇమెయిల్ పంపబడింది.", - - "forgot-email.form.error.head": "పాస్వర్డ్ రీసెట్ చేయడానికి ప్రయత్నించేటప్పుడు లోపం సంభవించింది", - - "forgot-email.form.error.content": "ఈ ఇమెయిల్ చిరునామాతో అనుబంధించబడిన ఖాతా కోసం పాస్వర్డ్ను రీసెట్ చేయడానికి ప్రయత్నించేటప్పుడు లోపం సంభవించింది: {{ email }}", - - "forgot-password.title": "పాస్వర్డ్ మర్చిపోయాను", - - "forgot-password.form.head": "పాస్వర్డ్ మర్చిపోయాను", - - "forgot-password.form.info": "దయచేసి క్రింద ఉన్న బాక్స్లో కొత్త పాస్వర్డ్ను నమోదు చేయండి, మరియు దాన్ని రెండవ బాక్స్లో మళ్లీ టైప్ చేసి నిర్ధారించండి.", - - "forgot-password.form.card.security": "భద్రత", - - "forgot-password.form.identification.header": "గుర్తించండి", - - "forgot-password.form.identification.email": "ఇమెయిల్ చిరునామా: ", - - "forgot-password.form.label.password": "పాస్వర్డ్", - - "forgot-password.form.label.passwordrepeat": "నిర్ధారించడానికి మళ్లీ టైప్ చేయండి", - - "forgot-password.form.error.empty-password": "దయచేసి పై బాక్స్లో పాస్వర్డ్ను నమోదు చేయండి.", - - "forgot-password.form.error.matching-passwords": "పాస్వర్డ్లు సరిపోలడం లేదు.", - - "forgot-password.form.notification.error.title": "కొత్త పాస్వర్డ్ను సబ్మిట్ చేయడానికి ప్రయత్నించేటప్పుడు లోపం సంభవించింది", - - "forgot-password.form.notification.success.content": "పాస్వర్డ్ రీసెట్ విజయవంతమైంది. మీరు సృష్టించిన వినియోగదారుగా లాగిన్ అయ్యారు.", - - "forgot-password.form.notification.success.title": "పాస్వర్డ్ రీసెట్ పూర్తయింది", - - "forgot-password.form.submit": "పాస్వర్డ్ను సబ్మిట్ చేయండి", - - "form.add": "మరిన్ని జోడించండి", - - "form.add-help": "ప్రస్తుత ఎంట్రీని జోడించడానికి మరియు మరొకదాన్ని జోడించడానికి ఇక్కడ క్లిక్ చేయండి", - - "form.cancel": "రద్దు చేయండి", - - "form.clear": "క్లియర్ చేయండి", - - "form.clear-help": "ఎంచుకున్న విలువను తీసివేయడానికి ఇక్కడ క్లిక్ చేయండి", - - "form.discard": "డిస్కార్డ్ చేయండి", - - "form.drag": "డ్రాగ్ చేయండి", - - "form.edit": "సవరించండి", - - "form.edit-help": "ఎంచుకున్న విలువను సవరించడానికి ఇక్కడ క్లిక్ చేయండి", - - "form.first-name": "మొదటి పేరు", - - "form.group-collapse": "కుదించండి", - - "form.group-collapse-help": "కుదించడానికి ఇక్కడ క్లిక్ చేయండి", - - "form.group-expand": "విస్తరించండి", - - "form.group-expand-help": "మరిన్ని ఎలిమెంట్లను జోడించడానికి ఇక్కడ క్లిక్ చేయండి", - - "form.last-name": "చివరి పేరు", - - "form.loading": "లోడ్ అవుతోంది...", - - "form.lookup": "లుకప్", - - "form.lookup-help": "ఇప్పటికే ఉన్న సంబంధాన్ని చూడటానికి ఇక్కడ క్లిక్ చేయండి", - - "form.no-results": "ఫలితాలు ఏవీ కనుగొనబడలేదు", - - "form.no-value": "విలువ నమోదు చేయబడలేదు", - - "form.other-information.email": "ఇమెయిల్", - - "form.other-information.first-name": "మొదటి పేరు", - - "form.other-information.insolr": "సోల్ర్ ఇండెక్స్లో", - - "form.other-information.institution": "సంస్థ", - - "form.other-information.last-name": "చివరి పేరు", - - "form.other-information.orcid": "ORCID", - - "form.remove": "తీసివేయండి", - - "form.save": "సేవ్ చేయండి", - - "form.save-help": "మార్పులను సేవ్ చేయండి", - - "form.search": "శోధించండి", - - "form.search-help": "ఇప్పటికే ఉన్న కరెస్పాండెన్స్ను చూడటానికి ఇక్కడ క్లిక్ చేయండి", - - "form.submit": "సేవ్ చేయండి", - - "form.create": "సృష్టించండి", - - "form.number-picker.decrement": "{{field}} తగ్గించండి", - - "form.number-picker.increment": "{{field}} పెంచండి", - - "form.repeatable.sort.tip": "కొత్త స్థానంలో అంశాన్ని వదలండి", - - "grant-deny-request-copy.deny": "యాక్సెస్ అభ్యర్థనను తిరస్కరించండి", - - "grant-deny-request-copy.revoke": "యాక్సెస్ను రద్దు చేయండి", - - "grant-deny-request-copy.email.back": "వెనుకకు", - - "grant-deny-request-copy.email.message": "ఐచ్ఛిక అదనపు సందేశం", - - "grant-deny-request-copy.email.message.empty": "దయచేసి ఒక సందేశాన్ని నమోదు చేయండి", - - "grant-deny-request-copy.email.permissions.info": "మీరు ఈ సందర్భాన్ని ఉపయోగించి డాక్యుమెంట్పై యాక్సెస్ పరిమితులను పునఃపరిశీలించవచ్చు, ఈ అభ్యర్థనలకు ప్రతిస్పందించాల్సిన అవసరం లేకుండా చేయవచ్చు. మీరు ఈ పరిమితులను తీసివేయడానికి రిపోజిటరీ నిర్వాహకులను అడగాలనుకుంటే, దయచేసి క్రింద ఉన్న బాక్స్ను చెక్ చేయండి.", - - "grant-deny-request-copy.email.permissions.label": "ఓపెన్ యాక్సెస్కు మార్చండి", - - "grant-deny-request-copy.email.send": "పంపండి", - - "grant-deny-request-copy.email.subject": "విషయం", - - "grant-deny-request-copy.email.subject.empty": "దయచేసి ఒక విషయాన్ని నమోదు చేయండి", - - "grant-deny-request-copy.grant": "యాక్సెస్ అభ్యర్థనను మంజూరు చేయండి", - - "grant-deny-request-copy.header": "డాక్యుమెంట్ కాపీ అభ్యర్థన", - - "grant-deny-request-copy.home-page": "నన్ను హోమ్ పేజీకి తీసుకెళ్లండి", - - "grant-deny-request-copy.intro1": "మీరు {{ name }} డాక్యుమెంట్ యొక్క రచయితలలో ఒకరు అయితే, దయచేసి యూజర్ అభ్యర్థనకు ప్రతిస్పందించడానికి క్రింది ఎంపికలలో ఒకదాన్ని ఉపయోగించండి.", - - "grant-deny-request-copy.intro2": "ఒక ఎంపికను ఎంచుకున్న తర్వాత, మీరు సవరించగలిగే సూచించబడిన ఇమెయిల్ రిప్లై మీకు ప్రదర్శించబడుతుంది.", - - "grant-deny-request-copy.previous-decision": "ఈ అభ్యర్థన ఇంతకు ముందు సురక్షిత యాక్సెస్ టోకెన్తో మంజూరు చేయబడింది. మీరు ఇప్పుడు ఈ యాక్సెస్ టోకెన్ను వెంటనే అమాన్యం చేయడానికి ఈ యాక్సెస్ను రద్దు చేయవచ్చు", - - "grant-deny-request-copy.processed": "ఈ అభ్యర్థన ఇప్పటికే ప్రాసెస్ చేయబడింది. మీరు క్రింద ఉన్న బటన్ను ఉపయోగించి హోమ్ పేజీకి తిరిగి వెళ్లవచ్చు.", - - "grant-request-copy.email.subject": "డాక్యుమెంట్ కాపీని అభ్యర్థించండి", - - "grant-request-copy.error": "లోపం సంభవించింది", - - "grant-request-copy.header": "డాక్యుమెంట్ కాపీ అభ్యర్థనను మంజూరు చేయండి", - - "grant-request-copy.intro.attachment": "అభ్యర్థకుడికి ఒక సందేశం పంపబడుతుంది. అభ్యర్థించబడిన డాక్యుమెంట్(లు) అటాచ్ చేయబడతాయి.", - - "grant-request-copy.intro.link": "అభ్యర్థకుడికి ఒక సందేశం పంపబడుతుంది. అభ్యర్థించబడిన డాక్యుమెంట్(లు)కు యాక్సెస్ అందించే సురక్షిత లింక్ అటాచ్ చేయబడుతుంది. లింక్ క్రింద ఉన్న \"యాక్సెస్ పీరియడ్\" మెనూ నుండి ఎంచుకున్న సమయం వరకు యాక్సెస్ అందిస్తుంది.", - - "grant-request-copy.intro.link.preview": "అభ్యర్థకుడికి పంపబడే లింక్ యొక్క ప్రివ్యూ క్రింద ఉంది:", - - "grant-request-copy.success": "అంశం అభ్యర్థన విజయవంతంగా మంజూరు చేయబడింది", - - "grant-request-copy.access-period.header": "యాక్సెస్ పీరియడ్", - - "grant-request-copy.access-period.+1DAY": "1 రోజు", - - "grant-request-copy.access-period.+7DAYS": "1 వారం", - - "grant-request-copy.access-period.+1MONTH": "1 నెల", - - "grant-request-copy.access-period.+3MONTHS": "3 నెలలు", - - "grant-request-copy.access-period.FOREVER": "ఎప్పటికీ", - - "health.breadcrumbs": "ఆరోగ్యం", - - "health-page.heading": "ఆరోగ్యం", - - "health-page.info-tab": "సమాచారం", - - "health-page.status-tab": "స్థితి", - - "health-page.error.msg": "ఆరోగ్య చెక్ సర్వీస్ తాత్కాలికంగా అందుబాటులో లేదు", - - "health-page.property.status": "స్థితి కోడ్", - - "health-page.section.db.title": "డేటాబేస్", - - "health-page.section.geoIp.title": "జియోఐపి", - - "health-page.section.solrAuthorityCore.title": "సోల్ర్: అథారిటీ కోర్", - - "health-page.section.solrOaiCore.title": "సోల్ర్: OAI కోర్", - - "health-page.section.solrSearchCore.title": "సోల్ర్: శోధన కోర్", - - "health-page.section.solrStatisticsCore.title": "సోల్ర్: గణాంకాలు కోర్", - - "health-page.section-info.app.title": "అప్లికేషన్ బ్యాకెండ్", - - "health-page.section-info.java.title": "జావా", - - "health-page.status": "స్థితి", - - "health-page.status.ok.info": "కార్యాచరణ", - - "health-page.status.error.info": "సమస్యలు కనిపించాయి", - - "health-page.status.warning.info": "సమస్యలు కనిపించవచ్చు", - - "health-page.title": "ఆరోగ్యం", - - "health-page.section.no-issues": "సమస్యలు కనిపించలేదు", - - "home.description": "", - - "home.breadcrumbs": "హోమ్", - - "home.search-form.placeholder": "రిపోజిటరీలో శోధించండి ...", - - "home.title": "హోమ్", - - "home.top-level-communities.head": "DSpaceలో కమ్యూనిటీలు", - - "home.top-level-communities.help": "దాని సేకరణలను బ్రౌజ్ చేయడానికి ఒక కమ్యూనిటీని ఎంచుకోండి.", - - "info.accessibility-settings.breadcrumbs": "సుసాధ్యత సెట్టింగ్లు", - - "info.accessibility-settings.cookie-warning": "సుసాధ్యత సెట్టింగ్లను ఇప్పుడు సేవ్ చేయడం సాధ్యం కాదు. వినియోగదారు డేటాలో సెట్టింగ్లను సేవ్ చేయడానికి లాగిన్ అవ్వండి, లేదా పేజీ దిగువన ఉన్న 'కుకీ సెట్టింగ్లు' మెనూ ఉపయోగించి 'సుసాధ్యత సెట్టింగ్లు' కుకీని అంగీకరించండి. కుకీ అంగీకరించబడిన తర్వాత, ఈ సందేశాన్ని తీసివేయడానికి మీరు పేజీని రీలోడ్ చేయవచ్చు.", - - "info.accessibility-settings.disableNotificationTimeOut.label": "సమయం ముగిసిన తర్వాత నోటిఫికేషన్లను స్వయంచాలకంగా మూసివేయండి", - - "info.accessibility-settings.disableNotificationTimeOut.hint": "ఈ టోగుల్ యాక్టివేట్ చేయబడినప్పుడు, సమయం ముగిసిన తర్వాత నోటిఫికేషన్లు స్వయంచాలకంగా మూసివేయబడతాయి. డీయాక్టివేట్ చేయబడినప్పుడు, నోటిఫికేషన్లు మాన్యువల్గా మూసివేయబడే వరకు తెరిచి ఉంటాయి.", - - "info.accessibility-settings.failed-notification": "సుసాధ్యత సెట్టింగ్లను సేవ్ చేయడంలో విఫలమైంది", - - "info.accessibility-settings.invalid-form-notification": "సేవ్ చేయలేదు. ఫారమ్‌లో చెల్లని విలువలు ఉన్నాయి.", - - "info.accessibility-settings.liveRegionTimeOut.label": "ARIA లైవ్ ప్రాంతం సమయం (సెకన్లలో)", - - "info.accessibility-settings.liveRegionTimeOut.hint": "ARIA లైవ్ ప్రాంతంలో ఒక సందేశం అదృశ్యమయ్యే వ్యవధి. ARIA లైవ్ ప్రాంతాలు పేజీలో కనిపించవు, కానీ స్క్రీన్ రీడర్‌లకు నోటిఫికేషన్ల (లేదా ఇతర చర్యల) ప్రకటనలను అందిస్తాయి.", - - "info.accessibility-settings.liveRegionTimeOut.invalid": "లైవ్ ప్రాంతం సమయం 0 కంటే ఎక్కువగా ఉండాలి", - - "info.accessibility-settings.notificationTimeOut.label": "నోటిఫికేషన్ సమయం (సెకన్లలో)", - - "info.accessibility-settings.notificationTimeOut.hint": "నోటిఫికేషన్ అదృశ్యమయ్యే వ్యవధి.", - - "info.accessibility-settings.notificationTimeOut.invalid": "నోటిఫికేషన్ సమయం 0 కంటే ఎక్కువగా ఉండాలి", - - "info.accessibility-settings.save-notification.cookie": "సెట్టింగ్లు స్థానికంగా విజయవంతంగా సేవ్ చేయబడ్డాయి.", - - "info.accessibility-settings.save-notification.metadata": "వినియోగదారు ప్రొఫైల్‌లో సెట్టింగ్లు విజయవంతంగా సేవ్ చేయబడ్డాయి.", - - "info.accessibility-settings.reset-failed": "రీసెట్ చేయడంలో విఫలమైంది. లాగిన్ అవ్వండి లేదా 'సుసాధ్యత సెట్టింగ్లు' కుకీని అంగీకరించండి.", - - "info.accessibility-settings.reset-notification": "సెట్టింగ్లు విజయవంతంగా రీసెట్ చేయబడ్డాయి.", - - "info.accessibility-settings.reset": "సుసాధ్యత సెట్టింగ్లను రీసెట్ చేయండి", - - "info.accessibility-settings.submit": "సుసాధ్యత సెట్టింగ్లను సేవ్ చేయండి", - - "info.accessibility-settings.title": "సుసాధ్యత సెట్టింగ్లు", - - "info.end-user-agreement.accept": "నేను ఎండ్ యూజర్ ఒప్పందాన్ని చదివి అంగీకరిస్తున్నాను", - - "info.end-user-agreement.accept.error": "ఎండ్ యూజర్ ఒప్పందాన్ని అంగీకరించడంలో లోపం సంభవించింది", - - "info.end-user-agreement.accept.success": "ఎండ్ యూజర్ ఒప్పందం విజయవంతంగా నవీకరించబడింది", - - "info.end-user-agreement.breadcrumbs": "ఎండ్ యూజర్ ఒప్పందం", - - "info.end-user-agreement.buttons.cancel": "రద్దు చేయండి", - - "info.end-user-agreement.buttons.save": "సేవ్ చేయండి", - - "info.end-user-agreement.head": "ఎండ్ యూజర్ ఒప్పందం", - - "info.end-user-agreement.title": "ఎండ్ యూజర్ ఒప్పందం", - - "info.end-user-agreement.hosting-country": "యునైటెడ్ స్టేట్స్", - - "info.privacy.breadcrumbs": "గోప్యతా ప్రకటన", - - "info.privacy.head": "గోప్యతా ప్రకటన", - - "info.privacy.title": "గోప్యతా ప్రకటన", - - "info.feedback.breadcrumbs": "ఫీడ్‌బ్యాక్", - - "info.feedback.head": "ఫీడ్‌బ్యాక్", - - "info.feedback.title": "ఫీడ్‌బ్యాక్", - - "info.feedback.info": "DSpace సిస్టమ్ గురించి మీ ఫీడ్‌బ్యాక్‌ను పంచినందుకు ధన్యవాదాలు! మీ వ్యాఖ్యలు మాకు ముఖ్యమైనవి!", - - "info.feedback.email_help": "మీ ఫీడ్‌బ్యాక్‌పై ఫాలో అప్ చేయడానికి ఈ ఇమెయిల్ ఉపయోగించబడుతుంది.", - - "info.feedback.send": "ఫీడ్‌బ్యాక్ పంపండి", - - "info.feedback.comments": "వ్యాఖ్యలు", - - "info.feedback.email-label": "మీ ఇమెయిల్", - - "info.feedback.create.success": "ఫీడ్‌బ్యాక్ విజయవంతంగా పంపబడింది!", - - "info.feedback.error.email.required": "చెల్లుబాటు అయ్యే ఇమెయిల్ చిరునామా అవసరం", - - "info.feedback.error.message.required": "ఒక వ్యాఖ్య అవసరం", - - "info.feedback.page-label": "పేజీ", - - "info.feedback.page_help": "మీ ఫీడ్‌బ్యాక్‌కు సంబంధించిన పేజీ", - - "info.coar-notify-support.title": "COAR నోటిఫై మద్దతు", - - "info.coar-notify-support.breadcrumbs": "COAR నోటిఫై మద్దతు", - - "item.alerts.private": "ఈ అంశం కనుగొనబడదు", - - "item.alerts.withdrawn": "ఈ అంశం వెనక్కి తీసుకోబడింది", - - "item.alerts.reinstate-request": "పునరుద్ధరణ కోరండి", - - "quality-assurance.event.table.person-who-requested": "ఎవరు కోరారు", - - "item.edit.authorizations.heading": "ఈ ఎడిటర్‌తో మీరు ఒక అంశం యొక్క పాలసీలను వీక్షించవచ్చు మరియు మార్చవచ్చు, అలాగే వ్యక్తిగత అంశం భాగాల పాలసీలను మార్చవచ్చు: బండిల్‌లు మరియు బిట్‌స్ట్రీమ్‌లు. సంక్షిప్తంగా, ఒక అంశం బండిల్‌ల కంటైనర్, మరియు బండిల్‌లు బిట్‌స్ట్రీమ్‌ల కంటైనర్‌లు. కంటైనర్‌లు సాధారణంగా ADD/REMOVE/READ/WRITE పాలసీలను కలిగి ఉంటాయి, అయితే బిట్‌స్ట్రీమ్‌లు READ/WRITE పాలసీలను మాత్రమే కలిగి ఉంటాయి.", - - "item.edit.authorizations.title": "అంశం యొక్క పాలసీలను సవరించండి", - - "item.badge.status": "అంశం స్థితి:", - - "item.badge.private": "కనుగొనబడదు", - - "item.badge.withdrawn": "వెనక్కి తీసుకోబడింది", - - "item.bitstreams.upload.bundle": "బండిల్", - - "item.bitstreams.upload.bundle.placeholder": "ఒక బండిల్‌ను ఎంచుకోండి లేదా కొత్త బండిల్ పేరును నమోదు చేయండి", - - "item.bitstreams.upload.bundle.new": "బండిల్ సృష్టించండి", - - "item.bitstreams.upload.bundles.empty": "ఈ అంశంలో బిట్‌స్ట్రీమ్‌ను అప్‌లోడ్ చేయడానికి ఏ బండిల్‌లు లేవు.", - - "item.bitstreams.upload.cancel": "రద్దు చేయండి", - - "item.bitstreams.upload.drop-message": "అప్‌లోడ్ చేయడానికి ఒక ఫైల్‌ను డ్రాప్ చేయండి", - - "item.bitstreams.upload.item": "అంశం: ", - - "item.bitstreams.upload.notifications.bundle.created.content": "కొత్త బండిల్ విజయవంతంగా సృష్టించబడింది.", - - "item.bitstreams.upload.notifications.bundle.created.title": "బండిల్ సృష్టించబడింది", - - "item.bitstreams.upload.notifications.upload.failed": "అప్‌లోడ్ విఫలమైంది. మళ్లీ ప్రయత్నించే ముందు కంటెంట్‌ను ధృవీకరించండి.", - - "item.bitstreams.upload.title": "బిట్‌స్ట్రీమ్ అప్‌లోడ్ చేయండి", - - "item.edit.bitstreams.bundle.edit.buttons.upload": "అప్‌లోడ్", - - "item.edit.bitstreams.bundle.displaying": "ప్రస్తుతం {{ total }}లో {{ amount }} బిట్‌స్ట్రీమ్‌లు ప్రదర్శించబడుతున్నాయి.", - - "item.edit.bitstreams.bundle.load.all": "అన్ని లోడ్ చేయండి ({{ total }})", - - "item.edit.bitstreams.bundle.load.more": "మరిన్ని లోడ్ చేయండి", - - "item.edit.bitstreams.bundle.name": "బండిల్: {{ name }}", - - "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} బండిల్‌లో బిట్‌స్ట్రీమ్‌లు", - - "item.edit.bitstreams.bundle.tooltip": "మీరు ఒక బిట్‌స్ట్రీమ్‌ను వేరే పేజీకి తరలించడానికి దానిని పేజీ నంబర్‌పై డ్రాప్ చేయవచ్చు.", - - "item.edit.bitstreams.discard-button": "విస్మరించండి", - - "item.edit.bitstreams.edit.buttons.download": "డౌన్‌లోడ్", - - "item.edit.bitstreams.edit.buttons.drag": "డ్రాగ్", - - "item.edit.bitstreams.edit.buttons.edit": "సవరించండి", - - "item.edit.bitstreams.edit.buttons.remove": "తీసివేయండి", - - "item.edit.bitstreams.edit.buttons.undo": "మార్పులను రద్దు చేయండి", - - "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} స్థానం {{ toIndex }}కి తిరిగి వచ్చింది మరియు ఇక ఎంపిక చేయబడలేదు.", - - "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} ఇక ఎంపిక చేయబడలేదు.", - - "item.edit.bitstreams.edit.live.loading": "తరలింపు పూర్తవ్వడానికి వేచి ఉండండి.", - - "item.edit.bitstreams.edit.live.select": "{{ bitstream }} ఎంపిక చేయబడింది.", - - "item.edit.bitstreams.edit.live.move": "{{ bitstream }} ఇప్పుడు స్థానం {{ toIndex }}లో ఉంది.", - - "item.edit.bitstreams.empty": "ఈ అంశంలో ఏ బిట్‌స్ట్రీమ్‌లు లేవు. ఒకదాన్ని సృష్టించడానికి అప్‌లోడ్ బటన్‌పై క్లిక్ చేయండి.", - - "item.edit.bitstreams.info-alert": "బిట్‌స్ట్రీమ్‌లను వాటి బండిల్‌ల్లో డ్రాగ్ హ్యాండిల్‌ను పట్టుకొని మౌస్‌ను కదిలించడం ద్వారా పునర్వ్యవస్థీకరించవచ్చు. ప్రత్యామ్నాయంగా, కీబోర్డ్ ఉపయోగించి బిట్‌స్ట్రీమ్‌లను తరలించవచ్చు: బిట్‌స్ట్రీమ్ యొక్క డ్రాగ్ హ్యాండిల్ ఫోకస్‌లో ఉన్నప్పుడు ఎంటర్ నొక్కడం ద్వారా బిట్‌స్ట్రీమ్‌ను ఎంచుకోండి. బిట్‌స్ట్రీమ్‌ను పైకి లేదా కిందికి తరలించడానికి ఎర్రో కీలను ఉపయోగించండి. బిట్‌స్ట్రీమ్ యొక్క ప్రస్తుత స్థానాన్ని నిర్ధారించడానికి మళ్లీ ఎంటర్ నొక్కండి.", - - "item.edit.bitstreams.headers.actions": "చర్యలు", - - "item.edit.bitstreams.headers.bundle": "బండిల్", - - "item.edit.bitstreams.headers.description": "వివరణ", - - "item.edit.bitstreams.headers.format": "ఫార్మాట్", - - "item.edit.bitstreams.headers.name": "పేరు", - - "item.edit.bitstreams.notifications.discarded.content": "మీ మార్పులు విస్మరించబడ్డాయి. మీ మార్పులను పునరుద్ధరించడానికి 'అన్‌డు' బటన్‌పై క్లిక్ చేయండి", - - "item.edit.bitstreams.notifications.discarded.title": "మార్పులు విస్మరించబడ్డాయి", - - "item.edit.bitstreams.notifications.move.failed.title": "బిట్‌స్ట్రీమ్‌లను తరలించడంలో లోపం", - - "item.edit.bitstreams.notifications.move.saved.content": "ఈ అంశం యొక్క బిట్‌స్ట్రీమ్‌లు మరియు బండిల్‌లకు మీ తరలింపు మార్పులు సేవ్ చేయబడ్డాయి.", - - "item.edit.bitstreams.notifications.move.saved.title": "తరలింపు మార్పులు సేవ్ చేయబడ్డాయి", - - "item.edit.bitstreams.notifications.outdated.content": "మీరు ప్రస్తుతం పని చేస్తున్న అంశం మరొక వినియోగదారునిచే మార్చబడింది. సంఘర్షణలను నివారించడానికి మీ ప్రస్తుత మార్పులు విస్మరించబడ్డాయి", - - "item.edit.bitstreams.notifications.outdated.title": "మార్పులు పాతవయ్యాయి", - - "item.edit.bitstreams.notifications.remove.failed.title": "బిట్‌స్ట్రీమ్‌ను తొలగించడంలో లోపం", - - "item.edit.bitstreams.notifications.remove.saved.content": "ఈ అంశం యొక్క బిట్‌స్ట్రీమ్‌లకు మీ తొలగింపు మార్పులు సేవ్ చేయబడ్డాయి.", - - "item.edit.bitstreams.notifications.remove.saved.title": "తొలగింపు మార్పులు సేవ్ చేయబడ్డాయి", - - "item.edit.bitstreams.reinstate-button": "అన్‌డు", - - "item.edit.bitstreams.save-button": "సేవ్ చేయండి", - - "item.edit.bitstreams.upload-button": "అప్‌లోడ్", - - "item.edit.bitstreams.load-more.link": "మరిన్ని లోడ్ చేయండి", - - "item.edit.delete.cancel": "రద్దు చేయండి", - - "item.edit.delete.confirm": "తొలగించండి", - - "item.edit.delete.description": "ఈ అంశాన్ని పూర్తిగా తొలగించాలని మీరు ఖచ్చితంగా అనుకుంటున్నారా? హెచ్చరిక: ప్రస్తుతం, ఏ టోంబ్‌స్టోన్ మిగిలి ఉండదు.", - - "item.edit.delete.error": "అంశాన్ని తొలగించడంలో లోపం సంభవించింది", - - "item.edit.delete.header": "అంశాన్ని తొలగించండి: {{ id }}", - - "item.edit.delete.success": "అంశం తొలగించబడింది", - - "item.edit.head": "అంశాన్ని సవరించండి", - - "item.edit.breadcrumbs": "అంశాన్ని సవరించండి", - - "item.edit.tabs.disabled.tooltip": "మీకు ఈ ట్యాబ్‌ను యాక్సెస్ చేయడానికి అధికారం లేదు", - - "item.edit.tabs.mapper.head": "కలెక్షన్ మ్యాపర్", - - "item.edit.tabs.item-mapper.title": "అంశం సవరణ - కలెక్షన్ మ్యాపర్", - - "item.edit.identifiers.doi.status.UNKNOWN": "తెలియదు", - - "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "రిజిస్ట్రేషన్ కోసం క్యూ చేయబడింది", - - "item.edit.identifiers.doi.status.TO_BE_RESERVED": "రిజర్వేషన్ కోసం క్యూ చేయబడింది", - - "item.edit.identifiers.doi.status.IS_REGISTERED": "రిజిస్టర్ చేయబడింది", - - "item.edit.identifiers.doi.status.IS_RESERVED": "రిజర్వ్ చేయబడింది", - - "item.edit.identifiers.doi.status.UPDATE_RESERVED": "రిజర్వ్ చేయబడింది (అప్‌డేట్ క్యూ చేయబడింది)", - - "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "రిజిస్టర్ చేయబడింది (అప్‌డేట్ క్యూ చేయబడింది)", - - "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "అప్‌డేట్ మరియు రిజిస్ట్రేషన్ కోసం క్యూ చేయబడింది", - - "item.edit.identifiers.doi.status.TO_BE_DELETED": "తొలగింపు కోసం క్యూ చేయబడింది", - - "item.edit.identifiers.doi.status.DELETED": "తొలగించబడింది", - - "item.edit.identifiers.doi.status.PENDING": "పెండింగ్ (రిజిస్టర్ చేయబడలేదు)", - - "item.edit.identifiers.doi.status.MINTED": "మింటెడ్ (రిజిస్టర్ చేయబడలేదు)", - - "item.edit.tabs.status.buttons.register-doi.label": "కొత్త లేదా పెండింగ్ DOIని రిజిస్టర్ చేయండి", - - "item.edit.tabs.status.buttons.register-doi.button": "DOIని రిజిస్టర్ చేయండి...", - - "item.edit.register-doi.header": "కొత్త లేదా పెండింగ్ DOIని రిజిస్టర్ చేయండి", - - "item.edit.register-doi.description": "క్రింద ఏదైనా పెండింగ్ ఐడెంటిఫైయర్‌లు మరియు అంశం మెటాడేటాను సమీక్షించండి మరియు DOI రిజిస్ట్రేషన్‌తో కొనసాగడానికి నిర్ధారించండి, లేదా వెనుకకు వెళ్లడానికి రద్దు చేయండి", - - "item.edit.register-doi.confirm": "నిర్ధారించండి", - - "item.edit.register-doi.cancel": "రద్దు చేయండి", - - "item.edit.register-doi.success": "DOI విజయవంతంగా రిజిస్ట్రేషన్ కోసం క్యూ చేయబడింది.", - - "item.edit.register-doi.error": "DOIని రిజిస్టర్ చేయడంలో లోపం", - - "item.edit.register-doi.to-update": "ఈ DOI ఇప్పటికే మింటెడ్ చేయబడింది మరియు ఆన్‌లైన్‌లో రిజిస్ట్రేషన్ కోసం క్యూ చేయబడుతుంది", - - "item.edit.item-mapper.buttons.add": "ఎంచుకున్న కలెక్షన్‌లకు అంశాన్ని మ్యాప్ చేయండి", - - "item.edit.item-mapper.buttons.remove": "ఎంచుకున్న కలెక్షన్‌ల కోసం అంశం యొక్క మ్యాపింగ్‌ను తొలగించండి", - - "item.edit.item-mapper.cancel": "రద్దు చేయండి", - - "item.edit.item-mapper.description": "ఇది అడ్మినిస్ట్రేటర్‌లకు ఈ అంశాన్ని ఇతర కలెక్షన్‌లకు మ్యాప్ చేయడానికి అనుమతించే అంశం మ్యాపర్ టూల్. మీరు కలెక్షన్‌ల కోసం శోధించవచ్చు మరియు వాటిని మ్యాప్ చేయవచ్చు, లేదా అంశం ప్రస్తుతం మ్యాప్ చేయబడిన కలెక్షన్‌ల జాబితాను బ్రౌజ్ చేయవచ్చు.", - - "item.edit.item-mapper.head": "అంశం మ్యాపర్ - కలెక్షన్‌లకు అంశాన్ని మ్యాప్ చేయండి", - - "item.edit.item-mapper.item": "అంశం: \"{{name}}\"", - - "item.edit.item-mapper.no-search": "శోధన చేయడానికి ఒక ప్రశ్నను నమోదు చేయండి", - - "item.edit.item-mapper.notifications.add.error.content": "{{amount}} కలెక్షన్‌లకు అంశాన్ని మ్యాప్ చేయడంలో లోపాలు సంభవించాయి.", - - "item.edit.item-mapper.notifications.add.error.head": "మ్యాపింగ్ లోపాలు", - - "item.edit.item-mapper.notifications.add.success.content": "{{amount}} కలెక్షన్‌లకు అంశాన్ని విజయవంతంగా మ్యాప్ చేయబడింది.", - - "item.edit.item-mapper.notifications.add.success.head": "మ్యాపింగ్ పూర్తయింది", - - "item.edit.item-mapper.notifications.remove.error.content": "{{amount}} కలెక్షన్‌లకు మ్యాపింగ్‌ను తొలగించడంలో లోపాలు సంభవించాయి.", - - "item.edit.item-mapper.notifications.remove.error.head": "మ్యాపింగ్ తొలగింపు లోపాలు", - - "item.edit.item-mapper.notifications.remove.success.content": "{{amount}} కలెక్షన్‌లకు అంశం యొక్క మ్యాపింగ్ విజయవంతంగా తొలగించబడింది.", - - "item.edit.item-mapper.notifications.remove.success.head": "మ్యాపింగ్ తొలగింపు పూర్తయింది", - - "item.edit.item-mapper.search-form.placeholder": "కలెక్షన్‌లను శోధించండి...", - - "item.edit.item-mapper.tabs.browse": "మ్యాప్ చేయబడిన కలెక్షన్‌లను బ్రౌజ్ చేయండి", - - "item.edit.item-mapper.tabs.map": "కొత్త కలెక్షన్‌లను మ్యాప్ చేయండి", - - "item.edit.metadata.add-button": "జోడించండి", - - "item.edit.metadata.discard-button": "విస్మరించండి", - - "item.edit.metadata.edit.language": "భాషను సవరించండి", - - "item.edit.metadata.edit.value": "విలువను సవరించండి", - - "item.edit.metadata.edit.authority.key": "అథారిటీ కీని సవరించండి", - - "item.edit.metadata.edit.buttons.enable-free-text-editing": "ఉచిత-టెక్స్ట్ ఎడిటింగ్‌ను ప్రారంభించండి", - - "item.edit.metadata.edit.buttons.disable-free-text-editing": "ఉచిత-టెక్స్ట్ ఎడిటింగ్‌ను నిలిపివేయండి", - - "item.edit.metadata.edit.buttons.confirm": "నిర్ధారించండి", - - "item.edit.metadata.edit.buttons.drag": "పునర్వ్యవస్థీకరించడానికి డ్రాగ్ చేయండి", - - "item.edit.metadata.edit.buttons.edit": "సవరించండి", - - "item.edit.metadata.edit.buttons.remove": "తీసివేయి", - - "item.edit.metadata.edit.buttons.undo": "మార్పులను రద్దు చేయి", - - "item.edit.metadata.edit.buttons.unedit": "సవరించడం ఆపు", - - "item.edit.metadata.edit.buttons.virtual": "ఇది వర్చువల్ మెటాడేటా విలువ, అంటే సంబంధిత ఎంటిటీ నుండి వారసత్వంగా వచ్చిన విలువ. దీన్ని నేరుగా సవరించలేరు. \"సంబంధాలు\" ట్యాబ్‌లో సంబంధిత సంబంధాన్ని జోడించండి లేదా తీసివేయండి", - - "item.edit.metadata.empty": "ఇటీవలి అంశంలో ఏ మెటాడేటా లేదు. మెటాడేటా విలువను జోడించడం ప్రారంభించడానికి జోడించు క్లిక్ చేయండి.", - - "item.edit.metadata.headers.edit": "సవరించు", - - "item.edit.metadata.headers.field": "ఫీల్డ్", - - "item.edit.metadata.headers.language": "భాష", - - "item.edit.metadata.headers.value": "విలువ", - - "item.edit.metadata.metadatafield": "ఫీల్డ్‌ను సవరించు", - - "item.edit.metadata.metadatafield.error": "మెటాడేటా ఫీల్డ్‌ను ధృవీకరించడంలో లోపం సంభవించింది", - - "item.edit.metadata.metadatafield.invalid": "దయచేసి సరైన మెటాడేటా ఫీల్డ్‌ను ఎంచుకోండి", - - "item.edit.metadata.notifications.discarded.content": "మీ మార్పులు విస్మరించబడ్డాయి. మీ మార్పులను పునరుద్ధరించడానికి 'రద్దు చేయి' బటన్‌ను క్లిక్ చేయండి", - - "item.edit.metadata.notifications.discarded.title": "మార్పులు విస్మరించబడ్డాయి", - - "item.edit.metadata.notifications.error.title": "లోపం సంభవించింది", - - "item.edit.metadata.notifications.invalid.content": "మీ మార్పులు సేవ్ చేయబడలేదు. సేవ్ చేయడానికి ముందు అన్ని ఫీల్డ్‌లు చెల్లుబాటు అయ్యేలా ఉండేలా చూసుకోండి.", - - "item.edit.metadata.notifications.invalid.title": "మెటాడేటా చెల్లదు", - - "item.edit.metadata.notifications.outdated.content": "మీరు ప్రస్తుతం పని చేస్తున్న అంశం మరొక వినియోగదారు చేత మార్చబడింది. సంఘర్షణలను నివారించడానికి మీ ప్రస్తుత మార్పులు విస్మరించబడ్డాయి", - - "item.edit.metadata.notifications.outdated.title": "మార్పులు పాతవి", - - "item.edit.metadata.notifications.saved.content": "ఈ అంశం యొక్క మెటాడేటాలో మీరు చేసిన మార్పులు సేవ్ చేయబడ్డాయి.", - - "item.edit.metadata.notifications.saved.title": "మెటాడేటా సేవ్ చేయబడింది", - - "item.edit.metadata.reinstate-button": "రద్దు చేయి", - - "item.edit.metadata.reset-order-button": "మళ్లీ ఆర్డర్ చేయి", - - "item.edit.metadata.save-button": "సేవ్ చేయి", - - "item.edit.metadata.authority.label": "అధికారం: ", - - "item.edit.metadata.edit.buttons.open-authority-edition": "మాన్యువల్ సవరణ కోసం అధికార కీ విలువను అన్‌లాక్ చేయి", - - "item.edit.metadata.edit.buttons.close-authority-edition": "మాన్యువల్ సవరణ కోసం అధికార కీ విలువను లాక్ చేయి", - - "item.edit.modify.overview.field": "ఫీల్డ్", - - "item.edit.modify.overview.language": "భాష", - - "item.edit.modify.overview.value": "విలువ", - - "item.edit.move.cancel": "వెనక్కి", - - "item.edit.move.save-button": "సేవ్ చేయి", - - "item.edit.move.discard-button": "విస్మరించు", - - "item.edit.move.description": "మీరు ఈ అంశాన్ని తరలించాలనుకునే కలెక్షన్‌ను ఎంచుకోండి. ప్రదర్శించబడే కలెక్షన్‌ల జాబితాను తగ్గించడానికి, మీరు బాక్స్‌లో శోధన ప్రశ్నను నమోదు చేయవచ్చు.", - - "item.edit.move.error": "అంశాన్ని తరలించడానికి ప్రయత్నించడంలో లోపం సంభవించింది", - - "item.edit.move.head": "అంశాన్ని తరలించు: {{id}}", - - "item.edit.move.inheritpolicies.checkbox": "పాలసీలను వారసత్వంగా పొందండి", - - "item.edit.move.inheritpolicies.description": "గమ్యం కలెక్షన్ యొక్క డిఫాల్ట్ పాలసీలను వారసత్వంగా పొందండి", - - "item.edit.move.inheritpolicies.tooltip": "హెచ్చరిక: ప్రారంభించబడినప్పుడు, అంశం మరియు అంశంతో అనుబంధించబడిన ఏదైనా ఫైల్‌ల కోసం రీడ్ యాక్సెస్ పాలసీ కలెక్షన్ యొక్క డిఫాల్ట్ రీడ్ యాక్సెస్ పాలసీతో భర్తీ చేయబడుతుంది. దీన్ని రద్దు చేయలేరు.", - - "item.edit.move.move": "తరలించు", - - "item.edit.move.processing": "తరలిస్తోంది...", - - "item.edit.move.search.placeholder": "కలెక్షన్‌ల కోసం శోధించడానికి శోధన ప్రశ్నను నమోదు చేయండి", - - "item.edit.move.success": "అంశం విజయవంతంగా తరలించబడింది", - - "item.edit.move.title": "అంశాన్ని తరలించు", - - "item.edit.private.cancel": "రద్దు చేయి", - - "item.edit.private.confirm": "డిస్కవర్ చేయలేనిదిగా చేయి", - - "item.edit.private.description": "ఈ అంశం ఆర్కైవ్‌లో డిస్కవర్ చేయలేనిదిగా చేయాలని మీరు ఖచ్చితంగా భావిస్తున్నారా?", - - "item.edit.private.error": "అంశాన్ని డిస్కవర్ చేయలేనిదిగా చేయడంలో లోపం సంభవించింది", - - "item.edit.private.header": "అంశాన్ని డిస్కవర్ చేయలేనిదిగా చేయి: {{ id }}", - - "item.edit.private.success": "అంశం ఇప్పుడు డిస్కవర్ చేయలేనిదిగా ఉంది", - - "item.edit.public.cancel": "రద్దు చేయి", - - "item.edit.public.confirm": "డిస్కవర్ చేయగలిగేదిగా చేయి", - - "item.edit.public.description": "ఈ అంశం ఆర్కైవ్‌లో డిస్కవర్ చేయగలిగేదిగా చేయాలని మీరు ఖచ్చితంగా భావిస్తున్నారా?", - - "item.edit.public.error": "అంశాన్ని డిస్కవర్ చేయగలిగేదిగా చేయడంలో లోపం సంభవించింది", - - "item.edit.public.header": "అంశాన్ని డిస్కవర్ చేయగలిగేదిగా చేయి: {{ id }}", - - "item.edit.public.success": "అంశం ఇప్పుడు డిస్కవర్ చేయగలిగేదిగా ఉంది", - - "item.edit.reinstate.cancel": "రద్దు చేయి", - - "item.edit.reinstate.confirm": "పునరుద్ధరించు", - - "item.edit.reinstate.description": "ఈ అంశాన్ని ఆర్కైవ్‌కు పునరుద్ధరించాలని మీరు ఖచ్చితంగా భావిస్తున్నారా?", - - "item.edit.reinstate.error": "అంశాన్ని పునరుద్ధరించడంలో లోపం సంభవించింది", - - "item.edit.reinstate.header": "అంశాన్ని పునరుద్ధరించు: {{ id }}", - - "item.edit.reinstate.success": "అంశం విజయవంతంగా పునరుద్ధరించబడింది", - - "item.edit.relationships.discard-button": "విస్మరించు", - - "item.edit.relationships.edit.buttons.add": "జోడించు", - - "item.edit.relationships.edit.buttons.remove": "తీసివేయి", - - "item.edit.relationships.edit.buttons.undo": "మార్పులను రద్దు చేయి", - - "item.edit.relationships.no-relationships": "సంబంధాలు లేవు", - - "item.edit.relationships.notifications.discarded.content": "మీ మార్పులు విస్మరించబడ్డాయి. మీ మార్పులను పునరుద్ధరించడానికి 'రద్దు చేయి' బటన్‌ను క్లిక్ చేయండి", - - "item.edit.relationships.notifications.discarded.title": "మార్పులు విస్మరించబడ్డాయి", - - "item.edit.relationships.notifications.failed.title": "సంబంధాలను సవరించడంలో లోపం", - - "item.edit.relationships.notifications.outdated.content": "మీరు ప్రస్తుతం పని చేస్తున్న అంశం మరొక వినియోగదారు చేత మార్చబడింది. సంఘర్షణలను నివారించడానికి మీ ప్రస్తుత మార్పులు విస్మరించబడ్డాయి", - - "item.edit.relationships.notifications.outdated.title": "మార్పులు పాతవి", - - "item.edit.relationships.notifications.saved.content": "ఈ అంశం యొక్క సంబంధాలలో మీరు చేసిన మార్పులు సేవ్ చేయబడ్డాయి.", - - "item.edit.relationships.notifications.saved.title": "సంబంధాలు సేవ్ చేయబడ్డాయి", - - "item.edit.relationships.reinstate-button": "రద్దు చేయి", - - "item.edit.relationships.save-button": "సేవ్ చేయి", - - "item.edit.relationships.no-entity-type": "ఈ అంశం కోసం సంబంధాలను ప్రారంభించడానికి 'dspace.entity.type' మెటాడేటాను జోడించండి", - - "item.edit.return": "వెనక్కి", - - "item.edit.tabs.bitstreams.head": "బిట్‌స్ట్రీమ్‌లు", - - "item.edit.tabs.bitstreams.title": "అంశం సవరణ - బిట్‌స్ట్రీమ్‌లు", - - "item.edit.tabs.curate.head": "క్యూరేట్ చేయి", - - "item.edit.tabs.curate.title": "అంశం సవరణ - క్యూరేట్ చేయి", - - "item.edit.curate.title": "అంశాన్ని క్యూరేట్ చేయి: {{item}}", - - "item.edit.tabs.access-control.head": "యాక్సెస్ కంట్రోల్", - - "item.edit.tabs.access-control.title": "అంశం సవరణ - యాక్సెస్ కంట్రోల్", - - "item.edit.tabs.metadata.head": "మెటాడేటా", - - "item.edit.tabs.metadata.title": "అంశం సవరణ - మెటాడేటా", - - "item.edit.tabs.relationships.head": "సంబంధాలు", - - "item.edit.tabs.relationships.title": "అంశం సవరణ - సంబంధాలు", - - "item.edit.tabs.status.buttons.authorizations.button": "అధికారాలు...", - - "item.edit.tabs.status.buttons.authorizations.label": "అంశం యొక్క అధికార పాలసీలను సవరించండి", - - "item.edit.tabs.status.buttons.delete.button": "శాశ్వతంగా తొలగించు", - - "item.edit.tabs.status.buttons.delete.label": "అంశాన్ని పూర్తిగా తొలగించు", - - "item.edit.tabs.status.buttons.mappedCollections.button": "మ్యాప్ చేసిన కలెక్షన్‌లు", - - "item.edit.tabs.status.buttons.mappedCollections.label": "మ్యాప్ చేసిన కలెక్షన్‌లను నిర్వహించండి", - - "item.edit.tabs.status.buttons.move.button": "ఈ అంశాన్ని వేరే కలెక్షన్‌కు తరలించండి", - - "item.edit.tabs.status.buttons.move.label": "అంశాన్ని మరొక కలెక్షన్‌కు తరలించండి", - - "item.edit.tabs.status.buttons.private.button": "డిస్కవర్ చేయలేనిదిగా చేయి...", - - "item.edit.tabs.status.buttons.private.label": "అంశాన్ని డిస్కవర్ చేయలేనిదిగా చేయి", - - "item.edit.tabs.status.buttons.public.button": "డిస్కవర్ చేయగలిగేదిగా చేయి...", - - "item.edit.tabs.status.buttons.public.label": "అంశాన్ని డిస్కవర్ చేయగలిగేదిగా చేయి", - - "item.edit.tabs.status.buttons.reinstate.button": "పునరుద్ధరించు...", - - "item.edit.tabs.status.buttons.reinstate.label": "రిపోజిటరీలో అంశాన్ని పునరుద్ధరించు", - - "item.edit.tabs.status.buttons.unauthorized": "ఈ చర్యను చేయడానికి మీకు అధికారం లేదు", - - "item.edit.tabs.status.buttons.withdraw.button": "ఈ అంశాన్ని వైదొలగించు", - - "item.edit.tabs.status.buttons.withdraw.label": "రిపోజిటరీ నుండి అంశాన్ని వైదొలగించు", - - "item.edit.tabs.status.description": "అంశం నిర్వహణ పేజీకి స్వాగతం. ఇక్కడ నుండి మీరు అంశాన్ని వైదొలగించవచ్చు, పునరుద్ధరించవచ్చు, తరలించవచ్చు లేదా తొలగించవచ్చు. మీరు ఇతర ట్యాబ్‌లలో మెటాడేటా / బిట్‌స్ట్రీమ్‌లను నవీకరించవచ్చు లేదా కొత్తవాటిని జోడించవచ్చు.", - - "item.edit.tabs.status.head": "స్థితి", - - "item.edit.tabs.status.labels.handle": "హ్యాండిల్", - - "item.edit.tabs.status.labels.id": "అంశం అంతర్గత ID", - - "item.edit.tabs.status.labels.itemPage": "అంశం పేజీ", - - "item.edit.tabs.status.labels.lastModified": "చివరిగా మార్చబడింది", - - "item.edit.tabs.status.title": "అంశం సవరణ - స్థితి", - - "item.edit.tabs.versionhistory.head": "వెర్షన్ హిస్టరీ", - - "item.edit.tabs.versionhistory.title": "అంశం సవరణ - వెర్షన్ హిస్టరీ", - - "item.edit.tabs.versionhistory.under-construction": "ఈ వినియోగదారు ఇంటర్‌ఫేస్‌లో కొత్త వెర్షన్‌లను సవరించడం లేదా జోడించడం ఇంకా సాధ్యం కాదు.", - - "item.edit.tabs.view.head": "అంశాన్ని వీక్షించండి", - - "item.edit.tabs.view.title": "అంశం సవరణ - వీక్షించండి", - - "item.edit.withdraw.cancel": "రద్దు చేయి", - - "item.edit.withdraw.confirm": "వైదొలగించు", - - "item.edit.withdraw.description": "ఈ అంశాన్ని ఆర్కైవ్ నుండి వైదొలగించాలని మీరు ఖచ్చితంగా భావిస్తున్నారా?", - - "item.edit.withdraw.error": "అంశాన్ని వైదొలగించడంలో లోపం సంభవించింది", - - "item.edit.withdraw.header": "అంశాన్ని వైదొలగించు: {{ id }}", - - "item.edit.withdraw.success": "అంశం విజయవంతంగా వైదొలగించబడింది", - - "item.orcid.return": "వెనక్కి", - - "item.listelement.badge": "అంశం", - - "item.page.description": "వివరణ", - - "item.page.org-unit": "సంస్థాగత యూనిట్", - - "item.page.org-units": "సంస్థాగత యూనిట్‌లు", - - "item.page.project": "రీసెర్చ్ ప్రాజెక్ట్", - - "item.page.projects": "రీసెర్చ్ ప్రాజెక్ట్‌లు", - - "item.page.publication": "ప్రచురణలు", - - "item.page.publications": "ప్రచురణలు", - - "item.page.article": "ఆర్టికల్", - - "item.page.articles": "ఆర్టికల్‌లు", - - "item.page.journal": "జర్నల్", - - "item.page.journals": "జర్నల్‌లు", - - "item.page.journal-issue": "జర్నల్ ఇష్యూ", - - "item.page.journal-issues": "జర్నల్ ఇష్యూలు", - - "item.page.journal-volume": "జర్నల్ వాల్యూమ్", - - "item.page.journal-volumes": "జర్నల్ వాల్యూమ్‌లు", - - "item.page.journal-issn": "జర్నల్ ISSN", - - "item.page.journal-title": "జర్నల్ టైటిల్", - - "item.page.publisher": "ప్రచురణకర్త", - - "item.page.titleprefix": "అంశం: ", - - "item.page.volume-title": "వాల్యూమ్ టైటిల్", - - "item.page.dcterms.spatial": "జియోస్పేషియల్ పాయింట్", - - "item.search.results.head": "అంశం శోధన ఫలితాలు", - - "item.search.title": "అంశం శోధన", - - "item.truncatable-part.show-more": "మరిన్ని చూపించు", - - "item.truncatable-part.show-less": "కుదించు", - - "item.qa-event-notification.check.notification-info": "మీ ఖాతాకు సంబంధించిన {{num}} పెండింగ్ సూచనలు ఉన్నాయి", - - "item.qa-event-notification-info.check.button": "వీక్షించండి", - - "mydspace.qa-event-notification.check.notification-info": "మీ ఖాతాకు సంబంధించిన {{num}} పెండింగ్ సూచనలు ఉన్నాయి", - - "mydspace.qa-event-notification-info.check.button": "వీక్షించండి", - - "workflow-item.search.result.delete-supervision.modal.header": "సూపర్విజన్ ఆర్డర్‌ను తొలగించు", - - "workflow-item.search.result.delete-supervision.modal.info": "సూపర్విజన్ ఆర్డర్‌ను తొలగించాలని మీరు ఖచ్చితంగా భావిస్తున్నారా", - - "workflow-item.search.result.delete-supervision.modal.cancel": "రద్దు చేయి", - - "workflow-item.search.result.delete-supervision.modal.confirm": "తొలగించు", - - "workflow-item.search.result.notification.deleted.success": "సూపర్విజన్ ఆర్డర్ \"{{name}}\" విజయవంతంగా తొలగించబడింది", - - "workflow-item.search.result.notification.deleted.failure": "సూపర్విజన్ ఆర్డర్ \"{{name}}\" తొలగించడంలో విఫలమైంది", - - "workflow-item.search.result.list.element.supervised-by": "సూపర్వైజ్ చేసినది:", - - "workflow-item.search.result.list.element.supervised.remove-tooltip": "సూపర్విజన్ గ్రూప్‌ను తొలగించు", - - "confidence.indicator.help-text.accepted": "ఈ అధికార విలువ ఇంటరాక్టివ్ వినియోగదారు ద్వారా ఖచ్చితంగా నిర్ధారించబడింది", - - "confidence.indicator.help-text.uncertain": "విలువ సింగిల్ మరియు చెల్లుబాటు అయ్యేది కానీ మానవుడిచే చూడబడలేదు మరియు అంగీకరించబడలేదు కాబట్టి ఇది ఇంకా అనిశ్చితంగా ఉంది", - - "confidence.indicator.help-text.ambiguous": "సమానమైన చెల్లుబాటు యొక్క బహుళ మ్యాచింగ్ అధికార విలువలు ఉన్నాయి", - - "confidence.indicator.help-text.notfound": "అధికారంలో సరిపోలే సమాధానాలు లేవు", - - "confidence.indicator.help-text.failed": "అధికారం అంతర్గత వైఫల్యాన్ని ఎదుర్కొంది", - - "confidence.indicator.help-text.rejected": "ఈ సబ్మిషన్‌ను తిరస్కరించాలని అధికారం సిఫార్సు చేస్తుంది", - - "confidence.indicator.help-text.novalue": "అధికారం నుండి సరైన కాన్ఫిడెన్స్ విలువ తిరిగి రాలేదు", - - "confidence.indicator.help-text.unset": "ఈ విలువ కోసం కాన్ఫిడెన్స్ ఎప్పుడూ రికార్డ్ చేయబడలేదు", - - "confidence.indicator.help-text.unknown": "తెలియని కాన్ఫిడెన్స్ విలువ", - - "item.page.abstract": "సారాంశం", - - "item.page.author": "రచయిత", - - "item.page.authors": "రచయితలు", - - "item.page.citation": "సైటేషన్", - - "item.page.collections": "కలెక్షన్‌లు", - - "item.page.collections.loading": "లోడ్ అవుతోంది...", - - "item.page.collections.load-more": "మరిన్ని లోడ్ చేయండి", - - "item.page.date": "తేదీ", - - "item.page.edit": "ఈ అంశాన్ని సవరించండి", - - "item.page.files": "ఫైల్‌లు", - - "item.page.filesection.description": "వివరణ:", - - "item.page.filesection.download": "డౌన్‌లోడ్", - - "item.page.filesection.format": "ఫార్మాట్:", - - "item.page.filesection.name": "పేరు:", - - "item.page.filesection.size": "పరిమాణం:", - - "item.page.journal.search.title": "ఈ జర్నల్‌లోని ఆర్టికల్‌లు", - - "item.page.link.full": "పూర్తి అంశం పేజీ", - - "item.page.link.simple": "సాధారణ అంశం పేజీ", - - "item.page.options": "ఎంపికలు", - - "item.page.orcid.title": "ORCID", - - "item.page.orcid.tooltip": "ORCID సెట్టింగ్ పేజీని తెరవండి", - - "item.page.person.search.title": "ఈ రచయిత చేసిన ఆర్టికల్‌లు", - - "item.page.related-items.view-more": "మరిన్ని {{ amount }} చూపించు", - - "item.page.related-items.view-less": "చివరి {{ amount }} దాచు", - - "item.page.relationships.isAuthorOfPublication": "ప్రచురణలు", - - "item.page.relationships.isJournalOfPublication": "ప్రచురణలు", - - "item.page.relationships.isOrgUnitOfPerson": "రచయితలు", - - "item.page.relationships.isOrgUnitOfProject": "రీసెర్చ్ ప్రాజెక్ట్‌లు", - - "item.page.subject": "కీలక పదాలు", - - "item.page.uri": "URI", - - "item.page.bitstreams.view-more": "మరిన్ని చూపించు", - - "item.page.bitstreams.collapse": "కుదించు", - - "item.page.bitstreams.primary": "ప్రాథమిక", - - "item.page.filesection.original.bundle": "అసలు బండిల్", - - "item.page.filesection.license.bundle": "లైసెన్స్ బండిల్", - - "item.page.return": "వెనక్కి", - - "item.page.version.create": "కొత్త వెర్షన్‌ను సృష్టించండి", - - "item.page.withdrawn": "ఈ అంశం కోసం వైదొలగింపును అభ్యర్థించండి", - - "item.page.reinstate": "పునరుద్ధరణను అభ్యర్థించండి", - - "item.page.version.hasDraft": "వెర్షన్ హిస్టరీలో ప్రోగ్రెస్ సబ్మిషన్ ఉన్నందున కొత్త వెర్షన్ సృష్టించబడదు", - - "item.page.claim.button": "క్లెయిమ్ చేయి", - - "item.page.claim.tooltip": "ఈ అంశాన్ని ప్రొఫైల్‌గా క్లెయిమ్ చేయండి", - - "item.page.image.alt.ROR": "ROR లోగో", - - "item.preview.dc.identifier.uri": "ఐడెంటిఫైయర్:", - - "item.preview.dc.contributor.author": "రచయితలు:", - - "item.preview.dc.date.issued": "ప్రచురణ తేదీ:", - - "item.preview.dc.description": "వివరణ:", - - "item.preview.dc.description.abstract": "సారాంశం:", - - "item.preview.dc.identifier.other": "ఇతర ఐడెంటిఫైయర్:", - - "item.preview.dc.language.iso": "భాష:", - - "item.preview.dc.subject": "విషయాలు:", - - "item.preview.dc.title": "శీర్షిక:", - - "item.preview.dc.type": "రకం:", - - "item.preview.oaire.version": "వెర్షన్", - - "item.preview.oaire.citation.issue": "ఇష్యూ", - - "item.preview.oaire.citation.volume": "వాల్యూమ్", - - "item.preview.oaire.citation.title": "సైటేషన్ కంటైనర్", - - "item.preview.oaire.citation.startPage": "సైటేషన్ ప్రారంభ పేజీ", - - "item.preview.oaire.citation.endPage": "సైటేషన్ ముగింపు పేజీ", - - "item.preview.dc.relation.hasversion": "వెర్షన్ ఉంది", - - "item.preview.dc.relation.ispartofseries": "సిరీస్‌లో భాగం", - - "item.preview.dc.rights": "హక్కులు", - - "item.preview.dc.identifier.other": "ఇతర ఐడెంటిఫైయర్", - - "item.preview.dc.relation.issn": "ISSN", - - "item.preview.dc.identifier.isbn": "ISBN", - - "item.preview.dc.identifier": "ఐడెంటిఫైయర్:", - - "item.preview.dc.relation.ispartof": "జర్నల్ లేదా సిరీస్", - - "item.preview.dc.identifier.doi": "DOI", - - "item.preview.dc.publisher": "ప్రచురణకర్త:", - - "item.preview.person.familyName": "ఇంటిపేరు:", - - "item.preview.person.givenName": "పేరు:", - - "item.preview.person.identifier.orcid": "ORCID:", - - "item.preview.person.affiliation.name": "సంబంధాలు:", - - "item.preview.project.funder.name": "నిధి:", - - "item.preview.project.funder.identifier": "నిధి గుర్తింపు:", - - "item.preview.project.investigator": "ప్రాజెక్ట్ పరిశోధకుడు", - - "item.preview.oaire.awardNumber": "నిధి ID:", - - "item.preview.dc.title.alternative": "సంక్షిప్త నామం:", - - "item.preview.dc.coverage.spatial": "అధికార పరిధి:", - - "item.preview.oaire.fundingStream": "నిధి ప్రవాహం:", - - "item.preview.oairecerif.identifier.url": "URL", - - "item.preview.organization.address.addressCountry": "దేశం", - - "item.preview.organization.foundingDate": "స్థాపన తేదీ", - - "item.preview.organization.identifier.crossrefid": "Crossref ID", - - "item.preview.organization.identifier.isni": "ISNI", - - "item.preview.organization.identifier.ror": "ROR ID", - - "item.preview.organization.legalName": "చట్టబద్ధమైన పేరు", - - "item.preview.dspace.entity.type": "ఎంటిటీ రకం:", - - "item.preview.creativework.publisher": "ప్రచురణకర్త", - - "item.preview.creativeworkseries.issn": "ISSN", - - "item.preview.dc.identifier.issn": "ISSN", - - "item.preview.dc.identifier.openalex": "OpenAlex గుర్తింపు", - - "item.preview.dc.description": "వివరణ", - - "item.select.confirm": "ఎంచుకున్నవి నిర్ధారించండి", - - "item.select.empty": "చూపించడానికి అంశాలు లేవు", - - "item.select.table.selected": "ఎంచుకున్న అంశాలు", - - "item.select.table.select": "అంశాన్ని ఎంచుకోండి", - - "item.select.table.deselect": "అంశాన్ని ఎంచుకోవద్దు", - - "item.select.table.author": "రచయిత", - - "item.select.table.collection": "సేకరణ", - - "item.select.table.title": "శీర్షిక", - - "item.version.history.empty": "ఈ అంశానికి ఇంకా ఇతర వెర్షన్లు లేవు.", - - "item.version.history.head": "వెర్షన్ చరిత్ర", - - "item.version.history.return": "వెనుకకు", - - "item.version.history.selected": "ఎంచుకున్న వెర్షన్", - - "item.version.history.selected.alert": "మీరు ప్రస్తుతం అంశం యొక్క {{version}} వెర్షన్ను చూస్తున్నారు.", - - "item.version.history.table.version": "వెర్షన్", - - "item.version.history.table.item": "అంశం", - - "item.version.history.table.editor": "సంపాదకుడు", - - "item.version.history.table.date": "తేదీ", - - "item.version.history.table.summary": "సారాంశం", - - "item.version.history.table.workspaceItem": "వర్క్స్పేస్ అంశం", - - "item.version.history.table.workflowItem": "వర్క్ఫ్లో అంశం", - - "item.version.history.table.actions": "చర్య", - - "item.version.history.table.action.editWorkspaceItem": "వర్క్స్పేస్ అంశాన్ని సవరించండి", - - "item.version.history.table.action.editSummary": "సారాంశాన్ని సవరించండి", - - "item.version.history.table.action.saveSummary": "సారాంశ సవరణలను సేవ్ చేయండి", - - "item.version.history.table.action.discardSummary": "సారాంశ సవరణలను విస్మరించండి", - - "item.version.history.table.action.newVersion": "దీని నుండి కొత్త వెర్షన్ సృష్టించండి", - - "item.version.history.table.action.deleteVersion": "వెర్షన్ను తొలగించండి", - - "item.version.history.table.action.hasDraft": "వెర్షన్ చరిత్రలో ప్రగతిలో ఉన్న సమర్పణ ఉన్నందున కొత్త వెర్షన్ సృష్టించబడదు", - - "item.version.notice": "ఇది ఈ అంశం యొక్క తాజా వెర్షన్ కాదు. తాజా వెర్షన్ ఇక్కడ కనుగొనవచ్చు.", - - "item.version.create.modal.header": "కొత్త వెర్షన్", - - "item.qa.withdrawn.modal.header": "ఉపసంహరణను అభ్యర్థించండి", - - "item.qa.reinstate.modal.header": "పునఃస్థాపనను అభ్యర్థించండి", - - "item.qa.reinstate.create.modal.header": "కొత్త వెర్షన్", - - "item.version.create.modal.text": "ఈ అంశానికి కొత్త వెర్షన్ సృష్టించండి", - - "item.version.create.modal.text.startingFrom": "{{version}} వెర్షన్ నుండి ప్రారంభించి", - - "item.version.create.modal.button.confirm": "సృష్టించండి", - - "item.version.create.modal.button.confirm.tooltip": "కొత్త వెర్షన్ సృష్టించండి", - - "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "అభ్యర్థనను పంపండి", - - "qa-withdrown.create.modal.button.confirm": "ఉపసంహరించండి", - - "qa-reinstate.create.modal.button.confirm": "పునఃస్థాపించండి", - - "item.version.create.modal.button.cancel": "రద్దు చేయండి", - - "item.qa.withdrawn-reinstate.create.modal.button.cancel": "రద్దు చేయండి", - - "item.version.create.modal.button.cancel.tooltip": "కొత్త వెర్షన్ సృష్టించవద్దు", - - "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "అభ్యర్థనను పంపవద్దు", - - "item.version.create.modal.form.summary.label": "సారాంశం", - - "qa-withdrawn.create.modal.form.summary.label": "మీరు ఈ అంశాన్ని ఉపసంహరించడానికి అభ్యర్థిస్తున్నారు", - - "qa-withdrawn.create.modal.form.summary2.label": "దయచేసి ఉపసంహరణ కోసం కారణం నమోదు చేయండి", - - "qa-reinstate.create.modal.form.summary.label": "మీరు ఈ అంశాన్ని పునఃస్థాపించడానికి అభ్యర్థిస్తున్నారు", - - "qa-reinstate.create.modal.form.summary2.label": "దయచేసి పునఃస్థాపణ కోసం కారణం నమోదు చేయండి", - - "item.version.create.modal.form.summary.placeholder": "కొత్త వెర్షన్ కోసం సారాంశాన్ని నమోదు చేయండి", - - "qa-withdrown.modal.form.summary.placeholder": "ఉపసంహరణ కోసం కారణం నమోదు చేయండి", - - "qa-reinstate.modal.form.summary.placeholder": "పునఃస్థాపణ కోసం కారణం నమోదు చేయండి", - - "item.version.create.modal.submitted.header": "కొత్త వెర్షన్ సృష్టించబడుతోంది...", - - "item.qa.withdrawn.modal.submitted.header": "ఉపసంహరణ అభ్యర్థన పంపబడుతోంది...", - - "correction-type.manage-relation.action.notification.reinstate": "పునఃస్థాపన అభ్యర్థన పంపబడింది.", - - "correction-type.manage-relation.action.notification.withdrawn": "ఉపసంహరణ అభ్యర్థన పంపబడింది.", - - "item.version.create.modal.submitted.text": "కొత్త వెర్షన్ సృష్టించబడుతోంది. అంశానికి చాలా సంబంధాలు ఉంటే ఇది కొంత సమయం పట్టవచ్చు.", - - "item.version.create.notification.success": "కొత్త వెర్షన్ {{version}} వెర్షన్ నంబర్తో సృష్టించబడింది", - - "item.version.create.notification.failure": "కొత్త వెర్షన్ సృష్టించబడలేదు", - - "item.version.create.notification.inProgress": "వెర్షన్ చరిత్రలో ప్రగతిలో ఉన్న సమర్పణ ఉన్నందున కొత్త వెర్షన్ సృష్టించబడదు", - - "item.version.delete.modal.header": "వెర్షన్ను తొలగించండి", - - "item.version.delete.modal.text": "మీరు {{version}} వెర్షన్ను తొలగించాలనుకుంటున్నారా?", - - "item.version.delete.modal.button.confirm": "తొలగించండి", - - "item.version.delete.modal.button.confirm.tooltip": "ఈ వెర్షన్ను తొలగించండి", - - "item.version.delete.modal.button.cancel": "రద్దు చేయండి", - - "item.version.delete.modal.button.cancel.tooltip": "ఈ వెర్షన్ను తొలగించవద్దు", - - "item.version.delete.notification.success": "{{version}} వెర్షన్ నంబర్ తొలగించబడింది", - - "item.version.delete.notification.failure": "{{version}} వెర్షన్ నంబర్ తొలగించబడలేదు", - - "item.version.edit.notification.success": "{{version}} వెర్షన్ నంబర్ యొక్క సారాంశం మార్చబడింది", - - "item.version.edit.notification.failure": "{{version}} వెర్షన్ నంబర్ యొక్క సారాంశం మార్చబడలేదు", - - "itemtemplate.edit.metadata.add-button": "జోడించండి", - - "itemtemplate.edit.metadata.discard-button": "విస్మరించండి", - - "itemtemplate.edit.metadata.edit.language": "భాషను సవరించండి", - - "itemtemplate.edit.metadata.edit.value": "విలువను సవరించండి", - - "itemtemplate.edit.metadata.edit.buttons.confirm": "నిర్ధారించండి", - - "itemtemplate.edit.metadata.edit.buttons.drag": "పునఃక్రమంలో ఉంచడానికి లాగండి", - - "itemtemplate.edit.metadata.edit.buttons.edit": "సవరించండి", - - "itemtemplate.edit.metadata.edit.buttons.remove": "తీసివేయండి", - - "itemtemplate.edit.metadata.edit.buttons.undo": "మార్పులను రద్దు చేయండి", - - "itemtemplate.edit.metadata.edit.buttons.unedit": "సవరణను ఆపండి", - - "itemtemplate.edit.metadata.empty": "అంశం టెంప్లేట్ ప్రస్తుతం ఏ మెటాడేటాను కలిగి ఉండదు. మెటాడేటా విలువను జోడించడం ప్రారంభించడానికి జోడించు క్లిక్ చేయండి.", - - "itemtemplate.edit.metadata.headers.edit": "సవరించండి", - - "itemtemplate.edit.metadata.headers.field": "ఫీల్డ్", - - "itemtemplate.edit.metadata.headers.language": "భాష", - - "itemtemplate.edit.metadata.headers.value": "విలువ", - - "itemtemplate.edit.metadata.metadatafield": "ఫీల్డ్ను సవరించండి", - - "itemtemplate.edit.metadata.metadatafield.error": "మెటాడేటా ఫీల్డ్ను ధ్రువీకరించడంలో లోపం సంభవించింది", - - "itemtemplate.edit.metadata.metadatafield.invalid": "దయచేసి సరైన మెటాడేటా ఫీల్డ్ను ఎంచుకోండి", - - "itemtemplate.edit.metadata.notifications.discarded.content": "మీ మార్పులు విస్మరించబడ్డాయి. మీ మార్పులను పునఃస్థాపించడానికి 'రద్దు చేయి' బటన్ క్లిక్ చేయండి", - - "itemtemplate.edit.metadata.notifications.discarded.title": "మార్పులు విస్మరించబడ్డాయి", - - "itemtemplate.edit.metadata.notifications.error.title": "లోపం సంభవించింది", - - "itemtemplate.edit.metadata.notifications.invalid.content": "మీ మార్పులు సేవ్ చేయబడలేదు. సేవ్ చేయడానికి ముందు అన్ని ఫీల్డ్లు సరైనవి అని నిర్ధారించుకోండి.", - - "itemtemplate.edit.metadata.notifications.invalid.title": "మెటాడేటా చెల్లదు", - - "itemtemplate.edit.metadata.notifications.outdated.content": "మీరు ప్రస్తుతం పనిచేస్తున్న అంశం టెంప్లేట్ మరొక వినియోగదారు చేత మార్చబడింది. వివాదాలను నివారించడానికి మీ ప్రస్తుత మార్పులు విస్మరించబడ్డాయి", - - "itemtemplate.edit.metadata.notifications.outdated.title": "మార్పులు పాతవయ్యాయి", - - "itemtemplate.edit.metadata.notifications.saved.content": "ఈ అంశం టెంప్లేట్ యొక్క మెటాడేటాకు మీరు చేసిన మార్పులు సేవ్ చేయబడ్డాయి.", - - "itemtemplate.edit.metadata.notifications.saved.title": "మెటాడేటా సేవ్ చేయబడింది", - - "itemtemplate.edit.metadata.reinstate-button": "రద్దు చేయి", - - "itemtemplate.edit.metadata.reset-order-button": "పునఃక్రమంలో ఉంచడానికి రద్దు చేయి", - - "itemtemplate.edit.metadata.save-button": "సేవ్ చేయండి", - - "journal.listelement.badge": "జర్నల్", - - "journal.page.description": "వివరణ", - - "journal.page.edit": "ఈ అంశాన్ని సవరించండి", - - "journal.page.editor": "ఎడిటర్-ఇన్-చీఫ్", - - "journal.page.issn": "ISSN", - - "journal.page.publisher": "ప్రచురణకర్త", - - "journal.page.options": "ఎంపికలు", - - "journal.page.titleprefix": "జర్నల్: ", - - "journal.search.results.head": "జర్నల్ శోధన ఫలితాలు", - - "journal-relationships.search.results.head": "జర్నల్ శోధన ఫలితాలు", - - "journal.search.title": "జర్నల్ శోధన", - - "journalissue.listelement.badge": "జర్నల్ ఇష్యూ", - - "journalissue.page.description": "వివరణ", - - "journalissue.page.edit": "ఈ అంశాన్ని సవరించండి", - - "journalissue.page.issuedate": "ఇష్యూ తేదీ", - - "journalissue.page.journal-issn": "జర్నల్ ISSN", - - "journalissue.page.journal-title": "జర్నల్ శీర్షిక", - - "journalissue.page.keyword": "కీలక పదాలు", - - "journalissue.page.number": "సంఖ్య", - - "journalissue.page.options": "ఎంపికలు", - - "journalissue.page.titleprefix": "జర్నల్ ఇష్యూ: ", - - "journalissue.search.results.head": "జర్నల్ ఇష్యూ శోధన ఫలితాలు", - - "journalvolume.listelement.badge": "జర్నల్ వాల్యూమ్", - - "journalvolume.page.description": "వివరణ", - - "journalvolume.page.edit": "ఈ అంశాన్ని సవరించండి", - - "journalvolume.page.issuedate": "ఇష్యూ తేదీ", - - "journalvolume.page.options": "ఎంపికలు", - - "journalvolume.page.titleprefix": "జర్నల్ వాల్యూమ్: ", - - "journalvolume.page.volume": "వాల్యూమ్", - - "journalvolume.search.results.head": "జర్నల్ వాల్యూమ్ శోధన ఫలితాలు", - - "iiifsearchable.listelement.badge": "డాక్యుమెంట్ మీడియా", - - "iiifsearchable.page.titleprefix": "డాక్యుమెంట్: ", - - "iiifsearchable.page.doi": "శాశ్వత లింక్: ", - - "iiifsearchable.page.issue": "ఇష్యూ: ", - - "iiifsearchable.page.description": "వివరణ: ", - - "iiifviewer.fullscreen.notice": "మెరుగైన వీక్షణ కోసం పూర్తి స్క్రీన్ ఉపయోగించండి.", - - "iiif.listelement.badge": "ఇమేజ్ మీడియా", - - "iiif.page.titleprefix": "ఇమేజ్: ", - - "iiif.page.doi": "శాశ్వత లింక్: ", - - "iiif.page.issue": "ఇష్యూ: ", - - "iiif.page.description": "వివరణ: ", - - "loading.bitstream": "బిట్స్ట్రీమ్ లోడ్ అవుతోంది...", - - "loading.bitstreams": "బిట్స్ట్రీమ్లు లోడ్ అవుతున్నాయి...", - - "loading.browse-by": "అంశాలు లోడ్ అవుతున్నాయి...", - - "loading.browse-by-page": "పేజీ లోడ్ అవుతోంది...", - - "loading.collection": "సేకరణ లోడ్ అవుతోంది...", - - "loading.collections": "సేకరణలు లోడ్ అవుతున్నాయి...", - - "loading.content-source": "కంటెంట్ సోర్స్ లోడ్ అవుతోంది...", - - "loading.community": "కమ్యూనిటీ లోడ్ అవుతోంది...", - - "loading.default": "లోడ్ అవుతోంది...", - - "loading.item": "అంశం లోడ్ అవుతోంది...", - - "loading.items": "అంశాలు లోడ్ అవుతున్నాయి...", - - "loading.mydspace-results": "అంశాలు లోడ్ అవుతున్నాయి...", - - "loading.objects": "లోడ్ అవుతోంది...", - - "loading.recent-submissions": "ఇటీవలి సమర్పణలు లోడ్ అవుతున్నాయి...", - - "loading.search-results": "శోధన ఫలితాలు లోడ్ అవుతున్నాయి...", - - "loading.sub-collections": "ఉప సేకరణలు లోడ్ అవుతున్నాయి...", - - "loading.sub-communities": "ఉప కమ్యూనిటీలు లోడ్ అవుతున్నాయి...", - - "loading.top-level-communities": "టాప్-లెవల్ కమ్యూనిటీలు లోడ్ అవుతున్నాయి...", - - "login.form.email": "ఇమెయిల్ చిరునామా", - - "login.form.forgot-password": "మీ పాస్వర్డ్ మర్చిపోయారా?", - - "login.form.header": "దయచేసి DSpace లో లాగిన్ అవ్వండి", - - "login.form.new-user": "కొత్త వినియోగదారు? నమోదు చేసుకోవడానికి ఇక్కడ క్లిక్ చేయండి.", - - "login.form.oidc": "OIDCతో లాగిన్ అవ్వండి", - - "login.form.orcid": "ORCIDతో లాగిన్ అవ్వండి", - - "login.form.password": "పాస్వర్డ్", - - "login.form.saml": "SAMLతో లాగిన్ అవ్వండి", - - "login.form.shibboleth": "Shibbolethతో లాగిన్ అవ్వండి", - - "login.form.submit": "లాగిన్ అవ్వండి", - - "login.title": "లాగిన్", - - "login.breadcrumbs": "లాగిన్", - - "logout.form.header": "DSpace నుండి లాగ్ అవుట్ అవ్వండి", - - "logout.form.submit": "లాగ్ అవుట్ అవ్వండి", - - "logout.title": "లాగ్ అవుట్", - - "menu.header.nav.description": "అడ్మిన్ నావిగేషన్ బార్", - - "menu.header.admin": "నిర్వహణ", - - "menu.header.image.logo": "రిపోజిటరీ లోగో", - - "menu.header.admin.description": "నిర్వహణ మెనూ", - - "menu.section.access_control": "యాక్సెస్ కంట్రోల్", - - "menu.section.access_control_authorizations": "అధికారాలు", - - "menu.section.access_control_bulk": "బల్క్ యాక్సెస్ మేనేజ్మెంట్", - - "menu.section.access_control_groups": "గ్రూపులు", - - "menu.section.access_control_people": "వ్యక్తులు", - - "menu.section.reports": "రిపోర్టులు", - - "menu.section.reports.collections": "ఫిల్టర్ చేసిన సేకరణలు", - - "menu.section.reports.queries": "మెటాడేటా ప్రశ్న", - - "menu.section.admin_search": "అడ్మిన్ శోధన", - - "menu.section.browse_community": "ఈ కమ్యూనిటీ", - - "menu.section.browse_community_by_author": "రచయిత ద్వారా", - - "menu.section.browse_community_by_issue_date": "ఇష్యూ తేదీ ద్వారా", - - "menu.section.browse_community_by_title": "శీర్షిక ద్వారా", - - "menu.section.browse_global": "DSpace యొక్క అన్ని", - - "menu.section.browse_global_by_author": "రచయిత ద్వారా", - - "menu.section.browse_global_by_dateissued": "ఇష్యూ తేదీ ద్వారా", - - "menu.section.browse_global_by_subject": "విషయం ద్వారా", - - "menu.section.browse_global_by_srsc": "విషయం వర్గం ద్వారా", - - "menu.section.browse_global_by_nsi": "నార్వేజియన్ సైన్స్ ఇండెక్స్ ద్వారా", - - "menu.section.browse_global_by_title": "శీర్షిక ద్వారా", - - "menu.section.browse_global_communities_and_collections": "కమ్యూనిటీలు & సేకరణలు", - - "menu.section.browse_global_geospatial_map": "జియోలొకేషన్ ద్వారా (మ్యాప్)", - - "menu.section.control_panel": "కంట్రోల్ ప్యానెల్", - - "menu.section.curation_task": "క్యూరేషన్ టాస్క్", - - "menu.section.edit": "సవరించండి", - - "menu.section.edit_collection": "సేకరణ", - - "menu.section.edit_community": "కమ్యూనిటీ", - - "menu.section.edit_item": "అంశం", - - "menu.section.export": "ఎగుమతి", - - "menu.section.export_collection": "సేకరణ", - - "menu.section.export_community": "కమ్యూనిటీ", - - "menu.section.export_item": "అంశం", - - "menu.section.export_metadata": "మెటాడేటా", - - "menu.section.export_batch": "బ్యాచ్ ఎగుమతి (ZIP)", - - "menu.section.icon.access_control": "యాక్సెస్ కంట్రోల్ మెను విభాగం", - - "menu.section.icon.reports": "నివేదికల మెను విభాగం", - - "menu.section.icon.admin_search": "అడ్మిన్ శోధన మెను విభాగం", - - "menu.section.icon.control_panel": "కంట్రోల్ ప్యానెల్ మెను విభాగం", - - "menu.section.icon.curation_tasks": "క్యూరేషన్ టాస్క్ మెను విభాగం", - - "menu.section.icon.edit": "మెను విభాగాన్ని సవరించండి", - - "menu.section.icon.export": "ఎగుమతి మెను విభాగం", - - "menu.section.icon.find": "మెను విభాగాన్ని కనుగొనండి", - - "menu.section.icon.health": "ఆరోగ్య తనిఖీ మెను విభాగం", - - "menu.section.icon.import": "దిగుమతి మెను విభాగం", - - "menu.section.icon.new": "కొత్త మెను విభాగం", - - "menu.section.icon.pin": "సైడ్బార్‌ను పిన్ చేయండి", - - "menu.section.icon.unpin": "సైడ్బార్‌ను అన్‌పిన్ చేయండి", - - "menu.section.icon.notifications": "నోటిఫికేషన్ల మెను విభాగం", - - "menu.section.import": "దిగుమతి", - - "menu.section.import_batch": "బ్యాచ్ దిగుమతి (ZIP)", - - "menu.section.import_metadata": "మెటాడేటా", - - "menu.section.new": "కొత్తది", - - "menu.section.new_collection": "సేకరణ", - - "menu.section.new_community": "సంఘం", - - "menu.section.new_item": "అంశం", - - "menu.section.new_item_version": "అంశం వెర్షన్", - - "menu.section.new_process": "ప్రక్రియ", - - "menu.section.notifications": "నోటిఫికేషన్లు", - - "menu.section.quality-assurance": "నాణ్యత హామీ", - - "menu.section.notifications_publication-claim": "ప్రచురణ దావా", - - "menu.section.pin": "సైడ్బార్‌ను పిన్ చేయండి", - - "menu.section.unpin": "సైడ్బార్‌ను అన్‌పిన్ చేయండి", - - "menu.section.processes": "ప్రక్రియలు", - - "menu.section.health": "ఆరోగ్యం", - - "menu.section.registries": "రిజిస్ట్రీలు", - - "menu.section.registries_format": "ఫార్మాట్", - - "menu.section.registries_metadata": "మెటాడేటా", - - "menu.section.statistics": "గణాంకాలు", - - "menu.section.statistics_task": "గణాంకాల టాస్క్", - - "menu.section.toggle.access_control": "యాక్సెస్ కంట్రోల్ విభాగాన్ని టోగుల్ చేయండి", - - "menu.section.toggle.reports": "నివేదికల విభాగాన్ని టోగుల్ చేయండి", - - "menu.section.toggle.control_panel": "కంట్రోల్ ప్యానెల్ విభాగాన్ని టోగుల్ చేయండి", - - "menu.section.toggle.curation_task": "క్యూరేషన్ టాస్క్ విభాగాన్ని టోగుల్ చేయండి", - - "menu.section.toggle.edit": "సవరణ విభాగాన్ని టోగుల్ చేయండి", - - "menu.section.toggle.export": "ఎగుమతి విభాగాన్ని టోగుల్ చేయండి", - - "menu.section.toggle.find": "కనుగొనే విభాగాన్ని టోగుల్ చేయండి", - - "menu.section.toggle.import": "దిగుమతి విభాగాన్ని టోగుల్ చేయండి", - - "menu.section.toggle.new": "కొత్త విభాగాన్ని టోగుల్ చేయండి", - - "menu.section.toggle.registries": "రిజిస్ట్రీల విభాగాన్ని టోగుల్ చేయండి", - - "menu.section.toggle.statistics_task": "గణాంకాల టాస్క్ విభాగాన్ని టోగుల్ చేయండి", - - "menu.section.workflow": "వర్క్‌ఫ్లోను నిర్వహించండి", - - "metadata-export-search.tooltip": "శోధన ఫలితాలను CSVగా ఎగుమతి చేయండి", - - "metadata-export-search.submit.success": "ఎగుమతి విజయవంతంగా ప్రారంభించబడింది", - - "metadata-export-search.submit.error": "ఎగుమతిని ప్రారంభించడంలో విఫలమైంది", - - "mydspace.breadcrumbs": "నా DSpace", - - "mydspace.description": "", - - "mydspace.messages.controller-help": "అంశం సమర్పకుడికి సందేశాన్ని పంపడానికి ఈ ఎంపికను ఎంచుకోండి.", - - "mydspace.messages.description-placeholder": "మీ సందేశాన్ని ఇక్కడ నమోదు చేయండి...", - - "mydspace.messages.hide-msg": "సందేశాన్ని దాచండి", - - "mydspace.messages.mark-as-read": "చదివినట్లు గుర్తించండి", - - "mydspace.messages.mark-as-unread": "చదవనిదిగా గుర్తించండి", - - "mydspace.messages.no-content": "విషయం లేదు.", - - "mydspace.messages.no-messages": "ఇంకా సందేశాలు లేవు.", - - "mydspace.messages.send-btn": "పంపండి", - - "mydspace.messages.show-msg": "సందేశాన్ని చూపించు", - - "mydspace.messages.subject-placeholder": "విషయం...", - - "mydspace.messages.submitter-help": "నియంత్రకుడికి సందేశాన్ని పంపడానికి ఈ ఎంపికను ఎంచుకోండి.", - - "mydspace.messages.title": "సందేశాలు", - - "mydspace.messages.to": "కు", - - "mydspace.new-submission": "కొత్త సమర్పణ", - - "mydspace.new-submission-external": "బాహ్య మూలం నుండి మెటాడేటాను దిగుమతి చేయండి", - - "mydspace.new-submission-external-short": "మెటాడేటాను దిగుమతి చేయండి", - - "mydspace.results.head": "మీ సమర్పణలు", - - "mydspace.results.no-abstract": "సారాంశం లేదు", - - "mydspace.results.no-authors": "రచయితలు లేరు", - - "mydspace.results.no-collections": "సేకరణలు లేవు", - - "mydspace.results.no-date": "తేదీ లేదు", - - "mydspace.results.no-files": "ఫైళ్ళు లేవు", - - "mydspace.results.no-results": "చూపించడానికి అంశాలు లేవు", - - "mydspace.results.no-title": "శీర్షిక లేదు", - - "mydspace.results.no-uri": "URI లేదు", - - "mydspace.search-form.placeholder": "నా DSpaceలో శోధించండి...", - - "mydspace.show.workflow": "వర్క్‌ఫ్లో టాస్క్‌లు", - - "mydspace.show.workspace": "మీ సమర్పణలు", - - "mydspace.show.supervisedWorkspace": "పర్యవేక్షిత అంశాలు", - - "mydspace.status": "నా DSpace స్థితి:", - - "mydspace.status.mydspaceArchived": "ఆర్కైవ్ చేయబడింది", - - "mydspace.status.mydspaceValidation": "ధృవీకరణ", - - "mydspace.status.mydspaceWaitingController": "సమీక్షకుడి కోసం వేచి ఉంది", - - "mydspace.status.mydspaceWorkflow": "వర్క్‌ఫ్లో", - - "mydspace.status.mydspaceWorkspace": "వర్క్‌స్పేస్", - - "mydspace.title": "నా DSpace", - - "mydspace.upload.upload-failed": "కొత్త వర్క్‌స్పేస్ అంశాన్ని సృష్టించడంలో లోపం. మళ్లీ ప్రయత్నించే ముందు అప్‌లోడ్ చేసిన కంటెంట్‌ను ధృవీకరించండి.", - - "mydspace.upload.upload-failed-manyentries": "ప్రాసెస్ చేయలేని ఫైల్. ఫైల్ కోసం ఒక్కదాన్ని మాత్రమే అనుమతించినప్పటికీ చాలా ఎంట్రీలు కనుగొనబడ్డాయి.", - - "mydspace.upload.upload-failed-moreonefile": "ప్రాసెస్ చేయలేని అభ్యర్థన. ఒక ఫైల్ మాత్రమే అనుమతించబడుతుంది.", - - "mydspace.upload.upload-multiple-successful": "{{qty}} కొత్త వర్క్‌స్పేస్ అంశాలు సృష్టించబడ్డాయి.", - - "mydspace.view-btn": "చూడండి", - - "nav.expandable-navbar-section-suffix": "(సబ్‌మెను)", - - "notification.suggestion": "మేము మీ ప్రొఫైల్‌కు సంబంధించినట్లు కనిపించే {{source}}లో {{count}} ప్రచురణలు కనుగొన్నాము.
", - - "notification.suggestion.review": "సూచనలను సమీక్షించండి", - - "notification.suggestion.please": "దయచేసి", - - "nav.browse.header": "DSpace యొక్క అన్ని", - - "nav.community-browse.header": "సంఘం ద్వారా", - - "nav.context-help-toggle": "కాంటెక్స్ట్ సహాయాన్ని టోగుల్ చేయండి", - - "nav.language": "భాష మార్పు", - - "nav.login": "లాగిన్", - - "nav.user-profile-menu-and-logout": "వినియోగదారు ప్రొఫైల్ మెను మరియు లాగ్ అవుట్", - - "nav.logout": "లాగ్ అవుట్", - - "nav.main.description": "ప్రధాన నావిగేషన్ బార్", - - "nav.mydspace": "నా DSpace", - - "nav.profile": "ప్రొఫైల్", - - "nav.search": "శోధించండి", - - "nav.search.button": "శోధనను సమర్పించండి", - - "nav.statistics.header": "గణాంకాలు", - - "nav.stop-impersonating": "EPersonను అనుకరించడం ఆపండి", - - "nav.subscriptions": "సభ్యత్వాలు", - - "nav.toggle": "నావిగేషన్‌ను టోగుల్ చేయండి", - - "nav.user.description": "వినియోగదారు ప్రొఫైల్ బార్", - - "listelement.badge.dso-type": "అంశం రకం:", - - "none.listelement.badge": "అంశం", - - "publication-claim.title": "ప్రచురణ దావా", - - "publication-claim.source.description": "క్రింద మీరు అన్ని మూలాలను చూడవచ్చు.", - - "quality-assurance.title": "నాణ్యత హామీ", - - "quality-assurance.topics.description": "క్రింద మీరు {{source}}కు సభ్యత్వాల నుండి అందుకున్న అన్ని విషయాలను చూడవచ్చు.", - - "quality-assurance.source.description": "క్రింద మీరు అన్ని నోటిఫికేషన్ మూలాలను చూడవచ్చు.", - - "quality-assurance.topics": "ప్రస్తుత విషయాలు", - - "quality-assurance.source": "ప్రస్తుత మూలాలు", - - "quality-assurance.table.topic": "విషయం", - - "quality-assurance.table.source": "మూలం", - - "quality-assurance.table.last-event": "చివరి ఈవెంట్", - - "quality-assurance.table.actions": "చర్యలు", - - "quality-assurance.source-list.button.detail": "{{param}} కోసం విషయాలను చూపించండి", - - "quality-assurance.topics-list.button.detail": "{{param}} కోసం సూచనలను చూపించండి", - - "quality-assurance.noTopics": "విషయాలు కనుగొనబడలేదు.", - - "quality-assurance.noSource": "మూలాలు కనుగొనబడలేదు.", - - "notifications.events.title": "నాణ్యత హామీ సూచనలు", - - "quality-assurance.topic.error.service.retrieve": "నాణ్యత హామీ విషయాలను లోడ్ చేస్తున్నప్పుడు లోపం సంభవించింది", - - "quality-assurance.source.error.service.retrieve": "నాణ్యత హామీ మూలాన్ని లోడ్ చేస్తున్నప్పుడు లోపం సంభవించింది", - - "quality-assurance.loading": "లోడ్ అవుతోంది ...", - - "quality-assurance.events.topic": "విషయం:", - - "quality-assurance.noEvents": "సూచనలు కనుగొనబడలేదు.", - - "quality-assurance.event.table.trust": "నమ్మకం", - - "quality-assurance.event.table.publication": "ప్రచురణ", - - "quality-assurance.event.table.details": "వివరాలు", - - "quality-assurance.event.table.project-details": "ప్రాజెక్ట్ వివరాలు", - - "quality-assurance.event.table.reasons": "కారణాలు", - - "quality-assurance.event.table.actions": "చర్యలు", - - "quality-assurance.event.action.accept": "సూచనను అంగీకరించండి", - - "quality-assurance.event.action.ignore": "సూచనను విస్మరించండి", - - "quality-assurance.event.action.undo": "తొలగించు", - - "quality-assurance.event.action.reject": "సూచనను తిరస్కరించండి", - - "quality-assurance.event.action.import": "ప్రాజెక్ట్‌ను దిగుమతి చేసి సూచనను అంగీకరించండి", - - "quality-assurance.event.table.pidtype": "PID రకం:", - - "quality-assurance.event.table.pidvalue": "PID విలువ:", - - "quality-assurance.event.table.subjectValue": "విషయ విలువ:", - - "quality-assurance.event.table.abstract": "సారాంశం:", - - "quality-assurance.event.table.suggestedProject": "OpenAIRE సూచించిన ప్రాజెక్ట్ డేటా", - - "quality-assurance.event.table.project": "ప్రాజెక్ట్ శీర్షిక:", - - "quality-assurance.event.table.acronym": "ఎక్రోనిం:", - - "quality-assurance.event.table.code": "కోడ్:", - - "quality-assurance.event.table.funder": "నిధిదాత:", - - "quality-assurance.event.table.fundingProgram": "నిధుల ప్రోగ్రామ్:", - - "quality-assurance.event.table.jurisdiction": "అధికార పరిధి:", - - "quality-assurance.events.back": "విషయాలకు తిరిగి వెళ్లండి", - - "quality-assurance.events.back-to-sources": "మూలాలకు తిరిగి వెళ్లండి", - - "quality-assurance.event.table.less": "తక్కువ చూపించు", - - "quality-assurance.event.table.more": "మరిన్ని చూపించు", - - "quality-assurance.event.project.found": "స్థానిక రికార్డ్‌కు బౌండ్:", - - "quality-assurance.event.project.notFound": "స్థానిక రికార్డ్ కనుగొనబడలేదు", - - "quality-assurance.event.sure": "మీరు ఖచ్చితంగా ఉన్నారా?", - - "quality-assurance.event.ignore.description": "ఈ ఆపరేషన్‌ను రద్దు చేయలేము. ఈ సూచనను విస్మరించాల్సిందేనా?", - - "quality-assurance.event.undo.description": "ఈ ఆపరేషన్‌ను రద్దు చేయలేము!", - - "quality-assurance.event.reject.description": "ఈ ఆపరేషన్‌ను రద్దు చేయలేము. ఈ సూచనను తిరస్కరించాల్సిందేనా?", - - "quality-assurance.event.accept.description": "DSpace ప్రాజెక్ట్ ఎంచుకోబడలేదు. సూచన డేటా ఆధారంగా కొత్త ప్రాజెక్ట్ సృష్టించబడుతుంది.", - - "quality-assurance.event.action.cancel": "రద్దు చేయండి", - - "quality-assurance.event.action.saved": "మీ నిర్ణయం విజయవంతంగా సేవ్ చేయబడింది.", - - "quality-assurance.event.action.error": "లోపం సంభవించింది. మీ నిర్ణయం సేవ్ చేయబడలేదు.", - - "quality-assurance.event.modal.project.title": "బౌండ్ చేయడానికి ప్రాజెక్ట్‌ను ఎంచుకోండి", - - "quality-assurance.event.modal.project.publication": "ప్రచురణ:", - - "quality-assurance.event.modal.project.bountToLocal": "స్థానిక రికార్డ్‌కు బౌండ్:", - - "quality-assurance.event.modal.project.select": "ప్రాజెక్ట్ శోధన", - - "quality-assurance.event.modal.project.search": "శోధించండి", - - "quality-assurance.event.modal.project.clear": "క్లియర్ చేయండి", - - "quality-assurance.event.modal.project.cancel": "రద్దు చేయండి", - - "quality-assurance.event.modal.project.bound": "బౌండ్ ప్రాజెక్ట్", - - "quality-assurance.event.modal.project.remove": "తీసివేయండి", - - "quality-assurance.event.modal.project.placeholder": "ప్రాజెక్ట్ పేరును నమోదు చేయండి", - - "quality-assurance.event.modal.project.notFound": "ప్రాజెక్ట్ కనుగొనబడలేదు.", - - "quality-assurance.event.project.bounded": "ప్రాజెక్ట్ విజయవంతంగా లింక్ చేయబడింది.", - - "quality-assurance.event.project.removed": "ప్రాజెక్ట్ విజయవంతంగా అన్‌లింక్ చేయబడింది.", - - "quality-assurance.event.project.error": "లోపం సంభవించింది. ఏ ఆపరేషన్ నిర్వహించబడలేదు.", - - "quality-assurance.event.reason": "కారణం", - - "orgunit.listelement.badge": "సంస్థాగత యూనిట్", - - "orgunit.listelement.no-title": "శీర్షిక లేనిది", - - "orgunit.page.city": "నగరం", - - "orgunit.page.country": "దేశం", - - "orgunit.page.dateestablished": "స్థాపన తేదీ", - - "orgunit.page.description": "వివరణ", - - "orgunit.page.edit": "ఈ అంశాన్ని సవరించండి", - - "orgunit.page.id": "ID", - - "orgunit.page.options": "ఎంపికలు", - - "orgunit.page.titleprefix": "సంస్థాగత యూనిట్: ", - - "orgunit.page.ror": "ROR ఐడెంటిఫైయర్", - - "orgunit.search.results.head": "సంస్థాగత యూనిట్ శోధన ఫలితాలు", - - "pagination.options.description": "పేజినేషన్ ఎంపికలు", - - "pagination.results-per-page": "పేజీకి ఫలితాలు", - - "pagination.showing.detail": "{{ range }} లో {{ total }}", - - "pagination.showing.label": "ఇప్పుడు చూపిస్తోంది ", - - "pagination.sort-direction": "క్రమం ఎంపికలు", - - "person.listelement.badge": "వ్యక్తి", - - "person.listelement.no-title": "పేరు కనుగొనబడలేదు", - - "person.page.birthdate": "పుట్టిన తేదీ", - - "person.page.edit": "ఈ అంశాన్ని సవరించండి", - - "person.page.email": "ఇమెయిల్ చిరునామా", - - "person.page.firstname": "మొదటి పేరు", - - "person.page.jobtitle": "ఉద్యోగ శీర్షిక", - - "person.page.lastname": "చివరి పేరు", - - "person.page.name": "పేరు", - - "person.page.link.full": "అన్ని మెటాడేటాను చూపించు", - - "person.page.options": "ఎంపికలు", - - "person.page.orcid": "ORCID", - - "person.page.staffid": "స్టాఫ్ ID", - - "person.page.titleprefix": "వ్యక్తి: ", - - "person.search.results.head": "వ్యక్తి శోధన ఫలితాలు", - - "person-relationships.search.results.head": "వ్యక్తి శోధన ఫలితాలు", - - "person.search.title": "వ్యక్తి శోధన", - - "process.new.select-parameters": "పారామితులు", - - "process.new.select-parameter": "పారామీటర్‌ను ఎంచుకోండి", - - "process.new.add-parameter": "పారామీటర్‌ను జోడించండి...", - - "process.new.delete-parameter": "పారామీటర్‌ను తొలగించండి", - - "process.new.parameter.label": "పారామీటర్ విలువ", - - "process.new.cancel": "రద్దు చేయండి", - - "process.new.submit": "సేవ్ చేయండి", - - "process.new.select-script": "స్క్రిప్ట్", - - "process.new.select-script.placeholder": "స్క్రిప్ట్‌ను ఎంచుకోండి...", - - "process.new.select-script.required": "స్క్రిప్ట్ అవసరం", - - "process.new.parameter.file.upload-button": "ఫైల్‌ను ఎంచుకోండి...", - - "process.new.parameter.file.required": "దయచేసి ఫైల్‌ను ఎంచుకోండి", - - "process.new.parameter.integer.required": "పారామీటర్ విలువ అవసరం", - - "process.new.parameter.string.required": "పారామీటర్ విలువ అవసరం", - - "process.new.parameter.type.value": "విలువ", - - "process.new.parameter.type.file": "ఫైల్", - - "process.new.parameter.required.missing": "కింది పారామితులు అవసరమైనవి కానీ ఇంకా లేవు:", - - "process.new.notification.success.title": "విజయం", - - "process.new.notification.success.content": "ప్రక్రియ విజయవంతంగా సృష్టించబడింది", - - "process.new.notification.error.title": "లోపం", - - "process.new.notification.error.content": "ఈ ప్రక్రియను సృష్టించడంలో లోపం సంభవించింది", - - "process.new.notification.error.max-upload.content": "ఫైల్ గరిష్ట అప్‌లోడ్ పరిమాణాన్ని మించిపోయింది", - - "process.new.header": "కొత్త ప్రక్రియను సృష్టించండి", - - "process.new.title": "కొత్త ప్రక్రియను సృష్టించండి", - - "process.new.breadcrumbs": "కొత్త ప్రక్రియను సృష్టించండి", - - "process.detail.arguments": "వాదనలు", - - "process.detail.arguments.empty": "ఈ ప్రక్రియలో ఏ వాదనలు లేవు", - - "process.detail.back": "తిరిగి వెళ్లండి", - - "process.detail.output": "ప్రక్రియ అవుట్పుట్", - - "process.detail.logs.button": "ప్రక్రియ అవుట్పుట్‌ను పొందండి", - - "process.detail.logs.loading": "పొందుతోంది", - - "process.detail.logs.none": "ఈ ప్రక్రియకు అవుట్పుట్ లేదు", - - "process.detail.output-files": "అవుట్పుట్ ఫైళ్ళు", - - "process.detail.output-files.empty": "ఈ ప్రక్రియలో ఏ అవుట్పుట్ ఫైళ్ళు లేవు", - - "process.detail.script": "స్క్రిప్ట్", - - "process.detail.title": "ప్రక్రియ: {{ id }} - {{ name }}", - - "process.detail.start-time": "ప్రారంభ సమయం", - - "process.detail.end-time": "ముగింపు సమయం", - - "process.detail.status": "స్థితి", - - "process.detail.create": "ఇలాంటి ప్రక్రియను సృష్టించండి", - - "process.detail.actions": "చర్యలు", - - "process.detail.delete.button": "ప్రక్రియను తొలగించండి", - - "process.detail.delete.header": "ప్రక్రియను తొలగించండి", - - "process.detail.delete.body": "మీరు ప్రస్తుత ప్రక్రియను తొలగించాలనుకుంటున్నారా?", - - "process.detail.delete.cancel": "రద్దు చేయండి", - - "process.detail.delete.confirm": "ప్రక్రియను తొలగించండి", - - "process.detail.delete.success": "ప్రక్రియ విజయవంతంగా తొలగించబడింది.", - - "process.detail.delete.error": "ప్రక్రియను తొలగించడంలో ఏదో తప్పు జరిగింది", - - "process.detail.refreshing": "స్వయంచాలకంగా రిఫ్రెష్ అవుతోంది…", - - "process.overview.table.completed.info": "ముగింపు సమయం (UTC)", - - "process.overview.table.completed.title": "విజయవంతమైన ప్రక్రియలు", - - "process.overview.table.empty": "సరిపోలిన ప్రక్రియలు కనుగొనబడలేదు.", - - "process.overview.table.failed.info": "ముగింపు సమయం (UTC)", - - "process.overview.table.failed.title": "విఫలమైన ప్రక్రియలు", - - "process.overview.table.finish": "ముగింపు సమయం (UTC)", - - "process.overview.table.id": "ప్రక్రియ ID", - - "process.overview.table.name": "పేరు", - - "process.overview.table.running.info": "ప్రారంభ సమయం (UTC)", - - "process.overview.table.running.title": "నడుస్తున్న ప్రక్రియలు", - - "process.overview.table.scheduled.info": "సృష్టికరణ సమయం (UTC)", - - "process.overview.table.scheduled.title": "షెడ్యూల్ చేయబడిన ప్రక్రియలు", - - "process.overview.table.start": "ప్రారంభ సమయం (UTC)", - - "process.overview.table.status": "స్థితి", - - "process.overview.table.user": "వినియోగదారు", - - "process.overview.title": "ప్రక్రియల అవలోకనం", - - "process.overview.breadcrumbs": "ప్రక్రియల అవలోకనం", - - "process.overview.new": "కొత్తది", - - "process.overview.table.actions": "చర్యలు", - - "process.overview.delete": "{{count}} ప్రక్రియలను తొలగించండి", - - "process.overview.delete-process": "ప్రక్రియను తొలగించండి", - - "process.overview.delete.clear": "తొలగించే ఎంపికను క్లియర్ చేయండి", - - "process.overview.delete.processing": "{{count}} ప్రక్రియ(లు) తొలగించబడుతున్నాయి. తొలగింపు పూర్తిగా పూర్తయ్యే వరకు దయచేసి వేచి ఉండండి. ఇది కొంత సమయం పట్టవచ్చు.", - - "process.overview.delete.body": "మీరు నిజంగా {{count}} ప్రక్రియ(లను) తొలగించాలనుకుంటున్నారా?", - "process.overview.delete.header": "ప్రక్రియలను తొలగించు", - "process.overview.unknown.user": "తెలియదు", - "process.bulk.delete.error.head": "ప్రక్రియను తొలగించడంలో లోపం", - "process.bulk.delete.error.body": "ID {{processId}} తో ఉన్న ప్రక్రియను తొలగించలేకపోయాము. మిగతా ప్రక్రియలు తొలగించబడతాయి.", - "process.bulk.delete.success": "{{count}} ప్రక్రియ(లు) విజయవంతంగా తొలగించబడ్డాయి", - "profile.breadcrumbs": "ప్రొఫైల్ నవీకరించు", - "profile.card.accessibility.content": "ఆక్సెసిబిలిటీ సెట్టింగ్లను ఆక్సెసిబిలిటీ సెట్టింగ్స్ పేజీలో కాన్ఫిగర్ చేయవచ్చు.", - "profile.card.accessibility.header": "ఆక్సెసిబిలిటీ", - "profile.card.accessibility.link": "ఆక్సెసిబిలిటీ సెట్టింగ్స్ పేజీకి వెళ్లండి", - "profile.card.identify": "గుర్తించు", - "profile.card.security": "భద్రత", - "profile.form.submit": "సేవ్ చేయి", - "profile.groups.head": "మీరు చెందిన అథారైజేషన్ గ్రూపులు", - "profile.special.groups.head": "మీరు చెందిన ప్రత్యేక అథారైజేషన్ గ్రూపులు", - "profile.metadata.form.error.firstname.required": "మొదటి పేరు అవసరం", - "profile.metadata.form.error.lastname.required": "చివరి పేరు అవసరం", - "profile.metadata.form.label.email": "ఇమెయిల్ చిరునామా", - "profile.metadata.form.label.firstname": "మొదటి పేరు", - "profile.metadata.form.label.language": "భాష", - "profile.metadata.form.label.lastname": "చివరి పేరు", - "profile.metadata.form.label.phone": "సంప్రదించే టెలిఫోన్", - "profile.metadata.form.notifications.success.content": "మీ ప్రొఫైల్లోని మార్పులు సేవ్ చేయబడ్డాయి.", - "profile.metadata.form.notifications.success.title": "ప్రొఫైల్ సేవ్ చేయబడింది", - "profile.notifications.warning.no-changes.content": "ప్రొఫైల్లో ఎటువంటి మార్పులు చేయలేదు.", - "profile.notifications.warning.no-changes.title": "మార్పులు లేవు", - "profile.security.form.error.matching-passwords": "పాస్వర్డ్లు సరిపోలడం లేదు", - "profile.security.form.info": "ఐచ్ఛికంగా, మీరు క్రింద ఇచ్చిన బాక్స్లో కొత్త పాస్వర్డ్ ను నమోదు చేసి, దానిని మరోసారి టైప్ చేసి నిర్ధారించండి.", - "profile.security.form.label.password": "పాస్వర్డ్", - "profile.security.form.label.passwordrepeat": "నిర్ధారించడానికి మళ్లీ టైప్ చేయండి", - "profile.security.form.label.current-password": "ప్రస్తుత పాస్వర్డ్", - "profile.security.form.notifications.success.content": "మీ పాస్వర్డ్ మార్పులు సేవ్ చేయబడ్డాయి.", - "profile.security.form.notifications.success.title": "పాస్వర్డ్ సేవ్ చేయబడింది", - "profile.security.form.notifications.error.title": "పాస్వర్డ్ మార్చడంలో లోపం", - "profile.security.form.notifications.error.change-failed": "పాస్వర్డ్ మార్చడంలో లోపం సంభవించింది. ప్రస్తుత పాస్వర్డ్ సరిగ్గా ఉందో లేదో తనిఖీ చేయండి.", - "profile.security.form.notifications.error.not-same": "ఇచ్చిన పాస్వర్డ్లు సమానంగా లేవు", - "profile.security.form.notifications.error.general": "దయచేసి భద్రతా ఫారమ్ యొక్క అవసరమైన ఫీల్డ్లను పూరించండి.", - "profile.title": "ప్రొఫైల్ నవీకరించు", - "profile.card.researcher": "రిసెర్చర్ ప్రొఫైల్", - "project.listelement.badge": "రీసెర్చ్ ప్రాజెక్ట్", - "project.page.contributor": "కంట్రిబ్యూటర్లు", - "project.page.description": "వివరణ", - "project.page.edit": "ఈ అంశాన్ని సవరించండి", - "project.page.expectedcompletion": "అంచనా పూర్తి", - "project.page.funder": "ఫండర్లు", - "project.page.id": "ID", - "project.page.keyword": "కీలక పదాలు", - "project.page.options": "ఎంపికలు", - "project.page.status": "స్థితి", - "project.page.titleprefix": "రీసెర్చ్ ప్రాజెక్ట్: ", - "project.search.results.head": "ప్రాజెక్ట్ శోధన ఫలితాలు", - "project-relationships.search.results.head": "ప్రాజెక్ట్ శోధన ఫలితాలు", - "publication.listelement.badge": "ప్రచురణ", - "publication.page.description": "వివరణ", - "publication.page.edit": "ఈ అంశాన్ని సవరించండి", - "publication.page.journal-issn": "జర్నల్ ISSN", - "publication.page.journal-title": "జర్నల్ శీర్షిక", - "publication.page.publisher": "ప్రచురణకర్త", - "publication.page.options": "ఎంపికలు", - "publication.page.titleprefix": "ప్రచురణ: ", - "publication.page.volume-title": "వాల్యూమ్ శీర్షిక", - "publication.search.results.head": "ప్రచురణ శోధన ఫలితాలు", - "publication-relationships.search.results.head": "ప్రచురణ శోధన ఫలితాలు", - "publication.search.title": "ప్రచురణ శోధన", - "media-viewer.next": "తర్వాత", - "media-viewer.previous": "మునుపటి", - "media-viewer.playlist": "ప్లేలిస్ట్", - "suggestion.loading": "లోడ్ అవుతోంది ...", - "suggestion.title": "ప్రచురణ క్లెయిమ్", - "suggestion.title.breadcrumbs": "ప్రచురణ క్లెయిమ్", - "suggestion.targets.description": "క్రింద మీరు అన్ని సూచనలను చూడవచ్చు", - "suggestion.targets": "ప్రస్తుత సూచనలు", - "suggestion.table.name": "రిసెర్చర్ పేరు", - "suggestion.table.actions": "చర్యలు", - "suggestion.button.review": "{{ total }} సూచన(లను) సమీక్షించండి", - "suggestion.button.review.title": "కోసం {{ total }} సూచన(లను) సమీక్షించండి", - "suggestion.noTargets": "లక్ష్యం కనుగొనబడలేదు.", - "suggestion.target.error.service.retrieve": "సూచన లక్ష్యాలను లోడ్ చేయడంలో లోపం సంభవించింది", - "suggestion.evidence.type": "రకం", - "suggestion.evidence.score": "స్కోరు", - "suggestion.evidence.notes": "గమనికలు", - "suggestion.approveAndImport": "ఆమోదించు & దిగుమతి చేయండి", - "suggestion.approveAndImport.success": "సూచన విజయవంతంగా దిగుమతి చేయబడింది. వీక్షించండి.", - "suggestion.approveAndImport.bulk": "ఎంచుకున్నవాటిని ఆమోదించు & దిగుమతి చేయండి", - "suggestion.approveAndImport.bulk.success": "{{ count }} సూచనలు విజయవంతంగా దిగుమతి చేయబడ్డాయి", - "suggestion.approveAndImport.bulk.error": "{{ count }} సూచనలు అనుకోని సర్వర్ లోపాల కారణంగా దిగుమతి చేయబడలేదు", - "suggestion.ignoreSuggestion": "సూచనను విస్మరించండి", - "suggestion.ignoreSuggestion.success": "సూచన విస్మరించబడింది", - "suggestion.ignoreSuggestion.bulk": "ఎంచుకున్న సూచనను విస్మరించండి", - "suggestion.ignoreSuggestion.bulk.success": "{{ count }} సూచనలు విస్మరించబడ్డాయి", - "suggestion.ignoreSuggestion.bulk.error": "{{ count }} సూచనలు అనుకోని సర్వర్ లోపాల కారణంగా విస్మరించబడలేదు", - "suggestion.seeEvidence": "సాక్ష్యం చూడండి", - "suggestion.hideEvidence": "సాక్ష్యాన్ని దాచండి", - "suggestion.suggestionFor": "కోసం సూచనలు", - "suggestion.suggestionFor.breadcrumb": "{{ name }} కోసం సూచనలు", - "suggestion.source.openaire": "OpenAIRE గ్రాఫ్", - "suggestion.source.openalex": "OpenAlex", - "suggestion.from.source": "నుండి", - "suggestion.count.missing": "మీకు ప్రచురణ క్లెయిమ్లు ఇంకా లేవు", - "suggestion.totalScore": "మొత్తం స్కోరు", - "suggestion.type.openaire": "OpenAIRE", - "register-email.title": "కొత్త వినియోగదారు నమోదు", - "register-page.create-profile.header": "ప్రొఫైల్ సృష్టించండి", - "register-page.create-profile.identification.header": "గుర్తించు", - "register-page.create-profile.identification.email": "ఇమెయిల్ చిరునామా", - "register-page.create-profile.identification.first-name": "మొదటి పేరు *", - "register-page.create-profile.identification.first-name.error": "దయచేసి మొదటి పేరును పూరించండి", - "register-page.create-profile.identification.last-name": "చివరి పేరు *", - "register-page.create-profile.identification.last-name.error": "దయచేసి చివరి పేరును పూరించండి", - "register-page.create-profile.identification.contact": "సంప్రదించే టెలిఫోన్", - "register-page.create-profile.identification.language": "భాష", - "register-page.create-profile.security.header": "భద్రత", - "register-page.create-profile.security.info": "దయచేసి క్రింద ఇచ్చిన బాక్స్లో పాస్వర్డ్ ను నమోదు చేసి, దానిని మరోసారి టైప్ చేసి నిర్ధారించండి.", - "register-page.create-profile.security.label.password": "పాస్వర్డ్ *", - "register-page.create-profile.security.label.passwordrepeat": "నిర్ధారించడానికి మళ్లీ టైప్ చేయండి *", - "register-page.create-profile.security.error.empty-password": "దయచేసి క్రింద ఇచ్చిన బాక్స్లో పాస్వర్డ్ ను నమోదు చేయండి.", - "register-page.create-profile.security.error.matching-passwords": "పాస్వర్డ్లు సరిపోలడం లేదు", - "register-page.create-profile.submit": "నమోదును పూర్తి చేయండి", - "register-page.create-profile.submit.error.content": "కొత్త వినియోగదారుని నమోదు చేయడంలో ఏదో తప్పు జరిగింది.", - "register-page.create-profile.submit.error.head": "నమోదు విఫలమైంది", - "register-page.create-profile.submit.success.content": "నమోదు విజయవంతమైంది. మీరు సృష్టించిన వినియోగదారుగా లాగిన్ అయ్యారు.", - "register-page.create-profile.submit.success.head": "నమోదు పూర్తయింది", - "register-page.registration.header": "కొత్త వినియోగదారు నమోదు", - "register-page.registration.info": "ఇమెయిల్ నవీకరణల కోసం కలెక్షన్లకు సభ్యత్వం పొందడానికి మరియు DSpace కు కొత్త అంశాలను సమర్పించడానికి ఖాతాను నమోదు చేయండి.", - "register-page.registration.email": "ఇమెయిల్ చిరునామా *", - "register-page.registration.email.error.required": "దయచేసి ఇమెయిల్ చిరునామాను పూరించండి", - "register-page.registration.email.error.not-email-form": "దయచేసి సరైన ఇమెయిల్ చిరునామాను పూరించండి.", - "register-page.registration.email.error.not-valid-domain": "అనుమతించబడిన డొమైన్లతో ఇమెయిల్ ఉపయోగించండి: {{ domains }}", - "register-page.registration.email.hint": "ఈ చిరునామా ధృవీకరించబడి మీ లాగిన్ పేరుగా ఉపయోగించబడుతుంది.", - "register-page.registration.submit": "నమోదు చేయండి", - "register-page.registration.success.head": "ధృవీకరణ ఇమెయిల్ పంపబడింది", - "register-page.registration.success.content": "{{ email }} కు ప్రత్యేక URL మరియు మరింత సూచనలతో కూడిన ఇమెయిల్ పంపబడింది.", - "register-page.registration.error.head": "ఇమెయిల్ నమోదు చేయడంలో లోపం", - "register-page.registration.error.content": "ఈ ఇమెయిల్ చిరునామాను నమోదు చేయడంలో లోపం సంభవించింది: {{ email }}", - "register-page.registration.error.recaptcha": "recaptcha తో ప్రమాణీకరించడంలో లోపం", - "register-page.registration.google-recaptcha.must-accept-cookies": "మీరు నమోదు చేయడానికి నమోదు మరియు పాస్వర్డ్ రికవరీ (Google reCaptcha) కుకీలను అంగీకరించాలి.", - "register-page.registration.google-recaptcha.open-cookie-settings": "కుకీ సెట్టింగ్లను తెరవండి", - "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", - "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha ధృవీకరణ సమయంలో లోపం సంభవించింది", - "register-page.registration.google-recaptcha.notification.message.expired": "ధృవీకరణ కాలముగిసింది. దయచేసి మళ్లీ ధృవీకరించండి.", - "register-page.registration.info.maildomain": "డొమైన్ల మెయిల్ చిరునామాల కోసం ఖాతాలు నమోదు చేయవచ్చు", - "relationships.add.error.relationship-type.content": "రెండు అంశాల మధ్య {{ type }} సంబంధం కోసం సరిపోయే మ్యాచ్ కనుగొనబడలేదు", - "relationships.add.error.server.content": "సర్వర్ లోపం తిరిగి ఇచ్చింది", - "relationships.add.error.title": "సంబంధాన్ని జోడించలేకపోయాము", - "relationships.Publication.isAuthorOfPublication.Person": "రచయితలు (వ్యక్తులు)", - "relationships.Publication.isProjectOfPublication.Project": "రీసెర్చ్ ప్రాజెక్ట్లు", - "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "సంస్థాగత యూనిట్లు", - "relationships.Publication.isAuthorOfPublication.OrgUnit": "రచయితలు (సంస్థాగత యూనిట్లు)", - "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "జర్నల్ ఇష్యూ", - "relationships.Publication.isContributorOfPublication.Person": "కంట్రిబ్యూటర్", - "relationships.Publication.isContributorOfPublication.OrgUnit": "కంట్రిబ్యూటర్ (సంస్థాగత యూనిట్లు)", - "relationships.Person.isPublicationOfAuthor.Publication": "ప్రచురణలు", - "relationships.Person.isProjectOfPerson.Project": "రీసెర్చ్ ప్రాజెక్ట్లు", - "relationships.Person.isOrgUnitOfPerson.OrgUnit": "సంస్థాగత యూనిట్లు", - "relationships.Person.isPublicationOfContributor.Publication": "ప్రచురణలు (కంట్రిబ్యూటర్ గా)", - "relationships.Project.isPublicationOfProject.Publication": "ప్రచురణలు", - "relationships.Project.isPersonOfProject.Person": "రచయితలు", - "relationships.Project.isOrgUnitOfProject.OrgUnit": "సంస్థాగత యూనిట్లు", - "relationships.Project.isFundingAgencyOfProject.OrgUnit": "ఫండర్", - "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "సంస్థ ప్రచురణలు", - "relationships.OrgUnit.isPersonOfOrgUnit.Person": "రచయితలు", - "relationships.OrgUnit.isProjectOfOrgUnit.Project": "రీసెర్చ్ ప్రాజెక్ట్లు", - "relationships.OrgUnit.isPublicationOfAuthor.Publication": "రచయిత ప్రచురణలు", - "relationships.OrgUnit.isPublicationOfContributor.Publication": "ప్రచురణలు (కంట్రిబ్యూటర్ గా)", - "relationships.OrgUnit.isProjectOfFundingAgency.Project": "రీసెర్చ్ ప్రాజెక్ట్లు (ఫండర్ ఆఫ్)", - "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "జర్నల్ వాల్యూమ్", - "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "ప్రచురణలు", - "relationships.JournalVolume.isJournalOfVolume.Journal": "జర్నల్స్", - "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "జర్నల్ ఇష్యూ", - "relationships.Journal.isVolumeOfJournal.JournalVolume": "జర్నల్ వాల్యూమ్", - "repository.image.logo": "రిపోజిటరీ లోగో", - "repository.title": "DSpace రిపోజిటరీ", - "repository.title.prefix": "DSpace రిపోజిటరీ :: ", - "resource-policies.add.button": "జోడించు", - "resource-policies.add.for.": "కొత్త పాలసీని జోడించండి", - "resource-policies.add.for.bitstream": "కొత్త బిట్స్ట్రీమ్ పాలసీని జోడించండి", - "resource-policies.add.for.bundle": "కొత్త బండిల్ పాలసీని జోడించండి", - "resource-policies.add.for.item": "కొత్త అంశం పాలసీని జోడించండి", - "resource-policies.add.for.community": "కొత్త కమ్యూనిటీ పాలసీని జోడించండి", - "resource-policies.add.for.collection": "కొత్త కలెక్షన్ పాలసీని జోడించండి", - "resource-policies.create.page.heading": "కోసం కొత్త రిసోర్స్ పాలసీని సృష్టించండి", - "resource-policies.create.page.failure.content": "రిసోర్స్ పాలసీని సృష్టించడంలో లోపం సంభవించింది.", - "resource-policies.create.page.success.content": "ఆపరేషన్ విజయవంతమైంది", - "resource-policies.create.page.title": "కొత్త రిసోర్స్ పాలసీని సృష్టించండి", - "resource-policies.delete.btn": "ఎంచుకున్నవాటిని తొలగించు", - "resource-policies.delete.btn.title": "ఎంచుకున్న రిసోర్స్ పాలసీలను తొలగించు", - "resource-policies.delete.failure.content": "ఎంచుకున్న రిసోర్స్ పాలసీలను తొలగించడంలో లోపం సంభవించింది.", - "resource-policies.delete.success.content": "ఆపరేషన్ విజయవంతమైంది", - "resource-policies.edit.page.heading": "రిసోర్స్ పాలసీని సవరించండి", - "resource-policies.edit.page.failure.content": "రిసోర్స్ పాలసీని సవరించడంలో లోపం సంభవించింది.", - "resource-policies.edit.page.target-failure.content": "రిసోర్స్ పాలసీ యొక్క టార్గెట్ (ePerson లేదా గ్రూప్)ని సవరించడంలో లోపం సంభవించింది.", - "resource-policies.edit.page.other-failure.content": "రిసోర్స్ పాలసీని సవరించడంలో లోపం సంభవించింది. టార్గెట్ (ePerson లేదా గ్రూప్) విజయవంతంగా నవీకరించబడింది.", - "resource-policies.edit.page.success.content": "ఆపరేషన్ విజయవంతమైంది", - "resource-policies.edit.page.title": "రిసోర్స్ పాలసీని సవరించండి", - "resource-policies.form.action-type.label": "చర్య రకాన్ని ఎంచుకోండి", - "resource-policies.form.action-type.required": "మీరు రిసోర్స్ పాలసీ చర్యను ఎంచుకోవాలి.", - "resource-policies.form.eperson-group-list.label": "అనుమతి ఇవ్వబడే ePerson లేదా గ్రూప్", - "resource-policies.form.eperson-group-list.select.btn": "ఎంచుకోండి", - "resource-policies.form.eperson-group-list.tab.eperson": "ePerson కోసం శోధించండి", - "resource-policies.form.eperson-group-list.tab.group": "గ్రూప్ కోసం శోధించండి", - "resource-policies.form.eperson-group-list.table.headers.action": "చర్య", - "resource-policies.form.eperson-group-list.table.headers.id": "ID", - "resource-policies.form.eperson-group-list.table.headers.name": "పేరు", - "resource-policies.form.eperson-group-list.modal.header": "రకాన్ని మార్చలేరు", - "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePersonని గ్రూప్తో భర్తీ చేయడం సాధ్యం కాదు.", - "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "గ్రూప్ను ePersonతో భర్తీ చేయడం సాధ్యం కాదు.", - "resource-policies.form.eperson-group-list.modal.text2": "ప్రస్తుత రిసోర్స్ పాలసీని తొలగించి, కావలసిన రకంతో కొత్తదాన్ని సృష్టించండి.", - "resource-policies.form.eperson-group-list.modal.close": "సరే", - "resource-policies.form.date.end.label": "ముగింపు తేదీ", - "resource-policies.form.date.start.label": "ప్రారంభ తేదీ", - "resource-policies.form.description.label": "వివరణ", - "resource-policies.form.name.label": "పేరు", - "resource-policies.form.name.hint": "గరిష్టంగా 30 అక్షరాలు", - "resource-policies.form.policy-type.label": "పాలసీ రకాన్ని ఎంచుకోండి", - "resource-policies.form.policy-type.required": "మీరు రిసోర్స్ పాలసీ రకాన్ని ఎంచుకోవాలి.", - "resource-policies.table.headers.action": "చర్య", - "resource-policies.table.headers.date.end": "ముగింపు తేదీ", - "resource-policies.table.headers.date.start": "ప్రారంభ తేదీ", - "resource-policies.table.headers.edit": "సవరించు", - "resource-policies.table.headers.edit.group": "గ్రూప్ను సవరించు", - "resource-policies.table.headers.edit.policy": "పాలసీని సవరించు", - "resource-policies.table.headers.eperson": "EPerson", - "resource-policies.table.headers.group": "గ్రూప్", - "resource-policies.table.headers.select-all": "అన్నింటినీ ఎంచుకోండి", - "resource-policies.table.headers.deselect-all": "అన్నింటినీ ఎంపికను తొలగించు", - "resource-policies.table.headers.select": "ఎంచుకోండి", - "resource-policies.table.headers.deselect": "ఎంపికను తొలగించు", - "resource-policies.table.headers.id": "ID", - "resource-policies.table.headers.name": "పేరు", - "resource-policies.table.headers.policyType": "రకం", - "resource-policies.table.headers.title.for.bitstream": "బిట్స్ట్రీమ్ కోసం పాలసీలు", - "resource-policies.table.headers.title.for.bundle": "బండిల్ కోసం పాలసీలు", - "resource-policies.table.headers.title.for.item": "అంశం కోసం పాలసీలు", - "resource-policies.table.headers.title.for.community": "కమ్యూనిటీ కోసం పాలసీలు", - "resource-policies.table.headers.title.for.collection": "కలెక్షన్ కోసం పాలసీలు", - "root.skip-to-content": "ప్రధాన కంటెంట్కు దాటవేయి", - "search.description": "", - "search.switch-configuration.title": "చూపించు", - "search.title": "శోధన", - "search.breadcrumbs": "శోధన", - "search.search-form.placeholder": "రిపోజిటరీని శోధించండి ...", - "search.filters.remove": "{{ type }} రకం ఫిల్టర్ను తొలగించండి, విలువ {{ value }}", - "search.filters.applied.f.title": "శీర్షిక", - "search.filters.applied.f.author": "రచయిత", - "search.filters.applied.f.dateIssued.max": "ముగింపు తేదీ", - "search.filters.applied.f.dateIssued.min": "ప్రారంభ తేదీ", - "search.filters.applied.f.dateSubmitted": "సమర్పించిన తేదీ", - "search.filters.applied.f.discoverable": "డిస్కవర్ చేయలేనివి", - "search.filters.applied.f.entityType": "అంశం రకం", - "search.filters.applied.f.has_content_in_original_bundle": "ఫైళ్లు ఉన్నాయి", - "search.filters.applied.f.original_bundle_filenames": "ఫైల్ పేరు", - "search.filters.applied.f.original_bundle_descriptions": "ఫైల్ వివరణ", - "search.filters.applied.f.has_geospatial_metadata": "భౌగోళిక స్థానం ఉంది", - "search.filters.applied.f.itemtype": "రకం", - "search.filters.applied.f.namedresourcetype": "స్థితి", - "search.filters.applied.f.subject": "విషయం", - "search.filters.applied.f.submitter": "సమర్పించేవారు", - "search.filters.applied.f.jobTitle": "ఉద్యోగ శీర్షిక", - "search.filters.applied.f.birthDate.max": "ముగింపు పుట్టిన తేదీ", - "search.filters.applied.f.birthDate.min": "ప్రారంభ పుట్టిన తేదీ", - "search.filters.applied.f.supervisedBy": "సూపర్వైజ్ చేసినవారు", - "search.filters.applied.f.withdrawn": "విడిచిపెట్టబడింది", - "search.filters.applied.operator.equals": "", - "search.filters.applied.operator.notequals": " సమానం కాదు", - "search.filters.applied.operator.authority": "", - "search.filters.applied.operator.notauthority": " అధికారం కాదు", - "search.filters.applied.operator.contains": " కలిగి ఉంది", - "search.filters.applied.operator.notcontains": "కలిగి లేదు", - "search.filters.applied.operator.query": "", - "search.filters.applied.f.point": "కోఆర్డినేట్లు", - "search.filters.filter.title.head": "శీర్షిక", - "search.filters.filter.title.placeholder": "శీర్షిక", - "search.filters.filter.title.label": "శీర్షికను శోధించండి", - "search.filters.filter.author.head": "రచయిత", - "search.filters.filter.author.placeholder": "రచయిత పేరు", - "search.filters.filter.author.label": "రచయిత పేరును శోధించండి", - "search.filters.filter.birthDate.head": "పుట్టిన తేదీ", - "search.filters.filter.birthDate.placeholder": "పుట్టిన తేదీ", - "search.filters.filter.birthDate.label": "పుట్టిన తేదీని శోధించండి", - "search.filters.filter.collapse": "ఫిల్టర్‌ను మూసివేయి", - "search.filters.filter.creativeDatePublished.head": "ప్రచురణ తేదీ", - "search.filters.filter.creativeDatePublished.placeholder": "ప్రచురణ తేదీ", - "search.filters.filter.creativeDatePublished.label": "ప్రచురణ తేదీని శోధించండి", - "search.filters.filter.creativeDatePublished.min.label": "ప్రారంభం", - "search.filters.filter.creativeDatePublished.max.label": "ముగింపు", - "search.filters.filter.creativeWorkEditor.head": "సంపాదకుడు", - "search.filters.filter.creativeWorkEditor.placeholder": "సంపాదకుడు", - "search.filters.filter.creativeWorkEditor.label": "సంపాదకుడిని శోధించండి", - "search.filters.filter.creativeWorkKeywords.head": "విషయం", - "search.filters.filter.creativeWorkKeywords.placeholder": "విషయం", - "search.filters.filter.creativeWorkKeywords.label": "విషయాన్ని శోధించండి", - "search.filters.filter.creativeWorkPublisher.head": "ప్రచురణకర్త", - "search.filters.filter.creativeWorkPublisher.placeholder": "ప్రచురణకర్త", - "search.filters.filter.creativeWorkPublisher.label": "ప్రచురణకర్తను శోధించండి", - "search.filters.filter.dateIssued.head": "తేదీ", - "search.filters.filter.dateIssued.max.placeholder": "గరిష్ట తేదీ", - "search.filters.filter.dateIssued.max.label": "ముగింపు", - "search.filters.filter.dateIssued.min.placeholder": "కనిష్ట తేదీ", - "search.filters.filter.dateIssued.min.label": "ప్రారంభం", - "search.filters.filter.dateSubmitted.head": "సమర్పించిన తేదీ", - "search.filters.filter.dateSubmitted.placeholder": "సమర్పించిన తేదీ", - "search.filters.filter.dateSubmitted.label": "సమర్పించిన తేదీని శోధించండి", - "search.filters.filter.discoverable.head": "కనుగొనలేనివి", - "search.filters.filter.withdrawn.head": "విడిచిపెట్టబడినవి", - "search.filters.filter.entityType.head": "అంశం రకం", - "search.filters.filter.entityType.placeholder": "అంశం రకం", - "search.filters.filter.entityType.label": "అంశం రకాన్ని శోధించండి", - "search.filters.filter.expand": "ఫిల్టర్‌ను విస్తరించండి", - "search.filters.filter.has_content_in_original_bundle.head": "ఫైళ్ళు ఉన్నాయి", - "search.filters.filter.original_bundle_filenames.head": "ఫైల్ పేరు", - "search.filters.filter.has_geospatial_metadata.head": "భౌగోళిక స్థానం ఉంది", - "search.filters.filter.original_bundle_filenames.placeholder": "ఫైల్ పేరు", - "search.filters.filter.original_bundle_filenames.label": "ఫైల్ పేరును శోధించండి", - "search.filters.filter.original_bundle_descriptions.head": "ఫైల్ వివరణ", - "search.filters.filter.original_bundle_descriptions.placeholder": "ఫైల్ వివరణ", - "search.filters.filter.original_bundle_descriptions.label": "ఫైల్ వివరణను శోధించండి", - "search.filters.filter.itemtype.head": "రకం", - "search.filters.filter.itemtype.placeholder": "రకం", - "search.filters.filter.itemtype.label": "రకాన్ని శోధించండి", - "search.filters.filter.jobTitle.head": "ఉద్యోగ శీర్షిక", - "search.filters.filter.jobTitle.placeholder": "ఉద్యోగ శీర్షిక", - "search.filters.filter.jobTitle.label": "ఉద్యోగ శీర్షికను శోధించండి", - "search.filters.filter.knowsLanguage.head": "తెలిసిన భాష", - "search.filters.filter.knowsLanguage.placeholder": "తెలిసిన భాష", - "search.filters.filter.knowsLanguage.label": "తెలిసిన భాషను శోధించండి", - "search.filters.filter.namedresourcetype.head": "స్థితి", - "search.filters.filter.namedresourcetype.placeholder": "స్థితి", - "search.filters.filter.namedresourcetype.label": "స్థితిని శోధించండి", - "search.filters.filter.objectpeople.head": "వ్యక్తులు", - "search.filters.filter.objectpeople.placeholder": "వ్యక్తులు", - "search.filters.filter.objectpeople.label": "వ్యక్తులను శోధించండి", - "search.filters.filter.organizationAddressCountry.head": "దేశం", - "search.filters.filter.organizationAddressCountry.placeholder": "దేశం", - "search.filters.filter.organizationAddressCountry.label": "దేశాన్ని శోధించండి", - "search.filters.filter.organizationAddressLocality.head": "నగరం", - "search.filters.filter.organizationAddressLocality.placeholder": "నగరం", - "search.filters.filter.organizationAddressLocality.label": "నగరాన్ని శోధించండి", - "search.filters.filter.organizationFoundingDate.head": "స్థాపన తేదీ", - "search.filters.filter.organizationFoundingDate.placeholder": "స్థాపన తేదీ", - "search.filters.filter.organizationFoundingDate.label": "స్థాపన తేదీని శోధించండి", - "search.filters.filter.organizationFoundingDate.min.label": "ప్రారంభం", - "search.filters.filter.organizationFoundingDate.max.label": "ముగింపు", - "search.filters.filter.scope.head": "పరిధి", - "search.filters.filter.scope.placeholder": "పరిధి ఫిల్టర్", - "search.filters.filter.scope.label": "పరిధి ఫిల్టర్‌ను శోధించండి", - "search.filters.filter.show-less": "మూసివేయి", - "search.filters.filter.show-more": "ఇంకా చూపించు", - "search.filters.filter.subject.head": "విషయం", - "search.filters.filter.subject.placeholder": "విషయం", - "search.filters.filter.subject.label": "విషయాన్ని శోధించండి", - "search.filters.filter.submitter.head": "సమర్పించినవారు", - "search.filters.filter.submitter.placeholder": "సమర్పించినవారు", - "search.filters.filter.submitter.label": "సమర్పించినవారిని శోధించండి", - "search.filters.filter.show-tree": "{{ name }} ట్రీని బ్రౌజ్ చేయండి", - "search.filters.filter.funding.head": "ఫండింగ్", - "search.filters.filter.funding.placeholder": "ఫండింగ్", - "search.filters.filter.supervisedBy.head": "సూపర్వైజ్ చేసినవారు", - "search.filters.filter.supervisedBy.placeholder": "సూపర్వైజ్ చేసినవారు", - "search.filters.filter.supervisedBy.label": "సూపర్వైజ్ చేసినవారిని శోధించండి", - "search.filters.filter.access_status.head": "యాక్సెస్ రకం", - "search.filters.filter.access_status.placeholder": "యాక్సెస్ రకం", - "search.filters.filter.access_status.label": "యాక్సెస్ రకం ద్వారా శోధించండి", - "search.filters.entityType.JournalIssue": "జర్నల్ ఇష్యూ", - "search.filters.entityType.JournalVolume": "జర్నల్ వాల్యూమ్", - "search.filters.entityType.OrgUnit": "సంస్థాగత యూనిట్", - "search.filters.entityType.Person": "వ్యక్తి", - "search.filters.entityType.Project": "ప్రాజెక్ట్", - "search.filters.entityType.Publication": "ప్రచురణ", - "search.filters.has_content_in_original_bundle.true": "అవును", - "search.filters.has_content_in_original_bundle.false": "కాదు", - "search.filters.has_geospatial_metadata.true": "అవును", - "search.filters.has_geospatial_metadata.false": "కాదు", - "search.filters.discoverable.true": "కాదు", - "search.filters.discoverable.false": "అవును", - "search.filters.namedresourcetype.Archived": "ఆర్కైవ్ చేయబడింది", - "search.filters.namedresourcetype.Validation": "వాలిడేషన్", - "search.filters.namedresourcetype.Waiting for Controller": "రివ్యూయర్ కోసం వేచి ఉంది", - "search.filters.namedresourcetype.Workflow": "వర్క్‌ఫ్లో", - "search.filters.namedresourcetype.Workspace": "వర్క్‌స్పేస్", - "search.filters.withdrawn.true": "అవును", - "search.filters.withdrawn.false": "కాదు", - "search.filters.head": "ఫిల్టర్లు", - "search.filters.reset": "ఫిల్టర్లను రీసెట్ చేయండి", - "search.filters.search.submit": "సమర్పించండి", - "search.filters.operator.equals.text": "సమానం", - "search.filters.operator.notequals.text": "సమానం కాదు", - "search.filters.operator.authority.text": "అథారిటీ", - "search.filters.operator.notauthority.text": "అథారిటీ కాదు", - "search.filters.operator.contains.text": "కలిగి ఉంది", - "search.filters.operator.notcontains.text": "కలిగి లేదు", - "search.filters.operator.query.text": "క్వెరీ", - "search.form.search": "శోధించండి", - "search.form.search_dspace": "మొత్తం రిపోజిటరీ", - "search.form.scope.all": "DSpace యొక్క అన్ని", - "search.results.head": "శోధన ఫలితాలు", - "search.results.no-results": "మీ శోధనకు ఫలితాలు లేవు. మీరు వెతుకుతున్నది కనుగొనడంలో సమస్య ఉందా? దాని చుట్టూ", - "search.results.no-results-link": "కోట్లు ఉంచడానికి ప్రయత్నించండి", - "search.results.empty": "మీ శోధనకు ఫలితాలు లేవు.", - "search.results.geospatial-map.empty": "ఈ పేజీలో భౌగోళిక స్థానాలు ఉన్న ఫలితాలు లేవు", - "search.results.view-result": "వీక్షించండి", - "search.results.response.500": "క్వెరీ అమలు సమయంలో లోపం సంభవించింది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి", - "default.search.results.head": "శోధన ఫలితాలు", - "default-relationships.search.results.head": "శోధన ఫలితాలు", - "search.sidebar.close": "ఫలితాలకు తిరిగి వెళ్లండి", - "search.sidebar.filters.title": "ఫిల్టర్లు", - "search.sidebar.open": "శోధన సాధనాలు", - "search.sidebar.results": "ఫలితాలు", - "search.sidebar.settings.rpp": "పేజీకి ఫలితాలు", - "search.sidebar.settings.sort-by": "ద్వారా క్రమబద్ధీకరించండి", - "search.sidebar.advanced-search.title": "అధునాతన శోధన", - "search.sidebar.advanced-search.filter-by": "ద్వారా ఫిల్టర్ చేయండి", - "search.sidebar.advanced-search.filters": "ఫిల్టర్లు", - "search.sidebar.advanced-search.operators": "ఆపరేటర్లు", - "search.sidebar.advanced-search.add": "జోడించండి", - "search.sidebar.settings.title": "సెట్టింగ్‌లు", - "search.view-switch.show-detail": "వివరాలను చూపించు", - "search.view-switch.show-grid": "గ్రిడ్‌గా చూపించు", - "search.view-switch.show-list": "లిస్ట్‌గా చూపించు", - "search.view-switch.show-geospatialMap": "మ్యాప్‌గా చూపించు", - "selectable-list-item-control.deselect": "అంశాన్ని ఎంపిక చేయకండి", - "selectable-list-item-control.select": "అంశాన్ని ఎంపిక చేయండి", - "sorting.ASC": "ఆరోహణ", - "sorting.DESC": "అవరోహణ", - "sorting.dc.title.ASC": "శీర్షిక ఆరోహణ", - "sorting.dc.title.DESC": "శీర్షిక అవరోహణ", - "sorting.score.ASC": "కనిష్ట సంబంధితం", - "sorting.score.DESC": "ఎక్కువ సంబంధితం", - "sorting.dc.date.issued.ASC": "ఇష్యూ తేదీ ఆరోహణ", - "sorting.dc.date.issued.DESC": "ఇష్యూ తేదీ అవరోహణ", - "sorting.dc.date.accessioned.ASC": "యాక్సెస్ తేదీ ఆరోహణ", - "sorting.dc.date.accessioned.DESC": "యాక్సెస్ తేదీ అవరోహణ", - "sorting.lastModified.ASC": "చివరిగా మార్పు చేయబడినది ఆరోహణ", - "sorting.lastModified.DESC": "చివరిగా మార్పు చేయబడినది అవరోహణ", - "sorting.person.familyName.ASC": "ఇంటిపేరు ఆరోహణ", - "sorting.person.familyName.DESC": "ఇంటిపేరు అవరోహణ", - "sorting.person.givenName.ASC": "పేరు ఆరోహణ", - "sorting.person.givenName.DESC": "పేరు అవరోహణ", - "sorting.person.birthDate.ASC": "పుట్టిన తేదీ ఆరోహణ", - "sorting.person.birthDate.DESC": "పుట్టిన తేదీ అవరోహణ", - "statistics.title": "గణాంకాలు", - "statistics.header": "{{ scope }} కోసం గణాంకాలు", - "statistics.breadcrumbs": "గణాంకాలు", - "statistics.page.no-data": "డేటా అందుబాటులో లేదు", - "statistics.table.no-data": "డేటా అందుబాటులో లేదు", - "statistics.table.title.TotalVisits": "మొత్తం సందర్శనలు", - "statistics.table.title.TotalVisitsPerMonth": "నెలకు మొత్తం సందర్శనలు", - "statistics.table.title.TotalDownloads": "ఫైల్ సందర్శనలు", - "statistics.table.title.TopCountries": "అత్యధిక దేశ వీక్షణలు", - "statistics.table.title.TopCities": "అత్యధిక నగర వీక్షణలు", - "statistics.table.header.views": "వీక్షణలు", - "statistics.table.no-name": "(ఆబ్జెక్ట్ పేరు లోడ్ చేయబడలేదు)", - "submission.edit.breadcrumbs": "సమర్పణను సవరించండి", - "submission.edit.title": "సమర్పణను సవరించండి", - "submission.general.cancel": "రద్దు చేయండి", - "submission.general.cannot_submit": "మీకు కొత్త సమర్పణ చేయడానికి అనుమతి లేదు.", - "submission.general.deposit": "డిపాజిట్ చేయండి", - "submission.general.discard.confirm.cancel": "రద్దు చేయండి", - "submission.general.discard.confirm.info": "ఈ ఆపరేషన్‌ను రద్దు చేయలేము. మీరు ఖచ్చితంగా ఉన్నారా?", - "submission.general.discard.confirm.submit": "అవును, నేను ఖచ్చితంగా ఉన్నాను", - "submission.general.discard.confirm.title": "సమర్పణను విస్మరించండి", - "submission.general.discard.submit": "విస్మరించండి", - "submission.general.back.submit": "తిరిగి వెళ్లండి", - "submission.general.info.saved": "సేవ్ చేయబడింది", - "submission.general.info.pending-changes": "సేవ్ చేయని మార్పులు", - "submission.general.save": "సేవ్ చేయండి", - "submission.general.save-later": "తర్వాత కోసం సేవ్ చేయండి", - "submission.import-external.page.title": "బాహ్య మూలం నుండి మెటాడేటాను దిగుమతి చేయండి", - "submission.import-external.title": "బాహ్య మూలం నుండి మెటాడేటాను దిగుమతి చేయండి", - "submission.import-external.title.Journal": "బాహ్య మూలం నుండి జర్నల్‌ను దిగుమతి చేయండి", - "submission.import-external.title.JournalIssue": "బాహ్య మూలం నుండి జర్నల్ ఇష్యూను దిగుమతి చేయండి", - "submission.import-external.title.JournalVolume": "బాహ్య మూలం నుండి జర్నల్ వాల్యూమ్‌ను దిగుమతి చేయండి", - "submission.import-external.title.OrgUnit": "బాహ్య మూలం నుండి ప్రచురణకర్తను దిగుమతి చేయండి", - "submission.import-external.title.Person": "బాహ్య మూలం నుండి వ్యక్తిని దిగుమతి చేయండి", - "submission.import-external.title.Project": "బాహ్య మూలం నుండి ప్రాజెక్ట్‌ను దిగుమతి చేయండి", - "submission.import-external.title.Publication": "బాహ్య మూలం నుండి ప్రచురణను దిగుమతి చేయండి", - "submission.import-external.title.none": "బాహ్య మూలం నుండి మెటాడేటాను దిగుమతి చేయండి", - "submission.import-external.page.hint": "DSpaceలో దిగుమతి చేయడానికి వెబ్‌లోని అంశాలను కనుగొనడానికి పైన ఒక క్వెరీని నమోదు చేయండి.", - "submission.import-external.back-to-my-dspace": "నా DSpaceకి తిరిగి వెళ్లండి", - "submission.import-external.search.placeholder": "బాహ్య మూలాన్ని శోధించండి", - "submission.import-external.search.button": "శోధించండి", - "submission.import-external.search.button.hint": "శోధించడానికి కొన్ని పదాలను వ్రాయండి", - "submission.import-external.search.source.hint": "ఒక బాహ్య మూలాన్ని ఎంచుకోండి", - "submission.import-external.source.arxiv": "arXiv", - "submission.import-external.source.ads": "NASA/ADS", - "submission.import-external.source.cinii": "CiNii", - "submission.import-external.source.crossref": "Crossref", - "submission.import-external.source.datacite": "DataCite", - "submission.import-external.source.dataciteProject": "DataCite", - "submission.import-external.source.doi": "DOI", - "submission.import-external.source.scielo": "SciELO", - "submission.import-external.source.scopus": "Scopus", - "submission.import-external.source.vufind": "VuFind", - "submission.import-external.source.wos": "Web Of Science", - "submission.import-external.source.orcidWorks": "ORCID", - "submission.import-external.source.epo": "యూరోపియన్ పేటెంట్ ఆఫీస్ (EPO)", - "submission.import-external.source.loading": "లోడ్ అవుతోంది ...", - "submission.import-external.source.sherpaJournal": "SHERPA జర్నల్స్", - "submission.import-external.source.sherpaJournalIssn": "ISSN ద్వారా SHERPA జర్నల్స్", - "submission.import-external.source.sherpaPublisher": "SHERPA ప్రచురణకర్తలు", - "submission.import-external.source.openaire": "రచయితల ద్వారా OpenAIRE శోధన", - "submission.import-external.source.openaireTitle": "శీర్షిక ద్వారా OpenAIRE శోధన", - "submission.import-external.source.openaireFunding": "ఫండర్ ద్వారా OpenAIRE శోధన", - "submission.import-external.source.orcid": "ORCID", - "submission.import-external.source.pubmed": "Pubmed", - "submission.import-external.source.pubmedeu": "Pubmed Europe", - "submission.import-external.source.lcname": "లైబ్రరీ ఆఫ్ కాంగ్రెస్ పేర్లు", - "submission.import-external.source.ror": "రీసెర్చ్ ఆర్గనైజేషన్ రిజిస్ట్రీ (ROR)", - "submission.import-external.source.openalexPublication": "శీర్షిక ద్వారా OpenAlex శోధన", - "submission.import-external.source.openalexPublicationByAuthorId": "రచయిత ID ద్వారా OpenAlex శోధన", - "submission.import-external.source.openalexPublicationByDOI": "DOI ద్వారా OpenAlex శోధన", - "submission.import-external.source.openalexPerson": "పేరు ద్వారా OpenAlex శోధన", - "submission.import-external.source.openalexJournal": "OpenAlex జర్నల్స్", - "submission.import-external.source.openalexInstitution": "OpenAlex సంస్థలు", - "submission.import-external.source.openalexPublisher": "OpenAlex ప్రచురణకర్తలు", - "submission.import-external.source.openalexFunder": "OpenAlex ఫండర్లు", - "submission.import-external.preview.title": "అంశం పూర్వావలోకనం", - "submission.import-external.preview.title.Publication": "ప్రచురణ పూర్వావలోకనం", - "submission.import-external.preview.title.none": "అంశం పూర్వావలోకనం", - "submission.import-external.preview.title.Journal": "జర్నల్ పూర్వావలోకనం", - "submission.import-external.preview.title.OrgUnit": "సంస్థాగత యూనిట్ పూర్వావలోకనం", - "submission.import-external.preview.title.Person": "వ్యక్తి పూర్వావలోకనం", - "submission.import-external.preview.title.Project": "ప్రాజెక్ట్ పూర్వావలోకనం", - "submission.import-external.preview.subtitle": "క్రింద ఉన్న మెటాడేటా బాహ్య మూలం నుండి దిగుమతి చేయబడింది. మీరు సమర్పణను ప్రారంభించినప్పుడు ఇది ముందుగా నింపబడుతుంది.", - "submission.import-external.preview.button.import": "సమర్పణను ప్రారంభించండి", - "submission.import-external.preview.error.import.title": "సమర్పణ లోపం", - "submission.import-external.preview.error.import.body": "బాహ్య మూలం ఎంట్రీ దిగుమతి ప్రక్రియలో లోపం సంభవించింది.", - "submission.sections.describe.relationship-lookup.close": "మూసివేయండి", - "submission.sections.describe.relationship-lookup.external-source.added": "ఎంపికకు స్థానిక ఎంట్రీ విజయవంతంగా జోడించబడింది", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "రిమోట్ రచయితను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "రిమోట్ జర్నల్‌ను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "రిమోట్ జర్నల్ ఇష్యూను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "రిమోట్ జర్నల్ వాల్యూమ్‌ను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "ప్రాజెక్ట్", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "రిమోట్ అంశాన్ని దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "రిమోట్ ఈవెంట్‌ను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "రిమోట్ ఉత్పత్తిని దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "రిమోట్ పరికరాలను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "రిమోట్ సంస్థాగత యూనిట్‌ను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "రిమోట్ ఫండ్‌ను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "రిమోట్ వ్యక్తిని దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "రిమోట్ పేటెంట్‌ను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "రిమోట్ ప్రాజెక్ట్‌ను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "రిమోట్ ప్రచురణను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "కొత్త ఎంటిటీ జోడించబడింది!", - "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "ప్రాజెక్ట్", - "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "రిమోట్ రచయితను దిగుమతి చేయండి", - "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "స్థానిక రచయితను ఎంపికకు విజయవంతంగా జోడించారు", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "బాహ్య రచయితను విజయవంతంగా దిగుమతి చేసి ఎంపికకు జోడించబడింది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "అధికారం", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "కొత్త స్థానిక అధికార ఎంట్రీగా దిగుమతి చేయండి", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "రద్దు చేయి", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "కొత్త ఎంట్రీలను దిగుమతి చేయడానికి ఒక సేకరణను ఎంచుకోండి", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "ఎంటిటీలు", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "కొత్త స్థానిక ఎంటిటీగా దిగుమతి చేయండి", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC నామం నుండి దిగుమతి చేస్తోంది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID నుండి దిగుమతి చేస్తోంది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE నుండి దిగుమతి చేస్తోంది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE నుండి దిగుమతి చేస్తోంది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE నుండి దిగుమతి చేస్తోంది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa జర్నల్ నుండి దిగుమతి చేస్తోంది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa ప్రచురణకర్త నుండి దిగుమతి చేస్తోంది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed నుండి దిగుమతి చేస్తోంది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv నుండి దిగుమతి చేస్తోంది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR నుండి దిగుమతి చేయండి", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "దిగుమతి చేయండి", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "రిమోట్ జర్నల్ను దిగుమతి చేయండి", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "స్థానిక జర్నల్ను ఎంపికకు విజయవంతంగా జోడించబడింది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "బాహ్య జర్నల్ను విజయవంతంగా దిగుమతి చేసి ఎంపికకు జోడించబడింది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "రిమోట్ జర్నల్ ఇష్యూను దిగుమతి చేయండి", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "స్థానిక జర్నల్ ఇష్యూను ఎంపికకు విజయవంతంగా జోడించబడింది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "బాహ్య జర్నల్ ఇష్యూను విజయవంతంగా దిగుమతి చేసి ఎంపికకు జోడించబడింది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "రిమోట్ జర్నల్ వాల్యూమ్ను దిగుమతి చేయండి", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "స్థానిక జర్నల్ వాల్యూమ్ను ఎంపికకు విజయవంతంగా జోడించబడింది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "బాహ్య జర్నల్ వాల్యూమ్ను విజయవంతంగా దిగుమతి చేసి ఎంపికకు జోడించబడింది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "స్థానిక మ్యాచ్ను ఎంచుకోండి:", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "రిమోట్ సంస్థను దిగుమతి చేయండి", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "స్థానిక సంస్థను ఎంపికకు విజయవంతంగా జోడించబడింది", - - "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "బాహ్య సంస్థను విజయవంతంగా దిగుమతి చేసి ఎంపికకు జోడించబడింది", - - "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "అన్నింటిని ఎంపిక రద్దు చేయి", - - "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "పేజీని ఎంపిక రద్దు చేయి", - - "submission.sections.describe.relationship-lookup.search-tab.loading": "లోడ్ అవుతోంది...", - - "submission.sections.describe.relationship-lookup.search-tab.placeholder": "శోధన ప్రశ్న", - - "submission.sections.describe.relationship-lookup.search-tab.search": "వెళ్ళు", - - "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "శోధించండి...", - - "submission.sections.describe.relationship-lookup.search-tab.select-all": "అన్నింటిని ఎంచుకోండి", - - "submission.sections.describe.relationship-lookup.search-tab.select-page": "పేజీని ఎంచుకోండి", - - "submission.sections.describe.relationship-lookup.selected": "{{ size }} అంశాలు ఎంపిక చేయబడ్డాయి", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "స్థానిక రచయితలు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "స్థానిక జర్నల్స్ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "స్థానిక ప్రాజెక్టులు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "స్థానిక ప్రచురణలు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "స్థానిక రచయితలు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "స్థానిక సంస్థాగత యూనిట్లు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "స్థానిక డేటా ప్యాకేజీలు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "స్థానిక డేటా ఫైళ్ళు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "స్థానిక జర్నల్స్ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "స్థానిక జర్నల్ ఇష్యూలు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "స్థానిక జర్నల్ ఇష్యూలు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "స్థానిక జర్నల్ వాల్యూమ్లు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "స్థానిక జర్నల్ వాల్యూమ్లు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "స్థానిక జర్నల్ వాల్యూమ్లు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa జర్నల్స్ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa ప్రచురణకర్తలు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC నామాలు ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE రచయితల ద్వారా శోధించండి ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE శీర్షిక ద్వారా శోధించండి ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE ఫండర్ ద్వారా శోధించండి ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN ద్వారా Sherpa జర్నల్స్ ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "సంస్థ ద్వారా OpenAlex శోధన ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "ప్రచురణకర్త ద్వారా OpenAlex శోధన ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "ఫండర్ ద్వారా OpenAlex శోధన ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "ప్రాజెక్ట్ ద్వారా DataCite శోధన ({{ count }})", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "ఫండింగ్ ఏజెన్సీల కోసం శోధించండి", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "ఫండింగ్ కోసం శోధించండి", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "సంస్థాగత యూనిట్ల కోసం శోధించండి", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "ప్రాజెక్టులు", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "ప్రాజెక్ట్ యొక్క ఫండర్", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "రచయిత యొక్క ప్రచురణ", - - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "ప్రాజెక్ట్ యొక్క OrgUnit", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "ప్రాజెక్ట్", - - "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "ప్రాజెక్టులు", - - "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "ప్రాజెక్ట్ యొక్క ఫండర్", - - "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "ప్రాజెక్ట్ యొక్క వ్యక్తి", - - "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "శోధించండి...", - - "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "ప్రస్తుత ఎంపిక ({{ count }})", - - "submission.sections.describe.relationship-lookup.title.Journal": "జర్నల్", - - "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "జర్నల్ ఇష్యూలు", - - "submission.sections.describe.relationship-lookup.title.JournalIssue": "జర్నల్ ఇష్యూలు", - - "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "జర్నల్ వాల్యూమ్లు", - - "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "జర్నల్ వాల్యూమ్లు", - - "submission.sections.describe.relationship-lookup.title.JournalVolume": "జర్నల్ వాల్యూమ్లు", - - "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "జర్నల్స్", - - "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "రచయితలు", - - "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "ఫండింగ్ ఏజెన్సీ", - - "submission.sections.describe.relationship-lookup.title.Project": "ప్రాజెక్టులు", - - "submission.sections.describe.relationship-lookup.title.Publication": "ప్రచురణలు", - - "submission.sections.describe.relationship-lookup.title.Person": "రచయితలు", - - "submission.sections.describe.relationship-lookup.title.OrgUnit": "సంస్థాగత యూనిట్లు", - - "submission.sections.describe.relationship-lookup.title.DataPackage": "డేటా ప్యాకేజీలు", - - "submission.sections.describe.relationship-lookup.title.DataFile": "డేటా ఫైళ్ళు", - - "submission.sections.describe.relationship-lookup.title.Funding Agency": "ఫండింగ్ ఏజెన్సీ", - - "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "ఫండింగ్", - - "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "పేరెంట్ సంస్థాగత యూనిట్", - - "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "ప్రచురణ", - - "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "OrgUnit", - - "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "డ్రాప్డౌన్ టోగుల్ చేయండి", - - "submission.sections.describe.relationship-lookup.selection-tab.settings": "సెట్టింగ్లు", - - "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "మీ ఎంపిక ప్రస్తుతం ఖాళీగా ఉంది.", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "ఎంపిక చేసిన రచయితలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "ఎంపిక చేసిన జర్నల్స్", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "ఎంపిక చేసిన జర్నల్ వాల్యూమ్", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "ఎంపిక చేసిన జర్నల్ వాల్యూమ్", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "ఎంపిక చేసిన ప్రాజెక్టులు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "ఎంపిక చేసిన ప్రచురణలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "ఎంపిక చేసిన రచయితలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "ఎంపిక చేసిన సంస్థాగత యూనిట్లు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "ఎంపిక చేసిన డేటా ప్యాకేజీలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "ఎంపిక చేసిన డేటా ఫైళ్ళు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "ఎంపిక చేసిన జర్నల్స్", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "ఎంపిక చేసిన ఇష్యూ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "ఎంపిక చేసిన జర్నల్ వాల్యూమ్", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "ఎంపిక చేసిన ఫండింగ్ ఏజెన్సీ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "ఎంపిక చేసిన ఫండింగ్", - - "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "ఎంపిక చేసిన ఇష్యూ", - - "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "ఎంపిక చేసిన సంస్థాగత యూనిట్", - - "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.selection-tab.title": "శోధన ఫలితాలు", - - "submission.sections.describe.relationship-lookup.name-variant.notification.content": "మీరు \"{{ value }}\"ను ఈ వ్యక్తి కోసం ఒక పేరు వేరియంట్గా సేవ్ చేయాలనుకుంటున్నారా, తద్వారా మీరు మరియు ఇతరులు భవిష్యత్ సబ్మిషన్ల కోసం దాన్ని తిరిగి ఉపయోగించవచ్చు? మీరు చేయకపోతే, మీరు ఇప్పటికీ ఈ సబ్మిషన్ కోసం దాన్ని ఉపయోగించవచ్చు.", - - "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "కొత్త పేరు వేరియంట్ను సేవ్ చేయండి", - - "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "ఈ సబ్మిషన్ కోసం మాత్రమే ఉపయోగించండి", - - "submission.sections.ccLicense.type": "లైసెన్స్ రకం", - - "submission.sections.ccLicense.select": "లైసెన్స్ రకాన్ని ఎంచుకోండి…", - - "submission.sections.ccLicense.change": "మీ లైసెన్స్ రకాన్ని మార్చండి…", - - "submission.sections.ccLicense.none": "లైసెన్సులు అందుబాటులో లేవు", - - "submission.sections.ccLicense.option.select": "ఒక ఎంపికను ఎంచుకోండి…", - - "submission.sections.ccLicense.link": "మీరు ఈ క్రింది లైసెన్స్ను ఎంచుకున్నారు:", - - "submission.sections.ccLicense.confirmation": "నేను పై లైసెన్స్ను మంజూరు చేస్తున్నాను", - - "submission.sections.general.add-more": "మరిన్ని జోడించండి", - - "submission.sections.general.cannot_deposit": "ఫారమ్లో లోపాల కారణంగా డిపాజిట్ పూర్తి చేయబడదు.
డిపాజిట్ను పూర్తి చేయడానికి అన్ని అవసరమైన ఫీల్డ్లను పూరించండి.", - - "submission.sections.general.collection": "సేకరణ", - - "submission.sections.general.deposit_error_notice": "అంశాన్ని సమర్పించేటప్పుడు ఒక సమస్య ఉంది, దయచేసి తర్వాత ప్రయత్నించండి.", - - "submission.sections.general.deposit_success_notice": "సమర్పణ విజయవంతంగా డిపాజిట్ చేయబడింది.", - - "submission.sections.general.discard_error_notice": "అంశాన్ని విస్మరించేటప్పుడు ఒక సమస్య ఉంది, దయచేసి తర్వాత ప్రయత్నించండి.", - - "submission.sections.general.discard_success_notice": "సమర్పణ విజయవంతంగా విస్మరించబడింది.", - - "submission.sections.general.metadata-extracted": "కొత్త మెటాడేటా సంగ్రహించబడి {{sectionId}} విభాగానికి జోడించబడింది.", - - "submission.sections.general.metadata-extracted-new-section": "కొత్త {{sectionId}} విభాగం సబ్మిషన్కు జోడించబడింది.", - - "submission.sections.general.no-collection": "సేకరణ కనుగొనబడలేదు", - - "submission.sections.general.no-entity": "ఎంటిటీ రకాలు కనుగొనబడలేదు", - - "submission.sections.general.no-sections": "ఎంపికలు అందుబాటులో లేవు", - - "submission.sections.general.save_error_notice": "అంశాన్ని సేవ్ చేసేటప్పుడు ఒక సమస్య ఉంది, దయచేసి తర్వాత ప్రయత్నించండి.", - - "submission.sections.general.save_success_notice": "సమర్పణ విజయవంతంగా సేవ్ చేయబడింది.", - - "submission.sections.general.search-collection": "సేకరణ కోసం శోధించండి", - - "submission.sections.general.sections_not_valid": "పూర్తి కాని విభాగాలు ఉన్నాయి.", - - "submission.sections.identifiers.info": "మీ అంశం కోసం ఈ క్రింది ఐడెంటిఫైయర్లు సృష్టించబడతాయి:", - - "submission.sections.identifiers.no_handle": "ఈ అంశం కోసం హ్యాండిల్స్ మింట్ చేయబడలేదు.", - - "submission.sections.identifiers.no_doi": "ఈ అంశం కోసం DOIs మింట్ చేయబడలేదు.", - - "submission.sections.identifiers.handle_label": "హ్యాండిల్: ", - - "submission.sections.identifiers.doi_label": "DOI: ", - - "submission.sections.identifiers.otherIdentifiers_label": "ఇతర ఐడెంటిఫైయర్లు: ", - - "submission.sections.submit.progressbar.accessCondition": "అంశం యాక్సెస్ షరతులు", - - "submission.sections.submit.progressbar.CClicense": "క్రియేటివ్ కామన్స్ లైసెన్స్", - - "submission.sections.submit.progressbar.describe.recycle": "రీసైకిల్", - - "submission.sections.submit.progressbar.describe.stepcustom": "వివరించండి", - - "submission.sections.submit.progressbar.describe.stepone": "వివరించండి", - - "submission.sections.submit.progressbar.describe.steptwo": "వివరించండి", - - "submission.sections.submit.progressbar.duplicates": "సంభావ్య నకిలీలు", - - "submission.sections.submit.progressbar.identifiers": "ఐడెంటిఫైయర్లు", - - "submission.sections.submit.progressbar.license": "డిపాజిట్ లైసెన్స్", - - "submission.sections.submit.progressbar.sherpapolicy": "Sherpa విధానాలు", - - "submission.sections.submit.progressbar.upload": "ఫైళ్ళను అప్లోడ్ చేయండి", - - "submission.sections.submit.progressbar.sherpaPolicies": "ప్రచురణకర్త ఓపెన్ యాక్సెస్ విధాన సమాచారం", - - "submission.sections.sherpa-policy.title-empty": "ప్రచురణకర్త విధాన సమాచారం అందుబాటులో లేదు. మీ పనికి సంబంధించిన ISSN ఉంటే, దయచేసి సంబంధిత ప్రచురణకర్త ఓపెన్ యాక్సెస్ విధానాలను చూడటానికి దాన్ని పైన నమోదు చేయండి.", - - "submission.sections.status.errors.title": "లోపాలు", - - "submission.sections.status.valid.title": "విలిడ్", - - "submission.sections.status.warnings.title": "హెచ్చరికలు", - "submission.sections.status.errors.aria": "లోపాలు ఉన్నాయి", - "submission.sections.status.valid.aria": "చెల్లుబాటు అవుతుంది", - "submission.sections.status.warnings.aria": "హెచ్చరికలు ఉన్నాయి", - "submission.sections.status.info.title": "అదనపు సమాచారం", - "submission.sections.status.info.aria": "అదనపు సమాచారం", - "submission.sections.toggle.open": "విభాగాన్ని తెరవండి", - "submission.sections.toggle.close": "విభాగాన్ని మూసివేయండి", - "submission.sections.toggle.aria.open": "{{sectionHeader}} విభాగాన్ని విస్తరించండి", - "submission.sections.toggle.aria.close": "{{sectionHeader}} విభాగాన్ని మూసివేయండి", - "submission.sections.upload.primary.make": "{{fileName}}ని ప్రాధమిక బిట్స్ట్రీమ్‌గా చేయండి", - "submission.sections.upload.primary.remove": "{{fileName}}ని ప్రాధమిక బిట్స్ట్రీమ్‌గా తీసివేయండి", - "submission.sections.upload.delete.confirm.cancel": "రద్దు చేయండి", - "submission.sections.upload.delete.confirm.info": "ఈ పనిని తిరిగి తిప్పలేరు. మీరు ఖచ్చితంగా ఉన్నారా?", - "submission.sections.upload.delete.confirm.submit": "అవును, నేను ఖచ్చితంగా ఉన్నాను", - "submission.sections.upload.delete.confirm.title": "బిట్స్ట్రీమ్‌ని తొలగించండి", - "submission.sections.upload.delete.submit": "తొలగించండి", - "submission.sections.upload.download.title": "బిట్స్ట్రీమ్‌ని డౌన్‌లోడ్ చేయండి", - "submission.sections.upload.drop-message": "ఫైళ్లను డ్రాగ్ చేసి అంశంతో అటాచ్ చేయండి", - "submission.sections.upload.edit.title": "బిట్స్ట్రీమ్‌ని సవరించండి", - "submission.sections.upload.form.access-condition-label": "యాక్సెస్ కండిషన్ రకం", - "submission.sections.upload.form.access-condition-hint": "అంశం డిపాజిట్ అయిన తర్వాత బిట్స్ట్రీమ్‌పై వర్తించే యాక్సెస్ కండిషన్‌ని ఎంచుకోండి", - "submission.sections.upload.form.date-required": "తేదీ అవసరం.", - "submission.sections.upload.form.date-required-from": "యాక్సెస్ ఇవ్వడానికి తేదీ అవసరం.", - "submission.sections.upload.form.date-required-until": "యాక్సెస్ ఇవ్వడానికి తేదీ అవసరం.", - "submission.sections.upload.form.from-label": "యాక్సెస్ ఇవ్వడం ప్రారంభించండి", - "submission.sections.upload.form.from-hint": "సంబంధిత యాక్సెస్ కండిషన్ వర్తించే తేదీని ఎంచుకోండి", - "submission.sections.upload.form.from-placeholder": "నుండి", - "submission.sections.upload.form.group-label": "గ్రూప్", - "submission.sections.upload.form.group-required": "గ్రూప్ అవసరం.", - "submission.sections.upload.form.until-label": "యాక్సెస్ ఇవ్వడం ముగించండి", - "submission.sections.upload.form.until-hint": "సంబంధిత యాక్సెస్ కండిషన్ వర్తించే తేదీ వరకు ఎంచుకోండి", - "submission.sections.upload.form.until-placeholder": "వరకు", - "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} కలెక్షన్‌లో అప్‌లోడ్ చేసిన ఫైళ్లు ఈ క్రింది గ్రూప్(ల) ప్రకారం యాక్సెస్ చేయబడతాయి:", - "submission.sections.upload.header.policy.default.withlist": "{{collectionName}} కలెక్షన్‌లో అప్‌లోడ్ చేసిన ఫైళ్లు, ఒక్క ఫైల్ కోసం స్పష్టంగా నిర్ణయించిన దానికి అదనంగా, ఈ క్రింది గ్రూప్(ల)తో యాక్సెస్ చేయబడతాయని గమనించండి:", - "submission.sections.upload.info": "ఇక్కడ మీరు ప్రస్తుతం అంశంలో ఉన్న అన్ని ఫైళ్లను కనుగొంటారు. మీరు ఫైల్ మెటాడేటా మరియు యాక్సెస్ కండిషన్‌లను నవీకరించవచ్చు లేదా పేజీలో ఎక్కడైనా ఫైళ్లను డ్రాగ్ & డ్రాప్ చేయడం ద్వారా అదనపు ఫైళ్లను అప్‌లోడ్ చేయవచ్చు.", - "submission.sections.upload.no-entry": "లేదు", - "submission.sections.upload.no-file-uploaded": "ఇంకా ఫైల్ అప్‌లోడ్ చేయబడలేదు.", - "submission.sections.upload.save-metadata": "మెటాడేటాను సేవ్ చేయండి", - "submission.sections.upload.undo": "రద్దు చేయండి", - "submission.sections.upload.upload-failed": "అప్‌లోడ్ విఫలమైంది", - "submission.sections.upload.upload-successful": "అప్‌లోడ్ విజయవంతమైంది", - "submission.sections.accesses.form.discoverable-description": "చెక్ చేసినప్పుడు, ఈ అంశం శోధన/బ్రౌజ్‌లో కనిపిస్తుంది. అన్‌చెక్ చేసినప్పుడు, అంశం డైరెక్ట్ లింక్ ద్వారా మాత్రమే అందుబాటులో ఉంటుంది మరియు ఎప్పుడూ శోధన/బ్రౌజ్‌లో కనిపించదు.", - "submission.sections.accesses.form.discoverable-label": "కనుగొనగలిగినది", - "submission.sections.accesses.form.access-condition-label": "యాక్సెస్ కండిషన్ రకం", - "submission.sections.accesses.form.access-condition-hint": "అంశం డిపాజిట్ అయిన తర్వాత వర్తించే యాక్సెస్ కండిషన్‌ని ఎంచుకోండి", - "submission.sections.accesses.form.date-required": "తేదీ అవసరం.", - "submission.sections.accesses.form.date-required-from": "యాక్సెస్ ఇవ్వడానికి తేదీ అవసరం.", - "submission.sections.accesses.form.date-required-until": "యాక్సెస్ ఇవ్వడానికి తేదీ అవసరం.", - "submission.sections.accesses.form.from-label": "యాక్సెస్ ఇవ్వడం ప్రారంభించండి", - "submission.sections.accesses.form.from-hint": "సంబంధిత యాక్సెస్ కండిషన్ వర్తించే తేదీని ఎంచుకోండి", - "submission.sections.accesses.form.from-placeholder": "నుండి", - "submission.sections.accesses.form.group-label": "గ్రూప్", - "submission.sections.accesses.form.group-required": "గ్రూప్ అవసరం.", - "submission.sections.accesses.form.until-label": "యాక్సెస్ ఇవ్వడం ముగించండి", - "submission.sections.accesses.form.until-hint": "సంబంధిత యాక్సెస్ కండిషన్ వర్తించే తేదీ వరకు ఎంచుకోండి", - "submission.sections.accesses.form.until-placeholder": "వరకు", - "submission.sections.duplicates.none": "ఏ నకిలీలు కనుగొనబడలేదు.", - "submission.sections.duplicates.detected": "సంభావ్య నకిలీలు కనుగొనబడ్డాయి. దయచేసి క్రింది జాబితాను సమీక్షించండి.", - "submission.sections.duplicates.in-workspace": "ఈ అంశం వర్క్‌స్పేస్‌లో ఉంది", - "submission.sections.duplicates.in-workflow": "ఈ అంశం వర్క్‌ఫ్లోలో ఉంది", - "submission.sections.license.granted-label": "నేను పై లైసెన్స్‌ని నిర్ధారిస్తున్నాను", - "submission.sections.license.required": "మీరు లైసెన్స్‌ని అంగీకరించాలి", - "submission.sections.license.notgranted": "మీరు లైసెన్స్‌ని అంగీకరించాలి", - "submission.sections.sherpa.publication.information": "ప్రచురణ సమాచారం", - "submission.sections.sherpa.publication.information.title": "శీర్షిక", - "submission.sections.sherpa.publication.information.issns": "ISSNలు", - "submission.sections.sherpa.publication.information.url": "URL", - "submission.sections.sherpa.publication.information.publishers": "ప్రచురణకర్త", - "submission.sections.sherpa.publication.information.romeoPub": "రోమియో పబ్", - "submission.sections.sherpa.publication.information.zetoPub": "జీటో పబ్", - "submission.sections.sherpa.publisher.policy": "ప్రచురణకర్త పాలసీ", - "submission.sections.sherpa.publisher.policy.description": "క్రింది సమాచారం షెర్పా రోమియో ద్వారా కనుగొనబడింది. మీ ప్రచురణకర్త పాలసీల ఆధారంగా, ఇది ఎంబార్గో అవసరం కావచ్చు మరియు/లేదా మీరు అప్‌లోడ్ చేయడానికి అనుమతించబడిన ఫైళ్ల గురించి సలహాలు ఇస్తుంది. మీకు ప్రశ్నలు ఉంటే, దయచేసి ఫుటర్‌లోని ఫీడ్‌బ్యాక్ ఫారమ్ ద్వారా మీ సైట్ నిర్వాహకుడిని సంప్రదించండి.", - "submission.sections.sherpa.publisher.policy.openaccess": "ఈ జర్నల్ పాలసీ ద్వారా అనుమతించబడిన ఓపెన్ యాక్సెస్ మార్గాలు ఆర్టికల్ వెర్షన్ ప్రకారం క్రింద జాబితా చేయబడ్డాయి. మరింత వివరణాత్మక వీక్షణ కోసం ఒక మార్గంపై క్లిక్ చేయండి", - "submission.sections.sherpa.publisher.policy.more.information": "మరింత సమాచారం కోసం, దయచేసి ఈ క్రింది లింక్‌లను చూడండి:", - "submission.sections.sherpa.publisher.policy.version": "వెర్షన్", - "submission.sections.sherpa.publisher.policy.embargo": "ఎంబార్గో", - "submission.sections.sherpa.publisher.policy.noembargo": "ఎంబార్గో లేదు", - "submission.sections.sherpa.publisher.policy.nolocation": "ఏదీ లేదు", - "submission.sections.sherpa.publisher.policy.license": "లైసెన్స్", - "submission.sections.sherpa.publisher.policy.prerequisites": "అవసరమైనవి", - "submission.sections.sherpa.publisher.policy.location": "స్థానం", - "submission.sections.sherpa.publisher.policy.conditions": "షరతులు", - "submission.sections.sherpa.publisher.policy.refresh": "రిఫ్రెష్ చేయండి", - "submission.sections.sherpa.record.information": "రికార్డ్ సమాచారం", - "submission.sections.sherpa.record.information.id": "ID", - "submission.sections.sherpa.record.information.date.created": "తేదీ సృష్టించబడింది", - "submission.sections.sherpa.record.information.date.modified": "చివరిగా మార్చబడింది", - "submission.sections.sherpa.record.information.uri": "URI", - "submission.sections.sherpa.error.message": "షెర్పా సమాచారాన్ని పొందడంలో లోపం ఉంది", - "submission.submit.breadcrumbs": "కొత్త సమర్పణ", - "submission.submit.title": "కొత్త సమర్పణ", - "submission.workflow.generic.delete": "తొలగించండి", - "submission.workflow.generic.delete-help": "ఈ అంశాన్ని విస్మరించడానికి ఈ ఎంపికను ఎంచుకోండి. అప్పుడు మీరు దానిని నిర్ధారించమని అడుగుతారు.", - "submission.workflow.generic.edit": "సవరించండి", - "submission.workflow.generic.edit-help": "అంశం యొక్క మెటాడేటాను మార్చడానికి ఈ ఎంపికను ఎంచుకోండి.", - "submission.workflow.generic.view": "చూడండి", - "submission.workflow.generic.view-help": "అంశం యొక్క మెటాడేటాను వీక్షించడానికి ఈ ఎంపికను ఎంచుకోండి.", - "submission.workflow.generic.submit_select_reviewer": "రివ్యూయర్‌ని ఎంచుకోండి", - "submission.workflow.generic.submit_select_reviewer-help": "", - "submission.workflow.generic.submit_score": "రేట్ చేయండి", - "submission.workflow.generic.submit_score-help": "", - "submission.workflow.tasks.claimed.approve": "ఆమోదించండి", - "submission.workflow.tasks.claimed.approve_help": "మీరు అంశాన్ని సమీక్షించి, అది కలెక్షన్‌లో చేరడానికి సరిపోతే, \"ఆమోదించండి\"ని ఎంచుకోండి.", - "submission.workflow.tasks.claimed.edit": "సవరించండి", - "submission.workflow.tasks.claimed.edit_help": "అంశం యొక్క మెటాడేటాను మార్చడానికి ఈ ఎంపికను ఎంచుకోండి.", - "submission.workflow.tasks.claimed.decline": "తిరస్కరించండి", - "submission.workflow.tasks.claimed.decline_help": "", - "submission.workflow.tasks.claimed.reject.reason.info": "దయచేసి సమర్పణను తిరస్కరించడానికి మీ కారణాన్ని క్రింది బాక్స్‌లో నమోదు చేయండి, సబ్మిటర్ ఒక సమస్యను పరిష్కరించి తిరిగి సమర్పించగలడో లేదో సూచించండి.", - "submission.workflow.tasks.claimed.reject.reason.placeholder": "తిరస్కరణ కారణాన్ని వివరించండి", - "submission.workflow.tasks.claimed.reject.reason.submit": "అంశాన్ని తిరస్కరించండి", - "submission.workflow.tasks.claimed.reject.reason.title": "కారణం", - "submission.workflow.tasks.claimed.reject.submit": "తిరస్కరించండి", - "submission.workflow.tasks.claimed.reject_help": "మీరు అంశాన్ని సమీక్షించి, అది కలెక్షన్‌లో చేరడానికి సరిపోకపోతే, \"తిరస్కరించండి\"ని ఎంచుకోండి. అప్పుడు మీరు అంశం ఎందుకు సరిపోదో సూచించే సందేశాన్ని నమోదు చేయమని అడుగుతారు, మరియు సబ్మిటర్ ఏదైనా మార్చి తిరిగి సమర్పించాల్సిన అవసరం ఉందో లేదో.", - "submission.workflow.tasks.claimed.return": "పూల్‌కు తిరిగి ఇవ్వండి", - "submission.workflow.tasks.claimed.return_help": "టాస్‌ని పూల్‌కు తిరిగి ఇవ్వండి, తద్వారా మరొక వినియోగదారు టాస్‌ని నిర్వహించగలడు.", - "submission.workflow.tasks.generic.error": "ఆపరేషన్ సమయంలో లోపం సంభవించింది...", - "submission.workflow.tasks.generic.processing": "ప్రాసెస్ చేస్తోంది...", - "submission.workflow.tasks.generic.submitter": "సబ్మిటర్", - "submission.workflow.tasks.generic.success": "ఆపరేషన్ విజయవంతమైంది", - "submission.workflow.tasks.pool.claim": "క్లెయిమ్ చేయండి", - "submission.workflow.tasks.pool.claim_help": "ఈ టాస్‌ని మీకు అసైన్ చేయండి.", - "submission.workflow.tasks.pool.hide-detail": "వివరాలను దాచండి", - "submission.workflow.tasks.pool.show-detail": "వివరాలను చూపించండి", - "submission.workflow.tasks.duplicates": "ఈ అంశం కోసం సంభావ్య నకిలీలు కనుగొనబడ్డాయి. వివరాలను చూడటానికి ఈ అంశాన్ని క్లెయిమ్ చేసి సవరించండి.", - "submission.workspace.generic.view": "చూడండి", - "submission.workspace.generic.view-help": "అంశం యొక్క మెటాడేటాను వీక్షించడానికి ఈ ఎంపికను ఎంచుకోండి.", - "submitter.empty": "N/A", - "subscriptions.title": "సబ్‌స్క్రిప్షన్‌లు", - "subscriptions.item": "అంశాల కోసం సబ్‌స్క్రిప్షన్‌లు", - "subscriptions.collection": "కలెక్షన్‌ల కోసం సబ్‌స్క్రిప్షన్‌లు", - "subscriptions.community": "కమ్యూనిటీల కోసం సబ్‌స్క్రిప్షన్‌లు", - "subscriptions.subscription_type": "సబ్‌స్క్రిప్షన్ రకం", - "subscriptions.frequency": "సబ్‌స్క్రిప్షన్ ఫ్రీక్వెన్సీ", - "subscriptions.frequency.D": "రోజువారీ", - "subscriptions.frequency.M": "నెలవారీ", - "subscriptions.frequency.W": "వారంవారీ", - "subscriptions.tooltip": "సబ్‌స్క్రయిబ్ చేయండి", - "subscriptions.unsubscribe": "అన్‌సబ్‌స్క్రయిబ్ చేయండి", - "subscriptions.modal.title": "సబ్‌స్క్రిప్షన్‌లు", - "subscriptions.modal.type-frequency": "రకం మరియు ఫ్రీక్వెన్సీ", - "subscriptions.modal.close": "మూసివేయండి", - "subscriptions.modal.delete-info": "ఈ సబ్‌స్క్రిప్షన్‌ని తీసివేయడానికి, దయచేసి మీ వినియోగదారు ప్రొఫైల్ క్రింద \"సబ్‌స్క్రిప్షన్‌లు\" పేజీని సందర్శించండి", - "subscriptions.modal.new-subscription-form.type.content": "కంటెంట్", - "subscriptions.modal.new-subscription-form.frequency.D": "రోజువారీ", - "subscriptions.modal.new-subscription-form.frequency.W": "వారంవారీ", - "subscriptions.modal.new-subscription-form.frequency.M": "నెలవారీ", - "subscriptions.modal.new-subscription-form.submit": "సమర్పించండి", - "subscriptions.modal.new-subscription-form.processing": "ప్రాసెస్ చేస్తోంది...", - "subscriptions.modal.create.success": "{{ type }}కు విజయవంతంగా సబ్‌స్క్రయిబ్ చేయబడింది.", - "subscriptions.modal.delete.success": "సబ్‌స్క్రిప్షన్ విజయవంతంగా తొలగించబడింది", - "subscriptions.modal.update.success": "{{ type }}కు సబ్‌స్క్రిప్షన్ విజయవంతంగా నవీకరించబడింది", - "subscriptions.modal.create.error": "సబ్‌స్క్రిప్షన్ సృష్టించడంలో లోపం సంభవించింది", - "subscriptions.modal.delete.error": "సబ్‌స్క్రిప్షన్ తొలగించడంలో లోపం సంభవించింది", - "subscriptions.modal.update.error": "సబ్‌స్క్రిప్షన్ నవీకరించడంలో లోపం సంభవించింది", - "subscriptions.table.dso": "విషయం", - "subscriptions.table.subscription_type": "సబ్‌స్క్రిప్షన్ రకం", - "subscriptions.table.subscription_frequency": "సబ్‌స్క్రిప్షన్ ఫ్రీక్వెన్సీ", - "subscriptions.table.action": "చర్య", - "subscriptions.table.edit": "సవరించండి", - "subscriptions.table.delete": "తొలగించండి", - "subscriptions.table.not-available": "అందుబాటులో లేదు", - "subscriptions.table.not-available-message": "సబ్‌స్క్రయిబ్ చేయబడిన అంశం తొలగించబడింది, లేదా మీకు ప్రస్తుతం దాన్ని వీక్షించడానికి అనుమతి లేదు", - "subscriptions.table.empty.message": "మీకు ప్రస్తుతం ఏ సబ్‌స్క్రిప్షన్‌లు లేవు. ఒక కమ్యూనిటీ లేదా కలెక్షన్ కోసం ఇమెయిల్ నవీకరణలకు సబ్‌స్క్రయిబ్ చేయడానికి, ఆబ్జెక్ట్ పేజీలోని సబ్‌స్క్రిప్షన్ బటన్‌ని ఉపయోగించండి.", - "thumbnail.default.alt": "థంబ్‌నెయిల్ ఇమేజ్", - "thumbnail.default.placeholder": "థంబ్‌నెయిల్ అందుబాటులో లేదు", - "thumbnail.project.alt": "ప్రాజెక్ట్ లోగో", - "thumbnail.project.placeholder": "ప్రాజెక్ట్ ప్లేస్‌హోల్డర్ ఇమేజ్", - "thumbnail.orgunit.alt": "ఆర్గ్‌యూనిట్ లోగో", - "thumbnail.orgunit.placeholder": "ఆర్గ్‌యూనిట్ ప్లేస్‌హోల్డర్ ఇమేజ్", - "thumbnail.person.alt": "ప్రొఫైల్ పిక్చర్", - "thumbnail.person.placeholder": "ప్రొఫైల్ పిక్చర్ అందుబాటులో లేదు", - "title": "DSpace", - "vocabulary-treeview.header": "హైరార్కికల్ ట్రీ వ్యూ", - "vocabulary-treeview.load-more": "మరిన్ని లోడ్ చేయండి", - "vocabulary-treeview.search.form.reset": "రీసెట్ చేయండి", - "vocabulary-treeview.search.form.search": "శోధించండి", - "vocabulary-treeview.search.form.search-placeholder": "మొదటి కొన్ని అక్షరాలను టైప్ చేయడం ద్వారా ఫలితాలను ఫిల్టర్ చేయండి", - "vocabulary-treeview.search.no-result": "చూపించడానికి ఏ అంశాలు లేవు", - "vocabulary-treeview.tree.description.nsi": "నార్వేజియన్ సైన్స్ ఇండెక్స్", - "vocabulary-treeview.tree.description.srsc": "రీసెర్చ్ సబ్జెక్ట్ కేటగిరీలు", - "vocabulary-treeview.info": "శోధన ఫిల్టర్‌గా జోడించడానికి ఒక సబ్జెక్ట్‌ని ఎంచుకోండి", - "uploader.browse": "బ్రౌజ్ చేయండి", - "uploader.drag-message": "మీ ఫైళ్లను ఇక్కడ డ్రాగ్ & డ్రాప్ చేయండి", - "uploader.delete.btn-title": "తొలగించండి", - "uploader.or": ", లేదా ", - "uploader.processing": "అప్‌లోడ్ చేసిన ఫైల్(ల)ను ప్రాసెస్ చేస్తోంది... (ఈ పేజీని మూసివేయడం ఇప్పుడు సురక్షితం)", - "uploader.queue-length": "క్యూ పొడవు", - "virtual-metadata.delete-item.info": "వాస్తవ మెటాడేటాగా సేవ్ చేయాలనుకున్న వర్చువల్ మెటాడేటా రకాలను ఎంచుకోండి", - "virtual-metadata.delete-item.modal-head": "ఈ సంబంధం యొక్క వర్చువల్ మెటాడేటా", - "virtual-metadata.delete-relationship.modal-head": "వాస్తవ మెటాడేటాగా సేవ్ చేయాలనుకున్న వర్చువల్ మెటాడేటా ఉన్న అంశాలను ఎంచుకోండి", - "supervisedWorkspace.search.results.head": "సూపర్వైజ్ చేయబడిన అంశాలు", - "workspace.search.results.head": "మీ సమర్పణలు", - "workflowAdmin.search.results.head": "వర్క్‌ఫ్లోని నిర్వహించండి", - "workflow.search.results.head": "వర్క్‌ఫ్లో టాస్క్‌లు", - "supervision.search.results.head": "వర్క్‌ఫ్లో మరియు వర్క్‌స్పేస్ టాస్క్‌లు", - "workflow-item.edit.breadcrumbs": "వర్క్‌ఫ్లోఅంశాన్ని సవరించండి", - "workflow-item.edit.title": "వర్క్‌ఫ్లోఅంశాన్ని సవరించండి", - "workflow-item.delete.notification.success.title": "తొలగించబడింది", - "workflow-item.delete.notification.success.content": "ఈ వర్క్‌ఫ్లో అంశం విజయవంతంగా తొలగించబడింది", - "workflow-item.delete.notification.error.title": "ఏదో తప్పు జరిగింది", - "workflow-item.delete.notification.error.content": "వర్క్‌ఫ్లో అంశాన్ని తొలగించలేకపోయాం", - "workflow-item.delete.title": "వర్క్ఫ్లో అంశాన్ని తొలగించు", - "workflow-item.delete.header": "వర్క్ఫ్లో అంశాన్ని తొలగించు", - "workflow-item.delete.button.cancel": "రద్దు చేయి", - "workflow-item.delete.button.confirm": "తొలగించు", - "workflow-item.send-back.notification.success.title": "సమర్పించినవారికి తిరిగి పంపబడింది", - "workflow-item.send-back.notification.success.content": "ఈ వర్క్ఫ్లో అంశం విజయవంతంగా సమర్పించినవారికి తిరిగి పంపబడింది", - "workflow-item.send-back.notification.error.title": "ఏదో తప్పు జరిగింది", - "workflow-item.send-back.notification.error.content": "వర్క్ఫ్లో అంశాన్ని సమర్పించినవారికి తిరిగి పంపలేకపోయాము", - "workflow-item.send-back.title": "వర్క్ఫ్లో అంశాన్ని సమర్పించినవారికి తిరిగి పంపండి", - "workflow-item.send-back.header": "వర్క్ఫ్లో అంశాన్ని సమర్పించినవారికి తిరిగి పంపండి", - "workflow-item.send-back.button.cancel": "రద్దు చేయి", - "workflow-item.send-back.button.confirm": "తిరిగి పంపండి", - "workflow-item.view.breadcrumbs": "వర్క్ఫ్లో వీక్షణ", - "workspace-item.view.breadcrumbs": "వర్క్స్పేస్ వీక్షణ", - "workspace-item.view.title": "వర్క్స్పేస్ వీక్షణ", - "workspace-item.delete.breadcrumbs": "వర్క్స్పేస్ తొలగింపు", - "workspace-item.delete.header": "వర్క్స్పేస్ అంశాన్ని తొలగించు", - "workspace-item.delete.button.confirm": "తొలగించు", - "workspace-item.delete.button.cancel": "రద్దు చేయి", - "workspace-item.delete.notification.success.title": "తొలగించబడింది", - "workspace-item.delete.title": "ఈ వర్క్స్పేస్ అంశం విజయవంతంగా తొలగించబడింది", - "workspace-item.delete.notification.error.title": "ఏదో తప్పు జరిగింది", - "workspace-item.delete.notification.error.content": "వర్క్స్పేస్ అంశాన్ని తొలగించలేకపోయాము", - "workflow-item.advanced.title": "అధునాతన వర్క్ఫ్లో", - "workflow-item.selectrevieweraction.notification.success.title": "సమీక్షకుడు ఎంపిక చేయబడ్డారు", - "workflow-item.selectrevieweraction.notification.success.content": "ఈ వర్క్ఫ్లో అంశానికి సమీక్షకుడు విజయవంతంగా ఎంపిక చేయబడ్డారు", - "workflow-item.selectrevieweraction.notification.error.title": "ఏదో తప్పు జరిగింది", - "workflow-item.selectrevieweraction.notification.error.content": "ఈ వర్క్ఫ్లో అంశానికి సమీక్షకుడిని ఎంచుకోలేకపోయాము", - "workflow-item.selectrevieweraction.title": "సమీక్షకుడిని ఎంచుకోండి", - "workflow-item.selectrevieweraction.header": "సమీక్షకుడిని ఎంచుకోండి", - "workflow-item.selectrevieweraction.button.cancel": "రద్దు చేయి", - "workflow-item.selectrevieweraction.button.confirm": "నిర్ధారించండి", - "workflow-item.scorereviewaction.notification.success.title": "రేటింగ్ సమీక్ష", - "workflow-item.scorereviewaction.notification.success.content": "ఈ వర్క్ఫ్లో అంశానికి రేటింగ్ విజయవంతంగా సమర్పించబడింది", - "workflow-item.scorereviewaction.notification.error.title": "ఏదో తప్పు జరిగింది", - "workflow-item.scorereviewaction.notification.error.content": "ఈ అంశాన్ని రేట్ చేయలేకపోయాము", - "workflow-item.scorereviewaction.title": "ఈ అంశాన్ని రేట్ చేయండి", - "workflow-item.scorereviewaction.header": "ఈ అంశాన్ని రేట్ చేయండి", - "workflow-item.scorereviewaction.button.cancel": "రద్దు చేయి", - "workflow-item.scorereviewaction.button.confirm": "నిర్ధారించండి", - "idle-modal.header": "సెషన్ త్వరలో ముగుస్తుంది", - "idle-modal.info": "భద్రతా కారణాల వల్ల, వినియోగదారు సెషన్లు {{ timeToExpire }} నిమిషాల నిష్క్రియాత్వం తర్వాత ముగుస్తాయి. మీ సెషన్ త్వరలో ముగుస్తుంది. మీరు దాన్ని పొడిగించాలనుకుంటున్నారా లేదా లాగ్ అవుట్ అవాలనుకుంటున్నారా?", - "idle-modal.log-out": "లాగ్ అవుట్", - "idle-modal.extend-session": "సెషన్ పొడిగించు", - "researcher.profile.action.processing": "ప్రాసెస్ చేస్తోంది...", - "researcher.profile.associated": "రిసెర్చర్ ప్రొఫైల్ అనుబంధించబడింది", - "researcher.profile.change-visibility.fail": "ప్రొఫైల్ దృశ్యమానతను మార్చడంలో అనుకోని లోపం సంభవించింది", - "researcher.profile.create.new": "క్రొత్తది సృష్టించు", - "researcher.profile.create.success": "రిసెర్చర్ ప్రొఫైల్ విజయవంతంగా సృష్టించబడింది", - "researcher.profile.create.fail": "రిసెర్చర్ ప్రొఫైల్ సృష్టించడంలో లోపం సంభవించింది", - "researcher.profile.delete": "తొలగించు", - "researcher.profile.expose": "బహిర్గతం చేయి", - "researcher.profile.hide": "దాచు", - "researcher.profile.not.associated": "రిసెర్చర్ ప్రొఫైల్ ఇంకా అనుబంధించబడలేదు", - "researcher.profile.view": "చూడండి", - "researcher.profile.private.visibility": "ప్రైవేట్", - "researcher.profile.public.visibility": "పబ్లిక్", - "researcher.profile.status": "స్థితి:", - "researcherprofile.claim.not-authorized": "మీరు ఈ అంశాన్ని క్లెయిమ్ చేయడానికి అధికారం లేదు. మరిన్ని వివరాల కోసం నిర్వాహక(ల)ని సంప్రదించండి.", - "researcherprofile.error.claim.body": "ప్రొఫైల్ క్లెయిమ్ చేస్తున్నప్పుడు లోపం సంభవించింది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి", - "researcherprofile.error.claim.title": "లోపం", - "researcherprofile.success.claim.body": "ప్రొఫైల్ విజయవంతంగా క్లెయిమ్ చేయబడింది", - "researcherprofile.success.claim.title": "విజయం", - "person.page.orcid.create": "ORCID ID సృష్టించు", - "person.page.orcid.granted-authorizations": "మంజూరు చేసిన అధికారాలు", - "person.page.orcid.grant-authorizations": "అధికారాలు మంజూరు చేయి", - "person.page.orcid.link": "ORCID IDకి కనెక్ట్ చేయి", - "person.page.orcid.link.processing": "ORCIDకి ప్రొఫైల్ లింక్ చేస్తోంది...", - "person.page.orcid.link.error.message": "ORCIDతో ప్రొఫైల్ను కనెక్ట్ చేస్తున్నప్పుడు ఏదో తప్పు జరిగింది. సమస్య కొనసాగితే, నిర్వాహకుని సంప్రదించండి.", - "person.page.orcid.orcid-not-linked-message": "ఈ ప్రొఫైల్ యొక్క ORCID iD ({{ orcid }}) ఇంకా ORCID రిజిస్ట్రీతో కనెక్ట్ కాలేదు లేదా కనెక్షన్ కాలంచెల్లింది.", - "person.page.orcid.unlink": "ORCID నుండి డిస్కనెక్ట్ చేయి", - "person.page.orcid.unlink.processing": "ప్రాసెస్ చేస్తోంది...", - "person.page.orcid.missing-authorizations": "తప్పిపోయిన అధికారాలు", - "person.page.orcid.missing-authorizations-message": "ఈ క్రింది అధికారాలు తప్పిపోయాయి:", - "person.page.orcid.no-missing-authorizations-message": "అద్భుతం! ఈ బాక్స్ ఖాళీగా ఉంది, కాబట్టి మీరు మీ సంస్థ అందించే అన్ని ఫంక్షన్లను ఉపయోగించడానికి అన్ని యాక్సెస్ హక్కులను మంజూరు చేసారు.", - "person.page.orcid.no-orcid-message": "ఇంకా ORCID iD అనుబంధించబడలేదు. క్రింది బటన్ పై క్లిక్ చేయడం ద్వారా ఈ ప్రొఫైల్ను ORCID ఖాతాతో లింక్ చేయడం సాధ్యమవుతుంది.", - "person.page.orcid.profile-preferences": "ప్రొఫైల్ ప్రాధాన్యతలు", - "person.page.orcid.funding-preferences": "ఫండింగ్ ప్రాధాన్యతలు", - "person.page.orcid.publications-preferences": "ప్రచురణ ప్రాధాన్యతలు", - "person.page.orcid.remove-orcid-message": "మీరు మీ ORCIDని తీసివేయాలనుకుంటే, దయచేసి రిపోజిటరీ నిర్వాహకుని సంప్రదించండి", - "person.page.orcid.save.preference.changes": "సెట్టింగ్లను అప్డేట్ చేయి", - "person.page.orcid.sync-profile.affiliation": "అఫిలియేషన్", - "person.page.orcid.sync-profile.biographical": "జీవిత చరిత్ర డేటా", - "person.page.orcid.sync-profile.education": "విద్య", - "person.page.orcid.sync-profile.identifiers": "ఐడెంటిఫైయర్లు", - "person.page.orcid.sync-fundings.all": "అన్ని ఫండింగ్లు", - "person.page.orcid.sync-fundings.mine": "నా ఫండింగ్లు", - "person.page.orcid.sync-fundings.my_selected": "ఎంచుకున్న ఫండింగ్లు", - "person.page.orcid.sync-fundings.disabled": "డిసేబుల్ చేయబడింది", - "person.page.orcid.sync-publications.all": "అన్ని ప్రచురణలు", - "person.page.orcid.sync-publications.mine": "నా ప్రచురణలు", - "person.page.orcid.sync-publications.my_selected": "ఎంచుకున్న ప్రచురణలు", - "person.page.orcid.sync-publications.disabled": "డిసేబుల్ చేయబడింది", - "person.page.orcid.sync-queue.discard": "మార్పును విస్మరించండి మరియు ORCID రిజిస్ట్రీతో సింక్రొనైజ్ చేయకండి", - "person.page.orcid.sync-queue.discard.error": "ORCID క్యూ రికార్డ్ విస్మరించడంలో విఫలమైంది", - "person.page.orcid.sync-queue.discard.success": "ORCID క్యూ రికార్డ్ విజయవంతంగా విస్మరించబడింది", - "person.page.orcid.sync-queue.empty-message": "ORCID క్యూ రిజిస్ట్రీ ఖాళీగా ఉంది", - "person.page.orcid.sync-queue.table.header.type": "రకం", - "person.page.orcid.sync-queue.table.header.description": "వివరణ", - "person.page.orcid.sync-queue.table.header.action": "చర్య", - "person.page.orcid.sync-queue.description.affiliation": "అఫిలియేషన్లు", - "person.page.orcid.sync-queue.description.country": "దేశం", - "person.page.orcid.sync-queue.description.education": "విద్య", - "person.page.orcid.sync-queue.description.external_ids": "బాహ్య ఐడిలు", - "person.page.orcid.sync-queue.description.other_names": "ఇతర పేర్లు", - "person.page.orcid.sync-queue.description.qualification": "క్వాలిఫికేషన్లు", - "person.page.orcid.sync-queue.description.researcher_urls": "రిసెర్చర్ URLలు", - "person.page.orcid.sync-queue.description.keywords": "కీలక పదాలు", - "person.page.orcid.sync-queue.tooltip.insert": "ORCID రిజిస్ట్రీలో క్రొత్త ఎంట్రీని జోడించండి", - "person.page.orcid.sync-queue.tooltip.update": "ORCID రిజిస్ట్రీలో ఈ ఎంట్రీని అప్డేట్ చేయండి", - "person.page.orcid.sync-queue.tooltip.delete": "ORCID రిజిస్ట్రీ నుండి ఈ ఎంట్రీని తీసివేయండి", - "person.page.orcid.sync-queue.tooltip.publication": "ప్రచురణ", - "person.page.orcid.sync-queue.tooltip.project": "ప్రాజెక్ట్", - "person.page.orcid.sync-queue.tooltip.affiliation": "అఫిలియేషన్", - "person.page.orcid.sync-queue.tooltip.education": "విద్య", - "person.page.orcid.sync-queue.tooltip.qualification": "క్వాలిఫికేషన్", - "person.page.orcid.sync-queue.tooltip.other_names": "ఇతర పేరు", - "person.page.orcid.sync-queue.tooltip.country": "దేశం", - "person.page.orcid.sync-queue.tooltip.keywords": "కీలక పదం", - "person.page.orcid.sync-queue.tooltip.external_ids": "బాహ్య ఐడెంటిఫైయర్", - "person.page.orcid.sync-queue.tooltip.researcher_urls": "రిసెర్చర్ URL", - "person.page.orcid.sync-queue.send": "ORCID రిజిస్ట్రీతో సింక్రొనైజ్ చేయండి", - "person.page.orcid.sync-queue.send.unauthorized-error.title": "తప్పిపోయిన అధికారాల కారణంగా ORCIDకి సమర్పణ విఫలమైంది.", - "person.page.orcid.sync-queue.send.unauthorized-error.content": "అవసరమైన అనుమతులను మళ్లీ మంజూరు చేయడానికి ఇక్కడ క్లిక్ చేయండి. సమస్య కొనసాగితే, నిర్వాహకుని సంప్రదించండి", - "person.page.orcid.sync-queue.send.bad-request-error": "ORCID రిజిస్ట్రీకి పంపిన రిసోర్స్ చెల్లదు కాబట్టి ORCIDకి సమర్పణ విఫలమైంది", - "person.page.orcid.sync-queue.send.error": "ORCIDకి సమర్పణ విఫలమైంది", - "person.page.orcid.sync-queue.send.conflict-error": "రిసోర్స్ ఇప్పటికే ORCID రిజిస్ట్రీలో ఉన్నందున ORCIDకి సమర్పణ విఫలమైంది", - "person.page.orcid.sync-queue.send.not-found-warning": "రిసోర్స్ ఇకపై ORCID రిజిస్ట్రీలో లేదు.", - "person.page.orcid.sync-queue.send.success": "ORCIDకి సమర్పణ విజయవంతంగా పూర్తయింది", - "person.page.orcid.sync-queue.send.validation-error": "మీరు ORCIDతో సింక్రొనైజ్ చేయాలనుకున్న డేటా చెల్లదు", - "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "మొత్తం కరెన్సీ అవసరం", - "person.page.orcid.sync-queue.send.validation-error.external-id.required": "పంపబడే రిసోర్స్కు కనీసం ఒక ఐడెంటిఫైయర్ అవసరం", - "person.page.orcid.sync-queue.send.validation-error.title.required": "టైటిల్ అవసరం", - "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type అవసరం", - "person.page.orcid.sync-queue.send.validation-error.start-date.required": "ప్రారంభ తేదీ అవసరం", - "person.page.orcid.sync-queue.send.validation-error.funder.required": "ఫండర్ అవసరం", - "person.page.orcid.sync-queue.send.validation-error.country.invalid": "చెల్లని 2 అంకెల ISO 3166 దేశం", - "person.page.orcid.sync-queue.send.validation-error.organization.required": "సంస్థ అవసరం", - "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "సంస్థ పేరు అవసరం", - "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "పంపబడే సంస్థకు చిరునామా అవసరం", - "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "పంపబడే సంస్థ చిరునామాకు నగరం అవసరం", - "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "పంపబడే సంస్థ చిరునామాకు చెల్లుబాటు అయ్యే 2 అంకెల ISO 3166 దేశం అవసరం", - "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "సంస్థలను వివక్షత చేయడానికి ఒక ఐడెంటిఫైయర్ అవసరం. మద్దతు ఇచ్చే ఐడిలు GRID, Ringgold, లీగల్ ఎంటిటీ ఐడెంటిఫైయర్లు (LEIs) మరియు Crossref Funder రిజిస్ట్రీ ఐడెంటిఫైయర్లు", - "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "సంస్థ ఐడెంటిఫైయర్లకు విలువ అవసరం", - "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "సంస్థ ఐడెంటిఫైయర్లకు సోర్స్ అవసరం", - "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "సంస్థ ఐడెంటిఫైయర్లలో ఒకదాని సోర్స్ చెల్లదు. మద్దతు ఇచ్చే సోర్స్లు RINGGOLD, GRID, LEI మరియు FUNDREF", - "person.page.orcid.synchronization-mode": "సింక్రొనైజేషన్ మోడ్", - "person.page.orcid.synchronization-mode.batch": "బ్యాచ్", - "person.page.orcid.synchronization-mode.label": "సింక్రొనైజేషన్ మోడ్", - "person.page.orcid.synchronization-mode-message": "ORCIDతో సింక్రొనైజేషన్ ఎలా జరగాలనుకుంటున్నారో దయచేసి ఎంచుకోండి. ఎంపికలలో \"మాన్యువల్\" (మీరు మీ డేటాను ORCIDకి మాన్యువల్గా పంపాలి), లేదా \"బ్యాచ్\" (సిస్టమ్ షెడ్యూల్డ్ స్క్రిప్ట్ ద్వారా మీ డేటాను ORCIDకి పంపుతుంది).", - "person.page.orcid.synchronization-mode-funding-message": "మీరు లింక్ చేసిన ప్రాజెక్ట్ ఎంటిటీలను మీ ORCID రికార్డ్ యొక్క ఫండింగ్ సమాచార జాబితాకు పంపాలనుకుంటున్నారో లేదో ఎంచుకోండి.", - "person.page.orcid.synchronization-mode-publication-message": "మీరు లింక్ చేసిన పబ్లికేషన్ ఎంటిటీలను మీ ORCID రికార్డ్ యొక్క వర్క్స్ జాబితాకు పంపాలనుకుంటున్నారో లేదో ఎంచుకోండి.", - "person.page.orcid.synchronization-mode-profile-message": "మీ జీవిత చరిత్ర డేటా లేదా వ్యక్తిగత ఐడెంటిఫైయర్లను మీ ORCID రికార్డ్కు పంపాలనుకుంటున్నారో లేదో ఎంచుకోండి.", - "person.page.orcid.synchronization-settings-update.success": "సింక్రొనైజేషన్ సెట్టింగ్లు విజయవంతంగా అప్డేట్ చేయబడ్డాయి", - "person.page.orcid.synchronization-settings-update.error": "సింక్రొనైజేషన్ సెట్టింగ్లను అప్డేట్ చేయడంలో విఫలమైంది", - "person.page.orcid.synchronization-mode.manual": "మాన్యువల్", - "person.page.orcid.scope.authenticate": "మీ ORCID iDని పొందండి", - "person.page.orcid.scope.read-limited": "ట్రస్టెడ్ పార్టీలకు దృశ్యమానంగా ఉండే మీ సమాచారాన్ని చదవండి", - "person.page.orcid.scope.activities-update": "మీ పరిశోధన కార్యకలాపాలను జోడించండి/అప్డేట్ చేయండి", - "person.page.orcid.scope.person-update": "మీ గురించి ఇతర సమాచారాన్ని జోడించండి/అప్డేట్ చేయండి", - "person.page.orcid.unlink.success": "ప్రొఫైల్ మరియు ORCID రిజిస్ట్రీ మధ్య డిస్కనెక్షన్ విజయవంతమైంది", - "person.page.orcid.unlink.error": "ప్రొఫైల్ మరియు ORCID రిజిస్ట్రీ మధ్య డిస్కనెక్ట్ చేస్తున్నప్పుడు లోపం సంభవించింది. మళ్లీ ప్రయత్నించండి", - "person.orcid.sync.setting": "ORCID సింక్రొనైజేషన్ సెట్టింగ్లు", - "person.orcid.registry.queue": "ORCID రిజిస్ట్రీ క్యూ", - "person.orcid.registry.auth": "ORCID అధికారాలు", - "person.orcid-tooltip.authenticated": "{{orcid}}", - "person.orcid-tooltip.not-authenticated": "{{orcid}} (నిర్ధారించబడలేదు)", - "home.recent-submissions.head": "ఇటీవలి సమర్పణలు", - "listable-notification-object.default-message": "ఈ వస్తువును పొందలేకపోయాము", - "system-wide-alert-banner.retrieval.error": "సిస్టమ్-వైడ్ అలర్ట్ బ్యానర్ పొందడంలో ఏదో తప్పు జరిగింది", - "system-wide-alert-banner.countdown.prefix": "లో", - "system-wide-alert-banner.countdown.days": "{{days}} రోజు(లు),", - "system-wide-alert-banner.countdown.hours": "{{hours}} గంట(లు) మరియు", - "system-wide-alert-banner.countdown.minutes": "{{minutes}} నిమిషం(లు):", - "menu.section.system-wide-alert": "సిస్టమ్-వైడ్ అలర్ట్", - "system-wide-alert.form.header": "సిస్టమ్-వైడ్ అలర్ట్", - "system-wide-alert-form.retrieval.error": "సిస్టమ్-వైడ్ అలర్ట్ పొందడంలో ఏదో తప్పు జరిగింది", - "system-wide-alert.form.cancel": "రద్దు చేయి", - "system-wide-alert.form.save": "సేవ్ చేయి", - "system-wide-alert.form.label.active": "యాక్టివ్", - "system-wide-alert.form.label.inactive": "ఇనాక్టివ్", - "system-wide-alert.form.error.message": "సిస్టమ్ వైడ్ అలర్ట్కు ఒక సందేశం ఉండాలి", - "system-wide-alert.form.label.message": "అలర్ట్ సందేశం", - "system-wide-alert.form.label.countdownTo.enable": "కౌంట్డౌన్ టైమర్ను ఎనేబుల్ చేయండి", - "system-wide-alert.form.label.countdownTo.hint": "హింట్: కౌంట్డౌన్ టైమర్ను సెట్ చేయండి. ఎనేబుల్ చేసినప్పుడు, భవిష్యత్తులో ఒక తేదీని సెట్ చేయవచ్చు మరియు సిస్టమ్-వైడ్ అలర్ట్ బ్యానర్ సెట్ చేసిన తేదీకి కౌంట్డౌన్ చేస్తుంది. ఈ టైమర్ ముగిసినప్పుడు, అది అలర్ట్ నుండి అదృశ్యమవుతుంది. సర్వర్ స్వయంచాలకంగా ఆగదు.", - "system-wide-alert-form.select-date-by-calendar": "క్యాలెండర్ ఉపయోగించి తేదీని ఎంచుకోండి", - "system-wide-alert.form.label.preview": "సిస్టమ్-వైడ్ అలర్ట్ ప్రివ్యూ", - "system-wide-alert.form.update.success": "సిస్టమ్-వైడ్ అలర్ట్ విజయవంతంగా అప్డేట్ చేయబడింది", - "system-wide-alert.form.update.error": "సిస్టమ్-వైడ్ అలర్ట్ను అప్డేట్ చేస్తున్నప్పుడు ఏదో తప్పు జరిగింది", - "system-wide-alert.form.create.success": "సిస్టమ్-వైడ్ అలర్ట్ విజయవంతంగా సృష్టించబడింది", - "system-wide-alert.form.create.error": "సిస్టమ్-వైడ్ అలర్ట్ను సృష్టించడంలో ఏదో తప్పు జరిగింది", - "admin.system-wide-alert.breadcrumbs": "సిస్టమ్-వైడ్ అలర్ట్స్", - "admin.system-wide-alert.title": "సిస్టమ్-వైడ్ అలర్ట్స్", - "discover.filters.head": "డిస్కవర్", - "item-access-control-title": "ఈ ఫారమ్ మీరు ఐటెమ్ యొక్క మెటాడేటా లేదా దాని బిట్స్ట్రీమ్ల యాక్సెస్ పరిస్థితులలో మార్పులు చేయడానికి అనుమతిస్తుంది.", - "collection-access-control-title": "ఈ ఫారమ్ మీరు ఈ కలెక్షన్ యాజమాన్యంలో ఉన్న అన్ని ఐటెమ్ల యాక్సెస్ పరిస్థితులలో మార్పులు చేయడానికి అనుమతిస్తుంది. మార్పులు అన్ని ఐటెమ్ మెటాడేటా లేదా అన్ని కంటెంట్ (బిట్స్ట్రీమ్స్)కు చేయవచ్చు.", - - "community-access-control-title": "ఈ ఫారమ్ ద్వారా మీరు ఈ కమ్యూనిటీ క్రింద ఉన్న ఏదైనా సేకరణ యాజమాన్యంలోని అన్ని అంశాల యాక్సెస్ పరిస్థితులను మార్చవచ్చు. మార్పులు అన్ని అంశాల మెటాడేటా లేదా అన్ని కంటెంట్ (బిట్స్ట్రీమ్స్)కు చేయవచ్చు.", - - "access-control-item-header-toggle": "అంశం యొక్క మెటాడేటా", - - "access-control-item-toggle.enable": "అంశం యొక్క మెటాడేటాలో మార్పులు చేయడానికి ఎంపికను ప్రారంభించండి", - - "access-control-item-toggle.disable": "అంశం యొక్క మెటాడేటాలో మార్పులు చేయడానికి ఎంపికను నిలిపివేయండి", - - "access-control-bitstream-header-toggle": "బిట్స్ట్రీమ్స్", - - "access-control-bitstream-toggle.enable": "బిట్స్ట్రీమ్స్లో మార్పులు చేయడానికి ఎంపికను ప్రారంభించండి", - - "access-control-bitstream-toggle.disable": "బిట్స్ట్రీమ్స్లో మార్పులు చేయడానికి ఎంపికను నిలిపివేయండి", - - "access-control-mode": "మోడ్", - - "access-control-access-conditions": "యాక్సెస్ పరిస్థితులు", - - "access-control-no-access-conditions-warning-message": "ప్రస్తుతం, క్రింద ఏ యాక్సెస్ పరిస్థితులు పేర్కొనబడలేదు. ఈ పనిని నిర్వహించినట్లయితే, ప్రస్తుత యాక్సెస్ పరిస్థితులు యాజమాన్య సేకరణ నుండి వారసత్వంగా వచ్చిన డిఫాల్ట్ యాక్సెస్ పరిస్థితులతో భర్తీ చేయబడతాయి.", - - "access-control-replace-all": "యాక్సెస్ పరిస్థితులను భర్తీ చేయండి", - - "access-control-add-to-existing": "ఇప్పటికే ఉన్నవాటికి జోడించండి", - - "access-control-limit-to-specific": "మార్పులను నిర్దిష్ట బిట్స్ట్రీమ్స్ కు పరిమితం చేయండి", - - "access-control-process-all-bitstreams": "అంశంలోని అన్ని బిట్స్ట్రీమ్స్ ను నవీకరించండి", - - "access-control-bitstreams-selected": "బిట్స్ట్రీమ్స్ ఎంపిక చేయబడ్డాయి", - - "access-control-bitstreams-select": "బిట్స్ట్రీమ్స్ ఎంచుకోండి", - - "access-control-cancel": "రద్దు చేయండి", - - "access-control-execute": "నిర్వహించండి", - - "access-control-add-more": "మరిన్ని జోడించండి", - - "access-control-remove": "యాక్సెస్ పరిస్థితిని తీసివేయండి", - - "access-control-select-bitstreams-modal.title": "బిట్స్ట్రీమ్స్ ఎంచుకోండి", - - "access-control-select-bitstreams-modal.no-items": "చూపించడానికి అంశాలు లేవు.", - - "access-control-select-bitstreams-modal.close": "మూసివేయండి", - - "access-control-option-label": "యాక్సెస్ పరిస్థితి రకం", - - "access-control-option-note": "ఎంచుకున్న వస్తువులకు వర్తించే యాక్సెస్ పరిస్థితిని ఎంచుకోండి.", - - "access-control-option-start-date": "యాక్సెస్ ఇవ్వండి", - - "access-control-option-start-date-note": "సంబంధిత యాక్సెస్ పరిస్థితి వర్తించే తేదీని ఎంచుకోండి", - - "access-control-option-end-date": "యాక్సెస్ ఇవ్వండి", - - "access-control-option-end-date-note": "సంబంధిత యాక్సెస్ పరిస్థితి వర్తించే తేదీని ఎంచుకోండి", - - "vocabulary-treeview.search.form.add": "జోడించండి", - - "admin.notifications.publicationclaim.breadcrumbs": "ప్రచురణ క్లెయిమ్", - - "admin.notifications.publicationclaim.page.title": "ప్రచురణ క్లెయిమ్", - - "coar-notify-support.title": "COAR నోటిఫై ప్రోటోకాల్", - - "coar-notify-support-title.content": "ఇక్కడ, మేము COAR నోటిఫై ప్రోటోకాల్‌కు పూర్తిగా మద్దతు ఇస్తున్నాము, ఇది రిపోజిటరీల మధ్య కమ్యూనికేషన్‌ను మెరుగుపరచడానికి రూపొందించబడింది. COAR నోటిఫై ప్రోటోకాల్ గురించి మరింత తెలుసుకోవడానికి, COAR నోటిఫై వెబ్‌సైట్ని సందర్శించండి.", - - "coar-notify-support.ldn-inbox.title": "LDN ఇన్‌బాక్స్", - - "coar-notify-support.ldn-inbox.content": "మీ సౌకర్యం కోసం, మా LDN (లింక్డ్ డేటా నోటిఫికేషన్స్) ఇన్‌బాక్స్ {{ ldnInboxUrl }} వద్ద సులభంగా అందుబాటులో ఉంది. LDN ఇన్‌బాక్స్ సమర్థవంతమైన మరియు ప్రభావవంతమైన సహకారాన్ని నిర్ధారిస్తూ, సుగమమైన కమ్యూనికేషన్ మరియు డేటా వినిమయాన్ని సాధ్యం చేస్తుంది.", - - "coar-notify-support.message-moderation.title": "సందేశ మోడరేషన్", - - "coar-notify-support.message-moderation.content": "సురక్షితమైన మరియు ఉత్పాదక వాతావరణాన్ని నిర్ధారించడానికి, అన్ని ఇన్‌కమింగ్ LDN సందేశాలు మోడరేట్ చేయబడతాయి. మీరు మాతో సమాచారాన్ని మార్పుకోవడానికి ప్రణాళికలు చేస్తుంటే, దయచేసి మా ప్రత్యేకమైన", - - "coar-notify-support.message-moderation.feedback-form": " ఫీడ్‌బ్యాక్ ఫారమ్ ద్వారా సంప్రదించండి.", - - "service.overview.delete.header": "సేవను తొలగించండి", - - "ldn-registered-services.title": "నమోదు చేసిన సేవలు", - "ldn-registered-services.table.name": "పేరు", - "ldn-registered-services.table.description": "వివరణ", - "ldn-registered-services.table.status": "స్థితి", - "ldn-registered-services.table.action": "చర్య", - "ldn-registered-services.new": "కొత్తది", - "ldn-registered-services.new.breadcrumbs": "నమోదు చేసిన సేవలు", - - "ldn-service.overview.table.enabled": "ప్రారంభించబడింది", - "ldn-service.overview.table.disabled": "నిలిపివేయబడింది", - "ldn-service.overview.table.clickToEnable": "ప్రారంభించడానికి క్లిక్ చేయండి", - "ldn-service.overview.table.clickToDisable": "నిలిపివేయడానికి క్లిక్ చేయండి", - - "ldn-edit-registered-service.title": "సేవను సవరించండి", - "ldn-create-service.title": "సేవను సృష్టించండి", - "service.overview.create.modal": "సేవను సృష్టించండి", - "service.overview.create.body": "దయచేసి ఈ సేవ సృష్టిని నిర్ధారించండి.", - "ldn-service-status": "స్థితి", - "service.confirm.create": "సృష్టించండి", - "service.refuse.create": "రద్దు చేయండి", - "ldn-register-new-service.title": "కొత్త సేవను నమోదు చేయండి", - "ldn-new-service.form.label.submit": "సేవ్ చేయండి", - "ldn-new-service.form.label.name": "పేరు", - "ldn-new-service.form.label.description": "వివరణ", - "ldn-new-service.form.label.url": "సేవ URL", - "ldn-new-service.form.label.ip-range": "సేవ IP పరిధి", - "ldn-new-service.form.label.score": "నమ్మకం స్థాయి", - "ldn-new-service.form.label.ldnUrl": "LDN ఇన్‌బాక్స్ URL", - "ldn-new-service.form.placeholder.name": "దయచేసి సేవ పేరును అందించండి", - "ldn-new-service.form.placeholder.description": "దయచేసి మీ సేవ గురించి వివరణ అందించండి", - "ldn-new-service.form.placeholder.url": "సేవ గురించి మరిన్ని సమాచారం తనిఖీ చేయడానికి URLని ఇన్‌పుట్ చేయండి", - "ldn-new-service.form.placeholder.lowerIp": "IPv4 పరిధి దిగువ పరిమితి", - "ldn-new-service.form.placeholder.upperIp": "IPv4 పరిధి ఎగువ పరిమితి", - "ldn-new-service.form.placeholder.ldnUrl": "దయచేసి LDN ఇన్‌బాక్స్ యొక్క URLని పేర్కొనండి", - "ldn-new-service.form.placeholder.score": "దయచేసి 0 మరియు 1 మధ్య విలువను నమోదు చేయండి. దశాంశ విభజనకు “.”ని ఉపయోగించండి", - "ldn-service.form.label.placeholder.default-select": "ఒక నమూనాను ఎంచుకోండి", - - "ldn-service.form.pattern.ack-accept.label": "ఆమోదించండి మరియు అంగీకరించండి", - "ldn-service.form.pattern.ack-accept.description": "ఈ నమూనా ఒక అభ్యర్థనను (ఆఫర్) ఆమోదించడానికి మరియు అంగీకరించడానికి ఉపయోగించబడుతుంది. ఇది అభ్యర్థనపై చర్య తీసుకోవడానికి ఉద్దేశాన్ని సూచిస్తుంది.", - "ldn-service.form.pattern.ack-accept.category": "ఆమోదాలు", - - "ldn-service.form.pattern.ack-reject.label": "ఆమోదించండి మరియు తిరస్కరించండి", - "ldn-service.form.pattern.ack-reject.description": "ఈ నమూనా ఒక అభ్యర్థనను (ఆఫర్) ఆమోదించడానికి మరియు తిరస్కరించడానికి ఉపయోగించబడుతుంది. ఇది అభ్యర్థనకు సంబంధించి మరింత చర్య లేదని సూచిస్తుంది.", - "ldn-service.form.pattern.ack-reject.category": "ఆమోదాలు", - - "ldn-service.form.pattern.ack-tentative-accept.label": "ఆమోదించండి మరియు తాత్కాలికంగా అంగీకరించండి", - "ldn-service.form.pattern.ack-tentative-accept.description": "ఈ నమూనా ఒక అభ్యర్థనను (ఆఫర్) ఆమోదించడానికి మరియు తాత్కాలికంగా అంగీకరించడానికి ఉపయోగించబడుతుంది. ఇది చర్య తీసుకోవడానికి ఉద్దేశాన్ని సూచిస్తుంది, ఇది మారవచ్చు.", - "ldn-service.form.pattern.ack-tentative-accept.category": "ఆమోదాలు", - - "ldn-service.form.pattern.ack-tentative-reject.label": "ఆమోదించండి మరియు తాత్కాలికంగా తిరస్కరించండి", - "ldn-service.form.pattern.ack-tentative-reject.description": "ఈ నమూనా ఒక అభ్యర్థనను (ఆఫర్) ఆమోదించడానికి మరియు తాత్కాలికంగా తిరస్కరించడానికి ఉపయోగించబడుతుంది. ఇది అభ్యర్థనకు సంబంధించి మరింత చర్య లేదని సూచిస్తుంది, ఇది మారవచ్చు.", - "ldn-service.form.pattern.ack-tentative-reject.category": "ఆమోదాలు", - - "ldn-service.form.pattern.announce-endorsement.label": "ఆమోదాన్ని ప్రకటించండి", - "ldn-service.form.pattern.announce-endorsement.description": "ఈ నమూనా ఒక ఆమోదం యొక్క ఉనికిని ప్రకటించడానికి ఉపయోగించబడుతుంది, ఆమోదించబడిన వనరును సూచిస్తుంది.", - "ldn-service.form.pattern.announce-endorsement.category": "ప్రకటనలు", - - "ldn-service.form.pattern.announce-ingest.label": "ఇంజెస్ట్‌ని ప్రకటించండి", - "ldn-service.form.pattern.announce-ingest.description": "ఈ నమూనా ఒక వనరు ఇంజెస్ట్ చేయబడినట్లు ప్రకటించడానికి ఉపయోగించబడుతుంది.", - "ldn-service.form.pattern.announce-ingest.category": "ప్రకటనలు", - - "ldn-service.form.pattern.announce-relationship.label": "సంబంధాన్ని ప్రకటించండి", - "ldn-service.form.pattern.announce-relationship.description": "ఈ నమూనా రెండు వనరుల మధ్య సంబంధాన్ని ప్రకటించడానికి ఉపయోగించబడుతుంది.", - "ldn-service.form.pattern.announce-relationship.category": "ప్రకటనలు", - - "ldn-service.form.pattern.announce-review.label": "సమీక్షను ప్రకటించండి", - "ldn-service.form.pattern.announce-review.description": "ఈ నమూనా ఒక సమీక్ష యొక్క ఉనికిని ప్రకటించడానికి ఉపయోగించబడుతుంది, సమీక్షించబడిన వనరును సూచిస్తుంది.", - "ldn-service.form.pattern.announce-review.category": "ప్రకటనలు", - - "ldn-service.form.pattern.announce-service-result.label": "సేవ ఫలితాన్ని ప్రకటించండి", - "ldn-service.form.pattern.announce-service-result.description": "ఈ నమూనా ఒక 'సేవ ఫలితం' యొక్క ఉనికిని ప్రకటించడానికి ఉపయోగించబడుతుంది, సంబంధిత వనరును సూచిస్తుంది.", - "ldn-service.form.pattern.announce-service-result.category": "ప్రకటనలు", - - "ldn-service.form.pattern.request-endorsement.label": "ఆమోదాన్ని అభ్యర్థించండి", - "ldn-service.form.pattern.request-endorsement.description": "ఈ నమూనా ఒరిజిన్ సిస్టమ్ యాజమాన్యంలోని వనరు యొక్క ఆమోదాన్ని అభ్యర్థించడానికి ఉపయోగించబడుతుంది.", - "ldn-service.form.pattern.request-endorsement.category": "అభ్యర్థనలు", - - "ldn-service.form.pattern.request-ingest.label": "ఇంజెస్ట్‌ను అభ్యర్థించండి", - "ldn-service.form.pattern.request-ingest.description": "ఈ నమూనా టార్గెట్ సిస్టమ్ ఒక వనరును ఇంజెస్ట్ చేయాలని అభ్యర్థించడానికి ఉపయోగించబడుతుంది.", - "ldn-service.form.pattern.request-ingest.category": "అభ్యర్థనలు", - - "ldn-service.form.pattern.request-review.label": "సమీక్షను అభ్యర్థించండి", - "ldn-service.form.pattern.request-review.description": "ఈ నమూనా ఒరిజిన్ సిస్టమ్ యాజమాన్యంలోని వనరు యొక్క సమీక్షను అభ్యర్థించడానికి ఉపయోగించబడుతుంది.", - "ldn-service.form.pattern.request-review.category": "అభ్యర్థనలు", - - "ldn-service.form.pattern.undo-offer.label": "ఆఫర్‌ను రద్దు చేయండి", - "ldn-service.form.pattern.undo-offer.description": "ఈ నమూనా మునుపు చేసిన ఆఫర్‌ను (రిట్రాక్ట్) రద్దు చేయడానికి ఉపయోగించబడుతుంది.", - "ldn-service.form.pattern.undo-offer.category": "రద్దు చేయండి", - - "ldn-new-service.form.label.placeholder.selectedItemFilter": "అంశం ఫిల్టర్ ఎంపిక చేయబడలేదు", - "ldn-new-service.form.label.ItemFilter": "అంశం ఫిల్టర్", - "ldn-new-service.form.label.automatic": "స్వయంచాలక", - "ldn-new-service.form.error.name": "పేరు అవసరం", - "ldn-new-service.form.error.url": "URL అవసరం", - "ldn-new-service.form.error.ipRange": "దయచేసి సరైన IP పరిధిని నమోదు చేయండి", - "ldn-new-service.form.hint.ipRange": "దయచేసి రెండు పరిధి పరిమితులలో సరైన IpV4ని నమోదు చేయండి (గమనిక: ఒకే IP కోసం, దయచేసి రెండు ఫీల్డ్‌లలో ఒకే విలువను నమోదు చేయండి)", - "ldn-new-service.form.error.ldnurl": "LDN URL అవసరం", - "ldn-new-service.form.error.patterns": "కనీసం ఒక నమూనా అవసరం", - "ldn-new-service.form.error.score": "దయచేసి సరైన స్కోర్‌ను నమోదు చేయండి (0 మరియు 1 మధ్య). దశాంశ విభజనకు “.”ని ఉపయోగించండి", - - "ldn-new-service.form.label.inboundPattern": "మద్దతు ఉన్న నమూనా", - "ldn-new-service.form.label.addPattern": "+ మరిన్ని జోడించండి", - "ldn-new-service.form.label.removeItemFilter": "తొలగించండి", - "ldn-register-new-service.breadcrumbs": "కొత్త సేవ", - "service.overview.delete.body": "మీరు ఖచ్చితంగా ఈ సేవను తొలగించాలనుకుంటున్నారా?", - "service.overview.edit.body": "మీరు మార్పులను నిర్ధారిస్తున్నారా?", - "service.overview.edit.modal": "సేవను సవరించండి", - "service.detail.update": "నిర్ధారించండి", - "service.detail.return": "రద్దు చేయండి", - "service.overview.reset-form.body": "మీరు మార్పులను విస్మరించి వెళ్లాలనుకుంటున్నారా?", - "service.overview.reset-form.modal": "మార్పులను విస్మరించండి", - "service.overview.reset-form.reset-confirm": "విస్మరించండి", - "admin.registries.services-formats.modify.success.head": "విజయవంతమైన సవరణ", - "admin.registries.services-formats.modify.success.content": "సేవ సవరించబడింది", - "admin.registries.services-formats.modify.failure.head": "సవరణ విఫలమైంది", - "admin.registries.services-formats.modify.failure.content": "సేవ సవరించబడలేదు", - "ldn-service-notification.created.success.title": "విజయవంతమైన సృష్టి", - "ldn-service-notification.created.success.body": "సేవ సృష్టించబడింది", - "ldn-service-notification.created.failure.title": "సృష్టి విఫలమైంది", - "ldn-service-notification.created.failure.body": "సేవ సృష్టించబడలేదు", - "ldn-service-notification.created.warning.title": "దయచేసి కనీసం ఒక ఇన్‌బౌండ్ నమూనాను ఎంచుకోండి", - "ldn-enable-service.notification.success.title": "విజయవంతమైన స్థితి నవీకరణ", - "ldn-enable-service.notification.success.content": "సేవ స్థితి నవీకరించబడింది", - "ldn-service-delete.notification.success.title": "విజయవంతమైన తొలగింపు", - "ldn-service-delete.notification.success.content": "సేవ తొలగించబడింది", - "ldn-service-delete.notification.error.title": "తొలగింపు విఫలమైంది", - "ldn-service-delete.notification.error.content": "సేవ తొలగించబడలేదు", - "service.overview.reset-form.reset-return": "రద్దు చేయండి", - "service.overview.delete": "సేవను తొలగించండి", - "ldn-edit-service.title": "సేవను సవరించండి", - "ldn-edit-service.form.label.name": "పేరు", - "ldn-edit-service.form.label.description": "వివరణ", - "ldn-edit-service.form.label.url": "సేవ URL", - "ldn-edit-service.form.label.ldnUrl": "LDN ఇన్‌బాక్స్ URL", - "ldn-edit-service.form.label.inboundPattern": "ఇన్‌బౌండ్ నమూనా", - "ldn-edit-service.form.label.noInboundPatternSelected": "ఇన్‌బౌండ్ నమూనా లేదు", - "ldn-edit-service.form.label.selectedItemFilter": "ఎంపిక చేసిన అంశం ఫిల్టర్", - "ldn-edit-service.form.label.selectItemFilter": "అంశం ఫిల్టర్ లేదు", - "ldn-edit-service.form.label.automatic": "స్వయంచాలక", - "ldn-edit-service.form.label.addInboundPattern": "+ మరిన్ని జోడించండి", - "ldn-edit-service.form.label.submit": "సేవ్ చేయండి", - "ldn-edit-service.breadcrumbs": "సేవను సవరించండి", - "ldn-service.control-constaint-select-none": "ఏదీ ఎంచుకోకండి", - - "ldn-register-new-service.notification.error.title": "లోపం", - "ldn-register-new-service.notification.error.content": "ఈ ప్రక్రియను సృష్టించే సమయంలో లోపం సంభవించింది", - "ldn-register-new-service.notification.success.title": "విజయం", - "ldn-register-new-service.notification.success.content": "ప్రక్రియ విజయవంతంగా సృష్టించబడింది", - - "submission.sections.notify.info": "ఎంపిక చేసిన సేవ ప్రస్తుత స్థితి ప్రకారం అంశంతో అనుకూలంగా ఉంది. {{ service.name }}: {{ service.description }}", - - "item.page.endorsement": "ఆమోదం", - - "item.page.places": "సంబంధిత స్థలాలు", - - "item.page.review": "సమీక్ష", - - "item.page.referenced": "సూచించబడింది", - - "item.page.supplemented": "సప్లిమెంట్ చేయబడింది", - - "menu.section.icon.ldn_services": "LDN సేవల అవలోకనం", - - "menu.section.services": "LDN సేవలు", - - "menu.section.services_new": "LDN సేవ", - - "quality-assurance.topics.description-with-target": "క్రింద మీరు {{source}}కు సభ్యత్వాల నుండి అందుకున్న అన్ని అంశాలను చూడవచ్చు, ఇవి సంబంధించినవి", - - "quality-assurance.events.description": "ఎంపిక చేసిన అంశం {{topic}} కోసం అన్ని సూచనల జాబితా క్రింద ఉంది, ఇది {{source}}కు సంబంధించినది.", - - "quality-assurance.events.description-with-topic-and-target": "ఎంపిక చేసిన అంశం {{topic}} కోసం అన్ని సూచనల జాబితా క్రింద ఉంది, ఇది {{source}}కు సంబంధించినది మరియు ", - - "quality-assurance.event.table.event.message.serviceUrl": "నటుడు:", - - "quality-assurance.event.table.event.message.link": "లింక్:", - - "service.detail.delete.cancel": "రద్దు చేయండి", - - "service.detail.delete.button": "సేవను తొలగించండి", - - "service.detail.delete.header": "సేవను తొలగించండి", - - "service.detail.delete.body": "మీరు ఖచ్చితంగా ప్రస్తుత సేవను తొలగించాలనుకుంటున్నారా?", - - "service.detail.delete.confirm": "సేవను తొలగించండి", - - "service.detail.delete.success": "సేవ విజయవంతంగా తొలగించబడింది.", - - "service.detail.delete.error": "సేవను తొలగించే సమయంలో ఏదో తప్పు జరిగింది", - - "service.overview.table.id": "సేవల ID", - - "service.overview.table.name": "పేరు", - - "service.overview.table.start": "ప్రారంభ సమయం (UTC)", - - "service.overview.table.status": "స్థితి", - - "service.overview.table.user": "వినియోగదారు", - - "service.overview.table.actions": "చర్యలు", - - "service.overview.table.description": "వివరణ", - - "service.overview.title": "సేవల అవలోకనం", - - "service.overview.breadcrumbs": "సేవల అవలోకనం", - - "submission.sections.submit.progressbar.coarnotify": "COAR నోటిఫై", - - "submission.section.section-coar-notify.control.request-review.label": "మీరు క్రింది సేవలలో ఒకదానికి సమీక్షను అభ్యర్థించవచ్చు", - - "submission.section.section-coar-notify.control.request-endorsement.label": "మీరు క్రింది ఓవర్లే జర్నల్‌లకు ఆమోదాన్ని అభ్యర్థించవచ్చు", - - "submission.section.section-coar-notify.control.request-ingest.label": "మీరు మీ సబ్‌మిషన్‌కు కాపీని ఇంజెస్ట్ చేయాలని క్రింది సేవలలో ఒకదానికి అభ్యర్థించవచ్చు", - - "submission.section.section-coar-notify.dropdown.no-data": "డేటా అందుబాటులో లేదు", - - "submission.section.section-coar-notify.dropdown.select-none": "ఏదీ ఎంచుకోకండి", - - "submission.section.section-coar-notify.small.notification": "ఈ అంశం యొక్క {{ pattern }} కోసం ఒక సేవను ఎంచుకోండి", - - "submission.section.section-coar-notify.selection.description": "ఎంచుకున్న సేవ యొక్క వివరణ:", - - "submission.section.section-coar-notify.selection.no-description": "మరిన్ని సమాచారం అందుబాటులో లేదు", - - "submission.section.section-coar-notify.notification.error": "ఎంచుకున్న సేవ ప్రస్తుత అంశానికి అనుకూలంగా లేదు. దయచేసి ఈ సేవ ద్వారా నిర్వహించబడే రికార్డ్ గురించి వివరాల కోసం వివరణను తనిఖీ చేయండి.", - - "submission.section.section-coar-notify.info.no-pattern": "కాన్ఫిగర్ చేయదగిన నమూనాలు కనుగొనబడలేదు.", - - "error.validation.coarnotify.invalidfilter": "చెల్లని ఫిల్టర్, దయచేసి మరొక సేవను లేదా ఏదీ ఎంచుకోకుండా ప్రయత్నించండి.", - - "request-status-alert-box.accepted": "{{ offerType }} కోసం అభ్యర్థించిన {{ serviceName }} ను స్వీకరించారు.", - - "request-status-alert-box.rejected": "{{ offerType }} కోసం అభ్యర్థించిన {{ serviceName }} ను తిరస్కరించారు.", - - "request-status-alert-box.tentative_rejected": "{{ offerType }} కోసం అభ్యర్థించిన {{ serviceName }} ను తాత్కాలికంగా తిరస్కరించారు. సవరణలు అవసరం", - - "request-status-alert-box.requested": "{{ offerType }} కోసం అభ్యర్థించిన {{ serviceName }} పెండింగ్‌లో ఉంది.", - - "ldn-service-button-mark-inbound-deletion": "డిలీషన్ కోసం మద్దతు ఇచ్చిన నమూనాను మార్క్ చేయండి", - - "ldn-service-button-unmark-inbound-deletion": "డిలీషన్ కోసం మద్దతు ఇచ్చిన నమూనాను అన్‌మార్క్ చేయండి", - - "ldn-service-input-inbound-item-filter-dropdown": "నమూనా కోసం అంశం ఫిల్టర్‌ను ఎంచుకోండి", - - "ldn-service-input-inbound-pattern-dropdown": "సేవ కోసం ఒక నమూనాను ఎంచుకోండి", - - "ldn-service-overview-select-delete": "డిలీషన్ కోసం సేవను ఎంచుకోండి", - - "ldn-service-overview-select-edit": "LDN సేవను సవరించండి", - - "ldn-service-overview-close-modal": "మోడల్‌ను మూసివేయండి", - - "ldn-service-usesActorEmailId": "నోటిఫికేషన్‌లలో నటుని ఇమెయిల్ అవసరం", - - "ldn-service-usesActorEmailId-description": "ఒకవేళ ఎనేబుల్ చేస్తే, పంపబడిన ప్రారంభ నోటిఫికేషన్‌లలో రిపోజిటరీ URL కు బదులుగా సబ్మిటర్ ఇమెయిల్ ఉంటుంది. ఇది సాధారణంగా ఎండోర్స్‌మెంట్ లేదా రివ్యూ సేవలకు వర్తిస్తుంది.", - - "a-common-or_statement.label": "అంశం రకం జర్నల్ ఆర్టికల్ లేదా డేటాసెట్", - - "always_true_filter.label": "ఎల్లప్పుడూ నిజం", - - "automatic_processing_collection_filter_16.label": "స్వయంచాలక ప్రాసెసింగ్", - - "dc-identifier-uri-contains-doi_condition.label": "URIలో DOI ఉంది", - - "doi-filter.label": "DOI ఫిల్టర్", - - "driver-document-type_condition.label": "డాక్యుమెంట్ రకం డ్రైవర్‌కు సమానం", - - "has-at-least-one-bitstream_condition.label": "కనీసం ఒక బిట్‌స్ట్రీమ్ ఉంది", - - "has-bitstream_filter.label": "బిట్‌స్ట్రీమ్ ఉంది", - - "has-one-bitstream_condition.label": "ఒక బిట్‌స్ట్రీమ్ ఉంది", - - "is-archived_condition.label": "ఆర్కైవ్ చేయబడింది", - - "is-withdrawn_condition.label": "విడిచిపెట్టబడింది", - - "item-is-public_condition.label": "అంశం పబ్లిక్‌గా ఉంది", - - "journals_ingest_suggestion_collection_filter_18.label": "జర్నల్స్ ఇంజెస్ట్", - - "title-starts-with-pattern_condition.label": "టైటిల్ నమూనాతో ప్రారంభమవుతుంది", - - "type-equals-dataset_condition.label": "రకం డేటాసెట్‌కు సమానం", - - "type-equals-journal-article_condition.label": "రకం జర్నల్ ఆర్టికల్‌కు సమానం", - - "ldn.no-filter.label": "ఏదీ లేదు", - - "admin.notify.dashboard": "డాష్‌బోర్డ్", - - "menu.section.notify_dashboard": "డాష్‌బోర్డ్", - - "menu.section.coar_notify": "COAR నోటిఫై", - - "admin-notify-dashboard.title": "నోటిఫై డాష్‌బోర్డ్", - - "admin-notify-dashboard.description": "నోటిఫై డాష్‌బోర్డ్ రిపోజిటరీ అంతటా COAR నోటిఫై ప్రోటోకాల్ యొక్క సాధారణ ఉపయోగాన్ని మానిటర్ చేస్తుంది. “మెట్రిక్స్” ట్యాబ్‌లో COAR నోటిఫై ప్రోటోకాల్ యొక్క ఉపయోగ గణాంకాలు ఉంటాయి. “లాగ్స్/ఇన్‌బౌండ్” మరియు “లాగ్స్/అవుట్‌బౌండ్” ట్యాబ్‌లలో, స్వీకరించబడిన లేదా పంపబడిన ప్రతి LDN సందేశం యొక్క వ్యక్తిగత స్థితిని శోధించి తనిఖీ చేయడం సాధ్యమవుతుంది.", - - "admin-notify-dashboard.metrics": "మెట్రిక్స్", - - "admin-notify-dashboard.received-ldn": "స్వీకరించబడిన LDNల సంఖ్య", - - "admin-notify-dashboard.generated-ldn": "జనరేట్ చేయబడిన LDNల సంఖ్య", - - "admin-notify-dashboard.NOTIFY.incoming.accepted": "అంగీకరించబడింది", - - "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "అంగీకరించబడిన ఇన్‌బౌండ్ నోటిఫికేషన్‌లు", - - "admin-notify-logs.NOTIFY.incoming.accepted": "ప్రస్తుతం ప్రదర్శిస్తున్నది: అంగీకరించబడిన నోటిఫికేషన్‌లు", - - "admin-notify-dashboard.NOTIFY.incoming.processed": "ప్రాసెస్ చేయబడిన LDNలు", - - "admin-notify-dashboard.NOTIFY.incoming.processed.description": "ప్రాసెస్ చేయబడిన ఇన్‌బౌండ్ నోటిఫికేషన్‌లు", - - "admin-notify-logs.NOTIFY.incoming.processed": "ప్రస్తుతం ప్రదర్శిస్తున్నది: ప్రాసెస్ చేయబడిన LDNలు", - - "admin-notify-logs.NOTIFY.incoming.failure": "ప్రస్తుతం ప్రదర్శిస్తున్నది: విఫలమైన నోటిఫికేషన్‌లు", - - "admin-notify-dashboard.NOTIFY.incoming.failure": "విఫలం", - - "admin-notify-dashboard.NOTIFY.incoming.failure.description": "విఫలమైన ఇన్‌బౌండ్ నోటిఫికేషన్‌లు", - - "admin-notify-logs.NOTIFY.outgoing.failure": "ప్రస్తుతం ప్రదర్శిస్తున్నది: విఫలమైన నోటిఫికేషన్‌లు", - - "admin-notify-dashboard.NOTIFY.outgoing.failure": "విఫలం", - - "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "విఫలమైన అవుట్‌బౌండ్ నోటిఫికేషన్‌లు", - - "admin-notify-logs.NOTIFY.incoming.untrusted": "ప్రస్తుతం ప్రదర్శిస్తున్నది: నమ్మదగని నోటిఫికేషన్‌లు", - - "admin-notify-dashboard.NOTIFY.incoming.untrusted": "నమ్మదగనిది కాదు", - - "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "నమ్మదగని ఇన్‌బౌండ్ నోటిఫికేషన్‌లు", - - "admin-notify-logs.NOTIFY.incoming.delivered": "ప్రస్తుతం ప్రదర్శిస్తున్నది: డెలివర్ చేయబడిన నోటిఫికేషన్‌లు", - - "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "ఇన్‌బౌండ్ నోటిఫికేషన్‌లు విజయవంతంగా డెలివర్ చేయబడ్డాయి", - - "admin-notify-dashboard.NOTIFY.outgoing.delivered": "డెలివర్ చేయబడింది", - - "admin-notify-logs.NOTIFY.outgoing.delivered": "ప్రస్తుతం ప్రదర్శిస్తున్నది: డెలివర్ చేయబడిన నోటిఫికేషన్‌లు", - - "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "అవుట్‌బౌండ్ నోటిఫికేషన్‌లు విజయవంతంగా డెలివర్ చేయబడ్డాయి", - - "admin-notify-logs.NOTIFY.outgoing.queued": "ప్రస్తుతం ప్రదర్శిస్తున్నది: క్యూలో ఉన్న నోటిఫికేషన్‌లు", - - "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "ప్రస్తుతం క్యూలో ఉన్న నోటిఫికేషన్‌లు", - - "admin-notify-dashboard.NOTIFY.outgoing.queued": "క్యూలో ఉంది", - - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "ప్రస్తుతం ప్రదర్శిస్తున్నది: రిట్రై కోసం క్యూలో ఉన్న నోటిఫికేషన్‌లు", - - "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "రిట్రై కోసం క్యూలో ఉంది", - - "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "ప్రస్తుతం రిట్రై కోసం క్యూలో ఉన్న నోటిఫికేషన్‌లు", - - "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "ఇన్‌వాల్వ్ చేయబడిన అంశాలు", - - "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "ఇన్‌బౌండ్ నోటిఫికేషన్‌లతో సంబంధం ఉన్న అంశాలు", - - "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "ఇన్‌వాల్వ్ చేయబడిన అంశాలు", - - "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "అవుట్‌బౌండ్ నోటిఫికేషన్‌లతో సంబంధం ఉన్న అంశాలు", - - "admin.notify.dashboard.breadcrumbs": "డాష్‌బోర్డ్", - - "admin.notify.dashboard.inbound": "ఇన్‌బౌండ్ సందేశాలు", - - "admin.notify.dashboard.inbound-logs": "లాగ్స్/ఇన్‌బౌండ్", - - "admin.notify.dashboard.filter": "ఫిల్టర్: ", - - "search.filters.applied.f.relateditem": "సంబంధిత అంశాలు", - - "search.filters.applied.f.ldn_service": "LDN సేవ", - - "search.filters.applied.f.notifyReview": "నోటిఫై రివ్యూ", - - "search.filters.applied.f.notifyEndorsement": "నోటిఫై ఎండోర్స్‌మెంట్", - - "search.filters.applied.f.notifyRelation": "నోటిఫై రిలేషన్", - - "search.filters.applied.f.access_status": "యాక్సెస్ రకం", - - "search.filters.filter.queue_last_start_time.head": "చివరి ప్రాసెసింగ్ సమయం ", - - "search.filters.filter.queue_last_start_time.min.label": "కనిష్ట పరిధి", - - "search.filters.filter.queue_last_start_time.max.label": "గరిష్ట పరిధి", - - "search.filters.applied.f.queue_last_start_time.min": "కనిష్ట పరిధి", - - "search.filters.applied.f.queue_last_start_time.max": "గరిష్ట పరిధి", - - "admin.notify.dashboard.outbound": "అవుట్‌బౌండ్ సందేశాలు", - - "admin.notify.dashboard.outbound-logs": "లాగ్స్/అవుట్‌బౌండ్", - - "NOTIFY.incoming.search.results.head": "ఇన్‌కమింగ్", - - "search.filters.filter.relateditem.head": "సంబంధిత అంశం", - - "search.filters.filter.origin.head": "మూలం", - - "search.filters.filter.ldn_service.head": "LDN సేవ", - - "search.filters.filter.target.head": "టార్గెట్", - - "search.filters.filter.queue_status.head": "క్యూ స్థితి", - - "search.filters.filter.activity_stream_type.head": "ఆక్టివిటీ స్ట్రీమ్ రకం", - - "search.filters.filter.coar_notify_type.head": "COAR నోటిఫై రకం", - - "search.filters.filter.notification_type.head": "నోటిఫికేషన్ రకం", - - "search.filters.filter.relateditem.label": "సంబంధిత అంశాలను శోధించండి", - - "search.filters.filter.queue_status.label": "క్యూ స్థితిని శోధించండి", - - "search.filters.filter.target.label": "టార్గెట్‌ను శోధించండి", - - "search.filters.filter.activity_stream_type.label": "ఆక్టివిటీ స్ట్రీమ్ రకాన్ని శోధించండి", - - "search.filters.applied.f.queue_status": "క్యూ స్థితి", - - "search.filters.queue_status.0,authority": "నమ్మదగని IP", - - "search.filters.queue_status.1,authority": "క్యూలో ఉంది", - - "search.filters.queue_status.2,authority": "ప్రాసెసింగ్", - - "search.filters.queue_status.3,authority": "ప్రాసెస్ చేయబడింది", - - "search.filters.queue_status.4,authority": "విఫలమైంది", - - "search.filters.queue_status.5,authority": "నమ్మదగనిది", - - "search.filters.queue_status.6,authority": "మ్యాప్ చేయని యాక్షన్", - - "search.filters.queue_status.7,authority": "రిట్రై కోసం క్యూలో ఉంది", - - "search.filters.applied.f.activity_stream_type": "ఆక్టివిటీ స్ట్రీమ్ రకం", - - "search.filters.applied.f.coar_notify_type": "COAR నోటిఫై రకం", - - "search.filters.applied.f.notification_type": "నోటిఫికేషన్ రకం", - - "search.filters.filter.coar_notify_type.label": "COAR నోటిఫై రకాన్ని శోధించండి", - - "search.filters.filter.notification_type.label": "నోటిఫికేషన్ రకాన్ని శోధించండి", - - "search.filters.filter.relateditem.placeholder": "సంబంధిత అంశాలు", - - "search.filters.filter.target.placeholder": "టార్గెట్", - - "search.filters.filter.origin.label": "మూలాన్ని శోధించండి", - - "search.filters.filter.origin.placeholder": "మూలం", - - "search.filters.filter.ldn_service.label": "LDN సేవను శోధించండి", - - "search.filters.filter.ldn_service.placeholder": "LDN సేవ", - - "search.filters.filter.queue_status.placeholder": "క్యూ స్థితి", - - "search.filters.filter.activity_stream_type.placeholder": "ఆక్టివిటీ స్ట్రీమ్ రకం", - - "search.filters.filter.coar_notify_type.placeholder": "COAR నోటిఫై రకం", - - "search.filters.filter.notification_type.placeholder": "నోటిఫికేషన్", - - "search.filters.filter.notifyRelation.head": "నోటిఫై రిలేషన్", - - "search.filters.filter.notifyRelation.label": "నోటిఫై రిలేషన్‌ను శోధించండి", - - "search.filters.filter.notifyRelation.placeholder": "నోటిఫై రిలేషన్", - - "search.filters.filter.notifyReview.head": "నోటిఫై రివ్యూ", - - "search.filters.filter.notifyReview.label": "నోటిఫై రివ్యూను శోధించండి", - - "search.filters.filter.notifyReview.placeholder": "నోటిఫై రివ్యూ", - - "search.filters.coar_notify_type.coar-notify:ReviewAction": "రివ్యూ యాక్షన్", - - "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "రివ్యూ యాక్షన్", - - "notify-detail-modal.coar-notify:ReviewAction": "రివ్యూ యాక్షన్", - - "search.filters.coar_notify_type.coar-notify:EndorsementAction": "ఎండోర్స్‌మెంట్ యాక్షన్", - - "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "ఎండోర్స్‌మెంట్ యాక్షన్", - - "notify-detail-modal.coar-notify:EndorsementAction": "ఎండోర్స్‌మెంట్ యాక్షన్", - - "search.filters.coar_notify_type.coar-notify:IngestAction": "ఇంజెస్ట్ యాక్షన్", - - "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ఇంజెస్ట్ యాక్షన్", - - "notify-detail-modal.coar-notify:IngestAction": "ఇంజెస్ట్ యాక్షన్", - - "search.filters.coar_notify_type.coar-notify:RelationshipAction": "రిలేషన్‌షిప్ యాక్షన్", - - "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "రిలేషన్‌షిప్ యాక్షన్", - - "notify-detail-modal.coar-notify:RelationshipAction": "రిలేషన్‌షిప్ యాక్షన్", - - "search.filters.queue_status.QUEUE_STATUS_QUEUED": "క్యూలో ఉంది", - - "notify-detail-modal.QUEUE_STATUS_QUEUED": "క్యూలో ఉంది", - - "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "రిట్రై కోసం క్యూలో ఉంది", - - "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "రిట్రై కోసం క్యూలో ఉంది", - - "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "ప్రాసెసింగ్", - - "notify-detail-modal.QUEUE_STATUS_PROCESSING": "ప్రాసెసింగ్", - - "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "ప్రాసెస్ చేయబడింది", - - "notify-detail-modal.QUEUE_STATUS_PROCESSED": "ప్రాసెస్ చేయబడింది", - - "search.filters.queue_status.QUEUE_STATUS_FAILED": "విఫలమైంది", - - "notify-detail-modal.QUEUE_STATUS_FAILED": "విఫలమైంది", - - "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "నమ్మదగనిది", - - "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "నమ్మదగని IP", - - "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "నమ్మదగనిది", - - "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "నమ్మదగని IP", - - "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "మ్యాప్ చేయని యాక్షన్", - - "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "మ్యాప్ చేయని యాక్షన్", - - "sorting.queue_last_start_time.DESC": "చివరి ప్రారంభించిన క్యూ డిసెండింగ్", - - "sorting.queue_last_start_time.ASC": "చివరి ప్రారంభించిన క్యూ ఆసెండింగ్", - - "sorting.queue_attempts.DESC": "క్యూ ప్రయత్నించబడింది డిసెండింగ్", - - "sorting.queue_attempts.ASC": "క్యూ ప్రయత్నించబడింది ఆసెండింగ్", - - "NOTIFY.incoming.involvedItems.search.results.head": "ఇన్‌కమింగ్ LDNలలో ఇన్‌వాల్వ్ చేయబడిన అంశాలు", - - "NOTIFY.outgoing.involvedItems.search.results.head": "అవుట్‌గోయింగ్ LDNలలో ఇన్‌వాల్వ్ చేయబడిన అంశాలు", - - "type.notify-detail-modal": "రకం", - - "id.notify-detail-modal": "Id", - - "coarNotifyType.notify-detail-modal": "COAR నోటిఫై రకం", - - "activityStreamType.notify-detail-modal": "ఆక్టివిటీ స్ట్రీమ్ రకం", - - "inReplyTo.notify-detail-modal": "సమాధానంగా", - - "object.notify-detail-modal": "రిపోజిటరీ అంశం", - - "context.notify-detail-modal": "రిపోజిటరీ అంశం", - - "queueAttempts.notify-detail-modal": "క్యూ ప్రయత్నాలు", - - "queueLastStartTime.notify-detail-modal": "క్యూ చివరిగా ప్రారంభించబడింది", - - "origin.notify-detail-modal": "LDN సేవ", - - "target.notify-detail-modal": "LDN సేవ", - - "queueStatusLabel.notify-detail-modal": "క్యూ స్థితి", - - "queueTimeout.notify-detail-modal": "క్యూ టైమ్‌అవుట్", - - "notify-message-modal.title": "సందేశ వివరాలు", - - "notify-message-modal.show-message": "సందేశాన్ని చూపించు", - - "notify-message-result.timestamp": "టైమ్‌స్టాంప్", - - "notify-message-result.repositoryItem": "రిపోజిటరీ అంశం", - - "notify-message-result.ldnService": "LDN సేవ", - - "notify-message-result.type": "రకం", - - "notify-message-result.status": "స్థితి", - - "notify-message-result.action": "యాక్షన్", - - "notify-message-result.detail": "వివరాలు", - - "notify-message-result.reprocess": "రీప్రాసెస్", - - "notify-queue-status.processed": "ప్రాసెస్ చేయబడింది", - - "notify-queue-status.failed": "విఫలమైంది", - - "notify-queue-status.queue_retry": "రిట్రై కోసం క్యూలో ఉంది", - - "notify-queue-status.unmapped_action": "మ్యాప్ చేయని యాక్షన్", - - "notify-queue-status.processing": "ప్రాసెసింగ్", - - "notify-queue-status.queued": "క్యూలో ఉంది", - - "notify-queue-status.untrusted": "నమ్మదగనిది", - - "ldnService.notify-detail-modal": "LDN సేవ", - - "relatedItem.notify-detail-modal": "సంబంధిత అంశం", - - "search.filters.filter.notifyEndorsement.head": "నోటిఫై ఎండోర్స్‌మెంట్", - - "search.filters.filter.notifyEndorsement.placeholder": "నోటిఫై ఎండోర్స్‌మెంట్", - - "search.filters.filter.notifyEndorsement.label": "నోటిఫై ఎండోర్స్‌మెంట్‌ను శోధించండి", - - "form.date-picker.placeholder.year": "సంవత్సరం", - - "form.date-picker.placeholder.month": "నెల", - - "form.date-picker.placeholder.day": "రోజు", - - "item.page.cc.license.title": "క్రియేటివ్ కామన్స్ లైసెన్స్", - - "item.page.cc.license.disclaimer": "ఇతర విధంగా పేర్కొననంత వరకు, ఈ అంశం యొక్క లైసెన్స్ ఇలా వివరించబడింది", - - "browse.search-form.placeholder": "రిపోజిటరీని శోధించండి", - - "file-download-link.download": "డౌన్‌లోడ్ ", - - "register-page.registration.aria.label": "మీ ఇమెయిల్ చిరునామాను నమోదు చేయండి", - - "forgot-email.form.aria.label": "మీ ఇమెయిల్ చిరునామాను నమోదు చేయండి", - - "search-facet-option.update.announcement": "పేజీ రీలోడ్ అవుతుంది. ఫిల్టర్ {{ filter }} ఎంచుకోబడింది.", - - "live-region.ordering.instructions": "{{ itemName }}ని మళ్లీ ఆర్డర్ చేయడానికి స్పేస్‌బార్ నొక్కండి.", - - "live-region.ordering.status": "{{ itemName }}, పట్టుకోబడింది. జాబితాలో ప్రస్తుత స్థానం: {{ index }} లో {{ length }}. స్థానాన్ని మార్చడానికి ఎగువ మరియు క్రింది బాణం కీలను ఉపయోగించండి, డ్రాప్ చేయడానికి స్పేస్‌బార్, రద్దు చేయడానికి ఎస్కేప్.", - - "live-region.ordering.moved": "{{ itemName }}, {{ index }} స్థానానికి {{ length }} లోకి తరలించబడింది. స్థానాన్ని మార్చడానికి ఎగువ మరియు క్రింది బాణం కీలను ఉపయోగించండి, డ్రాప్ చేయడానికి స్పేస్‌బార్, రద్దు చేయడానికి ఎస్కేప్.", - - "live-region.ordering.dropped": "{{ itemName }}, {{ index }} స్థానంలో {{ length }} లో డ్రాప్ చేయబడింది.", - - "dynamic-form-array.sortable-list.label": "సార్ట్ చేయదగిన జాబితా", - - "external-login.component.or": "లేదా", - - "external-login.confirmation.header": "లాగిన్ ప్రక్రియను పూర్తి చేయడానికి అవసరమైన సమాచారం", - - "external-login.noEmail.informationText": "{{authMethod}} నుండి అందిన సమాచారం లాగిన్ ప్రక్రియను పూర్తి చేయడానికి సరిపోదు. దయచేసి క్రింద తప్పిపోయిన సమాచారాన్ని అందించండి, లేదా ఇప్పటికే ఉన్న ఖాతాకు మీ {{authMethod}}ని అనుబంధించడానికి వేరే పద్ధతి ద్వారా లాగిన్ అవ్వండి.", - - "external-login.haveEmail.informationText": "మీరు ఈ సిస్టమ్‌లో ఇంకా ఖాతా కలిగి లేరని అనిపిస్తుంది. అలా అయితే, దయచేసి {{authMethod}} నుండి అందిన డేటాను నిర్ధారించండి మరియు మీ కోసం కొత్త ఖాతా సృష్టించబడుతుంది. లేకుంటే, మీరు ఇప్పటికే సిస్టమ్‌లో ఖాతాను కలిగి ఉంటే, దయచేసి ఇమెయిల్ చిరునామాను సిస్టమ్‌లో ఇప్పటికే ఉపయోగించినదానికి సరిపోయేలా నవీకరించండి లేదా మీ ఇప్పటికే ఉన్న ఖాతాకు మీ {{authMethod}}ని అనుబంధించడానికి వేరే పద్ధతి ద్వారా లాగిన్ అవ్వండి.", - - "external-login.confirm-email.header": "ఇమెయిల్‌ను నిర్ధారించండి లేదా నవీకరించండి", - - "external-login.confirmation.email-required": "ఇమెయిల్ అవసరం.", - - "external-login.confirmation.email-label": "వినియోగదారు ఇమెయిల్", - - "external-login.confirmation.email-invalid": "చెల్లని ఇమెయిల్ ఫార్మాట్.", - - "external-login.confirm.button.label": "ఈ ఇమెయిల్‌ను నిర్ధారించండి", - - "external-login.confirm-email-sent.header": "నిర్ధారణ ఇమెయిల్ పంపబడింది", - - "external-login.confirm-email-sent.info": "మేము మీ ఇన్పుట్‌ను ధృవీకరించడానికి అందించిన చిరునామాకు ఒక ఇమెయిల్ పంపాము.
దయచేసి లాగిన్ ప్రక్రియను పూర్తి చేయడానికి ఇమెయిల్‌లోని సూచనలను అనుసరించండి.", - - "external-login.provide-email.header": "ఇమెయిల్ అందించండి", - - "external-login.provide-email.button.label": "ధృవీకరణ లింక్‌ను పంపండి", - - "external-login-validation.review-account-info.header": "మీ ఖాతా సమాచారాన్ని సమీక్షించండి", - - "external-login-validation.review-account-info.info": "ORCID నుండి అందిన సమాచారం మీ ప్రొఫైల్‌లో రికార్డ్ చేయబడిన దానికి భిన్నంగా ఉంది.
దయచేసి వాటిని సమీక్షించండి మరియు మీరు ఏవైనా నవీకరించాలనుకుంటున్నారో నిర్ణయించుకోండి. సేవ్ చేసిన తర్వాత మీరు మీ ప్రొఫైల్ పేజీకి మళ్లించబడతారు.", - - "external-login-validation.review-account-info.table.header.information": "సమాచారం", - - "external-login-validation.review-account-info.table.header.received-value": "అందిన విలువ", - - "external-login-validation.review-account-info.table.header.current-value": "ప్రస్తుత విలువ", - - "external-login-validation.review-account-info.table.header.action": "అతిగా రాసేయి", - - "external-login-validation.review-account-info.table.row.not-applicable": "వర్తించదు", - - "on-label": "ఆన్", - - "off-label": "ఆఫ్", - - "review-account-info.merge-data.notification.success": "మీ ఖాతా సమాచారం విజయవంతంగా నవీకరించబడింది", - - "review-account-info.merge-data.notification.error": "మీ ఖాతా సమాచారాన్ని నవీకరించడంలో ఏదో తప్పు జరిగింది", - - "review-account-info.alert.error.content": "ఏదో తప్పు జరిగింది. దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి.", - - "external-login-page.provide-email.notifications.error": "ఏదో తప్పు జరిగింది. ఇమెయిల్ చిరునామా విస్మరించబడింది లేదా ఆపరేషన్ చెల్లదు.", - - "external-login.error.notification": "మీ అభ్యర్థనను ప్రాసెస్ చేయడంలో ఒక లోపం ఏర్పడింది. దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి.", - - "external-login.connect-to-existing-account.label": "ఇప్పటికే ఉన్న వినియోగదారుకు కనెక్ట్ అవ్వండి", - - "external-login.modal.label.close": "మూసివేయి", - - "external-login-page.provide-email.create-account.notifications.error.header": "ఏదో తప్పు జరిగింది", - - "external-login-page.provide-email.create-account.notifications.error.content": "దయచేసి మీ ఇమెయిల్ చిరునామాను మళ్లీ తనిఖీ చేసి మళ్లీ ప్రయత్నించండి.", - - "external-login-page.confirm-email.create-account.notifications.error.no-netId": "ఈ ఇమెయిల్ ఖాతాతో ఏదో తప్పు జరిగింది. మళ్లీ ప్రయత్నించండి లేదా లాగిన్ అవ్వడానికి వేరే పద్ధతిని ఉపయోగించండి.", - - "external-login-page.orcid-confirmation.firstname": "మొదటి పేరు", - - "external-login-page.orcid-confirmation.firstname.label": "మొదటి పేరు", - - "external-login-page.orcid-confirmation.lastname": "చివరి పేరు", - - "external-login-page.orcid-confirmation.lastname.label": "చివరి పేరు", - - "external-login-page.orcid-confirmation.netid": "ఖాతా ఐడెంటిఫైయర్", - - "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", - - "external-login-page.orcid-confirmation.email": "ఇమెయిల్", - - "external-login-page.orcid-confirmation.email.label": "ఇమెయిల్", - - "search.filters.access_status.open.access": "ఓపెన్ యాక్సెస్", - - "search.filters.access_status.restricted": "పరిమిత యాక్సెస్", - - "search.filters.access_status.embargo": "ఎంబార్గో యాక్సెస్", - - "search.filters.access_status.metadata.only": "మెటాడేటా మాత్రమే", - - "search.filters.access_status.unknown": "తెలియదు", - - "metadata-export-filtered-items.tooltip": "CSV గా రిపోర్ట్ అవుట్పుట్‌ను ఎగుమతి చేయండి", - - "metadata-export-filtered-items.submit.success": "CSV ఎగుమతి విజయవంతమైంది.", - - "metadata-export-filtered-items.submit.error": "CSV ఎగుమతి విఫలమైంది.", - - "metadata-export-filtered-items.columns.warning": "CSV ఎగుమతి స్వయంచాలకంగా అన్ని సంబంధిత ఫీల్డ్‌లను కలిగి ఉంటుంది, కాబట్టి ఈ జాబితాలోని ఎంపికలు పరిగణనలోకి తీసుకోబడవు.", - - "embargo.listelement.badge": "{{ date }} వరకు ఎంబార్గో", - - "metadata-export-search.submit.error.limit-exceeded": "మొదటి {{limit}} అంశాలు మాత్రమే ఎగుమతి చేయబడతాయి", - - "file-download-link.request-copy": "యొక్క కాపీని అభ్యర్థించండి ", - -} \ No newline at end of file diff --git a/src/assets/i18n/tr.json5 b/src/assets/i18n/tr.json5 index 43781f5a5a9..20f3d365ff4 100644 --- a/src/assets/i18n/tr.json5 +++ b/src/assets/i18n/tr.json5 @@ -3358,13 +3358,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Üst düzey komüniteleri alma hatası", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Gönderinizi tamamlamak için bu lisansı vermelisiniz. Bu lisansı şu anda veremiyorsanız, çalışmanızı kaydedebilir ve daha sonra geri gönderebilir veya gönderimi kaldırabilirsiniz.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Bu giriş mevcut modelle sınırlandırılmıştır.: {{ pattern }}.", @@ -9690,6 +9703,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Yaratıcı Ortak Lisansları", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Geri Dönüştür", @@ -9881,6 +9898,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Yükleme Başarılı", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13045,5 +13074,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/uk.json5 b/src/assets/i18n/uk.json5 index 58c08a82a43..5d0e7da0639 100644 --- a/src/assets/i18n/uk.json5 +++ b/src/assets/i18n/uk.json5 @@ -3378,13 +3378,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Виникла помилка при отриманні фонду верхнього рівня", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Ви повинні дати згоду на умови ліцензії, щоб завершити submission. Якщо ви не можете погодитись на умови ліцензії на даний момент, ви можете зберегти свою роботу та повернутися пізніше або видалити submission.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Вхідна інформація обмежена поточним шаблоном: {{ pattern }}.", @@ -9720,6 +9733,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "СС ліцензії", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Переробити", @@ -9911,6 +9928,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Успішно завантажено", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13067,5 +13096,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + -} +} \ No newline at end of file diff --git a/src/assets/i18n/vi.json5 b/src/assets/i18n/vi.json5 index 6ac69abcb3c..e26476768ca 100644 --- a/src/assets/i18n/vi.json5 +++ b/src/assets/i18n/vi.json5 @@ -3142,13 +3142,26 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Lỗi tìm kiếm đơn vị lớn", - // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Bạn phải đồng ý với giấy phép này để hoàn thành tài liệu biên mục của mình. Nếu hiện tại bạn không thể đồng ý giấy phép này bạn có thể lưu tài liệu biên mục của mình và quay lại sau hoặc xóa nội dung đã biên mục.", + // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // TODO New key - Add a translation + "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", + // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + // TODO New key - Add a translation + "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", + + // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + // TODO New key - Add a translation + "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + + // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // TODO New key - Add a translation + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9140,6 +9153,10 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Bằng sáng chế", + // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", + // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Tái chế", @@ -9311,6 +9328,18 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Tải lên thành công", + // "submission.sections.custom-url.label.previous-urls": "Previous Urls", + // TODO New key - Add a translation + "submission.sections.custom-url.label.previous-urls": "Previous Urls", + + // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + // TODO New key - Add a translation + "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", + + // "submission.sections.custom-url.url.placeholder": "Custom URL", + // TODO New key - Add a translation + "submission.sections.custom-url.url.placeholder": "Custom URL", + // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Khi được chọn biểu ghi này sẽ có thể được tìm thấy trong các chức năng tìm kiếm/duyệt. Khi bỏ chọn biểu ghi sẽ chỉ có sẵn qua đường dẫn trực tiếp và sẽ không bao giờ xuất hiện trong tìm kiếm/duyệt.", @@ -12266,5 +12295,17 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", + // "item.preview.organization.url": "URL", + // TODO New key - Add a translation + "item.preview.organization.url": "URL", + + // "item.preview.organization.address.addressLocality": "City", + // TODO New key - Add a translation + "item.preview.organization.address.addressLocality": "City", + + // "item.preview.organization.alternateName": "Alternative name", + // TODO New key - Add a translation + "item.preview.organization.alternateName": "Alternative name", + } \ No newline at end of file From 156a599dc96a8c990f83ea367ecda8ba7a7cfba9 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Thu, 29 Jan 2026 16:27:21 +0100 Subject: [PATCH 10/17] [DURACOM-413] rever i18n changes --- src/assets/i18n/ar.json5 | 53 +- src/assets/i18n/ca.json5 | 45 +- src/assets/i18n/cs.json5 | 47 +- src/assets/i18n/el.json5 | 45 +- src/assets/i18n/es.json5 | 49 +- src/assets/i18n/fi.json5 | 47 +- src/assets/i18n/fr.json5 | 57 +- src/assets/i18n/gd.json5 | 47 +- src/assets/i18n/gu.json5 | 5663 ++++++++-------------------------- src/assets/i18n/hi.json5 | 45 +- src/assets/i18n/it.json5 | 45 +- src/assets/i18n/ja.json5 | 44 +- src/assets/i18n/kk.json5 | 47 +- src/assets/i18n/lv.json5 | 45 +- src/assets/i18n/mr.json5 | 4637 +++------------------------- src/assets/i18n/nl.json5 | 45 +- src/assets/i18n/pl.json5 | 45 +- src/assets/i18n/pt-BR.json5 | 40 +- src/assets/i18n/pt-PT.json5 | 47 +- src/assets/i18n/ru.json5 | 1172 +------ src/assets/i18n/sr-cyr.json5 | 45 +- src/assets/i18n/sr-lat.json5 | 45 +- src/assets/i18n/sv.json5 | 47 +- src/assets/i18n/sw.json5 | 44 +- src/assets/i18n/tr.json5 | 47 +- src/assets/i18n/uk.json5 | 47 +- src/assets/i18n/vi.json5 | 45 +- 27 files changed, 1899 insertions(+), 10686 deletions(-) diff --git a/src/assets/i18n/ar.json5 b/src/assets/i18n/ar.json5 index 3390e4efbe4..4a4f7589d4c 100644 --- a/src/assets/i18n/ar.json5 +++ b/src/assets/i18n/ar.json5 @@ -2885,25 +2885,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "حدث خطأ أثناء جلب مجتمعات المستوى الأعلى", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "يجب عليك منح هذا الترخيص لإكمال عملية التقديم الخاصة بك. إذا لم تتمكن من منح هذا الترخيص في هذا الوقت، يمكنك حفظ عملك والعودة لاحقاً أو إزالة التقديم.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "يجب عليك منح رخصة المشاع الإبداعي هذه لإكمال تقديمك. إذا لم تتمكن من منح الرخصة في هذا الوقت، يمكنك حفظ عملك والعودة لاحقًا أو إزالة التقديم.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "هذا الإدخال مقيد بالنمط الحالي: {{ pattern }}.", @@ -4531,8 +4518,7 @@ "item.preview.dc.rights": "الحقوق", // "item.preview.dc.identifier.other": "Other Identifier", - // TODO Source message changed - Revise the translation - "item.preview.dc.identifier.other": "معرف آخر:", + "item.preview.dc.identifier.other": "معرف آخر", // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4622,8 +4608,7 @@ "item.preview.dc.identifier.openalex": "معرّف OpenAlex", // "item.preview.dc.description": "Description", - // TODO Source message changed - Revise the translation - "item.preview.dc.description": "الوصف:", + "item.preview.dc.description": "الوصف", // "item.select.confirm": "Confirm selected", "item.select.confirm": "تأكيد المحدد", @@ -8332,10 +8317,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "الإبداعية العامة", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "إعادة تدوير", @@ -8501,18 +8482,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "نجح التحميل", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "عند التحديد، ستكون هذه المادة قابلة للاكتشاف في البحث/الاستعراض. عند إلغاء التحديد، ستكون المادة متاحة فقط عبر رابط مباشر ولن تظهر أبدًا في البحث/الاستعراض.", @@ -10900,17 +10869,5 @@ // "file-download-link.request-copy": "Request a copy of ", "file-download-link.request-copy": "طلب نسخة من ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/ca.json5 b/src/assets/i18n/ca.json5 index fbd2c8361c4..a984fb254c7 100644 --- a/src/assets/i18n/ca.json5 +++ b/src/assets/i18n/ca.json5 @@ -2923,25 +2923,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Error en recuperar les comunitats de primer nivell", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Ha de concedir aquesta llicència de dipòsit per completar l'enviament. Si no podeu concedir aquesta llicència en aquest moment, podeu desar el vostre treball i tornar més tard o bé eliminar l'enviament.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Heu de concedir aquesta llicència CC per completar l'enviament. Si no podeu concedir aquesta llicència CC en aquest moment, podeu desar el vostre treball i tornar més tard o bé eliminar l'enviament.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Aquest camp d'entrada està restringit per aquest patró: {{ pattern }}.", @@ -8489,10 +8476,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Llicència Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8658,18 +8641,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Pujada completada amb èxit", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si el marca, l'ítem serà detectable al cercador/navegador. Si el desmarca, l'ítem només estarà disponible mitjançant l'enllaç directe, i no apareixerà al cercar/navegar.", @@ -11127,17 +11098,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/cs.json5 b/src/assets/i18n/cs.json5 index 3ddc8ddb9fc..544c1a63e29 100644 --- a/src/assets/i18n/cs.json5 +++ b/src/assets/i18n/cs.json5 @@ -2887,25 +2887,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Chyba při načítání komunit nejvyšší úrovně", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Bez udělení licence nelze záznam dokončit. Pokud v tuto chvíli nemůžete licenci udělit, uložte svou práci a vraťte se k příspěvku později nebo jej smažte.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Pro dokončení vkladu musíte udělit tuto licenci CC. Pokud v tuto chvíli nemůžete licenci CC udělit, můžete svou práci uložit a vrátit se později nebo vklad odstranit.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Toto zadání je omezeno aktuálním vzorcem: {{ pattern }}.", @@ -8332,10 +8319,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licence Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Opětovně použít", @@ -8501,18 +8484,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Úspěšně nahráno", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Když je zaškrtnuto, bude tento záznam zjistitelný ve vyhledávání/prohlížení. Když není zaškrtnuto, záznam bude dostupný pouze prostřednictvím přímého odkazu a nikdy se nezobrazí ve vyhledávání/přehledu.", @@ -10900,17 +10871,5 @@ // "file-download-link.request-copy": "Request a copy of ", "file-download-link.request-copy": "Požádat o kopii ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/el.json5 b/src/assets/i18n/el.json5 index 1dd9181ecd0..64f67ecec35 100644 --- a/src/assets/i18n/el.json5 +++ b/src/assets/i18n/el.json5 @@ -3213,26 +3213,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Σφάλμα κατά την ανάκτηση κοινοτήτων ανώτατου επιπέδου", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Πρέπει να χορηγήσετε αυτήν την άδεια για να ολοκληρώσετε την υποβολή σας. Εάν δεν μπορείτε να εκχωρήσετε αυτήν την άδεια αυτήν τη στιγμή, μπορείτε να αποθηκεύσετε την εργασία σας και να επιστρέψετε αργότερα ή να καταργήσετε την υποβολή.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9269,10 +9256,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Άδεια Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ανακυκλωνω", @@ -9444,18 +9427,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Επιτυχής μεταφόρτωση", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Όταν είναι επιλεγμένο, αυτό το τεκμήριο θα μπορεί να εντοπιστεί στην αναζήτηση/περιήγηση. Όταν δεν είναι επιλεγμένο, το τεκμήριο θα είναι διαθέσιμο μόνο μέσω απευθείας συνδέσμου και δεν θα εμφανίζεται ποτέ στην αναζήτηση/περιήγηση.", @@ -12431,17 +12402,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/es.json5 b/src/assets/i18n/es.json5 index 2623bf1d5a1..7f1b2f4d6f6 100644 --- a/src/assets/i18n/es.json5 +++ b/src/assets/i18n/es.json5 @@ -2899,25 +2899,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Error al recuperar las comunidades de primer nivel", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Debe conceder esta licencia de depósito para completar el envío. Si no puede conceder esta licencia en este momento, puede guardar su trabajo y regresar más tarde o bien eliminar el envío.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Debe conceder esta licencia CC para completar su envío. Si no puede conceder esta licencia CC en este momento, puede guardar su trabajo y regresar más tarde o bien eliminar el envío.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Esta entrada está restringida por este patrón: {{ pattern }}.", @@ -4584,7 +4571,6 @@ "item.preview.dc.rights": "Rights", // "item.preview.dc.identifier.other": "Other Identifier", - // TODO Source message changed - Revise the translation "item.preview.dc.identifier.other": "Otro identificador:", // "item.preview.dc.relation.issn": "ISSN", @@ -4675,7 +4661,6 @@ "item.preview.dc.identifier.openalex": "Identificador OpenAlex", // "item.preview.dc.description": "Description", - // TODO Source message changed - Revise the translation "item.preview.dc.description": "Descripción:", // "item.select.confirm": "Confirm selected", @@ -8435,10 +8420,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licencia Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8604,18 +8585,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Subida exitosa", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si lo marca, el ítem será detectable en el buscador/navegador. Si lo desmarca, el ítems solo estará disponible mediante el enlace directo, y no aparecerá en el buscador/navegador.", @@ -11006,17 +10975,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/fi.json5 b/src/assets/i18n/fi.json5 index 5659fe9f6e4..a86f12487c5 100644 --- a/src/assets/i18n/fi.json5 +++ b/src/assets/i18n/fi.json5 @@ -3106,26 +3106,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Virhe ylätason yhteisöjä noudettaessa", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Tallennusprosessia ei voi päättää, ellet hyväksy julkaisulisenssiä. Voit myös tallentaa tiedot ja jatkaa tallennusta myöhemmin tai poistaa kaikki syöttämäsi tiedot.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Syötteen on noudatettava seuraavaa kaavaa: {{ pattern }}.", @@ -8984,10 +8971,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons -lisenssi", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Kierrätä", @@ -9156,18 +9139,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Lataus valmis", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Kun tämä on valittu, tietue on löydettävissä haussa ja selailtaessa. Kun tätä ei ole valittu, tietue on saatavilla vain suoran linkin kautta, eikä se näy haussa tai selailtaessa.", @@ -12044,17 +12015,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/fr.json5 b/src/assets/i18n/fr.json5 index b8c5aae9cf9..46daedcf7fd 100644 --- a/src/assets/i18n/fr.json5 +++ b/src/assets/i18n/fr.json5 @@ -2917,25 +2917,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erreur lors de la récupération des communautés de 1er niveau", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Vous devez accepter cette licence pour terminer votre dépôt. Si vous êtes dans l'incapacité d'accepter cette licence actuellement, vous pouvez sauvegarder votre dépôt et y revenir ultérieurement ou le supprimer.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Vous devez approuver cette Licence Creative Commons afin de finaliser votre sumissions. Si vous n'êtes pas en mesure d'approuver la licence pour le moment, vous pouvez souvegarder votre travail pour y revenir plus tard ou supprimer la soumission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Cette entrée est invalide en vertu du modèle actuel : {{ pattern }}.", @@ -4592,10 +4579,6 @@ // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "Droits", - // "item.preview.dc.identifier.other": "Other Identifier", - // TODO Source message changed - Revise the translation - "item.preview.dc.identifier.other": "Autre identifiant :", - // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4683,10 +4666,6 @@ // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "Identifiant OpenAlex", - // "item.preview.dc.description": "Description", - // TODO Source message changed - Revise the translation - "item.preview.dc.description": "Description :", - // "item.select.confirm": "Confirm selected", "item.select.confirm": "Confirmer la sélection", @@ -6973,6 +6952,7 @@ // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "Description du fichier", + // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", "search.filters.applied.f.has_geospatial_metadata": "A l'emplacement géographique", @@ -8406,10 +8386,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licence Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Recycler", @@ -8575,18 +8551,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Téléchargement réussi", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Si cette case est cochée, cet Item pourra être découvert dans la recherche/index parcourir. Si cette case n'est pas cochée, l'Item ne sera disponible que via un lien direct et n'apparaîtra jamais dans la recherche/index parcourir.", @@ -10980,17 +10944,4 @@ // "file-download-link.request-copy": "Request a copy of ", "file-download-link.request-copy": "Demander une copie de ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - - -} \ No newline at end of file +} diff --git a/src/assets/i18n/gd.json5 b/src/assets/i18n/gd.json5 index ef034bd9478..82d1da5d741 100644 --- a/src/assets/i18n/gd.json5 +++ b/src/assets/i18n/gd.json5 @@ -3279,26 +3279,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Mearachd a' faighinn choimhearsnachdan sàr-ìre", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Feumaidh tu an cead seo a thoirt gus crìoch a chur air a' chur-a-steach. Mura h-urrainn dhut cead a thoirt an-dràsta is urrainn dhut an obair a shàbhaladh agus tilleadh aig àm eile no an cur-a-steach a thoirt air falbh.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9482,10 +9469,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Cead-cleachdaidh cruthachail", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ath-chuairtich", @@ -9665,18 +9648,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Dh'obraich an luchdachadh suas", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -12824,17 +12795,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/gu.json5 b/src/assets/i18n/gu.json5 index bb5619807d2..dd6cafa82aa 100644 --- a/src/assets/i18n/gu.json5 +++ b/src/assets/i18n/gu.json5 @@ -1,11168 +1,8191 @@ { - // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "તમે આ પેજને ઍક્સેસ કરવા માટે અધિકૃત નથી. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", - // "401.link.home-page": "Take me to the home page", "401.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", - // "401.unauthorized": "Unauthorized", "401.unauthorized": "અનધિકૃત", - // "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.", "403.help": "તમને આ પેજને ઍક્સેસ કરવાની પરવાનગી નથી. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", - // "403.link.home-page": "Take me to the home page", "403.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", - // "403.forbidden": "Forbidden", "403.forbidden": "પ્રતિબંધિત", - // "500.page-internal-server-error": "Service unavailable", "500.page-internal-server-error": "સેવા ઉપલબ્ધ નથી", - // "500.help": "The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.", "500.help": "સર્વર અત્યારે જાળવણી ડાઉનટાઇમ અથવા ક્ષમતા સમસ્યાઓને કારણે તમારી વિનંતીને સેવા આપવા માટે અસમર્થ છે. કૃપા કરીને થોડીવાર પછી ફરી પ્રયાસ કરો.", - // "500.link.home-page": "Take me to the home page", "500.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", - // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ", "404.help": "અમે તે પેજ શોધી શકતા નથી જે તમે શોધી રહ્યા છો. પેજને ખસેડવામાં આવ્યું હશે અથવા કાઢી નાખવામાં આવ્યું હશે. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", - // "404.link.home-page": "Take me to the home page", "404.link.home-page": "મને હોમ પેજ પર લઈ જાઓ", - // "404.page-not-found": "Page not found", "404.page-not-found": "પેજ મળ્યું નથી", - // "error-page.description.401": "Unauthorized", "error-page.description.401": "અનધિકૃત", - // "error-page.description.403": "Forbidden", "error-page.description.403": "પ્રતિબંધિત", - // "error-page.description.500": "Service unavailable", "error-page.description.500": "સેવા ઉપલબ્ધ નથી", - // "error-page.description.404": "Page not found", "error-page.description.404": "પેજ મળ્યું નથી", - // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "ORCID મારફતે લૉગિન દરમિયાન એક ભૂલ આવી. ખાતરી કરો કે તમે DSpace સાથે તમારા ORCID ખાતા ઇમેઇલ સરનામાને શેર કર્યું છે. જો ભૂલ ચાલુ રહે, તો એડમિનિસ્ટ્રેટરને સંપર્ક કરો", - // "listelement.badge.access-status": "Access status:", - // TODO New key - Add a translation - "listelement.badge.access-status": "Access status:", - - // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "એમ્બાર્ગો", - // "access-status.metadata.only.listelement.badge": "Metadata only", "access-status.metadata.only.listelement.badge": "મેટાડેટા માત્ર", - // "access-status.open.access.listelement.badge": "Open Access", "access-status.open.access.listelement.badge": "ઓપન ઍક્સેસ", - // "access-status.restricted.listelement.badge": "Restricted", "access-status.restricted.listelement.badge": "પ્રતિબંધિત", - // "access-status.unknown.listelement.badge": "Unknown", "access-status.unknown.listelement.badge": "અજ્ઞાત", - // "admin.curation-tasks.breadcrumbs": "System curation tasks", "admin.curation-tasks.breadcrumbs": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", - // "admin.curation-tasks.title": "System curation tasks", "admin.curation-tasks.title": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", - // "admin.curation-tasks.header": "System curation tasks", "admin.curation-tasks.header": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ", - // "admin.registries.bitstream-formats.breadcrumbs": "Format registry", "admin.registries.bitstream-formats.breadcrumbs": "ફોર્મેટ રજિસ્ટ્રી", - // "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.create.breadcrumbs": "બિટસ્ટ્રીમ ફોર્મેટ", - // "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.", "admin.registries.bitstream-formats.create.failure.content": "નવું બિટસ્ટ્રીમ ફોર્મેટ બનાવતી વખતે એક ભૂલ આવી.", - // "admin.registries.bitstream-formats.create.failure.head": "Failure", "admin.registries.bitstream-formats.create.failure.head": "અસફળતા", - // "admin.registries.bitstream-formats.create.head": "Create bitstream format", "admin.registries.bitstream-formats.create.head": "બિટસ્ટ્રીમ ફોર્મેટ બનાવો", - // "admin.registries.bitstream-formats.create.new": "Add a new bitstream format", "admin.registries.bitstream-formats.create.new": "નવું બિટસ્ટ્રીમ ફોર્મેટ ઉમેરો", - // "admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.", "admin.registries.bitstream-formats.create.success.content": "નવું બિટસ્ટ્રીમ ફોર્મેટ સફળતાપૂર્વક બનાવવામાં આવ્યું.", - // "admin.registries.bitstream-formats.create.success.head": "Success", "admin.registries.bitstream-formats.create.success.head": "સફળતા", - // "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} ફોર્મેટ(ઓ) દૂર કરવામાં નિષ્ફળ", - // "admin.registries.bitstream-formats.delete.failure.head": "Failure", "admin.registries.bitstream-formats.delete.failure.head": "અસફળતા", - // "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} ફોર્મેટ(ઓ) સફળતાપૂર્વક દૂર કરવામાં આવ્યા", - // "admin.registries.bitstream-formats.delete.success.head": "Success", "admin.registries.bitstream-formats.delete.success.head": "સફળતા", - // "admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.", "admin.registries.bitstream-formats.description": "આ બિટસ્ટ્રીમ ફોર્મેટ્સની યાદી જાણીતા ફોર્મેટ્સ અને તેમની સપોર્ટ લેવલ વિશેની માહિતી પ્રદાન કરે છે.", - // "admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.edit.breadcrumbs": "બિટસ્ટ્રીમ ફોર્મેટ", - // "admin.registries.bitstream-formats.edit.description.hint": "", "admin.registries.bitstream-formats.edit.description.hint": "", - // "admin.registries.bitstream-formats.edit.description.label": "Description", "admin.registries.bitstream-formats.edit.description.label": "વર્ણન", - // "admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.", "admin.registries.bitstream-formats.edit.extensions.hint": "એક્સ્ટેન્શન્સ ફાઇલ એક્સ્ટેન્શન્સ છે જે અપલોડ કરેલી ફાઇલોના ફોર્મેટને આપમેળે ઓળખવા માટે વપરાય છે. તમે દરેક ફોર્મેટ માટે અનેક એક્સ્ટેન્શન્સ દાખલ કરી શકો છો.", - // "admin.registries.bitstream-formats.edit.extensions.label": "File extensions", "admin.registries.bitstream-formats.edit.extensions.label": "ફાઇલ એક્સ્ટેન્શન્સ", - // "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot", "admin.registries.bitstream-formats.edit.extensions.placeholder": "ડોટ વિના ફાઇલ એક્સ્ટેન્શન દાખલ કરો", - // "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.", "admin.registries.bitstream-formats.edit.failure.content": "બિટસ્ટ્રીમ ફોર્મેટ સંપાદિત કરતી વખતે એક ભૂલ આવી.", - // "admin.registries.bitstream-formats.edit.failure.head": "Failure", "admin.registries.bitstream-formats.edit.failure.head": "અસફળતા", - // "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", - // TODO New key - Add a translation - "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + "admin.registries.bitstream-formats.edit.head": "બિટસ્ટ્રીમ ફોર્મેટ: {{ format }}", - // "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.", "admin.registries.bitstream-formats.edit.internal.hint": "આંતરિક તરીકે ચિહ્નિત ફોર્મેટ્સ વપરાશકર્તા માટે છુપાયેલા છે અને વહીવટી હેતુઓ માટે વપરાય છે.", - // "admin.registries.bitstream-formats.edit.internal.label": "Internal", "admin.registries.bitstream-formats.edit.internal.label": "આંતરિક", - // "admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.", "admin.registries.bitstream-formats.edit.mimetype.hint": "આ ફોર્મેટ સાથે સંકળાયેલ MIME પ્રકાર, અનન્ય હોવો જરૂરી નથી.", - // "admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type", "admin.registries.bitstream-formats.edit.mimetype.label": "MIME પ્રકાર", - // "admin.registries.bitstream-formats.edit.shortDescription.hint": "A unique name for this format, (e.g. Microsoft Word XP or Microsoft Word 2000)", "admin.registries.bitstream-formats.edit.shortDescription.hint": "આ ફોર્મેટ માટેનું અનન્ય નામ, (ઉદાહરણ તરીકે, Microsoft Word XP અથવા Microsoft Word 2000)", - // "admin.registries.bitstream-formats.edit.shortDescription.label": "Name", "admin.registries.bitstream-formats.edit.shortDescription.label": "નામ", - // "admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.", "admin.registries.bitstream-formats.edit.success.content": "બિટસ્ટ્રીમ ફોર્મેટ સફળતાપૂર્વક સંપાદિત કરવામાં આવ્યું.", - // "admin.registries.bitstream-formats.edit.success.head": "Success", "admin.registries.bitstream-formats.edit.success.head": "સફળતા", - // "admin.registries.bitstream-formats.edit.supportLevel.hint": "The level of support your institution pledges for this format.", "admin.registries.bitstream-formats.edit.supportLevel.hint": "આ ફોર્મેટ માટે તમારું સંસ્થા જે સપોર્ટ લેવલ વચન આપે છે.", - // "admin.registries.bitstream-formats.edit.supportLevel.label": "Support level", "admin.registries.bitstream-formats.edit.supportLevel.label": "સપોર્ટ લેવલ", - // "admin.registries.bitstream-formats.head": "Bitstream Format Registry", "admin.registries.bitstream-formats.head": "બિટસ્ટ્રીમ ફોર્મેટ રજિસ્ટ્રી", - // "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.", "admin.registries.bitstream-formats.no-items": "બિટસ્ટ્રીમ ફોર્મેટ્સ બતાવવા માટે નથી.", - // "admin.registries.bitstream-formats.table.delete": "Delete selected", "admin.registries.bitstream-formats.table.delete": "પસંદ કરેલને કાઢી નાખો", - // "admin.registries.bitstream-formats.table.deselect-all": "Deselect all", "admin.registries.bitstream-formats.table.deselect-all": "બધા પસંદ કરેલને દૂર કરો", - // "admin.registries.bitstream-formats.table.internal": "internal", "admin.registries.bitstream-formats.table.internal": "આંતરિક", - // "admin.registries.bitstream-formats.table.mimetype": "MIME Type", "admin.registries.bitstream-formats.table.mimetype": "MIME પ્રકાર", - // "admin.registries.bitstream-formats.table.name": "Name", "admin.registries.bitstream-formats.table.name": "નામ", - // "admin.registries.bitstream-formats.table.selected": "Selected bitstream formats", "admin.registries.bitstream-formats.table.selected": "પસંદ કરેલ બિટસ્ટ્રીમ ફોર્મેટ્સ", - // "admin.registries.bitstream-formats.table.id": "ID", "admin.registries.bitstream-formats.table.id": "ID", - // "admin.registries.bitstream-formats.table.return": "Back", "admin.registries.bitstream-formats.table.return": "પાછા", - // "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known", "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "જાણીતું", - // "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported", "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "સપોર્ટેડ", - // "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown", "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "અજ્ઞાત", - // "admin.registries.bitstream-formats.table.supportLevel.head": "Support Level", "admin.registries.bitstream-formats.table.supportLevel.head": "સપોર્ટ લેવલ", - // "admin.registries.bitstream-formats.title": "Bitstream Format Registry", "admin.registries.bitstream-formats.title": "બિટસ્ટ્રીમ ફોર્મેટ રજિસ્ટ્રી", - // "admin.registries.bitstream-formats.select": "Select", "admin.registries.bitstream-formats.select": "પસંદ કરો", - // "admin.registries.bitstream-formats.deselect": "Deselect", "admin.registries.bitstream-formats.deselect": "પસંદ કરેલને દૂર કરો", - // "admin.registries.metadata.breadcrumbs": "Metadata registry", "admin.registries.metadata.breadcrumbs": "મેટાડેટા રજિસ્ટ્રી", - // "admin.registries.metadata.description": "The metadata registry maintains a list of all metadata fields available in the repository. These fields may be divided amongst multiple schemas. However, DSpace requires the qualified Dublin Core schema.", "admin.registries.metadata.description": "મેટાડેટા રજિસ્ટ્રી રિપોઝિટરીમાં ઉપલબ્ધ તમામ મેટાડેટા ફીલ્ડ્સની યાદી જાળવે છે. આ ફીલ્ડ્સને અનેક સ્કીમા વચ્ચે વિભાજિત કરી શકાય છે. જો કે, DSpace ને લાયક ડબલિન કોર સ્કીમાની જરૂર છે.", - // "admin.registries.metadata.form.create": "Create metadata schema", "admin.registries.metadata.form.create": "મેટાડેટા સ્કીમા બનાવો", - // "admin.registries.metadata.form.edit": "Edit metadata schema", "admin.registries.metadata.form.edit": "મેટાડેટા સ્કીમા સંપાદિત કરો", - // "admin.registries.metadata.form.name": "Name", "admin.registries.metadata.form.name": "નામ", - // "admin.registries.metadata.form.namespace": "Namespace", "admin.registries.metadata.form.namespace": "નેમસ્પેસ", - // "admin.registries.metadata.head": "Metadata Registry", "admin.registries.metadata.head": "મેટાડેટા રજિસ્ટ્રી", - // "admin.registries.metadata.schemas.no-items": "No metadata schemas to show.", "admin.registries.metadata.schemas.no-items": "બતાવવા માટે કોઈ મેટાડેટા સ્કીમા નથી.", - // "admin.registries.metadata.schemas.select": "Select", "admin.registries.metadata.schemas.select": "પસંદ કરો", - // "admin.registries.metadata.schemas.deselect": "Deselect", "admin.registries.metadata.schemas.deselect": "પસંદ કરેલને દૂર કરો", - // "admin.registries.metadata.schemas.table.delete": "Delete selected", "admin.registries.metadata.schemas.table.delete": "પસંદ કરેલને કાઢી નાખો", - // "admin.registries.metadata.schemas.table.selected": "Selected schemas", "admin.registries.metadata.schemas.table.selected": "પસંદ કરેલ સ્કીમા", - // "admin.registries.metadata.schemas.table.id": "ID", "admin.registries.metadata.schemas.table.id": "ID", - // "admin.registries.metadata.schemas.table.name": "Name", "admin.registries.metadata.schemas.table.name": "નામ", - // "admin.registries.metadata.schemas.table.namespace": "Namespace", "admin.registries.metadata.schemas.table.namespace": "નેમસ્પેસ", - // "admin.registries.metadata.title": "Metadata Registry", "admin.registries.metadata.title": "મેટાડેટા રજિસ્ટ્રી", - // "admin.registries.schema.breadcrumbs": "Metadata schema", "admin.registries.schema.breadcrumbs": "મેટાડેટા સ્કીમા", - // "admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".", "admin.registries.schema.description": "આ {{namespace}} માટેનું મેટાડેટા સ્કીમા છે.", - // "admin.registries.schema.fields.select": "Select", "admin.registries.schema.fields.select": "પસંદ કરો", - // "admin.registries.schema.fields.deselect": "Deselect", "admin.registries.schema.fields.deselect": "પસંદ કરેલને દૂર કરો", - // "admin.registries.schema.fields.head": "Schema metadata fields", "admin.registries.schema.fields.head": "સ્કીમા મેટાડેટા ફીલ્ડ્સ", - // "admin.registries.schema.fields.no-items": "No metadata fields to show.", "admin.registries.schema.fields.no-items": "બતાવવા માટે કોઈ મેટાડેટા ફીલ્ડ્સ નથી.", - // "admin.registries.schema.fields.table.delete": "Delete selected", "admin.registries.schema.fields.table.delete": "પસંદ કરેલને કાઢી નાખો", - // "admin.registries.schema.fields.table.field": "Field", "admin.registries.schema.fields.table.field": "ફીલ્ડ", - // "admin.registries.schema.fields.table.selected": "Selected metadata fields", "admin.registries.schema.fields.table.selected": "પસંદ કરેલ મેટાડેટા ફીલ્ડ્સ", - // "admin.registries.schema.fields.table.id": "ID", "admin.registries.schema.fields.table.id": "ID", - // "admin.registries.schema.fields.table.scopenote": "Scope Note", "admin.registries.schema.fields.table.scopenote": "સ્કોપ નોંધ", - // "admin.registries.schema.form.create": "Create metadata field", "admin.registries.schema.form.create": "મેટાડેટા ફીલ્ડ બનાવો", - // "admin.registries.schema.form.edit": "Edit metadata field", "admin.registries.schema.form.edit": "મેટાડેટા ફીલ્ડ સંપાદિત કરો", - // "admin.registries.schema.form.element": "Element", "admin.registries.schema.form.element": "એલિમેન્ટ", - // "admin.registries.schema.form.qualifier": "Qualifier", "admin.registries.schema.form.qualifier": "ક્વોલિફાયર", - // "admin.registries.schema.form.scopenote": "Scope Note", "admin.registries.schema.form.scopenote": "સ્કોપ નોંધ", - // "admin.registries.schema.head": "Metadata Schema", "admin.registries.schema.head": "મેટાડેટા સ્કીમા", - // "admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.created": "સફળતાપૂર્વક મેટાડેટા સ્કીમા {{prefix}} બનાવ્યું", - // "admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.failure": "{{amount}} મેટાડેટા સ્કીમા કાઢી નાખવામાં નિષ્ફળ", - // "admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.success": "{{amount}} મેટાડેટા સ્કીમા સફળતાપૂર્વક કાઢી નાખ્યા", - // "admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.edited": "સફળતાપૂર્વક મેટાડેટા સ્કીમા {{prefix}} સંપાદિત કર્યું", - // "admin.registries.schema.notification.failure": "Error", "admin.registries.schema.notification.failure": "ભૂલ", - // "admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"", "admin.registries.schema.notification.field.created": "સફળતાપૂર્વક મેટાડેટા ફીલ્ડ {{field}} બનાવ્યું", - // "admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.failure": "{{amount}} મેટાડેટા ફીલ્ડ્સ કાઢી નાખવામાં નિષ્ફળ", - // "admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.success": "{{amount}} મેટાડેટા ફીલ્ડ્સ સફળતાપૂર્વક કાઢી નાખ્યા", - // "admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"", "admin.registries.schema.notification.field.edited": "સફળતાપૂર્વક મેટાડેટા ફીલ્ડ {{field}} સંપાદિત કર્યું", - // "admin.registries.schema.notification.success": "Success", "admin.registries.schema.notification.success": "સફળતા", - // "admin.registries.schema.return": "Back", "admin.registries.schema.return": "પાછા", - // "admin.registries.schema.title": "Metadata Schema Registry", "admin.registries.schema.title": "મેટાડેટા સ્કીમા રજિસ્ટ્રી", - // "admin.access-control.bulk-access.breadcrumbs": "Bulk Access Management", "admin.access-control.bulk-access.breadcrumbs": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", - // "administrativeBulkAccess.search.results.head": "Search Results", "administrativeBulkAccess.search.results.head": "શોધ પરિણામો", - // "admin.access-control.bulk-access": "Bulk Access Management", "admin.access-control.bulk-access": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", - // "admin.access-control.bulk-access.title": "Bulk Access Management", "admin.access-control.bulk-access.title": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", - // "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", - // TODO New key - Add a translation - "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + "admin.access-control.bulk-access-browse.header": "પગલું 1: ઑબ્જેક્ટ્સ પસંદ કરો", - // "admin.access-control.bulk-access-browse.search.header": "Search", "admin.access-control.bulk-access-browse.search.header": "શોધ", - // "admin.access-control.bulk-access-browse.selected.header": "Current selection({{number}})", "admin.access-control.bulk-access-browse.selected.header": "વર્તમાન પસંદગી({{number}})", - // "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", - // TODO New key - Add a translation - "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + "admin.access-control.bulk-access-settings.header": "પગલું 2: કરવા માટેની ક્રિયા", - // "admin.access-control.epeople.actions.delete": "Delete EPerson", "admin.access-control.epeople.actions.delete": "EPerson કાઢી નાખો", - // "admin.access-control.epeople.actions.impersonate": "Impersonate EPerson", "admin.access-control.epeople.actions.impersonate": "EPerson તરીકે કામ કરો", - // "admin.access-control.epeople.actions.reset": "Reset password", "admin.access-control.epeople.actions.reset": "પાસવર્ડ રીસેટ કરો", - // "admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson", "admin.access-control.epeople.actions.stop-impersonating": "EPerson તરીકે કામ કરવાનું બંધ કરો", - // "admin.access-control.epeople.breadcrumbs": "EPeople", "admin.access-control.epeople.breadcrumbs": "EPeople", - // "admin.access-control.epeople.title": "EPeople", "admin.access-control.epeople.title": "EPeople", - // "admin.access-control.epeople.edit.breadcrumbs": "New EPerson", "admin.access-control.epeople.edit.breadcrumbs": "નવું EPerson", - // "admin.access-control.epeople.edit.title": "New EPerson", "admin.access-control.epeople.edit.title": "નવું EPerson", - // "admin.access-control.epeople.add.breadcrumbs": "Add EPerson", "admin.access-control.epeople.add.breadcrumbs": "EPerson ઉમેરો", - // "admin.access-control.epeople.add.title": "Add EPerson", "admin.access-control.epeople.add.title": "EPerson ઉમેરો", - // "admin.access-control.epeople.head": "EPeople", "admin.access-control.epeople.head": "EPeople", - // "admin.access-control.epeople.search.head": "Search", "admin.access-control.epeople.search.head": "શોધ", - // "admin.access-control.epeople.button.see-all": "Browse All", "admin.access-control.epeople.button.see-all": "બધા બ્રાઉઝ કરો", - // "admin.access-control.epeople.search.scope.metadata": "Metadata", "admin.access-control.epeople.search.scope.metadata": "મેટાડેટા", - // "admin.access-control.epeople.search.scope.email": "Email (exact)", "admin.access-control.epeople.search.scope.email": "ઇમેઇલ (ચોક્કસ)", - // "admin.access-control.epeople.search.button": "Search", "admin.access-control.epeople.search.button": "શોધ", - // "admin.access-control.epeople.search.placeholder": "Search people...", "admin.access-control.epeople.search.placeholder": "લોકોને શોધો...", - // "admin.access-control.epeople.button.add": "Add EPerson", "admin.access-control.epeople.button.add": "EPerson ઉમેરો", - // "admin.access-control.epeople.table.id": "ID", "admin.access-control.epeople.table.id": "ID", - // "admin.access-control.epeople.table.name": "Name", "admin.access-control.epeople.table.name": "નામ", - // "admin.access-control.epeople.table.email": "Email (exact)", "admin.access-control.epeople.table.email": "ઇમેઇલ (ચોક્કસ)", - // "admin.access-control.epeople.table.edit": "Edit", "admin.access-control.epeople.table.edit": "સંપાદિત કરો", - // "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", - // "admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group", "admin.access-control.epeople.table.edit.buttons.edit-disabled": "તમે આ જૂથને સંપાદિત કરવા માટે અધિકૃત નથી", - // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "{{name}} ને કાઢી નાખો", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", - - // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "બતાવવા માટે કોઈ EPeople નથી.", - // "admin.access-control.epeople.form.create": "Create EPerson", "admin.access-control.epeople.form.create": "EPerson બનાવો", - // "admin.access-control.epeople.form.edit": "Edit EPerson", "admin.access-control.epeople.form.edit": "EPerson સંપાદિત કરો", - // "admin.access-control.epeople.form.firstName": "First name", "admin.access-control.epeople.form.firstName": "પ્રથમ નામ", - // "admin.access-control.epeople.form.lastName": "Last name", "admin.access-control.epeople.form.lastName": "છેલ્લું નામ", - // "admin.access-control.epeople.form.email": "Email", "admin.access-control.epeople.form.email": "ઇમેઇલ", - // "admin.access-control.epeople.form.emailHint": "Must be a valid email address", "admin.access-control.epeople.form.emailHint": "માન્ય ઇમેઇલ સરનામું હોવું જોઈએ", - // "admin.access-control.epeople.form.canLogIn": "Can log in", "admin.access-control.epeople.form.canLogIn": "લૉગ ઇન કરી શકે છે", - // "admin.access-control.epeople.form.requireCertificate": "Requires certificate", "admin.access-control.epeople.form.requireCertificate": "પ્રમાણપત્રની જરૂર છે", - // "admin.access-control.epeople.form.return": "Back", "admin.access-control.epeople.form.return": "પાછા", - // "admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.success": "સફળતાપૂર્વક EPerson {{name}} બનાવ્યું", - // "admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.failure": "EPerson {{name}} બનાવવામાં નિષ્ફળ", - // "admin.access-control.epeople.form.notification.created.failure.emailInUse": "Failed to create EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson {{name}} બનાવવામાં નિષ્ફળ, ઇમેઇલ {{email}} પહેલેથી જ વપરાય છે.", - // "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Failed to edit EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson {{name}} સંપાદિત કરવામાં નિષ્ફળ, ઇમેઇલ {{email}} પહેલેથી જ વપરાય છે.", - // "admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.success": "સફળતાપૂર્વક EPerson {{name}} સંપાદિત કર્યું", - // "admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.failure": "EPerson {{name}} સંપાદિત કરવામાં નિષ્ફળ", - // "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.success": "સફળતાપૂર્વક EPerson {{name}} કાઢી નાખ્યું", - // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.failure": "EPerson {{name}} કાઢી નાખવામાં નિષ્ફળ", - // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", - // TODO New key - Add a translation - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", + "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "આ જૂથોના સભ્ય:", - // "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": "નામ", - // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", "admin.access-control.epeople.form.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", - // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", "admin.access-control.epeople.form.memberOfNoGroups": "આ EPerson કોઈ જૂથનો સભ્ય નથી", - // "admin.access-control.epeople.form.goToGroups": "Add to groups", "admin.access-control.epeople.form.goToGroups": "જૂથોમાં ઉમેરો", - // "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", + "admin.access-control.epeople.notification.deleted.failure": "ID {{id}} સાથે EPerson કાઢી નાખતી વખતે ભૂલ આવી, કોડ: {{statusCode}} અને મેસેજ: {{restResponse.errorMessage}}", + + "admin.access-control.epeople.notification.deleted.success": "સફળતાપૂર્વક EPerson: {{name}} કાઢી નાખ્યું", + + "admin.access-control.groups.title": "જૂથો", + + "admin.access-control.groups.breadcrumbs": "જૂથો", + + "admin.access-control.groups.singleGroup.breadcrumbs": "જૂથ સંપાદિત કરો", + + "admin.access-control.groups.title.singleGroup": "જૂથ સંપાદિત કરો", + + "admin.access-control.groups.title.addGroup": "નવું જૂથ", + + "admin.access-control.groups.addGroup.breadcrumbs": "નવું જૂથ", + + "admin.access-control.groups.head": "જૂથો", + + "admin.access-control.groups.button.add": "જૂથ ઉમેરો", + + "admin.access-control.groups.search.head": "જૂથો શોધો", + + "admin.access-control.groups.button.see-all": "બધા બ્રાઉઝ કરો", + + "admin.access-control.groups.search.button": "શોધો", + + "admin.access-control.groups.search.placeholder": "જૂથો શોધો...", + + "admin.access-control.groups.table.id": "ID", + + "admin.access-control.groups.table.name": "નામ", + + "admin.access-control.groups.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", + + "admin.access-control.groups.table.members": "સભ્યો", + + "admin.access-control.groups.table.edit": "સંપાદિત કરો", + + "admin.access-control.groups.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", + + "admin.access-control.groups.table.edit.buttons.remove": "{{name}} ને કાઢી નાખો", + + "admin.access-control.groups.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", + + "admin.access-control.groups.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{name}} કાઢી નાખ્યું", + + "admin.access-control.groups.notification.deleted.failure.title": "જૂથ {{name}} કાઢી નાખવામાં નિષ્ફળ", + + "admin.access-control.groups.notification.deleted.failure.content": "કારણ: {{cause}}", + + "admin.access-control.groups.form.alert.permanent": "આ જૂથ કાયમી છે, તેથી તેને સંપાદિત અથવા કાઢી શકાતું નથી. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", + + "admin.access-control.groups.form.alert.workflowGroup": "આ જૂથને સંપાદિત અથવા કાઢી શકાતું નથી કારણ કે તે {{name}} {{comcol}} માં સબમિશન અને વર્કફ્લો પ્રક્રિયામાં ભૂમિકા સાથે મેળ ખાતું છે. તમે તેને {{comcolEditRolesRoute}} પૃષ્ઠના સંપાદન {{comcol}} પર ભૂમિકા સોંપો ટેબમાંથી કાઢી શકો છો. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", + + "admin.access-control.groups.form.head.create": "જૂથ બનાવો", + + "admin.access-control.groups.form.head.edit": "જૂથ સંપાદિત કરો", + + "admin.access-control.groups.form.groupName": "જૂથનું નામ", + + "admin.access-control.groups.form.groupCommunity": "સમુદાય અથવા સંગ્રહ", + + "admin.access-control.groups.form.groupDescription": "વર્ણન", + + "admin.access-control.groups.form.notification.created.success": "સફળતાપૂર્વક જૂથ {{name}} બનાવ્યું", + + "admin.access-control.groups.form.notification.created.failure": "જૂથ {{name}} બનાવવામાં નિષ્ફળ", + + "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "જૂથ {{name}} બનાવવામાં નિષ્ફળ, ખાતરી કરો કે નામ પહેલેથી જ વપરાય નથી.", + + "admin.access-control.groups.form.notification.edited.failure": "જૂથ {{name}} સંપાદિત કરવામાં નિષ્ફળ", + + "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "નામ {{name}} પહેલેથી જ વપરાય છે!", + + "admin.access-control.groups.form.notification.edited.success": "સફળતાપૂર્વક જૂથ {{name}} સંપાદિત કર્યું", + + "admin.access-control.groups.form.actions.delete": "જૂથ કાઢી નાખો", + + "admin.access-control.groups.form.delete-group.modal.header": "જૂથ {{ dsoName }} કાઢી નાખો", + + "admin.access-control.groups.form.delete-group.modal.info": "શું તમે ખરેખર જૂથ {{ dsoName }} કાઢી નાખવા માંગો છો?", + + "admin.access-control.groups.form.delete-group.modal.cancel": "રદ કરો", + + "admin.access-control.groups.form.delete-group.modal.confirm": "કાઢી નાખો", + + "admin.access-control.groups.form.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{ name }} કાઢી નાખ્યું", + + "admin.access-control.groups.form.notification.deleted.failure.title": "જૂથ {{ name }} કાઢી નાખવામાં નિષ્ફળ", + + "admin.access-control.groups.form.notification.deleted.failure.content": "કારણ: {{ cause }}", + + "admin.access-control.groups.form.members-list.head": "EPeople", + + "admin.access-control.groups.form.members-list.search.head": "EPeople ઉમેરો", + + "admin.access-control.groups.form.members-list.button.see-all": "બધા બ્રાઉઝ કરો", + + "admin.access-control.groups.form.members-list.headMembers": "વર્તમાન સભ્યો", + + "admin.access-control.groups.form.members-list.search.button": "શોધો", + + "admin.access-control.groups.form.members-list.table.id": "ID", + + "admin.access-control.groups.form.members-list.table.name": "નામ", + + "admin.access-control.groups.form.members-list.table.identity": "ઓળખ", + + "admin.access-control.groups.form.members-list.table.email": "ઇમેઇલ", + + "admin.access-control.groups.form.members-list.table.netid": "NetID", + + "admin.access-control.groups.form.members-list.table.edit": "દૂર કરો / ઉમેરો", + + "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "{{name}} નામના સભ્યને દૂર કરો", + + "admin.access-control.groups.form.members-list.notification.success.addMember": "સફળતાપૂર્વક {{name}} સભ્ય ઉમેર્યું", + + "admin.access-control.groups.form.members-list.notification.failure.addMember": "{{name}} સભ્ય ઉમેરવામાં નિષ્ફળ", + + "admin.access-control.groups.form.members-list.notification.success.deleteMember": "સફળતાપૂર્વક {{name}} સભ્ય કાઢી નાખ્યું", + + "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "{{name}} સભ્ય કાઢી નાખવામાં નિષ્ફળ", + + "admin.access-control.groups.form.members-list.table.edit.buttons.add": "{{name}} નામના સભ્યને ઉમેરો", + + "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", + + "admin.access-control.groups.form.members-list.no-members-yet": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", + + "admin.access-control.groups.form.members-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", + + "admin.access-control.groups.form.subgroups-list.notification.failure": "કંઈક ખોટું થયું: {{cause}}", - // "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.head": "જૂથો", + + "admin.access-control.groups.form.subgroups-list.search.head": "સબગ્રુપ ઉમેરો", + + "admin.access-control.groups.form.subgroups-list.button.see-all": "બધા બ્રાઉઝ કરો", + + "admin.access-control.groups.form.subgroups-list.headSubgroups": "વર્તમાન સબગ્રુપ્સ", + + "admin.access-control.groups.form.subgroups-list.search.button": "શોધો", + + "admin.access-control.groups.form.subgroups-list.table.id": "ID", + + "admin.access-control.groups.form.subgroups-list.table.name": "નામ", + + "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", + + "admin.access-control.groups.form.subgroups-list.table.edit": "દૂર કરો / ઉમેરો", + + "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "{{name}} નામના સબગ્રુપને દૂર કરો", + + "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "{{name}} નામના સબગ્રુપને ઉમેરો", + + "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ ઉમેર્યું", + + "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "{{name}} સબગ્રુપ ઉમેરવામાં નિષ્ફળ", + + "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ કાઢી નાખ્યું", + + "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "{{name}} સબગ્રુપ કાઢી નાખવામાં નિષ્ફળ", + + "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", + + "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "આ વર્તમાન જૂથ છે, તેને ઉમેરવામાં નથી.", + + "admin.access-control.groups.form.subgroups-list.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", + + "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "જૂથમાં હજી સુધી કોઈ સબગ્રુપ્સ નથી.", + + "admin.access-control.groups.form.return": "પાછા", + + "admin.quality-assurance.breadcrumbs": "ગુણવત્તા ખાતરી", + + "admin.notifications.event.breadcrumbs": "ગુણવત્તા ખાતરી સૂચનો", + + "admin.notifications.event.page.title": "ગુણવત્તા ખાતરી સૂચનો", + + "admin.quality-assurance.page.title": "ગુણવત્તા ખાતરી", + + "admin.notifications.source.breadcrumbs": "ગુણવત્તા ખાતરી", + + "admin.access-control.groups.form.tooltip.editGroupPage": "આ પૃષ્ઠ પર, તમે જૂથની ગુણધર્મો અને સભ્યોને ફેરફાર કરી શકો છો. ટોચના વિભાગમાં, તમે જૂથનું નામ અને વર્ણન સંપાદિત કરી શકો છો, જો કે આ સંગ્રહ અથવા સમુદાય માટેનું એડમિન જૂથ હોય, તો જૂથનું નામ અને વર્ણન આપમેળે જનરેટ થાય છે અને તેને સંપાદિત કરી શકાતું નથી. નીચેના વિભાગોમાં, તમે જૂથ સભ્યતાને ફેરફાર કરી શકો છો. વધુ વિગતો માટે [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) જુઓ.", + + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "આ જૂથમાં EPerson ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને વપરાશકર્તાઓને શોધો (શોધ બારની ડાબી બાજુના ડ્રોપડાઉનનો ઉપયોગ કરીને મેટાડેટા અથવા ઇમેઇલ દ્વારા શોધવાનું પસંદ કરો). પછી નીચેની યાદીમાં દરેક વપરાશકર્તા માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક વપરાશકર્તા માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", + + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "આ જૂથમાં સબગ્રુપ ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને જૂથોને શોધો. પછી નીચેની યાદીમાં દરેક જૂથ માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક જૂથ માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", + + "admin.reports.collections.title": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + + "admin.reports.collections.breadcrumbs": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + + "admin.reports.collections.head": "સંગ્રહ ફિલ્ટર રિપોર્ટ", + + "admin.reports.button.show-collections": "સંગ્રહો બતાવો", + + "admin.reports.collections.collections-report": "સંગ્રહ રિપોર્ટ", + + "admin.reports.collections.item-results": "આઇટમ પરિણામો", + + "admin.reports.collections.community": "સમુદાય", + + "admin.reports.collections.collection": "સંગ્રહ", + + "admin.reports.collections.nb_items": "આઇટમ્સની સંખ્યા", + + "admin.reports.collections.match_all_selected_filters": "બધા પસંદ કરેલ ફિલ્ટર્સ સાથે મેળ ખાતું", + + "admin.reports.items.breadcrumbs": "મેટાડેટા ક્વેરી રિપોર્ટ", + + "admin.reports.items.head": "મેટાડેટા ક્વેરી રિપોર્ટ", + + "admin.reports.items.run": "આઇટમ ક્વેરી ચલાવો", + + "admin.reports.items.section.collectionSelector": "સંગ્રહ પસંદગીકાર", + + "admin.reports.items.section.metadataFieldQueries": "મેટાડેટા ફીલ્ડ ક્વેરીઝ", + + "admin.reports.items.predefinedQueries": "પૂર્વનિર્ધારિત ક્વેરીઝ", + + "admin.reports.items.section.limitPaginateQueries": "ક્વેરીઝ મર્યાદિત/પેજિનેટ", + + "admin.reports.items.limit": "મર્યાદા/", + + "admin.reports.items.offset": "ઓફસેટ", + + "admin.reports.items.wholeRepo": "સંપૂર્ણ રિપોઝિટરી", + + "admin.reports.items.anyField": "કોઈપણ ફીલ્ડ", + + "admin.reports.items.predicate.exists": "અસ્તિત્વમાં છે", + + "admin.reports.items.predicate.doesNotExist": "અસ્તિત્વમાં નથી", + + "admin.reports.items.predicate.equals": "સમાન છે", + + "admin.reports.items.predicate.doesNotEqual": "સમાન નથી", + + "admin.reports.items.predicate.like": "માટે", + + "admin.reports.items.predicate.notLike": "માટે નથી", + + "admin.reports.items.predicate.contains": "સમાવે છે", + + "admin.reports.items.predicate.doesNotContain": "સમાવિષ્ટ નથી", + + "admin.reports.items.predicate.matches": "મેળ ખાતું", + + "admin.reports.items.predicate.doesNotMatch": "મેળ ખાતું નથી", + + "admin.reports.items.preset.new": "નવી ક્વેરી", + + "admin.reports.items.preset.hasNoTitle": "કોઈ શીર્ષક નથી", + + "admin.reports.items.preset.hasNoIdentifierUri": "કોઈ dc.identifier.uri નથી", + + "admin.access-control.epeople.notification.deleted.failure": "ID {{id}} સાથે EPerson કાઢી નાખતી વખતે ભૂલ આવી, કોડ: {{statusCode}} અને મેસેજ: {{restResponse.errorMessage}}", + + "admin.access-control.epeople.notification.deleted.success": "સફળતાપૂર્વક EPerson: {{name}} કાઢી નાખ્યું", - // "admin.access-control.groups.title": "Groups", "admin.access-control.groups.title": "જૂથો", - // "admin.access-control.groups.breadcrumbs": "Groups", "admin.access-control.groups.breadcrumbs": "જૂથો", - // "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group", "admin.access-control.groups.singleGroup.breadcrumbs": "જૂથ સંપાદિત કરો", - // "admin.access-control.groups.title.singleGroup": "Edit Group", "admin.access-control.groups.title.singleGroup": "જૂથ સંપાદિત કરો", - // "admin.access-control.groups.title.addGroup": "New Group", "admin.access-control.groups.title.addGroup": "નવું જૂથ", - // "admin.access-control.groups.addGroup.breadcrumbs": "New Group", "admin.access-control.groups.addGroup.breadcrumbs": "નવું જૂથ", - // "admin.access-control.groups.head": "Groups", "admin.access-control.groups.head": "જૂથો", - // "admin.access-control.groups.button.add": "Add group", "admin.access-control.groups.button.add": "જૂથ ઉમેરો", - // "admin.access-control.groups.search.head": "Search groups", "admin.access-control.groups.search.head": "જૂથો શોધો", - // "admin.access-control.groups.button.see-all": "Browse all", "admin.access-control.groups.button.see-all": "બધા બ્રાઉઝ કરો", - // "admin.access-control.groups.search.button": "Search", "admin.access-control.groups.search.button": "શોધો", - // "admin.access-control.groups.search.placeholder": "Search groups...", "admin.access-control.groups.search.placeholder": "જૂથો શોધો...", - // "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": "નામ", - // "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", - // "admin.access-control.groups.table.members": "Members", "admin.access-control.groups.table.members": "સભ્યો", - // "admin.access-control.groups.table.edit": "Edit", "admin.access-control.groups.table.edit": "સંપાદિત કરો", - // "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો", - // "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.remove": "{{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": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી", - // "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"", "admin.access-control.groups.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{name}} કાઢી નાખ્યું", - // "admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"", "admin.access-control.groups.notification.deleted.failure.title": "જૂથ {{name}} કાઢી નાખવામાં નિષ્ફળ", - // "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", - // TODO New key - Add a translation - "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + "admin.access-control.groups.notification.deleted.failure.content": "કારણ: {{cause}}", - // "admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.permanent": "આ જૂથ કાયમી છે, તેથી તેને સંપાદિત અથવા કાઢી શકાતું નથી. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", - // "admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the \"assign roles\" tab on the edit {{comcol}} page. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.workflowGroup": "આ જૂથને સંપાદિત અથવા કાઢી શકાતું નથી કારણ કે તે {{name}} {{comcol}} માં સબમિશન અને વર્કફ્લો પ્રક્રિયામાં ભૂમિકા સાથે મેળ ખાતું છે. તમે તેને {{comcolEditRolesRoute}} પૃષ્ઠના સંપાદન {{comcol}} પર ભૂમિકા સોંપો ટેબમાંથી કાઢી શકો છો. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.", - // "admin.access-control.groups.form.head.create": "Create group", "admin.access-control.groups.form.head.create": "જૂથ બનાવો", - // "admin.access-control.groups.form.head.edit": "Edit group", "admin.access-control.groups.form.head.edit": "જૂથ સંપાદિત કરો", - // "admin.access-control.groups.form.groupName": "Group name", "admin.access-control.groups.form.groupName": "જૂથનું નામ", - // "admin.access-control.groups.form.groupCommunity": "Community or Collection", "admin.access-control.groups.form.groupCommunity": "સમુદાય અથવા સંગ્રહ", - // "admin.access-control.groups.form.groupDescription": "Description", "admin.access-control.groups.form.groupDescription": "વર્ણન", - // "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.success": "સફળતાપૂર્વક જૂથ {{name}} બનાવ્યું", - // "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.failure": "જૂથ {{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.", - // TODO New key - Add a translation - "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": "જૂથ {{name}} બનાવવામાં નિષ્ફળ, ખાતરી કરો કે નામ પહેલેથી જ વપરાય નથી.", - // "admin.access-control.groups.form.notification.edited.failure": "Failed to edit Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.failure": "જૂથ {{name}} સંપાદિત કરવામાં નિષ્ફળ", - // "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!", "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "નામ {{name}} પહેલેથી જ વપરાય છે!", - // "admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.success": "સફળતાપૂર્વક જૂથ {{name}} સંપાદિત કર્યું", - // "admin.access-control.groups.form.actions.delete": "Delete Group", "admin.access-control.groups.form.actions.delete": "જૂથ કાઢી નાખો", - // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "જૂથ {{ dsoName }} કાઢી નાખો", - // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", "admin.access-control.groups.form.delete-group.modal.info": "શું તમે ખરેખર જૂથ {{ dsoName }} કાઢી નાખવા માંગો છો?", - // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", "admin.access-control.groups.form.delete-group.modal.cancel": "રદ કરો", - // "admin.access-control.groups.form.delete-group.modal.confirm": "Delete", "admin.access-control.groups.form.delete-group.modal.confirm": "કાઢી નાખો", - // "admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{ name }} કાઢી નાખ્યું", - // "admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.failure.title": "જૂથ {{ name }} કાઢી નાખવામાં નિષ્ફળ", - // "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", - // TODO New key - Add a translation - "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + "admin.access-control.groups.form.notification.deleted.failure.content": "કારણ: {{ cause }}", - // "admin.access-control.groups.form.members-list.head": "EPeople", "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": "EPeople ઉમેરો", - // "admin.access-control.groups.form.members-list.button.see-all": "Browse All", "admin.access-control.groups.form.members-list.button.see-all": "બધા બ્રાઉઝ કરો", - // "admin.access-control.groups.form.members-list.headMembers": "Current Members", "admin.access-control.groups.form.members-list.headMembers": "વર્તમાન સભ્યો", - // "admin.access-control.groups.form.members-list.search.button": "Search", "admin.access-control.groups.form.members-list.search.button": "શોધો", - // "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": "નામ", - // "admin.access-control.groups.form.members-list.table.identity": "Identity", "admin.access-control.groups.form.members-list.table.identity": "ઓળખ", - // "admin.access-control.groups.form.members-list.table.email": "Email", "admin.access-control.groups.form.members-list.table.email": "ઇમેઇલ", - // "admin.access-control.groups.form.members-list.table.netid": "NetID", "admin.access-control.groups.form.members-list.table.netid": "NetID", - // "admin.access-control.groups.form.members-list.table.edit": "Remove / Add", "admin.access-control.groups.form.members-list.table.edit": "દૂર કરો / ઉમેરો", - // "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": "{{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": "Successfully added member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.success.addMember": "સફળતાપૂર્વક {{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": "Failed to add member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.addMember": "{{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": "Successfully deleted member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.success.deleteMember": "સફળતાપૂર્વક {{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": "Failed to delete member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "{{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": "{{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": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", - // "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": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", - // "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search", "admin.access-control.groups.form.members-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", - // "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", - // TODO New key - Add a translation - "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure": "કંઈક ખોટું થયું: {{cause}}", - // "admin.access-control.groups.form.subgroups-list.head": "Groups", "admin.access-control.groups.form.subgroups-list.head": "જૂથો", - // "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup", "admin.access-control.groups.form.subgroups-list.search.head": "સબગ્રુપ ઉમેરો", - // "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All", "admin.access-control.groups.form.subgroups-list.button.see-all": "બધા બ્રાઉઝ કરો", - // "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups", "admin.access-control.groups.form.subgroups-list.headSubgroups": "વર્તમાન સબગ્રુપ્સ", - // "admin.access-control.groups.form.subgroups-list.search.button": "Search", "admin.access-control.groups.form.subgroups-list.search.button": "શોધો", - // "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": "નામ", - // "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "સંગ્રહ/સમુદાય", - // "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add", "admin.access-control.groups.form.subgroups-list.table.edit": "દૂર કરો / ઉમેરો", - // "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": "{{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": "{{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": "Successfully added subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "સફળતાપૂર્વક {{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": "Failed to add subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "{{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": "Successfully deleted subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "સફળતાપૂર્વક {{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": "Failed to delete subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "{{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": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", - // "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": "આ વર્તમાન જૂથ છે, તેને ઉમેરવામાં નથી.", - // "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": "આ નામ અથવા 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": "જૂથમાં હજી સુધી કોઈ સબગ્રુપ્સ નથી.", - // "admin.access-control.groups.form.return": "Back", "admin.access-control.groups.form.return": "પાછા", - // "admin.quality-assurance.breadcrumbs": "Quality Assurance", "admin.quality-assurance.breadcrumbs": "ગુણવત્તા ખાતરી", - // "admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions", "admin.notifications.event.breadcrumbs": "ગુણવત્તા ખાતરી સૂચનો", - // "admin.notifications.event.page.title": "Quality Assurance Suggestions", "admin.notifications.event.page.title": "ગુણવત્તા ખાતરી સૂચનો", - // "admin.quality-assurance.page.title": "Quality Assurance", "admin.quality-assurance.page.title": "ગુણવત્તા ખાતરી", - // "admin.notifications.source.breadcrumbs": "Quality Assurance", "admin.notifications.source.breadcrumbs": "ગુણવત્તા ખાતરી", - // "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", + "admin.access-control.groups.form.tooltip.editGroupPage": "આ પૃષ્ઠ પર, તમે જૂથની ગુણધર્મો અને સભ્યોને ફેરફાર કરી શકો છો. ટોચના વિભાગમાં, તમે જૂથનું નામ અને વર્ણન સંપાદિત કરી શકો છો, જો કે આ સંગ્રહ અથવા સમુદાય માટેનું એડમિન જૂથ હોય, તો જૂથનું નામ અને વર્ણન આપમેળે જનરેટ થાય છે અને તેને સંપાદિત કરી શકાતું નથી. નીચેના વિભાગોમાં, તમે જૂથ સભ્યતાને ફેરફાર કરી શકો છો. વધુ વિગતો માટે [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) જુઓ.", - // "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "આ જૂથમાં EPerson ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને વપરાશકર્તાઓને શોધો (શોધ બારની ડાબી બાજુના ડ્રોપડાઉનનો ઉપયોગ કરીને મેટાડેટા અથવા ઇમેઇલ દ્વારા શોધવાનું પસંદ કરો). પછી નીચેની યાદીમાં દરેક વપરાશકર્તા માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક વપરાશકર્તા માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", - // "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "આ જૂથમાં સબગ્રુપ ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને જૂથોને શોધો. પછી નીચેની યાદીમાં દરેક જૂથ માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક જૂથ માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.", - // "admin.reports.collections.title": "Collection Filter Report", "admin.reports.collections.title": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - // "admin.reports.collections.breadcrumbs": "Collection Filter Report", "admin.reports.collections.breadcrumbs": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - // "admin.reports.collections.head": "Collection Filter Report", "admin.reports.collections.head": "સંગ્રહ ફિલ્ટર રિપોર્ટ", - // "admin.reports.button.show-collections": "Show Collections", "admin.reports.button.show-collections": "સંગ્રહો બતાવો", - // "admin.reports.collections.collections-report": "Collection Report", "admin.reports.collections.collections-report": "સંગ્રહ રિપોર્ટ", - // "admin.reports.collections.item-results": "Item Results", "admin.reports.collections.item-results": "આઇટમ પરિણામો", - // "admin.reports.collections.community": "Community", "admin.reports.collections.community": "સમુદાય", - // "admin.reports.collections.collection": "Collection", "admin.reports.collections.collection": "સંગ્રહ", - // "admin.reports.collections.nb_items": "Nb. Items", "admin.reports.collections.nb_items": "આઇટમ્સની સંખ્યા", - // "admin.reports.collections.match_all_selected_filters": "Matching all selected filters", "admin.reports.collections.match_all_selected_filters": "બધા પસંદ કરેલ ફિલ્ટર્સ સાથે મેળ ખાતું", - // "admin.reports.items.breadcrumbs": "Metadata Query Report", "admin.reports.items.breadcrumbs": "મેટાડેટા ક્વેરી રિપોર્ટ", - // "admin.reports.items.head": "Metadata Query Report", "admin.reports.items.head": "મેટાડેટા ક્વેરી રિપોર્ટ", - // "admin.reports.items.run": "Run Item Query", "admin.reports.items.run": "આઇટમ ક્વેરી ચલાવો", - // "admin.reports.items.section.collectionSelector": "Collection Selector", "admin.reports.items.section.collectionSelector": "સંગ્રહ પસંદગીકાર", - // "admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries", "admin.reports.items.section.metadataFieldQueries": "મેટાડેટા ફીલ્ડ ક્વેરીઝ", - // "admin.reports.items.predefinedQueries": "Predefined Queries", "admin.reports.items.predefinedQueries": "પૂર્વનિર્ધારિત ક્વેરીઝ", - // "admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries", "admin.reports.items.section.limitPaginateQueries": "ક્વેરીઝ મર્યાદિત/પેજિનેટ", - // "admin.reports.items.limit": "Limit/", "admin.reports.items.limit": "મર્યાદા/", - // "admin.reports.items.offset": "Offset", "admin.reports.items.offset": "ઓફસેટ", - // "admin.reports.items.wholeRepo": "Whole Repository", "admin.reports.items.wholeRepo": "સંપૂર્ણ રિપોઝિટરી", - // "admin.reports.items.anyField": "Any field", "admin.reports.items.anyField": "કોઈપણ ફીલ્ડ", - // "admin.reports.items.predicate.exists": "exists", "admin.reports.items.predicate.exists": "અસ્તિત્વમાં છે", - // "admin.reports.items.predicate.doesNotExist": "does not exist", "admin.reports.items.predicate.doesNotExist": "અસ્તિત્વમાં નથી", - // "admin.reports.items.predicate.equals": "equals", "admin.reports.items.predicate.equals": "સમાન છે", - // "admin.reports.items.predicate.doesNotEqual": "does not equal", "admin.reports.items.predicate.doesNotEqual": "સમાન નથી", - // "admin.reports.items.predicate.like": "like", "admin.reports.items.predicate.like": "માટે", - // "admin.reports.items.predicate.notLike": "not like", "admin.reports.items.predicate.notLike": "માટે નથી", - // "admin.reports.items.predicate.contains": "contains", "admin.reports.items.predicate.contains": "સમાવે છે", - // "admin.reports.items.predicate.doesNotContain": "does not contain", "admin.reports.items.predicate.doesNotContain": "સમાવિષ્ટ નથી", - // "admin.reports.items.predicate.matches": "matches", "admin.reports.items.predicate.matches": "મેળ ખાતું", - // "admin.reports.items.predicate.doesNotMatch": "does not match", "admin.reports.items.predicate.doesNotMatch": "મેળ ખાતું નથી", - // "admin.reports.items.preset.new": "New Query", "admin.reports.items.preset.new": "નવી ક્વેરી", - // "admin.reports.items.preset.hasNoTitle": "Has No Title", "admin.reports.items.preset.hasNoTitle": "કોઈ શીર્ષક નથી", - // "admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri", "admin.reports.items.preset.hasNoIdentifierUri": "કોઈ dc.identifier.uri નથી", - // "admin.reports.items.preset.hasCompoundSubject": "Has compound subject", "admin.reports.items.preset.hasCompoundSubject": "સંયુક્ત વિષય ધરાવે છે", - // "admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author", "admin.reports.items.preset.hasCompoundAuthor": "સંયુક્ત dc.contributor.author ધરાવે છે", - // "admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator", "admin.reports.items.preset.hasCompoundCreator": "સંયુક્ત dc.creator ધરાવે છે", - // "admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description", "admin.reports.items.preset.hasUrlInDescription": "dc.description માં URL ધરાવે છે", - // "admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance", "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance માં સંપૂર્ણ લખાણ ધરાવે છે", - // "admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance", "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance માં નોન-ફુલ ટેક્સ્ટ ધરાવે છે", - // "admin.reports.items.preset.hasEmptyMetadata": "Has empty metadata", "admin.reports.items.preset.hasEmptyMetadata": "ખાલી મેટાડેટા ધરાવે છે", - // "admin.reports.items.preset.hasUnbreakingDataInDescription": "Has unbreaking metadata in description", "admin.reports.items.preset.hasUnbreakingDataInDescription": "વર્ણન માં અનબ્રેકિંગ મેટાડેટા ધરાવે છે", - // "admin.reports.items.preset.hasXmlEntityInMetadata": "Has XML entity in metadata", "admin.reports.items.preset.hasXmlEntityInMetadata": "મેટાડેટા માં XML એન્ટિટી ધરાવે છે", - // "admin.reports.items.preset.hasNonAsciiCharInMetadata": "Has non-ascii character in metadata", "admin.reports.items.preset.hasNonAsciiCharInMetadata": "મેટાડેટા માં નોન-ASCII કૅરેક્ટર ધરાવે છે", - // "admin.reports.items.number": "No.", "admin.reports.items.number": "નંબર", - // "admin.reports.items.id": "UUID", "admin.reports.items.id": "UUID", - // "admin.reports.items.collection": "Collection", "admin.reports.items.collection": "સંગ્રહ", - // "admin.reports.items.handle": "URI", "admin.reports.items.handle": "URI", - // "admin.reports.items.title": "Title", "admin.reports.items.title": "શીર્ષક", - // "admin.reports.commons.filters": "Filters", "admin.reports.commons.filters": "ફિલ્ટર્સ", - // "admin.reports.commons.additional-data": "Additional data to return", "admin.reports.commons.additional-data": "વધારાની માહિતી પરત કરો", - // "admin.reports.commons.previous-page": "Prev Page", "admin.reports.commons.previous-page": "પાછલા પૃષ્ઠ", - // "admin.reports.commons.next-page": "Next Page", "admin.reports.commons.next-page": "આગલા પૃષ્ઠ", - // "admin.reports.commons.page": "Page", "admin.reports.commons.page": "પૃષ્ઠ", - // "admin.reports.commons.of": "of", "admin.reports.commons.of": "ના", - // "admin.reports.commons.export": "Export for Metadata Update", "admin.reports.commons.export": "મેટાડેટા અપડેટ માટે નિકાસ કરો", - // "admin.reports.commons.filters.deselect_all": "Deselect all filters", "admin.reports.commons.filters.deselect_all": "બધા ફિલ્ટર્સ દૂર કરો", - // "admin.reports.commons.filters.select_all": "Select all filters", "admin.reports.commons.filters.select_all": "બધા ફિલ્ટર્સ પસંદ કરો", - // "admin.reports.commons.filters.matches_all": "Matches all specified filters", "admin.reports.commons.filters.matches_all": "બધા નિર્દિષ્ટ ફિલ્ટર્સ સાથે મેળ ખાતું", - // "admin.reports.commons.filters.property": "Item Property Filters", "admin.reports.commons.filters.property": "આઇટમ પ્રોપર્ટી ફિલ્ટર્સ", - // "admin.reports.commons.filters.property.is_item": "Is Item - always true", "admin.reports.commons.filters.property.is_item": "આઇટમ છે - હંમેશા સાચું", - // "admin.reports.commons.filters.property.is_withdrawn": "Withdrawn Items", "admin.reports.commons.filters.property.is_withdrawn": "વિથડ્રોન આઇટમ્સ", - // "admin.reports.commons.filters.property.is_not_withdrawn": "Available Items - Not Withdrawn", "admin.reports.commons.filters.property.is_not_withdrawn": "ઉપલબ્ધ આઇટમ્સ - વિથડ્રોન નથી", - // "admin.reports.commons.filters.property.is_discoverable": "Discoverable Items - Not Private", "admin.reports.commons.filters.property.is_discoverable": "ડિસ્કવરેબલ આઇટમ્સ - પ્રાઇવેટ નથી", - // "admin.reports.commons.filters.property.is_not_discoverable": "Not Discoverable - Private Item", "admin.reports.commons.filters.property.is_not_discoverable": "ડિસ્કવરેબલ નથી - પ્રાઇવેટ આઇટમ", - // "admin.reports.commons.filters.bitstream": "Basic Bitstream Filters", "admin.reports.commons.filters.bitstream": "મૂળ બિટસ્ટ્રીમ ફિલ્ટર્સ", - // "admin.reports.commons.filters.bitstream.has_multiple_originals": "Item has Multiple Original Bitstreams", "admin.reports.commons.filters.bitstream.has_multiple_originals": "આઇટમમાં અનેક મૂળ બિટસ્ટ્રીમ્સ છે", - // "admin.reports.commons.filters.bitstream.has_no_originals": "Item has No Original Bitstreams", "admin.reports.commons.filters.bitstream.has_no_originals": "આઇટમમાં કોઈ મૂળ બિટસ્ટ્રીમ્સ નથી", - // "admin.reports.commons.filters.bitstream.has_one_original": "Item has One Original Bitstream", "admin.reports.commons.filters.bitstream.has_one_original": "આઇટમમાં એક મૂળ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", - // TODO New key - Add a translation - "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", - - // "admin.reports.commons.filters.bitstream_mime.has_doc_original": "Item has a Doc Original Bitstream (PDF, Office, Text, HTML, XML, etc)", "admin.reports.commons.filters.bitstream_mime.has_doc_original": "આઇટમમાં ડોક્યુમેન્ટ ઓરિજિનલ બિટસ્ટ્રીમ છે (PDF, Office, Text, HTML, XML, વગેરે)", - // "admin.reports.commons.filters.bitstream_mime.has_image_original": "Item has an Image Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_image_original": "આઇટમમાં ઇમેજ ઓરિજિનલ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "Has Other Bitstream Types (not Doc or Image)", "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "અન્ય બિટસ્ટ્રીમ પ્રકારો ધરાવે છે (ડોક્યુમેન્ટ અથવા ઇમેજ નથી)", - // "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "Item has multiple types of Original Bitstreams (Doc, Image, Other)", "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "આઇટમમાં ઓરિજિનલ બિટસ્ટ્રીમના અનેક પ્રકારો છે (ડોક્યુમેન્ટ, ઇમેજ, અન્ય)", - // "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "Item has a PDF Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "આઇટમમાં PDF ઓરિજિનલ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "Item has JPG Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "આઇટમમાં JPG ઓરિજિનલ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "Has unusually small PDF", "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "અસામાન્ય રીતે નાનું PDF ધરાવે છે", - // "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "Has unusually large PDF", "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "અસામાન્ય રીતે મોટું PDF ધરાવે છે", - // "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "Has document bitstream without TEXT item", "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "ટેક્સ્ટ આઇટમ વિના ડોક્યુમેન્ટ બિટસ્ટ્રીમ ધરાવે છે", - // "admin.reports.commons.filters.mime": "Supported MIME Type Filters", "admin.reports.commons.filters.mime": "સપોર્ટેડ MIME પ્રકાર ફિલ્ટર્સ", - // "admin.reports.commons.filters.mime.has_only_supp_image_type": "Item Image Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_image_type": "આઇટમ ઇમેજ બિટસ્ટ્રીમ્સ સપોર્ટેડ છે", - // "admin.reports.commons.filters.mime.has_unsupp_image_type": "Item has Image Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_image_type": "આઇટમમાં અસપોર્ટેડ ઇમેજ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.mime.has_only_supp_doc_type": "Item Document Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_doc_type": "આઇટમ ડોક્યુમેન્ટ બિટસ્ટ્રીમ્સ સપોર્ટેડ છે", - // "admin.reports.commons.filters.mime.has_unsupp_doc_type": "Item has Document Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_doc_type": "આઇટમમાં અસપોર્ટેડ ડોક્યુમેન્ટ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.bundle": "Bitstream Bundle Filters", "admin.reports.commons.filters.bundle": "બિટસ્ટ્રીમ બંડલ ફિલ્ટર્સ", - // "admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle", "admin.reports.commons.filters.bundle.has_unsupported_bundle": "અસપોર્ટેડ બંડલમાં બિટસ્ટ્રીમ ધરાવે છે", - // "admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail", "admin.reports.commons.filters.bundle.has_small_thumbnail": "અસામાન્ય રીતે નાનું થંબનેલ ધરાવે છે", - // "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail", "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "થંબનેલ વિના ઓરિજિનલ બિટસ્ટ્રીમ ધરાવે છે", - // "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)", "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "અમાન્ય થંબનેલ નામ ધરાવે છે (દરેક ઓરિજિનલ માટે એક થંબનેલ માન્ય છે)", - // "admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail", "admin.reports.commons.filters.bundle.has_non_generated_thumb": "જેનરેટ ન થયેલું થંબનેલ ધરાવે છે", - // "admin.reports.commons.filters.bundle.no_license": "Doesn't have a license", "admin.reports.commons.filters.bundle.no_license": "લાઇસન્સ નથી", - // "admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle", "admin.reports.commons.filters.bundle.has_license_documentation": "લાઇસન્સ બંડલમાં દસ્તાવેજીકરણ ધરાવે છે", - // "admin.reports.commons.filters.permission": "Permission Filters", "admin.reports.commons.filters.permission": "પરમિશન ફિલ્ટર્સ", - // "admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream", "admin.reports.commons.filters.permission.has_restricted_original": "આઇટમમાં પ્રતિબંધિત ઓરિજિનલ બિટસ્ટ્રીમ છે", - // "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "આઇટમમાં ઓછામાં ઓછું એક ઓરિજિનલ બિટસ્ટ્રીમ છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", - // "admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail", "admin.reports.commons.filters.permission.has_restricted_thumbnail": "આઇટમમાં પ્રતિબંધિત થંબનેલ છે", - // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "આઇટમમાં ઓછામાં ઓછું એક થંબનેલ છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", - // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", "admin.reports.commons.filters.permission.has_restricted_metadata": "આઇટમમાં પ્રતિબંધિત મેટાડેટા છે", - // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "આઇટમમાં મેટાડેટા છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી", - // "admin.search.breadcrumbs": "Administrative Search", "admin.search.breadcrumbs": "વહીવટી શોધ", - // "admin.search.collection.edit": "Edit", "admin.search.collection.edit": "સંપાદિત કરો", - // "admin.search.community.edit": "Edit", "admin.search.community.edit": "સંપાદિત કરો", - // "admin.search.item.delete": "Delete", "admin.search.item.delete": "કાઢી નાખો", - // "admin.search.item.edit": "Edit", "admin.search.item.edit": "સંપાદિત કરો", - // "admin.search.item.make-private": "Make non-discoverable", "admin.search.item.make-private": "અપ્રકાશિત બનાવો", - // "admin.search.item.make-public": "Make discoverable", "admin.search.item.make-public": "પ્રકાશિત બનાવો", - // "admin.search.item.move": "Move", "admin.search.item.move": "ખસેડો", - // "admin.search.item.reinstate": "Reinstate", "admin.search.item.reinstate": "ફરી સ્થાપિત કરો", - // "admin.search.item.withdraw": "Withdraw", "admin.search.item.withdraw": "પાછું ખેંચો", - // "admin.search.title": "Administrative Search", "admin.search.title": "વહીવટી શોધ", - // "administrativeView.search.results.head": "Administrative Search", "administrativeView.search.results.head": "વહીવટી શોધ", - // "admin.workflow.breadcrumbs": "Administer Workflow", "admin.workflow.breadcrumbs": "વર્કફ્લો વહીવટ", - // "admin.workflow.title": "Administer Workflow", "admin.workflow.title": "વર્કફ્લો વહીવટ", - // "admin.workflow.item.workflow": "Workflow", "admin.workflow.item.workflow": "વર્કફ્લો", - // "admin.workflow.item.workspace": "Workspace", "admin.workflow.item.workspace": "વર્કસ્પેસ", - // "admin.workflow.item.delete": "Delete", "admin.workflow.item.delete": "કાઢી નાખો", - // "admin.workflow.item.send-back": "Send back", "admin.workflow.item.send-back": "પાછું મોકલો", - // "admin.workflow.item.policies": "Policies", "admin.workflow.item.policies": "પોલિસી", - // "admin.workflow.item.supervision": "Supervision", "admin.workflow.item.supervision": "સુપરવિઝન", - // "admin.metadata-import.breadcrumbs": "Import Metadata", "admin.metadata-import.breadcrumbs": "મેટાડેટા આયાત", - // "admin.batch-import.breadcrumbs": "Import Batch", "admin.batch-import.breadcrumbs": "બેચ આયાત", - // "admin.metadata-import.title": "Import Metadata", "admin.metadata-import.title": "મેટાડેટા આયાત", - // "admin.batch-import.title": "Import Batch", "admin.batch-import.title": "બેચ આયાત", - // "admin.metadata-import.page.header": "Import Metadata", "admin.metadata-import.page.header": "મેટાડેટા આયાત", - // "admin.batch-import.page.header": "Import Batch", "admin.batch-import.page.header": "બેચ આયાત", - // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "તમે અહીં બેચ મેટાડેટા ઓપરેશન્સ ધરાવતી CSV ફાઇલો ડ્રોપ અથવા બ્રાઉઝ કરી શકો છો", - // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", "admin.batch-import.page.help": "આયાત કરવા માટે સંગ્રહ પસંદ કરો. પછી, SAF ઝિપ ફાઇલ ડ્રોપ અથવા બ્રાઉઝ કરો જેમાં આયાત કરવા માટેની આઇટમ્સ શામેલ છે", - // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", "admin.batch-import.page.toggle.help": "આયાત ફાઇલ અપલોડ અથવા URL દ્વારા કરી શકાય છે, ઇનપુટ સોર્સ સેટ કરવા માટે ઉપરના ટૉગલનો ઉપયોગ કરો", - // "admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import", "admin.metadata-import.page.dropMsg": "મેટાડેટા CSV આયાત કરવા માટે ડ્રોપ કરો", - // "admin.batch-import.page.dropMsg": "Drop a batch ZIP to import", "admin.batch-import.page.dropMsg": "બેચ ઝિપ આયાત કરવા માટે ડ્રોપ કરો", - // "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import", "admin.metadata-import.page.dropMsgReplace": "મેટાડેટા CSV આયાત કરવા માટે બદલો", - // "admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import", "admin.batch-import.page.dropMsgReplace": "બેચ ઝિપ આયાત કરવા માટે બદલો", - // "admin.metadata-import.page.button.return": "Back", "admin.metadata-import.page.button.return": "પાછા", - // "admin.metadata-import.page.button.proceed": "Proceed", "admin.metadata-import.page.button.proceed": "આગળ વધો", - // "admin.metadata-import.page.button.select-collection": "Select Collection", "admin.metadata-import.page.button.select-collection": "સંગ્રહ પસંદ કરો", - // "admin.metadata-import.page.error.addFile": "Select file first!", "admin.metadata-import.page.error.addFile": "પ્રથમ ફાઇલ પસંદ કરો!", - // "admin.metadata-import.page.error.addFileUrl": "Insert file URL first!", "admin.metadata-import.page.error.addFileUrl": "પ્રથમ ફાઇલ URL દાખલ કરો!", - // "admin.batch-import.page.error.addFile": "Select ZIP file first!", "admin.batch-import.page.error.addFile": "પ્રથમ ઝિપ ફાઇલ પસંદ કરો!", - // "admin.metadata-import.page.toggle.upload": "Upload", "admin.metadata-import.page.toggle.upload": "અપલોડ", - // "admin.metadata-import.page.toggle.url": "URL", "admin.metadata-import.page.toggle.url": "URL", - // "admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import", "admin.metadata-import.page.urlMsg": "આયાત કરવા માટે બેચ ઝિપ URL દાખલ કરો", - // "admin.metadata-import.page.validateOnly": "Validate Only", "admin.metadata-import.page.validateOnly": "માત્ર માન્ય કરો", - // "admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.metadata-import.page.validateOnly.hint": "જ્યારે પસંદ કરેલ હોય, ત્યારે અપલોડ કરેલ CSV માન્ય કરવામાં આવશે. તમને શોધાયેલા ફેરફારોનો અહેવાલ મળશે, પરંતુ કોઈ ફેરફારો સાચવવામાં આવશે નહીં.", - // "advanced-workflow-action.rating.form.rating.label": "Rating", "advanced-workflow-action.rating.form.rating.label": "રેટિંગ", - // "advanced-workflow-action.rating.form.rating.error": "You must rate the item", "advanced-workflow-action.rating.form.rating.error": "તમે આઇટમને રેટ કરવું જ જોઈએ", - // "advanced-workflow-action.rating.form.review.label": "Review", "advanced-workflow-action.rating.form.review.label": "સમીક્ષા", - // "advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating", "advanced-workflow-action.rating.form.review.error": "આ રેટિંગ સબમિટ કરવા માટે તમારે સમીક્ષા દાખલ કરવી જ જોઈએ", - // "advanced-workflow-action.rating.description": "Please select a rating below", "advanced-workflow-action.rating.description": "કૃપા કરીને નીચે રેટિંગ પસંદ કરો", - // "advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review", "advanced-workflow-action.rating.description-requiredDescription": "કૃપા કરીને નીચે રેટિંગ પસંદ કરો અને સમીક્ષા ઉમેરો", - // "advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting", "advanced-workflow-action.select-reviewer.description-single": "સબમિટ કરતા પહેલા કૃપા કરીને નીચે એક રિવ્યુઅર પસંદ કરો", - // "advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting", "advanced-workflow-action.select-reviewer.description-multiple": "સબમિટ કરતા પહેલા કૃપા કરીને એક અથવા વધુ રિવ્યુઅર્સ પસંદ કરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "EPeople ઉમેરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "બધા બ્રાઉઝ કરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "વર્તમાન સભ્યો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "શોધો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "નામ", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ઓળખ", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ઇમેઇલ", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "દૂર કરો / ઉમેરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "{{name}} નામના સભ્યને દૂર કરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "સફળતાપૂર્વક {{name}} સભ્ય ઉમેર્યું", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "{{name}} સભ્ય ઉમેરવામાં નિષ્ફળ", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "સફળતાપૂર્વક {{name}} સભ્ય કાઢી નાખ્યું", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "{{name}} સભ્ય કાઢી નાખવામાં નિષ્ફળ", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "{{name}} નામના સભ્યને ઉમેરો", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી", - // "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.", "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "કોઈ રિવ્યુઅર પસંદ કરેલ નથી.", - // "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.batch-import.page.validateOnly.hint": "જ્યારે પસંદ કરેલ હોય, ત્યારે અપલોડ કરેલ ઝિપ માન્ય કરવામાં આવશે. તમને શોધાયેલા ફેરફારોનો અહેવાલ મળશે, પરંતુ કોઈ ફેરફારો સાચવવામાં આવશે નહીં.", - // "admin.batch-import.page.remove": "remove", "admin.batch-import.page.remove": "દૂર કરો", - // "auth.errors.invalid-user": "Invalid email address or password.", "auth.errors.invalid-user": "અમાન્ય ઇમેઇલ સરનામું અથવા પાસવર્ડ.", - // "auth.messages.expired": "Your session has expired. Please log in again.", "auth.messages.expired": "તમારો સત્ર સમાપ્ત થયો છે. કૃપા કરીને ફરી લૉગ ઇન કરો.", - // "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.", "auth.messages.token-refresh-failed": "તમારા સત્ર ટોકનને રિફ્રેશ કરવામાં નિષ્ફળ. કૃપા કરીને ફરી લૉગ ઇન કરો.", - // "bitstream.download.page": "Now downloading {{bitstream}}...", "bitstream.download.page": "હવે {{bitstream}} ડાઉનલોડ કરી રહ્યા છે...", - // "bitstream.download.page.back": "Back", "bitstream.download.page.back": "પાછા", - // "bitstream.edit.authorizations.link": "Edit bitstream's Policies", "bitstream.edit.authorizations.link": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો", - // "bitstream.edit.authorizations.title": "Edit bitstream's Policies", "bitstream.edit.authorizations.title": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો", - // "bitstream.edit.return": "Back", "bitstream.edit.return": "પાછા", - // "bitstream.edit.bitstream": "Bitstream: ", - // TODO New key - Add a translation - "bitstream.edit.bitstream": "Bitstream: ", + "bitstream.edit.bitstream": "બિટસ્ટ્રીમ: ", - // "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".", "bitstream.edit.form.description.hint": "વૈકલ્પિક રીતે, ફાઇલનું સંક્ષિપ્ત વર્ણન પ્રદાન કરો, ઉદાહરણ તરીકે \"મુખ્ય લેખ\" અથવા \"પ્રયોગ ડેટા રીડિંગ્સ\".", - // "bitstream.edit.form.description.label": "Description", "bitstream.edit.form.description.label": "વર્ણન", - // "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.", "bitstream.edit.form.embargo.hint": "પ્રવેશની મંજૂરી આપવામાં આવેલી પ્રથમ તારીખ. આ તારીખને આ ફોર્મ પર ફેરફાર કરી શકાતી નથી. બિટસ્ટ્રીમ માટે એમ્બાર્ગો તારીખ સેટ કરવા માટે, આઇટમ સ્ટેટસ ટેબ પર જાઓ, અધિકૃતતા... ક્લિક કરો, બિટસ્ટ્રીમની READ પોલિસી બનાવો અથવા સંપાદિત કરો, અને ઇચ્છિત પ્રારંભ તારીખ સેટ કરો.", - // "bitstream.edit.form.embargo.label": "Embargo until specific date", "bitstream.edit.form.embargo.label": "વિશિષ્ટ તારીખ સુધી એમ્બાર્ગો", - // "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": "બિટસ્ટ્રીમ માટે ફાઇલનું નામ બદલો. નોંધો કે આ બિટસ્ટ્રીમ URLને પ્રદર્શિત કરશે, પરંતુ જૂના લિંક્સ હજી પણ ઉકેલશે જો ક્રમ ID બદલાતું નથી.", - // "bitstream.edit.form.fileName.label": "Filename", "bitstream.edit.form.fileName.label": "ફાઇલનું નામ", - // "bitstream.edit.form.newFormat.label": "Describe new format", "bitstream.edit.form.newFormat.label": "નવું ફોર્મેટ વર્ણવો", - // "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"ACMESoft SuperApp version 1.5\").", "bitstream.edit.form.newFormat.hint": "ફાઇલ બનાવવા માટે તમે જે એપ્લિકેશનનો ઉપયોગ કર્યો છે, અને સંસ્કરણ નંબર (ઉદાહરણ તરીકે, \"ACMESoft SuperApp version 1.5\").", - // "bitstream.edit.form.primaryBitstream.label": "Primary File", "bitstream.edit.form.primaryBitstream.label": "પ્રાથમિક ફાઇલ", - // "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, select \"format not in list\" above and describe it under \"Describe new format\".", "bitstream.edit.form.selectedFormat.hint": "જો ફોર્મેટ ઉપરની યાદીમાં નથી, ઉપર \"યાદીમાં ફોર્મેટ નથી\" પસંદ કરો અને \"નવું ફોર્મેટ વર્ણવો\" હેઠળ તેને વર્ણવો.", - // "bitstream.edit.form.selectedFormat.label": "Selected Format", "bitstream.edit.form.selectedFormat.label": "પસંદ કરેલ ફોર્મેટ", - // "bitstream.edit.form.selectedFormat.unknown": "Format not in list", "bitstream.edit.form.selectedFormat.unknown": "યાદીમાં ફોર્મેટ નથી", - // "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format", "bitstream.edit.notifications.error.format.title": "બિટસ્ટ્રીમના ફોર્મેટને સાચવવામાં ભૂલ આવી", - // "bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream", "bitstream.edit.notifications.error.primaryBitstream.title": "પ્રાથમિક બિટસ્ટ્રીમને સાચવવામાં ભૂલ આવી", - // "bitstream.edit.form.iiifLabel.label": "IIIF Label", "bitstream.edit.form.iiifLabel.label": "IIIF લેબલ", - // "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.", "bitstream.edit.form.iiifLabel.hint": "આ છબી માટે કેનવાસ લેબલ. જો પ્રદાન ન કરવામાં આવે તો ડિફોલ્ટ લેબલનો ઉપયોગ કરવામાં આવશે.", - // "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents", "bitstream.edit.form.iiifToc.label": "IIIF ટેબલ ઓફ કન્ટેન્ટ્સ", - // "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.", "bitstream.edit.form.iiifToc.hint": "અહીં ટેક્સ્ટ ઉમેરવાથી આ નવું ટેબલ ઓફ કન્ટેન્ટ્સ રેન્જનું પ્રારંભ બને છે.", - // "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width", "bitstream.edit.form.iiifWidth.label": "IIIF કેનવાસ પહોળાઈ", - // "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.", "bitstream.edit.form.iiifWidth.hint": "કેનવાસની પહોળાઈ સામાન્ય રીતે છબીની પહોળાઈ સાથે મેળ ખાતી હોવી જોઈએ.", - // "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height", "bitstream.edit.form.iiifHeight.label": "IIIF કેનવાસ ઊંચાઈ", - // "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.", "bitstream.edit.form.iiifHeight.hint": "કેનવાસની ઊંચાઈ સામાન્ય રીતે છબીની ઊંચાઈ સાથે મેળ ખાતી હોવી જોઈએ.", - // "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.", "bitstream.edit.notifications.saved.content": "આ બિટસ્ટ્રીમ માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", - // "bitstream.edit.notifications.saved.title": "Bitstream saved", "bitstream.edit.notifications.saved.title": "બિટસ્ટ્રીમ સાચવ્યું", - // "bitstream.edit.title": "Edit bitstream", "bitstream.edit.title": "બિટસ્ટ્રીમ સંપાદિત કરો", - // "bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ", "bitstream-request-a-copy.alert.canDownload1": "તમને આ ફાઇલ ઍક્સેસ કરવાની મંજૂરી છે. જો તમે ફાઇલ ડાઉનલોડ કરવા માંગો છો, તો ક્લિક કરો ", - // "bitstream-request-a-copy.alert.canDownload2": "here", "bitstream-request-a-copy.alert.canDownload2": "અહીં", - // "bitstream-request-a-copy.header": "Request a copy of the file", "bitstream-request-a-copy.header": "ફાઇલની નકલ માટે વિનંતી કરો", - // "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", - // TODO New key - Add a translation - "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", + "bitstream-request-a-copy.intro": "નીચેની માહિતી દાખલ કરો જેથી નીચેના આઇટમ માટે નકલની વિનંતી કરી શકાય: ", - // "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", - // TODO New key - Add a translation - "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + "bitstream-request-a-copy.intro.bitstream.one": "નીચેની ફાઇલ માટે વિનંતી કરી રહ્યા છે: ", - // "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ", "bitstream-request-a-copy.intro.bitstream.all": "બધી ફાઇલો માટે વિનંતી કરી રહ્યા છે. ", - // "bitstream-request-a-copy.name.label": "Name *", "bitstream-request-a-copy.name.label": "નામ *", - // "bitstream-request-a-copy.name.error": "The name is required", "bitstream-request-a-copy.name.error": "નામ જરૂરી છે", - // "bitstream-request-a-copy.email.label": "Your email address *", "bitstream-request-a-copy.email.label": "તમારું ઇમેઇલ સરનામું *", - // "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.", "bitstream-request-a-copy.email.hint": "આ ઇમેઇલ સરનામું ફાઇલ મોકલવા માટે વપરાય છે.", - // "bitstream-request-a-copy.email.error": "Please enter a valid email address.", "bitstream-request-a-copy.email.error": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું દાખલ કરો.", - // "bitstream-request-a-copy.allfiles.label": "Files", "bitstream-request-a-copy.allfiles.label": "ફાઇલો", - // "bitstream-request-a-copy.files-all-false.label": "Only the requested file", "bitstream-request-a-copy.files-all-false.label": "માત્ર વિનંતી કરેલ ફાઇલ", - // "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access", "bitstream-request-a-copy.files-all-true.label": "આઇટમની બધી ફાઇલો (પ્રતિબંધિત ઍક્સેસમાં)", - // "bitstream-request-a-copy.message.label": "Message", "bitstream-request-a-copy.message.label": "સંદેશ", - // "bitstream-request-a-copy.return": "Back", "bitstream-request-a-copy.return": "પાછા", - // "bitstream-request-a-copy.submit": "Request copy", "bitstream-request-a-copy.submit": "નકલ માટે વિનંતી કરો", - // "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.", "bitstream-request-a-copy.submit.success": "આઇટમ વિનંતી સફળતાપૂર્વક સબમિટ કરવામાં આવી.", - // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "આઇટમ વિનંતી સબમિટ કરતી વખતે કંઈક ખોટું થયું.", - // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", "bitstream-request-a-copy.access-by-token.warning": "તમે આ આઇટમને સુરક્ષિત ઍક્સેસ લિંક દ્વારા જોઈ રહ્યા છો જે તમને લેખક અથવા રિપોઝિટરી સ્ટાફ દ્વારા પ્રદાન કરવામાં આવી છે. આ લિંકને અનધિકૃત વપરાશકર્તાઓ સાથે શેર ન કરવું મહત્વપૂર્ણ છે.", - // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", "bitstream-request-a-copy.access-by-token.expiry-label": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ સમાપ્ત થશે", - // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", "bitstream-request-a-copy.access-by-token.expired": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ હવે શક્ય નથી. ઍક્સેસ સમાપ્ત થઈ ગઈ છે", - // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", "bitstream-request-a-copy.access-by-token.not-granted": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ શક્ય નથી. ઍક્સેસ είτε મંજુર કરવામાં આવી નથી, είτε રદ કરવામાં આવી છે.", - // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", "bitstream-request-a-copy.access-by-token.re-request": "ઍક્સેસ માટે નવી વિનંતી સબમિટ કરવા માટે પ્રતિબંધિત ડાઉનલોડ લિંક્સને અનુસરો.", - // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", "bitstream-request-a-copy.access-by-token.alt-text": "આ આઇટમ માટે ઍક્સેસ સુરક્ષિત ટોકન દ્વારા પ્રદાન કરવામાં આવે છે", - // "browse.back.all-results": "All browse results", "browse.back.all-results": "બધા બ્રાઉઝ પરિણામો", - // "browse.comcol.by.author": "By Author", "browse.comcol.by.author": "લેખક દ્વારા", - // "browse.comcol.by.dateissued": "By Issue Date", "browse.comcol.by.dateissued": "પ્રકાશન તારીખ દ્વારા", - // "browse.comcol.by.subject": "By Subject", "browse.comcol.by.subject": "વિષય દ્વારા", - // "browse.comcol.by.srsc": "By Subject Category", "browse.comcol.by.srsc": "વિષય શ્રેણી દ્વારા", - // "browse.comcol.by.nsi": "By Norwegian Science Index", "browse.comcol.by.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા", - // "browse.comcol.by.title": "By Title", "browse.comcol.by.title": "શીર્ષક દ્વારા", - // "browse.comcol.head": "Browse", "browse.comcol.head": "બ્રાઉઝ", - // "browse.empty": "No items to show.", "browse.empty": "બતાવવા માટે કોઈ આઇટમ્સ નથી.", - // "browse.metadata.author": "Author", "browse.metadata.author": "લેખક", - // "browse.metadata.dateissued": "Issue Date", "browse.metadata.dateissued": "પ્રકાશન તારીખ", - // "browse.metadata.subject": "Subject", "browse.metadata.subject": "વિષય", - // "browse.metadata.title": "Title", "browse.metadata.title": "શીર્ષક", - // "browse.metadata.srsc": "Subject Category", "browse.metadata.srsc": "વિષય શ્રેણી", - // "browse.metadata.author.breadcrumbs": "Browse by Author", "browse.metadata.author.breadcrumbs": "લેખક દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.dateissued.breadcrumbs": "Browse by Date", "browse.metadata.dateissued.breadcrumbs": "તારીખ દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.subject.breadcrumbs": "Browse by Subject", "browse.metadata.subject.breadcrumbs": "વિષય દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.srsc.breadcrumbs": "Browse by Subject Category", "browse.metadata.srsc.breadcrumbs": "વિષય શ્રેણી દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.srsc.tree.description": "Select a subject to add as search filter", "browse.metadata.srsc.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", - // "browse.metadata.nsi.breadcrumbs": "Browse by Norwegian Science Index", "browse.metadata.nsi.breadcrumbs": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.nsi.tree.description": "Select an index to add as search filter", "browse.metadata.nsi.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે ઇન્ડેક્સ પસંદ કરો", - // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "શીર્ષક દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.map": "Browse by Geolocation", "browse.metadata.map": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", "browse.metadata.map.breadcrumbs": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", - // "browse.metadata.map.count.items": "items", "browse.metadata.map.count.items": "આઇટમ્સ", - // "pagination.next.button": "Next", "pagination.next.button": "આગલું", - // "pagination.previous.button": "Previous", "pagination.previous.button": "પાછલું", - // "pagination.next.button.disabled.tooltip": "No more pages of results", "pagination.next.button.disabled.tooltip": "કોઈ વધુ પૃષ્ઠો નથી", - // "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", - // TODO New key - Add a translation - "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + "pagination.page-number-bar": "પૃષ્ઠ નેવિગેશન માટે કંટ્રોલ બાર, ID સાથેના તત્વ માટે: ", - // "browse.startsWith": ", starting with {{ startsWith }}", "browse.startsWith": ", {{ startsWith }} થી શરૂ થાય છે", - // "browse.startsWith.choose_start": "(Choose start)", "browse.startsWith.choose_start": "(શરૂઆત પસંદ કરો)", - // "browse.startsWith.choose_year": "(Choose year)", "browse.startsWith.choose_year": "(વર્ષ પસંદ કરો)", - // "browse.startsWith.choose_year.label": "Choose the issue year", "browse.startsWith.choose_year.label": "પ્રકાશન વર્ષ પસંદ કરો", - // "browse.startsWith.jump": "Filter results by year or month", "browse.startsWith.jump": "વર્ષ અથવા મહિના દ્વારા પરિણામો ફિલ્ટર કરો", - // "browse.startsWith.months.april": "April", "browse.startsWith.months.april": "એપ્રિલ", - // "browse.startsWith.months.august": "August", "browse.startsWith.months.august": "ઑગસ્ટ", - // "browse.startsWith.months.december": "December", "browse.startsWith.months.december": "ડિસેમ્બર", - // "browse.startsWith.months.february": "February", "browse.startsWith.months.february": "ફેબ્રુઆરી", - // "browse.startsWith.months.january": "January", "browse.startsWith.months.january": "જાન્યુઆરી", - // "browse.startsWith.months.july": "July", "browse.startsWith.months.july": "જુલાઈ", - // "browse.startsWith.months.june": "June", "browse.startsWith.months.june": "જૂન", - // "browse.startsWith.months.march": "March", "browse.startsWith.months.march": "માર્ચ", - // "browse.startsWith.months.may": "May", "browse.startsWith.months.may": "મે", - // "browse.startsWith.months.none": "(Choose month)", "browse.startsWith.months.none": "(મહિનો પસંદ કરો)", - // "browse.startsWith.months.none.label": "Choose the issue month", "browse.startsWith.months.none.label": "પ્રકાશન મહિનો પસંદ કરો", - // "browse.startsWith.months.november": "November", "browse.startsWith.months.november": "નવેમ્બર", - // "browse.startsWith.months.october": "October", "browse.startsWith.months.october": "ઑક્ટોબર", - // "browse.startsWith.months.september": "September", "browse.startsWith.months.september": "સપ્ટેમ્બર", - // "browse.startsWith.submit": "Browse", "browse.startsWith.submit": "બ્રાઉઝ", - // "browse.startsWith.type_date": "Filter results by date", "browse.startsWith.type_date": "તારીખ દ્વારા પરિણામો ફિલ્ટર કરો", - // "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button", "browse.startsWith.type_date.label": "અથવા તારીખ (વર્ષ-મહિનો) દાખલ કરો અને બ્રાઉઝ બટન પર ક્લિક કરો", - // "browse.startsWith.type_text": "Filter results by typing the first few letters", "browse.startsWith.type_text": "પ્રથમ થોડા અક્ષરો ટાઇપ કરીને પરિણામો ફિલ્ટર કરો", - // "browse.startsWith.input": "Filter", "browse.startsWith.input": "ફિલ્ટર", - // "browse.taxonomy.button": "Browse", "browse.taxonomy.button": "બ્રાઉઝ", - // "browse.title": "Browsing by {{ field }}{{ startsWith }} {{ value }}", "browse.title": "{{ field }}{{ startsWith }} {{ value }} દ્વારા બ્રાઉઝિંગ", - // "browse.title.page": "Browsing by {{ field }} {{ value }}", "browse.title.page": "{{ field }} {{ value }} દ્વારા બ્રાઉઝિંગ", - // "search.browse.item-back": "Back to Results", "search.browse.item-back": "પરિણામો પર પાછા જાઓ", - // "chips.remove": "Remove chip", "chips.remove": "ચિપ દૂર કરો", - // "claimed-approved-search-result-list-element.title": "Approved", "claimed-approved-search-result-list-element.title": "મંજૂર", - // "claimed-declined-search-result-list-element.title": "Rejected, sent back to submitter", "claimed-declined-search-result-list-element.title": "નકારવામાં આવ્યું, સબમિટરને પાછું મોકલવામાં આવ્યું", - // "claimed-declined-task-search-result-list-element.title": "Declined, sent back to Review Manager's workflow", "claimed-declined-task-search-result-list-element.title": "નકારવામાં આવ્યું, રિવ્યુ મેનેજરના વર્કફ્લો પર પાછું મોકલવામાં આવ્યું", - // "collection.create.breadcrumbs": "Create collection", "collection.create.breadcrumbs": "સંગ્રહ બનાવો", - // "collection.browse.logo": "Browse for a collection logo", "collection.browse.logo": "સંગ્રહ લોગો માટે બ્રાઉઝ કરો", - // "collection.create.head": "Create a Collection", "collection.create.head": "સંગ્રહ બનાવો", - // "collection.create.notifications.success": "Successfully created the collection", "collection.create.notifications.success": "સંગ્રહ સફળતાપૂર્વક બનાવવામાં આવ્યો", - // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", "collection.create.sub-head": "સમુદાય {{ parent }} માટે સંગ્રહ બનાવો", - // "collection.curate.header": "Curate Collection: {{collection}}", - // TODO New key - Add a translation - "collection.curate.header": "Curate Collection: {{collection}}", + "collection.curate.header": "સંગ્રહ ક્યુરેટ કરો: {{collection}}", - // "collection.delete.cancel": "Cancel", "collection.delete.cancel": "રદ કરો", - // "collection.delete.confirm": "Confirm", "collection.delete.confirm": "ખાતરી કરો", - // "collection.delete.processing": "Deleting", "collection.delete.processing": "કાઢી રહ્યા છે", - // "collection.delete.head": "Delete Collection", "collection.delete.head": "સંગ્રહ કાઢી નાખો", - // "collection.delete.notification.fail": "Collection could not be deleted", "collection.delete.notification.fail": "સંગ્રહ કાઢી શકાતો નથી", - // "collection.delete.notification.success": "Successfully deleted collection", "collection.delete.notification.success": "સંગ્રહ સફળતાપૂર્વક કાઢી નાખ્યો", - // "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"", "collection.delete.text": "શું તમે ખરેખર સંગ્રહ \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", - // "collection.edit.delete": "Delete this collection", "collection.edit.delete": "આ સંગ્રહ કાઢી નાખો", - // "collection.edit.head": "Edit Collection", "collection.edit.head": "સંગ્રહ સંપાદિત કરો", - // "collection.edit.breadcrumbs": "Edit Collection", "collection.edit.breadcrumbs": "સંગ્રહ સંપાદિત કરો", - // "collection.edit.tabs.mapper.head": "Item Mapper", "collection.edit.tabs.mapper.head": "આઇટમ મેપર", - // "collection.edit.tabs.item-mapper.title": "Collection Edit - Item Mapper", "collection.edit.tabs.item-mapper.title": "સંગ્રહ સંપાદન - આઇટમ મેપર", - // "collection.edit.item-mapper.cancel": "Cancel", "collection.edit.item-mapper.cancel": "રદ કરો", - // "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", - // TODO New key - Add a translation - "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + "collection.edit.item-mapper.collection": "સંગ્રહ: \\\"{{name}}\\\"", - // "collection.edit.item-mapper.confirm": "Map selected items", "collection.edit.item-mapper.confirm": "પસંદ કરેલ આઇટમ્સ મેપ કરો", - // "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.", "collection.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે સંગ્રહ વહીવટકર્તાઓને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરવાની મંજૂરી આપે છે. તમે અન્ય સંગ્રહોમાંથી આઇટમ્સ શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા હાલમાં મેપ કરેલ આઇટમ્સની યાદી બ્રાઉઝ કરી શકો છો.", - // "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections", "collection.edit.item-mapper.head": "આઇટમ મેપર - અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરો", - // "collection.edit.item-mapper.no-search": "Please enter a query to search", "collection.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", - // "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.", "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} આઇટમ્સના મેપિંગ માટે ભૂલો આવી.", - // "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors", "collection.edit.item-mapper.notifications.map.error.head": "મેપિંગ ભૂલો", - // "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.", "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} આઇટમ્સ સફળતાપૂર્વક મેપ કરવામાં આવ્યા.", - // "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed", "collection.edit.item-mapper.notifications.map.success.head": "મેપિંગ પૂર્ણ", - // "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} આઇટમ્સના મેપિંગ દૂર કરતી વખતે ભૂલો આવી.", - // "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors", "collection.edit.item-mapper.notifications.unmap.error.head": "મેપિંગ દૂર કરવાની ભૂલો", - // "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} આઇટમ્સના મેપિંગ સફળતાપૂર્વક દૂર કરવામાં આવ્યા.", - // "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed", "collection.edit.item-mapper.notifications.unmap.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", - // "collection.edit.item-mapper.remove": "Remove selected item mappings", "collection.edit.item-mapper.remove": "પસંદ કરેલ આઇટમ મેપિંગ્સ દૂર કરો", - // "collection.edit.item-mapper.search-form.placeholder": "Search items...", "collection.edit.item-mapper.search-form.placeholder": "આઇટમ્સ શોધો...", - // "collection.edit.item-mapper.tabs.browse": "Browse mapped items", "collection.edit.item-mapper.tabs.browse": "મેપ કરેલ આઇટમ્સ બ્રાઉઝ કરો", - // "collection.edit.item-mapper.tabs.map": "Map new items", "collection.edit.item-mapper.tabs.map": "નવા આઇટમ્સ મેપ કરો", - // "collection.edit.logo.delete.title": "Delete logo", "collection.edit.logo.delete.title": "લોગો કાઢી નાખો", - // "collection.edit.logo.delete-undo.title": "Undo delete", "collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "સંગ્રહ લોગો", - // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", "collection.edit.logo.notifications.add.error": "સંગ્રહ લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", - // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", "collection.edit.logo.notifications.add.success": "સંગ્રહ લોગો સફળતાપૂર્વક અપલોડ થયો.", - // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", "collection.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", - // "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo", "collection.edit.logo.notifications.delete.success.content": "સંગ્રહનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", - // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", - // "collection.edit.logo.upload": "Drop a collection logo to upload", "collection.edit.logo.upload": "અપલોડ કરવા માટે સંગ્રહ લોગો ડ્રોપ કરો", - // "collection.edit.notifications.success": "Successfully edited the collection", "collection.edit.notifications.success": "સંગ્રહ સફળતાપૂર્વક સંપાદિત કર્યો", - // "collection.edit.return": "Back", "collection.edit.return": "પાછા", - // "collection.edit.tabs.access-control.head": "Access Control", "collection.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", - // "collection.edit.tabs.access-control.title": "Collection Edit - Access Control", "collection.edit.tabs.access-control.title": "સંગ્રહ સંપાદન - ઍક્સેસ કંટ્રોલ", - // "collection.edit.tabs.curate.head": "Curate", "collection.edit.tabs.curate.head": "ક્યુરેટ", - // "collection.edit.tabs.curate.title": "Collection Edit - Curate", "collection.edit.tabs.curate.title": "સંગ્રહ સંપાદન - ક્યુરેટ", - // "collection.edit.tabs.authorizations.head": "Authorizations", "collection.edit.tabs.authorizations.head": "અધિકૃતતા", - // "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations", "collection.edit.tabs.authorizations.title": "સંગ્રહ સંપાદન - અધિકૃતતા", - // "collection.edit.item.authorizations.load-bundle-button": "Load more bundles", "collection.edit.item.authorizations.load-bundle-button": "વધુ બંડલ્સ લોડ કરો", - // "collection.edit.item.authorizations.load-more-button": "Load more", "collection.edit.item.authorizations.load-more-button": "વધુ લોડ કરો", - // "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle", "collection.edit.item.authorizations.show-bitstreams-button": "બંડલ માટે બિટસ્ટ્રીમ પોલિસી બતાવો", - // "collection.edit.tabs.metadata.head": "Edit Metadata", "collection.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", - // "collection.edit.tabs.metadata.title": "Collection Edit - Metadata", "collection.edit.tabs.metadata.title": "સંગ્રહ સંપાદન - મેટાડેટા", - // "collection.edit.tabs.roles.head": "Assign Roles", "collection.edit.tabs.roles.head": "ભૂમિકા સોંપો", - // "collection.edit.tabs.roles.title": "Collection Edit - Roles", "collection.edit.tabs.roles.title": "સંગ્રહ સંપાદન - ભૂમિકા", - // "collection.edit.tabs.source.external": "This collection harvests its content from an external source", "collection.edit.tabs.source.external": "આ સંગ્રહ તેની સામગ્રી બાહ્ય સ્ત્રોતમાંથી હાર્વેસ્ટ કરે છે", - // "collection.edit.tabs.source.form.errors.oaiSource.required": "You must provide a set id of the target collection.", "collection.edit.tabs.source.form.errors.oaiSource.required": "તમારે લક્ષ્ય સંગ્રહનો સેટ id પ્રદાન કરવો જ જોઈએ.", - // "collection.edit.tabs.source.form.harvestType": "Content being harvested", "collection.edit.tabs.source.form.harvestType": "હાર્વેસ્ટ થતી સામગ્રી", - // "collection.edit.tabs.source.form.head": "Configure an external source", "collection.edit.tabs.source.form.head": "બાહ્ય સ્ત્રોત કૉન્ફિગર કરો", - // "collection.edit.tabs.source.form.metadataConfigId": "Metadata Format", "collection.edit.tabs.source.form.metadataConfigId": "મેટાડેટા ફોર્મેટ", - // "collection.edit.tabs.source.form.oaiSetId": "OAI specific set id", "collection.edit.tabs.source.form.oaiSetId": "OAI વિશિષ્ટ સેટ id", - // "collection.edit.tabs.source.form.oaiSource": "OAI Provider", "collection.edit.tabs.source.form.oaiSource": "OAI પ્રદાતા", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Harvest metadata and bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "મેટાડેટા અને બિટસ્ટ્રીમ્સ હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Harvest metadata and references to bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "મેટાડેટા અને બિટસ્ટ્રીમ્સના સંદર્ભો હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Harvest metadata only", "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "મેટાડેટા માત્ર હાર્વેસ્ટ કરો", - // "collection.edit.tabs.source.head": "Content Source", "collection.edit.tabs.source.head": "સામગ્રી સ્ત્રોત", - // "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "collection.edit.tabs.source.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - // "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded", "collection.edit.tabs.source.notifications.discarded.title": "ફેરફારો રદ", - // "collection.edit.tabs.source.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "collection.edit.tabs.source.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", - // "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid", "collection.edit.tabs.source.notifications.invalid.title": "મેટાડેટા અમાન્ય", - // "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.", "collection.edit.tabs.source.notifications.saved.content": "આ સંગ્રહના સામગ્રી સ્ત્રોત માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", - // "collection.edit.tabs.source.notifications.saved.title": "Content Source saved", "collection.edit.tabs.source.notifications.saved.title": "સામગ્રી સ્ત્રોત સાચવ્યું", - // "collection.edit.tabs.source.title": "Collection Edit - Content Source", "collection.edit.tabs.source.title": "સંગ્રહ સંપાદન - સામગ્રી સ્ત્રોત", - // "collection.edit.template.add-button": "Add", "collection.edit.template.add-button": "ઉમેરો", - // "collection.edit.template.breadcrumbs": "Item template", "collection.edit.template.breadcrumbs": "આઇટમ ટેમ્પલેટ", - // "collection.edit.template.cancel": "Cancel", "collection.edit.template.cancel": "રદ કરો", - // "collection.edit.template.delete-button": "Delete", "collection.edit.template.delete-button": "કાઢી નાખો", - // "collection.edit.template.edit-button": "Edit", "collection.edit.template.edit-button": "સંપાદિત કરો", - // "collection.edit.template.error": "An error occurred retrieving the template item", "collection.edit.template.error": "ટેમ્પલેટ આઇટમ મેળવતી વખતે ભૂલ આવી", - // "collection.edit.template.head": "Edit Template Item for Collection \"{{ collection }}\"", "collection.edit.template.head": "સંગ્રહ \\\"{{ collection }}\\\" માટે ટેમ્પલેટ આઇટમ સંપાદિત કરો", - // "collection.edit.template.label": "Template item", "collection.edit.template.label": "ટેમ્પલેટ આઇટમ", - // "collection.edit.template.loading": "Loading template item...", "collection.edit.template.loading": "ટેમ્પલેટ આઇટમ લોડ કરી રહ્યું છે...", - // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "આઇટમ ટેમ્પલેટ કાઢી નાખવામાં નિષ્ફળ", - // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", "collection.edit.template.notifications.delete.success": "આઇટમ ટેમ્પલેટ સફળતાપૂર્વક કાઢી નાખ્યું", - // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "ટેમ્પલેટ આઇટમ સંપાદિત કરો", - // "collection.form.abstract": "Short Description", "collection.form.abstract": "સંક્ષિપ્ત વર્ણન", - // "collection.form.description": "Introductory text (HTML)", "collection.form.description": "પરિચયાત્મક લખાણ (HTML)", - // "collection.form.errors.title.required": "Please enter a collection name", "collection.form.errors.title.required": "કૃપા કરીને સંગ્રહનું નામ દાખલ કરો", - // "collection.form.license": "License", "collection.form.license": "લાઇસન્સ", - // "collection.form.provenance": "Provenance", "collection.form.provenance": "પ્રૂવનન્સ", - // "collection.form.rights": "Copyright text (HTML)", "collection.form.rights": "કૉપિરાઇટ લખાણ (HTML)", - // "collection.form.tableofcontents": "News (HTML)", "collection.form.tableofcontents": "સમાચાર (HTML)", - // "collection.form.title": "Name", "collection.form.title": "નામ", - // "collection.form.entityType": "Entity Type", "collection.form.entityType": "સત્તા પ્રકાર", - // "collection.listelement.badge": "Collection", - "collection.listelement.badge": "સંગ્રહ", + "collection.listelement.badge": "સંગ્રહ", + + "collection.logo": "સંગ્રહ લોગો", + + "collection.page.browse.search.head": "શોધો", + + "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", + + "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", + + "collection.page.license": "લાઇસન્સ", + + "collection.page.news": "સમાચાર", + + "collection.page.options": "વિકલ્પો", + + "collection.search.breadcrumbs": "શોધો", + + "collection.search.results.head": "શોધ પરિણામો", + + "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", + + "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", + + "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", + + "collection.select.table.select": "સંગ્રહ પસંદ કરો", + + "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", + + "collection.select.table.title": "શીર્ષક", + + "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", + + "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", + + "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", + + "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", + + "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", + + "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + + "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "collection.source.controls.import.submit": "હવે આયાત કરો", + + "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", + + "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", + + "collection.source.controls.import.completed": "આયાત પૂર્ણ", + + "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + + "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "bitstream-request-a-copy.submit": "નકલ માટે વિનંતી કરો", + + "bitstream-request-a-copy.submit.success": "આઇટમ વિનંતી સફળતાપૂર્વક સબમિટ કરવામાં આવી.", + + "bitstream-request-a-copy.submit.error": "આઇટમ વિનંતી સબમિટ કરતી વખતે કંઈક ખોટું થયું.", + + "bitstream-request-a-copy.access-by-token.warning": "તમે આ આઇટમને સુરક્ષિત ઍક્સેસ લિંક દ્વારા જોઈ રહ્યા છો જે તમને લેખક અથવા રિપોઝિટરી સ્ટાફ દ્વારા પ્રદાન કરવામાં આવી છે. આ લિંકને અનધિકૃત વપરાશકર્તાઓ સાથે શેર ન કરવું મહત્વપૂર્ણ છે.", + + "bitstream-request-a-copy.access-by-token.expiry-label": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ સમાપ્ત થશે", + + "bitstream-request-a-copy.access-by-token.expired": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ હવે શક્ય નથી. ઍક્સેસ સમાપ્ત થઈ ગઈ છે", + + "bitstream-request-a-copy.access-by-token.not-granted": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ શક્ય નથી. ઍક્સેસ είτε મંજુર કરવામાં આવી નથી, είτε રદ કરવામાં આવી છે.", + + "bitstream-request-a-copy.access-by-token.re-request": "ઍક્સેસ માટે નવી વિનંતી સબમિટ કરવા માટે પ્રતિબંધિત ડાઉનલોડ લિંક્સને અનુસરો.", + + "bitstream-request-a-copy.access-by-token.alt-text": "આ આઇટમ માટે ઍક્સેસ સુરક્ષિત ટોકન દ્વારા પ્રદાન કરવામાં આવે છે", + + "browse.back.all-results": "બધા બ્રાઉઝ પરિણામો", + + "browse.comcol.by.author": "લેખક દ્વારા", + + "browse.comcol.by.dateissued": "પ્રકાશન તારીખ દ્વારા", + + "browse.comcol.by.subject": "વિષય દ્વારા", + + "browse.comcol.by.srsc": "વિષય શ્રેણી દ્વારા", + + "browse.comcol.by.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા", + + "browse.comcol.by.title": "શીર્ષક દ્વારા", + + "browse.comcol.head": "બ્રાઉઝ", + + "browse.empty": "બતાવવા માટે કોઈ આઇટમ્સ નથી.", + + "browse.metadata.author": "લેખક", + + "browse.metadata.dateissued": "પ્રકાશન તારીખ", + + "browse.metadata.subject": "વિષય", + + "browse.metadata.title": "શીર્ષક", + + "browse.metadata.srsc": "વિષય શ્રેણી", + + "browse.metadata.author.breadcrumbs": "લેખક દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.dateissued.breadcrumbs": "તારીખ દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.subject.breadcrumbs": "વિષય દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.srsc.breadcrumbs": "વિષય શ્રેણી દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.srsc.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", + + "browse.metadata.nsi.breadcrumbs": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.nsi.tree.description": "શોધ ફિલ્ટર તરીકે ઇન્ડેક્સ પસંદ કરો", + + "browse.metadata.title.breadcrumbs": "શીર્ષક દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.map": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.map.breadcrumbs": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો", + + "browse.metadata.map.count.items": "આઇટમ્સ", + + "pagination.next.button": "આગલું", + + "pagination.previous.button": "પાછલું", + + "pagination.next.button.disabled.tooltip": "કોઈ વધુ પૃષ્ઠો નથી", + + "pagination.page-number-bar": "પૃષ્ઠ નેવિગેશન માટે કંટ્રોલ બાર, ID સાથેના તત્વ માટે: ", + + "browse.startsWith": ", {{ startsWith }} થી શરૂ થાય છે", + + "browse.startsWith.choose_start": "(શરૂઆત પસંદ કરો)", + + "browse.startsWith.choose_year": "(વર્ષ પસંદ કરો)", + + "browse.startsWith.choose_year.label": "પ્રકાશન વર્ષ પસંદ કરો", + + "browse.startsWith.jump": "વર્ષ અથવા મહિના દ્વારા પરિણામો ફિલ્ટર કરો", + + "browse.startsWith.months.april": "એપ્રિલ", + + "browse.startsWith.months.august": "ઑગસ્ટ", + + "browse.startsWith.months.december": "ડિસેમ્બર", + + "browse.startsWith.months.february": "ફેબ્રુઆરી", + + "browse.startsWith.months.january": "જાન્યુઆરી", + + "browse.startsWith.months.july": "જુલાઈ", + + "browse.startsWith.months.june": "જૂન", + + "browse.startsWith.months.march": "માર્ચ", + + "browse.startsWith.months.may": "મે", + + "browse.startsWith.months.none": "(મહિનો પસંદ કરો)", + + "browse.startsWith.months.none.label": "પ્રકાશન મહિનો પસંદ કરો", + + "browse.startsWith.months.november": "નવેમ્બર", + + "browse.startsWith.months.october": "ઑક્ટોબર", + + "browse.startsWith.months.september": "સપ્ટેમ્બર", + + "browse.startsWith.submit": "બ્રાઉઝ", + + "browse.startsWith.type_date": "તારીખ દ્વારા પરિણામો ફિલ્ટર કરો", + + "browse.startsWith.type_date.label": "અથવા તારીખ (વર્ષ-મહિનો) દાખલ કરો અને બ્રાઉઝ બટન પર ક્લિક કરો", + + "browse.startsWith.type_text": "પ્રથમ થોડા અક્ષરો ટાઇપ કરીને પરિણામો ફિલ્ટર કરો", + + "browse.startsWith.input": "ફિલ્ટર", + + "browse.taxonomy.button": "બ્રાઉઝ", + + "browse.title": "{{ field }}{{ startsWith }} {{ value }} દ્વારા બ્રાઉઝિંગ", + + "browse.title.page": "{{ field }} {{ value }} દ્વારા બ્રાઉઝિંગ", + + "search.browse.item-back": "પરિણામો પર પાછા જાઓ", + + "chips.remove": "ચિપ દૂર કરો", + + "claimed-approved-search-result-list-element.title": "મંજૂર", + + "claimed-declined-search-result-list-element.title": "નકારવામાં આવ્યું, સબમિટરને પાછું મોકલવામાં આવ્યું", + + "claimed-declined-task-search-result-list-element.title": "નકારવામાં આવ્યું, રિવ્યુ મેનેજરના વર્કફ્લો પર પાછું મોકલવામાં આવ્યું", + + "collection.create.breadcrumbs": "સંગ્રહ બનાવો", + + "collection.browse.logo": "સંગ્રહ લોગો માટે બ્રાઉઝ કરો", + + "collection.create.head": "સંગ્રહ બનાવો", + + "collection.create.notifications.success": "સંગ્રહ સફળતાપૂર્વક બનાવવામાં આવ્યો", + + "collection.create.sub-head": "સમુદાય {{ parent }} માટે સંગ્રહ બનાવો", + + "collection.curate.header": "સંગ્રહ ક્યુરેટ કરો: {{collection}}", + + "collection.delete.cancel": "રદ કરો", + + "collection.delete.confirm": "ખાતરી કરો", + + "collection.delete.processing": "કાઢી રહ્યા છે", + + "collection.delete.head": "સંગ્રહ કાઢી નાખો", + + "collection.delete.notification.fail": "સંગ્રહ કાઢી શકાતો નથી", + + "collection.delete.notification.success": "સંગ્રહ સફળતાપૂર્વક કાઢી નાખ્યો", + + "collection.delete.text": "શું તમે ખરેખર સંગ્રહ \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", + + "collection.edit.delete": "આ સંગ્રહ કાઢી નાખો", + + "collection.edit.head": "સંગ્રહ સંપાદિત કરો", + + "collection.edit.breadcrumbs": "સંગ્રહ સંપાદિત કરો", + + "collection.edit.tabs.mapper.head": "આઇટમ મેપર", + + "collection.edit.tabs.item-mapper.title": "સંગ્રહ સંપાદન - આઇટમ મેપર", + + "collection.edit.item-mapper.cancel": "રદ કરો", + + "collection.edit.item-mapper.collection": "સંગ્રહ: \\\"{{name}}\\\"", + + "collection.edit.item-mapper.confirm": "પસંદ કરેલ આઇટમ્સ મેપ કરો", + + "collection.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે સંગ્રહ વહીવટકર્તાઓને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરવાની મંજૂરી આપે છે. તમે અન્ય સંગ્રહોમાંથી આઇટમ્સ શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા હાલમાં મેપ કરેલ આઇટમ્સની યાદી બ્રાઉઝ કરી શકો છો.", + + "collection.edit.item-mapper.head": "આઇટમ મેપર - અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરો", + + "collection.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", + + "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} આઇટમ્સના મેપિંગ માટે ભૂલો આવી.", + + "collection.edit.item-mapper.notifications.map.error.head": "મેપિંગ ભૂલો", + + "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} આઇટમ્સ સફળતાપૂર્વક મેપ કરવામાં આવ્યા.", + + "collection.edit.item-mapper.notifications.map.success.head": "મેપિંગ પૂર્ણ", + + "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} આઇટમ્સના મેપિંગ દૂર કરતી વખતે ભૂલો આવી.", + + "collection.edit.item-mapper.notifications.unmap.error.head": "મેપિંગ દૂર કરવાની ભૂલો", + + "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} આઇટમ્સના મેપિંગ સફળતાપૂર્વક દૂર કરવામાં આવ્યા.", + + "collection.edit.item-mapper.notifications.unmap.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", + + "collection.edit.item-mapper.remove": "પસંદ કરેલ આઇટમ મેપિંગ્સ દૂર કરો", + + "collection.edit.item-mapper.search-form.placeholder": "આઇટમ્સ શોધો...", + + "collection.edit.item-mapper.tabs.browse": "મેપ કરેલ આઇટમ્સ બ્રાઉઝ કરો", + + "collection.edit.item-mapper.tabs.map": "નવા આઇટમ્સ મેપ કરો", + + "collection.edit.logo.delete.title": "લોગો કાઢી નાખો", + + "collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + + "collection.edit.logo.label": "સંગ્રહ લોગો", + + "collection.edit.logo.notifications.add.error": "સંગ્રહ લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", + + "collection.edit.logo.notifications.add.success": "સંગ્રહ લોગો સફળતાપૂર્વક અપલોડ થયો.", + + "collection.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", + + "collection.edit.logo.notifications.delete.success.content": "સંગ્રહનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", + + "collection.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", + + "collection.edit.logo.upload": "અપલોડ કરવા માટે સંગ્રહ લોગો ડ્રોપ કરો", + + "collection.edit.notifications.success": "સંગ્રહ સફળતાપૂર્વક સંપાદિત કર્યો", + + "collection.edit.return": "પાછા", + + "collection.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", + + "collection.edit.tabs.access-control.title": "સંગ્રહ સંપાદન - ઍક્સેસ કંટ્રોલ", + + "collection.edit.tabs.curate.head": "ક્યુરેટ", + + "collection.edit.tabs.curate.title": "સંગ્રહ સંપાદન - ક્યુરેટ", + + "collection.edit.tabs.authorizations.head": "અધિકૃતતા", + + "collection.edit.tabs.authorizations.title": "સંગ્રહ સંપાદન - અધિકૃતતા", + + "collection.edit.item.authorizations.load-bundle-button": "વધુ બંડલ્સ લોડ કરો", + + "collection.edit.item.authorizations.load-more-button": "વધુ લોડ કરો", + + "collection.edit.item.authorizations.show-bitstreams-button": "બંડલ માટે બિટસ્ટ્રીમ પોલિસી બતાવો", + + "collection.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", + + "collection.edit.tabs.metadata.title": "સંગ્રહ સંપાદન - મેટાડેટા", + + "collection.edit.tabs.roles.head": "ભૂમિકા સોંપો", + + "collection.edit.tabs.roles.title": "સંગ્રહ સંપાદન - ભૂમિકા", + + "collection.edit.tabs.source.external": "આ સંગ્રહ તેની સામગ્રી બાહ્ય સ્ત્રોતમાંથી હાર્વેસ્ટ કરે છે", + + "collection.edit.tabs.source.form.errors.oaiSource.required": "તમારે લક્ષ્ય સંગ્રહનો સેટ id પ્રદાન કરવો જ જોઈએ.", + + "collection.edit.tabs.source.form.harvestType": "હાર્વેસ્ટ થતી સામગ્રી", + + "collection.edit.tabs.source.form.head": "બાહ્ય સ્ત્રોત કૉન્ફિગર કરો", + + "collection.edit.tabs.source.form.metadataConfigId": "મેટાડેટા ફોર્મેટ", + + "collection.edit.tabs.source.form.oaiSetId": "OAI વિશિષ્ટ સેટ id", + + "collection.edit.tabs.source.form.oaiSource": "OAI પ્રદાતા", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "મેટાડેટા અને બિટસ્ટ્રીમ્સ હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "મેટાડેટા અને બિટસ્ટ્રીમ્સના સંદર્ભો હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "મેટાડેટા માત્ર હાર્વેસ્ટ કરો", + + "collection.edit.tabs.source.head": "સામગ્રી સ્ત્રોત", + + "collection.edit.tabs.source.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", + + "collection.edit.tabs.source.notifications.discarded.title": "ફેરફારો રદ", + + "collection.edit.tabs.source.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", + + "collection.edit.tabs.source.notifications.invalid.title": "મેટાડેટા અમાન્ય", + + "collection.edit.tabs.source.notifications.saved.content": "આ સંગ્રહના સામગ્રી સ્ત્રોત માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", + + "collection.edit.tabs.source.notifications.saved.title": "સામગ્રી સ્ત્રોત સાચવ્યું", + + "collection.edit.tabs.source.title": "સંગ્રહ સંપાદન - સામગ્રી સ્ત્રોત", + + "collection.edit.template.add-button": "ઉમેરો", + + "collection.edit.template.breadcrumbs": "આઇટમ ટેમ્પલેટ", + + "collection.edit.template.cancel": "રદ કરો", + + "collection.edit.template.delete-button": "કાઢી નાખો", + + "collection.edit.template.edit-button": "સંપાદિત કરો", + + "collection.edit.template.error": "ટેમ્પલેટ આઇટમ મેળવતી વખતે ભૂલ આવી", + + "collection.edit.template.head": "સંગ્રહ \\\"{{ collection }}\\\" માટે ટેમ્પલેટ આઇટમ સંપાદિત કરો", + + "collection.edit.template.label": "ટેમ્પલેટ આઇટમ", + + "collection.edit.template.loading": "ટેમ્પલેટ આઇટમ લોડ કરી રહ્યું છે...", + + "collection.edit.template.notifications.delete.error": "આઇટમ ટેમ્પલેટ કાઢી નાખવામાં નિષ્ફળ", + + "collection.edit.template.notifications.delete.success": "આઇટમ ટેમ્પલેટ સફળતાપૂર્વક કાઢી નાખ્યું", + + "collection.edit.template.title": "ટેમ્પલેટ આઇટમ સંપાદિત કરો", + + "collection.form.abstract": "સંક્ષિપ્ત વર્ણન", + + "collection.form.description": "પરિચયાત્મક લખાણ (HTML)", + + "collection.form.errors.title.required": "કૃપા કરીને સંગ્રહનું નામ દાખલ કરો", + + "collection.form.license": "લાઇસન્સ", + + "collection.form.provenance": "પ્રૂવનન્સ", + + "collection.form.rights": "કૉપિરાઇટ લખાણ (HTML)", + + "collection.form.tableofcontents": "સમાચાર (HTML)", + + "collection.form.title": "નામ", + + "collection.form.entityType": "સત્તા પ્રકાર", + + "collection.listelement.badge": "સંગ્રહ", + + "collection.logo": "સંગ્રહ લોગો", + + "collection.page.browse.search.head": "શોધો", + + "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", + + "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", + + "collection.page.license": "લાઇસન્સ", + + "collection.page.news": "સમાચાર", + + "collection.page.options": "વિકલ્પો", + + "collection.search.breadcrumbs": "શોધો", + + "collection.search.results.head": "શોધ પરિણામો", + + "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", + + "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", + + "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", + + "collection.select.table.select": "સંગ્રહ પસંદ કરો", + + "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", + + "collection.select.table.title": "શીર્ષક", + + "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", + + "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", + + "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", + + "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", + + "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", + + "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + + "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "collection.source.controls.import.submit": "હવે આયાત કરો", + + "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", + + "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", + + "collection.source.controls.import.completed": "આયાત પૂર્ણ", + + "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + + "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + + "collection.source.controls.reset.failed": "રીસેટ અને ફરી આયાત દરમિયાન ભૂલ આવી", + + "collection.source.controls.reset.completed": "રીસેટ અને ફરી આયાત પૂર્ણ", + + "collection.source.controls.reset.submit": "રીસેટ અને ફરી આયાત", + + "collection.source.controls.reset.running": "રીસેટ અને ફરી આયાત કરી રહ્યું છે...", + + "collection.source.controls.harvest.status": "હાર્વેસ્ટ સ્થિતિ:", + + "collection.source.controls.harvest.start": "હાર્વેસ્ટ શરૂ સમય:", + + "collection.source.controls.harvest.last": "છેલ્લો હાર્વેસ્ટ સમય:", + + "collection.source.controls.harvest.message": "હાર્વેસ્ટ માહિતી:", + + "collection.source.controls.harvest.no-information": "N/A", + + "collection.source.update.notifications.error.content": "પ્રદાન કરેલ સેટિંગ્સનું પરીક્ષણ કરવામાં આવ્યું છે અને તે કાર્યરત નથી.", + + "collection.source.update.notifications.error.title": "સર્વર ભૂલ", + + "communityList.breadcrumbs": "સમુદાય યાદી", + + "communityList.tabTitle": "સમુદાય યાદી", + + "communityList.title": "સમુદાયોની યાદી", + + "communityList.showMore": "વધુ બતાવો", + + "communityList.expand": "{{ name }} વિસ્તારો", + + "communityList.collapse": "{{ name }} સંકોચો", + + "community.browse.logo": "સમુદાય લોગો માટે બ્રાઉઝ કરો", + + "community.subcoms-cols.breadcrumbs": "ઉપસમુદાયો અને સંગ્રહો", + + "community.create.breadcrumbs": "સમુદાય બનાવો", + + "community.create.head": "સમુદાય બનાવો", + + "community.create.notifications.success": "સમુદાય સફળતાપૂર્વક બનાવવામાં આવ્યો", + + "community.create.sub-head": "સમુદાય {{ parent }} માટે ઉપસમુદાય બનાવો", + + "community.curate.header": "સમુદાય ક્યુરેટ કરો: {{community}}", + + "community.delete.cancel": "રદ કરો", + + "community.delete.confirm": "ખાતરી કરો", + + "community.delete.processing": "કાઢી રહ્યા છે...", + + "community.delete.head": "સમુદાય કાઢી નાખો", + + "community.delete.notification.fail": "સમુદાય કાઢી શકાતો નથી", + + "community.delete.notification.success": "સમુદાય સફળતાપૂર્વક કાઢી નાખ્યો", + + "community.delete.text": "શું તમે ખરેખર સમુદાય \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", + + "community.edit.delete": "આ સમુદાય કાઢી નાખો", + + "community.edit.head": "સમુદાય સંપાદિત કરો", + + "community.edit.breadcrumbs": "સમુદાય સંપાદિત કરો", + + "community.edit.logo.delete.title": "લોગો કાઢી નાખો", + + "community-collection.edit.logo.delete.title": "કાઢી નાખવું ખાતરી કરો", + + "community.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + + "community-collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", + + "community.edit.logo.label": "સમુદાય લોગો", + + "community.edit.logo.notifications.add.error": "સમુદાય લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", + + "community.edit.logo.notifications.add.success": "સમુદાય લોગો સફળતાપૂર્વક અપલોડ થયો.", + + "community.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", + + "community.edit.logo.notifications.delete.success.content": "સમુદાયનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", + + "community.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", + + "community.edit.logo.upload": "અપલોડ કરવા માટે સમુદાય લોગો ડ્રોપ કરો", + + "community.edit.notifications.success": "સમુદાય સફળતાપૂર્વક સંપાદિત કર્યો", + + "community.edit.notifications.unauthorized": "તમને આ ફેરફાર કરવાની પરવાનગી નથી", + + "community.edit.notifications.error": "સમુદાય સંપાદિત કરતી વખતે ભૂલ આવી", + + "community.edit.return": "પાછા", + + "community.edit.tabs.curate.head": "ક્યુરેટ", + + "community.edit.tabs.curate.title": "સમુદાય સંપાદન - ક્યુરેટ", + + "community.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", + + "community.edit.tabs.access-control.title": "સમુદાય સંપાદન - ઍક્સેસ કંટ્રોલ", + + "community.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", + + "community.edit.tabs.metadata.title": "સમુદાય સંપાદન - મેટાડેટા", + + "community.edit.tabs.roles.head": "ભૂમિકા સોંપો", + + "community.edit.tabs.roles.title": "સમુદાય સંપાદન - ભૂમિકા", + + "community.edit.tabs.authorizations.head": "અધિકૃતતા", + + "community.edit.tabs.authorizations.title": "સમુદાય સંપાદન - અધિકૃતતા", + + "community.listelement.badge": "સમુદાય", + + "community.logo": "સમુદાય લોગો", + + "comcol-role.edit.no-group": "કોઈ નથી", + + "comcol-role.edit.create": "બનાવો", + + "comcol-role.edit.create.error.title": "'{{ role }}' ભૂમિકા માટે જૂથ બનાવવામાં નિષ્ફળ", + + "comcol-role.edit.restrict": "પ્રતિબંધિત", + + "comcol-role.edit.delete": "કાઢી નાખો", + + "comcol-role.edit.delete.error.title": "'{{ role }}' ભૂમિકા માટેના જૂથને કાઢી નાખવામાં નિષ્ફળ", + + "comcol-role.edit.community-admin.name": "એડમિનિસ્ટ્રેટર્સ", + + "comcol-role.edit.collection-admin.name": "એડમિનિસ્ટ્રેટર્સ", + + "comcol-role.edit.community-admin.description": "સમુદાય એડમિનિસ્ટ્રેટર્સ ઉપસમુદાયો અથવા સંગ્રહો બનાવી શકે છે, અને તે ઉપસમુદાયો અથવા સંગ્રહો માટે મેનેજમેન્ટ સોંપી શકે છે. ઉપરાંત, તેઓ નક્કી કરે છે કે કોણ ઉપસંગ્રહોમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને અન્ય સંગ્રહોમાંથી (અધિકૃતતા મુજબ) આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે.", + + "comcol-role.edit.collection-admin.description": "સંગ્રહ એડમિનિસ્ટ્રેટર્સ નક્કી કરે છે કે કોણ સંગ્રહમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે (તે સંગ્રહ માટેની અધિકૃતતા મુજબ).", + + "comcol-role.edit.submitters.name": "સબમિટર્સ", + + "comcol-role.edit.submitters.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં નવા આઇટમ્સ સબમિટ કરવાની પરવાનગી છે.", + + "comcol-role.edit.item_read.name": "ડિફોલ્ટ આઇટમ વાંચન ઍક્સેસ", + + "comcol-role.edit.item_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા આઇટમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા આઇટમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", + + "comcol-role.edit.item_read.anonymous-group": "આવતા આઇટમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", + + "comcol-role.edit.bitstream_read.name": "ડિફોલ્ટ બિટસ્ટ્રીમ વાંચન ઍક્સેસ", + + "comcol-role.edit.bitstream_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા બિટસ્ટ્રીમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા બિટસ્ટ્રીમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", + + "comcol-role.edit.bitstream_read.anonymous-group": "આવતા બિટસ્ટ્રીમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", + + "comcol-role.edit.editor.name": "સંપાદકો", + + "comcol-role.edit.editor.description": "સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, અને પછી તેમને સ્વીકારી અથવા નકારી શકે છે.", + + "comcol-role.edit.finaleditor.name": "અંતિમ સંપાદકો", + + "comcol-role.edit.finaleditor.description": "અંતિમ સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, પરંતુ તેમને નકારી શકશે નહીં.", + + "comcol-role.edit.reviewer.name": "રિવ્યુઅર્સ", + + "comcol-role.edit.reviewer.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્વીકારી અથવા નકારી શકે છે. જો કે, તેઓ સબમિશનના મેટાડેટા સંપાદિત કરી શકશે નહીં.", + + "comcol-role.edit.scorereviewers.name": "સ્કોર રિવ્યુઅર્સ", + + "comcol-role.edit.scorereviewers.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્કોર આપી શકે છે, જે નક્કી કરશે કે સબમિશન નકારવામાં આવશે કે નહીં.", + + "community.form.abstract": "સંક્ષિપ્ત વર્ણન", + + "community.form.description": "પરિચયાત્મક લખાણ (HTML)", + + "community.form.errors.title.required": "કૃપા કરીને સમુદાયનું નામ દાખલ કરો", + + "community.form.rights": "કૉપિરાઇટ લખાણ (HTML)", + + "community.form.tableofcontents": "સમાચાર (HTML)", + + "community.form.title": "નામ", + + "community.page.edit": "આ સમુદાય સંપાદિત કરો", + + "community.page.handle": "આ સમુદાય માટે કાયમી URI", + + "community.page.license": "લાઇસન્સ", + + "community.page.news": "સમાચાર", + + "community.page.options": "વિકલ્પો", + + "community.all-lists.head": "ઉપસમુદાયો અને સંગ્રહો", + + "community.search.breadcrumbs": "શોધો", + + "community.search.results.head": "શોધ પરિણામો", + + "community.sub-collection-list.head": "આ સમુદાયમાં સંગ્રહો", + + "community.sub-community-list.head": "આ સમુદાયમાં સમુદાયો", + + "cookies.consent.accept-all": "બધા સ્વીકારો", + + "cookies.consent.accept-selected": "પસંદ કરેલ સ્વીકારો", + + "cookies.consent.app.opt-out.description": "આ એપ્લિકેશન ડિફોલ્ટ દ્વારા લોડ થાય છે (પરંતુ તમે તેને ઓપ્ટ આઉટ કરી શકો છો)", + + "cookies.consent.app.opt-out.title": "(ઓપ્ટ-આઉટ)", + + "cookies.consent.app.purpose": "હેતુ", + + "cookies.consent.app.required.description": "આ એપ્લિકેશન હંમેશા જરૂરી છે", + + "cookies.consent.app.required.title": "(હંમેશા જરૂરી)", + + "cookies.consent.update": "તમારા છેલ્લા મુલાકાત પછી ફેરફારો થયા છે, કૃપા કરીને તમારી સંમતિ અપડેટ કરો.", + + "cookies.consent.close": "બંધ કરો", + + "cookies.consent.decline": "નકારો", + + "cookies.consent.decline-all": "બધા નકારો", + + "cookies.consent.ok": "તે ઠીક છે", + + "cookies.consent.save": "સાચવો", + + "cookies.consent.content-notice.description": "અમે નીચેના હેતુઓ માટે તમારી વ્યક્તિગત માહિતી એકત્રિત અને પ્રક્રિયા કરીએ છીએ: {purposes}", + + "cookies.consent.content-notice.learnMore": "કસ્ટમાઇઝ કરો", + + "cookies.consent.content-modal.description": "અહીં તમે જોઈ શકો છો અને કસ્ટમાઇઝ કરી શકો છો કે અમે તમારા વિશે કઈ માહિતી એકત્રિત કરીએ છીએ.", + + "cookies.consent.content-modal.privacy-policy.name": "ગોપનીયતા નીતિ", + + "cookies.consent.content-modal.privacy-policy.text": "વધુ જાણવા માટે, કૃપા કરીને અમારી {privacyPolicy} વાંચો.", + + "cookies.consent.content-modal.no-privacy-policy.text": "", + + "cookies.consent.content-modal.title": "અમે જે માહિતી એકત્રિત કરીએ છીએ", + + "cookies.consent.app.title.authentication": "પ્રમાણન", + + "cookies.consent.app.description.authentication": "તમને સાઇન ઇન કરવા માટે જરૂરી છે", + + "cookies.consent.app.title.preferences": "પસંદગીઓ", + + "cookies.consent.app.description.preferences": "તમારી પસંદગીઓ સાચવવા માટે જરૂરી છે", + + "cookies.consent.app.title.acknowledgement": "સ્વીકાર", + + "cookies.consent.app.description.acknowledgement": "તમારા સ્વીકાર અને સંમતિઓ સાચવવા માટે જરૂરી છે", + + "cookies.consent.app.title.google-analytics": "Google Analytics", + + "cookies.consent.app.description.google-analytics": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", + + "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", + + "cookies.consent.app.description.google-recaptcha": "અમે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ દરમિયાન Google reCAPTCHA સેવા નો ઉપયોગ કરીએ છીએ", + + "cookies.consent.app.title.matomo": "Matomo", + + "cookies.consent.app.description.matomo": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", + + "cookies.consent.purpose.functional": "કાર્યાત્મક", + + "cookies.consent.purpose.statistical": "આંકડાકીય", + + "cookies.consent.purpose.registration-password-recovery": "નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ", + + "cookies.consent.purpose.sharing": "શેરિંગ", + + "curation-task.task.citationpage.label": "સાઇટેશન પેજ જનરેટ કરો", + + "curation-task.task.checklinks.label": "મેટાડેટામાં લિંક્સ તપાસો", + + "curation-task.task.noop.label": "NOOP", + + "curation-task.task.profileformats.label": "પ્રોફાઇલ બિટસ્ટ્રીમ ફોર્મેટ્સ", + + "curation-task.task.requiredmetadata.label": "જરૂરી મેટાડેટા માટે તપાસો", + + "curation-task.task.translate.label": "Microsoft Translator", + + "curation-task.task.vscan.label": "વાયરસ સ્કેન", + + "curation-task.task.registerdoi.label": "DOI નોંધણી કરો", + + "curation.form.task-select.label": "ટાસ્ક:", + + "curation.form.submit": "શરૂ કરો", + + "curation.form.submit.success.head": "ક્યુરેશન ટાસ્ક સફળતાપૂર્વક શરૂ કરવામાં આવી", + + "curation.form.submit.success.content": "તમને સંબંધિત પ્રક્રિયા પૃષ્ઠ પર રીડાયરેક્ટ કરવામાં આવશે.", + + "curation.form.submit.error.head": "ક્યુરેશન ટાસ્ક ચલાવતી વખતે નિષ્ફળ", + + "curation.form.submit.error.content": "ક્યુરેશન ટાસ્ક શરૂ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી.", - // "collection.logo": "Collection logo", - "collection.logo": "સંગ્રહ લોગો", + "curation.form.submit.error.invalid-handle": "આ ઑબ્જેક્ટ માટે હેન્ડલ નક્કી કરી શક્યો નથી", - // "collection.page.browse.search.head": "Search", - "collection.page.browse.search.head": "શોધો", + "curation.form.handle.label": "હેન્ડલ:", - // "collection.page.edit": "Edit this collection", - "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો", + "curation.form.handle.hint": "સૂચન: [તમારા-હેન્ડલ-પ્રિફિક્સ]/0 દાખલ કરો જેથી સમગ્ર સાઇટ પર ટાસ્ક ચલાવી શકાય (બધા ટાસ્ક આ ક્ષમતા સપોર્ટ કરી શકે છે)", - // "collection.page.handle": "Permanent URI for this collection", - "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI", + "deny-request-copy.email.message": "પ્રિય {{ recipientName }},\\nતમારી વિનંતીનો જવાબ આપતાં મને દુઃખ છે કે હું તમને વિનંતી કરેલ ફાઇલ(ઓ)ની નકલ મોકલી શકું નહીં, દસ્તાવેજ: \\\"{{ itemUrl }}\\\" ({{ itemName }}), જેનો હું લેખક છું.\\n\\nશ્રેષ્ઠ શુભેચ્છાઓ,\\n{{ authorName }} <{{ authorEmail }}>", - // "collection.page.license": "License", - "collection.page.license": "લાઇસન્સ", + "deny-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", - // "collection.page.news": "News", - "collection.page.news": "સમાચાર", + "deny-request-copy.error": "ભૂલ આવી", - // "collection.page.options": "Options", - "collection.page.options": "વિકલ્પો", + "deny-request-copy.header": "દસ્તાવેજની નકલ વિનંતી નકારી", - // "collection.search.breadcrumbs": "Search", - "collection.search.breadcrumbs": "શોધો", + "deny-request-copy.intro": "આ સંદેશા વિનંતી કરનારને મોકલવામાં આવશે", - // "collection.search.results.head": "Search Results", - "collection.search.results.head": "શોધ પરિણામો", + "deny-request-copy.success": "આઇટમ વિનંતી સફળતાપૂર્વક નકારી", - // "collection.select.confirm": "Confirm selected", - "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો", + "dynamic-list.load-more": "વધુ લોડ કરો", - // "collection.select.empty": "No collections to show", - "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી", + "dropdown.clear": "પસંદગી સાફ કરો", - // "collection.select.table.selected": "Selected collections", - "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો", + "dropdown.clear.tooltip": "પસંદ કરેલ વિકલ્પ દૂર કરો", - // "collection.select.table.select": "Select collection", - "collection.select.table.select": "સંગ્રહ પસંદ કરો", + "dso.name.untitled": "શીર્ષક વિના", - // "collection.select.table.deselect": "Deselect collection", - "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો", + "dso.name.unnamed": "નામ વિના", - // "collection.select.table.title": "Title", - "collection.select.table.title": "શીર્ષક", + "dso-selector.create.collection.head": "નવો સંગ્રહ", - // "collection.source.controls.head": "Harvest Controls", - "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ", + "dso-selector.create.collection.sub-level": "માં નવો સંગ્રહ બનાવો", - // "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings", - "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું", + "dso-selector.create.community.head": "નવો સમુદાય", - // "collection.source.controls.test.failed": "The script to test the settings has failed", - "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ", + "dso-selector.create.community.or-divider": "અથવા", - // "collection.source.controls.test.completed": "The script to test the settings has successfully finished", - "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ", + "dso-selector.create.community.sub-level": "માં નવો સમુદાય બનાવો", - // "collection.source.controls.test.submit": "Test configuration", - "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ", + "dso-selector.create.community.top-level": "ટોપ-લેવલ સમુદાય બનાવો", - // "collection.source.controls.test.running": "Testing configuration...", - "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...", + "dso-selector.create.item.head": "નવું આઇટમ", - // "collection.source.controls.import.submit.success": "The import has been successfully initiated", - "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + "dso-selector.create.item.sub-level": "માં નવું આઇટમ બનાવો", - // "collection.source.controls.import.submit.error": "Something went wrong with initiating the import", - "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + "dso-selector.create.submission.head": "નવું સબમિશન", - // "collection.source.controls.import.submit": "Import now", - "collection.source.controls.import.submit": "હવે આયાત કરો", + "dso-selector.edit.collection.head": "સંગ્રહ સંપાદિત કરો", - // "collection.source.controls.import.running": "Importing...", - "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...", + "dso-selector.edit.community.head": "સમુદાય સંપાદિત કરો", - // "collection.source.controls.import.failed": "An error occurred during the import", - "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી", + "dso-selector.edit.item.head": "આઇટમ સંપાદિત કરો", - // "collection.source.controls.import.completed": "The import completed", - "collection.source.controls.import.completed": "આયાત પૂર્ણ", + "dso-selector.error.title": "{{ type }} માટે શોધ કરતી વખતે ભૂલ આવી", - // "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated", - "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી", + "dso-selector.export-metadata.dspaceobject.head": "મેટાડેટા નિકાસ કરો", - // "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport", - "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું", + "dso-selector.export-batch.dspaceobject.head": "બેચ (ZIP) નિકાસ કરો", - // "collection.source.controls.reset.failed": "An error occurred during the reset and reimport", "collection.source.controls.reset.failed": "રીસેટ અને ફરી આયાત દરમિયાન ભૂલ આવી", - // "collection.source.controls.reset.completed": "The reset and reimport completed", "collection.source.controls.reset.completed": "રીસેટ અને ફરી આયાત પૂર્ણ", - // "collection.source.controls.reset.submit": "Reset and reimport", "collection.source.controls.reset.submit": "રીસેટ અને ફરી આયાત", - // "collection.source.controls.reset.running": "Resetting and reimporting...", "collection.source.controls.reset.running": "રીસેટ અને ફરી આયાત કરી રહ્યું છે...", - // "collection.source.controls.harvest.status": "Harvest status:", - // TODO New key - Add a translation - "collection.source.controls.harvest.status": "Harvest status:", + "collection.source.controls.harvest.status": "હાર્વેસ્ટ સ્થિતિ:", - // "collection.source.controls.harvest.start": "Harvest start time:", - // TODO New key - Add a translation - "collection.source.controls.harvest.start": "Harvest start time:", + "collection.source.controls.harvest.start": "હાર્વેસ્ટ શરૂ સમય:", - // "collection.source.controls.harvest.last": "Last time harvested:", - // TODO New key - Add a translation - "collection.source.controls.harvest.last": "Last time harvested:", + "collection.source.controls.harvest.last": "છેલ્લો હાર્વેસ્ટ સમય:", - // "collection.source.controls.harvest.message": "Harvest info:", - // TODO New key - Add a translation - "collection.source.controls.harvest.message": "Harvest info:", + "collection.source.controls.harvest.message": "હાર્વેસ્ટ માહિતી:", - // "collection.source.controls.harvest.no-information": "N/A", "collection.source.controls.harvest.no-information": "N/A", - // "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.", "collection.source.update.notifications.error.content": "પ્રદાન કરેલ સેટિંગ્સનું પરીક્ષણ કરવામાં આવ્યું છે અને તે કાર્યરત નથી.", - // "collection.source.update.notifications.error.title": "Server Error", "collection.source.update.notifications.error.title": "સર્વર ભૂલ", - // "communityList.breadcrumbs": "Community List", "communityList.breadcrumbs": "સમુદાય યાદી", - // "communityList.tabTitle": "Community List", "communityList.tabTitle": "સમુદાય યાદી", - // "communityList.title": "List of Communities", "communityList.title": "સમુદાયોની યાદી", - // "communityList.showMore": "Show More", "communityList.showMore": "વધુ બતાવો", - // "communityList.expand": "Expand {{ name }}", "communityList.expand": "{{ name }} વિસ્તારો", - // "communityList.collapse": "Collapse {{ name }}", "communityList.collapse": "{{ name }} સંકોચો", - // "community.browse.logo": "Browse for a community logo", "community.browse.logo": "સમુદાય લોગો માટે બ્રાઉઝ કરો", - // "community.subcoms-cols.breadcrumbs": "Subcommunities and Collections", "community.subcoms-cols.breadcrumbs": "ઉપસમુદાયો અને સંગ્રહો", - // "community.create.breadcrumbs": "Create Community", "community.create.breadcrumbs": "સમુદાય બનાવો", - // "community.create.head": "Create a Community", "community.create.head": "સમુદાય બનાવો", - // "community.create.notifications.success": "Successfully created the community", "community.create.notifications.success": "સમુદાય સફળતાપૂર્વક બનાવવામાં આવ્યો", - // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", "community.create.sub-head": "સમુદાય {{ parent }} માટે ઉપસમુદાય બનાવો", - // "community.curate.header": "Curate Community: {{community}}", - // TODO New key - Add a translation - "community.curate.header": "Curate Community: {{community}}", + "community.curate.header": "સમુદાય ક્યુરેટ કરો: {{community}}", - // "community.delete.cancel": "Cancel", "community.delete.cancel": "રદ કરો", - // "community.delete.confirm": "Confirm", "community.delete.confirm": "ખાતરી કરો", - // "community.delete.processing": "Deleting...", "community.delete.processing": "કાઢી રહ્યા છે...", - // "community.delete.head": "Delete Community", "community.delete.head": "સમુદાય કાઢી નાખો", - // "community.delete.notification.fail": "Community could not be deleted", "community.delete.notification.fail": "સમુદાય કાઢી શકાતો નથી", - // "community.delete.notification.success": "Successfully deleted community", "community.delete.notification.success": "સમુદાય સફળતાપૂર્વક કાઢી નાખ્યો", - // "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"", "community.delete.text": "શું તમે ખરેખર સમુદાય \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો", - // "community.edit.delete": "Delete this community", "community.edit.delete": "આ સમુદાય કાઢી નાખો", - // "community.edit.head": "Edit Community", "community.edit.head": "સમુદાય સંપાદિત કરો", - // "community.edit.breadcrumbs": "Edit Community", "community.edit.breadcrumbs": "સમુદાય સંપાદિત કરો", - // "community.edit.logo.delete.title": "Delete logo", "community.edit.logo.delete.title": "લોગો કાઢી નાખો", - // "community-collection.edit.logo.delete.title": "Confirm deletion", "community-collection.edit.logo.delete.title": "કાઢી નાખવું ખાતરી કરો", - // "community.edit.logo.delete-undo.title": "Undo delete", "community.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - // "community-collection.edit.logo.delete-undo.title": "Undo delete", "community-collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો", - // "community.edit.logo.label": "Community logo", "community.edit.logo.label": "સમુદાય લોગો", - // "community.edit.logo.notifications.add.error": "Uploading community logo failed. Please verify the content before retrying.", "community.edit.logo.notifications.add.error": "સમુદાય લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", - // "community.edit.logo.notifications.add.success": "Upload community logo successful.", "community.edit.logo.notifications.add.success": "સમુદાય લોગો સફળતાપૂર્વક અપલોડ થયો.", - // "community.edit.logo.notifications.delete.success.title": "Logo deleted", "community.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો", - // "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo", "community.edit.logo.notifications.delete.success.content": "સમુદાયનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો", - // "community.edit.logo.notifications.delete.error.title": "Error deleting logo", "community.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ", - // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "અપલોડ કરવા માટે સમુદાય લોગો ડ્રોપ કરો", - // "community.edit.notifications.success": "Successfully edited the community", "community.edit.notifications.success": "સમુદાય સફળતાપૂર્વક સંપાદિત કર્યો", - // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", "community.edit.notifications.unauthorized": "તમને આ ફેરફાર કરવાની પરવાનગી નથી", - // "community.edit.notifications.error": "An error occurred while editing the community", "community.edit.notifications.error": "સમુદાય સંપાદિત કરતી વખતે ભૂલ આવી", - // "community.edit.return": "Back", "community.edit.return": "પાછા", - // "community.edit.tabs.curate.head": "Curate", "community.edit.tabs.curate.head": "ક્યુરેટ", - // "community.edit.tabs.curate.title": "Community Edit - Curate", "community.edit.tabs.curate.title": "સમુદાય સંપાદન - ક્યુરેટ", - // "community.edit.tabs.access-control.head": "Access Control", "community.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", - // "community.edit.tabs.access-control.title": "Community Edit - Access Control", "community.edit.tabs.access-control.title": "સમુદાય સંપાદન - ઍક્સેસ કંટ્રોલ", - // "community.edit.tabs.metadata.head": "Edit Metadata", "community.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો", - // "community.edit.tabs.metadata.title": "Community Edit - Metadata", "community.edit.tabs.metadata.title": "સમુદાય સંપાદન - મેટાડેટા", - // "community.edit.tabs.roles.head": "Assign Roles", "community.edit.tabs.roles.head": "ભૂમિકા સોંપો", - // "community.edit.tabs.roles.title": "Community Edit - Roles", "community.edit.tabs.roles.title": "સમુદાય સંપાદન - ભૂમિકા", - // "community.edit.tabs.authorizations.head": "Authorizations", "community.edit.tabs.authorizations.head": "અધિકૃતતા", - // "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", "community.edit.tabs.authorizations.title": "સમુદાય સંપાદન - અધિકૃતતા", - // "community.listelement.badge": "Community", "community.listelement.badge": "સમુદાય", - // "community.logo": "Community logo", "community.logo": "સમુદાય લોગો", - // "comcol-role.edit.no-group": "None", "comcol-role.edit.no-group": "કોઈ નથી", - // "comcol-role.edit.create": "Create", "comcol-role.edit.create": "બનાવો", - // "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role", "comcol-role.edit.create.error.title": "'{{ role }}' ભૂમિકા માટે જૂથ બનાવવામાં નિષ્ફળ", - // "comcol-role.edit.restrict": "Restrict", "comcol-role.edit.restrict": "પ્રતિબંધિત", - // "comcol-role.edit.delete": "Delete", "comcol-role.edit.delete": "કાઢી નાખો", - // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "'{{ role }}' ભૂમિકા માટેના જૂથને કાઢી નાખવામાં નિષ્ફળ", - // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - - // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - - // "comcol-role.edit.delete.modal.cancel": "Cancel", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.cancel": "Cancel", - - // "comcol-role.edit.delete.modal.confirm": "Delete", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.confirm": "Delete", - - // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "એડમિનિસ્ટ્રેટર્સ", - // "comcol-role.edit.collection-admin.name": "Administrators", "comcol-role.edit.collection-admin.name": "એડમિનિસ્ટ્રેટર્સ", - // "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).", "comcol-role.edit.community-admin.description": "સમુદાય એડમિનિસ્ટ્રેટર્સ ઉપસમુદાયો અથવા સંગ્રહો બનાવી શકે છે, અને તે ઉપસમુદાયો અથવા સંગ્રહો માટે મેનેજમેન્ટ સોંપી શકે છે. ઉપરાંત, તેઓ નક્કી કરે છે કે કોણ ઉપસંગ્રહોમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને અન્ય સંગ્રહોમાંથી (અધિકૃતતા મુજબ) આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે.", - // "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).", "comcol-role.edit.collection-admin.description": "સંગ્રહ એડમિનિસ્ટ્રેટર્સ નક્કી કરે છે કે કોણ સંગ્રહમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે (તે સંગ્રહ માટેની અધિકૃતતા મુજબ).", - // "comcol-role.edit.submitters.name": "Submitters", "comcol-role.edit.submitters.name": "સબમિટર્સ", - // "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.", "comcol-role.edit.submitters.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં નવા આઇટમ્સ સબમિટ કરવાની પરવાનગી છે.", - // "comcol-role.edit.item_read.name": "Default item read access", "comcol-role.edit.item_read.name": "ડિફોલ્ટ આઇટમ વાંચન ઍક્સેસ", - // "comcol-role.edit.item_read.description": "E-People and Groups that can read new items submitted to this collection. Changes to this role are not retroactive. Existing items in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.item_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા આઇટમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા આઇટમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", - // "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.", "comcol-role.edit.item_read.anonymous-group": "આવતા આઇટમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", - // "comcol-role.edit.bitstream_read.name": "Default bitstream read access", "comcol-role.edit.bitstream_read.name": "ડિફોલ્ટ બિટસ્ટ્રીમ વાંચન ઍક્સેસ", - // "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.bitstream_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા બિટસ્ટ્રીમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા બિટસ્ટ્રીમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.", - // "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.", "comcol-role.edit.bitstream_read.anonymous-group": "આવતા બિટસ્ટ્રીમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.", - // "comcol-role.edit.editor.name": "Editors", "comcol-role.edit.editor.name": "સંપાદકો", - // "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.", "comcol-role.edit.editor.description": "સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, અને પછી તેમને સ્વીકારી અથવા નકારી શકે છે.", - // "comcol-role.edit.finaleditor.name": "Final editors", "comcol-role.edit.finaleditor.name": "અંતિમ સંપાદકો", - // "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.", "comcol-role.edit.finaleditor.description": "અંતિમ સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, પરંતુ તેમને નકારી શકશે નહીં.", - // "comcol-role.edit.reviewer.name": "Reviewers", "comcol-role.edit.reviewer.name": "રિવ્યુઅર્સ", - // "comcol-role.edit.reviewer.description": "Reviewers are able to accept or reject incoming submissions. However, they are not able to edit the submission's metadata.", "comcol-role.edit.reviewer.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્વીકારી અથવા નકારી શકે છે. જો કે, તેઓ સબમિશનના મેટાડેટા સંપાદિત કરી શકશે નહીં.", - // "comcol-role.edit.scorereviewers.name": "Score Reviewers", "comcol-role.edit.scorereviewers.name": "સ્કોર રિવ્યુઅર્સ", - // "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.", "comcol-role.edit.scorereviewers.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્કોર આપી શકે છે, જે નક્કી કરશે કે સબમિશન નકારવામાં આવશે કે નહીં.", - // "community.form.abstract": "Short Description", "community.form.abstract": "સંક્ષિપ્ત વર્ણન", - // "community.form.description": "Introductory text (HTML)", "community.form.description": "પરિચયાત્મક લખાણ (HTML)", - // "community.form.errors.title.required": "Please enter a community name", "community.form.errors.title.required": "કૃપા કરીને સમુદાયનું નામ દાખલ કરો", - // "community.form.rights": "Copyright text (HTML)", "community.form.rights": "કૉપિરાઇટ લખાણ (HTML)", - // "community.form.tableofcontents": "News (HTML)", "community.form.tableofcontents": "સમાચાર (HTML)", - // "community.form.title": "Name", "community.form.title": "નામ", - // "community.page.edit": "Edit this community", "community.page.edit": "આ સમુદાય સંપાદિત કરો", - // "community.page.handle": "Permanent URI for this community", "community.page.handle": "આ સમુદાય માટે કાયમી URI", - // "community.page.license": "License", "community.page.license": "લાઇસન્સ", - // "community.page.news": "News", "community.page.news": "સમાચાર", - // "community.page.options": "Options", "community.page.options": "વિકલ્પો", - // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "ઉપસમુદાયો અને સંગ્રહો", - // "community.search.breadcrumbs": "Search", "community.search.breadcrumbs": "શોધો", - // "community.search.results.head": "Search Results", "community.search.results.head": "શોધ પરિણામો", - // "community.sub-collection-list.head": "Collections in this community", "community.sub-collection-list.head": "આ સમુદાયમાં સંગ્રહો", - // "community.sub-community-list.head": "Communities in this Community", "community.sub-community-list.head": "આ સમુદાયમાં સમુદાયો", - // "cookies.consent.accept-all": "Accept all", "cookies.consent.accept-all": "બધા સ્વીકારો", - // "cookies.consent.accept-selected": "Accept selected", "cookies.consent.accept-selected": "પસંદ કરેલ સ્વીકારો", - // "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)", "cookies.consent.app.opt-out.description": "આ એપ્લિકેશન ડિફોલ્ટ દ્વારા લોડ થાય છે (પરંતુ તમે તેને ઓપ્ટ આઉટ કરી શકો છો)", - // "cookies.consent.app.opt-out.title": "(opt-out)", "cookies.consent.app.opt-out.title": "(ઓપ્ટ-આઉટ)", - // "cookies.consent.app.purpose": "purpose", "cookies.consent.app.purpose": "હેતુ", - // "cookies.consent.app.required.description": "This application is always required", "cookies.consent.app.required.description": "આ એપ્લિકેશન હંમેશા જરૂરી છે", - // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(હંમેશા જરૂરી)", - // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "તમારા છેલ્લા મુલાકાત પછી ફેરફારો થયા છે, કૃપા કરીને તમારી સંમતિ અપડેટ કરો.", - // "cookies.consent.close": "Close", "cookies.consent.close": "બંધ કરો", - // "cookies.consent.decline": "Decline", "cookies.consent.decline": "નકારો", - // "cookies.consent.decline-all": "Decline all", "cookies.consent.decline-all": "બધા નકારો", - // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "તે ઠીક છે", - // "cookies.consent.save": "Save", "cookies.consent.save": "સાચવો", - // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", - // TODO New key - Add a translation - "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + "cookies.consent.content-notice.description": "અમે નીચેના હેતુઓ માટે તમારી વ્યક્તિગત માહિતી એકત્રિત અને પ્રક્રિયા કરીએ છીએ: {purposes}", - // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "કસ્ટમાઇઝ કરો", - // "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.", "cookies.consent.content-modal.description": "અહીં તમે જોઈ શકો છો અને કસ્ટમાઇઝ કરી શકો છો કે અમે તમારા વિશે કઈ માહિતી એકત્રિત કરીએ છીએ.", - // "cookies.consent.content-modal.privacy-policy.name": "privacy policy", "cookies.consent.content-modal.privacy-policy.name": "ગોપનીયતા નીતિ", - // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "વધુ જાણવા માટે, કૃપા કરીને અમારી {privacyPolicy} વાંચો.", - // "cookies.consent.content-modal.no-privacy-policy.text": "", "cookies.consent.content-modal.no-privacy-policy.text": "", - // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "અમે જે માહિતી એકત્રિત કરીએ છીએ", - // "cookies.consent.app.title.accessibility": "Accessibility Settings", - // TODO New key - Add a translation - "cookies.consent.app.title.accessibility": "Accessibility Settings", - - // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", - // TODO New key - Add a translation - "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", - - // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "પ્રમાણન", - // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "તમને સાઇન ઇન કરવા માટે જરૂરી છે", - // "cookies.consent.app.title.correlation-id": "Correlation ID", - // TODO New key - Add a translation - "cookies.consent.app.title.correlation-id": "Correlation ID", - - // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - // TODO New key - Add a translation - "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - - // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "પસંદગીઓ", - // "cookies.consent.app.description.preferences": "Required for saving your preferences", "cookies.consent.app.description.preferences": "તમારી પસંદગીઓ સાચવવા માટે જરૂરી છે", - // "cookies.consent.app.title.acknowledgement": "Acknowledgement", "cookies.consent.app.title.acknowledgement": "સ્વીકાર", - // "cookies.consent.app.description.acknowledgement": "Required for saving your acknowledgements and consents", "cookies.consent.app.description.acknowledgement": "તમારા સ્વીકાર અને સંમતિઓ સાચવવા માટે જરૂરી છે", - // "cookies.consent.app.title.google-analytics": "Google Analytics", "cookies.consent.app.title.google-analytics": "Google Analytics", - // "cookies.consent.app.description.google-analytics": "Allows us to track statistical data", "cookies.consent.app.description.google-analytics": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", - // "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", - // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "અમે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ દરમિયાન Google reCAPTCHA સેવા નો ઉપયોગ કરીએ છીએ", - // "cookies.consent.app.title.matomo": "Matomo", "cookies.consent.app.title.matomo": "Matomo", - // "cookies.consent.app.description.matomo": "Allows us to track statistical data", "cookies.consent.app.description.matomo": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે", - // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "કાર્યાત્મક", - // "cookies.consent.purpose.statistical": "Statistical", "cookies.consent.purpose.statistical": "આંકડાકીય", - // "cookies.consent.purpose.registration-password-recovery": "Registration and Password recovery", "cookies.consent.purpose.registration-password-recovery": "નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ", - // "cookies.consent.purpose.sharing": "Sharing", "cookies.consent.purpose.sharing": "શેરિંગ", - // "curation-task.task.citationpage.label": "Generate Citation Page", "curation-task.task.citationpage.label": "સાઇટેશન પેજ જનરેટ કરો", - // "curation-task.task.checklinks.label": "Check Links in Metadata", "curation-task.task.checklinks.label": "મેટાડેટામાં લિંક્સ તપાસો", - // "curation-task.task.noop.label": "NOOP", "curation-task.task.noop.label": "NOOP", - // "curation-task.task.profileformats.label": "Profile Bitstream Formats", "curation-task.task.profileformats.label": "પ્રોફાઇલ બિટસ્ટ્રીમ ફોર્મેટ્સ", - // "curation-task.task.requiredmetadata.label": "Check for Required Metadata", "curation-task.task.requiredmetadata.label": "જરૂરી મેટાડેટા માટે તપાસો", - // "curation-task.task.translate.label": "Microsoft Translator", "curation-task.task.translate.label": "Microsoft Translator", - // "curation-task.task.vscan.label": "Virus Scan", "curation-task.task.vscan.label": "વાયરસ સ્કેન", - // "curation-task.task.registerdoi.label": "Register DOI", "curation-task.task.registerdoi.label": "DOI નોંધણી કરો", - // "curation.form.task-select.label": "Task:", - // TODO New key - Add a translation - "curation.form.task-select.label": "Task:", + "curation.form.task-select.label": "ટાસ્ક:", - // "curation.form.submit": "Start", "curation.form.submit": "શરૂ કરો", - // "curation.form.submit.success.head": "The curation task has been started successfully", "curation.form.submit.success.head": "ક્યુરેશન ટાસ્ક સફળતાપૂર્વક શરૂ કરવામાં આવી", - // "curation.form.submit.success.content": "You will be redirected to the corresponding process page.", "curation.form.submit.success.content": "તમને સંબંધિત પ્રક્રિયા પૃષ્ઠ પર રીડાયરેક્ટ કરવામાં આવશે.", - // "curation.form.submit.error.head": "Running the curation task failed", "curation.form.submit.error.head": "ક્યુરેશન ટાસ્ક ચલાવતી વખતે નિષ્ફળ", - // "curation.form.submit.error.content": "An error occurred when trying to start the curation task.", "curation.form.submit.error.content": "ક્યુરેશન ટાસ્ક શરૂ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી.", - // "curation.form.submit.error.invalid-handle": "Couldn't determine the handle for this object", "curation.form.submit.error.invalid-handle": "આ ઑબ્જેક્ટ માટે હેન્ડલ નક્કી કરી શક્યો નથી", - // "curation.form.handle.label": "Handle:", - // TODO New key - Add a translation - "curation.form.handle.label": "Handle:", + "curation.form.handle.label": "હેન્ડલ:", - // "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", - // TODO New key - Add a translation - "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", + "curation.form.handle.hint": "સૂચન: [તમારા-હેન્ડલ-પ્રિફિક્સ]/0 દાખલ કરો જેથી સમગ્ર સાઇટ પર ટાસ્ક ચલાવી શકાય (બધા ટાસ્ક આ ક્ષમતા સપોર્ટ કરી શકે છે)", - // "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", - // TODO New key - Add a translation - "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + "deny-request-copy.email.message": "પ્રિય {{ recipientName }},\\nતમારી વિનંતીનો જવાબ આપતાં મને દુઃખ છે કે હું તમને વિનંતી કરેલ ફાઇલ(ઓ)ની નકલ મોકલી શકું નહીં, દસ્તાવેજ: \\\"{{ itemUrl }}\\\" ({{ itemName }}), જેનો હું લેખક છું.\\n\\nશ્રેષ્ઠ શુભેચ્છાઓ,\\n{{ authorName }} <{{ authorEmail }}>", - // "deny-request-copy.email.subject": "Request copy of document", "deny-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", - // "deny-request-copy.error": "An error occurred", "deny-request-copy.error": "ભૂલ આવી", - // "deny-request-copy.header": "Deny document copy request", "deny-request-copy.header": "દસ્તાવેજની નકલ વિનંતી નકારી", - // "deny-request-copy.intro": "This message will be sent to the applicant of the request", "deny-request-copy.intro": "આ સંદેશા વિનંતી કરનારને મોકલવામાં આવશે", - // "deny-request-copy.success": "Successfully denied item request", "deny-request-copy.success": "આઇટમ વિનંતી સફળતાપૂર્વક નકારી", - // "dynamic-list.load-more": "Load more", "dynamic-list.load-more": "વધુ લોડ કરો", - // "dropdown.clear": "Clear selection", "dropdown.clear": "પસંદગી સાફ કરો", - // "dropdown.clear.tooltip": "Clear the selected option", "dropdown.clear.tooltip": "પસંદ કરેલ વિકલ્પ દૂર કરો", - // "dso.name.untitled": "Untitled", "dso.name.untitled": "શીર્ષક વિના", - // "dso.name.unnamed": "Unnamed", "dso.name.unnamed": "નામ વિના", - // "dso-selector.create.collection.head": "New collection", "dso-selector.create.collection.head": "નવો સંગ્રહ", - // "dso-selector.create.collection.sub-level": "Create a new collection in", "dso-selector.create.collection.sub-level": "માં નવો સંગ્રહ બનાવો", - // "dso-selector.create.community.head": "New community", "dso-selector.create.community.head": "નવો સમુદાય", - // "dso-selector.create.community.or-divider": "or", "dso-selector.create.community.or-divider": "અથવા", - // "dso-selector.create.community.sub-level": "Create a new community in", "dso-selector.create.community.sub-level": "માં નવો સમુદાય બનાવો", - // "dso-selector.create.community.top-level": "Create a new top-level community", "dso-selector.create.community.top-level": "ટોપ-લેવલ સમુદાય બનાવો", - // "dso-selector.create.item.head": "New item", "dso-selector.create.item.head": "નવું આઇટમ", - // "dso-selector.create.item.sub-level": "Create a new item in", "dso-selector.create.item.sub-level": "માં નવું આઇટમ બનાવો", - // "dso-selector.create.submission.head": "New submission", "dso-selector.create.submission.head": "નવું સબમિશન", - // "dso-selector.edit.collection.head": "Edit collection", "dso-selector.edit.collection.head": "સંગ્રહ સંપાદિત કરો", - // "dso-selector.edit.community.head": "Edit community", "dso-selector.edit.community.head": "સમુદાય સંપાદિત કરો", - // "dso-selector.edit.item.head": "Edit item", "dso-selector.edit.item.head": "આઇટમ સંપાદિત કરો", - // "dso-selector.error.title": "An error occurred searching for a {{ type }}", "dso-selector.error.title": "{{ type }} માટે શોધ કરતી વખતે ભૂલ આવી", - // "dso-selector.export-metadata.dspaceobject.head": "Export metadata from", "dso-selector.export-metadata.dspaceobject.head": "મેટાડેટા નિકાસ કરો", - // "dso-selector.export-batch.dspaceobject.head": "Export Batch (ZIP) from", "dso-selector.export-batch.dspaceobject.head": "બેચ (ZIP) નિકાસ કરો", - // "dso-selector.import-batch.dspaceobject.head": "Import batch from", "dso-selector.import-batch.dspaceobject.head": "બેચ આયાત કરો", - // "dso-selector.no-results": "No {{ type }} found", "dso-selector.no-results": "કોઈ {{ type }} મળ્યું નથી", - // "dso-selector.placeholder": "Search for a {{ type }}", "dso-selector.placeholder": "{{ type }} માટે શોધો", - // "dso-selector.placeholder.type.community": "community", "dso-selector.placeholder.type.community": "સમુદાય", - // "dso-selector.placeholder.type.collection": "collection", "dso-selector.placeholder.type.collection": "સંગ્રહ", - // "dso-selector.placeholder.type.item": "item", "dso-selector.placeholder.type.item": "આઇટમ", - // "dso-selector.select.collection.head": "Select a collection", "dso-selector.select.collection.head": "સંગ્રહ પસંદ કરો", - // "dso-selector.set-scope.community.head": "Select a search scope", "dso-selector.set-scope.community.head": "શોધ સ્કોપ પસંદ કરો", - // "dso-selector.set-scope.community.button": "Search all of DSpace", "dso-selector.set-scope.community.button": "DSpace ના બધા શોધો", - // "dso-selector.set-scope.community.or-divider": "or", "dso-selector.set-scope.community.or-divider": "અથવા", - // "dso-selector.set-scope.community.input-header": "Search for a community or collection", "dso-selector.set-scope.community.input-header": "સમુદાય અથવા સંગ્રહ માટે શોધો", - // "dso-selector.claim.item.head": "Profile tips", "dso-selector.claim.item.head": "પ્રોફાઇલ ટીપ્સ", - // "dso-selector.claim.item.body": "These are existing profiles that may be related to you. If you recognize yourself in one of these profiles, select it and on the detail page, among the options, choose to claim it. Otherwise you can create a new profile from scratch using the button below.", "dso-selector.claim.item.body": "આ મોજુદા પ્રોફાઇલ્સ છે જે તમારા સંબંધિત હોઈ શકે છે. જો તમે આ પ્રોફાઇલ્સમાં પોતાને ઓળખો છો, તો તેને પસંદ કરો અને વિગત પૃષ્ઠ પર, વિકલ્પોમાંથી, તેને દાવો કરવા માટે પસંદ કરો. અન્યથા, તમે નીચેના બટનનો ઉપયોગ કરીને નવું પ્રોફાઇલ શરુ કરી શકો છો.", - // "dso-selector.claim.item.not-mine-label": "None of these are mine", "dso-selector.claim.item.not-mine-label": "આમાંથી કોઈપણ મારું નથી", - // "dso-selector.claim.item.create-from-scratch": "Create a new one", "dso-selector.claim.item.create-from-scratch": "નવું બનાવો", - // "dso-selector.results-could-not-be-retrieved": "Something went wrong, please refresh again ↻", "dso-selector.results-could-not-be-retrieved": "કંઈક ખોટું થયું, કૃપા કરીને ફરીથી રિફ્રેશ કરો ↻", - // "supervision-group-selector.header": "Supervision Group Selector", "supervision-group-selector.header": "સુપરવિઝન ગ્રુપ સિલેક્ટર", - // "supervision-group-selector.select.type-of-order.label": "Select a type of Order", "supervision-group-selector.select.type-of-order.label": "ઓર્ડરનો પ્રકાર પસંદ કરો", - // "supervision-group-selector.select.type-of-order.option.none": "NONE", "supervision-group-selector.select.type-of-order.option.none": "કોઈ નથી", - // "supervision-group-selector.select.type-of-order.option.editor": "EDITOR", "supervision-group-selector.select.type-of-order.option.editor": "સંપાદક", - // "supervision-group-selector.select.type-of-order.option.observer": "OBSERVER", "supervision-group-selector.select.type-of-order.option.observer": "નિરીક્ષક", - // "supervision-group-selector.select.group.label": "Select a Group", "supervision-group-selector.select.group.label": "જૂથ પસંદ કરો", - // "supervision-group-selector.button.cancel": "Cancel", "supervision-group-selector.button.cancel": "રદ કરો", - // "supervision-group-selector.button.save": "Save", "supervision-group-selector.button.save": "સાચવો", - // "supervision-group-selector.select.type-of-order.error": "Please select a type of order", "supervision-group-selector.select.type-of-order.error": "કૃપા કરીને ઓર્ડરનો પ્રકાર પસંદ કરો", - // "supervision-group-selector.select.group.error": "Please select a group", "supervision-group-selector.select.group.error": "કૃપા કરીને જૂથ પસંદ કરો", - // "supervision-group-selector.notification.create.success.title": "Successfully created supervision order for group {{ name }}", "supervision-group-selector.notification.create.success.title": "જૂથ {{ name }} માટે સુપરવિઝન ઓર્ડર સફળતાપૂર્વક બનાવવામાં આવ્યો", - // "supervision-group-selector.notification.create.failure.title": "Error", "supervision-group-selector.notification.create.failure.title": "ભૂલ", - // "supervision-group-selector.notification.create.already-existing": "A supervision order already exists on this item for selected group", "supervision-group-selector.notification.create.already-existing": "પસંદ કરેલ જૂથ માટે પહેલેથી જ સુપરવિઝન ઓર્ડર અસ્તિત્વમાં છે", - // "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.header": "{{ dsoName }} માટે મેટાડેટા નિકાસ કરો", - // "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.info": "શું તમે ખરેખર {{ dsoName }} માટે મેટાડેટા નિકાસ કરવા માંગો છો", - // "confirmation-modal.export-metadata.cancel": "Cancel", "confirmation-modal.export-metadata.cancel": "રદ કરો", - // "confirmation-modal.export-metadata.confirm": "Export", "confirmation-modal.export-metadata.confirm": "નિકાસ કરો", - // "confirmation-modal.export-batch.header": "Export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.header": "{{ dsoName }} માટે બેચ (ZIP) નિકાસ કરો", - // "confirmation-modal.export-batch.info": "Are you sure you want to export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.info": "શું તમે ખરેખર {{ dsoName }} માટે બેચ (ZIP) નિકાસ કરવા માંગો છો", - // "confirmation-modal.export-batch.cancel": "Cancel", "confirmation-modal.export-batch.cancel": "રદ કરો", - // "confirmation-modal.export-batch.confirm": "Export", "confirmation-modal.export-batch.confirm": "નિકાસ કરો", - // "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.header": "EPerson \\\"{{ dsoName }}\\\" કાઢી નાખો", - // "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.info": "શું તમે ખરેખર EPerson \\\"{{ dsoName }}\\\" કાઢી નાખવા માંગો છો", - // "confirmation-modal.delete-eperson.cancel": "Cancel", "confirmation-modal.delete-eperson.cancel": "રદ કરો", - // "confirmation-modal.delete-eperson.confirm": "Delete", "confirmation-modal.delete-eperson.confirm": "કાઢી નાખો", - // "confirmation-modal.delete-community-collection-logo.info": "Are you sure you want to delete the logo?", "confirmation-modal.delete-community-collection-logo.info": "શું તમે ખરેખર લોગો કાઢી નાખવા માંગો છો?", - // "confirmation-modal.delete-profile.header": "Delete Profile", "confirmation-modal.delete-profile.header": "પ્રોફાઇલ કાઢી નાખો", - // "confirmation-modal.delete-profile.info": "Are you sure you want to delete your profile", "confirmation-modal.delete-profile.info": "શું તમે ખરેખર તમારું પ્રોફાઇલ કાઢી નાખવા માંગો છો", - // "confirmation-modal.delete-profile.cancel": "Cancel", "confirmation-modal.delete-profile.cancel": "રદ કરો", - // "confirmation-modal.delete-profile.confirm": "Delete", "confirmation-modal.delete-profile.confirm": "કાઢી નાખો", - // "confirmation-modal.delete-subscription.header": "Delete Subscription", "confirmation-modal.delete-subscription.header": "સબ્સ્ક્રિપ્શન કાઢી નાખો", - // "confirmation-modal.delete-subscription.info": "Are you sure you want to delete subscription for \"{{ dsoName }}\"", "confirmation-modal.delete-subscription.info": "શું તમે ખરેખર \\\"{{ dsoName }}\\\" માટે સબ્સ્ક્રિપ્શન કાઢી નાખવા માંગો છો", - // "confirmation-modal.delete-subscription.cancel": "Cancel", "confirmation-modal.delete-subscription.cancel": "રદ કરો", - // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "કાઢી નાખો", - // "confirmation-modal.review-account-info.header": "Save the changes", "confirmation-modal.review-account-info.header": "ફેરફારો સાચવો", - // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", "confirmation-modal.review-account-info.info": "શું તમે ખરેખર તમારા પ્રોફાઇલમાં ફેરફારો સાચવવા માંગો છો", - // "confirmation-modal.review-account-info.cancel": "Cancel", "confirmation-modal.review-account-info.cancel": "રદ કરો", - // "confirmation-modal.review-account-info.confirm": "Confirm", "confirmation-modal.review-account-info.confirm": "ખાતરી કરો", - // "confirmation-modal.review-account-info.save": "Save", "confirmation-modal.review-account-info.save": "સાચવો", - // "error.bitstream": "Error fetching bitstream", "error.bitstream": "બિટસ્ટ્રીમ મેળવતી વખતે ભૂલ", - // "error.browse-by": "Error fetching items", "error.browse-by": "આઇટમ્સ મેળવતી વખતે ભૂલ", - // "error.collection": "Error fetching collection", "error.collection": "સંગ્રહ મેળવતી વખતે ભૂલ", - // "error.collections": "Error fetching collections", "error.collections": "સંગ્રહો મેળવતી વખતે ભૂલ", - // "error.community": "Error fetching community", "error.community": "સમુદાય મેળવતી વખતે ભૂલ", - // "error.identifier": "No item found for the identifier", "error.identifier": "આ ઓળખકર્તા માટે કોઈ આઇટમ મળ્યું નથી", - // "error.default": "Error", "error.default": "ભૂલ", - // "error.item": "Error fetching item", "error.item": "આઇટમ મેળવતી વખતે ભૂલ", - // "error.items": "Error fetching items", "error.items": "આઇટમ્સ મેળવતી વખતે ભૂલ", - // "error.objects": "Error fetching objects", "error.objects": "વસ્તુઓ મેળવતી વખતે ભૂલ", - // "error.recent-submissions": "Error fetching recent submissions", "error.recent-submissions": "તાજેતરના સબમિશન્સ મેળવતી વખતે ભૂલ", - // "error.profile-groups": "Error retrieving profile groups", "error.profile-groups": "પ્રોફાઇલ જૂથો મેળવતી વખતે ભૂલ", - // "error.search-results": "Error fetching search results", "error.search-results": "શોધ પરિણામો મેળવતી વખતે ભૂલ", - // "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", - // TODO New key - Add a translation - "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + "error.invalid-search-query": "શોધ ક્વેરી માન્ય નથી. આ ભૂલ વિશે વધુ માહિતી માટે Solr ક્વેરી સિન્ટેક્સ શ્રેષ્ઠ પ્રથાઓ તપાસો.", - // "error.sub-collections": "Error fetching sub-collections", "error.sub-collections": "ઉપ-સંગ્રહો મેળવતી વખતે ભૂલ", - // "error.sub-communities": "Error fetching sub-communities", "error.sub-communities": "ઉપ-સમુદાયો મેળવતી વખતે ભૂલ", - // "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", - // TODO New key - Add a translation - "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + "error.submission.sections.init-form-error": "વિભાગ આરંભ દરમિયાન ભૂલ આવી, કૃપા કરીને તમારા ઇનપુટ-ફોર્મ કૉન્ફિગરેશન તપાસો. વિગતો નીચે છે :

", - // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "ટોપ-લેવલ સમુદાયો મેળવતી વખતે ભૂલ", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "તમારે તમારા સબમિશનને પૂર્ણ કરવા માટે આ લાઇસન્સ આપવું જ જોઈએ. જો તમે આ સમયે આ લાઇસન્સ આપી શકતા નથી તો તમે તમારું કામ સાચવી શકો છો અને પછીથી પાછા આવી શકો છો અથવા સબમિશન દૂર કરી શકો છો.", - // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "તમારે તમારા સબમિશનને પૂર્ણ કરવા માટે આ cclicense આપવું જ જોઈએ. જો તમે આ સમયે cclicense આપી શકતા નથી, તો તમે તમારું કામ સાચવી શકો છો અને પછીથી પાછા આવી શકો છો અથવા સબમિશન દૂર કરી શકો છો.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + "error.validation.pattern": "આ ઇનપુટ વર્તમાન પેટર્ન દ્વારા પ્રતિબંધિત છે: {{ pattern }}.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", - // TODO New key - Add a translation - "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", - - // "error.validation.filerequired": "The file upload is mandatory", "error.validation.filerequired": "ફાઇલ અપલોડ ફરજિયાત છે", - // "error.validation.required": "This field is required", "error.validation.required": "આ ફીલ્ડ જરૂરી છે", - // "error.validation.NotValidEmail": "This is not a valid email", "error.validation.NotValidEmail": "આ માન્ય ઇમેઇલ નથી", - // "error.validation.emailTaken": "This email is already taken", "error.validation.emailTaken": "આ ઇમેઇલ પહેલેથી જ લેવામાં આવી છે", - // "error.validation.groupExists": "This group already exists", "error.validation.groupExists": "આ જૂથ પહેલેથી જ અસ્તિત્વમાં છે", - // "error.validation.metadata.name.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Element & Qualifier fields instead", "error.validation.metadata.name.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી. કૃપા કરીને તેના બદલે એલિમેન્ટ અને ક્વોલિફાયર ફીલ્ડનો ઉપયોગ કરો", - // "error.validation.metadata.name.max-length": "This field may not contain more than 32 characters", "error.validation.metadata.name.max-length": "આ ફીલ્ડમાં 32 થી વધુ અક્ષરો હોઈ શકતા નથી", - // "error.validation.metadata.namespace.max-length": "This field may not contain more than 256 characters", "error.validation.metadata.namespace.max-length": "આ ફીલ્ડમાં 256 થી વધુ અક્ષરો હોઈ શકતા નથી", - // "error.validation.metadata.element.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Qualifier field instead", "error.validation.metadata.element.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી. કૃપા કરીને ક્વોલિફાયર ફીલ્ડનો ઉપયોગ કરો", - // "error.validation.metadata.element.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.element.max-length": "આ ફીલ્ડમાં 64 થી વધુ અક્ષરો હોઈ શકતા નથી", - // "error.validation.metadata.qualifier.invalid-pattern": "This field cannot contain dots, commas or spaces", "error.validation.metadata.qualifier.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી", - // "error.validation.metadata.qualifier.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.qualifier.max-length": "આ ફીલ્ડમાં 64 થી વધુ અક્ષરો હોઈ શકતા નથી", - // "feed.description": "Syndication feed", "feed.description": "સિન્ડિકેશન ફીડ", - // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "પ્રતિબંધિત બિટસ્ટ્રીમ", - // "file-download-link.secure-access": "Restricted bitstream available via secure access token", "file-download-link.secure-access": "સુરક્ષિત ઍક્સેસ ટોકન દ્વારા ઉપલબ્ધ પ્રતિબંધિત બિટસ્ટ્રીમ", - // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "આ આઇટમ માટે ફાઇલો મેળવતી વખતે ભૂલ", - // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "કૉપિરાઇટ © 2002-{{ year }}", - // "footer.link.accessibility": "Accessibility settings", - // TODO New key - Add a translation - "footer.link.accessibility": "Accessibility settings", - - // "footer.link.dspace": "DSpace software", "footer.link.dspace": "DSpace સોફ્ટવેર", - // "footer.link.lyrasis": "LYRASIS", "footer.link.lyrasis": "LYRASIS", - // "footer.link.cookies": "Cookie settings", "footer.link.cookies": "કૂકી સેટિંગ્સ", - // "footer.link.privacy-policy": "Privacy policy", "footer.link.privacy-policy": "ગોપનીયતા નીતિ", - // "footer.link.end-user-agreement": "End User Agreement", "footer.link.end-user-agreement": "અંતિમ વપરાશકર્તા કરાર", - // "footer.link.feedback": "Send Feedback", "footer.link.feedback": "પ્રતિસાદ મોકલો", - // "footer.link.coar-notify-support": "COAR Notify", "footer.link.coar-notify-support": "COAR Notify", - // "forgot-email.form.header": "Forgot Password", "forgot-email.form.header": "પાસવર્ડ ભૂલી ગયા", - // "forgot-email.form.info": "Enter the email address associated with the account.", "forgot-email.form.info": "ખાતાની સાથે જોડાયેલ ઇમેઇલ સરનામું દાખલ કરો.", - // "forgot-email.form.email": "Email Address *", "forgot-email.form.email": "ઇમેઇલ સરનામું *", - // "forgot-email.form.email.error.required": "Please fill in an email address", "forgot-email.form.email.error.required": "કૃપા કરીને ઇમેઇલ સરનામું દાખલ કરો", - // "forgot-email.form.email.error.not-email-form": "Please fill in a valid email address", "forgot-email.form.email.error.not-email-form": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું દાખલ કરો", - // "forgot-email.form.email.hint": "An email will be sent to this address with a further instructions.", "forgot-email.form.email.hint": "આ સરનામે વધુ સૂચનાઓ સાથે ઇમેઇલ મોકલવામાં આવશે.", - // "forgot-email.form.submit": "Reset password", "forgot-email.form.submit": "પાસવર્ડ રીસેટ કરો", - // "forgot-email.form.success.head": "Password reset email sent", "forgot-email.form.success.head": "પાસવર્ડ રીસેટ ઇમેઇલ મોકલ્યો", - // "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "forgot-email.form.success.content": "{{ email }} પર ઇમેઇલ મોકલવામાં આવ્યો છે જેમાં વિશેષ URL અને વધુ સૂચનાઓ શામેલ છે.", - // "forgot-email.form.error.head": "Error when trying to reset password", "forgot-email.form.error.head": "પાસવર્ડ રીસેટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - // "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", - // TODO New key - Add a translation - "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + "forgot-email.form.error.content": "નીચેના ઇમેઇલ સરનામા સાથેના ખાતા માટે પાસવર્ડ રીસેટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી: {{ email }}", - // "forgot-password.title": "Forgot Password", "forgot-password.title": "પાસવર્ડ ભૂલી ગયા", - // "forgot-password.form.head": "Forgot Password", "forgot-password.form.head": "પાસવર્ડ ભૂલી ગયા", - // "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box.", "forgot-password.form.info": "નીચેના બોક્સમાં નવો પાસવર્ડ દાખલ કરો, અને તેને બીજી બોક્સમાં ફરીથી ટાઇપ કરીને તેની પુષ્ટિ કરો.", - // "forgot-password.form.card.security": "Security", "forgot-password.form.card.security": "સુરક્ષા", - // "forgot-password.form.identification.header": "Identify", "forgot-password.form.identification.header": "ઓળખો", - // "forgot-password.form.identification.email": "Email address: ", - // TODO New key - Add a translation - "forgot-password.form.identification.email": "Email address: ", + "forgot-password.form.identification.email": "ઇમેઇલ સરનામું: ", - // "forgot-password.form.label.password": "Password", "forgot-password.form.label.password": "પાસવર્ડ", - // "forgot-password.form.label.passwordrepeat": "Retype to confirm", "forgot-password.form.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી ટાઇપ કરો", - // "forgot-password.form.error.empty-password": "Please enter a password in the boxes above.", "forgot-password.form.error.empty-password": "કૃપા કરીને ઉપરના બોક્સમાં પાસવર્ડ દાખલ કરો.", - // "forgot-password.form.error.matching-passwords": "The passwords do not match.", "forgot-password.form.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", - // "forgot-password.form.notification.error.title": "Error when trying to submit new password", "forgot-password.form.notification.error.title": "નવો પાસવર્ડ સબમિટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - // "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.", "forgot-password.form.notification.success.content": "પાસવર્ડ રીસેટ સફળતાપૂર્વક પૂર્ણ થયું. તમે બનાવેલ વપરાશકર્તા તરીકે લૉગ ઇન થયા છો.", - // "forgot-password.form.notification.success.title": "Password reset completed", "forgot-password.form.notification.success.title": "પાસવર્ડ રીસેટ પૂર્ણ", - // "forgot-password.form.submit": "Submit password", "forgot-password.form.submit": "પાસવર્ડ સબમિટ કરો", - // "form.add": "Add more", "form.add": "વધુ ઉમેરો", - // "form.add-help": "Click here to add the current entry and to add another one", "form.add-help": "વર્તમાન એન્ટ્રી ઉમેરવા અને વધુ એક ઉમેરવા માટે અહીં ક્લિક કરો", - // "form.cancel": "Cancel", "form.cancel": "રદ કરો", - // "form.clear": "Clear", "form.clear": "સાફ કરો", - // "form.clear-help": "Click here to remove the selected value", "form.clear-help": "પસંદ કરેલ મૂલ્ય દૂર કરવા માટે અહીં ક્લિક કરો", - // "form.discard": "Discard", "form.discard": "રદ કરો", - // "form.drag": "Drag", "form.drag": "ડ્રેગ કરો", - // "form.edit": "Edit", "form.edit": "સંપાદિત કરો", - // "form.edit-help": "Click here to edit the selected value", "form.edit-help": "પસંદ કરેલ મૂલ્ય સંપાદિત કરવા માટે અહીં ક્લિક કરો", - // "form.first-name": "First name", "form.first-name": "પ્રથમ નામ", - // "form.group-collapse": "Collapse", "form.group-collapse": "સંકોચો", - // "form.group-collapse-help": "Click here to collapse", "form.group-collapse-help": "સંકોચવા માટે અહીં ક્લિક કરો", - // "form.group-expand": "Expand", "form.group-expand": "વિસ્તારો", - // "form.group-expand-help": "Click here to expand and add more elements", "form.group-expand-help": "વિસ્તારવા અને વધુ તત્વો ઉમેરવા માટે અહીં ક્લિક કરો", - // "form.last-name": "Last name", "form.last-name": "છેલ્લું નામ", - // "form.loading": "Loading...", "form.loading": "લોડ કરી રહ્યું છે...", - // "form.lookup": "Lookup", "form.lookup": "લુકઅપ", - // "form.lookup-help": "Click here to look up an existing relation", "form.lookup-help": "અસ્તિત્વમાં રહેલા સંબંધ માટે અહીં ક્લિક કરો", - // "form.no-results": "No results found", "form.no-results": "કોઈ પરિણામો મળ્યા નથી", - // "form.no-value": "No value entered", "form.no-value": "કોઈ મૂલ્ય દાખલ કરેલ નથી", - // "form.other-information.email": "Email", "form.other-information.email": "ઇમેઇલ", - // "form.other-information.first-name": "First Name", "form.other-information.first-name": "પ્રથમ નામ", - // "form.other-information.insolr": "In Solr Index", "form.other-information.insolr": "સોલર ઇન્ડેક્સમાં", - // "form.other-information.institution": "Institution", "form.other-information.institution": "સંસ્થા", - // "form.other-information.last-name": "Last Name", "form.other-information.last-name": "છેલ્લું નામ", - // "form.other-information.orcid": "ORCID", "form.other-information.orcid": "ORCID", - // "form.remove": "Remove", "form.remove": "દૂર કરો", - // "form.save": "Save", "form.save": "સાચવો", - // "form.save-help": "Save changes", "form.save-help": "ફેરફારો સાચવો", - // "form.search": "Search", "form.search": "શોધો", - // "form.search-help": "Click here to look for an existing correspondence", "form.search-help": "અસ્તિત્વમાં રહેલા પત્રવ્યવહાર માટે અહીં ક્લિક કરો", - // "form.submit": "Save", "form.submit": "સાચવો", - // "form.create": "Create", "form.create": "બનાવો", - // "form.number-picker.decrement": "Decrement {{field}}", "form.number-picker.decrement": "{{field}} ઘટાડો", - // "form.number-picker.increment": "Increment {{field}}", "form.number-picker.increment": "{{field}} વધારો", - // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "આઇટમને નવી સ્થિતિમાં ડ્રોપ કરો", - // "grant-deny-request-copy.deny": "Deny access request", "grant-deny-request-copy.deny": "ઍક્સેસ વિનંતી નકારી", - // "grant-deny-request-copy.revoke": "Revoke access", "grant-deny-request-copy.revoke": "ઍક્સેસ રદ કરો", - // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "પાછા", - // "grant-deny-request-copy.email.message": "Optional additional message", "grant-deny-request-copy.email.message": "વૈકલ્પિક વધારાનો સંદેશ", - // "grant-deny-request-copy.email.message.empty": "Please enter a message", "grant-deny-request-copy.email.message.empty": "કૃપા કરીને સંદેશ દાખલ કરો", - // "grant-deny-request-copy.email.permissions.info": "You may use this occasion to reconsider the access restrictions on the document, to avoid having to respond to these requests. If you’d like to ask the repository administrators to remove these restrictions, please check the box below.", "grant-deny-request-copy.email.permissions.info": "આ દસ્તાવેજ પર ઍક્સેસ પ્રતિબંધો દૂર કરવા માટે રિપોઝિટરી વહીવટકર્તાઓને પૂછવા માટે તમે આ પ્રસંગનો ઉપયોગ કરી શકો છો, જેથી આ વિનંતીઓને જવાબ આપવાની જરૂર ન પડે. જો તમે આ પ્રતિબંધો દૂર કરવા માટે રિપોઝિટરી વહીવટકર્તાઓને પૂછવા માંગતા હો, તો કૃપા કરીને નીચેના બોક્સને ચેક કરો.", - // "grant-deny-request-copy.email.permissions.label": "Change to open access", "grant-deny-request-copy.email.permissions.label": "ઓપન ઍક્સેસમાં બદલો", - // "grant-deny-request-copy.email.send": "Send", "grant-deny-request-copy.email.send": "મોકલો", - // "grant-deny-request-copy.email.subject": "Subject", "grant-deny-request-copy.email.subject": "વિષય", - // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "કૃપા કરીને વિષય દાખલ કરો", - // "grant-deny-request-copy.grant": "Grant access request", "grant-deny-request-copy.grant": "ઍક્સેસ વિનંતી મંજુર કરો", - // "grant-deny-request-copy.header": "Document copy request", "grant-deny-request-copy.header": "દસ્તાવેજ નકલ વિનંતી", - // "grant-deny-request-copy.home-page": "Take me to the home page", "grant-deny-request-copy.home-page": "મને હોમ પેજ પર લઈ જાઓ", - // "grant-deny-request-copy.intro1": "If you are one of the authors of the document {{ name }}, then please use one of the options below to respond to the user's request.", "grant-deny-request-copy.intro1": "જો તમે દસ્તાવેજના લેખકોમાંના એક છો {{ name }}, તો કૃપા કરીને વપરાશકર્તાની વિનંતીનો જવાબ આપવા માટે નીચેના વિકલ્પોનો ઉપયોગ કરો.", - // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "વિકલ્પ પસંદ કર્યા પછી, તમને સૂચિત ઇમેઇલ જવાબ રજૂ કરવામાં આવશે જે તમે સંપાદિત કરી શકો છો.", - // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", "grant-deny-request-copy.previous-decision": "આ વિનંતી અગાઉ સુરક્ષિત ઍક્સેસ ટોકન સાથે મંજુર કરવામાં આવી હતી. તમે આ ઍક્સેસને રદ કરી શકો છો જેથી ઍક્સેસ ટોકન તરત જ અમાન્ય થઈ જાય", - // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "આ વિનંતી પહેલેથી જ પ્રક્રિયા કરવામાં આવી છે. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.", - // "grant-request-copy.email.subject": "Request copy of document", "grant-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી", - // "grant-request-copy.error": "An error occurred", "grant-request-copy.error": "ભૂલ આવી", - // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "દસ્તાવેજ નકલ વિનંતી મંજુર કરો", - // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", "grant-request-copy.intro.attachment": "વિનંતી કરનારને સંદેશ મોકલવામાં આવશે. વિનંતી કરેલ દસ્તાવેજ(ઓ) જોડવામાં આવશે.", - // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", "grant-request-copy.intro.link": "વિનંતી કરનારને સંદેશ મોકલવામાં આવશે. વિનંતી કરેલ દસ્તાવેજ(ઓ)ને ઍક્સેસ પ્રદાન કરતી સુરક્ષિત લિંક જોડવામાં આવશે. લિંક નીચેના \\\"ઍક્સેસ પિરિયડ\\\" મેનુમાં પસંદ કરેલ સમયગાળા માટે ઍક્સેસ પ્રદાન કરશે.", - // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", - // TODO New key - Add a translation - "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + "grant-request-copy.intro.link.preview": "નીચે વિનંતી કરનારને મોકલવામાં આવનાર લિંકનું પૂર્વાવલોકન છે:", - // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "વિનંતી કરેલ આઇટમ સફળતાપૂર્વક મંજુર કર્યું", - // "grant-request-copy.access-period.header": "Access period", "grant-request-copy.access-period.header": "ઍક્સેસ પિરિયડ", - // "grant-request-copy.access-period.+1DAY": "1 day", "grant-request-copy.access-period.+1DAY": "1 દિવસ", - // "grant-request-copy.access-period.+7DAYS": "1 week", "grant-request-copy.access-period.+7DAYS": "1 અઠવાડિયું", - // "grant-request-copy.access-period.+1MONTH": "1 month", "grant-request-copy.access-period.+1MONTH": "1 મહિનો", - // "grant-request-copy.access-period.+3MONTHS": "3 months", "grant-request-copy.access-period.+3MONTHS": "3 મહિના", - // "grant-request-copy.access-period.FOREVER": "Forever", "grant-request-copy.access-period.FOREVER": "કાયમ માટે", - // "health.breadcrumbs": "Health", "health.breadcrumbs": "હેલ્થ", - // "health-page.heading": "Health", "health-page.heading": "હેલ્થ", - // "health-page.info-tab": "Info", "health-page.info-tab": "માહિતી", - // "health-page.status-tab": "Status", "health-page.status-tab": "સ્થિતિ", - // "health-page.error.msg": "The health check service is temporarily unavailable", "health-page.error.msg": "હેલ્થ ચેક સેવા તાત્કાલિક ઉપલબ્ધ નથી", - // "health-page.property.status": "Status code", "health-page.property.status": "સ્થિતિ કોડ", - // "health-page.section.db.title": "Database", "health-page.section.db.title": "ડેટાબેઝ", - // "health-page.section.geoIp.title": "GeoIp", "health-page.section.geoIp.title": "GeoIp", - // "health-page.section.solrAuthorityCore.title": "Solr: authority core", - // TODO New key - Add a translation - "health-page.section.solrAuthorityCore.title": "Solr: authority core", + "health-page.section.solrAuthorityCore.title": "સોલર: ઓથોરિટી કોર", - // "health-page.section.solrOaiCore.title": "Solr: oai core", - // TODO New key - Add a translation - "health-page.section.solrOaiCore.title": "Solr: oai core", + "health-page.section.solrOaiCore.title": "સોલર: oai કોર", - // "health-page.section.solrSearchCore.title": "Solr: search core", - // TODO New key - Add a translation - "health-page.section.solrSearchCore.title": "Solr: search core", + "health-page.section.solrSearchCore.title": "સોલર: શોધ કોર", - // "health-page.section.solrStatisticsCore.title": "Solr: statistics core", - // TODO New key - Add a translation - "health-page.section.solrStatisticsCore.title": "Solr: statistics core", + "health-page.section.solrStatisticsCore.title": "સોલર: આંકડા કોર", - // "health-page.section-info.app.title": "Application Backend", "health-page.section-info.app.title": "એપ્લિકેશન બેકએન્ડ", - // "health-page.section-info.java.title": "Java", "health-page.section-info.java.title": "જાવા", - // "health-page.status": "Status", "health-page.status": "સ્થિતિ", - // "health-page.status.ok.info": "Operational", "health-page.status.ok.info": "સંચાલન", - // "health-page.status.error.info": "Problems detected", "health-page.status.error.info": "સમસ્યાઓ શોધવામાં આવી", - // "health-page.status.warning.info": "Possible issues detected", "health-page.status.warning.info": "શક્ય સમસ્યાઓ શોધવામાં આવી", - // "health-page.title": "Health", "health-page.title": "હેલ્થ", - // "health-page.section.no-issues": "No issues detected", "health-page.section.no-issues": "કોઈ સમસ્યાઓ શોધવામાં આવી નથી", - // "home.description": "", "home.description": "", - // "home.breadcrumbs": "Home", "home.breadcrumbs": "હોમ", - // "home.search-form.placeholder": "Search the repository ...", "home.search-form.placeholder": "રિપોઝિટરી શોધો ...", - // "home.title": "Home", "home.title": "હોમ", - // "home.top-level-communities.head": "Communities in DSpace", "home.top-level-communities.head": "DSpace માં સમુદાયો", - // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "તેના સંગ્રહોને બ્રાઉઝ કરવા માટે સમુદાય પસંદ કરો.", - // "info.accessibility-settings.breadcrumbs": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.breadcrumbs": "Accessibility settings", - - // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - // TODO New key - Add a translation - "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - - // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - - // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - - // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - - // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - // TODO New key - Add a translation - "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - - // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - - // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - - // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - - // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - - // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - - // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - - // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - - // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - - // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - - // "info.accessibility-settings.reset-notification": "Successfully reset settings.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-notification": "Successfully reset settings.", - - // "info.accessibility-settings.reset": "Reset accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.reset": "Reset accessibility settings", - - // "info.accessibility-settings.submit": "Save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.submit": "Save accessibility settings", - - // "info.accessibility-settings.title": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.title": "Accessibility settings", - - // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "મેં અંતિમ વપરાશકર્તા કરાર વાંચ્યો છે અને હું તેને સહમત છું", - // "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement", "info.end-user-agreement.accept.error": "અંતિમ વપરાશકર્તા કરાર સ્વીકારતી વખતે ભૂલ આવી", - // "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement", "info.end-user-agreement.accept.success": "અંતિમ વપરાશકર્તા કરાર સફળતાપૂર્વક અપડેટ કર્યો", - // "info.end-user-agreement.breadcrumbs": "End User Agreement", "info.end-user-agreement.breadcrumbs": "અંતિમ વપરાશકર્તા કરાર", - // "info.end-user-agreement.buttons.cancel": "Cancel", "info.end-user-agreement.buttons.cancel": "રદ કરો", - // "info.end-user-agreement.buttons.save": "Save", "info.end-user-agreement.buttons.save": "સાચવો", - // "info.end-user-agreement.head": "End User Agreement", "info.end-user-agreement.head": "અંતિમ વપરાશકર્તા કરાર", - // "info.end-user-agreement.title": "End User Agreement", "info.end-user-agreement.title": "અંતિમ વપરાશકર્તા કરાર", - // "info.end-user-agreement.hosting-country": "the United States", "info.end-user-agreement.hosting-country": "યુનાઇટેડ સ્ટેટ્સ", - // "info.privacy.breadcrumbs": "Privacy Statement", "info.privacy.breadcrumbs": "ગોપનીયતા નિવેદન", - // "info.privacy.head": "Privacy Statement", "info.privacy.head": "ગોપનીયતા નિવેદન", - // "info.privacy.title": "Privacy Statement", "info.privacy.title": "ગોપનીયતા નિવેદન", - // "info.feedback.breadcrumbs": "Feedback", "info.feedback.breadcrumbs": "પ્રતિસાદ", - // "info.feedback.head": "Feedback", "info.feedback.head": "પ્રતિસાદ", - // "info.feedback.title": "Feedback", "info.feedback.title": "પ્રતિસાદ", - // "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!", "info.feedback.info": "DSpace સિસ્ટમ વિશે તમારો પ્રતિસાદ શેર કરવા બદલ આભાર. તમારી ટિપ્પણીઓની પ્રશંસા કરવામાં આવે છે!", - // "info.feedback.email_help": "This address will be used to follow up on your feedback.", "info.feedback.email_help": "આ સરનામું તમારા પ્રતિસાદ પર અનુસરણ કરવા માટે વપરાશે.", - // "info.feedback.send": "Send Feedback", "info.feedback.send": "પ્રતિસાદ મોકલો", - // "info.feedback.comments": "Comments", "info.feedback.comments": "ટિપ્પણીઓ", - // "info.feedback.email-label": "Your Email", "info.feedback.email-label": "તમારું ઇમેઇલ", - // "info.feedback.create.success": "Feedback Sent Successfully!", "info.feedback.create.success": "પ્રતિસાદ સફળતાપૂર્વક મોકલ્યો!", - // "info.feedback.error.email.required": "A valid email address is required", "info.feedback.error.email.required": "માન્ય ઇમેઇલ સરનામું જરૂરી છે", - // "info.feedback.error.message.required": "A comment is required", "info.feedback.error.message.required": "ટિપ્પણી જરૂરી છે", - // "info.feedback.page-label": "Page", "info.feedback.page-label": "પૃષ્ઠ", - // "info.feedback.page_help": "The page related to your feedback", "info.feedback.page_help": "તમારા પ્રતિસાદ સાથે સંબંધિત પૃષ્ઠ", - // "info.coar-notify-support.title": "COAR Notify Support", "info.coar-notify-support.title": "COAR Notify Support", - // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "COAR Notify Support", - // "item.alerts.private": "This item is non-discoverable", "item.alerts.private": "આ આઇટમ નોન-ડિસ્કવરેબલ છે", - // "item.alerts.withdrawn": "This item has been withdrawn", "item.alerts.withdrawn": "આ આઇટમ પાછું ખેંચી લેવામાં આવ્યું છે", - // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "ફરી સ્થાપિત કરવાની વિનંતી કરો", - // "quality-assurance.event.table.person-who-requested": "Requested by", "quality-assurance.event.table.person-who-requested": "વિનંતી કરનાર", - // "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", - // TODO New key - Add a translation - "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + "item.edit.authorizations.heading": "આ સંપાદક સાથે તમે આઇટમની પોલિસી જોઈ અને બદલાવી શકો છો, તેમજ વ્યક્તિગત આઇટમ ઘટકોની પોલિસી બદલી શકો છો: બંડલ્સ અને બિટસ્ટ્રીમ્સ. ટૂંકમાં, આઇટમ બંડલ્સનો કન્ટેનર છે, અને બંડલ્સ બિટસ્ટ્રીમ્સના કન્ટેનર છે. કન્ટેનર્સમાં સામાન્ય રીતે ADD/REMOVE/READ/WRITE પોલિસી હોય છે, જ્યારે બિટસ્ટ્રીમ્સમાં માત્ર READ/WRITE પોલિસી હોય છે.", - // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "આઇટમની પોલિસી સંપાદિત કરો", - // "item.badge.status": "Item status:", - // TODO New key - Add a translation - "item.badge.status": "Item status:", - - // "item.badge.private": "Non-discoverable", "item.badge.private": "નોન-ડિસ્કવરેબલ", - // "item.badge.withdrawn": "Withdrawn", "item.badge.withdrawn": "પાછું ખેંચી લેવામાં આવ્યું", - // "item.bitstreams.upload.bundle": "Bundle", "item.bitstreams.upload.bundle": "બંડલ", - // "item.bitstreams.upload.bundle.placeholder": "Select a bundle or input new bundle name", "item.bitstreams.upload.bundle.placeholder": "બંડલ પસંદ કરો અથવા નવું બંડલ નામ દાખલ કરો", - // "item.bitstreams.upload.bundle.new": "Create bundle", "item.bitstreams.upload.bundle.new": "બંડલ બનાવો", - // "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.", "item.bitstreams.upload.bundles.empty": "આ આઇટમમાં અપલોડ કરવા માટે કોઈ બંડલ્સ નથી.", - // "item.bitstreams.upload.cancel": "Cancel", "item.bitstreams.upload.cancel": "રદ કરો", - // "item.bitstreams.upload.drop-message": "Drop a file to upload", "item.bitstreams.upload.drop-message": "અપલોડ કરવા માટે ફાઇલ ડ્રોપ કરો", - // "item.bitstreams.upload.item": "Item: ", - // TODO New key - Add a translation - "item.bitstreams.upload.item": "Item: ", + "item.bitstreams.upload.item": "આઇટમ: ", - // "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.", "item.bitstreams.upload.notifications.bundle.created.content": "નવું બંડલ સફળતાપૂર્વક બનાવવામાં આવ્યું.", - // "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle", "item.bitstreams.upload.notifications.bundle.created.title": "બંડલ બનાવ્યું", - // "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.", "item.bitstreams.upload.notifications.upload.failed": "અપલોડ નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.", - // "item.bitstreams.upload.title": "Upload bitstream", "item.bitstreams.upload.title": "બિટસ્ટ્રીમ અપલોડ કરો", - // "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload", "item.edit.bitstreams.bundle.edit.buttons.upload": "અપલોડ કરો", - // "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.", "item.edit.bitstreams.bundle.displaying": "હાલમાં {{ amount }} બિટસ્ટ્રીમ્સ {{ total }} માંથી બતાવી રહ્યા છે.", - // "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})", "item.edit.bitstreams.bundle.load.all": "બધા લોડ કરો ({{ total }})", - // "item.edit.bitstreams.bundle.load.more": "Load more", "item.edit.bitstreams.bundle.load.more": "વધુ લોડ કરો", - // "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", - // TODO New key - Add a translation - "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + "item.edit.bitstreams.bundle.name": "બંડલ: {{ name }}", - // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle", "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} બંડલમાં બિટસ્ટ્રીમ્સ", - // "item.edit.bitstreams.bundle.tooltip": "You can move a bitstream to a different page by dropping it on the page number.", "item.edit.bitstreams.bundle.tooltip": "તમે બિટસ્ટ્રીમને પૃષ્ઠ નંબર પર ડ્રોપ કરીને તેને અલગ પૃષ્ઠ પર ખસેડી શકો છો.", - // "item.edit.bitstreams.discard-button": "Discard", "item.edit.bitstreams.discard-button": "રદ કરો", - // "item.edit.bitstreams.edit.buttons.download": "Download", "item.edit.bitstreams.edit.buttons.download": "ડાઉનલોડ કરો", - // "item.edit.bitstreams.edit.buttons.drag": "Drag", "item.edit.bitstreams.edit.buttons.drag": "ડ્રેગ કરો", - // "item.edit.bitstreams.edit.buttons.edit": "Edit", "item.edit.bitstreams.edit.buttons.edit": "સંપાદિત કરો", - // "item.edit.bitstreams.edit.buttons.remove": "Remove", "item.edit.bitstreams.edit.buttons.remove": "દૂર કરો", - // "item.edit.bitstreams.edit.buttons.undo": "Undo changes", "item.edit.bitstreams.edit.buttons.undo": "ફેરફારો રદ કરો", - // "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} was returned to position {{ toIndex }} and is no longer selected.", "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} ને સ્થિતિ {{ toIndex }} પર પાછું લાવવામાં આવ્યું છે અને હવે પસંદ કરેલ નથી.", - // "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} is no longer selected.", "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} હવે પસંદ કરેલ નથી.", - // "item.edit.bitstreams.edit.live.loading": "Waiting for move to complete.", "item.edit.bitstreams.edit.live.loading": "ખસેડવાનું પૂર્ણ થવાની રાહ જોઈ રહ્યા છે.", - // "item.edit.bitstreams.edit.live.select": "{{ bitstream }} is selected.", "item.edit.bitstreams.edit.live.select": "{{ bitstream }} પસંદ કરેલ છે.", - // "item.edit.bitstreams.edit.live.move": "{{ bitstream }} is now in position {{ toIndex }}.", "item.edit.bitstreams.edit.live.move": "{{ bitstream }} હવે સ્થિતિ {{ toIndex }} માં છે.", - // "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.", "item.edit.bitstreams.empty": "આ આઇટમમાં કોઈ બિટસ્ટ્રીમ્સ નથી. એક બનાવવા માટે અપલોડ બટન પર ક્લિક કરો.", - // "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", - // TODO New key - Add a translation - "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + "item.edit.bitstreams.info-alert": "બિટસ્ટ્રીમ્સને તેમના બંડલ્સમાં ફરીથી ક્રમમાં ગોઠવવા માટે ડ્રેગ હેન્ડલ પકડીને અને માઉસ ખસેડીને ખસેડી શકાય છે. વૈકલ્પિક રીતે, બિટસ્ટ્રીમ્સને કીબોર્ડનો ઉપયોગ કરીને ખસેડી શકાય છે: બિટસ્ટ્રીમના ડ્રેગ હેન્ડલ પર ફોકસ હોવા પર એન્ટર દબાવીને બિટસ્ટ્રીમ પસંદ કરો. બિટસ્ટ્રીમને ખસેડવા માટે એરો કીઝનો ઉપયોગ કરો. બિટસ્ટ્રીમની વર્તમાન સ્થિતિની પુષ્ટિ કરવા માટે ફરીથી એન્ટર દબાવો.", - // "item.edit.bitstreams.headers.actions": "Actions", "item.edit.bitstreams.headers.actions": "ક્રિયાઓ", - // "item.edit.bitstreams.headers.bundle": "Bundle", "item.edit.bitstreams.headers.bundle": "બંડલ", - // "item.edit.bitstreams.headers.description": "Description", "item.edit.bitstreams.headers.description": "વર્ણન", - // "item.edit.bitstreams.headers.format": "Format", "item.edit.bitstreams.headers.format": "ફોર્મેટ", - // "item.edit.bitstreams.headers.name": "Name", "item.edit.bitstreams.headers.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": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - // "item.edit.bitstreams.notifications.discarded.title": "Changes discarded", "item.edit.bitstreams.notifications.discarded.title": "ફેરફારો રદ", - // "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams", "item.edit.bitstreams.notifications.move.failed.title": "બિટસ્ટ્રીમ્સ ખસેડવામાં ભૂલ", - // "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": "આ આઇટમના બિટસ્ટ્રીમ્સ અને બંડલ્સ માટેના તમારા ખસેડવાના ફેરફારો સાચવવામાં આવ્યા.", - // "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved", "item.edit.bitstreams.notifications.move.saved.title": "ખસેડવાના ફેરફારો સાચવ્યા", - // "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": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", - // "item.edit.bitstreams.notifications.outdated.title": "Changes outdated", "item.edit.bitstreams.notifications.outdated.title": "ફેરફારો જૂના છે", - // "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream", "item.edit.bitstreams.notifications.remove.failed.title": "બિટસ્ટ્રીમ કાઢી નાખવામાં ભૂલ", - // "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": "આ આઇટમના બિટસ્ટ્રીમ્સ માટેના તમારા દૂર કરવાના ફેરફારો સાચવવામાં આવ્યા.", - // "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved", "item.edit.bitstreams.notifications.remove.saved.title": "દૂર કરવાના ફેરફારો સાચવ્યા", - // "item.edit.bitstreams.reinstate-button": "Undo", "item.edit.bitstreams.reinstate-button": "Undo", - // "item.edit.bitstreams.save-button": "Save", "item.edit.bitstreams.save-button": "સાચવો", - // "item.edit.bitstreams.upload-button": "Upload", "item.edit.bitstreams.upload-button": "અપલોડ કરો", - // "item.edit.bitstreams.load-more.link": "Load more", "item.edit.bitstreams.load-more.link": "વધુ લોડ કરો", - // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "રદ કરો", - // "item.edit.delete.confirm": "Delete", "item.edit.delete.confirm": "કાઢી નાખો", - // "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", - // TODO New key - Add a translation - "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + "item.edit.delete.description": "શું તમે ખરેખર આ આઇટમને સંપૂર્ણપણે કાઢી નાખવા માંગો છો? સાવચેત: હાલમાં, કોઈ ટોમ્બસ્ટોન બાકી રહેશે નહીં.", - // "item.edit.delete.error": "An error occurred while deleting the item", "item.edit.delete.error": "આઇટમ કાઢી નાખતી વખતે ભૂલ આવી", - // "item.edit.delete.header": "Delete item: {{ id }}", - // TODO New key - Add a translation - "item.edit.delete.header": "Delete item: {{ id }}", + "item.edit.delete.header": "આઇટમ કાઢી નાખો: {{ id }}", - // "item.edit.delete.success": "The item has been deleted", "item.edit.delete.success": "આઇટમ કાઢી નાખવામાં આવ્યું છે", - // "item.edit.head": "Edit Item", "item.edit.head": "આઇટમ સંપાદિત કરો", - // "item.edit.breadcrumbs": "Edit Item", "item.edit.breadcrumbs": "આઇટમ સંપાદિત કરો", - // "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab", "item.edit.tabs.disabled.tooltip": "તમે આ ટેબ ઍક્સેસ કરવા માટે અધિકૃત નથી", - // "item.edit.tabs.mapper.head": "Collection Mapper", "item.edit.tabs.mapper.head": "સંગ્રહ મેપર", - // "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper", "item.edit.tabs.item-mapper.title": "આઇટમ સંપાદન - સંગ્રહ મેપર", - // "item.edit.identifiers.doi.status.UNKNOWN": "Unknown", "item.edit.identifiers.doi.status.UNKNOWN": "અજ્ઞાત", - // "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "Queued for registration", "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "નોંધણી માટે કતારમાં", - // "item.edit.identifiers.doi.status.TO_BE_RESERVED": "Queued for reservation", "item.edit.identifiers.doi.status.TO_BE_RESERVED": "રિઝર્વેશન માટે કતારમાં", - // "item.edit.identifiers.doi.status.IS_REGISTERED": "Registered", "item.edit.identifiers.doi.status.IS_REGISTERED": "નોંધાયેલ", - // "item.edit.identifiers.doi.status.IS_RESERVED": "Reserved", "item.edit.identifiers.doi.status.IS_RESERVED": "રિઝર્વેશન", - // "item.edit.identifiers.doi.status.UPDATE_RESERVED": "Reserved (update queued)", "item.edit.identifiers.doi.status.UPDATE_RESERVED": "રિઝર્વેશન (અપડેટ કતારમાં)", - // "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Registered (update queued)", "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "નોંધાયેલ (અપડેટ કતારમાં)", - // "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "Queued for update and registration", "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "અપડેટ અને નોંધણી માટે કતારમાં", - // "item.edit.identifiers.doi.status.TO_BE_DELETED": "Queued for deletion", "item.edit.identifiers.doi.status.TO_BE_DELETED": "કાઢી નાખવા માટે કતારમાં", - // "item.edit.identifiers.doi.status.DELETED": "Deleted", "item.edit.identifiers.doi.status.DELETED": "કાઢી નાખ્યું", - // "item.edit.identifiers.doi.status.PENDING": "Pending (not registered)", "item.edit.identifiers.doi.status.PENDING": "બાકી (નોંધાયેલ નથી)", - // "item.edit.identifiers.doi.status.MINTED": "Minted (not registered)", "item.edit.identifiers.doi.status.MINTED": "મિન્ટેડ (નોંધાયેલ નથી)", - // "item.edit.tabs.status.buttons.register-doi.label": "Register a new or pending DOI", "item.edit.tabs.status.buttons.register-doi.label": "નવું અથવા બાકી DOI નોંધણી કરો", - // "item.edit.tabs.status.buttons.register-doi.button": "Register DOI...", "item.edit.tabs.status.buttons.register-doi.button": "DOI નોંધણી કરો...", - // "item.edit.register-doi.header": "Register a new or pending DOI", "item.edit.register-doi.header": "નવું અથવા બાકી DOI નોંધણી કરો", - // "item.edit.register-doi.description": "Review any pending identifiers and item metadata below and click Confirm to proceed with DOI registration, or Cancel to back out", "item.edit.register-doi.description": "કોઈ બાકી ઓળખકર્તાઓ અને આઇટમ મેટાડેટાની નીચે સમીક્ષા કરો અને DOI નોંધણી સાથે આગળ વધવા માટે પુષ્ટિ પર ક્લિક કરો, અથવા રદ કરવા માટે પાછા જાઓ", - // "item.edit.register-doi.confirm": "Confirm", "item.edit.register-doi.confirm": "પુષ્ટિ કરો", - // "item.edit.register-doi.cancel": "Cancel", "item.edit.register-doi.cancel": "રદ કરો", - // "item.edit.register-doi.success": "DOI queued for registration successfully.", "item.edit.register-doi.success": "DOI નોંધણી માટે કતારમાં સફળતાપૂર્વક મૂક્યું.", - // "item.edit.register-doi.error": "Error registering DOI", "item.edit.register-doi.error": "DOI નોંધણીમાં ભૂલ", - // "item.edit.register-doi.to-update": "The following DOI has already been minted and will be queued for registration online", "item.edit.register-doi.to-update": "નીચે આપેલ DOI પહેલેથી જ મિન્ટેડ છે અને ઓનલાઈન નોંધણી માટે કતારમાં મૂકવામાં આવશે", - // "item.edit.item-mapper.buttons.add": "Map item to selected collections", "item.edit.item-mapper.buttons.add": "આઇટમને પસંદ કરેલ સંગ્રહોમાં મેપ કરો", - // "item.edit.item-mapper.buttons.remove": "Remove item's mapping for selected collections", "item.edit.item-mapper.buttons.remove": "પસંદ કરેલ સંગ્રહો માટે આઇટમનું મેપિંગ દૂર કરો", - // "item.edit.item-mapper.cancel": "Cancel", "item.edit.item-mapper.cancel": "રદ કરો", - // "item.edit.item-mapper.description": "This is the item mapper tool that allows administrators to map this item to other collections. You can search for collections and map them, or browse the list of collections the item is currently mapped to.", "item.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે વહીવટકર્તાઓને આ આઇટમને અન્ય સંગ્રહોમાં મેપ કરવાની મંજૂરી આપે છે. તમે સંગ્રહો શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા આઇટમ હાલમાં જે સંગ્રહોમાં મેપ કરેલ છે તેની યાદી બ્રાઉઝ કરી શકો છો.", - // "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections", "item.edit.item-mapper.head": "આઇટમ મેપર - આઇટમને સંગ્રહોમાં મેપ કરો", - // "item.edit.item-mapper.item": "Item: \"{{name}}\"", - // TODO New key - Add a translation - "item.edit.item-mapper.item": "Item: \"{{name}}\"", + "item.edit.item-mapper.item": "આઇટમ: \\\"{{name}}\\\"", - // "item.edit.item-mapper.no-search": "Please enter a query to search", "item.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો", - // "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": "આઇટમને {{amount}} સંગ્રહોમાં મેપ કરતી વખતે ભૂલો આવી.", - // "item.edit.item-mapper.notifications.add.error.head": "Mapping errors", "item.edit.item-mapper.notifications.add.error.head": "મેપિંગ ભૂલો", - // "item.edit.item-mapper.notifications.add.success.content": "Successfully mapped item to {{amount}} collections.", "item.edit.item-mapper.notifications.add.success.content": "આઇટમને {{amount}} સંગ્રહોમાં સફળતાપૂર્વક મેપ કર્યું.", - // "item.edit.item-mapper.notifications.add.success.head": "Mapping completed", "item.edit.item-mapper.notifications.add.success.head": "મેપિંગ પૂર્ણ", - // "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.error.content": "મેપિંગ {{amount}} સંગ્રહો માટે દૂર કરતી વખતે ભૂલો આવી.", - // "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors", "item.edit.item-mapper.notifications.remove.error.head": "મેપિંગ દૂર કરવાની ભૂલો", - // "item.edit.item-mapper.notifications.remove.success.content": "Successfully removed mapping of item to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.success.content": "આઇટમનું મેપિંગ {{amount}} સંગ્રહો માટે સફળતાપૂર્વક દૂર કર્યું.", - // "item.edit.item-mapper.notifications.remove.success.head": "Removal of mapping completed", "item.edit.item-mapper.notifications.remove.success.head": "મેપિંગ દૂર કરવું પૂર્ણ", - // "item.edit.item-mapper.search-form.placeholder": "Search collections...", "item.edit.item-mapper.search-form.placeholder": "સંગ્રહો શોધો...", - // "item.edit.item-mapper.tabs.browse": "Browse mapped collections", "item.edit.item-mapper.tabs.browse": "મેપ કરેલ સંગ્રહો બ્રાઉઝ કરો", - // "item.edit.item-mapper.tabs.map": "Map new collections", "item.edit.item-mapper.tabs.map": "નવા સંગ્રહો મેપ કરો", - // "item.edit.metadata.add-button": "Add", "item.edit.metadata.add-button": "ઉમેરો", - // "item.edit.metadata.discard-button": "Discard", "item.edit.metadata.discard-button": "રદ કરો", - // "item.edit.metadata.edit.language": "Edit language", "item.edit.metadata.edit.language": "ભાષા સંપાદિત કરો", - // "item.edit.metadata.edit.value": "Edit value", "item.edit.metadata.edit.value": "મૂલ્ય સંપાદિત કરો", - // "item.edit.metadata.edit.authority.key": "Edit authority key", "item.edit.metadata.edit.authority.key": "અધિકૃતતા કી સંપાદિત કરો", - // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", "item.edit.metadata.edit.buttons.enable-free-text-editing": "મફત-ટેક્સ્ટ સંપાદન સક્ષમ કરો", - // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", "item.edit.metadata.edit.buttons.disable-free-text-editing": "મફત-ટેક્સ્ટ સંપાદન અક્ષમ કરો", - // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "પુષ્ટિ કરો", - // "item.edit.metadata.edit.buttons.drag": "Drag to reorder", "item.edit.metadata.edit.buttons.drag": "ફરીથી ક્રમમાં ગોઠવવા માટે ડ્રેગ કરો", - // "item.edit.metadata.edit.buttons.edit": "Edit", "item.edit.metadata.edit.buttons.edit": "સંપાદિત કરો", - // "item.edit.metadata.edit.buttons.remove": "Remove", "item.edit.metadata.edit.buttons.remove": "દૂર કરો", - // "item.edit.metadata.edit.buttons.undo": "Undo changes", "item.edit.metadata.edit.buttons.undo": "ફેરફારો રદ કરો", - // "item.edit.metadata.edit.buttons.unedit": "Stop editing", "item.edit.metadata.edit.buttons.unedit": "સંપાદન બંધ કરો", - // "item.edit.metadata.edit.buttons.virtual": "This is a virtual metadata value, i.e. a value inherited from a related entity. It can’t be modified directly. Add or remove the corresponding relationship in the \"Relationships\" tab", "item.edit.metadata.edit.buttons.virtual": "આ વર્ચ્યુઅલ મેટાડેટા મૂલ્ય છે, એટલે કે સંબંધિત સત્તાથી વારસામાં મળેલું મૂલ્ય. તેને સીધા રીતે બદલી શકાતું નથી. 'સંબંધો' ટેબમાં સંબંધ ઉમેરો અથવા દૂર કરો", - // "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.", "item.edit.metadata.empty": "આ આઇટમમાં હાલમાં કોઈ મેટાડેટા નથી. મેટાડેટા મૂલ્ય ઉમેરવાનું શરૂ કરવા માટે ઉમેરો પર ક્લિક કરો.", - // "item.edit.metadata.headers.edit": "Edit", "item.edit.metadata.headers.edit": "સંપાદિત કરો", - // "item.edit.metadata.headers.field": "Field", "item.edit.metadata.headers.field": "ફીલ્ડ", - // "item.edit.metadata.headers.language": "Lang", "item.edit.metadata.headers.language": "ભાષા", - // "item.edit.metadata.headers.value": "Value", "item.edit.metadata.headers.value": "મૂલ્ય", - // "item.edit.metadata.metadatafield": "Edit field", "item.edit.metadata.metadatafield": "ફીલ્ડ સંપાદિત કરો", - // "item.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "item.edit.metadata.metadatafield.error": "મેટાડેટા ફીલ્ડ માન્ય કરતી વખતે ભૂલ આવી", - // "item.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "item.edit.metadata.metadatafield.invalid": "કૃપા કરીને માન્ય મેટાડેટા ફીલ્ડ પસંદ કરો", - // "item.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.metadata.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - // "item.edit.metadata.notifications.discarded.title": "Changes discarded", "item.edit.metadata.notifications.discarded.title": "ફેરફારો રદ", - // "item.edit.metadata.notifications.error.title": "An error occurred", "item.edit.metadata.notifications.error.title": "ભૂલ આવી", - // "item.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "item.edit.metadata.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.", - // "item.edit.metadata.notifications.invalid.title": "Metadata invalid", "item.edit.metadata.notifications.invalid.title": "મેટાડેટા અમાન્ય", - // "item.edit.metadata.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.metadata.notifications.outdated.content": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", - // "item.edit.metadata.notifications.outdated.title": "Changes outdated", "item.edit.metadata.notifications.outdated.title": "ફેરફારો જૂના છે", - // "item.edit.metadata.notifications.saved.content": "Your changes to this item's metadata were saved.", "item.edit.metadata.notifications.saved.content": "આ આઇટમના મેટાડેટા માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.", - // "item.edit.metadata.notifications.saved.title": "Metadata saved", "item.edit.metadata.notifications.saved.title": "મેટાડેટા સાચવ્યા", - // "item.edit.metadata.reinstate-button": "Undo", "item.edit.metadata.reinstate-button": "Undo", - // "item.edit.metadata.reset-order-button": "Undo reorder", "item.edit.metadata.reset-order-button": "ફરીથી ક્રમમાં ગોઠવવું Undo", - // "item.edit.metadata.save-button": "Save", "item.edit.metadata.save-button": "સાચવો", - // "item.edit.metadata.authority.label": "Authority: ", - // TODO New key - Add a translation - "item.edit.metadata.authority.label": "Authority: ", + "item.edit.metadata.authority.label": "અધિકૃતતા: ", - // "item.edit.metadata.edit.buttons.open-authority-edition": "Unlock the authority key value for manual editing", "item.edit.metadata.edit.buttons.open-authority-edition": "મેન્યુઅલ સંપાદન માટે અધિકૃતતા કી મૂલ્યને અનલૉક કરો", - // "item.edit.metadata.edit.buttons.close-authority-edition": "Lock the authority key value for manual editing", "item.edit.metadata.edit.buttons.close-authority-edition": "મેન્યુઅલ સંપાદન માટે અધિકૃતતા કી મૂલ્યને લૉક કરો", - // "item.edit.modify.overview.field": "Field", "item.edit.modify.overview.field": "ફીલ્ડ", - // "item.edit.modify.overview.language": "Language", "item.edit.modify.overview.language": "ભાષા", - // "item.edit.modify.overview.value": "Value", "item.edit.modify.overview.value": "મૂલ્ય", - // "item.edit.move.cancel": "Back", "item.edit.move.cancel": "પાછા", - // "item.edit.move.save-button": "Save", "item.edit.move.save-button": "સાચવો", - // "item.edit.move.discard-button": "Discard", "item.edit.move.discard-button": "રદ કરો", - // "item.edit.move.description": "Select the collection you wish to move this item to. To narrow down the list of displayed collections, you can enter a search query in the box.", "item.edit.move.description": "આઇટમ ખસેડવા માટે તમે જે સંગ્રહમાં ખસેડવા માંગો છો તે પસંદ કરો. બતાવેલ સંગ્રહોની યાદી સંકોચવા માટે, તમે બોક્સમાં શોધ ક્વેરી દાખલ કરી શકો છો.", - // "item.edit.move.error": "An error occurred when attempting to move the item", "item.edit.move.error": "આઇટમ ખસેડવાનો પ્રયાસ કરતી વખતે ભૂલ આવી", - // "item.edit.move.head": "Move item: {{id}}", - // TODO New key - Add a translation - "item.edit.move.head": "Move item: {{id}}", + "item.edit.move.head": "આઇટમ ખસેડો: {{id}}", - // "item.edit.move.inheritpolicies.checkbox": "Inherit policies", "item.edit.move.inheritpolicies.checkbox": "પોલિસી વારસામાં મેળવો", - // "item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection", "item.edit.move.inheritpolicies.description": "લક્ષ્ય સંગ્રહની ડિફોલ્ટ પોલિસી વારસામાં મેળવો", - // "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", - // TODO New key - Add a translation - "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + "item.edit.move.inheritpolicies.tooltip": "ચેતવણી: સક્ષમ હોવા પર, આઇટમ અને આઇટમ સાથે સંકળાયેલી કોઈપણ ફાઇલો માટેની વાંચન ઍક્સેસ પોલિસી લક્ષ્ય સંગ્રહની ડિફોલ્ટ વાંચન ઍક્સેસ પોલિસી દ્વારા બદલવામાં આવશે. આ પાછું લાવી શકાતું નથી.", - // "item.edit.move.move": "Move", "item.edit.move.move": "ખસેડો", - // "item.edit.move.processing": "Moving...", "item.edit.move.processing": "ખસેડી રહ્યા છે...", - // "item.edit.move.search.placeholder": "Enter a search query to look for collections", "item.edit.move.search.placeholder": "સંગ્રહો શોધવા માટે શોધ ક્વેરી દાખલ કરો", - // "item.edit.move.success": "The item has been moved successfully", "item.edit.move.success": "આ આઇટમ સફળતાપૂર્વક ખસેડવામાં આવ્યું છે", - // "item.edit.move.title": "Move item", "item.edit.move.title": "આઇટમ ખસેડો", - // "item.edit.private.cancel": "Cancel", "item.edit.private.cancel": "રદ કરો", - // "item.edit.private.confirm": "Make it non-discoverable", "item.edit.private.confirm": "તેને નોન-ડિસ્કવરેબલ બનાવો", - // "item.edit.private.description": "Are you sure this item should be made non-discoverable in the archive?", "item.edit.private.description": "શું તમે ખાતરી કરો છો કે આ આઇટમ આર્કાઇવમાં નોન-ડિસ્કવરેબલ બનાવવું જોઈએ?", - // "item.edit.private.error": "An error occurred while making the item non-discoverable", "item.edit.private.error": "આ આઇટમને નોન-ડિસ્કવરેબલ બનાવતી વખતે એક ભૂલ આવી", - // "item.edit.private.header": "Make item non-discoverable: {{ id }}", - // TODO New key - Add a translation - "item.edit.private.header": "Make item non-discoverable: {{ id }}", + "item.edit.private.header": "આઇટમ નોન-ડિસ્કવરેબલ બનાવો: {{ id }}", - // "item.edit.private.success": "The item is now non-discoverable", "item.edit.private.success": "આ આઇટમ હવે નોન-ડિસ્કવરેબલ છે", - // "item.edit.public.cancel": "Cancel", "item.edit.public.cancel": "રદ કરો", - // "item.edit.public.confirm": "Make it discoverable", "item.edit.public.confirm": "તેને ડિસ્કવરેબલ બનાવો", - // "item.edit.public.description": "Are you sure this item should be made discoverable in the archive?", "item.edit.public.description": "શું તમે ખાતરી કરો છો કે આ આઇટમ આર્કાઇવમાં ડિસ્કવરેબલ બનાવવું જોઈએ?", - // "item.edit.public.error": "An error occurred while making the item discoverable", "item.edit.public.error": "આ આઇટમને ડિસ્કવરેબલ બનાવતી વખતે એક ભૂલ આવી", - // "item.edit.public.header": "Make item discoverable: {{ id }}", - // TODO New key - Add a translation - "item.edit.public.header": "Make item discoverable: {{ id }}", + "item.edit.public.header": "આઇટમ ડિસ્કવરેબલ બનાવો: {{ id }}", - // "item.edit.public.success": "The item is now discoverable", "item.edit.public.success": "આ આઇટમ હવે ડિસ્કવરેબલ છે", - // "item.edit.reinstate.cancel": "Cancel", "item.edit.reinstate.cancel": "રદ કરો", - // "item.edit.reinstate.confirm": "Reinstate", "item.edit.reinstate.confirm": "ફરી સ્થાપિત કરો", - // "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?", "item.edit.reinstate.description": "શું તમે ખાતરી કરો છો કે આ આઇટમને આર્કાઇવમાં ફરી સ્થાપિત કરવું જોઈએ?", - // "item.edit.reinstate.error": "An error occurred while reinstating the item", "item.edit.reinstate.error": "આ આઇટમને ફરી સ્થાપિત કરતી વખતે એક ભૂલ આવી", - // "item.edit.reinstate.header": "Reinstate item: {{ id }}", - // TODO New key - Add a translation - "item.edit.reinstate.header": "Reinstate item: {{ id }}", + "item.edit.reinstate.header": "આઇટમ ફરી સ્થાપિત કરો: {{ id }}", - // "item.edit.reinstate.success": "The item was reinstated successfully", "item.edit.reinstate.success": "આ આઇટમ સફળતાપૂર્વક ફરી સ્થાપિત થયું", - // "item.edit.relationships.discard-button": "Discard", "item.edit.relationships.discard-button": "રદ કરો", - // "item.edit.relationships.edit.buttons.add": "Add", "item.edit.relationships.edit.buttons.add": "ઉમેરો", - // "item.edit.relationships.edit.buttons.remove": "Remove", "item.edit.relationships.edit.buttons.remove": "દૂર કરો", - // "item.edit.relationships.edit.buttons.undo": "Undo changes", "item.edit.relationships.edit.buttons.undo": "ફેરફારો રદ કરો", - // "item.edit.relationships.no-relationships": "No relationships", "item.edit.relationships.no-relationships": "કોઈ સંબંધો નથી", - // "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.relationships.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા હતા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - // "item.edit.relationships.notifications.discarded.title": "Changes discarded", "item.edit.relationships.notifications.discarded.title": "ફેરફારો રદ", - // "item.edit.relationships.notifications.failed.title": "Error editing relationships", "item.edit.relationships.notifications.failed.title": "સંબંધો સંપાદિત કરતી વખતે ભૂલ", - // "item.edit.relationships.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.relationships.notifications.outdated.content": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", - // "item.edit.relationships.notifications.outdated.title": "Changes outdated", "item.edit.relationships.notifications.outdated.title": "ફેરફારો જૂના", - // "item.edit.relationships.notifications.saved.content": "Your changes to this item's relationships were saved.", "item.edit.relationships.notifications.saved.content": "આ આઇટમના સંબંધો માટેના તમારા ફેરફારો સાચવવામાં આવ્યા હતા.", - // "item.edit.relationships.notifications.saved.title": "Relationships saved", "item.edit.relationships.notifications.saved.title": "સંબંધો સાચવ્યા", - // "item.edit.relationships.reinstate-button": "Undo", "item.edit.relationships.reinstate-button": "Undo", - // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "સાચવો", - // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", "item.edit.relationships.no-entity-type": "આ આઇટમ માટે સંબંધો સક્ષમ કરવા માટે 'dspace.entity.type' મેટાડેટા ઉમેરો", - // "item.edit.return": "Back", "item.edit.return": "પાછા", - // "item.edit.tabs.bitstreams.head": "Bitstreams", "item.edit.tabs.bitstreams.head": "બિટસ્ટ્રીમ્સ", - // "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams", "item.edit.tabs.bitstreams.title": "આઇટમ સંપાદન - બિટસ્ટ્રીમ્સ", - // "item.edit.tabs.curate.head": "Curate", "item.edit.tabs.curate.head": "ક્યુરેટ", - // "item.edit.tabs.curate.title": "Item Edit - Curate", "item.edit.tabs.curate.title": "આઇટમ ક્યુરેટ કરો: {{item}}", - // "item.edit.curate.title": "Curate Item: {{item}}", - // TODO New key - Add a translation - "item.edit.curate.title": "Curate Item: {{item}}", - - // "item.edit.tabs.access-control.head": "Access Control", "item.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ", - // "item.edit.tabs.access-control.title": "Item Edit - Access Control", "item.edit.tabs.access-control.title": "આઇટમ સંપાદન - ઍક્સેસ કંટ્રોલ", - // "item.edit.tabs.metadata.head": "Metadata", "item.edit.tabs.metadata.head": "મેટાડેટા", - // "item.edit.tabs.metadata.title": "Item Edit - Metadata", "item.edit.tabs.metadata.title": "આઇટમ સંપાદન - મેટાડેટા", - // "item.edit.tabs.relationships.head": "Relationships", "item.edit.tabs.relationships.head": "સંબંધો", - // "item.edit.tabs.relationships.title": "Item Edit - Relationships", "item.edit.tabs.relationships.title": "આઇટમ સંપાદન - સંબંધો", - // "item.edit.tabs.status.buttons.authorizations.button": "Authorizations...", "item.edit.tabs.status.buttons.authorizations.button": "અધિકૃતતાઓ...", - // "item.edit.tabs.status.buttons.authorizations.label": "Edit item's authorization policies", "item.edit.tabs.status.buttons.authorizations.label": "આઇટમની અધિકૃતતા નીતિઓ સંપાદિત કરો", - // "item.edit.tabs.status.buttons.delete.button": "Permanently delete", "item.edit.tabs.status.buttons.delete.button": "કાયમ માટે કાઢી નાખો", - // "item.edit.tabs.status.buttons.delete.label": "Completely expunge item", "item.edit.tabs.status.buttons.delete.label": "આઇટમને સંપૂર્ણપણે કાઢી નાખો", - // "item.edit.tabs.status.buttons.mappedCollections.button": "Mapped collections", "item.edit.tabs.status.buttons.mappedCollections.button": "મૅપ કરેલ સંગ્રહો", - // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "મૅપ કરેલ સંગ્રહો મેનેજ કરો", - // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", "item.edit.tabs.status.buttons.move.button": "આ આઇટમને અલગ સંગ્રહમાં ખસેડો", - // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", "item.edit.tabs.status.buttons.move.label": "આઇટમને બીજા સંગ્રહમાં ખસેડો", - // "item.edit.tabs.status.buttons.private.button": "Make it non-discoverable...", "item.edit.tabs.status.buttons.private.button": "તેને નોન-ડિસ્કવરેબલ બનાવો...", - // "item.edit.tabs.status.buttons.private.label": "Make item non-discoverable", "item.edit.tabs.status.buttons.private.label": "આઇટમને નોન-ડિસ્કવરેબલ બનાવો", - // "item.edit.tabs.status.buttons.public.button": "Make it discoverable...", "item.edit.tabs.status.buttons.public.button": "તેને ડિસ્કવરેબલ બનાવો...", - // "item.edit.tabs.status.buttons.public.label": "Make item discoverable", "item.edit.tabs.status.buttons.public.label": "આઇટમને ડિસ્કવરેબલ બનાવો", - // "item.edit.tabs.status.buttons.reinstate.button": "Reinstate...", "item.edit.tabs.status.buttons.reinstate.button": "ફરી સ્થાપિત કરો...", - // "item.edit.tabs.status.buttons.reinstate.label": "Reinstate item into the repository", "item.edit.tabs.status.buttons.reinstate.label": "આઇટમને રિપોઝિટરીમાં ફરી સ્થાપિત કરો", - // "item.edit.tabs.status.buttons.unauthorized": "You're not authorized to perform this action", "item.edit.tabs.status.buttons.unauthorized": "તમે આ ક્રિયા કરવા માટે અધિકૃત નથી", - // "item.edit.tabs.status.buttons.withdraw.button": "Withdraw this item", "item.edit.tabs.status.buttons.withdraw.button": "આ આઇટમને પાછું ખેંચો", - // "item.edit.tabs.status.buttons.withdraw.label": "Withdraw item from the repository", "item.edit.tabs.status.buttons.withdraw.label": "આઇટમને રિપોઝિટરીમાંથી પાછું ખેંચો", - // "item.edit.tabs.status.description": "Welcome to the item management page. From here you can withdraw, reinstate, move or delete the item. You may also update or add new metadata / bitstreams on the other tabs.", "item.edit.tabs.status.description": "આઇટમ મેનેજમેન્ટ પેજમાં આપનું સ્વાગત છે. અહીંથી તમે આઇટમને પાછું ખેંચી શકો છો, ફરી સ્થાપિત કરી શકો છો, ખસેડી શકો છો અથવા કાઢી શકો છો. તમે અન્ય ટૅબ પર નવા મેટાડેટા / બિટસ્ટ્રીમ્સને અપડેટ અથવા ઉમેરવા માટે પણ કરી શકો છો.", - // "item.edit.tabs.status.head": "Status", "item.edit.tabs.status.head": "સ્થિતિ", - // "item.edit.tabs.status.labels.handle": "Handle", "item.edit.tabs.status.labels.handle": "હેન્ડલ", - // "item.edit.tabs.status.labels.id": "Item Internal ID", "item.edit.tabs.status.labels.id": "આઇટમ આંતરિક ID", - // "item.edit.tabs.status.labels.itemPage": "Item Page", "item.edit.tabs.status.labels.itemPage": "આઇટમ પેજ", - // "item.edit.tabs.status.labels.lastModified": "Last Modified", "item.edit.tabs.status.labels.lastModified": "છેલ્લે ફેરફાર", - // "item.edit.tabs.status.title": "Item Edit - Status", "item.edit.tabs.status.title": "આઇટમ સંપાદન - સ્થિતિ", - // "item.edit.tabs.versionhistory.head": "Version History", "item.edit.tabs.versionhistory.head": "આવૃત્તિ ઇતિહાસ", - // "item.edit.tabs.versionhistory.title": "Item Edit - Version History", "item.edit.tabs.versionhistory.title": "આઇટમ સંપાદન - આવૃત્તિ ઇતિહાસ", - // "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": "આ વપરાશકર્તા ઇન્ટરફેસમાં નવી આવૃત્તિઓ સંપાદિત કરવી અથવા ઉમેરવી હજી શક્ય નથી.", - // "item.edit.tabs.view.head": "View Item", "item.edit.tabs.view.head": "આઇટમ જુઓ", - // "item.edit.tabs.view.title": "Item Edit - View", "item.edit.tabs.view.title": "આઇટમ સંપાદન - જુઓ", - // "item.edit.withdraw.cancel": "Cancel", "item.edit.withdraw.cancel": "રદ કરો", - // "item.edit.withdraw.confirm": "Withdraw", "item.edit.withdraw.confirm": "પાછું ખેંચો", - // "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?", "item.edit.withdraw.description": "શું તમે ખાતરી કરો છો કે આ આઇટમને આર્કાઇવમાંથી પાછું ખેંચવું જોઈએ?", - // "item.edit.withdraw.error": "An error occurred while withdrawing the item", "item.edit.withdraw.error": "આ આઇટમને પાછું ખેંચતી વખતે એક ભૂલ આવી", - // "item.edit.withdraw.header": "Withdraw item: {{ id }}", - // TODO New key - Add a translation - "item.edit.withdraw.header": "Withdraw item: {{ id }}", + "item.edit.withdraw.header": "આઇટમ પાછું ખેંચો: {{ id }}", - // "item.edit.withdraw.success": "The item was withdrawn successfully", "item.edit.withdraw.success": "આ આઇટમ સફળતાપૂર્વક પાછું ખેંચવામાં આવ્યું", - // "item.orcid.return": "Back", "item.orcid.return": "પાછા", - // "item.listelement.badge": "Item", "item.listelement.badge": "આઇટમ", - // "item.page.description": "Description", "item.page.description": "વર્ણન", - // "item.page.org-unit": "Organizational Unit", - // TODO New key - Add a translation - "item.page.org-unit": "Organizational Unit", - - // "item.page.org-units": "Organizational Units", - // TODO New key - Add a translation - "item.page.org-units": "Organizational Units", - - // "item.page.project": "Research Project", - // TODO New key - Add a translation - "item.page.project": "Research Project", - - // "item.page.projects": "Research Projects", - // TODO New key - Add a translation - "item.page.projects": "Research Projects", - - // "item.page.publication": "Publications", - // TODO New key - Add a translation - "item.page.publication": "Publications", - - // "item.page.publications": "Publications", - // TODO New key - Add a translation - "item.page.publications": "Publications", - - // "item.page.article": "Article", - // TODO New key - Add a translation - "item.page.article": "Article", - - // "item.page.articles": "Articles", - // TODO New key - Add a translation - "item.page.articles": "Articles", - - // "item.page.journal": "Journal", - // TODO New key - Add a translation - "item.page.journal": "Journal", - - // "item.page.journals": "Journals", - // TODO New key - Add a translation - "item.page.journals": "Journals", - - // "item.page.journal-issue": "Journal Issue", - // TODO New key - Add a translation - "item.page.journal-issue": "Journal Issue", - - // "item.page.journal-issues": "Journal Issues", - // TODO New key - Add a translation - "item.page.journal-issues": "Journal Issues", - - // "item.page.journal-volume": "Journal Volume", - // TODO New key - Add a translation - "item.page.journal-volume": "Journal Volume", - - // "item.page.journal-volumes": "Journal Volumes", - // TODO New key - Add a translation - "item.page.journal-volumes": "Journal Volumes", - - // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "જર્નલ ISSN", - // "item.page.journal-title": "Journal Title", "item.page.journal-title": "જર્નલ શીર્ષક", - // "item.page.publisher": "Publisher", "item.page.publisher": "પ્રકાશક", - // "item.page.titleprefix": "Item: ", - // TODO New key - Add a translation - "item.page.titleprefix": "Item: ", + "item.page.titleprefix": "આઇટમ: ", - // "item.page.volume-title": "Volume Title", "item.page.volume-title": "વોલ્યુમ શીર્ષક", - // "item.page.dcterms.spatial": "Geospatial point", "item.page.dcterms.spatial": "ભૌગોલિક બિંદુ", - // "item.search.results.head": "Item Search Results", "item.search.results.head": "આઇટમ શોધ પરિણામો", - // "item.search.title": "Item Search", "item.search.title": "આઇટમ શોધ", - // "item.truncatable-part.show-more": "Show more", "item.truncatable-part.show-more": "વધુ બતાવો", - // "item.truncatable-part.show-less": "Collapse", "item.truncatable-part.show-less": "સંકોચો", - // "item.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "item.qa-event-notification.check.notification-info": "તમારા ખાતા સાથે સંબંધિત {{num}} પેન્ડિંગ સૂચનો છે", - // "item.qa-event-notification-info.check.button": "View", "item.qa-event-notification-info.check.button": "જુઓ", - // "mydspace.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "mydspace.qa-event-notification.check.notification-info": "તમારા ખાતા સાથે સંબંધિત {{num}} પેન્ડિંગ સૂચનો છે", - // "mydspace.qa-event-notification-info.check.button": "View", "mydspace.qa-event-notification-info.check.button": "જુઓ", - // "workflow-item.search.result.delete-supervision.modal.header": "Delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.header": "સુપરવિઝન ઓર્ડર કાઢી નાખો", - // "workflow-item.search.result.delete-supervision.modal.info": "Are you sure you want to delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.info": "શું તમે સુપરવિઝન ઓર્ડર કાઢી નાખવા માંગો છો?", - // "workflow-item.search.result.delete-supervision.modal.cancel": "Cancel", "workflow-item.search.result.delete-supervision.modal.cancel": "રદ કરો", - // "workflow-item.search.result.delete-supervision.modal.confirm": "Delete", "workflow-item.search.result.delete-supervision.modal.confirm": "કાઢી નાખો", - // "workflow-item.search.result.notification.deleted.success": "Successfully deleted supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.success": "સુપરવિઝન ઓર્ડર સફળતાપૂર્વક કાઢી નાખ્યો \"{{name}}\"", - // "workflow-item.search.result.notification.deleted.failure": "Failed to delete supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.failure": "સુપરવિઝન ઓર્ડર કાઢી શક્યો નહીં \"{{name}}\"", - // "workflow-item.search.result.list.element.supervised-by": "Supervised by:", - // TODO New key - Add a translation - "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + "workflow-item.search.result.list.element.supervised-by": "સુપરવિઝન દ્વારા:", - // "workflow-item.search.result.list.element.supervised.remove-tooltip": "Remove supervision group", "workflow-item.search.result.list.element.supervised.remove-tooltip": "સુપરવિઝન જૂથ દૂર કરો", - // "confidence.indicator.help-text.accepted": "This authority value has been confirmed as accurate by an interactive user", "confidence.indicator.help-text.accepted": "આ અધિકૃત મૂલ્યને ઇન્ટરેક્ટિવ વપરાશકર્તા દ્વારા સચોટ તરીકે પુષ્ટિ આપવામાં આવી છે", - // "confidence.indicator.help-text.uncertain": "Value is singular and valid but has not been seen and accepted by a human so it is still uncertain", "confidence.indicator.help-text.uncertain": "મૂલ્ય એકલ અને માન્ય છે પરંતુ માનવ દ્વારા જોવામાં અને સ્વીકારવામાં આવ્યું નથી તેથી તે હજી પણ અનિશ્ચિત છે", - // "confidence.indicator.help-text.ambiguous": "There are multiple matching authority values of equal validity", "confidence.indicator.help-text.ambiguous": "સમાન માન્યતાના અનેક મેળ ખાતા અધિકૃત મૂલ્યો છે", - // "confidence.indicator.help-text.notfound": "There are no matching answers in the authority", "confidence.indicator.help-text.notfound": "અધિકૃતમાં કોઈ મેળ ખાતા જવાબો નથી", - // "confidence.indicator.help-text.failed": "The authority encountered an internal failure", "confidence.indicator.help-text.failed": "અધિકૃત આંતરિક નિષ્ફળતા અનુભવી", - // "confidence.indicator.help-text.rejected": "The authority recommends this submission be rejected", "confidence.indicator.help-text.rejected": "અધિકૃત આ સબમિશનને નકારી કાઢવાની ભલામણ કરે છે", - // "confidence.indicator.help-text.novalue": "No reasonable confidence value was returned from the authority", "confidence.indicator.help-text.novalue": "અધિકૃતમાંથી કોઈ યોગ્ય વિશ્વાસ મૂલ્ય પરત કરવામાં આવ્યું નથી", - // "confidence.indicator.help-text.unset": "Confidence was never recorded for this value", "confidence.indicator.help-text.unset": "આ મૂલ્ય માટે વિશ્વાસ ક્યારેય નોંધાયો નથી", - // "confidence.indicator.help-text.unknown": "Unknown confidence value", "confidence.indicator.help-text.unknown": "અજ્ઞાત વિશ્વાસ મૂલ્ય", - // "item.page.abstract": "Abstract", "item.page.abstract": "અભ્યાસ", - // "item.page.author": "Author", "item.page.author": "લેખકો", - // "item.page.authors": "Authors", - // TODO New key - Add a translation - "item.page.authors": "Authors", - - // "item.page.citation": "Citation", "item.page.citation": "ઉલ્લેખ", - // "item.page.collections": "Collections", "item.page.collections": "સંગ્રહો", - // "item.page.collections.loading": "Loading...", "item.page.collections.loading": "લોડ થઈ રહ્યું છે...", - // "item.page.collections.load-more": "Load more", "item.page.collections.load-more": "વધુ લોડ કરો", - // "item.page.date": "Date", "item.page.date": "તારીખ", - // "item.page.edit": "Edit this item", "item.page.edit": "આ આઇટમ સંપાદિત કરો", - // "item.page.files": "Files", "item.page.files": "ફાઇલો", - // "item.page.filesection.description": "Description:", - // TODO New key - Add a translation - "item.page.filesection.description": "Description:", + "item.page.filesection.description": "વર્ણન:", - // "item.page.filesection.download": "Download", "item.page.filesection.download": "ડાઉનલોડ", - // "item.page.filesection.format": "Format:", - // TODO New key - Add a translation - "item.page.filesection.format": "Format:", + "item.page.filesection.format": "ફોર્મેટ:", - // "item.page.filesection.name": "Name:", - // TODO New key - Add a translation - "item.page.filesection.name": "Name:", + "item.page.filesection.name": "નામ:", - // "item.page.filesection.size": "Size:", - // TODO New key - Add a translation - "item.page.filesection.size": "Size:", + "item.page.filesection.size": "કદ:", - // "item.page.journal.search.title": "Articles in this journal", "item.page.journal.search.title": "આ જર્નલમાં લેખો", - // "item.page.link.full": "Full item page", "item.page.link.full": "સંપૂર્ણ આઇટમ પેજ", - // "item.page.link.simple": "Simple item page", "item.page.link.simple": "સરળ આઇટમ પેજ", - // "item.page.options": "Options", "item.page.options": "વિકલ્પો", - // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", - // "item.page.orcid.tooltip": "Open ORCID setting page", "item.page.orcid.tooltip": "ORCID સેટિંગ પેજ ખોલો", - // "item.page.person.search.title": "Articles by this author", "item.page.person.search.title": "આ લેખક દ્વારા લેખો", - // "item.page.related-items.view-more": "Show {{ amount }} more", "item.page.related-items.view-more": "{{ amount }} વધુ બતાવો", - // "item.page.related-items.view-less": "Hide last {{ amount }}", "item.page.related-items.view-less": "છેલ્લા {{ amount }} છુપાવો", - // "item.page.relationships.isAuthorOfPublication": "Publications", "item.page.relationships.isAuthorOfPublication": "પ્રકાશનો લેખક છે", - // "item.page.relationships.isJournalOfPublication": "Publications", "item.page.relationships.isJournalOfPublication": "પ્રકાશનો જર્નલ છે", - // "item.page.relationships.isOrgUnitOfPerson": "Authors", "item.page.relationships.isOrgUnitOfPerson": "લેખકો", - // "item.page.relationships.isOrgUnitOfProject": "Research Projects", "item.page.relationships.isOrgUnitOfProject": "શોધ પ્રોજેક્ટ્સ", - // "item.page.subject": "Keywords", "item.page.subject": "કીવર્ડ્સ", - // "item.page.uri": "URI", "item.page.uri": "URI", - // "item.page.bitstreams.view-more": "Show more", "item.page.bitstreams.view-more": "વધુ બતાવો", - // "item.page.bitstreams.collapse": "Collapse", "item.page.bitstreams.collapse": "સંકોચો", - // "item.page.bitstreams.primary": "Primary", "item.page.bitstreams.primary": "પ્રાથમિક", - // "item.page.filesection.original.bundle": "Original bundle", "item.page.filesection.original.bundle": "મૂળ બંડલ", - // "item.page.filesection.license.bundle": "License bundle", "item.page.filesection.license.bundle": "લાઇસન્સ બંડલ", - // "item.page.return": "Back", "item.page.return": "પાછા", - // "item.page.version.create": "Create new version", "item.page.version.create": "નવી આવૃત્તિ બનાવો", - // "item.page.withdrawn": "Request a withdrawal for this item", "item.page.withdrawn": "આ આઇટમ માટે વિથડ્રૉલ વિનંતી કરો", - // "item.page.reinstate": "Request reinstatement", "item.page.reinstate": "ફરી સ્થાપિત કરવાની વિનંતી કરો", - // "item.page.version.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.page.version.hasDraft": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", - // "item.page.claim.button": "Claim", "item.page.claim.button": "દાવો", - // "item.page.claim.tooltip": "Claim this item as profile", "item.page.claim.tooltip": "આ આઇટમને પ્રોફાઇલ તરીકે દાવો", - // "item.page.image.alt.ROR": "ROR logo", "item.page.image.alt.ROR": "ROR લોગો", - // "item.preview.dc.identifier.uri": "Identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier.uri": "Identifier:", + "item.preview.dc.identifier.uri": "પરિચયકર્તા:", - // "item.preview.dc.contributor.author": "Authors:", - // TODO New key - Add a translation - "item.preview.dc.contributor.author": "Authors:", + "item.preview.dc.contributor.author": "લેખકો:", - // "item.preview.dc.date.issued": "Published date:", - // TODO New key - Add a translation - "item.preview.dc.date.issued": "Published date:", + "item.preview.dc.date.issued": "પ્રકાશિત તારીખ:", - // "item.preview.dc.description": "Description:", - // TODO Source message changed - Revise the translation "item.preview.dc.description": "વર્ણન:", - // "item.preview.dc.description.abstract": "Abstract:", - // TODO New key - Add a translation - "item.preview.dc.description.abstract": "Abstract:", + "item.preview.dc.description.abstract": "અભ્યાસ:", - // "item.preview.dc.identifier.other": "Other identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier.other": "Other identifier:", + "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા:", - // "item.preview.dc.language.iso": "Language:", - // TODO New key - Add a translation - "item.preview.dc.language.iso": "Language:", + "item.preview.dc.language.iso": "ભાષા:", - // "item.preview.dc.subject": "Subjects:", - // TODO New key - Add a translation - "item.preview.dc.subject": "Subjects:", + "item.preview.dc.subject": "વિષયો:", - // "item.preview.dc.title": "Title:", - // TODO New key - Add a translation - "item.preview.dc.title": "Title:", + "item.preview.dc.title": "શીર્ષક:", - // "item.preview.dc.type": "Type:", - // TODO New key - Add a translation - "item.preview.dc.type": "Type:", + "item.preview.dc.type": "પ્રકાર:", - // "item.preview.oaire.version": "Version", "item.preview.oaire.version": "આવૃત્તિ", - // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "મુદ્દો", - // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "વોલ્યુમ", - // "item.preview.oaire.citation.title": "Citation container", "item.preview.oaire.citation.title": "ઉલ્લેખ કન્ટેનર", - // "item.preview.oaire.citation.startPage": "Citation start page", "item.preview.oaire.citation.startPage": "ઉલ્લેખ પ્રારંભ પૃષ્ઠ", - // "item.preview.oaire.citation.endPage": "Citation end page", "item.preview.oaire.citation.endPage": "ઉલ્લેખ અંત પૃષ્ઠ", - // "item.preview.dc.relation.hasversion": "Has version", "item.preview.dc.relation.hasversion": "આવૃત્તિ છે", - // "item.preview.dc.relation.ispartofseries": "Is part of series", "item.preview.dc.relation.ispartofseries": "શ્રેણીનો ભાગ છે", - // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "હક્કો", - // "item.preview.dc.identifier.other": "Other Identifier", - "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા:", + "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા", - // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", - // "item.preview.dc.identifier.isbn": "ISBN", "item.preview.dc.identifier.isbn": "ISBN", - // "item.preview.dc.identifier": "Identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier": "Identifier:", + "item.preview.dc.identifier": "પરિચયકર્તા:", - // "item.preview.dc.relation.ispartof": "Journal or Series", "item.preview.dc.relation.ispartof": "જર્નલ અથવા શ્રેણી", - // "item.preview.dc.identifier.doi": "DOI", "item.preview.dc.identifier.doi": "DOI", - // "item.preview.dc.publisher": "Publisher:", - // TODO New key - Add a translation - "item.preview.dc.publisher": "Publisher:", + "item.preview.dc.publisher": "પ્રકાશક:", - // "item.preview.person.familyName": "Surname:", - // TODO New key - Add a translation - "item.preview.person.familyName": "Surname:", + "item.preview.person.familyName": "અટક:", - // "item.preview.person.givenName": "Name:", - // TODO New key - Add a translation - "item.preview.person.givenName": "Name:", + "item.preview.person.givenName": "નામ:", - // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", - // "item.preview.person.affiliation.name": "Affiliations:", - // TODO New key - Add a translation - "item.preview.person.affiliation.name": "Affiliations:", + "item.preview.person.affiliation.name": "સંબંધો:", - // "item.preview.project.funder.name": "Funder:", - // TODO New key - Add a translation - "item.preview.project.funder.name": "Funder:", + "item.preview.project.funder.name": "ફંડર:", - // "item.preview.project.funder.identifier": "Funder Identifier:", - // TODO New key - Add a translation - "item.preview.project.funder.identifier": "Funder Identifier:", + "item.preview.project.funder.identifier": "ફંડર પરિચયકર્તા:", - // "item.preview.project.investigator": "Project Investigator", "item.preview.project.investigator": "પ્રોજેક્ટ ઇન્વેસ્ટિગેટર", - // "item.preview.oaire.awardNumber": "Funding ID:", - // TODO New key - Add a translation - "item.preview.oaire.awardNumber": "Funding ID:", + "item.preview.oaire.awardNumber": "ફંડિંગ ID:", - // "item.preview.dc.title.alternative": "Acronym:", - // TODO New key - Add a translation - "item.preview.dc.title.alternative": "Acronym:", + "item.preview.dc.title.alternative": "અન્ય નામ:", - // "item.preview.dc.coverage.spatial": "Jurisdiction:", - // TODO New key - Add a translation - "item.preview.dc.coverage.spatial": "Jurisdiction:", + "item.preview.dc.coverage.spatial": "ક્ષેત્રાધિકાર:", - // "item.preview.oaire.fundingStream": "Funding Stream:", - // TODO New key - Add a translation - "item.preview.oaire.fundingStream": "Funding Stream:", + "item.preview.oaire.fundingStream": "ફંડિંગ સ્ટ્રીમ:", - // "item.preview.oairecerif.identifier.url": "URL", "item.preview.oairecerif.identifier.url": "URL", - // "item.preview.organization.address.addressCountry": "Country", "item.preview.organization.address.addressCountry": "દેશ", - // "item.preview.organization.foundingDate": "Founding Date", "item.preview.organization.foundingDate": "સ્થાપના તારીખ", - // "item.preview.organization.identifier.crossrefid": "Crossref ID", "item.preview.organization.identifier.crossrefid": "ક્રોસરેફ ID", - // "item.preview.organization.identifier.isni": "ISNI", "item.preview.organization.identifier.isni": "ISNI", - // "item.preview.organization.identifier.ror": "ROR ID", "item.preview.organization.identifier.ror": "ROR ID", - // "item.preview.organization.legalName": "Legal Name", "item.preview.organization.legalName": "કાનૂની નામ", - // "item.preview.dspace.entity.type": "Entity Type:", - // TODO New key - Add a translation - "item.preview.dspace.entity.type": "Entity Type:", + "item.preview.dspace.entity.type": "સત્તા પ્રકાર:", - // "item.preview.creativework.publisher": "Publisher", "item.preview.creativework.publisher": "પ્રકાશક", - // "item.preview.creativeworkseries.issn": "ISSN", "item.preview.creativeworkseries.issn": "ISSN", - // "item.preview.dc.identifier.issn": "ISSN", "item.preview.dc.identifier.issn": "ISSN", - // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "ઓપનએલેક્સ પરિચયકર્તા", - // "item.preview.dc.description": "Description", - // TODO Source message changed - Revise the translation - "item.preview.dc.description": "વર્ણન:", + "item.preview.dc.description": "વર્ણન", - // "item.select.confirm": "Confirm selected", "item.select.confirm": "પસંદ કરેલને પુષ્ટિ કરો", - // "item.select.empty": "No items to show", "item.select.empty": "બતાવા માટે કોઈ આઇટમ નથી", - // "item.select.table.selected": "Selected items", "item.select.table.selected": "પસંદ કરેલ આઇટમ્સ", - // "item.select.table.select": "Select item", "item.select.table.select": "આઇટમ પસંદ કરો", - // "item.select.table.deselect": "Deselect item", "item.select.table.deselect": "આઇટમ પસંદ ન કરો", - // "item.select.table.author": "Author", "item.select.table.author": "લેખક", - // "item.select.table.collection": "Collection", "item.select.table.collection": "સંગ્રહ", - // "item.select.table.title": "Title", "item.select.table.title": "શીર્ષક", - // "item.version.history.empty": "There are no other versions for this item yet.", "item.version.history.empty": "આ આઇટમ માટે હજી સુધી અન્ય આવૃત્તિઓ નથી.", - // "item.version.history.head": "Version History", "item.version.history.head": "આવૃત્તિ ઇતિહાસ", - // "item.version.history.return": "Back", "item.version.history.return": "પાછા", - // "item.version.history.selected": "Selected version", "item.version.history.selected": "પસંદ કરેલ આવૃત્તિ", - // "item.version.history.selected.alert": "You are currently viewing version {{version}} of the item.", "item.version.history.selected.alert": "તમે હાલમાં આઇટમની આવૃત્તિ {{version}} જોઈ રહ્યા છો.", - // "item.version.history.table.version": "Version", "item.version.history.table.version": "આવૃત્તિ", - // "item.version.history.table.item": "Item", "item.version.history.table.item": "આઇટમ", - // "item.version.history.table.editor": "Editor", "item.version.history.table.editor": "સંપાદક", - // "item.version.history.table.date": "Date", "item.version.history.table.date": "તારીખ", - // "item.version.history.table.summary": "Summary", "item.version.history.table.summary": "સારાંશ", - // "item.version.history.table.workspaceItem": "Workspace item", "item.version.history.table.workspaceItem": "વર્કસ્પેસ આઇટમ", - // "item.version.history.table.workflowItem": "Workflow item", "item.version.history.table.workflowItem": "વર્કફ્લો આઇટમ", - // "item.version.history.table.actions": "Action", "item.version.history.table.actions": "ક્રિયા", - // "item.version.history.table.action.editWorkspaceItem": "Edit workspace item", "item.version.history.table.action.editWorkspaceItem": "વર્કસ્પેસ આઇટમ સંપાદિત કરો", - // "item.version.history.table.action.editSummary": "Edit summary", "item.version.history.table.action.editSummary": "સારાંશ સંપાદિત કરો", - // "item.version.history.table.action.saveSummary": "Save summary edits", "item.version.history.table.action.saveSummary": "સારાંશ ફેરફારો સાચવો", - // "item.version.history.table.action.discardSummary": "Discard summary edits", "item.version.history.table.action.discardSummary": "સારાંશ ફેરફારો રદ કરો", - // "item.version.history.table.action.newVersion": "Create new version from this one", "item.version.history.table.action.newVersion": "આમાંથી નવી આવૃત્તિ બનાવો", - // "item.version.history.table.action.deleteVersion": "Delete version", "item.version.history.table.action.deleteVersion": "આવૃત્તિ કાઢી નાખો", - // "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.history.table.action.hasDraft": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", - // "item.version.notice": "This is not the latest version of this item. The latest version can be found here.", "item.version.notice": "આ આઇટમની નવીનતમ આવૃત્તિ નથી. નવીનતમ આવૃત્તિ અહીં મળી શકે છે અહીં.", - // "item.version.create.modal.header": "New version", "item.version.create.modal.header": "નવી આવૃત્તિ", - // "item.qa.withdrawn.modal.header": "Request withdrawal", "item.qa.withdrawn.modal.header": "વિથડ્રૉલ વિનંતી", - // "item.qa.reinstate.modal.header": "Request reinstate", "item.qa.reinstate.modal.header": "ફરી સ્થાપિત કરવાની વિનંતી", - // "item.qa.reinstate.create.modal.header": "New version", "item.qa.reinstate.create.modal.header": "નવી આવૃત્તિ", - // "item.version.create.modal.text": "Create a new version for this item", "item.version.create.modal.text": "આ આઇટમ માટે નવી આવૃત્તિ બનાવો", - // "item.version.create.modal.text.startingFrom": "starting from version {{version}}", "item.version.create.modal.text.startingFrom": "આવૃત્તિ {{version}} થી શરૂ", - // "item.version.create.modal.button.confirm": "Create", "item.version.create.modal.button.confirm": "બનાવો", - // "item.version.create.modal.button.confirm.tooltip": "Create new version", "item.version.create.modal.button.confirm.tooltip": "નવી આવૃત્તિ બનાવો", - // "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "Send request", "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "વિનંતી મોકલો", - // "qa-withdrown.create.modal.button.confirm": "Withdraw", "qa-withdrown.create.modal.button.confirm": "વિથડ્રૉલ", - // "qa-reinstate.create.modal.button.confirm": "Reinstate", "qa-reinstate.create.modal.button.confirm": "ફરી સ્થાપિત કરો", - // "item.version.create.modal.button.cancel": "Cancel", "item.version.create.modal.button.cancel": "રદ કરો", - // "item.qa.withdrawn-reinstate.create.modal.button.cancel": "Cancel", "item.qa.withdrawn-reinstate.create.modal.button.cancel": "રદ કરો", - // "item.version.create.modal.button.cancel.tooltip": "Do not create new version", "item.version.create.modal.button.cancel.tooltip": "નવી આવૃત્તિ ન બનાવો", - // "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "Do not send request", "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "વિનંતી ન મોકલો", - // "item.version.create.modal.form.summary.label": "Summary", "item.version.create.modal.form.summary.label": "સારાંશ", - // "qa-withdrawn.create.modal.form.summary.label": "You are requesting to withdraw this item", "qa-withdrawn.create.modal.form.summary.label": "તમે આ આઇટમને પાછું ખેંચવાની વિનંતી કરી રહ્યા છો", - // "qa-withdrawn.create.modal.form.summary2.label": "Please enter the reason for the withdrawal", "qa-withdrawn.create.modal.form.summary2.label": "કૃપા કરીને વિથડ્રૉલ માટેનું કારણ દાખલ કરો", - // "qa-reinstate.create.modal.form.summary.label": "You are requesting to reinstate this item", "qa-reinstate.create.modal.form.summary.label": "તમે આ આઇટમને ફરી સ્થાપિત કરવાની વિનંતી કરી રહ્યા છો", - // "qa-reinstate.create.modal.form.summary2.label": "Please enter the reason for the reinstatment", "qa-reinstate.create.modal.form.summary2.label": "કૃપા કરીને ફરી સ્થાપન માટેનું કારણ દાખલ કરો", - // "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version", "item.version.create.modal.form.summary.placeholder": "નવી આવૃત્તિ માટેનો સારાંશ દાખલ કરો", - // "qa-withdrown.modal.form.summary.placeholder": "Enter the reason for the withdrawal", "qa-withdrown.modal.form.summary.placeholder": "વિથડ્રૉલ માટેનું કારણ દાખલ કરો", - // "qa-reinstate.modal.form.summary.placeholder": "Enter the reason for the reinstatement", "qa-reinstate.modal.form.summary.placeholder": "ફરી સ્થાપન માટેનું કારણ દાખલ કરો", - // "item.version.create.modal.submitted.header": "Creating new version...", "item.version.create.modal.submitted.header": "નવી આવૃત્તિ બનાવી રહી છે...", - // "item.qa.withdrawn.modal.submitted.header": "Sending withdrawn request...", "item.qa.withdrawn.modal.submitted.header": "વિથડ્રૉલ વિનંતી મોકલી રહી છે...", - // "correction-type.manage-relation.action.notification.reinstate": "Reinstate request sent.", "correction-type.manage-relation.action.notification.reinstate": "ફરી સ્થાપિત કરવાની વિનંતી મોકલવામાં આવી.", - // "correction-type.manage-relation.action.notification.withdrawn": "Withdraw request sent.", "correction-type.manage-relation.action.notification.withdrawn": "વિથડ્રૉલ વિનંતી મોકલવામાં આવી.", - // "item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.", "item.version.create.modal.submitted.text": "નવી આવૃત્તિ બનાવી રહી છે. આમાં થોડો સમય લાગી શકે છે જો આઇટમમાં ઘણા સંબંધો હોય.", - // "item.version.create.notification.success": "New version has been created with version number {{version}}", "item.version.create.notification.success": "નવી આવૃત્તિ આવૃત્તિ નંબર {{version}} સાથે બનાવવામાં આવી છે", - // "item.version.create.notification.failure": "New version has not been created", "item.version.create.notification.failure": "નવી આવૃત્તિ બનાવવામાં આવી નથી", - // "item.version.create.notification.inProgress": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.create.notification.inProgress": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે", - // "item.version.delete.modal.header": "Delete version", "item.version.delete.modal.header": "આવૃત્તિ કાઢી નાખો", - // "item.version.delete.modal.text": "Do you want to delete version {{version}}?", "item.version.delete.modal.text": "શું તમે આવૃત્તિ {{version}} કાઢી નાખવા માંગો છો?", - // "item.version.delete.modal.button.confirm": "Delete", "item.version.delete.modal.button.confirm": "કાઢી નાખો", - // "item.version.delete.modal.button.confirm.tooltip": "Delete this version", "item.version.delete.modal.button.confirm.tooltip": "આ આવૃત્તિ કાઢી નાખો", - // "item.version.delete.modal.button.cancel": "Cancel", "item.version.delete.modal.button.cancel": "રદ કરો", - // "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version", "item.version.delete.modal.button.cancel.tooltip": "આ આવૃત્તિ ન કાઢી નાખો", - // "item.version.delete.notification.success": "Version number {{version}} has been deleted", "item.version.delete.notification.success": "આવૃત્તિ નંબર {{version}} કાઢી નાખવામાં આવી છે", - // "item.version.delete.notification.failure": "Version number {{version}} has not been deleted", "item.version.delete.notification.failure": "આવૃત્તિ નંબર {{version}} કાઢી શકાઈ નથી", - // "item.version.edit.notification.success": "The summary of version number {{version}} has been changed", "item.version.edit.notification.success": "આવૃત્તિ નંબર {{version}} નો સારાંશ બદલવામાં આવ્યો છે", - // "item.version.edit.notification.failure": "The summary of version number {{version}} has not been changed", "item.version.edit.notification.failure": "આવૃત્તિ નંબર {{version}} નો સારાંશ બદલવામાં આવ્યો નથી", - // "itemtemplate.edit.metadata.add-button": "Add", "itemtemplate.edit.metadata.add-button": "ઉમેરો", - // "itemtemplate.edit.metadata.discard-button": "Discard", "itemtemplate.edit.metadata.discard-button": "રદ કરો", - // "itemtemplate.edit.metadata.edit.language": "Edit language", "itemtemplate.edit.metadata.edit.language": "ભાષા સંપાદિત કરો", - // "itemtemplate.edit.metadata.edit.value": "Edit value", "itemtemplate.edit.metadata.edit.value": "મૂલ્ય સંપાદિત કરો", - // "itemtemplate.edit.metadata.edit.buttons.confirm": "Confirm", "itemtemplate.edit.metadata.edit.buttons.confirm": "પુષ્ટિ કરો", - // "itemtemplate.edit.metadata.edit.buttons.drag": "Drag to reorder", "itemtemplate.edit.metadata.edit.buttons.drag": "ફેરફાર કરવા માટે ખેંચો", - // "itemtemplate.edit.metadata.edit.buttons.edit": "Edit", "itemtemplate.edit.metadata.edit.buttons.edit": "સંપાદિત કરો", - // "itemtemplate.edit.metadata.edit.buttons.remove": "Remove", "itemtemplate.edit.metadata.edit.buttons.remove": "દૂર કરો", - // "itemtemplate.edit.metadata.edit.buttons.undo": "Undo changes", "itemtemplate.edit.metadata.edit.buttons.undo": "ફેરફારો રદ કરો", - // "itemtemplate.edit.metadata.edit.buttons.unedit": "Stop editing", "itemtemplate.edit.metadata.edit.buttons.unedit": "સંપાદન બંધ કરો", - // "itemtemplate.edit.metadata.empty": "The item template currently doesn't contain any metadata. Click Add to start adding a metadata value.", "itemtemplate.edit.metadata.empty": "આઇટમ ટેમ્પલેટમાં હાલમાં કોઈ મેટાડેટા નથી. મેટાડેટા મૂલ્ય ઉમેરવાનું શરૂ કરવા માટે ઉમેરો પર ક્લિક કરો.", - // "itemtemplate.edit.metadata.headers.edit": "Edit", "itemtemplate.edit.metadata.headers.edit": "સંપાદિત કરો", - // "itemtemplate.edit.metadata.headers.field": "Field", "itemtemplate.edit.metadata.headers.field": "ક્ષેત્ર", - // "itemtemplate.edit.metadata.headers.language": "Lang", "itemtemplate.edit.metadata.headers.language": "ભાષા", - // "itemtemplate.edit.metadata.headers.value": "Value", "itemtemplate.edit.metadata.headers.value": "મૂલ્ય", - // "itemtemplate.edit.metadata.metadatafield": "Edit field", "itemtemplate.edit.metadata.metadatafield": "ક્ષેત્ર સંપાદિત કરો", - // "itemtemplate.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "itemtemplate.edit.metadata.metadatafield.error": "મેટાડેટા ક્ષેત્ર માન્ય કરતી વખતે ભૂલ આવી", - // "itemtemplate.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "itemtemplate.edit.metadata.metadatafield.invalid": "કૃપા કરીને માન્ય મેટાડેટા ક્ષેત્ર પસંદ કરો", - // "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "itemtemplate.edit.metadata.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા હતા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો", - // "itemtemplate.edit.metadata.notifications.discarded.title": "Changes discarded", "itemtemplate.edit.metadata.notifications.discarded.title": "ફેરફારો રદ", - // "itemtemplate.edit.metadata.notifications.error.title": "An error occurred", "itemtemplate.edit.metadata.notifications.error.title": "ભૂલ આવી", - // "itemtemplate.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "itemtemplate.edit.metadata.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને સાચવતા પહેલા ખાતરી કરો કે બધા ક્ષેત્રો માન્ય છે.", - // "itemtemplate.edit.metadata.notifications.invalid.title": "Metadata invalid", "itemtemplate.edit.metadata.notifications.invalid.title": "મેટાડેટા અમાન્ય", - // "itemtemplate.edit.metadata.notifications.outdated.content": "The item template you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", "itemtemplate.edit.metadata.notifications.outdated.content": "આઇટમ ટેમ્પલેટ તમે હાલમાં કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે", - // "itemtemplate.edit.metadata.notifications.outdated.title": "Changes outdated", "itemtemplate.edit.metadata.notifications.outdated.title": "ફેરફારો જૂના", - // "itemtemplate.edit.metadata.notifications.saved.content": "Your changes to this item template's metadata were saved.", "itemtemplate.edit.metadata.notifications.saved.content": "આ આઇટમ ટેમ્પલેટના મેટાડેટા માટેના તમારા ફેરફારો સાચવવામાં આવ્યા હતા.", - // "itemtemplate.edit.metadata.notifications.saved.title": "Metadata saved", "itemtemplate.edit.metadata.notifications.saved.title": "મેટાડેટા સાચવ્યા", - // "itemtemplate.edit.metadata.reinstate-button": "Undo", "itemtemplate.edit.metadata.reinstate-button": "Undo", - // "itemtemplate.edit.metadata.reset-order-button": "Undo reorder", "itemtemplate.edit.metadata.reset-order-button": "ફેરફાર રદ કરો", - // "itemtemplate.edit.metadata.save-button": "Save", "itemtemplate.edit.metadata.save-button": "સાચવો", - // "journal.listelement.badge": "Journal", "journal.listelement.badge": "જર્નલ", - // "journal.page.description": "Description", "journal.page.description": "વર્ણન", - // "journal.page.edit": "Edit this item", "journal.page.edit": "આ આઇટમ સંપાદિત કરો", - // "journal.page.editor": "Editor-in-Chief", "journal.page.editor": "મુખ્ય સંપાદક", - // "journal.page.issn": "ISSN", "journal.page.issn": "ISSN", - // "journal.page.publisher": "Publisher", "journal.page.publisher": "પ્રકાશક", - // "journal.page.options": "Options", "journal.page.options": "વિકલ્પો", - // "journal.page.titleprefix": "Journal: ", - // TODO New key - Add a translation - "journal.page.titleprefix": "Journal: ", + "journal.page.titleprefix": "જર્નલ: ", - // "journal.search.results.head": "Journal Search Results", "journal.search.results.head": "જર્નલ શોધ પરિણામો", - // "journal-relationships.search.results.head": "Journal Search Results", "journal-relationships.search.results.head": "જર્નલ શોધ પરિણામો", - // "journal.search.title": "Journal Search", "journal.search.title": "જર્નલ શોધ", - // "journalissue.listelement.badge": "Journal Issue", "journalissue.listelement.badge": "જર્નલ ઇશ્યુ", - // "journalissue.page.description": "Description", "journalissue.page.description": "વર્ણન", - // "journalissue.page.edit": "Edit this item", "journalissue.page.edit": "આ આઇટમ સંપાદિત કરો", - // "journalissue.page.issuedate": "Issue Date", "journalissue.page.issuedate": "ઇશ્યુ તારીખ", - // "journalissue.page.journal-issn": "Journal ISSN", "journalissue.page.journal-issn": "જર્નલ ISSN", - // "journalissue.page.journal-title": "Journal Title", "journalissue.page.journal-title": "જર્નલ શીર્ષક", - // "journalissue.page.keyword": "Keywords", "journalissue.page.keyword": "કીવર્ડ્સ", - // "journalissue.page.number": "Number", "journalissue.page.number": "નંબર", - // "journalissue.page.options": "Options", "journalissue.page.options": "વિકલ્પો", - // "journalissue.page.titleprefix": "Journal Issue: ", - // TODO New key - Add a translation - "journalissue.page.titleprefix": "Journal Issue: ", + "journalissue.page.titleprefix": "જર્નલ ઇશ્યુ: ", - // "journalissue.search.results.head": "Journal Issue Search Results", "journalissue.search.results.head": "જર્નલ ઇશ્યુ શોધ પરિણામો", - // "journalvolume.listelement.badge": "Journal Volume", "journalvolume.listelement.badge": "જર્નલ વોલ્યુમ", - // "journalvolume.page.description": "Description", "journalvolume.page.description": "વર્ણન", - // "journalvolume.page.edit": "Edit this item", "journalvolume.page.edit": "આ આઇટમ સંપાદિત કરો", - // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "ઇશ્યુ તારીખ", - // "journalvolume.page.options": "Options", "journalvolume.page.options": "વિકલ્પો", - // "journalvolume.page.titleprefix": "Journal Volume: ", - // TODO New key - Add a translation - "journalvolume.page.titleprefix": "Journal Volume: ", + "journalvolume.page.titleprefix": "જર્નલ વોલ્યુમ: ", - // "journalvolume.page.volume": "Volume", "journalvolume.page.volume": "વોલ્યુમ", - // "journalvolume.search.results.head": "Journal Volume Search Results", "journalvolume.search.results.head": "જર્નલ વોલ્યુમ શોધ પરિણામો", - // "iiifsearchable.listelement.badge": "Document Media", "iiifsearchable.listelement.badge": "દસ્તાવેજ મીડિયા", - // "iiifsearchable.page.titleprefix": "Document: ", - // TODO New key - Add a translation - "iiifsearchable.page.titleprefix": "Document: ", + "iiifsearchable.page.titleprefix": "દસ્તાવેજ: ", - // "iiifsearchable.page.doi": "Permanent Link: ", - // TODO New key - Add a translation - "iiifsearchable.page.doi": "Permanent Link: ", + "iiifsearchable.page.doi": "કાયમી લિંક: ", - // "iiifsearchable.page.issue": "Issue: ", - // TODO New key - Add a translation - "iiifsearchable.page.issue": "Issue: ", + "iiifsearchable.page.issue": "મુદ્દો: ", - // "iiifsearchable.page.description": "Description: ", - // TODO New key - Add a translation - "iiifsearchable.page.description": "Description: ", + "iiifsearchable.page.description": "વર્ણન: ", - // "iiifviewer.fullscreen.notice": "Use full screen for better viewing.", "iiifviewer.fullscreen.notice": "સારા જોવાના અનુભવ માટે સંપૂર્ણ સ્ક્રીનનો ઉપયોગ કરો.", - // "iiif.listelement.badge": "Image Media", "iiif.listelement.badge": "છબી મીડિયા", - // "iiif.page.titleprefix": "Image: ", - // TODO New key - Add a translation - "iiif.page.titleprefix": "Image: ", + "iiif.page.titleprefix": "છબી: ", - // "iiif.page.doi": "Permanent Link: ", - // TODO New key - Add a translation - "iiif.page.doi": "Permanent Link: ", + "iiif.page.doi": "કાયમી લિંક: ", - // "iiif.page.issue": "Issue: ", - // TODO New key - Add a translation - "iiif.page.issue": "Issue: ", + "iiif.page.issue": "મુદ્દો: ", - // "iiif.page.description": "Description: ", - // TODO New key - Add a translation - "iiif.page.description": "Description: ", + "iiif.page.description": "વર્ણન: ", - // "loading.bitstream": "Loading bitstream...", "loading.bitstream": "બિટસ્ટ્રીમ લોડ થઈ રહ્યું છે...", - // "loading.bitstreams": "Loading bitstreams...", "loading.bitstreams": "બિટસ્ટ્રીમ્સ લોડ થઈ રહ્યા છે...", - // "loading.browse-by": "Loading items...", "loading.browse-by": "આઇટમ્સ લોડ થઈ રહ્યા છે...", - // "loading.browse-by-page": "Loading page...", "loading.browse-by-page": "પૃષ્ઠ લોડ થઈ રહ્યું છે...", - // "loading.collection": "Loading collection...", "loading.collection": "સંગ્રહ લોડ થઈ રહ્યો છે...", - // "loading.collections": "Loading collections...", "loading.collections": "સંગ્રહો લોડ થઈ રહ્યા છે...", - // "loading.content-source": "Loading content source...", "loading.content-source": "સામગ્રી સ્ત્રોત લોડ થઈ રહ્યો છે...", - // "loading.community": "Loading community...", "loading.community": "સમુદાય લોડ થઈ રહ્યો છે...", - // "loading.default": "Loading...", "loading.default": "લોડ થઈ રહ્યું છે...", - // "loading.item": "Loading item...", "loading.item": "આઇટમ લોડ થઈ રહ્યું છે...", - // "loading.items": "Loading items...", "loading.items": "આઇટમ્સ લોડ થઈ રહ્યા છે...", - // "loading.mydspace-results": "Loading items...", "loading.mydspace-results": "આઇટમ્સ લોડ થઈ રહ્યા છે...", - // "loading.objects": "Loading...", "loading.objects": "લોડ થઈ રહ્યું છે...", - // "loading.recent-submissions": "Loading recent submissions...", "loading.recent-submissions": "તાજેતરના સબમિશન લોડ થઈ રહ્યા છે...", - // "loading.search-results": "Loading search results...", "loading.search-results": "શોધ પરિણામો લોડ થઈ રહ્યા છે...", - // "loading.sub-collections": "Loading sub-collections...", "loading.sub-collections": "ઉપ-સંગ્રહો લોડ થઈ રહ્યા છે...", - // "loading.sub-communities": "Loading sub-communities...", "loading.sub-communities": "ઉપ-સમુદાયો લોડ થઈ રહ્યા છે...", - // "loading.top-level-communities": "Loading top-level communities...", "loading.top-level-communities": "ટોપ-લેવલ સમુદાયો લોડ થઈ રહ્યા છે...", - // "login.form.email": "Email address", "login.form.email": "ઇમેઇલ સરનામું", - // "login.form.forgot-password": "Have you forgotten your password?", "login.form.forgot-password": "શું તમે તમારો પાસવર્ડ ભૂલી ગયા છો?", - // "login.form.header": "Please log in to DSpace", "login.form.header": "કૃપા કરીને DSpace માં લોગિન કરો", - // "login.form.new-user": "New user? Click here to register.", "login.form.new-user": "નવો વપરાશકર્તા? નોંધણી માટે અહીં ક્લિક કરો.", - // "login.form.oidc": "Log in with OIDC", "login.form.oidc": "OIDC સાથે લોગિન કરો", - // "login.form.orcid": "Log in with ORCID", "login.form.orcid": "ORCID સાથે લોગિન કરો", - // "login.form.password": "Password", "login.form.password": "પાસવર્ડ", - // "login.form.saml": "Log in with SAML", "login.form.saml": "SAML સાથે લોગિન કરો", - // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Shibboleth સાથે લોગિન કરો", - // "login.form.submit": "Log in", "login.form.submit": "લોગિન કરો", - // "login.title": "Login", "login.title": "લોગિન", - // "login.breadcrumbs": "Login", "login.breadcrumbs": "લોગિન", - // "logout.form.header": "Log out from DSpace", "logout.form.header": "DSpace માંથી લોગ આઉટ કરો", - // "logout.form.submit": "Log out", "logout.form.submit": "લોગ આઉટ", - // "logout.title": "Logout", "logout.title": "લોગ આઉટ", - // "menu.header.nav.description": "Admin navigation bar", "menu.header.nav.description": "એડમિન નેવિગેશન બાર", - // "menu.header.admin": "Management", "menu.header.admin": "મેનેજમેન્ટ", - // "menu.header.image.logo": "Repository logo", "menu.header.image.logo": "રિપોઝિટરી લોગો", - // "menu.header.admin.description": "Management menu", "menu.header.admin.description": "મેનેજમેન્ટ મેનુ", - // "menu.section.access_control": "Access Control", "menu.section.access_control": "ઍક્સેસ કંટ્રોલ", - // "menu.section.access_control_authorizations": "Authorizations", "menu.section.access_control_authorizations": "અધિકૃતતાઓ", - // "menu.section.access_control_bulk": "Bulk Access Management", "menu.section.access_control_bulk": "બલ્ક ઍક્સેસ મેનેજમેન્ટ", - // "menu.section.access_control_groups": "Groups", "menu.section.access_control_groups": "ગ્રુપ્સ", - // "menu.section.access_control_people": "People", "menu.section.access_control_people": "લોકો", - // "menu.section.reports": "Reports", "menu.section.reports": "અહેવાલો", - // "menu.section.reports.collections": "Filtered Collections", "menu.section.reports.collections": "ફિલ્ટર કરેલ સંગ્રહો", - // "menu.section.reports.queries": "Metadata Query", "menu.section.reports.queries": "મેટાડેટા ક્વેરી", - // "menu.section.admin_search": "Admin Search", "menu.section.admin_search": "એડમિન શોધ", - // "menu.section.browse_community": "This Community", "menu.section.browse_community": "આ સમુદાય", - // "menu.section.browse_community_by_author": "By Author", "menu.section.browse_community_by_author": "લેખક દ્વારા", - // "menu.section.browse_community_by_issue_date": "By Issue Date", "menu.section.browse_community_by_issue_date": "પ્રશ્ન તારીખ દ્વારા", - // "menu.section.browse_community_by_title": "By Title", "menu.section.browse_community_by_title": "શીર્ષક દ્વારા", - // "menu.section.browse_global": "All of DSpace", "menu.section.browse_global": "DSpace ના બધા", - // "menu.section.browse_global_by_author": "By Author", "menu.section.browse_global_by_author": "લેખક દ્વારા", - // "menu.section.browse_global_by_dateissued": "By Issue Date", "menu.section.browse_global_by_dateissued": "પ્રશ્ન તારીખ દ્વારા", - // "menu.section.browse_global_by_subject": "By Subject", "menu.section.browse_global_by_subject": "વિષય દ્વારા", - // "menu.section.browse_global_by_srsc": "By Subject Category", "menu.section.browse_global_by_srsc": "વિષય શ્રેણી દ્વારા", - // "menu.section.browse_global_by_nsi": "By Norwegian Science Index", "menu.section.browse_global_by_nsi": "નોર્વેજીયન સાયન્સ ઇન્ડેક્સ દ્વારા", - // "menu.section.browse_global_by_title": "By Title", "menu.section.browse_global_by_title": "શીર્ષક દ્વારા", - // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "સમુદાયો અને સંગ્રહો", - // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", "menu.section.browse_global_geospatial_map": "ભૌગોલિક સ્થાન દ્વારા (નકશો)", - // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "કંટ્રોલ પેનલ", - // "menu.section.curation_task": "Curation Task", "menu.section.curation_task": "ક્યુરેશન ટાસ્ક", - // "menu.section.edit": "Edit", "menu.section.edit": "સંપાદિત કરો", - // "menu.section.edit_collection": "Collection", "menu.section.edit_collection": "સંગ્રહ", - // "menu.section.edit_community": "Community", "menu.section.edit_community": "સમુદાય", - // "menu.section.edit_item": "Item", "menu.section.edit_item": "આઇટમ", - // "menu.section.export": "Export", "menu.section.export": "નિકાસ", - // "menu.section.export_collection": "Collection", "menu.section.export_collection": "સંગ્રહ", - // "menu.section.export_community": "Community", "menu.section.export_community": "સમુદાય", - // "menu.section.export_item": "Item", "menu.section.export_item": "આઇટમ", - // "menu.section.export_metadata": "Metadata", "menu.section.export_metadata": "મેટાડેટા", - // "menu.section.export_batch": "Batch Export (ZIP)", "menu.section.export_batch": "બેચ નિકાસ (ZIP)", - // "menu.section.icon.access_control": "Access Control menu section", "menu.section.icon.access_control": "ઍક્સેસ કંટ્રોલ મેનુ વિભાગ", - // "menu.section.icon.reports": "Reports menu section", "menu.section.icon.reports": "અહેવાલો મેનુ વિભાગ", - // "menu.section.icon.admin_search": "Admin search menu section", "menu.section.icon.admin_search": "એડમિન શોધ મેનુ વિભાગ", - // "menu.section.icon.control_panel": "Control Panel menu section", "menu.section.icon.control_panel": "કંટ્રોલ પેનલ મેનુ વિભાગ", - // "menu.section.icon.curation_tasks": "Curation Task menu section", "menu.section.icon.curation_tasks": "ક્યુરેશન ટાસ્ક મેનુ વિભાગ", - // "menu.section.icon.edit": "Edit menu section", "menu.section.icon.edit": "સંપાદિત કરો મેનુ વિભાગ", - // "menu.section.icon.export": "Export menu section", "menu.section.icon.export": "નિકાસ મેનુ વિભાગ", - // "menu.section.icon.find": "Find menu section", "menu.section.icon.find": "મેનુ વિભાગ શોધો", - // "menu.section.icon.health": "Health check menu section", "menu.section.icon.health": "હેલ્થ ચેક મેનુ વિભાગ", - // "menu.section.icon.import": "Import menu section", "menu.section.icon.import": "આયાત મેનુ વિભાગ", - // "menu.section.icon.new": "New menu section", "menu.section.icon.new": "નવું મેનુ વિભાગ", - // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "સાઇડબાર પિન કરો", - // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "સાઇડબાર અનપિન કરો", - // "menu.section.icon.notifications": "Notifications menu section", "menu.section.icon.notifications": "સૂચનાઓ મેનુ વિભાગ", - // "menu.section.import": "Import", "menu.section.import": "આયાત", - // "menu.section.import_batch": "Batch Import (ZIP)", "menu.section.import_batch": "બેચ આયાત (ZIP)", - // "menu.section.import_metadata": "Metadata", "menu.section.import_metadata": "મેટાડેટા", - // "menu.section.new": "New", "menu.section.new": "નવું", - // "menu.section.new_collection": "Collection", "menu.section.new_collection": "સંગ્રહ", - // "menu.section.new_community": "Community", "menu.section.new_community": "સમુદાય", - // "menu.section.new_item": "Item", "menu.section.new_item": "આઇટમ", - // "menu.section.new_item_version": "Item Version", "menu.section.new_item_version": "આઇટમ આવૃત્તિ", - // "menu.section.new_process": "Process", "menu.section.new_process": "પ્રક્રિયા", - // "menu.section.notifications": "Notifications", "menu.section.notifications": "સૂચનાઓ", - // "menu.section.quality-assurance": "Quality Assurance", "menu.section.quality-assurance": "ગુણવત્તા ખાતરી", - // "menu.section.notifications_publication-claim": "Publication Claim", "menu.section.notifications_publication-claim": "પ્રકાશન દાવો", - // "menu.section.pin": "Pin sidebar", "menu.section.pin": "સાઇડબાર પિન કરો", - // "menu.section.unpin": "Unpin sidebar", "menu.section.unpin": "સાઇડબાર અનપિન કરો", - // "menu.section.processes": "Processes", "menu.section.processes": "પ્રક્રિયાઓ", - // "menu.section.health": "Health", "menu.section.health": "હેલ્થ", - // "menu.section.registries": "Registries", "menu.section.registries": "રજિસ્ટ્રીઓ", - // "menu.section.registries_format": "Format", "menu.section.registries_format": "ફોર્મેટ", - // "menu.section.registries_metadata": "Metadata", "menu.section.registries_metadata": "મેટાડેટા", - // "menu.section.statistics": "Statistics", "menu.section.statistics": "આંકડા", - // "menu.section.statistics_task": "Statistics Task", "menu.section.statistics_task": "આંકડા કાર્ય", - // "menu.section.toggle.access_control": "Toggle Access Control section", "menu.section.toggle.access_control": "ઍક્સેસ કંટ્રોલ વિભાગ ટૉગલ કરો", - // "menu.section.toggle.reports": "Toggle Reports section", "menu.section.toggle.reports": "અહેવાલો વિભાગ ટૉગલ કરો", - // "menu.section.toggle.control_panel": "Toggle Control Panel section", "menu.section.toggle.control_panel": "કંટ્રોલ પેનલ વિભાગ ટૉગલ કરો", - // "menu.section.toggle.curation_task": "Toggle Curation Task section", "menu.section.toggle.curation_task": "ક્યુરેશન ટાસ્ક વિભાગ ટૉગલ કરો", - // "menu.section.toggle.edit": "Toggle Edit section", "menu.section.toggle.edit": "સંપાદન વિભાગ ટૉગલ કરો", - // "menu.section.toggle.export": "Toggle Export section", "menu.section.toggle.export": "નિકાસ વિભાગ ટૉગલ કરો", - // "menu.section.toggle.find": "Toggle Find section", "menu.section.toggle.find": "વિભાગ શોધો ટૉગલ કરો", - // "menu.section.toggle.import": "Toggle Import section", "menu.section.toggle.import": "આયાત વિભાગ ટૉગલ કરો", - // "menu.section.toggle.new": "Toggle New section", "menu.section.toggle.new": "નવો વિભાગ ટૉગલ કરો", - // "menu.section.toggle.registries": "Toggle Registries section", "menu.section.toggle.registries": "રજિસ્ટ્રીઓ વિભાગ ટૉગલ કરો", - // "menu.section.toggle.statistics_task": "Toggle Statistics Task section", "menu.section.toggle.statistics_task": "આંકડા કાર્ય વિભાગ ટૉગલ કરો", - // "menu.section.workflow": "Administer Workflow", "menu.section.workflow": "વર્કફ્લો મેનેજ કરો", - // "metadata-export-search.tooltip": "Export search results as CSV", "metadata-export-search.tooltip": "શોધ પરિણામો CSV તરીકે નિકાસ કરો", - // "metadata-export-search.submit.success": "The export was started successfully", "metadata-export-search.submit.success": "નિકાસ સફળતાપૂર્વક શરૂ થયું", - // "metadata-export-search.submit.error": "Starting the export has failed", "metadata-export-search.submit.error": "નિકાસ શરૂ કરવામાં નિષ્ફળ", - // "mydspace.breadcrumbs": "MyDSpace", "mydspace.breadcrumbs": "MyDSpace", - // "mydspace.description": "", "mydspace.description": "", - // "mydspace.messages.controller-help": "Select this option to send a message to item's submitter.", "mydspace.messages.controller-help": "આ વિકલ્પ પસંદ કરો આઇટમના સબમિટરને સંદેશ મોકલવા માટે.", - // "mydspace.messages.description-placeholder": "Insert your message here...", "mydspace.messages.description-placeholder": "તમારો સંદેશ અહીં દાખલ કરો...", - // "mydspace.messages.hide-msg": "Hide message", "mydspace.messages.hide-msg": "સંદેશ છુપાવો", - // "mydspace.messages.mark-as-read": "Mark as read", "mydspace.messages.mark-as-read": "વાંચેલ તરીકે ચિહ્નિત કરો", - // "mydspace.messages.mark-as-unread": "Mark as unread", "mydspace.messages.mark-as-unread": "ન વાંચેલ તરીકે ચિહ્નિત કરો", - // "mydspace.messages.no-content": "No content.", "mydspace.messages.no-content": "કોઈ સામગ્રી નથી.", - // "mydspace.messages.no-messages": "No messages yet.", "mydspace.messages.no-messages": "હજી સુધી કોઈ સંદેશ નથી.", - // "mydspace.messages.send-btn": "Send", "mydspace.messages.send-btn": "મોકલો", - // "mydspace.messages.show-msg": "Show message", "mydspace.messages.show-msg": "સંદેશ બતાવો", - // "mydspace.messages.subject-placeholder": "Subject...", "mydspace.messages.subject-placeholder": "વિષય...", - // "mydspace.messages.submitter-help": "Select this option to send a message to controller.", "mydspace.messages.submitter-help": "આ વિકલ્પ પસંદ કરો નિયંત્રકને સંદેશ મોકલવા માટે.", - // "mydspace.messages.title": "Messages", "mydspace.messages.title": "સંદેશો", - // "mydspace.messages.to": "To", "mydspace.messages.to": "પ્રતિ", - // "mydspace.new-submission": "New submission", "mydspace.new-submission": "નવું સબમિશન", - // "mydspace.new-submission-external": "Import metadata from external source", "mydspace.new-submission-external": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", - // "mydspace.new-submission-external-short": "Import metadata", "mydspace.new-submission-external-short": "મેટાડેટા આયાત કરો", - // "mydspace.results.head": "Your submissions", "mydspace.results.head": "તમારા સબમિશન", - // "mydspace.results.no-abstract": "No Abstract", "mydspace.results.no-abstract": "કોઈ અભ્યાસ નથી", - // "mydspace.results.no-authors": "No Authors", "mydspace.results.no-authors": "કોઈ લેખકો નથી", - // "mydspace.results.no-collections": "No Collections", "mydspace.results.no-collections": "કોઈ સંગ્રહો નથી", - // "mydspace.results.no-date": "No Date", "mydspace.results.no-date": "કોઈ તારીખ નથી", - // "mydspace.results.no-files": "No Files", "mydspace.results.no-files": "કોઈ ફાઇલો નથી", - // "mydspace.results.no-results": "There were no items to show", "mydspace.results.no-results": "બતાવા માટે કોઈ આઇટમ નથી", - // "mydspace.results.no-title": "No title", "mydspace.results.no-title": "કોઈ શીર્ષક નથી", - // "mydspace.results.no-uri": "No URI", "mydspace.results.no-uri": "કોઈ URI નથી", - // "mydspace.search-form.placeholder": "Search in MyDSpace...", "mydspace.search-form.placeholder": "MyDSpace માં શોધો...", - // "mydspace.show.workflow": "Workflow tasks", "mydspace.show.workflow": "વર્કફ્લો કાર્ય", - // "mydspace.show.workspace": "Your submissions", "mydspace.show.workspace": "તમારા સબમિશન", - // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "સુપરવિઝ્ડ આઇટમ્સ", - // "mydspace.status": "My DSpace status:", - // TODO New key - Add a translation - "mydspace.status": "My DSpace status:", - - // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "આર્કાઇવ્ડ", - // "mydspace.status.mydspaceValidation": "Validation", "mydspace.status.mydspaceValidation": "માન્યતા", - // "mydspace.status.mydspaceWaitingController": "Waiting for reviewer", "mydspace.status.mydspaceWaitingController": "સમીક્ષકની રાહ જોવી", - // "mydspace.status.mydspaceWorkflow": "Workflow", "mydspace.status.mydspaceWorkflow": "વર્કફ્લો", - // "mydspace.status.mydspaceWorkspace": "Workspace", "mydspace.status.mydspaceWorkspace": "વર્કસ્પેસ", - // "mydspace.title": "MyDSpace", "mydspace.title": "MyDSpace", - // "mydspace.upload.upload-failed": "Error creating new workspace. Please verify the content uploaded before retry.", "mydspace.upload.upload-failed": "નવું વર્કસ્પેસ બનાવવામાં ભૂલ. કૃપા કરીને ફરી પ્રયાસ કરતા પહેલા અપલોડ કરેલ સામગ્રીને ચકાસો.", - // "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.", "mydspace.upload.upload-failed-manyentries": "અપ્રક્રિય ફાઇલ. ઘણી એન્ટ્રીઓ શોધવામાં આવી છે પરંતુ ફાઇલ માટે માત્ર એક જ મંજૂરી છે.", - // "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.", "mydspace.upload.upload-failed-moreonefile": "અપ્રક્રિય વિનંતી. ફક્ત એક જ ફાઇલ મંજૂર છે.", - // "mydspace.upload.upload-multiple-successful": "{{qty}} new workspace items created.", "mydspace.upload.upload-multiple-successful": "{{qty}} નવા વર્કસ્પેસ આઇટમ્સ બનાવવામાં આવ્યા.", - // "mydspace.view-btn": "View", "mydspace.view-btn": "જુઓ", - // "nav.expandable-navbar-section-suffix": "(submenu)", "nav.expandable-navbar-section-suffix": "(ઉપમેનુ)", - // "notification.suggestion": "We found {{count}} publications in the {{source}} that seems to be related to your profile.
", "notification.suggestion": "અમે {{source}} માં {{count}} પ્રકાશનો શોધ્યા છે જે તમારા પ્રોફાઇલ સાથે સંબંધિત લાગે છે.
", - // "notification.suggestion.review": "review the suggestions", "notification.suggestion.review": "સૂચનોની સમીક્ષા કરો", - // "notification.suggestion.please": "Please", "notification.suggestion.please": "કૃપા કરીને", - // "nav.browse.header": "All of DSpace", "nav.browse.header": "DSpace ના બધા", - // "nav.community-browse.header": "By Community", "nav.community-browse.header": "સમુદાય દ્વારા", - // "nav.context-help-toggle": "Toggle context help", "nav.context-help-toggle": "સંદર્ભ મદદ ટૉગલ કરો", - // "nav.language": "Language switch", "nav.language": "ભાષા સ્વિચ", - // "nav.login": "Log In", "nav.login": "લોગિન", - // "nav.user-profile-menu-and-logout": "User profile menu and log out", "nav.user-profile-menu-and-logout": "વપરાશકર્તા પ્રોફાઇલ મેનુ અને લોગ આઉટ", - // "nav.logout": "Log Out", "nav.logout": "લોગ આઉટ", - // "nav.main.description": "Main navigation bar", "nav.main.description": "મુખ્ય નેવિગેશન બાર", - // "nav.mydspace": "MyDSpace", "nav.mydspace": "MyDSpace", - // "nav.profile": "Profile", "nav.profile": "પ્રોફાઇલ", - // "nav.search": "Search", "nav.search": "શોધો", - // "nav.search.button": "Submit search", "nav.search.button": "શોધ સબમિટ કરો", - // "nav.statistics.header": "Statistics", "nav.statistics.header": "આંકડા", - // "nav.stop-impersonating": "Stop impersonating EPerson", "nav.stop-impersonating": "EPerson નું અનુસરણ બંધ કરો", - // "nav.subscriptions": "Subscriptions", "nav.subscriptions": "સબ્સ્ક્રિપ્શન્સ", - // "nav.toggle": "Toggle navigation", "nav.toggle": "નેવિગેશન ટૉગલ કરો", - // "nav.user.description": "User profile bar", "nav.user.description": "વપરાશકર્તા પ્રોફાઇલ બાર", - // "listelement.badge.dso-type": "Item type:", - // TODO New key - Add a translation - "listelement.badge.dso-type": "Item type:", - - // "none.listelement.badge": "Item", "none.listelement.badge": "આઇટમ", - // "publication-claim.title": "Publication claim", "publication-claim.title": "પ્રકાશન દાવો", - // "publication-claim.source.description": "Below you can see all the sources.", "publication-claim.source.description": "નીચે તમે બધા સ્ત્રોતો જોઈ શકો છો.", - // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "ગુણવત્તા ખાતરી", - // "quality-assurance.topics.description": "Below you can see all the topics received from the subscriptions to {{source}}.", "quality-assurance.topics.description": "નીચે તમે {{source}} માટેની સબ્સ્ક્રિપ્શન્સમાંથી પ્રાપ્ત થયેલા બધા વિષયો જોઈ શકો છો.", - // "quality-assurance.source.description": "Below you can see all the notification's sources.", "quality-assurance.source.description": "નીચે તમે સૂચના ના સ્ત્રોતો જોઈ શકો છો.", - // "quality-assurance.topics": "Current Topics", "quality-assurance.topics": "વર્તમાન વિષયો", - // "quality-assurance.source": "Current Sources", "quality-assurance.source": "વર્તમાન સ્ત્રોતો", - // "quality-assurance.table.topic": "Topic", "quality-assurance.table.topic": "વિષય", - // "quality-assurance.table.source": "Source", "quality-assurance.table.source": "સ્ત્રોત", - // "quality-assurance.table.last-event": "Last Event", "quality-assurance.table.last-event": "છેલ્લી ઘટના", - // "quality-assurance.table.actions": "Actions", "quality-assurance.table.actions": "ક્રિયાઓ", - // "quality-assurance.source-list.button.detail": "Show topics for {{param}}", "quality-assurance.source-list.button.detail": "{{param}} માટેના વિષયો બતાવો", - // "quality-assurance.topics-list.button.detail": "Show suggestions for {{param}}", "quality-assurance.topics-list.button.detail": "{{param}} માટેની સૂચનો બતાવો", - // "quality-assurance.noTopics": "No topics found.", "quality-assurance.noTopics": "કોઈ વિષયો મળ્યા નથી.", - // "quality-assurance.noSource": "No sources found.", "quality-assurance.noSource": "કોઈ સ્ત્રોતો મળ્યા નથી.", - // "notifications.events.title": "Quality Assurance Suggestions", "notifications.events.title": "ગુણવત્તા ખાતરી સૂચનો", - // "quality-assurance.topic.error.service.retrieve": "An error occurred while loading the Quality Assurance topics", "quality-assurance.topic.error.service.retrieve": "ગુણવત્તા ખાતરી વિષયો લોડ કરતી વખતે ભૂલ આવી", - // "quality-assurance.source.error.service.retrieve": "An error occurred while loading the Quality Assurance source", "quality-assurance.source.error.service.retrieve": "ગુણવત્તા ખાતરી સ્ત્રોત લોડ કરતી વખતે ભૂલ આવી", - // "quality-assurance.loading": "Loading ...", "quality-assurance.loading": "લોડ થઈ રહ્યું છે ...", - // "quality-assurance.events.topic": "Topic:", - // TODO New key - Add a translation - "quality-assurance.events.topic": "Topic:", + "quality-assurance.events.topic": "વિષય:", - // "quality-assurance.noEvents": "No suggestions found.", "quality-assurance.noEvents": "કોઈ સૂચનો મળ્યા નથી.", - // "quality-assurance.event.table.trust": "Trust", "quality-assurance.event.table.trust": "વિશ્વાસ", - // "quality-assurance.event.table.publication": "Publication", "quality-assurance.event.table.publication": "પ્રકાશન", - // "quality-assurance.event.table.details": "Details", "quality-assurance.event.table.details": "વિગતો", - // "quality-assurance.event.table.project-details": "Project details", "quality-assurance.event.table.project-details": "પ્રોજેક્ટ વિગતો", - // "quality-assurance.event.table.reasons": "Reasons", "quality-assurance.event.table.reasons": "કારણો", - // "quality-assurance.event.table.actions": "Actions", "quality-assurance.event.table.actions": "ક્રિયાઓ", - // "quality-assurance.event.action.accept": "Accept suggestion", "quality-assurance.event.action.accept": "સૂચન સ્વીકારો", - // "quality-assurance.event.action.ignore": "Ignore suggestion", "quality-assurance.event.action.ignore": "સૂચન અવગણો", - // "quality-assurance.event.action.undo": "Delete", "quality-assurance.event.action.undo": "કાઢી નાખો", - // "quality-assurance.event.action.reject": "Reject suggestion", "quality-assurance.event.action.reject": "સૂચન નકારી કાઢો", - // "quality-assurance.event.action.import": "Import project and accept suggestion", "quality-assurance.event.action.import": "પ્રોજેક્ટ આયાત કરો અને સૂચન સ્વીકારો", - // "quality-assurance.event.table.pidtype": "PID Type:", - // TODO New key - Add a translation - "quality-assurance.event.table.pidtype": "PID Type:", + "quality-assurance.event.table.pidtype": "PID પ્રકાર:", - // "quality-assurance.event.table.pidvalue": "PID Value:", - // TODO New key - Add a translation - "quality-assurance.event.table.pidvalue": "PID Value:", + "quality-assurance.event.table.pidvalue": "PID મૂલ્ય:", - // "quality-assurance.event.table.subjectValue": "Subject Value:", - // TODO New key - Add a translation - "quality-assurance.event.table.subjectValue": "Subject Value:", + "quality-assurance.event.table.subjectValue": "વિષય મૂલ્ય:", - // "quality-assurance.event.table.abstract": "Abstract:", - // TODO New key - Add a translation - "quality-assurance.event.table.abstract": "Abstract:", + "quality-assurance.event.table.abstract": "અભ્યાસ:", - // "quality-assurance.event.table.suggestedProject": "OpenAIRE Suggested Project data", "quality-assurance.event.table.suggestedProject": "OpenAIRE સૂચિત પ્રોજેક્ટ ડેટા", - // "quality-assurance.event.table.project": "Project title:", - // TODO New key - Add a translation - "quality-assurance.event.table.project": "Project title:", + "quality-assurance.event.table.project": "પ્રોજેક્ટ શીર્ષક:", - // "quality-assurance.event.table.acronym": "Acronym:", - // TODO New key - Add a translation - "quality-assurance.event.table.acronym": "Acronym:", + "quality-assurance.event.table.acronym": "અન્ય નામ:", - // "quality-assurance.event.table.code": "Code:", - // TODO New key - Add a translation - "quality-assurance.event.table.code": "Code:", + "quality-assurance.event.table.code": "કોડ:", - // "quality-assurance.event.table.funder": "Funder:", - // TODO New key - Add a translation - "quality-assurance.event.table.funder": "Funder:", + "quality-assurance.event.table.funder": "ફંડર:", - // "quality-assurance.event.table.fundingProgram": "Funding program:", - // TODO New key - Add a translation - "quality-assurance.event.table.fundingProgram": "Funding program:", + "quality-assurance.event.table.fundingProgram": "ફંડિંગ પ્રોગ્રામ:", - // "quality-assurance.event.table.jurisdiction": "Jurisdiction:", - // TODO New key - Add a translation - "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + "quality-assurance.event.table.jurisdiction": "ક્ષેત્રાધિકાર:", - // "quality-assurance.events.back": "Back to topics", "quality-assurance.events.back": "વિષયો પર પાછા જાઓ", - // "quality-assurance.events.back-to-sources": "Back to sources", "quality-assurance.events.back-to-sources": "સ્ત્રોતો પર પાછા જાઓ", - // "quality-assurance.event.table.less": "Show less", "quality-assurance.event.table.less": "ઓછું બતાવો", - // "quality-assurance.event.table.more": "Show more", "quality-assurance.event.table.more": "વધુ બતાવો", - // "quality-assurance.event.project.found": "Bound to the local record:", - // TODO New key - Add a translation - "quality-assurance.event.project.found": "Bound to the local record:", + "quality-assurance.event.project.found": "સ્થાનિક રેકોર્ડ સાથે જોડાયેલ:", - // "quality-assurance.event.project.notFound": "No local record found", "quality-assurance.event.project.notFound": "કોઈ સ્થાનિક રેકોર્ડ મળ્યો નથી", - // "quality-assurance.event.sure": "Are you sure?", "quality-assurance.event.sure": "શું તમે ખાતરી કરો છો?", - // "quality-assurance.event.ignore.description": "This operation can't be undone. Ignore this suggestion?", "quality-assurance.event.ignore.description": "આ ક્રિયા પાછી ફરી શકશે નહીં. આ સૂચન અવગણો?", - // "quality-assurance.event.undo.description": "This operation can't be undone!", "quality-assurance.event.undo.description": "આ ક્રિયા પાછી ફરી શકશે નહીં!", - // "quality-assurance.event.reject.description": "This operation can't be undone. Reject this suggestion?", "quality-assurance.event.reject.description": "આ ક્રિયા પાછી ફરી શકશે નહીં. આ સૂચન નકારી કાઢો?", - // "quality-assurance.event.accept.description": "No DSpace project selected. A new project will be created based on the suggestion data.", "quality-assurance.event.accept.description": "કોઈ DSpace પ્રોજેક્ટ પસંદ કરેલ નથી. સૂચન ડેટા પર આધારિત નવો પ્રોજેક્ટ બનાવવામાં આવશે.", - // "quality-assurance.event.action.cancel": "Cancel", "quality-assurance.event.action.cancel": "રદ કરો", - // "quality-assurance.event.action.saved": "Your decision has been saved successfully.", "quality-assurance.event.action.saved": "તમારો નિર્ણય સફળતાપૂર્વક સાચવવામાં આવ્યો છે.", - // "quality-assurance.event.action.error": "An error has occurred. Your decision has not been saved.", "quality-assurance.event.action.error": "ભૂલ આવી. તમારો નિર્ણય સાચવવામાં આવ્યો નથી.", - // "quality-assurance.event.modal.project.title": "Choose a project to bound", "quality-assurance.event.modal.project.title": "જોડવા માટે પ્રોજેક્ટ પસંદ કરો", - // "quality-assurance.event.modal.project.publication": "Publication:", - // TODO New key - Add a translation - "quality-assurance.event.modal.project.publication": "Publication:", + "quality-assurance.event.modal.project.publication": "પ્રકાશન:", - // "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", - // TODO New key - Add a translation - "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + "quality-assurance.event.modal.project.bountToLocal": "સ્થાનિક રેકોર્ડ સાથે જોડાયેલ:", - // "quality-assurance.event.modal.project.select": "Project search", "quality-assurance.event.modal.project.select": "પ્રોજેક્ટ શોધ", - // "quality-assurance.event.modal.project.search": "Search", "quality-assurance.event.modal.project.search": "શોધો", - // "quality-assurance.event.modal.project.clear": "Clear", "quality-assurance.event.modal.project.clear": "સાફ કરો", - // "quality-assurance.event.modal.project.cancel": "Cancel", "quality-assurance.event.modal.project.cancel": "રદ કરો", - // "quality-assurance.event.modal.project.bound": "Bound project", "quality-assurance.event.modal.project.bound": "જોડાયેલ પ્રોજેક્ટ", - // "quality-assurance.event.modal.project.remove": "Remove", "quality-assurance.event.modal.project.remove": "દૂર કરો", - // "quality-assurance.event.modal.project.placeholder": "Enter a project name", "quality-assurance.event.modal.project.placeholder": "પ્રોજેક્ટ નામ દાખલ કરો", - // "quality-assurance.event.modal.project.notFound": "No project found.", "quality-assurance.event.modal.project.notFound": "કોઈ પ્રોજેક્ટ મળ્યો નથી.", - // "quality-assurance.event.project.bounded": "The project has been linked successfully.", "quality-assurance.event.project.bounded": "પ્રોજેક્ટ સફળતાપૂર્વક જોડાયેલ છે.", - // "quality-assurance.event.project.removed": "The project has been successfully unlinked.", "quality-assurance.event.project.removed": "પ્રોજેક્ટ સફળતાપૂર્વક અનલિંક કરવામાં આવ્યો છે.", - // "quality-assurance.event.project.error": "An error has occurred. No operation performed.", "quality-assurance.event.project.error": "ભૂલ આવી. કોઈ ક્રિયા કરવામાં આવી નથી.", - // "quality-assurance.event.reason": "Reason", "quality-assurance.event.reason": "કારણ", - // "orgunit.listelement.badge": "Organizational Unit", "orgunit.listelement.badge": "સંસ્થાકીય એકમ", - // "orgunit.listelement.no-title": "Untitled", "orgunit.listelement.no-title": "શીર્ષક વિના", - // "orgunit.page.city": "City", "orgunit.page.city": "શહેર", - // "orgunit.page.country": "Country", "orgunit.page.country": "દેશ", - // "orgunit.page.dateestablished": "Date established", "orgunit.page.dateestablished": "સ્થાપના તારીખ", - // "orgunit.page.description": "Description", "orgunit.page.description": "વર્ણન", - // "orgunit.page.edit": "Edit this item", "orgunit.page.edit": "આ આઇટમ સંપાદિત કરો", - // "orgunit.page.id": "ID", "orgunit.page.id": "ID", - // "orgunit.page.options": "Options", "orgunit.page.options": "વિકલ્પો", - // "orgunit.page.titleprefix": "Organizational Unit: ", - // TODO New key - Add a translation - "orgunit.page.titleprefix": "Organizational Unit: ", + "orgunit.page.titleprefix": "સંસ્થાકીય એકમ: ", - // "orgunit.page.ror": "ROR Identifier", "orgunit.page.ror": "ROR Identifier", - // "orgunit.search.results.head": "Organizational Unit Search Results", "orgunit.search.results.head": "સંસ્થાકીય એકમ શોધ પરિણામો", - // "pagination.options.description": "Pagination options", "pagination.options.description": "પેજિનેશન વિકલ્પો", - // "pagination.results-per-page": "Results Per Page", "pagination.results-per-page": "પ્રતિ પૃષ્ઠ પરિણામો", - // "pagination.showing.detail": "{{ range }} of {{ total }}", "pagination.showing.detail": "{{ range }} માંથી {{ total }}", - // "pagination.showing.label": "Now showing ", "pagination.showing.label": "હાલમાં બતાવી રહ્યા છે ", - // "pagination.sort-direction": "Sort Options", "pagination.sort-direction": "સૉર્ટ વિકલ્પો", - // "person.listelement.badge": "Person", "person.listelement.badge": "વ્યક્તિ", - // "person.listelement.no-title": "No name found", "person.listelement.no-title": "કોઈ નામ મળ્યું નથી", - // "person.page.birthdate": "Birth Date", "person.page.birthdate": "જન્મ તારીખ", - // "person.page.edit": "Edit this item", "person.page.edit": "આ આઇટમ સંપાદિત કરો", - // "person.page.email": "Email Address", "person.page.email": "ઇમેઇલ સરનામું", - // "person.page.firstname": "First Name", "person.page.firstname": "પ્રથમ નામ", - // "person.page.jobtitle": "Job Title", "person.page.jobtitle": "નોકરીનું શીર્ષક", - // "person.page.lastname": "Last Name", "person.page.lastname": "છેલ્લું નામ", - // "person.page.name": "Name", "person.page.name": "નામ", - // "person.page.link.full": "Show all metadata", "person.page.link.full": "બધા મેટાડેટા બતાવો", - // "person.page.options": "Options", "person.page.options": "વિકલ્પો", - // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", - // "person.page.staffid": "Staff ID", "person.page.staffid": "સ્ટાફ ID", - // "person.page.titleprefix": "Person: ", - // TODO New key - Add a translation - "person.page.titleprefix": "Person: ", + "person.page.titleprefix": "વ્યક્તિ: ", - // "person.search.results.head": "Person Search Results", "person.search.results.head": "વ્યક્તિ શોધ પરિણામો", - // "person-relationships.search.results.head": "Person Search Results", "person-relationships.search.results.head": "વ્યક્તિ શોધ પરિણામો", - // "person.search.title": "Person Search", "person.search.title": "વ્યક્તિ શોધ", - // "process.new.select-parameters": "Parameters", "process.new.select-parameters": "પરિમાણો", - // "process.new.select-parameter": "Select parameter", "process.new.select-parameter": "પરિમાણ પસંદ કરો", - // "process.new.add-parameter": "Add a parameter...", "process.new.add-parameter": "પરિમાણ ઉમેરો...", - // "process.new.delete-parameter": "Delete parameter", "process.new.delete-parameter": "પરિમાણ કાઢી નાખો", - // "process.new.parameter.label": "Parameter value", "process.new.parameter.label": "પરિમાણ મૂલ્ય", - // "process.new.cancel": "Cancel", "process.new.cancel": "રદ કરો", - // "process.new.submit": "Save", "process.new.submit": "સાચવો", - // "process.new.select-script": "Script", "process.new.select-script": "સ્ક્રિપ્ટ", - // "process.new.select-script.placeholder": "Choose a script...", "process.new.select-script.placeholder": "સ્ક્રિપ્ટ પસંદ કરો...", - // "process.new.select-script.required": "Script is required", "process.new.select-script.required": "સ્ક્રિપ્ટ જરૂરી છે", - // "process.new.parameter.file.upload-button": "Select file...", "process.new.parameter.file.upload-button": "ફાઇલ પસંદ કરો...", - // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "કૃપા કરીને ફાઇલ પસંદ કરો", - // "process.new.parameter.integer.required": "Parameter value is required", "process.new.parameter.integer.required": "પરિમાણ મૂલ્ય જરૂરી છે", - // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "પરિમાણ મૂલ્ય જરૂરી છે", - // "process.new.parameter.type.value": "value", "process.new.parameter.type.value": "મૂલ્ય", - // "process.new.parameter.type.file": "file", "process.new.parameter.type.file": "ફાઇલ", - // "process.new.parameter.required.missing": "The following parameters are required but still missing:", - // TODO New key - Add a translation - "process.new.parameter.required.missing": "The following parameters are required but still missing:", + "process.new.parameter.required.missing": "નીચેના પરિમાણો જરૂરી છે પરંતુ હજી સુધી ગૂમ છે:", - // "process.new.notification.success.title": "Success", "process.new.notification.success.title": "સફળતા", - // "process.new.notification.success.content": "The process was successfully created", "process.new.notification.success.content": "પ્રક્રિયા સફળતાપૂર્વક બનાવવામાં આવી", - // "process.new.notification.error.title": "Error", "process.new.notification.error.title": "ભૂલ", - // "process.new.notification.error.content": "An error occurred while creating this process", "process.new.notification.error.content": "આ પ્રક્રિયા બનાવતી વખતે ભૂલ આવી", - // "process.new.notification.error.max-upload.content": "The file exceeds the maximum upload size", "process.new.notification.error.max-upload.content": "ફાઇલ મહત્તમ અપલોડ કદથી વધુ છે", - // "process.new.header": "Create a new process", "process.new.header": "નવી પ્રક્રિયા બનાવો", - // "process.new.title": "Create a new process", "process.new.title": "નવી પ્રક્રિયા બનાવો", - // "process.new.breadcrumbs": "Create a new process", "process.new.breadcrumbs": "નવી પ્રક્રિયા બનાવો", - // "process.detail.arguments": "Arguments", "process.detail.arguments": "દલીલો", - // "process.detail.arguments.empty": "This process doesn't contain any arguments", "process.detail.arguments.empty": "આ પ્રક્રિયામાં કોઈ દલીલો નથી", - // "process.detail.back": "Back", "process.detail.back": "પાછા", - // "process.detail.output": "Process Output", "process.detail.output": "પ્રક્રિયા આઉટપુટ", - // "process.detail.logs.button": "Retrieve process output", "process.detail.logs.button": "પ્રક્રિયા આઉટપુટ મેળવો", - // "process.detail.logs.loading": "Retrieving", "process.detail.logs.loading": "મેળવી રહ્યા છે", - // "process.detail.logs.none": "This process has no output", "process.detail.logs.none": "આ પ્રક્રિયામાં કોઈ આઉટપુટ નથી", - // "process.detail.output-files": "Output Files", "process.detail.output-files": "આઉટપુટ ફાઇલો", - // "process.detail.output-files.empty": "This process doesn't contain any output files", "process.detail.output-files.empty": "આ પ્રક્રિયામાં કોઈ આઉટપુટ ફાઇલો નથી", - // "process.detail.script": "Script", "process.detail.script": "સ્ક્રિપ્ટ", - // "process.detail.title": "Process: {{ id }} - {{ name }}", - // TODO New key - Add a translation - "process.detail.title": "Process: {{ id }} - {{ name }}", + "process.detail.title": "પ્રક્રિયા: {{ id }} - {{ name }}", - // "process.detail.start-time": "Start time", "process.detail.start-time": "પ્રારંભ સમય", - // "process.detail.end-time": "Finish time", "process.detail.end-time": "સમાપ્તિ સમય", - // "process.detail.status": "Status", "process.detail.status": "સ્થિતિ", - // "process.detail.create": "Create similar process", "process.detail.create": "સમાન પ્રક્રિયા બનાવો", - // "process.detail.actions": "Actions", "process.detail.actions": "ક્રિયાઓ", - // "process.detail.delete.button": "Delete process", "process.detail.delete.button": "પ્રક્રિયા કાઢી નાખો", - // "process.detail.delete.header": "Delete process", "process.detail.delete.header": "પ્રક્રિયા કાઢી નાખો", - // "process.detail.delete.body": "Are you sure you want to delete the current process?", "process.detail.delete.body": "શું તમે વર્તમાન પ્રક્રિયા કાઢી નાખવા માંગો છો?", - // "process.detail.delete.cancel": "Cancel", "process.detail.delete.cancel": "રદ કરો", - // "process.detail.delete.confirm": "Delete process", "process.detail.delete.confirm": "પ્રક્રિયા કાઢી નાખો", - // "process.detail.delete.success": "The process was successfully deleted.", "process.detail.delete.success": "પ્રક્રિયા સફળતાપૂર્વક કાઢી નાખવામાં આવી.", - // "process.detail.delete.error": "Something went wrong when deleting the process", "process.detail.delete.error": "પ્રક્રિયા કાઢી નાખતી વખતે કંઈક ખોટું થયું", - // "process.detail.refreshing": "Auto-refreshing…", "process.detail.refreshing": "ઓટો-રિફ્રેશ થઈ રહ્યું છે…", - // "process.overview.table.completed.info": "Finish time (UTC)", "process.overview.table.completed.info": "સમાપ્તિ સમય (UTC)", - // "process.overview.table.completed.title": "Succeeded processes", "process.overview.table.completed.title": "સફળ પ્રક્રિયાઓ", - // "process.overview.table.empty": "No matching processes found.", "process.overview.table.empty": "કોઈ મેળ ખાતી પ્રક્રિયાઓ મળી નથી.", - // "process.overview.table.failed.info": "Finish time (UTC)", "process.overview.table.failed.info": "સમાપ્તિ સમય (UTC)", - // "process.overview.table.failed.title": "Failed processes", "process.overview.table.failed.title": "નિષ્ફળ પ્રક્રિયાઓ", - // "process.overview.table.finish": "Finish time (UTC)", "process.overview.table.finish": "સમાપ્તિ સમય (UTC)", - // "process.overview.table.id": "Process ID", "process.overview.table.id": "પ્રક્રિયા ID", - // "process.overview.table.name": "Name", "process.overview.table.name": "નામ", - // "process.overview.table.running.info": "Start time (UTC)", "process.overview.table.running.info": "પ્રારંભ સમય (UTC)", - // "process.overview.table.running.title": "Running processes", "process.overview.table.running.title": "ચાલતી પ્રક્રિયાઓ", - // "process.overview.table.scheduled.info": "Creation time (UTC)", "process.overview.table.scheduled.info": "રચના સમય (UTC)", - // "process.overview.table.scheduled.title": "Scheduled processes", "process.overview.table.scheduled.title": "નિયત પ્રક્રિયાઓ", - // "process.overview.table.start": "Start time (UTC)", "process.overview.table.start": "પ્રારંભ સમય (UTC)", - // "process.overview.table.status": "Status", "process.overview.table.status": "સ્થિતિ", - // "process.overview.table.user": "User", "process.overview.table.user": "વપરાશકર્તા", - // "process.overview.title": "Processes Overview", "process.overview.title": "પ્રક્રિયાઓની ઝાંખી", - // "process.overview.breadcrumbs": "Processes Overview", "process.overview.breadcrumbs": "પ્રક્રિયાઓની ઝાંખી", - // "process.overview.new": "New", "process.overview.new": "નવું", - // "process.overview.table.actions": "Actions", "process.overview.table.actions": "ક્રિયાઓ", - // "process.overview.delete": "Delete {{count}} processes", "process.overview.delete": "{{count}} પ્રક્રિયાઓ કાઢી નાખો", - // "process.overview.delete-process": "Delete process", "process.overview.delete-process": "પ્રક્રિયા કાઢી નાખો", - // "process.overview.delete.clear": "Clear delete selection", "process.overview.delete.clear": "કાઢી નાખવાની પસંદગી સાફ કરો", - // "process.overview.delete.processing": "{{count}} process(es) are being deleted. Please wait for the deletion to fully complete. Note that this can take a while.", "process.overview.delete.processing": "{{count}} પ્રક્રિયા(ઓ) કાઢી નાખવામાં આવી રહી છે. કૃપા કરીને સંપૂર્ણ રીતે કાઢી નાખવા માટે રાહ જુઓ. નોંધો કે આમાં થોડો સમય લાગી શકે છે.", - // "process.overview.delete.body": "Are you sure you want to delete {{count}} process(es)?", "process.overview.delete.body": "શું તમે ખરેખર {{count}} પ્રક્રિયા(ઓ) કાઢી નાખવા માંગો છો?", - // "process.overview.delete.header": "Delete processes", "process.overview.delete.header": "પ્રક્રિયાઓ કાઢી નાખો", - // "process.overview.unknown.user": "Unknown", "process.overview.unknown.user": "અજ્ઞાત", - // "process.bulk.delete.error.head": "Error on deleteing process", "process.bulk.delete.error.head": "પ્રક્રિયા કાઢી નાખવામાં ભૂલ", - // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ", "process.bulk.delete.error.body": "પ્રક્રિયા ID {{processId}} સાથેની પ્રક્રિયા કાઢી શકાઈ નથી. બાકી રહેલી પ્રક્રિયાઓ કાઢી નાખવાનું ચાલુ રહેશે.", - // "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted", "process.bulk.delete.success": "{{count}} પ્રક્રિયા(ઓ) સફળતાપૂર્વક કાઢી નાખવામાં આવી છે", - // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "પ્રોફાઇલ અપડેટ કરો", - // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - // TODO New key - Add a translation - "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - - // "profile.card.accessibility.header": "Accessibility", - // TODO New key - Add a translation - "profile.card.accessibility.header": "Accessibility", - - // "profile.card.accessibility.link": "Go to Accessibility Settings Page", - // TODO New key - Add a translation - "profile.card.accessibility.link": "Go to Accessibility Settings Page", - - // "profile.card.identify": "Identify", "profile.card.identify": "ઓળખો", - // "profile.card.security": "Security", "profile.card.security": "સુરક્ષા", - // "profile.form.submit": "Save", "profile.form.submit": "સાચવો", - // "profile.groups.head": "Authorization groups you belong to", "profile.groups.head": "તમે જે અધિકૃતતા જૂથો સાથે જોડાયેલા છો", - // "profile.special.groups.head": "Authorization special groups you belong to", "profile.special.groups.head": "તમે જે અધિકૃતતા વિશેષ જૂથો સાથે જોડાયેલા છો", - // "profile.metadata.form.error.firstname.required": "First Name is required", "profile.metadata.form.error.firstname.required": "પ્રથમ નામ જરૂરી છે", - // "profile.metadata.form.error.lastname.required": "Last Name is required", "profile.metadata.form.error.lastname.required": "છેલ્લું નામ જરૂરી છે", - // "profile.metadata.form.label.email": "Email Address", "profile.metadata.form.label.email": "ઇમેઇલ સરનામું", - // "profile.metadata.form.label.firstname": "First Name", "profile.metadata.form.label.firstname": "પ્રથમ નામ", - // "profile.metadata.form.label.language": "Language", "profile.metadata.form.label.language": "ભાષા", - // "profile.metadata.form.label.lastname": "Last Name", "profile.metadata.form.label.lastname": "છેલ્લું નામ", - // "profile.metadata.form.label.phone": "Contact Telephone", "profile.metadata.form.label.phone": "સંપર્ક ટેલિફોન", - // "profile.metadata.form.notifications.success.content": "Your changes to the profile were saved.", "profile.metadata.form.notifications.success.content": "તમારા પ્રોફાઇલ માટેના ફેરફારો સાચવવામાં આવ્યા હતા.", - // "profile.metadata.form.notifications.success.title": "Profile saved", "profile.metadata.form.notifications.success.title": "પ્રોફાઇલ સાચવી", - // "profile.notifications.warning.no-changes.content": "No changes were made to the Profile.", "profile.notifications.warning.no-changes.content": "પ્રોફાઇલમાં કોઈ ફેરફારો કરવામાં આવ્યા નથી.", - // "profile.notifications.warning.no-changes.title": "No changes", "profile.notifications.warning.no-changes.title": "કોઈ ફેરફારો નથી", - // "profile.security.form.error.matching-passwords": "The passwords do not match.", "profile.security.form.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", - // "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.", "profile.security.form.info": "વૈકલ્પિક રીતે, તમે નીચેના બોક્સમાં નવો પાસવર્ડ દાખલ કરી શકો છો અને તેને ફરીથી تایپ કરીને પુષ્ટિ કરી શકો છો.", - // "profile.security.form.label.password": "Password", "profile.security.form.label.password": "પાસવર્ડ", - // "profile.security.form.label.passwordrepeat": "Retype to confirm", "profile.security.form.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી تایપ કરો", - // "profile.security.form.label.current-password": "Current password", "profile.security.form.label.current-password": "વર્તમાન પાસવર્ડ", - // "profile.security.form.notifications.success.content": "Your changes to the password were saved.", "profile.security.form.notifications.success.content": "તમારા પાસવર્ડ માટેના ફેરફારો સાચવવામાં આવ્યા હતા.", - // "profile.security.form.notifications.success.title": "Password saved", "profile.security.form.notifications.success.title": "પાસવર્ડ સાચવી", - // "profile.security.form.notifications.error.title": "Error changing passwords", "profile.security.form.notifications.error.title": "પાસવર્ડ બદલવામાં ભૂલ", - // "profile.security.form.notifications.error.change-failed": "An error occurred while trying to change the password. Please check if the current password is correct.", "profile.security.form.notifications.error.change-failed": "પાસવર્ડ બદલવાનો પ્રયાસ કરતી વખતે ભૂલ આવી. કૃપા કરીને તપાસો કે વર્તમાન પાસવર્ડ સાચો છે કે નહીં.", - // "profile.security.form.notifications.error.not-same": "The provided passwords are not the same.", "profile.security.form.notifications.error.not-same": "પ્રદાન કરેલા પાસવર્ડો એકસરખા નથી.", - // "profile.security.form.notifications.error.general": "Please fill required fields of security form.", "profile.security.form.notifications.error.general": "કૃપા કરીને સુરક્ષા ફોર્મના જરૂરી ક્ષેત્રો ભરો.", - // "profile.title": "Update Profile", "profile.title": "પ્રોફાઇલ અપડેટ કરો", - // "profile.card.researcher": "Researcher Profile", "profile.card.researcher": "શોધક પ્રોફાઇલ", - // "project.listelement.badge": "Research Project", "project.listelement.badge": "શોધ પ્રોજેક્ટ", - // "project.page.contributor": "Contributors", "project.page.contributor": "યોગદાનકર્તાઓ", - // "project.page.description": "Description", "project.page.description": "વર્ણન", - // "project.page.edit": "Edit this item", "project.page.edit": "આ આઇટમ સંપાદિત કરો", - // "project.page.expectedcompletion": "Expected Completion", "project.page.expectedcompletion": "અપેક્ષિત પૂર્ણતા", - // "project.page.funder": "Funders", "project.page.funder": "ફંડર્સ", - // "project.page.id": "ID", "project.page.id": "ID", - // "project.page.keyword": "Keywords", "project.page.keyword": "કીવર્ડ્સ", - // "project.page.options": "Options", "project.page.options": "વિકલ્પો", - // "project.page.status": "Status", "project.page.status": "સ્થિતિ", - // "project.page.titleprefix": "Research Project: ", - // TODO New key - Add a translation - "project.page.titleprefix": "Research Project: ", + "project.page.titleprefix": "શોધ પ્રોજેક્ટ: ", - // "project.search.results.head": "Project Search Results", "project.search.results.head": "પ્રોજેક્ટ શોધ પરિણામો", - // "project-relationships.search.results.head": "Project Search Results", "project-relationships.search.results.head": "પ્રોજેક્ટ શોધ પરિણામો", - // "publication.listelement.badge": "Publication", "publication.listelement.badge": "પ્રકાશન", - // "publication.page.description": "Description", "publication.page.description": "વર્ણન", - // "publication.page.edit": "Edit this item", "publication.page.edit": "આ આઇટમ સંપાદિત કરો", - // "publication.page.journal-issn": "Journal ISSN", "publication.page.journal-issn": "જર્નલ ISSN", - // "publication.page.journal-title": "Journal Title", "publication.page.journal-title": "જર્નલ શીર્ષક", - // "publication.page.publisher": "Publisher", "publication.page.publisher": "પ્રકાશક", - // "publication.page.options": "Options", "publication.page.options": "વિકલ્પો", - // "publication.page.titleprefix": "Publication: ", - // TODO New key - Add a translation - "publication.page.titleprefix": "Publication: ", + "publication.page.titleprefix": "પ્રકાશન: ", - // "publication.page.volume-title": "Volume Title", "publication.page.volume-title": "વોલ્યુમ શીર્ષક", - // "publication.search.results.head": "Publication Search Results", "publication.search.results.head": "પ્રકાશન શોધ પરિણામો", - // "publication-relationships.search.results.head": "Publication Search Results", "publication-relationships.search.results.head": "પ્રકાશન શોધ પરિણામો", - // "publication.search.title": "Publication Search", "publication.search.title": "પ્રકાશન શોધ", - // "media-viewer.next": "Next", "media-viewer.next": "આગલું", - // "media-viewer.previous": "Previous", "media-viewer.previous": "પાછલું", - // "media-viewer.playlist": "Playlist", "media-viewer.playlist": "પ્લેલિસ્ટ", - // "suggestion.loading": "Loading ...", "suggestion.loading": "લોડ થઈ રહ્યું છે ...", - // "suggestion.title": "Publication Claim", "suggestion.title": "પ્રકાશન દાવો", - // "suggestion.title.breadcrumbs": "Publication Claim", "suggestion.title.breadcrumbs": "પ્રકાશન દાવો", - // "suggestion.targets.description": "Below you can see all the suggestions ", "suggestion.targets.description": "નીચે તમે બધા સૂચનો જોઈ શકો છો", - // "suggestion.targets": "Current Suggestions", "suggestion.targets": "વર્તમાન સૂચનો", - // "suggestion.table.name": "Researcher Name", "suggestion.table.name": "શોધકનું નામ", - // "suggestion.table.actions": "Actions", "suggestion.table.actions": "ક્રિયાઓ", - // "suggestion.button.review": "Review {{ total }} suggestion(s)", "suggestion.button.review": "{{ total }} સૂચન(ઓ)ની સમીક્ષા કરો", - // "suggestion.button.review.title": "Review {{ total }} suggestion(s) for ", "suggestion.button.review.title": "{{ total }} સૂચન(ઓ) માટેની સમીક્ષા કરો", - // "suggestion.noTargets": "No target found.", "suggestion.noTargets": "કોઈ લક્ષ્ય મળ્યું નથી.", - // "suggestion.target.error.service.retrieve": "An error occurred while loading the Suggestion targets", "suggestion.target.error.service.retrieve": "સૂચન લક્ષ્યો લોડ કરતી વખતે ભૂલ આવી", - // "suggestion.evidence.type": "Type", "suggestion.evidence.type": "પ્રકાર", - // "suggestion.evidence.score": "Score", "suggestion.evidence.score": "સ્કોર", - // "suggestion.evidence.notes": "Notes", "suggestion.evidence.notes": "નોંધો", - // "suggestion.approveAndImport": "Approve & import", "suggestion.approveAndImport": "મંજૂર કરો અને આયાત કરો", - // "suggestion.approveAndImport.success": "The suggestion has been imported successfully. View.", "suggestion.approveAndImport.success": "સૂચન સફળતાપૂર્વક આયાત કરવામાં આવ્યું છે. જુઓ.", - // "suggestion.approveAndImport.bulk": "Approve & import Selected", "suggestion.approveAndImport.bulk": "પસંદ કરેલને મંજૂર કરો અને આયાત કરો", - // "suggestion.approveAndImport.bulk.success": "{{ count }} suggestions have been imported successfully ", "suggestion.approveAndImport.bulk.success": "{{ count }} સૂચનો સફળતાપૂર્વક આયાત કરવામાં આવ્યા છે", - // "suggestion.approveAndImport.bulk.error": "{{ count }} suggestions haven't been imported due to unexpected server errors", "suggestion.approveAndImport.bulk.error": "અનપેક્ષિત સર્વર ભૂલોને કારણે {{ count }} સૂચનો આયાત કરવામાં આવ્યા નથી", - // "suggestion.ignoreSuggestion": "Ignore Suggestion", "suggestion.ignoreSuggestion": "સૂચન અવગણો", - // "suggestion.ignoreSuggestion.success": "The suggestion has been discarded", "suggestion.ignoreSuggestion.success": "સૂચન રદ કરવામાં આવ્યું છે", - // "suggestion.ignoreSuggestion.bulk": "Ignore Suggestion Selected", "suggestion.ignoreSuggestion.bulk": "પસંદ કરેલ સૂચન અવગણો", - // "suggestion.ignoreSuggestion.bulk.success": "{{ count }} suggestions have been discarded ", "suggestion.ignoreSuggestion.bulk.success": "{{ count }} સૂચનો રદ કરવામાં આવ્યા છે", - // "suggestion.ignoreSuggestion.bulk.error": "{{ count }} suggestions haven't been discarded due to unexpected server errors", "suggestion.ignoreSuggestion.bulk.error": "અનપેક્ષિત સર્વર ભૂલોને કારણે {{ count }} સૂચનો રદ કરવામાં આવ્યા નથી", - // "suggestion.seeEvidence": "See evidence", "suggestion.seeEvidence": "પુરાવા જુઓ", - // "suggestion.hideEvidence": "Hide evidence", "suggestion.hideEvidence": "પુરાવા છુપાવો", - // "suggestion.suggestionFor": "Suggestions for", "suggestion.suggestionFor": "માટેના સૂચનો", - // "suggestion.suggestionFor.breadcrumb": "Suggestions for {{ name }}", "suggestion.suggestionFor.breadcrumb": "{{ name }} માટેના સૂચનો", - // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "OpenAIRE ગ્રાફ", - // "suggestion.source.openalex": "OpenAlex", "suggestion.source.openalex": "OpenAlex", - // "suggestion.from.source": "from the ", "suggestion.from.source": "થી", - // "suggestion.count.missing": "You have no publication claims left", "suggestion.count.missing": "તમારા પાસે કોઈ પ્રકાશન દાવા બાકી નથી", - // "suggestion.totalScore": "Total Score", "suggestion.totalScore": "કુલ સ્કોર", - // "suggestion.type.openaire": "OpenAIRE", "suggestion.type.openaire": "OpenAIRE", - // "register-email.title": "New user registration", "register-email.title": "નવા વપરાશકર્તા નોંધણી", - // "register-page.create-profile.header": "Create Profile", "register-page.create-profile.header": "પ્રોફાઇલ બનાવો", - // "register-page.create-profile.identification.header": "Identify", "register-page.create-profile.identification.header": "ઓળખો", - // "register-page.create-profile.identification.email": "Email Address", "register-page.create-profile.identification.email": "ઇમેઇલ સરનામું", - // "register-page.create-profile.identification.first-name": "First Name *", "register-page.create-profile.identification.first-name": "પ્રથમ નામ *", - // "register-page.create-profile.identification.first-name.error": "Please fill in a First Name", "register-page.create-profile.identification.first-name.error": "કૃપા કરીને પ્રથમ નામ ભરો", - // "register-page.create-profile.identification.last-name": "Last Name *", "register-page.create-profile.identification.last-name": "છેલ્લું નામ *", - // "register-page.create-profile.identification.last-name.error": "Please fill in a Last Name", "register-page.create-profile.identification.last-name.error": "કૃપા કરીને છેલ્લું નામ ભરો", - // "register-page.create-profile.identification.contact": "Contact Telephone", "register-page.create-profile.identification.contact": "સંપર્ક ટેલિફોન", - // "register-page.create-profile.identification.language": "Language", "register-page.create-profile.identification.language": "ભાષા", - // "register-page.create-profile.security.header": "Security", "register-page.create-profile.security.header": "સુરક્ષા", - // "register-page.create-profile.security.info": "Please enter a password in the box below, and confirm it by typing it again into the second box.", "register-page.create-profile.security.info": "કૃપા કરીને નીચેના બોક્સમાં પાસવર્ડ દાખલ કરો અને તેને ફરીથી تایપ કરીને પુષ્ટિ કરો.", - // "register-page.create-profile.security.label.password": "Password *", "register-page.create-profile.security.label.password": "પાસવર્ડ *", - // "register-page.create-profile.security.label.passwordrepeat": "Retype to confirm *", "register-page.create-profile.security.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી تایપ કરો *", - // "register-page.create-profile.security.error.empty-password": "Please enter a password in the box below.", "register-page.create-profile.security.error.empty-password": "કૃપા કરીને નીચેના બોક્સમાં પાસવર્ડ દાખલ કરો.", - // "register-page.create-profile.security.error.matching-passwords": "The passwords do not match.", "register-page.create-profile.security.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.", - // "register-page.create-profile.submit": "Complete Registration", "register-page.create-profile.submit": "નોંધણી પૂર્ણ કરો", - // "register-page.create-profile.submit.error.content": "Something went wrong while registering a new user.", "register-page.create-profile.submit.error.content": "નવા વપરાશકર્તા નોંધણી કરતી વખતે કંઈક ખોટું થયું.", - // "register-page.create-profile.submit.error.head": "Registration failed", "register-page.create-profile.submit.error.head": "નોંધણી નિષ્ફળ", - // "register-page.create-profile.submit.success.content": "The registration was successful. You have been logged in as the created user.", "register-page.create-profile.submit.success.content": "નોંધણી સફળ રહી. તમે બનાવેલ વપરાશકર્તા તરીકે લોગિન થયા છો.", - // "register-page.create-profile.submit.success.head": "Registration completed", "register-page.create-profile.submit.success.head": "નોંધણી પૂર્ણ", - // "register-page.registration.header": "New user registration", "register-page.registration.header": "નવા વપરાશકર્તા નોંધણી", - // "register-page.registration.info": "Register an account to subscribe to collections for email updates, and submit new items to DSpace.", "register-page.registration.info": "ઇમેઇલ અપડેટ્સ માટે સંગ્રહો માટે સબ્સ્ક્રાઇબ કરવા અને DSpace માં નવા આઇટમ્સ સબમિટ કરવા માટે એકાઉન્ટ નોંધણી કરો.", - // "register-page.registration.email": "Email Address *", "register-page.registration.email": "ઇમેઇલ સરનામું *", - // "register-page.registration.email.error.required": "Please fill in an email address", "register-page.registration.email.error.required": "કૃપા કરીને ઇમેઇલ સરનામું ભરો", - // "register-page.registration.email.error.not-email-form": "Please fill in a valid email address.", "register-page.registration.email.error.not-email-form": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું ભરો.", - // "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", - // TODO New key - Add a translation - "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + "register-page.registration.email.error.not-valid-domain": "અનુમતિ આપેલ ડોમેઇન સાથે ઇમેઇલનો ઉપયોગ કરો: {{ domains }}", - // "register-page.registration.email.hint": "This address will be verified and used as your login name.", "register-page.registration.email.hint": "આ સરનામું ચકાસવામાં આવશે અને તમારા લોગિન નામ તરીકે ઉપયોગમાં લેવામાં આવશે.", - // "register-page.registration.submit": "Register", "register-page.registration.submit": "નોંધણી કરો", - // "register-page.registration.success.head": "Verification email sent", "register-page.registration.success.head": "ચકાસણી ઇમેઇલ મોકલવામાં આવ્યું", - // "register-page.registration.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "register-page.registration.success.content": "{{ email }} પર એક ઇમેઇલ મોકલવામાં આવ્યું છે જેમાં વિશેષ URL અને વધુ સૂચનાઓ છે.", - // "register-page.registration.error.head": "Error when trying to register email", "register-page.registration.error.head": "ઇમેઇલ નોંધણી કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - // "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", - // TODO New key - Add a translation - "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + "register-page.registration.error.content": "નીચેના ઇમેઇલ સરનામું નોંધણી કરતી વખતે ભૂલ આવી: {{ email }}", - // "register-page.registration.error.recaptcha": "Error when trying to authenticate with recaptcha", "register-page.registration.error.recaptcha": "recaptcha સાથે પ્રમાણિકતા કરવાનો પ્રયાસ કરતી વખતે ભૂલ", - // "register-page.registration.google-recaptcha.must-accept-cookies": "In order to register you must accept the Registration and Password recovery (Google reCaptcha) cookies.", "register-page.registration.google-recaptcha.must-accept-cookies": "નોંધણી કરવા માટે તમારે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ (Google reCaptcha) કૂકીઝ સ્વીકારવી પડશે.", - // "register-page.registration.error.maildomain": "This email address is not on the list of domains who can register. Allowed domains are {{ domains }}", "register-page.registration.error.maildomain": "આ ઇમેઇલ સરનામું તે ડોમેઇનની યાદીમાં નથી જે નોંધણી કરી શકે છે. અનુમતિ આપેલ ડોમેઇન છે {{ domains }}", - // "register-page.registration.google-recaptcha.open-cookie-settings": "Open cookie settings", "register-page.registration.google-recaptcha.open-cookie-settings": "કૂકી સેટિંગ્સ ખોલો", - // "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", - // "register-page.registration.google-recaptcha.notification.message.error": "An error occurred during reCaptcha verification", "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha ચકાસણી દરમિયાન ભૂલ આવી", - // "register-page.registration.google-recaptcha.notification.message.expired": "Verification expired. Please verify again.", "register-page.registration.google-recaptcha.notification.message.expired": "ચકાસણી સમાપ્ત થઈ. કૃપા કરીને ફરીથી ચકાસો.", - // "register-page.registration.info.maildomain": "Accounts can be registered for mail addresses of the domains", "register-page.registration.info.maildomain": "એકાઉન્ટ્સને ડોમેઇનના મેલ સરનામા માટે નોંધણી કરી શકાય છે", - // "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items", "relationships.add.error.relationship-type.content": "સંબંધ પ્રકાર {{ type }} માટે યોગ્ય મેળ નથી મળ્યો બે આઇટમ્સ વચ્ચે", - // "relationships.add.error.server.content": "The server returned an error", "relationships.add.error.server.content": "સર્વરે ભૂલ પરત કરી", - // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "સંબંધ ઉમેરવામાં અસમર્થ", - // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - - // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - - // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", + "relationships.isAuthorOf": "લેખકો", - // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", + "relationships.isAuthorOf.Person": "લેખકો (વ્યક્તિઓ)", - // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", + "relationships.isAuthorOf.OrgUnit": "લેખકો (સંસ્થાકીય એકમો)", - // "relationships.Publication.isContributorOfPublication.Person": "Contributor", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.Person": "Contributor", + "relationships.isIssueOf": "જર્નલ ઇશ્યુઝ", - // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + "relationships.isIssueOf.JournalIssue": "જર્નલ ઇશ્યુ", - // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + "relationships.isJournalIssueOf": "જર્નલ ઇશ્યુ", - // "relationships.Person.isProjectOfPerson.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Person.isProjectOfPerson.Project": "Research Projects", + "relationships.isJournalOf": "જર્નલ્સ", - // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + "relationships.isJournalVolumeOf": "જર્નલ વોલ્યુમ", - // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + "relationships.isOrgUnitOf": "સંસ્થાકીય એકમો", - // "relationships.Project.isPublicationOfProject.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Project.isPublicationOfProject.Publication": "Publications", + "relationships.isPersonOf": "લેખકો", - // "relationships.Project.isPersonOfProject.Person": "Authors", - // TODO New key - Add a translation - "relationships.Project.isPersonOfProject.Person": "Authors", + "relationships.isProjectOf": "શોધ પ્રોજેક્ટ્સ", - // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + "relationships.isPublicationOf": "પ્રકાશનો", - // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - // TODO New key - Add a translation - "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + "relationships.isPublicationOfJournalIssue": "લેખો", - // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + "relationships.isSingleJournalOf": "જર્નલ", - // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - // TODO New key - Add a translation - "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + "relationships.isSingleVolumeOf": "જર્નલ વોલ્યુમ", - // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + "relationships.isVolumeOf": "જર્નલ વોલ્યુમ", - // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + "relationships.isVolumeOf.JournalVolume": "જર્નલ વોલ્યુમ", - // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + "relationships.isContributorOf": "યોગદાનકર્તાઓ", - // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + "relationships.isContributorOf.OrgUnit": "યોગદાનકર્તા (સંસ્થાકીય એકમ)", - // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + "relationships.isContributorOf.Person": "યોગદાનકર્તા", - // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", - // TODO New key - Add a translation - "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + "relationships.isFundingAgencyOf.OrgUnit": "ફંડર", - // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - // TODO New key - Add a translation - "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - - // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - - // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", - - // "repository.image.logo": "Repository logo", "repository.image.logo": "રિપોઝિટરી લોગો", - // "repository.title": "DSpace Repository", "repository.title": "DSpace રિપોઝિટરી", - // "repository.title.prefix": "DSpace Repository :: ", - // TODO New key - Add a translation - "repository.title.prefix": "DSpace Repository :: ", + "repository.title.prefix": "DSpace રિપોઝિટરી :: ", - // "resource-policies.add.button": "Add", "resource-policies.add.button": "ઉમેરો", - // "resource-policies.add.for.": "Add a new policy", "resource-policies.add.for.": "નવી નીતિ ઉમેરો", - // "resource-policies.add.for.bitstream": "Add a new Bitstream policy", "resource-policies.add.for.bitstream": "નવી બિટસ્ટ્રીમ નીતિ ઉમેરો", - // "resource-policies.add.for.bundle": "Add a new Bundle policy", "resource-policies.add.for.bundle": "નવી બંડલ નીતિ ઉમેરો", - // "resource-policies.add.for.item": "Add a new Item policy", "resource-policies.add.for.item": "નવી આઇટમ નીતિ ઉમેરો", - // "resource-policies.add.for.community": "Add a new Community policy", "resource-policies.add.for.community": "નવી સમુદાય નીતિ ઉમેરો", - // "resource-policies.add.for.collection": "Add a new Collection policy", "resource-policies.add.for.collection": "નવી સંગ્રહ નીતિ ઉમેરો", - // "resource-policies.create.page.heading": "Create new resource policy for ", "resource-policies.create.page.heading": "માટે નવી સંસાધન નીતિ બનાવો", - // "resource-policies.create.page.failure.content": "An error occurred while creating the resource policy.", "resource-policies.create.page.failure.content": "સંસાધન નીતિ બનાવતી વખતે ભૂલ આવી.", - // "resource-policies.create.page.success.content": "Operation successful", "resource-policies.create.page.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", - // "resource-policies.create.page.title": "Create new resource policy", "resource-policies.create.page.title": "નવી સંસાધન નીતિ બનાવો", - // "resource-policies.delete.btn": "Delete selected", "resource-policies.delete.btn": "પસંદ કરેલને કાઢી નાખો", - // "resource-policies.delete.btn.title": "Delete selected resource policies", "resource-policies.delete.btn.title": "પસંદ કરેલ સંસાધન નીતિઓ કાઢી નાખો", - // "resource-policies.delete.failure.content": "An error occurred while deleting selected resource policies.", "resource-policies.delete.failure.content": "પસંદ કરેલ સંસાધન નીતિઓ કાઢી નાખતી વખતે ભૂલ આવી.", - // "resource-policies.delete.success.content": "Operation successful", "resource-policies.delete.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", - // "resource-policies.edit.page.heading": "Edit resource policy ", "resource-policies.edit.page.heading": "સંસાધન નીતિ સંપાદિત કરો", - // "resource-policies.edit.page.failure.content": "An error occurred while editing the resource policy.", "resource-policies.edit.page.failure.content": "સંસાધન નીતિ સંપાદિત કરતી વખતે ભૂલ આવી.", - // "resource-policies.edit.page.target-failure.content": "An error occurred while editing the target (ePerson or group) of the resource policy.", "resource-policies.edit.page.target-failure.content": "સંસાધન નીતિના લક્ષ્ય (ePerson અથવા જૂથ) સંપાદિત કરતી વખતે ભૂલ આવી.", - // "resource-policies.edit.page.other-failure.content": "An error occurred while editing the resource policy. The target (ePerson or group) has been successfully updated.", "resource-policies.edit.page.other-failure.content": "સંસાધન નીતિ સંપાદિત કરતી વખતે ભૂલ આવી. લક્ષ્ય (ePerson અથવા જૂથ) સફળતાપૂર્વક અપડેટ થયું છે.", - // "resource-policies.edit.page.success.content": "Operation successful", "resource-policies.edit.page.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ", - // "resource-policies.edit.page.title": "Edit resource policy", "resource-policies.edit.page.title": "સંસાધન નીતિ સંપાદિત કરો", - // "resource-policies.form.action-type.label": "Select the action type", "resource-policies.form.action-type.label": "ક્રિયા પ્રકાર પસંદ કરો", - // "resource-policies.form.action-type.required": "You must select the resource policy action.", "resource-policies.form.action-type.required": "તમારે સંસાધન નીતિ ક્રિયા પસંદ કરવી પડશે.", - // "resource-policies.form.eperson-group-list.label": "The eperson or group that will be granted the permission", "resource-policies.form.eperson-group-list.label": "ePerson અથવા જૂથ જેને પરવાનગી આપવામાં આવશે", - // "resource-policies.form.eperson-group-list.select.btn": "Select", "resource-policies.form.eperson-group-list.select.btn": "પસંદ કરો", - // "resource-policies.form.eperson-group-list.tab.eperson": "Search for a ePerson", "resource-policies.form.eperson-group-list.tab.eperson": "ePerson માટે શોધો", - // "resource-policies.form.eperson-group-list.tab.group": "Search for a group", "resource-policies.form.eperson-group-list.tab.group": "જૂથ માટે શોધો", - // "resource-policies.form.eperson-group-list.table.headers.action": "Action", "resource-policies.form.eperson-group-list.table.headers.action": "ક્રિયા", - // "resource-policies.form.eperson-group-list.table.headers.id": "ID", "resource-policies.form.eperson-group-list.table.headers.id": "ID", - // "resource-policies.form.eperson-group-list.table.headers.name": "Name", "resource-policies.form.eperson-group-list.table.headers.name": "નામ", - // "resource-policies.form.eperson-group-list.modal.header": "Cannot change type", "resource-policies.form.eperson-group-list.modal.header": "પ્રકાર બદલી શકાતો નથી", - // "resource-policies.form.eperson-group-list.modal.text1.toGroup": "It is not possible to replace an ePerson with a group.", "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePerson ને જૂથ સાથે બદલી શકાતું નથી.", - // "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "It is not possible to replace a group with an ePerson.", "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "જૂથને ePerson સાથે બદલી શકાતું નથી.", - // "resource-policies.form.eperson-group-list.modal.text2": "Delete the current resource policy and create a new one with the desired type.", "resource-policies.form.eperson-group-list.modal.text2": "વાંછિત પ્રકાર સાથે નવી નીતિ બનાવવા માટે વર્તમાન સંસાધન નીતિ કાઢી નાખો.", - // "resource-policies.form.eperson-group-list.modal.close": "Ok", "resource-policies.form.eperson-group-list.modal.close": "બરાબર", - // "resource-policies.form.date.end.label": "End Date", "resource-policies.form.date.end.label": "અંતિમ તારીખ", - // "resource-policies.form.date.start.label": "Start Date", "resource-policies.form.date.start.label": "પ્રારંભ તારીખ", - // "resource-policies.form.description.label": "Description", "resource-policies.form.description.label": "વર્ણન", - // "resource-policies.form.name.label": "Name", "resource-policies.form.name.label": "નામ", - // "resource-policies.form.name.hint": "Max 30 characters", "resource-policies.form.name.hint": "મહત્તમ 30 અક્ષરો", - // "resource-policies.form.policy-type.label": "Select the policy type", "resource-policies.form.policy-type.label": "નીતિનો પ્રકાર પસંદ કરો", - // "resource-policies.form.policy-type.required": "You must select the resource policy type.", "resource-policies.form.policy-type.required": "તમારે સંસાધન નીતિનો પ્રકાર પસંદ કરવો પડશે.", - // "resource-policies.table.headers.action": "Action", "resource-policies.table.headers.action": "ક્રિયા", - // "resource-policies.table.headers.date.end": "End Date", "resource-policies.table.headers.date.end": "અંતિમ તારીખ", - // "resource-policies.table.headers.date.start": "Start Date", "resource-policies.table.headers.date.start": "પ્રારંભ તારીખ", - // "resource-policies.table.headers.edit": "Edit", "resource-policies.table.headers.edit": "સંપાદિત કરો", - // "resource-policies.table.headers.edit.group": "Edit group", "resource-policies.table.headers.edit.group": "જૂથ સંપાદિત કરો", - // "resource-policies.table.headers.edit.policy": "Edit policy", "resource-policies.table.headers.edit.policy": "નીતિ સંપાદિત કરો", - // "resource-policies.table.headers.eperson": "EPerson", "resource-policies.table.headers.eperson": "ePerson", - // "resource-policies.table.headers.group": "Group", "resource-policies.table.headers.group": "જૂથ", - // "resource-policies.table.headers.select-all": "Select all", "resource-policies.table.headers.select-all": "બધા પસંદ કરો", - // "resource-policies.table.headers.deselect-all": "Deselect all", "resource-policies.table.headers.deselect-all": "બધા પસંદ ન કરો", - // "resource-policies.table.headers.select": "Select", "resource-policies.table.headers.select": "પસંદ કરો", - // "resource-policies.table.headers.deselect": "Deselect", "resource-policies.table.headers.deselect": "પસંદ ન કરો", - // "resource-policies.table.headers.id": "ID", "resource-policies.table.headers.id": "ID", - // "resource-policies.table.headers.name": "Name", "resource-policies.table.headers.name": "નામ", - // "resource-policies.table.headers.policyType": "type", "resource-policies.table.headers.policyType": "પ્રકાર", - // "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream", "resource-policies.table.headers.title.for.bitstream": "બિટસ્ટ્રીમ માટેની નીતિઓ", - // "resource-policies.table.headers.title.for.bundle": "Policies for Bundle", "resource-policies.table.headers.title.for.bundle": "બંડલ માટેની નીતિઓ", - // "resource-policies.table.headers.title.for.item": "Policies for Item", "resource-policies.table.headers.title.for.item": "આઇટમ માટેની નીતિઓ", - // "resource-policies.table.headers.title.for.community": "Policies for Community", "resource-policies.table.headers.title.for.community": "સમુદાય માટેની નીતિઓ", - // "resource-policies.table.headers.title.for.collection": "Policies for Collection", "resource-policies.table.headers.title.for.collection": "સંગ્રહ માટેની નીતિઓ", - // "root.skip-to-content": "Skip to main content", "root.skip-to-content": "મુખ્ય સામગ્રી પર જાઓ", - // "search.description": "", "search.description": "", - // "search.switch-configuration.title": "Show", "search.switch-configuration.title": "બતાવો", - // "search.title": "Search", "search.title": "શોધ", - // "search.breadcrumbs": "Search", "search.breadcrumbs": "શોધ", - // "search.search-form.placeholder": "Search the repository ...", "search.search-form.placeholder": "રિપોઝિટરીમાં શોધો ...", - // "search.filters.remove": "Remove filter of type {{ type }} with value {{ value }}", "search.filters.remove": "પ્રકાર {{ type }} સાથેનું મૂલ્ય {{ value }} દૂર કરો", - // "search.filters.applied.f.title": "Title", "search.filters.applied.f.title": "શીર્ષક", - // "search.filters.applied.f.author": "Author", "search.filters.applied.f.author": "લેખક", - // "search.filters.applied.f.dateIssued.max": "End date", "search.filters.applied.f.dateIssued.max": "અંતિમ તારીખ", - // "search.filters.applied.f.dateIssued.min": "Start date", "search.filters.applied.f.dateIssued.min": "પ્રારંભ તારીખ", - // "search.filters.applied.f.dateSubmitted": "Date submitted", "search.filters.applied.f.dateSubmitted": "સબમિટ તારીખ", - // "search.filters.applied.f.discoverable": "Non-discoverable", "search.filters.applied.f.discoverable": "નોન-ડિસ્કવરેબલ", - // "search.filters.applied.f.entityType": "Item Type", "search.filters.applied.f.entityType": "આઇટમ પ્રકાર", - // "search.filters.applied.f.has_content_in_original_bundle": "Has files", "search.filters.applied.f.has_content_in_original_bundle": "ફાઇલો છે", - // "search.filters.applied.f.original_bundle_filenames": "File name", "search.filters.applied.f.original_bundle_filenames": "ફાઇલ નામ", - // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "ફાઇલ વર્ણન", - // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", + "search.filters.applied.f.has_geospatial_metadata": "ભૌગોલિક સ્થાન છે", - // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "પ્રકાર", - // "search.filters.applied.f.namedresourcetype": "Status", "search.filters.applied.f.namedresourcetype": "સ્થિતિ", - // "search.filters.applied.f.subject": "Subject", "search.filters.applied.f.subject": "વિષય", - // "search.filters.applied.f.submitter": "Submitter", "search.filters.applied.f.submitter": "સબમિટર", - // "search.filters.applied.f.jobTitle": "Job Title", "search.filters.applied.f.jobTitle": "નોકરીનું શીર્ષક", - // "search.filters.applied.f.birthDate.max": "End birth date", "search.filters.applied.f.birthDate.max": "અંતિમ જન્મ તારીખ", - // "search.filters.applied.f.birthDate.min": "Start birth date", "search.filters.applied.f.birthDate.min": "પ્રારંભ જન્મ તારીખ", - // "search.filters.applied.f.supervisedBy": "Supervised by", "search.filters.applied.f.supervisedBy": "સુપરવિઝન દ્વારા", - // "search.filters.applied.f.withdrawn": "Withdrawn", "search.filters.applied.f.withdrawn": "પાછું ખેંચાયેલ", - // "search.filters.applied.operator.equals": "", "search.filters.applied.operator.equals": "", - // "search.filters.applied.operator.notequals": " not equals", "search.filters.applied.operator.notequals": " સમાન નથી", - // "search.filters.applied.operator.authority": "", "search.filters.applied.operator.authority": "", - // "search.filters.applied.operator.notauthority": " not authority", "search.filters.applied.operator.notauthority": " અધિકૃત નથી", - // "search.filters.applied.operator.contains": " contains", "search.filters.applied.operator.contains": " સમાવે છે", - // "search.filters.applied.operator.notcontains": " not contains", "search.filters.applied.operator.notcontains": " સમાવે નથી", - // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", - // "search.filters.applied.f.point": "Coordinates", "search.filters.applied.f.point": "સ્થાનાંક", - // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "શીર્ષક", - // "search.filters.filter.title.placeholder": "Title", "search.filters.filter.title.placeholder": "શીર્ષક", - // "search.filters.filter.title.label": "Search Title", "search.filters.filter.title.label": "શીર્ષક શોધો", - // "search.filters.filter.author.head": "Author", "search.filters.filter.author.head": "લેખક", - // "search.filters.filter.author.placeholder": "Author name", "search.filters.filter.author.placeholder": "લેખકનું નામ", - // "search.filters.filter.author.label": "Search author name", "search.filters.filter.author.label": "લેખકનું નામ શોધો", - // "search.filters.filter.birthDate.head": "Birth Date", "search.filters.filter.birthDate.head": "જન્મ તારીખ", - // "search.filters.filter.birthDate.placeholder": "Birth Date", "search.filters.filter.birthDate.placeholder": "જન્મ તારીખ", - // "search.filters.filter.birthDate.label": "Search birth date", "search.filters.filter.birthDate.label": "જન્મ તારીખ શોધો", - // "search.filters.filter.collapse": "Collapse filter", "search.filters.filter.collapse": "ફિલ્ટર સંકોચો", - // "search.filters.filter.creativeDatePublished.head": "Date Published", "search.filters.filter.creativeDatePublished.head": "પ્રકાશિત તારીખ", - // "search.filters.filter.creativeDatePublished.placeholder": "Date Published", "search.filters.filter.creativeDatePublished.placeholder": "પ્રકાશિત તારીખ", - // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "પ્રકાશિત તારીખ શોધો", - // "search.filters.filter.creativeDatePublished.min.label": "Start", "search.filters.filter.creativeDatePublished.min.label": "પ્રારંભ", - // "search.filters.filter.creativeDatePublished.max.label": "End", "search.filters.filter.creativeDatePublished.max.label": "અંત", - // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "સંપાદક", - // "search.filters.filter.creativeWorkEditor.placeholder": "Editor", "search.filters.filter.creativeWorkEditor.placeholder": "સંપાદક", - // "search.filters.filter.creativeWorkEditor.label": "Search editor", "search.filters.filter.creativeWorkEditor.label": "સંપાદક શોધો", - // "search.filters.filter.creativeWorkKeywords.head": "Subject", "search.filters.filter.creativeWorkKeywords.head": "વિષય", - // "search.filters.filter.creativeWorkKeywords.placeholder": "Subject", "search.filters.filter.creativeWorkKeywords.placeholder": "વિષય", - // "search.filters.filter.creativeWorkKeywords.label": "Search subject", "search.filters.filter.creativeWorkKeywords.label": "વિષય શોધો", - // "search.filters.filter.creativeWorkPublisher.head": "Publisher", "search.filters.filter.creativeWorkPublisher.head": "પ્રકાશક", - // "search.filters.filter.creativeWorkPublisher.placeholder": "Publisher", "search.filters.filter.creativeWorkPublisher.placeholder": "પ્રકાશક", - // "search.filters.filter.creativeWorkPublisher.label": "Search publisher", "search.filters.filter.creativeWorkPublisher.label": "પ્રકાશક શોધો", - // "search.filters.filter.dateIssued.head": "Date", "search.filters.filter.dateIssued.head": "તારીખ", - // "search.filters.filter.dateIssued.max.placeholder": "Maximum Date", "search.filters.filter.dateIssued.max.placeholder": "મહત્તમ તારીખ", - // "search.filters.filter.dateIssued.max.label": "End", "search.filters.filter.dateIssued.max.label": "અંત", - // "search.filters.filter.dateIssued.min.placeholder": "Minimum Date", "search.filters.filter.dateIssued.min.placeholder": "ન્યૂનતમ તારીખ", - // "search.filters.filter.dateIssued.min.label": "Start", "search.filters.filter.dateIssued.min.label": "પ્રારંભ", - // "search.filters.filter.dateSubmitted.head": "Date submitted", "search.filters.filter.dateSubmitted.head": "સબમિટ તારીખ", - // "search.filters.filter.dateSubmitted.placeholder": "Date submitted", "search.filters.filter.dateSubmitted.placeholder": "સબમિટ તારીખ", - // "search.filters.filter.dateSubmitted.label": "Search date submitted", "search.filters.filter.dateSubmitted.label": "સબમિટ તારીખ શોધો", - // "search.filters.filter.discoverable.head": "Non-discoverable", "search.filters.filter.discoverable.head": "નોન-ડિસ્કવરેબલ", - // "search.filters.filter.withdrawn.head": "Withdrawn", "search.filters.filter.withdrawn.head": "પાછું ખેંચાયેલ", - // "search.filters.filter.entityType.head": "Item Type", "search.filters.filter.entityType.head": "આઇટમ પ્રકાર", - // "search.filters.filter.entityType.placeholder": "Item Type", "search.filters.filter.entityType.placeholder": "આઇટમ પ્રકાર", - // "search.filters.filter.entityType.label": "Search item type", "search.filters.filter.entityType.label": "આઇટમ પ્રકાર શોધો", - // "search.filters.filter.expand": "Expand filter", "search.filters.filter.expand": "ફિલ્ટર વિસ્તારો", - // "search.filters.filter.has_content_in_original_bundle.head": "Has files", "search.filters.filter.has_content_in_original_bundle.head": "ફાઇલો છે", - // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "ફાઇલ નામ", - // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", "search.filters.filter.has_geospatial_metadata.head": "ભૌગોલિક સ્થાન છે", - // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "ફાઇલ નામ", - // "search.filters.filter.original_bundle_filenames.label": "Search File name", "search.filters.filter.original_bundle_filenames.label": "ફાઇલ નામ શોધો", - // "search.filters.filter.original_bundle_descriptions.head": "File description", "search.filters.filter.original_bundle_descriptions.head": "ફાઇલ વર્ણન", - // "search.filters.filter.original_bundle_descriptions.placeholder": "File description", "search.filters.filter.original_bundle_descriptions.placeholder": "ફાઇલ વર્ણન", - // "search.filters.filter.original_bundle_descriptions.label": "Search File description", "search.filters.filter.original_bundle_descriptions.label": "ફાઇલ વર્ણન શોધો", - // "search.filters.filter.itemtype.head": "Type", "search.filters.filter.itemtype.head": "પ્રકાર", - // "search.filters.filter.itemtype.placeholder": "Type", "search.filters.filter.itemtype.placeholder": "પ્રકાર", - // "search.filters.filter.itemtype.label": "Search type", "search.filters.filter.itemtype.label": "પ્રકાર શોધો", - // "search.filters.filter.jobTitle.head": "Job Title", "search.filters.filter.jobTitle.head": "નોકરીનું શીર્ષક", - // "search.filters.filter.jobTitle.placeholder": "Job Title", "search.filters.filter.jobTitle.placeholder": "નોકરીનું શીર્ષક", - // "search.filters.filter.jobTitle.label": "Search job title", "search.filters.filter.jobTitle.label": "નોકરીનું શીર્ષક શોધો", - // "search.filters.filter.knowsLanguage.head": "Known language", "search.filters.filter.knowsLanguage.head": "જાણીતી ભાષા", - // "search.filters.filter.knowsLanguage.placeholder": "Known language", "search.filters.filter.knowsLanguage.placeholder": "જાણીતી ભાષા", - // "search.filters.filter.knowsLanguage.label": "Search known language", "search.filters.filter.knowsLanguage.label": "જાણીતી ભાષા શોધો", - // "search.filters.filter.namedresourcetype.head": "Status", "search.filters.filter.namedresourcetype.head": "સ્થિતિ", - // "search.filters.filter.namedresourcetype.placeholder": "Status", "search.filters.filter.namedresourcetype.placeholder": "સ્થિતિ", - // "search.filters.filter.namedresourcetype.label": "Search status", "search.filters.filter.namedresourcetype.label": "સ્થિતિ શોધો", - // "search.filters.filter.objectpeople.head": "People", "search.filters.filter.objectpeople.head": "લોકો", - // "search.filters.filter.objectpeople.placeholder": "People", "search.filters.filter.objectpeople.placeholder": "લોકો", - // "search.filters.filter.objectpeople.label": "Search people", "search.filters.filter.objectpeople.label": "લોકો શોધો", - // "search.filters.filter.organizationAddressCountry.head": "Country", "search.filters.filter.organizationAddressCountry.head": "દેશ", - // "search.filters.filter.organizationAddressCountry.placeholder": "Country", "search.filters.filter.organizationAddressCountry.placeholder": "દેશ", - // "search.filters.filter.organizationAddressCountry.label": "Search country", "search.filters.filter.organizationAddressCountry.label": "દેશ શોધો", - // "search.filters.filter.organizationAddressLocality.head": "City", "search.filters.filter.organizationAddressLocality.head": "શહેર", - // "search.filters.filter.organizationAddressLocality.placeholder": "City", "search.filters.filter.organizationAddressLocality.placeholder": "શહેર", - // "search.filters.filter.organizationAddressLocality.label": "Search city", "search.filters.filter.organizationAddressLocality.label": "શહેર શોધો", - // "search.filters.filter.organizationFoundingDate.head": "Date Founded", "search.filters.filter.organizationFoundingDate.head": "સ્થાપના તારીખ", - // "search.filters.filter.organizationFoundingDate.placeholder": "Date Founded", "search.filters.filter.organizationFoundingDate.placeholder": "સ્થાપના તારીખ", - // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "સ્થાપના તારીખ શોધો", - // "search.filters.filter.organizationFoundingDate.min.label": "Start", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.min.label": "Start", - - // "search.filters.filter.organizationFoundingDate.max.label": "End", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.max.label": "End", - - // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "વિસ્તાર", - // "search.filters.filter.scope.placeholder": "Scope filter", "search.filters.filter.scope.placeholder": "વિસ્તાર ફિલ્ટર", - // "search.filters.filter.scope.label": "Search scope filter", "search.filters.filter.scope.label": "વિસ્તાર ફિલ્ટર શોધો", - // "search.filters.filter.show-less": "Collapse", "search.filters.filter.show-less": "સંકોચો", - // "search.filters.filter.show-more": "Show more", "search.filters.filter.show-more": "વધુ બતાવો", - // "search.filters.filter.subject.head": "Subject", "search.filters.filter.subject.head": "વિષય", - // "search.filters.filter.subject.placeholder": "Subject", "search.filters.filter.subject.placeholder": "વિષય", - // "search.filters.filter.subject.label": "Search subject", "search.filters.filter.subject.label": "વિષય શોધો", - // "search.filters.filter.submitter.head": "Submitter", "search.filters.filter.submitter.head": "સબમિટર", - // "search.filters.filter.submitter.placeholder": "Submitter", "search.filters.filter.submitter.placeholder": "સબમિટર", - // "search.filters.filter.submitter.label": "Search submitter", "search.filters.filter.submitter.label": "સબમિટર શોધો", - // "search.filters.filter.show-tree": "Browse {{ name }} tree", "search.filters.filter.show-tree": "{{ name }} વૃક્ષ બ્રાઉઝ કરો", - // "search.filters.filter.funding.head": "Funding", "search.filters.filter.funding.head": "ફંડિંગ", - // "search.filters.filter.funding.placeholder": "Funding", "search.filters.filter.funding.placeholder": "ફંડિંગ", - // "search.filters.filter.supervisedBy.head": "Supervised By", "search.filters.filter.supervisedBy.head": "સુપરવિઝન દ્વારા", - // "search.filters.filter.supervisedBy.placeholder": "Supervised By", "search.filters.filter.supervisedBy.placeholder": "સુપરવિઝન દ્વારા", - // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "સુપરવિઝન દ્વારા શોધો", - // "search.filters.filter.access_status.head": "Access type", "search.filters.filter.access_status.head": "ઍક્સેસ પ્રકાર", - // "search.filters.filter.access_status.placeholder": "Access type", "search.filters.filter.access_status.placeholder": "ઍક્સેસ પ્રકાર", - // "search.filters.filter.access_status.label": "Search by access type", "search.filters.filter.access_status.label": "ઍક્સેસ પ્રકાર દ્વારા શોધો", - // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "જર્નલ ઇશ્યુ", - // "search.filters.entityType.JournalVolume": "Journal Volume", "search.filters.entityType.JournalVolume": "જર્નલ વોલ્યુમ", - // "search.filters.entityType.OrgUnit": "Organizational Unit", "search.filters.entityType.OrgUnit": "સંસ્થાકીય એકમ", - // "search.filters.entityType.Person": "Person", "search.filters.entityType.Person": "વ્યક્તિ", - // "search.filters.entityType.Project": "Project", "search.filters.entityType.Project": "પ્રોજેક્ટ", - // "search.filters.entityType.Publication": "Publication", "search.filters.entityType.Publication": "પ્રકાશન", - // "search.filters.has_content_in_original_bundle.true": "Yes", "search.filters.has_content_in_original_bundle.true": "હા", - // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "ના", - // "search.filters.has_geospatial_metadata.true": "Yes", "search.filters.has_geospatial_metadata.true": "હા", - // "search.filters.has_geospatial_metadata.false": "No", "search.filters.has_geospatial_metadata.false": "ના", - // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "ના", - // "search.filters.discoverable.false": "Yes", "search.filters.discoverable.false": "હા", - // "search.filters.namedresourcetype.Archived": "Archived", "search.filters.namedresourcetype.Archived": "આર્કાઇવ્ડ", - // "search.filters.namedresourcetype.Validation": "Validation", "search.filters.namedresourcetype.Validation": "માન્યતા", - // "search.filters.namedresourcetype.Waiting for Controller": "Waiting for reviewer", "search.filters.namedresourcetype.Waiting for Controller": "સમીક્ષકની રાહ જોવી", - // "search.filters.namedresourcetype.Workflow": "Workflow", "search.filters.namedresourcetype.Workflow": "વર્કફ્લો", - // "search.filters.namedresourcetype.Workspace": "Workspace", "search.filters.namedresourcetype.Workspace": "વર્કસ્પેસ", - // "search.filters.withdrawn.true": "Yes", "search.filters.withdrawn.true": "હા", - // "search.filters.withdrawn.false": "No", "search.filters.withdrawn.false": "ના", - // "search.filters.head": "Filters", "search.filters.head": "ફિલ્ટર્સ", - // "search.filters.reset": "Reset filters", "search.filters.reset": "ફિલ્ટર્સ રીસેટ કરો", - // "search.filters.search.submit": "Submit", "search.filters.search.submit": "સબમિટ કરો", - // "search.filters.operator.equals.text": "Equals", "search.filters.operator.equals.text": "સમાન છે", - // "search.filters.operator.notequals.text": "Not Equals", "search.filters.operator.notequals.text": "સમાન નથી", - // "search.filters.operator.authority.text": "Authority", "search.filters.operator.authority.text": "અધિકૃત", - // "search.filters.operator.notauthority.text": "Not Authority", "search.filters.operator.notauthority.text": "અધિકૃત નથી", - // "search.filters.operator.contains.text": "Contains", "search.filters.operator.contains.text": "સમાવે છે", - // "search.filters.operator.notcontains.text": "Not Contains", "search.filters.operator.notcontains.text": "સમાવે નથી", - // "search.filters.operator.query.text": "Query", "search.filters.operator.query.text": "ક્વેરી", - // "search.form.search": "Search", "search.form.search": "શોધો", - // "search.form.search_dspace": "All repository", "search.form.search_dspace": "બધા રિપોઝિટરી", - // "search.form.scope.all": "All of DSpace", "search.form.scope.all": "બધા DSpace", - // "search.results.head": "Search Results", "search.results.head": "શોધ પરિણામો", - // "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting", "search.results.no-results": "તમારી શોધે કોઈ પરિણામ આપ્યું નથી. તમે જે શોધી રહ્યા છો તે શોધવામાં મુશ્કેલી છે? પ્રયાસ કરો", - // "search.results.no-results-link": "quotes around it", "search.results.no-results-link": "તેની આસપાસ અવતરણ ચિહ્નો મૂકો", - // "search.results.empty": "Your search returned no results.", "search.results.empty": "તમારી શોધે કોઈ પરિણામ આપ્યું નથી.", - // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", "search.results.geospatial-map.empty": "આ પૃષ્ઠ પર કોઈ ભૌગોલિક સ્થાન સાથેના પરિણામો નથી", - // "search.results.view-result": "View", "search.results.view-result": "જુઓ", - // "search.results.response.500": "An error occurred during query execution, please try again later", "search.results.response.500": "ક્વેરી અમલમાં ભૂલ આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો", - // "default.search.results.head": "Search Results", "default.search.results.head": "શોધ પરિણામો", - // "default-relationships.search.results.head": "Search Results", "default-relationships.search.results.head": "શોધ પરિણામો", - // "search.sidebar.close": "Back to results", "search.sidebar.close": "પરિણામો પર પાછા જાઓ", - // "search.sidebar.filters.title": "Filters", "search.sidebar.filters.title": "ફિલ્ટર્સ", - // "search.sidebar.open": "Search Tools", "search.sidebar.open": "શોધ સાધનો", - // "search.sidebar.results": "results", "search.sidebar.results": "પરિણામો", - // "search.sidebar.settings.rpp": "Results per page", "search.sidebar.settings.rpp": "પ્રતિ પૃષ્ઠ પરિણામો", - // "search.sidebar.settings.sort-by": "Sort By", "search.sidebar.settings.sort-by": "દ્વારા ગોઠવો", - // "search.sidebar.advanced-search.title": "Advanced Search", "search.sidebar.advanced-search.title": "ઉન્નત શોધ", - // "search.sidebar.advanced-search.filter-by": "Filter by", "search.sidebar.advanced-search.filter-by": "દ્વારા ફિલ્ટર કરો", - // "search.sidebar.advanced-search.filters": "Filters", "search.sidebar.advanced-search.filters": "ફિલ્ટર્સ", - // "search.sidebar.advanced-search.operators": "Operators", "search.sidebar.advanced-search.operators": "ઑપરેટર્સ", - // "search.sidebar.advanced-search.add": "Add", "search.sidebar.advanced-search.add": "ઉમેરો", - // "search.sidebar.settings.title": "Settings", "search.sidebar.settings.title": "સેટિંગ્સ", - // "search.view-switch.show-detail": "Show detail", "search.view-switch.show-detail": "વિગત બતાવો", - // "search.view-switch.show-grid": "Show as grid", "search.view-switch.show-grid": "ગ્રિડ તરીકે બતાવો", - // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "યાદી તરીકે બતાવો", - // "search.view-switch.show-geospatialMap": "Show as map", "search.view-switch.show-geospatialMap": "નકશા તરીકે બતાવો", - // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "આઇટમ પસંદ ન કરો", - // "selectable-list-item-control.select": "Select item", "selectable-list-item-control.select": "આઇટમ પસંદ કરો", - // "sorting.ASC": "Ascending", "sorting.ASC": "આરોહી", - // "sorting.DESC": "Descending", "sorting.DESC": "અવરોહી", - // "sorting.dc.title.ASC": "Title Ascending", "sorting.dc.title.ASC": "શીર્ષક આરોહી", - // "sorting.dc.title.DESC": "Title Descending", "sorting.dc.title.DESC": "શીર્ષક અવરોહી", - // "sorting.score.ASC": "Least Relevant", "sorting.score.ASC": "ઓછું સંબંધિત", - // "sorting.score.DESC": "Most Relevant", "sorting.score.DESC": "વધુ સંબંધિત", - // "sorting.dc.date.issued.ASC": "Date Issued Ascending", "sorting.dc.date.issued.ASC": "તારીખ આરોહી જારી", - // "sorting.dc.date.issued.DESC": "Date Issued Descending", "sorting.dc.date.issued.DESC": "તારીખ અવરોહી જારી", - // "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending", "sorting.dc.date.accessioned.ASC": "ઍક્સેશન તારીખ આરોહી", - // "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending", "sorting.dc.date.accessioned.DESC": "ઍક્સેશન તારીખ અવરોહી", - // "sorting.lastModified.ASC": "Last modified Ascending", "sorting.lastModified.ASC": "છેલ્લે ફેરફાર આરોહી", - // "sorting.lastModified.DESC": "Last modified Descending", "sorting.lastModified.DESC": "છેલ્લે ફેરફાર અવરોહી", - // "sorting.person.familyName.ASC": "Surname Ascending", "sorting.person.familyName.ASC": "અટક આરોહી", - // "sorting.person.familyName.DESC": "Surname Descending", "sorting.person.familyName.DESC": "અટક અવરોહી", - // "sorting.person.givenName.ASC": "Name Ascending", "sorting.person.givenName.ASC": "નામ આરોહી", - // "sorting.person.givenName.DESC": "Name Descending", "sorting.person.givenName.DESC": "નામ અવરોહી", - // "sorting.person.birthDate.ASC": "Birth Date Ascending", "sorting.person.birthDate.ASC": "જન્મ તારીખ આરોહી", - // "sorting.person.birthDate.DESC": "Birth Date Descending", "sorting.person.birthDate.DESC": "જન્મ તારીખ અવરોહી", - // "statistics.title": "Statistics", "statistics.title": "આંકડા", - // "statistics.header": "Statistics for {{ scope }}", "statistics.header": "{{ scope }} માટેના આંકડા", - // "statistics.breadcrumbs": "Statistics", "statistics.breadcrumbs": "આંકડા", - // "statistics.page.no-data": "No data available", "statistics.page.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", - // "statistics.table.no-data": "No data available", "statistics.table.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", - // "statistics.table.title.TotalVisits": "Total visits", "statistics.table.title.TotalVisits": "કુલ મુલાકાતો", - // "statistics.table.title.TotalVisitsPerMonth": "Total visits per month", "statistics.table.title.TotalVisitsPerMonth": "પ્રતિ મહિનો કુલ મુલાકાતો", - // "statistics.table.title.TotalDownloads": "File Visits", "statistics.table.title.TotalDownloads": "ફાઇલ મુલાકાતો", - // "statistics.table.title.TopCountries": "Top country views", "statistics.table.title.TopCountries": "ટોપ દેશ દૃશ્યો", - // "statistics.table.title.TopCities": "Top city views", "statistics.table.title.TopCities": "ટોપ શહેર દૃશ્યો", - // "statistics.table.header.views": "Views", "statistics.table.header.views": "દૃશ્યો", - // "statistics.table.no-name": "(object name could not be loaded)", "statistics.table.no-name": "(વસ્તુનું નામ લોડ કરી શકાયું નથી)", - // "submission.edit.breadcrumbs": "Edit Submission", "submission.edit.breadcrumbs": "સબમિશન સંપાદિત કરો", - // "submission.edit.title": "Edit Submission", "submission.edit.title": "સબમિશન સંપાદિત કરો", - // "submission.general.cancel": "Cancel", "submission.general.cancel": "રદ કરો", - // "submission.general.cannot_submit": "You don't have permission to make a new submission.", "submission.general.cannot_submit": "તમને નવું સબમિશન કરવાની પરવાનગી નથી.", - // "submission.general.deposit": "Deposit", "submission.general.deposit": "ડિપોઝિટ", - // "submission.general.discard.confirm.cancel": "Cancel", "submission.general.discard.confirm.cancel": "રદ કરો", - // "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?", "submission.general.discard.confirm.info": "આ ક્રિયા પાછી ફરી શકશે નહીં. શું તમે ખાતરી કરો છો?", - // "submission.general.discard.confirm.submit": "Yes, I'm sure", "submission.general.discard.confirm.submit": "હા, મને ખાતરી છે", - // "submission.general.discard.confirm.title": "Discard submission", "submission.general.discard.confirm.title": "સબમિશન રદ કરો", - // "submission.general.discard.submit": "Discard", "submission.general.discard.submit": "રદ કરો", - // "submission.general.back.submit": "Back", "submission.general.back.submit": "પાછા", - // "submission.general.info.saved": "Saved", "submission.general.info.saved": "સાચવ્યું", - // "submission.general.info.pending-changes": "Unsaved changes", "submission.general.info.pending-changes": "સાચવેલા ફેરફારો", - // "submission.general.save": "Save", "submission.general.save": "સેવ", - // "submission.general.save-later": "Save for later", "submission.general.save-later": "પછી માટે સેવ", - // "submission.import-external.page.title": "Import metadata from an external source", "submission.import-external.page.title": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", - // "submission.import-external.title": "Import metadata from an external source", "submission.import-external.title": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", - // "submission.import-external.title.Journal": "Import a journal from an external source", "submission.import-external.title.Journal": "બાહ્ય સ્ત્રોતમાંથી જર્નલ આયાત કરો", - // "submission.import-external.title.JournalIssue": "Import a journal issue from an external source", "submission.import-external.title.JournalIssue": "બાહ્ય સ્ત્રોતમાંથી જર્નલ ઇશ્યુ આયાત કરો", - // "submission.import-external.title.JournalVolume": "Import a journal volume from an external source", "submission.import-external.title.JournalVolume": "બાહ્ય સ્ત્રોતમાંથી જર્નલ વોલ્યુમ આયાત કરો", - // "submission.import-external.title.OrgUnit": "Import a publisher from an external source", "submission.import-external.title.OrgUnit": "બાહ્ય સ્ત્રોતમાંથી પ્રકાશક આયાત કરો", - // "submission.import-external.title.Person": "Import a person from an external source", "submission.import-external.title.Person": "બાહ્ય સ્ત્રોતમાંથી વ્યક્તિ આયાત કરો", - // "submission.import-external.title.Project": "Import a project from an external source", "submission.import-external.title.Project": "બાહ્ય સ્ત્રોતમાંથી પ્રોજેક્ટ આયાત કરો", - // "submission.import-external.title.Publication": "Import a publication from an external source", "submission.import-external.title.Publication": "બાહ્ય સ્ત્રોતમાંથી પ્રકાશન આયાત કરો", - // "submission.import-external.title.none": "Import metadata from an external source", "submission.import-external.title.none": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો", - // "submission.import-external.page.hint": "Enter a query above to find items from the web to import in to DSpace.", "submission.import-external.page.hint": "DSpace માં આયાત કરવા માટે વેબમાંથી વસ્તુઓ શોધવા માટે ઉપર ક્વેરી દાખલ કરો.", - // "submission.import-external.back-to-my-dspace": "Back to MyDSpace", "submission.import-external.back-to-my-dspace": "મારા DSpace પર પાછા જાઓ", - // "submission.import-external.search.placeholder": "Search the external source", "submission.import-external.search.placeholder": "બાહ્ય સ્ત્રોત શોધો", - // "submission.import-external.search.button": "Search", "submission.import-external.search.button": "શોધો", - // "submission.import-external.search.button.hint": "Write some words to search", "submission.import-external.search.button.hint": "શોધવા માટે કેટલાક શબ્દો લખો", - // "submission.import-external.search.source.hint": "Pick an external source", "submission.import-external.search.source.hint": "બાહ્ય સ્ત્રોત પસંદ કરો", - // "submission.import-external.source.arxiv": "arXiv", "submission.import-external.source.arxiv": "arXiv", - // "submission.import-external.source.ads": "NASA/ADS", "submission.import-external.source.ads": "NASA/ADS", - // "submission.import-external.source.cinii": "CiNii", "submission.import-external.source.cinii": "CiNii", - // "submission.import-external.source.crossref": "Crossref", "submission.import-external.source.crossref": "Crossref", - // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", - // "submission.import-external.source.dataciteProject": "DataCite", "submission.import-external.source.dataciteProject": "DataCite", - // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", - // "submission.import-external.source.scielo": "SciELO", "submission.import-external.source.scielo": "SciELO", - // "submission.import-external.source.scopus": "Scopus", "submission.import-external.source.scopus": "Scopus", - // "submission.import-external.source.vufind": "VuFind", "submission.import-external.source.vufind": "VuFind", - // "submission.import-external.source.wos": "Web Of Science", "submission.import-external.source.wos": "Web Of Science", - // "submission.import-external.source.orcidWorks": "ORCID", "submission.import-external.source.orcidWorks": "ORCID", - // "submission.import-external.source.epo": "European Patent Office (EPO)", "submission.import-external.source.epo": "European Patent Office (EPO)", - // "submission.import-external.source.loading": "Loading ...", "submission.import-external.source.loading": "લોડ થઈ રહ્યું છે ...", - // "submission.import-external.source.sherpaJournal": "SHERPA Journals", "submission.import-external.source.sherpaJournal": "SHERPA Journals", - // "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", "submission.import-external.source.sherpaJournalIssn": "ISSN દ્વારા SHERPA Journals", - // "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", - // "submission.import-external.source.openaire": "OpenAIRE Search by Authors", "submission.import-external.source.openaire": "OpenAIRE Authors દ્વારા શોધો", - // "submission.import-external.source.openaireTitle": "OpenAIRE Search by Title", "submission.import-external.source.openaireTitle": "OpenAIRE Title દ્વારા શોધો", - // "submission.import-external.source.openaireFunding": "OpenAIRE Search by Funder", "submission.import-external.source.openaireFunding": "OpenAIRE Funding દ્વારા શોધો", - // "submission.import-external.source.orcid": "ORCID", "submission.import-external.source.orcid": "ORCID", - // "submission.import-external.source.pubmed": "Pubmed", "submission.import-external.source.pubmed": "Pubmed", - // "submission.import-external.source.pubmedeu": "Pubmed Europe", "submission.import-external.source.pubmedeu": "Pubmed Europe", - // "submission.import-external.source.lcname": "Library of Congress Names", "submission.import-external.source.lcname": "Library of Congress Names", - // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Research Organization Registry (ROR)", - // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", "submission.import-external.source.openalexPublication": "OpenAlex Title દ્વારા શોધો", - // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Author ID દ્વારા શોધો", - // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", "submission.import-external.source.openalexPublicationByDOI": "OpenAlex DOI દ્વારા શોધો", - // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", "submission.import-external.source.openalexPerson": "OpenAlex નામ દ્વારા શોધો", - // "submission.import-external.source.openalexJournal": "OpenAlex Journals", "submission.import-external.source.openalexJournal": "OpenAlex Journals", - // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", - // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", - // "submission.import-external.source.openalexFunder": "OpenAlex Funders", "submission.import-external.source.openalexFunder": "OpenAlex Funders", - // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "વસ્તુ પૂર્વાવલોકન", - // "submission.import-external.preview.title.Publication": "Publication Preview", "submission.import-external.preview.title.Publication": "પ્રકાશન પૂર્વાવલોકન", - // "submission.import-external.preview.title.none": "Item Preview", "submission.import-external.preview.title.none": "વસ્તુ પૂર્વાવલોકન", - // "submission.import-external.preview.title.Journal": "Journal Preview", "submission.import-external.preview.title.Journal": "જર્નલ પૂર્વાવલોકન", - // "submission.import-external.preview.title.OrgUnit": "Organizational Unit Preview", "submission.import-external.preview.title.OrgUnit": "સંસ્થાકીય એકમ પૂર્વાવલોકન", - // "submission.import-external.preview.title.Person": "Person Preview", "submission.import-external.preview.title.Person": "વ્યક્તિ પૂર્વાવલોકન", - // "submission.import-external.preview.title.Project": "Project Preview", "submission.import-external.preview.title.Project": "પ્રોજેક્ટ પૂર્વાવલોકન", - // "submission.import-external.preview.subtitle": "The metadata below was imported from an external source. It will be pre-filled when you start the submission.", "submission.import-external.preview.subtitle": "નીચેની મેટાડેટા બાહ્ય સ્ત્રોતમાંથી આયાત કરવામાં આવી હતી. તમે સબમિશન શરૂ કરશો ત્યારે તે પૂર્વ-ભરવામાં આવશે.", - // "submission.import-external.preview.button.import": "Start submission", "submission.import-external.preview.button.import": "સબમિશન શરૂ કરો", - // "submission.import-external.preview.error.import.title": "Submission error", "submission.import-external.preview.error.import.title": "સબમિશન ભૂલ", - // "submission.import-external.preview.error.import.body": "An error occurs during the external source entry import process.", "submission.import-external.preview.error.import.body": "બાહ્ય સ્ત્રોત એન્ટ્રી આયાત પ્રક્રિયા દરમિયાન ભૂલ થાય છે.", - // "submission.sections.describe.relationship-lookup.close": "Close", "submission.sections.describe.relationship-lookup.close": "બંધ કરો", - // "submission.sections.describe.relationship-lookup.external-source.added": "Successfully added local entry to the selection", "submission.sections.describe.relationship-lookup.external-source.added": "સ્થાનિક એન્ટ્રી પસંદગીમાં સફળતાપૂર્વક ઉમેરવામાં આવી", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Import remote author", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "દૂરના લેખક આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Import remote journal", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "દૂરના જર્નલ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Import remote journal issue", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "દૂરના જર્નલ ઇશ્યુ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Import remote journal volume", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "દૂરના જર્નલ વોલ્યુમ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Import remote item", "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "દૂરની વસ્તુ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Import remote event", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "દૂરના ઇવેન્ટ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Import remote product", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "દૂરના પ્રોડક્ટ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Import remote equipment", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "દૂરના સાધન આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "Import remote organizational unit", "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "દૂરના સંસ્થાકીય એકમ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "Import remote fund", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "દૂરના ફંડ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Import remote person", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "દૂરના વ્યક્તિ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Import remote patent", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "દૂરના પેટન્ટ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Import remote project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "દૂરના પ્રોજેક્ટ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Import remote publication", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "દૂરના પ્રકાશન આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "નવી એન્ટિટી ઉમેરવામાં આવી!", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Import Remote Author", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "દૂરના લેખક આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Successfully added local author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "સફળતાપૂર્વક સ્થાનિક લેખક પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Successfully imported and added external author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "સફળતાપૂર્વક બાહ્ય લેખક આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Authority", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "અધિકાર", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Import as a new local authority entry", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "નવા સ્થાનિક અધિકાર એન્ટ્રી તરીકે આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Cancel", "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "રદ કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Select a collection to import new entries to", "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "નવી એન્ટ્રીઓ આયાત કરવા માટે કલેક્શન પસંદ કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "Entities", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "એન્ટિટીઓ", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Import as a new local entity", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "નવા સ્થાનિક એન્ટિટી તરીકે આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC Name માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE Title માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE Funding માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa Journal માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Importing from Sherpa Publisher", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa Publisher માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Importing from PubMed", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Importing from arXiv", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv માંથી આયાત કરી રહ્યું છે", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "Import from ROR", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR માંથી આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Import", "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Import Remote Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "દૂરના જર્નલ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Successfully added local journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Successfully imported and added external journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Import Remote Journal Issue", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "દૂરના જર્નલ ઇશ્યુ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Successfully added local journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ ઇશ્યુ પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Successfully imported and added external journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ ઇશ્યુ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Import Remote Journal Volume", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "દૂરના જર્નલ વોલ્યુમ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Successfully added local journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ વોલ્યુમ પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Successfully imported and added external journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ વોલ્યુમ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "સ્થાનિક મેચ પસંદ કરો:", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "Import Remote Organization", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "દૂરના સંસ્થાકીય એકમ આયાત કરો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "Successfully added local organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "સફળતાપૂર્વક સ્થાનિક સંસ્થાકીય એકમ પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "Successfully imported and added external organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "સફળતાપૂર્વક બાહ્ય સંસ્થાકીય એકમ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો", - // "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Deselect all", "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "બધા પસંદગીઓ રદ કરો", - // "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Deselect page", "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "પેજ પસંદગીઓ રદ કરો", - // "submission.sections.describe.relationship-lookup.search-tab.loading": "Loading...", "submission.sections.describe.relationship-lookup.search-tab.loading": "લોડ થઈ રહ્યું છે...", - // "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Search query", "submission.sections.describe.relationship-lookup.search-tab.placeholder": "શોધ ક્વેરી", - // "submission.sections.describe.relationship-lookup.search-tab.search": "Go", "submission.sections.describe.relationship-lookup.search-tab.search": "જાઓ", - // "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "શોધો...", - // "submission.sections.describe.relationship-lookup.search-tab.select-all": "Select all", "submission.sections.describe.relationship-lookup.search-tab.select-all": "બધા પસંદ કરો", - // "submission.sections.describe.relationship-lookup.search-tab.select-page": "Select page", "submission.sections.describe.relationship-lookup.search-tab.select-page": "પેજ પસંદ કરો", - // "submission.sections.describe.relationship-lookup.selected": "Selected {{ size }} items", "submission.sections.describe.relationship-lookup.selected": "પસંદ કરેલી {{ size }} વસ્તુઓ", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "સ્થાનિક લેખકો ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "સ્થાનિક જર્નલ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Local Projects ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "સ્થાનિક પ્રોજેક્ટ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Local Publications ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "સ્થાનિક પ્રકાશન ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "સ્થાનિક લેખકો ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Local Organizational Units ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "સ્થાનિક સંસ્થાકીય એકમ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Local Data Packages ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "સ્થાનિક ડેટા પેકેજ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Local Data Files ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "સ્થાનિક ડેટા ફાઇલ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "સ્થાનિક જર્નલ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "સ્થાનિક જર્નલ ઇશ્યુ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "સ્થાનિક જર્નલ ઇશ્યુ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Search by Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Authors ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Search by Title ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Title ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Search by Funder ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Funding ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN દ્વારા Sherpa Journals ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Funding Agencies માટે શોધો", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Search for Funding", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Funding માટે શોધો", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Search for Organizational Units", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "સંસ્થાકીય એકમ માટે શોધો", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "પ્રોજેક્ટના ફંડર", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "Publication of the Author", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "લેખકના પ્રકાશન", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "OrgUnit of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "પ્રોજેક્ટના સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "પ્રોજેક્ટના ફંડર", - // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - - // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "શોધો...", - // "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Current Selection ({{ count }})", "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "વર્તમાન પસંદગી ({{ count }})", - // "submission.sections.describe.relationship-lookup.title.Journal": "Journal", "submission.sections.describe.relationship-lookup.title.Journal": "જર્નલ", - // "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Journal Issues", "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "જર્નલ ઇશ્યુ", - // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "જર્નલ ઇશ્યુ", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.title.JournalVolume": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.JournalVolume": "જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "Journals", "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "જર્નલ", - // "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Authors", "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "લેખકો", - // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Funding Agency", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "ફંડિંગ એજન્સી", - // "submission.sections.describe.relationship-lookup.title.Project": "Projects", "submission.sections.describe.relationship-lookup.title.Project": "પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.title.Publication": "Publications", "submission.sections.describe.relationship-lookup.title.Publication": "પ્રકાશન", - // "submission.sections.describe.relationship-lookup.title.Person": "Authors", "submission.sections.describe.relationship-lookup.title.Person": "લેખકો", - // "submission.sections.describe.relationship-lookup.title.OrgUnit": "Organizational Units", "submission.sections.describe.relationship-lookup.title.OrgUnit": "સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.title.DataPackage": "Data Packages", "submission.sections.describe.relationship-lookup.title.DataPackage": "ડેટા પેકેજ", - // "submission.sections.describe.relationship-lookup.title.DataFile": "Data Files", "submission.sections.describe.relationship-lookup.title.DataFile": "ડેટા ફાઇલ", - // "submission.sections.describe.relationship-lookup.title.Funding Agency": "Funding Agency", "submission.sections.describe.relationship-lookup.title.Funding Agency": "ફંડિંગ એજન્સી", - // "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Funding", "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "ફંડિંગ", - // "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Parent Organizational Unit", "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "પેરેન્ટ સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "Publication", "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "પ્રકાશન", - // "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "OrgUnit", "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Toggle dropdown", "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ડ્રોપડાઉન ટૉગલ કરો", - // "submission.sections.describe.relationship-lookup.selection-tab.settings": "Settings", "submission.sections.describe.relationship-lookup.selection-tab.settings": "સેટિંગ્સ", - // "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Your selection is currently empty.", "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "તમારી પસંદગી હાલમાં ખાલી છે.", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "પસંદ કરેલા લેખકો", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "પસંદ કરેલા જર્નલ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "પસંદ કરેલા જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "પસંદ કરેલા જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Selected Projects", "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "પસંદ કરેલા પ્રોજેક્ટ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Selected Publications", "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "પસંદ કરેલા પ્રકાશન", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "પસંદ કરેલા લેખકો", - // "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Selected Organizational Units", "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "પસંદ કરેલા સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Selected Data Packages", "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "પસંદ કરેલા ડેટા પેકેજ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Selected Data Files", "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "પસંદ કરેલી ડેટા ફાઇલ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "પસંદ કરેલા જર્નલ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "પસંદ કરેલા ઇશ્યુ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "પસંદ કરેલા જર્નલ વોલ્યુમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Selected Funding Agency", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "પસંદ કરેલી ફંડિંગ એજન્સી", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Selected Funding", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "પસંદ કરેલા ફંડિંગ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "પસંદ કરેલા ઇશ્યુ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Selected Organizational Unit", "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "પસંદ કરેલા સંસ્થાકીય એકમ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "શોધ પરિણામ", - // "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.", "submission.sections.describe.relationship-lookup.name-variant.notification.content": "શું તમે આ નામ વેરિઅન્ટને ભવિષ્યના સબમિશન માટે ફરીથી ઉપયોગ કરવા માટે સાચવવા માંગો છો? જો તમે નહીં કરો તો તમે તેને આ સબમિશન માટે જ ઉપયોગ કરી શકો છો.", - // "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant", "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "નવું નામ વેરિઅન્ટ સાચવો", - // "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Use only for this submission", "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "આ સબમિશન માટે જ ઉપયોગ કરો", - // "submission.sections.ccLicense.type": "License Type", "submission.sections.ccLicense.type": "લાઇસન્સ પ્રકાર", - // "submission.sections.ccLicense.select": "Select a license type…", "submission.sections.ccLicense.select": "લાઇસન્સ પ્રકાર પસંદ કરો…", - // "submission.sections.ccLicense.change": "Change your license type…", "submission.sections.ccLicense.change": "તમારો લાઇસન્સ પ્રકાર બદલો…", - // "submission.sections.ccLicense.none": "No licenses available", "submission.sections.ccLicense.none": "કોઈ લાઇસન્સ ઉપલબ્ધ નથી", - // "submission.sections.ccLicense.option.select": "Select an option…", "submission.sections.ccLicense.option.select": "એક વિકલ્પ પસંદ કરો…", - // "submission.sections.ccLicense.link": "You’ve selected the following license:", - // TODO New key - Add a translation - "submission.sections.ccLicense.link": "You’ve selected the following license:", + "submission.sections.ccLicense.link": "તમે નીચેના લાઇસન્સ પસંદ કર્યું છે:", - // "submission.sections.ccLicense.confirmation": "I grant the license above", "submission.sections.ccLicense.confirmation": "હું ઉપરના લાઇસન્સને મંજૂરી આપું છું", - // "submission.sections.general.add-more": "Add more", "submission.sections.general.add-more": "વધુ ઉમેરો", - // "submission.sections.general.cannot_deposit": "Deposit cannot be completed due to errors in the form.
Please fill out all required fields to complete the deposit.", "submission.sections.general.cannot_deposit": "ફોર્મમાં ભૂલોને કારણે ડિપોઝિટ પૂર્ણ કરી શકાતી નથી.
ડિપોઝિટ પૂર્ણ કરવા માટે કૃપા કરીને બધી જરૂરી ફીલ્ડ્સ ભરો.", - // "submission.sections.general.collection": "Collection", "submission.sections.general.collection": "સંગ્રહ", - // "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.", "submission.sections.general.deposit_error_notice": "વસ્તુ સબમિટ કરતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", - // "submission.sections.general.deposit_success_notice": "Submission deposited successfully.", "submission.sections.general.deposit_success_notice": "સબમિશન સફળતાપૂર્વક ડિપોઝિટ થયું.", - // "submission.sections.general.discard_error_notice": "There was an issue when discarding the item, please try again later.", "submission.sections.general.discard_error_notice": "વસ્તુ રદ કરતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", - // "submission.sections.general.discard_success_notice": "Submission discarded successfully.", "submission.sections.general.discard_success_notice": "સબમિશન સફળતાપૂર્વક રદ થયું.", - // "submission.sections.general.metadata-extracted": "New metadata have been extracted and added to the {{sectionId}} section.", "submission.sections.general.metadata-extracted": "નવી મેટાડેટા કાઢી અને {{sectionId}} વિભાગમાં ઉમેરવામાં આવી છે.", - // "submission.sections.general.metadata-extracted-new-section": "New {{sectionId}} section has been added to submission.", "submission.sections.general.metadata-extracted-new-section": "નવી {{sectionId}} વિભાગ સબમિશનમાં ઉમેરવામાં આવી છે.", - // "submission.sections.general.no-collection": "No collection found", "submission.sections.general.no-collection": "કોઈ સંગ્રહ મળ્યો નથી", - // "submission.sections.general.no-entity": "No entity types found", "submission.sections.general.no-entity": "કોઈ એન્ટિટી પ્રકારો મળ્યા નથી", - // "submission.sections.general.no-sections": "No options available", "submission.sections.general.no-sections": "કોઈ વિકલ્પો ઉપલબ્ધ નથી", - // "submission.sections.general.save_error_notice": "There was an issue when saving the item, please try again later.", "submission.sections.general.save_error_notice": "વસ્તુ સાચવતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", - // "submission.sections.general.save_success_notice": "Submission saved successfully.", "submission.sections.general.save_success_notice": "સબમિશન સફળતાપૂર્વક સાચવાયું.", - // "submission.sections.general.search-collection": "Search for a collection", "submission.sections.general.search-collection": "સંગ્રહ માટે શોધો", - // "submission.sections.general.sections_not_valid": "There are incomplete sections.", "submission.sections.general.sections_not_valid": "અપૂર્ણ વિભાગો છે.", - // "submission.sections.identifiers.info": "The following identifiers will be created for your item:", - // TODO New key - Add a translation - "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + "submission.sections.identifiers.info": "તમારી વસ્તુ માટે નીચેના ઓળખકર્તાઓ બનાવવામાં આવશે:", - // "submission.sections.identifiers.no_handle": "No handles have been minted for this item.", "submission.sections.identifiers.no_handle": "આ વસ્તુ માટે કોઈ હેન્ડલ મિન્ટ કરવામાં આવ્યા નથી.", - // "submission.sections.identifiers.no_doi": "No DOIs have been minted for this item.", "submission.sections.identifiers.no_doi": "આ વસ્તુ માટે કોઈ DOI મિન્ટ કરવામાં આવ્યા નથી.", - // "submission.sections.identifiers.handle_label": "Handle: ", - // TODO New key - Add a translation - "submission.sections.identifiers.handle_label": "Handle: ", + "submission.sections.identifiers.handle_label": "હેન્ડલ: ", - // "submission.sections.identifiers.doi_label": "DOI: ", "submission.sections.identifiers.doi_label": "DOI: ", - // "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", - // TODO New key - Add a translation - "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + "submission.sections.identifiers.otherIdentifiers_label": "અન્ય ઓળખકર્તાઓ: ", - // "submission.sections.submit.progressbar.accessCondition": "Item access conditions", "submission.sections.submit.progressbar.accessCondition": "વસ્તુ ઍક્સેસ શરતો", - // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "ક્રિએટિવ કોમન્સ લાઇસન્સ", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "રીસાયકલ", - // "submission.sections.submit.progressbar.describe.stepcustom": "Describe", "submission.sections.submit.progressbar.describe.stepcustom": "વર્ણન કરો", - // "submission.sections.submit.progressbar.describe.stepone": "Describe", "submission.sections.submit.progressbar.describe.stepone": "વર્ણન કરો", - // "submission.sections.submit.progressbar.describe.steptwo": "Describe", "submission.sections.submit.progressbar.describe.steptwo": "વર્ણન કરો", - // "submission.sections.submit.progressbar.duplicates": "Potential duplicates", "submission.sections.submit.progressbar.duplicates": "સંભવિત નકલો", - // "submission.sections.submit.progressbar.identifiers": "Identifiers", "submission.sections.submit.progressbar.identifiers": "ઓળખકર્તાઓ", - // "submission.sections.submit.progressbar.license": "Deposit license", "submission.sections.submit.progressbar.license": "ડિપોઝિટ લાઇસન્સ", - // "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies", "submission.sections.submit.progressbar.sherpapolicy": "શેરપા નીતિઓ", - // "submission.sections.submit.progressbar.upload": "Upload files", "submission.sections.submit.progressbar.upload": "ફાઇલો અપલોડ કરો", - // "submission.sections.submit.progressbar.sherpaPolicies": "Publisher open access policy information", "submission.sections.submit.progressbar.sherpaPolicies": "પ્રકાશક ઓપન ઍક્સેસ નીતિ માહિતી", - // "submission.sections.sherpa-policy.title-empty": "No publisher policy information available. If your work has an associated ISSN, please enter it above to see any related publisher open access policies.", "submission.sections.sherpa-policy.title-empty": "કોઈ પ્રકાશક નીતિ માહિતી ઉપલબ્ધ નથી. જો તમારા કાર્ય સાથે સંકળાયેલ ISSN છે, તો કૃપા કરીને ઉપર દાખલ કરો જેથી સંબંધિત પ્રકાશક ઓપન ઍક્સેસ નીતિઓ જોઈ શકાય.", - // "submission.sections.status.errors.title": "Errors", "submission.sections.status.errors.title": "ભૂલો", - // "submission.sections.status.valid.title": "Valid", "submission.sections.status.valid.title": "માન્ય", - // "submission.sections.status.warnings.title": "Warnings", "submission.sections.status.warnings.title": "ચેતવણીઓ", - // "submission.sections.status.errors.aria": "has errors", "submission.sections.status.errors.aria": "ભૂલો છે", - // "submission.sections.status.valid.aria": "is valid", "submission.sections.status.valid.aria": "માન્ય છે", - // "submission.sections.status.warnings.aria": "has warnings", "submission.sections.status.warnings.aria": "ચેતવણીઓ છે", - // "submission.sections.status.info.title": "Additional Information", "submission.sections.status.info.title": "વધુ માહિતી", - // "submission.sections.status.info.aria": "Additional Information", "submission.sections.status.info.aria": "વધુ માહિતી", - // "submission.sections.toggle.open": "Open section", "submission.sections.toggle.open": "વિભાગ ખોલો", - // "submission.sections.toggle.close": "Close section", "submission.sections.toggle.close": "વિભાગ બંધ કરો", - // "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section", "submission.sections.toggle.aria.open": "{{sectionHeader}} વિભાગ વિસ્તૃત કરો", - // "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section", "submission.sections.toggle.aria.close": "{{sectionHeader}} વિભાગ સંકોચો", - // "submission.sections.upload.primary.make": "Make {{fileName}} the primary bitstream", "submission.sections.upload.primary.make": "{{fileName}} ને મુખ્ય બિટસ્ટ્રીમ બનાવો", - // "submission.sections.upload.primary.remove": "Remove {{fileName}} as the primary bitstream", "submission.sections.upload.primary.remove": "{{fileName}} ને મુખ્ય બિટસ્ટ્રીમ તરીકે દૂર કરો", - // "submission.sections.upload.delete.confirm.cancel": "Cancel", "submission.sections.upload.delete.confirm.cancel": "રદ કરો", - // "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?", "submission.sections.upload.delete.confirm.info": "આ કામગીરી પાછી લઈ શકાતી નથી. શું તમે ખાતરી કરો છો?", - // "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure", "submission.sections.upload.delete.confirm.submit": "હા, હું ખાતરી કરું છું", - // "submission.sections.upload.delete.confirm.title": "Delete bitstream", "submission.sections.upload.delete.confirm.title": "બિટસ્ટ્રીમ કાઢી નાખો", - // "submission.sections.upload.delete.submit": "Delete", "submission.sections.upload.delete.submit": "કાઢી નાખો", - // "submission.sections.upload.download.title": "Download bitstream", "submission.sections.upload.download.title": "બિટસ્ટ્રીમ ડાઉનલોડ કરો", - // "submission.sections.upload.drop-message": "Drop files to attach them to the item", "submission.sections.upload.drop-message": "વસ્તુ સાથે જોડવા માટે ફાઇલો છોડો", - // "submission.sections.upload.edit.title": "Edit bitstream", "submission.sections.upload.edit.title": "બિટસ્ટ્રીમ સંપાદિત કરો", - // "submission.sections.upload.form.access-condition-label": "Access condition type", "submission.sections.upload.form.access-condition-label": "ઍક્સેસ શરતો પ્રકાર", - // "submission.sections.upload.form.access-condition-hint": "Select an access condition to apply on the bitstream once the item is deposited", "submission.sections.upload.form.access-condition-hint": "વસ્તુ ડિપોઝિટ થયા પછી બિટસ્ટ્રીમ પર લાગુ કરવા માટે ઍક્સેસ શરતો પસંદ કરો", - // "submission.sections.upload.form.date-required": "Date is required.", "submission.sections.upload.form.date-required": "તારીખ જરૂરી છે.", - // "submission.sections.upload.form.date-required-from": "Grant access from date is required.", "submission.sections.upload.form.date-required-from": "તારીખથી ઍક્સેસ આપો જરૂરી છે.", - // "submission.sections.upload.form.date-required-until": "Grant access until date is required.", "submission.sections.upload.form.date-required-until": "તારીખ સુધી ઍક્સેસ આપો જરૂરી છે.", - // "submission.sections.upload.form.from-label": "Grant access from", "submission.sections.upload.form.from-label": "તારીખથી ઍક્સેસ આપો", - // "submission.sections.upload.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.upload.form.from-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", - // "submission.sections.upload.form.from-placeholder": "From", "submission.sections.upload.form.from-placeholder": "થી", - // "submission.sections.upload.form.group-label": "Group", "submission.sections.upload.form.group-label": "સમૂહ", - // "submission.sections.upload.form.group-required": "Group is required.", "submission.sections.upload.form.group-required": "સમૂહ જરૂરી છે.", - // "submission.sections.upload.form.until-label": "Grant access until", "submission.sections.upload.form.until-label": "તારીખ સુધી ઍક્સેસ આપો", - // "submission.sections.upload.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.upload.form.until-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", - // "submission.sections.upload.form.until-placeholder": "Until", "submission.sections.upload.form.until-placeholder": "સુધી", - // "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", - // TODO New key - Add a translation - "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", + "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} સંગ્રહમાં અપલોડ કરેલી ફાઇલો નીચેના સમૂહો અનુસાર ઍક્સેસ કરી શકાશે:", - // "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", - // TODO New key - Add a translation - "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + "submission.sections.upload.header.policy.default.withlist": "કૃપા કરીને નોંધો કે {{collectionName}} સંગ્રહમાં અપલોડ કરેલી ફાઇલો, એકલ ફાઇલ માટે સ્પષ્ટપણે નક્કી કરેલા સમૂહો ઉપરાંત, નીચેના સમૂહો સાથે ઍક્સેસ કરી શકાશે:", - // "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or upload additional files by dragging & dropping them anywhere on the page.", "submission.sections.upload.info": "અહીં તમને વસ્તુમાં હાલની બધી ફાઇલો મળશે. તમે ફાઇલ મેટાડેટા અને ઍક્સેસ શરતોને અપડેટ કરી શકો છો અથવા પેજ પર ક્યાંય પણ ડ્રેગ અને ડ્રોપ કરીને વધારાની ફાઇલો અપલોડ કરી શકો છો.", - // "submission.sections.upload.no-entry": "No", "submission.sections.upload.no-entry": "ના", - // "submission.sections.upload.no-file-uploaded": "No file uploaded yet.", "submission.sections.upload.no-file-uploaded": "હજી સુધી કોઈ ફાઇલ અપલોડ કરવામાં આવી નથી.", - // "submission.sections.upload.save-metadata": "Save metadata", "submission.sections.upload.save-metadata": "મેટાડેટા સાચવો", - // "submission.sections.upload.undo": "Cancel", "submission.sections.upload.undo": "રદ કરો", - // "submission.sections.upload.upload-failed": "Upload failed", "submission.sections.upload.upload-failed": "અપલોડ નિષ્ફળ", - // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "અપલોડ સફળ", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "જ્યારે ચકાસવામાં આવે છે, આ વસ્તુ શોધ/બ્રાઉઝમાં શોધી શકાય તેવી હશે. જ્યારે અનચેક કરવામાં આવે છે, વસ્તુ માત્ર સીધી લિંક દ્વારા ઉપલબ્ધ હશે અને ક્યારેય શોધ/બ્રાઉઝમાં દેખાશે નહીં.", - // "submission.sections.accesses.form.discoverable-label": "Discoverable", "submission.sections.accesses.form.discoverable-label": "શોધી શકાય તેવી", - // "submission.sections.accesses.form.access-condition-label": "Access condition type", "submission.sections.accesses.form.access-condition-label": "ઍક્સેસ શરતો પ્રકાર", - // "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited", "submission.sections.accesses.form.access-condition-hint": "વસ્તુ ડિપોઝિટ થયા પછી વસ્તુ પર લાગુ કરવા માટે ઍક્સેસ શરતો પસંદ કરો", - // "submission.sections.accesses.form.date-required": "Date is required.", "submission.sections.accesses.form.date-required": "તારીખ જરૂરી છે.", - // "submission.sections.accesses.form.date-required-from": "Grant access from date is required.", "submission.sections.accesses.form.date-required-from": "તારીખથી ઍક્સેસ આપો જરૂરી છે.", - // "submission.sections.accesses.form.date-required-until": "Grant access until date is required.", "submission.sections.accesses.form.date-required-until": "તારીખ સુધી ઍક્સેસ આપો જરૂરી છે.", - // "submission.sections.accesses.form.from-label": "Grant access from", "submission.sections.accesses.form.from-label": "તારીખથી ઍક્સેસ આપો", - // "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.accesses.form.from-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", - // "submission.sections.accesses.form.from-placeholder": "From", "submission.sections.accesses.form.from-placeholder": "થી", - // "submission.sections.accesses.form.group-label": "Group", "submission.sections.accesses.form.group-label": "સમૂહ", - // "submission.sections.accesses.form.group-required": "Group is required.", "submission.sections.accesses.form.group-required": "સમૂહ જરૂરી છે.", - // "submission.sections.accesses.form.until-label": "Grant access until", "submission.sections.accesses.form.until-label": "તારીખ સુધી ઍક્સેસ આપો", - // "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.accesses.form.until-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો", - // "submission.sections.accesses.form.until-placeholder": "Until", "submission.sections.accesses.form.until-placeholder": "સુધી", - // "submission.sections.duplicates.none": "No duplicates were detected.", "submission.sections.duplicates.none": "કોઈ નકલો શોધી નથી.", - // "submission.sections.duplicates.detected": "Potential duplicates were detected. Please review the list below.", "submission.sections.duplicates.detected": "સંભવિત નકલો શોધી છે. કૃપા કરીને નીચેની યાદી સમીક્ષા કરો.", - // "submission.sections.duplicates.in-workspace": "This item is in workspace", "submission.sections.duplicates.in-workspace": "આ વસ્તુ વર્કસ્પેસમાં છે", - // "submission.sections.duplicates.in-workflow": "This item is in workflow", "submission.sections.duplicates.in-workflow": "આ વસ્તુ વર્કફ્લોમાં છે", - // "submission.sections.license.granted-label": "I confirm the license above", "submission.sections.license.granted-label": "હું ઉપરના લાઇસન્સને મંજૂરી આપું છું", - // "submission.sections.license.required": "You must accept the license", "submission.sections.license.required": "તમારે લાઇસન્સ સ્વીકારવું પડશે", - // "submission.sections.license.notgranted": "You must accept the license", "submission.sections.license.notgranted": "તમારે લાઇસન્સ સ્વીકારવું પડશે", - // "submission.sections.sherpa.publication.information": "Publication information", "submission.sections.sherpa.publication.information": "પ્રકાશન માહિતી", - // "submission.sections.sherpa.publication.information.title": "Title", "submission.sections.sherpa.publication.information.title": "શીર્ષક", - // "submission.sections.sherpa.publication.information.issns": "ISSNs", "submission.sections.sherpa.publication.information.issns": "ISSNs", - // "submission.sections.sherpa.publication.information.url": "URL", "submission.sections.sherpa.publication.information.url": "URL", - // "submission.sections.sherpa.publication.information.publishers": "Publisher", "submission.sections.sherpa.publication.information.publishers": "પ્રકાશક", - // "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", - // "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", - // "submission.sections.sherpa.publisher.policy": "Publisher Policy", "submission.sections.sherpa.publisher.policy": "પ્રકાશક નીતિ", - // "submission.sections.sherpa.publisher.policy.description": "The below information was found via Sherpa Romeo. Based on the policies of your publisher, it provides advice regarding whether an embargo may be necessary and/or which files you are allowed to upload. If you have questions, please contact your site administrator via the feedback form in the footer.", "submission.sections.sherpa.publisher.policy.description": "નીચેની માહિતી Sherpa Romeo દ્વારા મળી છે. તમારા પ્રકાશકની નીતિઓના આધારે, તે સલાહ આપે છે કે શું એક એમ્બાર્ગો જરૂરી હોઈ શકે છે અને/અથવા તમે કયા ફાઇલો અપલોડ કરી શકો છો. જો તમને પ્રશ્નો હોય, તો કૃપા કરીને ફૂટર માં ફીડબેક ફોર્મ દ્વારા તમારા સાઇટ એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", - // "submission.sections.sherpa.publisher.policy.openaccess": "Open Access pathways permitted by this journal's policy are listed below by article version. Click on a pathway for a more detailed view", "submission.sections.sherpa.publisher.policy.openaccess": "આ જર્નલની નીતિ દ્વારા પરવાનગી આપેલા ઓપન ઍક્સેસ માર્ગો નીચે લેખના સંસ્કરણ દ્વારા સૂચિબદ્ધ છે. વધુ વિગતવાર દૃશ્ય માટે માર્ગ પર ક્લિક કરો", - // "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", - // TODO New key - Add a translation - "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + "submission.sections.sherpa.publisher.policy.more.information": "વધુ માહિતી માટે, કૃપા કરીને નીચેના લિંક જુઓ:", - // "submission.sections.sherpa.publisher.policy.version": "Version", "submission.sections.sherpa.publisher.policy.version": "સંસ્કરણ", - // "submission.sections.sherpa.publisher.policy.embargo": "Embargo", "submission.sections.sherpa.publisher.policy.embargo": "એમ્બાર્ગો", - // "submission.sections.sherpa.publisher.policy.noembargo": "No Embargo", "submission.sections.sherpa.publisher.policy.noembargo": "કોઈ એમ્બાર્ગો નથી", - // "submission.sections.sherpa.publisher.policy.nolocation": "None", "submission.sections.sherpa.publisher.policy.nolocation": "કોઈ નથી", - // "submission.sections.sherpa.publisher.policy.license": "License", "submission.sections.sherpa.publisher.policy.license": "લાઇસન્સ", - // "submission.sections.sherpa.publisher.policy.prerequisites": "Prerequisites", "submission.sections.sherpa.publisher.policy.prerequisites": "પૂર્વશરતો", - // "submission.sections.sherpa.publisher.policy.location": "Location", "submission.sections.sherpa.publisher.policy.location": "સ્થાન", - // "submission.sections.sherpa.publisher.policy.conditions": "Conditions", "submission.sections.sherpa.publisher.policy.conditions": "શરતો", - // "submission.sections.sherpa.publisher.policy.refresh": "Refresh", "submission.sections.sherpa.publisher.policy.refresh": "રીફ્રેશ", - // "submission.sections.sherpa.record.information": "Record Information", "submission.sections.sherpa.record.information": "રેકોર્ડ માહિતી", - // "submission.sections.sherpa.record.information.id": "ID", "submission.sections.sherpa.record.information.id": "ID", - // "submission.sections.sherpa.record.information.date.created": "Date Created", "submission.sections.sherpa.record.information.date.created": "તારીખ બનાવેલ", - // "submission.sections.sherpa.record.information.date.modified": "Last Modified", "submission.sections.sherpa.record.information.date.modified": "છેલ્લે સુધારેલ", - // "submission.sections.sherpa.record.information.uri": "URI", "submission.sections.sherpa.record.information.uri": "URI", - // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations", "submission.sections.sherpa.error.message": "Sherpa માહિતી મેળવવામાં ભૂલ આવી", - // "submission.submit.breadcrumbs": "New submission", "submission.submit.breadcrumbs": "નવું સબમિશન", - // "submission.submit.title": "New submission", "submission.submit.title": "નવું સબમિશન", - // "submission.workflow.generic.delete": "Delete", "submission.workflow.generic.delete": "કાઢી નાખો", - // "submission.workflow.generic.delete-help": "Select this option to discard this item. You will then be asked to confirm it.", "submission.workflow.generic.delete-help": "આ વસ્તુને રદ કરવા માટે આ વિકલ્પ પસંદ કરો. પછી તમને તેની પુષ્ટિ કરવા માટે પૂછવામાં આવશે.", - // "submission.workflow.generic.edit": "Edit", "submission.workflow.generic.edit": "સંપાદિત કરો", - // "submission.workflow.generic.edit-help": "Select this option to change the item's metadata.", "submission.workflow.generic.edit-help": "વસ્તુના મેટાડેટા બદલવા માટે આ વિકલ્પ પસંદ કરો.", - // "submission.workflow.generic.view": "View", "submission.workflow.generic.view": "જુઓ", - // "submission.workflow.generic.view-help": "Select this option to view the item's metadata.", "submission.workflow.generic.view-help": "વસ્તુના મેટાડેટા જોવા માટે આ વિકલ્પ પસંદ કરો.", - // "submission.workflow.generic.submit_select_reviewer": "Select Reviewer", "submission.workflow.generic.submit_select_reviewer": "સમીક્ષક પસંદ કરો", - // "submission.workflow.generic.submit_select_reviewer-help": "", "submission.workflow.generic.submit_select_reviewer-help": "", - // "submission.workflow.generic.submit_score": "Rate", "submission.workflow.generic.submit_score": "મૂલ્યાંકન", - // "submission.workflow.generic.submit_score-help": "", "submission.workflow.generic.submit_score-help": "", - // "submission.workflow.tasks.claimed.approve": "Approve", "submission.workflow.tasks.claimed.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": "જો તમે વસ્તુની સમીક્ષા કરી છે અને તે સંગ્રહમાં સમાવેશ માટે યોગ્ય છે, તો \\\"મંજૂર કરો\\\" પસંદ કરો.", - // "submission.workflow.tasks.claimed.edit": "Edit", "submission.workflow.tasks.claimed.edit": "સંપાદિત કરો", - // "submission.workflow.tasks.claimed.edit_help": "Select this option to change the item's metadata.", "submission.workflow.tasks.claimed.edit_help": "વસ્તુના મેટાડેટા બદલવા માટે આ વિકલ્પ પસંદ કરો.", - // "submission.workflow.tasks.claimed.decline": "Decline", "submission.workflow.tasks.claimed.decline": "નકારો", - // "submission.workflow.tasks.claimed.decline_help": "", "submission.workflow.tasks.claimed.decline_help": "", - // "submission.workflow.tasks.claimed.reject.reason.info": "Please enter your reason for rejecting the submission into the box below, indicating whether the submitter may fix a problem and resubmit.", "submission.workflow.tasks.claimed.reject.reason.info": "કૃપા કરીને નીચેના બોક્સમાં સબમિશનને નકારવાના તમારા કારણ દાખલ કરો, જે દર્શાવે છે કે સબમિટર સમસ્યા ઠીક કરી શકે છે અને ફરીથી સબમિટ કરી શકે છે.", - // "submission.workflow.tasks.claimed.reject.reason.placeholder": "Describe the reason of reject", "submission.workflow.tasks.claimed.reject.reason.placeholder": "નકારના કારણનું વર્ણન કરો", - // "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item", "submission.workflow.tasks.claimed.reject.reason.submit": "વસ્તુ નકારો", - // "submission.workflow.tasks.claimed.reject.reason.title": "Reason", "submission.workflow.tasks.claimed.reject.reason.title": "કારણ", - // "submission.workflow.tasks.claimed.reject.submit": "Reject", "submission.workflow.tasks.claimed.reject.submit": "નકારો", - // "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is not 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": "જો તમે વસ્તુની સમીક્ષા કરી છે અને તે સંગ્રહમાં સમાવેશ માટે યોગ્ય નથી, તો \\\"નકારો\\\" પસંદ કરો. પછી તમને સંદેશ દાખલ કરવા માટે પૂછવામાં આવશે કે વસ્તુ કેમ અનુકૂળ નથી, અને સબમિટરએ કંઈક બદલવું જોઈએ અને ફરીથી સબમિટ કરવું જોઈએ.", - // "submission.workflow.tasks.claimed.return": "Return to pool", "submission.workflow.tasks.claimed.return": "પુલ પર પાછા જાઓ", - // "submission.workflow.tasks.claimed.return_help": "Return the task to the pool so that another user may perform the task.", "submission.workflow.tasks.claimed.return_help": "ટાસ્કને પુલ પર પાછા આપો જેથી અન્ય વપરાશકર્તા ટાસ્ક કરી શકે.", - // "submission.workflow.tasks.generic.error": "Error occurred during operation...", "submission.workflow.tasks.generic.error": "ઓપરેશન દરમિયાન ભૂલ આવી...", - // "submission.workflow.tasks.generic.processing": "Processing...", "submission.workflow.tasks.generic.processing": "પ્રક્રિયા...", - // "submission.workflow.tasks.generic.submitter": "Submitter", "submission.workflow.tasks.generic.submitter": "સબમિટર", - // "submission.workflow.tasks.generic.success": "Operation successful", "submission.workflow.tasks.generic.success": "ઓપરેશન સફળ", - // "submission.workflow.tasks.pool.claim": "Claim", "submission.workflow.tasks.pool.claim": "દાવો", - // "submission.workflow.tasks.pool.claim_help": "Assign this task to yourself.", "submission.workflow.tasks.pool.claim_help": "આ ટાસ્કને તમારા માટે સોંપો.", - // "submission.workflow.tasks.pool.hide-detail": "Hide detail", "submission.workflow.tasks.pool.hide-detail": "વિગત છુપાવો", - // "submission.workflow.tasks.pool.show-detail": "Show detail", "submission.workflow.tasks.pool.show-detail": "વિગત બતાવો", - // "submission.workflow.tasks.duplicates": "potential duplicates were detected for this item. Claim and edit this item to see details.", "submission.workflow.tasks.duplicates": "આ વસ્તુ માટે સંભવિત નકલો શોધી છે. વિગતો જોવા માટે આ વસ્તુનો દાવો કરો અને સંપાદિત કરો.", - // "submission.workspace.generic.view": "View", "submission.workspace.generic.view": "જુઓ", - // "submission.workspace.generic.view-help": "Select this option to view the item's metadata.", "submission.workspace.generic.view-help": "વસ્તુના મેટાડેટા જોવા માટે આ વિકલ્પ પસંદ કરો.", - // "submitter.empty": "N/A", "submitter.empty": "N/A", - // "subscriptions.title": "Subscriptions", "subscriptions.title": "સબ્સ્ક્રિપ્શન્સ", - // "subscriptions.item": "Subscriptions for items", "subscriptions.item": "વસ્તુઓ માટે સબ્સ્ક્રિપ્શન્સ", - // "subscriptions.collection": "Subscriptions for collections", "subscriptions.collection": "સંગ્રહો માટે સબ્સ્ક્રિપ્શન્સ", - // "subscriptions.community": "Subscriptions for communities", "subscriptions.community": "સમુદાયો માટે સબ્સ્ક્રિપ્શન્સ", - // "subscriptions.subscription_type": "Subscription type", "subscriptions.subscription_type": "સબ્સ્ક્રિપ્શન પ્રકાર", - // "subscriptions.frequency": "Subscription frequency", "subscriptions.frequency": "સબ્સ્ક્રિપ્શન આવર્તન", - // "subscriptions.frequency.D": "Daily", "subscriptions.frequency.D": "દૈનિક", - // "subscriptions.frequency.M": "Monthly", "subscriptions.frequency.M": "માસિક", - // "subscriptions.frequency.W": "Weekly", "subscriptions.frequency.W": "સાપ્તાહિક", - // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "સબ્સ્ક્રાઇબ કરો", - // "subscriptions.unsubscribe": "Unsubscribe", "subscriptions.unsubscribe": "સબ્સ્ક્રિપ્શન રદ કરો", - // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "સબ્સ્ક્રિપ્શન્સ", - // "subscriptions.modal.type-frequency": "Type and frequency", "subscriptions.modal.type-frequency": "પ્રકાર અને આવર્તન", - // "subscriptions.modal.close": "Close", "subscriptions.modal.close": "બંધ કરો", - // "subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile", "subscriptions.modal.delete-info": "આ સબ્સ્ક્રિપ્શનને દૂર કરવા માટે, કૃપા કરીને તમારા વપરાશકર્તા પ્રોફાઇલ હેઠળ \\\"સબ્સ્ક્રિપ્શન્સ\\\" પેજ પર જાઓ", - // "subscriptions.modal.new-subscription-form.type.content": "Content", "subscriptions.modal.new-subscription-form.type.content": "સામગ્રી", - // "subscriptions.modal.new-subscription-form.frequency.D": "Daily", "subscriptions.modal.new-subscription-form.frequency.D": "દૈનિક", - // "subscriptions.modal.new-subscription-form.frequency.W": "Weekly", "subscriptions.modal.new-subscription-form.frequency.W": "સાપ્તાહિક", - // "subscriptions.modal.new-subscription-form.frequency.M": "Monthly", "subscriptions.modal.new-subscription-form.frequency.M": "માસિક", - // "subscriptions.modal.new-subscription-form.submit": "Submit", "subscriptions.modal.new-subscription-form.submit": "સબમિટ કરો", - // "subscriptions.modal.new-subscription-form.processing": "Processing...", "subscriptions.modal.new-subscription-form.processing": "પ્રક્રિયા...", - // "subscriptions.modal.create.success": "Subscribed to {{ type }} successfully.", "subscriptions.modal.create.success": "{{ type }} માટે સફળતાપૂર્વક સબ્સ્ક્રાઇબ કર્યું.", - // "subscriptions.modal.delete.success": "Subscription deleted successfully", "subscriptions.modal.delete.success": "સબ્સ્ક્રિપ્શન સફળતાપૂર્વક દૂર કર્યું", - // "subscriptions.modal.update.success": "Subscription to {{ type }} updated successfully", "subscriptions.modal.update.success": "{{ type }} માટે સબ્સ્ક્રિપ્શન સફળતાપૂર્વક અપડેટ કર્યું", - // "subscriptions.modal.create.error": "An error occurs during the subscription creation", "subscriptions.modal.create.error": "સબ્સ્ક્રિપ્શન બનાવવાની પ્રક્રિયા દરમિયાન ભૂલ આવી", - // "subscriptions.modal.delete.error": "An error occurs during the subscription delete", "subscriptions.modal.delete.error": "સબ્સ્ક્રિપ્શન દૂર કરતી વખતે ભૂલ આવી", - // "subscriptions.modal.update.error": "An error occurs during the subscription update", "subscriptions.modal.update.error": "સબ્સ્ક્રિપ્શન અપડેટ કરતી વખતે ભૂલ આવી", - // "subscriptions.table.dso": "Subject", "subscriptions.table.dso": "વિષય", - // "subscriptions.table.subscription_type": "Subscription Type", "subscriptions.table.subscription_type": "સબ્સ્ક્રિપ્શન પ્રકાર", - // "subscriptions.table.subscription_frequency": "Subscription Frequency", "subscriptions.table.subscription_frequency": "સબ્સ્ક્રિપ્શન આવર્તન", - // "subscriptions.table.action": "Action", "subscriptions.table.action": "ક્રિયા", - // "subscriptions.table.edit": "Edit", "subscriptions.table.edit": "સંપાદિત કરો", - // "subscriptions.table.delete": "Delete", "subscriptions.table.delete": "કાઢી નાખો", - // "subscriptions.table.not-available": "Not available", "subscriptions.table.not-available": "ઉપલબ્ધ નથી", - // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "સબ્સ્ક્રાઇબ કરેલી વસ્તુને કાઢી નાખવામાં આવી છે, અથવા તમને હાલમાં તેને જોવા માટે પરવાનગી નથી", - // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", "subscriptions.table.empty.message": "તમારે આ સમયે કોઈ સબ્સ્ક્રિપ્શન નથી. સમુદાય અથવા સંગ્રહ માટે ઇમેઇલ અપડેટ્સ માટે સબ્સ્ક્રાઇબ કરવા માટે, વસ્તુના પેજ પર સબ્સ્ક્રિપ્શન બટનનો ઉપયોગ કરો.", - // "thumbnail.default.alt": "Thumbnail Image", "thumbnail.default.alt": "થંબનેલ છબી", - // "thumbnail.default.placeholder": "No Thumbnail Available", "thumbnail.default.placeholder": "કોઈ થંબનેલ ઉપલબ્ધ નથી", - // "thumbnail.project.alt": "Project Logo", "thumbnail.project.alt": "પ્રોજેક્ટ લોગો", - // "thumbnail.project.placeholder": "Project Placeholder Image", "thumbnail.project.placeholder": "પ્રોજેક્ટ પ્લેસહોલ્ડર છબી", - // "thumbnail.orgunit.alt": "OrgUnit Logo", "thumbnail.orgunit.alt": "OrgUnit લોગો", - // "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image", "thumbnail.orgunit.placeholder": "OrgUnit પ્લેસહોલ્ડર છબી", - // "thumbnail.person.alt": "Profile Picture", "thumbnail.person.alt": "પ્રોફાઇલ પિક્ચર", - // "thumbnail.person.placeholder": "No Profile Picture Available", "thumbnail.person.placeholder": "કોઈ પ્રોફાઇલ પિક્ચર ઉપલબ્ધ નથી", - // "title": "DSpace", "title": "DSpace", - // "vocabulary-treeview.header": "Hierarchical tree view", "vocabulary-treeview.header": "હાયરાર્કિકલ ટ્રી વ્યૂ", - // "vocabulary-treeview.load-more": "Load more", "vocabulary-treeview.load-more": "વધુ લોડ કરો", - // "vocabulary-treeview.search.form.reset": "Reset", "vocabulary-treeview.search.form.reset": "રીસેટ", - // "vocabulary-treeview.search.form.search": "Search", "vocabulary-treeview.search.form.search": "શોધો", - // "vocabulary-treeview.search.form.search-placeholder": "Filter results by typing the first few letters", "vocabulary-treeview.search.form.search-placeholder": "પરિણામોને ફિલ્ટર કરવા માટે પ્રથમ થોડા અક્ષરો લખો", - // "vocabulary-treeview.search.no-result": "There were no items to show", "vocabulary-treeview.search.no-result": "દેખાવ માટે કોઈ વસ્તુઓ નહોતી", - // "vocabulary-treeview.tree.description.nsi": "The Norwegian Science Index", "vocabulary-treeview.tree.description.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ", - // "vocabulary-treeview.tree.description.srsc": "Research Subject Categories", "vocabulary-treeview.tree.description.srsc": "રિસર્ચ સબજેક્ટ કેટેગરીઝ", - // "vocabulary-treeview.info": "Select a subject to add as search filter", "vocabulary-treeview.info": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો", - // "uploader.browse": "browse", "uploader.browse": "બ્રાઉઝ કરો", - // "uploader.drag-message": "Drag & Drop your files here", "uploader.drag-message": "તમારી ફાઇલો અહીં ડ્રેગ અને ડ્રોપ કરો", - // "uploader.delete.btn-title": "Delete", "uploader.delete.btn-title": "કાઢી નાખો", - // "uploader.or": ", or ", "uploader.or": ", અથવા ", - // "uploader.processing": "Processing uploaded file(s)... (it's now safe to close this page)", "uploader.processing": "અપલોડ કરેલી ફાઇલોની પ્રક્રિયા કરી રહ્યું છે... (આ પેજને બંધ કરવું સુરક્ષિત છે)", - // "uploader.queue-length": "Queue length", "uploader.queue-length": "કતારની લંબાઈ", - // "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": "વાસ્તવિક મેટાડેટા તરીકે વર્ચ્યુઅલ મેટાડેટા સાચવવા માટે તમે કયા પ્રકારો પસંદ કરવા માંગો છો તે પસંદ કરો", - // "virtual-metadata.delete-item.modal-head": "The virtual metadata of this relation", "virtual-metadata.delete-item.modal-head": "આ સંબંધના વર્ચ્યુઅલ મેટાડેટા", - // "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": "વાસ્તવિક મેટાડેટા તરીકે વર્ચ્યુઅલ મેટાડેટા સાચવવા માટે તમે કયા વસ્તુઓ પસંદ કરવા માંગો છો તે પસંદ કરો", - // "supervisedWorkspace.search.results.head": "Supervised Items", "supervisedWorkspace.search.results.head": "સુપરવાઇઝ્ડ વસ્તુઓ", - // "workspace.search.results.head": "Your submissions", "workspace.search.results.head": "તમારા સબમિશન્સ", - // "workflowAdmin.search.results.head": "Administer Workflow", "workflowAdmin.search.results.head": "વર્કફ્લો સંચાલન", - // "workflow.search.results.head": "Workflow tasks", "workflow.search.results.head": "વર્કફ્લો ટાસ્ક્સ", - // "supervision.search.results.head": "Workflow and Workspace tasks", "supervision.search.results.head": "વર્કફ્લો અને વર્કસ્પેસ ટાસ્ક્સ", - // "workflow-item.edit.breadcrumbs": "Edit workflowitem", "workflow-item.edit.breadcrumbs": "વર્કફ્લો આઇટમ સંપાદિત કરો", - // "workflow-item.edit.title": "Edit workflowitem", "workflow-item.edit.title": "વર્કફ્લો આઇટમ સંપાદિત કરો", - // "workflow-item.delete.notification.success.title": "Deleted", "workflow-item.delete.notification.success.title": "કાઢી નાખ્યું", - // "workflow-item.delete.notification.success.content": "This workflow item was successfully deleted", "workflow-item.delete.notification.success.content": "આ વર્કફ્લો આઇટમ સફળતાપૂર્વક કાઢી નાખવામાં આવ્યું", - // "workflow-item.delete.notification.error.title": "Something went wrong", "workflow-item.delete.notification.error.title": "કંઈક ખોટું થયું", - // "workflow-item.delete.notification.error.content": "The workflow item could not be deleted", "workflow-item.delete.notification.error.content": "વર્કફ્લો આઇટમને કાઢી શકાતું નથી", - // "workflow-item.delete.title": "Delete workflow item", "workflow-item.delete.title": "વર્કફ્લો આઇટમ કાઢી નાખો", - // "workflow-item.delete.header": "Delete workflow item", "workflow-item.delete.header": "વર્કફ્લો આઇટમ કાઢી નાખો", - // "workflow-item.delete.button.cancel": "Cancel", "workflow-item.delete.button.cancel": "રદ કરો", - // "workflow-item.delete.button.confirm": "Delete", "workflow-item.delete.button.confirm": "કાઢી નાખો", - // "workflow-item.send-back.notification.success.title": "Sent back to submitter", "workflow-item.send-back.notification.success.title": "સબમિટર પર પાછું મોકલ્યું", - // "workflow-item.send-back.notification.success.content": "This workflow item was successfully sent back to the submitter", "workflow-item.send-back.notification.success.content": "આ વર્કફ્લો આઇટમ સફળતાપૂર્વક સબમિટર પર પાછું મોકલવામાં આવ્યું", - // "workflow-item.send-back.notification.error.title": "Something went wrong", "workflow-item.send-back.notification.error.title": "કંઈક ખોટું થયું", - // "workflow-item.send-back.notification.error.content": "The workflow item could not be sent back to the submitter", "workflow-item.send-back.notification.error.content": "વર્કફ્લો આઇટમને સબમિટર પર પાછું મોકલી શકાતું નથી", - // "workflow-item.send-back.title": "Send workflow item back to submitter", "workflow-item.send-back.title": "વર્કફ્લો આઇટમ સબમિટર પર પાછું મોકલો", - // "workflow-item.send-back.header": "Send workflow item back to submitter", "workflow-item.send-back.header": "વર્કફ્લો આઇટમ સબમિટર પર પાછું મોકલો", - // "workflow-item.send-back.button.cancel": "Cancel", "workflow-item.send-back.button.cancel": "રદ કરો", - // "workflow-item.send-back.button.confirm": "Send back", "workflow-item.send-back.button.confirm": "પાછું મોકલો", - // "workflow-item.view.breadcrumbs": "Workflow View", "workflow-item.view.breadcrumbs": "વર્કફ્લો દૃશ્ય", - // "workspace-item.view.breadcrumbs": "Workspace View", "workspace-item.view.breadcrumbs": "વર્કસ્પેસ દૃશ્ય", - // "workspace-item.view.title": "Workspace View", "workspace-item.view.title": "વર્કસ્પેસ દૃશ્ય", - // "workspace-item.delete.breadcrumbs": "Workspace Delete", "workspace-item.delete.breadcrumbs": "વર્કસ્પેસ કાઢી નાખો", - // "workspace-item.delete.header": "Delete workspace item", "workspace-item.delete.header": "વર્કસ્પેસ આઇટમ કાઢી નાખો", - // "workspace-item.delete.button.confirm": "Delete", "workspace-item.delete.button.confirm": "કાઢી નાખો", - // "workspace-item.delete.button.cancel": "Cancel", "workspace-item.delete.button.cancel": "રદ કરો", - // "workspace-item.delete.notification.success.title": "Deleted", "workspace-item.delete.notification.success.title": "કાઢી નાખ્યું", - // "workspace-item.delete.title": "This workspace item was successfully deleted", "workspace-item.delete.title": "આ વર્કસ્પેસ આઇટમ સફળતાપૂર્વક કાઢી નાખવામાં આવ્યું", - // "workspace-item.delete.notification.error.title": "Something went wrong", "workspace-item.delete.notification.error.title": "કંઈક ખોટું થયું", - // "workspace-item.delete.notification.error.content": "The workspace item could not be deleted", "workspace-item.delete.notification.error.content": "વર્કસ્પેસ આઇટમને કાઢી શકાતું નથી", - // "workflow-item.advanced.title": "Advanced workflow", "workflow-item.advanced.title": "ઉન્નત વર્કફ્લો", - // "workflow-item.selectrevieweraction.notification.success.title": "Selected reviewer", "workflow-item.selectrevieweraction.notification.success.title": "પસંદ કરેલા સમીક્ષક", - // "workflow-item.selectrevieweraction.notification.success.content": "The reviewer for this workflow item has been successfully selected", "workflow-item.selectrevieweraction.notification.success.content": "આ વર્કફ્લો આઇટમ માટે સમીક્ષક સફળતાપૂર્વક પસંદ કરવામાં આવ્યો છે", - // "workflow-item.selectrevieweraction.notification.error.title": "Something went wrong", "workflow-item.selectrevieweraction.notification.error.title": "કંઈક ખોટું થયું", - // "workflow-item.selectrevieweraction.notification.error.content": "Couldn't select the reviewer for this workflow item", "workflow-item.selectrevieweraction.notification.error.content": "આ વર્કફ્લો આઇટમ માટે સમીક્ષક પસંદ કરી શકાતું નથી", - // "workflow-item.selectrevieweraction.title": "Select Reviewer", "workflow-item.selectrevieweraction.title": "સમીક્ષક પસંદ કરો", - // "workflow-item.selectrevieweraction.header": "Select Reviewer", "workflow-item.selectrevieweraction.header": "સમીક્ષક પસંદ કરો", - // "workflow-item.selectrevieweraction.button.cancel": "Cancel", "workflow-item.selectrevieweraction.button.cancel": "રદ કરો", - // "workflow-item.selectrevieweraction.button.confirm": "Confirm", "workflow-item.selectrevieweraction.button.confirm": "પુષ્ટિ કરો", - // "workflow-item.scorereviewaction.notification.success.title": "Rating review", "workflow-item.scorereviewaction.notification.success.title": "મૂલ્યાંકન સમીક્ષા", - // "workflow-item.scorereviewaction.notification.success.content": "The rating for this item workflow item has been successfully submitted", "workflow-item.scorereviewaction.notification.success.content": "આ આઇટમ વર્કફ્લો આઇટમ માટે મૂલ્યાંકન સફળતાપૂર્વક સબમિટ કર્યું છે", - // "workflow-item.scorereviewaction.notification.error.title": "Something went wrong", "workflow-item.scorereviewaction.notification.error.title": "કંઈક ખોટું થયું", - // "workflow-item.scorereviewaction.notification.error.content": "Couldn't rate this item", "workflow-item.scorereviewaction.notification.error.content": "આ આઇટમને મૂલ્યાંકન કરી શકાતું નથી", - // "workflow-item.scorereviewaction.title": "Rate this item", "workflow-item.scorereviewaction.title": "આ આઇટમને મૂલ્યાંકન કરો", - // "workflow-item.scorereviewaction.header": "Rate this item", "workflow-item.scorereviewaction.header": "આ આઇટમને મૂલ્યાંકન કરો", - // "workflow-item.scorereviewaction.button.cancel": "Cancel", "workflow-item.scorereviewaction.button.cancel": "રદ કરો", - // "workflow-item.scorereviewaction.button.confirm": "Confirm", "workflow-item.scorereviewaction.button.confirm": "પુષ્ટિ કરો", - // "idle-modal.header": "Session will expire soon", "idle-modal.header": "સત્ર ટૂંક સમયમાં સમાપ્ત થશે", - // "idle-modal.info": "For security reasons, user sessions expire after {{ timeToExpire }} minutes of inactivity. Your session will expire soon. Would you like to extend it or log out?", "idle-modal.info": "સુરક્ષા કારણોસર, વપરાશકર્તા સત્રો {{ timeToExpire }} મિનિટની નિષ્ક્રિયતા પછી સમાપ્ત થાય છે. તમારું સત્ર ટૂંક સમયમાં સમાપ્ત થશે. શું તમે તેને વિસ્તૃત કરવા માંગો છો અથવા લોગ આઉટ કરવા માંગો છો?", - // "idle-modal.log-out": "Log out", "idle-modal.log-out": "લોગ આઉટ", - // "idle-modal.extend-session": "Extend session", "idle-modal.extend-session": "સત્ર વિસ્તૃત કરો", - // "researcher.profile.action.processing": "Processing...", "researcher.profile.action.processing": "પ્રક્રિયા...", - // "researcher.profile.associated": "Researcher profile associated", "researcher.profile.associated": "રિસર્ચર પ્રોફાઇલ સંકળાયેલ", - // "researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility", "researcher.profile.change-visibility.fail": "પ્રોફાઇલ દૃશ્યતા બદલતી વખતે અનપેક્ષિત ભૂલ આવી", - // "researcher.profile.create.new": "Create new", "researcher.profile.create.new": "નવું બનાવો", - // "researcher.profile.create.success": "Researcher profile created successfully", "researcher.profile.create.success": "રિસર્ચર પ્રોફાઇલ સફળતાપૂર્વક બનાવવામાં આવી", - // "researcher.profile.create.fail": "An error occurs during the researcher profile creation", "researcher.profile.create.fail": "રિસર્ચર પ્રોફાઇલ બનાવવાની પ્રક્રિયા દરમિયાન ભૂલ આવી", - // "researcher.profile.delete": "Delete", "researcher.profile.delete": "કાઢી નાખો", - // "researcher.profile.expose": "Expose", "researcher.profile.expose": "પ્રદર્શિત કરો", - // "researcher.profile.hide": "Hide", "researcher.profile.hide": "છુપાવો", - // "researcher.profile.not.associated": "Researcher profile not yet associated", "researcher.profile.not.associated": "રિસર્ચર પ્રોફાઇલ હજી સુધી સંકળાયેલ નથી", - // "researcher.profile.view": "View", "researcher.profile.view": "જુઓ", - // "researcher.profile.private.visibility": "PRIVATE", "researcher.profile.private.visibility": "ખાનગી", - // "researcher.profile.public.visibility": "PUBLIC", "researcher.profile.public.visibility": "જાહેર", - // "researcher.profile.status": "Status:", - // TODO New key - Add a translation - "researcher.profile.status": "Status:", + "researcher.profile.status": "સ્થિતિ:", - // "researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).", "researcherprofile.claim.not-authorized": "તમે આ આઇટમનો દાવો કરવા માટે અધિકૃત નથી. વધુ વિગતો માટે એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", - // "researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later", "researcherprofile.error.claim.body": "પ્રોફાઇલનો દાવો કરતી વખતે ભૂલ આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો", - // "researcherprofile.error.claim.title": "Error", "researcherprofile.error.claim.title": "ભૂલ", - // "researcherprofile.success.claim.body": "Profile claimed with success", "researcherprofile.success.claim.body": "પ્રોફાઇલનો દાવો સફળતાપૂર્વક થયો", - // "researcherprofile.success.claim.title": "Success", "researcherprofile.success.claim.title": "સફળતા", - // "person.page.orcid.create": "Create an ORCID ID", "person.page.orcid.create": "ORCID ID બનાવો", - // "person.page.orcid.granted-authorizations": "Granted authorizations", "person.page.orcid.granted-authorizations": "મંજૂર કરેલી અધિકૃતતાઓ", - // "person.page.orcid.grant-authorizations": "Grant authorizations", "person.page.orcid.grant-authorizations": "અધિકૃતતાઓ આપો", - // "person.page.orcid.link": "Connect to ORCID ID", "person.page.orcid.link": "ORCID ID સાથે કનેક્ટ કરો", - // "person.page.orcid.link.processing": "Linking profile to ORCID...", "person.page.orcid.link.processing": "પ્રોફાઇલને ORCID સાથે લિંક કરી રહ્યું છે...", - // "person.page.orcid.link.error.message": "Something went wrong while connecting the profile with ORCID. If the problem persists, contact the administrator.", "person.page.orcid.link.error.message": "પ્રોફાઇલને ORCID સાથે કનેક્ટ કરતી વખતે કંઈક ખોટું થયું. જો સમસ્યા ચાલુ રહે, તો એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.", - // "person.page.orcid.orcid-not-linked-message": "The ORCID iD of this profile ({{ orcid }}) has not yet been connected to an account on the ORCID registry or the connection is expired.", "person.page.orcid.orcid-not-linked-message": "આ પ્રોફાઇલનો ORCID iD ({{ orcid }}) હજી સુધી ORCID રજિસ્ટ્રી સાથે કનેક્ટ થયો નથી અથવા કનેક્શન સમાપ્ત થઈ ગયું છે.", - // "person.page.orcid.unlink": "Disconnect from ORCID", "person.page.orcid.unlink": "ORCID થી ડિસકનેક્ટ કરો", - // "person.page.orcid.unlink.processing": "Processing...", "person.page.orcid.unlink.processing": "પ્રક્રિયા...", - // "person.page.orcid.missing-authorizations": "Missing authorizations", "person.page.orcid.missing-authorizations": "અધિકૃતતાઓ ગુમ છે", - // "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", - // TODO New key - Add a translation - "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + "person.page.orcid.missing-authorizations-message": "નીચેની અધિકૃતતાઓ ગુમ છે:", - // "person.page.orcid.no-missing-authorizations-message": "Great! This box is empty, so you have granted all access rights to use all functions offers by your institution.", "person.page.orcid.no-missing-authorizations-message": "શાનદાર! આ બોક્સ ખાલી છે, તેથી તમે તમારી સંસ્થા દ્વારા ઓફર કરેલી બધી સુવિધાઓનો ઉપયોગ કરવા માટે બધી ઍક્સેસ અધિકૃતતાઓ આપી છે.", - // "person.page.orcid.no-orcid-message": "No ORCID iD associated yet. By clicking on the button below it is possible to link this profile with an ORCID account.", "person.page.orcid.no-orcid-message": "હજી સુધી કોઈ ORCID iD સંકળાયેલ નથી. નીચેના બટન પર ક્લિક કરીને આ પ્રોફાઇલને ORCID એકાઉન્ટ સાથે લિંક કરી શકાય છે.", - // "person.page.orcid.profile-preferences": "Profile preferences", "person.page.orcid.profile-preferences": "પ્રોફાઇલ પસંદગીઓ", - // "person.page.orcid.funding-preferences": "Funding preferences", "person.page.orcid.funding-preferences": "ફંડિંગ પસંદગીઓ", - // "person.page.orcid.publications-preferences": "Publication preferences", "person.page.orcid.publications-preferences": "પ્રકાશન પસંદગીઓ", - // "person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator", "person.page.orcid.remove-orcid-message": "જો તમારે તમારો ORCID દૂર કરવાની જરૂર હોય, તો કૃપા કરીને રિપોઝિટરી એડમિનિસ્ટ્રેટરનો સંપર્ક કરો", - // "person.page.orcid.save.preference.changes": "Update settings", "person.page.orcid.save.preference.changes": "સેટિંગ્સ અપડેટ કરો", - // "person.page.orcid.sync-profile.affiliation": "Affiliation", "person.page.orcid.sync-profile.affiliation": "સંબંધ", - // "person.page.orcid.sync-profile.biographical": "Biographical data", "person.page.orcid.sync-profile.biographical": "જીવની માહિતી", - // "person.page.orcid.sync-profile.education": "Education", "person.page.orcid.sync-profile.education": "શિક્ષણ", - // "person.page.orcid.sync-profile.identifiers": "Identifiers", "person.page.orcid.sync-profile.identifiers": "ઓળખકર્તાઓ", - // "person.page.orcid.sync-fundings.all": "All fundings", "person.page.orcid.sync-fundings.all": "બધા ફંડિંગ્સ", - // "person.page.orcid.sync-fundings.mine": "My fundings", "person.page.orcid.sync-fundings.mine": "મારા ફંડિંગ્સ", - // "person.page.orcid.sync-fundings.my_selected": "Selected fundings", "person.page.orcid.sync-fundings.my_selected": "પસંદ કરેલા ફંડિંગ્સ", - // "person.page.orcid.sync-fundings.disabled": "Disabled", "person.page.orcid.sync-fundings.disabled": "અક્ષમ", - // "person.page.orcid.sync-publications.all": "All publications", "person.page.orcid.sync-publications.all": "બધા પ્રકાશનો", - // "person.page.orcid.sync-publications.mine": "My publications", "person.page.orcid.sync-publications.mine": "મારા પ્રકાશનો", - // "person.page.orcid.sync-publications.my_selected": "Selected publications", "person.page.orcid.sync-publications.my_selected": "પસંદ કરેલા પ્રકાશનો", - // "person.page.orcid.sync-publications.disabled": "Disabled", "person.page.orcid.sync-publications.disabled": "અક્ષમ", - // "person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry", "person.page.orcid.sync-queue.discard": "બદલાવ રદ કરો અને ORCID રજિસ્ટ્રી સાથે સુમેળ ન કરો", - // "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed", "person.page.orcid.sync-queue.discard.error": "ORCID કતાર રેકોર્ડને રદ કરવામાં નિષ્ફળ", - // "person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully", "person.page.orcid.sync-queue.discard.success": "ORCID કતાર રેકોર્ડ સફળતાપૂર્વક રદ કરવામાં આવ્યો", - // "person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty", "person.page.orcid.sync-queue.empty-message": "ORCID કતાર રજિસ્ટ્રી ખાલી છે", - // "person.page.orcid.sync-queue.table.header.type": "Type", "person.page.orcid.sync-queue.table.header.type": "પ્રકાર", - // "person.page.orcid.sync-queue.table.header.description": "Description", "person.page.orcid.sync-queue.table.header.description": "વર્ણન", - // "person.page.orcid.sync-queue.table.header.action": "Action", "person.page.orcid.sync-queue.table.header.action": "ક્રિયા", - // "person.page.orcid.sync-queue.description.affiliation": "Affiliations", "person.page.orcid.sync-queue.description.affiliation": "સંબંધ", - // "person.page.orcid.sync-queue.description.country": "Country", "person.page.orcid.sync-queue.description.country": "દેશ", - // "person.page.orcid.sync-queue.description.education": "Educations", "person.page.orcid.sync-queue.description.education": "શિક્ષણ", - // "person.page.orcid.sync-queue.description.external_ids": "External ids", "person.page.orcid.sync-queue.description.external_ids": "બાહ્ય ઓળખકર્તાઓ", - // "person.page.orcid.sync-queue.description.other_names": "Other names", "person.page.orcid.sync-queue.description.other_names": "અન્ય નામો", - // "person.page.orcid.sync-queue.description.qualification": "Qualifications", "person.page.orcid.sync-queue.description.qualification": "લાયકાત", - // "person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls", "person.page.orcid.sync-queue.description.researcher_urls": "શોધક URLs", - // "person.page.orcid.sync-queue.description.keywords": "Keywords", "person.page.orcid.sync-queue.description.keywords": "કીવર્ડ્સ", - // "person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry", "person.page.orcid.sync-queue.tooltip.insert": "ORCID રજિસ્ટ્રીમાં નવી એન્ટ્રી ઉમેરો", - // "person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry", "person.page.orcid.sync-queue.tooltip.update": "આ એન્ટ્રી ORCID રજિસ્ટ્રી પર અપડેટ કરો", - // "person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry", "person.page.orcid.sync-queue.tooltip.delete": "આ એન્ટ્રી ORCID રજિસ્ટ્રીમાંથી દૂર કરો", - // "person.page.orcid.sync-queue.tooltip.publication": "Publication", "person.page.orcid.sync-queue.tooltip.publication": "પ્રકાશન", - // "person.page.orcid.sync-queue.tooltip.project": "Project", "person.page.orcid.sync-queue.tooltip.project": "પ્રોજેક્ટ", - // "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", "person.page.orcid.sync-queue.tooltip.affiliation": "સંબંધ", - // "person.page.orcid.sync-queue.tooltip.education": "Education", "person.page.orcid.sync-queue.tooltip.education": "શિક્ષણ", - // "person.page.orcid.sync-queue.tooltip.qualification": "Qualification", "person.page.orcid.sync-queue.tooltip.qualification": "લાયકાત", - // "person.page.orcid.sync-queue.tooltip.other_names": "Other name", "person.page.orcid.sync-queue.tooltip.other_names": "અન્ય નામ", - // "person.page.orcid.sync-queue.tooltip.country": "Country", "person.page.orcid.sync-queue.tooltip.country": "દેશ", - // "person.page.orcid.sync-queue.tooltip.keywords": "Keyword", "person.page.orcid.sync-queue.tooltip.keywords": "કીવર્ડ", - // "person.page.orcid.sync-queue.tooltip.external_ids": "External identifier", "person.page.orcid.sync-queue.tooltip.external_ids": "બાહ્ય ઓળખકર્તા", - // "person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url", "person.page.orcid.sync-queue.tooltip.researcher_urls": "શોધક URL", - // "person.page.orcid.sync-queue.send": "Synchronize with ORCID registry", "person.page.orcid.sync-queue.send": "ORCID રજિસ્ટ્રી સાથે સુમેળ કરો", - // "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.", "person.page.orcid.sync-queue.send.unauthorized-error.title": "અધિકૃતતાઓ ગુમ થવાને કારણે ORCID પર સબમિશન નિષ્ફળ થયું.", - // "person.page.orcid.sync-queue.send.unauthorized-error.content": "Click here to grant again the required permissions. If the problem persists, contact the administrator", "person.page.orcid.sync-queue.send.unauthorized-error.content": "આધિકૃતતાઓ ફરીથી આપવા માટે અહીં ક્લિક કરો. જો સમસ્યા ચાલુ રહે, તો એડમિનિસ્ટ્રેટરનો સંપર્ક કરો", - // "person.page.orcid.sync-queue.send.bad-request-error": "The submission to ORCID failed because the resource sent to ORCID registry is not valid", "person.page.orcid.sync-queue.send.bad-request-error": "ORCID પર સબમિશન નિષ્ફળ થયું કારણ કે ORCID રજિસ્ટ્રીને મોકલવામાં આવેલ સંસાધન માન્ય નથી", - // "person.page.orcid.sync-queue.send.error": "The submission to ORCID failed", "person.page.orcid.sync-queue.send.error": "ORCID પર સબમિશન નિષ્ફળ થયું", - // "person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry", "person.page.orcid.sync-queue.send.conflict-error": "ORCID પર સબમિશન નિષ્ફળ થયું કારણ કે સંસાધન પહેલાથી જ ORCID રજિસ્ટ્રી પર હાજર છે", - // "person.page.orcid.sync-queue.send.not-found-warning": "The resource does not exists anymore on the ORCID registry.", "person.page.orcid.sync-queue.send.not-found-warning": "સંસાધન ORCID રજિસ્ટ્રી પર હવે હાજર નથી.", - // "person.page.orcid.sync-queue.send.success": "The submission to ORCID was completed successfully", "person.page.orcid.sync-queue.send.success": "ORCID પર સબમિશન સફળતાપૂર્વક પૂર્ણ થયું", - // "person.page.orcid.sync-queue.send.validation-error": "The data that you want to synchronize with ORCID is not valid", "person.page.orcid.sync-queue.send.validation-error": "તમે ORCID સાથે સુમેળ કરવા માંગો છો તે ડેટા માન્ય નથી", - // "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "The amount's currency is required", "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "રકમની કરન્સી જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.external-id.required": "The resource to be sent requires at least one identifier", "person.page.orcid.sync-queue.send.validation-error.external-id.required": "મોકલવામાં આવતી સંસાધન માટે ઓછામાં ઓછો એક ઓળખકર્તા જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.title.required": "The title is required", "person.page.orcid.sync-queue.send.validation-error.title.required": "શીર્ષક જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required", "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required", "person.page.orcid.sync-queue.send.validation-error.start-date.required": "પ્રારંભ તારીખ જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required", "person.page.orcid.sync-queue.send.validation-error.funder.required": "ફંડર જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.country.invalid": "અમાન્ય 2 અક્ષરોનો ISO 3166 દેશ", - // "person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required", "person.page.orcid.sync-queue.send.validation-error.organization.required": "સંસ્થા જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required", "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "સંસ્થાનું નામ જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900", "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "પ્રકાશન તારીખ 1900 પછીની હોવી જોઈએ", - // "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address", "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "મોકલવામાં આવતી સંસ્થા માટે સરનામું જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "The address of the organization to be sent requires a city", "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "મોકલવામાં આવતી સંસ્થાનું સરનામું માટે શહેર જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "The address of the organization to be sent requires a valid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "મોકલવામાં આવતી સંસ્થાનું સરનામું માટે માન્ય 2 અક્ષરોનો ISO 3166 દેશ જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "An identifier to disambiguate organizations is required. Supported ids are GRID, Ringgold, Legal Entity identifiers (LEIs) and Crossref Funder Registry identifiers", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "સંસ્થાઓને સ્પષ્ટ કરવા માટે એક ઓળખકર્તા જરૂરી છે. સપોર્ટેડ IDs GRID, Ringgold, Legal Entity identifiers (LEIs) અને Crossref Funder Registry identifiers છે", - // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "The organization's identifiers requires a value", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "સંસ્થાના ઓળખકર્તાઓ માટે મૂલ્ય જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "The organization's identifiers requires a source", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "સંસ્થાના ઓળખકર્તાઓ માટે સ્ત્રોત જરૂરી છે", - // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "The source of one of the organization identifiers is invalid. Supported sources are RINGGOLD, GRID, LEI and FUNDREF", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "સંસ્થાના એક ઓળખકર્તાના સ્ત્રોત અમાન્ય છે. સપોર્ટેડ સ્ત્રોતો RINGGOLD, GRID, LEI અને FUNDREF છે", - // "person.page.orcid.synchronization-mode": "Synchronization mode", "person.page.orcid.synchronization-mode": "સુમેળ સ્થિતિ", - // "person.page.orcid.synchronization-mode.batch": "Batch", "person.page.orcid.synchronization-mode.batch": "બેચ", - // "person.page.orcid.synchronization-mode.label": "Synchronization mode", "person.page.orcid.synchronization-mode.label": "સુમેળ સ્થિતિ", - // "person.page.orcid.synchronization-mode-message": "Please select how you would like synchronization to ORCID to occur. The options include \"Manual\" (you must send your data to ORCID manually), or \"Batch\" (the system will send your data to ORCID via a scheduled script).", "person.page.orcid.synchronization-mode-message": "કૃપા કરીને પસંદ કરો કે તમે ORCID સાથે સુમેળ કેવી રીતે કરવો છે. વિકલ્પોમાં \\\"મેન્યુઅલ\\\" (તમારે તમારો ડેટા ORCID પર મેન્યુઅલી મોકલવો પડશે), અથવા \\\"બેચ\\\" (સિસ્ટમ તમારો ડેટા ORCID પર શેડ્યુલ સ્ક્રિપ્ટ દ્વારા મોકલશે) શામેલ છે.", - // "person.page.orcid.synchronization-mode-funding-message": "Select whether to send your linked Project entities to your ORCID record's list of funding information.", "person.page.orcid.synchronization-mode-funding-message": "તમારા ORCID રેકોર્ડની ફંડિંગ માહિતીની યાદીમાં તમારા લિંક કરેલા પ્રોજેક્ટ એન્ટિટીઓને મોકલવા માટે પસંદ કરો.", - // "person.page.orcid.synchronization-mode-publication-message": "Select whether to send your linked Publication entities to your ORCID record's list of works.", "person.page.orcid.synchronization-mode-publication-message": "તમારા ORCID રેકોર્ડની કાર્યોની યાદીમાં તમારા લિંક કરેલા પ્રકાશન એન્ટિટીઓને મોકલવા માટે પસંદ કરો.", - // "person.page.orcid.synchronization-mode-profile-message": "Select whether to send your biographical data or personal identifiers to your ORCID record.", "person.page.orcid.synchronization-mode-profile-message": "તમારા ORCID રેકોર્ડ પર તમારી જીવની માહિતી અથવા વ્યક્તિગત ઓળખકર્તાઓ મોકલવા માટે પસંદ કરો.", - // "person.page.orcid.synchronization-settings-update.success": "The synchronization settings have been updated successfully", "person.page.orcid.synchronization-settings-update.success": "સુમેળ સેટિંગ્સ સફળતાપૂર્વક અપડેટ કરવામાં આવ્યા છે", - // "person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed", "person.page.orcid.synchronization-settings-update.error": "સુમેળ સેટિંગ્સ અપડેટ કરવામાં નિષ્ફળ", - // "person.page.orcid.synchronization-mode.manual": "Manual", "person.page.orcid.synchronization-mode.manual": "મેન્યુઅલ", - // "person.page.orcid.scope.authenticate": "Get your ORCID iD", "person.page.orcid.scope.authenticate": "તમારો ORCID iD મેળવો", - // "person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties", "person.page.orcid.scope.read-limited": "વિશ્વસનીય પક્ષો માટે દૃશ્યતા સાથે તમારી માહિતી વાંચો", - // "person.page.orcid.scope.activities-update": "Add/update your research activities", "person.page.orcid.scope.activities-update": "તમારી સંશોધન પ્રવૃત્તિઓ ઉમેરો/અપડેટ કરો", - // "person.page.orcid.scope.person-update": "Add/update other information about you", "person.page.orcid.scope.person-update": "તમારા વિશેની અન્ય માહિતી ઉમેરો/અપડેટ કરો", - // "person.page.orcid.unlink.success": "The disconnection between the profile and the ORCID registry was successful", "person.page.orcid.unlink.success": "પ્રોફાઇલ અને ORCID રજિસ્ટ્રી વચ્ચેનું ડિસકનેક્શન સફળ રહ્યું", - // "person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again", "person.page.orcid.unlink.error": "પ્રોફાઇલ અને ORCID રજિસ્ટ્રી વચ્ચે ડિસકનેક્ટ કરતી વખતે ભૂલ આવી. ફરી પ્રયાસ કરો", - // "person.orcid.sync.setting": "ORCID Synchronization settings", "person.orcid.sync.setting": "ORCID સુમેળ સેટિંગ્સ", - // "person.orcid.registry.queue": "ORCID Registry Queue", "person.orcid.registry.queue": "ORCID રજિસ્ટ્રી કતાર", - // "person.orcid.registry.auth": "ORCID Authorizations", "person.orcid.registry.auth": "ORCID અધિકૃતતાઓ", - // "person.orcid-tooltip.authenticated": "{{orcid}}", "person.orcid-tooltip.authenticated": "{{orcid}}", - // "person.orcid-tooltip.not-authenticated": "{{orcid}} (unconfirmed)", "person.orcid-tooltip.not-authenticated": "{{orcid}} (અપુષ્ટ)", - // "home.recent-submissions.head": "Recent Submissions", "home.recent-submissions.head": "તાજેતરના સબમિશન્સ", - // "listable-notification-object.default-message": "This object couldn't be retrieved", "listable-notification-object.default-message": "આ આઇટમને મેળવવામાં આવી શક્યું નથી", - // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", "system-wide-alert-banner.retrieval.error": "સિસ્ટમ-વાઇડ એલર્ટ બેનર મેળવવામાં કંઈક ખોટું થયું", - // "system-wide-alert-banner.countdown.prefix": "In", "system-wide-alert-banner.countdown.prefix": "માં", - // "system-wide-alert-banner.countdown.days": "{{days}} day(s),", "system-wide-alert-banner.countdown.days": "{{days}} દિવસ(ઓ),", - // "system-wide-alert-banner.countdown.hours": "{{hours}} hour(s) and", "system-wide-alert-banner.countdown.hours": "{{hours}} કલાક(ઓ) અને", - // "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", - // TODO New key - Add a translation - "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + "system-wide-alert-banner.countdown.minutes": "{{minutes}} મિનિટ(ઓ):", - // "menu.section.system-wide-alert": "System-wide Alert", "menu.section.system-wide-alert": "સિસ્ટમ-વાઇડ એલર્ટ", - // "system-wide-alert.form.header": "System-wide Alert", "system-wide-alert.form.header": "સિસ્ટમ-વાઇડ એલર્ટ", - // "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert", "system-wide-alert-form.retrieval.error": "સિસ્ટમ-વાઇડ એલર્ટ મેળવવામાં કંઈક ખોટું થયું", - // "system-wide-alert.form.cancel": "Cancel", "system-wide-alert.form.cancel": "રદ કરો", - // "system-wide-alert.form.save": "Save", "system-wide-alert.form.save": "સેવ", - // "system-wide-alert.form.label.active": "ACTIVE", "system-wide-alert.form.label.active": "સક્રિય", - // "system-wide-alert.form.label.inactive": "INACTIVE", "system-wide-alert.form.label.inactive": "નિષ્ક્રિય", - // "system-wide-alert.form.error.message": "The system wide alert must have a message", "system-wide-alert.form.error.message": "સિસ્ટમ-વાઇડ એલર્ટમાં સંદેશ હોવો જોઈએ", - // "system-wide-alert.form.label.message": "Alert message", "system-wide-alert.form.label.message": "એલર્ટ સંદેશ", - // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer", "system-wide-alert.form.label.countdownTo.enable": "કાઉન્ટડાઉન ટાઇમર સક્રિય કરો", - // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", - // TODO New key - Add a translation - "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + "system-wide-alert.form.label.countdownTo.hint": "હિન્ટ: કાઉન્ટડાઉન ટાઇમર સેટ કરો. જ્યારે સક્રિય થાય છે, ત્યારે ભવિષ્યમાં તારીખ સેટ કરી શકાય છે અને સિસ્ટમ-વાઇડ એલર્ટ બેનર સેટ તારીખ સુધી કાઉન્ટડાઉન કરશે. જ્યારે આ ટાઇમર સમાપ્ત થાય છે, ત્યારે તે એલર્ટમાંથી ગાયબ થઈ જશે. સર્વર આપમેળે બંધ નહીં થાય.", - // "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", "system-wide-alert-form.select-date-by-calendar": "કેલેન્ડરનો ઉપયોગ કરીને તારીખ પસંદ કરો", - // "system-wide-alert.form.label.preview": "System-wide alert preview", "system-wide-alert.form.label.preview": "સિસ્ટમ-વાઇડ એલર્ટ પૂર્વાવલોકન", - // "system-wide-alert.form.update.success": "The system-wide alert was successfully updated", "system-wide-alert.form.update.success": "સિસ્ટમ-વાઇડ એલર્ટ સફળતાપૂર્વક અપડેટ થયું", - // "system-wide-alert.form.update.error": "Something went wrong when updating the system-wide alert", "system-wide-alert.form.update.error": "સિસ્ટમ-વાઇડ એલર્ટ અપડેટ કરતી વખતે કંઈક ખોટું થયું", - // "system-wide-alert.form.create.success": "The system-wide alert was successfully created", "system-wide-alert.form.create.success": "સિસ્ટમ-વાઇડ એલર્ટ સફળતાપૂર્વક બનાવ્યું", - // "system-wide-alert.form.create.error": "Something went wrong when creating the system-wide alert", "system-wide-alert.form.create.error": "સિસ્ટમ-વાઇડ એલર્ટ બનાવતી વખતે કંઈક ખોટું થયું", - // "admin.system-wide-alert.breadcrumbs": "System-wide Alerts", "admin.system-wide-alert.breadcrumbs": "સિસ્ટમ-વાઇડ એલર્ટ", - // "admin.system-wide-alert.title": "System-wide Alerts", "admin.system-wide-alert.title": "સિસ્ટમ-વાઇડ એલર્ટ", - // "discover.filters.head": "Discover", "discover.filters.head": "શોધો", - // "item-access-control-title": "This form allows you to perform changes to the access conditions of the item's metadata or its bitstreams.", "item-access-control-title": "આ ફોર્મ તમને આઇટમના મેટાડેટા અથવા તેના બિટસ્ટ્રીમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે.", - // "collection-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by this collection. Changes may be performed to either all Item metadata or all content (bitstreams).", "collection-access-control-title": "આ ફોર્મ તમને આ સંગ્રહ દ્વારા માલિકી ધરાવતી બધી આઇટમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે. ફેરફારો બધી આઇટમ મેટાડેટા અથવા બધી સામગ્રી (બિટસ્ટ્રીમ્સ) પર કરવામાં આવી શકે છે.", - // "community-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by any collection under this community. Changes may be performed to either all Item metadata or all content (bitstreams).", "community-access-control-title": "આ ફોર્મ તમને આ સમુદાય હેઠળના કોઈપણ સંગ્રહ દ્વારા માલિકી ધરાવતી બધી આઇટમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે. ફેરફારો બધી આઇટમ મેટાડેટા અથવા બધી સામગ્રી (બિટસ્ટ્રીમ્સ) પર કરવામાં આવી શકે છે.", - // "access-control-item-header-toggle": "Item's Metadata", "access-control-item-header-toggle": "આઇટમના મેટાડેટા", - // "access-control-item-toggle.enable": "Enable option to perform changes on the item's metadata", "access-control-item-toggle.enable": "આઇટમના મેટાડેટા પર ફેરફારો કરવા માટે વિકલ્પ સક્રિય કરો", - // "access-control-item-toggle.disable": "Disable option to perform changes on the item's metadata", "access-control-item-toggle.disable": "આઇટમના મેટાડેટા પર ફેરફારો કરવા માટે વિકલ્પ નિષ્ક્રિય કરો", - // "access-control-bitstream-header-toggle": "Bitstreams", "access-control-bitstream-header-toggle": "બિટસ્ટ્રીમ્સ", - // "access-control-bitstream-toggle.enable": "Enable option to perform changes on the bitstreams", "access-control-bitstream-toggle.enable": "બિટસ્ટ્રીમ્સ પર ફેરફારો કરવા માટે વિકલ્પ સક્રિય કરો", - // "access-control-bitstream-toggle.disable": "Disable option to perform changes on the bitstreams", "access-control-bitstream-toggle.disable": "બિટસ્ટ્રીમ્સ પર ફેરફારો કરવા માટે વિકલ્પ નિષ્ક્રિય કરો", - // "access-control-mode": "Mode", "access-control-mode": "મોડ", - // "access-control-access-conditions": "Access conditions", "access-control-access-conditions": "ઍક્સેસ શરતો", - // "access-control-no-access-conditions-warning-message": "Currently, no access conditions are specified below. If executed, this will replace the current access conditions with the default access conditions inherited from the owning collection.", "access-control-no-access-conditions-warning-message": "હાલમાં, નીચે કોઈ ઍક્સેસ શરતો નિર્ધારિત નથી. જો અમલમાં મૂકવામાં આવે છે, તો તે વર્તમાન ઍક્સેસ શરતોને માલિકી ધરાવતી સંગ્રહમાંથી વારસામાં મળેલી ડિફોલ્ટ ઍક્સેસ શરતો સાથે બદલી દેશે.", - // "access-control-replace-all": "Replace access conditions", "access-control-replace-all": "ઍક્સેસ શરતો બદલો", - // "access-control-add-to-existing": "Add to existing ones", "access-control-add-to-existing": "મૌજૂદા શરતોમાં ઉમેરો", - // "access-control-limit-to-specific": "Limit the changes to specific bitstreams", "access-control-limit-to-specific": "ફેરફારોને ચોક્કસ બિટસ્ટ્રીમ્સ સુધી મર્યાદિત કરો", - // "access-control-process-all-bitstreams": "Update all the bitstreams in the item", "access-control-process-all-bitstreams": "આઇટમમાં બધી બિટસ્ટ્રીમ્સને અપડેટ કરો", - // "access-control-bitstreams-selected": "bitstreams selected", "access-control-bitstreams-selected": "પસંદ કરેલી બિટસ્ટ્રીમ્સ", - // "access-control-bitstreams-select": "Select bitstreams", "access-control-bitstreams-select": "બિટસ્ટ્રીમ્સ પસંદ કરો", - // "access-control-cancel": "Cancel", "access-control-cancel": "રદ કરો", - // "access-control-execute": "Execute", "access-control-execute": "અમલમાં મૂકો", - // "access-control-add-more": "Add more", "access-control-add-more": "વધુ ઉમેરો", - // "access-control-remove": "Remove access condition", "access-control-remove": "ઍક્સેસ શરત દૂર કરો", - // "access-control-select-bitstreams-modal.title": "Select bitstreams", "access-control-select-bitstreams-modal.title": "બિટસ્ટ્રીમ્સ પસંદ કરો", - // "access-control-select-bitstreams-modal.no-items": "No items to show.", "access-control-select-bitstreams-modal.no-items": "દેખાવ માટે કોઈ વસ્તુઓ નહોતી", - // "access-control-select-bitstreams-modal.close": "Close", "access-control-select-bitstreams-modal.close": "બંધ કરો", - // "access-control-option-label": "Access condition type", "access-control-option-label": "ઍક્સેસ શરત પ્રકાર", - // "access-control-option-note": "Choose an access condition to apply to selected objects.", "access-control-option-note": "પસંદ કરેલી વસ્તુઓ પર લાગુ કરવા માટે ઍક્સેસ શરત પસંદ કરો.", - // "access-control-option-start-date": "Grant access from", "access-control-option-start-date": "તારીખથી ઍક્સેસ આપો", - // "access-control-option-start-date-note": "Select the date from which the related access condition is applied", "access-control-option-start-date-note": "સંબંધિત ઍક્સેસ શરત લાગુ થતી તારીખ પસંદ કરો", - // "access-control-option-end-date": "Grant access until", "access-control-option-end-date": "તારીખ સુધી ઍક્સેસ આપો", - // "access-control-option-end-date-note": "Select the date until which the related access condition is applied", "access-control-option-end-date-note": "સંબંધિત ઍક્સેસ શરત લાગુ થતી તારીખ પસંદ કરો", - // "vocabulary-treeview.search.form.add": "Add", "vocabulary-treeview.search.form.add": "ઉમેરો", - // "admin.notifications.publicationclaim.breadcrumbs": "Publication Claim", "admin.notifications.publicationclaim.breadcrumbs": "પ્રકાશન દાવો", - // "admin.notifications.publicationclaim.page.title": "Publication Claim", "admin.notifications.publicationclaim.page.title": "પ્રકાશન દાવો", - // "coar-notify-support.title": "COAR Notify Protocol", "coar-notify-support.title": "COAR નોટિફાય પ્રોટોકોલ", - // "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", - // TODO New key - Add a translation - "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + "coar-notify-support-title.content": "અહીં, અમે COAR નોટિફાય પ્રોટોકોલને સંપૂર્ણપણે સપોર્ટ કરીએ છીએ, જે રિપોઝિટરીઝ વચ્ચેના સંચારને વધારવા માટે ડિઝાઇન કરવામાં આવ્યું છે. COAR નોટિફાય પ્રોટોકોલ વિશે વધુ જાણવા માટે, COAR નોટિફાય વેબસાઇટ પર મુલાકાત લો.", - // "coar-notify-support.ldn-inbox.title": "LDN InBox", "coar-notify-support.ldn-inbox.title": "LDN ઇનબોક્સ", - // "coar-notify-support.ldn-inbox.content": "For your convenience, our LDN (Linked Data Notifications) InBox is easily accessible at {{ ldnInboxUrl }}. The LDN InBox enables seamless communication and data exchange, ensuring efficient and effective collaboration.", "coar-notify-support.ldn-inbox.content": "તમારી સુવિધા માટે, અમારી LDN (લિંક્ડ ડેટા નોટિફિકેશન્સ) ઇનબોક્સ સરળતાથી ઉપલબ્ધ છે {{ ldnInboxUrl }}. LDN ઇનબોક્સ સરળ સંચાર અને ડેટા વિનિમયને સક્ષમ બનાવે છે, સુનિશ્ચિત કરે છે કે કાર્યક્ષમ અને અસરકારક સહકાર.", - // "coar-notify-support.message-moderation.title": "Message Moderation", "coar-notify-support.message-moderation.title": "સંદેશ મૉડરેશન", - // "coar-notify-support.message-moderation.content": "To ensure a secure and productive environment, all incoming LDN messages are moderated. If you are planning to exchange information with us, kindly reach out via our dedicated", "coar-notify-support.message-moderation.content": "સુરક્ષિત અને ઉત્પાદક વાતાવરણ સુનિશ્ચિત કરવા માટે, બધી આવનારી LDN સંદેશાઓનું મૉડરેશન કરવામાં આવે છે. જો તમે અમારી સાથે માહિતી વિનિમય કરવાની યોજના બનાવી રહ્યા છો, તો કૃપા કરીને અમારા સમર્પિત ફીડબેક ફોર્મ દ્વારા સંપર્ક કરો.", - // "coar-notify-support.message-moderation.feedback-form": " Feedback form.", - // TODO New key - Add a translation - "coar-notify-support.message-moderation.feedback-form": " Feedback form.", - - // "service.overview.delete.header": "Delete Service", "service.overview.delete.header": "સેવા કાઢી નાખો", - // "ldn-registered-services.title": "Registered Services", "ldn-registered-services.title": "નોંધાયેલ સેવાઓ", - // "ldn-registered-services.table.name": "Name", + "ldn-registered-services.table.name": "નામ", - // "ldn-registered-services.table.description": "Description", + "ldn-registered-services.table.description": "વર્ણન", - // "ldn-registered-services.table.status": "Status", + "ldn-registered-services.table.status": "સ્થિતિ", - // "ldn-registered-services.table.action": "Action", + "ldn-registered-services.table.action": "ક્રિયા", - // "ldn-registered-services.new": "NEW", + "ldn-registered-services.new": "નવી", - // "ldn-registered-services.new.breadcrumbs": "Registered Services", + "ldn-registered-services.new.breadcrumbs": "નોંધાયેલ સેવાઓ", - // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "સક્રિય", - // "ldn-service.overview.table.disabled": "Disabled", + "ldn-service.overview.table.disabled": "નિષ્ક્રિય", - // "ldn-service.overview.table.clickToEnable": "Click to enable", + "ldn-service.overview.table.clickToEnable": "સક્રિય કરવા માટે ક્લિક કરો", - // "ldn-service.overview.table.clickToDisable": "Click to disable", + "ldn-service.overview.table.clickToDisable": "નિષ્ક્રિય કરવા માટે ક્લિક કરો", - // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "સેવા સંપાદિત કરો", - // "ldn-create-service.title": "Create service", + "ldn-create-service.title": "સેવા બનાવો", - // "service.overview.create.modal": "Create Service", + "service.overview.create.modal": "સેવા બનાવો", - // "service.overview.create.body": "Please confirm the creation of this service.", + "service.overview.create.body": "કૃપા કરીને આ સેવાની રચનાની પુષ્ટિ કરો.", - // "ldn-service-status": "Status", + "ldn-service-status": "સ્થિતિ", - // "service.confirm.create": "Create", + "service.confirm.create": "બનાવો", - // "service.refuse.create": "Cancel", + "service.refuse.create": "રદ કરો", - // "ldn-register-new-service.title": "Register a new service", + "ldn-register-new-service.title": "નવી સેવા નોંધો", - // "ldn-new-service.form.label.submit": "Save", + "ldn-new-service.form.label.submit": "સેવ", - // "ldn-new-service.form.label.name": "Name", + "ldn-new-service.form.label.name": "નામ", - // "ldn-new-service.form.label.description": "Description", + "ldn-new-service.form.label.description": "વર્ણન", - // "ldn-new-service.form.label.url": "Service URL", + "ldn-new-service.form.label.url": "સેવા URL", - // "ldn-new-service.form.label.ip-range": "Service IP range", + "ldn-new-service.form.label.ip-range": "સેવા IP શ્રેણી", - // "ldn-new-service.form.label.score": "Level of trust", + "ldn-new-service.form.label.score": "વિશ્વાસનું સ્તર", - // "ldn-new-service.form.label.ldnUrl": "LDN Inbox URL", + "ldn-new-service.form.label.ldnUrl": "LDN ઇનબોક્સ URL", - // "ldn-new-service.form.placeholder.name": "Please provide service name", + "ldn-new-service.form.placeholder.name": "કૃપા કરીને સેવાનું નામ આપો", - // "ldn-new-service.form.placeholder.description": "Please provide a description regarding your service", + "ldn-new-service.form.placeholder.description": "કૃપા કરીને તમારી સેવાના વિશે વર્ણન આપો", - // "ldn-new-service.form.placeholder.url": "Please input the URL for users to check out more information about the service", + "ldn-new-service.form.placeholder.url": "વપરાશકર્તાઓને સેવાની વધુ માહિતી તપાસવા માટે URL દાખલ કરો", - // "ldn-new-service.form.placeholder.lowerIp": "IPv4 range lower bound", + "ldn-new-service.form.placeholder.lowerIp": "IPv4 શ્રેણી નીચી સીમા", - // "ldn-new-service.form.placeholder.upperIp": "IPv4 range upper bound", + "ldn-new-service.form.placeholder.upperIp": "IPv4 શ્રેણી ઊંચી સીમા", - // "ldn-new-service.form.placeholder.ldnUrl": "Please specify the URL of the LDN Inbox", + "ldn-new-service.form.placeholder.ldnUrl": "કૃપા કરીને LDN ઇનબોક્સનો URL સ્પષ્ટ કરો", - // "ldn-new-service.form.placeholder.score": "Please enter a value between 0 and 1. Use the “.” as decimal separator", + "ldn-new-service.form.placeholder.score": "કૃપા કરીને 0 અને 1 વચ્ચેનું મૂલ્ય દાખલ કરો. દશાંશ વિભાજક તરીકે “.” નો ઉપયોગ કરો", - // "ldn-service.form.label.placeholder.default-select": "Select a pattern", + "ldn-service.form.label.placeholder.default-select": "પેટર્ન પસંદ કરો", - // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "સ્વીકારો અને મંજૂર કરો", - // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", + "ldn-service.form.pattern.ack-accept.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને મંજૂર કરવા માટે વપરાય છે. તે વિનંતી પર કાર્ય કરવાની મનોવૃત્તિ દર્શાવે છે.", - // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", + "ldn-service.form.pattern.ack-accept.category": "સ્વીકાર", - // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "સ્વીકારો અને નકારો", - // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", + "ldn-service.form.pattern.ack-reject.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને નકારવા માટે વપરાય છે. તે વિનંતી અંગે કોઈ વધુ ક્રિયા દર્શાવતું નથી.", - // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", + "ldn-service.form.pattern.ack-reject.category": "સ્વીકાર", - // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "સ્વીકારો અને તાત્કાલિક સ્વીકારો", - // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", + "ldn-service.form.pattern.ack-tentative-accept.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને તાત્કાલિક સ્વીકારવા માટે વપરાય છે. તે કાર્ય કરવાની મનોવૃત્તિ દર્શાવે છે, જે બદલાઈ શકે છે.", - // "ldn-service.form.pattern.ack-tentative-accept.category": "Acknowledgements", + "ldn-service.form.pattern.ack-tentative-accept.category": "સ્વીકાર", - // "ldn-service.form.pattern.ack-tentative-reject.label": "Acknowledge and Tentatively Reject", "ldn-service.form.pattern.ack-tentative-reject.label": "સ્વીકારો અને તાત્કાલિક નકારો", - // "ldn-service.form.pattern.ack-tentative-reject.description": "This pattern is used to acknowledge and tentatively reject a request (offer). It signifies no further action, subject to change.", + "ldn-service.form.pattern.ack-tentative-reject.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને તાત્કાલિક નકારવા માટે વપરાય છે. તે કોઈ વધુ ક્રિયા દર્શાવતું નથી, જે બદલાઈ શકે છે.", - // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", + "ldn-service.form.pattern.ack-tentative-reject.category": "સ્વીકાર", - // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "મંજૂરીની જાહેરાત કરો", - // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", + "ldn-service.form.pattern.announce-endorsement.description": "આ પેટર્ન મંજૂરીના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે મંજૂર સંસાધનને સંદર્ભ આપે છે.", - // "ldn-service.form.pattern.announce-endorsement.category": "Announcements", + "ldn-service.form.pattern.announce-endorsement.category": "જાહેરાત", - // "ldn-service.form.pattern.announce-ingest.label": "Announce Ingest", "ldn-service.form.pattern.announce-ingest.label": "ઇનજેસ્ટની જાહેરાત કરો", - // "ldn-service.form.pattern.announce-ingest.description": "This pattern is used to announce that a resource has been ingested.", + "ldn-service.form.pattern.announce-ingest.description": "આ પેટર્ન એ જાહેરાત કરવા માટે વપરાય છે કે સંસાધન ઇનજેસ્ટ કરવામાં આવ્યું છે.", - // "ldn-service.form.pattern.announce-ingest.category": "Announcements", + "ldn-service.form.pattern.announce-ingest.category": "જાહેરાત", - // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "સંબંધની જાહેરાત કરો", - // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", + "ldn-service.form.pattern.announce-relationship.description": "આ પેટર્ન બે સંસાધનો વચ્ચેના સંબંધની જાહેરાત કરવા માટે વપરાય છે.", - // "ldn-service.form.pattern.announce-relationship.category": "Announcements", + "ldn-service.form.pattern.announce-relationship.category": "જાહેરાત", - // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "સમીક્ષાની જાહેરાત કરો", - // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", + "ldn-service.form.pattern.announce-review.description": "આ પેટર્ન સમીક્ષાના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે સમીક્ષિત સંસાધનને સંદર્ભ આપે છે.", - // "ldn-service.form.pattern.announce-review.category": "Announcements", + "ldn-service.form.pattern.announce-review.category": "જાહેરાત", - // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "સેવા પરિણામની જાહેરાત કરો", - // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", + "ldn-service.form.pattern.announce-service-result.description": "આ પેટર્ન 'સેવા પરિણામ'ના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે સંબંધિત સંસાધનને સંદર્ભ આપે છે.", - // "ldn-service.form.pattern.announce-service-result.category": "Announcements", + "ldn-service.form.pattern.announce-service-result.category": "જાહેરાત", - // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "મંજૂરીની વિનંતી કરો", - // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", + "ldn-service.form.pattern.request-endorsement.description": "આ પેટર્ન મૂળ સિસ્ટમ દ્વારા માલિકી ધરાવતી સંસાધન માટે મંજૂરીની વિનંતી કરવા માટે વપરાય છે.", - // "ldn-service.form.pattern.request-endorsement.category": "Requests", + "ldn-service.form.pattern.request-endorsement.category": "વિનંતીઓ", - // "ldn-service.form.pattern.request-ingest.label": "Request Ingest", "ldn-service.form.pattern.request-ingest.label": "ઇનજેસ્ટની વિનંતી કરો", - // "ldn-service.form.pattern.request-ingest.description": "This pattern is used to request that the target system ingest a resource.", + "ldn-service.form.pattern.request-ingest.description": "આ પેટર્ન લક્ષ્ય સિસ્ટમને સંસાધન ઇનજેસ્ટ કરવાની વિનંતી કરવા માટે વપરાય છે.", - // "ldn-service.form.pattern.request-ingest.category": "Requests", + "ldn-service.form.pattern.request-ingest.category": "વિનંતીઓ", - // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "સમીક્ષાની વિનંતી કરો", - // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", + "ldn-service.form.pattern.request-review.description": "આ પેટર્ન મૂળ સિસ્ટમ દ્વારા માલિકી ધરાવતી સંસાધન માટે સમીક્ષાની વિનંતી કરવા માટે વપરાય છે.", - // "ldn-service.form.pattern.request-review.category": "Requests", + "ldn-service.form.pattern.request-review.category": "વિનંતીઓ", - // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "ઓફર રદ કરો", - // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", + "ldn-service.form.pattern.undo-offer.description": "આ પેટર્ન અગાઉ કરવામાં આવેલી ઓફરને રદ (પાછી ખેંચી) કરવા માટે વપરાય છે.", - // "ldn-service.form.pattern.undo-offer.category": "Undo", + "ldn-service.form.pattern.undo-offer.category": "રદ કરો", - // "ldn-new-service.form.label.placeholder.selectedItemFilter": "No Item Filter Selected", "ldn-new-service.form.label.placeholder.selectedItemFilter": "કોઈ આઇટમ ફિલ્ટર પસંદ કરેલ નથી", - // "ldn-new-service.form.label.ItemFilter": "Item Filter", + "ldn-new-service.form.label.ItemFilter": "આઇટમ ફિલ્ટર", - // "ldn-new-service.form.label.automatic": "Automatic", + "ldn-new-service.form.label.automatic": "સ્વચાલિત", - // "ldn-new-service.form.error.name": "Name is required", + "ldn-new-service.form.error.name": "નામ જરૂરી છે", - // "ldn-new-service.form.error.url": "URL is required", + "ldn-new-service.form.error.url": "URL જરૂરી છે", - // "ldn-new-service.form.error.ipRange": "Please enter a valid IP range", + "ldn-new-service.form.error.ipRange": "કૃપા કરીને માન્ય IP શ્રેણી દાખલ કરો", - // "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", - // TODO New key - Add a translation - "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", - // "ldn-new-service.form.error.ldnurl": "LDN URL is required", + + "ldn-new-service.form.hint.ipRange": "કૃપા કરીને બંને શ્રેણી સીમાઓમાં માન્ય IpV4 દાખલ કરો (નોંધ: એકલ IP માટે, કૃપા કરીને બંને ક્ષેત્રોમાં એક જ મૂલ્ય દાખલ કરો)", + "ldn-new-service.form.error.ldnurl": "LDN URL જરૂરી છે", - // "ldn-new-service.form.error.patterns": "At least a pattern is required", + "ldn-new-service.form.error.patterns": "ઓછામાં ઓછું એક પેટર્ન જરૂરી છે", - // "ldn-new-service.form.error.score": "Please enter a valid score (between 0 and 1). Use the “.” as decimal separator", + "ldn-new-service.form.error.score": "કૃપા કરીને માન્ય સ્કોર દાખલ કરો (0 અને 1 વચ્ચે). દશાંશ વિભાજક તરીકે “.” નો ઉપયોગ કરો", - // "ldn-new-service.form.label.inboundPattern": "Supported Pattern", "ldn-new-service.form.label.inboundPattern": "સપોર્ટેડ પેટર્ન", - // "ldn-new-service.form.label.addPattern": "+ Add more", + "ldn-new-service.form.label.addPattern": "+ વધુ ઉમેરો", - // "ldn-new-service.form.label.removeItemFilter": "Remove", + "ldn-new-service.form.label.removeItemFilter": "દૂર કરો", - // "ldn-register-new-service.breadcrumbs": "New Service", + "ldn-register-new-service.breadcrumbs": "નવી સેવા", - // "service.overview.delete.body": "Are you sure you want to delete this service?", + "service.overview.delete.body": "શું તમે ખરેખર આ સેવાને કાઢી નાખવા માંગો છો?", - // "service.overview.edit.body": "Do you confirm the changes?", + "service.overview.edit.body": "શું તમે ફેરફારોની પુષ્ટિ કરો છો?", - // "service.overview.edit.modal": "Edit Service", + "service.overview.edit.modal": "સેવા સંપાદિત કરો", - // "service.detail.update": "Confirm", + "service.detail.update": "પુષ્ટિ કરો", - // "service.detail.return": "Cancel", + "service.detail.return": "રદ કરો", - // "service.overview.reset-form.body": "Are you sure you want to discard the changes and leave?", + "service.overview.reset-form.body": "શું તમે ખરેખર ફેરફારોને રદ કરવા અને છોડી દેવા માંગો છો?", - // "service.overview.reset-form.modal": "Discard Changes", + "service.overview.reset-form.modal": "ફેરફારો રદ કરો", - // "service.overview.reset-form.reset-confirm": "Discard", + "service.overview.reset-form.reset-confirm": "રદ કરો", - // "admin.registries.services-formats.modify.success.head": "Successful Edit", + "admin.registries.services-formats.modify.success.head": "સફળ સંપાદન", - // "admin.registries.services-formats.modify.success.content": "The service has been edited", + "admin.registries.services-formats.modify.success.content": "સેવા સંપાદિત કરવામાં આવી છે", - // "admin.registries.services-formats.modify.failure.head": "Failed Edit", + "admin.registries.services-formats.modify.failure.head": "અસફળ સંપાદન", - // "admin.registries.services-formats.modify.failure.content": "The service has not been edited", + "admin.registries.services-formats.modify.failure.content": "સેવા સંપાદિત કરવામાં આવી નથી", - // "ldn-service-notification.created.success.title": "Successful Create", + "ldn-service-notification.created.success.title": "સફળ રચના", - // "ldn-service-notification.created.success.body": "The service has been created", + "ldn-service-notification.created.success.body": "સેવા બનાવવામાં આવી છે", - // "ldn-service-notification.created.failure.title": "Failed Create", + "ldn-service-notification.created.failure.title": "અસફળ રચના", - // "ldn-service-notification.created.failure.body": "The service has not been created", + "ldn-service-notification.created.failure.body": "સેવા બનાવવામાં આવી નથી", - // "ldn-service-notification.created.warning.title": "Please select at least one Inbound Pattern", + "ldn-service-notification.created.warning.title": "કૃપા કરીને ઓછામાં ઓછું એક ઇનબાઉન્ડ પેટર્ન પસંદ કરો", - // "ldn-enable-service.notification.success.title": "Successful status updated", + "ldn-enable-service.notification.success.title": "સફળ સ્થિતિ અપડેટ", - // "ldn-enable-service.notification.success.content": "The service status has been updated", + "ldn-enable-service.notification.success.content": "સેવા સ્થિતિ અપડેટ કરવામાં આવી છે", - // "ldn-service-delete.notification.success.title": "Successful Deletion", + "ldn-service-delete.notification.success.title": "સફળ કાઢી નાખવું", - // "ldn-service-delete.notification.success.content": "The service has been deleted", + "ldn-service-delete.notification.success.content": "સેવા કાઢી નાખવામાં આવી છે", - // "ldn-service-delete.notification.error.title": "Failed Deletion", + "ldn-service-delete.notification.error.title": "અસફળ કાઢી નાખવું", - // "ldn-service-delete.notification.error.content": "The service has not been deleted", + "ldn-service-delete.notification.error.content": "સેવા કાઢી નાખવામાં આવી નથી", - // "service.overview.reset-form.reset-return": "Cancel", + "service.overview.reset-form.reset-return": "રદ કરો", - // "service.overview.delete": "Delete service", + "service.overview.delete": "સેવા કાઢી નાખો", - // "ldn-edit-service.title": "Edit service", + "ldn-edit-service.title": "સેવા સંપાદિત કરો", - // "ldn-edit-service.form.label.name": "Name", + "ldn-edit-service.form.label.name": "નામ", - // "ldn-edit-service.form.label.description": "Description", + "ldn-edit-service.form.label.description": "વર્ણન", - // "ldn-edit-service.form.label.url": "Service URL", + "ldn-edit-service.form.label.url": "સેવા URL", - // "ldn-edit-service.form.label.ldnUrl": "LDN Inbox URL", + "ldn-edit-service.form.label.ldnUrl": "LDN ઇનબોક્સ URL", - // "ldn-edit-service.form.label.inboundPattern": "Inbound Pattern", + "ldn-edit-service.form.label.inboundPattern": "ઇનબાઉન્ડ પેટર્ન", - // "ldn-edit-service.form.label.noInboundPatternSelected": "No Inbound Pattern", + "ldn-edit-service.form.label.noInboundPatternSelected": "કોઈ ઇનબાઉન્ડ પેટર્ન નથી", - // "ldn-edit-service.form.label.selectedItemFilter": "Selected Item Filter", + "ldn-edit-service.form.label.selectedItemFilter": "પસંદ કરેલ આઇટમ ફિલ્ટર", - // "ldn-edit-service.form.label.selectItemFilter": "No Item Filter", + "ldn-edit-service.form.label.selectItemFilter": "કોઈ આઇટમ ફિલ્ટર નથી", - // "ldn-edit-service.form.label.automatic": "Automatic", + "ldn-edit-service.form.label.automatic": "સ્વચાલિત", - // "ldn-edit-service.form.label.addInboundPattern": "+ Add more", + "ldn-edit-service.form.label.addInboundPattern": "+ વધુ ઉમેરો", - // "ldn-edit-service.form.label.submit": "Save", + "ldn-edit-service.form.label.submit": "સેવ", - // "ldn-edit-service.breadcrumbs": "Edit Service", + "ldn-edit-service.breadcrumbs": "સેવા સંપાદિત કરો", - // "ldn-service.control-constaint-select-none": "Select none", + "ldn-service.control-constaint-select-none": "કોઈ પસંદ કરો", - // "ldn-register-new-service.notification.error.title": "Error", "ldn-register-new-service.notification.error.title": "ભૂલ", - // "ldn-register-new-service.notification.error.content": "An error occurred while creating this process", + "ldn-register-new-service.notification.error.content": "આ પ્રક્રિયા બનાવતી વખતે ભૂલ આવી", - // "ldn-register-new-service.notification.success.title": "Success", + "ldn-register-new-service.notification.success.title": "સફળતા", - // "ldn-register-new-service.notification.success.content": "The process was successfully created", + "ldn-register-new-service.notification.success.content": "પ્રક્રિયા સફળતાપૂર્વક બનાવવામાં આવી", - // "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", - // TODO New key - Add a translation - "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + "submission.sections.notify.info": "વર્તમાન સ્થિતિ અનુસાર આ આઇટમ સાથે સુસંગત સેવા પસંદ કરેલ છે. {{ service.name }}: {{ service.description }}", - // "item.page.endorsement": "Endorsement", "item.page.endorsement": "મંજૂરી", - // "item.page.places": "Related places", "item.page.places": "સંબંધિત સ્થળો", - // "item.page.review": "Review", "item.page.review": "સમીક્ષા", - // "item.page.referenced": "Referenced By", "item.page.referenced": "સંદર્ભ આપેલ", - // "item.page.supplemented": "Supplemented By", "item.page.supplemented": "પૂરક", - // "menu.section.icon.ldn_services": "LDN Services overview", "menu.section.icon.ldn_services": "LDN સેવાઓની ઝાંખી", - // "menu.section.services": "LDN Services", "menu.section.services": "LDN સેવાઓ", - // "menu.section.services_new": "LDN Service", "menu.section.services_new": "LDN સેવા", - // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "નીચે તમે {{source}} માટે સબ્સ્ક્રિપ્શન્સમાંથી પ્રાપ્ત તમામ વિષયો જોઈ શકો છો", - // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", + "quality-assurance.events.description": "નીચે પસંદ કરેલા વિષય {{topic}} માટેની તમામ સૂચનાઓની યાદી છે, જે {{source}} સાથે સંબંધિત છે.", - // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "નીચે પસંદ કરેલા વિષય {{topic}} માટેની તમામ સૂચનાઓની યાદી છે, જે {{source}} અને", - // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", - // TODO New key - Add a translation - "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + "quality-assurance.event.table.event.message.serviceUrl": "અભિનયકર્તા:", - // "quality-assurance.event.table.event.message.link": "Link:", - // TODO New key - Add a translation - "quality-assurance.event.table.event.message.link": "Link:", + "quality-assurance.event.table.event.message.link": "લિંક:", - // "service.detail.delete.cancel": "Cancel", "service.detail.delete.cancel": "રદ કરો", - // "service.detail.delete.button": "Delete service", "service.detail.delete.button": "સેવા કાઢી નાખો", - // "service.detail.delete.header": "Delete service", "service.detail.delete.header": "સેવા કાઢી નાખો", - // "service.detail.delete.body": "Are you sure you want to delete the current service?", "service.detail.delete.body": "શું તમે ખરેખર વર્તમાન સેવાને કાઢી નાખવા માંગો છો?", - // "service.detail.delete.confirm": "Delete service", "service.detail.delete.confirm": "સેવા કાઢી નાખો", - // "service.detail.delete.success": "The service was successfully deleted.", "service.detail.delete.success": "સેવા સફળતાપૂર્વક કાઢી નાખવામાં આવી.", - // "service.detail.delete.error": "Something went wrong when deleting the service", "service.detail.delete.error": "સેવા કાઢી નાખતી વખતે કંઈક ખોટું થયું", - // "service.overview.table.id": "Services ID", "service.overview.table.id": "સેવાઓ ID", - // "service.overview.table.name": "Name", "service.overview.table.name": "નામ", - // "service.overview.table.start": "Start time (UTC)", "service.overview.table.start": "પ્રારંભ સમય (UTC)", - // "service.overview.table.status": "Status", "service.overview.table.status": "સ્થિતિ", - // "service.overview.table.user": "User", "service.overview.table.user": "વપરાશકર્તા", - // "service.overview.title": "Services Overview", "service.overview.title": "સેવાઓની ઝાંખી", - // "service.overview.breadcrumbs": "Services Overview", "service.overview.breadcrumbs": "સેવાઓની ઝાંખી", - // "service.overview.table.actions": "Actions", "service.overview.table.actions": "ક્રિયાઓ", - // "service.overview.table.description": "Description", "service.overview.table.description": "વર્ણન", - // "submission.sections.submit.progressbar.coarnotify": "COAR Notify", "submission.sections.submit.progressbar.coarnotify": "COAR નોટિફાય", - // "submission.section.section-coar-notify.control.request-review.label": "You can request a review to one of the following services", "submission.section.section-coar-notify.control.request-review.label": "તમે નીચેની સેવાઓમાંથી એક સમીક્ષા માટે વિનંતી કરી શકો છો", - // "submission.section.section-coar-notify.control.request-endorsement.label": "You can request an Endorsement to one of the following overlay journals", "submission.section.section-coar-notify.control.request-endorsement.label": "તમે નીચેના ઓવરલે જર્નલ્સમાંથી એક મંજૂરી માટે વિનંતી કરી શકો છો", - // "submission.section.section-coar-notify.control.request-ingest.label": "You can request to ingest a copy of your submission to one of the following services", "submission.section.section-coar-notify.control.request-ingest.label": "તમે નીચેની સેવાઓમાંથી એકને તમારી સબમિશનની નકલ ઇનજેસ્ટ કરવા માટે વિનંતી કરી શકો છો", - // "submission.section.section-coar-notify.dropdown.no-data": "No data available", "submission.section.section-coar-notify.dropdown.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી", - // "submission.section.section-coar-notify.dropdown.select-none": "Select none", "submission.section.section-coar-notify.dropdown.select-none": "કોઈ પસંદ કરો", - // "submission.section.section-coar-notify.small.notification": "Select a service for {{ pattern }} of this item", "submission.section.section-coar-notify.small.notification": "આ આઇટમ માટે {{ pattern }} માટે સેવા પસંદ કરો", - // "submission.section.section-coar-notify.selection.description": "Selected service's description:", - // TODO New key - Add a translation - "submission.section.section-coar-notify.selection.description": "Selected service's description:", + "submission.section.section-coar-notify.selection.description": "પસંદ કરેલી સેવાની વર્ણન:", - // "submission.section.section-coar-notify.selection.no-description": "No further information is available", "submission.section.section-coar-notify.selection.no-description": "કોઈ વધુ માહિતી ઉપલબ્ધ નથી", - // "submission.section.section-coar-notify.notification.error": "The selected service is not suitable for the current item. Please check the description for details about which record can be managed by this service.", "submission.section.section-coar-notify.notification.error": "પસંદ કરેલી સેવા વર્તમાન આઇટમ માટે યોગ્ય નથી. કૃપા કરીને તે રેકોર્ડ વિશેની વિગતો તપાસો કે જે આ સેવા દ્વારા સંચાલિત થઈ શકે છે.", - // "submission.section.section-coar-notify.info.no-pattern": "No configurable patterns found.", "submission.section.section-coar-notify.info.no-pattern": "કોઈ રૂપરેખાંકિત પેટર્ન મળ્યા નથી.", - // "error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.", "error.validation.coarnotify.invalidfilter": "અમાન્ય ફિલ્ટર, કૃપા કરીને બીજી સેવા અથવા કોઈ પસંદ કરો.", - // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.", "request-status-alert-box.accepted": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} સ્વીકારવામાં આવી છે.", - // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} નકારી દેવામાં આવી છે.", - // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", "request-status-alert-box.tentative_rejected": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} તાત્કાલિક નકારી દેવામાં આવી છે. સુધારાઓ જરૂરી છે", - // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} પેન્ડિંગ છે.", - // "ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion", "ldn-service-button-mark-inbound-deletion": "માર્ક સપોર્ટેડ પેટર્ન માટે ડિલીશન", - // "ldn-service-button-unmark-inbound-deletion": "Unmark supported pattern for deletion", "ldn-service-button-unmark-inbound-deletion": "માર્ક સપોર્ટેડ પેટર્ન માટે અનમાર્ક", - // "ldn-service-input-inbound-item-filter-dropdown": "Select Item filter for the pattern", "ldn-service-input-inbound-item-filter-dropdown": "પેટર્ન માટે આઇટમ ફિલ્ટર પસંદ કરો", - // "ldn-service-input-inbound-pattern-dropdown": "Select a pattern for service", "ldn-service-input-inbound-pattern-dropdown": "સેવા માટે પેટર્ન પસંદ કરો", - // "ldn-service-overview-select-delete": "Select service for deletion", "ldn-service-overview-select-delete": "ડિલીશન માટે સેવા પસંદ કરો", - // "ldn-service-overview-select-edit": "Edit LDN service", "ldn-service-overview-select-edit": "LDN સેવા સંપાદિત કરો", - // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "મોડલ બંધ કરો", - // "ldn-service-usesActorEmailId": "Requires actor email in notifications", "ldn-service-usesActorEmailId": "સૂચનાઓમાં અભિનયકર્તા ઇમેઇલની જરૂર છે", - // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", "ldn-service-usesActorEmailId-description": "જો સક્રિય છે, તો પ્રારંભિક સૂચનાઓમાં સબમિટર ઇમેઇલ શામેલ હશે, રિપોઝિટરી URL ના બદલે. આ સામાન્ય રીતે મંજૂરી અથવા સમીક્ષા સેવાઓ માટે છે.", - // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "આઇટમ પ્રકાર જર્નલ આર્ટિકલ અથવા ડેટાસેટ છે", - // "always_true_filter.label": "Always true", "always_true_filter.label": "હંમેશા સાચું", - // "automatic_processing_collection_filter_16.label": "Automatic processing", "automatic_processing_collection_filter_16.label": "સ્વચાલિત પ્રક્રિયા", - // "dc-identifier-uri-contains-doi_condition.label": "URI contains DOI", "dc-identifier-uri-contains-doi_condition.label": "URI માં DOI શામેલ છે", - // "doi-filter.label": "DOI filter", "doi-filter.label": "DOI ફિલ્ટર", - // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "ડોક્યુમેન્ટ પ્રકાર ડ્રાઇવર સમાન છે", - // "has-at-least-one-bitstream_condition.label": "Has at least one Bitstream", "has-at-least-one-bitstream_condition.label": "ઓછામાં ઓછું એક બિટસ્ટ્રીમ છે", - // "has-bitstream_filter.label": "Has Bitstream", "has-bitstream_filter.label": "બિટસ્ટ્રીમ છે", - // "has-one-bitstream_condition.label": "Has one Bitstream", "has-one-bitstream_condition.label": "એક બિટસ્ટ્રીમ છે", - // "is-archived_condition.label": "Is archived", "is-archived_condition.label": "આર્કાઇવ્ડ છે", - // "is-withdrawn_condition.label": "Is withdrawn", "is-withdrawn_condition.label": "વિથડ્રોન છે", - // "item-is-public_condition.label": "Item is public", "item-is-public_condition.label": "આઇટમ જાહેર છે", - // "journals_ingest_suggestion_collection_filter_18.label": "Journals ingest", "journals_ingest_suggestion_collection_filter_18.label": "જર્નલ્સ ઇનજેસ્ટ", - // "title-starts-with-pattern_condition.label": "Title starts with pattern", "title-starts-with-pattern_condition.label": "શીર્ષક પેટર્ન સાથે શરૂ થાય છે", - // "type-equals-dataset_condition.label": "Type equals Dataset", "type-equals-dataset_condition.label": "પ્રકાર ડેટાસેટ સમાન છે", - // "type-equals-journal-article_condition.label": "Type equals Journal Article", "type-equals-journal-article_condition.label": "પ્રકાર જર્નલ આર્ટિકલ સમાન છે", - // "ldn.no-filter.label": "None", "ldn.no-filter.label": "કોઈ નથી", - // "admin.notify.dashboard": "Dashboard", "admin.notify.dashboard": "ડેશબોર્ડ", - // "menu.section.notify_dashboard": "Dashboard", "menu.section.notify_dashboard": "ડેશબોર્ડ", - // "menu.section.coar_notify": "COAR Notify", "menu.section.coar_notify": "COAR નોટિફાય", - // "admin-notify-dashboard.title": "Notify Dashboard", "admin-notify-dashboard.title": "નોટિફાય ડેશબોર્ડ", - // "admin-notify-dashboard.description": "The Notify dashboard monitor the general usage of the COAR Notify protocol across the repository. In the “Metrics” tab are statistics about usage of the COAR Notify protocol. In the “Logs/Inbound” and “Logs/Outbound” tabs it’s possible to search and check the individual status of each LDN message, either received or sent.", "admin-notify-dashboard.description": "નોટિફાય ડેશબોર્ડ રિપોઝિટરીમાં COAR નોટિફાય પ્રોટોકોલના સામાન્ય ઉપયોગની મોનિટર કરે છે. “મેટ્રિક્સ” ટેબમાં COAR નોટિફાય પ્રોટોકોલના ઉપયોગ વિશેના આંકડા છે. “લોગ્સ/ઇનબાઉન્ડ” અને “લોગ્સ/આઉટબાઉન્ડ” ટેબમાં દરેક LDN સંદેશાની વ્યક્તિગત સ્થિતિ તપાસવી અને શોધવી શક્ય છે, જે પ્રાપ્ત અથવા મોકલવામાં આવી છે.", - // "admin-notify-dashboard.metrics": "Metrics", "admin-notify-dashboard.metrics": "મેટ્રિક્સ", - // "admin-notify-dashboard.received-ldn": "Number of received LDN", "admin-notify-dashboard.received-ldn": "પ્રાપ્ત LDN ની સંખ્યા", - // "admin-notify-dashboard.generated-ldn": "Number of generated LDN", "admin-notify-dashboard.generated-ldn": "ઉત્પાદિત LDN ની સંખ્યા", - // "admin-notify-dashboard.NOTIFY.incoming.accepted": "Accepted", "admin-notify-dashboard.NOTIFY.incoming.accepted": "સ્વીકાર્યું", - // "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "Accepted inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "સ્વીકારેલ ઇનબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + "admin-notify-logs.NOTIFY.incoming.accepted": "હાલમાં દર્શાવેલ: સ્વીકારેલ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.incoming.processed": "Processed LDN", "admin-notify-dashboard.NOTIFY.incoming.processed": "પ્રક્રિયા કરેલ LDN", - // "admin-notify-dashboard.NOTIFY.incoming.processed.description": "Processed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.processed.description": "પ્રક્રિયા કરેલ ઇનબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", + "admin-notify-logs.NOTIFY.incoming.processed": "હાલમાં દર્શાવેલ: પ્રક્રિયા કરેલ LDN", - // "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + "admin-notify-logs.NOTIFY.incoming.failure": "હાલમાં દર્શાવેલ: નિષ્ફળ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.incoming.failure": "Failure", "admin-notify-dashboard.NOTIFY.incoming.failure": "નિષ્ફળ", - // "admin-notify-dashboard.NOTIFY.incoming.failure.description": "Failed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.failure.description": "નિષ્ફળ ઇનબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + "admin-notify-logs.NOTIFY.outgoing.failure": "હાલમાં દર્શાવેલ: નિષ્ફળ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.failure": "Failure", "admin-notify-dashboard.NOTIFY.outgoing.failure": "નિષ્ફળ", - // "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "Failed outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "નિષ્ફળ આઉટબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + "admin-notify-logs.NOTIFY.incoming.untrusted": "હાલમાં દર્શાવેલ: અવિશ્વસનીય સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "અવિશ્વસનીય", - // "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "Inbound notifications not trusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "અવિશ્વસનીય ઇનબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + "admin-notify-logs.NOTIFY.incoming.delivered": "હાલમાં દર્શાવેલ: પહોંચાડેલ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "Inbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "સફળતાપૂર્વક પહોંચાડેલ ઇનબાઉન્ડ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.delivered": "Delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered": "પહોંચાડેલ", - // "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + "admin-notify-logs.NOTIFY.outgoing.delivered": "હાલમાં દર્શાવેલ: પહોંચાડેલ સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "Outbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "સફળતાપૂર્વક પહોંચાડેલ આઉટબાઉન્ડ સૂચનાઓ", - // "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + "admin-notify-logs.NOTIFY.outgoing.queued": "હાલમાં દર્શાવેલ: કતારમાં સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "Notifications currently queued", "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "હાલમાં કતારમાં સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.queued": "Queued", "admin-notify-dashboard.NOTIFY.outgoing.queued": "કતારમાં", - // "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "હાલમાં દર્શાવેલ: પુનઃપ્રયાસ માટે કતારમાં સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "Queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "પુનઃપ્રયાસ માટે કતારમાં", - // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "Notifications currently queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "હાલમાં પુનઃપ્રયાસ માટે કતારમાં સૂચનાઓ", - // "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "સંબંધિત આઇટમ્સ", - // "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "Items related to inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "ઇનબાઉન્ડ સૂચનાઓ સાથે સંબંધિત આઇટમ્સ", - // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "સંબંધિત આઇટમ્સ", - // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "Items related to outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "આઉટબાઉન્ડ સૂચનાઓ સાથે સંબંધિત આઇટમ્સ", - // "admin.notify.dashboard.breadcrumbs": "Dashboard", "admin.notify.dashboard.breadcrumbs": "ડેશબોર્ડ", - // "admin.notify.dashboard.inbound": "Inbound messages", "admin.notify.dashboard.inbound": "ઇનબાઉન્ડ સંદેશાઓ", - // "admin.notify.dashboard.inbound-logs": "Logs/Inbound", "admin.notify.dashboard.inbound-logs": "લોગ્સ/ઇનબાઉન્ડ", - // "admin.notify.dashboard.filter": "Filter: ", - // TODO New key - Add a translation - "admin.notify.dashboard.filter": "Filter: ", + "admin.notify.dashboard.filter": "ફિલ્ટર: ", - // "search.filters.applied.f.relateditem": "Related items", "search.filters.applied.f.relateditem": "સંબંધિત આઇટમ્સ", - // "search.filters.applied.f.ldn_service": "LDN Service", "search.filters.applied.f.ldn_service": "LDN સેવા", - // "search.filters.applied.f.notifyReview": "Notify Review", "search.filters.applied.f.notifyReview": "નોટિફાય સમીક્ષા", - // "search.filters.applied.f.notifyEndorsement": "Notify Endorsement", "search.filters.applied.f.notifyEndorsement": "નોટિફાય મંજૂરી", - // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "નોટિફાય સંબંધ", - // "search.filters.applied.f.access_status": "Access type", "search.filters.applied.f.access_status": "ઍક્સેસ પ્રકાર", - // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "છેલ્લી પ્રક્રિયા સમય ", - // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "ન્યૂનતમ શ્રેણી", - // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "મહત્તમ શ્રેણી", - // "search.filters.applied.f.queue_last_start_time.min": "Min range", "search.filters.applied.f.queue_last_start_time.min": "ન્યૂનતમ શ્રેણી", - // "search.filters.applied.f.queue_last_start_time.max": "Max range", "search.filters.applied.f.queue_last_start_time.max": "મહત્તમ શ્રેણી", - // "admin.notify.dashboard.outbound": "Outbound messages", "admin.notify.dashboard.outbound": "આઉટબાઉન્ડ સંદેશાઓ", - // "admin.notify.dashboard.outbound-logs": "Logs/Outbound", "admin.notify.dashboard.outbound-logs": "લોગ્સ/આઉટબાઉન્ડ", - // "NOTIFY.incoming.search.results.head": "Incoming", "NOTIFY.incoming.search.results.head": "ઇનબાઉન્ડ", - // "search.filters.filter.relateditem.head": "Related item", "search.filters.filter.relateditem.head": "સંબંધિત આઇટમ", - // "search.filters.filter.origin.head": "Origin", "search.filters.filter.origin.head": "મૂળ", - // "search.filters.filter.ldn_service.head": "LDN Service", "search.filters.filter.ldn_service.head": "LDN સેવા", - // "search.filters.filter.target.head": "Target", "search.filters.filter.target.head": "લક્ષ્ય", - // "search.filters.filter.queue_status.head": "Queue status", "search.filters.filter.queue_status.head": "કતાર સ્થિતિ", - // "search.filters.filter.activity_stream_type.head": "Activity stream type", "search.filters.filter.activity_stream_type.head": "પ્રવાહ પ્રકાર", - // "search.filters.filter.coar_notify_type.head": "COAR Notify type", "search.filters.filter.coar_notify_type.head": "COAR નોટિફાય પ્રકાર", - // "search.filters.filter.notification_type.head": "Notification type", "search.filters.filter.notification_type.head": "સૂચના પ્રકાર", - // "search.filters.filter.relateditem.label": "Search related items", "search.filters.filter.relateditem.label": "સંબંધિત આઇટમ્સ માટે શોધો", - // "search.filters.filter.queue_status.label": "Search queue status", "search.filters.filter.queue_status.label": "કતાર સ્થિતિ માટે શોધો", - // "search.filters.filter.target.label": "Search target", "search.filters.filter.target.label": "લક્ષ્ય માટે શોધો", - // "search.filters.filter.activity_stream_type.label": "Search activity stream type", "search.filters.filter.activity_stream_type.label": "પ્રવાહ પ્રકાર માટે શોધો", - // "search.filters.applied.f.queue_status": "Queue Status", "search.filters.applied.f.queue_status": "કતાર સ્થિતિ", - // "search.filters.queue_status.0,authority": "Untrusted Ip", "search.filters.queue_status.0,authority": "અવિશ્વસનીય Ip", - // "search.filters.queue_status.1,authority": "Queued", "search.filters.queue_status.1,authority": "કતારમાં", - // "search.filters.queue_status.2,authority": "Processing", "search.filters.queue_status.2,authority": "પ્રક્રિયા", - // "search.filters.queue_status.3,authority": "Processed", "search.filters.queue_status.3,authority": "પ્રક્રિયા કરેલ", - // "search.filters.queue_status.4,authority": "Failed", "search.filters.queue_status.4,authority": "નિષ્ફળ", - // "search.filters.queue_status.5,authority": "Untrusted", "search.filters.queue_status.5,authority": "અવિશ્વસનીય", - // "search.filters.queue_status.6,authority": "Unmapped Action", "search.filters.queue_status.6,authority": "અનમૅપ્ડ ક્રિયા", - // "search.filters.queue_status.7,authority": "Queued for retry", "search.filters.queue_status.7,authority": "પુનઃપ્રયાસ માટે કતારમાં", - // "search.filters.applied.f.activity_stream_type": "Activity stream type", "search.filters.applied.f.activity_stream_type": "પ્રવાહ પ્રકાર", - // "search.filters.applied.f.coar_notify_type": "COAR Notify type", "search.filters.applied.f.coar_notify_type": "COAR નોટિફાય પ્રકાર", - // "search.filters.applied.f.notification_type": "Notification type", "search.filters.applied.f.notification_type": "સૂચના પ્રકાર", - // "search.filters.filter.coar_notify_type.label": "Search COAR Notify type", "search.filters.filter.coar_notify_type.label": "COAR નોટિફાય પ્રકાર માટે શોધો", - // "search.filters.filter.notification_type.label": "Search notification type", "search.filters.filter.notification_type.label": "સૂચના પ્રકાર માટે શોધો", - // "search.filters.filter.relateditem.placeholder": "Related items", "search.filters.filter.relateditem.placeholder": "સંબંધિત આઇટમ્સ", - // "search.filters.filter.target.placeholder": "Target", "search.filters.filter.target.placeholder": "લક્ષ્ય", - // "search.filters.filter.origin.label": "Search source", "search.filters.filter.origin.label": "મૂળ માટે શોધો", - // "search.filters.filter.origin.placeholder": "Source", "search.filters.filter.origin.placeholder": "મૂળ", - // "search.filters.filter.ldn_service.label": "Search LDN Service", "search.filters.filter.ldn_service.label": "LDN સેવા માટે શોધો", - // "search.filters.filter.ldn_service.placeholder": "LDN Service", "search.filters.filter.ldn_service.placeholder": "LDN સેવા", - // "search.filters.filter.queue_status.placeholder": "Queue status", "search.filters.filter.queue_status.placeholder": "કતાર સ્થિતિ", - // "search.filters.filter.activity_stream_type.placeholder": "Activity stream type", "search.filters.filter.activity_stream_type.placeholder": "પ્રવાહ પ્રકાર", - // "search.filters.filter.coar_notify_type.placeholder": "COAR Notify type", "search.filters.filter.coar_notify_type.placeholder": "COAR નોટિફાય પ્રકાર", - // "search.filters.filter.notification_type.placeholder": "Notification", "search.filters.filter.notification_type.placeholder": "સૂચના", - // "search.filters.filter.notifyRelation.head": "Notify Relation", "search.filters.filter.notifyRelation.head": "નોટિફાય સંબંધ", - // "search.filters.filter.notifyRelation.label": "Search Notify Relation", "search.filters.filter.notifyRelation.label": "નોટિફાય સંબંધ માટે શોધો", - // "search.filters.filter.notifyRelation.placeholder": "Notify Relation", "search.filters.filter.notifyRelation.placeholder": "નોટિફાય સંબંધ", - // "search.filters.filter.notifyReview.head": "Notify Review", "search.filters.filter.notifyReview.head": "નોટિફાય સમીક્ષા", - // "search.filters.filter.notifyReview.label": "Search Notify Review", "search.filters.filter.notifyReview.label": "નોટિફાય સમીક્ષા માટે શોધો", - // "search.filters.filter.notifyReview.placeholder": "Notify Review", "search.filters.filter.notifyReview.placeholder": "નોટિફાય સમીક્ષા", - // "search.filters.coar_notify_type.coar-notify:ReviewAction": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction": "સમીક્ષા ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "સમીક્ષા ક્રિયા", - // "notify-detail-modal.coar-notify:ReviewAction": "Review action", "notify-detail-modal.coar-notify:ReviewAction": "સમીક્ષા ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:EndorsementAction": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction": "મંજૂરી ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "મંજૂરી ક્રિયા", - // "notify-detail-modal.coar-notify:EndorsementAction": "Endorsement action", "notify-detail-modal.coar-notify:EndorsementAction": "મંજૂરી ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:IngestAction": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction": "ઇનજેસ્ટ ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ઇનજેસ્ટ ક્રિયા", - // "notify-detail-modal.coar-notify:IngestAction": "Ingest action", "notify-detail-modal.coar-notify:IngestAction": "ઇનજેસ્ટ ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:RelationshipAction": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction": "સંબંધ ક્રિયા", - // "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "સંબંધ ક્રિયા", - // "notify-detail-modal.coar-notify:RelationshipAction": "Relationship action", "notify-detail-modal.coar-notify:RelationshipAction": "સંબંધ ક્રિયા", - // "search.filters.queue_status.QUEUE_STATUS_QUEUED": "Queued", "search.filters.queue_status.QUEUE_STATUS_QUEUED": "કતારમાં", - // "notify-detail-modal.QUEUE_STATUS_QUEUED": "Queued", "notify-detail-modal.QUEUE_STATUS_QUEUED": "કતારમાં", - // "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "પુનઃપ્રયાસ માટે કતારમાં", - // "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "પુનઃપ્રયાસ માટે કતારમાં", - // "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "Processing", "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "પ્રક્રિયા", - // "notify-detail-modal.QUEUE_STATUS_PROCESSING": "Processing", "notify-detail-modal.QUEUE_STATUS_PROCESSING": "પ્રક્રિયા", - // "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "Processed", "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "પ્રક્રિયા કરેલ", - // "notify-detail-modal.QUEUE_STATUS_PROCESSED": "Processed", "notify-detail-modal.QUEUE_STATUS_PROCESSED": "પ્રક્રિયા કરેલ", - // "search.filters.queue_status.QUEUE_STATUS_FAILED": "Failed", "search.filters.queue_status.QUEUE_STATUS_FAILED": "નિષ્ફળ", - // "notify-detail-modal.QUEUE_STATUS_FAILED": "Failed", "notify-detail-modal.QUEUE_STATUS_FAILED": "નિષ્ફળ", - // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "Untrusted", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "અવિશ્વસનીય", - // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "અવિશ્વસનીય Ip", - // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "Untrusted", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "અવિશ્વસનીય", - // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "અવિશ્વસનીય Ip", - // "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "અનમૅપ્ડ ક્રિયા", - // "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "અનમૅપ્ડ ક્રિયા", - // "sorting.queue_last_start_time.DESC": "Last started queue Descending", "sorting.queue_last_start_time.DESC": "છેલ્લી શરૂ થયેલી કતાર ઉતરતી ક્રમમાં", - // "sorting.queue_last_start_time.ASC": "Last started queue Ascending", "sorting.queue_last_start_time.ASC": "છેલ્લી શરૂ થયેલી કતાર ચડતી ક્રમમાં", - // "sorting.queue_attempts.DESC": "Queue attempted Descending", "sorting.queue_attempts.DESC": "કતાર પ્રયાસ ઉતરતી ક્રમમાં", - // "sorting.queue_attempts.ASC": "Queue attempted Ascending", "sorting.queue_attempts.ASC": "કતાર પ્રયાસ ચડતી ક્રમમાં", - // "NOTIFY.incoming.involvedItems.search.results.head": "Items involved in incoming LDN", "NOTIFY.incoming.involvedItems.search.results.head": "ઇનબાઉન્ડ LDN માં સંકળાયેલા આઇટમ્સ", - // "NOTIFY.outgoing.involvedItems.search.results.head": "Items involved in outgoing LDN", "NOTIFY.outgoing.involvedItems.search.results.head": "આઉટબાઉન્ડ LDN માં સંકળાયેલા આઇટમ્સ", - // "type.notify-detail-modal": "Type", "type.notify-detail-modal": "પ્રકાર", - // "id.notify-detail-modal": "Id", "id.notify-detail-modal": "Id", - // "coarNotifyType.notify-detail-modal": "COAR Notify type", "coarNotifyType.notify-detail-modal": "COAR નોટિફાય પ્રકાર", - // "activityStreamType.notify-detail-modal": "Activity stream type", "activityStreamType.notify-detail-modal": "પ્રવાહ પ્રકાર", - // "inReplyTo.notify-detail-modal": "In reply to", "inReplyTo.notify-detail-modal": "જવાબમાં", - // "object.notify-detail-modal": "Repository Item", "object.notify-detail-modal": "રિપોઝિટરી આઇટમ", - // "context.notify-detail-modal": "Repository Item", "context.notify-detail-modal": "રિપોઝિટરી આઇટમ", - // "queueAttempts.notify-detail-modal": "Queue attempts", "queueAttempts.notify-detail-modal": "કતાર પ્રયાસ", - // "queueLastStartTime.notify-detail-modal": "Queue last started", "queueLastStartTime.notify-detail-modal": "છેલ્લી કતાર શરૂ", - // "origin.notify-detail-modal": "LDN Service", "origin.notify-detail-modal": "LDN સેવા", - // "target.notify-detail-modal": "LDN Service", "target.notify-detail-modal": "LDN સેવા", - // "queueStatusLabel.notify-detail-modal": "Queue status", "queueStatusLabel.notify-detail-modal": "કતાર સ્થિતિ", - // "queueTimeout.notify-detail-modal": "Queue timeout", "queueTimeout.notify-detail-modal": "કતાર સમયમર્યાદા", - // "notify-message-modal.title": "Message Detail", "notify-message-modal.title": "સંદેશ વિગત", - // "notify-message-modal.show-message": "Show message", "notify-message-modal.show-message": "સંદેશ બતાવો", - // "notify-message-result.timestamp": "Timestamp", "notify-message-result.timestamp": "ટાઇમસ્ટેમ્પ", - // "notify-message-result.repositoryItem": "Repository Item", "notify-message-result.repositoryItem": "રિપોઝિટરી આઇટમ", - // "notify-message-result.ldnService": "LDN Service", "notify-message-result.ldnService": "LDN સેવા", - // "notify-message-result.type": "Type", "notify-message-result.type": "પ્રકાર", - // "notify-message-result.status": "Status", "notify-message-result.status": "સ્થિતિ", - // "notify-message-result.action": "Action", "notify-message-result.action": "ક્રિયા", - // "notify-message-result.detail": "Detail", "notify-message-result.detail": "વિગત", - // "notify-message-result.reprocess": "Reprocess", "notify-message-result.reprocess": "ફરીથી પ્રક્રિયા", - // "notify-queue-status.processed": "Processed", "notify-queue-status.processed": "પ્રક્રિયા કરેલ", - // "notify-queue-status.failed": "Failed", "notify-queue-status.failed": "નિષ્ફળ", - // "notify-queue-status.queue_retry": "Queued for retry", "notify-queue-status.queue_retry": "પુનઃપ્રયાસ માટે કતારમાં", - // "notify-queue-status.unmapped_action": "Unmapped action", "notify-queue-status.unmapped_action": "અનમૅપ્ડ ક્રિયા", - // "notify-queue-status.processing": "Processing", "notify-queue-status.processing": "પ્રક્રિયા", - // "notify-queue-status.queued": "Queued", "notify-queue-status.queued": "કતારમાં", - // "notify-queue-status.untrusted": "Untrusted", "notify-queue-status.untrusted": "અવિશ્વસનીય", - // "ldnService.notify-detail-modal": "LDN Service", "ldnService.notify-detail-modal": "LDN સેવા", - // "relatedItem.notify-detail-modal": "Related Item", "relatedItem.notify-detail-modal": "સંબંધિત આઇટમ", - // "search.filters.filter.notifyEndorsement.head": "Notify Endorsement", "search.filters.filter.notifyEndorsement.head": "નોટિફાય મંજૂરી", - // "search.filters.filter.notifyEndorsement.placeholder": "Notify Endorsement", "search.filters.filter.notifyEndorsement.placeholder": "નોટિફાય મંજૂરી", - // "search.filters.filter.notifyEndorsement.label": "Search Notify Endorsement", "search.filters.filter.notifyEndorsement.label": "નોટિફાય મંજૂરી માટે શોધો", - // "form.date-picker.placeholder.year": "Year", "form.date-picker.placeholder.year": "વર્ષ", - // "form.date-picker.placeholder.month": "Month", "form.date-picker.placeholder.month": "મહિનો", - // "form.date-picker.placeholder.day": "Day", "form.date-picker.placeholder.day": "દિવસ", - // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "ક્રિએટિવ કોમન્સ લાઇસન્સ", - // "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as", "item.page.cc.license.disclaimer": "જ્યાં અન્યથા નોંધાયેલ નથી, ત્યાં આ આઇટમનું લાઇસન્સ આ પ્રમાણે વર્ણવવામાં આવ્યું છે", - // "browse.search-form.placeholder": "Search the repository", "browse.search-form.placeholder": "રિપોઝિટરી શોધો", - // "file-download-link.download": "Download ", "file-download-link.download": "ડાઉનલોડ કરો", - // "register-page.registration.aria.label": "Enter your e-mail address", "register-page.registration.aria.label": "તમારો ઇમેઇલ સરનામું દાખલ કરો", - // "forgot-email.form.aria.label": "Enter your e-mail address", "forgot-email.form.aria.label": "તમારો ઇમેઇલ સરનામું દાખલ કરો", - // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "પેજ ફરીથી લોડ થશે. ફિલ્ટર {{ filter }} પસંદ કરેલ છે.", - // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", "live-region.ordering.instructions": "પુનઃક્રમમાં ગોઠવવા માટે સ્પેસબાર દબાવો {{ itemName }}.", - // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", - // TODO New key - Add a translation - "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + "live-region.ordering.status": "{{ itemName }}, પકડ્યું. સૂચિમાં વર્તમાન સ્થિતિ: {{ index }} માંથી {{ length }}. સ્થિતિ બદલવા માટે ઉપર અને નીચેના તીર કીઓ દબાવો, છોડવા માટે સ્પેસબાર દબાવો, રદ કરવા માટે એસ્કેપ દબાવો.", - // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", "live-region.ordering.moved": "{{ itemName }}, સ્થિતિમાં ખસેડ્યું {{ index }} માંથી {{ length }}. સ્થિતિ બદલવા માટે ઉપર અને નીચેના તીર કીઓ દબાવો, છોડવા માટે સ્પેસબાર દબાવો, રદ કરવા માટે એસ્કેપ દબાવો.", - // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", "live-region.ordering.dropped": "{{ itemName }}, સ્થિતિમાં છોડ્યું {{ index }} માંથી {{ length }}.", - // "dynamic-form-array.sortable-list.label": "Sortable list", "dynamic-form-array.sortable-list.label": "સૉર્ટેબલ સૂચિ", - // "external-login.component.or": "or", "external-login.component.or": "અથવા", - // "external-login.confirmation.header": "Information needed to complete the login process", "external-login.confirmation.header": "લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે માહિતી જરૂરી છે", - // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", "external-login.noEmail.informationText": "{{authMethod}} માંથી પ્રાપ્ત માહિતી લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે પૂરતી નથી. કૃપા કરીને નીચેની ગુમ થયેલી માહિતી આપો, અથવા {{authMethod}} ને મોજુદા ખાતા સાથે જોડવા માટે અલગ પદ્ધતિથી લૉગિન કરો.", - // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", "external-login.haveEmail.informationText": "તમારા પાસે હજી સુધી આ સિસ્ટમમાં એકાઉન્ટ નથી એવું લાગે છે. જો એવું હોય, તો કૃપા કરીને {{authMethod}} માંથી પ્રાપ્ત ડેટાની પુષ્ટિ કરો અને તમારા માટે નવું એકાઉન્ટ બનાવવામાં આવશે. અન્યથા, જો તમારી પાસે પહેલેથી જ સિસ્ટમમાં એકાઉન્ટ છે, તો કૃપા કરીને ઇમેઇલ સરનામું અપડેટ કરો જેથી તે સિસ્ટમમાં પહેલેથી જ ઉપયોગમાં લેવાતા સરનામા સાથે મેળ ખાતું હોય અથવા તમારા મોજુદા ખાતા સાથે {{authMethod}} ને જોડવા માટે અલગ પદ્ધતિથી લૉગિન કરો.", - // "external-login.confirm-email.header": "Confirm or update email", "external-login.confirm-email.header": "ઇમેઇલની પુષ્ટિ કરો અથવા અપડેટ કરો", - // "external-login.confirmation.email-required": "Email is required.", "external-login.confirmation.email-required": "ઇમેઇલ જરૂરી છે.", - // "external-login.confirmation.email-label": "User Email", "external-login.confirmation.email-label": "વપરાશકર્તા ઇમેઇલ", - // "external-login.confirmation.email-invalid": "Invalid email format.", "external-login.confirmation.email-invalid": "અમાન્ય ઇમેઇલ ફોર્મેટ.", - // "external-login.confirm.button.label": "Confirm this email", "external-login.confirm.button.label": "આ ઇમેઇલની પુષ્ટિ કરો", - // "external-login.confirm-email-sent.header": "Confirmation email sent", "external-login.confirm-email-sent.header": "પુષ્ટિ ઇમેઇલ મોકલવામાં આવ્યું", - // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", "external-login.confirm-email-sent.info": "અમે આપેલા સરનામે ઇમેઇલ મોકલ્યો છે.
લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે ઇમેઇલમાં આપેલા સૂચનોનું અનુસરણ કરો.", - // "external-login.provide-email.header": "Provide email", "external-login.provide-email.header": "ઇમેઇલ આપો", - // "external-login.provide-email.button.label": "Send Verification link", "external-login.provide-email.button.label": "પુષ્ટિ લિંક મોકલો", - // "external-login-validation.review-account-info.header": "Review your account information", "external-login-validation.review-account-info.header": "તમારી ખાતાની માહિતી સમીક્ષા કરો", - // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", "external-login-validation.review-account-info.info": "ORCID માંથી પ્રાપ્ત માહિતી તમારી પ્રોફાઇલમાં નોંધાયેલ માહિતીથી અલગ છે.
કૃપા કરીને તેમને સમીક્ષા કરો અને નક્કી કરો કે તમે તેમાંના કોઈને અપડેટ કરવા માંગો છો કે નહીં. સાચવ્યા પછી તમને તમારી પ્રોફાઇલ પેજ પર રીડાયરેક્ટ કરવામાં આવશે.", - // "external-login-validation.review-account-info.table.header.information": "Information", "external-login-validation.review-account-info.table.header.information": "માહિતી", - // "external-login-validation.review-account-info.table.header.received-value": "Received value", "external-login-validation.review-account-info.table.header.received-value": "પ્રાપ્ત મૂલ્ય", - // "external-login-validation.review-account-info.table.header.current-value": "Current value", "external-login-validation.review-account-info.table.header.current-value": "વર્તમાન મૂલ્ય", - // "external-login-validation.review-account-info.table.header.action": "Override", "external-login-validation.review-account-info.table.header.action": "ઓવરરાઇડ", - // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", "external-login-validation.review-account-info.table.row.not-applicable": "લાગુ નથી", - // "on-label": "ON", "on-label": "ચાલુ", - // "off-label": "OFF", "off-label": "બંધ", - // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", "review-account-info.merge-data.notification.success": "તમારી ખાતાની માહિતી સફળતાપૂર્વક અપડેટ કરવામાં આવી છે", - // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", "review-account-info.merge-data.notification.error": "તમારી ખાતાની માહિતી અપડેટ કરતી વખતે કંઈક ખોટું થયું", - // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", "review-account-info.alert.error.content": "કંઈક ખોટું થયું. કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", - // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", "external-login-page.provide-email.notifications.error": "કંઈક ખોટું થયું. ઇમેઇલ સરનામું છોડી દેવામાં આવ્યું છે અથવા ઓપરેશન માન્ય નથી.", - // "external-login.error.notification": "There was an error while processing your request. Please try again later.", "external-login.error.notification": "તમારી વિનંતી પ્રક્રિયા કરતી વખતે ભૂલ આવી. કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.", - // "external-login.connect-to-existing-account.label": "Connect to an existing user", "external-login.connect-to-existing-account.label": "મોજુદા વપરાશકર્તા સાથે જોડો", - // "external-login.modal.label.close": "Close", "external-login.modal.label.close": "બંધ કરો", - // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", "external-login-page.provide-email.create-account.notifications.error.header": "કંઈક ખોટું થયું", - // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", "external-login-page.provide-email.create-account.notifications.error.content": "કૃપા કરીને તમારું ઇમેઇલ સરનામું ફરીથી તપાસો અને ફરી પ્રયાસ કરો.", - // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", "external-login-page.confirm-email.create-account.notifications.error.no-netId": "આ ઇમેઇલ ખાતા સાથે કંઈક ખોટું થયું. ફરી પ્રયાસ કરો અથવા લૉગિન માટે અલગ પદ્ધતિનો ઉપયોગ કરો.", - // "external-login-page.orcid-confirmation.firstname": "First name", "external-login-page.orcid-confirmation.firstname": "પ્રથમ નામ", - // "external-login-page.orcid-confirmation.firstname.label": "First name", "external-login-page.orcid-confirmation.firstname.label": "પ્રથમ નામ", - // "external-login-page.orcid-confirmation.lastname": "Last name", "external-login-page.orcid-confirmation.lastname": "છેલ્લું નામ", - // "external-login-page.orcid-confirmation.lastname.label": "Last name", "external-login-page.orcid-confirmation.lastname.label": "છેલ્લું નામ", - // "external-login-page.orcid-confirmation.netid": "Account Identifier", "external-login-page.orcid-confirmation.netid": "ખાતા ઓળખકર્તા", - // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", - // "external-login-page.orcid-confirmation.email": "Email", "external-login-page.orcid-confirmation.email": "ઇમેઇલ", - // "external-login-page.orcid-confirmation.email.label": "Email", "external-login-page.orcid-confirmation.email.label": "ઇમેઇલ", - // "search.filters.access_status.open.access": "Open access", "search.filters.access_status.open.access": "ઓપન ઍક્સેસ", - // "search.filters.access_status.restricted": "Restricted access", "search.filters.access_status.restricted": "પ્રતિબંધિત ઍક્સેસ", - // "search.filters.access_status.embargo": "Embargoed access", "search.filters.access_status.embargo": "એમ્બાર્ગો ઍક્સેસ", - // "search.filters.access_status.metadata.only": "Metadata only", "search.filters.access_status.metadata.only": "મેટાડેટા માત્ર", - // "search.filters.access_status.unknown": "Unknown", "search.filters.access_status.unknown": "અજ્ઞાત", - // "metadata-export-filtered-items.tooltip": "Export report output as CSV", "metadata-export-filtered-items.tooltip": "CSV તરીકે રિપોર્ટ આઉટપુટ નિકાસ કરો", - // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", "metadata-export-filtered-items.submit.success": "CSV નિકાસ સફળ.", - // "metadata-export-filtered-items.submit.error": "CSV export failed.", "metadata-export-filtered-items.submit.error": "CSV નિકાસ નિષ્ફળ.", - // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", "metadata-export-filtered-items.columns.warning": "CSV નિકાસ આપમેળે બધી સંબંધિત ફીલ્ડ્સ શામેલ કરે છે, તેથી આ સૂચિમાં પસંદગીઓ ધ્યાનમાં લેવામાં આવતી નથી.", - // "embargo.listelement.badge": "Embargo until {{ date }}", "embargo.listelement.badge": "એમ્બાર્ગો સુધી {{ date }}", - // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", "metadata-export-search.submit.error.limit-exceeded": "માત્ર પ્રથમ {{limit}} આઇટમ્સ નિકાસ કરવામાં આવશે", - - // "file-download-link.request-copy": "Request a copy of ", - // TODO New key - Add a translation - "file-download-link.request-copy": "Request a copy of ", - - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - - -} \ No newline at end of file +} diff --git a/src/assets/i18n/hi.json5 b/src/assets/i18n/hi.json5 index a92ea7203c4..5fb5f9c4dd0 100644 --- a/src/assets/i18n/hi.json5 +++ b/src/assets/i18n/hi.json5 @@ -2942,25 +2942,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "शीर्ष-स्तरीय समुदाय प्राप्त करने में त्रुटि", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "अपनी सबमिशन को पूरा करने के लिए आपको इस लाइसेंस को प्रदान करना होगा। यदि आप इस समय लाइसेंस प्रदान करने में असमर्थ हैं, तो आप अपना कार्य सहेज सकते हैं और बाद में वापस आ सकते हैं या सबमिशन को हटा सकते हैं।", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "अपनी सबमिशन को पूरा करने के लिए आपको इस cclicense को प्रदान करना होगा। यदि आप इस समय cclicense प्रदान करने में असमर्थ हैं, तो आप अपना कार्य सहेज सकते हैं और बाद में वापस आ सकते हैं या सबमिशन को हटा सकते हैं।", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -8554,10 +8541,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "क्रिएटिव कॉमन्स लाइसेंस", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "रीसायकल", @@ -8725,18 +8708,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "अपलोड सफल", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "जब चेक किया जाता है, तो यह आइटम खोज/ब्राउज़ में खोजने योग्य होगा। जब अनचेक किया जाता है, तो आइटम केवल एक सीधे लिंक के माध्यम से उपलब्ध होगा और कभी भी खोज/ब्राउज़ में दिखाई नहीं देगा।", @@ -11147,17 +11118,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/it.json5 b/src/assets/i18n/it.json5 index 88bd8e05745..8c94ac954f7 100644 --- a/src/assets/i18n/it.json5 +++ b/src/assets/i18n/it.json5 @@ -3121,26 +3121,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Errore durante il recupero delle community di primo livello", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "È necessario concedere questa licenza per completare l'immisione. Se non sei in grado di concedere questa licenza in questo momento, puoi salvare il tuo lavoro e tornare più tardi o rimuovere l'immissione.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "L'input è limitato dal pattern in uso: {{ pattern }}.", @@ -9030,10 +9017,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licenza Creative commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Ricicla", @@ -9202,18 +9185,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Caricamento riuscito", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Una volta selezionato, questo item sarà individuabile nella ricerca/navigazione. Se deselezionato, l'item sarà disponibile solo tramite un collegamento diretto e non apparirà mai nella ricerca / navigazione.", @@ -12100,17 +12071,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } diff --git a/src/assets/i18n/ja.json5 b/src/assets/i18n/ja.json5 index d9cdd752e34..2d969c19464 100644 --- a/src/assets/i18n/ja.json5 +++ b/src/assets/i18n/ja.json5 @@ -3847,26 +3847,14 @@ // TODO New key - Add a translation "error.top-level-communities": "Error fetching top-level communities", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -11102,10 +11090,6 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", // TODO New key - Add a translation "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -11326,18 +11310,6 @@ // TODO New key - Add a translation "submission.sections.upload.upload-successful": "Upload successful", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -14558,17 +14530,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/kk.json5 b/src/assets/i18n/kk.json5 index fe4b2156902..320cd39037f 100644 --- a/src/assets/i18n/kk.json5 +++ b/src/assets/i18n/kk.json5 @@ -3215,26 +3215,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Жоғары деңгейлі қауымдастықтарды алу қатесі", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Жіберуді аяқтау үшін осы лицензияны беруіңіз керек. Бұл лицензияны қазір бере алмасаңыз, жұмысыңызды сақтап, кейінірек оралуыңызға немесе жіберуді жоюға болады.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Бұл енгізу ағымдағы үлгімен шектелген: {{ pattern }}.", @@ -9266,10 +9253,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons лицензиясы", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Өңдеуге", @@ -9439,18 +9422,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Жүктеу сәтті өтті", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Егер бұл құсбелгі қойылса, бұл элемент іздеу/қарау үшін қол жетімді болады. Егер құсбелгі алынып тасталса, элемент тек тікелей сілтеме арқылы қол жетімді болады және іздеу/қарау кезінде ешқашан пайда болмайды.", @@ -12451,17 +12422,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/lv.json5 b/src/assets/i18n/lv.json5 index f1dbcc3898e..1dce108b87f 100644 --- a/src/assets/i18n/lv.json5 +++ b/src/assets/i18n/lv.json5 @@ -3488,26 +3488,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Kļūda ielasot augstākā līmeņa kategorijas", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Jums ir jānodrošina šī licence, lai pabeigtu iesniegšanu. Ja šobrīd nevarat piešķirt šo licenci, varat saglabāt savu darbu un atgriezties vēlāk vai noņemt iesniegšanu.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Šo ievadi ierobežo pašreizējais modelis: {{ pattern }}.", @@ -10118,10 +10105,6 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Pārstrādāt", @@ -10315,18 +10298,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Augšupielāde veiksmīga", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13514,17 +13485,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/mr.json5 b/src/assets/i18n/mr.json5 index a24a498dcd5..51e23f27d9e 100644 --- a/src/assets/i18n/mr.json5 +++ b/src/assets/i18n/mr.json5 @@ -1,11162 +1,7259 @@ { - // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "आपल्याला या पृष्ठावर प्रवेश करण्याची परवानगी नाही. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", - // "401.link.home-page": "Take me to the home page", "401.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", - // "401.unauthorized": "Unauthorized", "401.unauthorized": "अनधिकृत", - // "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.", "403.help": "आपल्याला या पृष्ठावर प्रवेश करण्याची परवानगी नाही. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", - // "403.link.home-page": "Take me to the home page", "403.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", - // "403.forbidden": "Forbidden", "403.forbidden": "मनाई", - // "500.page-internal-server-error": "Service unavailable", "500.page-internal-server-error": "सेवा अनुपलब्ध", - // "500.help": "The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.", "500.help": "सर्व्हर तात्पुरते आपल्या विनंतीची सेवा देऊ शकत नाही कारण देखभाल डाउनटाइम किंवा क्षमता समस्या आहेत. कृपया नंतर पुन्हा प्रयत्न करा.", - // "500.link.home-page": "Take me to the home page", "500.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", - // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ", "404.help": "आपण शोधत असलेले पृष्ठ आम्हाला सापडत नाही. पृष्ठ हलविले गेले असेल किंवा हटविले गेले असेल. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", - // "404.link.home-page": "Take me to the home page", "404.link.home-page": "मला मुख्य पृष्ठावर घेऊन चला", - // "404.page-not-found": "Page not found", "404.page-not-found": "पृष्ठ सापडले नाही", - // "error-page.description.401": "Unauthorized", "error-page.description.401": "अनधिकृत", - // "error-page.description.403": "Forbidden", "error-page.description.403": "मनाई", - // "error-page.description.500": "Service unavailable", "error-page.description.500": "सेवा अनुपलब्ध", - // "error-page.description.404": "Page not found", "error-page.description.404": "पृष्ठ सापडले नाही", - // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "ORCID द्वारे लॉगिन करताना एक त्रुटी आली. कृपया खात्री करा की आपण आपला ORCID खाते ईमेल पत्ता DSpace सोबत शेअर केला आहे. त्रुटी कायम राहिल्यास, प्रशासकाशी संपर्क साधा", - // "listelement.badge.access-status": "Access status:", - // TODO New key - Add a translation - "listelement.badge.access-status": "Access status:", - - // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "एंबार्गो", - // "access-status.metadata.only.listelement.badge": "Metadata only", "access-status.metadata.only.listelement.badge": "फक्त मेटाडेटा", - // "access-status.open.access.listelement.badge": "Open Access", "access-status.open.access.listelement.badge": "मुक्त प्रवेश", - // "access-status.restricted.listelement.badge": "Restricted", "access-status.restricted.listelement.badge": "प्रतिबंधित", - // "access-status.unknown.listelement.badge": "Unknown", "access-status.unknown.listelement.badge": "अज्ञात", - // "admin.curation-tasks.breadcrumbs": "System curation tasks", "admin.curation-tasks.breadcrumbs": "सिस्टम क्यूरेशन कार्ये", - // "admin.curation-tasks.title": "System curation tasks", "admin.curation-tasks.title": "सिस्टम क्यूरेशन कार्ये", - // "admin.curation-tasks.header": "System curation tasks", "admin.curation-tasks.header": "सिस्टम क्यूरेशन कार्ये", - // "admin.registries.bitstream-formats.breadcrumbs": "Format registry", "admin.registries.bitstream-formats.breadcrumbs": "फॉरमॅट रजिस्ट्री", - // "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.create.breadcrumbs": "बिटस्ट्रीम फॉरमॅट", - // "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.", "admin.registries.bitstream-formats.create.failure.content": "नवीन बिटस्ट्रीम फॉरमॅट तयार करताना एक त्रुटी आली.", - // "admin.registries.bitstream-formats.create.failure.head": "Failure", "admin.registries.bitstream-formats.create.failure.head": "अपयश", - // "admin.registries.bitstream-formats.create.head": "Create bitstream format", "admin.registries.bitstream-formats.create.head": "बिटस्ट्रीम फॉरमॅट तयार करा", - // "admin.registries.bitstream-formats.create.new": "Add a new bitstream format", "admin.registries.bitstream-formats.create.new": "नवीन बिटस्ट्रीम फॉरमॅट जोडा", - // "admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.", "admin.registries.bitstream-formats.create.success.content": "नवीन बिटस्ट्रीम फॉरमॅट यशस्वीरित्या तयार केले गेले.", - // "admin.registries.bitstream-formats.create.success.head": "Success", "admin.registries.bitstream-formats.create.success.head": "यश", - // "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} फॉरमॅट(स) काढण्यात अपयश", - // "admin.registries.bitstream-formats.delete.failure.head": "Failure", "admin.registries.bitstream-formats.delete.failure.head": "अपयश", - // "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)", "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} फॉरमॅट(स) यशस्वीरित्या काढले", - // "admin.registries.bitstream-formats.delete.success.head": "Success", "admin.registries.bitstream-formats.delete.success.head": "यश", - // "admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.", "admin.registries.bitstream-formats.description": "बिटस्ट्रीम फॉरमॅटची ही यादी ज्ञात फॉरमॅट्स आणि त्यांच्या समर्थन स्तराबद्दल माहिती प्रदान करते.", - // "admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format", "admin.registries.bitstream-formats.edit.breadcrumbs": "बिटस्ट्रीम फॉरमॅट", - // "admin.registries.bitstream-formats.edit.description.hint": "", "admin.registries.bitstream-formats.edit.description.hint": "", - // "admin.registries.bitstream-formats.edit.description.label": "Description", "admin.registries.bitstream-formats.edit.description.label": "वर्णन", - // "admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.", "admin.registries.bitstream-formats.edit.extensions.hint": "एक्सटेंशन्स म्हणजे फाइल एक्सटेंशन्स आहेत ज्या अपलोड केलेल्या फाइल्सच्या फॉरमॅटची स्वयंचलितपणे ओळख करण्यासाठी वापरल्या जातात. आपण प्रत्येक फॉरमॅटसाठी अनेक एक्सटेंशन्स प्रविष्ट करू शकता.", - // "admin.registries.bitstream-formats.edit.extensions.label": "File extensions", "admin.registries.bitstream-formats.edit.extensions.label": "फाइल एक्सटेंशन्स", - // "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot", "admin.registries.bitstream-formats.edit.extensions.placeholder": "डॉटशिवाय फाइल एक्सटेंशन प्रविष्ट करा", - // "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.", "admin.registries.bitstream-formats.edit.failure.content": "बिटस्ट्रीम फॉरमॅट संपादित करताना एक त्रुटी आली.", - // "admin.registries.bitstream-formats.edit.failure.head": "Failure", "admin.registries.bitstream-formats.edit.failure.head": "अपयश", - // "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", - // TODO New key - Add a translation - "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + "admin.registries.bitstream-formats.edit.head": "बिटस्ट्रीम फॉरमॅट: {{ format }}", - // "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.", "admin.registries.bitstream-formats.edit.internal.hint": "आतील म्हणून चिन्हांकित फॉरमॅट्स वापरकर्त्यापासून लपविले जातात आणि प्रशासकीय उद्देशांसाठी वापरले जातात.", - // "admin.registries.bitstream-formats.edit.internal.label": "Internal", "admin.registries.bitstream-formats.edit.internal.label": "आतील", - // "admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.", "admin.registries.bitstream-formats.edit.mimetype.hint": "या फॉरमॅटशी संबंधित MIME प्रकार, अद्वितीय असण्याची आवश्यकता नाही.", - // "admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type", "admin.registries.bitstream-formats.edit.mimetype.label": "MIME प्रकार", - // "admin.registries.bitstream-formats.edit.shortDescription.hint": "A unique name for this format, (e.g. Microsoft Word XP or Microsoft Word 2000)", "admin.registries.bitstream-formats.edit.shortDescription.hint": "या फॉरमॅटसाठी एक अद्वितीय नाव, (उदा. Microsoft Word XP किंवा Microsoft Word 2000)", - // "admin.registries.bitstream-formats.edit.shortDescription.label": "Name", "admin.registries.bitstream-formats.edit.shortDescription.label": "नाव", - // "admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.", "admin.registries.bitstream-formats.edit.success.content": "बिटस्ट्रीम फॉरमॅट यशस्वीरित्या संपादित केले गेले.", - // "admin.registries.bitstream-formats.edit.success.head": "Success", "admin.registries.bitstream-formats.edit.success.head": "यश", - // "admin.registries.bitstream-formats.edit.supportLevel.hint": "The level of support your institution pledges for this format.", "admin.registries.bitstream-formats.edit.supportLevel.hint": "आपली संस्था या फॉरमॅटसाठी समर्थन स्तराची प्रतिज्ञा करते.", - // "admin.registries.bitstream-formats.edit.supportLevel.label": "Support level", "admin.registries.bitstream-formats.edit.supportLevel.label": "समर्थन स्तर", - // "admin.registries.bitstream-formats.head": "Bitstream Format Registry", "admin.registries.bitstream-formats.head": "बिटस्ट्रीम फॉरमॅट रजिस्ट्री", - // "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.", "admin.registries.bitstream-formats.no-items": "दाखविण्यासाठी कोणतेही बिटस्ट्रीम फॉरमॅट नाहीत.", - // "admin.registries.bitstream-formats.table.delete": "Delete selected", "admin.registries.bitstream-formats.table.delete": "निवडलेले हटवा", - // "admin.registries.bitstream-formats.table.deselect-all": "Deselect all", "admin.registries.bitstream-formats.table.deselect-all": "सर्व निवड रद्द करा", - // "admin.registries.bitstream-formats.table.internal": "internal", "admin.registries.bitstream-formats.table.internal": "आतील", - // "admin.registries.bitstream-formats.table.mimetype": "MIME Type", "admin.registries.bitstream-formats.table.mimetype": "MIME प्रकार", - // "admin.registries.bitstream-formats.table.name": "Name", "admin.registries.bitstream-formats.table.name": "नाव", - // "admin.registries.bitstream-formats.table.selected": "Selected bitstream formats", "admin.registries.bitstream-formats.table.selected": "निवडलेले बिटस्ट्रीम फॉरमॅट्स", - // "admin.registries.bitstream-formats.table.id": "ID", "admin.registries.bitstream-formats.table.id": "ID", - // "admin.registries.bitstream-formats.table.return": "Back", "admin.registries.bitstream-formats.table.return": "मागे", - // "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known", "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "ज्ञात", - // "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported", "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "समर्थित", - // "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown", "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "अज्ञात", - // "admin.registries.bitstream-formats.table.supportLevel.head": "Support Level", "admin.registries.bitstream-formats.table.supportLevel.head": "समर्थन स्तर", - // "admin.registries.bitstream-formats.title": "Bitstream Format Registry", "admin.registries.bitstream-formats.title": "बिटस्ट्रीम फॉरमॅट रजिस्ट्री", - // "admin.registries.bitstream-formats.select": "Select", "admin.registries.bitstream-formats.select": "निवडा", - // "admin.registries.bitstream-formats.deselect": "Deselect", "admin.registries.bitstream-formats.deselect": "निवड रद्द करा", - // "admin.registries.metadata.breadcrumbs": "Metadata registry", "admin.registries.metadata.breadcrumbs": "मेटाडेटा रजिस्ट्री", - // "admin.registries.metadata.description": "The metadata registry maintains a list of all metadata fields available in the repository. These fields may be divided amongst multiple schemas. However, DSpace requires the qualified Dublin Core schema.", "admin.registries.metadata.description": "मेटाडेटा रजिस्ट्री रेपॉझिटरीमध्ये उपलब्ध असलेल्या सर्व मेटाडेटा फील्डची यादी राखते. ही फील्ड्स अनेक स्कीमांमध्ये विभागली जाऊ शकतात. तथापि, DSpace ला योग्य Dublin Core स्कीमा आवश्यक आहे.", - // "admin.registries.metadata.form.create": "Create metadata schema", "admin.registries.metadata.form.create": "मेटाडेटा स्कीमा तयार करा", - // "admin.registries.metadata.form.edit": "Edit metadata schema", "admin.registries.metadata.form.edit": "मेटाडेटा स्कीमा संपादित करा", - // "admin.registries.metadata.form.name": "Name", "admin.registries.metadata.form.name": "नाव", - // "admin.registries.metadata.form.namespace": "Namespace", "admin.registries.metadata.form.namespace": "Namespace", - // "admin.registries.metadata.head": "Metadata Registry", "admin.registries.metadata.head": "मेटाडेटा रजिस्ट्री", - // "admin.registries.metadata.schemas.no-items": "No metadata schemas to show.", "admin.registries.metadata.schemas.no-items": "दाखविण्यासाठी कोणतेही मेटाडेटा स्कीमा नाहीत.", - // "admin.registries.metadata.schemas.select": "Select", "admin.registries.metadata.schemas.select": "निवडा", - // "admin.registries.metadata.schemas.deselect": "Deselect", "admin.registries.metadata.schemas.deselect": "निवड रद्द करा", - // "admin.registries.metadata.schemas.table.delete": "Delete selected", "admin.registries.metadata.schemas.table.delete": "निवडलेले हटवा", - // "admin.registries.metadata.schemas.table.selected": "Selected schemas", "admin.registries.metadata.schemas.table.selected": "निवडलेले स्कीमा", - // "admin.registries.metadata.schemas.table.id": "ID", "admin.registries.metadata.schemas.table.id": "ID", - // "admin.registries.metadata.schemas.table.name": "Name", "admin.registries.metadata.schemas.table.name": "नाव", - // "admin.registries.metadata.schemas.table.namespace": "Namespace", "admin.registries.metadata.schemas.table.namespace": "Namespace", - // "admin.registries.metadata.title": "Metadata Registry", "admin.registries.metadata.title": "मेटाडेटा रजिस्ट्री", - // "admin.registries.schema.breadcrumbs": "Metadata schema", "admin.registries.schema.breadcrumbs": "मेटाडेटा स्कीमा", - // "admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".", "admin.registries.schema.description": "हे \"{{namespace}}\" साठी मेटाडेटा स्कीमा आहे.", - // "admin.registries.schema.fields.select": "Select", "admin.registries.schema.fields.select": "निवडा", - // "admin.registries.schema.fields.deselect": "Deselect", "admin.registries.schema.fields.deselect": "निवड रद्द करा", - // "admin.registries.schema.fields.head": "Schema metadata fields", "admin.registries.schema.fields.head": "स्कीमा मेटाडेटा फील्ड्स", - // "admin.registries.schema.fields.no-items": "No metadata fields to show.", "admin.registries.schema.fields.no-items": "दाखविण्यासाठी कोणतेही मेटाडेटा फील्ड्स नाहीत.", - // "admin.registries.schema.fields.table.delete": "Delete selected", "admin.registries.schema.fields.table.delete": "निवडलेले हटवा", - // "admin.registries.schema.fields.table.field": "Field", "admin.registries.schema.fields.table.field": "फील्ड", - // "admin.registries.schema.fields.table.selected": "Selected metadata fields", "admin.registries.schema.fields.table.selected": "निवडलेले मेटाडेटा फील्ड्स", - // "admin.registries.schema.fields.table.id": "ID", "admin.registries.schema.fields.table.id": "ID", - // "admin.registries.schema.fields.table.scopenote": "Scope Note", "admin.registries.schema.fields.table.scopenote": "स्कोप नोट", - // "admin.registries.schema.form.create": "Create metadata field", "admin.registries.schema.form.create": "मेटाडेटा फील्ड तयार करा", - // "admin.registries.schema.form.edit": "Edit metadata field", "admin.registries.schema.form.edit": "मेटाडेटा फील्ड संपादित करा", - // "admin.registries.schema.form.element": "Element", "admin.registries.schema.form.element": "एलिमेंट", - // "admin.registries.schema.form.qualifier": "Qualifier", "admin.registries.schema.form.qualifier": "क्वालिफायर", - // "admin.registries.schema.form.scopenote": "Scope Note", "admin.registries.schema.form.scopenote": "स्कोप नोट", - // "admin.registries.schema.head": "Metadata Schema", "admin.registries.schema.head": "मेटाडेटा स्कीमा", - // "admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.created": "यशस्वीरित्या मेटाडेटा स्कीमा तयार केले \"{{prefix}}\"", - // "admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.failure": "{{amount}} मेटाडेटा स्कीमा हटविण्यात अपयश", - // "admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas", "admin.registries.schema.notification.deleted.success": "{{amount}} मेटाडेटा स्कीमा यशस्वीरित्या हटविले", - // "admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"", "admin.registries.schema.notification.edited": "यशस्वीरित्या मेटाडेटा स्कीमा संपादित केले \"{{prefix}}\"", - // "admin.registries.schema.notification.failure": "Error", "admin.registries.schema.notification.failure": "त्रुटी", - // "admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"", "admin.registries.schema.notification.field.created": "यशस्वीरित्या मेटाडेटा फील्ड तयार केले \"{{field}}\"", - // "admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.failure": "{{amount}} मेटाडेटा फील्ड्स हटविण्यात अपयश", - // "admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields", "admin.registries.schema.notification.field.deleted.success": "{{amount}} मेटाडेटा फील्ड्स यशस्वीरित्या हटविले", - // "admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"", "admin.registries.schema.notification.field.edited": "यशस्वीरित्या मेटाडेटा फील्ड संपादित केले \"{{field}}\"", - // "admin.registries.schema.notification.success": "Success", "admin.registries.schema.notification.success": "यश", - // "admin.registries.schema.return": "Back", "admin.registries.schema.return": "मागे", - // "admin.registries.schema.title": "Metadata Schema Registry", "admin.registries.schema.title": "मेटाडेटा स्कीमा रजिस्ट्री", - // "admin.access-control.bulk-access.breadcrumbs": "Bulk Access Management", "admin.access-control.bulk-access.breadcrumbs": "बल्क ऍक्सेस मॅनेजमेंट", - // "administrativeBulkAccess.search.results.head": "Search Results", "administrativeBulkAccess.search.results.head": "शोध परिणाम", - // "admin.access-control.bulk-access": "Bulk Access Management", "admin.access-control.bulk-access": "बल्क ऍक्सेस मॅनेजमेंट", - // "admin.access-control.bulk-access.title": "Bulk Access Management", "admin.access-control.bulk-access.title": "बल्क ऍक्सेस मॅनेजमेंट", - // "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", - // TODO New key - Add a translation - "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects", + "admin.access-control.bulk-access-browse.header": "पाऊल 1: ऑब्जेक्ट्स निवडा", - // "admin.access-control.bulk-access-browse.search.header": "Search", "admin.access-control.bulk-access-browse.search.header": "शोध", - // "admin.access-control.bulk-access-browse.selected.header": "Current selection({{number}})", "admin.access-control.bulk-access-browse.selected.header": "सध्याची निवड({{number}})", - // "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", - // TODO New key - Add a translation - "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform", + "admin.access-control.bulk-access-settings.header": "पाऊल 2: ऑपरेशन करण्यासाठी", - // "admin.access-control.epeople.actions.delete": "Delete EPerson", "admin.access-control.epeople.actions.delete": "EPerson हटवा", - // "admin.access-control.epeople.actions.impersonate": "Impersonate EPerson", "admin.access-control.epeople.actions.impersonate": "EPerson चे अनुकरण करा", - // "admin.access-control.epeople.actions.reset": "Reset password", "admin.access-control.epeople.actions.reset": "पासवर्ड रीसेट करा", - // "admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson", "admin.access-control.epeople.actions.stop-impersonating": "EPerson चे अनुकरण थांबवा", - // "admin.access-control.epeople.breadcrumbs": "EPeople", "admin.access-control.epeople.breadcrumbs": "EPeople", - // "admin.access-control.epeople.title": "EPeople", "admin.access-control.epeople.title": "EPeople", - // "admin.access-control.epeople.edit.breadcrumbs": "New EPerson", "admin.access-control.epeople.edit.breadcrumbs": "नवीन EPerson", - // "admin.access-control.epeople.edit.title": "New EPerson", "admin.access-control.epeople.edit.title": "नवीन EPerson", - // "admin.access-control.epeople.add.breadcrumbs": "Add EPerson", "admin.access-control.epeople.add.breadcrumbs": "EPerson जोडा", - // "admin.access-control.epeople.add.title": "Add EPerson", "admin.access-control.epeople.add.title": "EPerson जोडा", - // "admin.access-control.epeople.head": "EPeople", "admin.access-control.epeople.head": "EPeople", - // "admin.access-control.epeople.search.head": "Search", "admin.access-control.epeople.search.head": "शोध", - // "admin.access-control.epeople.button.see-all": "Browse All", "admin.access-control.epeople.button.see-all": "सर्व ब्राउझ करा", - // "admin.access-control.epeople.search.scope.metadata": "Metadata", "admin.access-control.epeople.search.scope.metadata": "मेटाडेटा", - // "admin.access-control.epeople.search.scope.email": "Email (exact)", "admin.access-control.epeople.search.scope.email": "ईमेल (अचूक)", - // "admin.access-control.epeople.search.button": "Search", "admin.access-control.epeople.search.button": "शोधा", - // "admin.access-control.epeople.search.placeholder": "Search people...", "admin.access-control.epeople.search.placeholder": "लोकांना शोधा...", - // "admin.access-control.epeople.button.add": "Add EPerson", "admin.access-control.epeople.button.add": "EPerson जोडा", - // "admin.access-control.epeople.table.id": "ID", "admin.access-control.epeople.table.id": "ID", - // "admin.access-control.epeople.table.name": "Name", "admin.access-control.epeople.table.name": "नाव", - // "admin.access-control.epeople.table.email": "Email (exact)", "admin.access-control.epeople.table.email": "ईमेल (अचूक)", - // "admin.access-control.epeople.table.edit": "Edit", "admin.access-control.epeople.table.edit": "संपादित करा", - // "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", - // "admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group", "admin.access-control.epeople.table.edit.buttons.edit-disabled": "आपल्याला या गटाचे संपादन करण्याची परवानगी नाही", - // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" हटवा", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", + "admin.access-control.epeople.no-items": "दाखविण्यासाठी कोणतेही EPeople नाहीत.", + + "admin.access-control.epeople.form.create": "EPerson तयार करा", + + "admin.access-control.epeople.form.edit": "EPerson संपादित करा", + + "admin.access-control.epeople.form.firstName": "पहिले नाव", + + "admin.access-control.epeople.form.lastName": "शेवटचे नाव", + + "admin.access-control.epeople.form.email": "ईमेल", + + "admin.access-control.epeople.form.emailHint": "वैध ईमेल पत्ता असणे आवश्यक आहे", + + "admin.access-control.epeople.form.canLogIn": "लॉग इन करू शकतो", + + "admin.access-control.epeople.form.requireCertificate": "प्रमाणपत्र आवश्यक आहे", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", + "admin.access-control.epeople.form.return": "मागे", + + "admin.access-control.epeople.form.notification.created.success": "यशस्वीरित्या EPerson तयार केले \"{{name}}\"", + + "admin.access-control.epeople.form.notification.created.failure": "EPerson तयार करण्यात अपयश \"{{name}}\"", + + "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson तयार करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", + + "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson संपादित करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", + + "admin.access-control.epeople.form.notification.edited.success": "यशस्वीरित्या EPerson संपादित केले \"{{name}}\"", + + "admin.access-control.epeople.form.notification.edited.failure": "EPerson संपादित करण्यात अपयश \"{{name}}\"", + + "admin.access-control.epeople.form.notification.deleted.success": "यशस्वीरित्या EPerson हटविले \"{{name}}\"", + + "admin.access-control.epeople.form.notification.deleted.failure": "EPerson हटविण्यात अपयश \"{{name}}\"", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", + "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "या गटांचा सदस्य:", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", + "admin.access-control.epeople.form.table.id": "ID", + + "admin.access-control.epeople.breadcrumbs": "EPeople", + + "admin.access-control.epeople.title": "EPeople", + + "admin.access-control.epeople.edit.breadcrumbs": "नवीन EPerson", + + "admin.access-control.epeople.edit.title": "नवीन EPerson", + + "admin.access-control.epeople.add.breadcrumbs": "EPerson जोडा", + + "admin.access-control.epeople.add.title": "EPerson जोडा", + + "admin.access-control.epeople.head": "EPeople", + + "admin.access-control.epeople.search.head": "शोध", + + "admin.access-control.epeople.button.see-all": "सर्व ब्राउझ करा", + + "admin.access-control.epeople.search.scope.metadata": "Metadata", + + "admin.access-control.epeople.search.scope.email": "ईमेल (अचूक)", + + "admin.access-control.epeople.search.button": "शोधा", + + "admin.access-control.epeople.search.placeholder": "लोकांना शोधा...", + + "admin.access-control.epeople.button.add": "EPerson जोडा", + + "admin.access-control.epeople.table.id": "ID", + + "admin.access-control.epeople.table.name": "नाव", + + "admin.access-control.epeople.table.email": "ईमेल (अचूक)", + + "admin.access-control.epeople.table.edit": "संपादित करा", + + "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", + + "admin.access-control.epeople.table.edit.buttons.edit-disabled": "आपल्याला या गटाचे संपादन करण्याची परवानगी नाही", + + "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" हटवा", - // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "दाखविण्यासाठी कोणतेही EPeople नाहीत.", - // "admin.access-control.epeople.form.create": "Create EPerson", "admin.access-control.epeople.form.create": "EPerson तयार करा", - // "admin.access-control.epeople.form.edit": "Edit EPerson", "admin.access-control.epeople.form.edit": "EPerson संपादित करा", - // "admin.access-control.epeople.form.firstName": "First name", "admin.access-control.epeople.form.firstName": "पहिले नाव", - // "admin.access-control.epeople.form.lastName": "Last name", "admin.access-control.epeople.form.lastName": "शेवटचे नाव", - // "admin.access-control.epeople.form.email": "Email", "admin.access-control.epeople.form.email": "ईमेल", - // "admin.access-control.epeople.form.emailHint": "Must be a valid email address", "admin.access-control.epeople.form.emailHint": "वैध ईमेल पत्ता असणे आवश्यक आहे", - // "admin.access-control.epeople.form.canLogIn": "Can log in", "admin.access-control.epeople.form.canLogIn": "लॉग इन करू शकतो", - // "admin.access-control.epeople.form.requireCertificate": "Requires certificate", "admin.access-control.epeople.form.requireCertificate": "प्रमाणपत्र आवश्यक आहे", - // "admin.access-control.epeople.form.return": "Back", "admin.access-control.epeople.form.return": "मागे", - // "admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.success": "यशस्वीरित्या EPerson तयार केले \"{{name}}\"", - // "admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.created.failure": "EPerson तयार करण्यात अपयश \"{{name}}\"", - // "admin.access-control.epeople.form.notification.created.failure.emailInUse": "Failed to create EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson तयार करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", - // "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Failed to edit EPerson \"{{name}}\", email \"{{email}}\" already in use.", "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson संपादित करण्यात अपयश \"{{name}}\", ईमेल \"{{email}}\" आधीच वापरात आहे.", - // "admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.success": "यशस्वीरित्या EPerson संपादित केले \"{{name}}\"", - // "admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.edited.failure": "EPerson संपादित करण्यात अपयश \"{{name}}\"", - // "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.success": "यशस्वीरित्या EPerson हटविले \"{{name}}\"", - // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.failure": "EPerson हटविण्यात अपयश \"{{name}}\"", - // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", - // TODO New key - Add a translation - "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", + "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "या गटांचा सदस्य:", - // "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": "नाव", - // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", "admin.access-control.epeople.form.table.collectionOrCommunity": "संग्रह/समुदाय", - // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", "admin.access-control.epeople.form.memberOfNoGroups": "हा EPerson कोणत्याही गटाचा सदस्य नाही", - // "admin.access-control.epeople.form.goToGroups": "Add to groups", "admin.access-control.epeople.form.goToGroups": "गटांमध्ये जोडा", - // "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"", + "admin.access-control.epeople.notification.deleted.failure": "EPerson हटवण्याचा प्रयत्न करताना त्रुटी आली \"{{id}}\" कोडसह: \"{{statusCode}}\" आणि संदेश: \"{{restResponse.errorMessage}}\"", - // "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + "admin.access-control.epeople.notification.deleted.success": "यशस्वीरित्या EPerson हटविले: \"{{name}}\"", - // "admin.access-control.groups.title": "Groups", "admin.access-control.groups.title": "गट", - // "admin.access-control.groups.breadcrumbs": "Groups", "admin.access-control.groups.breadcrumbs": "गट", - // "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group", "admin.access-control.groups.singleGroup.breadcrumbs": "गट संपादित करा", - // "admin.access-control.groups.title.singleGroup": "Edit Group", "admin.access-control.groups.title.singleGroup": "गट संपादित करा", - // "admin.access-control.groups.title.addGroup": "New Group", "admin.access-control.groups.title.addGroup": "नवीन गट", - // "admin.access-control.groups.addGroup.breadcrumbs": "New Group", "admin.access-control.groups.addGroup.breadcrumbs": "नवीन गट", - // "admin.access-control.groups.head": "Groups", "admin.access-control.groups.head": "गट", - // "admin.access-control.groups.button.add": "Add group", "admin.access-control.groups.button.add": "गट जोडा", - // "admin.access-control.groups.search.head": "Search groups", "admin.access-control.groups.search.head": "गट शोधा", - // "admin.access-control.groups.button.see-all": "Browse all", "admin.access-control.groups.button.see-all": "सर्व ब्राउझ करा", - // "admin.access-control.groups.search.button": "Search", "admin.access-control.groups.search.button": "शोधा", - // "admin.access-control.groups.search.placeholder": "Search groups...", "admin.access-control.groups.search.placeholder": "गट शोधा...", - // "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": "नाव", - // "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.table.collectionOrCommunity": "संग्रह/समुदाय", - // "admin.access-control.groups.table.members": "Members", "admin.access-control.groups.table.members": "सदस्य", - // "admin.access-control.groups.table.edit": "Edit", "admin.access-control.groups.table.edit": "संपादित करा", - // "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.edit": "\"{{name}}\" संपादित करा", - // "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.groups.table.edit.buttons.remove": "\"{{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": "या नावाने किंवा UUID ने कोणतेही गट सापडले नाहीत", - // "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"", "admin.access-control.groups.notification.deleted.success": "यशस्वीरित्या गट हटविले \"{{name}}\"", - // "admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"", "admin.access-control.groups.notification.deleted.failure.title": "गट हटविण्यात अपयश \"{{name}}\"", - // "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", - // TODO New key - Add a translation - "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + "admin.access-control.groups.notification.deleted.failure.content": "कारण: \"{{cause}}\"", - // "admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.permanent": "हा गट कायमचा आहे, त्यामुळे तो संपादित किंवा हटवता येणार नाही. आपण या पृष्ठाचा वापर करून गट सदस्यांना अद्याप जोडू आणि काढू शकता.", - // "admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the \"assign roles\" tab on the edit {{comcol}} page. You can still add and remove group members using this page.", "admin.access-control.groups.form.alert.workflowGroup": "हा गट संपादित किंवा हटवता येणार नाही कारण तो \"{{name}}\" {{comcol}} मध्ये सबमिशन आणि वर्कफ्लो प्रक्रियेत भूमिकेशी संबंधित आहे. आपण ते \"भूमिका नियुक्त करा\" टॅबवरून संपादित {{comcol}} पृष्ठावरून हटवू शकता. आपण या पृष्ठाचा वापर करून गट सदस्यांना अद्याप जोडू आणि काढू शकता.", - // "admin.access-control.groups.form.head.create": "Create group", "admin.access-control.groups.form.head.create": "गट तयार करा", - // "admin.access-control.groups.form.head.edit": "Edit group", "admin.access-control.groups.form.head.edit": "गट संपादित करा", - // "admin.access-control.groups.form.groupName": "Group name", "admin.access-control.groups.form.groupName": "गटाचे नाव", - // "admin.access-control.groups.form.groupCommunity": "Community or Collection", "admin.access-control.groups.form.groupCommunity": "समुदाय किंवा संग्रह", - // "admin.access-control.groups.form.groupDescription": "Description", "admin.access-control.groups.form.groupDescription": "वर्णन", - // "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.success": "यशस्वीरित्या गट तयार केले \"{{name}}\"", - // "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"", "admin.access-control.groups.form.notification.created.failure": "गट तयार करण्यात अपयश \"{{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.", - // TODO New key - Add a translation - "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": "नावाने गट तयार करण्यात अपयश: \"{{name}}\", खात्री करा की नाव आधीच वापरात नाही.", - // "admin.access-control.groups.form.notification.edited.failure": "Failed to edit Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.failure": "गट संपादित करण्यात अपयश \"{{name}}\"", - // "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!", "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "नाव \"{{name}}\" आधीच वापरात आहे!", - // "admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"", "admin.access-control.groups.form.notification.edited.success": "यशस्वीरित्या गट संपादित केले \"{{name}}\"", - // "admin.access-control.groups.form.actions.delete": "Delete Group", "admin.access-control.groups.form.actions.delete": "गट हटवा", - // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "गट हटवा \"{{ dsoName }}\"", - // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", "admin.access-control.groups.form.delete-group.modal.info": "आपल्याला खात्री आहे की आपण गट हटवू इच्छिता \"{{ dsoName }}\"", - // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", "admin.access-control.groups.form.delete-group.modal.cancel": "रद्द करा", - // "admin.access-control.groups.form.delete-group.modal.confirm": "Delete", "admin.access-control.groups.form.delete-group.modal.confirm": "हटवा", - // "admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.success": "यशस्वीरित्या गट हटविले \"{{ name }}\"", - // "admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"", "admin.access-control.groups.form.notification.deleted.failure.title": "गट हटविण्यात अपयश \"{{ name }}\"", - // "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", - // TODO New key - Add a translation - "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + "admin.access-control.groups.form.notification.deleted.failure.content": "कारण: \"{{ cause }}\"", - // "admin.access-control.groups.form.members-list.head": "EPeople", "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": "EPeople जोडा", - // "admin.access-control.groups.form.members-list.button.see-all": "Browse All", "admin.access-control.groups.form.members-list.button.see-all": "सर्व ब्राउझ करा", - // "admin.access-control.groups.form.members-list.headMembers": "Current Members", "admin.access-control.groups.form.members-list.headMembers": "सध्याचे सदस्य", - // "admin.access-control.groups.form.members-list.search.button": "Search", "admin.access-control.groups.form.members-list.search.button": "शोधा", - // "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": "नाव", - // "admin.access-control.groups.form.members-list.table.identity": "Identity", "admin.access-control.groups.form.members-list.table.identity": "ओळख", - // "admin.access-control.groups.form.members-list.table.email": "Email", "admin.access-control.groups.form.members-list.table.email": "ईमेल", - // "admin.access-control.groups.form.members-list.table.netid": "NetID", "admin.access-control.groups.form.members-list.table.netid": "NetID", - // "admin.access-control.groups.form.members-list.table.edit": "Remove / Add", "admin.access-control.groups.form.members-list.table.edit": "हटवा / जोडा", - // "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": "सदस्य हटवा नावाने \"{{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": "Successfully added member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.success.addMember": "यशस्वीरित्या सदस्य जोडले: \"{{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": "Failed to add member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.addMember": "सदस्य जोडण्यात अपयश: \"{{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": "Successfully deleted member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.success.deleteMember": "यशस्वीरित्या सदस्य हटविले: \"{{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": "Failed to delete member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "सदस्य हटविण्यात अपयश: \"{{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": "सदस्य जोडा नावाने \"{{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": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", - // "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": "गटात अद्याप कोणतेही सदस्य नाहीत, शोधा आणि जोडा.", - // "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search", "admin.access-control.groups.form.members-list.no-items": "त्या शोधात कोणतेही EPeople सापडले नाहीत", - // "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", - // TODO New key - Add a translation - "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure": "काहीतरी चुकले: \"{{cause}}\"", - // "admin.access-control.groups.form.subgroups-list.head": "Groups", "admin.access-control.groups.form.subgroups-list.head": "गट", - // "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup", "admin.access-control.groups.form.subgroups-list.search.head": "उपगट जोडा", - // "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All", "admin.access-control.groups.form.subgroups-list.button.see-all": "सर्व ब्राउझ करा", - // "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups", "admin.access-control.groups.form.subgroups-list.headSubgroups": "सध्याचे उपगट", - // "admin.access-control.groups.form.subgroups-list.search.button": "Search", "admin.access-control.groups.form.subgroups-list.search.button": "शोधा", - // "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": "नाव", - // "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community", "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "संग्रह/समुदाय", - // "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add", "admin.access-control.groups.form.subgroups-list.table.edit": "हटवा / जोडा", - // "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": "उपगट हटवा नावाने \"{{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": "उपगट जोडा नावाने \"{{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": "Successfully added subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "यशस्वीरित्या उपगट जोडले: \"{{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": "Failed to add subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "उपगट जोडण्यात अपयश: \"{{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": "Successfully deleted subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "यशस्वीरित्या उपगट हटविले: \"{{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": "Failed to delete subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "उपगट हटविण्यात अपयश: \"{{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": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", - // "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": "हा सध्याचा गट आहे, जोडता येणार नाही.", - // "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": "या नावाने किंवा 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": "गटात अद्याप कोणतेही उपगट नाहीत.", - // "admin.access-control.groups.form.return": "Back", "admin.access-control.groups.form.return": "मागे", - // "admin.quality-assurance.breadcrumbs": "Quality Assurance", "admin.quality-assurance.breadcrumbs": "गुणवत्ता आश्वासन", - // "admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions", "admin.notifications.event.breadcrumbs": "गुणवत्ता आश्वासन सूचना", - // "admin.notifications.event.page.title": "Quality Assurance Suggestions", "admin.notifications.event.page.title": "गुणवत्ता आश्वासन सूचना", - // "admin.quality-assurance.page.title": "Quality Assurance", "admin.quality-assurance.page.title": "गुणवत्ता आश्वासन", - // "admin.notifications.source.breadcrumbs": "Quality Assurance", "admin.notifications.source.breadcrumbs": "गुणवत्ता आश्वासन", - // "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", + "admin.access-control.groups.form.tooltip.editGroupPage": "या पृष्ठावर, आपण गटाच्या गुणधर्म आणि सदस्यता बदलू शकता. शीर्ष विभागात, आपण गटाचे नाव आणि वर्णन संपादित करू शकता, जोपर्यंत हा संग्रह किंवा समुदायासाठी प्रशासकीय गट नाही, अशा परिस्थितीत गटाचे नाव आणि वर्णन स्वयंचलितपणे तयार केले जाते आणि संपादित केले जाऊ शकत नाही. पुढील विभागांमध्ये, आपण गट सदस्यता संपादित करू शकता. अधिक तपशीलांसाठी [विकी](https://wiki.lyrasdisplay/DSDOC7x/Create+or+manage+a+user+group पहा.", - // "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "या गटात EPerson जोडण्यासाठी किंवा काढण्यासाठी, 'सर्व ब्राउझ करा' बटणावर क्लिक करा किंवा वापरकर्त्यांना शोधण्यासाठी खालील शोध पट्टी वापरा (शोध पट्टीच्या डाव्या बाजूला ड्रॉपडाउन वापरून मेटाडेटा किंवा ईमेलद्वारे शोधायचे आहे ते निवडा). नंतर खालील यादीमध्ये आपण जोडू इच्छित असलेल्या प्रत्येक वापरकर्त्यासाठी प्लस चिन्हावर क्लिक करा, किंवा आपण काढू इच्छित असलेल्या प्रत्येक वापरकर्त्यासाठी कचरा डब्यावर क्लिक करा. खालील यादीमध्ये अनेक पृष्ठे असू शकतात: पुढील पृष्ठांवर नेण्यासाठी यादीखालील पृष्ठ नियंत्रण वापरा.", - // "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - // TODO New key - Add a translation - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "या गटात उपगट जोडण्यासाठी किंवा काढण्यासाठी, 'सर्व ब्राउझ करा' बटणावर क्लिक करा किंवा गट शोधण्यासाठी शोध पट्टी वापरा. नंतर खालील यादीमध्ये आपण जोडू इच्छित असलेल्या प्रत्येक गटासाठी प्लस चिन्हावर क्लिक करा, किंवा आपण काढू इच्छित असलेल्या प्रत्येक गटासाठी कचरा डब्यावर क्लिक करा. खालील यादीमध्ये अनेक पृष्ठे असू शकतात: पुढील पृष्ठांवर नेण्यासाठी यादीखालील पृष्ठ नियंत्रण वापरा.", - // "admin.reports.collections.title": "Collection Filter Report", "admin.reports.collections.title": "संग्रह फिल्टर अहवाल", - // "admin.reports.collections.breadcrumbs": "Collection Filter Report", "admin.reports.collections.breadcrumbs": "संग्रह फिल्टर अहवाल", - // "admin.reports.collections.head": "Collection Filter Report", "admin.reports.collections.head": "संग्रह फिल्टर अहवाल", - // "admin.reports.button.show-collections": "Show Collections", "admin.reports.button.show-collections": "संग्रह दाखवा", - // "admin.reports.collections.collections-report": "Collection Report", "admin.reports.collections.collections-report": "संग्रह अहवाल", - // "admin.reports.collections.item-results": "Item Results", "admin.reports.collections.item-results": "आयटम परिणाम", - // "admin.reports.collections.community": "Community", "admin.reports.collections.community": "समुदाय", - // "admin.reports.collections.collection": "Collection", "admin.reports.collections.collection": "संग्रह", - // "admin.reports.collections.nb_items": "Nb. Items", "admin.reports.collections.nb_items": "आयटम संख्या", - // "admin.reports.collections.match_all_selected_filters": "Matching all selected filters", "admin.reports.collections.match_all_selected_filters": "सर्व निवडलेल्या फिल्टरशी जुळणारे", - // "admin.reports.items.breadcrumbs": "Metadata Query Report", "admin.reports.items.breadcrumbs": "मेटाडेटा क्वेरी अहवाल", - // "admin.reports.items.head": "Metadata Query Report", "admin.reports.items.head": "मेटाडेटा क्वेरी अहवाल", - // "admin.reports.items.run": "Run Item Query", "admin.reports.items.run": "आयटम क्वेरी चालवा", - // "admin.reports.items.section.collectionSelector": "Collection Selector", "admin.reports.items.section.collectionSelector": "संग्रह निवडकर्ता", - // "admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries", "admin.reports.items.section.metadataFieldQueries": "मेटाडेटा फील्ड क्वेरी", - // "admin.reports.items.predefinedQueries": "Predefined Queries", "admin.reports.items.predefinedQueries": "पूर्वनिर्धारित क्वेरी", - // "admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries", "admin.reports.items.section.limitPaginateQueries": "मर्यादा/पृष्ठांकन क्वेरी", - // "admin.reports.items.limit": "Limit/", "admin.reports.items.limit": "मर्यादा/", - // "admin.reports.items.offset": "Offset", "admin.reports.items.offset": "ऑफसेट", - // "admin.reports.items.wholeRepo": "Whole Repository", "admin.reports.items.wholeRepo": "संपूर्ण रेपॉझिटरी", - // "admin.reports.items.anyField": "Any field", "admin.reports.items.anyField": "कोणतेही फील्ड", - // "admin.reports.items.predicate.exists": "exists", "admin.reports.items.predicate.exists": "अस्तित्वात आहे", - // "admin.reports.items.predicate.doesNotExist": "does not exist", "admin.reports.items.predicate.doesNotExist": "अस्तित्वात नाही", - // "admin.reports.items.predicate.equals": "equals", "admin.reports.items.predicate.equals": "समान आहे", - // "admin.reports.items.predicate.doesNotEqual": "does not equal", "admin.reports.items.predicate.doesNotEqual": "समान नाही", - // "admin.reports.items.predicate.like": "like", "admin.reports.items.predicate.like": "सारखे", - // "admin.reports.items.predicate.notLike": "not like", "admin.reports.items.predicate.notLike": "सारखे नाही", - // "admin.reports.items.predicate.contains": "contains", "admin.reports.items.predicate.contains": "अंतर्भूत आहे", - // "admin.reports.items.predicate.doesNotContain": "does not contain", "admin.reports.items.predicate.doesNotContain": "अंतर्भूत नाही", - // "admin.reports.items.predicate.matches": "matches", "admin.reports.items.predicate.matches": "जुळते", - // "admin.reports.items.predicate.doesNotMatch": "does not match", "admin.reports.items.predicate.doesNotMatch": "जुळत नाही", - // "admin.reports.items.preset.new": "New Query", "admin.reports.items.preset.new": "नवीन क्वेरी", - // "admin.reports.items.preset.hasNoTitle": "Has No Title", "admin.reports.items.preset.hasNoTitle": "शीर्षक नाही", - // "admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri", "admin.reports.items.preset.hasNoIdentifierUri": "dc.identifier.uri नाही", - // "admin.reports.items.preset.hasCompoundSubject": "Has compound subject", "admin.reports.items.preset.hasCompoundSubject": "संयुक्त विषय आहे", - // "admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author", "admin.reports.items.preset.hasCompoundAuthor": "संयुक्त dc.contributor.author आहे", - // "admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator", "admin.reports.items.preset.hasCompoundCreator": "संयुक्त dc.creator आहे", - // "admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description", "admin.reports.items.preset.hasUrlInDescription": "dc.description मध्ये URL आहे", - // "admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance", "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance मध्ये पूर्ण मजकूर आहे", - // "admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance", "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance मध्ये पूर्ण मजकूर नाही", - // "admin.reports.items.preset.hasEmptyMetadata": "Has empty metadata", "admin.reports.items.preset.hasEmptyMetadata": "रिकामे मेटाडेटा आहे", - // "admin.reports.items.preset.hasUnbreakingDataInDescription": "Has unbreaking metadata in description", "admin.reports.items.preset.hasUnbreakingDataInDescription": "वर्णनात न तुटणारे मेटाडेटा आहे", - // "admin.reports.items.preset.hasXmlEntityInMetadata": "Has XML entity in metadata", "admin.reports.items.preset.hasXmlEntityInMetadata": "मेटाडेटा मध्ये XML घटक आहे", - // "admin.reports.items.preset.hasNonAsciiCharInMetadata": "Has non-ascii character in metadata", "admin.reports.items.preset.hasNonAsciiCharInMetadata": "मेटाडेटा मध्ये non-ascii वर्ण आहे", - // "admin.reports.items.number": "No.", "admin.reports.items.number": "क्रमांक.", - // "admin.reports.items.id": "UUID", "admin.reports.items.id": "UUID", - // "admin.reports.items.collection": "Collection", "admin.reports.items.collection": "संग्रह", - // "admin.reports.items.handle": "URI", "admin.reports.items.handle": "URI", - // "admin.reports.items.title": "Title", "admin.reports.items.title": "शीर्षक", - // "admin.reports.commons.filters": "Filters", "admin.reports.commons.filters": "फिल्टर्स", - // "admin.reports.commons.additional-data": "Additional data to return", "admin.reports.commons.additional-data": "अतिरिक्त डेटा परत करा", - // "admin.reports.commons.previous-page": "Prev Page", "admin.reports.commons.previous-page": "मागील पृष्ठ", - // "admin.reports.commons.next-page": "Next Page", "admin.reports.commons.next-page": "पुढील पृष्ठ", - // "admin.reports.commons.page": "Page", "admin.reports.commons.page": "पृष्ठ", - // "admin.reports.commons.of": "of", "admin.reports.commons.of": "च्या", - // "admin.reports.commons.export": "Export for Metadata Update", "admin.reports.commons.export": "मेटाडेटा अपडेटसाठी निर्यात करा", - // "admin.reports.commons.filters.deselect_all": "Deselect all filters", "admin.reports.commons.filters.deselect_all": "सर्व फिल्टर्स निवड रद्द करा", - // "admin.reports.commons.filters.select_all": "Select all filters", "admin.reports.commons.filters.select_all": "सर्व फिल्टर्स निवडा", - // "admin.reports.commons.filters.matches_all": "Matches all specified filters", "admin.reports.commons.filters.matches_all": "सर्व निर्दिष्ट फिल्टर्सशी जुळते", - // "admin.reports.commons.filters.property": "Item Property Filters", "admin.reports.commons.filters.property": "आयटम प्रॉपर्टी फिल्टर्स", - // "admin.reports.commons.filters.property.is_item": "Is Item - always true", "admin.reports.commons.filters.property.is_item": "आयटम आहे - नेहमी खरे", - // "admin.reports.commons.filters.property.is_withdrawn": "Withdrawn Items", "admin.reports.commons.filters.property.is_withdrawn": "मागे घेतलेले आयटम", - // "admin.reports.commons.filters.property.is_not_withdrawn": "Available Items - Not Withdrawn", "admin.reports.commons.filters.property.is_not_withdrawn": "उपलब्ध आयटम - मागे घेतलेले नाहीत", - // "admin.reports.commons.filters.property.is_discoverable": "Discoverable Items - Not Private", "admin.reports.commons.filters.property.is_discoverable": "शोधण्यायोग्य आयटम - खाजगी नाहीत", - // "admin.reports.commons.filters.property.is_not_discoverable": "Not Discoverable - Private Item", "admin.reports.commons.filters.property.is_not_discoverable": "शोधण्यायोग्य नाहीत - खाजगी आयटम", - // "admin.reports.commons.filters.bitstream": "Basic Bitstream Filters", "admin.reports.commons.filters.bitstream": "मूलभूत बिटस्ट्रीम फिल्टर्स", - // "admin.reports.commons.filters.bitstream.has_multiple_originals": "Item has Multiple Original Bitstreams", "admin.reports.commons.filters.bitstream.has_multiple_originals": "आयटममध्ये एकाधिक मूळ बिटस्ट्रीम आहेत", - // "admin.reports.commons.filters.bitstream.has_no_originals": "Item has No Original Bitstreams", "admin.reports.commons.filters.bitstream.has_no_originals": "आयटममध्ये कोणतेही मूळ बिटस्ट्रीम नाहीत", - // "admin.reports.commons.filters.bitstream.has_one_original": "Item has One Original Bitstream", "admin.reports.commons.filters.bitstream.has_one_original": "आयटममध्ये एक मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type", "admin.reports.commons.filters.bitstream_mime": "MIME प्रकारानुसार बिटस्ट्रीम फिल्टर्स", - // "admin.reports.commons.filters.bitstream_mime.has_doc_original": "Item has a Doc Original Bitstream (PDF, Office, Text, HTML, XML, etc)", "admin.reports.commons.filters.bitstream_mime.has_doc_original": "आयटममध्ये एक डॉक मूळ बिटस्ट्रीम आहे (PDF, Office, Text, HTML, XML, इ.)", - // "admin.reports.commons.filters.bitstream_mime.has_image_original": "Item has an Image Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_image_original": "आयटममध्ये एक प्रतिमा मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "Has Other Bitstream Types (not Doc or Image)", "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "इतर बिटस्ट्रीम प्रकार आहेत (डॉक किंवा प्रतिमा नाहीत)", - // "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "Item has multiple types of Original Bitstreams (Doc, Image, Other)", "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "आयटममध्ये एकाधिक प्रकारचे मूळ बिटस्ट्रीम आहेत (डॉक, प्रतिमा, इतर)", - // "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "Item has a PDF Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "आयटममध्ये एक PDF मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "Item has JPG Original Bitstream", "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "आयटममध्ये JPG मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "Has unusually small PDF", "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "असामान्य लहान PDF आहे", - // "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "Has unusually large PDF", "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "असामान्य मोठा PDF आहे", - // "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "Has document bitstream without TEXT item", "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "TEXT आयटमशिवाय डॉक बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.mime": "Supported MIME Type Filters", "admin.reports.commons.filters.mime": "समर्थित MIME प्रकार फिल्टर्स", - // "admin.reports.commons.filters.mime.has_only_supp_image_type": "Item Image Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_image_type": "आयटम प्रतिमा बिटस्ट्रीम समर्थित आहेत", - // "admin.reports.commons.filters.mime.has_unsupp_image_type": "Item has Image Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_image_type": "आयटममध्ये असमर्थित प्रतिमा बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.mime.has_only_supp_doc_type": "Item Document Bitstreams are Supported", "admin.reports.commons.filters.mime.has_only_supp_doc_type": "आयटम डॉक्युमेंट बिटस्ट्रीम समर्थित आहेत", - // "admin.reports.commons.filters.mime.has_unsupp_doc_type": "Item has Document Bitstream that is Unsupported", "admin.reports.commons.filters.mime.has_unsupp_doc_type": "आयटममध्ये असमर्थित डॉक्युमेंट बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bundle": "Bitstream Bundle Filters", "admin.reports.commons.filters.bundle": "बिटस्ट्रीम बंडल फिल्टर्स", - // "admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle", "admin.reports.commons.filters.bundle.has_unsupported_bundle": "असमर्थित बंडलमध्ये बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail", "admin.reports.commons.filters.bundle.has_small_thumbnail": "असामान्य लहान थंबनेल आहे", - // "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail", "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "थंबनेलशिवाय मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)", "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "अवैध थंबनेल नाव आहे (प्रत्येक मूळसाठी एक थंबनेल गृहीत धरते)", - // "admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail", "admin.reports.commons.filters.bundle.has_non_generated_thumb": "नॉन-जनरेटेड थंबनेल आहे", - // "admin.reports.commons.filters.bundle.no_license": "Doesn't have a license", "admin.reports.commons.filters.bundle.no_license": "लायसन्स नाही", - // "admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle", "admin.reports.commons.filters.bundle.has_license_documentation": "लायसन्स बंडलमध्ये दस्तऐवज आहे", - // "admin.reports.commons.filters.permission": "Permission Filters", "admin.reports.commons.filters.permission": "परवानगी फिल्टर्स", - // "admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream", "admin.reports.commons.filters.permission.has_restricted_original": "आयटममध्ये प्रतिबंधित मूळ बिटस्ट्रीम आहे", - // "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "आयटममध्ये किमान एक मूळ बिटस्ट्रीम आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", - // "admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail", "admin.reports.commons.filters.permission.has_restricted_thumbnail": "आयटममध्ये प्रतिबंधित थंबनेल आहे", - // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "आयटममध्ये किमान एक थंबनेल आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", - // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", "admin.reports.commons.filters.permission.has_restricted_metadata": "आयटममध्ये प्रतिबंधित मेटाडेटा आहे", - // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "आयटममध्ये मेटाडेटा आहे जे Anonymous वापरकर्त्यासाठी प्रवेशयोग्य नाही", - // "admin.search.breadcrumbs": "Administrative Search", "admin.search.breadcrumbs": "प्रशासकीय शोध", - // "admin.search.collection.edit": "Edit", "admin.search.collection.edit": "संपादित करा", - // "admin.search.community.edit": "Edit", "admin.search.community.edit": "संपादित करा", - // "admin.search.item.delete": "Delete", "admin.search.item.delete": "हटवा", - // "admin.search.item.edit": "Edit", "admin.search.item.edit": "संपादित करा", - // "admin.search.item.make-private": "Make non-discoverable", "admin.search.item.make-private": "शोधण्यायोग्य नाही बनवा", - // "admin.search.item.make-public": "Make discoverable", "admin.search.item.make-public": "शोधण्यायोग्य बनवा", - // "admin.search.item.move": "Move", "admin.search.item.move": "हलवा", - // "admin.search.item.reinstate": "Reinstate", "admin.search.item.reinstate": "पुनर्स्थापित करा", - // "admin.search.item.withdraw": "Withdraw", "admin.search.item.withdraw": "मागे घ्या", - // "admin.search.title": "Administrative Search", "admin.search.title": "प्रशासकीय शोध", - // "administrativeView.search.results.head": "Administrative Search", "administrativeView.search.results.head": "प्रशासकीय शोध", - // "admin.workflow.breadcrumbs": "Administer Workflow", "admin.workflow.breadcrumbs": "वर्कफ्लो प्रशासित करा", - // "admin.workflow.title": "Administer Workflow", "admin.workflow.title": "वर्कफ्लो प्रशासित करा", - // "admin.workflow.item.workflow": "Workflow", "admin.workflow.item.workflow": "वर्कफ्लो", - // "admin.workflow.item.workspace": "Workspace", "admin.workflow.item.workspace": "वर्कस्पेस", - // "admin.workflow.item.delete": "Delete", "admin.workflow.item.delete": "हटवा", - // "admin.workflow.item.send-back": "Send back", "admin.workflow.item.send-back": "मागे पाठवा", - // "admin.workflow.item.policies": "Policies", "admin.workflow.item.policies": "धोरणे", - // "admin.workflow.item.supervision": "Supervision", "admin.workflow.item.supervision": "निगराणी", - // "admin.metadata-import.breadcrumbs": "Import Metadata", "admin.metadata-import.breadcrumbs": "मेटाडेटा आयात करा", - // "admin.batch-import.breadcrumbs": "Import Batch", "admin.batch-import.breadcrumbs": "बॅच आयात करा", - // "admin.metadata-import.title": "Import Metadata", "admin.metadata-import.title": "मेटाडेटा आयात करा", - // "admin.batch-import.title": "Import Batch", "admin.batch-import.title": "बॅच आयात करा", - // "admin.metadata-import.page.header": "Import Metadata", "admin.metadata-import.page.header": "मेटाडेटा आयात करा", - // "admin.batch-import.page.header": "Import Batch", "admin.batch-import.page.header": "बॅच आयात करा", - // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "आपण येथे फाइल्सवर बॅच मेटाडेटा ऑपरेशन्स असलेली CSV फाइल्स ड्रॉप किंवा ब्राउझ करू शकता", - // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", "admin.batch-import.page.help": "आयात करण्यासाठी संग्रह निवडा. नंतर, आयटम्स आयात करण्यासाठी Simple Archive Format (SAF) zip फाइल ड्रॉप किंवा ब्राउझ करा", - // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", "admin.batch-import.page.toggle.help": "फाइल अपलोड किंवा URL द्वारे आयात करणे शक्य आहे, इनपुट स्रोत सेट करण्यासाठी वरील टॉगल वापरा", - // "admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import", "admin.metadata-import.page.dropMsg": "मेटाडेटा CSV आयात करण्यासाठी ड्रॉप करा", - // "admin.batch-import.page.dropMsg": "Drop a batch ZIP to import", "admin.batch-import.page.dropMsg": "बॅच ZIP आयात करण्यासाठी ड्रॉप करा", - // "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import", "admin.metadata-import.page.dropMsgReplace": "मेटाडेटा CSV आयात करण्यासाठी बदलण्यासाठी ड्रॉप करा", - // "admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import", "admin.batch-import.page.dropMsgReplace": "बॅच ZIP आयात करण्यासाठी बदलण्यासाठी ड्रॉप करा", - // "admin.metadata-import.page.button.return": "Back", "admin.metadata-import.page.button.return": "मागे", - // "admin.metadata-import.page.button.proceed": "Proceed", "admin.metadata-import.page.button.proceed": "पुढे जा", - // "admin.metadata-import.page.button.select-collection": "Select Collection", "admin.metadata-import.page.button.select-collection": "संग्रह निवडा", - // "admin.metadata-import.page.error.addFile": "Select file first!", "admin.metadata-import.page.error.addFile": "प्रथम फाइल निवडा!", - // "admin.metadata-import.page.error.addFileUrl": "Insert file URL first!", "admin.metadata-import.page.error.addFileUrl": "प्रथम फाइल URL प्रविष्ट करा!", - // "admin.batch-import.page.error.addFile": "Select ZIP file first!", "admin.batch-import.page.error.addFile": "प्रथम ZIP फाइल निवडा!", - // "admin.metadata-import.page.toggle.upload": "Upload", "admin.metadata-import.page.toggle.upload": "अपलोड", - // "admin.metadata-import.page.toggle.url": "URL", "admin.metadata-import.page.toggle.url": "URL", - // "admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import", "admin.metadata-import.page.urlMsg": "आयात करण्यासाठी बॅच ZIP URL प्रविष्ट करा", - // "admin.metadata-import.page.validateOnly": "Validate Only", "admin.metadata-import.page.validateOnly": "फक्त सत्यापित करा", - // "admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.metadata-import.page.validateOnly.hint": "निवडल्यास, अपलोड केलेले CSV सत्यापित केले जाईल. आपल्याला आढळलेल्या बदलांचा अहवाल मिळेल, परंतु कोणतेही बदल जतन केले जाणार नाहीत.", - // "advanced-workflow-action.rating.form.rating.label": "Rating", "advanced-workflow-action.rating.form.rating.label": "रेटिंग", - // "advanced-workflow-action.rating.form.rating.error": "You must rate the item", "advanced-workflow-action.rating.form.rating.error": "आपल्याला आयटम रेट करणे आवश्यक आहे", - // "advanced-workflow-action.rating.form.review.label": "Review", "advanced-workflow-action.rating.form.review.label": "पुनरावलोकन", - // "advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating", "advanced-workflow-action.rating.form.review.error": "आपल्याला हे रेटिंग सबमिट करण्यासाठी पुनरावलोकन प्रविष्ट करणे आवश्यक आहे", - // "advanced-workflow-action.rating.description": "Please select a rating below", "advanced-workflow-action.rating.description": "कृपया खाली रेटिंग निवडा", - // "advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review", "advanced-workflow-action.rating.description-requiredDescription": "कृपया खाली रेटिंग निवडा आणि पुनरावलोकन देखील जोडा", - // "advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting", "advanced-workflow-action.select-reviewer.description-single": "सबमिट करण्यापूर्वी कृपया खाली एकच पुनरावलोकक निवडा", - // "advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting", "advanced-workflow-action.select-reviewer.description-multiple": "सबमिट करण्यापूर्वी कृपया खाली एक किंवा अधिक पुनरावलोकक निवडा", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "EPeople जोडा", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "सर्व ब्राउझ करा", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "सध्याचे सदस्य", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "शोधा", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "नाव", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ओळख", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ईमेल", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "हटवा / जोडा", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "सदस्य हटवा नावाने \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "यशस्वीरित्या सदस्य जोडले: \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "सदस्य जोडण्यात अपयश: \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "यशस्वीरित्या सदस्य हटविले: \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", - // TODO New key - Add a translation - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "सदस्य हटविण्यात अपयश: \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "सदस्य जोडा नावाने \"{{name}}\"", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "सध्याचा सक्रिय गट नाही, प्रथम नाव सबमिट करा.", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "गटात अद्याप कोणतेही सदस्य नाहीत, शोधा आणि जोडा.", - // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "त्या शोधात कोणतेही EPeople सापडले नाहीत", - // "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.", "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "कोणताही पुनरावलोकक निवडलेला नाही.", - // "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.", "admin.batch-import.page.validateOnly.hint": "निवडल्यास, अपलोड केलेले ZIP सत्यापित केले जाईल. आपल्याला आढळलेल्या बदलांचा अहवाल मिळेल, परंतु कोणतेही बदल जतन केले जाणार नाहीत.", - // "admin.batch-import.page.remove": "remove", "admin.batch-import.page.remove": "हटवा", - // "auth.errors.invalid-user": "Invalid email address or password.", "auth.errors.invalid-user": "अवैध ईमेल पत्ता किंवा पासवर्ड.", - // "auth.messages.expired": "Your session has expired. Please log in again.", "auth.messages.expired": "आपला सत्र कालबाह्य झाला आहे. कृपया पुन्हा लॉग इन करा.", - // "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.", "auth.messages.token-refresh-failed": "आपला सत्र टोकन रीफ्रेश करण्यात अयशस्वी. कृपया पुन्हा लॉग इन करा.", - // "bitstream.download.page": "Now downloading {{bitstream}}...", "bitstream.download.page": "आता डाउनलोड करत आहे {{bitstream}}...", - // "bitstream.download.page.back": "Back", "bitstream.download.page.back": "मागे", - // "bitstream.edit.authorizations.link": "Edit bitstream's Policies", "bitstream.edit.authorizations.link": "बिटस्ट्रीमच्या धोरणांचे संपादन करा", - // "bitstream.edit.authorizations.title": "Edit bitstream's Policies", "bitstream.edit.authorizations.title": "बिटस्ट्रीमच्या धोरणांचे संपादन करा", - // "bitstream.edit.return": "Back", "bitstream.edit.return": "मागे", - // "bitstream.edit.bitstream": "Bitstream: ", - // TODO New key - Add a translation - "bitstream.edit.bitstream": "Bitstream: ", + "bitstream.edit.bitstream": "बिटस्ट्रीम: ", - // "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".", "bitstream.edit.form.description.hint": "पर्यायी, फाईलचे संक्षिप्त वर्णन द्या, उदाहरणार्थ \"Main article\" किंवा \"Experiment data readings\".", - // "bitstream.edit.form.description.label": "Description", "bitstream.edit.form.description.label": "वर्णन", - // "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.", "bitstream.edit.form.embargo.hint": "पहिला दिवस ज्यापासून प्रवेश परवानगी आहे. ही तारीख या फॉर्मवर बदलली जाऊ शकत नाही. बिटस्ट्रीमसाठी एम्बार्गो तारीख सेट करण्यासाठी, Item Status टॅबवर जा, Authorizations... क्लिक करा, बिटस्ट्रीमच्या READ धोरणाचे निर्माण किंवा संपादन करा, आणि इच्छित Start Date सेट करा.", - // "bitstream.edit.form.embargo.label": "Embargo until specific date", "bitstream.edit.form.embargo.label": "विशिष्ट तारखेपर्यंत एम्बार्गो", - // "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": "बिटस्ट्रीमसाठी फाईलचे नाव बदला. लक्षात ठेवा की हे बिटस्ट्रीम URL बदलेल, परंतु जुने दुवे अद्याप कार्यरत राहतील जोपर्यंत अनुक्रम ID बदलत नाही.", - // "bitstream.edit.form.fileName.label": "Filename", "bitstream.edit.form.fileName.label": "फाईलचे नाव", - // "bitstream.edit.form.newFormat.label": "Describe new format", "bitstream.edit.form.newFormat.label": "नवीन स्वरूपाचे वर्णन करा", - // "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"ACMESoft SuperApp version 1.5\").", "bitstream.edit.form.newFormat.hint": "तुम्ही फाईल तयार करण्यासाठी वापरलेले अनुप्रयोग, आणि आवृत्ती क्रमांक (उदाहरणार्थ, \"ACMESoft SuperApp version 1.5\").", - // "bitstream.edit.form.primaryBitstream.label": "Primary File", "bitstream.edit.form.primaryBitstream.label": "प्राथमिक फाईल", - // "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, select \"format not in list\" above and describe it under \"Describe new format\".", "bitstream.edit.form.selectedFormat.hint": "जर स्वरूप वरील यादीत नसेल, वरील \"format not in list\" निवडा आणि \"Describe new format\" अंतर्गत त्याचे वर्णन करा.", - // "bitstream.edit.form.selectedFormat.label": "Selected Format", "bitstream.edit.form.selectedFormat.label": "निवडलेले स्वरूप", - // "bitstream.edit.form.selectedFormat.unknown": "Format not in list", "bitstream.edit.form.selectedFormat.unknown": "सूचीतील स्वरूप नाही", - // "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format", "bitstream.edit.notifications.error.format.title": "बिटस्ट्रीमचे स्वरूप जतन करताना त्रुटी आली", - // "bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream", "bitstream.edit.notifications.error.primaryBitstream.title": "प्राथमिक बिटस्ट्रीम जतन करताना त्रुटी आली", - // "bitstream.edit.form.iiifLabel.label": "IIIF Label", "bitstream.edit.form.iiifLabel.label": "IIIF लेबल", - // "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.", "bitstream.edit.form.iiifLabel.hint": "या प्रतिमेसाठी कॅनव्हास लेबल. दिले नसल्यास डीफॉल्ट लेबल वापरले जाईल.", - // "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents", "bitstream.edit.form.iiifToc.label": "IIIF सामग्री सारणी", - // "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.", "bitstream.edit.form.iiifToc.hint": "येथे मजकूर जोडल्याने नवीन सामग्री सारणी श्रेणीची सुरुवात होते.", - // "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width", "bitstream.edit.form.iiifWidth.label": "IIIF कॅनव्हास रुंदी", - // "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.", "bitstream.edit.form.iiifWidth.hint": "कॅनव्हासची रुंदी सामान्यतः प्रतिमेच्या रुंदीशी जुळली पाहिजे.", - // "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height", "bitstream.edit.form.iiifHeight.label": "IIIF कॅनव्हास उंची", - // "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.", "bitstream.edit.form.iiifHeight.hint": "कॅनव्हासची उंची सामान्यतः प्रतिमेच्या उंचीशी जुळली पाहिजे.", - // "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.", "bitstream.edit.notifications.saved.content": "तुमच्या बिटस्ट्रीममध्ये केलेले बदल जतन केले गेले.", - // "bitstream.edit.notifications.saved.title": "Bitstream saved", "bitstream.edit.notifications.saved.title": "बिटस्ट्रीम जतन केले", - // "bitstream.edit.title": "Edit bitstream", "bitstream.edit.title": "बिटस्ट्रीम संपादन करा", - // "bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ", "bitstream-request-a-copy.alert.canDownload1": "तुमच्याकडे आधीच या फाईलचा प्रवेश आहे. जर तुम्हाला फाईल डाउनलोड करायची असेल, तर क्लिक करा ", - // "bitstream-request-a-copy.alert.canDownload2": "here", "bitstream-request-a-copy.alert.canDownload2": "इथे", - // "bitstream-request-a-copy.header": "Request a copy of the file", "bitstream-request-a-copy.header": "फाईलची प्रत मागवा", - // "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", - // TODO New key - Add a translation - "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ", + "bitstream-request-a-copy.intro": "खालील आयटमसाठी प्रत मागण्यासाठी खालील माहिती प्रविष्ट करा: ", - // "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", - // TODO New key - Add a translation - "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ", + "bitstream-request-a-copy.intro.bitstream.one": "खालील फाईलची प्रत मागत आहे: ", - // "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ", "bitstream-request-a-copy.intro.bitstream.all": "सर्व फाईल्स मागत आहे. ", - // "bitstream-request-a-copy.name.label": "Name *", "bitstream-request-a-copy.name.label": "नाव *", - // "bitstream-request-a-copy.name.error": "The name is required", "bitstream-request-a-copy.name.error": "नाव आवश्यक आहे", - // "bitstream-request-a-copy.email.label": "Your email address *", "bitstream-request-a-copy.email.label": "तुमचा ईमेल पत्ता *", - // "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.", "bitstream-request-a-copy.email.hint": "ही ईमेल पत्ता फाईल पाठवण्यासाठी वापरली जाते.", - // "bitstream-request-a-copy.email.error": "Please enter a valid email address.", "bitstream-request-a-copy.email.error": "कृपया वैध ईमेल पत्ता प्रविष्ट करा.", - // "bitstream-request-a-copy.allfiles.label": "Files", "bitstream-request-a-copy.allfiles.label": "फाईल्स", - // "bitstream-request-a-copy.files-all-false.label": "Only the requested file", "bitstream-request-a-copy.files-all-false.label": "फक्त मागितलेली फाईल", - // "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access", "bitstream-request-a-copy.files-all-true.label": "सर्व फाईल्स (या आयटमच्या) प्रतिबंधित प्रवेशात", - // "bitstream-request-a-copy.message.label": "Message", "bitstream-request-a-copy.message.label": "संदेश", - // "bitstream-request-a-copy.return": "Back", "bitstream-request-a-copy.return": "मागे", - // "bitstream-request-a-copy.submit": "Request copy", "bitstream-request-a-copy.submit": "प्रत मागवा", - // "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.", "bitstream-request-a-copy.submit.success": "आयटमची विनंती यशस्वीरित्या सबमिट केली गेली.", - // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "आयटमची विनंती सबमिट करताना काहीतरी चूक झाली.", - // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", "bitstream-request-a-copy.access-by-token.warning": "तुम्ही लेखक किंवा रिपॉझिटरी स्टाफने दिलेल्या सुरक्षित प्रवेश दुव्याद्वारे हा आयटम पाहत आहात. हा दुवा अनधिकृत वापरकर्त्यांना शेअर करणे महत्त्वाचे नाही.", - // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", "bitstream-request-a-copy.access-by-token.expiry-label": "या दुव्याद्वारे दिलेला प्रवेश समाप्त होईल", - // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", "bitstream-request-a-copy.access-by-token.expired": "या दुव्याद्वारे दिलेला प्रवेश आता शक्य नाही. प्रवेश समाप्त झाला", - // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", "bitstream-request-a-copy.access-by-token.not-granted": "या दुव्याद्वारे दिलेला प्रवेश शक्य नाही. प्रवेश दिला गेला नाही, किंवा रद्द केला गेला आहे.", - // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", "bitstream-request-a-copy.access-by-token.re-request": "प्रतिबंधित डाउनलोड दुवे फॉलो करा आणि प्रवेशासाठी नवीन विनंती सबमिट करा.", - // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", "bitstream-request-a-copy.access-by-token.alt-text": "या आयटमचा प्रवेश सुरक्षित टोकनद्वारे दिला जातो", - // "browse.back.all-results": "All browse results", "browse.back.all-results": "सर्व ब्राउझ परिणाम", - // "browse.comcol.by.author": "By Author", "browse.comcol.by.author": "लेखकानुसार", - // "browse.comcol.by.dateissued": "By Issue Date", "browse.comcol.by.dateissued": "प्रकाशन तारखेनुसार", - // "browse.comcol.by.subject": "By Subject", "browse.comcol.by.subject": "विषयानुसार", - // "browse.comcol.by.srsc": "By Subject Category", "browse.comcol.by.srsc": "विषय श्रेणीनुसार", - // "browse.comcol.by.nsi": "By Norwegian Science Index", "browse.comcol.by.nsi": "नॉर्वेजियन सायन्स इंडेक्सनुसार", - // "browse.comcol.by.title": "By Title", "browse.comcol.by.title": "शीर्षकानुसार", - // "browse.comcol.head": "Browse", "browse.comcol.head": "ब्राउझ करा", - // "browse.empty": "No items to show.", "browse.empty": "दाखवण्यासाठी कोणतेही आयटम नाहीत.", - // "browse.metadata.author": "Author", "browse.metadata.author": "लेखक", - // "browse.metadata.dateissued": "Issue Date", "browse.metadata.dateissued": "प्रकाशन तारीख", - // "browse.metadata.subject": "Subject", "browse.metadata.subject": "विषय", - // "browse.metadata.title": "Title", "browse.metadata.title": "शीर्षक", - // "browse.metadata.srsc": "Subject Category", "browse.metadata.srsc": "विषय श्रेणी", - // "browse.metadata.author.breadcrumbs": "Browse by Author", "browse.metadata.author.breadcrumbs": "लेखकानुसार ब्राउझ करा", - // "browse.metadata.dateissued.breadcrumbs": "Browse by Date", "browse.metadata.dateissued.breadcrumbs": "तारखेनुसार ब्राउझ करा", - // "browse.metadata.subject.breadcrumbs": "Browse by Subject", "browse.metadata.subject.breadcrumbs": "विषयानुसार ब्राउझ करा", - // "browse.metadata.srsc.breadcrumbs": "Browse by Subject Category", "browse.metadata.srsc.breadcrumbs": "विषय श्रेणीनुसार ब्राउझ करा", - // "browse.metadata.srsc.tree.description": "Select a subject to add as search filter", "browse.metadata.srsc.tree.description": "शोध फिल्टर म्हणून जोडण्यासाठी विषय निवडा", - // "browse.metadata.nsi.breadcrumbs": "Browse by Norwegian Science Index", "browse.metadata.nsi.breadcrumbs": "नॉर्वेजियन सायन्स इंडेक्सनुसार ब्राउझ करा", - // "browse.metadata.nsi.tree.description": "Select an index to add as search filter", "browse.metadata.nsi.tree.description": "शोध फिल्टर म्हणून जोडण्यासाठी इंडेक्स निवडा", - // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "शीर्षकानुसार ब्राउझ करा", - // "browse.metadata.map": "Browse by Geolocation", "browse.metadata.map": "भौगोलिक स्थानानुसार ब्राउझ करा", - // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", "browse.metadata.map.breadcrumbs": "भौगोलिक स्थानानुसार ब्राउझ करा", - // "browse.metadata.map.count.items": "items", "browse.metadata.map.count.items": "आयटम्स", - // "pagination.next.button": "Next", "pagination.next.button": "पुढे", - // "pagination.previous.button": "Previous", "pagination.previous.button": "मागे", - // "pagination.next.button.disabled.tooltip": "No more pages of results", "pagination.next.button.disabled.tooltip": "अधिक परिणाम पृष्ठे नाहीत", - // "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", - // TODO New key - Add a translation - "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ", + "pagination.page-number-bar": "पृष्ठ नेव्हिगेशनसाठी नियंत्रण पट्टी, ID सह घटकाच्या सापेक्ष: ", - // "browse.startsWith": ", starting with {{ startsWith }}", "browse.startsWith": ", {{ startsWith }} ने सुरू होते", - // "browse.startsWith.choose_start": "(Choose start)", "browse.startsWith.choose_start": "(प्रारंभ निवडा)", - // "browse.startsWith.choose_year": "(Choose year)", "browse.startsWith.choose_year": "(वर्ष निवडा)", - // "browse.startsWith.choose_year.label": "Choose the issue year", "browse.startsWith.choose_year.label": "प्रकाशन वर्ष निवडा", - // "browse.startsWith.jump": "Filter results by year or month", "browse.startsWith.jump": "वर्ष किंवा महिन्यानुसार परिणाम फिल्टर करा", - // "browse.startsWith.months.april": "April", "browse.startsWith.months.april": "एप्रिल", - // "browse.startsWith.months.august": "August", "browse.startsWith.months.august": "ऑगस्ट", - // "browse.startsWith.months.december": "December", "browse.startsWith.months.december": "डिसेंबर", - // "browse.startsWith.months.february": "February", "browse.startsWith.months.february": "फेब्रुवारी", - // "browse.startsWith.months.january": "January", "browse.startsWith.months.january": "जानेवारी", - // "browse.startsWith.months.july": "July", "browse.startsWith.months.july": "जुलै", - // "browse.startsWith.months.june": "June", "browse.startsWith.months.june": "जून", - // "browse.startsWith.months.march": "March", "browse.startsWith.months.march": "मार्च", - // "browse.startsWith.months.may": "May", "browse.startsWith.months.may": "मे", - // "browse.startsWith.months.none": "(Choose month)", "browse.startsWith.months.none": "(महिना निवडा)", - // "browse.startsWith.months.none.label": "Choose the issue month", "browse.startsWith.months.none.label": "प्रकाशन महिना निवडा", - // "browse.startsWith.months.november": "November", "browse.startsWith.months.november": "नोव्हेंबर", - // "browse.startsWith.months.october": "October", "browse.startsWith.months.october": "ऑक्टोबर", - // "browse.startsWith.months.september": "September", "browse.startsWith.months.september": "सप्टेंबर", - // "browse.startsWith.submit": "Browse", "browse.startsWith.submit": "ब्राउझ करा", - // "browse.startsWith.type_date": "Filter results by date", "browse.startsWith.type_date": "तारखेनुसार परिणाम फिल्टर करा", - // "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button", "browse.startsWith.type_date.label": "किंवा तारीख (वर्ष-महिना) टाइप करा आणि ब्राउझ बटणावर क्लिक करा", - // "browse.startsWith.type_text": "Filter results by typing the first few letters", "browse.startsWith.type_text": "पहिल्या काही अक्षरांनी परिणाम फिल्टर करा", - // "browse.startsWith.input": "Filter", "browse.startsWith.input": "फिल्टर", - // "browse.taxonomy.button": "Browse", "browse.taxonomy.button": "ब्राउझ करा", - // "browse.title": "Browsing by {{ field }}{{ startsWith }} {{ value }}", "browse.title": "{{ field }}{{ startsWith }} {{ value }} ने ब्राउझ करत आहे", - // "browse.title.page": "Browsing by {{ field }} {{ value }}", "browse.title.page": "{{ field }} {{ value }} ने ब्राउझ करत आहे", - // "search.browse.item-back": "Back to Results", "search.browse.item-back": "परिणामांकडे परत जा", - // "chips.remove": "Remove chip", "chips.remove": "चिप काढा", - // "claimed-approved-search-result-list-element.title": "Approved", "claimed-approved-search-result-list-element.title": "मंजूर", - // "claimed-declined-search-result-list-element.title": "Rejected, sent back to submitter", "claimed-declined-search-result-list-element.title": "नाकारले, सबमिटरकडे परत पाठवले", - // "claimed-declined-task-search-result-list-element.title": "Declined, sent back to Review Manager's workflow", "claimed-declined-task-search-result-list-element.title": "नाकारले, पुनरावलोकन व्यवस्थापकाच्या कार्यप्रवाहाकडे परत पाठवले", - // "collection.create.breadcrumbs": "Create collection", "collection.create.breadcrumbs": "संग्रह तयार करा", - // "collection.browse.logo": "Browse for a collection logo", "collection.browse.logo": "संग्रह लोगो ब्राउझ करा", - // "collection.create.head": "Create a Collection", "collection.create.head": "संग्रह तयार करा", - // "collection.create.notifications.success": "Successfully created the collection", "collection.create.notifications.success": "संग्रह यशस्वीरित्या तयार केला", - // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", "collection.create.sub-head": "समुदाय {{ parent }} साठी संग्रह तयार करा", - // "collection.curate.header": "Curate Collection: {{collection}}", - // TODO New key - Add a translation - "collection.curate.header": "Curate Collection: {{collection}}", + "collection.curate.header": "संग्रह व्यवस्थापित करा: {{collection}}", - // "collection.delete.cancel": "Cancel", "collection.delete.cancel": "रद्द करा", - // "collection.delete.confirm": "Confirm", "collection.delete.confirm": "पुष्टी करा", - // "collection.delete.processing": "Deleting", "collection.delete.processing": "हटवत आहे", - // "collection.delete.head": "Delete Collection", "collection.delete.head": "संग्रह हटवा", - // "collection.delete.notification.fail": "Collection could not be deleted", "collection.delete.notification.fail": "संग्रह हटवता आला नाही", - // "collection.delete.notification.success": "Successfully deleted collection", "collection.delete.notification.success": "संग्रह यशस्वीरित्या हटवला", - // "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"", "collection.delete.text": "तुम्हाला खात्री आहे की तुम्ही संग्रह \"{{ dso }}\" हटवू इच्छिता", - // "collection.edit.delete": "Delete this collection", "collection.edit.delete": "हा संग्रह हटवा", - // "collection.edit.head": "Edit Collection", "collection.edit.head": "संग्रह संपादन करा", - // "collection.edit.breadcrumbs": "Edit Collection", "collection.edit.breadcrumbs": "संग्रह संपादन करा", - // "collection.edit.tabs.mapper.head": "Item Mapper", "collection.edit.tabs.mapper.head": "आयटम मॅपर", - // "collection.edit.tabs.item-mapper.title": "Collection Edit - Item Mapper", "collection.edit.tabs.item-mapper.title": "संग्रह संपादन - आयटम मॅपर", - // "collection.edit.item-mapper.cancel": "Cancel", "collection.edit.item-mapper.cancel": "रद्द करा", - // "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", - // TODO New key - Add a translation - "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + "collection.edit.item-mapper.collection": "संग्रह: \"{{name}}\"", - // "collection.edit.item-mapper.confirm": "Map selected items", "collection.edit.item-mapper.confirm": "निवडलेले आयटम मॅप करा", - // "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.", "collection.edit.item-mapper.description": "हे आयटम मॅपर साधन आहे जे संग्रह प्रशासकांना या संग्रहात इतर संग्रहांमधून आयटम मॅप करण्यास अनुमती देते. तुम्ही इतर संग्रहांमधून आयटम शोधू शकता आणि त्यांना मॅप करू शकता, किंवा सध्या मॅप केलेल्या आयटमची यादी ब्राउझ करू शकता.", - // "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections", "collection.edit.item-mapper.head": "आयटम मॅपर - इतर संग्रहांमधून आयटम मॅप करा", - // "collection.edit.item-mapper.no-search": "Please enter a query to search", "collection.edit.item-mapper.no-search": "शोधण्यासाठी क्वेरी प्रविष्ट करा", - // "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.", "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} आयटम्सच्या मॅपिंगसाठी त्रुटी आल्या.", - // "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors", "collection.edit.item-mapper.notifications.map.error.head": "मॅपिंग त्रुटी", - // "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.", "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} आयटम्स यशस्वीरित्या मॅप केले.", - // "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed", "collection.edit.item-mapper.notifications.map.success.head": "मॅपिंग पूर्ण झाले", - // "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} आयटम्सच्या मॅपिंग काढण्याच्या त्रुटी आल्या.", - // "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors", "collection.edit.item-mapper.notifications.unmap.error.head": "मॅपिंग काढण्याच्या त्रुटी", - // "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.", "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} आयटम्सच्या मॅपिंग काढण्याचे यशस्वी झाले.", - // "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed", "collection.edit.item-mapper.notifications.unmap.success.head": "मॅपिंग काढणे पूर्ण झाले", - // "collection.edit.item-mapper.remove": "Remove selected item mappings", "collection.edit.item-mapper.remove": "निवडलेले आयटम मॅपिंग काढा", - // "collection.edit.item-mapper.search-form.placeholder": "Search items...", "collection.edit.item-mapper.search-form.placeholder": "आयटम शोधा...", - // "collection.edit.item-mapper.tabs.browse": "Browse mapped items", "collection.edit.item-mapper.tabs.browse": "मॅप केलेले आयटम ब्राउझ करा", - // "collection.edit.item-mapper.tabs.map": "Map new items", "collection.edit.item-mapper.tabs.map": "नवीन आयटम मॅप करा", - // "collection.edit.logo.delete.title": "Delete logo", "collection.edit.logo.delete.title": "लोगो हटवा", - // "collection.edit.logo.delete-undo.title": "Undo delete", "collection.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", - // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "संग्रह लोगो", - // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", "collection.edit.logo.notifications.add.error": "संग्रह लोगो अपलोड करण्यात अयशस्वी. कृपया पुन्हा प्रयत्न करण्यापूर्वी सामग्री सत्यापित करा.", - // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", "collection.edit.logo.notifications.add.success": "संग्रह लोगो अपलोड यशस्वी.", - // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", "collection.edit.logo.notifications.delete.success.title": "लोगो हटवला", - // "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo", "collection.edit.logo.notifications.delete.success.content": "संग्रहाचा लोगो यशस्वीरित्या हटवला", - // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "लोगो हटवताना त्रुटी", - // "collection.edit.logo.upload": "Drop a collection logo to upload", "collection.edit.logo.upload": "अपलोड करण्यासाठी संग्रह लोगो ड्रॉप करा", - // "collection.edit.notifications.success": "Successfully edited the collection", "collection.edit.notifications.success": "संग्रह यशस्वीरित्या संपादित केला", - // "collection.edit.return": "Back", "collection.edit.return": "मागे", - // "collection.edit.tabs.access-control.head": "Access Control", "collection.edit.tabs.access-control.head": "प्रवेश नियंत्रण", - // "collection.edit.tabs.access-control.title": "Collection Edit - Access Control", "collection.edit.tabs.access-control.title": "संग्रह संपादन - प्रवेश नियंत्रण", - // "collection.edit.tabs.curate.head": "Curate", "collection.edit.tabs.curate.head": "व्यवस्थित करा", - // "collection.edit.tabs.curate.title": "Collection Edit - Curate", "collection.edit.tabs.curate.title": "संग्रह संपादन - व्यवस्थित करा", - // "collection.edit.tabs.authorizations.head": "Authorizations", "collection.edit.tabs.authorizations.head": "प्राधिकरणे", - // "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations", "collection.edit.tabs.authorizations.title": "संग्रह संपादन - प्राधिकरणे", - // "collection.edit.item.authorizations.load-bundle-button": "Load more bundles", "collection.edit.item.authorizations.load-bundle-button": "अधिक बंडल लोड करा", - // "collection.edit.item.authorizations.load-more-button": "Load more", "collection.edit.item.authorizations.load-more-button": "अधिक लोड करा", - // "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle", "collection.edit.item.authorizations.show-bitstreams-button": "बंडलसाठी बिटस्ट्रीम धोरणे दाखवा", - // "collection.edit.tabs.metadata.head": "Edit Metadata", "collection.edit.tabs.metadata.head": "मेटाडेटा संपादित करा", - // "collection.edit.tabs.metadata.title": "Collection Edit - Metadata", "collection.edit.tabs.metadata.title": "संग्रह संपादन - मेटाडेटा", - // "collection.edit.tabs.roles.head": "Assign Roles", "collection.edit.tabs.roles.head": "भूमिका नियुक्त करा", - // "collection.edit.tabs.roles.title": "Collection Edit - Roles", "collection.edit.tabs.roles.title": "संग्रह संपादन - भूमिका", - // "collection.edit.tabs.source.external": "This collection harvests its content from an external source", "collection.edit.tabs.source.external": "हा संग्रह त्याच्या सामग्रीला बाह्य स्रोतातून गोळा करतो", - // "collection.edit.tabs.source.form.errors.oaiSource.required": "You must provide a set id of the target collection.", "collection.edit.tabs.source.form.errors.oaiSource.required": "आपल्याला लक्ष्य संग्रहाचा सेट आयडी प्रदान करणे आवश्यक आहे.", - // "collection.edit.tabs.source.form.harvestType": "Content being harvested", "collection.edit.tabs.source.form.harvestType": "सामग्री गोळा केली जात आहे", - // "collection.edit.tabs.source.form.head": "Configure an external source", "collection.edit.tabs.source.form.head": "बाह्य स्रोत कॉन्फिगर करा", - // "collection.edit.tabs.source.form.metadataConfigId": "Metadata Format", "collection.edit.tabs.source.form.metadataConfigId": "मेटाडेटा स्वरूप", - // "collection.edit.tabs.source.form.oaiSetId": "OAI specific set id", "collection.edit.tabs.source.form.oaiSetId": "OAI विशिष्ट सेट आयडी", - // "collection.edit.tabs.source.form.oaiSource": "OAI Provider", "collection.edit.tabs.source.form.oaiSource": "OAI प्रदाता", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Harvest metadata and bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "मेटाडेटा आणि बिटस्ट्रीम्स गोळा करा (ORE समर्थन आवश्यक आहे)", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Harvest metadata and references to bitstreams (requires ORE support)", "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "मेटाडेटा आणि बिटस्ट्रीम्सच्या संदर्भांना गोळा करा (ORE समर्थन आवश्यक आहे)", - // "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Harvest metadata only", "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "फक्त मेटाडेटा गोळा करा", - // "collection.edit.tabs.source.head": "Content Source", "collection.edit.tabs.source.head": "सामग्री स्रोत", - // "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "collection.edit.tabs.source.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", - // "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded", "collection.edit.tabs.source.notifications.discarded.title": "बदल रद्द केले", - // "collection.edit.tabs.source.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "collection.edit.tabs.source.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", - // "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid", "collection.edit.tabs.source.notifications.invalid.title": "मेटाडेटा अवैध", - // "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.", "collection.edit.tabs.source.notifications.saved.content": "या संग्रहाच्या सामग्री स्रोतासाठी आपले बदल जतन केले गेले.", - // "collection.edit.tabs.source.notifications.saved.title": "Content Source saved", "collection.edit.tabs.source.notifications.saved.title": "सामग्री स्रोत जतन केले", - // "collection.edit.tabs.source.title": "Collection Edit - Content Source", "collection.edit.tabs.source.title": "संग्रह संपादन - सामग्री स्रोत", - // "collection.edit.template.add-button": "Add", "collection.edit.template.add-button": "जोडा", - // "collection.edit.template.breadcrumbs": "Item template", "collection.edit.template.breadcrumbs": "आयटम टेम्पलेट", - // "collection.edit.template.cancel": "Cancel", "collection.edit.template.cancel": "रद्द करा", - // "collection.edit.template.delete-button": "Delete", "collection.edit.template.delete-button": "हटवा", - // "collection.edit.template.edit-button": "Edit", "collection.edit.template.edit-button": "संपादित करा", - // "collection.edit.template.error": "An error occurred retrieving the template item", "collection.edit.template.error": "टेम्पलेट आयटम पुनर्प्राप्त करताना त्रुटी आली", - // "collection.edit.template.head": "Edit Template Item for Collection \"{{ collection }}\"", "collection.edit.template.head": "संग्रहासाठी टेम्पलेट आयटम संपादित करा \"{{ collection }}\"", - // "collection.edit.template.label": "Template item", "collection.edit.template.label": "टेम्पलेट आयटम", - // "collection.edit.template.loading": "Loading template item...", "collection.edit.template.loading": "टेम्पलेट आयटम लोड करत आहे...", - // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "आयटम टेम्पलेट हटवण्यात अयशस्वी", - // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", "collection.edit.template.notifications.delete.success": "आयटम टेम्पलेट यशस्वीरित्या हटवले", - // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "टेम्पलेट आयटम संपादित करा", - // "collection.form.abstract": "Short Description", "collection.form.abstract": "संक्षिप्त वर्णन", - // "collection.form.description": "Introductory text (HTML)", "collection.form.description": "परिचयात्मक मजकूर (HTML)", - // "collection.form.errors.title.required": "Please enter a collection name", "collection.form.errors.title.required": "कृपया संग्रहाचे नाव प्रविष्ट करा", - // "collection.form.license": "License", "collection.form.license": "परवाना", - // "collection.form.provenance": "Provenance", "collection.form.provenance": "मूळ", - // "collection.form.rights": "Copyright text (HTML)", "collection.form.rights": "कॉपीराइट मजकूर (HTML)", - // "collection.form.tableofcontents": "News (HTML)", "collection.form.tableofcontents": "बातम्या (HTML)", - // "collection.form.title": "Name", "collection.form.title": "नाव", - // "collection.form.entityType": "Entity Type", "collection.form.entityType": "घटक प्रकार", - // "collection.listelement.badge": "Collection", "collection.listelement.badge": "संग्रह", - // "collection.logo": "Collection logo", "collection.logo": "संग्रह लोगो", - // "collection.page.browse.search.head": "Search", "collection.page.browse.search.head": "शोधा", - // "collection.page.edit": "Edit this collection", "collection.page.edit": "हा संग्रह संपादित करा", - // "collection.page.handle": "Permanent URI for this collection", "collection.page.handle": "या संग्रहासाठी स्थायी URI", - // "collection.page.license": "License", "collection.page.license": "परवाना", - // "collection.page.news": "News", "collection.page.news": "बातम्या", - // "collection.page.options": "Options", "collection.page.options": "पर्याय", - // "collection.search.breadcrumbs": "Search", "collection.search.breadcrumbs": "शोधा", - // "collection.search.results.head": "Search Results", "collection.search.results.head": "शोध परिणाम", - // "collection.select.confirm": "Confirm selected", "collection.select.confirm": "निवडलेले पुष्टी करा", - // "collection.select.empty": "No collections to show", "collection.select.empty": "दाखवण्यासाठी कोणतेही संग्रह नाहीत", - // "collection.select.table.selected": "Selected collections", "collection.select.table.selected": "निवडलेले संग्रह", - // "collection.select.table.select": "Select collection", "collection.select.table.select": "संग्रह निवडा", - // "collection.select.table.deselect": "Deselect collection", "collection.select.table.deselect": "संग्रह निवड रद्द करा", - // "collection.select.table.title": "Title", "collection.select.table.title": "शीर्षक", - // "collection.source.controls.head": "Harvest Controls", "collection.source.controls.head": "गोळा नियंत्रण", - // "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings", "collection.source.controls.test.submit.error": "सेटिंग्जची चाचणी सुरू करताना काहीतरी चूक झाली", - // "collection.source.controls.test.failed": "The script to test the settings has failed", "collection.source.controls.test.failed": "सेटिंग्जची चाचणी स्क्रिप्ट अयशस्वी झाली", - // "collection.source.controls.test.completed": "The script to test the settings has successfully finished", "collection.source.controls.test.completed": "सेटिंग्जची चाचणी स्क्रिप्ट यशस्वीरित्या पूर्ण झाली", - // "collection.source.controls.test.submit": "Test configuration", "collection.source.controls.test.submit": "कॉन्फिगरेशन चाचणी करा", - // "collection.source.controls.test.running": "Testing configuration...", "collection.source.controls.test.running": "कॉन्फिगरेशन चाचणी करत आहे...", - // "collection.source.controls.import.submit.success": "The import has been successfully initiated", "collection.source.controls.import.submit.success": "आयात यशस्वीरित्या सुरू केली गेली", - // "collection.source.controls.import.submit.error": "Something went wrong with initiating the import", "collection.source.controls.import.submit.error": "आयात सुरू करताना काहीतरी चूक झाली", - // "collection.source.controls.import.submit": "Import now", "collection.source.controls.import.submit": "आता आयात करा", - // "collection.source.controls.import.running": "Importing...", "collection.source.controls.import.running": "आयात करत आहे...", - // "collection.source.controls.import.failed": "An error occurred during the import", "collection.source.controls.import.failed": "आयात करताना त्रुटी आली", - // "collection.source.controls.import.completed": "The import completed", "collection.source.controls.import.completed": "आयात पूर्ण झाली", - // "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated", "collection.source.controls.reset.submit.success": "रीसेट आणि पुनरायात यशस्वीरित्या सुरू केली गेली", - // "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport", "collection.source.controls.reset.submit.error": "रीसेट आणि पुनरायात सुरू करताना काहीतरी चूक झाली", - // "collection.source.controls.reset.failed": "An error occurred during the reset and reimport", "collection.source.controls.reset.failed": "रीसेट आणि पुनरायात करताना त्रुटी आली", - // "collection.source.controls.reset.completed": "The reset and reimport completed", "collection.source.controls.reset.completed": "रीसेट आणि पुनरायात पूर्ण झाली", - // "collection.source.controls.reset.submit": "Reset and reimport", "collection.source.controls.reset.submit": "रीसेट आणि पुनरायात", - // "collection.source.controls.reset.running": "Resetting and reimporting...", "collection.source.controls.reset.running": "रीसेट आणि पुनरायात करत आहे...", - // "collection.source.controls.harvest.status": "Harvest status:", - // TODO New key - Add a translation - "collection.source.controls.harvest.status": "Harvest status:", + "collection.source.controls.harvest.status": "गोळा स्थिती:", - // "collection.source.controls.harvest.start": "Harvest start time:", - // TODO New key - Add a translation - "collection.source.controls.harvest.start": "Harvest start time:", + "collection.source.controls.harvest.start": "गोळा सुरू होण्याची वेळ:", - // "collection.source.controls.harvest.last": "Last time harvested:", - // TODO New key - Add a translation - "collection.source.controls.harvest.last": "Last time harvested:", + "collection.source.controls.harvest.last": "शेवटचा वेळ गोळा केला:", - // "collection.source.controls.harvest.message": "Harvest info:", - // TODO New key - Add a translation - "collection.source.controls.harvest.message": "Harvest info:", + "collection.source.controls.harvest.message": "गोळा माहिती:", - // "collection.source.controls.harvest.no-information": "N/A", "collection.source.controls.harvest.no-information": "N/A", - // "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.", "collection.source.update.notifications.error.content": "प्रदान केलेल्या सेटिंग्जची चाचणी केली गेली आणि ती कार्यरत नाहीत.", - // "collection.source.update.notifications.error.title": "Server Error", "collection.source.update.notifications.error.title": "सर्व्हर त्रुटी", - // "communityList.breadcrumbs": "Community List", "communityList.breadcrumbs": "समुदाय सूची", - // "communityList.tabTitle": "Community List", "communityList.tabTitle": "समुदाय सूची", - // "communityList.title": "List of Communities", "communityList.title": "समुदायांची सूची", - // "communityList.showMore": "Show More", "communityList.showMore": "अधिक दाखवा", - // "communityList.expand": "Expand {{ name }}", "communityList.expand": "विस्तृत करा {{ name }}", - // "communityList.collapse": "Collapse {{ name }}", "communityList.collapse": "संकुचित करा {{ name }}", - // "community.browse.logo": "Browse for a community logo", "community.browse.logo": "समुदाय लोगो ब्राउझ करा", - // "community.subcoms-cols.breadcrumbs": "Subcommunities and Collections", "community.subcoms-cols.breadcrumbs": "उपसमुदाय आणि संग्रह", - // "community.create.breadcrumbs": "Create Community", "community.create.breadcrumbs": "समुदाय तयार करा", - // "community.create.head": "Create a Community", "community.create.head": "समुदाय तयार करा", - // "community.create.notifications.success": "Successfully created the community", "community.create.notifications.success": "समुदाय यशस्वीरित्या तयार केला", - // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", "community.create.sub-head": "समुदायासाठी उपसमुदाय तयार करा {{ parent }}", - // "community.curate.header": "Curate Community: {{community}}", - // TODO New key - Add a translation - "community.curate.header": "Curate Community: {{community}}", + "community.curate.header": "समुदाय व्यवस्थापित करा: {{community}}", - // "community.delete.cancel": "Cancel", "community.delete.cancel": "रद्द करा", - // "community.delete.confirm": "Confirm", "community.delete.confirm": "पुष्टी करा", - // "community.delete.processing": "Deleting...", "community.delete.processing": "हटवत आहे...", - // "community.delete.head": "Delete Community", "community.delete.head": "समुदाय हटवा", - // "community.delete.notification.fail": "Community could not be deleted", "community.delete.notification.fail": "समुदाय हटवता आला नाही", - // "community.delete.notification.success": "Successfully deleted community", "community.delete.notification.success": "समुदाय यशस्वीरित्या हटवला", - // "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"", "community.delete.text": "तुम्हाला खात्री आहे की तुम्ही समुदाय हटवू इच्छिता \"{{ dso }}\"", - // "community.edit.delete": "Delete this community", "community.edit.delete": "हा समुदाय हटवा", - // "community.edit.head": "Edit Community", "community.edit.head": "समुदाय संपादन करा", - // "community.edit.breadcrumbs": "Edit Community", "community.edit.breadcrumbs": "समुदाय संपादन करा", - // "community.edit.logo.delete.title": "Delete logo", "community.edit.logo.delete.title": "लोगो हटवा", - // "community-collection.edit.logo.delete.title": "Confirm deletion", "community-collection.edit.logo.delete.title": "हटवण्याची पुष्टी करा", - // "community.edit.logo.delete-undo.title": "Undo delete", "community.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", - // "community-collection.edit.logo.delete-undo.title": "Undo delete", "community-collection.edit.logo.delete-undo.title": "हटवणे पूर्ववत करा", - // "community.edit.logo.label": "Community logo", "community.edit.logo.label": "समुदाय लोगो", - // "community.edit.logo.notifications.add.error": "Uploading community logo failed. Please verify the content before retrying.", "community.edit.logo.notifications.add.error": "समुदाय लोगो अपलोड करण्यात अयशस्वी. कृपया पुन्हा प्रयत्न करण्यापूर्वी सामग्री सत्यापित करा.", - // "community.edit.logo.notifications.add.success": "Upload community logo successful.", "community.edit.logo.notifications.add.success": "समुदाय लोगो अपलोड यशस्वी.", - // "community.edit.logo.notifications.delete.success.title": "Logo deleted", "community.edit.logo.notifications.delete.success.title": "लोगो हटवला", - // "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo", "community.edit.logo.notifications.delete.success.content": "समुदायाचा लोगो यशस्वीरित्या हटवला", - // "community.edit.logo.notifications.delete.error.title": "Error deleting logo", "community.edit.logo.notifications.delete.error.title": "लोगो हटवताना त्रुटी", - // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "अपलोड करण्यासाठी समुदाय लोगो ड्रॉप करा", - // "community.edit.notifications.success": "Successfully edited the community", "community.edit.notifications.success": "समुदाय यशस्वीरित्या संपादित केला", - // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", "community.edit.notifications.unauthorized": "आपल्याला हा बदल करण्याचे विशेषाधिकार नाहीत", - // "community.edit.notifications.error": "An error occurred while editing the community", "community.edit.notifications.error": "समुदाय संपादित करताना त्रुटी आली", - // "community.edit.return": "Back", "community.edit.return": "मागे", - // "community.edit.tabs.curate.head": "Curate", "community.edit.tabs.curate.head": "व्यवस्थित करा", - // "community.edit.tabs.curate.title": "Community Edit - Curate", "community.edit.tabs.curate.title": "समुदाय संपादन - व्यवस्थित करा", - // "community.edit.tabs.access-control.head": "Access Control", "community.edit.tabs.access-control.head": "प्रवेश नियंत्रण", - // "community.edit.tabs.access-control.title": "Community Edit - Access Control", "community.edit.tabs.access-control.title": "समुदाय संपादन - प्रवेश नियंत्रण", - // "community.edit.tabs.metadata.head": "Edit Metadata", "community.edit.tabs.metadata.head": "मेटाडेटा संपादित करा", - // "community.edit.tabs.metadata.title": "Community Edit - Metadata", "community.edit.tabs.metadata.title": "समुदाय संपादन - मेटाडेटा", - // "community.edit.tabs.roles.head": "Assign Roles", "community.edit.tabs.roles.head": "भूमिका नियुक्त करा", - // "community.edit.tabs.roles.title": "Community Edit - Roles", "community.edit.tabs.roles.title": "Community Edit - Roles", - // "community.edit.tabs.authorizations.head": "Authorizations", "community.edit.tabs.authorizations.head": "अधिकृतता", - // "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", "community.edit.tabs.authorizations.title": "Community Edit - Authorizations", - // "community.listelement.badge": "Community", "community.listelement.badge": "Community", - // "community.logo": "Community logo", "community.logo": "Community लोगो", - // "comcol-role.edit.no-group": "None", "comcol-role.edit.no-group": "काहीही नाही", - // "comcol-role.edit.create": "Create", "comcol-role.edit.create": "तयार करा", - // "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role", "comcol-role.edit.create.error.title": "'{{ role }}' भूमिकेसाठी गट तयार करण्यात अयशस्वी", - // "comcol-role.edit.restrict": "Restrict", "comcol-role.edit.restrict": "प्रतिबंधित करा", - // "comcol-role.edit.delete": "Delete", "comcol-role.edit.delete": "हटवा", - // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "'{{ role }}' भूमिकेचा गट हटवण्यात अयशस्वी", - // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - - // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - - // "comcol-role.edit.delete.modal.cancel": "Cancel", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.cancel": "Cancel", - - // "comcol-role.edit.delete.modal.confirm": "Delete", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.confirm": "Delete", - - // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "प्रशासक", - // "comcol-role.edit.collection-admin.name": "Administrators", "comcol-role.edit.collection-admin.name": "प्रशासक", - // "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).", "comcol-role.edit.community-admin.description": "Community administrators उप-समुदाय किंवा संग्रह तयार करू शकतात आणि त्या उप-समुदाय किंवा संग्रहांचे व्यवस्थापन किंवा व्यवस्थापन नियुक्त करू शकतात. याव्यतिरिक्त, ते कोण उप-संग्रहांना आयटम सबमिट करू शकतात, सबमिशन नंतर आयटम मेटाडेटा संपादित करू शकतात आणि इतर संग्रहांमधून विद्यमान आयटम जोडू (नकाशा) करू शकतात (अधिकृततेच्या अधीन).", - // "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).", "comcol-role.edit.collection-admin.description": "Collection administrators ठरवतात की कोण संग्रहात आयटम सबमिट करू शकतात, सबमिशन नंतर आयटम मेटाडेटा संपादित करू शकतात आणि या संग्रहात इतर संग्रहांमधून विद्यमान आयटम जोडू (नकाशा) करू शकतात (त्या संग्रहासाठी अधिकृततेच्या अधीन).", - // "comcol-role.edit.submitters.name": "Submitters", "comcol-role.edit.submitters.name": "सबमिटर्स", - // "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.", "comcol-role.edit.submitters.description": "E-People आणि गट ज्यांना या संग्रहात नवीन आयटम सबमिट करण्याची परवानगी आहे.", - // "comcol-role.edit.item_read.name": "Default item read access", "comcol-role.edit.item_read.name": "डीफॉल्ट आयटम वाचन प्रवेश", - // "comcol-role.edit.item_read.description": "E-People and Groups that can read new items submitted to this collection. Changes to this role are not retroactive. Existing items in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.item_read.description": "E-People आणि गट जे या संग्रहात सबमिट केलेले नवीन आयटम वाचू शकतात. या भूमिकेतील बदल मागील काळात लागू होत नाहीत. प्रणालीतील विद्यमान आयटम अजूनही त्यावेळी वाचन प्रवेश असलेल्या लोकांना पाहता येतील.", - // "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.", "comcol-role.edit.item_read.anonymous-group": "आगामी आयटमसाठी डीफॉल्ट वाचन सध्या अनामिक सेट केले आहे.", - // "comcol-role.edit.bitstream_read.name": "Default bitstream read access", "comcol-role.edit.bitstream_read.name": "डीफॉल्ट बिटस्ट्रीम वाचन प्रवेश", - // "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.", "comcol-role.edit.bitstream_read.description": "E-People आणि गट जे या संग्रहात सबमिट केलेले नवीन बिटस्ट्रीम वाचू शकतात. या भूमिकेतील बदल मागील काळात लागू होत नाहीत. प्रणालीतील विद्यमान बिटस्ट्रीम अजूनही त्यावेळी वाचन प्रवेश असलेल्या लोकांना पाहता येतील.", - // "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.", "comcol-role.edit.bitstream_read.anonymous-group": "आगामी बिटस्ट्रीमसाठी डीफॉल्ट वाचन सध्या अनामिक सेट केले आहे.", - // "comcol-role.edit.editor.name": "Editors", "comcol-role.edit.editor.name": "संपादक", - // "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.", "comcol-role.edit.editor.description": "संपादक येणाऱ्या सबमिशनचे मेटाडेटा संपादित करू शकतात आणि नंतर त्यांना स्वीकारू किंवा नाकारू शकतात.", - // "comcol-role.edit.finaleditor.name": "Final editors", "comcol-role.edit.finaleditor.name": "अंतिम संपादक", - // "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.", "comcol-role.edit.finaleditor.description": "अंतिम संपादक येणाऱ्या सबमिशनचे मेटाडेटा संपादित करू शकतात, परंतु त्यांना नाकारू शकत नाहीत.", - // "comcol-role.edit.reviewer.name": "Reviewers", "comcol-role.edit.reviewer.name": "पुनरावलोकक", - // "comcol-role.edit.reviewer.description": "Reviewers are able to accept or reject incoming submissions. However, they are not able to edit the submission's metadata.", "comcol-role.edit.reviewer.description": "पुनरावलोकक येणाऱ्या सबमिशनला स्वीकारू किंवा नाकारू शकतात. तथापि, ते सबमिशनचे मेटाडेटा संपादित करू शकत नाहीत.", - // "comcol-role.edit.scorereviewers.name": "Score Reviewers", "comcol-role.edit.scorereviewers.name": "स्कोअर पुनरावलोकक", - // "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.", "comcol-role.edit.scorereviewers.description": "पुनरावलोकक येणाऱ्या सबमिशनला स्कोअर देऊ शकतात, हे ठरवेल की सबमिशन नाकारले जाईल की नाही.", - // "community.form.abstract": "Short Description", "community.form.abstract": "संक्षिप्त वर्णन", - // "community.form.description": "Introductory text (HTML)", "community.form.description": "प्रस्तावना मजकूर (HTML)", - // "community.form.errors.title.required": "Please enter a community name", "community.form.errors.title.required": "कृपया समुदायाचे नाव प्रविष्ट करा", - // "community.form.rights": "Copyright text (HTML)", "community.form.rights": "कॉपीराइट मजकूर (HTML)", - // "community.form.tableofcontents": "News (HTML)", "community.form.tableofcontents": "बातम्या (HTML)", - // "community.form.title": "Name", "community.form.title": "नाव", - // "community.page.edit": "Edit this community", "community.page.edit": "हा समुदाय संपादित करा", - // "community.page.handle": "Permanent URI for this community", "community.page.handle": "या समुदायासाठी स्थायी URI", - // "community.page.license": "License", "community.page.license": "परवाना", - // "community.page.news": "News", "community.page.news": "बातम्या", - // "community.page.options": "Options", "community.page.options": "पर्याय", - // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "उपसमुदाय आणि संग्रह", - // "community.search.breadcrumbs": "Search", "community.search.breadcrumbs": "शोधा", - // "community.search.results.head": "Search Results", "community.search.results.head": "शोध परिणाम", - // "community.sub-collection-list.head": "Collections in this community", "community.sub-collection-list.head": "या समुदायातील संग्रह", - // "community.sub-community-list.head": "Communities in this Community", "community.sub-community-list.head": "या समुदायातील समुदाय", - // "cookies.consent.accept-all": "Accept all", "cookies.consent.accept-all": "सर्व स्वीकारा", - // "cookies.consent.accept-selected": "Accept selected", "cookies.consent.accept-selected": "निवडलेले स्वीकारा", - // "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)", "cookies.consent.app.opt-out.description": "हे अॅप डीफॉल्टने लोड केले जाते (परंतु आपण बाहेर पडू शकता)", - // "cookies.consent.app.opt-out.title": "(opt-out)", "cookies.consent.app.opt-out.title": "(opt-out)", - // "cookies.consent.app.purpose": "purpose", "cookies.consent.app.purpose": "उद्देश", - // "cookies.consent.app.required.description": "This application is always required", "cookies.consent.app.required.description": "हे अॅप्लिकेशन नेहमी आवश्यक आहे", - // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(नेहमी आवश्यक)", - // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "आपल्या शेवटच्या भेटीनंतर बदल झाले आहेत, कृपया आपली संमती अद्यतनित करा.", - // "cookies.consent.close": "Close", "cookies.consent.close": "बंद करा", - // "cookies.consent.decline": "Decline", "cookies.consent.decline": "नकार", - // "cookies.consent.decline-all": "Decline all", "cookies.consent.decline-all": "सर्व नकारा", - // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "ठीक आहे", - // "cookies.consent.save": "Save", "cookies.consent.save": "जतन करा", - // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", - // TODO New key - Add a translation - "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + "cookies.consent.content-notice.description": "आम्ही आपली वैयक्तिक माहिती खालील उद्देशांसाठी गोळा आणि प्रक्रिया करतो: {purposes}", - // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "सानुकूलित करा", - // "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.", "cookies.consent.content-modal.description": "येथे आपण आपल्याबद्दल गोळा केलेली माहिती पाहू आणि सानुकूलित करू शकता.", - // "cookies.consent.content-modal.privacy-policy.name": "privacy policy", "cookies.consent.content-modal.privacy-policy.name": "गोपनीयता धोरण", - // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "अधिक जाणून घेण्यासाठी, कृपया आमचे {privacyPolicy} वाचा.", - // "cookies.consent.content-modal.no-privacy-policy.text": "", "cookies.consent.content-modal.no-privacy-policy.text": "", - // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "आम्ही गोळा केलेली माहिती", - // "cookies.consent.app.title.accessibility": "Accessibility Settings", - // TODO New key - Add a translation - "cookies.consent.app.title.accessibility": "Accessibility Settings", - - // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", - // TODO New key - Add a translation - "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", - - // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "प्रमाणीकरण", - // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "आपल्याला साइन इन करण्यासाठी आवश्यक", - // "cookies.consent.app.title.correlation-id": "Correlation ID", - // TODO New key - Add a translation - "cookies.consent.app.title.correlation-id": "Correlation ID", - - // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - // TODO New key - Add a translation - "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - - // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "प्राधान्ये", - // "cookies.consent.app.description.preferences": "Required for saving your preferences", "cookies.consent.app.description.preferences": "आपली प्राधान्ये जतन करण्यासाठी आवश्यक", - // "cookies.consent.app.title.acknowledgement": "Acknowledgement", "cookies.consent.app.title.acknowledgement": "स्वीकृती", - // "cookies.consent.app.description.acknowledgement": "Required for saving your acknowledgements and consents", "cookies.consent.app.description.acknowledgement": "आपल्या स्वीकृती आणि संमती जतन करण्यासाठी आवश्यक", - // "cookies.consent.app.title.google-analytics": "Google Analytics", "cookies.consent.app.title.google-analytics": "Google Analytics", - // "cookies.consent.app.description.google-analytics": "Allows us to track statistical data", "cookies.consent.app.description.google-analytics": "आम्हाला सांख्यिकी डेटा ट्रॅक करण्याची परवानगी देते", - // "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", - // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "नोंदणी आणि पासवर्ड पुनर्प्राप्ती दरम्यान आम्ही google reCAPTCHA सेवा वापरतो", - // "cookies.consent.app.title.matomo": "Matomo", "cookies.consent.app.title.matomo": "Matomo", - // "cookies.consent.app.description.matomo": "Allows us to track statistical data", "cookies.consent.app.description.matomo": "आम्हाला सांख्यिकी डेटा ट्रॅक करण्याची परवानगी देते", - // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "कार्यात्मक", - // "cookies.consent.purpose.statistical": "Statistical", "cookies.consent.purpose.statistical": "सांख्यिकी", - // "cookies.consent.purpose.registration-password-recovery": "Registration and Password recovery", "cookies.consent.purpose.registration-password-recovery": "नोंदणी आणि पासवर्ड पुनर्प्राप्ती", - // "cookies.consent.purpose.sharing": "Sharing", "cookies.consent.purpose.sharing": "शेअरिंग", - // "curation-task.task.citationpage.label": "Generate Citation Page", "curation-task.task.citationpage.label": "उद्धरण पृष्ठ तयार करा", - // "curation-task.task.checklinks.label": "Check Links in Metadata", "curation-task.task.checklinks.label": "मेटाडेटामधील दुवे तपासा", - // "curation-task.task.noop.label": "NOOP", "curation-task.task.noop.label": "NOOP", - // "curation-task.task.profileformats.label": "Profile Bitstream Formats", "curation-task.task.profileformats.label": "प्रोफाइल बिटस्ट्रीम स्वरूप", - // "curation-task.task.requiredmetadata.label": "Check for Required Metadata", "curation-task.task.requiredmetadata.label": "आवश्यक मेटाडेटा तपासा", - // "curation-task.task.translate.label": "Microsoft Translator", "curation-task.task.translate.label": "Microsoft Translator", - // "curation-task.task.vscan.label": "Virus Scan", "curation-task.task.vscan.label": "व्हायरस स्कॅन", - // "curation-task.task.registerdoi.label": "Register DOI", "curation-task.task.registerdoi.label": "DOI नोंदणी करा", - // "curation.form.task-select.label": "Task:", - // TODO New key - Add a translation - "curation.form.task-select.label": "Task:", + "curation.form.task-select.label": "कार्य:", - // "curation.form.submit": "Start", "curation.form.submit": "प्रारंभ करा", - // "curation.form.submit.success.head": "The curation task has been started successfully", "curation.form.submit.success.head": "क्युरेशन कार्य यशस्वीरित्या सुरू केले गेले आहे", - // "curation.form.submit.success.content": "You will be redirected to the corresponding process page.", "curation.form.submit.success.content": "आपण संबंधित प्रक्रिया पृष्ठावर पुनर्निर्देशित केले जाल.", - // "curation.form.submit.error.head": "Running the curation task failed", "curation.form.submit.error.head": "क्युरेशन कार्य चालवण्यात अयशस्वी", - // "curation.form.submit.error.content": "An error occurred when trying to start the curation task.", "curation.form.submit.error.content": "क्युरेशन कार्य सुरू करण्याचा प्रयत्न करताना एक त्रुटी आली.", - // "curation.form.submit.error.invalid-handle": "Couldn't determine the handle for this object", "curation.form.submit.error.invalid-handle": "या वस्तूसाठी हँडल ठरवू शकले नाही", - // "curation.form.handle.label": "Handle:", - // TODO New key - Add a translation - "curation.form.handle.label": "Handle:", + "curation.form.handle.label": "हँडल:", - // "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", - // TODO New key - Add a translation - "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", + "curation.form.handle.hint": "सूचना: संपूर्ण साइटवर कार्य चालवण्यासाठी [आपले-हँडल-प्रिफिक्स]/0 प्रविष्ट करा (सर्व कार्ये ही क्षमता समर्थन करू शकत नाहीत)", - // "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", - // TODO New key - Add a translation - "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + "deny-request-copy.email.message": "प्रिय {{ recipientName }},\nआपल्या विनंतीच्या प्रतिसादात मला आपल्याला कळविण्यात खेद आहे की आपण विनंती केलेल्या फाइल(स)ची प्रत पाठवणे शक्य नाही, दस्तऐवज: \"{{ itemUrl }}\" ({{ itemName }}), ज्याचा मी लेखक आहे.\n\nसर्वोत्तम शुभेच्छा,\n{{ authorName }} <{{ authorEmail }}>", - // "deny-request-copy.email.subject": "Request copy of document", "deny-request-copy.email.subject": "दस्तऐवजाची प्रत विनंती", - // "deny-request-copy.error": "An error occurred", "deny-request-copy.error": "एक त्रुटी आली", - // "deny-request-copy.header": "Deny document copy request", "deny-request-copy.header": "दस्तऐवज प्रत विनंती नकारा", - // "deny-request-copy.intro": "This message will be sent to the applicant of the request", "deny-request-copy.intro": "ही संदेश विनंतीच्या अर्जदाराला पाठवली जाईल", - // "deny-request-copy.success": "Successfully denied item request", "deny-request-copy.success": "आयटम विनंती यशस्वीरित्या नाकारली", - // "dynamic-list.load-more": "Load more", "dynamic-list.load-more": "अधिक लोड करा", - // "dropdown.clear": "Clear selection", "dropdown.clear": "निवड साफ करा", - // "dropdown.clear.tooltip": "Clear the selected option", "dropdown.clear.tooltip": "निवडलेला पर्याय साफ करा", - // "dso.name.untitled": "Untitled", "dso.name.untitled": "शीर्षक नसलेले", - // "dso.name.unnamed": "Unnamed", "dso.name.unnamed": "नाव नसलेले", - // "dso-selector.create.collection.head": "New collection", "dso-selector.create.collection.head": "नवीन संग्रह", - // "dso-selector.create.collection.sub-level": "Create a new collection in", "dso-selector.create.collection.sub-level": "मध्ये नवीन संग्रह तयार करा", - // "dso-selector.create.community.head": "New community", "dso-selector.create.community.head": "नवीन समुदाय", - // "dso-selector.create.community.or-divider": "or", "dso-selector.create.community.or-divider": "किंवा", - // "dso-selector.create.community.sub-level": "Create a new community in", "dso-selector.create.community.sub-level": "मध्ये नवीन समुदाय तयार करा", - // "dso-selector.create.community.top-level": "Create a new top-level community", "dso-selector.create.community.top-level": "नवीन शीर्ष-स्तरीय समुदाय तयार करा", - // "dso-selector.create.item.head": "New item", "dso-selector.create.item.head": "नवीन आयटम", - // "dso-selector.create.item.sub-level": "Create a new item in", "dso-selector.create.item.sub-level": "मध्ये नवीन आयटम तयार करा", - // "dso-selector.create.submission.head": "New submission", "dso-selector.create.submission.head": "नवीन सबमिशन", - // "dso-selector.edit.collection.head": "Edit collection", "dso-selector.edit.collection.head": "संग्रह संपादित करा", - // "dso-selector.edit.community.head": "Edit community", "dso-selector.edit.community.head": "समुदाय संपादित करा", - // "dso-selector.edit.item.head": "Edit item", "dso-selector.edit.item.head": "आयटम संपादित करा", - // "dso-selector.error.title": "An error occurred searching for a {{ type }}", "dso-selector.error.title": "{{ type }} शोधताना एक त्रुटी आली", - // "dso-selector.export-metadata.dspaceobject.head": "Export metadata from", "dso-selector.export-metadata.dspaceobject.head": "मधून मेटाडेटा निर्यात करा", - // "dso-selector.export-batch.dspaceobject.head": "Export Batch (ZIP) from", "dso-selector.export-batch.dspaceobject.head": "मधून बॅच (ZIP) निर्यात करा", - // "dso-selector.import-batch.dspaceobject.head": "Import batch from", "dso-selector.import-batch.dspaceobject.head": "मधून बॅच आयात करा", - // "dso-selector.no-results": "No {{ type }} found", "dso-selector.no-results": "कोणतेही {{ type }} सापडले नाही", - // "dso-selector.placeholder": "Search for a {{ type }}", "dso-selector.placeholder": "{{ type }} साठी शोधा", - // "dso-selector.placeholder.type.community": "community", "dso-selector.placeholder.type.community": "समुदाय", - // "dso-selector.placeholder.type.collection": "collection", "dso-selector.placeholder.type.collection": "संग्रह", - // "dso-selector.placeholder.type.item": "item", "dso-selector.placeholder.type.item": "आयटम", - // "dso-selector.select.collection.head": "Select a collection", "dso-selector.select.collection.head": "संग्रह निवडा", - // "dso-selector.set-scope.community.head": "Select a search scope", "dso-selector.set-scope.community.head": "शोधाचा व्याप्ती निवडा", - // "dso-selector.set-scope.community.button": "Search all of DSpace", "dso-selector.set-scope.community.button": "संपूर्ण DSpace शोधा", - // "dso-selector.set-scope.community.or-divider": "or", "dso-selector.set-scope.community.or-divider": "किंवा", - // "dso-selector.set-scope.community.input-header": "Search for a community or collection", "dso-selector.set-scope.community.input-header": "समुदाय किंवा संग्रहासाठी शोधा", - // "dso-selector.claim.item.head": "Profile tips", "dso-selector.claim.item.head": "प्रोफाइल टिपा", - // "dso-selector.claim.item.body": "These are existing profiles that may be related to you. If you recognize yourself in one of these profiles, select it and on the detail page, among the options, choose to claim it. Otherwise you can create a new profile from scratch using the button below.", "dso-selector.claim.item.body": "हे विद्यमान प्रोफाइल आहेत जे आपल्याशी संबंधित असू शकतात. आपण या प्रोफाइलपैकी एकामध्ये स्वतःला ओळखत असल्यास, ते निवडा आणि तपशील पृष्ठावर, पर्यायांमध्ये, ते दावा करण्यासाठी निवडा. अन्यथा आपण खालील बटण वापरून नवीन प्रोफाइल तयार करू शकता.", - // "dso-selector.claim.item.not-mine-label": "None of these are mine", "dso-selector.claim.item.not-mine-label": "हे माझे नाहीत", - // "dso-selector.claim.item.create-from-scratch": "Create a new one", "dso-selector.claim.item.create-from-scratch": "नवीन एक तयार करा", - // "dso-selector.results-could-not-be-retrieved": "Something went wrong, please refresh again ↻", "dso-selector.results-could-not-be-retrieved": "काहीतरी चुकले, कृपया पुन्हा ताजेतवाने करा ↻", - // "supervision-group-selector.header": "Supervision Group Selector", "supervision-group-selector.header": "Supervision Group Selector", - // "supervision-group-selector.select.type-of-order.label": "Select a type of Order", "supervision-group-selector.select.type-of-order.label": "ऑर्डरचा प्रकार निवडा", - // "supervision-group-selector.select.type-of-order.option.none": "NONE", "supervision-group-selector.select.type-of-order.option.none": "काहीही नाही", - // "supervision-group-selector.select.type-of-order.option.editor": "EDITOR", "supervision-group-selector.select.type-of-order.option.editor": "संपादक", - // "supervision-group-selector.select.type-of-order.option.observer": "OBSERVER", "supervision-group-selector.select.type-of-order.option.observer": "निरीक्षक", - // "supervision-group-selector.select.group.label": "Select a Group", "supervision-group-selector.select.group.label": "गट निवडा", - // "supervision-group-selector.button.cancel": "Cancel", "supervision-group-selector.button.cancel": "रद्द करा", - // "supervision-group-selector.button.save": "Save", "supervision-group-selector.button.save": "जतन करा", - // "supervision-group-selector.select.type-of-order.error": "Please select a type of order", "supervision-group-selector.select.type-of-order.error": "कृपया ऑर्डरचा प्रकार निवडा", - // "supervision-group-selector.select.group.error": "Please select a group", "supervision-group-selector.select.group.error": "कृपया गट निवडा", - // "supervision-group-selector.notification.create.success.title": "Successfully created supervision order for group {{ name }}", "supervision-group-selector.notification.create.success.title": "गट {{ name }} साठी यशस्वीरित्या सुपरविजन ऑर्डर तयार केली", - // "supervision-group-selector.notification.create.failure.title": "Error", "supervision-group-selector.notification.create.failure.title": "त्रुटी", - // "supervision-group-selector.notification.create.already-existing": "A supervision order already exists on this item for selected group", "supervision-group-selector.notification.create.already-existing": "निवडलेल्या गटासाठी या आयटमवर आधीच एक सुपरविजन ऑर्डर अस्तित्वात आहे", - // "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.header": "{{ dsoName }} साठी मेटाडेटा निर्यात करा", - // "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}", "confirmation-modal.export-metadata.info": "आपण {{ dsoName }} साठी मेटाडेटा निर्यात करू इच्छिता याची खात्री आहे का", - // "confirmation-modal.export-metadata.cancel": "Cancel", "confirmation-modal.export-metadata.cancel": "रद्द करा", - // "confirmation-modal.export-metadata.confirm": "Export", "confirmation-modal.export-metadata.confirm": "निर्यात करा", - // "confirmation-modal.export-batch.header": "Export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.header": "{{ dsoName }} साठी बॅच (ZIP) निर्यात करा", - // "confirmation-modal.export-batch.info": "Are you sure you want to export batch (ZIP) for {{ dsoName }}", "confirmation-modal.export-batch.info": "आपण {{ dsoName }} साठी बॅच (ZIP) निर्यात करू इच्छिता याची खात्री आहे का", - // "confirmation-modal.export-batch.cancel": "Cancel", "confirmation-modal.export-batch.cancel": "रद्द करा", - // "confirmation-modal.export-batch.confirm": "Export", "confirmation-modal.export-batch.confirm": "निर्यात करा", - // "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.header": "EPerson \"{{ dsoName }}\" हटवा", - // "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"", "confirmation-modal.delete-eperson.info": "आपण EPerson \"{{ dsoName }}\" हटवू इच्छिता याची खात्री आहे का", - // "confirmation-modal.delete-eperson.cancel": "Cancel", "confirmation-modal.delete-eperson.cancel": "रद्द करा", - // "confirmation-modal.delete-eperson.confirm": "Delete", "confirmation-modal.delete-eperson.confirm": "हटवा", - // "confirmation-modal.delete-community-collection-logo.info": "Are you sure you want to delete the logo?", "confirmation-modal.delete-community-collection-logo.info": "आपण लोगो हटवू इच्छिता याची खात्री आहे का?", - // "confirmation-modal.delete-profile.header": "Delete Profile", "confirmation-modal.delete-profile.header": "प्रोफाइल हटवा", - // "confirmation-modal.delete-profile.info": "Are you sure you want to delete your profile", "confirmation-modal.delete-profile.info": "आपण आपले प्रोफाइल हटवू इच्छिता याची खात्री आहे का", - // "confirmation-modal.delete-profile.cancel": "Cancel", "confirmation-modal.delete-profile.cancel": "रद्द करा", - // "confirmation-modal.delete-profile.confirm": "Delete", "confirmation-modal.delete-profile.confirm": "हटवा", - // "confirmation-modal.delete-subscription.header": "Delete Subscription", "confirmation-modal.delete-subscription.header": "सदस्यता हटवा", - // "confirmation-modal.delete-subscription.info": "Are you sure you want to delete subscription for \"{{ dsoName }}\"", "confirmation-modal.delete-subscription.info": "आपण \"{{ dsoName }}\" साठी सदस्यता हटवू इच्छिता याची खात्री आहे का", - // "confirmation-modal.delete-subscription.cancel": "Cancel", "confirmation-modal.delete-subscription.cancel": "रद्द करा", - // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "हटवा", - // "confirmation-modal.review-account-info.header": "Save the changes", "confirmation-modal.review-account-info.header": "बदल जतन करा", - // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", "confirmation-modal.review-account-info.info": "आपण आपल्या प्रोफाइलमध्ये बदल जतन करू इच्छिता याची खात्री आहे का", - // "confirmation-modal.review-account-info.cancel": "Cancel", "confirmation-modal.review-account-info.cancel": "रद्द करा", - // "confirmation-modal.review-account-info.confirm": "Confirm", "confirmation-modal.review-account-info.confirm": "पुष्टी करा", - // "confirmation-modal.review-account-info.save": "Save", "confirmation-modal.review-account-info.save": "जतन करा", - // "error.bitstream": "Error fetching bitstream", "error.bitstream": "बिटस्ट्रीम मिळवण्यात त्रुटी", - // "error.browse-by": "Error fetching items", "error.browse-by": "आयटम मिळवण्यात त्रुटी", - // "error.collection": "Error fetching collection", "error.collection": "संग्रह मिळवण्यात त्रुटी", - // "error.collections": "Error fetching collections", "error.collections": "संग्रह मिळवण्यात त्रुटी", - // "error.community": "Error fetching community", "error.community": "समुदाय मिळवण्यात त्रुटी", - // "error.identifier": "No item found for the identifier", "error.identifier": "ओळखकर्ता साठी कोणताही आयटम सापडला नाही", - // "error.default": "Error", "error.default": "त्रुटी", - // "error.item": "Error fetching item", "error.item": "आयटम मिळवण्यात त्रुटी", - // "error.items": "Error fetching items", "error.items": "आयटम मिळवण्यात त्रुटी", - // "error.objects": "Error fetching objects", "error.objects": "वस्तू मिळवण्यात त्रुटी", - // "error.recent-submissions": "Error fetching recent submissions", "error.recent-submissions": "अलीकडील सबमिशन मिळवण्यात त्रुटी", - // "error.profile-groups": "Error retrieving profile groups", "error.profile-groups": "प्रोफाइल गट मिळवण्यात त्रुटी", - // "error.search-results": "Error fetching search results", "error.search-results": "शोध परिणाम मिळवण्यात त्रुटी", - // "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", - // TODO New key - Add a translation - "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + "error.invalid-search-query": "शोध क्वेरी वैध नाही. कृपया अधिक माहितीसाठी Solr query syntax सर्वोत्तम पद्धती तपासा.", - // "error.sub-collections": "Error fetching sub-collections", "error.sub-collections": "उप-संग्रह मिळवण्यात त्रुटी", - // "error.sub-communities": "Error fetching sub-communities", "error.sub-communities": "उप-समुदाय मिळवण्यात त्रुटी", - // "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", - // TODO New key - Add a translation - "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + "error.submission.sections.init-form-error": "विभाग प्रारंभ करताना एक त्रुटी आली, कृपया आपल्या इनपुट-फॉर्म कॉन्फिगरेशन तपासा. तपशील खाली आहेत :

", - // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "शीर्ष-स्तरीय समुदाय मिळवण्यात त्रुटी", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "आपण आपले सबमिशन पूर्ण करण्यासाठी हा परवाना मंजूर करणे आवश्यक आहे. आपण सध्या हा परवाना मंजूर करण्यात अक्षम असल्यास आपण आपले कार्य जतन करू शकता आणि नंतर परत येऊ शकता किंवा सबमिशन काढून टाकू शकता.", - // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "आपण आपले सबमिशन पूर्ण करण्यासाठी हा cclicense मंजूर करणे आवश्यक आहे. आपण सध्या हा cclicense मंजूर करण्यात अक्षम असल्यास, आपण आपले कार्य जतन करू शकता आणि नंतर परत येऊ शकता किंवा सबमिशन काढून टाकू शकता.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", + "error.validation.pattern": "हे इनपुट वर्तमान पॅटर्नद्वारे प्रतिबंधित आहे: {{ pattern }}.", - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", - // TODO New key - Add a translation - "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", - - // "error.validation.filerequired": "The file upload is mandatory", "error.validation.filerequired": "फाइल अपलोड अनिवार्य आहे", - // "error.validation.required": "This field is required", "error.validation.required": "हे क्षेत्र आवश्यक आहे", - // "error.validation.NotValidEmail": "This is not a valid email", "error.validation.NotValidEmail": "हे वैध ईमेल नाही", - // "error.validation.emailTaken": "This email is already taken", "error.validation.emailTaken": "हे ईमेल आधीच घेतले गेले आहे", - // "error.validation.groupExists": "This group already exists", "error.validation.groupExists": "हा गट आधीच अस्तित्वात आहे", - // "error.validation.metadata.name.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Element & Qualifier fields instead", "error.validation.metadata.name.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत. कृपया एलिमेंट आणि क्वालिफायर क्षेत्रे वापरा", - // "error.validation.metadata.name.max-length": "This field may not contain more than 32 characters", "error.validation.metadata.name.max-length": "या क्षेत्रात 32 वर्णांपेक्षा जास्त असू शकत नाहीत", - // "error.validation.metadata.namespace.max-length": "This field may not contain more than 256 characters", "error.validation.metadata.namespace.max-length": "या क्षेत्रात 256 वर्णांपेक्षा जास्त असू शकत नाहीत", - // "error.validation.metadata.element.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Qualifier field instead", "error.validation.metadata.element.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत. कृपया क्वालिफायर क्षेत्र वापरा", - // "error.validation.metadata.element.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.element.max-length": "या क्षेत्रात 64 वर्णांपेक्षा जास्त असू शकत नाहीत", - // "error.validation.metadata.qualifier.invalid-pattern": "This field cannot contain dots, commas or spaces", "error.validation.metadata.qualifier.invalid-pattern": "या क्षेत्रात डॉट्स, कॉमास किंवा स्पेस असू शकत नाहीत", - // "error.validation.metadata.qualifier.max-length": "This field may not contain more than 64 characters", "error.validation.metadata.qualifier.max-length": "या क्षेत्रात 64 वर्णांपेक्षा जास्त असू शकत नाहीत", - // "feed.description": "Syndication feed", "feed.description": "सिंडिकेशन फीड", - // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "प्रतिबंधित बिटस्ट्रीम", - // "file-download-link.secure-access": "Restricted bitstream available via secure access token", "file-download-link.secure-access": "प्रतिबंधित बिटस्ट्रीम सुरक्षित प्रवेश टोकनद्वारे उपलब्ध", - // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "या आयटमसाठी फाइल्स मिळवण्यात त्रुटी", - // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "कॉपीराइट © 2002-{{ year }}", - // "footer.link.accessibility": "Accessibility settings", - // TODO New key - Add a translation - "footer.link.accessibility": "Accessibility settings", - - // "footer.link.dspace": "DSpace software", "footer.link.dspace": "DSpace सॉफ्टवेअर", - // "footer.link.lyrasis": "LYRASIS", "footer.link.lyrasis": "LYRASIS", - // "footer.link.cookies": "Cookie settings", "footer.link.cookies": "कुकी सेटिंग्ज", - // "footer.link.privacy-policy": "Privacy policy", "footer.link.privacy-policy": "गोपनीयता धोरण", - // "footer.link.end-user-agreement": "End User Agreement", "footer.link.end-user-agreement": "अंतिम वापरकर्ता करार", - // "footer.link.feedback": "Send Feedback", "footer.link.feedback": "प्रतिक्रिया पाठवा", - // "footer.link.coar-notify-support": "COAR Notify", "footer.link.coar-notify-support": "COAR Notify", - // "forgot-email.form.header": "Forgot Password", "forgot-email.form.header": "पासवर्ड विसरलात", - // "forgot-email.form.info": "Enter the email address associated with the account.", "forgot-email.form.info": "खात्याशी संबंधित ईमेल पत्ता प्रविष्ट करा.", - // "forgot-email.form.email": "Email Address *", "forgot-email.form.email": "ईमेल पत्ता *", - // "forgot-email.form.email.error.required": "Please fill in an email address", "forgot-email.form.email.error.required": "कृपया ईमेल पत्ता भरा", - // "forgot-email.form.email.error.not-email-form": "Please fill in a valid email address", "forgot-email.form.email.error.not-email-form": "कृपया वैध ईमेल पत्ता भरा", - // "forgot-email.form.email.hint": "An email will be sent to this address with a further instructions.", "forgot-email.form.email.hint": "या पत्त्यावर पुढील सूचनांसह एक ईमेल पाठवला जाईल.", - // "forgot-email.form.submit": "Reset password", "forgot-email.form.submit": "पासवर्ड रीसेट करा", - // "forgot-email.form.success.head": "Password reset email sent", "forgot-email.form.success.head": "पासवर्ड रीसेट ईमेल पाठवला", - // "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "forgot-email.form.success.content": "{{ email }} वर एक विशेष URL आणि पुढील सूचनांसह एक ईमेल पाठवला गेला आहे.", - // "forgot-email.form.error.head": "Error when trying to reset password", "forgot-email.form.error.head": "पासवर्ड रीसेट करण्याचा प्रयत्न करताना त्रुटी", - // "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", - // TODO New key - Add a translation - "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}", + "forgot-email.form.error.content": "खालील ईमेल पत्त्यासह संबंधित खात्यासाठी पासवर्ड रीसेट करण्याचा प्रयत्न करताना एक त्रुटी आली: {{ email }}", - // "forgot-password.title": "Forgot Password", "forgot-password.title": "पासवर्ड विसरलात", - // "forgot-password.form.head": "Forgot Password", "forgot-password.form.head": "पासवर्ड विसरलात", - // "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box.", "forgot-password.form.info": "खालील बॉक्समध्ये नवीन पासवर्ड प्रविष्ट करा आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करा.", - // "forgot-password.form.card.security": "Security", "forgot-password.form.card.security": "सुरक्षा", - // "forgot-password.form.identification.header": "Identify", "forgot-password.form.identification.header": "ओळख", - // "forgot-password.form.identification.email": "Email address: ", - // TODO New key - Add a translation - "forgot-password.form.identification.email": "Email address: ", + "forgot-password.form.identification.email": "ईमेल पत्ता: ", - // "forgot-password.form.label.password": "Password", "forgot-password.form.label.password": "पासवर्ड", - // "forgot-password.form.label.passwordrepeat": "Retype to confirm", "forgot-password.form.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा", - // "forgot-password.form.error.empty-password": "Please enter a password in the boxes above.", "forgot-password.form.error.empty-password": "कृपया वरील बॉक्समध्ये पासवर्ड प्रविष्ट करा.", - // "forgot-password.form.error.matching-passwords": "The passwords do not match.", "forgot-password.form.error.matching-passwords": "पासवर्ड जुळत नाहीत.", - // "forgot-password.form.notification.error.title": "Error when trying to submit new password", "forgot-password.form.notification.error.title": "नवीन पासवर्ड सबमिट करण्याचा प्रयत्न करताना त्रुटी", - // "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.", "forgot-password.form.notification.success.content": "पासवर्ड रीसेट यशस्वी झाला. आपण तयार केलेल्या वापरकर्त्याच्या रूपात लॉग इन केले गेले आहे.", - // "forgot-password.form.notification.success.title": "Password reset completed", "forgot-password.form.notification.success.title": "पासवर्ड रीसेट पूर्ण", - // "forgot-password.form.submit": "Submit password", "forgot-password.form.submit": "पासवर्ड सबमिट करा", - // "form.add": "Add more", "form.add": "अधिक जोडा", - // "form.add-help": "Click here to add the current entry and to add another one", "form.add-help": "सध्याची नोंदणी जोडा आणि आणखी एक जोडा", - // "form.cancel": "Cancel", "form.cancel": "रद्द करा", - // "form.clear": "Clear", "form.clear": "साफ करा", - // "form.clear-help": "Click here to remove the selected value", "form.clear-help": "निवडलेले मूल्य काढण्यासाठी येथे क्लिक करा", - // "form.discard": "Discard", "form.discard": "काढून टाका", - // "form.drag": "Drag", "form.drag": "ओढा", - // "form.edit": "Edit", "form.edit": "संपादित करा", - // "form.edit-help": "Click here to edit the selected value", "form.edit-help": "निवडलेले मूल्य संपादित करण्यासाठी येथे क्लिक करा", - // "form.first-name": "First name", "form.first-name": "पहिले नाव", - // "form.group-collapse": "Collapse", "form.group-collapse": "संकुचित करा", - // "form.group-collapse-help": "Click here to collapse", "form.group-collapse-help": "संकुचित करण्यासाठी येथे क्लिक करा", - // "form.group-expand": "Expand", "form.group-expand": "विस्तृत करा", - // "form.group-expand-help": "Click here to expand and add more elements", "form.group-expand-help": "विस्तृत करण्यासाठी आणि अधिक घटक जोडण्यासाठी येथे क्लिक करा", - // "form.last-name": "Last name", "form.last-name": "शेवटचे नाव", - // "form.loading": "Loading...", "form.loading": "लोड करत आहे...", - // "form.lookup": "Lookup", "form.lookup": "शोधा", - // "form.lookup-help": "Click here to look up an existing relation", "form.lookup-help": "विद्यमान संबंध शोधण्यासाठी येथे क्लिक करा", - // "form.no-results": "No results found", "form.no-results": "कोणतेही परिणाम सापडले नाहीत", - // "form.no-value": "No value entered", "form.no-value": "कोणतेही मूल्य प्रविष्ट केले नाही", - // "form.other-information.email": "Email", "form.other-information.email": "ईमेल", - // "form.other-information.first-name": "First Name", "form.other-information.first-name": "पहिले नाव", - // "form.other-information.insolr": "In Solr Index", "form.other-information.insolr": "Solr अनुक्रमणिकेत", - // "form.other-information.institution": "Institution", "form.other-information.institution": "संस्था", - // "form.other-information.last-name": "Last Name", "form.other-information.last-name": "शेवटचे नाव", - // "form.other-information.orcid": "ORCID", "form.other-information.orcid": "ORCID", - // "form.remove": "Remove", "form.remove": "काढा", - // "form.save": "Save", "form.save": "जतन करा", - // "form.save-help": "Save changes", "form.save-help": "बदल जतन करा", - // "form.search": "Search", "form.search": "शोधा", - // "form.search-help": "Click here to look for an existing correspondence", "form.search-help": "विद्यमान पत्रव्यवहार शोधण्यासाठी येथे क्लिक करा", - // "form.submit": "Save", "form.submit": "जतन करा", - // "form.create": "Create", "form.create": "तयार करा", - // "form.number-picker.decrement": "Decrement {{field}}", "form.number-picker.decrement": "{{field}} कमी करा", - // "form.number-picker.increment": "Increment {{field}}", "form.number-picker.increment": "{{field}} वाढवा", - // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "आयटम नवीन स्थितीत ड्रॉप करा", - // "grant-deny-request-copy.deny": "Deny access request", "grant-deny-request-copy.deny": "प्रवेश विनंती नकारा", - // "grant-deny-request-copy.revoke": "Revoke access", "grant-deny-request-copy.revoke": "प्रवेश रद्द करा", - // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "मागे", - // "grant-deny-request-copy.email.message": "Optional additional message", "grant-deny-request-copy.email.message": "ऐच्छिक अतिरिक्त संदेश", - // "grant-deny-request-copy.email.message.empty": "Please enter a message", "grant-deny-request-copy.email.message.empty": "कृपया एक संदेश प्रविष्ट करा", - // "grant-deny-request-copy.email.permissions.info": "You may use this occasion to reconsider the access restrictions on the document, to avoid having to respond to these requests. If you’d like to ask the repository administrators to remove these restrictions, please check the box below.", "grant-deny-request-copy.email.permissions.info": "या विनंत्यांना प्रतिसाद देण्याची आवश्यकता टाळण्यासाठी, आपण दस्तऐवजावरील प्रवेश निर्बंधांचा पुनर्विचार करण्यासाठी ही संधी वापरू शकता. आपण रेपॉझिटरी प्रशासकांना हे निर्बंध काढून टाकण्याची विनंती करू इच्छित असल्यास, कृपया खालील बॉक्स तपासा.", - // "grant-deny-request-copy.email.permissions.label": "Change to open access", "grant-deny-request-copy.email.permissions.label": "मुक्त प्रवेशात बदला", - // "grant-deny-request-copy.email.send": "Send", "grant-deny-request-copy.email.send": "पाठवा", - // "grant-deny-request-copy.email.subject": "Subject", "grant-deny-request-copy.email.subject": "विषय", - // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "कृपया एक विषय प्रविष्ट करा", - // "grant-deny-request-copy.grant": "Grant access request", "grant-deny-request-copy.grant": "प्रवेश विनंती मंजूर करा", - // "grant-deny-request-copy.header": "Document copy request", "grant-deny-request-copy.header": "दस्तऐवज प्रत विनंती", - // "grant-deny-request-copy.home-page": "Take me to the home page", "grant-deny-request-copy.home-page": "मला मुख्य पृष्ठावर घेऊन जा", - // "grant-deny-request-copy.intro1": "If you are one of the authors of the document {{ name }}, then please use one of the options below to respond to the user's request.", "grant-deny-request-copy.intro1": "आपण दस्तऐवजाच्या लेखकांपैकी एक असल्यास {{ name }}, कृपया वापरकर्त्याच्या विनंतीला प्रतिसाद देण्यासाठी खालील पर्यायांपैकी एक वापरा.", - // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "पर्याय निवडल्यानंतर, आपल्याला सुचवलेले ईमेल उत्तर सादर केले जाईल जे आपण संपादित करू शकता.", - // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", "grant-deny-request-copy.previous-decision": "ही विनंती पूर्वी सुरक्षित प्रवेश टोकनसह मंजूर केली गेली होती. आपण आता हा प्रवेश रद्द करू शकता जेणेकरून प्रवेश टोकन त्वरित अमान्य होईल", - // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "ही विनंती आधीच प्रक्रिया केली गेली आहे. आपण खालील बटण वापरून मुख्य पृष्ठावर परत जाऊ शकता.", - // "grant-request-copy.email.subject": "Request copy of document", "grant-request-copy.email.subject": "दस्तऐवजाची प्रत विनंती", - // "grant-request-copy.error": "An error occurred", "grant-request-copy.error": "एक त्रुटी आली", - // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "दस्तऐवज प्रत विनंती मंजूर करा", - // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", "grant-request-copy.intro.attachment": "विनंतीच्या अर्जदाराला एक संदेश पाठवला जाईल. विनंती केलेले दस्तऐवज जोडले जातील.", - // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", "grant-request-copy.intro.link": "विनंतीच्या अर्जदाराला एक संदेश पाठवला जाईल. विनंती केलेल्या दस्तऐवजांना प्रवेश देणारा एक सुरक्षित दुवा जोडला जाईल. खालील \"प्रवेश कालावधी\" मेनूमध्ये निवडलेल्या कालावधीसाठी दुवा प्रवेश प्रदान करेल.", - // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", - // TODO New key - Add a translation - "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + "grant-request-copy.intro.link.preview": "खाली अर्जदाराला पाठवला जाणारा दुव्याचा पूर्वावलोकन आहे:", - // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "आयटम विनंती यशस्वीरित्या मंजूर केली", - // "grant-request-copy.access-period.header": "Access period", "grant-request-copy.access-period.header": "प्रवेश कालावधी", - // "grant-request-copy.access-period.+1DAY": "1 day", "grant-request-copy.access-period.+1DAY": "1 दिवस", - // "grant-request-copy.access-period.+7DAYS": "1 week", "grant-request-copy.access-period.+7DAYS": "1 आठवडा", - // "grant-request-copy.access-period.+1MONTH": "1 month", "grant-request-copy.access-period.+1MONTH": "1 महिना", - // "grant-request-copy.access-period.+3MONTHS": "3 months", "grant-request-copy.access-period.+3MONTHS": "3 महिने", - // "grant-request-copy.access-period.FOREVER": "Forever", "grant-request-copy.access-period.FOREVER": "सर्वकाळ", - // "health.breadcrumbs": "Health", "health.breadcrumbs": "आरोग्य", - // "health-page.heading": "Health", "health-page.heading": "आरोग्य", - // "health-page.info-tab": "Info", "health-page.info-tab": "माहिती", - // "health-page.status-tab": "Status", "health-page.status-tab": "स्थिती", - // "health-page.error.msg": "The health check service is temporarily unavailable", "health-page.error.msg": "आरोग्य तपासणी सेवा तात्पुरती अनुपलब्ध आहे", - // "health-page.property.status": "Status code", "health-page.property.status": "स्थिती कोड", - // "health-page.section.db.title": "Database", "health-page.section.db.title": "डेटाबेस", - // "health-page.section.geoIp.title": "GeoIp", "health-page.section.geoIp.title": "GeoIp", - // "health-page.section.solrAuthorityCore.title": "Solr: authority core", "health-page.section.solrAuthorityCore.title": "Solr: authority core", - // "health-page.section.solrOaiCore.title": "Solr: oai core", "health-page.section.solrOaiCore.title": "Solr: oai core", - // "health-page.section.solrSearchCore.title": "Solr: search core", "health-page.section.solrSearchCore.title": "Solr: search core", - // "health-page.section.solrStatisticsCore.title": "Solr: statistics core", "health-page.section.solrStatisticsCore.title": "Solr: statistics core", - // "health-page.section-info.app.title": "Application Backend", "health-page.section-info.app.title": "अॅप्लिकेशन बॅकएंड", - // "health-page.section-info.java.title": "Java", "health-page.section-info.java.title": "Java", - // "health-page.status": "Status", "health-page.status": "स्थिती", - // "health-page.status.ok.info": "Operational", "health-page.status.ok.info": "ऑपरेशनल", - // "health-page.status.error.info": "Problems detected", "health-page.status.error.info": "समस्या आढळल्या", - // "health-page.status.warning.info": "Possible issues detected", "health-page.status.warning.info": "संभाव्य समस्या आढळल्या", - // "health-page.title": "Health", "health-page.title": "आरोग्य", - // "health-page.section.no-issues": "No issues detected", "health-page.section.no-issues": "कोणत्याही समस्या आढळल्या नाहीत", - // "home.description": "", "home.description": "", - // "home.breadcrumbs": "Home", "home.breadcrumbs": "मुख्य पृष्ठ", - // "home.search-form.placeholder": "Search the repository ...", "home.search-form.placeholder": "रेपॉझिटरी शोधा ...", - // "home.title": "Home", "home.title": "मुख्य पृष्ठ", - // "home.top-level-communities.head": "Communities in DSpace", "home.top-level-communities.head": "DSpace मधील समुदाय", - // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "त्याच्या संग्रह ब्राउझ करण्यासाठी एक समुदाय निवडा.", - // "info.accessibility-settings.breadcrumbs": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.breadcrumbs": "Accessibility settings", - - // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - // TODO New key - Add a translation - "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - - // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - - // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - - // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - - // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - // TODO New key - Add a translation - "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - - // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - - // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - - // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - - // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - - // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - - // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - - // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - - // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - - // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - - // "info.accessibility-settings.reset-notification": "Successfully reset settings.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-notification": "Successfully reset settings.", - - // "info.accessibility-settings.reset": "Reset accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.reset": "Reset accessibility settings", - - // "info.accessibility-settings.submit": "Save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.submit": "Save accessibility settings", - - // "info.accessibility-settings.title": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.title": "Accessibility settings", - - // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "मी अंतिम वापरकर्ता करार वाचला आहे आणि मी सहमत आहे", - // "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement", "info.end-user-agreement.accept.error": "अंतिम वापरकर्ता करार स्वीकारताना एक त्रुटी आली", - // "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement", "info.end-user-agreement.accept.success": "अंतिम वापरकर्ता करार यशस्वीरित्या अद्यतनित केला", - // "info.end-user-agreement.breadcrumbs": "End User Agreement", "info.end-user-agreement.breadcrumbs": "अंतिम वापरकर्ता करार", - // "info.end-user-agreement.buttons.cancel": "Cancel", "info.end-user-agreement.buttons.cancel": "रद्द करा", - // "info.end-user-agreement.buttons.save": "Save", "info.end-user-agreement.buttons.save": "जतन करा", - // "info.end-user-agreement.head": "End User Agreement", "info.end-user-agreement.head": "अंतिम वापरकर्ता करार", - // "info.end-user-agreement.title": "End User Agreement", "info.end-user-agreement.title": "अंतिम वापरकर्ता करार", - // "info.end-user-agreement.hosting-country": "the United States", "info.end-user-agreement.hosting-country": "संयुक्त राज्ये", - // "info.privacy.breadcrumbs": "Privacy Statement", "info.privacy.breadcrumbs": "गोपनीयता विधान", - // "info.privacy.head": "Privacy Statement", "info.privacy.head": "गोपनीयता विधान", - // "info.privacy.title": "Privacy Statement", "info.privacy.title": "गोपनीयता विधान", - // "info.feedback.breadcrumbs": "Feedback", "info.feedback.breadcrumbs": "प्रतिक्रिया", - // "info.feedback.head": "Feedback", "info.feedback.head": "प्रतिक्रिया", - // "info.feedback.title": "Feedback", "info.feedback.title": "प्रतिक्रिया", - // "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!", "info.feedback.info": "DSpace प्रणालीबद्दल आपली प्रतिक्रिया सामायिक केल्याबद्दल धन्यवाद. आपली टिप्पण्या कौतुकास्पद आहेत!", - // "info.feedback.email_help": "This address will be used to follow up on your feedback.", "info.feedback.email_help": "आपल्या प्रतिक्रियेवर फॉलो अप करण्यासाठी हा पत्ता वापरला जाईल.", - // "info.feedback.send": "Send Feedback", "info.feedback.send": "प्रतिक्रिया पाठवा", - // "info.feedback.comments": "Comments", "info.feedback.comments": "टिप्पण्या", - // "info.feedback.email-label": "Your Email", "info.feedback.email-label": "आपला ईमेल", - // "info.feedback.create.success": "Feedback Sent Successfully!", "info.feedback.create.success": "प्रतिक्रिया यशस्वीरित्या पाठवली!", - // "info.feedback.error.email.required": "A valid email address is required", "info.feedback.error.email.required": "वैध ईमेल पत्ता आवश्यक आहे", - // "info.feedback.error.message.required": "A comment is required", "info.feedback.error.message.required": "एक टिप्पणी आवश्यक आहे", - // "info.feedback.page-label": "Page", "info.feedback.page-label": "पृष्ठ", - // "info.feedback.page_help": "The page related to your feedback", "info.feedback.page_help": "आपल्या प्रतिक्रिये संबंधित पृष्ठ", - // "info.coar-notify-support.title": "COAR Notify Support", "info.coar-notify-support.title": "COAR Notify समर्थन", - // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "COAR Notify समर्थन", - // "item.alerts.private": "This item is non-discoverable", "item.alerts.private": "हा आयटम शोधण्यायोग्य नाही", - // "item.alerts.withdrawn": "This item has been withdrawn", "item.alerts.withdrawn": "हा आयटम मागे घेतला गेला आहे", - // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "पुनर्स्थितीची विनंती करा", - // "quality-assurance.event.table.person-who-requested": "Requested by", "quality-assurance.event.table.person-who-requested": "विनंती केलेले", - // "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", - // TODO New key - Add a translation - "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + "item.edit.authorizations.heading": "या संपादकासह आपण आयटमच्या धोरणांचे दृश्य आणि बदल करू शकता, तसेच वैयक्तिक आयटम घटकांचे धोरण बदलू शकता: बंडल्स आणि बिटस्ट्रीम्स. थोडक्यात, एक आयटम बंडल्सचा कंटेनर आहे, आणि बंडल्स बिटस्ट्रीम्सचे कंटेनर आहेत. कंटेनरमध्ये सहसा ADD/REMOVE/READ/WRITE धोरणे असतात, तर बिटस्ट्रीम्समध्ये फक्त READ/WRITE धोरणे असतात.", - // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "आयटमचे धोरणे संपादित करा", - // "item.badge.status": "Item status:", - // TODO New key - Add a translation - "item.badge.status": "Item status:", - - // "item.badge.private": "Non-discoverable", "item.badge.private": "शोधण्यायोग्य नाही", - // "item.badge.withdrawn": "Withdrawn", "item.badge.withdrawn": "मागे घेतले", - // "item.bitstreams.upload.bundle": "Bundle", "item.bitstreams.upload.bundle": "बंडल", - // "item.bitstreams.upload.bundle.placeholder": "Select a bundle or input new bundle name", "item.bitstreams.upload.bundle.placeholder": "एक बंडल निवडा किंवा नवीन बंडल नाव प्रविष्ट करा", - // "item.bitstreams.upload.bundle.new": "Create bundle", "item.bitstreams.upload.bundle.new": "बंडल तयार करा", - // "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.", "item.bitstreams.upload.bundles.empty": "या आयटममध्ये बिटस्ट्रीम अपलोड करण्यासाठी कोणतेही बंडल नाहीत.", - // "item.bitstreams.upload.cancel": "Cancel", "item.bitstreams.upload.cancel": "रद्द करा", - // "item.bitstreams.upload.drop-message": "Drop a file to upload", "item.bitstreams.upload.drop-message": "फाइल अपलोड करण्यासाठी ड्रॉप करा", - // "item.bitstreams.upload.item": "Item: ", - // TODO New key - Add a translation - "item.bitstreams.upload.item": "Item: ", + "item.bitstreams.upload.item": "आयटम: ", - // "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.", "item.bitstreams.upload.notifications.bundle.created.content": "नवीन बंडल यशस्वीरित्या तयार केले.", - // "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle", "item.bitstreams.upload.notifications.bundle.created.title": "बंडल तयार केले", - // "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.", "item.bitstreams.upload.notifications.upload.failed": "अपलोड अयशस्वी. कृपया सामग्री सत्यापित करा आणि पुन्हा प्रयत्न करा.", - // "item.bitstreams.upload.title": "Upload bitstream", "item.bitstreams.upload.title": "बिटस्ट्रीम अपलोड करा", - // "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload", "item.edit.bitstreams.bundle.edit.buttons.upload": "अपलोड करा", - // "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.", "item.edit.bitstreams.bundle.displaying": "सध्या {{ amount }} बिटस्ट्रीम्स {{ total }} पैकी प्रदर्शित करत आहे.", - // "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})", "item.edit.bitstreams.bundle.load.all": "सर्व लोड करा ({{ total }})", - // "item.edit.bitstreams.bundle.load.more": "Load more", "item.edit.bitstreams.bundle.load.more": "अधिक लोड करा", - // "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", - // TODO New key - Add a translation - "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + "item.edit.bitstreams.bundle.name": "बंडल: {{ name }}", - // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle", "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} बंडलमधील बिटस्ट्रीम्स", - // "item.edit.bitstreams.bundle.tooltip": "You can move a bitstream to a different page by dropping it on the page number.", "item.edit.bitstreams.bundle.tooltip": "आपण बिटस्ट्रीमला पृष्ठ क्रमांकावर ड्रॉप करून वेगळ्या पृष्ठावर हलवू शकता.", - // "item.edit.bitstreams.discard-button": "Discard", "item.edit.bitstreams.discard-button": "काढून टाका", - // "item.edit.bitstreams.edit.buttons.download": "Download", "item.edit.bitstreams.edit.buttons.download": "डाउनलोड करा", - // "item.edit.bitstreams.edit.buttons.drag": "Drag", "item.edit.bitstreams.edit.buttons.drag": "ओढा", - // "item.edit.bitstreams.edit.buttons.edit": "Edit", "item.edit.bitstreams.edit.buttons.edit": "संपादित करा", - // "item.edit.bitstreams.edit.buttons.remove": "Remove", "item.edit.bitstreams.edit.buttons.remove": "काढा", - // "item.edit.bitstreams.edit.buttons.undo": "Undo changes", "item.edit.bitstreams.edit.buttons.undo": "बदल पूर्ववत करा", - // "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} was returned to position {{ toIndex }} and is no longer selected.", "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} परत {{ toIndex }} स्थितीत आणले गेले आहे आणि आता निवडलेले नाही.", - // "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} is no longer selected.", "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} आता निवडलेले नाही.", - // "item.edit.bitstreams.edit.live.loading": "Waiting for move to complete.", "item.edit.bitstreams.edit.live.loading": "हलविण्याची प्रक्रिया पूर्ण होण्याची प्रतीक्षा करत आहे.", - // "item.edit.bitstreams.edit.live.select": "{{ bitstream }} is selected.", "item.edit.bitstreams.edit.live.select": "{{ bitstream }} निवडले गेले आहे.", - // "item.edit.bitstreams.edit.live.move": "{{ bitstream }} is now in position {{ toIndex }}.", "item.edit.bitstreams.edit.live.move": "{{ bitstream }} आता {{ toIndex }} स्थितीत आहे.", - // "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.", "item.edit.bitstreams.empty": "या आयटममध्ये कोणतेही बिटस्ट्रीम नाहीत. एक तयार करण्यासाठी अपलोड बटणावर क्लिक करा.", - // "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", - // TODO New key - Add a translation - "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.", + "item.edit.bitstreams.info-alert": "बिटस्ट्रीम त्यांच्या बंडलमध्ये पुन्हा क्रमित केले जाऊ शकतात. ड्रॅग हँडल धरून आणि माउस हलवून. पर्यायाने, बिटस्ट्रीम कीबोर्ड वापरून हलविले जाऊ शकतात. बिटस्ट्रीमचे ड्रॅग हँडल फोकसमध्ये असताना एंटर दाबून बिटस्ट्रीम निवडा. बिटस्ट्रीम वर किंवा खाली हलविण्यासाठी बाण की वापरा. बिटस्ट्रीमची वर्तमान स्थिती पुष्टी करण्यासाठी पुन्हा एंटर दाबा.", - // "item.edit.bitstreams.headers.actions": "Actions", "item.edit.bitstreams.headers.actions": "क्रिया", - // "item.edit.bitstreams.headers.bundle": "Bundle", "item.edit.bitstreams.headers.bundle": "बंडल", - // "item.edit.bitstreams.headers.description": "Description", "item.edit.bitstreams.headers.description": "वर्णन", - // "item.edit.bitstreams.headers.format": "Format", "item.edit.bitstreams.headers.format": "फॉरमॅट", - // "item.edit.bitstreams.headers.name": "Name", "item.edit.bitstreams.headers.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": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", - // "item.edit.bitstreams.notifications.discarded.title": "Changes discarded", "item.edit.bitstreams.notifications.discarded.title": "बदल रद्द केले", - // "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams", "item.edit.bitstreams.notifications.move.failed.title": "बिटस्ट्रीम हलविण्यात त्रुटी", - // "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": "या आयटमच्या बिटस्ट्रीम आणि बंडलमध्ये आपले हलविण्याचे बदल जतन केले गेले आहेत.", - // "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved", "item.edit.bitstreams.notifications.move.saved.title": "हलविण्याचे बदल जतन केले", - // "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": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", - // "item.edit.bitstreams.notifications.outdated.title": "Changes outdated", "item.edit.bitstreams.notifications.outdated.title": "बदल कालबाह्य झाले", - // "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream", "item.edit.bitstreams.notifications.remove.failed.title": "बिटस्ट्रीम हटविण्यात त्रुटी", - // "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": "या आयटमच्या बिटस्ट्रीम हटविण्याचे बदल जतन केले गेले आहेत.", - // "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved", "item.edit.bitstreams.notifications.remove.saved.title": "हटविण्याचे बदल जतन केले", - // "item.edit.bitstreams.reinstate-button": "Undo", "item.edit.bitstreams.reinstate-button": "पूर्ववत करा", - // "item.edit.bitstreams.save-button": "Save", "item.edit.bitstreams.save-button": "जतन करा", - // "item.edit.bitstreams.upload-button": "Upload", "item.edit.bitstreams.upload-button": "अपलोड करा", - // "item.edit.bitstreams.load-more.link": "Load more", "item.edit.bitstreams.load-more.link": "अधिक लोड करा", - // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "रद्द करा", - // "item.edit.delete.confirm": "Delete", "item.edit.delete.confirm": "हटवा", - // "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", - // TODO New key - Add a translation - "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + "item.edit.delete.description": "आपण खात्री आहात की हा आयटम पूर्णपणे हटविला जावा? सावधानता: सध्या, कोणतेही टॉम्बस्टोन शिल्लक राहणार नाही.", - // "item.edit.delete.error": "An error occurred while deleting the item", "item.edit.delete.error": "आयटम हटविताना त्रुटी आली", - // "item.edit.delete.header": "Delete item: {{ id }}", - // TODO New key - Add a translation - "item.edit.delete.header": "Delete item: {{ id }}", + "item.edit.delete.header": "आयटम हटवा: {{ id }}", - // "item.edit.delete.success": "The item has been deleted", "item.edit.delete.success": "आयटम हटविला गेला आहे", - // "item.edit.head": "Edit Item", "item.edit.head": "आयटम संपादित करा", - // "item.edit.breadcrumbs": "Edit Item", "item.edit.breadcrumbs": "आयटम संपादित करा", - // "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab", "item.edit.tabs.disabled.tooltip": "आपल्याला या टॅबमध्ये प्रवेश करण्याची परवानगी नाही", - // "item.edit.tabs.mapper.head": "Collection Mapper", "item.edit.tabs.mapper.head": "संग्रह मॅपर", - // "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper", "item.edit.tabs.item-mapper.title": "आयटम संपादन - संग्रह मॅपर", - // "item.edit.identifiers.doi.status.UNKNOWN": "Unknown", "item.edit.identifiers.doi.status.UNKNOWN": "अज्ञात", - // "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "Queued for registration", "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "नोंदणीसाठी रांगेत", - // "item.edit.identifiers.doi.status.TO_BE_RESERVED": "Queued for reservation", "item.edit.identifiers.doi.status.TO_BE_RESERVED": "आरक्षणासाठी रांगेत", - // "item.edit.identifiers.doi.status.IS_REGISTERED": "Registered", "item.edit.identifiers.doi.status.IS_REGISTERED": "नोंदणीकृत", - // "item.edit.identifiers.doi.status.IS_RESERVED": "Reserved", "item.edit.identifiers.doi.status.IS_RESERVED": "आरक्षित", - // "item.edit.identifiers.doi.status.UPDATE_RESERVED": "Reserved (update queued)", "item.edit.identifiers.doi.status.UPDATE_RESERVED": "आरक्षित (अपडेट रांगेत)", - // "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Registered (update queued)", "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "नोंदणीकृत (अपडेट रांगेत)", - // "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "Queued for update and registration", "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "अपडेट आणि नोंदणीसाठी रांगेत", - // "item.edit.identifiers.doi.status.TO_BE_DELETED": "Queued for deletion", "item.edit.identifiers.doi.status.TO_BE_DELETED": "हटविण्यासाठी रांगेत", - // "item.edit.identifiers.doi.status.DELETED": "Deleted", "item.edit.identifiers.doi.status.DELETED": "हटविले", - // "item.edit.identifiers.doi.status.PENDING": "Pending (not registered)", "item.edit.identifiers.doi.status.PENDING": "प्रलंबित (नोंदणीकृत नाही)", - // "item.edit.identifiers.doi.status.MINTED": "Minted (not registered)", "item.edit.identifiers.doi.status.MINTED": "मिंटेड (नोंदणीकृत नाही)", - // "item.edit.tabs.status.buttons.register-doi.label": "Register a new or pending DOI", "item.edit.tabs.status.buttons.register-doi.label": "नवीन किंवा प्रलंबित DOI नोंदणी करा", - // "item.edit.tabs.status.buttons.register-doi.button": "Register DOI...", "item.edit.tabs.status.buttons.register-doi.button": "DOI नोंदणी करा...", - // "item.edit.register-doi.header": "Register a new or pending DOI", "item.edit.register-doi.header": "नवीन किंवा प्रलंबित DOI नोंदणी करा", - // "item.edit.register-doi.description": "Review any pending identifiers and item metadata below and click Confirm to proceed with DOI registration, or Cancel to back out", "item.edit.register-doi.description": "खाली कोणतेही प्रलंबित ओळखपत्रे आणि आयटम मेटाडेटा पुनरावलोकन करा आणि DOI नोंदणीसाठी पुढे जाण्यासाठी पुष्टी करा क्लिक करा, किंवा मागे जाण्यासाठी रद्द करा", - // "item.edit.register-doi.confirm": "Confirm", "item.edit.register-doi.confirm": "पुष्टी करा", - // "item.edit.register-doi.cancel": "Cancel", "item.edit.register-doi.cancel": "रद्द करा", - // "item.edit.register-doi.success": "DOI queued for registration successfully.", "item.edit.register-doi.success": "DOI नोंदणीसाठी यशस्वीरित्या रांगेत लावले.", - // "item.edit.register-doi.error": "Error registering DOI", "item.edit.register-doi.error": "DOI नोंदणी करताना त्रुटी", - // "item.edit.register-doi.to-update": "The following DOI has already been minted and will be queued for registration online", "item.edit.register-doi.to-update": "खालील DOI आधीच मिंटेड आहे आणि ऑनलाइन नोंदणीसाठी रांगेत लावले जाईल", - // "item.edit.item-mapper.buttons.add": "Map item to selected collections", "item.edit.item-mapper.buttons.add": "निवडलेल्या संग्रहांमध्ये आयटम मॅप करा", - // "item.edit.item-mapper.buttons.remove": "Remove item's mapping for selected collections", "item.edit.item-mapper.buttons.remove": "निवडलेल्या संग्रहांसाठी आयटमचे मॅपिंग काढा", - // "item.edit.item-mapper.cancel": "Cancel", "item.edit.item-mapper.cancel": "रद्द करा", - // "item.edit.item-mapper.description": "This is the item mapper tool that allows administrators to map this item to other collections. You can search for collections and map them, or browse the list of collections the item is currently mapped to.", "item.edit.item-mapper.description": "हे आयटम मॅपर साधन आहे जे प्रशासकांना या आयटमला इतर संग्रहांमध्ये मॅप करण्याची परवानगी देते. आपण संग्रह शोधू शकता आणि त्यांना मॅप करू शकता, किंवा आयटम सध्या मॅप केलेल्या संग्रहांची यादी ब्राउझ करू शकता.", - // "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections", "item.edit.item-mapper.head": "आयटम मॅपर - आयटम संग्रहांमध्ये मॅप करा", - // "item.edit.item-mapper.item": "Item: \"{{name}}\"", - // TODO New key - Add a translation - "item.edit.item-mapper.item": "Item: \"{{name}}\"", + "item.edit.item-mapper.item": "आयटम: \"{{name}}\"", - // "item.edit.item-mapper.no-search": "Please enter a query to search", "item.edit.item-mapper.no-search": "शोधण्यासाठी क्वेरी प्रविष्ट करा", - // "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": "{{amount}} संग्रहांसाठी आयटम मॅपिंगमध्ये त्रुटी आल्या.", - // "item.edit.item-mapper.notifications.add.error.head": "Mapping errors", "item.edit.item-mapper.notifications.add.error.head": "मॅपिंग त्रुटी", - // "item.edit.item-mapper.notifications.add.success.content": "Successfully mapped item to {{amount}} collections.", "item.edit.item-mapper.notifications.add.success.content": "{{amount}} संग्रहांमध्ये आयटम यशस्वीरित्या मॅप केले.", - // "item.edit.item-mapper.notifications.add.success.head": "Mapping completed", "item.edit.item-mapper.notifications.add.success.head": "मॅपिंग पूर्ण झाले", - // "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.error.content": "{{amount}} संग्रहांसाठी मॅपिंग काढताना त्रुटी आल्या.", - // "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors", "item.edit.item-mapper.notifications.remove.error.head": "मॅपिंग काढण्याच्या त्रुटी", - // "item.edit.item-mapper.notifications.remove.success.content": "Successfully removed mapping of item to {{amount}} collections.", "item.edit.item-mapper.notifications.remove.success.content": "{{amount}} संग्रहांमधून आयटमचे मॅपिंग यशस्वीरित्या काढले.", - // "item.edit.item-mapper.notifications.remove.success.head": "Removal of mapping completed", "item.edit.item-mapper.notifications.remove.success.head": "मॅपिंग काढणे पूर्ण झाले", - // "item.edit.item-mapper.search-form.placeholder": "Search collections...", "item.edit.item-mapper.search-form.placeholder": "संग्रह शोधा...", - // "item.edit.item-mapper.tabs.browse": "Browse mapped collections", "item.edit.item-mapper.tabs.browse": "मॅप केलेले संग्रह ब्राउझ करा", - // "item.edit.item-mapper.tabs.map": "Map new collections", "item.edit.item-mapper.tabs.map": "नवीन संग्रह मॅप करा", - // "item.edit.metadata.add-button": "Add", "item.edit.metadata.add-button": "जोडा", - // "item.edit.metadata.discard-button": "Discard", "item.edit.metadata.discard-button": "रद्द करा", - // "item.edit.metadata.edit.language": "Edit language", "item.edit.metadata.edit.language": "भाषा संपादित करा", - // "item.edit.metadata.edit.value": "Edit value", "item.edit.metadata.edit.value": "मूल्य संपादित करा", - // "item.edit.metadata.edit.authority.key": "Edit authority key", "item.edit.metadata.edit.authority.key": "प्राधिकरण की संपादित करा", - // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", "item.edit.metadata.edit.buttons.enable-free-text-editing": "फ्री-टेक्स्ट संपादन सक्षम करा", - // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", "item.edit.metadata.edit.buttons.disable-free-text-editing": "फ्री-टेक्स्ट संपादन अक्षम करा", - // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "पुष्टी करा", - // "item.edit.metadata.edit.buttons.drag": "Drag to reorder", "item.edit.metadata.edit.buttons.drag": "पुन्हा क्रमित करण्यासाठी ड्रॅग करा", - // "item.edit.metadata.edit.buttons.edit": "Edit", "item.edit.metadata.edit.buttons.edit": "संपादित करा", - // "item.edit.metadata.edit.buttons.remove": "Remove", "item.edit.metadata.edit.buttons.remove": "काढा", - // "item.edit.metadata.edit.buttons.undo": "Undo changes", "item.edit.metadata.edit.buttons.undo": "बदल पूर्ववत करा", - // "item.edit.metadata.edit.buttons.unedit": "Stop editing", "item.edit.metadata.edit.buttons.unedit": "संपादन थांबवा", - // "item.edit.metadata.edit.buttons.virtual": "This is a virtual metadata value, i.e. a value inherited from a related entity. It can’t be modified directly. Add or remove the corresponding relationship in the \"Relationships\" tab", "item.edit.metadata.edit.buttons.virtual": "हे एक आभासी मेटाडेटा मूल्य आहे, म्हणजे संबंधित घटकाकडून वारसा मिळालेल्या मूल्य. ते थेट बदलले जाऊ शकत नाही. \"संबंध\" टॅबमध्ये संबंधित संबंध जोडा किंवा काढा", - // "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.", "item.edit.metadata.empty": "आयटम सध्या कोणतेही मेटाडेटा समाविष्ट करत नाही. मेटाडेटा मूल्य जोडण्यासाठी जोडा क्लिक करा.", - // "item.edit.metadata.headers.edit": "Edit", "item.edit.metadata.headers.edit": "संपादित करा", - // "item.edit.metadata.headers.field": "Field", "item.edit.metadata.headers.field": "फील्ड", - // "item.edit.metadata.headers.language": "Lang", "item.edit.metadata.headers.language": "भाषा", - // "item.edit.metadata.headers.value": "Value", "item.edit.metadata.headers.value": "मूल्य", - // "item.edit.metadata.metadatafield": "Edit field", "item.edit.metadata.metadatafield": "फील्ड संपादित करा", - // "item.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "item.edit.metadata.metadatafield.error": "मेटाडेटा फील्ड सत्यापित करताना त्रुटी आली", - // "item.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "item.edit.metadata.metadatafield.invalid": "कृपया वैध मेटाडेटा फील्ड निवडा", - // "item.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.metadata.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", - // "item.edit.metadata.notifications.discarded.title": "Changes discarded", "item.edit.metadata.notifications.discarded.title": "बदल रद्द केले", - // "item.edit.metadata.notifications.error.title": "An error occurred", "item.edit.metadata.notifications.error.title": "त्रुटी आली", - // "item.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "item.edit.metadata.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", - // "item.edit.metadata.notifications.invalid.title": "Metadata invalid", "item.edit.metadata.notifications.invalid.title": "मेटाडेटा अवैध", - // "item.edit.metadata.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.metadata.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", - // "item.edit.metadata.notifications.outdated.title": "Changes outdated", "item.edit.metadata.notifications.outdated.title": "बदल कालबाह्य झाले", - // "item.edit.metadata.notifications.saved.content": "Your changes to this item's metadata were saved.", "item.edit.metadata.notifications.saved.content": "या आयटमच्या मेटाडेटामध्ये आपले बदल जतन केले गेले.", - // "item.edit.metadata.notifications.saved.title": "Metadata saved", "item.edit.metadata.notifications.saved.title": "मेटाडेटा जतन केले", - // "item.edit.metadata.reinstate-button": "Undo", "item.edit.metadata.reinstate-button": "पूर्ववत करा", - // "item.edit.metadata.reset-order-button": "Undo reorder", "item.edit.metadata.reset-order-button": "पुन्हा क्रमित पूर्ववत करा", - // "item.edit.metadata.save-button": "Save", "item.edit.metadata.save-button": "जतन करा", - // "item.edit.metadata.authority.label": "Authority: ", - // TODO New key - Add a translation - "item.edit.metadata.authority.label": "Authority: ", + "item.edit.metadata.authority.label": "प्राधिकरण: ", - // "item.edit.metadata.edit.buttons.open-authority-edition": "Unlock the authority key value for manual editing", "item.edit.metadata.edit.buttons.open-authority-edition": "मॅन्युअल संपादनासाठी प्राधिकरण की मूल्य अनलॉक करा", - // "item.edit.metadata.edit.buttons.close-authority-edition": "Lock the authority key value for manual editing", "item.edit.metadata.edit.buttons.close-authority-edition": "मॅन्युअल संपादनासाठी प्राधिकरण की मूल्य लॉक करा", - // "item.edit.modify.overview.field": "Field", "item.edit.modify.overview.field": "फील्ड", - // "item.edit.modify.overview.language": "Language", "item.edit.modify.overview.language": "भाषा", - // "item.edit.modify.overview.value": "Value", "item.edit.modify.overview.value": "मूल्य", - // "item.edit.move.cancel": "Back", "item.edit.move.cancel": "मागे", - // "item.edit.move.save-button": "Save", "item.edit.move.save-button": "जतन करा", - // "item.edit.move.discard-button": "Discard", "item.edit.move.discard-button": "रद्द करा", - // "item.edit.move.description": "Select the collection you wish to move this item to. To narrow down the list of displayed collections, you can enter a search query in the box.", "item.edit.move.description": "आपण या आयटमला हलवू इच्छित असलेला संग्रह निवडा. प्रदर्शित संग्रहांची यादी कमी करण्यासाठी, आपण बॉक्समध्ये शोध क्वेरी प्रविष्ट करू शकता.", - // "item.edit.move.error": "An error occurred when attempting to move the item", "item.edit.move.error": "आयटम हलविताना त्रुटी आली", - // "item.edit.move.head": "Move item: {{id}}", - // TODO New key - Add a translation - "item.edit.move.head": "Move item: {{id}}", + "item.edit.move.head": "आयटम हलवा: {{id}}", - // "item.edit.move.inheritpolicies.checkbox": "Inherit policies", "item.edit.move.inheritpolicies.checkbox": "धोरणे वारसा मिळवा", - // "item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection", "item.edit.move.inheritpolicies.description": "गंतव्य संग्रहाचे डीफॉल्ट धोरणे वारसा मिळवा", - // "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", - // TODO New key - Add a translation - "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.", + "item.edit.move.inheritpolicies.tooltip": "चेतावणी: सक्षम केल्यास, आयटम आणि आयटमशी संबंधित कोणत्याही फाइल्ससाठी वाचन प्रवेश धोरण गंतव्य संग्रहाचे डीफॉल्ट वाचन प्रवेश धोरणाने बदलले जाईल. हे पूर्ववत केले जाऊ शकत नाही.", - // "item.edit.move.move": "Move", "item.edit.move.move": "हलवा", - // "item.edit.move.processing": "Moving...", "item.edit.move.processing": "हलवित आहे...", - // "item.edit.move.search.placeholder": "Enter a search query to look for collections", "item.edit.move.search.placeholder": "संग्रह शोधण्यासाठी शोध क्वेरी प्रविष्ट करा", - // "item.edit.move.success": "The item has been moved successfully", "item.edit.move.success": "आयटम यशस्वीरित्या हलविला गेला", - // "item.edit.move.title": "Move item", "item.edit.move.title": "आयटम हलवा", - // "item.edit.private.cancel": "Cancel", "item.edit.private.cancel": "रद्द करा", - // "item.edit.private.confirm": "Make it non-discoverable", "item.edit.private.confirm": "नॉन-डिस्कव्हरेबल करा", - // "item.edit.private.description": "Are you sure this item should be made non-discoverable in the archive?", "item.edit.private.description": "आपण खात्री आहात की हा आयटम संग्रहात नॉन-डिस्कव्हरेबल केला जावा?", - // "item.edit.private.error": "An error occurred while making the item non-discoverable", "item.edit.private.error": "आयटम नॉन-डिस्कव्हरेबल करताना त्रुटी आली", - // "item.edit.private.header": "Make item non-discoverable: {{ id }}", - // TODO New key - Add a translation - "item.edit.private.header": "Make item non-discoverable: {{ id }}", + "item.edit.private.header": "आयटम नॉन-डिस्कव्हरेबल करा: {{ id }}", - // "item.edit.private.success": "The item is now non-discoverable", "item.edit.private.success": "आयटम आता नॉन-डिस्कव्हरेबल आहे", - // "item.edit.public.cancel": "Cancel", "item.edit.public.cancel": "रद्द करा", - // "item.edit.public.confirm": "Make it discoverable", "item.edit.public.confirm": "डिस्कव्हरेबल करा", - // "item.edit.public.description": "Are you sure this item should be made discoverable in the archive?", "item.edit.public.description": "आपण खात्री आहात की हा आयटम संग्रहात डिस्कव्हरेबल केला जावा?", - // "item.edit.public.error": "An error occurred while making the item discoverable", "item.edit.public.error": "आयटम डिस्कव्हरेबल करताना त्रुटी आली", - // "item.edit.public.header": "Make item discoverable: {{ id }}", - // TODO New key - Add a translation - "item.edit.public.header": "Make item discoverable: {{ id }}", + "item.edit.public.header": "आयटम डिस्कव्हरेबल करा: {{ id }}", - // "item.edit.public.success": "The item is now discoverable", "item.edit.public.success": "आयटम आता डिस्कव्हरेबल आहे", - // "item.edit.reinstate.cancel": "Cancel", "item.edit.reinstate.cancel": "रद्द करा", - // "item.edit.reinstate.confirm": "Reinstate", "item.edit.reinstate.confirm": "पुनर्स्थापित करा", - // "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?", "item.edit.reinstate.description": "आपण खात्री आहात की हा आयटम संग्रहात पुनर्स्थापित केला जावा?", - // "item.edit.reinstate.error": "An error occurred while reinstating the item", "item.edit.reinstate.error": "आयटम पुनर्स्थापित करताना त्रुटी आली", - // "item.edit.reinstate.header": "Reinstate item: {{ id }}", - // TODO New key - Add a translation - "item.edit.reinstate.header": "Reinstate item: {{ id }}", + "item.edit.reinstate.header": "आयटम पुनर्स्थापित करा: {{ id }}", - // "item.edit.reinstate.success": "The item was reinstated successfully", "item.edit.reinstate.success": "आयटम यशस्वीरित्या पुनर्स्थापित केला गेला", - // "item.edit.relationships.discard-button": "Discard", "item.edit.relationships.discard-button": "रद्द करा", - // "item.edit.relationships.edit.buttons.add": "Add", "item.edit.relationships.edit.buttons.add": "जोडा", - // "item.edit.relationships.edit.buttons.remove": "Remove", "item.edit.relationships.edit.buttons.remove": "काढा", - // "item.edit.relationships.edit.buttons.undo": "Undo changes", "item.edit.relationships.edit.buttons.undo": "बदल पूर्ववत करा", - // "item.edit.relationships.no-relationships": "No relationships", "item.edit.relationships.no-relationships": "कोणतेही संबंध नाहीत", - // "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "item.edit.relationships.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", - // "item.edit.relationships.notifications.discarded.title": "Changes discarded", "item.edit.relationships.notifications.discarded.title": "बदल रद्द केले", - // "item.edit.relationships.notifications.failed.title": "Error editing relationships", "item.edit.relationships.notifications.failed.title": "संबंध संपादित करताना त्रुटी", - // "item.edit.relationships.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.relationships.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", - // "item.edit.relationships.notifications.outdated.title": "Changes outdated", "item.edit.relationships.notifications.outdated.title": "बदल कालबाह्य झाले", - // "item.edit.relationships.notifications.saved.content": "Your changes to this item's relationships were saved.", "item.edit.relationships.notifications.saved.content": "या आयटमच्या संबंधांमध्ये आपले बदल जतन केले गेले.", - // "item.edit.relationships.notifications.saved.title": "Relationships saved", "item.edit.relationships.notifications.saved.title": "संबंध जतन केले", - // "item.edit.relationships.reinstate-button": "Undo", "item.edit.relationships.reinstate-button": "पूर्ववत करा", - // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "जतन करा", - // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", "item.edit.relationships.no-entity-type": "या आयटमसाठी संबंध सक्षम करण्यासाठी 'dspace.entity.type' मेटाडेटा जोडा", - // "item.edit.return": "Back", "item.edit.return": "मागे", - // "item.edit.tabs.bitstreams.head": "Bitstreams", "item.edit.tabs.bitstreams.head": "बिटस्ट्रीम", - // "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams", "item.edit.tabs.bitstreams.title": "आयटम संपादन - बिटस्ट्रीम", - // "item.edit.tabs.curate.head": "Curate", "item.edit.tabs.curate.head": "क्युरेट", - // "item.edit.tabs.curate.title": "Item Edit - Curate", "item.edit.tabs.curate.title": "आयटम संपादन - क्युरेट", - // "item.edit.curate.title": "Curate Item: {{item}}", - // TODO New key - Add a translation - "item.edit.curate.title": "Curate Item: {{item}}", + "item.edit.curate.title": "क्युरेट आयटम: {{item}}", - // "item.edit.tabs.access-control.head": "Access Control", "item.edit.tabs.access-control.head": "प्रवेश नियंत्रण", - // "item.edit.tabs.access-control.title": "Item Edit - Access Control", "item.edit.tabs.access-control.title": "आयटम संपादन - प्रवेश नियंत्रण", - // "item.edit.tabs.metadata.head": "Metadata", "item.edit.tabs.metadata.head": "मेटाडेटा", - // "item.edit.tabs.metadata.title": "Item Edit - Metadata", "item.edit.tabs.metadata.title": "आयटम संपादन - मेटाडेटा", - // "item.edit.tabs.relationships.head": "Relationships", "item.edit.tabs.relationships.head": "संबंध", - // "item.edit.tabs.relationships.title": "Item Edit - Relationships", "item.edit.tabs.relationships.title": "आयटम संपादन - संबंध", - // "item.edit.tabs.status.buttons.authorizations.button": "Authorizations...", "item.edit.tabs.status.buttons.authorizations.button": "प्राधिकरण...", - // "item.edit.tabs.status.buttons.authorizations.label": "Edit item's authorization policies", "item.edit.tabs.status.buttons.authorizations.label": "आयटमचे प्राधिकरण धोरणे संपादित करा", - // "item.edit.tabs.status.buttons.delete.button": "Permanently delete", "item.edit.tabs.status.buttons.delete.button": "कायमचे हटवा", - // "item.edit.tabs.status.buttons.delete.label": "Completely expunge item", "item.edit.tabs.status.buttons.delete.label": "आयटम पूर्णपणे हटवा", - // "item.edit.tabs.status.buttons.mappedCollections.button": "Mapped collections", "item.edit.tabs.status.buttons.mappedCollections.button": "मॅप केलेले संग्रह", - // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "मॅप केलेले संग्रह व्यवस्थापित करा", - // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", "item.edit.tabs.status.buttons.move.button": "हा आयटम दुसऱ्या संग्रहात हलवा", - // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", "item.edit.tabs.status.buttons.move.label": "आयटम दुसऱ्या संग्रहात हलवा", - // "item.edit.tabs.status.buttons.private.button": "Make it non-discoverable...", "item.edit.tabs.status.buttons.private.button": "नॉन-डिस्कव्हरेबल करा...", - // "item.edit.tabs.status.buttons.private.label": "Make item non-discoverable", "item.edit.tabs.status.buttons.private.label": "आयटम नॉन-डिस्कव्हरेबल करा", - // "item.edit.tabs.status.buttons.public.button": "Make it discoverable...", "item.edit.tabs.status.buttons.public.button": "डिस्कव्हरेबल करा...", - // "item.edit.tabs.status.buttons.public.label": "Make item discoverable", "item.edit.tabs.status.buttons.public.label": "आयटम डिस्कव्हरेबल करा", - // "item.edit.tabs.status.buttons.reinstate.button": "Reinstate...", "item.edit.tabs.status.buttons.reinstate.button": "पुनर्स्थापित करा...", - // "item.edit.tabs.status.buttons.reinstate.label": "Reinstate item into the repository", "item.edit.tabs.status.buttons.reinstate.label": "आयटम संग्रहात पुनर्स्थापित करा", - // "item.edit.tabs.status.buttons.unauthorized": "You're not authorized to perform this action", "item.edit.tabs.status.buttons.unauthorized": "आपल्याला ही क्रिया करण्याची परवानगी नाही", - // "item.edit.tabs.status.buttons.withdraw.button": "Withdraw this item", "item.edit.tabs.status.buttons.withdraw.button": "हा आयटम मागे घ्या", - // "item.edit.tabs.status.buttons.withdraw.label": "Withdraw item from the repository", "item.edit.tabs.status.buttons.withdraw.label": "आयटम संग्रहातून मागे घ्या", - // "item.edit.tabs.status.description": "Welcome to the item management page. From here you can withdraw, reinstate, move or delete the item. You may also update or add new metadata / bitstreams on the other tabs.", "item.edit.tabs.status.description": "आयटम व्यवस्थापन पृष्ठावर आपले स्वागत आहे. येथून आपण आयटम मागे घेऊ, पुनर्स्थापित करू, हलवू किंवा हटवू शकता. आपण इतर टॅबवर नवीन मेटाडेटा / बिटस्ट्रीम देखील अद्यतनित किंवा जोडू शकता.", - // "item.edit.tabs.status.head": "Status", "item.edit.tabs.status.head": "स्थिती", - // "item.edit.tabs.status.labels.handle": "Handle", "item.edit.tabs.status.labels.handle": "हँडल", - // "item.edit.tabs.status.labels.id": "Item Internal ID", "item.edit.tabs.status.labels.id": "आयटम अंतर्गत आयडी", - // "item.edit.tabs.status.labels.itemPage": "Item Page", "item.edit.tabs.status.labels.itemPage": "आयटम पृष्ठ", - // "item.edit.tabs.status.labels.lastModified": "Last Modified", "item.edit.tabs.status.labels.lastModified": "शेवटचे बदलले", - // "item.edit.tabs.status.title": "Item Edit - Status", "item.edit.tabs.status.title": "आयटम संपादन - स्थिती", - // "item.edit.tabs.versionhistory.head": "Version History", "item.edit.tabs.versionhistory.head": "आवृत्ती इतिहास", - // "item.edit.tabs.versionhistory.title": "Item Edit - Version History", "item.edit.tabs.versionhistory.title": "आयटम संपादन - आवृत्ती इतिहास", - // "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": "या वापरकर्ता इंटरफेसमध्ये आवृत्त्या संपादित करणे किंवा नवीन आवृत्त्या जोडणे अद्याप शक्य नाही.", - // "item.edit.tabs.view.head": "View Item", "item.edit.tabs.view.head": "आयटम पहा", - // "item.edit.tabs.view.title": "Item Edit - View", "item.edit.tabs.view.title": "आयटम संपादन - पहा", - // "item.edit.withdraw.cancel": "Cancel", "item.edit.withdraw.cancel": "रद्द करा", - // "item.edit.withdraw.confirm": "Withdraw", "item.edit.withdraw.confirm": "मागे घ्या", - // "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?", "item.edit.withdraw.description": "आपण खात्री आहात की हा आयटम संग्रहातून मागे घ्यावा?", - // "item.edit.withdraw.error": "An error occurred while withdrawing the item", "item.edit.withdraw.error": "आयटम मागे घेताना त्रुटी आली", - // "item.edit.withdraw.header": "Withdraw item: {{ id }}", - // TODO New key - Add a translation - "item.edit.withdraw.header": "Withdraw item: {{ id }}", + "item.edit.withdraw.header": "आयटम मागे घ्या: {{ id }}", - // "item.edit.withdraw.success": "The item was withdrawn successfully", "item.edit.withdraw.success": "आयटम यशस्वीरित्या मागे घेतला गेला", - // "item.orcid.return": "Back", "item.orcid.return": "मागे", - // "item.listelement.badge": "Item", "item.listelement.badge": "आयटम", - // "item.page.description": "Description", "item.page.description": "वर्णन", - // "item.page.org-unit": "Organizational Unit", - // TODO New key - Add a translation - "item.page.org-unit": "Organizational Unit", - - // "item.page.org-units": "Organizational Units", - // TODO New key - Add a translation - "item.page.org-units": "Organizational Units", - - // "item.page.project": "Research Project", - // TODO New key - Add a translation - "item.page.project": "Research Project", - - // "item.page.projects": "Research Projects", - // TODO New key - Add a translation - "item.page.projects": "Research Projects", - - // "item.page.publication": "Publications", - // TODO New key - Add a translation - "item.page.publication": "Publications", - - // "item.page.publications": "Publications", - // TODO New key - Add a translation - "item.page.publications": "Publications", - - // "item.page.article": "Article", - // TODO New key - Add a translation - "item.page.article": "Article", - - // "item.page.articles": "Articles", - // TODO New key - Add a translation - "item.page.articles": "Articles", - - // "item.page.journal": "Journal", - // TODO New key - Add a translation - "item.page.journal": "Journal", - - // "item.page.journals": "Journals", - // TODO New key - Add a translation - "item.page.journals": "Journals", - - // "item.page.journal-issue": "Journal Issue", - // TODO New key - Add a translation - "item.page.journal-issue": "Journal Issue", - - // "item.page.journal-issues": "Journal Issues", - // TODO New key - Add a translation - "item.page.journal-issues": "Journal Issues", - - // "item.page.journal-volume": "Journal Volume", - // TODO New key - Add a translation - "item.page.journal-volume": "Journal Volume", - - // "item.page.journal-volumes": "Journal Volumes", - // TODO New key - Add a translation - "item.page.journal-volumes": "Journal Volumes", - - // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "जर्नल ISSN", - // "item.page.journal-title": "Journal Title", "item.page.journal-title": "जर्नल शीर्षक", - // "item.page.publisher": "Publisher", "item.page.publisher": "प्रकाशक", - // "item.page.titleprefix": "Item: ", - // TODO New key - Add a translation - "item.page.titleprefix": "Item: ", + "item.page.titleprefix": "आयटम: ", - // "item.page.volume-title": "Volume Title", "item.page.volume-title": "खंड शीर्षक", - // "item.page.dcterms.spatial": "Geospatial point", "item.page.dcterms.spatial": "भौगोलिक बिंदू", - // "item.search.results.head": "Item Search Results", "item.search.results.head": "आयटम शोध परिणाम", - // "item.search.title": "Item Search", "item.search.title": "आयटम शोध", - // "item.truncatable-part.show-more": "Show more", "item.truncatable-part.show-more": "अधिक दाखवा", - // "item.truncatable-part.show-less": "Collapse", "item.truncatable-part.show-less": "संकुचित करा", - // "item.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "item.qa-event-notification.check.notification-info": "आपल्या खात्याशी संबंधित {{num}} प्रलंबित सूचना आहेत", - // "item.qa-event-notification-info.check.button": "View", "item.qa-event-notification-info.check.button": "पहा", - // "mydspace.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account", "mydspace.qa-event-notification.check.notification-info": "आपल्या खात्याशी संबंधित {{num}} प्रलंबित सूचना आहेत", - // "mydspace.qa-event-notification-info.check.button": "View", "mydspace.qa-event-notification-info.check.button": "पहा", - // "workflow-item.search.result.delete-supervision.modal.header": "Delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.header": "पर्यवेक्षण आदेश हटवा", - // "workflow-item.search.result.delete-supervision.modal.info": "Are you sure you want to delete Supervision Order", "workflow-item.search.result.delete-supervision.modal.info": "आपण खात्री आहात की पर्यवेक्षण आदेश हटवू इच्छिता", - // "workflow-item.search.result.delete-supervision.modal.cancel": "Cancel", "workflow-item.search.result.delete-supervision.modal.cancel": "रद्द करा", - // "workflow-item.search.result.delete-supervision.modal.confirm": "Delete", "workflow-item.search.result.delete-supervision.modal.confirm": "हटवा", - // "workflow-item.search.result.notification.deleted.success": "Successfully deleted supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.success": "पर्यवेक्षण आदेश \"{{name}}\" यशस्वीरित्या हटविला", - // "workflow-item.search.result.notification.deleted.failure": "Failed to delete supervision order \"{{name}}\"", "workflow-item.search.result.notification.deleted.failure": "पर्यवेक्षण आदेश \"{{name}}\" हटविण्यात अयशस्वी", - // "workflow-item.search.result.list.element.supervised-by": "Supervised by:", - // TODO New key - Add a translation - "workflow-item.search.result.list.element.supervised-by": "Supervised by:", + "workflow-item.search.result.list.element.supervised-by": "पर्यवेक्षण केलेले:", - // "workflow-item.search.result.list.element.supervised.remove-tooltip": "Remove supervision group", "workflow-item.search.result.list.element.supervised.remove-tooltip": "पर्यवेक्षण गट काढा", - // "confidence.indicator.help-text.accepted": "This authority value has been confirmed as accurate by an interactive user", "confidence.indicator.help-text.accepted": "हे प्राधिकरण मूल्य परस्पर वापरकर्त्याद्वारे अचूक म्हणून पुष्टी केले गेले आहे", - // "confidence.indicator.help-text.uncertain": "Value is singular and valid but has not been seen and accepted by a human so it is still uncertain", "confidence.indicator.help-text.uncertain": "मूल्य एकवचनी आणि वैध आहे परंतु मानवीने पाहिले आणि स्वीकारले नाही त्यामुळे ते अद्याप अनिश्चित आहे", - // "confidence.indicator.help-text.ambiguous": "There are multiple matching authority values of equal validity", "confidence.indicator.help-text.ambiguous": "समान वैधतेच्या एकाधिक जुळणारे प्राधिकरण मूल्ये आहेत", - // "confidence.indicator.help-text.notfound": "There are no matching answers in the authority", "confidence.indicator.help-text.notfound": "प्राधिकरणात कोणतेही जुळणारे उत्तर नाही", - // "confidence.indicator.help-text.failed": "The authority encountered an internal failure", "confidence.indicator.help-text.failed": "प्राधिकरणाने अंतर्गत अपयश अनुभवले", - // "confidence.indicator.help-text.rejected": "The authority recommends this submission be rejected", "confidence.indicator.help-text.rejected": "प्राधिकरणाने या सबमिशनला नाकारण्याची शिफारस केली आहे", - // "confidence.indicator.help-text.novalue": "No reasonable confidence value was returned from the authority", "confidence.indicator.help-text.novalue": "प्राधिकरणाकडून कोणतेही वाजवी आत्मविश्वास मूल्य परत आले नाही", - // "confidence.indicator.help-text.unset": "Confidence was never recorded for this value", "confidence.indicator.help-text.unset": "या मूल्यासाठी आत्मविश्वास कधीही नोंदविला गेला नाही", - // "confidence.indicator.help-text.unknown": "Unknown confidence value", "confidence.indicator.help-text.unknown": "अज्ञात आत्मविश्वास मूल्य", - // "item.page.abstract": "Abstract", "item.page.abstract": "सारांश", - // "item.page.author": "Author", "item.page.author": "लेखक", - // "item.page.authors": "Authors", - // TODO New key - Add a translation - "item.page.authors": "Authors", - - // "item.page.citation": "Citation", "item.page.citation": "उल्लेख", - // "item.page.collections": "Collections", "item.page.collections": "संग्रह", - // "item.page.collections.loading": "Loading...", "item.page.collections.loading": "लोड करत आहे...", - // "item.page.collections.load-more": "Load more", "item.page.collections.load-more": "अधिक लोड करा", - // "item.page.date": "Date", "item.page.date": "तारीख", - // "item.page.edit": "Edit this item", "item.page.edit": "हा आयटम संपादित करा", - // "item.page.files": "Files", "item.page.files": "फाइल्स", - // "item.page.filesection.description": "Description:", - // TODO New key - Add a translation - "item.page.filesection.description": "Description:", + "item.page.filesection.description": "वर्णन:", - // "item.page.filesection.download": "Download", "item.page.filesection.download": "डाउनलोड करा", - // "item.page.filesection.format": "Format:", - // TODO New key - Add a translation - "item.page.filesection.format": "Format:", + "item.page.filesection.format": "फॉरमॅट:", - // "item.page.filesection.name": "Name:", - // TODO New key - Add a translation - "item.page.filesection.name": "Name:", + "item.page.filesection.name": "नाव:", - // "item.page.filesection.size": "Size:", - // TODO New key - Add a translation - "item.page.filesection.size": "Size:", + "item.page.filesection.size": "आकार:", - // "item.page.journal.search.title": "Articles in this journal", "item.page.journal.search.title": "या जर्नलमधील लेख", - // "item.page.link.full": "Full item page", "item.page.link.full": "पूर्ण आयटम पृष्ठ", - // "item.page.link.simple": "Simple item page", "item.page.link.simple": "साधे आयटम पृष्ठ", - // "item.page.options": "Options", "item.page.options": "पर्याय", - // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", - // "item.page.orcid.tooltip": "Open ORCID setting page", "item.page.orcid.tooltip": "ORCID सेटिंग पृष्ठ उघडा", - // "item.page.person.search.title": "Articles by this author", "item.page.person.search.title": "या लेखकाचे लेख", - // "item.page.related-items.view-more": "Show {{ amount }} more", "item.page.related-items.view-more": "{{ amount }} अधिक दाखवा", - // "item.page.related-items.view-less": "Hide last {{ amount }}", "item.page.related-items.view-less": "शेवटचे {{ amount }} लपवा", - // "item.page.relationships.isAuthorOfPublication": "Publications", "item.page.relationships.isAuthorOfPublication": "प्रकाशने", - // "item.page.relationships.isJournalOfPublication": "Publications", "item.page.relationships.isJournalOfPublication": "प्रकाशने", - // "item.page.relationships.isOrgUnitOfPerson": "Authors", "item.page.relationships.isOrgUnitOfPerson": "लेखक", - // "item.page.relationships.isOrgUnitOfProject": "Research Projects", "item.page.relationships.isOrgUnitOfProject": "संशोधन प्रकल्प", - // "item.page.subject": "Keywords", "item.page.subject": "कीवर्ड", - // "item.page.uri": "URI", "item.page.uri": "URI", - // "item.page.bitstreams.view-more": "Show more", "item.page.bitstreams.view-more": "अधिक दाखवा", - // "item.page.bitstreams.collapse": "Collapse", "item.page.bitstreams.collapse": "संकुचित करा", - // "item.page.bitstreams.primary": "Primary", "item.page.bitstreams.primary": "प्राथमिक", - // "item.page.filesection.original.bundle": "Original bundle", "item.page.filesection.original.bundle": "मूळ बंडल", - // "item.page.filesection.license.bundle": "License bundle", "item.page.filesection.license.bundle": "परवाना बंडल", - // "item.page.return": "Back", "item.page.return": "मागे", - // "item.page.version.create": "Create new version", "item.page.version.create": "नवीन आवृत्ती तयार करा", - // "item.page.withdrawn": "Request a withdrawal for this item", "item.page.withdrawn": "या आयटमसाठी मागे घेण्याची विनंती करा", - // "item.page.reinstate": "Request reinstatement", "item.page.reinstate": "पुनर्स्थापनेची विनंती करा", - // "item.page.version.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.page.version.hasDraft": "नवीन आवृत्ती तयार केली जाऊ शकत नाही कारण आवृत्ती इतिहासात एक प्रगतीशील सबमिशन आहे", - // "item.page.claim.button": "Claim", "item.page.claim.button": "दावा करा", - // "item.page.claim.tooltip": "Claim this item as profile", "item.page.claim.tooltip": "हा आयटम प्रोफाइल म्हणून दावा करा", - // "item.page.image.alt.ROR": "ROR logo", "item.page.image.alt.ROR": "ROR लोगो", - // "item.preview.dc.identifier.uri": "Identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier.uri": "Identifier:", + "item.preview.dc.identifier.uri": "ओळखकर्ता:", - // "item.preview.dc.contributor.author": "Authors:", - // TODO New key - Add a translation - "item.preview.dc.contributor.author": "Authors:", + "item.preview.dc.contributor.author": "लेखक:", - // "item.preview.dc.date.issued": "Published date:", - // TODO New key - Add a translation - "item.preview.dc.date.issued": "Published date:", + "item.preview.dc.date.issued": "प्रकाशित तारीख:", - // "item.preview.dc.description": "Description:", - // TODO Source message changed - Revise the translation "item.preview.dc.description": "वर्णन:", - // "item.preview.dc.description.abstract": "Abstract:", - // TODO New key - Add a translation - "item.preview.dc.description.abstract": "Abstract:", + "item.preview.dc.description.abstract": "सारांश:", - // "item.preview.dc.identifier.other": "Other identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier.other": "Other identifier:", + "item.preview.dc.identifier.other": "इतर ओळखकर्ता:", - // "item.preview.dc.language.iso": "Language:", - // TODO New key - Add a translation - "item.preview.dc.language.iso": "Language:", + "item.preview.dc.language.iso": "भाषा:", - // "item.preview.dc.subject": "Subjects:", - // TODO New key - Add a translation - "item.preview.dc.subject": "Subjects:", + "item.preview.dc.subject": "विषय:", - // "item.preview.dc.title": "Title:", - // TODO New key - Add a translation - "item.preview.dc.title": "Title:", + "item.preview.dc.title": "शीर्षक:", - // "item.preview.dc.type": "Type:", - // TODO New key - Add a translation - "item.preview.dc.type": "Type:", + "item.preview.dc.type": "प्रकार:", - // "item.preview.oaire.version": "Version", "item.preview.oaire.version": "आवृत्ती", - // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "मुद्दा", - // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "खंड", - // "item.preview.oaire.citation.title": "Citation container", "item.preview.oaire.citation.title": "उल्लेख कंटेनर", - // "item.preview.oaire.citation.startPage": "Citation start page", "item.preview.oaire.citation.startPage": "उल्लेख प्रारंभ पृष्ठ", - // "item.preview.oaire.citation.endPage": "Citation end page", "item.preview.oaire.citation.endPage": "उल्लेख समाप्त पृष्ठ", - // "item.preview.dc.relation.hasversion": "Has version", "item.preview.dc.relation.hasversion": "आवृत्ती आहे", - // "item.preview.dc.relation.ispartofseries": "Is part of series", "item.preview.dc.relation.ispartofseries": "मालिकेचा भाग आहे", - // "item.preview.dc.rights": "Rights", "item.preview.dc.rights": "हक्क", - // "item.preview.dc.identifier.other": "Other Identifier", - "item.preview.dc.identifier.other": "इतर ओळखकर्ता:", + "item.preview.dc.identifier.other": "इतर ओळखकर्ता", - // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", - // "item.preview.dc.identifier.isbn": "ISBN", "item.preview.dc.identifier.isbn": "ISBN", - // "item.preview.dc.identifier": "Identifier:", - // TODO New key - Add a translation - "item.preview.dc.identifier": "Identifier:", + "item.preview.dc.identifier": "ओळखकर्ता:", - // "item.preview.dc.relation.ispartof": "Journal or Series", "item.preview.dc.relation.ispartof": "जर्नल किंवा मालिका", - // "item.preview.dc.identifier.doi": "DOI", "item.preview.dc.identifier.doi": "DOI", - // "item.preview.dc.publisher": "Publisher:", - // TODO New key - Add a translation - "item.preview.dc.publisher": "Publisher:", + "item.preview.dc.publisher": "प्रकाशक:", - // "item.preview.person.familyName": "Surname:", - // TODO New key - Add a translation - "item.preview.person.familyName": "Surname:", + "item.preview.person.familyName": "आडनाव:", - // "item.preview.person.givenName": "Name:", - // TODO New key - Add a translation - "item.preview.person.givenName": "Name:", + "item.preview.person.givenName": "नाव:", - // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", - // "item.preview.person.affiliation.name": "Affiliations:", - // TODO New key - Add a translation - "item.preview.person.affiliation.name": "Affiliations:", + "item.preview.person.affiliation.name": "संलग्नता:", - // "item.preview.project.funder.name": "Funder:", - // TODO New key - Add a translation - "item.preview.project.funder.name": "Funder:", + "item.preview.project.funder.name": "फंडर:", - // "item.preview.project.funder.identifier": "Funder Identifier:", - // TODO New key - Add a translation - "item.preview.project.funder.identifier": "Funder Identifier:", + "item.preview.project.funder.identifier": "फंडर ओळखकर्ता:", - // "item.preview.project.investigator": "Project Investigator", "item.preview.project.investigator": "प्रकल्प अन्वेषक", - // "item.preview.oaire.awardNumber": "Funding ID:", - // TODO New key - Add a translation - "item.preview.oaire.awardNumber": "Funding ID:", + "item.preview.oaire.awardNumber": "फंडिंग आयडी:", - // "item.preview.dc.title.alternative": "Acronym:", - // TODO New key - Add a translation - "item.preview.dc.title.alternative": "Acronym:", + "item.preview.dc.title.alternative": "अक्रोनिम:", - // "item.preview.dc.coverage.spatial": "Jurisdiction:", - // TODO New key - Add a translation - "item.preview.dc.coverage.spatial": "Jurisdiction:", + "item.preview.dc.coverage.spatial": "क्षेत्राधिकार:", - // "item.preview.oaire.fundingStream": "Funding Stream:", - // TODO New key - Add a translation - "item.preview.oaire.fundingStream": "Funding Stream:", + "item.preview.oaire.fundingStream": "फंडिंग स्ट्रीम:", - // "item.preview.oairecerif.identifier.url": "URL", "item.preview.oairecerif.identifier.url": "URL", - // "item.preview.organization.address.addressCountry": "Country", "item.preview.organization.address.addressCountry": "देश", - // "item.preview.organization.foundingDate": "Founding Date", "item.preview.organization.foundingDate": "स्थापनेची तारीख", - // "item.preview.organization.identifier.crossrefid": "Crossref ID", "item.preview.organization.identifier.crossrefid": "Crossref आयडी", - // "item.preview.organization.identifier.isni": "ISNI", "item.preview.organization.identifier.isni": "ISNI", - // "item.preview.organization.identifier.ror": "ROR ID", "item.preview.organization.identifier.ror": "ROR आयडी", - // "item.preview.organization.legalName": "Legal Name", "item.preview.organization.legalName": "कायदेशीर नाव", - // "item.preview.dspace.entity.type": "Entity Type:", - // TODO New key - Add a translation - "item.preview.dspace.entity.type": "Entity Type:", + "item.preview.dspace.entity.type": "घटक प्रकार:", - // "item.preview.creativework.publisher": "Publisher", "item.preview.creativework.publisher": "प्रकाशक", - // "item.preview.creativeworkseries.issn": "ISSN", "item.preview.creativeworkseries.issn": "ISSN", - // "item.preview.dc.identifier.issn": "ISSN", "item.preview.dc.identifier.issn": "ISSN", - // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", "item.preview.dc.identifier.openalex": "OpenAlex ओळखकर्ता", - // "item.preview.dc.description": "Description", - // TODO Source message changed - Revise the translation - "item.preview.dc.description": "वर्णन:", + "item.preview.dc.description": "वर्णन", - // "item.select.confirm": "Confirm selected", "item.select.confirm": "निवडलेले पुष्टी करा", - // "item.select.empty": "No items to show", "item.select.empty": "दाखविण्यासाठी कोणतेही आयटम नाहीत", - // "item.select.table.selected": "Selected items", "item.select.table.selected": "निवडलेले आयटम", - // "item.select.table.select": "Select item", "item.select.table.select": "आयटम निवडा", - // "item.select.table.deselect": "Deselect item", "item.select.table.deselect": "आयटम निवड रद्द करा", - // "item.select.table.author": "Author", "item.select.table.author": "लेखक", - // "item.select.table.collection": "Collection", "item.select.table.collection": "संग्रह", - // "item.select.table.title": "Title", "item.select.table.title": "शीर्षक", - // "item.version.history.empty": "There are no other versions for this item yet.", "item.version.history.empty": "या आयटमसाठी अद्याप इतर आवृत्त्या नाहीत.", - // "item.version.history.head": "Version History", "item.version.history.head": "आवृत्ती इतिहास", - // "item.version.history.return": "Back", "item.version.history.return": "मागे", - // "item.version.history.selected": "Selected version", "item.version.history.selected": "निवडलेली आवृत्ती", - // "item.version.history.selected.alert": "You are currently viewing version {{version}} of the item.", "item.version.history.selected.alert": "आपण सध्या आयटमची आवृत्ती {{version}} पाहत आहात.", - // "item.version.history.table.version": "Version", "item.version.history.table.version": "आवृत्ती", - // "item.version.history.table.item": "Item", "item.version.history.table.item": "आयटम", - // "item.version.history.table.editor": "Editor", "item.version.history.table.editor": "संपादक", - // "item.version.history.table.date": "Date", "item.version.history.table.date": "तारीख", - // "item.version.history.table.summary": "Summary", "item.version.history.table.summary": "सारांश", - // "item.version.history.table.workspaceItem": "Workspace item", "item.version.history.table.workspaceItem": "वर्कस्पेस आयटम", - // "item.version.history.table.workflowItem": "Workflow item", "item.version.history.table.workflowItem": "वर्कफ्लो आयटम", - // "item.version.history.table.actions": "Action", "item.version.history.table.actions": "क्रिया", - // "item.version.history.table.action.editWorkspaceItem": "Edit workspace item", "item.version.history.table.action.editWorkspaceItem": "वर्कस्पेस आयटम संपादित करा", - // "item.version.history.table.action.editSummary": "Edit summary", "item.version.history.table.action.editSummary": "सारांश संपादित करा", - // "item.version.history.table.action.saveSummary": "Save summary edits", "item.version.history.table.action.saveSummary": "सारांश संपादन जतन करा", - // "item.version.history.table.action.discardSummary": "Discard summary edits", "item.version.history.table.action.discardSummary": "सारांश संपादन रद्द करा", - // "item.version.history.table.action.newVersion": "Create new version from this one", "item.version.history.table.action.newVersion": "या आवृत्तीतून नवीन आवृत्ती तयार करा", - // "item.version.history.table.action.deleteVersion": "Delete version", "item.version.history.table.action.deleteVersion": "आवृत्ती हटवा", - // "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.history.table.action.hasDraft": "नवीन आवृत्ती तयार केली जाऊ शकत नाही कारण आवृत्ती इतिहासात एक प्रगतीशील सबमिशन आहे", - // "item.version.notice": "This is not the latest version of this item. The latest version can be found here.", "item.version.notice": "ही आयटमची नवीनतम आवृत्ती नाही. नवीनतम आवृत्ती येथे आढळू शकते येथे.", - // "item.version.create.modal.header": "New version", "item.version.create.modal.header": "नवीन आवृत्ती", - // "item.qa.withdrawn.modal.header": "Request withdrawal", "item.qa.withdrawn.modal.header": "मागे घेण्याची विनंती", - // "item.qa.reinstate.modal.header": "Request reinstate", "item.qa.reinstate.modal.header": "पुनर्स्थापनेची विनंती", - // "item.qa.reinstate.create.modal.header": "New version", "item.qa.reinstate.create.modal.header": "नवीन आवृत्ती", - // "item.version.create.modal.text": "Create a new version for this item", "item.version.create.modal.text": "या आयटमसाठी नवीन आवृत्ती तयार करा", - // "item.version.create.modal.text.startingFrom": "starting from version {{version}}", "item.version.create.modal.text.startingFrom": "आवृत्ती {{version}} पासून सुरू", - // "item.version.create.modal.button.confirm": "Create", "item.version.create.modal.button.confirm": "तयार करा", - // "item.version.create.modal.button.confirm.tooltip": "Create new version", "item.version.create.modal.button.confirm.tooltip": "नवीन आवृत्ती तयार करा", - // "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "Send request", "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "विनंती पाठवा", - // "qa-withdrown.create.modal.button.confirm": "Withdraw", "qa-withdrown.create.modal.button.confirm": "मागे घ्या", - // "qa-reinstate.create.modal.button.confirm": "Reinstate", "qa-reinstate.create.modal.button.confirm": "पुनर्स्थापित करा", - // "item.version.create.modal.button.cancel": "Cancel", "item.version.create.modal.button.cancel": "रद्द करा", - // "item.qa.withdrawn-reinstate.create.modal.button.cancel": "Cancel", "item.qa.withdrawn-reinstate.create.modal.button.cancel": "रद्द करा", - // "item.version.create.modal.button.cancel.tooltip": "Do not create new version", "item.version.create.modal.button.cancel.tooltip": "नवीन आवृत्ती तयार करू नका", - // "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "Do not send request", "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "विनंती पाठवू नका", - // "item.version.create.modal.form.summary.label": "Summary", "item.version.create.modal.form.summary.label": "सारांश", - // "qa-withdrawn.create.modal.form.summary.label": "You are requesting to withdraw this item", "qa-withdrawn.create.modal.form.summary.label": "आपण हा आयटम मागे घेण्याची विनंती करत आहात", - // "qa-withdrawn.create.modal.form.summary2.label": "Please enter the reason for the withdrawal", "qa-withdrawn.create.modal.form.summary2.label": "कृपया मागे घेण्याचे कारण प्रविष्ट करा", - // "qa-reinstate.create.modal.form.summary.label": "You are requesting to reinstate this item", "qa-reinstate.create.modal.form.summary.label": "आपण हा आयटम पुनर्स्थापित करण्याची विनंती करत आहात", - // "qa-reinstate.create.modal.form.summary2.label": "Please enter the reason for the reinstatment", "qa-reinstate.create.modal.form.summary2.label": "कृपया पुनर्स्थापनेचे कारण प्रविष्ट करा", - // "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version", "item.version.create.modal.form.summary.placeholder": "नवीन आवृत्तीचा सारांश प्रविष्ट करा", - // "qa-withdrown.modal.form.summary.placeholder": "Enter the reason for the withdrawal", "qa-withdrown.modal.form.summary.placeholder": "मागे घेण्याचे कारण प्रविष्ट करा", - // "qa-reinstate.modal.form.summary.placeholder": "Enter the reason for the reinstatement", "qa-reinstate.modal.form.summary.placeholder": "पुनर्स्थापनेचे कारण प्रविष्ट करा", - // "item.version.create.modal.submitted.header": "Creating new version...", "item.version.create.modal.submitted.header": "नवीन आवृत्ती तयार करत आहे...", - // "item.qa.withdrawn.modal.submitted.header": "Sending withdrawn request...", "item.qa.withdrawn.modal.submitted.header": "मागे घेण्याची विनंती पाठवत आहे...", - // "correction-type.manage-relation.action.notification.reinstate": "Reinstate request sent.", "correction-type.manage-relation.action.notification.reinstate": "पुनर्स्थापनेची विनंती पाठवली.", - // "correction-type.manage-relation.action.notification.withdrawn": "Withdraw request sent.", "correction-type.manage-relation.action.notification.withdrawn": "मागे घेण्याची विनंती पाठवली.", - // "item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.", "item.version.create.modal.submitted.text": "नवीन आवृत्ती तयार केली जात आहे. आयटममध्ये बरेच संबंध असल्यास यास काही वेळ लागू शकतो.", - // "item.version.create.notification.success": "New version has been created with version number {{version}}", "item.version.create.notification.success": "आवृत्ती क्रमांक {{version}} सह नवीन आवृत्ती तयार केली गेली आहे", - // "item.version.create.notification.failure": "New version has not been created", "item.version.create.notification.failure": "नवीन आवृत्ती तयार केली गेली नाही", - // "item.version.create.notification.inProgress": "A new version cannot be created because there is an in-progress submission in the version history", "item.version.create.notification.inProgress": "आवृत्ती इतिहासात एक प्रगतीशील सबमिशन असल्यामुळे नवीन आवृत्ती तयार केली जाऊ शकत नाही", - // "item.version.delete.modal.header": "Delete version", "item.version.delete.modal.header": "आवृत्ती हटवा", - // "item.version.delete.modal.text": "Do you want to delete version {{version}}?", "item.version.delete.modal.text": "आपण आवृत्ती {{version}} हटवू इच्छिता?", - // "item.version.delete.modal.button.confirm": "Delete", "item.version.delete.modal.button.confirm": "हटवा", - // "item.version.delete.modal.button.confirm.tooltip": "Delete this version", "item.version.delete.modal.button.confirm.tooltip": "ही आवृत्ती हटवा", - // "item.version.delete.modal.button.cancel": "Cancel", "item.version.delete.modal.button.cancel": "रद्द करा", - // "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version", "item.version.delete.modal.button.cancel.tooltip": "ही आवृत्ती हटवू नका", - // "item.version.delete.notification.success": "Version number {{version}} has been deleted", "item.version.delete.notification.success": "आवृत्ती क्रमांक {{version}} हटवली गेली आहे", - // "item.version.delete.notification.failure": "Version number {{version}} has not been deleted", "item.version.delete.notification.failure": "आवृत्ती क्रमांक {{version}} हटवली गेली नाही", - // "item.version.edit.notification.success": "The summary of version number {{version}} has been changed", "item.version.edit.notification.success": "आवृत्ती क्रमांक {{version}} चा सारांश बदलला गेला आहे", - // "item.version.edit.notification.failure": "The summary of version number {{version}} has not been changed", "item.version.edit.notification.failure": "आवृत्ती क्रमांक {{version}} चा सारांश बदलला गेला नाही", - // "itemtemplate.edit.metadata.add-button": "Add", "itemtemplate.edit.metadata.add-button": "जोडा", - // "itemtemplate.edit.metadata.discard-button": "Discard", "itemtemplate.edit.metadata.discard-button": "रद्द करा", - // "itemtemplate.edit.metadata.edit.language": "Edit language", "itemtemplate.edit.metadata.edit.language": "भाषा संपादित करा", - // "itemtemplate.edit.metadata.edit.value": "Edit value", "itemtemplate.edit.metadata.edit.value": "मूल्य संपादित करा", - // "itemtemplate.edit.metadata.edit.buttons.confirm": "Confirm", "itemtemplate.edit.metadata.edit.buttons.confirm": "पुष्टी करा", - // "itemtemplate.edit.metadata.edit.buttons.drag": "Drag to reorder", "itemtemplate.edit.metadata.edit.buttons.drag": "पुन्हा क्रमित करण्यासाठी ड्रॅग करा", - // "itemtemplate.edit.metadata.edit.buttons.edit": "Edit", "itemtemplate.edit.metadata.edit.buttons.edit": "संपादित करा", - // "itemtemplate.edit.metadata.edit.buttons.remove": "Remove", "itemtemplate.edit.metadata.edit.buttons.remove": "काढा", - // "itemtemplate.edit.metadata.edit.buttons.undo": "Undo changes", "itemtemplate.edit.metadata.edit.buttons.undo": "बदल पूर्ववत करा", - // "itemtemplate.edit.metadata.edit.buttons.unedit": "Stop editing", "itemtemplate.edit.metadata.edit.buttons.unedit": "संपादन थांबवा", - // "itemtemplate.edit.metadata.empty": "The item template currently doesn't contain any metadata. Click Add to start adding a metadata value.", "itemtemplate.edit.metadata.empty": "आयटम टेम्पलेट सध्या कोणतेही मेटाडेटा समाविष्ट करत नाही. मेटाडेटा मूल्य जोडण्यासाठी जोडा क्लिक करा.", - // "itemtemplate.edit.metadata.headers.edit": "Edit", "itemtemplate.edit.metadata.headers.edit": "संपादित करा", - // "itemtemplate.edit.metadata.headers.field": "Field", "itemtemplate.edit.metadata.headers.field": "फील्ड", - // "itemtemplate.edit.metadata.headers.language": "Lang", "itemtemplate.edit.metadata.headers.language": "भाषा", - // "itemtemplate.edit.metadata.headers.value": "Value", "itemtemplate.edit.metadata.headers.value": "मूल्य", - // "itemtemplate.edit.metadata.metadatafield": "Edit field", "itemtemplate.edit.metadata.metadatafield": "फील्ड संपादित करा", - // "itemtemplate.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", "itemtemplate.edit.metadata.metadatafield.error": "मेटाडेटा फील्ड सत्यापित करताना त्रुटी आली", - // "itemtemplate.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field", "itemtemplate.edit.metadata.metadatafield.invalid": "कृपया वैध मेटाडेटा फील्ड निवडा", - // "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", "itemtemplate.edit.metadata.notifications.discarded.content": "आपले बदल रद्द केले गेले. आपले बदल पुन्हा स्थापित करण्यासाठी 'पूर्ववत करा' बटणावर क्लिक करा", - // "itemtemplate.edit.metadata.notifications.discarded.title": "Changes discarded", "itemtemplate.edit.metadata.notifications.discarded.title": "बदल रद्द केले", - // "itemtemplate.edit.metadata.notifications.error.title": "An error occurred", "itemtemplate.edit.metadata.notifications.error.title": "त्रुटी आली", - // "itemtemplate.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", "itemtemplate.edit.metadata.notifications.invalid.content": "आपले बदल जतन केले गेले नाहीत. कृपया सर्व फील्ड वैध आहेत याची खात्री करा.", - // "itemtemplate.edit.metadata.notifications.invalid.title": "Metadata invalid", "itemtemplate.edit.metadata.notifications.invalid.title": "मेटाडेटा अवैध", - // "itemtemplate.edit.metadata.notifications.outdated.content": "The item template you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", "itemtemplate.edit.metadata.notifications.outdated.content": "आपण सध्या काम करत असलेला आयटम टेम्पलेट दुसऱ्या वापरकर्त्याने बदलला आहे. संघर्ष टाळण्यासाठी आपले वर्तमान बदल रद्द केले गेले आहेत", - // "itemtemplate.edit.metadata.notifications.outdated.title": "Changes outdated", "itemtemplate.edit.metadata.notifications.outdated.title": "बदल कालबाह्य झाले", - // "itemtemplate.edit.metadata.notifications.saved.content": "Your changes to this item template's metadata were saved.", "itemtemplate.edit.metadata.notifications.saved.content": "या आयटम टेम्पलेटच्या मेटाडेटामध्ये आपले बदल जतन केले गेले.", - // "itemtemplate.edit.metadata.notifications.saved.title": "Metadata saved", "itemtemplate.edit.metadata.notifications.saved.title": "मेटाडेटा जतन केले", - // "itemtemplate.edit.metadata.reinstate-button": "Undo", "itemtemplate.edit.metadata.reinstate-button": "पूर्ववत करा", - // "itemtemplate.edit.metadata.reset-order-button": "Undo reorder", "itemtemplate.edit.metadata.reset-order-button": "पुन्हा क्रमित पूर्ववत करा", - // "itemtemplate.edit.metadata.save-button": "Save", "itemtemplate.edit.metadata.save-button": "जतन करा", - // "journal.listelement.badge": "Journal", "journal.listelement.badge": "जर्नल", - // "journal.page.description": "Description", "journal.page.description": "वर्णन", - // "journal.page.edit": "Edit this item", "journal.page.edit": "हा आयटम संपादित करा", - // "journal.page.editor": "Editor-in-Chief", "journal.page.editor": "मुख्य संपादक", - // "journal.page.issn": "ISSN", "journal.page.issn": "ISSN", - // "journal.page.publisher": "Publisher", "journal.page.publisher": "प्रकाशक", - // "journal.page.options": "Options", "journal.page.options": "पर्याय", - // "journal.page.titleprefix": "Journal: ", - // TODO New key - Add a translation - "journal.page.titleprefix": "Journal: ", + "journal.page.titleprefix": "जर्नल: ", - // "journal.search.results.head": "Journal Search Results", "journal.search.results.head": "जर्नल शोध परिणाम", - // "journal-relationships.search.results.head": "Journal Search Results", "journal-relationships.search.results.head": "जर्नल शोध परिणाम", - // "journal.search.title": "Journal Search", "journal.search.title": "जर्नल शोध", - // "journalissue.listelement.badge": "Journal Issue", "journalissue.listelement.badge": "जर्नल अंक", - // "journalissue.page.description": "Description", "journalissue.page.description": "वर्णन", - // "journalissue.page.edit": "Edit this item", "journalissue.page.edit": "हा आयटम संपादित करा", - // "journalissue.page.issuedate": "Issue Date", "journalissue.page.issuedate": "अंक तारीख", - // "journalissue.page.journal-issn": "Journal ISSN", "journalissue.page.journal-issn": "जर्नल ISSN", - // "journalissue.page.journal-title": "Journal Title", "journalissue.page.journal-title": "जर्नल शीर्षक", - // "journalissue.page.keyword": "Keywords", "journalissue.page.keyword": "कीवर्ड", - // "journalissue.page.number": "Number", "journalissue.page.number": "क्रमांक", - // "journalissue.page.options": "Options", "journalissue.page.options": "पर्याय", - // "journalissue.page.titleprefix": "Journal Issue: ", - // TODO New key - Add a translation - "journalissue.page.titleprefix": "Journal Issue: ", + "journalissue.page.titleprefix": "जर्नल अंक: ", - // "journalissue.search.results.head": "Journal Issue Search Results", "journalissue.search.results.head": "जर्नल अंक शोध परिणाम", - // "journalvolume.listelement.badge": "Journal Volume", "journalvolume.listelement.badge": "जर्नल खंड", - // "journalvolume.page.description": "Description", "journalvolume.page.description": "वर्णन", - // "journalvolume.page.edit": "Edit this item", "journalvolume.page.edit": "हा आयटम संपादित करा", - // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "अंक तारीख", - // "journalvolume.page.options": "Options", "journalvolume.page.options": "पर्याय", - // "journalvolume.page.titleprefix": "Journal Volume: ", - // TODO New key - Add a translation - "journalvolume.page.titleprefix": "Journal Volume: ", + "journalvolume.page.titleprefix": "जर्नल खंड: ", - // "journalvolume.page.volume": "Volume", "journalvolume.page.volume": "खंड", - // "journalvolume.search.results.head": "Journal Volume Search Results", "journalvolume.search.results.head": "जर्नल खंड शोध परिणाम", - // "iiifsearchable.listelement.badge": "Document Media", "iiifsearchable.listelement.badge": "दस्तऐवज मीडिया", - // "iiifsearchable.page.titleprefix": "Document: ", - // TODO New key - Add a translation - "iiifsearchable.page.titleprefix": "Document: ", + "iiifsearchable.page.titleprefix": "दस्तऐवज: ", - // "iiifsearchable.page.doi": "Permanent Link: ", - // TODO New key - Add a translation - "iiifsearchable.page.doi": "Permanent Link: ", + "iiifsearchable.page.doi": "स्थायी लिंक: ", - // "iiifsearchable.page.issue": "Issue: ", - // TODO New key - Add a translation - "iiifsearchable.page.issue": "Issue: ", + "iiifsearchable.page.issue": "मुद्दा: ", - // "iiifsearchable.page.description": "Description: ", - // TODO New key - Add a translation - "iiifsearchable.page.description": "Description: ", + "iiifsearchable.page.description": "वर्णन: ", - // "iiifviewer.fullscreen.notice": "Use full screen for better viewing.", "iiifviewer.fullscreen.notice": "चांगल्या पाहण्यासाठी पूर्ण स्क्रीन वापरा.", - // "iiif.listelement.badge": "Image Media", "iiif.listelement.badge": "प्रतिमा मीडिया", - // "iiif.page.titleprefix": "Image: ", - // TODO New key - Add a translation - "iiif.page.titleprefix": "Image: ", + "iiif.page.titleprefix": "प्रतिमा: ", - // "iiif.page.doi": "Permanent Link: ", - // TODO New key - Add a translation - "iiif.page.doi": "Permanent Link: ", + "iiif.page.doi": "स्थायी लिंक: ", - // "iiif.page.issue": "Issue: ", - // TODO New key - Add a translation - "iiif.page.issue": "Issue: ", + "iiif.page.issue": "मुद्दा: ", - // "iiif.page.description": "Description: ", - // TODO New key - Add a translation - "iiif.page.description": "Description: ", + "iiif.page.description": "वर्णन: ", - // "loading.bitstream": "Loading bitstream...", "loading.bitstream": "बिटस्ट्रीम लोड करत आहे...", - // "loading.bitstreams": "Loading bitstreams...", "loading.bitstreams": "बिटस्ट्रीम लोड करत आहे...", - // "loading.browse-by": "Loading items...", "loading.browse-by": "आयटम लोड करत आहे...", - // "loading.browse-by-page": "Loading page...", "loading.browse-by-page": "पृष्ठ लोड करत आहे...", - // "loading.collection": "Loading collection...", "loading.collection": "संग्रह लोड करत आहे...", - // "loading.collections": "Loading collections...", "loading.collections": "संग्रह लोड करत आहे...", - // "loading.content-source": "Loading content source...", "loading.content-source": "सामग्री स्रोत लोड करत आहे...", - // "loading.community": "Loading community...", "loading.community": "समुदाय लोड करत आहे...", - // "loading.default": "Loading...", "loading.default": "लोड करत आहे...", - // "loading.item": "Loading item...", "loading.item": "आयटम लोड करत आहे...", - // "loading.items": "Loading items...", "loading.items": "आयटम लोड करत आहे...", - // "loading.mydspace-results": "Loading items...", "loading.mydspace-results": "आयटम लोड करत आहे...", - // "loading.objects": "Loading...", "loading.objects": "लोड करत आहे...", - // "loading.recent-submissions": "Loading recent submissions...", "loading.recent-submissions": "अलीकडील सबमिशन लोड करत आहे...", - // "loading.search-results": "Loading search results...", "loading.search-results": "शोध परिणाम लोड करत आहे...", - // "loading.sub-collections": "Loading sub-collections...", "loading.sub-collections": "उप-संग्रह लोड करत आहे...", - // "loading.sub-communities": "Loading sub-communities...", "loading.sub-communities": "उप-समुदाय लोड करत आहे...", - // "loading.top-level-communities": "Loading top-level communities...", "loading.top-level-communities": "शीर्ष-स्तरीय समुदाय लोड करत आहे...", - // "login.form.email": "Email address", "login.form.email": "ईमेल पत्ता", - // "login.form.forgot-password": "Have you forgotten your password?", "login.form.forgot-password": "आपला पासवर्ड विसरलात?", - // "login.form.header": "Please log in to DSpace", "login.form.header": "कृपया DSpace मध्ये लॉग इन करा", - // "login.form.new-user": "New user? Click here to register.", "login.form.new-user": "नवीन वापरकर्ता? नोंदणीसाठी येथे क्लिक करा.", - // "login.form.oidc": "Log in with OIDC", "login.form.oidc": "OIDC सह लॉग इन करा", - // "login.form.orcid": "Log in with ORCID", "login.form.orcid": "ORCID सह लॉग इन करा", - // "login.form.password": "Password", "login.form.password": "पासवर्ड", - // "login.form.saml": "Log in with SAML", "login.form.saml": "SAML सह लॉग इन करा", - // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Shibboleth सह लॉग इन करा", - // "login.form.submit": "Log in", "login.form.submit": "लॉग इन करा", - // "login.title": "Login", "login.title": "लॉग इन", - // "login.breadcrumbs": "Login", "login.breadcrumbs": "लॉग इन", - // "logout.form.header": "Log out from DSpace", "logout.form.header": "DSpace मधून लॉग आउट करा", - // "logout.form.submit": "Log out", "logout.form.submit": "लॉग आउट करा", - // "logout.title": "Logout", "logout.title": "लॉग आउट", - // "menu.header.nav.description": "Admin navigation bar", "menu.header.nav.description": "प्रशासन नेव्हिगेशन बार", - // "menu.header.admin": "Management", "menu.header.admin": "व्यवस्थापन", - // "menu.header.image.logo": "Repository logo", "menu.header.image.logo": "संग्रह लोगो", - // "menu.header.admin.description": "Management menu", "menu.header.admin.description": "व्यवस्थापन मेनू", - // "menu.section.access_control": "Access Control", "menu.section.access_control": "प्रवेश नियंत्रण", - // "menu.section.access_control_authorizations": "Authorizations", "menu.section.access_control_authorizations": "प्राधिकरण", - // "menu.section.access_control_bulk": "Bulk Access Management", "menu.section.access_control_bulk": "बल्क प्रवेश व्यवस्थापन", - // "menu.section.access_control_groups": "Groups", "menu.section.access_control_groups": "गट", - // "menu.section.access_control_people": "People", "menu.section.access_control_people": "लोक", - // "menu.section.reports": "Reports", "menu.section.reports": "अहवाल", - // "menu.section.reports.collections": "Filtered Collections", "menu.section.reports.collections": "फिल्टर केलेले संग्रह", - // "menu.section.reports.queries": "Metadata Query", "menu.section.reports.queries": "मेटाडेटा क्वेरी", - // "menu.section.admin_search": "Admin Search", "menu.section.admin_search": "प्रशासन शोध", - // "menu.section.browse_community": "This Community", "menu.section.browse_community": "हा समुदाय", - // "menu.section.browse_community_by_author": "By Author", "menu.section.browse_community_by_author": "लेखकानुसार", - // "menu.section.browse_community_by_issue_date": "By Issue Date", "menu.section.browse_community_by_issue_date": "मुद्द्यानुसार", - // "menu.section.browse_community_by_title": "By Title", "menu.section.browse_community_by_title": "शीर्षकानुसार", - // "menu.section.browse_global": "All of DSpace", "menu.section.browse_global": "संपूर्ण DSpace", - // "menu.section.browse_global_by_author": "By Author", "menu.section.browse_global_by_author": "लेखकानुसार", - // "menu.section.browse_global_by_dateissued": "By Issue Date", "menu.section.browse_global_by_dateissued": "मुद्द्यानुसार", - // "menu.section.browse_global_by_subject": "By Subject", "menu.section.browse_global_by_subject": "विषयानुसार", - // "menu.section.browse_global_by_srsc": "By Subject Category", "menu.section.browse_global_by_srsc": "विषय श्रेणीनुसार", - // "menu.section.browse_global_by_nsi": "By Norwegian Science Index", "menu.section.browse_global_by_nsi": "नॉर्वेजियन सायन्स इंडेक्सनुसार", - // "menu.section.browse_global_by_title": "By Title", "menu.section.browse_global_by_title": "शीर्षकानुसार", - // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "समुदाय आणि संग्रह", - // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", "menu.section.browse_global_geospatial_map": "भौगोलिक स्थानानुसार (नकाशा)", - // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "नियंत्रण पॅनेल", - // "menu.section.curation_task": "Curation Task", "menu.section.curation_task": "क्युरेशन कार्य", - // "menu.section.edit": "Edit", "menu.section.edit": "संपादित करा", - // "menu.section.edit_collection": "Collection", "menu.section.edit_collection": "संग्रह", - // "menu.section.edit_community": "Community", "menu.section.edit_community": "समुदाय", - // "menu.section.edit_item": "Item", "menu.section.edit_item": "आयटम", - // "menu.section.export": "Export", "menu.section.export": "निर्यात", - // "menu.section.export_collection": "Collection", "menu.section.export_collection": "संग्रह", - // "menu.section.export_community": "Community", "menu.section.export_community": "समुदाय", - // "menu.section.export_item": "Item", "menu.section.export_item": "आयटम", - // "menu.section.export_metadata": "Metadata", "menu.section.export_metadata": "मेटाडेटा", - // "menu.section.export_batch": "Batch Export (ZIP)", "menu.section.export_batch": "बॅच निर्यात (ZIP)", - // "menu.section.icon.access_control": "Access Control menu section", "menu.section.icon.access_control": "प्रवेश नियंत्रण मेनू विभाग", - // "menu.section.icon.reports": "Reports menu section", "menu.section.icon.reports": "अहवाल मेनू विभाग", - // "menu.section.icon.admin_search": "Admin search menu section", "menu.section.icon.admin_search": "प्रशासन शोध मेनू विभाग", - // "menu.section.icon.control_panel": "Control Panel menu section", "menu.section.icon.control_panel": "नियंत्रण पॅनेल मेनू विभाग", - // "menu.section.icon.curation_tasks": "Curation Task menu section", "menu.section.icon.curation_tasks": "क्युरेशन कार्य मेनू विभाग", - // "menu.section.icon.edit": "Edit menu section", "menu.section.icon.edit": "संपादन मेनू विभाग", - // "menu.section.icon.export": "Export menu section", "menu.section.icon.export": "निर्यात मेनू विभाग", - // "menu.section.icon.find": "Find menu section", "menu.section.icon.find": "शोधा मेनू विभाग", - // "menu.section.icon.health": "Health check menu section", "menu.section.icon.health": "आरोग्य तपासणी मेनू विभाग", - // "menu.section.icon.import": "Import menu section", "menu.section.icon.import": "आयात मेनू विभाग", - // "menu.section.icon.new": "New menu section", "menu.section.icon.new": "नवीन मेनू विभाग", - // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "साइडबार पिन करा", - // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "साइडबार अनपिन करा", - // "menu.section.icon.notifications": "Notifications menu section", "menu.section.icon.notifications": "सूचना मेनू विभाग", - // "menu.section.import": "Import", "menu.section.import": "आयात", - // "menu.section.import_batch": "Batch Import (ZIP)", "menu.section.import_batch": "बॅच आयात (ZIP)", - // "menu.section.import_metadata": "Metadata", "menu.section.import_metadata": "मेटाडेटा", - // "menu.section.new": "New", "menu.section.new": "नवीन", - // "menu.section.new_collection": "Collection", "menu.section.new_collection": "संग्रह", - // "menu.section.new_community": "Community", "menu.section.new_community": "समुदाय", - // "menu.section.new_item": "Item", "menu.section.new_item": "आयटम", - // "menu.section.new_item_version": "Item Version", "menu.section.new_item_version": "आयटम आवृत्ती", - // "menu.section.new_process": "Process", "menu.section.new_process": "प्रक्रिया", - // "menu.section.notifications": "Notifications", "menu.section.notifications": "सूचना", - // "menu.section.quality-assurance": "Quality Assurance", "menu.section.quality-assurance": "गुणवत्ता आश्वासन", - // "menu.section.notifications_publication-claim": "Publication Claim", "menu.section.notifications_publication-claim": "प्रकाशन दावा", - // "menu.section.pin": "Pin sidebar", "menu.section.pin": "साइडबार पिन करा", - // "menu.section.unpin": "Unpin sidebar", "menu.section.unpin": "साइडबार अनपिन करा", - // "menu.section.processes": "Processes", "menu.section.processes": "प्रक्रिया", - // "menu.section.health": "Health", "menu.section.health": "आरोग्य", - // "menu.section.registries": "Registries", "menu.section.registries": "नोंदणी", - // "menu.section.registries_format": "Format", "menu.section.registries_format": "फॉरमॅट", - // "menu.section.registries_metadata": "Metadata", "menu.section.registries_metadata": "मेटाडेटा", - // "menu.section.statistics": "Statistics", "menu.section.statistics": "आकडेवारी", - // "menu.section.statistics_task": "Statistics Task", "menu.section.statistics_task": "आकडेवारी कार्य", - // "menu.section.toggle.access_control": "Toggle Access Control section", "menu.section.toggle.access_control": "प्रवेश नियंत्रण विभाग टॉगल करा", - // "menu.section.toggle.reports": "Toggle Reports section", "menu.section.toggle.reports": "अहवाल विभाग टॉगल करा", - // "menu.section.toggle.control_panel": "Toggle Control Panel section", "menu.section.toggle.control_panel": "नियंत्रण पॅनेल विभाग टॉगल करा", - // "menu.section.toggle.curation_task": "Toggle Curation Task section", "menu.section.toggle.curation_task": "क्युरेशन कार्य विभाग टॉगल करा", - // "menu.section.toggle.edit": "Toggle Edit section", "menu.section.toggle.edit": "संपादन विभाग टॉगल करा", - // "menu.section.toggle.export": "Toggle Export section", "menu.section.toggle.export": "निर्यात विभाग टॉगल करा", - // "menu.section.toggle.find": "Toggle Find section", "menu.section.toggle.find": "शोधा विभाग टॉगल करा", - // "menu.section.toggle.import": "Toggle Import section", "menu.section.toggle.import": "आयात विभाग टॉगल करा", - // "menu.section.toggle.new": "Toggle New section", "menu.section.toggle.new": "नवीन विभाग टॉगल करा", - // "menu.section.toggle.registries": "Toggle Registries section", "menu.section.toggle.registries": "नोंदणी विभाग टॉगल करा", - // "menu.section.toggle.statistics_task": "Toggle Statistics Task section", "menu.section.toggle.statistics_task": "आकडेवारी कार्य विभाग टॉगल करा", - // "menu.section.workflow": "Administer Workflow", "menu.section.workflow": "वर्कफ्लो प्रशासित करा", - // "metadata-export-search.tooltip": "Export search results as CSV", "metadata-export-search.tooltip": "शोध परिणाम CSV म्हणून निर्यात करा", - // "metadata-export-search.submit.success": "The export was started successfully", "metadata-export-search.submit.success": "निर्यात यशस्वीरित्या सुरू झाली", - // "metadata-export-search.submit.error": "Starting the export has failed", "metadata-export-search.submit.error": "निर्यात सुरू करण्यात अयशस्वी", - // "mydspace.breadcrumbs": "MyDSpace", "mydspace.breadcrumbs": "MyDSpace", - // "mydspace.description": "", "mydspace.description": "", - // "mydspace.messages.controller-help": "Select this option to send a message to item's submitter.", "mydspace.messages.controller-help": "आयटमच्या सबमिटरला संदेश पाठवण्यासाठी हा पर्याय निवडा.", - // "mydspace.messages.description-placeholder": "Insert your message here...", "mydspace.messages.description-placeholder": "आपला संदेश येथे प्रविष्ट करा...", - // "mydspace.messages.hide-msg": "Hide message", "mydspace.messages.hide-msg": "संदेश लपवा", - // "mydspace.messages.mark-as-read": "Mark as read", "mydspace.messages.mark-as-read": "वाचले म्हणून चिन्हांकित करा", - // "mydspace.messages.mark-as-unread": "Mark as unread", "mydspace.messages.mark-as-unread": "न वाचले म्हणून चिन्हांकित करा", - // "mydspace.messages.no-content": "No content.", "mydspace.messages.no-content": "कोणतीही सामग्री नाही.", - // "mydspace.messages.no-messages": "No messages yet.", "mydspace.messages.no-messages": "अजून कोणतेही संदेश नाहीत.", - // "mydspace.messages.send-btn": "Send", "mydspace.messages.send-btn": "पाठवा", - // "mydspace.messages.show-msg": "Show message", "mydspace.messages.show-msg": "संदेश दाखवा", - // "mydspace.messages.subject-placeholder": "Subject...", "mydspace.messages.subject-placeholder": "विषय...", - // "mydspace.messages.submitter-help": "Select this option to send a message to controller.", "mydspace.messages.submitter-help": "नियंत्रकाला संदेश पाठवण्यासाठी हा पर्याय निवडा.", - // "mydspace.messages.title": "Messages", "mydspace.messages.title": "संदेश", - // "mydspace.messages.to": "To", "mydspace.messages.to": "प्रति", - // "mydspace.new-submission": "New submission", "mydspace.new-submission": "नवीन सबमिशन", - // "mydspace.new-submission-external": "Import metadata from external source", "mydspace.new-submission-external": "बाह्य स्रोतातून मेटाडेटा आयात करा", - // "mydspace.new-submission-external-short": "Import metadata", "mydspace.new-submission-external-short": "मेटाडेटा आयात करा", - // "mydspace.results.head": "Your submissions", "mydspace.results.head": "आपली सबमिशन", - // "mydspace.results.no-abstract": "No Abstract", "mydspace.results.no-abstract": "सारांश नाही", - // "mydspace.results.no-authors": "No Authors", "mydspace.results.no-authors": "लेखक नाहीत", - // "mydspace.results.no-collections": "No Collections", "mydspace.results.no-collections": "संग्रह नाहीत", - // "mydspace.results.no-date": "No Date", "mydspace.results.no-date": "तारीख नाही", - // "mydspace.results.no-files": "No Files", "mydspace.results.no-files": "फाइल्स नाहीत", - // "mydspace.results.no-results": "There were no items to show", "mydspace.results.no-results": "दाखविण्यासाठी कोणतेही आयटम नव्हते", - // "mydspace.results.no-title": "No title", "mydspace.results.no-title": "शीर्षक नाही", - // "mydspace.results.no-uri": "No URI", "mydspace.results.no-uri": "URI नाही", - // "mydspace.search-form.placeholder": "Search in MyDSpace...", "mydspace.search-form.placeholder": "MyDSpace मध्ये शोधा...", - // "mydspace.show.workflow": "Workflow tasks", "mydspace.show.workflow": "वर्कफ्लो कार्य", - // "mydspace.show.workspace": "Your submissions", "mydspace.show.workspace": "आपली सबमिशन", - // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "पर्यवेक्षित आयटम", - // "mydspace.status": "My DSpace status:", - // TODO New key - Add a translation - "mydspace.status": "My DSpace status:", - - // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "संग्रहित", - // "mydspace.status.mydspaceValidation": "Validation", "mydspace.status.mydspaceValidation": "प्रमाणीकरण", - // "mydspace.status.mydspaceWaitingController": "Waiting for reviewer", "mydspace.status.mydspaceWaitingController": "पुनरावलोककाची प्रतीक्षा", - // "mydspace.status.mydspaceWorkflow": "Workflow", "mydspace.status.mydspaceWorkflow": "वर्कफ्लो", - // "mydspace.status.mydspaceWorkspace": "Workspace", "mydspace.status.mydspaceWorkspace": "वर्कस्पेस", - // "mydspace.title": "MyDSpace", "mydspace.title": "MyDSpace", - // "mydspace.upload.upload-failed": "Error creating new workspace. Please verify the content uploaded before retry.", "mydspace.upload.upload-failed": "नवीन वर्कस्पेस तयार करताना त्रुटी. कृपया पुन्हा प्रयत्न करण्यापूर्वी अपलोड केलेली सामग्री सत्यापित करा.", - // "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.", "mydspace.upload.upload-failed-manyentries": "प्रक्रिया न होणारी फाइल. खूप जास्त नोंदी आढळल्या परंतु फाइलसाठी फक्त एकच परवानगी आहे.", - // "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.", "mydspace.upload.upload-failed-moreonefile": "प्रक्रिया न होणारी विनंती. फक्त एक फाइल परवानगी आहे.", - // "mydspace.upload.upload-multiple-successful": "{{qty}} new workspace items created.", "mydspace.upload.upload-multiple-successful": "{{qty}} नवीन वर्कस्पेस आयटम तयार केले.", - // "mydspace.view-btn": "View", "mydspace.view-btn": "पहा", - // "nav.expandable-navbar-section-suffix": "(submenu)", "nav.expandable-navbar-section-suffix": "(उपमेनू)", - // "notification.suggestion": "We found {{count}} publications in the {{source}} that seems to be related to your profile.
", "notification.suggestion": "आम्हाला {{source}} मध्ये {{count}} प्रकाशने सापडली आहेत जी तुमच्या प्रोफाइलशी संबंधित असल्याचे दिसते.
", - // "notification.suggestion.review": "review the suggestions", "notification.suggestion.review": "सूचना पुनरावलोकन करा", - // "notification.suggestion.please": "Please", "notification.suggestion.please": "कृपया", - // "nav.browse.header": "All of DSpace", "nav.browse.header": "संपूर्ण DSpace", - // "nav.community-browse.header": "By Community", "nav.community-browse.header": "समुदायानुसार", - // "nav.context-help-toggle": "Toggle context help", "nav.context-help-toggle": "संदर्भ मदत टॉगल करा", - // "nav.language": "Language switch", "nav.language": "भाषा स्विच", - // "nav.login": "Log In", "nav.login": "लॉग इन", - // "nav.user-profile-menu-and-logout": "User profile menu and log out", "nav.user-profile-menu-and-logout": "वापरकर्ता प्रोफाइल मेनू आणि लॉग आउट", - // "nav.logout": "Log Out", "nav.logout": "लॉग आउट", - // "nav.main.description": "Main navigation bar", "nav.main.description": "मुख्य नेव्हिगेशन बार", - // "nav.mydspace": "MyDSpace", "nav.mydspace": "MyDSpace", - // "nav.profile": "Profile", "nav.profile": "प्रोफाइल", - // "nav.search": "Search", "nav.search": "शोधा", - // "nav.search.button": "Submit search", "nav.search.button": "शोध सबमिट करा", - // "nav.statistics.header": "Statistics", "nav.statistics.header": "आकडेवारी", - // "nav.stop-impersonating": "Stop impersonating EPerson", "nav.stop-impersonating": "EPerson चे अनुकरण थांबवा", - // "nav.subscriptions": "Subscriptions", "nav.subscriptions": "सदस्यता", - // "nav.toggle": "Toggle navigation", "nav.toggle": "नेव्हिगेशन टॉगल करा", - // "nav.user.description": "User profile bar", "nav.user.description": "वापरकर्ता प्रोफाइल बार", - // "listelement.badge.dso-type": "Item type:", - // TODO New key - Add a translation - "listelement.badge.dso-type": "Item type:", - - // "none.listelement.badge": "Item", "none.listelement.badge": "आयटम", - // "publication-claim.title": "Publication claim", "publication-claim.title": "प्रकाशन दावा", - // "publication-claim.source.description": "Below you can see all the sources.", "publication-claim.source.description": "खाली तुम्हाला सर्व स्रोत दिसतील.", - // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "गुणवत्ता आश्वासन", - // "quality-assurance.topics.description": "Below you can see all the topics received from the subscriptions to {{source}}.", "quality-assurance.topics.description": "खाली तुम्हाला {{source}} सदस्यतांमधून प्राप्त झालेले सर्व विषय दिसतील.", - // "quality-assurance.source.description": "Below you can see all the notification's sources.", "quality-assurance.source.description": "खाली तुम्हाला सर्व सूचनांचे स्रोत दिसतील.", - // "quality-assurance.topics": "Current Topics", "quality-assurance.topics": "सध्याचे विषय", - // "quality-assurance.source": "Current Sources", "quality-assurance.source": "सध्याचे स्रोत", - // "quality-assurance.table.topic": "Topic", "quality-assurance.table.topic": "विषय", - // "quality-assurance.table.source": "Source", "quality-assurance.table.source": "स्रोत", - // "quality-assurance.table.last-event": "Last Event", "quality-assurance.table.last-event": "शेवटची घटना", - // "quality-assurance.table.actions": "Actions", "quality-assurance.table.actions": "क्रिया", - // "quality-assurance.source-list.button.detail": "Show topics for {{param}}", "quality-assurance.source-list.button.detail": "{{param}} साठी विषय दाखवा", - // "quality-assurance.topics-list.button.detail": "Show suggestions for {{param}}", "quality-assurance.topics-list.button.detail": "{{param}} साठी सूचना दाखवा", - // "quality-assurance.noTopics": "No topics found.", "quality-assurance.noTopics": "कोणतेही विषय आढळले नाहीत.", - // "quality-assurance.noSource": "No sources found.", "quality-assurance.noSource": "कोणतेही स्रोत आढळले नाहीत.", - // "notifications.events.title": "Quality Assurance Suggestions", "notifications.events.title": "गुणवत्ता आश्वासन सूचना", - // "quality-assurance.topic.error.service.retrieve": "An error occurred while loading the Quality Assurance topics", "quality-assurance.topic.error.service.retrieve": "गुणवत्ता आश्वासन विषय लोड करताना त्रुटी आली", - // "quality-assurance.source.error.service.retrieve": "An error occurred while loading the Quality Assurance source", "quality-assurance.source.error.service.retrieve": "गुणवत्ता आश्वासन स्रोत लोड करताना त्रुटी आली", - // "quality-assurance.loading": "Loading ...", "quality-assurance.loading": "लोड करत आहे ...", - // "quality-assurance.events.topic": "Topic:", - // TODO New key - Add a translation - "quality-assurance.events.topic": "Topic:", + "quality-assurance.events.topic": "विषय:", - // "quality-assurance.noEvents": "No suggestions found.", "quality-assurance.noEvents": "कोणत्याही सूचना आढळल्या नाहीत.", - // "quality-assurance.event.table.trust": "Trust", "quality-assurance.event.table.trust": "विश्वास", - // "quality-assurance.event.table.publication": "Publication", "quality-assurance.event.table.publication": "प्रकाशन", - // "quality-assurance.event.table.details": "Details", "quality-assurance.event.table.details": "तपशील", - // "quality-assurance.event.table.project-details": "Project details", "quality-assurance.event.table.project-details": "प्रकल्प तपशील", - // "quality-assurance.event.table.reasons": "Reasons", "quality-assurance.event.table.reasons": "कारणे", - // "quality-assurance.event.table.actions": "Actions", "quality-assurance.event.table.actions": "क्रिया", - // "quality-assurance.event.action.accept": "Accept suggestion", "quality-assurance.event.action.accept": "सूचना स्वीकारा", - // "quality-assurance.event.action.ignore": "Ignore suggestion", "quality-assurance.event.action.ignore": "सूचना दुर्लक्षित करा", - // "quality-assurance.event.action.undo": "Delete", "quality-assurance.event.action.undo": "हटवा", - // "quality-assurance.event.action.reject": "Reject suggestion", "quality-assurance.event.action.reject": "सूचना नाकार", - // "quality-assurance.event.action.import": "Import project and accept suggestion", "quality-assurance.event.action.import": "प्रकल्प आयात करा आणि सूचना स्वीकारा", - // "quality-assurance.event.table.pidtype": "PID Type:", - // TODO New key - Add a translation - "quality-assurance.event.table.pidtype": "PID Type:", + "quality-assurance.event.table.pidtype": "PID प्रकार:", - // "quality-assurance.event.table.pidvalue": "PID Value:", - // TODO New key - Add a translation - "quality-assurance.event.table.pidvalue": "PID Value:", + "quality-assurance.event.table.pidvalue": "PID मूल्य:", - // "quality-assurance.event.table.subjectValue": "Subject Value:", - // TODO New key - Add a translation - "quality-assurance.event.table.subjectValue": "Subject Value:", + "quality-assurance.event.table.subjectValue": "विषय मूल्य:", - // "quality-assurance.event.table.abstract": "Abstract:", - // TODO New key - Add a translation - "quality-assurance.event.table.abstract": "Abstract:", + "quality-assurance.event.table.abstract": "सारांश:", - // "quality-assurance.event.table.suggestedProject": "OpenAIRE Suggested Project data", "quality-assurance.event.table.suggestedProject": "OpenAIRE सुचवलेले प्रकल्प डेटा", - // "quality-assurance.event.table.project": "Project title:", - // TODO New key - Add a translation - "quality-assurance.event.table.project": "Project title:", + "quality-assurance.event.table.project": "प्रकल्प शीर्षक:", - // "quality-assurance.event.table.acronym": "Acronym:", - // TODO New key - Add a translation - "quality-assurance.event.table.acronym": "Acronym:", + "quality-assurance.event.table.acronym": "अक्रोनिम:", - // "quality-assurance.event.table.code": "Code:", - // TODO New key - Add a translation - "quality-assurance.event.table.code": "Code:", + "quality-assurance.event.table.code": "कोड:", - // "quality-assurance.event.table.funder": "Funder:", - // TODO New key - Add a translation - "quality-assurance.event.table.funder": "Funder:", + "quality-assurance.event.table.funder": "फंडर:", - // "quality-assurance.event.table.fundingProgram": "Funding program:", - // TODO New key - Add a translation - "quality-assurance.event.table.fundingProgram": "Funding program:", + "quality-assurance.event.table.fundingProgram": "फंडिंग कार्यक्रम:", - // "quality-assurance.event.table.jurisdiction": "Jurisdiction:", - // TODO New key - Add a translation - "quality-assurance.event.table.jurisdiction": "Jurisdiction:", + "quality-assurance.event.table.jurisdiction": "क्षेत्राधिकार:", - // "quality-assurance.events.back": "Back to topics", "quality-assurance.events.back": "विषयांकडे परत जा", - // "quality-assurance.events.back-to-sources": "Back to sources", "quality-assurance.events.back-to-sources": "स्रोतांकडे परत जा", - // "quality-assurance.event.table.less": "Show less", "quality-assurance.event.table.less": "कमी दाखवा", - // "quality-assurance.event.table.more": "Show more", "quality-assurance.event.table.more": "अधिक दाखवा", - // "quality-assurance.event.project.found": "Bound to the local record:", - // TODO New key - Add a translation - "quality-assurance.event.project.found": "Bound to the local record:", + "quality-assurance.event.project.found": "स्थानिक नोंदीशी बांधलेले:", - // "quality-assurance.event.project.notFound": "No local record found", "quality-assurance.event.project.notFound": "कोणतीही स्थानिक नोंद आढळली नाही", - // "quality-assurance.event.sure": "Are you sure?", "quality-assurance.event.sure": "आपल्याला खात्री आहे?", - // "quality-assurance.event.ignore.description": "This operation can't be undone. Ignore this suggestion?", "quality-assurance.event.ignore.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. ही सूचना दुर्लक्षित करा?", - // "quality-assurance.event.undo.description": "This operation can't be undone!", "quality-assurance.event.undo.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही!", - // "quality-assurance.event.reject.description": "This operation can't be undone. Reject this suggestion?", "quality-assurance.event.reject.description": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. ही सूचना नाकार?", - // "quality-assurance.event.accept.description": "No DSpace project selected. A new project will be created based on the suggestion data.", "quality-assurance.event.accept.description": "कोणताही DSpace प्रकल्प निवडलेला नाही. सूचना डेटावर आधारित नवीन प्रकल्प तयार केला जाईल.", - // "quality-assurance.event.action.cancel": "Cancel", "quality-assurance.event.action.cancel": "रद्द करा", - // "quality-assurance.event.action.saved": "Your decision has been saved successfully.", "quality-assurance.event.action.saved": "आपला निर्णय यशस्वीरित्या जतन केला गेला आहे.", - // "quality-assurance.event.action.error": "An error has occurred. Your decision has not been saved.", "quality-assurance.event.action.error": "त्रुटी आली आहे. आपला निर्णय जतन केला गेला नाही.", - // "quality-assurance.event.modal.project.title": "Choose a project to bound", "quality-assurance.event.modal.project.title": "बांधण्यासाठी प्रकल्प निवडा", - // "quality-assurance.event.modal.project.publication": "Publication:", - // TODO New key - Add a translation - "quality-assurance.event.modal.project.publication": "Publication:", + "quality-assurance.event.modal.project.publication": "प्रकाशन:", - // "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", - // TODO New key - Add a translation - "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:", + "quality-assurance.event.modal.project.bountToLocal": "स्थानिक नोंदीशी बांधलेले:", - // "quality-assurance.event.modal.project.select": "Project search", "quality-assurance.event.modal.project.select": "प्रकल्प शोध", - // "quality-assurance.event.modal.project.search": "Search", "quality-assurance.event.modal.project.search": "शोधा", - // "quality-assurance.event.modal.project.clear": "Clear", "quality-assurance.event.modal.project.clear": "साफ करा", - // "quality-assurance.event.modal.project.cancel": "Cancel", "quality-assurance.event.modal.project.cancel": "रद्द करा", - // "quality-assurance.event.modal.project.bound": "Bound project", "quality-assurance.event.modal.project.bound": "बांधलेला प्रकल्प", - // "quality-assurance.event.modal.project.remove": "Remove", "quality-assurance.event.modal.project.remove": "काढा", - // "quality-assurance.event.modal.project.placeholder": "Enter a project name", "quality-assurance.event.modal.project.placeholder": "प्रकल्पाचे नाव प्रविष्ट करा", - // "quality-assurance.event.modal.project.notFound": "No project found.", "quality-assurance.event.modal.project.notFound": "कोणताही प्रकल्प आढळला नाही.", - // "quality-assurance.event.project.bounded": "The project has been linked successfully.", "quality-assurance.event.project.bounded": "प्रकल्प यशस्वीरित्या लिंक केला गेला आहे.", - // "quality-assurance.event.project.removed": "The project has been successfully unlinked.", "quality-assurance.event.project.removed": "प्रकल्प यशस्वीरित्या अनलिंक केला गेला आहे.", - // "quality-assurance.event.project.error": "An error has occurred. No operation performed.", "quality-assurance.event.project.error": "त्रुटी आली आहे. कोणतीही क्रिया केली गेली नाही.", - // "quality-assurance.event.reason": "Reason", "quality-assurance.event.reason": "कारण", - // "orgunit.listelement.badge": "Organizational Unit", "orgunit.listelement.badge": "संगठनात्मक युनिट", - // "orgunit.listelement.no-title": "Untitled", "orgunit.listelement.no-title": "शीर्षक नाही", - // "orgunit.page.city": "City", "orgunit.page.city": "शहर", - // "orgunit.page.country": "Country", "orgunit.page.country": "देश", - // "orgunit.page.dateestablished": "Date established", "orgunit.page.dateestablished": "स्थापनेची तारीख", - // "orgunit.page.description": "Description", "orgunit.page.description": "वर्णन", - // "orgunit.page.edit": "Edit this item", "orgunit.page.edit": "हा आयटम संपादित करा", - // "orgunit.page.id": "ID", "orgunit.page.id": "ID", - // "orgunit.page.options": "Options", "orgunit.page.options": "पर्याय", - // "orgunit.page.titleprefix": "Organizational Unit: ", - // TODO New key - Add a translation - "orgunit.page.titleprefix": "Organizational Unit: ", + "orgunit.page.titleprefix": "संगठनात्मक युनिट: ", - // "orgunit.page.ror": "ROR Identifier", "orgunit.page.ror": "ROR ओळखकर्ता", - // "orgunit.search.results.head": "Organizational Unit Search Results", "orgunit.search.results.head": "संगठनात्मक युनिट शोध परिणाम", - // "pagination.options.description": "Pagination options", "pagination.options.description": "पृष्ठांकन पर्याय", - // "pagination.results-per-page": "Results Per Page", "pagination.results-per-page": "प्रति पृष्ठ परिणाम", - // "pagination.showing.detail": "{{ range }} of {{ total }}", "pagination.showing.detail": "{{ range }} पैकी {{ total }}", - // "pagination.showing.label": "Now showing ", "pagination.showing.label": "आता दाखवत आहे ", - // "pagination.sort-direction": "Sort Options", "pagination.sort-direction": "क्रमवारी पर्याय", - // "person.listelement.badge": "Person", "person.listelement.badge": "व्यक्ती", - // "person.listelement.no-title": "No name found", "person.listelement.no-title": "नाव सापडले नाही", - // "person.page.birthdate": "Birth Date", "person.page.birthdate": "जन्मतारीख", - // "person.page.edit": "Edit this item", "person.page.edit": "हा आयटम संपादित करा", - // "person.page.email": "Email Address", "person.page.email": "ईमेल पत्ता", - // "person.page.firstname": "First Name", "person.page.firstname": "पहिले नाव", - // "person.page.jobtitle": "Job Title", "person.page.jobtitle": "नोकरीचे शीर्षक", - // "person.page.lastname": "Last Name", "person.page.lastname": "आडनाव", - // "person.page.name": "Name", "person.page.name": "नाव", - // "person.page.link.full": "Show all metadata", "person.page.link.full": "सर्व मेटाडेटा दाखवा", - // "person.page.options": "Options", "person.page.options": "पर्याय", - // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", - // "person.page.staffid": "Staff ID", "person.page.staffid": "कर्मचारी आयडी", - // "person.page.titleprefix": "Person: ", - // TODO New key - Add a translation - "person.page.titleprefix": "Person: ", + "person.page.titleprefix": "व्यक्ती: ", - // "person.search.results.head": "Person Search Results", "person.search.results.head": "व्यक्ती शोध परिणाम", - // "person-relationships.search.results.head": "Person Search Results", "person-relationships.search.results.head": "व्यक्ती शोध परिणाम", - // "person.search.title": "Person Search", "person.search.title": "व्यक्ती शोध", - // "process.new.select-parameters": "Parameters", "process.new.select-parameters": "पॅरामीटर्स", - // "process.new.select-parameter": "Select parameter", "process.new.select-parameter": "पॅरामीटर निवडा", - // "process.new.add-parameter": "Add a parameter...", "process.new.add-parameter": "पॅरामीटर जोडा...", - // "process.new.delete-parameter": "Delete parameter", "process.new.delete-parameter": "पॅरामीटर हटवा", - // "process.new.parameter.label": "Parameter value", "process.new.parameter.label": "पॅरामीटर मूल्य", - // "process.new.cancel": "Cancel", "process.new.cancel": "रद्द करा", - // "process.new.submit": "Save", "process.new.submit": "जतन करा", - // "process.new.select-script": "Script", "process.new.select-script": "स्क्रिप्ट", - // "process.new.select-script.placeholder": "Choose a script...", "process.new.select-script.placeholder": "स्क्रिप्ट निवडा...", - // "process.new.select-script.required": "Script is required", "process.new.select-script.required": "स्क्रिप्ट आवश्यक आहे", - // "process.new.parameter.file.upload-button": "Select file...", "process.new.parameter.file.upload-button": "फाइल निवडा...", - // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "कृपया फाइल निवडा", - // "process.new.parameter.integer.required": "Parameter value is required", "process.new.parameter.integer.required": "पॅरामीटर मूल्य आवश्यक आहे", - // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "पॅरामीटर मूल्य आवश्यक आहे", - // "process.new.parameter.type.value": "value", "process.new.parameter.type.value": "मूल्य", - // "process.new.parameter.type.file": "file", "process.new.parameter.type.file": "फाइल", - // "process.new.parameter.required.missing": "The following parameters are required but still missing:", - // TODO New key - Add a translation - "process.new.parameter.required.missing": "The following parameters are required but still missing:", + "process.new.parameter.required.missing": "खालील पॅरामीटर्स आवश्यक आहेत परंतु अद्याप गायब आहेत:", - // "process.new.notification.success.title": "Success", "process.new.notification.success.title": "यश", - // "process.new.notification.success.content": "The process was successfully created", "process.new.notification.success.content": "प्रक्रिया यशस्वीरित्या तयार केली गेली", - // "process.new.notification.error.title": "Error", "process.new.notification.error.title": "त्रुटी", - // "process.new.notification.error.content": "An error occurred while creating this process", "process.new.notification.error.content": "ही प्रक्रिया तयार करताना त्रुटी आली", - // "process.new.notification.error.max-upload.content": "The file exceeds the maximum upload size", "process.new.notification.error.max-upload.content": "फाइलने कमाल अपलोड आकार ओलांडला आहे", - // "process.new.header": "Create a new process", "process.new.header": "नवीन प्रक्रिया तयार करा", - // "process.new.title": "Create a new process", "process.new.title": "नवीन प्रक्रिया तयार करा", - // "process.new.breadcrumbs": "Create a new process", "process.new.breadcrumbs": "नवीन प्रक्रिया तयार करा", - // "process.detail.arguments": "Arguments", "process.detail.arguments": "तर्क", - // "process.detail.arguments.empty": "This process doesn't contain any arguments", "process.detail.arguments.empty": "या प्रक्रियेमध्ये कोणतेही तर्क नाहीत", - // "process.detail.back": "Back", "process.detail.back": "मागे", - // "process.detail.output": "Process Output", "process.detail.output": "प्रक्रिया आउटपुट", - // "process.detail.logs.button": "Retrieve process output", "process.detail.logs.button": "प्रक्रिया आउटपुट पुनर्प्राप्त करा", - // "process.detail.logs.loading": "Retrieving", "process.detail.logs.loading": "पुनर्प्राप्त करत आहे", - // "process.detail.logs.none": "This process has no output", "process.detail.logs.none": "या प्रक्रियेमध्ये कोणतेही आउटपुट नाही", - // "process.detail.output-files": "Output Files", "process.detail.output-files": "आउटपुट फाइल्स", - // "process.detail.output-files.empty": "This process doesn't contain any output files", "process.detail.output-files.empty": "या प्रक्रियेमध्ये कोणतेही आउटपुट फाइल्स नाहीत", - // "process.detail.script": "Script", "process.detail.script": "स्क्रिप्ट", - // "process.detail.title": "Process: {{ id }} - {{ name }}", - // TODO New key - Add a translation - "process.detail.title": "Process: {{ id }} - {{ name }}", + "process.detail.title": "प्रक्रिया: {{ id }} - {{ name }}", - // "process.detail.start-time": "Start time", "process.detail.start-time": "प्रारंभ वेळ", - // "process.detail.end-time": "Finish time", "process.detail.end-time": "समाप्ती वेळ", - // "process.detail.status": "Status", "process.detail.status": "स्थिती", - // "process.detail.create": "Create similar process", "process.detail.create": "समान प्रक्रिया तयार करा", - // "process.detail.actions": "Actions", "process.detail.actions": "क्रिया", - // "process.detail.delete.button": "Delete process", "process.detail.delete.button": "प्रक्रिया हटवा", - // "process.detail.delete.header": "Delete process", "process.detail.delete.header": "प्रक्रिया हटवा", - // "process.detail.delete.body": "Are you sure you want to delete the current process?", "process.detail.delete.body": "आपण सध्याची प्रक्रिया हटवू इच्छिता?", - // "process.detail.delete.cancel": "Cancel", "process.detail.delete.cancel": "रद्द करा", - // "process.detail.delete.confirm": "Delete process", "process.detail.delete.confirm": "प्रक्रिया हटवा", - // "process.detail.delete.success": "The process was successfully deleted.", "process.detail.delete.success": "प्रक्रिया यशस्वीरित्या हटवली गेली.", - // "process.detail.delete.error": "Something went wrong when deleting the process", "process.detail.delete.error": "प्रक्रिया हटवताना काहीतरी चूक झाली", - // "process.detail.refreshing": "Auto-refreshing…", "process.detail.refreshing": "स्वतः-ताजेतवाने करत आहे…", - // "process.overview.table.completed.info": "Finish time (UTC)", "process.overview.table.completed.info": "समाप्ती वेळ (UTC)", - // "process.overview.table.completed.title": "Succeeded processes", "process.overview.table.completed.title": "यशस्वी प्रक्रिया", - // "process.overview.table.empty": "No matching processes found.", "process.overview.table.empty": "कोणतीही जुळणारी प्रक्रिया आढळली नाही.", - // "process.overview.table.failed.info": "Finish time (UTC)", "process.overview.table.failed.info": "समाप्ती वेळ (UTC)", - // "process.overview.table.failed.title": "Failed processes", "process.overview.table.failed.title": "अयशस्वी प्रक्रिया", - // "process.overview.table.finish": "Finish time (UTC)", "process.overview.table.finish": "समाप्ती वेळ (UTC)", - // "process.overview.table.id": "Process ID", "process.overview.table.id": "प्रक्रिया आयडी", - // "process.overview.table.name": "Name", "process.overview.table.name": "नाव", - // "process.overview.table.running.info": "Start time (UTC)", "process.overview.table.running.info": "प्रारंभ वेळ (UTC)", - // "process.overview.table.running.title": "Running processes", "process.overview.table.running.title": "चालू प्रक्रिया", - // "process.overview.table.scheduled.info": "Creation time (UTC)", "process.overview.table.scheduled.info": "निर्मिती वेळ (UTC)", - // "process.overview.table.scheduled.title": "Scheduled processes", "process.overview.table.scheduled.title": "नियोजित प्रक्रिया", - // "process.overview.table.start": "Start time (UTC)", "process.overview.table.start": "प्रारंभ वेळ (UTC)", - // "process.overview.table.status": "Status", "process.overview.table.status": "स्थिती", - // "process.overview.table.user": "User", "process.overview.table.user": "वापरकर्ता", - // "process.overview.title": "Processes Overview", "process.overview.title": "प्रक्रिया विहंगावलोकन", - // "process.overview.breadcrumbs": "Processes Overview", "process.overview.breadcrumbs": "प्रक्रिया विहंगावलोकन", - // "process.overview.new": "New", "process.overview.new": "नवीन", - // "process.overview.table.actions": "Actions", "process.overview.table.actions": "क्रिया", - // "process.overview.delete": "Delete {{count}} processes", "process.overview.delete": "{{count}} प्रक्रिया हटवा", - // "process.overview.delete-process": "Delete process", "process.overview.delete-process": "प्रक्रिया हटवा", - // "process.overview.delete.clear": "Clear delete selection", "process.overview.delete.clear": "हटविण्याची निवड साफ करा", - // "process.overview.delete.processing": "{{count}} process(es) are being deleted. Please wait for the deletion to fully complete. Note that this can take a while.", "process.overview.delete.processing": "{{count}} प्रक्रिया हटवली जात आहेत. कृपया हटविणे पूर्ण होण्याची प्रतीक्षा करा. लक्षात ठेवा की यास काही वेळ लागू शकतो.", - // "process.overview.delete.body": "Are you sure you want to delete {{count}} process(es)?", "process.overview.delete.body": "आपण {{count}} प्रक्रिया हटवू इच्छिता?", - // "process.overview.delete.header": "Delete processes", "process.overview.delete.header": "प्रक्रिया हटवा", - // "process.overview.unknown.user": "Unknown", "process.overview.unknown.user": "अज्ञात", - // "process.bulk.delete.error.head": "Error on deleteing process", "process.bulk.delete.error.head": "प्रक्रिया हटवताना त्रुटी", - // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ", "process.bulk.delete.error.body": "आयडी {{processId}} असलेली प्रक्रिया हटवली जाऊ शकली नाही. उर्वरित प्रक्रिया हटवणे सुरूच राहील.", - // "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted", "process.bulk.delete.success": "{{count}} प्रक्रिया यशस्वीरित्या हटवली गेली", - // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "प्रोफाइल अद्यतनित करा", - // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - // TODO New key - Add a translation - "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - - // "profile.card.accessibility.header": "Accessibility", - // TODO New key - Add a translation - "profile.card.accessibility.header": "Accessibility", - - // "profile.card.accessibility.link": "Go to Accessibility Settings Page", - // TODO New key - Add a translation - "profile.card.accessibility.link": "Go to Accessibility Settings Page", - - // "profile.card.identify": "Identify", "profile.card.identify": "ओळख", - // "profile.card.security": "Security", "profile.card.security": "सुरक्षा", - // "profile.form.submit": "Save", "profile.form.submit": "जतन करा", - // "profile.groups.head": "Authorization groups you belong to", "profile.groups.head": "आपण ज्या प्राधिकरण गटांचा भाग आहात", - // "profile.special.groups.head": "Authorization special groups you belong to", "profile.special.groups.head": "आपण ज्या प्राधिकरण विशेष गटांचा भाग आहात", - // "profile.metadata.form.error.firstname.required": "First Name is required", "profile.metadata.form.error.firstname.required": "पहिले नाव आवश्यक आहे", - // "profile.metadata.form.error.lastname.required": "Last Name is required", "profile.metadata.form.error.lastname.required": "आडनाव आवश्यक आहे", - // "profile.metadata.form.label.email": "Email Address", "profile.metadata.form.label.email": "ईमेल पत्ता", - // "profile.metadata.form.label.firstname": "First Name", "profile.metadata.form.label.firstname": "पहिले नाव", - // "profile.metadata.form.label.language": "Language", "profile.metadata.form.label.language": "भाषा", - // "profile.metadata.form.label.lastname": "Last Name", "profile.metadata.form.label.lastname": "आडनाव", - // "profile.metadata.form.label.phone": "Contact Telephone", "profile.metadata.form.label.phone": "संपर्क दूरध्वनी", - // "profile.metadata.form.notifications.success.content": "Your changes to the profile were saved.", "profile.metadata.form.notifications.success.content": "प्रोफाइलमध्ये आपले बदल जतन केले गेले.", - // "profile.metadata.form.notifications.success.title": "Profile saved", "profile.metadata.form.notifications.success.title": "प्रोफाइल जतन केले", - // "profile.notifications.warning.no-changes.content": "No changes were made to the Profile.", "profile.notifications.warning.no-changes.content": "प्रोफाइलमध्ये कोणतेही बदल केले गेले नाहीत.", - // "profile.notifications.warning.no-changes.title": "No changes", "profile.notifications.warning.no-changes.title": "कोणतेही बदल नाहीत", - // "profile.security.form.error.matching-passwords": "The passwords do not match.", "profile.security.form.error.matching-passwords": "पासवर्ड जुळत नाहीत.", - // "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.", "profile.security.form.info": "पर्यायी, आपण खालील बॉक्समध्ये नवीन पासवर्ड प्रविष्ट करू शकता आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करू शकता.", - // "profile.security.form.label.password": "Password", "profile.security.form.label.password": "पासवर्ड", - // "profile.security.form.label.passwordrepeat": "Retype to confirm", "profile.security.form.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा", - // "profile.security.form.label.current-password": "Current password", "profile.security.form.label.current-password": "सध्याचा पासवर्ड", - // "profile.security.form.notifications.success.content": "Your changes to the password were saved.", "profile.security.form.notifications.success.content": "आपल्या पासवर्डमध्ये बदल जतन केले गेले.", - // "profile.security.form.notifications.success.title": "Password saved", "profile.security.form.notifications.success.title": "पासवर्ड जतन केले", - // "profile.security.form.notifications.error.title": "Error changing passwords", "profile.security.form.notifications.error.title": "पासवर्ड बदलताना त्रुटी", - // "profile.security.form.notifications.error.change-failed": "An error occurred while trying to change the password. Please check if the current password is correct.", "profile.security.form.notifications.error.change-failed": "पासवर्ड बदलण्याचा प्रयत्न करताना त्रुटी आली. कृपया सध्याचा पासवर्ड योग्य आहे का ते तपासा.", - // "profile.security.form.notifications.error.not-same": "The provided passwords are not the same.", "profile.security.form.notifications.error.not-same": "प्रदान केलेले पासवर्ड समान नाहीत.", - // "profile.security.form.notifications.error.general": "Please fill required fields of security form.", "profile.security.form.notifications.error.general": "कृपया सुरक्षा फॉर्मची आवश्यक फील्ड भरा.", - // "profile.title": "Update Profile", "profile.title": "प्रोफाइल अद्यतनित करा", - // "profile.card.researcher": "Researcher Profile", "profile.card.researcher": "संशोधक प्रोफाइल", - // "project.listelement.badge": "Research Project", "project.listelement.badge": "संशोधन प्रकल्प", - // "project.page.contributor": "Contributors", "project.page.contributor": "योगदानकर्ते", - // "project.page.description": "Description", "project.page.description": "वर्णन", - // "project.page.edit": "Edit this item", "project.page.edit": "हा आयटम संपादित करा", - // "project.page.expectedcompletion": "Expected Completion", "project.page.expectedcompletion": "अपेक्षित पूर्णता", - // "project.page.funder": "Funders", "project.page.funder": "फंडर", - // "project.page.id": "ID", "project.page.id": "ID", - // "project.page.keyword": "Keywords", "project.page.keyword": "कीवर्ड", - // "project.page.options": "Options", "project.page.options": "पर्याय", - // "project.page.status": "Status", "project.page.status": "स्थिती", - // "project.page.titleprefix": "Research Project: ", - // TODO New key - Add a translation - "project.page.titleprefix": "Research Project: ", + "project.page.titleprefix": "संशोधन प्रकल्प: ", - // "project.search.results.head": "Project Search Results", "project.search.results.head": "प्रकल्प शोध परिणाम", - // "project-relationships.search.results.head": "Project Search Results", "project-relationships.search.results.head": "प्रकल्प शोध परिणाम", - // "publication.listelement.badge": "Publication", "publication.listelement.badge": "प्रकाशन", - // "publication.page.description": "Description", "publication.page.description": "वर्णन", - // "publication.page.edit": "Edit this item", "publication.page.edit": "हा आयटम संपादित करा", - // "publication.page.journal-issn": "Journal ISSN", "publication.page.journal-issn": "जर्नल ISSN", - // "publication.page.journal-title": "Journal Title", "publication.page.journal-title": "जर्नल शीर्षक", - // "publication.page.publisher": "Publisher", "publication.page.publisher": "प्रकाशक", - // "publication.page.options": "Options", "publication.page.options": "पर्याय", - // "publication.page.titleprefix": "Publication: ", - // TODO New key - Add a translation - "publication.page.titleprefix": "Publication: ", + "publication.page.titleprefix": "प्रकाशन: ", - // "publication.page.volume-title": "Volume Title", "publication.page.volume-title": "खंड शीर्षक", - // "publication.search.results.head": "Publication Search Results", "publication.search.results.head": "प्रकाशन शोध परिणाम", - // "publication-relationships.search.results.head": "Publication Search Results", "publication-relationships.search.results.head": "प्रकाशन शोध परिणाम", - // "publication.search.title": "Publication Search", "publication.search.title": "प्रकाशन शोध", - // "media-viewer.next": "Next", "media-viewer.next": "पुढे", - // "media-viewer.previous": "Previous", "media-viewer.previous": "मागील", - // "media-viewer.playlist": "Playlist", "media-viewer.playlist": "प्लेलिस्ट", - // "suggestion.loading": "Loading ...", "suggestion.loading": "लोड करत आहे ...", - // "suggestion.title": "Publication Claim", "suggestion.title": "प्रकाशन दावा", - // "suggestion.title.breadcrumbs": "Publication Claim", "suggestion.title.breadcrumbs": "प्रकाशन दावा", - // "suggestion.targets.description": "Below you can see all the suggestions ", "suggestion.targets.description": "खाली तुम्हाला सर्व सूचना दिसतील ", - // "suggestion.targets": "Current Suggestions", "suggestion.targets": "सध्याच्या सूचना", - // "suggestion.table.name": "Researcher Name", "suggestion.table.name": "संशोधकाचे नाव", - // "suggestion.table.actions": "Actions", "suggestion.table.actions": "क्रिया", - // "suggestion.button.review": "Review {{ total }} suggestion(s)", "suggestion.button.review": "{{ total }} सूचना पुनरावलोकन करा", - // "suggestion.button.review.title": "Review {{ total }} suggestion(s) for ", "suggestion.button.review.title": "{{ total }} साठी सूचना पुनरावलोकन करा", - // "suggestion.noTargets": "No target found.", "suggestion.noTargets": "कोणताही लक्ष्य आढळला नाही.", - // "suggestion.target.error.service.retrieve": "An error occurred while loading the Suggestion targets", "suggestion.target.error.service.retrieve": "सूचना लक्ष्य लोड करताना त्रुटी आली", - // "suggestion.evidence.type": "Type", "suggestion.evidence.type": "प्रकार", - // "suggestion.evidence.score": "Score", "suggestion.evidence.score": "स्कोअर", - // "suggestion.evidence.notes": "Notes", "suggestion.evidence.notes": "टीप", - // "suggestion.approveAndImport": "Approve & import", "suggestion.approveAndImport": "मंजूर करा आणि आयात करा", - // "suggestion.approveAndImport.success": "The suggestion has been imported successfully. View.", "suggestion.approveAndImport.success": "सूचना यशस्वीरित्या आयात केली गेली आहे. पहा.", - // "suggestion.approveAndImport.bulk": "Approve & import Selected", "suggestion.approveAndImport.bulk": "निवडलेले मंजूर करा आणि आयात करा", - // "suggestion.approveAndImport.bulk.success": "{{ count }} suggestions have been imported successfully ", "suggestion.approveAndImport.bulk.success": "{{ count }} सूचना यशस्वीरित्या आयात केल्या गेल्या आहेत", - // "suggestion.approveAndImport.bulk.error": "{{ count }} suggestions haven't been imported due to unexpected server errors", "suggestion.approveAndImport.bulk.error": "अनपेक्षित सर्व्हर त्रुटींमुळे {{ count }} सूचना आयात केल्या गेल्या नाहीत", - // "suggestion.ignoreSuggestion": "Ignore Suggestion", "suggestion.ignoreSuggestion": "सूचना दुर्लक्षित करा", - // "suggestion.ignoreSuggestion.success": "The suggestion has been discarded", "suggestion.ignoreSuggestion.success": "सूचना रद्द केली गेली आहे", - // "suggestion.ignoreSuggestion.bulk": "Ignore Suggestion Selected", "suggestion.ignoreSuggestion.bulk": "निवडलेली सूचना दुर्लक्षित करा", - // "suggestion.ignoreSuggestion.bulk.success": "{{ count }} suggestions have been discarded ", "suggestion.ignoreSuggestion.bulk.success": "{{ count }} सूचना रद्द केल्या गेल्या आहेत", - // "suggestion.ignoreSuggestion.bulk.error": "{{ count }} suggestions haven't been discarded due to unexpected server errors", "suggestion.ignoreSuggestion.bulk.error": "अनपेक्षित सर्व्हर त्रुटींमुळे {{ count }} सूचना रद्द केल्या गेल्या नाहीत", - // "suggestion.seeEvidence": "See evidence", "suggestion.seeEvidence": "पुरावा पहा", - // "suggestion.hideEvidence": "Hide evidence", "suggestion.hideEvidence": "पुरावा लपवा", - // "suggestion.suggestionFor": "Suggestions for", "suggestion.suggestionFor": "साठी सूचना", - // "suggestion.suggestionFor.breadcrumb": "Suggestions for {{ name }}", "suggestion.suggestionFor.breadcrumb": "{{ name }} साठी सूचना", - // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "OpenAIRE ग्राफ", - // "suggestion.source.openalex": "OpenAlex", "suggestion.source.openalex": "OpenAlex", - // "suggestion.from.source": "from the ", "suggestion.from.source": "पासून", - // "suggestion.count.missing": "You have no publication claims left", "suggestion.count.missing": "आपल्याकडे कोणतेही प्रकाशन दावे शिल्लक नाहीत", - // "suggestion.totalScore": "Total Score", "suggestion.totalScore": "एकूण स्कोअर", - // "suggestion.type.openaire": "OpenAIRE", "suggestion.type.openaire": "OpenAIRE", - // "register-email.title": "New user registration", "register-email.title": "नवीन वापरकर्ता नोंदणी", - // "register-page.create-profile.header": "Create Profile", "register-page.create-profile.header": "प्रोफाइल तयार करा", - // "register-page.create-profile.identification.header": "Identify", "register-page.create-profile.identification.header": "ओळख", - // "register-page.create-profile.identification.email": "Email Address", "register-page.create-profile.identification.email": "ईमेल पत्ता", - // "register-page.create-profile.identification.first-name": "First Name *", "register-page.create-profile.identification.first-name": "पहिले नाव *", - // "register-page.create-profile.identification.first-name.error": "Please fill in a First Name", "register-page.create-profile.identification.first-name.error": "कृपया पहिले नाव भरा", - // "register-page.create-profile.identification.last-name": "Last Name *", "register-page.create-profile.identification.last-name": "आडनाव *", - // "register-page.create-profile.identification.last-name.error": "Please fill in a Last Name", "register-page.create-profile.identification.last-name.error": "कृपया आडनाव भरा", - // "register-page.create-profile.identification.contact": "Contact Telephone", "register-page.create-profile.identification.contact": "संपर्क दूरध्वनी", - // "register-page.create-profile.identification.language": "Language", "register-page.create-profile.identification.language": "भाषा", - // "register-page.create-profile.security.header": "Security", "register-page.create-profile.security.header": "सुरक्षा", - // "register-page.create-profile.security.info": "Please enter a password in the box below, and confirm it by typing it again into the second box.", "register-page.create-profile.security.info": "कृपया खालील बॉक्समध्ये पासवर्ड प्रविष्ट करा आणि दुसऱ्या बॉक्समध्ये पुन्हा टाइप करून त्याची पुष्टी करा.", - // "register-page.create-profile.security.label.password": "Password *", "register-page.create-profile.security.label.password": "पासवर्ड *", - // "register-page.create-profile.security.label.passwordrepeat": "Retype to confirm *", "register-page.create-profile.security.label.passwordrepeat": "पुष्टी करण्यासाठी पुन्हा टाइप करा *", - // "register-page.create-profile.security.error.empty-password": "Please enter a password in the box below.", "register-page.create-profile.security.error.empty-password": "कृपया खालील बॉक्समध्ये पासवर्ड प्रविष्ट करा.", - // "register-page.create-profile.security.error.matching-passwords": "The passwords do not match.", "register-page.create-profile.security.error.matching-passwords": "पासवर्ड जुळत नाहीत.", - // "register-page.create-profile.submit": "Complete Registration", "register-page.create-profile.submit": "नोंदणी पूर्ण करा", - // "register-page.create-profile.submit.error.content": "Something went wrong while registering a new user.", "register-page.create-profile.submit.error.content": "नवीन वापरकर्ता नोंदणी करताना काहीतरी चूक झाली.", - // "register-page.create-profile.submit.error.head": "Registration failed", "register-page.create-profile.submit.error.head": "नोंदणी अयशस्वी", - // "register-page.create-profile.submit.success.content": "The registration was successful. You have been logged in as the created user.", "register-page.create-profile.submit.success.content": "नोंदणी यशस्वी झाली. आपण तयार केलेल्या वापरकर्त्याच्या रूपात लॉग इन केले आहे.", - // "register-page.create-profile.submit.success.head": "Registration completed", "register-page.create-profile.submit.success.head": "नोंदणी पूर्ण झाली", - // "register-page.registration.header": "New user registration", "register-page.registration.header": "नवीन वापरकर्ता नोंदणी", - // "register-page.registration.info": "Register an account to subscribe to collections for email updates, and submit new items to DSpace.", "register-page.registration.info": "संग्रहांसाठी ईमेल अद्यतनांसाठी सदस्यता घेण्यासाठी आणि DSpace मध्ये नवीन आयटम सबमिट करण्यासाठी खाते नोंदणी करा.", - // "register-page.registration.email": "Email Address *", "register-page.registration.email": "ईमेल पत्ता *", - // "register-page.registration.email.error.required": "Please fill in an email address", "register-page.registration.email.error.required": "कृपया ईमेल पत्ता भरा", - // "register-page.registration.email.error.not-email-form": "Please fill in a valid email address.", "register-page.registration.email.error.not-email-form": "कृपया वैध ईमेल पत्ता भरा.", - // "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", - // TODO New key - Add a translation - "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}", + "register-page.registration.email.error.not-valid-domain": "अनुमत डोमेनसह ईमेल वापरा: {{ domains }}", - // "register-page.registration.email.hint": "This address will be verified and used as your login name.", "register-page.registration.email.hint": "हा पत्ता सत्यापित केला जाईल आणि आपले लॉगिन नाव म्हणून वापरला जाईल.", - // "register-page.registration.submit": "Register", "register-page.registration.submit": "नोंदणी करा", - // "register-page.registration.success.head": "Verification email sent", "register-page.registration.success.head": "सत्यापन ईमेल पाठवले", - // "register-page.registration.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", "register-page.registration.success.content": "{{ email }} वर एक विशेष URL आणि पुढील सूचना असलेले ईमेल पाठवले गेले आहे.", - // "register-page.registration.error.head": "Error when trying to register email", "register-page.registration.error.head": "ईमेल नोंदणी करताना त्रुटी", - // "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", - // TODO New key - Add a translation - "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}", + "register-page.registration.error.content": "खालील ईमेल पत्ता नोंदणी करताना त्रुटी आली: {{ email }}", - // "register-page.registration.error.recaptcha": "Error when trying to authenticate with recaptcha", "register-page.registration.error.recaptcha": "recaptcha सह प्रमाणीकरण करताना त्रुटी", - // "register-page.registration.google-recaptcha.must-accept-cookies": "In order to register you must accept the Registration and Password recovery (Google reCaptcha) cookies.", "register-page.registration.google-recaptcha.must-accept-cookies": "नोंदणी करण्यासाठी आपल्याला नोंदणी आणि पासवर्ड पुनर्प्राप्ती (Google reCaptcha) कुकीज स्वीकारणे आवश्यक आहे.", - // "register-page.registration.error.maildomain": "This email address is not on the list of domains who can register. Allowed domains are {{ domains }}", "register-page.registration.error.maildomain": "हा ईमेल पत्ता नोंदणी करू शकणाऱ्या डोमेनच्या यादीत नाही. अनुमत डोमेन {{ domains }} आहेत", - // "register-page.registration.google-recaptcha.open-cookie-settings": "Open cookie settings", "register-page.registration.google-recaptcha.open-cookie-settings": "कुकी सेटिंग्ज उघडा", - // "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", - // "register-page.registration.google-recaptcha.notification.message.error": "An error occurred during reCaptcha verification", "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha सत्यापन दरम्यान त्रुटी आली", - // "register-page.registration.google-recaptcha.notification.message.expired": "Verification expired. Please verify again.", "register-page.registration.google-recaptcha.notification.message.expired": "सत्यापन कालबाह्य झाले. कृपया पुन्हा सत्यापित करा.", - // "register-page.registration.info.maildomain": "Accounts can be registered for mail addresses of the domains", "register-page.registration.info.maildomain": "खाती डोमेनच्या मेल पत्त्यांसाठी नोंदणीकृत केली जाऊ शकतात", - // "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items", "relationships.add.error.relationship-type.content": "दोन आयटममधील संबंध प्रकार {{ type }} साठी कोणताही योग्य जुळणारा सापडला नाही", - // "relationships.add.error.server.content": "The server returned an error", "relationships.add.error.server.content": "सर्व्हरने त्रुटी परत केली", - // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "संबंध जोडता येत नाही", - // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - - // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - - // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - - // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - - // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - - // "relationships.Publication.isContributorOfPublication.Person": "Contributor", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.Person": "Contributor", + "relationships.isAuthorOf": "लेखक", - // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + "relationships.isAuthorOf.Person": "लेखक (व्यक्ती)", - // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + "relationships.isAuthorOf.OrgUnit": "लेखक (संगठनात्मक युनिट)", - // "relationships.Person.isProjectOfPerson.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Person.isProjectOfPerson.Project": "Research Projects", + "relationships.isIssueOf": "जर्नल अंक", - // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + "relationships.isIssueOf.JournalIssue": "जर्नल अंक", - // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + "relationships.isJournalIssueOf": "जर्नल अंक", - // "relationships.Project.isPublicationOfProject.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Project.isPublicationOfProject.Publication": "Publications", + "relationships.isJournalOf": "जर्नल", - // "relationships.Project.isPersonOfProject.Person": "Authors", - // TODO New key - Add a translation - "relationships.Project.isPersonOfProject.Person": "Authors", + "relationships.isJournalVolumeOf": "जर्नल खंड", - // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + "relationships.isOrgUnitOf": "संगठनात्मक युनिट", - // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - // TODO New key - Add a translation - "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + "relationships.isPersonOf": "लेखक", - // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + "relationships.isProjectOf": "संशोधन प्रकल्प", - // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - // TODO New key - Add a translation - "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + "relationships.isPublicationOf": "प्रकाशने", - // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + "relationships.isPublicationOfJournalIssue": "लेख", - // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + "relationships.isSingleJournalOf": "जर्नल", - // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + "relationships.isSingleVolumeOf": "जर्नल खंड", - // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + "relationships.isVolumeOf": "जर्नल खंड", - // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + "relationships.isVolumeOf.JournalVolume": "जर्नल खंड", - // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", - // TODO New key - Add a translation - "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + "relationships.isContributorOf": "योगदानकर्ते", - // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - // TODO New key - Add a translation - "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + "relationships.isContributorOf.OrgUnit": "योगदानकर्ता (संगठनात्मक युनिट)", - // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + "relationships.isContributorOf.Person": "योगदानकर्ता", - // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + "relationships.isFundingAgencyOf.OrgUnit": "फंडर", - // "repository.image.logo": "Repository logo", "repository.image.logo": "संग्रह लोगो", - // "repository.title": "DSpace Repository", "repository.title": "DSpace संग्रह", - // "repository.title.prefix": "DSpace Repository :: ", - // TODO New key - Add a translation - "repository.title.prefix": "DSpace Repository :: ", + "repository.title.prefix": "DSpace संग्रह :: ", - // "resource-policies.add.button": "Add", "resource-policies.add.button": "जोडा", - // "resource-policies.add.for.": "Add a new policy", "resource-policies.add.for.": "नवीन धोरण जोडा", - // "resource-policies.add.for.bitstream": "Add a new Bitstream policy", "resource-policies.add.for.bitstream": "नवीन बिटस्ट्रीम धोरण जोडा", - // "resource-policies.add.for.bundle": "Add a new Bundle policy", "resource-policies.add.for.bundle": "नवीन बंडल धोरण जोडा", - // "resource-policies.add.for.item": "Add a new Item policy", "resource-policies.add.for.item": "नवीन आयटम धोरण जोडा", - // "resource-policies.add.for.community": "Add a new Community policy", "resource-policies.add.for.community": "नवीन समुदाय धोरण जोडा", - // "resource-policies.add.for.collection": "Add a new Collection policy", "resource-policies.add.for.collection": "नवीन संग्रह धोरण जोडा", - // "resource-policies.create.page.heading": "Create new resource policy for ", "resource-policies.create.page.heading": "साठी नवीन संसाधन धोरण तयार करा ", - // "resource-policies.create.page.failure.content": "An error occurred while creating the resource policy.", "resource-policies.create.page.failure.content": "संसाधन धोरण तयार करताना त्रुटी आली.", - // "resource-policies.create.page.success.content": "Operation successful", "resource-policies.create.page.success.content": "ऑपरेशन यशस्वी", - // "resource-policies.create.page.title": "Create new resource policy", "resource-policies.create.page.title": "नवीन संसाधन धोरण तयार करा", - // "resource-policies.delete.btn": "Delete selected", "resource-policies.delete.btn": "निवडलेले हटवा", - // "resource-policies.delete.btn.title": "Delete selected resource policies", "resource-policies.delete.btn.title": "निवडलेली संसाधन धोरणे हटवा", - // "resource-policies.delete.failure.content": "An error occurred while deleting selected resource policies.", "resource-policies.delete.failure.content": "निवडलेली संसाधन धोरणे हटवताना त्रुटी आली.", - // "resource-policies.delete.success.content": "Operation successful", "resource-policies.delete.success.content": "ऑपरेशन यशस्वी", - // "resource-policies.edit.page.heading": "Edit resource policy ", "resource-policies.edit.page.heading": "संसाधन धोरण संपादित करा ", - // "resource-policies.edit.page.failure.content": "An error occurred while editing the resource policy.", "resource-policies.edit.page.failure.content": "संसाधन धोरण संपादित करताना त्रुटी आली.", - // "resource-policies.edit.page.target-failure.content": "An error occurred while editing the target (ePerson or group) of the resource policy.", "resource-policies.edit.page.target-failure.content": "संसाधन धोरणाचे लक्ष्य (ePerson किंवा गट) संपादित करताना त्रुटी आली.", - // "resource-policies.edit.page.other-failure.content": "An error occurred while editing the resource policy. The target (ePerson or group) has been successfully updated.", "resource-policies.edit.page.other-failure.content": "संसाधन धोरण संपादित करताना त्रुटी आली. लक्ष्य (ePerson किंवा गट) यशस्वीरित्या अद्यतनित केले गेले आहे.", - // "resource-policies.edit.page.success.content": "Operation successful", "resource-policies.edit.page.success.content": "ऑपरेशन यशस्वी", - // "resource-policies.edit.page.title": "Edit resource policy", "resource-policies.edit.page.title": "संसाधन धोरण संपादित करा", - // "resource-policies.form.action-type.label": "Select the action type", "resource-policies.form.action-type.label": "क्रिया प्रकार निवडा", - // "resource-policies.form.action-type.required": "You must select the resource policy action.", "resource-policies.form.action-type.required": "आपल्याला संसाधन धोरण क्रिया निवडणे आवश्यक आहे.", - // "resource-policies.form.eperson-group-list.label": "The eperson or group that will be granted the permission", "resource-policies.form.eperson-group-list.label": "परवानगी दिली जाईल असा ePerson किंवा गट", - // "resource-policies.form.eperson-group-list.select.btn": "Select", "resource-policies.form.eperson-group-list.select.btn": "निवडा", - // "resource-policies.form.eperson-group-list.tab.eperson": "Search for a ePerson", "resource-policies.form.eperson-group-list.tab.eperson": "ePerson साठी शोधा", - // "resource-policies.form.eperson-group-list.tab.group": "Search for a group", "resource-policies.form.eperson-group-list.tab.group": "गटासाठी शोधा", - // "resource-policies.form.eperson-group-list.table.headers.action": "Action", "resource-policies.form.eperson-group-list.table.headers.action": "क्रिया", - // "resource-policies.form.eperson-group-list.table.headers.id": "ID", "resource-policies.form.eperson-group-list.table.headers.id": "ID", - // "resource-policies.form.eperson-group-list.table.headers.name": "Name", "resource-policies.form.eperson-group-list.table.headers.name": "नाव", - // "resource-policies.form.eperson-group-list.modal.header": "Cannot change type", "resource-policies.form.eperson-group-list.modal.header": "प्रकार बदलू शकत नाही", - // "resource-policies.form.eperson-group-list.modal.text1.toGroup": "It is not possible to replace an ePerson with a group.", "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePerson ला गटाने बदलणे शक्य नाही.", - // "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "It is not possible to replace a group with an ePerson.", "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "गटाला ePerson ने बदलणे शक्य नाही.", - // "resource-policies.form.eperson-group-list.modal.text2": "Delete the current resource policy and create a new one with the desired type.", "resource-policies.form.eperson-group-list.modal.text2": "सध्याचे संसाधन धोरण हटवा आणि इच्छित प्रकारासह नवीन तयार करा.", - // "resource-policies.form.eperson-group-list.modal.close": "Ok", "resource-policies.form.eperson-group-list.modal.close": "ठीक आहे", - // "resource-policies.form.date.end.label": "End Date", "resource-policies.form.date.end.label": "समाप्ती तारीख", - // "resource-policies.form.date.start.label": "Start Date", "resource-policies.form.date.start.label": "प्रारंभ तारीख", - // "resource-policies.form.description.label": "Description", "resource-policies.form.description.label": "वर्णन", - // "resource-policies.form.name.label": "Name", "resource-policies.form.name.label": "नाव", - // "resource-policies.form.name.hint": "Max 30 characters", "resource-policies.form.name.hint": "कमाल 30 वर्ण", - // "resource-policies.form.policy-type.label": "Select the policy type", "resource-policies.form.policy-type.label": "धोरण प्रकार निवडा", - // "resource-policies.form.policy-type.required": "You must select the resource policy type.", "resource-policies.form.policy-type.required": "आपल्याला संसाधन धोरण प्रकार निवडणे आवश्यक आहे.", - // "resource-policies.table.headers.action": "Action", "resource-policies.table.headers.action": "क्रिया", - // "resource-policies.table.headers.date.end": "End Date", "resource-policies.table.headers.date.end": "समाप्ती तारीख", - // "resource-policies.table.headers.date.start": "Start Date", "resource-policies.table.headers.date.start": "प्रारंभ तारीख", - // "resource-policies.table.headers.edit": "Edit", "resource-policies.table.headers.edit": "संपादित करा", - // "resource-policies.table.headers.edit.group": "Edit group", "resource-policies.table.headers.edit.group": "गट संपादित करा", - // "resource-policies.table.headers.edit.policy": "Edit policy", "resource-policies.table.headers.edit.policy": "धोरण संपादित करा", - // "resource-policies.table.headers.eperson": "EPerson", "resource-policies.table.headers.eperson": "ePerson", - // "resource-policies.table.headers.group": "Group", "resource-policies.table.headers.group": "गट", - // "resource-policies.table.headers.select-all": "Select all", "resource-policies.table.headers.select-all": "सर्व निवडा", - // "resource-policies.table.headers.deselect-all": "Deselect all", "resource-policies.table.headers.deselect-all": "सर्व निवड रद्द करा", - // "resource-policies.table.headers.select": "Select", "resource-policies.table.headers.select": "निवडा", - // "resource-policies.table.headers.deselect": "Deselect", "resource-policies.table.headers.deselect": "निवड रद्द करा", - // "resource-policies.table.headers.id": "ID", "resource-policies.table.headers.id": "ID", - // "resource-policies.table.headers.name": "Name", "resource-policies.table.headers.name": "नाव", - // "resource-policies.table.headers.policyType": "type", "resource-policies.table.headers.policyType": "प्रकार", - // "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream", "resource-policies.table.headers.title.for.bitstream": "बिटस्ट्रीमसाठी धोरणे", - // "resource-policies.table.headers.title.for.bundle": "Policies for Bundle", "resource-policies.table.headers.title.for.bundle": "बंडलसाठी धोरणे", - // "resource-policies.table.headers.title.for.item": "Policies for Item", "resource-policies.table.headers.title.for.item": "आयटमसाठी धोरणे", - // "resource-policies.table.headers.title.for.community": "Policies for Community", "resource-policies.table.headers.title.for.community": "समुदायासाठी धोरणे", - // "resource-policies.table.headers.title.for.collection": "Policies for Collection", "resource-policies.table.headers.title.for.collection": "संग्रहासाठी धोरणे", - // "root.skip-to-content": "Skip to main content", "root.skip-to-content": "मुख्य सामग्रीकडे जा", - // "search.description": "", "search.description": "", - // "search.switch-configuration.title": "Show", "search.switch-configuration.title": "दाखवा", - // "search.title": "Search", "search.title": "शोधा", - // "search.breadcrumbs": "Search", "search.breadcrumbs": "शोधा", - // "search.search-form.placeholder": "Search the repository ...", "search.search-form.placeholder": "संग्रहात शोधा ...", - // "search.filters.remove": "Remove filter of type {{ type }} with value {{ value }}", "search.filters.remove": "प्रकार {{ type }} सह मूल्य {{ value }} चा फिल्टर काढा", - // "search.filters.applied.f.title": "Title", "search.filters.applied.f.title": "शीर्षक", - // "search.filters.applied.f.author": "Author", "search.filters.applied.f.author": "लेखक", - // "search.filters.applied.f.dateIssued.max": "End date", "search.filters.applied.f.dateIssued.max": "समाप्ती तारीख", - // "search.filters.applied.f.dateIssued.min": "Start date", "search.filters.applied.f.dateIssued.min": "प्रारंभ तारीख", - // "search.filters.applied.f.dateSubmitted": "Date submitted", "search.filters.applied.f.dateSubmitted": "सबमिट केलेली तारीख", - // "search.filters.applied.f.discoverable": "Non-discoverable", "search.filters.applied.f.discoverable": "नॉन-डिस्कव्हरेबल", - // "search.filters.applied.f.entityType": "Item Type", "search.filters.applied.f.entityType": "आयटम प्रकार", - // "search.filters.applied.f.has_content_in_original_bundle": "Has files", "search.filters.applied.f.has_content_in_original_bundle": "फाइल्स आहेत", - // "search.filters.applied.f.original_bundle_filenames": "File name", "search.filters.applied.f.original_bundle_filenames": "फाइल नाव", - // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "फाइल वर्णन", - // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", + "search.filters.applied.f.has_geospatial_metadata": "भौगोलिक स्थान आहे", - // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "प्रकार", - // "search.filters.applied.f.namedresourcetype": "Status", "search.filters.applied.f.namedresourcetype": "स्थिती", - // "search.filters.applied.f.subject": "Subject", "search.filters.applied.f.subject": "विषय", - // "search.filters.applied.f.submitter": "Submitter", "search.filters.applied.f.submitter": "सबमिटर", - // "search.filters.applied.f.jobTitle": "Job Title", "search.filters.applied.f.jobTitle": "नोकरीचे शीर्षक", - // "search.filters.applied.f.birthDate.max": "End birth date", "search.filters.applied.f.birthDate.max": "समाप्ती जन्मतारीख", - // "search.filters.applied.f.birthDate.min": "Start birth date", "search.filters.applied.f.birthDate.min": "प्रारंभ जन्मतारीख", - // "search.filters.applied.f.supervisedBy": "Supervised by", "search.filters.applied.f.supervisedBy": "पर्यवेक्षण केलेले", - // "search.filters.applied.f.withdrawn": "Withdrawn", "search.filters.applied.f.withdrawn": "मागे घेतले", - // "search.filters.applied.operator.equals": "", "search.filters.applied.operator.equals": "", - // "search.filters.applied.operator.notequals": " not equals", "search.filters.applied.operator.notequals": " समान नाही", - // "search.filters.applied.operator.authority": "", "search.filters.applied.operator.authority": "", - // "search.filters.applied.operator.notauthority": " not authority", "search.filters.applied.operator.notauthority": " प्राधिकरण नाही", - // "search.filters.applied.operator.contains": " contains", "search.filters.applied.operator.contains": " समाविष्ट आहे", - // "search.filters.applied.operator.notcontains": " not contains", "search.filters.applied.operator.notcontains": " समाविष्ट नाही", - // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", - // "search.filters.applied.f.point": "Coordinates", "search.filters.applied.f.point": "समन्वय", - // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "शीर्षक", - // "search.filters.filter.title.placeholder": "Title", "search.filters.filter.title.placeholder": "शीर्षक", - // "search.filters.filter.title.label": "Search Title", "search.filters.filter.title.label": "शीर्षक शोधा", - // "search.filters.filter.author.head": "Author", "search.filters.filter.author.head": "लेखक", - // "search.filters.filter.author.placeholder": "Author name", "search.filters.filter.author.placeholder": "लेखकाचे नाव", - // "search.filters.filter.author.label": "Search author name", "search.filters.filter.author.label": "लेखकाचे नाव शोधा", - // "search.filters.filter.birthDate.head": "Birth Date", "search.filters.filter.birthDate.head": "जन्मतारीख", - // "search.filters.filter.birthDate.placeholder": "Birth Date", "search.filters.filter.birthDate.placeholder": "जन्मतारीख", - // "search.filters.filter.birthDate.label": "Search birth date", "search.filters.filter.birthDate.label": "जन्मतारीख शोधा", - // "search.filters.filter.collapse": "Collapse filter", "search.filters.filter.collapse": "फिल्टर संकुचित करा", - // "search.filters.filter.creativeDatePublished.head": "Date Published", "search.filters.filter.creativeDatePublished.head": "प्रकाशित तारीख", - // "search.filters.filter.creativeDatePublished.placeholder": "Date Published", "search.filters.filter.creativeDatePublished.placeholder": "प्रकाशित तारीख", - // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "प्रकाशित तारीख शोधा", - // "search.filters.filter.creativeDatePublished.min.label": "Start", "search.filters.filter.creativeDatePublished.min.label": "प्रारंभ", - // "search.filters.filter.creativeDatePublished.max.label": "End", "search.filters.filter.creativeDatePublished.max.label": "समाप्ती", - // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "संपादक", - // "search.filters.filter.creativeWorkEditor.placeholder": "Editor", "search.filters.filter.creativeWorkEditor.placeholder": "संपादक", - // "search.filters.filter.creativeWorkEditor.label": "Search editor", "search.filters.filter.creativeWorkEditor.label": "संपादक शोधा", - // "search.filters.filter.creativeWorkKeywords.head": "Subject", "search.filters.filter.creativeWorkKeywords.head": "विषय", - // "search.filters.filter.creativeWorkKeywords.placeholder": "Subject", "search.filters.filter.creativeWorkKeywords.placeholder": "विषय", - // "search.filters.filter.creativeWorkKeywords.label": "Search subject", "search.filters.filter.creativeWorkKeywords.label": "विषय शोधा", - // "search.filters.filter.creativeWorkPublisher.head": "Publisher", "search.filters.filter.creativeWorkPublisher.head": "प्रकाशक", - // "search.filters.filter.creativeWorkPublisher.placeholder": "Publisher", "search.filters.filter.creativeWorkPublisher.placeholder": "प्रकाशक", - // "search.filters.filter.creativeWorkPublisher.label": "Search publisher", "search.filters.filter.creativeWorkPublisher.label": "प्रकाशक शोधा", - // "search.filters.filter.dateIssued.head": "Date", "search.filters.filter.dateIssued.head": "तारीख", - // "search.filters.filter.dateIssued.max.placeholder": "Maximum Date", "search.filters.filter.dateIssued.max.placeholder": "कमाल तारीख", - // "search.filters.filter.dateIssued.max.label": "End", "search.filters.filter.dateIssued.max.label": "समाप्ती", - // "search.filters.filter.dateIssued.min.placeholder": "Minimum Date", "search.filters.filter.dateIssued.min.placeholder": "किमान तारीख", - // "search.filters.filter.dateIssued.min.label": "Start", "search.filters.filter.dateIssued.min.label": "प्रारंभ", - // "search.filters.filter.dateSubmitted.head": "Date submitted", "search.filters.filter.dateSubmitted.head": "सबमिट केलेली तारीख", - // "search.filters.filter.dateSubmitted.placeholder": "Date submitted", "search.filters.filter.dateSubmitted.placeholder": "सबमिट केलेली तारीख", - // "search.filters.filter.dateSubmitted.label": "Search date submitted", "search.filters.filter.dateSubmitted.label": "सबमिट केलेली तारीख शोधा", - // "search.filters.filter.discoverable.head": "Non-discoverable", "search.filters.filter.discoverable.head": "नॉन-डिस्कव्हरेबल", - // "search.filters.filter.withdrawn.head": "Withdrawn", "search.filters.filter.withdrawn.head": "मागे घेतले", - // "search.filters.filter.entityType.head": "Item Type", "search.filters.filter.entityType.head": "आयटम प्रकार", - // "search.filters.filter.entityType.placeholder": "Item Type", "search.filters.filter.entityType.placeholder": "आयटम प्रकार", - // "search.filters.filter.entityType.label": "Search item type", "search.filters.filter.entityType.label": "आयटम प्रकार शोधा", - // "search.filters.filter.expand": "Expand filter", "search.filters.filter.expand": "फिल्टर विस्तृत करा", - // "search.filters.filter.has_content_in_original_bundle.head": "Has files", "search.filters.filter.has_content_in_original_bundle.head": "फाइल्स आहेत", - // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "फाइल नाव", - // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", "search.filters.filter.has_geospatial_metadata.head": "भौगोलिक स्थान आहे", - // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "फाइल नाव", - // "search.filters.filter.original_bundle_filenames.label": "Search File name", "search.filters.filter.original_bundle_filenames.label": "फाइल नाव शोधा", - // "search.filters.filter.original_bundle_descriptions.head": "File description", "search.filters.filter.original_bundle_descriptions.head": "फाइल वर्णन", - // "search.filters.filter.original_bundle_descriptions.placeholder": "File description", "search.filters.filter.original_bundle_descriptions.placeholder": "फाइल वर्णन", - // "search.filters.filter.original_bundle_descriptions.label": "Search File description", "search.filters.filter.original_bundle_descriptions.label": "फाइल वर्णन शोधा", - // "search.filters.filter.itemtype.head": "Type", "search.filters.filter.itemtype.head": "प्रकार", - // "search.filters.filter.itemtype.placeholder": "Type", "search.filters.filter.itemtype.placeholder": "प्रकार", - // "search.filters.filter.itemtype.label": "Search type", "search.filters.filter.itemtype.label": "प्रकार शोधा", - // "search.filters.filter.jobTitle.head": "Job Title", "search.filters.filter.jobTitle.head": "नोकरीचे शीर्षक", - // "search.filters.filter.jobTitle.placeholder": "Job Title", "search.filters.filter.jobTitle.placeholder": "नोकरीचे शीर्षक", - // "search.filters.filter.jobTitle.label": "Search job title", "search.filters.filter.jobTitle.label": "नोकरीचे शीर्षक शोधा", - // "search.filters.filter.knowsLanguage.head": "Known language", "search.filters.filter.knowsLanguage.head": "ज्ञात भाषा", - // "search.filters.filter.knowsLanguage.placeholder": "Known language", "search.filters.filter.knowsLanguage.placeholder": "ज्ञात भाषा", - // "search.filters.filter.knowsLanguage.label": "Search known language", "search.filters.filter.knowsLanguage.label": "ज्ञात भाषा शोधा", - // "search.filters.filter.namedresourcetype.head": "Status", "search.filters.filter.namedresourcetype.head": "स्थिती", - // "search.filters.filter.namedresourcetype.placeholder": "Status", "search.filters.filter.namedresourcetype.placeholder": "स्थिती", - // "search.filters.filter.namedresourcetype.label": "Search status", "search.filters.filter.namedresourcetype.label": "स्थिती शोधा", - // "search.filters.filter.objectpeople.head": "People", "search.filters.filter.objectpeople.head": "लोक", - // "search.filters.filter.objectpeople.placeholder": "People", "search.filters.filter.objectpeople.placeholder": "लोक", - // "search.filters.filter.objectpeople.label": "Search people", "search.filters.filter.objectpeople.label": "लोक शोधा", - // "search.filters.filter.organizationAddressCountry.head": "Country", "search.filters.filter.organizationAddressCountry.head": "देश", - // "search.filters.filter.organizationAddressCountry.placeholder": "Country", "search.filters.filter.organizationAddressCountry.placeholder": "देश", - // "search.filters.filter.organizationAddressCountry.label": "Search country", "search.filters.filter.organizationAddressCountry.label": "देश शोधा", - // "search.filters.filter.organizationAddressLocality.head": "City", "search.filters.filter.organizationAddressLocality.head": "शहर", - // "search.filters.filter.organizationAddressLocality.placeholder": "City", "search.filters.filter.organizationAddressLocality.placeholder": "शहर", - // "search.filters.filter.organizationAddressLocality.label": "Search city", "search.filters.filter.organizationAddressLocality.label": "शहर शोधा", - // "search.filters.filter.organizationFoundingDate.head": "Date Founded", "search.filters.filter.organizationFoundingDate.head": "स्थापनेची तारीख", - // "search.filters.filter.organizationFoundingDate.placeholder": "Date Founded", "search.filters.filter.organizationFoundingDate.placeholder": "स्थापनेची तारीख", - // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "स्थापनेची तारीख शोधा", - // "search.filters.filter.organizationFoundingDate.min.label": "Start", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.min.label": "Start", - - // "search.filters.filter.organizationFoundingDate.max.label": "End", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.max.label": "End", - - // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "व्याप्ती", - // "search.filters.filter.scope.placeholder": "Scope filter", "search.filters.filter.scope.placeholder": "व्याप्ती फिल्टर", - // "search.filters.filter.scope.label": "Search scope filter", "search.filters.filter.scope.label": "व्याप्ती फिल्टर शोधा", - // "search.filters.filter.show-less": "Collapse", "search.filters.filter.show-less": "संकुचित करा", - // "search.filters.filter.show-more": "Show more", "search.filters.filter.show-more": "अधिक दाखवा", - // "search.filters.filter.subject.head": "Subject", "search.filters.filter.subject.head": "विषय", - // "search.filters.filter.subject.placeholder": "Subject", "search.filters.filter.subject.placeholder": "विषय", - // "search.filters.filter.subject.label": "Search subject", "search.filters.filter.subject.label": "विषय शोधा", - // "search.filters.filter.submitter.head": "Submitter", "search.filters.filter.submitter.head": "सबमिटर", - // "search.filters.filter.submitter.placeholder": "Submitter", "search.filters.filter.submitter.placeholder": "सबमिटर", - // "search.filters.filter.submitter.label": "Search submitter", "search.filters.filter.submitter.label": "सबमिटर शोधा", - // "search.filters.filter.show-tree": "Browse {{ name }} tree", "search.filters.filter.show-tree": "{{ name }} वृक्ष ब्राउझ करा", - // "search.filters.filter.funding.head": "Funding", "search.filters.filter.funding.head": "फंडिंग", - // "search.filters.filter.funding.placeholder": "Funding", "search.filters.filter.funding.placeholder": "फंडिंग", - // "search.filters.filter.supervisedBy.head": "Supervised By", "search.filters.filter.supervisedBy.head": "पर्यवेक्षण केलेले", - // "search.filters.filter.supervisedBy.placeholder": "Supervised By", "search.filters.filter.supervisedBy.placeholder": "पर्यवेक्षण केलेले", - // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "पर्यवेक्षण केलेले शोधा", - // "search.filters.filter.access_status.head": "Access type", "search.filters.filter.access_status.head": "प्रवेश प्रकार", - // "search.filters.filter.access_status.placeholder": "Access type", "search.filters.filter.access_status.placeholder": "प्रवेश प्रकार", - // "search.filters.filter.access_status.label": "Search by access type", "search.filters.filter.access_status.label": "प्रवेश प्रकारानुसार शोधा", - // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "जर्नल अंक", - // "search.filters.entityType.JournalVolume": "Journal Volume", "search.filters.entityType.JournalVolume": "जर्नल खंड", - // "search.filters.entityType.OrgUnit": "Organizational Unit", "search.filters.entityType.OrgUnit": "संगठनात्मक युनिट", - // "search.filters.entityType.Person": "Person", "search.filters.entityType.Person": "व्यक्ती", - // "search.filters.entityType.Project": "Project", "search.filters.entityType.Project": "प्रकल्प", - // "search.filters.entityType.Publication": "Publication", "search.filters.entityType.Publication": "प्रकाशन", - // "search.filters.has_content_in_original_bundle.true": "Yes", "search.filters.has_content_in_original_bundle.true": "होय", - // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "नाही", - // "search.filters.has_geospatial_metadata.true": "Yes", "search.filters.has_geospatial_metadata.true": "होय", - // "search.filters.has_geospatial_metadata.false": "No", "search.filters.has_geospatial_metadata.false": "नाही", - // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "नाही", - // "search.filters.discoverable.false": "Yes", "search.filters.discoverable.false": "होय", - // "search.filters.namedresourcetype.Archived": "Archived", "search.filters.namedresourcetype.Archived": "संग्रहित", - // "search.filters.namedresourcetype.Validation": "Validation", "search.filters.namedresourcetype.Validation": "प्रमाणीकरण", - // "search.filters.namedresourcetype.Waiting for Controller": "Waiting for reviewer", "search.filters.namedresourcetype.Waiting for Controller": "पुनरावलोककाची प्रतीक्षा", - // "search.filters.namedresourcetype.Workflow": "Workflow", "search.filters.namedresourcetype.Workflow": "वर्कफ्लो", - // "search.filters.namedresourcetype.Workspace": "Workspace", "search.filters.namedresourcetype.Workspace": "वर्कस्पेस", - // "search.filters.withdrawn.true": "Yes", "search.filters.withdrawn.true": "होय", - // "search.filters.withdrawn.false": "No", "search.filters.withdrawn.false": "नाही", - // "search.filters.head": "Filters", "search.filters.head": "फिल्टर", - // "search.filters.reset": "Reset filters", "search.filters.reset": "फिल्टर रीसेट करा", - // "search.filters.search.submit": "Submit", "search.filters.search.submit": "सबमिट करा", - // "search.filters.operator.equals.text": "Equals", "search.filters.operator.equals.text": "समान", - // "search.filters.operator.notequals.text": "Not Equals", "search.filters.operator.notequals.text": "समान नाही", - // "search.filters.operator.authority.text": "Authority", "search.filters.operator.authority.text": "प्राधिकरण", - // "search.filters.operator.notauthority.text": "Not Authority", "search.filters.operator.notauthority.text": "प्राधिकरण नाही", - // "search.filters.operator.contains.text": "Contains", "search.filters.operator.contains.text": "समाविष्ट आहे", - // "search.filters.operator.notcontains.text": "Not Contains", "search.filters.operator.notcontains.text": "समाविष्ट नाही", - // "search.filters.operator.query.text": "Query", "search.filters.operator.query.text": "क्वेरी", - // "search.form.search": "Search", "search.form.search": "शोधा", - // "search.form.search_dspace": "All repository", "search.form.search_dspace": "संपूर्ण संग्रह", - // "search.form.scope.all": "All of DSpace", "search.form.scope.all": "संपूर्ण DSpace", - // "search.results.head": "Search Results", "search.results.head": "शोध परिणाम", - // "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting", "search.results.no-results": "आपल्या शोधाला कोणतेही परिणाम मिळाले नाहीत. आपल्याला हवे असलेले शोधण्यात अडचण येत आहे का? प्रयत्न करा", - // "search.results.no-results-link": "quotes around it", "search.results.no-results-link": "त्याच्या भोवती उद्धरण चिन्हे लावा", - // "search.results.empty": "Your search returned no results.", "search.results.empty": "आपल्या शोधाला कोणतेही परिणाम मिळाले नाहीत.", - // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", "search.results.geospatial-map.empty": "या पृष्ठावर भौगोलिक स्थानांसह कोणतेही परिणाम नाहीत", - // "search.results.view-result": "View", "search.results.view-result": "पहा", - // "search.results.response.500": "An error occurred during query execution, please try again later", "search.results.response.500": "क्वेरी कार्यान्वित करताना त्रुटी आली, कृपया नंतर पुन्हा प्रयत्न करा", - // "default.search.results.head": "Search Results", "default.search.results.head": "शोध परिणाम", - // "default-relationships.search.results.head": "Search Results", "default-relationships.search.results.head": "शोध परिणाम", - // "search.sidebar.close": "Back to results", "search.sidebar.close": "परिणामांकडे परत जा", - // "search.sidebar.filters.title": "Filters", "search.sidebar.filters.title": "फिल्टर", - // "search.sidebar.open": "Search Tools", "search.sidebar.open": "शोध साधने", - // "search.sidebar.results": "results", "search.sidebar.results": "परिणाम", - // "search.sidebar.settings.rpp": "Results per page", "search.sidebar.settings.rpp": "प्रति पृष्ठ परिणाम", - // "search.sidebar.settings.sort-by": "Sort By", "search.sidebar.settings.sort-by": "क्रमवारी लावा", - // "search.sidebar.advanced-search.title": "Advanced Search", "search.sidebar.advanced-search.title": "प्रगत शोध", - // "search.sidebar.advanced-search.filter-by": "Filter by", "search.sidebar.advanced-search.filter-by": "फिल्टर द्वारे", - // "search.sidebar.advanced-search.filters": "Filters", "search.sidebar.advanced-search.filters": "फिल्टर", - // "search.sidebar.advanced-search.operators": "Operators", "search.sidebar.advanced-search.operators": "ऑपरेटर", - // "search.sidebar.advanced-search.add": "Add", "search.sidebar.advanced-search.add": "जोडा", - // "search.sidebar.settings.title": "Settings", "search.sidebar.settings.title": "सेटिंग्ज", - // "search.view-switch.show-detail": "Show detail", "search.view-switch.show-detail": "तपशील दाखवा", - // "search.view-switch.show-grid": "Show as grid", "search.view-switch.show-grid": "ग्रिड म्हणून दाखवा", - // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "यादी म्हणून दाखवा", - // "search.view-switch.show-geospatialMap": "Show as map", "search.view-switch.show-geospatialMap": "नकाशा म्हणून दाखवा", - // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "आयटम निवड रद्द करा", - // "selectable-list-item-control.select": "Select item", "selectable-list-item-control.select": "आयटम निवडा", - // "sorting.ASC": "Ascending", "sorting.ASC": "आरोही", - // "sorting.DESC": "Descending", "sorting.DESC": "अवरोही", - // "sorting.dc.title.ASC": "Title Ascending", "sorting.dc.title.ASC": "शीर्षक आरोही", - // "sorting.dc.title.DESC": "Title Descending", "sorting.dc.title.DESC": "शीर्षक अवरोही", - // "sorting.score.ASC": "Least Relevant", "sorting.score.ASC": "कमी संबंधित", - // "sorting.score.DESC": "Most Relevant", "sorting.score.DESC": "सर्वाधिक संबंधित", - // "sorting.dc.date.issued.ASC": "Date Issued Ascending", "sorting.dc.date.issued.ASC": "प्रकाशित तारीख आरोही", - // "sorting.dc.date.issued.DESC": "Date Issued Descending", "sorting.dc.date.issued.DESC": "प्रकाशित तारीख अवरोही", - // "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending", "sorting.dc.date.accessioned.ASC": "प्रवेश तारीख आरोही", - // "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending", "sorting.dc.date.accessioned.DESC": "प्रवेश तारीख अवरोही", - // "sorting.lastModified.ASC": "Last modified Ascending", "sorting.lastModified.ASC": "शेवटचे बदलले आरोही", - // "sorting.lastModified.DESC": "Last modified Descending", "sorting.lastModified.DESC": "शेवटचे बदलले अवरोही", - // "sorting.person.familyName.ASC": "Surname Ascending", "sorting.person.familyName.ASC": "आडनाव आरोही", - // "sorting.person.familyName.DESC": "Surname Descending", "sorting.person.familyName.DESC": "आडनाव अवरोही", - // "sorting.person.givenName.ASC": "Name Ascending", "sorting.person.givenName.ASC": "नाव आरोही", - // "sorting.person.givenName.DESC": "Name Descending", "sorting.person.givenName.DESC": "नाव अवरोही", - // "sorting.person.birthDate.ASC": "Birth Date Ascending", "sorting.person.birthDate.ASC": "जन्मतारीख आरोही", - // "sorting.person.birthDate.DESC": "Birth Date Descending", "sorting.person.birthDate.DESC": "जन्मतारीख अवरोही", - // "statistics.title": "Statistics", "statistics.title": "आकडेवारी", - // "statistics.header": "Statistics for {{ scope }}", "statistics.header": "{{ scope }} साठी आकडेवारी", - // "statistics.breadcrumbs": "Statistics", "statistics.breadcrumbs": "आकडेवारी", - // "statistics.page.no-data": "No data available", "statistics.page.no-data": "डेटा उपलब्ध नाही", - // "statistics.table.no-data": "No data available", "statistics.table.no-data": "डेटा उपलब्ध नाही", - // "statistics.table.title.TotalVisits": "Total visits", "statistics.table.title.TotalVisits": "एकूण भेटी", - // "statistics.table.title.TotalVisitsPerMonth": "Total visits per month", "statistics.table.title.TotalVisitsPerMonth": "प्रति महिना एकूण भेटी", - // "statistics.table.title.TotalDownloads": "File Visits", "statistics.table.title.TotalDownloads": "फाइल भेटी", - // "statistics.table.title.TopCountries": "Top country views", "statistics.table.title.TopCountries": "शीर्ष देश दृश्ये", - // "statistics.table.title.TopCities": "Top city views", "statistics.table.title.TopCities": "शीर्ष शहर दृश्ये", - // "statistics.table.header.views": "Views", "statistics.table.header.views": "दृश्ये", - // "statistics.table.no-name": "(object name could not be loaded)", "statistics.table.no-name": "(ऑब्जेक्ट नाव लोड केले जाऊ शकले नाही)", - // "submission.edit.breadcrumbs": "Edit Submission", "submission.edit.breadcrumbs": "सबमिशन संपादित करा", - // "submission.edit.title": "Edit Submission", "submission.edit.title": "सबमिशन संपादित करा", - // "submission.general.cancel": "Cancel", "submission.general.cancel": "रद्द करा", - // "submission.general.cannot_submit": "You don't have permission to make a new submission.", "submission.general.cannot_submit": "आपल्याला नवीन सबमिशन करण्याची परवानगी नाही.", - // "submission.general.deposit": "Deposit", "submission.general.deposit": "ठेव", - // "submission.general.discard.confirm.cancel": "Cancel", "submission.general.discard.confirm.cancel": "रद्द करा", - // "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?", "submission.general.discard.confirm.info": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. आपल्याला खात्री आहे?", - // "submission.general.discard.confirm.submit": "Yes, I'm sure", "submission.general.discard.confirm.submit": "होय, मला खात्री आहे", - // "submission.general.discard.confirm.title": "Discard submission", "submission.general.discard.confirm.title": "सबमिशन रद्द करा", - // "submission.general.discard.submit": "Discard", "submission.general.discard.submit": "रद्द करा", - // "submission.general.back.submit": "Back", "submission.general.back.submit": "मागे", - // "submission.general.info.saved": "Saved", "submission.general.info.saved": "जतन केले", - // "submission.general.info.pending-changes": "Unsaved changes", "submission.general.info.pending-changes": "न जतन केलेले बदल", - // "submission.general.save": "Save", "submission.general.save": "जतन करा", - // "submission.general.save-later": "Save for later", "submission.general.save-later": "नंतर जतन करा", - // "submission.import-external.page.title": "Import metadata from an external source", "submission.import-external.page.title": "बाह्य स्रोतातून मेटाडेटा आयात करा", - // "submission.import-external.title": "Import metadata from an external source", "submission.import-external.title": "बाह्य स्रोतातून मेटाडेटा आयात करा", - // "submission.import-external.title.Journal": "Import a journal from an external source", "submission.import-external.title.Journal": "बाह्य स्रोतातून जर्नल आयात करा", - // "submission.import-external.title.JournalIssue": "Import a journal issue from an external source", "submission.import-external.title.JournalIssue": "बाह्य स्रोतातून जर्नल अंक आयात करा", - // "submission.import-external.title.JournalVolume": "Import a journal volume from an external source", "submission.import-external.title.JournalVolume": "बाह्य स्रोतातून जर्नल खंड आयात करा", - // "submission.import-external.title.OrgUnit": "Import a publisher from an external source", "submission.import-external.title.OrgUnit": "बाह्य स्रोतातून प्रकाशक आयात करा", - // "submission.import-external.title.Person": "Import a person from an external source", "submission.import-external.title.Person": "बाह्य स्रोतातून व्यक्ती आयात करा", - // "submission.import-external.title.Project": "Import a project from an external source", "submission.import-external.title.Project": "बाह्य स्रोतातून प्रकल्प आयात करा", - // "submission.import-external.title.Publication": "Import a publication from an external source", "submission.import-external.title.Publication": "बाह्य स्रोतातून प्रकाशन आयात करा", - // "submission.import-external.title.none": "Import metadata from an external source", "submission.import-external.title.none": "बाह्य स्रोतातून मेटाडेटा आयात करा", - // "submission.import-external.page.hint": "Enter a query above to find items from the web to import in to DSpace.", "submission.import-external.page.hint": "DSpace मध्ये आयात करण्यासाठी वेबवरून आयटम शोधण्यासाठी वरील क्वेरी प्रविष्ट करा.", - // "submission.import-external.back-to-my-dspace": "Back to MyDSpace", "submission.import-external.back-to-my-dspace": "MyDSpace कडे परत जा", - // "submission.import-external.search.placeholder": "Search the external source", "submission.import-external.search.placeholder": "बाह्य स्रोत शोधा", - // "submission.import-external.search.button": "Search", "submission.import-external.search.button": "शोधा", - // "submission.import-external.search.button.hint": "Write some words to search", "submission.import-external.search.button.hint": "शोधण्यासाठी काही शब्द लिहा", - // "submission.import-external.search.source.hint": "Pick an external source", "submission.import-external.search.source.hint": "बाह्य स्रोत निवडा", - // "submission.import-external.source.arxiv": "arXiv", "submission.import-external.source.arxiv": "arXiv", - // "submission.import-external.source.ads": "NASA/ADS", "submission.import-external.source.ads": "NASA/ADS", - // "submission.import-external.source.cinii": "CiNii", "submission.import-external.source.cinii": "CiNii", - // "submission.import-external.source.crossref": "Crossref", "submission.import-external.source.crossref": "Crossref", - // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", - // "submission.import-external.source.dataciteProject": "DataCite", "submission.import-external.source.dataciteProject": "DataCite", - // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", - // "submission.import-external.source.scielo": "SciELO", "submission.import-external.source.scielo": "SciELO", - // "submission.import-external.source.scopus": "Scopus", "submission.import-external.source.scopus": "Scopus", - // "submission.import-external.source.vufind": "VuFind", "submission.import-external.source.vufind": "VuFind", - // "submission.import-external.source.wos": "Web Of Science", "submission.import-external.source.wos": "Web Of Science", - // "submission.import-external.source.orcidWorks": "ORCID", "submission.import-external.source.orcidWorks": "ORCID", - // "submission.import-external.source.epo": "European Patent Office (EPO)", "submission.import-external.source.epo": "European Patent Office (EPO)", - // "submission.import-external.source.loading": "Loading ...", "submission.import-external.source.loading": "लोड करत आहे ...", - // "submission.import-external.source.sherpaJournal": "SHERPA Journals", "submission.import-external.source.sherpaJournal": "SHERPA Journals", - // "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", "submission.import-external.source.sherpaJournalIssn": "ISSN द्वारे SHERPA Journals", - // "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", - // "submission.import-external.source.openaire": "OpenAIRE Search by Authors", "submission.import-external.source.openaire": "लेखकांद्वारे OpenAIRE शोधा", - // "submission.import-external.source.openaireTitle": "OpenAIRE Search by Title", "submission.import-external.source.openaireTitle": "शीर्षकाद्वारे OpenAIRE शोधा", - // "submission.import-external.source.openaireFunding": "OpenAIRE Search by Funder", "submission.import-external.source.openaireFunding": "फंडरद्वारे OpenAIRE शोधा", - // "submission.import-external.source.orcid": "ORCID", "submission.import-external.source.orcid": "ORCID", - // "submission.import-external.source.pubmed": "Pubmed", "submission.import-external.source.pubmed": "Pubmed", - // "submission.import-external.source.pubmedeu": "Pubmed Europe", "submission.import-external.source.pubmedeu": "Pubmed Europe", - // "submission.import-external.source.lcname": "Library of Congress Names", "submission.import-external.source.lcname": "Library of Congress Names", - // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Research Organization Registry (ROR)", - // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", "submission.import-external.source.openalexPublication": "शीर्षकाद्वारे OpenAlex शोधा", - // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", "submission.import-external.source.openalexPublicationByAuthorId": "लेखक आयडीद्वारे OpenAlex शोधा", - // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", "submission.import-external.source.openalexPublicationByDOI": "DOI द्वारे OpenAlex शोधा", - // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", "submission.import-external.source.openalexPerson": "नावाद्वारे OpenAlex शोधा", - // "submission.import-external.source.openalexJournal": "OpenAlex Journals", "submission.import-external.source.openalexJournal": "OpenAlex Journals", - // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", - // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", - // "submission.import-external.source.openalexFunder": "OpenAlex Funders", "submission.import-external.source.openalexFunder": "OpenAlex Funders", - // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "आयटम पूर्वावलोकन", - // "submission.import-external.preview.title.Publication": "Publication Preview", "submission.import-external.preview.title.Publication": "प्रकाशन पूर्वावलोकन", - // "submission.import-external.preview.title.none": "Item Preview", "submission.import-external.preview.title.none": "आयटम पूर्वावलोकन", - // "submission.import-external.preview.title.Journal": "Journal Preview", "submission.import-external.preview.title.Journal": "जर्नल पूर्वावलोकन", - // "submission.import-external.preview.title.OrgUnit": "Organizational Unit Preview", "submission.import-external.preview.title.OrgUnit": "संगठनात्मक युनिट पूर्वावलोकन", - // "submission.import-external.preview.title.Person": "Person Preview", "submission.import-external.preview.title.Person": "व्यक्ती पूर्वावलोकन", - // "submission.import-external.preview.title.Project": "Project Preview", "submission.import-external.preview.title.Project": "प्रकल्प पूर्वावलोकन", - // "submission.import-external.preview.subtitle": "The metadata below was imported from an external source. It will be pre-filled when you start the submission.", "submission.import-external.preview.subtitle": "खालील मेटाडेटा बाह्य स्रोतातून आयात केले गेले आहे. आपण सबमिशन सुरू केल्यावर ते पूर्व-भरले जाईल.", - // "submission.import-external.preview.button.import": "Start submission", "submission.import-external.preview.button.import": "सबमिशन सुरू करा", - // "submission.import-external.preview.error.import.title": "Submission error", "submission.import-external.preview.error.import.title": "सबमिशन त्रुटी", - // "submission.import-external.preview.error.import.body": "An error occurs during the external source entry import process.", "submission.import-external.preview.error.import.body": "बाह्य स्रोत प्रविष्टी आयात प्रक्रियेदरम्यान त्रुटी आली.", - // "submission.sections.describe.relationship-lookup.close": "Close", "submission.sections.describe.relationship-lookup.close": "बंद करा", - // "submission.sections.describe.relationship-lookup.external-source.added": "Successfully added local entry to the selection", "submission.sections.describe.relationship-lookup.external-source.added": "स्थानिक प्रविष्टी यशस्वीरित्या निवडमध्ये जोडली", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Import remote author", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "दूरस्थ लेखक आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Import remote journal", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "दूरस्थ जर्नल आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Import remote journal issue", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "दूरस्थ जर्नल अंक आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Import remote journal volume", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "दूरस्थ जर्नल खंड आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Import remote item", "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "दूरस्थ आयटम आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Import remote event", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "दूरस्थ कार्यक्रम आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Import remote product", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "दूरस्थ उत्पादन आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Import remote equipment", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "दूरस्थ उपकरणे आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "Import remote organizational unit", "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "दूरस्थ संगठनात्मक युनिट आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "Import remote fund", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "दूरस्थ निधी आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Import remote person", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "दूरस्थ व्यक्ती आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Import remote patent", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "दूरस्थ पेटंट आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Import remote project", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "दूरस्थ प्रकल्प आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Import remote publication", "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "दूरस्थ प्रकाशन आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "नवीन घटक जोडला!", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project", "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Import Remote Author", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "दूरस्थ लेखक आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Successfully added local author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "स्थानिक लेखक यशस्वीरित्या निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Successfully imported and added external author to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "बाह्य लेखक यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Authority", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "प्राधिकरण", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Import as a new local authority entry", "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "नवीन स्थानिक प्राधिकरण प्रविष्टी म्हणून आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Cancel", "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "रद्द करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Select a collection to import new entries to", "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "नवीन प्रविष्टी आयात करण्यासाठी संग्रह निवडा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "Entities", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "घटक", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Import as a new local entity", "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "नवीन स्थानिक घटक म्हणून आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC Name मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "Importing from OpenAIRE", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa Journal मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Importing from Sherpa Publisher", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa Publisher मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Importing from PubMed", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Importing from arXiv", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv मधून आयात करत आहे", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "Import from ROR", "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR मधून आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Import", "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Import Remote Journal", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "दूरस्थ जर्नल आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Successfully added local journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "स्थानिक जर्नल यशस्वीरित्या निवडमध्ये जोडले", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Successfully imported and added external journal to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "बाह्य जर्नल यशस्वीरित्या आयात केले आणि निवडमध्ये जोडले", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Import Remote Journal Issue", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "दूरस्थ जर्नल अंक आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Successfully added local journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "स्थानिक जर्नल अंक यशस्वीरित्या निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Successfully imported and added external journal issue to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "बाह्य जर्नल अंक यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Import Remote Journal Volume", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "दूरस्थ जर्नल खंड आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Successfully added local journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "स्थानिक जर्नल खंड यशस्वीरित्या निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Successfully imported and added external journal volume to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "बाह्य जर्नल खंड यशस्वीरित्या आयात केला आणि निवडमध्ये जोडला", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "स्थानिक जुळणारे निवडा:", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "Import Remote Organization", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "दूरस्थ संगठन आयात करा", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "Successfully added local organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "स्थानिक संगठन यशस्वीरित्या निवडमध्ये जोडले", - // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "Successfully imported and added external organization to the selection", "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "बाह्य संगठन यशस्वीरित्या आयात केले आणि निवडमध्ये जोडले", - // "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Deselect all", "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "सर्व निवड रद्द करा", - // "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Deselect page", "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "पृष्ठ निवड रद्द करा", - // "submission.sections.describe.relationship-lookup.search-tab.loading": "Loading...", "submission.sections.describe.relationship-lookup.search-tab.loading": "लोड करत आहे...", - // "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Search query", "submission.sections.describe.relationship-lookup.search-tab.placeholder": "शोध क्वेरी", - // "submission.sections.describe.relationship-lookup.search-tab.search": "Go", "submission.sections.describe.relationship-lookup.search-tab.search": "जा", - // "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "शोधा...", - // "submission.sections.describe.relationship-lookup.search-tab.select-all": "Select all", "submission.sections.describe.relationship-lookup.search-tab.select-all": "सर्व निवडा", - // "submission.sections.describe.relationship-lookup.search-tab.select-page": "Select page", "submission.sections.describe.relationship-lookup.search-tab.select-page": "पृष्ठ निवडा", - // "submission.sections.describe.relationship-lookup.selected": "Selected {{ size }} items", "submission.sections.describe.relationship-lookup.selected": "निवडलेले {{ size }} आयटम", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "स्थानिक लेखक ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "स्थानिक जर्नल ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Local Projects ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "स्थानिक प्रकल्प ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Local Publications ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "स्थानिक प्रकाशने ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Local Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "स्थानिक लेखक ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Local Organizational Units ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "स्थानिक संगठनात्मक युनिट ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Local Data Packages ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "स्थानिक डेटा पॅकेजेस ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Local Data Files ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "स्थानिक डेटा फाइल्स ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Local Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "स्थानिक जर्नल ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "स्थानिक जर्नल अंक ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "स्थानिक जर्नल अंक ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "स्थानिक जर्नल खंड ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "स्थानिक जर्नल खंड ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "स्थानिक जर्नल खंड ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Search by Authors ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "लेखकांद्वारे OpenAIRE शोधा ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Search by Title ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "शीर्षकाद्वारे OpenAIRE शोधा ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Search by Funder ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "फंडरद्वारे OpenAIRE शोधा ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN द्वारे Sherpa Journals ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "फंडिंग एजन्सी शोधा", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Search for Funding", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "फंडिंग शोधा", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Search for Organizational Units", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "संगठनात्मक युनिट शोधा", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "प्रकल्पाचा फंडर", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "Publication of the Author", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "लेखकाचे प्रकाशन", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "OrgUnit of the Project", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "प्रकल्पाचे संगठनात्मक युनिट", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project", "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects", "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "प्रकल्पाचा फंडर", - // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - - // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "शोधा...", - // "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Current Selection ({{ count }})", "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "सध्याची निवड ({{ count }})", - // "submission.sections.describe.relationship-lookup.title.Journal": "Journal", "submission.sections.describe.relationship-lookup.title.Journal": "जर्नल", - // "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Journal Issues", "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "जर्नल अंक", - // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "जर्नल अंक", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "जर्नल खंड", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "जर्नल खंड", - // "submission.sections.describe.relationship-lookup.title.JournalVolume": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.JournalVolume": "जर्नल खंड", - // "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "Journals", "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "जर्नल्स", - // "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Authors", "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "लेखक", - // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Funding Agency", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "निधी संस्था", - // "submission.sections.describe.relationship-lookup.title.Project": "Projects", "submission.sections.describe.relationship-lookup.title.Project": "प्रकल्प", - // "submission.sections.describe.relationship-lookup.title.Publication": "Publications", "submission.sections.describe.relationship-lookup.title.Publication": "प्रकाशने", - // "submission.sections.describe.relationship-lookup.title.Person": "Authors", "submission.sections.describe.relationship-lookup.title.Person": "लेखक", - // "submission.sections.describe.relationship-lookup.title.OrgUnit": "Organizational Units", "submission.sections.describe.relationship-lookup.title.OrgUnit": "संघटनात्मक युनिट्स", - // "submission.sections.describe.relationship-lookup.title.DataPackage": "Data Packages", "submission.sections.describe.relationship-lookup.title.DataPackage": "डेटा पॅकेजेस", - // "submission.sections.describe.relationship-lookup.title.DataFile": "Data Files", "submission.sections.describe.relationship-lookup.title.DataFile": "डेटा फाइल्स", - // "submission.sections.describe.relationship-lookup.title.Funding Agency": "Funding Agency", "submission.sections.describe.relationship-lookup.title.Funding Agency": "निधी संस्था", - // "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Funding", "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "निधी", - // "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Parent Organizational Unit", "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "पालक संघटनात्मक युनिट", - // "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "Publication", "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "प्रकाशन", - // "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "OrgUnit", "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "संघटनात्मक युनिट", - // "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Toggle dropdown", "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ड्रॉपडाउन टॉगल करा", - // "submission.sections.describe.relationship-lookup.selection-tab.settings": "Settings", "submission.sections.describe.relationship-lookup.selection-tab.settings": "सेटिंग्ज", - // "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Your selection is currently empty.", "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "आपली निवड सध्या रिकामी आहे.", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "निवडलेले लेखक", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "निवडलेले जर्नल्स", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "निवडलेला जर्नल खंड", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "निवडलेला जर्नल खंड", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Selected Projects", "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "निवडलेले प्रकल्प", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Selected Publications", "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "निवडलेली प्रकाशने", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Selected Authors", "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "निवडलेले लेखक", - // "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Selected Organizational Units", "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "निवडलेले संघटनात्मक युनिट्स", - // "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Selected Data Packages", "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "निवडलेले डेटा पॅकेजेस", - // "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Selected Data Files", "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "निवडलेल्या डेटा फाइल्स", - // "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "निवडलेले जर्नल्स", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "निवडलेला अंक", - // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "निवडलेला जर्नल खंड", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Selected Funding Agency", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "निवडलेली निधी संस्था", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Selected Funding", "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "निवडलेला निधी", - // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Selected Issue", "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "निवडलेला अंक", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Selected Organizational Unit", "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "निवडलेले संघटनात्मक युनिट", - // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "शोध परिणाम", - // "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.", "submission.sections.describe.relationship-lookup.name-variant.notification.content": "आपण \"{{ value }}\" या व्यक्तीसाठी नावाचा प्रकार म्हणून जतन करू इच्छिता जेणेकरून आपण आणि इतर भविष्यातील सबमिशनसाठी ते पुन्हा वापरू शकतील? आपण नाही केले तरी आपण हे सबमिशनसाठी वापरू शकता.", - // "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant", "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "नवीन नावाचा प्रकार जतन करा", - // "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Use only for this submission", "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "फक्त या सबमिशनसाठी वापरा", - // "submission.sections.ccLicense.type": "License Type", "submission.sections.ccLicense.type": "परवाना प्रकार", - // "submission.sections.ccLicense.select": "Select a license type…", "submission.sections.ccLicense.select": "परवाना प्रकार निवडा…", - // "submission.sections.ccLicense.change": "Change your license type…", "submission.sections.ccLicense.change": "आपला परवाना प्रकार बदला…", - // "submission.sections.ccLicense.none": "No licenses available", "submission.sections.ccLicense.none": "कोणतेही परवाने उपलब्ध नाहीत", - // "submission.sections.ccLicense.option.select": "Select an option…", "submission.sections.ccLicense.option.select": "एक पर्याय निवडा…", - // "submission.sections.ccLicense.link": "You’ve selected the following license:", - // TODO New key - Add a translation - "submission.sections.ccLicense.link": "You’ve selected the following license:", + "submission.sections.ccLicense.link": "आपण खालील परवाना निवडला आहे:", - // "submission.sections.ccLicense.confirmation": "I grant the license above", "submission.sections.ccLicense.confirmation": "मी वरील परवाना मंजूर करतो", - // "submission.sections.general.add-more": "Add more", "submission.sections.general.add-more": "अधिक जोडा", - // "submission.sections.general.cannot_deposit": "Deposit cannot be completed due to errors in the form.
Please fill out all required fields to complete the deposit.", "submission.sections.general.cannot_deposit": "फॉर्ममध्ये त्रुटी असल्यामुळे ठेव पूर्ण केली जाऊ शकत नाही.
सर्व आवश्यक फील्ड भरा जेणेकरून ठेव पूर्ण होईल.", - // "submission.sections.general.collection": "Collection", "submission.sections.general.collection": "संग्रह", - // "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.", "submission.sections.general.deposit_error_notice": "आयटम सबमिट करताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", - // "submission.sections.general.deposit_success_notice": "Submission deposited successfully.", "submission.sections.general.deposit_success_notice": "सबमिशन यशस्वीरित्या ठेवले गेले.", - // "submission.sections.general.discard_error_notice": "There was an issue when discarding the item, please try again later.", "submission.sections.general.discard_error_notice": "आयटम काढून टाकताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", - // "submission.sections.general.discard_success_notice": "Submission discarded successfully.", "submission.sections.general.discard_success_notice": "सबमिशन यशस्वीरित्या काढून टाकले गेले.", - // "submission.sections.general.metadata-extracted": "New metadata have been extracted and added to the {{sectionId}} section.", "submission.sections.general.metadata-extracted": "नवीन मेटाडेटा काढले गेले आहेत आणि {{sectionId}} विभागात जोडले गेले आहेत.", - // "submission.sections.general.metadata-extracted-new-section": "New {{sectionId}} section has been added to submission.", "submission.sections.general.metadata-extracted-new-section": "नवीन {{sectionId}} विभाग सबमिशनमध्ये जोडला गेला आहे.", - // "submission.sections.general.no-collection": "No collection found", "submission.sections.general.no-collection": "कोणताही संग्रह सापडला नाही", - // "submission.sections.general.no-entity": "No entity types found", "submission.sections.general.no-entity": "कोणतेही घटक प्रकार सापडले नाहीत", - // "submission.sections.general.no-sections": "No options available", "submission.sections.general.no-sections": "कोणतेही पर्याय उपलब्ध नाहीत", - // "submission.sections.general.save_error_notice": "There was an issue when saving the item, please try again later.", "submission.sections.general.save_error_notice": "आयटम जतन करताना समस्या आली, कृपया नंतर पुन्हा प्रयत्न करा.", - // "submission.sections.general.save_success_notice": "Submission saved successfully.", "submission.sections.general.save_success_notice": "सबमिशन यशस्वीरित्या जतन केले.", - // "submission.sections.general.search-collection": "Search for a collection", "submission.sections.general.search-collection": "संग्रह शोधा", - // "submission.sections.general.sections_not_valid": "There are incomplete sections.", "submission.sections.general.sections_not_valid": "अपूर्ण विभाग आहेत.", - // "submission.sections.identifiers.info": "The following identifiers will be created for your item:", - // TODO New key - Add a translation - "submission.sections.identifiers.info": "The following identifiers will be created for your item:", + "submission.sections.identifiers.info": "आपल्या आयटमसाठी खालील ओळखपत्रे तयार केली जातील:", - // "submission.sections.identifiers.no_handle": "No handles have been minted for this item.", "submission.sections.identifiers.no_handle": "या आयटमसाठी कोणतेही हँडल तयार केले गेले नाहीत.", - // "submission.sections.identifiers.no_doi": "No DOIs have been minted for this item.", "submission.sections.identifiers.no_doi": "या आयटमसाठी कोणतेही DOI तयार केले गेले नाहीत.", - // "submission.sections.identifiers.handle_label": "Handle: ", - // TODO New key - Add a translation - "submission.sections.identifiers.handle_label": "Handle: ", + "submission.sections.identifiers.handle_label": "हँडल: ", - // "submission.sections.identifiers.doi_label": "DOI: ", "submission.sections.identifiers.doi_label": "DOI: ", - // "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", - // TODO New key - Add a translation - "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ", + "submission.sections.identifiers.otherIdentifiers_label": "इतर ओळखपत्रे: ", - // "submission.sections.submit.progressbar.accessCondition": "Item access conditions", "submission.sections.submit.progressbar.accessCondition": "आयटम प्रवेश अटी", - // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "क्रिएटिव्ह कॉमन्स परवाना", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "रीसायकल", - // "submission.sections.submit.progressbar.describe.stepcustom": "Describe", "submission.sections.submit.progressbar.describe.stepcustom": "वर्णन करा", - // "submission.sections.submit.progressbar.describe.stepone": "Describe", "submission.sections.submit.progressbar.describe.stepone": "वर्णन करा", - // "submission.sections.submit.progressbar.describe.steptwo": "Describe", "submission.sections.submit.progressbar.describe.steptwo": "वर्णन करा", - // "submission.sections.submit.progressbar.duplicates": "Potential duplicates", "submission.sections.submit.progressbar.duplicates": "संभाव्य डुप्लिकेट", - // "submission.sections.submit.progressbar.identifiers": "Identifiers", "submission.sections.submit.progressbar.identifiers": "ओळखपत्रे", - // "submission.sections.submit.progressbar.license": "Deposit license", "submission.sections.submit.progressbar.license": "ठेव परवाना", - // "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies", "submission.sections.submit.progressbar.sherpapolicy": "शेरपा धोरणे", - // "submission.sections.submit.progressbar.upload": "Upload files", "submission.sections.submit.progressbar.upload": "फाइल्स अपलोड करा", - // "submission.sections.submit.progressbar.sherpaPolicies": "Publisher open access policy information", "submission.sections.submit.progressbar.sherpaPolicies": "प्रकाशक खुले प्रवेश धोरण माहिती", - // "submission.sections.sherpa-policy.title-empty": "No publisher policy information available. If your work has an associated ISSN, please enter it above to see any related publisher open access policies.", "submission.sections.sherpa-policy.title-empty": "कोणतीही प्रकाशक धोरण माहिती उपलब्ध नाही. आपले कार्य संबंधित ISSN आहे, कृपया वरील प्रविष्ट करा जेणेकरून संबंधित प्रकाशक खुले प्रवेश धोरणे पाहता येतील.", - // "submission.sections.status.errors.title": "Errors", "submission.sections.status.errors.title": "त्रुटी", - // "submission.sections.status.valid.title": "Valid", "submission.sections.status.valid.title": "वैध", - // "submission.sections.status.warnings.title": "Warnings", "submission.sections.status.warnings.title": "चेतावणी", - // "submission.sections.status.errors.aria": "has errors", "submission.sections.status.errors.aria": "त्रुटी आहेत", - // "submission.sections.status.valid.aria": "is valid", "submission.sections.status.valid.aria": "वैध आहे", - // "submission.sections.status.warnings.aria": "has warnings", "submission.sections.status.warnings.aria": "चेतावणी आहेत", - // "submission.sections.status.info.title": "Additional Information", "submission.sections.status.info.title": "अतिरिक्त माहिती", - // "submission.sections.status.info.aria": "Additional Information", "submission.sections.status.info.aria": "अतिरिक्त माहिती", - // "submission.sections.toggle.open": "Open section", "submission.sections.toggle.open": "विभाग उघडा", - // "submission.sections.toggle.close": "Close section", "submission.sections.toggle.close": "विभाग बंद करा", - // "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section", "submission.sections.toggle.aria.open": "{{sectionHeader}} विभाग विस्तृत करा", - // "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section", "submission.sections.toggle.aria.close": "{{sectionHeader}} विभाग संकुचित करा", - // "submission.sections.upload.primary.make": "Make {{fileName}} the primary bitstream", "submission.sections.upload.primary.make": "{{fileName}} प्राथमिक बिटस्ट्रीम बनवा", - // "submission.sections.upload.primary.remove": "Remove {{fileName}} as the primary bitstream", "submission.sections.upload.primary.remove": "{{fileName}} प्राथमिक बिटस्ट्रीम म्हणून काढा", - // "submission.sections.upload.delete.confirm.cancel": "Cancel", "submission.sections.upload.delete.confirm.cancel": "रद्द करा", - // "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?", "submission.sections.upload.delete.confirm.info": "ही क्रिया पूर्ववत केली जाऊ शकत नाही. आपण खात्री आहात?", - // "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure", "submission.sections.upload.delete.confirm.submit": "होय, मला खात्री आहे", - // "submission.sections.upload.delete.confirm.title": "Delete bitstream", "submission.sections.upload.delete.confirm.title": "बिटस्ट्रीम हटवा", - // "submission.sections.upload.delete.submit": "Delete", "submission.sections.upload.delete.submit": "हटवा", - // "submission.sections.upload.download.title": "Download bitstream", "submission.sections.upload.download.title": "बिटस्ट्रीम डाउनलोड करा", - // "submission.sections.upload.drop-message": "Drop files to attach them to the item", "submission.sections.upload.drop-message": "आयटमला जोडण्यासाठी फाइल्स ड्रॉप करा", - // "submission.sections.upload.edit.title": "Edit bitstream", "submission.sections.upload.edit.title": "बिटस्ट्रीम संपादित करा", - // "submission.sections.upload.form.access-condition-label": "Access condition type", "submission.sections.upload.form.access-condition-label": "प्रवेश अटी प्रकार", - // "submission.sections.upload.form.access-condition-hint": "Select an access condition to apply on the bitstream once the item is deposited", "submission.sections.upload.form.access-condition-hint": "आयटम ठेवल्यानंतर बिटस्ट्रीमवर लागू करण्यासाठी प्रवेश अटी निवडा", - // "submission.sections.upload.form.date-required": "Date is required.", "submission.sections.upload.form.date-required": "तारीख आवश्यक आहे.", - // "submission.sections.upload.form.date-required-from": "Grant access from date is required.", "submission.sections.upload.form.date-required-from": "प्रवेश देण्याची तारीख आवश्यक आहे.", - // "submission.sections.upload.form.date-required-until": "Grant access until date is required.", "submission.sections.upload.form.date-required-until": "प्रवेश देण्याची तारीख आवश्यक आहे.", - // "submission.sections.upload.form.from-label": "Grant access from", "submission.sections.upload.form.from-label": "प्रवेश देण्याची तारीख", - // "submission.sections.upload.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.upload.form.from-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", - // "submission.sections.upload.form.from-placeholder": "From", "submission.sections.upload.form.from-placeholder": "पासून", - // "submission.sections.upload.form.group-label": "Group", "submission.sections.upload.form.group-label": "गट", - // "submission.sections.upload.form.group-required": "Group is required.", "submission.sections.upload.form.group-required": "गट आवश्यक आहे.", - // "submission.sections.upload.form.until-label": "Grant access until", "submission.sections.upload.form.until-label": "पर्यंत प्रवेश द्या", - // "submission.sections.upload.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.upload.form.until-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", - // "submission.sections.upload.form.until-placeholder": "Until", "submission.sections.upload.form.until-placeholder": "पर्यंत", - // "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", - // TODO New key - Add a translation - "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", + "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} संग्रहातील अपलोड केलेल्या फाइल्स खालील गटांनुसार प्रवेशयोग्य असतील:", - // "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", - // TODO New key - Add a translation - "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + "submission.sections.upload.header.policy.default.withlist": "कृपया लक्षात घ्या की {{collectionName}} संग्रहातील अपलोड केलेल्या फाइल्स, एकल फाइलसाठी स्पष्टपणे ठरवलेल्या गोष्टींशिवाय, खालील गटांसह प्रवेशयोग्य असतील:", - // "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or upload additional files by dragging & dropping them anywhere on the page.", "submission.sections.upload.info": "येथे आपल्याला आयटममधील सर्व फाइल्स सापडतील. आपण फाइल मेटाडेटा आणि प्रवेश अटी अद्यतनित करू शकता किंवा पृष्ठावर कुठेही ड्रॅग आणि ड्रॉप करून अतिरिक्त फाइल्स अपलोड करू शकता.", - // "submission.sections.upload.no-entry": "No", "submission.sections.upload.no-entry": "नाही", - // "submission.sections.upload.no-file-uploaded": "No file uploaded yet.", "submission.sections.upload.no-file-uploaded": "अद्याप कोणतीही फाइल अपलोड केलेली नाही.", - // "submission.sections.upload.save-metadata": "Save metadata", "submission.sections.upload.save-metadata": "मेटाडेटा जतन करा", - // "submission.sections.upload.undo": "Cancel", "submission.sections.upload.undo": "रद्द करा", - // "submission.sections.upload.upload-failed": "Upload failed", "submission.sections.upload.upload-failed": "अपलोड अयशस्वी", - // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "अपलोड यशस्वी", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "जेव्हा तपासले जाते, तेव्हा हा आयटम शोध/ब्राउझमध्ये शोधण्यायोग्य असेल. जेव्हा तपासले जात नाही, तेव्हा आयटम फक्त थेट लिंकद्वारे उपलब्ध असेल आणि कधीही शोध/ब्राउझमध्ये दिसणार नाही.", - // "submission.sections.accesses.form.discoverable-label": "Discoverable", "submission.sections.accesses.form.discoverable-label": "शोधण्यायोग्य", - // "submission.sections.accesses.form.access-condition-label": "Access condition type", "submission.sections.accesses.form.access-condition-label": "प्रवेश अटी प्रकार", - // "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited", "submission.sections.accesses.form.access-condition-hint": "आयटम ठेवल्यानंतर लागू करण्यासाठी प्रवेश अटी निवडा", - // "submission.sections.accesses.form.date-required": "Date is required.", "submission.sections.accesses.form.date-required": "तारीख आवश्यक आहे.", - // "submission.sections.accesses.form.date-required-from": "Grant access from date is required.", "submission.sections.accesses.form.date-required-from": "प्रवेश देण्याची तारीख आवश्यक आहे.", - // "submission.sections.accesses.form.date-required-until": "Grant access until date is required.", "submission.sections.accesses.form.date-required-until": "प्रवेश देण्याची तारीख आवश्यक आहे.", - // "submission.sections.accesses.form.from-label": "Grant access from", "submission.sections.accesses.form.from-label": "प्रवेश देण्याची तारीख", - // "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied", "submission.sections.accesses.form.from-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", - // "submission.sections.accesses.form.from-placeholder": "From", "submission.sections.accesses.form.from-placeholder": "पासून", - // "submission.sections.accesses.form.group-label": "Group", "submission.sections.accesses.form.group-label": "गट", - // "submission.sections.accesses.form.group-required": "Group is required.", "submission.sections.accesses.form.group-required": "गट आवश्यक आहे.", - // "submission.sections.accesses.form.until-label": "Grant access until", "submission.sections.accesses.form.until-label": "पर्यंत प्रवेश द्या", - // "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied", "submission.sections.accesses.form.until-hint": "संबंधित प्रवेश अटी लागू होण्याची तारीख निवडा", - // "submission.sections.accesses.form.until-placeholder": "Until", "submission.sections.accesses.form.until-placeholder": "पर्यंत", - // "submission.sections.duplicates.none": "No duplicates were detected.", "submission.sections.duplicates.none": "कोणतेही डुप्लिकेट आढळले नाहीत.", - // "submission.sections.duplicates.detected": "Potential duplicates were detected. Please review the list below.", "submission.sections.duplicates.detected": "संभाव्य डुप्लिकेट आढळले. कृपया खालील यादी पुनरावलोकन करा.", - // "submission.sections.duplicates.in-workspace": "This item is in workspace", "submission.sections.duplicates.in-workspace": "हा आयटम कार्यक्षेत्रात आहे", - // "submission.sections.duplicates.in-workflow": "This item is in workflow", "submission.sections.duplicates.in-workflow": "हा आयटम कार्यप्रवाहात आहे", - // "submission.sections.license.granted-label": "I confirm the license above", "submission.sections.license.granted-label": "मी वरील परवाना पुष्टी करतो", - // "submission.sections.license.required": "You must accept the license", "submission.sections.license.required": "आपण परवाना स्वीकारणे आवश्यक आहे", - // "submission.sections.license.notgranted": "You must accept the license", "submission.sections.license.notgranted": "आपण परवाना स्वीकारणे आवश्यक आहे", - // "submission.sections.sherpa.publication.information": "Publication information", "submission.sections.sherpa.publication.information": "प्रकाशन माहिती", - // "submission.sections.sherpa.publication.information.title": "Title", "submission.sections.sherpa.publication.information.title": "शीर्षक", - // "submission.sections.sherpa.publication.information.issns": "ISSNs", "submission.sections.sherpa.publication.information.issns": "ISSNs", - // "submission.sections.sherpa.publication.information.url": "URL", "submission.sections.sherpa.publication.information.url": "URL", - // "submission.sections.sherpa.publication.information.publishers": "Publisher", "submission.sections.sherpa.publication.information.publishers": "प्रकाशक", - // "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", "submission.sections.sherpa.publication.information.romeoPub": "रोमियो पब", - // "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", "submission.sections.sherpa.publication.information.zetoPub": "झेटो पब", - // "submission.sections.sherpa.publisher.policy": "Publisher Policy", "submission.sections.sherpa.publisher.policy": "प्रकाशक धोरण", - // "submission.sections.sherpa.publisher.policy.description": "The below information was found via Sherpa Romeo. Based on the policies of your publisher, it provides advice regarding whether an embargo may be necessary and/or which files you are allowed to upload. If you have questions, please contact your site administrator via the feedback form in the footer.", "submission.sections.sherpa.publisher.policy.description": "खालील माहिती शेरपा रोमियोद्वारे आढळली. आपल्या प्रकाशकाच्या धोरणांवर आधारित, हे सल्ला देते की एम्बार्गो आवश्यक आहे का आणि/किंवा कोणत्या फाइल्स अपलोड करण्यास परवानगी आहे. आपल्याला प्रश्न असल्यास, कृपया फूटरमधील अभिप्राय फॉर्मद्वारे आपल्या साइट प्रशासकाशी संपर्क साधा.", - // "submission.sections.sherpa.publisher.policy.openaccess": "Open Access pathways permitted by this journal's policy are listed below by article version. Click on a pathway for a more detailed view", "submission.sections.sherpa.publisher.policy.openaccess": "या जर्नलच्या धोरणाद्वारे परवानगी दिलेल्या खुले प्रवेश मार्ग खालीलप्रमाणे लेख आवृत्तीने सूचीबद्ध आहेत. अधिक तपशीलवार दृश्यासाठी मार्गावर क्लिक करा", - // "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", - // TODO New key - Add a translation - "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:", + "submission.sections.sherpa.publisher.policy.more.information": "अधिक माहितीसाठी, कृपया खालील दुवे पहा:", - // "submission.sections.sherpa.publisher.policy.version": "Version", "submission.sections.sherpa.publisher.policy.version": "आवृत्ती", - // "submission.sections.sherpa.publisher.policy.embargo": "Embargo", "submission.sections.sherpa.publisher.policy.embargo": "एम्बार्गो", - // "submission.sections.sherpa.publisher.policy.noembargo": "No Embargo", "submission.sections.sherpa.publisher.policy.noembargo": "कोणताही एम्बार्गो नाही", - // "submission.sections.sherpa.publisher.policy.nolocation": "None", "submission.sections.sherpa.publisher.policy.nolocation": "कोणतेही स्थान नाही", - // "submission.sections.sherpa.publisher.policy.license": "License", "submission.sections.sherpa.publisher.policy.license": "परवाना", - // "submission.sections.sherpa.publisher.policy.prerequisites": "Prerequisites", "submission.sections.sherpa.publisher.policy.prerequisites": "पूर्वअटी", - // "submission.sections.sherpa.publisher.policy.location": "Location", "submission.sections.sherpa.publisher.policy.location": "स्थान", - // "submission.sections.sherpa.publisher.policy.conditions": "Conditions", "submission.sections.sherpa.publisher.policy.conditions": "अटी", - // "submission.sections.sherpa.publisher.policy.refresh": "Refresh", "submission.sections.sherpa.publisher.policy.refresh": "रिफ्रेश", - // "submission.sections.sherpa.record.information": "Record Information", "submission.sections.sherpa.record.information": "रेकॉर्ड माहिती", - // "submission.sections.sherpa.record.information.id": "ID", "submission.sections.sherpa.record.information.id": "आयडी", - // "submission.sections.sherpa.record.information.date.created": "Date Created", "submission.sections.sherpa.record.information.date.created": "तयार केलेली तारीख", - // "submission.sections.sherpa.record.information.date.modified": "Last Modified", "submission.sections.sherpa.record.information.date.modified": "शेवटचे बदललेले", - // "submission.sections.sherpa.record.information.uri": "URI", "submission.sections.sherpa.record.information.uri": "यूआरआय", - // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations", "submission.sections.sherpa.error.message": "शेरपा माहिती मिळवताना त्रुटी आली", - // "submission.submit.breadcrumbs": "New submission", "submission.submit.breadcrumbs": "नवीन सबमिशन", - // "submission.submit.title": "New submission", "submission.submit.title": "नवीन सबमिशन", - // "submission.workflow.generic.delete": "Delete", "submission.workflow.generic.delete": "हटवा", - // "submission.workflow.generic.delete-help": "Select this option to discard this item. You will then be asked to confirm it.", "submission.workflow.generic.delete-help": "या आयटमला काढून टाकण्यासाठी हा पर्याय निवडा. तुम्हाला नंतर ते पुष्टी करण्यास सांगितले जाईल.", - // "submission.workflow.generic.edit": "Edit", "submission.workflow.generic.edit": "संपादित करा", - // "submission.workflow.generic.edit-help": "Select this option to change the item's metadata.", "submission.workflow.generic.edit-help": "आयटमची मेटाडेटा बदलण्यासाठी हा पर्याय निवडा.", - // "submission.workflow.generic.view": "View", "submission.workflow.generic.view": "पहा", - // "submission.workflow.generic.view-help": "Select this option to view the item's metadata.", "submission.workflow.generic.view-help": "आयटमची मेटाडेटा पाहण्यासाठी हा पर्याय निवडा.", - // "submission.workflow.generic.submit_select_reviewer": "Select Reviewer", "submission.workflow.generic.submit_select_reviewer": "पुनरावलोकक निवडा", - // "submission.workflow.generic.submit_select_reviewer-help": "", "submission.workflow.generic.submit_select_reviewer-help": "", - // "submission.workflow.generic.submit_score": "Rate", "submission.workflow.generic.submit_score": "रेट करा", - // "submission.workflow.generic.submit_score-help": "", "submission.workflow.generic.submit_score-help": "", - // "submission.workflow.tasks.claimed.approve": "Approve", "submission.workflow.tasks.claimed.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": "जर तुम्ही आयटमचे पुनरावलोकन केले असेल आणि ते संग्रहात समाविष्ट करण्यासाठी योग्य असल्याचे आढळले असेल, तर \"मंजूर करा\" निवडा.", - // "submission.workflow.tasks.claimed.edit": "Edit", "submission.workflow.tasks.claimed.edit": "संपादित करा", - // "submission.workflow.tasks.claimed.edit_help": "Select this option to change the item's metadata.", "submission.workflow.tasks.claimed.edit_help": "आयटमची मेटाडेटा बदलण्यासाठी हा पर्याय निवडा.", - // "submission.workflow.tasks.claimed.decline": "Decline", "submission.workflow.tasks.claimed.decline": "नकार द्या", - // "submission.workflow.tasks.claimed.decline_help": "", "submission.workflow.tasks.claimed.decline_help": "", - // "submission.workflow.tasks.claimed.reject.reason.info": "Please enter your reason for rejecting the submission into the box below, indicating whether the submitter may fix a problem and resubmit.", "submission.workflow.tasks.claimed.reject.reason.info": "कृपया सबमिशन नाकारण्याचे कारण खालील बॉक्समध्ये प्रविष्ट करा, सबमिटरला समस्या दुरुस्त करून पुन्हा सबमिट करण्याची परवानगी आहे की नाही हे दर्शवा.", - // "submission.workflow.tasks.claimed.reject.reason.placeholder": "Describe the reason of reject", "submission.workflow.tasks.claimed.reject.reason.placeholder": "नकाराचे कारण वर्णन करा", - // "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item", "submission.workflow.tasks.claimed.reject.reason.submit": "आयटम नकारा", - // "submission.workflow.tasks.claimed.reject.reason.title": "Reason", "submission.workflow.tasks.claimed.reject.reason.title": "कारण", - // "submission.workflow.tasks.claimed.reject.submit": "Reject", "submission.workflow.tasks.claimed.reject.submit": "नकारा", - // "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is not 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": "जर तुम्ही आयटमचे पुनरावलोकन केले असेल आणि ते संग्रहात समाविष्ट करण्यासाठी योग्य नसल्याचे आढळले असेल, तर \"नकारा\" निवडा. तुम्हाला नंतर आयटम का अयोग्य आहे हे दर्शविणारा संदेश प्रविष्ट करण्यास सांगितले जाईल आणि सबमिटरने काहीतरी बदलावे आणि पुन्हा सबमिट करावे का हे दर्शवावे.", - // "submission.workflow.tasks.claimed.return": "Return to pool", "submission.workflow.tasks.claimed.return": "पूलमध्ये परत करा", - // "submission.workflow.tasks.claimed.return_help": "Return the task to the pool so that another user may perform the task.", "submission.workflow.tasks.claimed.return_help": "कार्य पूलमध्ये परत करा जेणेकरून दुसरा वापरकर्ता कार्य करू शकेल.", - // "submission.workflow.tasks.generic.error": "Error occurred during operation...", "submission.workflow.tasks.generic.error": "ऑपरेशन दरम्यान त्रुटी आली...", - // "submission.workflow.tasks.generic.processing": "Processing...", "submission.workflow.tasks.generic.processing": "प्रक्रिया...", - // "submission.workflow.tasks.generic.submitter": "Submitter", "submission.workflow.tasks.generic.submitter": "सबमिटर", - // "submission.workflow.tasks.generic.success": "Operation successful", "submission.workflow.tasks.generic.success": "ऑपरेशन यशस्वी", - // "submission.workflow.tasks.pool.claim": "Claim", "submission.workflow.tasks.pool.claim": "दावा करा", - // "submission.workflow.tasks.pool.claim_help": "Assign this task to yourself.", "submission.workflow.tasks.pool.claim_help": "हे कार्य स्वतःला नियुक्त करा.", - // "submission.workflow.tasks.pool.hide-detail": "Hide detail", "submission.workflow.tasks.pool.hide-detail": "तपशील लपवा", - // "submission.workflow.tasks.pool.show-detail": "Show detail", "submission.workflow.tasks.pool.show-detail": "तपशील दाखवा", - // "submission.workflow.tasks.duplicates": "potential duplicates were detected for this item. Claim and edit this item to see details.", "submission.workflow.tasks.duplicates": "या आयटमसाठी संभाव्य डुप्लिकेट आढळले. तपशील पाहण्यासाठी हा आयटम दावा करा आणि संपादित करा.", - // "submission.workspace.generic.view": "View", "submission.workspace.generic.view": "पहा", - // "submission.workspace.generic.view-help": "Select this option to view the item's metadata.", "submission.workspace.generic.view-help": "आयटमची मेटाडेटा पाहण्यासाठी हा पर्याय निवडा.", - // "submitter.empty": "N/A", "submitter.empty": "N/A", - // "subscriptions.title": "Subscriptions", "subscriptions.title": "सदस्यता", - // "subscriptions.item": "Subscriptions for items", "subscriptions.item": "आयटमसाठी सदस्यता", - // "subscriptions.collection": "Subscriptions for collections", "subscriptions.collection": "संग्रहासाठी सदस्यता", - // "subscriptions.community": "Subscriptions for communities", "subscriptions.community": "समुदायासाठी सदस्यता", - // "subscriptions.subscription_type": "Subscription type", "subscriptions.subscription_type": "सदस्यता प्रकार", - // "subscriptions.frequency": "Subscription frequency", "subscriptions.frequency": "सदस्यता वारंवारता", - // "subscriptions.frequency.D": "Daily", "subscriptions.frequency.D": "दैनिक", - // "subscriptions.frequency.M": "Monthly", "subscriptions.frequency.M": "मासिक", - // "subscriptions.frequency.W": "Weekly", "subscriptions.frequency.W": "साप्ताहिक", - // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "सदस्यता घ्या", - // "subscriptions.unsubscribe": "Unsubscribe", "subscriptions.unsubscribe": "सदस्यता रद्द करा", - // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "सदस्यता", - // "subscriptions.modal.type-frequency": "Type and frequency", "subscriptions.modal.type-frequency": "प्रकार आणि वारंवारता", - // "subscriptions.modal.close": "Close", "subscriptions.modal.close": "बंद करा", - // "subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile", "subscriptions.modal.delete-info": "ही सदस्यता काढून टाकण्यासाठी, कृपया तुमच्या वापरकर्ता प्रोफाइल अंतर्गत \"सदस्यता\" पृष्ठावर जा", - // "subscriptions.modal.new-subscription-form.type.content": "Content", "subscriptions.modal.new-subscription-form.type.content": "सामग्री", - // "subscriptions.modal.new-subscription-form.frequency.D": "Daily", "subscriptions.modal.new-subscription-form.frequency.D": "दैनिक", - // "subscriptions.modal.new-subscription-form.frequency.W": "Weekly", "subscriptions.modal.new-subscription-form.frequency.W": "साप्ताहिक", - // "subscriptions.modal.new-subscription-form.frequency.M": "Monthly", "subscriptions.modal.new-subscription-form.frequency.M": "मासिक", - // "subscriptions.modal.new-subscription-form.submit": "Submit", "subscriptions.modal.new-subscription-form.submit": "सबमिट करा", - // "subscriptions.modal.new-subscription-form.processing": "Processing...", "subscriptions.modal.new-subscription-form.processing": "प्रक्रिया...", - // "subscriptions.modal.create.success": "Subscribed to {{ type }} successfully.", "subscriptions.modal.create.success": "{{ प्रकार }} ला यशस्वीरित्या सदस्यता घेतली.", - // "subscriptions.modal.delete.success": "Subscription deleted successfully", "subscriptions.modal.delete.success": "सदस्यता यशस्वीरित्या हटवली", - // "subscriptions.modal.update.success": "Subscription to {{ type }} updated successfully", "subscriptions.modal.update.success": "{{ प्रकार }} ला सदस्यता यशस्वीरित्या अद्यतनित केली", - // "subscriptions.modal.create.error": "An error occurs during the subscription creation", "subscriptions.modal.create.error": "सदस्यता निर्मिती दरम्यान त्रुटी आली", - // "subscriptions.modal.delete.error": "An error occurs during the subscription delete", "subscriptions.modal.delete.error": "सदस्यता हटवताना त्रुटी आली", - // "subscriptions.modal.update.error": "An error occurs during the subscription update", "subscriptions.modal.update.error": "सदस्यता अद्यतनित करताना त्रुटी आली", - // "subscriptions.table.dso": "Subject", "subscriptions.table.dso": "विषय", - // "subscriptions.table.subscription_type": "Subscription Type", "subscriptions.table.subscription_type": "सदस्यता प्रकार", - // "subscriptions.table.subscription_frequency": "Subscription Frequency", "subscriptions.table.subscription_frequency": "सदस्यता वारंवारता", - // "subscriptions.table.action": "Action", "subscriptions.table.action": "क्रिया", - // "subscriptions.table.edit": "Edit", "subscriptions.table.edit": "संपादित करा", - // "subscriptions.table.delete": "Delete", "subscriptions.table.delete": "हटवा", - // "subscriptions.table.not-available": "Not available", "subscriptions.table.not-available": "उपलब्ध नाही", - // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "सदस्यता घेतलेला आयटम हटवला गेला आहे, किंवा तुम्हाला सध्या ते पाहण्याची परवानगी नाही", - // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", "subscriptions.table.empty.message": "तुमच्याकडे सध्या कोणतीही सदस्यता नाही. समुदाय किंवा संग्रहासाठी ईमेल अद्यतनांसाठी सदस्यता घेण्यासाठी, ऑब्जेक्टच्या पृष्ठावरील सदस्यता बटण वापरा.", - // "thumbnail.default.alt": "Thumbnail Image", "thumbnail.default.alt": "थंबनेल प्रतिमा", - // "thumbnail.default.placeholder": "No Thumbnail Available", "thumbnail.default.placeholder": "थंबनेल उपलब्ध नाही", - // "thumbnail.project.alt": "Project Logo", "thumbnail.project.alt": "प्रकल्प लोगो", - // "thumbnail.project.placeholder": "Project Placeholder Image", "thumbnail.project.placeholder": "प्रकल्प प्लेसहोल्डर प्रतिमा", - // "thumbnail.orgunit.alt": "OrgUnit Logo", "thumbnail.orgunit.alt": "संगठन युनिट लोगो", - // "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image", "thumbnail.orgunit.placeholder": "संगठन युनिट प्लेसहोल्डर प्रतिमा", - // "thumbnail.person.alt": "Profile Picture", "thumbnail.person.alt": "प्रोफाइल चित्र", - // "thumbnail.person.placeholder": "No Profile Picture Available", "thumbnail.person.placeholder": "प्रोफाइल चित्र उपलब्ध नाही", - // "title": "DSpace", "title": "डीस्पेस", - // "vocabulary-treeview.header": "Hierarchical tree view", "vocabulary-treeview.header": "अनुक्रमणिका दृश्य", - // "vocabulary-treeview.load-more": "Load more", "vocabulary-treeview.load-more": "अधिक लोड करा", - // "vocabulary-treeview.search.form.reset": "Reset", "vocabulary-treeview.search.form.reset": "रीसेट करा", - // "vocabulary-treeview.search.form.search": "Search", "vocabulary-treeview.search.form.search": "शोधा", - // "vocabulary-treeview.search.form.search-placeholder": "Filter results by typing the first few letters", "vocabulary-treeview.search.form.search-placeholder": "पहिल्या काही अक्षरांनी परिणाम फिल्टर करा", - // "vocabulary-treeview.search.no-result": "There were no items to show", "vocabulary-treeview.search.no-result": "दाखवण्यासाठी कोणतेही आयटम नाहीत", - // "vocabulary-treeview.tree.description.nsi": "The Norwegian Science Index", "vocabulary-treeview.tree.description.nsi": "नॉर्वेजियन सायन्स इंडेक्स", - // "vocabulary-treeview.tree.description.srsc": "Research Subject Categories", "vocabulary-treeview.tree.description.srsc": "संशोधन विषय श्रेणी", - // "vocabulary-treeview.info": "Select a subject to add as search filter", "vocabulary-treeview.info": "शोध फिल्टर म्हणून जोडण्यासाठी एक विषय निवडा", - // "uploader.browse": "browse", "uploader.browse": "ब्राउझ करा", - // "uploader.drag-message": "Drag & Drop your files here", "uploader.drag-message": "तुमच्या फाइल्स येथे ड्रॅग आणि ड्रॉप करा", - // "uploader.delete.btn-title": "Delete", "uploader.delete.btn-title": "हटवा", - // "uploader.or": ", or ", "uploader.or": ", किंवा ", - // "uploader.processing": "Processing uploaded file(s)... (it's now safe to close this page)", "uploader.processing": "अपलोड केलेल्या फाइल्स प्रक्रिया करत आहे... (हे पृष्ठ बंद करणे आता सुरक्षित आहे)", - // "uploader.queue-length": "Queue length", "uploader.queue-length": "क्यू लांबी", - // "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": "आभासी मेटाडेटा वास्तविक मेटाडेटा म्हणून जतन करण्यासाठी तुम्हाला हवे असलेले प्रकार निवडा", - // "virtual-metadata.delete-item.modal-head": "The virtual metadata of this relation", "virtual-metadata.delete-item.modal-head": "या संबंधाचे आभासी मेटाडेटा", - // "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": "आभासी मेटाडेटा वास्तविक मेटाडेटा म्हणून जतन करण्यासाठी तुम्हाला हवे असलेले आयटम निवडा", - // "supervisedWorkspace.search.results.head": "Supervised Items", "supervisedWorkspace.search.results.head": "पर्यवेक्षित आयटम", - // "workspace.search.results.head": "Your submissions", "workspace.search.results.head": "तुमच्या सबमिशन", - // "workflowAdmin.search.results.head": "Administer Workflow", "workflowAdmin.search.results.head": "वर्कफ्लो प्रशासित करा", - // "workflow.search.results.head": "Workflow tasks", "workflow.search.results.head": "वर्कफ्लो कार्ये", - // "supervision.search.results.head": "Workflow and Workspace tasks", "supervision.search.results.head": "वर्कफ्लो आणि वर्कस्पेस कार्ये", - // "workflow-item.edit.breadcrumbs": "Edit workflowitem", "workflow-item.edit.breadcrumbs": "वर्कफ्लो आयटम संपादित करा", - // "workflow-item.edit.title": "Edit workflowitem", "workflow-item.edit.title": "वर्कफ्लो आयटम संपादित करा", - // "workflow-item.delete.notification.success.title": "Deleted", "workflow-item.delete.notification.success.title": "हटवले", - // "workflow-item.delete.notification.success.content": "This workflow item was successfully deleted", "workflow-item.delete.notification.success.content": "हा वर्कफ्लो आयटम यशस्वीरित्या हटवला गेला", - // "workflow-item.delete.notification.error.title": "Something went wrong", "workflow-item.delete.notification.error.title": "काहीतरी चुकले", - // "workflow-item.delete.notification.error.content": "The workflow item could not be deleted", "workflow-item.delete.notification.error.content": "वर्कफ्लो आयटम हटवता आला नाही", - // "workflow-item.delete.title": "Delete workflow item", "workflow-item.delete.title": "वर्कफ्लो आयटम हटवा", - // "workflow-item.delete.header": "Delete workflow item", "workflow-item.delete.header": "वर्कफ्लो आयटम हटवा", - // "workflow-item.delete.button.cancel": "Cancel", "workflow-item.delete.button.cancel": "रद्द करा", - // "workflow-item.delete.button.confirm": "Delete", "workflow-item.delete.button.confirm": "हटवा", - // "workflow-item.send-back.notification.success.title": "Sent back to submitter", "workflow-item.send-back.notification.success.title": "सबमिटरकडे परत पाठवले", - // "workflow-item.send-back.notification.success.content": "This workflow item was successfully sent back to the submitter", "workflow-item.send-back.notification.success.content": "हा वर्कफ्लो आयटम यशस्वीरित्या सबमिटरकडे परत पाठवला गेला", - // "workflow-item.send-back.notification.error.title": "Something went wrong", "workflow-item.send-back.notification.error.title": "काहीतरी चुकले", - // "workflow-item.send-back.notification.error.content": "The workflow item could not be sent back to the submitter", "workflow-item.send-back.notification.error.content": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवता आला नाही", - // "workflow-item.send-back.title": "Send workflow item back to submitter", "workflow-item.send-back.title": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवा", - // "workflow-item.send-back.header": "Send workflow item back to submitter", "workflow-item.send-back.header": "वर्कफ्लो आयटम सबमिटरकडे परत पाठवा", - // "workflow-item.send-back.button.cancel": "Cancel", "workflow-item.send-back.button.cancel": "रद्द करा", - // "workflow-item.send-back.button.confirm": "Send back", "workflow-item.send-back.button.confirm": "परत पाठवा", - // "workflow-item.view.breadcrumbs": "Workflow View", "workflow-item.view.breadcrumbs": "वर्कफ्लो दृश्य", - // "workspace-item.view.breadcrumbs": "Workspace View", "workspace-item.view.breadcrumbs": "वर्कस्पेस दृश्य", - // "workspace-item.view.title": "Workspace View", "workspace-item.view.title": "वर्कस्पेस दृश्य", - // "workspace-item.delete.breadcrumbs": "Workspace Delete", "workspace-item.delete.breadcrumbs": "वर्कस्पेस हटवा", - // "workspace-item.delete.header": "Delete workspace item", "workspace-item.delete.header": "वर्कस्पेस आयटम हटवा", - // "workspace-item.delete.button.confirm": "Delete", "workspace-item.delete.button.confirm": "हटवा", - // "workspace-item.delete.button.cancel": "Cancel", "workspace-item.delete.button.cancel": "रद्द करा", - // "workspace-item.delete.notification.success.title": "Deleted", "workspace-item.delete.notification.success.title": "हटवले", - // "workspace-item.delete.title": "This workspace item was successfully deleted", "workspace-item.delete.title": "हा वर्कस्पेस आयटम यशस्वीरित्या हटवला गेला", - // "workspace-item.delete.notification.error.title": "Something went wrong", "workspace-item.delete.notification.error.title": "काहीतरी चुकले", - // "workspace-item.delete.notification.error.content": "The workspace item could not be deleted", "workspace-item.delete.notification.error.content": "वर्कस्पेस आयटम हटवता आला नाही", - // "workflow-item.advanced.title": "Advanced workflow", "workflow-item.advanced.title": "प्रगत वर्कफ्लो", - // "workflow-item.selectrevieweraction.notification.success.title": "Selected reviewer", "workflow-item.selectrevieweraction.notification.success.title": "पुनरावलोकक निवडले", - // "workflow-item.selectrevieweraction.notification.success.content": "The reviewer for this workflow item has been successfully selected", "workflow-item.selectrevieweraction.notification.success.content": "या वर्कफ्लो आयटमसाठी पुनरावलोकक यशस्वीरित्या निवडले गेले", - // "workflow-item.selectrevieweraction.notification.error.title": "Something went wrong", "workflow-item.selectrevieweraction.notification.error.title": "काहीतरी चुकले", - // "workflow-item.selectrevieweraction.notification.error.content": "Couldn't select the reviewer for this workflow item", "workflow-item.selectrevieweraction.notification.error.content": "या वर्कफ्लो आयटमसाठी पुनरावलोकक निवडता आला नाही", - // "workflow-item.selectrevieweraction.title": "Select Reviewer", "workflow-item.selectrevieweraction.title": "पुनरावलोकक निवडा", - // "workflow-item.selectrevieweraction.header": "Select Reviewer", "workflow-item.selectrevieweraction.header": "पुनरावलोकक निवडा", - // "workflow-item.selectrevieweraction.button.cancel": "Cancel", "workflow-item.selectrevieweraction.button.cancel": "रद्द करा", - // "workflow-item.selectrevieweraction.button.confirm": "Confirm", "workflow-item.selectrevieweraction.button.confirm": "पुष्टी करा", - // "workflow-item.scorereviewaction.notification.success.title": "Rating review", "workflow-item.scorereviewaction.notification.success.title": "रेटिंग पुनरावलोकन", - // "workflow-item.scorereviewaction.notification.success.content": "The rating for this item workflow item has been successfully submitted", "workflow-item.scorereviewaction.notification.success.content": "या वर्कफ्लो आयटमसाठी रेटिंग यशस्वीरित्या सबमिट केले गेले", - // "workflow-item.scorereviewaction.notification.error.title": "Something went wrong", "workflow-item.scorereviewaction.notification.error.title": "काहीतरी चुकले", - // "workflow-item.scorereviewaction.notification.error.content": "Couldn't rate this item", "workflow-item.scorereviewaction.notification.error.content": "या आयटमला रेट करू शकलो नाही", - // "workflow-item.scorereviewaction.title": "Rate this item", "workflow-item.scorereviewaction.title": "या आयटमला रेट करा", - // "workflow-item.scorereviewaction.header": "Rate this item", "workflow-item.scorereviewaction.header": "या आयटमला रेट करा", - // "workflow-item.scorereviewaction.button.cancel": "Cancel", "workflow-item.scorereviewaction.button.cancel": "रद्द करा", - // "workflow-item.scorereviewaction.button.confirm": "Confirm", "workflow-item.scorereviewaction.button.confirm": "पुष्टी करा", - // "idle-modal.header": "Session will expire soon", "idle-modal.header": "सत्र लवकरच समाप्त होईल", - // "idle-modal.info": "For security reasons, user sessions expire after {{ timeToExpire }} minutes of inactivity. Your session will expire soon. Would you like to extend it or log out?", "idle-modal.info": "सुरक्षा कारणांमुळे, वापरकर्ता सत्रे {{ timeToExpire }} मिनिटांच्या निष्क्रियतेनंतर समाप्त होतात. तुमचे सत्र लवकरच समाप्त होईल. तुम्हाला ते वाढवायचे आहे का किंवा लॉग आउट करायचे आहे का?", - // "idle-modal.log-out": "Log out", "idle-modal.log-out": "लॉग आउट", - // "idle-modal.extend-session": "Extend session", "idle-modal.extend-session": "सत्र वाढवा", - // "researcher.profile.action.processing": "Processing...", "researcher.profile.action.processing": "प्रक्रिया...", - // "researcher.profile.associated": "Researcher profile associated", "researcher.profile.associated": "संशोधक प्रोफाइल संबंधित", - // "researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility", "researcher.profile.change-visibility.fail": "प्रोफाइल दृश्यमानता बदलताना अनपेक्षित त्रुटी आली", - // "researcher.profile.create.new": "Create new", "researcher.profile.create.new": "नवीन तयार करा", - // "researcher.profile.create.success": "Researcher profile created successfully", "researcher.profile.create.success": "संशोधक प्रोफाइल यशस्वीरित्या तयार केले", - // "researcher.profile.create.fail": "An error occurs during the researcher profile creation", "researcher.profile.create.fail": "संशोधक प्रोफाइल तयार करताना त्रुटी आली", - // "researcher.profile.delete": "Delete", "researcher.profile.delete": "हटवा", - // "researcher.profile.expose": "Expose", "researcher.profile.expose": "प्रकट करा", - // "researcher.profile.hide": "Hide", "researcher.profile.hide": "लपवा", - // "researcher.profile.not.associated": "Researcher profile not yet associated", "researcher.profile.not.associated": "संशोधक प्रोफाइल अद्याप संबंधित नाही", - // "researcher.profile.view": "View", "researcher.profile.view": "पहा", - // "researcher.profile.private.visibility": "PRIVATE", "researcher.profile.private.visibility": "खाजगी", - // "researcher.profile.public.visibility": "PUBLIC", "researcher.profile.public.visibility": "सार्वजनिक", - // "researcher.profile.status": "Status:", - // TODO New key - Add a translation - "researcher.profile.status": "Status:", + "researcher.profile.status": "स्थिती:", - // "researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).", "researcherprofile.claim.not-authorized": "तुम्हाला हा आयटम दावा करण्याची परवानगी नाही. अधिक तपशीलांसाठी प्रशासकांशी संपर्क साधा.", - // "researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later", "researcherprofile.error.claim.body": "प्रोफाइल दावा करताना त्रुटी आली, कृपया नंतर पुन्हा प्रयत्न करा", - // "researcherprofile.error.claim.title": "Error", "researcherprofile.error.claim.title": "त्रुटी", - // "researcherprofile.success.claim.body": "Profile claimed with success", "researcherprofile.success.claim.body": "प्रोफाइल यशस्वीरित्या दावा केले", - // "researcherprofile.success.claim.title": "Success", "researcherprofile.success.claim.title": "यश", - // "person.page.orcid.create": "Create an ORCID ID", "person.page.orcid.create": "ORCID आयडी तयार करा", - // "person.page.orcid.granted-authorizations": "Granted authorizations", "person.page.orcid.granted-authorizations": "मंजूर केलेल्या परवानग्या", - // "person.page.orcid.grant-authorizations": "Grant authorizations", "person.page.orcid.grant-authorizations": "परवानग्या मंजूर करा", - // "person.page.orcid.link": "Connect to ORCID ID", "person.page.orcid.link": "ORCID आयडीशी कनेक्ट करा", - // "person.page.orcid.link.processing": "Linking profile to ORCID...", "person.page.orcid.link.processing": "प्रोफाइल ORCID शी लिंक करत आहे...", - // "person.page.orcid.link.error.message": "Something went wrong while connecting the profile with ORCID. If the problem persists, contact the administrator.", "person.page.orcid.link.error.message": "प्रोफाइल ORCID शी कनेक्ट करताना काहीतरी चुकले. समस्या कायम राहिल्यास, प्रशासकाशी संपर्क साधा.", - // "person.page.orcid.orcid-not-linked-message": "The ORCID iD of this profile ({{ orcid }}) has not yet been connected to an account on the ORCID registry or the connection is expired.", "person.page.orcid.orcid-not-linked-message": "या प्रोफाइलचा ORCID आयडी ({{ orcid }}) अद्याप ORCID रजिस्ट्रीवरील खात्याशी कनेक्ट केलेला नाही किंवा कनेक्शन कालबाह्य झाले आहे.", - // "person.page.orcid.unlink": "Disconnect from ORCID", "person.page.orcid.unlink": "ORCID पासून डिस्कनेक्ट करा", - // "person.page.orcid.unlink.processing": "Processing...", "person.page.orcid.unlink.processing": "प्रक्रिया करत आहे...", - // "person.page.orcid.missing-authorizations": "Missing authorizations", "person.page.orcid.missing-authorizations": "परवानग्या गहाळ आहेत", - // "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", - // TODO New key - Add a translation - "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + "person.page.orcid.missing-authorizations-message": "खालील परवानग्या गहाळ आहेत:", - // "person.page.orcid.no-missing-authorizations-message": "Great! This box is empty, so you have granted all access rights to use all functions offers by your institution.", "person.page.orcid.no-missing-authorizations-message": "छान! हे बॉक्स रिकामे आहे, त्यामुळे तुम्ही तुमच्या संस्थेने ऑफर केलेल्या सर्व कार्ये वापरण्यासाठी सर्व प्रवेश अधिकार मंजूर केले आहेत.", - // "person.page.orcid.no-orcid-message": "No ORCID iD associated yet. By clicking on the button below it is possible to link this profile with an ORCID account.", "person.page.orcid.no-orcid-message": "अद्याप कोणताही ORCID आयडी संबंधित नाही. खालील बटणावर क्लिक करून हा प्रोफाइल ORCID खात्याशी लिंक करणे शक्य आहे.", - // "person.page.orcid.profile-preferences": "Profile preferences", "person.page.orcid.profile-preferences": "प्रोफाइल प्राधान्ये", - // "person.page.orcid.funding-preferences": "Funding preferences", "person.page.orcid.funding-preferences": "फंडिंग प्राधान्ये", - // "person.page.orcid.publications-preferences": "Publication preferences", "person.page.orcid.publications-preferences": "प्रकाशन प्राधान्ये", - // "person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator", "person.page.orcid.remove-orcid-message": "तुम्हाला तुमचा ORCID काढून टाकायचा असल्यास, कृपया रेपॉझिटरी प्रशासकाशी संपर्क साधा", - // "person.page.orcid.save.preference.changes": "Update settings", "person.page.orcid.save.preference.changes": "सेटिंग्ज अद्यतनित करा", - // "person.page.orcid.sync-profile.affiliation": "Affiliation", "person.page.orcid.sync-profile.affiliation": "संबद्धता", - // "person.page.orcid.sync-profile.biographical": "Biographical data", "person.page.orcid.sync-profile.biographical": "जीवनी माहिती", - // "person.page.orcid.sync-profile.education": "Education", "person.page.orcid.sync-profile.education": "शिक्षण", - // "person.page.orcid.sync-profile.identifiers": "Identifiers", "person.page.orcid.sync-profile.identifiers": "ओळखपत्रे", - // "person.page.orcid.sync-fundings.all": "All fundings", "person.page.orcid.sync-fundings.all": "सर्व निधी", - // "person.page.orcid.sync-fundings.mine": "My fundings", "person.page.orcid.sync-fundings.mine": "माझे निधी", - // "person.page.orcid.sync-fundings.my_selected": "Selected fundings", "person.page.orcid.sync-fundings.my_selected": "निवडलेले निधी", - // "person.page.orcid.sync-fundings.disabled": "Disabled", "person.page.orcid.sync-fundings.disabled": "अक्षम", - // "person.page.orcid.sync-publications.all": "All publications", "person.page.orcid.sync-publications.all": "सर्व प्रकाशने", - // "person.page.orcid.sync-publications.mine": "My publications", "person.page.orcid.sync-publications.mine": "माझी प्रकाशने", - // "person.page.orcid.sync-publications.my_selected": "Selected publications", "person.page.orcid.sync-publications.my_selected": "निवडलेली प्रकाशने", - // "person.page.orcid.sync-publications.disabled": "Disabled", "person.page.orcid.sync-publications.disabled": "अक्षम", - // "person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry", "person.page.orcid.sync-queue.discard": "बदल रद्द करा आणि ORCID रजिस्ट्रीसह समक्रमित करू नका", - // "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed", "person.page.orcid.sync-queue.discard.error": "ORCID क्यू रेकॉर्ड रद्द करण्यात अयशस्वी", - // "person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully", "person.page.orcid.sync-queue.discard.success": "ORCID क्यू रेकॉर्ड यशस्वीरित्या रद्द केले गेले", - // "person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty", "person.page.orcid.sync-queue.empty-message": "ORCID क्यू रजिस्ट्री रिकामी आहे", - // "person.page.orcid.sync-queue.table.header.type": "Type", "person.page.orcid.sync-queue.table.header.type": "प्रकार", - // "person.page.orcid.sync-queue.table.header.description": "Description", "person.page.orcid.sync-queue.table.header.description": "वर्णन", - // "person.page.orcid.sync-queue.table.header.action": "Action", "person.page.orcid.sync-queue.table.header.action": "क्रिया", - // "person.page.orcid.sync-queue.description.affiliation": "Affiliations", "person.page.orcid.sync-queue.description.affiliation": "संबद्धता", - // "person.page.orcid.sync-queue.description.country": "Country", "person.page.orcid.sync-queue.description.country": "देश", - // "person.page.orcid.sync-queue.description.education": "Educations", "person.page.orcid.sync-queue.description.education": "शिक्षण", - // "person.page.orcid.sync-queue.description.external_ids": "External ids", "person.page.orcid.sync-queue.description.external_ids": "बाह्य ओळखपत्रे", - // "person.page.orcid.sync-queue.description.other_names": "Other names", "person.page.orcid.sync-queue.description.other_names": "इतर नावे", - // "person.page.orcid.sync-queue.description.qualification": "Qualifications", "person.page.orcid.sync-queue.description.qualification": "पात्रता", - // "person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls", "person.page.orcid.sync-queue.description.researcher_urls": "संशोधक URLs", - // "person.page.orcid.sync-queue.description.keywords": "Keywords", "person.page.orcid.sync-queue.description.keywords": "कीवर्ड", - // "person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry", "person.page.orcid.sync-queue.tooltip.insert": "ORCID रजिस्ट्रीमध्ये नवीन नोंद जोडा", - // "person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry", "person.page.orcid.sync-queue.tooltip.update": "ORCID रजिस्ट्रीवर ही नोंद अद्यतनित करा", - // "person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry", "person.page.orcid.sync-queue.tooltip.delete": "ORCID रजिस्ट्रीमधून ही नोंद काढा", - // "person.page.orcid.sync-queue.tooltip.publication": "Publication", "person.page.orcid.sync-queue.tooltip.publication": "प्रकाशन", - // "person.page.orcid.sync-queue.tooltip.project": "Project", "person.page.orcid.sync-queue.tooltip.project": "प्रकल्प", - // "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", "person.page.orcid.sync-queue.tooltip.affiliation": "संबद्धता", - // "person.page.orcid.sync-queue.tooltip.education": "Education", "person.page.orcid.sync-queue.tooltip.education": "शिक्षण", - // "person.page.orcid.sync-queue.tooltip.qualification": "Qualification", "person.page.orcid.sync-queue.tooltip.qualification": "पात्रता", - // "person.page.orcid.sync-queue.tooltip.other_names": "Other name", "person.page.orcid.sync-queue.tooltip.other_names": "इतर नाव", - // "person.page.orcid.sync-queue.tooltip.country": "Country", "person.page.orcid.sync-queue.tooltip.country": "देश", - // "person.page.orcid.sync-queue.tooltip.keywords": "Keyword", "person.page.orcid.sync-queue.tooltip.keywords": "कीवर्ड", - // "person.page.orcid.sync-queue.tooltip.external_ids": "External identifier", "person.page.orcid.sync-queue.tooltip.external_ids": "बाह्य ओळखपत्र", - // "person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url", "person.page.orcid.sync-queue.tooltip.researcher_urls": "संशोधक URL", - // "person.page.orcid.sync-queue.send": "Synchronize with ORCID registry", "person.page.orcid.sync-queue.send": "ORCID रजिस्ट्रीसह समक्रमित करा", - // "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.", "person.page.orcid.sync-queue.send.unauthorized-error.title": "परवानग्या गहाळ असल्यामुळे ORCID ला सबमिशन अयशस्वी.", - // "person.page.orcid.sync-queue.send.unauthorized-error.content": "Click here to grant again the required permissions. If the problem persists, contact the administrator", "person.page.orcid.sync-queue.send.unauthorized-error.content": "आवश्यक परवानग्या पुन्हा मंजूर करण्यासाठी येथे क्लिक करा. समस्या कायम राहिल्यास, प्रशासकाशी संपर्क साधा", - // "person.page.orcid.sync-queue.send.bad-request-error": "The submission to ORCID failed because the resource sent to ORCID registry is not valid", "person.page.orcid.sync-queue.send.bad-request-error": "ORCID रजिस्ट्रीला पाठवलेला संसाधन वैध नसल्यामुळे ORCID ला सबमिशन अयशस्वी", - // "person.page.orcid.sync-queue.send.error": "The submission to ORCID failed", "person.page.orcid.sync-queue.send.error": "ORCID ला सबमिशन अयशस्वी", - // "person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry", "person.page.orcid.sync-queue.send.conflict-error": "संसाधन आधीच ORCID रजिस्ट्रीवर असल्यामुळे ORCID ला सबमिशन अयशस्वी", - // "person.page.orcid.sync-queue.send.not-found-warning": "The resource does not exists anymore on the ORCID registry.", "person.page.orcid.sync-queue.send.not-found-warning": "संसाधन ORCID रजिस्ट्रीवर आता अस्तित्वात नाही.", - // "person.page.orcid.sync-queue.send.success": "The submission to ORCID was completed successfully", "person.page.orcid.sync-queue.send.success": "ORCID ला सबमिशन यशस्वीरित्या पूर्ण झाले", - // "person.page.orcid.sync-queue.send.validation-error": "The data that you want to synchronize with ORCID is not valid", "person.page.orcid.sync-queue.send.validation-error": "तुम्ही ORCID सह समक्रमित करू इच्छित असलेली माहिती वैध नाही", - // "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "The amount's currency is required", "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "रकमेची चलन आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.external-id.required": "The resource to be sent requires at least one identifier", "person.page.orcid.sync-queue.send.validation-error.external-id.required": "पाठवण्यासाठी संसाधनासाठी किमान एक ओळखपत्र आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.title.required": "The title is required", "person.page.orcid.sync-queue.send.validation-error.title.required": "शीर्षक आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required", "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required", "person.page.orcid.sync-queue.send.validation-error.start-date.required": "प्रारंभ तारीख आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required", "person.page.orcid.sync-queue.send.validation-error.funder.required": "निधीदार आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.country.invalid": "अवैध 2 अंकी ISO 3166 देश", - // "person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required", "person.page.orcid.sync-queue.send.validation-error.organization.required": "संस्था आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required", "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "संस्थेचे नाव आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900", "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "प्रकाशन तारीख 1900 नंतर एक वर्ष असणे आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address", "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "पाठवण्यासाठी संस्थेला पत्ता आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "The address of the organization to be sent requires a city", "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "पाठवण्यासाठी संस्थेच्या पत्त्याला शहर आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "The address of the organization to be sent requires a valid 2 digits ISO 3166 country", "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "पाठवण्यासाठी संस्थेच्या पत्त्याला वैध 2 अंकी ISO 3166 देश आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "An identifier to disambiguate organizations is required. Supported ids are GRID, Ringgold, Legal Entity identifiers (LEIs) and Crossref Funder Registry identifiers", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "संस्थांना स्पष्ट करण्यासाठी ओळखपत्र आवश्यक आहे. समर्थित आयडी आहेत GRID, Ringgold, Legal Entity identifiers (LEIs) आणि Crossref Funder Registry identifiers", - // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "The organization's identifiers requires a value", "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "संस्थांच्या ओळखपत्रांना मूल्य आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "The organization's identifiers requires a source", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "संस्थांच्या ओळखपत्रांना स्रोत आवश्यक आहे", - // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "The source of one of the organization identifiers is invalid. Supported sources are RINGGOLD, GRID, LEI and FUNDREF", "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "संस्थांच्या ओळखपत्रांपैकी एकाचा स्रोत अवैध आहे. समर्थित स्रोत आहेत RINGGOLD, GRID, LEI आणि FUNDREF", - // "person.page.orcid.synchronization-mode": "Synchronization mode", "person.page.orcid.synchronization-mode": "समक्रमण मोड", - // "person.page.orcid.synchronization-mode.batch": "Batch", "person.page.orcid.synchronization-mode.batch": "बॅच", - // "person.page.orcid.synchronization-mode.label": "Synchronization mode", "person.page.orcid.synchronization-mode.label": "समक्रमण मोड", - // "person.page.orcid.synchronization-mode-message": "Please select how you would like synchronization to ORCID to occur. The options include \"Manual\" (you must send your data to ORCID manually), or \"Batch\" (the system will send your data to ORCID via a scheduled script).", "person.page.orcid.synchronization-mode-message": "कृपया ORCID सह समक्रमण कसे करायचे ते निवडा. पर्यायांमध्ये \"मॅन्युअल\" (तुम्हाला तुमची माहिती ORCID ला मॅन्युअली पाठवावी लागेल), किंवा \"बॅच\" (सिस्टम तुमची माहिती ORCID ला शेड्यूल केलेल्या स्क्रिप्टद्वारे पाठवेल) समाविष्ट आहे.", - // "person.page.orcid.synchronization-mode-funding-message": "Select whether to send your linked Project entities to your ORCID record's list of funding information.", "person.page.orcid.synchronization-mode-funding-message": "तुमच्या ORCID रेकॉर्डच्या निधी माहितीच्या यादीत तुमच्या लिंक केलेल्या प्रकल्प संस्थांना पाठवायचे आहे की नाही ते निवडा.", - // "person.page.orcid.synchronization-mode-publication-message": "Select whether to send your linked Publication entities to your ORCID record's list of works.", "person.page.orcid.synchronization-mode-publication-message": "तुमच्या ORCID रेकॉर्डच्या कामांच्या यादीत तुमच्या लिंक केलेल्या प्रकाशन संस्थांना पाठवायचे आहे की नाही ते निवडा.", - // "person.page.orcid.synchronization-mode-profile-message": "Select whether to send your biographical data or personal identifiers to your ORCID record.", "person.page.orcid.synchronization-mode-profile-message": "तुमची जीवनी माहिती किंवा वैयक्तिक ओळखपत्रे तुमच्या ORCID रेकॉर्डला पाठवायची आहे की नाही ते निवडा.", - // "person.page.orcid.synchronization-settings-update.success": "The synchronization settings have been updated successfully", "person.page.orcid.synchronization-settings-update.success": "समक्रमण सेटिंग्ज यशस्वीरित्या अद्यतनित केल्या गेल्या", - // "person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed", "person.page.orcid.synchronization-settings-update.error": "समक्रमण सेटिंग्ज अद्यतनित करण्यात अयशस्वी", - // "person.page.orcid.synchronization-mode.manual": "Manual", "person.page.orcid.synchronization-mode.manual": "मॅन्युअल", - // "person.page.orcid.scope.authenticate": "Get your ORCID iD", "person.page.orcid.scope.authenticate": "तुमचा ORCID आयडी मिळवा", - // "person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties", "person.page.orcid.scope.read-limited": "विश्वासार्ह पक्षांना दृश्यमानता सेटसह तुमची माहिती वाचा", - // "person.page.orcid.scope.activities-update": "Add/update your research activities", "person.page.orcid.scope.activities-update": "तुमच्या संशोधन क्रियाकलाप जोडा/अद्यतनित करा", - // "person.page.orcid.scope.person-update": "Add/update other information about you", "person.page.orcid.scope.person-update": "तुमच्याबद्दल इतर माहिती जोडा/अद्यतनित करा", - // "person.page.orcid.unlink.success": "The disconnection between the profile and the ORCID registry was successful", "person.page.orcid.unlink.success": "प्रोफाइल आणि ORCID रजिस्ट्रीमधील डिस्कनेक्शन यशस्वी झाले", - // "person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again", "person.page.orcid.unlink.error": "प्रोफाइल आणि ORCID रजिस्ट्रीमधील डिस्कनेक्ट करताना त्रुटी आली. पुन्हा प्रयत्न करा", - // "person.orcid.sync.setting": "ORCID Synchronization settings", "person.orcid.sync.setting": "ORCID समक्रमण सेटिंग्ज", - // "person.orcid.registry.queue": "ORCID Registry Queue", "person.orcid.registry.queue": "ORCID रजिस्ट्री क्यू", - // "person.orcid.registry.auth": "ORCID Authorizations", "person.orcid.registry.auth": "ORCID परवानग्या", - // "person.orcid-tooltip.authenticated": "{{orcid}}", "person.orcid-tooltip.authenticated": "{{orcid}}", - // "person.orcid-tooltip.not-authenticated": "{{orcid}} (unconfirmed)", "person.orcid-tooltip.not-authenticated": "{{orcid}} (अप्रमाणित)", - // "home.recent-submissions.head": "Recent Submissions", "home.recent-submissions.head": "अलीकडील सबमिशन", - // "listable-notification-object.default-message": "This object couldn't be retrieved", "listable-notification-object.default-message": "हा ऑब्जेक्ट पुनर्प्राप्त केला जाऊ शकला नाही", - // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", "system-wide-alert-banner.retrieval.error": "सिस्टम-वाइड अलर्ट बॅनर पुनर्प्राप्त करताना काहीतरी चुकले", - // "system-wide-alert-banner.countdown.prefix": "In", "system-wide-alert-banner.countdown.prefix": "मध्ये", - // "system-wide-alert-banner.countdown.days": "{{days}} day(s),", "system-wide-alert-banner.countdown.days": "{{days}} दिवस(े),", - // "system-wide-alert-banner.countdown.hours": "{{hours}} hour(s) and", "system-wide-alert-banner.countdown.hours": "{{hours}} तास(े) आणि", - // "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", - // TODO New key - Add a translation - "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + "system-wide-alert-banner.countdown.minutes": "{{minutes}} मिनिट(े):", - // "menu.section.system-wide-alert": "System-wide Alert", "menu.section.system-wide-alert": "सिस्टम-वाइड अलर्ट", - // "system-wide-alert.form.header": "System-wide Alert", "system-wide-alert.form.header": "सिस्टम-वाइड अलर्ट", - // "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert", "system-wide-alert-form.retrieval.error": "सिस्टम-वाइड अलर्ट पुनर्प्राप्त करताना काहीतरी चुकले", - // "system-wide-alert.form.cancel": "Cancel", "system-wide-alert.form.cancel": "रद्द करा", - // "system-wide-alert.form.save": "Save", "system-wide-alert.form.save": "जतन करा", - // "system-wide-alert.form.label.active": "ACTIVE", "system-wide-alert.form.label.active": "सक्रिय", - // "system-wide-alert.form.label.inactive": "INACTIVE", "system-wide-alert.form.label.inactive": "निष्क्रिय", - // "system-wide-alert.form.error.message": "The system wide alert must have a message", "system-wide-alert.form.error.message": "सिस्टम-वाइड अलर्टमध्ये संदेश असणे आवश्यक आहे", - // "system-wide-alert.form.label.message": "Alert message", "system-wide-alert.form.label.message": "अलर्ट संदेश", - // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer", "system-wide-alert.form.label.countdownTo.enable": "काउंटडाउन टाइमर सक्षम करा", - // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", - // TODO New key - Add a translation - "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", + "system-wide-alert.form.label.countdownTo.hint": "सूचना: काउंटडाउन टाइमर सेट करा. सक्षम केल्यावर, भविष्यातील तारीख सेट केली जाऊ शकते आणि सिस्टम-वाइड अलर्ट बॅनर सेट केलेल्या तारखेपर्यंत काउंटडाउन करेल. जेव्हा हा टाइमर संपेल, तेव्हा अलर्टमधून तो अदृश्य होईल. सर्व्हर आपोआप थांबवला जाणार नाही.", - // "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", "system-wide-alert-form.select-date-by-calendar": "कॅलेंडर वापरून तारीख निवडा", - // "system-wide-alert.form.label.preview": "System-wide alert preview", "system-wide-alert.form.label.preview": "सिस्टम-वाइड अलर्ट पूर्वावलोकन", - // "system-wide-alert.form.update.success": "The system-wide alert was successfully updated", "system-wide-alert.form.update.success": "सिस्टम-वाइड अलर्ट यशस्वीरित्या अद्यतनित केले गेले", - // "system-wide-alert.form.update.error": "Something went wrong when updating the system-wide alert", "system-wide-alert.form.update.error": "सिस्टम-वाइड अलर्ट अद्यतनित करताना काहीतरी चुकले", - // "system-wide-alert.form.create.success": "The system-wide alert was successfully created", "system-wide-alert.form.create.success": "सिस्टम-वाइड अलर्ट यशस्वीरित्या तयार केले गेले", - // "system-wide-alert.form.create.error": "Something went wrong when creating the system-wide alert", "system-wide-alert.form.create.error": "सिस्टम-वाइड अलर्ट तयार करताना काहीतरी चुकले", - // "admin.system-wide-alert.breadcrumbs": "System-wide Alerts", "admin.system-wide-alert.breadcrumbs": "सिस्टम-वाइड अलर्ट", - // "admin.system-wide-alert.title": "System-wide Alerts", "admin.system-wide-alert.title": "सिस्टम-वाइड अलर्ट", - // "discover.filters.head": "Discover", "discover.filters.head": "शोधा", - // "item-access-control-title": "This form allows you to perform changes to the access conditions of the item's metadata or its bitstreams.", "item-access-control-title": "हे फॉर्म तुम्हाला आयटमच्या मेटाडेटा किंवा त्याच्या बिटस्ट्रीम्सच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते.", - // "collection-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by this collection. Changes may be performed to either all Item metadata or all content (bitstreams).", "collection-access-control-title": "हे फॉर्म तुम्हाला या संग्रहाच्या मालकीच्या सर्व आयटमच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते. सर्व आयटम मेटाडेटा किंवा सर्व सामग्री (बिटस्ट्रीम्स) मध्ये बदल केले जाऊ शकतात.", - // "community-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by any collection under this community. Changes may be performed to either all Item metadata or all content (bitstreams).", "community-access-control-title": "हे फॉर्म तुम्हाला या समुदायाखालील कोणत्याही संग्रहाच्या मालकीच्या सर्व आयटमच्या प्रवेश अटींमध्ये बदल करण्याची परवानगी देते. सर्व आयटम मेटाडेटा किंवा सर्व सामग्री (बिटस्ट्रीम्स) मध्ये बदल केले जाऊ शकतात.", - // "access-control-item-header-toggle": "Item's Metadata", "access-control-item-header-toggle": "आयटमचे मेटाडेटा", - // "access-control-item-toggle.enable": "Enable option to perform changes on the item's metadata", "access-control-item-toggle.enable": "आयटमच्या मेटाडेटावर बदल करण्याचा पर्याय सक्षम करा", - // "access-control-item-toggle.disable": "Disable option to perform changes on the item's metadata", "access-control-item-toggle.disable": "आयटमच्या मेटाडेटावर बदल करण्याचा पर्याय अक्षम करा", - // "access-control-bitstream-header-toggle": "Bitstreams", "access-control-bitstream-header-toggle": "बिटस्ट्रीम्स", - // "access-control-bitstream-toggle.enable": "Enable option to perform changes on the bitstreams", "access-control-bitstream-toggle.enable": "बिटस्ट्रीम्सवर बदल करण्याचा पर्याय सक्षम करा", - // "access-control-bitstream-toggle.disable": "Disable option to perform changes on the bitstreams", "access-control-bitstream-toggle.disable": "बिटस्ट्रीम्सवर बदल करण्याचा पर्याय अक्षम करा", - // "access-control-mode": "Mode", "access-control-mode": "मोड", - // "access-control-access-conditions": "Access conditions", "access-control-access-conditions": "प्रवेश अटी", - // "access-control-no-access-conditions-warning-message": "Currently, no access conditions are specified below. If executed, this will replace the current access conditions with the default access conditions inherited from the owning collection.", "access-control-no-access-conditions-warning-message": "सध्या, खाली कोणत्याही प्रवेश अटी निर्दिष्ट केलेल्या नाहीत. जर अंमलात आणले, तर हे वर्तमान प्रवेश अटींना मालकीच्या संग्रहाकडून वारसाहक्काने मिळालेल्या डीफॉल्ट प्रवेश अटींनी बदलले जाईल.", - // "access-control-replace-all": "Replace access conditions", "access-control-replace-all": "प्रवेश अटी बदला", - // "access-control-add-to-existing": "Add to existing ones", "access-control-add-to-existing": "अस्तित्वात असलेल्या अटींमध्ये जोडा", - // "access-control-limit-to-specific": "Limit the changes to specific bitstreams", "access-control-limit-to-specific": "विशिष्ट बिटस्ट्रीम्सपर्यंत बदल मर्यादित करा", - // "access-control-process-all-bitstreams": "Update all the bitstreams in the item", "access-control-process-all-bitstreams": "आयटममधील सर्व बिटस्ट्रीम्स अद्यतनित करा", - // "access-control-bitstreams-selected": "bitstreams selected", "access-control-bitstreams-selected": "बिटस्ट्रीम्स निवडले", - // "access-control-bitstreams-select": "Select bitstreams", "access-control-bitstreams-select": "बिटस्ट्रीम्स निवडा", - // "access-control-cancel": "Cancel", "access-control-cancel": "रद्द करा", - // "access-control-execute": "Execute", "access-control-execute": "अंमलात आणा", - // "access-control-add-more": "Add more", "access-control-add-more": "अधिक जोडा", - // "access-control-remove": "Remove access condition", "access-control-remove": "प्रवेश अट काढा", - // "access-control-select-bitstreams-modal.title": "Select bitstreams", "access-control-select-bitstreams-modal.title": "बिटस्ट्रीम्स निवडा", - // "access-control-select-bitstreams-modal.no-items": "No items to show.", "access-control-select-bitstreams-modal.no-items": "दाखवण्यासाठी कोणतेही आयटम नाहीत.", - // "access-control-select-bitstreams-modal.close": "Close", "access-control-select-bitstreams-modal.close": "बंद करा", - // "access-control-option-label": "Access condition type", "access-control-option-label": "प्रवेश अट प्रकार", - // "access-control-option-note": "Choose an access condition to apply to selected objects.", "access-control-option-note": "निवडलेल्या ऑब्जेक्ट्सवर लागू करण्यासाठी प्रवेश अट निवडा.", - // "access-control-option-start-date": "Grant access from", "access-control-option-start-date": "या तारखेपासून प्रवेश मंजूर करा", - // "access-control-option-start-date-note": "Select the date from which the related access condition is applied", "access-control-option-start-date-note": "संबंधित प्रवेश अट लागू होण्याची तारीख निवडा", - // "access-control-option-end-date": "Grant access until", "access-control-option-end-date": "या तारखेपर्यंत प्रवेश मंजूर करा", - // "access-control-option-end-date-note": "Select the date until which the related access condition is applied", "access-control-option-end-date-note": "संबंधित प्रवेश अट लागू होण्याची तारीख निवडा", - // "vocabulary-treeview.search.form.add": "Add", "vocabulary-treeview.search.form.add": "जोडा", - // "admin.notifications.publicationclaim.breadcrumbs": "Publication Claim", "admin.notifications.publicationclaim.breadcrumbs": "प्रकाशन दावा", - // "admin.notifications.publicationclaim.page.title": "Publication Claim", "admin.notifications.publicationclaim.page.title": "प्रकाशन दावा", - // "coar-notify-support.title": "COAR Notify Protocol", "coar-notify-support.title": "COAR सूचित प्रोटोकॉल", - // "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", - // TODO New key - Add a translation - "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", + "coar-notify-support-title.content": "येथे, आम्ही COAR सूचित प्रोटोकॉलला पूर्णपणे समर्थन देतो, जो रेपॉझिटरीजमधील संवाद वाढवण्यासाठी डिझाइन केलेला आहे. COAR सूचित प्रोटोकॉलबद्दल अधिक जाणून घेण्यासाठी, COAR सूचित वेबसाइट ला भेट द्या.", - // "coar-notify-support.ldn-inbox.title": "LDN InBox", "coar-notify-support.ldn-inbox.title": "LDN इनबॉक्स", - // "coar-notify-support.ldn-inbox.content": "For your convenience, our LDN (Linked Data Notifications) InBox is easily accessible at {{ ldnInboxUrl }}. The LDN InBox enables seamless communication and data exchange, ensuring efficient and effective collaboration.", "coar-notify-support.ldn-inbox.content": "तुमच्या सोयीसाठी, आमचा LDN (लिंक्ड डेटा नोटिफिकेशन्स) इनबॉक्स {{ ldnInboxUrl }} येथे सहजपणे प्रवेशयोग्य आहे. LDN इनबॉक्स सहज संवाद आणि डेटा एक्सचेंज सक्षम करते, कार्यक्षम आणि प्रभावी सहयोग सुनिश्चित करते.", - // "coar-notify-support.message-moderation.title": "Message Moderation", "coar-notify-support.message-moderation.title": "संदेश संयम", - // "coar-notify-support.message-moderation.content": "To ensure a secure and productive environment, all incoming LDN messages are moderated. If you are planning to exchange information with us, kindly reach out via our dedicated", "coar-notify-support.message-moderation.content": "सुरक्षित आणि उत्पादक वातावरण सुनिश्चित करण्यासाठी, सर्व येणारे LDN संदेश नियंत्रित केले जातात. जर तुम्ही आमच्याशी माहितीची देवाणघेवाण करण्याचा विचार करत असाल, तर कृपया आमच्या समर्पित", - // "coar-notify-support.message-moderation.feedback-form": " Feedback form.", "coar-notify-support.message-moderation.feedback-form": " अभिप्राय फॉर्मद्वारे संपर्क साधा.", - // "service.overview.delete.header": "Delete Service", "service.overview.delete.header": "सेवा हटवा", - // "ldn-registered-services.title": "Registered Services", "ldn-registered-services.title": "नोंदणीकृत सेवा", - // "ldn-registered-services.table.name": "Name", + "ldn-registered-services.table.name": "नाव", - // "ldn-registered-services.table.description": "Description", + "ldn-registered-services.table.description": "वर्णन", - // "ldn-registered-services.table.status": "Status", + "ldn-registered-services.table.status": "स्थिती", - // "ldn-registered-services.table.action": "Action", + "ldn-registered-services.table.action": "क्रिया", - // "ldn-registered-services.new": "NEW", + "ldn-registered-services.new": "नवीन", - // "ldn-registered-services.new.breadcrumbs": "Registered Services", + "ldn-registered-services.new.breadcrumbs": "नोंदणीकृत सेवा", - // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "सक्षम", - // "ldn-service.overview.table.disabled": "Disabled", + "ldn-service.overview.table.disabled": "अक्षम", - // "ldn-service.overview.table.clickToEnable": "Click to enable", + "ldn-service.overview.table.clickToEnable": "सक्षम करण्यासाठी क्लिक करा", - // "ldn-service.overview.table.clickToDisable": "Click to disable", + "ldn-service.overview.table.clickToDisable": "अक्षम करण्यासाठी क्लिक करा", - // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "सेवा संपादित करा", - // "ldn-create-service.title": "Create service", + "ldn-create-service.title": "सेवा तयार करा", - // "service.overview.create.modal": "Create Service", + "service.overview.create.modal": "सेवा तयार करा", - // "service.overview.create.body": "Please confirm the creation of this service.", + "service.overview.create.body": "कृपया या सेवेची निर्मितीची पुष्टी करा.", - // "ldn-service-status": "Status", + "ldn-service-status": "स्थिती", - // "service.confirm.create": "Create", + "service.confirm.create": "तयार करा", - // "service.refuse.create": "Cancel", + "service.refuse.create": "रद्द करा", - // "ldn-register-new-service.title": "Register a new service", + "ldn-register-new-service.title": "नवीन सेवा नोंदणी करा", - // "ldn-new-service.form.label.submit": "Save", + "ldn-new-service.form.label.submit": "जतन करा", - // "ldn-new-service.form.label.name": "Name", + "ldn-new-service.form.label.name": "नाव", - // "ldn-new-service.form.label.description": "Description", + "ldn-new-service.form.label.description": "वर्णन", - // "ldn-new-service.form.label.url": "Service URL", + "ldn-new-service.form.label.url": "सेवा URL", - // "ldn-new-service.form.label.ip-range": "Service IP range", + "ldn-new-service.form.label.ip-range": "सेवा IP श्रेणी", - // "ldn-new-service.form.label.score": "Level of trust", + "ldn-new-service.form.label.score": "विश्वास पातळी", - // "ldn-new-service.form.label.ldnUrl": "LDN Inbox URL", + "ldn-new-service.form.label.ldnUrl": "LDN इनबॉक्स URL", - // "ldn-new-service.form.placeholder.name": "Please provide service name", + "ldn-new-service.form.placeholder.name": "कृपया सेवा नाव द्या", - // "ldn-new-service.form.placeholder.description": "Please provide a description regarding your service", + "ldn-new-service.form.placeholder.description": "कृपया तुमच्या सेवेसंबंधी वर्णन द्या", - // "ldn-new-service.form.placeholder.url": "Please input the URL for users to check out more information about the service", + "ldn-new-service.form.placeholder.url": "कृपया सेवा विषयी अधिक माहिती तपासण्यासाठी URL प्रविष्ट करा", - // "ldn-new-service.form.placeholder.lowerIp": "IPv4 range lower bound", + "ldn-new-service.form.placeholder.lowerIp": "IPv4 श्रेणी खालचा मर्यादा", - // "ldn-new-service.form.placeholder.upperIp": "IPv4 range upper bound", + "ldn-new-service.form.placeholder.upperIp": "IPv4 श्रेणी वरचा मर्यादा", - // "ldn-new-service.form.placeholder.ldnUrl": "Please specify the URL of the LDN Inbox", + "ldn-new-service.form.placeholder.ldnUrl": "कृपया LDN इनबॉक्सचा URL निर्दिष्ट करा", - // "ldn-new-service.form.placeholder.score": "Please enter a value between 0 and 1. Use the “.” as decimal separator", + "ldn-new-service.form.placeholder.score": "कृपया 0 आणि 1 दरम्यान मूल्य प्रविष्ट करा. दशांश विभाजक म्हणून “.” वापरा", - // "ldn-service.form.label.placeholder.default-select": "Select a pattern", + "ldn-service.form.label.placeholder.default-select": "एक नमुना निवडा", - // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "मान्य करा आणि स्वीकारा", - // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", + "ldn-service.form.pattern.ack-accept.description": "हा नमुना विनंती (ऑफर) मान्य करण्यासाठी वापरला जातो. याचा अर्थ विनंतीवर कृती करण्याचा हेतू आहे.", - // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", + "ldn-service.form.pattern.ack-accept.category": "मान्यतापत्रे", - // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "मान्य करा आणि नाकार", - // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", + "ldn-service.form.pattern.ack-reject.description": "हा नमुना विनंती (ऑफर) नाकारण्यासाठी वापरला जातो. याचा अर्थ विनंतीसंबंधी पुढील कृती नाही.", - // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", + "ldn-service.form.pattern.ack-reject.category": "मान्यतापत्रे", - // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "मान्य करा आणि तात्पुरते स्वीकारा", - // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", + "ldn-service.form.pattern.ack-tentative-accept.description": "हा नमुना विनंती (ऑफर) तात्पुरते स्वीकारण्यासाठी वापरला जातो. याचा अर्थ कृती करण्याचा हेतू आहे, जो बदलू शकतो.", - // "ldn-service.form.pattern.ack-tentative-accept.category": "Acknowledgements", + "ldn-service.form.pattern.ack-tentative-accept.category": "मान्यतापत्रे", - // "ldn-service.form.pattern.ack-tentative-reject.label": "Acknowledge and Tentatively Reject", "ldn-service.form.pattern.ack-tentative-reject.label": "मान्य करा आणि तात्पुरते नाकार", - // "ldn-service.form.pattern.ack-tentative-reject.description": "This pattern is used to acknowledge and tentatively reject a request (offer). It signifies no further action, subject to change.", + "ldn-service.form.pattern.ack-tentative-reject.description": "हा नमुना विनंती (ऑफर) तात्पुरते नाकारण्यासाठी वापरला जातो. याचा अर्थ पुढील कृती नाही, जो बदलू शकतो.", - // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", + "ldn-service.form.pattern.ack-tentative-reject.category": "मान्यतापत्रे", - // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "मान्यता जाहीर करा", - // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", + "ldn-service.form.pattern.announce-endorsement.description": "हा नमुना मान्यतेचे अस्तित्व जाहीर करण्यासाठी वापरला जातो, संदर्भित संसाधनाचा उल्लेख करतो.", - // "ldn-service.form.pattern.announce-endorsement.category": "Announcements", + "ldn-service.form.pattern.announce-endorsement.category": "जाहिराती", - // "ldn-service.form.pattern.announce-ingest.label": "Announce Ingest", "ldn-service.form.pattern.announce-ingest.label": "ग्रहण जाहीर करा", - // "ldn-service.form.pattern.announce-ingest.description": "This pattern is used to announce that a resource has been ingested.", + "ldn-service.form.pattern.announce-ingest.description": "हा नमुना संसाधन ग्रहण केले असल्याचे जाहीर करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.announce-ingest.category": "Announcements", + "ldn-service.form.pattern.announce-ingest.category": "जाहिराती", - // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "संबंध जाहीर करा", - // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", + "ldn-service.form.pattern.announce-relationship.description": "हा नमुना दोन संसाधनांमधील संबंध जाहीर करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.announce-relationship.category": "Announcements", + "ldn-service.form.pattern.announce-relationship.category": "जाहिराती", - // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "पुनरावलोकन जाहीर करा", - // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", + "ldn-service.form.pattern.announce-review.description": "हा नमुना पुनरावलोकनाचे अस्तित्व जाहीर करण्यासाठी वापरला जातो, पुनरावलोकित संसाधनाचा संदर्भ देतो.", - // "ldn-service.form.pattern.announce-review.category": "Announcements", + "ldn-service.form.pattern.announce-review.category": "जाहिराती", - // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "सेवा परिणाम जाहीर करा", - // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", + "ldn-service.form.pattern.announce-service-result.description": "हा नमुना 'सेवा परिणाम' अस्तित्व जाहीर करण्यासाठी वापरला जातो, संबंधित संसाधनाचा संदर्भ देतो.", - // "ldn-service.form.pattern.announce-service-result.category": "Announcements", + "ldn-service.form.pattern.announce-service-result.category": "जाहिराती", - // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "मान्यता विनंती", - // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", + "ldn-service.form.pattern.request-endorsement.description": "हा नमुना मूळ प्रणालीद्वारे मालकी असलेल्या संसाधनाची मान्यता विनंती करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.request-endorsement.category": "Requests", + "ldn-service.form.pattern.request-endorsement.category": "विनंत्या", - // "ldn-service.form.pattern.request-ingest.label": "Request Ingest", "ldn-service.form.pattern.request-ingest.label": "ग्रहण विनंती", - // "ldn-service.form.pattern.request-ingest.description": "This pattern is used to request that the target system ingest a resource.", + "ldn-service.form.pattern.request-ingest.description": "हा नमुना लक्ष्य प्रणालीला संसाधन ग्रहण करण्याची विनंती करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.request-ingest.category": "Requests", + "ldn-service.form.pattern.request-ingest.category": "विनंत्या", - // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "पुनरावलोकन विनंती", - // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", + "ldn-service.form.pattern.request-review.description": "हा नमुना मूळ प्रणालीद्वारे मालकी असलेल्या संसाधनाचे पुनरावलोकन करण्याची विनंती करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.request-review.category": "Requests", + "ldn-service.form.pattern.request-review.category": "विनंत्या", - // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "ऑफर रद्द करा", - // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", + "ldn-service.form.pattern.undo-offer.description": "हा नमुना पूर्वी केलेली ऑफर रद्द (मागे घेणे) करण्यासाठी वापरला जातो.", - // "ldn-service.form.pattern.undo-offer.category": "Undo", + "ldn-service.form.pattern.undo-offer.category": "रद्द करा", - // "ldn-new-service.form.label.placeholder.selectedItemFilter": "No Item Filter Selected", "ldn-new-service.form.label.placeholder.selectedItemFilter": "कोणताही आयटम फिल्टर निवडलेला नाही", - // "ldn-new-service.form.label.ItemFilter": "Item Filter", + "ldn-new-service.form.label.ItemFilter": "आयटम फिल्टर", - // "ldn-new-service.form.label.automatic": "Automatic", + "ldn-new-service.form.label.automatic": "स्वयंचलित", - // "ldn-new-service.form.error.name": "Name is required", + "ldn-new-service.form.error.name": "नाव आवश्यक आहे", - // "ldn-new-service.form.error.url": "URL is required", + "ldn-new-service.form.error.url": "URL आवश्यक आहे", - // "ldn-new-service.form.error.ipRange": "Please enter a valid IP range", + "ldn-new-service.form.error.ipRange": "कृपया वैध IP श्रेणी प्रविष्ट करा", - // "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", - // TODO New key - Add a translation - "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", - // "ldn-new-service.form.error.ldnurl": "LDN URL is required", + + "ldn-new-service.form.hint.ipRange": "कृपया दोन्ही श्रेणी मर्यादांमध्ये वैध IpV4 प्रविष्ट करा (टीप: एकल IP साठी, कृपया दोन्ही फील्डमध्ये समान मूल्य प्रविष्ट करा)", + "ldn-new-service.form.error.ldnurl": "LDN URL आवश्यक आहे", - // "ldn-new-service.form.error.patterns": "At least a pattern is required", + "ldn-new-service.form.error.patterns": "किमान एक नमुना आवश्यक आहे", - // "ldn-new-service.form.error.score": "Please enter a valid score (between 0 and 1). Use the “.” as decimal separator", + "ldn-new-service.form.error.score": "कृपया वैध स्कोर प्रविष्ट करा (0 आणि 1 दरम्यान). दशांश विभाजक म्हणून “.” वापरा", - // "ldn-new-service.form.label.inboundPattern": "Supported Pattern", "ldn-new-service.form.label.inboundPattern": "समर्थित नमुना", - // "ldn-new-service.form.label.addPattern": "+ Add more", + "ldn-new-service.form.label.addPattern": "+ अधिक जोडा", - // "ldn-new-service.form.label.removeItemFilter": "Remove", + "ldn-new-service.form.label.removeItemFilter": "काढा", - // "ldn-register-new-service.breadcrumbs": "New Service", + "ldn-register-new-service.breadcrumbs": "नवीन सेवा", - // "service.overview.delete.body": "Are you sure you want to delete this service?", + "service.overview.delete.body": "तुम्हाला ही सेवा हटवायची आहे का?", - // "service.overview.edit.body": "Do you confirm the changes?", + "service.overview.edit.body": "तुम्ही बदलांची पुष्टी करता का?", - // "service.overview.edit.modal": "Edit Service", + "service.overview.edit.modal": "सेवा संपादित करा", - // "service.detail.update": "Confirm", + "service.detail.update": "पुष्टी करा", - // "service.detail.return": "Cancel", + "service.detail.return": "रद्द करा", - // "service.overview.reset-form.body": "Are you sure you want to discard the changes and leave?", + "service.overview.reset-form.body": "तुम्हाला बदल रद्द करून सोडायचे आहे का?", - // "service.overview.reset-form.modal": "Discard Changes", + "service.overview.reset-form.modal": "बदल रद्द करा", - // "service.overview.reset-form.reset-confirm": "Discard", + "service.overview.reset-form.reset-confirm": "रद्द करा", - // "admin.registries.services-formats.modify.success.head": "Successful Edit", + "admin.registries.services-formats.modify.success.head": "यशस्वी संपादन", - // "admin.registries.services-formats.modify.success.content": "The service has been edited", + "admin.registries.services-formats.modify.success.content": "सेवा संपादित केली गेली आहे", - // "admin.registries.services-formats.modify.failure.head": "Failed Edit", + "admin.registries.services-formats.modify.failure.head": "अयशस्वी संपादन", - // "admin.registries.services-formats.modify.failure.content": "The service has not been edited", + "admin.registries.services-formats.modify.failure.content": "सेवा संपादित केली गेली नाही", - // "ldn-service-notification.created.success.title": "Successful Create", + "ldn-service-notification.created.success.title": "यशस्वी निर्मिती", - // "ldn-service-notification.created.success.body": "The service has been created", + "ldn-service-notification.created.success.body": "सेवा तयार केली गेली आहे", - // "ldn-service-notification.created.failure.title": "Failed Create", + "ldn-service-notification.created.failure.title": "अयशस्वी निर्मिती", - // "ldn-service-notification.created.failure.body": "The service has not been created", + "ldn-service-notification.created.failure.body": "सेवा तयार केली गेली नाही", - // "ldn-service-notification.created.warning.title": "Please select at least one Inbound Pattern", + "ldn-service-notification.created.warning.title": "कृपया किमान एक इनबाउंड नमुना निवडा", - // "ldn-enable-service.notification.success.title": "Successful status updated", + "ldn-enable-service.notification.success.title": "यशस्वी स्थिती अद्यतनित", - // "ldn-enable-service.notification.success.content": "The service status has been updated", + "ldn-enable-service.notification.success.content": "सेवा स्थिती अद्यतनित केली गेली आहे", - // "ldn-service-delete.notification.success.title": "Successful Deletion", + "ldn-service-delete.notification.success.title": "यशस्वी हटवणे", - // "ldn-service-delete.notification.success.content": "The service has been deleted", + "ldn-service-delete.notification.success.content": "सेवा हटवली गेली आहे", - // "ldn-service-delete.notification.error.title": "Failed Deletion", + "ldn-service-delete.notification.error.title": "अयशस्वी हटवणे", - // "ldn-service-delete.notification.error.content": "The service has not been deleted", + "ldn-service-delete.notification.error.content": "सेवा हटवली गेली नाही", - // "service.overview.reset-form.reset-return": "Cancel", + "service.overview.reset-form.reset-return": "रद्द करा", - // "service.overview.delete": "Delete service", + "service.overview.delete": "सेवा हटवा", - // "ldn-edit-service.title": "Edit service", + "ldn-edit-service.title": "सेवा संपादित करा", - // "ldn-edit-service.form.label.name": "Name", + "ldn-edit-service.form.label.name": "नाव", - // "ldn-edit-service.form.label.description": "Description", + "ldn-edit-service.form.label.description": "वर्णन", - // "ldn-edit-service.form.label.url": "Service URL", + "ldn-edit-service.form.label.url": "सेवा URL", - // "ldn-edit-service.form.label.ldnUrl": "LDN Inbox URL", + "ldn-edit-service.form.label.ldnUrl": "LDN इनबॉक्स URL", - // "ldn-edit-service.form.label.inboundPattern": "Inbound Pattern", + "ldn-edit-service.form.label.inboundPattern": "इनबाउंड नमुना", - // "ldn-edit-service.form.label.noInboundPatternSelected": "No Inbound Pattern", + "ldn-edit-service.form.label.noInboundPatternSelected": "कोणताही इनबाउंड नमुना निवडलेला नाही", - // "ldn-edit-service.form.label.selectedItemFilter": "Selected Item Filter", + "ldn-edit-service.form.label.selectedItemFilter": "निवडलेला आयटम फिल्टर", - // "ldn-edit-service.form.label.selectItemFilter": "No Item Filter", + "ldn-edit-service.form.label.selectItemFilter": "कोणताही आयटम फिल्टर नाही", - // "ldn-edit-service.form.label.automatic": "Automatic", + "ldn-edit-service.form.label.automatic": "स्वयंचलित", - // "ldn-edit-service.form.label.addInboundPattern": "+ Add more", + "ldn-edit-service.form.label.addInboundPattern": "+ अधिक जोडा", - // "ldn-edit-service.form.label.submit": "Save", + "ldn-edit-service.form.label.submit": "जतन करा", - // "ldn-edit-service.breadcrumbs": "Edit Service", + "ldn-edit-service.breadcrumbs": "सेवा संपादित करा", - // "ldn-service.control-constaint-select-none": "Select none", + "ldn-service.control-constaint-select-none": "कोणताही निवडा", - // "ldn-register-new-service.notification.error.title": "Error", "ldn-register-new-service.notification.error.title": "त्रुटी", - // "ldn-register-new-service.notification.error.content": "An error occurred while creating this process", + "ldn-register-new-service.notification.error.content": "हा प्रक्रिया तयार करताना त्रुटी आली", - // "ldn-register-new-service.notification.success.title": "Success", + "ldn-register-new-service.notification.success.title": "यश", - // "ldn-register-new-service.notification.success.content": "The process was successfully created", + "ldn-register-new-service.notification.success.content": "प्रक्रिया यशस्वीरित्या तयार केली गेली", - // "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", - // TODO New key - Add a translation - "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", + "submission.sections.notify.info": "निवडलेली सेवा त्याच्या वर्तमान स्थितीनुसार आयटमशी सुसंगत आहे. {{ service.name }}: {{ service.description }}", - // "item.page.endorsement": "Endorsement", "item.page.endorsement": "मान्यता", - // "item.page.places": "Related places", "item.page.places": "संबंधित ठिकाणे", - // "item.page.review": "Review", "item.page.review": "पुनरावलोकन", - // "item.page.referenced": "Referenced By", "item.page.referenced": "संदर्भित", - // "item.page.supplemented": "Supplemented By", "item.page.supplemented": "पूरक", - // "menu.section.icon.ldn_services": "LDN Services overview", "menu.section.icon.ldn_services": "LDN सेवा विहंगावलोकन", - // "menu.section.services": "LDN Services", "menu.section.services": "LDN सेवा", - // "menu.section.services_new": "LDN Service", "menu.section.services_new": "LDN सेवा", - // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "खाली तुम्ही {{source}} च्या सदस्यत्वांमधून प्राप्त सर्व विषय पाहू शकता", - // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", + "quality-assurance.events.description": "खाली निवडलेल्या विषयासाठी सर्व सुचवणुकींची यादी आहे {{topic}}, संबंधित {{source}}.", - // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "खाली निवडलेल्या विषयासाठी सर्व सुचवणुकींची यादी आहे {{topic}}, संबंधित {{source}} आणि ", - // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", - // TODO New key - Add a translation - "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + "quality-assurance.event.table.event.message.serviceUrl": "अभिनेता:", - // "quality-assurance.event.table.event.message.link": "Link:", - // TODO New key - Add a translation - "quality-assurance.event.table.event.message.link": "Link:", + "quality-assurance.event.table.event.message.link": "लिंक:", - // "service.detail.delete.cancel": "Cancel", "service.detail.delete.cancel": "रद्द करा", - // "service.detail.delete.button": "Delete service", "service.detail.delete.button": "सेवा हटवा", - // "service.detail.delete.header": "Delete service", "service.detail.delete.header": "सेवा हटवा", - // "service.detail.delete.body": "Are you sure you want to delete the current service?", "service.detail.delete.body": "तुम्हाला चालू सेवा हटवायची आहे का?", - // "service.detail.delete.confirm": "Delete service", "service.detail.delete.confirm": "सेवा हटवा", - // "service.detail.delete.success": "The service was successfully deleted.", "service.detail.delete.success": "सेवा यशस्वीरित्या हटवली गेली.", - // "service.detail.delete.error": "Something went wrong when deleting the service", "service.detail.delete.error": "सेवा हटवताना काहीतरी चूक झाली", - // "service.overview.table.id": "Services ID", "service.overview.table.id": "सेवा ID", - // "service.overview.table.name": "Name", "service.overview.table.name": "नाव", - // "service.overview.table.start": "Start time (UTC)", "service.overview.table.start": "प्रारंभ वेळ (UTC)", - // "service.overview.table.status": "Status", "service.overview.table.status": "स्थिती", - // "service.overview.table.user": "User", "service.overview.table.user": "वापरकर्ता", - // "service.overview.title": "Services Overview", "service.overview.title": "सेवा विहंगावलोकन", - // "service.overview.breadcrumbs": "Services Overview", "service.overview.breadcrumbs": "सेवा विहंगावलोकन", - // "service.overview.table.actions": "Actions", "service.overview.table.actions": "क्रिया", - // "service.overview.table.description": "Description", "service.overview.table.description": "वर्णन", - // "submission.sections.submit.progressbar.coarnotify": "COAR Notify", "submission.sections.submit.progressbar.coarnotify": "COAR सूचना", - // "submission.section.section-coar-notify.control.request-review.label": "You can request a review to one of the following services", "submission.section.section-coar-notify.control.request-review.label": "तुम्ही खालील सेवांपैकी एकाची पुनरावलोकन विनंती करू शकता", - // "submission.section.section-coar-notify.control.request-endorsement.label": "You can request an Endorsement to one of the following overlay journals", "submission.section.section-coar-notify.control.request-endorsement.label": "तुम्ही खालील ओव्हरले जर्नल्सपैकी एकाची मान्यता विनंती करू शकता", - // "submission.section.section-coar-notify.control.request-ingest.label": "You can request to ingest a copy of your submission to one of the following services", "submission.section.section-coar-notify.control.request-ingest.label": "तुमच्या सबमिशनची प्रत खालील सेवांपैकी एकाला ग्रहण करण्याची विनंती करू शकता", - // "submission.section.section-coar-notify.dropdown.no-data": "No data available", "submission.section.section-coar-notify.dropdown.no-data": "माहिती उपलब्ध नाही", - // "submission.section.section-coar-notify.dropdown.select-none": "Select none", "submission.section.section-coar-notify.dropdown.select-none": "कोणतेही निवडा", - // "submission.section.section-coar-notify.small.notification": "Select a service for {{ pattern }} of this item", "submission.section.section-coar-notify.small.notification": "या आयटमच्या {{ pattern }} साठी सेवा निवडा", - // "submission.section.section-coar-notify.selection.description": "Selected service's description:", - // TODO New key - Add a translation - "submission.section.section-coar-notify.selection.description": "Selected service's description:", + "submission.section.section-coar-notify.selection.description": "निवडलेल्या सेवेचे वर्णन:", - // "submission.section.section-coar-notify.selection.no-description": "No further information is available", "submission.section.section-coar-notify.selection.no-description": "अधिक माहिती उपलब्ध नाही", - // "submission.section.section-coar-notify.notification.error": "The selected service is not suitable for the current item. Please check the description for details about which record can be managed by this service.", "submission.section.section-coar-notify.notification.error": "निवडलेली सेवा चालू आयटमसाठी योग्य नाही. कृपया कोणते रेकॉर्ड या सेवेद्वारे व्यवस्थापित केले जाऊ शकतात याबद्दल तपशीलांसाठी वर्णन तपासा.", - // "submission.section.section-coar-notify.info.no-pattern": "No configurable patterns found.", "submission.section.section-coar-notify.info.no-pattern": "कोणतेही कॉन्फिगरेबल नमुने आढळले नाहीत.", - // "error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.", "error.validation.coarnotify.invalidfilter": "अवैध फिल्टर, कृपया दुसरी सेवा निवडा किंवा कोणतेही निवडा.", - // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.", "request-status-alert-box.accepted": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी स्वीकारले गेले आहे.", - // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी नाकारले गेले आहे.", - // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", "request-status-alert-box.tentative_rejected": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी तात्पुरते नाकारले गेले आहे. सुधारणा आवश्यक आहेत", - // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "विनंती केलेले {{ offerType }} {{ serviceName }} साठी प्रलंबित आहे.", - // "ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion", "ldn-service-button-mark-inbound-deletion": "हटवण्यासाठी समर्थित नमुना चिन्हांकित करा", - // "ldn-service-button-unmark-inbound-deletion": "Unmark supported pattern for deletion", "ldn-service-button-unmark-inbound-deletion": "हटवण्यासाठी समर्थित नमुना अनचिन्हांकित करा", - // "ldn-service-input-inbound-item-filter-dropdown": "Select Item filter for the pattern", "ldn-service-input-inbound-item-filter-dropdown": "नमुन्यासाठी आयटम फिल्टर निवडा", - // "ldn-service-input-inbound-pattern-dropdown": "Select a pattern for service", "ldn-service-input-inbound-pattern-dropdown": "सेवेच्या नमुन्यासाठी निवडा", - // "ldn-service-overview-select-delete": "Select service for deletion", "ldn-service-overview-select-delete": "हटवण्यासाठी सेवा निवडा", - // "ldn-service-overview-select-edit": "Edit LDN service", "ldn-service-overview-select-edit": "LDN सेवा संपादित करा", - // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "मोडल बंद करा", - // "ldn-service-usesActorEmailId": "Requires actor email in notifications", "ldn-service-usesActorEmailId": "सूचनांमध्ये अभिनेता ईमेल आवश्यक आहे", - // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", "ldn-service-usesActorEmailId-description": "सक्षम असल्यास, प्रारंभिक सूचना सबमिटर ईमेल समाविष्ट करतील, रेपॉझिटरी URL ऐवजी. हे सामान्यतः मान्यता किंवा पुनरावलोकन सेवांसाठी असते.", - // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "आयटम प्रकार जर्नल लेख किंवा डेटासेट आहे", - // "always_true_filter.label": "Always true", "always_true_filter.label": "नेहमी खरे", - // "automatic_processing_collection_filter_16.label": "Automatic processing", "automatic_processing_collection_filter_16.label": "स्वयंचलित प्रक्रिया", - // "dc-identifier-uri-contains-doi_condition.label": "URI contains DOI", "dc-identifier-uri-contains-doi_condition.label": "URI मध्ये DOI समाविष्ट आहे", - // "doi-filter.label": "DOI filter", "doi-filter.label": "DOI फिल्टर", - // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "दस्तऐवज प्रकार ड्रायव्हर समान आहे", - // "has-at-least-one-bitstream_condition.label": "Has at least one Bitstream", "has-at-least-one-bitstream_condition.label": "किमान एक बिटस्ट्रीम आहे", - // "has-bitstream_filter.label": "Has Bitstream", "has-bitstream_filter.label": "बिटस्ट्रीम आहे", - // "has-one-bitstream_condition.label": "Has one Bitstream", "has-one-bitstream_condition.label": "एक बिटस्ट्रीम आहे", - // "is-archived_condition.label": "Is archived", "is-archived_condition.label": "संग्रहित आहे", - // "is-withdrawn_condition.label": "Is withdrawn", "is-withdrawn_condition.label": "मागे घेतले आहे", - // "item-is-public_condition.label": "Item is public", "item-is-public_condition.label": "आयटम सार्वजनिक आहे", - // "journals_ingest_suggestion_collection_filter_18.label": "Journals ingest", "journals_ingest_suggestion_collection_filter_18.label": "जर्नल्स ग्रहण", - // "title-starts-with-pattern_condition.label": "Title starts with pattern", "title-starts-with-pattern_condition.label": "शीर्षक नमुन्याने सुरू होते", - // "type-equals-dataset_condition.label": "Type equals Dataset", "type-equals-dataset_condition.label": "प्रकार डेटासेट समान आहे", - // "type-equals-journal-article_condition.label": "Type equals Journal Article", "type-equals-journal-article_condition.label": "प्रकार जर्नल लेख समान आहे", - // "ldn.no-filter.label": "None", "ldn.no-filter.label": "कोणतेही नाही", - // "admin.notify.dashboard": "Dashboard", "admin.notify.dashboard": "डॅशबोर्ड", - // "menu.section.notify_dashboard": "Dashboard", "menu.section.notify_dashboard": "डॅशबोर्ड", - // "menu.section.coar_notify": "COAR Notify", "menu.section.coar_notify": "COAR सूचना", - // "admin-notify-dashboard.title": "Notify Dashboard", "admin-notify-dashboard.title": "सूचना डॅशबोर्ड", - // "admin-notify-dashboard.description": "The Notify dashboard monitor the general usage of the COAR Notify protocol across the repository. In the “Metrics” tab are statistics about usage of the COAR Notify protocol. In the “Logs/Inbound” and “Logs/Outbound” tabs it’s possible to search and check the individual status of each LDN message, either received or sent.", "admin-notify-dashboard.description": "सूचना डॅशबोर्ड रेपॉझिटरीमध्ये COAR सूचना प्रोटोकॉलच्या सामान्य वापराचे निरीक्षण करते. “मेट्रिक्स” टॅबमध्ये COAR सूचना प्रोटोकॉलच्या वापराबद्दल आकडेवारी आहे. “लॉग्स/इनबाउंड” आणि “लॉग्स/आउटबाउंड” टॅबमध्ये प्रत्येक LDN संदेशाची वैयक्तिक स्थिती शोधणे आणि तपासणे शक्य आहे, प्राप्त किंवा पाठवलेले.", - // "admin-notify-dashboard.metrics": "Metrics", "admin-notify-dashboard.metrics": "मेट्रिक्स", - // "admin-notify-dashboard.received-ldn": "Number of received LDN", "admin-notify-dashboard.received-ldn": "प्राप्त LDN ची संख्या", - // "admin-notify-dashboard.generated-ldn": "Number of generated LDN", "admin-notify-dashboard.generated-ldn": "उत्पन्न LDN ची संख्या", - // "admin-notify-dashboard.NOTIFY.incoming.accepted": "Accepted", "admin-notify-dashboard.NOTIFY.incoming.accepted": "स्वीकारले", - // "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "Accepted inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "स्वीकारलेल्या इनबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", + "admin-notify-logs.NOTIFY.incoming.accepted": "सध्या प्रदर्शित: स्वीकारलेल्या सूचनां", - // "admin-notify-dashboard.NOTIFY.incoming.processed": "Processed LDN", "admin-notify-dashboard.NOTIFY.incoming.processed": "प्रक्रिया केलेले LDN", - // "admin-notify-dashboard.NOTIFY.incoming.processed.description": "Processed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.processed.description": "प्रक्रिया केलेल्या इनबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", + "admin-notify-logs.NOTIFY.incoming.processed": "सध्या प्रदर्शित: प्रक्रिया केलेले LDN", - // "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", + "admin-notify-logs.NOTIFY.incoming.failure": "सध्या प्रदर्शित: अयशस्वी सूचनां", - // "admin-notify-dashboard.NOTIFY.incoming.failure": "Failure", "admin-notify-dashboard.NOTIFY.incoming.failure": "अयशस्वी", - // "admin-notify-dashboard.NOTIFY.incoming.failure.description": "Failed inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.failure.description": "अयशस्वी इनबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", + "admin-notify-logs.NOTIFY.outgoing.failure": "सध्या प्रदर्शित: अयशस्वी सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.failure": "Failure", "admin-notify-dashboard.NOTIFY.outgoing.failure": "अयशस्वी", - // "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "Failed outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "अयशस्वी आउटबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", + "admin-notify-logs.NOTIFY.incoming.untrusted": "सध्या प्रदर्शित: अविश्वसनीय सूचनां", - // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "अविश्वसनीय", - // "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "Inbound notifications not trusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "अविश्वसनीय इनबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", + "admin-notify-logs.NOTIFY.incoming.delivered": "सध्या प्रदर्शित: वितरित सूचनां", - // "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "Inbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "यशस्वीरित्या वितरित इनबाउंड सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.delivered": "Delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered": "वितरित", - // "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", + "admin-notify-logs.NOTIFY.outgoing.delivered": "सध्या प्रदर्शित: वितरित सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "Outbound notifications successfully delivered", "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "यशस्वीरित्या वितरित आउटबाउंड सूचनां", - // "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", + "admin-notify-logs.NOTIFY.outgoing.queued": "सध्या प्रदर्शित: रांगेत असलेल्या सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "Notifications currently queued", "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "सध्या रांगेत असलेल्या सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.queued": "Queued", "admin-notify-dashboard.NOTIFY.outgoing.queued": "रांगेत", - // "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", - // TODO New key - Add a translation - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", + "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "सध्या प्रदर्शित: पुन्हा प्रयत्न करण्यासाठी रांगेत असलेल्या सूचनां", - // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "Queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "पुन्हा प्रयत्न करण्यासाठी रांगेत", - // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "Notifications currently queued for retry", "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "सध्या पुन्हा प्रयत्न करण्यासाठी रांगेत असलेल्या सूचनां", - // "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "संबंधित आयटम", - // "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "Items related to inbound notifications", "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "इनबाउंड सूचनांशी संबंधित आयटम", - // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "Items involved", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "संबंधित आयटम", - // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "Items related to outbound notifications", "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "आउटबाउंड सूचनांशी संबंधित आयटम", - // "admin.notify.dashboard.breadcrumbs": "Dashboard", "admin.notify.dashboard.breadcrumbs": "डॅशबोर्ड", - // "admin.notify.dashboard.inbound": "Inbound messages", "admin.notify.dashboard.inbound": "इनबाउंड संदेश", - // "admin.notify.dashboard.inbound-logs": "Logs/Inbound", "admin.notify.dashboard.inbound-logs": "लॉग्स/इनबाउंड", - // "admin.notify.dashboard.filter": "Filter: ", - // TODO New key - Add a translation - "admin.notify.dashboard.filter": "Filter: ", + "admin.notify.dashboard.filter": "फिल्टर: ", - // "search.filters.applied.f.relateditem": "Related items", "search.filters.applied.f.relateditem": "संबंधित आयटम", - // "search.filters.applied.f.ldn_service": "LDN Service", "search.filters.applied.f.ldn_service": "LDN सेवा", - // "search.filters.applied.f.notifyReview": "Notify Review", "search.filters.applied.f.notifyReview": "सूचना पुनरावलोकन", - // "search.filters.applied.f.notifyEndorsement": "Notify Endorsement", "search.filters.applied.f.notifyEndorsement": "सूचना मान्यता", - // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "सूचना संबंध", - // "search.filters.applied.f.access_status": "Access type", "search.filters.applied.f.access_status": "प्रवेश प्रकार", - // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "शेवटची प्रक्रिया वेळ ", - // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "किमान श्रेणी", - // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "कमाल श्रेणी", - // "search.filters.applied.f.queue_last_start_time.min": "Min range", "search.filters.applied.f.queue_last_start_time.min": "किमान श्रेणी", - // "search.filters.applied.f.queue_last_start_time.max": "Max range", "search.filters.applied.f.queue_last_start_time.max": "कमाल श्रेणी", - // "admin.notify.dashboard.outbound": "Outbound messages", "admin.notify.dashboard.outbound": "आउटबाउंड संदेश", - // "admin.notify.dashboard.outbound-logs": "Logs/Outbound", "admin.notify.dashboard.outbound-logs": "लॉग्स/आउटबाउंड", - // "NOTIFY.incoming.search.results.head": "Incoming", "NOTIFY.incoming.search.results.head": "इनकमिंग", - // "search.filters.filter.relateditem.head": "Related item", "search.filters.filter.relateditem.head": "संबंधित आयटम", - // "search.filters.filter.origin.head": "Origin", "search.filters.filter.origin.head": "मूळ", - // "search.filters.filter.ldn_service.head": "LDN Service", "search.filters.filter.ldn_service.head": "LDN सेवा", - // "search.filters.filter.target.head": "Target", "search.filters.filter.target.head": "लक्ष्य", - // "search.filters.filter.queue_status.head": "Queue status", "search.filters.filter.queue_status.head": "रांग स्थिती", - // "search.filters.filter.activity_stream_type.head": "Activity stream type", "search.filters.filter.activity_stream_type.head": "क्रियाकलाप प्रवाह प्रकार", - // "search.filters.filter.coar_notify_type.head": "COAR Notify type", "search.filters.filter.coar_notify_type.head": "COAR सूचना प्रकार", - // "search.filters.filter.notification_type.head": "Notification type", "search.filters.filter.notification_type.head": "सूचना प्रकार", - // "search.filters.filter.relateditem.label": "Search related items", "search.filters.filter.relateditem.label": "संबंधित आयटम शोधा", - // "search.filters.filter.queue_status.label": "Search queue status", "search.filters.filter.queue_status.label": "रांग स्थिती शोधा", - // "search.filters.filter.target.label": "Search target", "search.filters.filter.target.label": "लक्ष्य शोधा", - // "search.filters.filter.activity_stream_type.label": "Search activity stream type", "search.filters.filter.activity_stream_type.label": "क्रियाकलाप प्रवाह प्रकार शोधा", - // "search.filters.applied.f.queue_status": "Queue Status", "search.filters.applied.f.queue_status": "रांग स्थिती", - // "search.filters.queue_status.0,authority": "Untrusted Ip", "search.filters.queue_status.0,authority": "अविश्वसनीय IP", - // "search.filters.queue_status.1,authority": "Queued", "search.filters.queue_status.1,authority": "रांगेत", - // "search.filters.queue_status.2,authority": "Processing", "search.filters.queue_status.2,authority": "प्रक्रिया", - // "search.filters.queue_status.3,authority": "Processed", "search.filters.queue_status.3,authority": "प्रक्रिया पूर्ण", - // "search.filters.queue_status.4,authority": "Failed", "search.filters.queue_status.4,authority": "अयशस्वी", - // "search.filters.queue_status.5,authority": "Untrusted", "search.filters.queue_status.5,authority": "अविश्वसनीय", - // "search.filters.queue_status.6,authority": "Unmapped Action", "search.filters.queue_status.6,authority": "नकाशा नसलेली क्रिया", - // "search.filters.queue_status.7,authority": "Queued for retry", "search.filters.queue_status.7,authority": "पुन्हा प्रयत्नासाठी रांगेत", - // "search.filters.applied.f.activity_stream_type": "Activity stream type", "search.filters.applied.f.activity_stream_type": "क्रियाकलाप प्रवाह प्रकार", - // "search.filters.applied.f.coar_notify_type": "COAR Notify type", "search.filters.applied.f.coar_notify_type": "COAR सूचना प्रकार", - // "search.filters.applied.f.notification_type": "Notification type", "search.filters.applied.f.notification_type": "सूचना प्रकार", - // "search.filters.filter.coar_notify_type.label": "Search COAR Notify type", "search.filters.filter.coar_notify_type.label": "COAR सूचना प्रकार शोधा", - // "search.filters.filter.notification_type.label": "Search notification type", "search.filters.filter.notification_type.label": "सूचना प्रकार शोधा", - // "search.filters.filter.relateditem.placeholder": "Related items", "search.filters.filter.relateditem.placeholder": "संबंधित आयटम", - // "search.filters.filter.target.placeholder": "Target", "search.filters.filter.target.placeholder": "लक्ष्य", - // "search.filters.filter.origin.label": "Search source", "search.filters.filter.origin.label": "स्रोत शोधा", - // "search.filters.filter.origin.placeholder": "Source", "search.filters.filter.origin.placeholder": "स्रोत", - // "search.filters.filter.ldn_service.label": "Search LDN Service", "search.filters.filter.ldn_service.label": "LDN सेवा शोधा", - // "search.filters.filter.ldn_service.placeholder": "LDN Service", "search.filters.filter.ldn_service.placeholder": "LDN सेवा", - // "search.filters.filter.queue_status.placeholder": "Queue status", "search.filters.filter.queue_status.placeholder": "रांग स्थिती", - // "search.filters.filter.activity_stream_type.placeholder": "Activity stream type", "search.filters.filter.activity_stream_type.placeholder": "क्रियाकलाप प्रवाह प्रकार", - // "search.filters.filter.coar_notify_type.placeholder": "COAR Notify type", "search.filters.filter.coar_notify_type.placeholder": "COAR सूचना प्रकार", - // "search.filters.filter.notification_type.placeholder": "Notification", "search.filters.filter.notification_type.placeholder": "सूचना", - // "search.filters.filter.notifyRelation.head": "Notify Relation", "search.filters.filter.notifyRelation.head": "सूचना संबंध", - // "search.filters.filter.notifyRelation.label": "Search Notify Relation", "search.filters.filter.notifyRelation.label": "सूचना संबंध शोधा", - // "search.filters.filter.notifyRelation.placeholder": "Notify Relation", "search.filters.filter.notifyRelation.placeholder": "सूचना संबंध", - // "search.filters.filter.notifyReview.head": "Notify Review", "search.filters.filter.notifyReview.head": "सूचना पुनरावलोकन", - // "search.filters.filter.notifyReview.label": "Search Notify Review", "search.filters.filter.notifyReview.label": "सूचना पुनरावलोकन शोधा", - // "search.filters.filter.notifyReview.placeholder": "Notify Review", "search.filters.filter.notifyReview.placeholder": "सूचना पुनरावलोकन", - // "search.filters.coar_notify_type.coar-notify:ReviewAction": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction": "पुनरावलोकन क्रिया", - // "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "Review action", "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "पुनरावलोकन क्रिया", - // "notify-detail-modal.coar-notify:ReviewAction": "Review action", "notify-detail-modal.coar-notify:ReviewAction": "पुनरावलोकन क्रिया", - // "search.filters.coar_notify_type.coar-notify:EndorsementAction": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction": "मान्यता क्रिया", - // "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "Endorsement action", "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "मान्यता क्रिया", - // "notify-detail-modal.coar-notify:EndorsementAction": "Endorsement action", "notify-detail-modal.coar-notify:EndorsementAction": "मान्यता क्रिया", - // "search.filters.coar_notify_type.coar-notify:IngestAction": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction": "ग्रहण क्रिया", - // "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "Ingest action", "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ग्रहण क्रिया", - // "notify-detail-modal.coar-notify:IngestAction": "Ingest action", "notify-detail-modal.coar-notify:IngestAction": "ग्रहण क्रिया", - // "search.filters.coar_notify_type.coar-notify:RelationshipAction": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction": "संबंध क्रिया", - // "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "Relationship action", "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "संबंध क्रिया", - // "notify-detail-modal.coar-notify:RelationshipAction": "Relationship action", "notify-detail-modal.coar-notify:RelationshipAction": "संबंध क्रिया", - // "search.filters.queue_status.QUEUE_STATUS_QUEUED": "Queued", "search.filters.queue_status.QUEUE_STATUS_QUEUED": "रांगेत", - // "notify-detail-modal.QUEUE_STATUS_QUEUED": "Queued", "notify-detail-modal.QUEUE_STATUS_QUEUED": "रांगेत", - // "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "पुन्हा प्रयत्नासाठी रांगेत", - // "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "पुन्हा प्रयत्नासाठी रांगेत", - // "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "Processing", "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "प्रक्रिया", - // "notify-detail-modal.QUEUE_STATUS_PROCESSING": "Processing", "notify-detail-modal.QUEUE_STATUS_PROCESSING": "प्रक्रिया", - // "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "Processed", "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "प्रक्रिया पूर्ण", - // "notify-detail-modal.QUEUE_STATUS_PROCESSED": "Processed", "notify-detail-modal.QUEUE_STATUS_PROCESSED": "प्रक्रिया पूर्ण", - // "search.filters.queue_status.QUEUE_STATUS_FAILED": "Failed", "search.filters.queue_status.QUEUE_STATUS_FAILED": "अयशस्वी", - // "notify-detail-modal.QUEUE_STATUS_FAILED": "Failed", "notify-detail-modal.QUEUE_STATUS_FAILED": "अयशस्वी", - // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "Untrusted", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "अविश्वसनीय", - // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "अविश्वसनीय IP", - // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "Untrusted", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "अविश्वसनीय", - // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "अविश्वसनीय IP", - // "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "नकाशा नसलेली क्रिया", - // "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "नकाशा नसलेली क्रिया", - // "sorting.queue_last_start_time.DESC": "Last started queue Descending", "sorting.queue_last_start_time.DESC": "शेवटची सुरू केलेली रांग उतरणे", - // "sorting.queue_last_start_time.ASC": "Last started queue Ascending", "sorting.queue_last_start_time.ASC": "शेवटची सुरू केलेली रांग चढणे", - // "sorting.queue_attempts.DESC": "Queue attempted Descending", "sorting.queue_attempts.DESC": "रांग प्रयत्न उतरणे", - // "sorting.queue_attempts.ASC": "Queue attempted Ascending", "sorting.queue_attempts.ASC": "रांग प्रयत्न चढणे", - // "NOTIFY.incoming.involvedItems.search.results.head": "Items involved in incoming LDN", "NOTIFY.incoming.involvedItems.search.results.head": "इनकमिंग LDN मध्ये सहभागी आयटम", - // "NOTIFY.outgoing.involvedItems.search.results.head": "Items involved in outgoing LDN", "NOTIFY.outgoing.involvedItems.search.results.head": "आउटगोइंग LDN मध्ये सहभागी आयटम", - // "type.notify-detail-modal": "Type", "type.notify-detail-modal": "प्रकार", - // "id.notify-detail-modal": "Id", "id.notify-detail-modal": "Id", - // "coarNotifyType.notify-detail-modal": "COAR Notify type", "coarNotifyType.notify-detail-modal": "COAR सूचना प्रकार", - // "activityStreamType.notify-detail-modal": "Activity stream type", "activityStreamType.notify-detail-modal": "क्रियाकलाप प्रवाह प्रकार", - // "inReplyTo.notify-detail-modal": "In reply to", "inReplyTo.notify-detail-modal": "याला उत्तर", - // "object.notify-detail-modal": "Repository Item", "object.notify-detail-modal": "रेपॉझिटरी आयटम", - // "context.notify-detail-modal": "Repository Item", "context.notify-detail-modal": "रेपॉझिटरी आयटम", - // "queueAttempts.notify-detail-modal": "Queue attempts", "queueAttempts.notify-detail-modal": "रांग प्रयत्न", - // "queueLastStartTime.notify-detail-modal": "Queue last started", "queueLastStartTime.notify-detail-modal": "रांग शेवटची सुरू केली", - // "origin.notify-detail-modal": "LDN Service", "origin.notify-detail-modal": "LDN सेवा", - // "target.notify-detail-modal": "LDN Service", "target.notify-detail-modal": "LDN सेवा", - // "queueStatusLabel.notify-detail-modal": "Queue status", "queueStatusLabel.notify-detail-modal": "रांग स्थिती", - // "queueTimeout.notify-detail-modal": "Queue timeout", "queueTimeout.notify-detail-modal": "रांग टाइमआउट", - // "notify-message-modal.title": "Message Detail", "notify-message-modal.title": "संदेश तपशील", - // "notify-message-modal.show-message": "Show message", "notify-message-modal.show-message": "संदेश दाखवा", - // "notify-message-result.timestamp": "Timestamp", "notify-message-result.timestamp": "टाइमस्टॅम्प", - // "notify-message-result.repositoryItem": "Repository Item", "notify-message-result.repositoryItem": "रेपॉझिटरी आयटम", - // "notify-message-result.ldnService": "LDN Service", "notify-message-result.ldnService": "LDN सेवा", - // "notify-message-result.type": "Type", "notify-message-result.type": "प्रकार", - // "notify-message-result.status": "Status", "notify-message-result.status": "स्थिती", - // "notify-message-result.action": "Action", "notify-message-result.action": "क्रिया", - // "notify-message-result.detail": "Detail", "notify-message-result.detail": "तपशील", - // "notify-message-result.reprocess": "Reprocess", "notify-message-result.reprocess": "पुन्हा प्रक्रिया करा", - // "notify-queue-status.processed": "Processed", "notify-queue-status.processed": "प्रक्रिया पूर्ण", - // "notify-queue-status.failed": "Failed", "notify-queue-status.failed": "अयशस्वी", - // "notify-queue-status.queue_retry": "Queued for retry", "notify-queue-status.queue_retry": "पुन्हा प्रयत्नासाठी रांगेत", - // "notify-queue-status.unmapped_action": "Unmapped action", "notify-queue-status.unmapped_action": "नकाशा नसलेली क्रिया", - // "notify-queue-status.processing": "Processing", "notify-queue-status.processing": "प्रक्रिया", - // "notify-queue-status.queued": "Queued", "notify-queue-status.queued": "रांगेत", - // "notify-queue-status.untrusted": "Untrusted", "notify-queue-status.untrusted": "अविश्वसनीय", - // "ldnService.notify-detail-modal": "LDN Service", "ldnService.notify-detail-modal": "LDN सेवा", - // "relatedItem.notify-detail-modal": "Related Item", "relatedItem.notify-detail-modal": "संबंधित आयटम", - // "search.filters.filter.notifyEndorsement.head": "Notify Endorsement", "search.filters.filter.notifyEndorsement.head": "सूचना मान्यता", - // "search.filters.filter.notifyEndorsement.placeholder": "Notify Endorsement", "search.filters.filter.notifyEndorsement.placeholder": "सूचना मान्यता", - // "search.filters.filter.notifyEndorsement.label": "Search Notify Endorsement", "search.filters.filter.notifyEndorsement.label": "सूचना मान्यता शोधा", - // "form.date-picker.placeholder.year": "Year", "form.date-picker.placeholder.year": "वर्ष", - // "form.date-picker.placeholder.month": "Month", "form.date-picker.placeholder.month": "महिना", - // "form.date-picker.placeholder.day": "Day", "form.date-picker.placeholder.day": "दिवस", - // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "क्रिएटिव्ह कॉमन्स परवाना", - // "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as", "item.page.cc.license.disclaimer": "इतरत्र नमूद केल्याशिवाय, या आयटमचा परवाना खालीलप्रमाणे वर्णन केला आहे", - // "browse.search-form.placeholder": "Search the repository", "browse.search-form.placeholder": "रेपॉझिटरी शोधा", - // "file-download-link.download": "Download ", "file-download-link.download": "डाउनलोड ", - // "register-page.registration.aria.label": "Enter your e-mail address", "register-page.registration.aria.label": "तुमचा ई-मेल पत्ता प्रविष्ट करा", - // "forgot-email.form.aria.label": "Enter your e-mail address", "forgot-email.form.aria.label": "तुमचा ई-मेल पत्ता प्रविष्ट करा", - // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "पृष्ठ पुन्हा लोड केले जाईल. फिल्टर {{ filter }} निवडले आहे.", - // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", "live-region.ordering.instructions": "{{ itemName }} पुनर्व्यवस्थित करण्यासाठी स्पेसबार दाबा.", - // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", - // TODO New key - Add a translation - "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + "live-region.ordering.status": "{{ itemName }}, पकडले. सूचीतील वर्तमान स्थिती: {{ index }} of {{ length }}. स्थिती बदलण्यासाठी वर आणि खाली बाण की दाबा, ड्रॉप करण्यासाठी स्पेसबार, रद्द करण्यासाठी एस्केप.", - // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", "live-region.ordering.moved": "{{ itemName }}, स्थिती {{ index }} of {{ length }} वर हलवले. स्थिती बदलण्यासाठी वर आणि खाली बाण की दाबा, ड्रॉप करण्यासाठी स्पेसबार, रद्द करण्यासाठी एस्केप.", - // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", "live-region.ordering.dropped": "{{ itemName }}, स्थिती {{ index }} of {{ length }} वर ड्रॉप केले.", - // "dynamic-form-array.sortable-list.label": "Sortable list", "dynamic-form-array.sortable-list.label": "सॉर्टेबल सूची", - // "external-login.component.or": "or", "external-login.component.or": "किंवा", - // "external-login.confirmation.header": "Information needed to complete the login process", "external-login.confirmation.header": "लॉगिन प्रक्रिया पूर्ण करण्यासाठी माहिती आवश्यक आहे", - // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", "external-login.noEmail.informationText": "{{authMethod}} कडून प्राप्त झालेली माहिती लॉगिन प्रक्रिया पूर्ण करण्यासाठी पुरेशी नाही. कृपया खालील माहिती द्या, किंवा विद्यमान खात्याशी तुमचे {{authMethod}} जोडण्यासाठी वेगळ्या पद्धतीने लॉगिन करा.", - // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", "external-login.haveEmail.informationText": "असे दिसते की तुम्ही या प्रणालीमध्ये अद्याप खाते तयार केलेले नाही. जर असे असेल तर, कृपया {{authMethod}} कडून प्राप्त झालेली माहिती पुष्टी करा आणि तुमच्यासाठी नवीन खाते तयार केले जाईल. अन्यथा, जर तुमच्याकडे आधीपासूनच प्रणालीमध्ये खाते असेल, तर कृपया विद्यमान खात्यात वापरलेला ईमेल पत्ता जुळवण्यासाठी ईमेल पत्ता अद्यतनित करा किंवा विद्यमान खात्याशी तुमचे {{authMethod}} जोडण्यासाठी वेगळ्या पद्धतीने लॉगिन करा.", - // "external-login.confirm-email.header": "Confirm or update email", "external-login.confirm-email.header": "ईमेल पुष्टी करा किंवा अद्यतनित करा", - // "external-login.confirmation.email-required": "Email is required.", "external-login.confirmation.email-required": "ईमेल आवश्यक आहे.", - // "external-login.confirmation.email-label": "User Email", "external-login.confirmation.email-label": "वापरकर्ता ईमेल", - // "external-login.confirmation.email-invalid": "Invalid email format.", "external-login.confirmation.email-invalid": "अवैध ईमेल स्वरूप.", - // "external-login.confirm.button.label": "Confirm this email", "external-login.confirm.button.label": "हा ईमेल पुष्टी करा", - // "external-login.confirm-email-sent.header": "Confirmation email sent", "external-login.confirm-email-sent.header": "पुष्टीकरण ईमेल पाठवले", - // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", "external-login.confirm-email-sent.info": " आम्ही दिलेल्या पत्त्यावर पुष्टीकरण ईमेल पाठवले आहे.
कृपया लॉगिन प्रक्रिया पूर्ण करण्यासाठी ईमेलमधील सूचनांचे अनुसरण करा.", - // "external-login.provide-email.header": "Provide email", "external-login.provide-email.header": "ईमेल द्या", - // "external-login.provide-email.button.label": "Send Verification link", "external-login.provide-email.button.label": "पुष्टीकरण लिंक पाठवा", - // "external-login-validation.review-account-info.header": "Review your account information", "external-login-validation.review-account-info.header": "तुमच्या खात्याची माहिती पुनरावलोकन करा", - // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", "external-login-validation.review-account-info.info": "ORCID कडून प्राप्त झालेली माहिती तुमच्या प्रोफाइलमध्ये नोंदवलेल्या माहितीपेक्षा वेगळी आहे.
कृपया त्यांचे पुनरावलोकन करा आणि तुम्हाला कोणतीही माहिती अद्यतनित करायची आहे का ते ठरवा. जतन केल्यानंतर तुम्हाला तुमच्या प्रोफाइल पृष्ठावर पुनर्निर्देशित केले जाईल.", - // "external-login-validation.review-account-info.table.header.information": "Information", "external-login-validation.review-account-info.table.header.information": "माहिती", - // "external-login-validation.review-account-info.table.header.received-value": "Received value", "external-login-validation.review-account-info.table.header.received-value": "प्राप्त मूल्य", - // "external-login-validation.review-account-info.table.header.current-value": "Current value", "external-login-validation.review-account-info.table.header.current-value": "वर्तमान मूल्य", - // "external-login-validation.review-account-info.table.header.action": "Override", "external-login-validation.review-account-info.table.header.action": "ओव्हरराइड", - // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", "external-login-validation.review-account-info.table.row.not-applicable": "N/A", - // "on-label": "ON", "on-label": "चालू", - // "off-label": "OFF", "off-label": "बंद", - // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", "review-account-info.merge-data.notification.success": "तुमची खात्याची माहिती यशस्वीरित्या अद्यतनित केली गेली आहे", - // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", "review-account-info.merge-data.notification.error": "तुमची खात्याची माहिती अद्यतनित करताना काहीतरी चूक झाली", - // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", "review-account-info.alert.error.content": "काहीतरी चूक झाली. कृपया नंतर पुन्हा प्रयत्न करा.", - // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", "external-login-page.provide-email.notifications.error": "काहीतरी चूक झाली. ईमेल पत्ता वगळला गेला किंवा ऑपरेशन वैध नाही.", - // "external-login.error.notification": "There was an error while processing your request. Please try again later.", "external-login.error.notification": "तुमची विनंती प्रक्रिया करताना एक त्रुटी आली. कृपया नंतर पुन्हा प्रयत्न करा.", - // "external-login.connect-to-existing-account.label": "Connect to an existing user", "external-login.connect-to-existing-account.label": "विद्यमान वापरकर्त्याशी कनेक्ट करा", - // "external-login.modal.label.close": "Close", "external-login.modal.label.close": "बंद करा", - // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", "external-login-page.provide-email.create-account.notifications.error.header": "काहीतरी चूक झाली", - // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", "external-login-page.provide-email.create-account.notifications.error.content": "कृपया तुमचा ईमेल पत्ता पुन्हा तपासा आणि पुन्हा प्रयत्न करा.", - // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", "external-login-page.confirm-email.create-account.notifications.error.no-netId": "या ईमेल खात्याशी काहीतरी चूक झाली. पुन्हा प्रयत्न करा किंवा लॉगिन करण्यासाठी वेगळा पद्धत वापरा.", - // "external-login-page.orcid-confirmation.firstname": "First name", "external-login-page.orcid-confirmation.firstname": "पहिले नाव", - // "external-login-page.orcid-confirmation.firstname.label": "First name", "external-login-page.orcid-confirmation.firstname.label": "पहिले नाव", - // "external-login-page.orcid-confirmation.lastname": "Last name", "external-login-page.orcid-confirmation.lastname": "आडनाव", - // "external-login-page.orcid-confirmation.lastname.label": "Last name", "external-login-page.orcid-confirmation.lastname.label": "आडनाव", - // "external-login-page.orcid-confirmation.netid": "Account Identifier", "external-login-page.orcid-confirmation.netid": "खाते ओळखकर्ता", - // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", - // "external-login-page.orcid-confirmation.email": "Email", "external-login-page.orcid-confirmation.email": "ईमेल", - // "external-login-page.orcid-confirmation.email.label": "Email", "external-login-page.orcid-confirmation.email.label": "ईमेल", - // "search.filters.access_status.open.access": "Open access", "search.filters.access_status.open.access": "मुक्त प्रवेश", - // "search.filters.access_status.restricted": "Restricted access", "search.filters.access_status.restricted": "मर्यादित प्रवेश", - // "search.filters.access_status.embargo": "Embargoed access", "search.filters.access_status.embargo": "प्रतिबंधित प्रवेश", - // "search.filters.access_status.metadata.only": "Metadata only", "search.filters.access_status.metadata.only": "फक्त मेटाडेटा", - // "search.filters.access_status.unknown": "Unknown", "search.filters.access_status.unknown": "अज्ञात", - // "metadata-export-filtered-items.tooltip": "Export report output as CSV", "metadata-export-filtered-items.tooltip": "CSV म्हणून अहवाल आउटपुट निर्यात करा", - // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", "metadata-export-filtered-items.submit.success": "CSV निर्यात यशस्वी झाली.", - // "metadata-export-filtered-items.submit.error": "CSV export failed.", "metadata-export-filtered-items.submit.error": "CSV निर्यात अयशस्वी झाली.", - // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", "metadata-export-filtered-items.columns.warning": "CSV निर्यात आपोआप सर्व संबंधित फील्ड समाविष्ट करते, त्यामुळे या सूचीतील निवडींचा विचार केला जात नाही.", - // "embargo.listelement.badge": "Embargo until {{ date }}", "embargo.listelement.badge": "{{ date }} पर्यंत प्रतिबंध", - // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", "metadata-export-search.submit.error.limit-exceeded": "फक्त पहिली {{limit}} आयटम निर्यात केली जातील", - - // "file-download-link.request-copy": "Request a copy of ", - // TODO New key - Add a translation - "file-download-link.request-copy": "Request a copy of ", - - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - - } \ No newline at end of file diff --git a/src/assets/i18n/nl.json5 b/src/assets/i18n/nl.json5 index 159d0136df3..6f15cef68f1 100644 --- a/src/assets/i18n/nl.json5 +++ b/src/assets/i18n/nl.json5 @@ -3657,26 +3657,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Fout bij het inladen van communities op het hoogste niveau", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "U moet de invoerlicentie goedkeuren om de invoer af te werken. Indien u deze licentie momenteel niet kan of mag goedkeuren, kunt u uw werk opslaan en de invoer later afwerken. U kunt dit nieuwe item ook verwijderen indien u niet voldoet aan de vereisten van de invoerlicentie.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Deze invoer wordt ingeperkt door dit patroon: {{ pattern }}.", @@ -10448,10 +10435,6 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -10645,18 +10628,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Upload geslaagd", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13848,17 +13819,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/pl.json5 b/src/assets/i18n/pl.json5 index b6160cbc918..6f5f0f1c518 100644 --- a/src/assets/i18n/pl.json5 +++ b/src/assets/i18n/pl.json5 @@ -2901,25 +2901,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Błąd podczas pobierania nadrzędnego zbioru", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Musisz wyrazić tę zgodę, aby przesłać swoje zgłoszenie. Jeśli nie możesz wyrazić zgody w tym momencie, możesz zapisać swoją pracę i wrócić do niej później lub usunąć zgłoszenie.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Musisz przyznać tę licencję cc, aby zakończyć zgłoszenie. Jeśli nie możesz przyznać licencji CC w tej chwili, możesz zapisać swoją pracę i wrócić później lub usunąć zgłoszenie.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Te dane wejściowe są ograniczone przez aktualny wzór: {{ pattern }}.", @@ -8406,10 +8393,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licencja Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Odzyskaj", @@ -8575,18 +8558,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Przesyłanie udane", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Jeśli checkbox jest zaznaczony, pozycja będzie wyświetlana w wynikach wyszukiwania. Jeśli checkbox jest odznaczony, dostęp do pozycji będzie dostępny tylko przez bezpośredni link, pozycja nie będzie wyświetlana w wynikach wyszukiwania.", @@ -10982,17 +10953,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/pt-BR.json5 b/src/assets/i18n/pt-BR.json5 index 53719494754..7d35b5ccfe8 100644 --- a/src/assets/i18n/pt-BR.json5 +++ b/src/assets/i18n/pt-BR.json5 @@ -2926,26 +2926,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erro ao carregar as comunidade de nível superior", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Você deve concordar com esta licença para completar sua submissão. Se você não estiver de acordo com esta licença neste momento você pode salvar seu trabalho para continuar depois ou remover a submissão.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Este campo está restrito ao seguinte padrão: {{ pattern }}.", @@ -8520,10 +8507,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Licença Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8689,18 +8672,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Enviado com sucesso", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Quando marcado, este item poderá ser descoberto na pesquisa/navegação. Quando desmarcado, o item estará disponível apenas por meio de um link direto e nunca aparecerá na pesquisa/navegação.", @@ -11168,14 +11139,9 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", "item.preview.organization.url": "URL", - // "item.preview.organization.address.addressLocality": "City", "item.preview.organization.address.addressLocality": "Cidade", - // "item.preview.organization.alternateName": "Alternative name", "item.preview.organization.alternateName": "Nome alternativo", - - -} \ No newline at end of file +} diff --git a/src/assets/i18n/pt-PT.json5 b/src/assets/i18n/pt-PT.json5 index 6c6ac019157..9ad0690d571 100644 --- a/src/assets/i18n/pt-PT.json5 +++ b/src/assets/i18n/pt-PT.json5 @@ -2902,25 +2902,12 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Erro ao carregar as comunidade de nível superior!", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Deve concordar com esta licença para completar o depósito. Se não estiver de acordo com a licença ou pretende ponderar, pode guardar este trabalho e retomar posteriormente ou remover definitivamente este depósito.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", "error.validation.cclicense.required": "Deve concordar com esta licença CC para completar o depósito. Se não estiver de acordo com a licença ou pretende ponderar, pode guardar o seu trabalho e retomar posteriormente ou remover definitivamente este depósito.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Este campo está restrito ao seguinte padrão: {{ pattern }}.", @@ -8500,10 +8487,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Associar uma licença Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciclar", @@ -8670,18 +8653,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Enviado com sucesso", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Quando selecionado, este item será pesquisável na pesquisa/navegação. Se não estiver selecionado, o item apenas estará disponível através uma ligação direta (link) e não aparecerá na pesquisa/navegação.", @@ -11075,17 +11046,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/ru.json5 b/src/assets/i18n/ru.json5 index 92258be4434..c56c9f7ffb8 100644 --- a/src/assets/i18n/ru.json5 +++ b/src/assets/i18n/ru.json5 @@ -1,4 +1,5 @@ { + // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.", "401.help": "У вас нет прав доступа к этой странице. Вы можете использовать кнопку ниже, чтобы вернуться на домашнюю страницу.", @@ -50,10 +51,6 @@ // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "Произошла ошибка при входе через ORCID. Убедитесь, что вы поделились адресом электронной почты своей учетной записи ORCID с DSpace. Если ошибка повторяется, обратитесь к администратору.", - // "listelement.badge.access-status": "Access status:", - // TODO New key - Add a translation - "listelement.badge.access-status": "Access status:", - // "access-status.embargo.listelement.badge": "Embargo", "access-status.embargo.listelement.badge": "Эмбарго", @@ -459,22 +456,6 @@ // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"", "admin.access-control.epeople.table.edit.buttons.remove": "Удалить \"{{ name }}\"", - // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel", - - // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", - // TODO New key - Add a translation - "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete", - // "admin.access-control.epeople.no-items": "No EPeople to show.", "admin.access-control.epeople.no-items": "Нет пользователей для отображения.", @@ -667,8 +648,7 @@ // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.header": "Удалить группу \"{{ dsoName }}\"", - // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO Source message changed - Revise the translation + // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\"", "admin.access-control.groups.form.delete-group.modal.info": "Вы уверены, что хотите удалить группу \"{{ dsoName }}\"?", // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", @@ -1124,10 +1104,6 @@ // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Элемент содержит по крайней мере одну миниатюру, недоступную анонимным пользователям", - // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", - // TODO New key - Add a translation - "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata", - // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user", "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Элемент содержит метаданные, недоступные анонимным пользователям", @@ -1212,8 +1188,7 @@ // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here", "admin.metadata-import.page.help": "Вы можете перетащить или выбрать CSV-файлы, содержащие пакетные операции с метаданными", - // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import", - // TODO Source message changed - Revise the translation + // "admin.batch-import.page.help": "Select the Collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the Items to import", "admin.batch-import.page.help": "Выберите коллекцию для импорта. Затем перетащите или выберите ZIP-файл в формате SAF, содержащий элементы для импорта", // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source", @@ -1516,30 +1491,6 @@ // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", "bitstream-request-a-copy.submit.error": "Произошла ошибка при отправке запроса элемента.", - // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.", - - // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on", - - // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on", - - // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.", - - // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.", - - // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", - // TODO New key - Add a translation - "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token", - // "browse.back.all-results": "All browse results", "browse.back.all-results": "Все результаты поиска", @@ -1606,18 +1557,6 @@ // "browse.metadata.title.breadcrumbs": "Browse by Title", "browse.metadata.title.breadcrumbs": "Просмотр по названию", - // "browse.metadata.map": "Browse by Geolocation", - // TODO New key - Add a translation - "browse.metadata.map": "Browse by Geolocation", - - // "browse.metadata.map.breadcrumbs": "Browse by Geolocation", - // TODO New key - Add a translation - "browse.metadata.map.breadcrumbs": "Browse by Geolocation", - - // "browse.metadata.map.count.items": "items", - // TODO New key - Add a translation - "browse.metadata.map.count.items": "items", - // "pagination.next.button": "Next", "pagination.next.button": "Следующая", @@ -1735,8 +1674,7 @@ // "collection.create.head": "Create a Collection", "collection.create.head": "Создать коллекцию", - // "collection.create.notifications.success": "Successfully created the collection", - // TODO Source message changed - Revise the translation + // "collection.create.notifications.success": "Successfully created the Collection", "collection.create.notifications.success": "Коллекция успешно создана", // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", @@ -1844,12 +1782,10 @@ // "collection.edit.logo.label": "Collection logo", "collection.edit.logo.label": "Логотип коллекции", - // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.", - // TODO Source message changed - Revise the translation + // "collection.edit.logo.notifications.add.error": "Uploading Collection logo failed. Please verify the content before retrying.", "collection.edit.logo.notifications.add.error": "Ошибка загрузки логотипа коллекции. Проверьте содержимое и повторите попытку.", - // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.", - // TODO Source message changed - Revise the translation + // "collection.edit.logo.notifications.add.success": "Upload Collection logo successful.", "collection.edit.logo.notifications.add.success": "Логотип коллекции успешно загружен.", // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", @@ -1861,12 +1797,10 @@ // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo", "collection.edit.logo.notifications.delete.error.title": "Ошибка при удалении логотипа", - // "collection.edit.logo.upload": "Drop a collection logo to upload", - // TODO Source message changed - Revise the translation + // "collection.edit.logo.upload": "Drop a Collection Logo to upload", "collection.edit.logo.upload": "Перетащите логотип коллекции для загрузки", - // "collection.edit.notifications.success": "Successfully edited the collection", - // TODO Source message changed - Revise the translation + // "collection.edit.notifications.success": "Successfully edited the Collection", "collection.edit.notifications.success": "Коллекция успешно отредактирована", // "collection.edit.return": "Back", @@ -1995,10 +1929,6 @@ // "collection.edit.template.notifications.delete.error": "Failed to delete the item template", "collection.edit.template.notifications.delete.error": "Не удалось удалить шаблон элемента.", - // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", - // TODO New key - Add a translation - "collection.edit.template.notifications.delete.success": "Successfully deleted the item template", - // "collection.edit.template.title": "Edit Template Item", "collection.edit.template.title": "Редактировать шаблон элемента", @@ -2050,14 +1980,6 @@ // "collection.page.news": "News", "collection.page.news": "Новости", - // "collection.page.options": "Options", - // TODO New key - Add a translation - "collection.page.options": "Options", - - // "collection.search.breadcrumbs": "Search", - // TODO New key - Add a translation - "collection.search.breadcrumbs": "Search", - // "collection.search.results.head": "Search Results", "collection.search.results.head": "Результаты поиска", @@ -2184,8 +2106,7 @@ // "community.create.head": "Create a Community", "community.create.head": "Создать сообщество", - // "community.create.notifications.success": "Successfully created the community", - // TODO Source message changed - Revise the translation + // "community.create.notifications.success": "Successfully created the Community", "community.create.notifications.success": "Сообщество успешно создано", // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", @@ -2257,8 +2178,7 @@ // "community.edit.logo.upload": "Drop a community logo to upload", "community.edit.logo.upload": "Перетащите логотип сообщества для загрузки", - // "community.edit.notifications.success": "Successfully edited the community", - // TODO Source message changed - Revise the translation + // "community.edit.notifications.success": "Successfully edited the Community", "community.edit.notifications.success": "Сообщество успешно отредактировано", // "community.edit.notifications.unauthorized": "You do not have privileges to make this change", @@ -2324,22 +2244,6 @@ // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", "comcol-role.edit.delete.error.title": "Не удалось удалить группу роли '{{ role }}'", - // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"", - - // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?", - - // "comcol-role.edit.delete.modal.cancel": "Cancel", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.cancel": "Cancel", - - // "comcol-role.edit.delete.modal.confirm": "Delete", - // TODO New key - Add a translation - "comcol-role.edit.delete.modal.confirm": "Delete", - // "comcol-role.edit.community-admin.name": "Administrators", "comcol-role.edit.community-admin.name": "Администраторы", @@ -2430,22 +2334,13 @@ // "community.page.news": "News", "community.page.news": "Новости", - // "community.page.options": "Options", - // TODO New key - Add a translation - "community.page.options": "Options", - // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "Подсообщества и коллекции", - // "community.search.breadcrumbs": "Search", - // TODO New key - Add a translation - "community.search.breadcrumbs": "Search", - // "community.search.results.head": "Search Results", "community.search.results.head": "Результаты поиска", - // "community.sub-collection-list.head": "Collections in this community", - // TODO Source message changed - Revise the translation + // "community.sub-collection-list.head": "Collections in this Community", "community.sub-collection-list.head": "Коллекции в этом сообществе", // "community.sub-community-list.head": "Communities in this Community", @@ -2472,6 +2367,12 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(всегда требуется)", + // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + "cookies.consent.app.disable-all.description": "Используйте этот переключатель, чтобы включить или отключить все сервисы.", + + // "cookies.consent.app.disable-all.title": "Enable or disable all services", + "cookies.consent.app.disable-all.title": "Включить или отключить все сервисы", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "С момента вашего последнего визита произошли изменения, пожалуйста, обновите своё согласие.", @@ -2481,20 +2382,21 @@ // "cookies.consent.decline": "Decline", "cookies.consent.decline": "Отклонить", - // "cookies.consent.decline-all": "Decline all", - // TODO New key - Add a translation - "cookies.consent.decline-all": "Decline all", - // "cookies.consent.ok": "That's ok", "cookies.consent.ok": "Хорошо", // "cookies.consent.save": "Save", "cookies.consent.save": "Сохранить", - // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", - // TODO Source message changed - Revise the translation + // "cookies.consent.content-notice.title": "Cookie Consent", + "cookies.consent.content-notice.title": "Согласие на использование cookies", + + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", "cookies.consent.content-notice.description": "Мы собираем и обрабатываем вашу личную информацию для следующих целей: Аутентификация, Предпочтения, Подтверждение и Статистика.
Подробнее см. в нашей {privacyPolicy}.", + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + "cookies.consent.content-notice.description.no-privacy": "Мы собираем и обрабатываем вашу личную информацию для следующих целей: Аутентификация, Предпочтения, Подтверждение и Статистика.", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Настроить", @@ -2507,20 +2409,14 @@ // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", "cookies.consent.content-modal.privacy-policy.text": "Чтобы узнать больше, пожалуйста, прочитайте нашу {privacyPolicy}.", - // "cookies.consent.content-modal.no-privacy-policy.text": "", - // TODO New key - Add a translation - "cookies.consent.content-modal.no-privacy-policy.text": "", - // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Информация, которую мы собираем", - // "cookies.consent.app.title.accessibility": "Accessibility Settings", - // TODO New key - Add a translation - "cookies.consent.app.title.accessibility": "Accessibility Settings", + // "cookies.consent.content-modal.services": "services", + "cookies.consent.content-modal.services": "сервисы", - // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", - // TODO New key - Add a translation - "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally", + // "cookies.consent.content-modal.service": "service", + "cookies.consent.content-modal.service": "сервис", // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Аутентификация", @@ -2528,14 +2424,6 @@ // "cookies.consent.app.description.authentication": "Required for signing you in", "cookies.consent.app.description.authentication": "Необходимо для входа в систему", - // "cookies.consent.app.title.correlation-id": "Correlation ID", - // TODO New key - Add a translation - "cookies.consent.app.title.correlation-id": "Correlation ID", - - // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - // TODO New key - Add a translation - "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes", - // "cookies.consent.app.title.preferences": "Preferences", "cookies.consent.app.title.preferences": "Предпочтения", @@ -2560,14 +2448,6 @@ // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery", "cookies.consent.app.description.google-recaptcha": "Мы используем сервис Google reCAPTCHA при регистрации и восстановлении пароля", - // "cookies.consent.app.title.matomo": "Matomo", - // TODO New key - Add a translation - "cookies.consent.app.title.matomo": "Matomo", - - // "cookies.consent.app.description.matomo": "Allows us to track statistical data", - // TODO New key - Add a translation - "cookies.consent.app.description.matomo": "Allows us to track statistical data", - // "cookies.consent.purpose.functional": "Functional", "cookies.consent.purpose.functional": "Функциональные", @@ -2651,7 +2531,7 @@ // "dynamic-list.load-more": "Load more", // TODO New key - Add a translation - "dynamic-list.load-more": "Load more", + "dynamic-list.load-more": "Загрузить ещё", // "dropdown.clear": "Clear selection", "dropdown.clear": "Очистить выбор", @@ -2860,26 +2740,6 @@ // "confirmation-modal.delete-subscription.confirm": "Delete", "confirmation-modal.delete-subscription.confirm": "Удалить", - // "confirmation-modal.review-account-info.header": "Save the changes", - // TODO New key - Add a translation - "confirmation-modal.review-account-info.header": "Save the changes", - - // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", - // TODO New key - Add a translation - "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile", - - // "confirmation-modal.review-account-info.cancel": "Cancel", - // TODO New key - Add a translation - "confirmation-modal.review-account-info.cancel": "Cancel", - - // "confirmation-modal.review-account-info.confirm": "Confirm", - // TODO New key - Add a translation - "confirmation-modal.review-account-info.confirm": "Confirm", - - // "confirmation-modal.review-account-info.save": "Save", - // TODO New key - Add a translation - "confirmation-modal.review-account-info.save": "Save", - // "error.bitstream": "Error fetching bitstream", "error.bitstream": "Ошибка при получении файла", @@ -2915,7 +2775,7 @@ // "error.profile-groups": "Error retrieving profile groups", // TODO New key - Add a translation - "error.profile-groups": "Error retrieving profile groups", + "error.profile-groups": "Ошибка при получении групп профилей", // "error.search-results": "Error fetching search results", "error.search-results": "Ошибка при получении результатов поиска", @@ -2935,25 +2795,8 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Ошибка при получении сообществ верхнего уровня", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - - // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Вы должны принять эту лицензию для завершения отправки. Если вы не можете сделать это сейчас, сохраните работу и вернитесь позже или удалите отправку.", // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Это поле ограничено текущим шаблоном: {{ pattern }}.", @@ -3000,20 +2843,12 @@ // "file-download-link.restricted": "Restricted bitstream", "file-download-link.restricted": "Ограниченный файл", - // "file-download-link.secure-access": "Restricted bitstream available via secure access token", - // TODO New key - Add a translation - "file-download-link.secure-access": "Restricted bitstream available via secure access token", - // "file-section.error.header": "Error obtaining files for this item", "file-section.error.header": "Ошибка при получении файлов для этого элемента", // "footer.copyright": "copyright © 2002-{{ year }}", "footer.copyright": "авторское право © 2002-{{ year }}", - // "footer.link.accessibility": "Accessibility settings", - // TODO New key - Add a translation - "footer.link.accessibility": "Accessibility settings", - // "footer.link.dspace": "DSpace software", "footer.link.dspace": "Программное обеспечение DSpace", @@ -3218,14 +3053,9 @@ // "form.repeatable.sort.tip": "Drop the item in the new position", "form.repeatable.sort.tip": "Переместите элемент на новую позицию", - // "grant-deny-request-copy.deny": "Deny access request", - // TODO Source message changed - Revise the translation + // "grant-deny-request-copy.deny": "Don't send copy", "grant-deny-request-copy.deny": "Не отправлять копию", - // "grant-deny-request-copy.revoke": "Revoke access", - // TODO New key - Add a translation - "grant-deny-request-copy.revoke": "Revoke access", - // "grant-deny-request-copy.email.back": "Back", "grant-deny-request-copy.email.back": "Назад", @@ -3250,8 +3080,7 @@ // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", "grant-deny-request-copy.email.subject.empty": "Пожалуйста, введите тему", - // "grant-deny-request-copy.grant": "Grant access request", - // TODO Source message changed - Revise the translation + // "grant-deny-request-copy.grant": "Send copy", "grant-deny-request-copy.grant": "Отправить копию", // "grant-deny-request-copy.header": "Document copy request", @@ -3266,10 +3095,6 @@ // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", "grant-deny-request-copy.intro2": "После выбора варианта будет предложен текст письма, который вы можете отредактировать.", - // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", - // TODO New key - Add a translation - "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token", - // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", "grant-deny-request-copy.processed": "Этот запрос уже обработан. Вы можете использовать кнопку ниже, чтобы вернуться на главную страницу.", @@ -3282,45 +3107,12 @@ // "grant-request-copy.header": "Grant document copy request", "grant-request-copy.header": "Разрешить запрос копии документа", - // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", - // TODO New key - Add a translation - "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", - - // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", - // TODO New key - Add a translation - "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.", - - // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", - // TODO New key - Add a translation - "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:", + // "grant-request-copy.intro": "A message will be sent to the applicant of the request. The requested document(s) will be attached.", + "grant-request-copy.intro": "Сообщение будет отправлено заявителю. Запрошенные документы будут приложены.", // "grant-request-copy.success": "Successfully granted item request", "grant-request-copy.success": "Запрос на предмет успешно выполнен", - // "grant-request-copy.access-period.header": "Access period", - // TODO New key - Add a translation - "grant-request-copy.access-period.header": "Access period", - - // "grant-request-copy.access-period.+1DAY": "1 day", - // TODO New key - Add a translation - "grant-request-copy.access-period.+1DAY": "1 day", - - // "grant-request-copy.access-period.+7DAYS": "1 week", - // TODO New key - Add a translation - "grant-request-copy.access-period.+7DAYS": "1 week", - - // "grant-request-copy.access-period.+1MONTH": "1 month", - // TODO New key - Add a translation - "grant-request-copy.access-period.+1MONTH": "1 month", - - // "grant-request-copy.access-period.+3MONTHS": "3 months", - // TODO New key - Add a translation - "grant-request-copy.access-period.+3MONTHS": "3 months", - - // "grant-request-copy.access-period.FOREVER": "Forever", - // TODO New key - Add a translation - "grant-request-copy.access-period.FOREVER": "Forever", - // "health.breadcrumbs": "Health", "health.breadcrumbs": "Проверки", @@ -3399,82 +3191,6 @@ // "home.top-level-communities.help": "Select a community to browse its collections.", "home.top-level-communities.help": "Выберите сообщество для просмотра коллекций.", - // "info.accessibility-settings.breadcrumbs": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.breadcrumbs": "Accessibility settings", - - // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - // TODO New key - Add a translation - "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.", - - // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out", - - // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - // TODO New key - Add a translation - "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open untill manually closed.", - - // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.failed-notification": "Failed to save accessibility settings", - - // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - // TODO New key - Add a translation - "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.", - - // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)", - - // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.", - - // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0", - - // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)", - - // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.", - - // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - // TODO New key - Add a translation - "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0", - - // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.", - - // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - // TODO New key - Add a translation - "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.", - - // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.", - - // "info.accessibility-settings.reset-notification": "Successfully reset settings.", - // TODO New key - Add a translation - "info.accessibility-settings.reset-notification": "Successfully reset settings.", - - // "info.accessibility-settings.reset": "Reset accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.reset": "Reset accessibility settings", - - // "info.accessibility-settings.submit": "Save accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.submit": "Save accessibility settings", - - // "info.accessibility-settings.title": "Accessibility settings", - // TODO New key - Add a translation - "info.accessibility-settings.title": "Accessibility settings", - // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement", "info.end-user-agreement.accept": "Я прочитал и согласен с соглашением конечного пользователя.", @@ -3556,14 +3272,6 @@ // "info.coar-notify-support.breadcrumbs": "COAR Notify Support", "info.coar-notify-support.breadcrumbs": "Поддержка COAR Notify", - // "item.alerts.private": "This item is non-discoverable", - // TODO New key - Add a translation - "item.alerts.private": "This item is non-discoverable", - - // "item.alerts.withdrawn": "This item has been withdrawn", - // TODO New key - Add a translation - "item.alerts.withdrawn": "This item has been withdrawn", - // "item.alerts.reinstate-request": "Request reinstate", "item.alerts.reinstate-request": "Запрос на восстановление", @@ -3576,10 +3284,6 @@ // "item.edit.authorizations.title": "Edit item's Policies", "item.edit.authorizations.title": "Редактировать политики объекта", - // "item.badge.status": "Item status:", - // TODO New key - Add a translation - "item.badge.status": "Item status:", - // "item.badge.private": "Non-discoverable", "item.badge.private": "Приватный", @@ -3735,7 +3439,7 @@ // "item.edit.bitstreams.load-more.link": "Load more", // TODO New key - Add a translation - "item.edit.bitstreams.load-more.link": "Load more", + "item.edit.bitstreams.load-more.link": "Загрузить ещё", // "item.edit.delete.cancel": "Cancel", "item.edit.delete.cancel": "Отмена", @@ -3904,11 +3608,11 @@ // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", // TODO New key - Add a translation - "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing", + "item.edit.metadata.edit.buttons.enable-free-text-editing": "Включить редактирование свободного текста", // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", // TODO New key - Add a translation - "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing", + "item.edit.metadata.edit.buttons.disable-free-text-editing": "Отключить редактирование свободного текста", // "item.edit.metadata.edit.buttons.confirm": "Confirm", "item.edit.metadata.edit.buttons.confirm": "Подтвердить", @@ -4204,8 +3908,7 @@ // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections", "item.edit.tabs.status.buttons.mappedCollections.label": "Управлять связанными коллекциями", - // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection", - // TODO Source message changed - Revise the translation + // "item.edit.tabs.status.buttons.move.button": "Move this Item to a different Collection", "item.edit.tabs.status.buttons.move.button": "Переместить этот элемент в другую коллекцию", // "item.edit.tabs.status.buttons.move.label": "Move item to another collection", @@ -4301,62 +4004,6 @@ // "item.page.description": "Description", "item.page.description": "Описание", - // "item.page.org-unit": "Organizational Unit", - // TODO New key - Add a translation - "item.page.org-unit": "Organizational Unit", - - // "item.page.org-units": "Organizational Units", - // TODO New key - Add a translation - "item.page.org-units": "Organizational Units", - - // "item.page.project": "Research Project", - // TODO New key - Add a translation - "item.page.project": "Research Project", - - // "item.page.projects": "Research Projects", - // TODO New key - Add a translation - "item.page.projects": "Research Projects", - - // "item.page.publication": "Publications", - // TODO New key - Add a translation - "item.page.publication": "Publications", - - // "item.page.publications": "Publications", - // TODO New key - Add a translation - "item.page.publications": "Publications", - - // "item.page.article": "Article", - // TODO New key - Add a translation - "item.page.article": "Article", - - // "item.page.articles": "Articles", - // TODO New key - Add a translation - "item.page.articles": "Articles", - - // "item.page.journal": "Journal", - // TODO New key - Add a translation - "item.page.journal": "Journal", - - // "item.page.journals": "Journals", - // TODO New key - Add a translation - "item.page.journals": "Journals", - - // "item.page.journal-issue": "Journal Issue", - // TODO New key - Add a translation - "item.page.journal-issue": "Journal Issue", - - // "item.page.journal-issues": "Journal Issues", - // TODO New key - Add a translation - "item.page.journal-issues": "Journal Issues", - - // "item.page.journal-volume": "Journal Volume", - // TODO New key - Add a translation - "item.page.journal-volume": "Journal Volume", - - // "item.page.journal-volumes": "Journal Volumes", - // TODO New key - Add a translation - "item.page.journal-volumes": "Journal Volumes", - // "item.page.journal-issn": "Journal ISSN", "item.page.journal-issn": "ISSN журнала", @@ -4372,10 +4019,6 @@ // "item.page.volume-title": "Volume Title", "item.page.volume-title": "Название тома", - // "item.page.dcterms.spatial": "Geospatial point", - // TODO New key - Add a translation - "item.page.dcterms.spatial": "Geospatial point", - // "item.search.results.head": "Item Search Results", "item.search.results.head": "Результаты поиска элементов", @@ -4454,14 +4097,9 @@ // "item.page.abstract": "Abstract", "item.page.abstract": "Аннотация", - // "item.page.author": "Author", - // TODO Source message changed - Revise the translation + // "item.page.author": "Authors", "item.page.author": "Авторы", - // "item.page.authors": "Authors", - // TODO New key - Add a translation - "item.page.authors": "Authors", - // "item.page.citation": "Citation", "item.page.citation": "Цитирование", @@ -4507,10 +4145,6 @@ // "item.page.link.simple": "Simple item page", "item.page.link.simple": "Простая страница элемента", - // "item.page.options": "Options", - // TODO New key - Add a translation - "item.page.options": "Options", - // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", @@ -4592,10 +4226,6 @@ // "item.preview.dc.date.issued": "Published date:", "item.preview.dc.date.issued": "Дата публикации:", - // "item.preview.dc.description": "Description:", - // TODO New key - Add a translation - "item.preview.dc.description": "Description:", - // "item.preview.dc.description.abstract": "Abstract:", "item.preview.dc.description.abstract": "Резюме:", @@ -4614,44 +4244,12 @@ // "item.preview.dc.type": "Type:", "item.preview.dc.type": "Тип:", - // "item.preview.oaire.version": "Version", - // TODO New key - Add a translation - "item.preview.oaire.version": "Version", - // "item.preview.oaire.citation.issue": "Issue", "item.preview.oaire.citation.issue": "Выпуск", // "item.preview.oaire.citation.volume": "Volume", "item.preview.oaire.citation.volume": "Том", - // "item.preview.oaire.citation.title": "Citation container", - // TODO New key - Add a translation - "item.preview.oaire.citation.title": "Citation container", - - // "item.preview.oaire.citation.startPage": "Citation start page", - // TODO New key - Add a translation - "item.preview.oaire.citation.startPage": "Citation start page", - - // "item.preview.oaire.citation.endPage": "Citation end page", - // TODO New key - Add a translation - "item.preview.oaire.citation.endPage": "Citation end page", - - // "item.preview.dc.relation.hasversion": "Has version", - // TODO New key - Add a translation - "item.preview.dc.relation.hasversion": "Has version", - - // "item.preview.dc.relation.ispartofseries": "Is part of series", - // TODO New key - Add a translation - "item.preview.dc.relation.ispartofseries": "Is part of series", - - // "item.preview.dc.rights": "Rights", - // TODO New key - Add a translation - "item.preview.dc.rights": "Rights", - - // "item.preview.dc.identifier.other": "Other Identifier", - // TODO Source message changed - Revise the translation - "item.preview.dc.identifier.other": "Другой идентификатор:", - // "item.preview.dc.relation.issn": "ISSN", "item.preview.dc.relation.issn": "ISSN", @@ -4679,20 +4277,12 @@ // "item.preview.person.identifier.orcid": "ORCID:", "item.preview.person.identifier.orcid": "ORCID:", - // "item.preview.person.affiliation.name": "Affiliations:", - // TODO New key - Add a translation - "item.preview.person.affiliation.name": "Affiliations:", - // "item.preview.project.funder.name": "Funder:", "item.preview.project.funder.name": "Спонсор:", // "item.preview.project.funder.identifier": "Funder Identifier:", "item.preview.project.funder.identifier": "Идентификатор спонсора:", - // "item.preview.project.investigator": "Project Investigator", - // TODO New key - Add a translation - "item.preview.project.investigator": "Project Investigator", - // "item.preview.oaire.awardNumber": "Funding ID:", "item.preview.oaire.awardNumber": "ID финансирования:", @@ -4729,26 +4319,6 @@ // "item.preview.dspace.entity.type": "Entity Type:", "item.preview.dspace.entity.type": "Тип сущности:", - // "item.preview.creativework.publisher": "Publisher", - // TODO New key - Add a translation - "item.preview.creativework.publisher": "Publisher", - - // "item.preview.creativeworkseries.issn": "ISSN", - // TODO New key - Add a translation - "item.preview.creativeworkseries.issn": "ISSN", - - // "item.preview.dc.identifier.issn": "ISSN", - // TODO New key - Add a translation - "item.preview.dc.identifier.issn": "ISSN", - - // "item.preview.dc.identifier.openalex": "OpenAlex Identifier", - // TODO New key - Add a translation - "item.preview.dc.identifier.openalex": "OpenAlex Identifier", - - // "item.preview.dc.description": "Description", - // TODO New key - Add a translation - "item.preview.dc.description": "Description", - // "item.select.confirm": "Confirm selected", "item.select.confirm": "Подтвердить выбранное", @@ -5067,10 +4637,6 @@ // "journal.page.publisher": "Publisher", "journal.page.publisher": "Издатель", - // "journal.page.options": "Options", - // TODO New key - Add a translation - "journal.page.options": "Options", - // "journal.page.titleprefix": "Journal: ", "journal.page.titleprefix": "Журнал: ", @@ -5107,10 +4673,6 @@ // "journalissue.page.number": "Number", "journalissue.page.number": "Номер", - // "journalissue.page.options": "Options", - // TODO New key - Add a translation - "journalissue.page.options": "Options", - // "journalissue.page.titleprefix": "Journal Issue: ", "journalissue.page.titleprefix": "Выпуск журнала: ", @@ -5129,10 +4691,6 @@ // "journalvolume.page.issuedate": "Issue Date", "journalvolume.page.issuedate": "Дата выпуска", - // "journalvolume.page.options": "Options", - // TODO New key - Add a translation - "journalvolume.page.options": "Options", - // "journalvolume.page.titleprefix": "Journal Volume: ", "journalvolume.page.titleprefix": "Том журнала: ", @@ -5250,10 +4808,6 @@ // "login.form.password": "Password", "login.form.password": "Пароль", - // "login.form.saml": "Log in with SAML", - // TODO New key - Add a translation - "login.form.saml": "Log in with SAML", - // "login.form.shibboleth": "Log in with Shibboleth", "login.form.shibboleth": "Войти через Shibboleth", @@ -5350,10 +4904,6 @@ // "menu.section.browse_global_communities_and_collections": "Communities & Collections", "menu.section.browse_global_communities_and_collections": "Сообщества и коллекции", - // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", - // TODO New key - Add a translation - "menu.section.browse_global_geospatial_map": "By Geolocation (Map)", - // "menu.section.control_panel": "Control Panel", "menu.section.control_panel": "Панель управления", @@ -5426,6 +4976,18 @@ // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "Закрепить боковую панель", + // "menu.section.icon.processes": "Processes Health", + "menu.section.icon.processes": "Раздел меню состояния процессов", + + // "menu.section.icon.registries": "Registries menu section", + "menu.section.icon.registries": "Раздел меню реестров", + + // "menu.section.icon.statistics_task": "Statistics Task menu section", + "menu.section.icon.statistics_task": "Раздел меню задач статистики", + + // "menu.section.icon.workflow": "Administer workflow menu section", + "menu.section.icon.workflow": "Раздел меню управления рабочим процессом", + // "menu.section.icon.unpin": "Unpin sidebar", "menu.section.icon.unpin": "Открепить боковую панель", @@ -5633,10 +5195,6 @@ // "mydspace.show.supervisedWorkspace": "Supervised items", "mydspace.show.supervisedWorkspace": "Кураторские элементы", - // "mydspace.status": "My DSpace status:", - // TODO New key - Add a translation - "mydspace.status": "My DSpace status:", - // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "В архиве", @@ -5733,21 +5291,9 @@ // "nav.user.description": "User profile bar", "nav.user.description": "Панель профиля пользователя", - // "listelement.badge.dso-type": "Item type:", - // TODO New key - Add a translation - "listelement.badge.dso-type": "Item type:", - // "none.listelement.badge": "Item", "none.listelement.badge": "Элемент", - // "publication-claim.title": "Publication claim", - // TODO New key - Add a translation - "publication-claim.title": "Publication claim", - - // "publication-claim.source.description": "Below you can see all the sources.", - // TODO New key - Add a translation - "publication-claim.source.description": "Below you can see all the sources.", - // "quality-assurance.title": "Quality Assurance", "quality-assurance.title": "Контроль качества", @@ -5982,10 +5528,6 @@ // "orgunit.page.id": "ID", "orgunit.page.id": "ID", - // "orgunit.page.options": "Options", - // TODO New key - Add a translation - "orgunit.page.options": "Options", - // "orgunit.page.titleprefix": "Organizational Unit: ", "orgunit.page.titleprefix": "Организационное подразделение: ", @@ -6040,10 +5582,6 @@ // "person.page.link.full": "Show all metadata", "person.page.link.full": "Показать все метаданные", - // "person.page.options": "Options", - // TODO New key - Add a translation - "person.page.options": "Options", - // "person.page.orcid": "ORCID", "person.page.orcid": "ORCID", @@ -6098,10 +5636,6 @@ // "process.new.parameter.file.required": "Please select a file", "process.new.parameter.file.required": "Пожалуйста, выберите файл", - // "process.new.parameter.integer.required": "Parameter value is required", - // TODO New key - Add a translation - "process.new.parameter.integer.required": "Parameter value is required", - // "process.new.parameter.string.required": "Parameter value is required", "process.new.parameter.string.required": "Требуется значение параметра", @@ -6300,18 +5834,6 @@ // "profile.breadcrumbs": "Update Profile", "profile.breadcrumbs": "Обновить профиль", - // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - // TODO New key - Add a translation - "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.", - - // "profile.card.accessibility.header": "Accessibility", - // TODO New key - Add a translation - "profile.card.accessibility.header": "Accessibility", - - // "profile.card.accessibility.link": "Go to Accessibility Settings Page", - // TODO New key - Add a translation - "profile.card.accessibility.link": "Go to Accessibility Settings Page", - // "profile.card.identify": "Identify", "profile.card.identify": "Идентификация", @@ -6423,10 +5945,6 @@ // "project.page.keyword": "Keywords", "project.page.keyword": "Ключевые слова", - // "project.page.options": "Options", - // TODO New key - Add a translation - "project.page.options": "Options", - // "project.page.status": "Status", "project.page.status": "Статус", @@ -6457,10 +5975,6 @@ // "publication.page.publisher": "Publisher", "publication.page.publisher": "Издатель", - // "publication.page.options": "Options", - // TODO New key - Add a translation - "publication.page.options": "Options", - // "publication.page.titleprefix": "Publication: ", "publication.page.titleprefix": "Публикация: ", @@ -6572,10 +6086,6 @@ // "suggestion.source.openaire": "OpenAIRE Graph", "suggestion.source.openaire": "Граф OpenAIRE", - // "suggestion.source.openalex": "OpenAlex", - // TODO New key - Add a translation - "suggestion.source.openalex": "OpenAlex", - // "suggestion.from.source": "from the ", "suggestion.from.source": "из ", @@ -6720,109 +6230,68 @@ // "relationships.add.error.title": "Unable to add relationship", "relationships.add.error.title": "Не удалось добавить связь", - // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)", - - // "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Publication.isProjectOfPublication.Project": "Research Projects", - - // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units", - - // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)", - - // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue", - - // "relationships.Publication.isContributorOfPublication.Person": "Contributor", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.Person": "Contributor", + // "relationships.isAuthorOf": "Authors", + "relationships.isAuthorOf": "Авторы", - // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", - // TODO New key - Add a translation - "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)", + // "relationships.isAuthorOf.Person": "Authors (persons)", + "relationships.isAuthorOf.Person": "Авторы (физические лица)", - // "relationships.Person.isPublicationOfAuthor.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfAuthor.Publication": "Publications", + // "relationships.isAuthorOf.OrgUnit": "Authors (organizational units)", + "relationships.isAuthorOf.OrgUnit": "Авторы (организационные единицы)", - // "relationships.Person.isProjectOfPerson.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.Person.isProjectOfPerson.Project": "Research Projects", + // "relationships.isIssueOf": "Journal Issues", + "relationships.isIssueOf": "Выпуски журналов", - // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units", + // "relationships.isIssueOf.JournalIssue": "Journal Issue", + "relationships.isIssueOf.JournalIssue": "Выпуск журнала", - // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)", + // "relationships.isJournalIssueOf": "Journal Issue", + "relationships.isJournalIssueOf": "Выпуск журнала", - // "relationships.Project.isPublicationOfProject.Publication": "Publications", - // TODO New key - Add a translation - "relationships.Project.isPublicationOfProject.Publication": "Publications", + // "relationships.isJournalOf": "Journals", + "relationships.isJournalOf": "Журналы", - // "relationships.Project.isPersonOfProject.Person": "Authors", - // TODO New key - Add a translation - "relationships.Project.isPersonOfProject.Person": "Authors", + // "relationships.isJournalVolumeOf": "Journal Volume", + "relationships.isJournalVolumeOf": "Том журнала", - // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", - // TODO New key - Add a translation - "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units", + // "relationships.isOrgUnitOf": "Organizational Units", + "relationships.isOrgUnitOf": "Организационные единицы", - // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", - // TODO New key - Add a translation - "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder", + // "relationships.isPersonOf": "Authors", + "relationships.isPersonOf": "Авторы", - // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications", + // "relationships.isProjectOf": "Research Projects", + "relationships.isProjectOf": "Научные проекты", - // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", - // TODO New key - Add a translation - "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors", + // "relationships.isPublicationOf": "Publications", + "relationships.isPublicationOf": "Публикации", - // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects", + // "relationships.isPublicationOfJournalIssue": "Articles", + "relationships.isPublicationOfJournalIssue": "Статьи", - // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications", + // "relationships.isSingleJournalOf": "Journal", + "relationships.isSingleJournalOf": "Журнал", - // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", - // TODO New key - Add a translation - "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)", + // "relationships.isSingleVolumeOf": "Journal Volume", + "relationships.isSingleVolumeOf": "Том журнала", - // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", - // TODO New key - Add a translation - "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)", + // "relationships.isVolumeOf": "Journal Volumes", + "relationships.isVolumeOf": "Тома журналов", - // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume", + // "relationships.isVolumeOf.JournalVolume": "Journal Volume", + "relationships.isVolumeOf.JournalVolume": "Том журнала", - // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", - // TODO New key - Add a translation - "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications", + // "relationships.isContributorOf": "Contributors", + "relationships.isContributorOf": "Авторы", - // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", - // TODO New key - Add a translation - "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals", + // "relationships.isContributorOf.OrgUnit": "Contributor (Organizational Unit)", + "relationships.isContributorOf.OrgUnit": "Автор (организационная единица)", - // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", - // TODO New key - Add a translation - "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue", + // "relationships.isContributorOf.Person": "Contributor", + "relationships.isContributorOf.Person": "Автор", - // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", - // TODO New key - Add a translation - "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume", + // "relationships.isFundingAgencyOf.OrgUnit": "Funder", + "relationships.isFundingAgencyOf.OrgUnit": "Финансирующая организация", // "repository.image.logo": "Repository logo", "repository.image.logo": "Логотип репозитория", @@ -7069,9 +6538,6 @@ // "search.filters.applied.f.original_bundle_descriptions": "File description", "search.filters.applied.f.original_bundle_descriptions": "Описание файла", - // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", - // TODO New key - Add a translation - "search.filters.applied.f.has_geospatial_metadata": "Has geographical location", // "search.filters.applied.f.itemtype": "Type", "search.filters.applied.f.itemtype": "Тип", @@ -7121,10 +6587,6 @@ // "search.filters.applied.operator.query": "", "search.filters.applied.operator.query": "", - // "search.filters.applied.f.point": "Coordinates", - // TODO New key - Add a translation - "search.filters.applied.f.point": "Coordinates", - // "search.filters.filter.title.head": "Title", "search.filters.filter.title.head": "Название", @@ -7164,14 +6626,6 @@ // "search.filters.filter.creativeDatePublished.label": "Search date published", "search.filters.filter.creativeDatePublished.label": "Поиск по дате публикации", - // "search.filters.filter.creativeDatePublished.min.label": "Start", - // TODO New key - Add a translation - "search.filters.filter.creativeDatePublished.min.label": "Start", - - // "search.filters.filter.creativeDatePublished.max.label": "End", - // TODO New key - Add a translation - "search.filters.filter.creativeDatePublished.max.label": "End", - // "search.filters.filter.creativeWorkEditor.head": "Editor", "search.filters.filter.creativeWorkEditor.head": "Редактор", @@ -7247,10 +6701,6 @@ // "search.filters.filter.original_bundle_filenames.head": "File name", "search.filters.filter.original_bundle_filenames.head": "Имя файла", - // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", - // TODO New key - Add a translation - "search.filters.filter.has_geospatial_metadata.head": "Has geographical location", - // "search.filters.filter.original_bundle_filenames.placeholder": "File name", "search.filters.filter.original_bundle_filenames.placeholder": "Имя файла", @@ -7338,14 +6788,6 @@ // "search.filters.filter.organizationFoundingDate.label": "Search date founded", "search.filters.filter.organizationFoundingDate.label": "Поиск по дате основания", - // "search.filters.filter.organizationFoundingDate.min.label": "Start", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.min.label": "Start", - - // "search.filters.filter.organizationFoundingDate.max.label": "End", - // TODO New key - Add a translation - "search.filters.filter.organizationFoundingDate.max.label": "End", - // "search.filters.filter.scope.head": "Scope", "search.filters.filter.scope.head": "Область", @@ -7397,18 +6839,6 @@ // "search.filters.filter.supervisedBy.label": "Search Supervised By", "search.filters.filter.supervisedBy.label": "Поиск по контролю", - // "search.filters.filter.access_status.head": "Access type", - // TODO New key - Add a translation - "search.filters.filter.access_status.head": "Access type", - - // "search.filters.filter.access_status.placeholder": "Access type", - // TODO New key - Add a translation - "search.filters.filter.access_status.placeholder": "Access type", - - // "search.filters.filter.access_status.label": "Search by access type", - // TODO New key - Add a translation - "search.filters.filter.access_status.label": "Search by access type", - // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "Выпуск журнала", @@ -7433,14 +6863,6 @@ // "search.filters.has_content_in_original_bundle.false": "No", "search.filters.has_content_in_original_bundle.false": "Нет", - // "search.filters.has_geospatial_metadata.true": "Yes", - // TODO New key - Add a translation - "search.filters.has_geospatial_metadata.true": "Yes", - - // "search.filters.has_geospatial_metadata.false": "No", - // TODO New key - Add a translation - "search.filters.has_geospatial_metadata.false": "No", - // "search.filters.discoverable.true": "No", "search.filters.discoverable.true": "Нет", @@ -7519,10 +6941,6 @@ // "search.results.empty": "Your search returned no results.", "search.results.empty": "По вашему запросу нет результатов.", - // "search.results.geospatial-map.empty": "No results on this page with geospatial locations", - // TODO New key - Add a translation - "search.results.geospatial-map.empty": "No results on this page with geospatial locations", - // "search.results.view-result": "View", "search.results.view-result": "Просмотр", @@ -7580,10 +6998,6 @@ // "search.view-switch.show-list": "Show as list", "search.view-switch.show-list": "Показать в виде списка", - // "search.view-switch.show-geospatialMap": "Show as map", - // TODO New key - Add a translation - "search.view-switch.show-geospatialMap": "Show as map", - // "selectable-list-item-control.deselect": "Deselect item", "selectable-list-item-control.deselect": "Снять выделение с элемента", @@ -7788,10 +7202,6 @@ // "submission.import-external.source.datacite": "DataCite", "submission.import-external.source.datacite": "DataCite", - // "submission.import-external.source.dataciteProject": "DataCite", - // TODO New key - Add a translation - "submission.import-external.source.dataciteProject": "DataCite", - // "submission.import-external.source.doi": "DOI", "submission.import-external.source.doi": "DOI", @@ -7849,38 +7259,6 @@ // "submission.import-external.source.ror": "Research Organization Registry (ROR)", "submission.import-external.source.ror": "Реестр научных организаций (ROR)", - // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", - // TODO New key - Add a translation - "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", - - // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", - // TODO New key - Add a translation - "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", - - // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", - // TODO New key - Add a translation - "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", - - // "submission.import-external.source.openalexPerson": "OpenAlex Search by name", - // TODO New key - Add a translation - "submission.import-external.source.openalexPerson": "OpenAlex Search by name", - - // "submission.import-external.source.openalexJournal": "OpenAlex Journals", - // TODO New key - Add a translation - "submission.import-external.source.openalexJournal": "OpenAlex Journals", - - // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", - // TODO New key - Add a translation - "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", - - // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", - // TODO New key - Add a translation - "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", - - // "submission.import-external.source.openalexFunder": "OpenAlex Funders", - // TODO New key - Add a translation - "submission.import-external.source.openalexFunder": "OpenAlex Funders", - // "submission.import-external.preview.title": "Item Preview", "submission.import-external.preview.title": "Предварительный просмотр элемента", @@ -8130,10 +7508,6 @@ // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Локальные выпуски журналов ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Локальные тома журналов ({{ count }})", @@ -8182,26 +7556,6 @@ // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})", "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Журналы Sherpa по ISSN ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})", - - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})", - // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies", "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Поиск финансирующих агентств", @@ -8232,10 +7586,6 @@ // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Финансирующая организация проекта", - // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project", - // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Поиск...", @@ -8251,10 +7601,6 @@ // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues", "submission.sections.describe.relationship-lookup.title.JournalIssue": "Выпуски журнала", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes", - // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes", "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Тома журнала", @@ -8318,10 +7664,6 @@ // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Выбранные журналы", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume", - // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume", "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Выбранный том журнала", @@ -8412,26 +7754,6 @@ // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Результаты поиска", - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results", - - // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - // TODO New key - Add a translation - "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results", - // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results", "submission.sections.describe.relationship-lookup.selection-tab.title": "Результаты поиска", @@ -8537,10 +7859,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Лицензия Creative Commons", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Переработать", @@ -8706,18 +8024,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Загрузка прошла успешно", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Если отмечено, элемент будет обнаруживаться при поиске/просмотре. Если не отмечено, элемент будет доступен только по прямой ссылке и не появится в поиске/просмотре.", @@ -9006,10 +8312,6 @@ // "subscriptions.tooltip": "Subscribe", "subscriptions.tooltip": "Подписаться", - // "subscriptions.unsubscribe": "Unsubscribe", - // TODO New key - Add a translation - "subscriptions.unsubscribe": "Unsubscribe", - // "subscriptions.modal.title": "Subscriptions", "subscriptions.modal.title": "Подписки", @@ -9082,8 +8384,7 @@ // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", "subscriptions.table.not-available-message": "Подписанный элемент был удалён или у вас нет прав для его просмотра.", - // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.", - // TODO Source message changed - Revise the translation + // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a Community or Collection, use the subscription button on the object's page.", "subscriptions.table.empty.message": "У вас нет подписок. Чтобы подписаться на обновления по электронной почте для сообщества или коллекции, используйте кнопку подписки на странице объекта.", // "thumbnail.default.alt": "Thumbnail Image", @@ -9925,7 +9226,6 @@ "ldn-registered-services.new": "НОВЫЙ", // "ldn-registered-services.new.breadcrumbs": "Registered Services", "ldn-registered-services.new.breadcrumbs": "Зарегистрированные сервисы", - // "ldn-service.overview.table.enabled": "Enabled", "ldn-service.overview.table.enabled": "Включено", // "ldn-service.overview.table.disabled": "Disabled", @@ -9935,6 +9235,7 @@ // "ldn-service.overview.table.clickToDisable": "Click to disable", "ldn-service.overview.table.clickToDisable": "Нажмите, чтобы отключить", + // "ldn-edit-registered-service.title": "Edit Service", "ldn-edit-registered-service.title": "Редактировать сервис", // "ldn-create-service.title": "Create service", @@ -9982,6 +9283,7 @@ // "ldn-service.form.label.placeholder.default-select": "Select a pattern", "ldn-service.form.label.placeholder.default-select": "Выберите шаблон", + // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", "ldn-service.form.pattern.ack-accept.label": "Подтвердить и принять", // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", @@ -9989,6 +9291,7 @@ // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements", "ldn-service.form.pattern.ack-accept.category": "Подтверждения", + // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", "ldn-service.form.pattern.ack-reject.label": "Подтвердить и отклонить", // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", @@ -9996,6 +9299,7 @@ // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-reject.category": "Подтверждения", + // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", "ldn-service.form.pattern.ack-tentative-accept.label": "Подтвердить и предварительно принять", // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", @@ -10010,6 +9314,7 @@ // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", "ldn-service.form.pattern.ack-tentative-reject.category": "Подтверждения", + // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", "ldn-service.form.pattern.announce-endorsement.label": "Объявить об одобрении", // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", @@ -10024,6 +9329,7 @@ // "ldn-service.form.pattern.announce-ingest.category": "Announcements", "ldn-service.form.pattern.announce-ingest.category": "Объявления", + // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", "ldn-service.form.pattern.announce-relationship.label": "Объявить о взаимосвязи", // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", @@ -10031,6 +9337,7 @@ // "ldn-service.form.pattern.announce-relationship.category": "Announcements", "ldn-service.form.pattern.announce-relationship.category": "Объявления", + // "ldn-service.form.pattern.announce-review.label": "Announce Review", "ldn-service.form.pattern.announce-review.label": "Объявить о рецензии", // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", @@ -10038,6 +9345,7 @@ // "ldn-service.form.pattern.announce-review.category": "Announcements", "ldn-service.form.pattern.announce-review.category": "Объявления", + // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", "ldn-service.form.pattern.announce-service-result.label": "Объявить о результате сервиса", // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", @@ -10045,6 +9353,7 @@ // "ldn-service.form.pattern.announce-service-result.category": "Announcements", "ldn-service.form.pattern.announce-service-result.category": "Объявления", + // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", "ldn-service.form.pattern.request-endorsement.label": "Запросить одобрение", // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", @@ -10059,6 +9368,7 @@ // "ldn-service.form.pattern.request-ingest.category": "Requests", "ldn-service.form.pattern.request-ingest.category": "Запросы", + // "ldn-service.form.pattern.request-review.label": "Request Review", "ldn-service.form.pattern.request-review.label": "Запросить рецензию", // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", @@ -10066,6 +9376,7 @@ // "ldn-service.form.pattern.request-review.category": "Requests", "ldn-service.form.pattern.request-review.category": "Запросы", + // "ldn-service.form.pattern.undo-offer.label": "Undo Offer", "ldn-service.form.pattern.undo-offer.label": "Отменить предложение", // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", @@ -10196,10 +9507,6 @@ // "item.page.endorsement": "Endorsement", "item.page.endorsement": "Подтверждение", - // "item.page.places": "Related places", - // TODO New key - Add a translation - "item.page.places": "Related places", - // "item.page.review": "Review", "item.page.review": "Обзор", @@ -10220,15 +9527,15 @@ // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", "quality-assurance.topics.description-with-target": "Ниже вы можете увидеть все темы, полученные из подписок на {{source}} по поводу", + // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", "quality-assurance.events.description": "Ниже список всех предложений по выбранной теме {{topic}}, связанной с {{source}}.", // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", "quality-assurance.events.description-with-topic-and-target": "Ниже список всех предложений по выбранной теме {{topic}}, связанной с {{source}} и ", - // "quality-assurance.event.table.event.message.serviceUrl": "Actor:", - // TODO New key - Add a translation - "quality-assurance.event.table.event.message.serviceUrl": "Actor:", + // "quality-assurance.event.table.event.message.serviceUrl": "Service URL:", + "quality-assurance.event.table.event.message.serviceUrl": "URL услуги:", // "quality-assurance.event.table.event.message.link": "Link:", "quality-assurance.event.table.event.message.link": "Ссылка:", @@ -10323,10 +9630,6 @@ // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", "request-status-alert-box.rejected": "Запрошенный {{ offerType }} для {{ serviceName }} был отклонён.", - // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", - // TODO New key - Add a translation - "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required", - // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", "request-status-alert-box.requested": "Запрошенный {{ offerType }} для {{ serviceName }} находится в ожидании.", @@ -10351,14 +9654,6 @@ // "ldn-service-overview-close-modal": "Close modal", "ldn-service-overview-close-modal": "Закрыть модальное окно", - // "ldn-service-usesActorEmailId": "Requires actor email in notifications", - // TODO New key - Add a translation - "ldn-service-usesActorEmailId": "Requires actor email in notifications", - - // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", - // TODO New key - Add a translation - "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.", - // "a-common-or_statement.label": "Item type is Journal Article or Dataset", "a-common-or_statement.label": "Тип элемента — статья журнала или набор данных", @@ -10374,6 +9669,8 @@ // "doi-filter.label": "DOI filter", "doi-filter.label": "Фильтр DOI", + + // "driver-document-type_condition.label": "Document type equals driver", "driver-document-type_condition.label": "Тип документа равен driver", @@ -10473,6 +9770,7 @@ // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", "admin-notify-logs.NOTIFY.incoming.untrusted": "Сейчас отображаются: Недоверенные уведомления", + // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Недоверенный", @@ -10551,16 +9849,13 @@ // "search.filters.applied.f.notifyRelation": "Notify Relation", "search.filters.applied.f.notifyRelation": "Уведомление о связи", - // "search.filters.applied.f.access_status": "Access type", - // TODO New key - Add a translation - "search.filters.applied.f.access_status": "Access type", - // "search.filters.filter.queue_last_start_time.head": "Last processing time ", "search.filters.filter.queue_last_start_time.head": "Время последней обработки ", // "search.filters.filter.queue_last_start_time.min.label": "Min range", "search.filters.filter.queue_last_start_time.min.label": "Минимальный диапазон", + // "search.filters.filter.queue_last_start_time.max.label": "Max range", "search.filters.filter.queue_last_start_time.max.label": "Максимальный диапазон", @@ -10914,15 +10209,15 @@ // "form.date-picker.placeholder.year": "Year", // TODO New key - Add a translation - "form.date-picker.placeholder.year": "Year", + "form.date-picker.placeholder.year": "Год", // "form.date-picker.placeholder.month": "Month", // TODO New key - Add a translation - "form.date-picker.placeholder.month": "Month", + "form.date-picker.placeholder.month": "Месяц", // "form.date-picker.placeholder.day": "Day", // TODO New key - Add a translation - "form.date-picker.placeholder.day": "Day", + "form.date-picker.placeholder.day": "День", // "item.page.cc.license.title": "Creative Commons license", "item.page.cc.license.title": "Лицензия Creative Commons", @@ -10945,245 +10240,30 @@ // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.", "search-facet-option.update.announcement": "Страница будет перезагружена. Выбран фильтр {{ filter }}.", + // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", // TODO New key - Add a translation - "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.", + "live-region.ordering.instructions": "Нажмите пробел, чтобы изменить порядок {{ itemName }}.", // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // TODO New key - Add a translation - "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + "live-region.ordering.status": "{{ itemName }}, захвачено. Текущая позиция в списке: {{ index }} из {{ length }}. Нажимайте клавиши со стрелками вверх и вниз, чтобы изменить положение, пробел для удаления, Escape для отмены.", // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", // TODO New key - Add a translation - "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.", + "live-region.ordering.moved": "{{ itemName }} перемещен в позицию {{ index }} на {{ length }}. Нажимайте клавиши со стрелками вверх и вниз, чтобы изменить положение, пробел, чтобы опустить, Escape, чтобы отменить.", // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", // TODO New key - Add a translation - "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.", + "live-region.ordering.dropped": "{{ itemName }}, перемещен в позицию {{ index }} длины {{ length }}.", // "dynamic-form-array.sortable-list.label": "Sortable list", // TODO New key - Add a translation - "dynamic-form-array.sortable-list.label": "Sortable list", - - // "external-login.component.or": "or", - // TODO New key - Add a translation - "external-login.component.or": "or", - - // "external-login.confirmation.header": "Information needed to complete the login process", - // TODO New key - Add a translation - "external-login.confirmation.header": "Information needed to complete the login process", - - // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", - // TODO New key - Add a translation - "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.", - - // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", - // TODO New key - Add a translation - "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.", - - // "external-login.confirm-email.header": "Confirm or update email", - // TODO New key - Add a translation - "external-login.confirm-email.header": "Confirm or update email", - - // "external-login.confirmation.email-required": "Email is required.", - // TODO New key - Add a translation - "external-login.confirmation.email-required": "Email is required.", - - // "external-login.confirmation.email-label": "User Email", - // TODO New key - Add a translation - "external-login.confirmation.email-label": "User Email", - - // "external-login.confirmation.email-invalid": "Invalid email format.", - // TODO New key - Add a translation - "external-login.confirmation.email-invalid": "Invalid email format.", - - // "external-login.confirm.button.label": "Confirm this email", - // TODO New key - Add a translation - "external-login.confirm.button.label": "Confirm this email", - - // "external-login.confirm-email-sent.header": "Confirmation email sent", - // TODO New key - Add a translation - "external-login.confirm-email-sent.header": "Confirmation email sent", - - // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", - // TODO New key - Add a translation - "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.", - - // "external-login.provide-email.header": "Provide email", - // TODO New key - Add a translation - "external-login.provide-email.header": "Provide email", - - // "external-login.provide-email.button.label": "Send Verification link", - // TODO New key - Add a translation - "external-login.provide-email.button.label": "Send Verification link", - - // "external-login-validation.review-account-info.header": "Review your account information", - // TODO New key - Add a translation - "external-login-validation.review-account-info.header": "Review your account information", - - // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", - // TODO New key - Add a translation - "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.", - - // "external-login-validation.review-account-info.table.header.information": "Information", - // TODO New key - Add a translation - "external-login-validation.review-account-info.table.header.information": "Information", - - // "external-login-validation.review-account-info.table.header.received-value": "Received value", - // TODO New key - Add a translation - "external-login-validation.review-account-info.table.header.received-value": "Received value", - - // "external-login-validation.review-account-info.table.header.current-value": "Current value", - // TODO New key - Add a translation - "external-login-validation.review-account-info.table.header.current-value": "Current value", - - // "external-login-validation.review-account-info.table.header.action": "Override", - // TODO New key - Add a translation - "external-login-validation.review-account-info.table.header.action": "Override", - - // "external-login-validation.review-account-info.table.row.not-applicable": "N/A", - // TODO New key - Add a translation - "external-login-validation.review-account-info.table.row.not-applicable": "N/A", - - // "on-label": "ON", - // TODO New key - Add a translation - "on-label": "ON", - - // "off-label": "OFF", - // TODO New key - Add a translation - "off-label": "OFF", + "dynamic-form-array.sortable-list.label": "Сортируемый список", - // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", - // TODO New key - Add a translation - "review-account-info.merge-data.notification.success": "Your account information has been updated successfully", - - // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", - // TODO New key - Add a translation - "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information", - - // "review-account-info.alert.error.content": "Something went wrong. Please try again later.", - // TODO New key - Add a translation - "review-account-info.alert.error.content": "Something went wrong. Please try again later.", - - // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", - // TODO New key - Add a translation - "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.", - - // "external-login.error.notification": "There was an error while processing your request. Please try again later.", - // TODO New key - Add a translation - "external-login.error.notification": "There was an error while processing your request. Please try again later.", - - // "external-login.connect-to-existing-account.label": "Connect to an existing user", - // TODO New key - Add a translation - "external-login.connect-to-existing-account.label": "Connect to an existing user", - - // "external-login.modal.label.close": "Close", - // TODO New key - Add a translation - "external-login.modal.label.close": "Close", - - // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", - // TODO New key - Add a translation - "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong", - - // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", - // TODO New key - Add a translation - "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.", - - // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", - // TODO New key - Add a translation - "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.", - - // "external-login-page.orcid-confirmation.firstname": "First name", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.firstname": "First name", - - // "external-login-page.orcid-confirmation.firstname.label": "First name", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.firstname.label": "First name", - - // "external-login-page.orcid-confirmation.lastname": "Last name", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.lastname": "Last name", - - // "external-login-page.orcid-confirmation.lastname.label": "Last name", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.lastname.label": "Last name", - - // "external-login-page.orcid-confirmation.netid": "Account Identifier", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.netid": "Account Identifier", - - // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", - - // "external-login-page.orcid-confirmation.email": "Email", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.email": "Email", - - // "external-login-page.orcid-confirmation.email.label": "Email", - // TODO New key - Add a translation - "external-login-page.orcid-confirmation.email.label": "Email", - - // "search.filters.access_status.open.access": "Open access", - // TODO New key - Add a translation - "search.filters.access_status.open.access": "Open access", - - // "search.filters.access_status.restricted": "Restricted access", - // TODO New key - Add a translation - "search.filters.access_status.restricted": "Restricted access", - - // "search.filters.access_status.embargo": "Embargoed access", - // TODO New key - Add a translation - "search.filters.access_status.embargo": "Embargoed access", - - // "search.filters.access_status.metadata.only": "Metadata only", - // TODO New key - Add a translation - "search.filters.access_status.metadata.only": "Metadata only", - - // "search.filters.access_status.unknown": "Unknown", - // TODO New key - Add a translation - "search.filters.access_status.unknown": "Unknown", - - // "metadata-export-filtered-items.tooltip": "Export report output as CSV", - // TODO New key - Add a translation - "metadata-export-filtered-items.tooltip": "Export report output as CSV", - - // "metadata-export-filtered-items.submit.success": "CSV export succeeded.", - // TODO New key - Add a translation - "metadata-export-filtered-items.submit.success": "CSV export succeeded.", - - // "metadata-export-filtered-items.submit.error": "CSV export failed.", - // TODO New key - Add a translation - "metadata-export-filtered-items.submit.error": "CSV export failed.", - - // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", - // TODO New key - Add a translation - "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.", - - // "embargo.listelement.badge": "Embargo until {{ date }}", - // TODO New key - Add a translation - "embargo.listelement.badge": "Embargo until {{ date }}", - - // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", - // TODO New key - Add a translation - "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported", - - // "file-download-link.request-copy": "Request a copy of ", - // TODO New key - Add a translation - "file-download-link.request-copy": "Request a copy of ", - - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", + // "browse.metadata.srsc.tree.descrption": "Select a subject to add as search filter", + "browse.metadata.srsc.tree.descrption": "Выберите тему для добавления в качестве фильтра поиска", - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", -} \ No newline at end of file +} diff --git a/src/assets/i18n/sr-cyr.json5 b/src/assets/i18n/sr-cyr.json5 index ffe2b5d6876..efeb74806ac 100644 --- a/src/assets/i18n/sr-cyr.json5 +++ b/src/assets/i18n/sr-cyr.json5 @@ -3111,26 +3111,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Грешка при преузимању заједница највишег нивоа", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Морате доделити ову лиценцу да бисте довршили свој поднесак. Ако у овом тренутку нисте у могућности да доделите ову лиценцу, можете да сачувате свој рад и вратите се касније или уклоните поднесак.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9030,10 +9017,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative Commons лиценца", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Рециклажа", @@ -9204,18 +9187,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Отпремање је успешно", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Када је означено, ова ставка ће бити видљива у претрази/прегледу. Када није означено, ставка ће бити доступна само преко директне везе и никада се неће појавити у претрази/прегледу.", @@ -12072,17 +12043,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/sr-lat.json5 b/src/assets/i18n/sr-lat.json5 index ba406a79cd7..8f32d44ecae 100644 --- a/src/assets/i18n/sr-lat.json5 +++ b/src/assets/i18n/sr-lat.json5 @@ -3110,26 +3110,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Greška pri preuzimanju zajednica najvišeg nivoa", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Morate dodeliti ovu licencu da biste dovršili svoj podnesak. Ako u ovom trenutku niste u mogućnosti da dodelite ovu licencu, možete da sačuvate svoj rad i vratite se kasnije ili uklonite podnesak.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9028,10 +9015,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative Commons licenca", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Reciklaža", @@ -9202,18 +9185,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Otpremanje je uspešno", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Kada je označeno, ova stavka će biti vidljiva u pretrazi/pregledu. Kada nije označeno, stavka će biti dostupna samo preko direktne veze i nikada se neće pojaviti u pretrazi/pregledu.", @@ -12069,17 +12040,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/sv.json5 b/src/assets/i18n/sv.json5 index 5eab130fc4c..8bac53d0503 100644 --- a/src/assets/i18n/sv.json5 +++ b/src/assets/i18n/sv.json5 @@ -3255,26 +3255,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Ett fel uppstod när enheter på toppnivå hämtades", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Du måste godkänna dessa villkor för att skutföra registreringen. Om detta inte är möjligt så kan du spara nu och återvända hit senare, eller radera bidraget.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9559,10 +9546,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Creative commons licens", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Återanvänd", @@ -9737,18 +9720,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Uppladdningen lyckades", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "När denna är markerad kommer posten att vara sökbar och visas i listor. I annat fall så kommer den bara att kunna nås med en direktlänk.", @@ -12880,17 +12851,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/sw.json5 b/src/assets/i18n/sw.json5 index d9cdd752e34..2d969c19464 100644 --- a/src/assets/i18n/sw.json5 +++ b/src/assets/i18n/sw.json5 @@ -3847,26 +3847,14 @@ // TODO New key - Add a translation "error.top-level-communities": "Error fetching top-level communities", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -11102,10 +11090,6 @@ // TODO New key - Add a translation "submission.sections.submit.progressbar.CClicense": "Creative commons license", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", // TODO New key - Add a translation "submission.sections.submit.progressbar.describe.recycle": "Recycle", @@ -11326,18 +11310,6 @@ // TODO New key - Add a translation "submission.sections.upload.upload-successful": "Upload successful", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -14558,17 +14530,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file diff --git a/src/assets/i18n/tr.json5 b/src/assets/i18n/tr.json5 index 20f3d365ff4..43781f5a5a9 100644 --- a/src/assets/i18n/tr.json5 +++ b/src/assets/i18n/tr.json5 @@ -3358,26 +3358,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Üst düzey komüniteleri alma hatası", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Gönderinizi tamamlamak için bu lisansı vermelisiniz. Bu lisansı şu anda veremiyorsanız, çalışmanızı kaydedebilir ve daha sonra geri gönderebilir veya gönderimi kaldırabilirsiniz.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Bu giriş mevcut modelle sınırlandırılmıştır.: {{ pattern }}.", @@ -9703,10 +9690,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Yaratıcı Ortak Lisansları", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Geri Dönüştür", @@ -9898,18 +9881,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Yükleme Başarılı", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13074,17 +13045,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/uk.json5 b/src/assets/i18n/uk.json5 index 5d0e7da0639..58c08a82a43 100644 --- a/src/assets/i18n/uk.json5 +++ b/src/assets/i18n/uk.json5 @@ -3378,26 +3378,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Виникла помилка при отриманні фонду верхнього рівня", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Ви повинні дати згоду на умови ліцензії, щоб завершити submission. Якщо ви не можете погодитись на умови ліцензії на даний момент, ви можете зберегти свою роботу та повернутися пізніше або видалити submission.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Вхідна інформація обмежена поточним шаблоном: {{ pattern }}.", @@ -9733,10 +9720,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "СС ліцензії", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Переробити", @@ -9928,18 +9911,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Успішно завантажено", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", // TODO New key - Add a translation "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", @@ -13096,17 +13067,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - -} \ No newline at end of file +} diff --git a/src/assets/i18n/vi.json5 b/src/assets/i18n/vi.json5 index e26476768ca..6ac69abcb3c 100644 --- a/src/assets/i18n/vi.json5 +++ b/src/assets/i18n/vi.json5 @@ -3142,26 +3142,13 @@ // "error.top-level-communities": "Error fetching top-level communities", "error.top-level-communities": "Lỗi tìm kiếm đơn vị lớn", - // "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - // TODO New key - Add a translation - "error.validation.license.required": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", + "error.validation.license.notgranted": "Bạn phải đồng ý với giấy phép này để hoàn thành tài liệu biên mục của mình. Nếu hiện tại bạn không thể đồng ý giấy phép này bạn có thể lưu tài liệu biên mục của mình và quay lại sau hoặc xóa nội dung đã biên mục.", // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", // TODO New key - Add a translation "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.", - // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - // TODO New key - Add a translation - "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.", - - // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - // TODO New key - Add a translation - "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - - // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // TODO New key - Add a translation - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", - // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", // TODO New key - Add a translation "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", @@ -9153,10 +9140,6 @@ // "submission.sections.submit.progressbar.CClicense": "Creative commons license", "submission.sections.submit.progressbar.CClicense": "Bằng sáng chế", - // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // TODO New key - Add a translation - "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url", - // "submission.sections.submit.progressbar.describe.recycle": "Recycle", "submission.sections.submit.progressbar.describe.recycle": "Tái chế", @@ -9328,18 +9311,6 @@ // "submission.sections.upload.upload-successful": "Upload successful", "submission.sections.upload.upload-successful": "Tải lên thành công", - // "submission.sections.custom-url.label.previous-urls": "Previous Urls", - // TODO New key - Add a translation - "submission.sections.custom-url.label.previous-urls": "Previous Urls", - - // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - // TODO New key - Add a translation - "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ", - - // "submission.sections.custom-url.url.placeholder": "Custom URL", - // TODO New key - Add a translation - "submission.sections.custom-url.url.placeholder": "Custom URL", - // "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.", "submission.sections.accesses.form.discoverable-description": "Khi được chọn biểu ghi này sẽ có thể được tìm thấy trong các chức năng tìm kiếm/duyệt. Khi bỏ chọn biểu ghi sẽ chỉ có sẵn qua đường dẫn trực tiếp và sẽ không bao giờ xuất hiện trong tìm kiếm/duyệt.", @@ -12295,17 +12266,5 @@ // TODO New key - Add a translation "file-download-link.request-copy": "Request a copy of ", - // "item.preview.organization.url": "URL", - // TODO New key - Add a translation - "item.preview.organization.url": "URL", - - // "item.preview.organization.address.addressLocality": "City", - // TODO New key - Add a translation - "item.preview.organization.address.addressLocality": "City", - - // "item.preview.organization.alternateName": "Alternative name", - // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", - } \ No newline at end of file From 71fd35c50651320fdf0f64bc01e45ee9c4fc3564 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Thu, 29 Jan 2026 17:52:23 +0100 Subject: [PATCH 11/17] [DURACOM-413] add new findByIdOrCustomUrl method to item-data.service, adapt code to use new method --- .../breadcrumbs/dso-breadcrumb.resolver.ts | 5 ++++- src/app/core/data/item-data.service.spec.ts | 2 +- src/app/core/data/item-data.service.ts | 20 +++++++++++++++++-- .../item-page-delete.guard.spec.ts | 2 +- ...tem-page-edit-authorizations.guard.spec.ts | 2 +- .../item-page-move.guard.spec.ts | 2 +- .../item-page-private.guard.spec.ts | 2 +- src/app/item-page/item-page.resolver.spec.ts | 4 ++-- src/app/item-page/item-page.resolver.ts | 2 +- src/app/item-page/item.resolver.ts | 2 +- 10 files changed, 31 insertions(+), 12 deletions(-) diff --git a/src/app/core/breadcrumbs/dso-breadcrumb.resolver.ts b/src/app/core/breadcrumbs/dso-breadcrumb.resolver.ts index 250f65aa54b..ad3aec4eca6 100644 --- a/src/app/core/breadcrumbs/dso-breadcrumb.resolver.ts +++ b/src/app/core/breadcrumbs/dso-breadcrumb.resolver.ts @@ -7,6 +7,7 @@ import { Observable } from 'rxjs'; import { map } from 'rxjs/operators'; import { IdentifiableDataService } from '../data/base/identifiable-data.service'; +import { ItemDataService } from '../data/item-data.service'; import { getDSORoute } from '../router/utils/dso-route.utils'; import { DSpaceObject } from '../shared/dspace-object.model'; import { FollowLinkConfig } from '../shared/follow-link-config.model'; @@ -55,7 +56,9 @@ export const DSOBreadcrumbResolverByUuid: (route: ActivatedRouteSnapshot, state: dataService: IdentifiableDataService, ...linksToFollow: FollowLinkConfig[] ): Observable> => { - return dataService.findById(uuid, true, false, ...linksToFollow).pipe( + const isItemDataService = dataService instanceof ItemDataService; + const findMethod = isItemDataService ? dataService.findByIdOrCustomUrl.bind(dataService) : dataService.findById.bind(dataService); + return findMethod(uuid, true, false, ...linksToFollow).pipe( getFirstCompletedRemoteData(), getRemoteDataPayload(), map((object: DSpaceObject) => { diff --git a/src/app/core/data/item-data.service.spec.ts b/src/app/core/data/item-data.service.spec.ts index a970a928566..546c469c5fc 100644 --- a/src/app/core/data/item-data.service.spec.ts +++ b/src/app/core/data/item-data.service.spec.ts @@ -292,7 +292,7 @@ describe('ItemDataService', () => { it('should call findByCustomUrl when given a non-UUID id', () => { const nonUuid = 'custom-url'; - itemDataService.findById(nonUuid).subscribe(); + itemDataService.findByIdOrCustomUrl(nonUuid).subscribe(); expect(itemDataService.findByCustomUrl).toHaveBeenCalledWith(nonUuid, true, true, []); expect(itemDataService.findByHref).not.toHaveBeenCalled(); diff --git a/src/app/core/data/item-data.service.ts b/src/app/core/data/item-data.service.ts index c20dc0a1834..dab0084574f 100644 --- a/src/app/core/data/item-data.service.ts +++ b/src/app/core/data/item-data.service.ts @@ -472,10 +472,24 @@ export abstract class BaseItemDataService extends IdentifiableDataService * {@link HALLink}s should be automatically resolved */ public findById(id: string, useCachedVersionIfAvailable = true, reRequestOnStale = true, ...linksToFollow: FollowLinkConfig[]): Observable> { + const href$ = this.getIDHrefObs(encodeURIComponent(id), ...linksToFollow); + return this.findByHref(href$, useCachedVersionIfAvailable, reRequestOnStale, ...linksToFollow); + } + /** + * Returns an observable of {@link RemoteData} of an object, based on its ID or custom URL if the parameter is not a valid id/uuid, with a list of + * {@link FollowLinkConfig}, to automatically resolve {@link HALLink}s of the object + * @param id ID of object we want to retrieve + * @param useCachedVersionIfAvailable If this is true, the request will only be sent if there's + * no valid cached version. Defaults to true + * @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 + */ + public findByIdOrCustomUrl(id: string, useCachedVersionIfAvailable = true, reRequestOnStale = true, ...linksToFollow: FollowLinkConfig[]): Observable> { if (uuidValidate(id)) { - const href$ = this.getIDHrefObs(encodeURIComponent(id), ...linksToFollow); - return this.findByHref(href$, useCachedVersionIfAvailable, reRequestOnStale, ...linksToFollow); + return this.findById(id, useCachedVersionIfAvailable, reRequestOnStale, ...linksToFollow); } else { return this.findByCustomUrl(id, useCachedVersionIfAvailable, reRequestOnStale, linksToFollow); } @@ -483,6 +497,8 @@ export abstract class BaseItemDataService extends IdentifiableDataService } + + /** * A service for CRUD operations on Items */ diff --git a/src/app/item-page/edit-item-page/item-page-delete.guard.spec.ts b/src/app/item-page/edit-item-page/item-page-delete.guard.spec.ts index fd98e44ac54..595e4642346 100644 --- a/src/app/item-page/edit-item-page/item-page-delete.guard.spec.ts +++ b/src/app/item-page/edit-item-page/item-page-delete.guard.spec.ts @@ -61,7 +61,7 @@ describe('itemPageDeleteGuard', () => { item = new Item(); item.uuid = uuid; item._links = { self: { href: itemSelfLink } } as any; - itemService = jasmine.createSpyObj('itemService', { findById: createSuccessfulRemoteDataObject$(item) }); + itemService = jasmine.createSpyObj('itemService', { findByIdOrCustomUrl: createSuccessfulRemoteDataObject$(item) }); TestBed.configureTestingModule({ providers: [ diff --git a/src/app/item-page/edit-item-page/item-page-edit-authorizations.guard.spec.ts b/src/app/item-page/edit-item-page/item-page-edit-authorizations.guard.spec.ts index d9f9c51b91f..d74bd213545 100644 --- a/src/app/item-page/edit-item-page/item-page-edit-authorizations.guard.spec.ts +++ b/src/app/item-page/edit-item-page/item-page-edit-authorizations.guard.spec.ts @@ -61,7 +61,7 @@ describe('itemPageEditAuthorizationsGuard', () => { item = new Item(); item.uuid = uuid; item._links = { self: { href: itemSelfLink } } as any; - itemService = jasmine.createSpyObj('itemService', { findById: createSuccessfulRemoteDataObject$(item) }); + itemService = jasmine.createSpyObj('itemService', { findByIdOrCustomUrl: createSuccessfulRemoteDataObject$(item) }); TestBed.configureTestingModule({ providers: [ diff --git a/src/app/item-page/edit-item-page/item-page-move.guard.spec.ts b/src/app/item-page/edit-item-page/item-page-move.guard.spec.ts index 9891aed631d..bba9cc0c8cd 100644 --- a/src/app/item-page/edit-item-page/item-page-move.guard.spec.ts +++ b/src/app/item-page/edit-item-page/item-page-move.guard.spec.ts @@ -61,7 +61,7 @@ describe('itemPageMoveGuard', () => { item = new Item(); item.uuid = uuid; item._links = { self: { href: itemSelfLink } } as any; - itemService = jasmine.createSpyObj('itemService', { findById: createSuccessfulRemoteDataObject$(item) }); + itemService = jasmine.createSpyObj('itemService', { findByIdOrCustomUrl: createSuccessfulRemoteDataObject$(item) }); TestBed.configureTestingModule({ providers: [ diff --git a/src/app/item-page/edit-item-page/item-page-private.guard.spec.ts b/src/app/item-page/edit-item-page/item-page-private.guard.spec.ts index eb6fec114ba..11d7782d0a0 100644 --- a/src/app/item-page/edit-item-page/item-page-private.guard.spec.ts +++ b/src/app/item-page/edit-item-page/item-page-private.guard.spec.ts @@ -61,7 +61,7 @@ describe('itemPagePrivateGuard', () => { item = new Item(); item.uuid = uuid; item._links = { self: { href: itemSelfLink } } as any; - itemService = jasmine.createSpyObj('itemService', { findById: createSuccessfulRemoteDataObject$(item) }); + itemService = jasmine.createSpyObj('itemService', { findByIdOrCustomUrl: createSuccessfulRemoteDataObject$(item) }); TestBed.configureTestingModule({ providers: [ diff --git a/src/app/item-page/item-page.resolver.spec.ts b/src/app/item-page/item-page.resolver.spec.ts index 829ca276fca..35746dcffd9 100644 --- a/src/app/item-page/item-page.resolver.spec.ts +++ b/src/app/item-page/item-page.resolver.spec.ts @@ -41,7 +41,7 @@ describe('itemPageResolver', () => { }, }); itemService = { - findById: (_id: string) => createSuccessfulRemoteDataObject$(item), + findByIdOrCustomUrl: (_id: string) => createSuccessfulRemoteDataObject$(item), }; store = jasmine.createSpyObj('store', { dispatch: {}, @@ -130,7 +130,7 @@ describe('itemPageResolver', () => { }, }); itemService = { - findById: (_id: string) => createSuccessfulRemoteDataObject$(item), + findByIdOrCustomUrl: (_id: string) => createSuccessfulRemoteDataObject$(item), }; store = jasmine.createSpyObj('store', { dispatch: {}, diff --git a/src/app/item-page/item-page.resolver.ts b/src/app/item-page/item-page.resolver.ts index 3fe2ca7d02a..83647fe8ed6 100644 --- a/src/app/item-page/item-page.resolver.ts +++ b/src/app/item-page/item-page.resolver.ts @@ -42,7 +42,7 @@ export const itemPageResolver: ResolveFn> = ( store: Store = inject(Store), authService: AuthService = inject(AuthService), ): Observable> => { - const itemRD$ = itemService.findById( + const itemRD$ = itemService.findByIdOrCustomUrl( route.params.id, true, false, diff --git a/src/app/item-page/item.resolver.ts b/src/app/item-page/item.resolver.ts index 78e6d2cbb7f..e4ce90605e2 100644 --- a/src/app/item-page/item.resolver.ts +++ b/src/app/item-page/item.resolver.ts @@ -23,7 +23,7 @@ export const itemResolver: ResolveFn> = ( itemService: ItemDataService = inject(ItemDataService), store: Store = inject(Store), ): Observable> => { - const itemRD$ = itemService.findById( + const itemRD$ = itemService.findByIdOrCustomUrl( route.params.id, true, false, From 49bd3c328d3bb225c3c2f68c69c91cbc8b7ae488 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Thu, 29 Jan 2026 17:55:48 +0100 Subject: [PATCH 12/17] [DURACOM-413] adapt findByCustomUrl description --- src/app/core/data/item-data.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/core/data/item-data.service.ts b/src/app/core/data/item-data.service.ts index dab0084574f..86f51366c25 100644 --- a/src/app/core/data/item-data.service.ts +++ b/src/app/core/data/item-data.service.ts @@ -431,9 +431,9 @@ export abstract class BaseItemDataService extends IdentifiableDataService } /** - * Returns an observable of {@link RemoteData} of an object, based on its CustomURL or ID, with a list of + * Returns an observable of {@link RemoteData} of an object, based on its custom URL, with a list of * {@link FollowLinkConfig}, to automatically resolve {@link HALLink}s of the object - * @param id CustomUrl or UUID of object we want to retrieve + * @param id custom URL of object we want to retrieve * @param useCachedVersionIfAvailable If this is true, the request will only be sent if there's * no valid cached version. Defaults to true * @param reRequestOnStale Whether or not the request should automatically be re- From ea0abcf3e9947fb94c37ac71b14ad3c1267a64a2 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Mon, 2 Feb 2026 12:58:46 +0100 Subject: [PATCH 13/17] [DURACOM-413] fix custom url issues with signposting, version and subPath handling --- .../object-audit-logs.component.spec.ts | 6 +- .../object-audit-logs.component.ts | 7 +- .../item-page-delete.guard.spec.ts | 2 + ...tem-page-edit-authorizations.guard.spec.ts | 2 + .../item-page-move.guard.spec.ts | 2 + .../item-page-private.guard.spec.ts | 2 + .../full/full-item-page.component.spec.ts | 3 + src/app/item-page/item-page-routes.ts | 26 +++--- src/app/item-page/item-page.resolver.spec.ts | 45 ++++++++++- src/app/item-page/item-page.resolver.ts | 26 ++++-- .../simple/item-page.component.spec.ts | 13 ++- .../item-page/simple/item-page.component.ts | 62 +++++++-------- .../signposting-links.resolver.spec.ts | 79 +++++++++++++++++++ .../signposting-links.resolver.ts | 47 +++++++++++ src/assets/i18n/en.json5 | 2 +- 15 files changed, 259 insertions(+), 65 deletions(-) create mode 100644 src/app/item-page/simple/link-resolver/signposting-links.resolver.spec.ts create mode 100644 src/app/item-page/simple/link-resolver/signposting-links.resolver.ts diff --git a/src/app/audit-page/object-audit-overview/object-audit-logs.component.spec.ts b/src/app/audit-page/object-audit-overview/object-audit-logs.component.spec.ts index 9171be3e02a..9053f631c9f 100644 --- a/src/app/audit-page/object-audit-overview/object-audit-logs.component.spec.ts +++ b/src/app/audit-page/object-audit-overview/object-audit-logs.component.spec.ts @@ -60,9 +60,9 @@ describe('ObjectAuditLogsComponent', () => { { findOwningCollectionFor: createSuccessfulRemoteDataObject$(createPaginatedList([{ id : 'collectionId' }])) }, ); activatedRoute = new MockActivatedRoute({ objectId: mockItemId }); - activatedRoute.paramMap = of({ - get: () => mockItemId, - }); + activatedRoute.data = of({ dso: { + payload: mockItem, + } }); locationStub = jasmine.createSpyObj('location', { back: jasmine.createSpy('back'), }); diff --git a/src/app/audit-page/object-audit-overview/object-audit-logs.component.ts b/src/app/audit-page/object-audit-overview/object-audit-logs.component.ts index c09ca7f4f18..864b49d0ec6 100644 --- a/src/app/audit-page/object-audit-overview/object-audit-logs.component.ts +++ b/src/app/audit-page/object-audit-overview/object-audit-logs.component.ts @@ -8,7 +8,7 @@ import { } from '@angular/core'; import { ActivatedRoute, - ParamMap, + Data, Router, RouterLink, } from '@angular/router'; @@ -111,9 +111,8 @@ export class ObjectAuditLogsComponent implements OnInit { ) {} ngOnInit(): void { - this.objectId$ = this.route.paramMap.pipe( - map((paramMap: ParamMap) => paramMap.get('id')), - switchMap((id: string) => this.dSpaceObjectDataService.findById(id, true, true)), + this.objectId$ = this.route.data.pipe( + switchMap((data: Data) => this.dSpaceObjectDataService.findById(data.dso.payload.id, true, true)), getFirstSucceededRemoteDataPayload(), tap((object) => { this.objectRoute = getDSORoute(object); diff --git a/src/app/item-page/edit-item-page/item-page-delete.guard.spec.ts b/src/app/item-page/edit-item-page/item-page-delete.guard.spec.ts index 595e4642346..3ca58c92734 100644 --- a/src/app/item-page/edit-item-page/item-page-delete.guard.spec.ts +++ b/src/app/item-page/edit-item-page/item-page-delete.guard.spec.ts @@ -8,6 +8,7 @@ import { AuthorizationDataService } from '@dspace/core/data/feature-authorizatio import { FeatureID } from '@dspace/core/data/feature-authorization/feature-id'; import { ItemDataService } from '@dspace/core/data/item-data.service'; import { APP_DATA_SERVICES_MAP } from '@dspace/core/data-services-map-type'; +import { HardRedirectService } from '@dspace/core/services/hard-redirect.service'; import { Item } from '@dspace/core/shared/item.model'; import { getMockTranslateService } from '@dspace/core/testing/translate.service.mock'; import { createSuccessfulRemoteDataObject$ } from '@dspace/core/utilities/remote-data.utils'; @@ -72,6 +73,7 @@ describe('itemPageDeleteGuard', () => { { provide: APP_DATA_SERVICES_MAP, useValue: {} }, { provide: TranslateService, useValue: getMockTranslateService() }, { provide: ItemDataService, useValue: itemService }, + { provide: HardRedirectService, useValue: {} }, ], }); }); diff --git a/src/app/item-page/edit-item-page/item-page-edit-authorizations.guard.spec.ts b/src/app/item-page/edit-item-page/item-page-edit-authorizations.guard.spec.ts index d74bd213545..b381aa64d3d 100644 --- a/src/app/item-page/edit-item-page/item-page-edit-authorizations.guard.spec.ts +++ b/src/app/item-page/edit-item-page/item-page-edit-authorizations.guard.spec.ts @@ -8,6 +8,7 @@ import { AuthorizationDataService } from '@dspace/core/data/feature-authorizatio import { FeatureID } from '@dspace/core/data/feature-authorization/feature-id'; import { ItemDataService } from '@dspace/core/data/item-data.service'; import { APP_DATA_SERVICES_MAP } from '@dspace/core/data-services-map-type'; +import { HardRedirectService } from '@dspace/core/services/hard-redirect.service'; import { Item } from '@dspace/core/shared/item.model'; import { getMockTranslateService } from '@dspace/core/testing/translate.service.mock'; import { createSuccessfulRemoteDataObject$ } from '@dspace/core/utilities/remote-data.utils'; @@ -72,6 +73,7 @@ describe('itemPageEditAuthorizationsGuard', () => { { provide: APP_DATA_SERVICES_MAP, useValue: {} }, { provide: TranslateService, useValue: getMockTranslateService() }, { provide: ItemDataService, useValue: itemService }, + { provide: HardRedirectService, useValue: {} }, ], }); }); diff --git a/src/app/item-page/edit-item-page/item-page-move.guard.spec.ts b/src/app/item-page/edit-item-page/item-page-move.guard.spec.ts index bba9cc0c8cd..811812cc32e 100644 --- a/src/app/item-page/edit-item-page/item-page-move.guard.spec.ts +++ b/src/app/item-page/edit-item-page/item-page-move.guard.spec.ts @@ -8,6 +8,7 @@ import { AuthorizationDataService } from '@dspace/core/data/feature-authorizatio import { FeatureID } from '@dspace/core/data/feature-authorization/feature-id'; import { ItemDataService } from '@dspace/core/data/item-data.service'; import { APP_DATA_SERVICES_MAP } from '@dspace/core/data-services-map-type'; +import { HardRedirectService } from '@dspace/core/services/hard-redirect.service'; import { Item } from '@dspace/core/shared/item.model'; import { getMockTranslateService } from '@dspace/core/testing/translate.service.mock'; import { createSuccessfulRemoteDataObject$ } from '@dspace/core/utilities/remote-data.utils'; @@ -72,6 +73,7 @@ describe('itemPageMoveGuard', () => { { provide: APP_DATA_SERVICES_MAP, useValue: {} }, { provide: TranslateService, useValue: getMockTranslateService() }, { provide: ItemDataService, useValue: itemService }, + { provide: HardRedirectService, useValue: {} }, ], }); }); diff --git a/src/app/item-page/edit-item-page/item-page-private.guard.spec.ts b/src/app/item-page/edit-item-page/item-page-private.guard.spec.ts index 11d7782d0a0..112eb0992c3 100644 --- a/src/app/item-page/edit-item-page/item-page-private.guard.spec.ts +++ b/src/app/item-page/edit-item-page/item-page-private.guard.spec.ts @@ -8,6 +8,7 @@ import { AuthorizationDataService } from '@dspace/core/data/feature-authorizatio import { FeatureID } from '@dspace/core/data/feature-authorization/feature-id'; import { ItemDataService } from '@dspace/core/data/item-data.service'; import { APP_DATA_SERVICES_MAP } from '@dspace/core/data-services-map-type'; +import { HardRedirectService } from '@dspace/core/services/hard-redirect.service'; import { Item } from '@dspace/core/shared/item.model'; import { getMockTranslateService } from '@dspace/core/testing/translate.service.mock'; import { createSuccessfulRemoteDataObject$ } from '@dspace/core/utilities/remote-data.utils'; @@ -72,6 +73,7 @@ describe('itemPagePrivateGuard', () => { { provide: APP_DATA_SERVICES_MAP, useValue: {} }, { provide: TranslateService, useValue: getMockTranslateService() }, { provide: ItemDataService, useValue: itemService }, + { provide: HardRedirectService, useValue: {} }, ], }); }); diff --git a/src/app/item-page/full/full-item-page.component.spec.ts b/src/app/item-page/full/full-item-page.component.spec.ts index 9d6fa259736..2b7a0e0a0b5 100644 --- a/src/app/item-page/full/full-item-page.component.spec.ts +++ b/src/app/item-page/full/full-item-page.component.spec.ts @@ -19,6 +19,7 @@ import { ItemDataService } from '@dspace/core/data/item-data.service'; import { RemoteData } from '@dspace/core/data/remote-data'; import { SignpostingDataService } from '@dspace/core/data/signposting-data.service'; import { HeadTagService } from '@dspace/core/metadata/head-tag.service'; +import { HardRedirectService } from '@dspace/core/services/hard-redirect.service'; import { LinkHeadService } from '@dspace/core/services/link-head.service'; import { ServerResponseService } from '@dspace/core/services/server-response.service'; import { Item } from '@dspace/core/shared/item.model'; @@ -101,6 +102,7 @@ describe('FullItemPageComponent', () => { beforeEach(waitForAsync(() => { routeData = { dso: createSuccessfulRemoteDataObject(mockItem), + links: [mocklink, mocklink2], }; routeStub = Object.assign(new ActivatedRouteStub(), { @@ -150,6 +152,7 @@ describe('FullItemPageComponent', () => { { provide: NotifyInfoService, useValue: notifyInfoService }, { provide: PLATFORM_ID, useValue: 'server' }, { provide: ThemeService, useValue: getMockThemeService() }, + { provide: HardRedirectService, useValue: {} }, ], schemas: [NO_ERRORS_SCHEMA], }) diff --git a/src/app/item-page/item-page-routes.ts b/src/app/item-page/item-page-routes.ts index 09a45618962..be87323890a 100644 --- a/src/app/item-page/item-page-routes.ts +++ b/src/app/item-page/item-page-routes.ts @@ -21,17 +21,31 @@ import { } from './item-page-routing-paths'; import { OrcidPageComponent } from './orcid-page/orcid-page.component'; import { orcidPageGuard } from './orcid-page/orcid-page.guard'; +import { signpostingLinksResolver } from './simple/link-resolver/signposting-links.resolver'; import { ThemedItemPageComponent } from './simple/themed-item-page.component'; import { versionResolver } from './version-page/version.resolver'; import { VersionPageComponent } from './version-page/version-page/version-page.component'; export const ROUTES: Route[] = [ + { + path: 'version', + children: [ + { + path: ':id', + component: VersionPageComponent, + resolve: { + dso: versionResolver, + }, + }, + ], + }, { path: ':id', resolve: { dso: itemPageResolver, itemRequest: accessTokenResolver, breadcrumb: itemBreadcrumbResolver, + links: signpostingLinksResolver, }, runGuardsAndResolvers: 'always', children: [ @@ -92,16 +106,4 @@ export const ROUTES: Route[] = [ }, ], }, - { - path: 'version', - children: [ - { - path: ':id', - component: VersionPageComponent, - resolve: { - dso: versionResolver, - }, - }, - ], - }, ]; diff --git a/src/app/item-page/item-page.resolver.spec.ts b/src/app/item-page/item-page.resolver.spec.ts index 35746dcffd9..0d2132239f6 100644 --- a/src/app/item-page/item-page.resolver.spec.ts +++ b/src/app/item-page/item-page.resolver.spec.ts @@ -1,8 +1,10 @@ +import { PLATFORM_ID } from '@angular/core'; import { TestBed } from '@angular/core/testing'; import { Router, RouterModule, } from '@angular/router'; +import { HardRedirectService } from '@dspace/core/services/hard-redirect.service'; import { DSpaceObject } from '@dspace/core/shared/dspace-object.model'; import { MetadataValueFilter } from '@dspace/core/shared/metadata.models'; import { AuthServiceStub } from '@dspace/core/testing/auth-service.stub'; @@ -14,6 +16,10 @@ import { itemPageResolver } from './item-page.resolver'; describe('itemPageResolver', () => { beforeEach(() => { TestBed.configureTestingModule({ + providers: [ + { provide: PLATFORM_ID, useValue: 'browser' }, + { provide: HardRedirectService, useValue: {} }, + ], imports: [RouterModule.forRoot([{ path: 'entities/:entity-type/:id', component: {} as any, @@ -27,6 +33,8 @@ describe('itemPageResolver', () => { let store: any; let router: Router; let authService: AuthServiceStub; + let platformId: any; + let hardRedirectService: any; const uuid = '1234-65487-12354-1235'; let item: DSpaceObject; @@ -34,6 +42,10 @@ describe('itemPageResolver', () => { function runTestsWithEntityType(entityType: string) { beforeEach(() => { router = TestBed.inject(Router); + platformId = TestBed.inject(PLATFORM_ID); + hardRedirectService = jasmine.createSpyObj('hardRedirectService', { + redirect: {}, + }); item = Object.assign(new DSpaceObject(), { uuid: uuid, firstMetadataValue(_keyOrKeys: string | string[], _valueFilter?: MetadataValueFilter): string { @@ -60,6 +72,8 @@ describe('itemPageResolver', () => { itemService, store, authService, + platformId, + hardRedirectService, ).pipe(first()) .subscribe( () => { @@ -80,6 +94,8 @@ describe('itemPageResolver', () => { itemService, store, authService, + platformId, + hardRedirectService, ).pipe(first()) .subscribe( () => { @@ -111,14 +127,21 @@ describe('itemPageResolver', () => { let store: any; let router: Router; let authService: AuthServiceStub; + let platformId: any; + let hardRedirectService: any; const uuid = '1234-65487-12354-1235'; let item: DSpaceObject; beforeEach(() => { router = TestBed.inject(Router); + platformId = TestBed.inject(PLATFORM_ID); + hardRedirectService = jasmine.createSpyObj('hardRedirectService', { + redirect: {}, + }); item = Object.assign(new DSpaceObject(), { uuid: uuid, + id: uuid, firstMetadataValue(_keyOrKeys: string | string[], _valueFilter?: MetadataValueFilter): string { return _keyOrKeys === 'dspace.entity.type' ? 'person' : customUrl; }, @@ -145,7 +168,7 @@ describe('itemPageResolver', () => { const route = { params: { id: uuid } } as any; const state = { url: `/entities/person/${uuid}` } as any; - resolver(route, state, router, itemService, store, authService) + resolver(route, state, router, itemService, store, authService, platformId, hardRedirectService) .pipe(first()) .subscribe((rd: any) => { const expectedUrl = `/entities/person/${customUrl}`; @@ -160,7 +183,7 @@ describe('itemPageResolver', () => { const route = { params: { id: customUrl } } as any; const state = { url: `/entities/person/${customUrl}` } as any; - resolver(route, state, router, itemService, store, authService) + resolver(route, state, router, itemService, store, authService, platformId, hardRedirectService) .pipe(first()) .subscribe((rd: any) => { expect(router.navigateByUrl).not.toHaveBeenCalled(); @@ -168,19 +191,33 @@ describe('itemPageResolver', () => { }); }); - it('should replace dspace.customurl if the current route is an administrative one', (done) => { + it('should replace dspace.customurl if the current route is a sub path (/full excluded)', (done) => { spyOn(router, 'navigateByUrl').and.callThrough(); const route = { params: { id: customUrl } } as any; const state = { url: `/entities/person/${customUrl}/edit` } as any; - resolver(route, state, router, itemService, store, authService) + resolver(route, state, router, itemService, store, authService, platformId, hardRedirectService) .pipe(first()) .subscribe(() => { expect(router.navigateByUrl).toHaveBeenCalledWith(`/entities/person/${uuid}/edit`); done(); }); }); + + it('should not replace dspace.customurl if the current sub path is /full', (done) => { + spyOn(router, 'navigateByUrl').and.callThrough(); + + const route = { params: { id: customUrl } } as any; + const state = { url: `/entities/person/${customUrl}/full` } as any; + + resolver(route, state, router, itemService, store, authService, platformId, hardRedirectService) + .pipe(first()) + .subscribe(() => { + expect(router.navigateByUrl).not.toHaveBeenCalled();; + done(); + }); + }); }); }); diff --git a/src/app/item-page/item-page.resolver.ts b/src/app/item-page/item-page.resolver.ts index 83647fe8ed6..1c3ebbd56da 100644 --- a/src/app/item-page/item-page.resolver.ts +++ b/src/app/item-page/item-page.resolver.ts @@ -1,4 +1,8 @@ -import { inject } from '@angular/core'; +import { isPlatformServer } from '@angular/common'; +import { + inject, + PLATFORM_ID, +} from '@angular/core'; import { ActivatedRouteSnapshot, ResolveFn, @@ -10,6 +14,7 @@ import { ItemDataService } from '@dspace/core/data/item-data.service'; import { RemoteData } from '@dspace/core/data/remote-data'; import { ResolvedAction } from '@dspace/core/resolving/resolver.actions'; import { getItemPageRoute } from '@dspace/core/router/utils/dso-route.utils'; +import { HardRedirectService } from '@dspace/core/services/hard-redirect.service'; import { redirectOn4xx } from '@dspace/core/shared/authorized.operators'; import { getItemPageLinksToFollow, @@ -41,6 +46,8 @@ export const itemPageResolver: ResolveFn> = ( itemService: ItemDataService = inject(ItemDataService), store: Store = inject(Store), authService: AuthService = inject(AuthService), + platformId: any = inject(PLATFORM_ID), + hardRedirectService: HardRedirectService = inject(HardRedirectService), ): Observable> => { const itemRD$ = itemService.findByIdOrCustomUrl( route.params.id, @@ -59,15 +66,16 @@ export const itemPageResolver: ResolveFn> = ( return itemRD$.pipe( map((rd: RemoteData) => { if (rd.hasSucceeded && hasValue(rd.payload)) { - const isItemEditPage = state.url.includes('/edit') || state.url.includes('/bitstreams'); - let itemRoute = isItemEditPage ? state.url : router.parseUrl(getItemPageRoute(rd.payload)).toString(); + let itemRoute; if (hasValue(rd.payload.metadata) && rd.payload.hasMetadata('dspace.customurl')) { const customUrl = rd.payload.firstMetadataValue('dspace.customurl'); + const isSubPath = !(state.url.endsWith(customUrl) || state.url.endsWith(rd.payload.id) || state.url.endsWith('/full')); + itemRoute = isSubPath ? state.url : router.parseUrl(getItemPageRoute(rd.payload)).toString(); let newUrl: string; - if (route.params.id !== customUrl && !isItemEditPage) { + if (route.params.id !== customUrl && !isSubPath) { newUrl = itemRoute.replace(route.params.id,rd.payload.firstMetadataValue('dspace.customurl')); - } else if (isItemEditPage && route.params.id === customUrl) { - // In case of an edit page, we need to ensure we navigate to the edit page of the item ID, not the custom URL + } else if (isSubPath && route.params.id === customUrl) { + // In case of a sub path, we need to ensure we navigate to the edit page of the item ID, not the custom URL const itemId = rd.payload.uuid; newUrl = itemRoute.replace(rd.payload.firstMetadataValue('dspace.customurl'), itemId); } @@ -87,7 +95,11 @@ export const itemPageResolver: ResolveFn> = ( if (!thisRoute.startsWith(itemRoute)) { const itemId = rd.payload.uuid; const subRoute = thisRoute.substring(thisRoute.indexOf(itemId) + itemId.length, thisRoute.length); - void router.navigateByUrl(itemRoute + subRoute); + if (isPlatformServer(platformId)) { + hardRedirectService.redirect(itemRoute + subRoute, 301); + } else { + router.navigateByUrl(itemRoute + subRoute); + } } } } diff --git a/src/app/item-page/simple/item-page.component.spec.ts b/src/app/item-page/simple/item-page.component.spec.ts index fb56239e6c5..aa8eb9d5d9a 100644 --- a/src/app/item-page/simple/item-page.component.spec.ts +++ b/src/app/item-page/simple/item-page.component.spec.ts @@ -19,6 +19,7 @@ import { AuthorizationDataService } from '@dspace/core/data/feature-authorizatio import { ItemDataService } from '@dspace/core/data/item-data.service'; import { SignpostingDataService } from '@dspace/core/data/signposting-data.service'; import { SignpostingLink } from '@dspace/core/data/signposting-links.model'; +import { HardRedirectService } from '@dspace/core/services/hard-redirect.service'; import { LinkDefinition, LinkHeadService, @@ -26,6 +27,7 @@ import { import { ServerResponseService } from '@dspace/core/services/server-response.service'; import { Item } from '@dspace/core/shared/item.model'; import { ActivatedRouteStub } from '@dspace/core/testing/active-router.stub'; +import { RouterMock } from '@dspace/core/testing/router.mock'; import { TranslateLoaderMock } from '@dspace/core/testing/translate-loader.mock'; import { createPaginatedList } from '@dspace/core/testing/utils.test'; import { @@ -87,9 +89,10 @@ describe('ItemPageComponent', () => { let signpostingDataService: jasmine.SpyObj; let linkHeadService: jasmine.SpyObj; let notifyInfoService: jasmine.SpyObj; + let hardRedirectService: HardRedirectService; const mockRoute = Object.assign(new ActivatedRouteStub(), { - data: of({ dso: createSuccessfulRemoteDataObject(mockItem) }), + data: of({ dso: createSuccessfulRemoteDataObject(mockItem) , links: [mocklink, mocklink2] }), }); const getCoarLdnLocalInboxUrls = ['http://InboxUrls.org', 'http://InboxUrls2.org']; @@ -117,6 +120,11 @@ describe('ItemPageComponent', () => { getCoarLdnLocalInboxUrls: of(getCoarLdnLocalInboxUrls), }); + hardRedirectService = jasmine.createSpyObj('hardRedirectService', { + redirect: {}, + getCurrentRoute: {}, + }); + TestBed.configureTestingModule({ imports: [TranslateModule.forRoot({ loader: { @@ -127,13 +135,14 @@ describe('ItemPageComponent', () => { providers: [ { provide: ActivatedRoute, useValue: mockRoute }, { provide: ItemDataService, useValue: {} }, - { provide: Router, useValue: {} }, + { provide: Router, useValue: new RouterMock() }, { provide: AuthorizationDataService, useValue: authorizationDataService }, { provide: ServerResponseService, useValue: serverResponseService }, { provide: SignpostingDataService, useValue: signpostingDataService }, { provide: LinkHeadService, useValue: linkHeadService }, { provide: NotifyInfoService, useValue: notifyInfoService }, { provide: PLATFORM_ID, useValue: 'server' }, + { provide: HardRedirectService, useValue: hardRedirectService }, ], schemas: [NO_ERRORS_SCHEMA], }).overrideComponent(ItemPageComponent, { diff --git a/src/app/item-page/simple/item-page.component.ts b/src/app/item-page/simple/item-page.component.ts index ca8564235c9..8260e2fd8d4 100644 --- a/src/app/item-page/simple/item-page.component.ts +++ b/src/app/item-page/simple/item-page.component.ts @@ -170,42 +170,40 @@ export class ItemPageComponent implements OnInit, OnDestroy { * @private */ private initPageLinks(): void { - this.route.params.subscribe(params => { - combineLatest([this.signpostingDataService.getLinks(params.id).pipe(take(1)), this.getCoarLdnLocalInboxUrls()]) - .subscribe(([signpostingLinks, coarRestApiUrls]) => { - let links = ''; - this.signpostingLinks = signpostingLinks; + combineLatest([this.route.data.pipe(take(1)), this.getCoarLdnLocalInboxUrls()]) + .subscribe(([data, coarRestApiUrls]) => { + let links = ''; + this.signpostingLinks = data.links ?? []; - signpostingLinks.forEach((link: SignpostingLink) => { - links = links + (isNotEmpty(links) ? ', ' : '') + `<${link.href}> ; rel="${link.rel}"` + (isNotEmpty(link.type) ? ` ; type="${link.type}" ` : ' ') - + (isNotEmpty(link.profile) ? ` ; profile="${link.profile}" ` : ''); - let tag: LinkDefinition = { - href: link.href, - rel: link.rel, - }; - if (isNotEmpty(link.type)) { - tag = Object.assign(tag, { - type: link.type, - }); - } - if (isNotEmpty(link.profile)) { - tag = Object.assign(tag, { - profile: link.profile, - }); - } - this.linkHeadService.addTag(tag); - }); - - if (coarRestApiUrls.length > 0) { - const inboxLinks = this.initPageInboxLinks(coarRestApiUrls); - links = links + (isNotEmpty(links) ? ', ' : '') + inboxLinks; + this.signpostingLinks.forEach((link: SignpostingLink) => { + links = links + (isNotEmpty(links) ? ', ' : '') + `<${link.href}> ; rel="${link.rel}"` + (isNotEmpty(link.type) ? ` ; type="${link.type}" ` : ' ') + + (isNotEmpty(link.profile) ? ` ; profile="${link.profile}" ` : ''); + let tag: LinkDefinition = { + href: link.href, + rel: link.rel, + }; + if (isNotEmpty(link.type)) { + tag = Object.assign(tag, { + type: link.type, + }); } - - if (isPlatformServer(this.platformId)) { - this.responseService.setHeader('Link', links); + if (isNotEmpty(link.profile)) { + tag = Object.assign(tag, { + profile: link.profile, + }); } + this.linkHeadService.addTag(tag); }); - }); + + if (coarRestApiUrls.length > 0) { + const inboxLinks = this.initPageInboxLinks(coarRestApiUrls); + links = links + (isNotEmpty(links) ? ', ' : '') + inboxLinks; + } + + if (isPlatformServer(this.platformId)) { + this.responseService.setHeader('Link', links); + } + }); } /** diff --git a/src/app/item-page/simple/link-resolver/signposting-links.resolver.spec.ts b/src/app/item-page/simple/link-resolver/signposting-links.resolver.spec.ts new file mode 100644 index 00000000000..c3676babea5 --- /dev/null +++ b/src/app/item-page/simple/link-resolver/signposting-links.resolver.spec.ts @@ -0,0 +1,79 @@ +import { TestBed } from '@angular/core/testing'; +import { + ActivatedRouteSnapshot, + RouterStateSnapshot, +} from '@angular/router'; +import { ItemDataService } from '@dspace/core/data/item-data.service'; +import { SignpostingDataService } from '@dspace/core/data/signposting-data.service'; +import { Item } from '@dspace/core/shared/item.model'; +import { MetadataMap } from '@dspace/core/shared/metadata.models'; +import { createSuccessfulRemoteDataObject$ } from '@dspace/core/utilities/remote-data.utils'; +import { of } from 'rxjs'; + +import { signpostingLinksResolver } from './signposting-links.resolver'; + +describe('signpostingLinksResolver', () => { + let resolver: any; + let route: ActivatedRouteSnapshot; + let state = {}; + let itemDataService: ItemDataService; + let signpostingDataService: SignpostingDataService; + const testUuid = '1234567890'; + const mocklink = { + href: 'http://test.org', + rel: 'rel1', + type: 'type1', + }; + const mocklink2 = { + href: 'http://test2.org', + rel: 'rel2', + type: undefined, + }; + const resolvedLinks = `<${mocklink.href}> ; rel="${mocklink.rel}" ; type="${mocklink.type}" , <${mocklink2.href}> ; rel="${mocklink2.rel}" `; + const mockTag2 = { + href: 'http://test2.org', + rel: 'rel2', + }; + const mockItem = Object.assign(new Item(), { + uuid: testUuid, + metadata: new MetadataMap(), + }); + function init() { + route = Object.assign(new ActivatedRouteSnapshot(), { + params: { + id: testUuid, + }, + }); + itemDataService = jasmine.createSpyObj('itemDataService', { + findByIdOrCustomUrl: createSuccessfulRemoteDataObject$(mockItem), + }); + signpostingDataService = jasmine.createSpyObj('signpostingDataService', { + getLinks: of([mocklink, mocklink2]), + setLinks: () => null, + }); + resolver = signpostingLinksResolver; + } + function initTestbed() { + TestBed.configureTestingModule({ + providers: [ + { provide: RouterStateSnapshot, useValue: state }, + { provide: ActivatedRouteSnapshot, useValue: route }, + { provide: ItemDataService, useValue: itemDataService }, + { provide: SignpostingDataService, useValue: signpostingDataService }, + ], + }); + } + describe('when an item page is loaded', () => { + beforeEach(() => { + init(); + initTestbed(); + }); + it('should retrieve links and set header and head tags', () => { + TestBed.runInInjectionContext(() => { + resolver(route, state).subscribe(() => { + expect(signpostingDataService.getLinks).toHaveBeenCalledWith(testUuid); + }); + }); + }); + }); +}); diff --git a/src/app/item-page/simple/link-resolver/signposting-links.resolver.ts b/src/app/item-page/simple/link-resolver/signposting-links.resolver.ts new file mode 100644 index 00000000000..1b780ec6b0a --- /dev/null +++ b/src/app/item-page/simple/link-resolver/signposting-links.resolver.ts @@ -0,0 +1,47 @@ +import { inject } from '@angular/core'; +import { + ActivatedRouteSnapshot, + ResolveFn, + RouterStateSnapshot, +} from '@angular/router'; +import { ItemDataService } from '@dspace/core/data/item-data.service'; +import { RemoteData } from '@dspace/core/data/remote-data'; +import { SignpostingDataService } from '@dspace/core/data/signposting-data.service'; +import { SignpostingLink } from '@dspace/core/data/signposting-links.model'; +import { + getItemPageLinksToFollow, + Item, +} from '@dspace/core/shared/item.model'; +import { getFirstCompletedRemoteData } from '@dspace/core/shared/operators'; +import { hasValue } from '@dspace/shared/utils/empty.util'; +import { + Observable, + of, +} from 'rxjs'; +import { switchMap } from 'rxjs/operators'; + +/** + * Resolver to retrieve signposting links before an eventual redirect of any route guard + * + * @param route + * @param state + * @param itemService + * @param signpostingDataService + */ +export const signpostingLinksResolver: ResolveFn> = ( + route: ActivatedRouteSnapshot, + state: RouterStateSnapshot, + itemService: ItemDataService = inject(ItemDataService), + signpostingDataService: SignpostingDataService = inject(SignpostingDataService), +): Observable => { + const uuid = route.params.id; + if (!hasValue(uuid)) { + return of([]); + } + return itemService.findByIdOrCustomUrl(uuid, true, true, ...getItemPageLinksToFollow()).pipe( + getFirstCompletedRemoteData(), + switchMap((itemRD: RemoteData) => { + return itemRD.hasSucceeded ? signpostingDataService.getLinks(itemRD.payload.uuid) : of([]); + }), + ); +}; diff --git a/src/assets/i18n/en.json5 b/src/assets/i18n/en.json5 index d05cff9efec..0fc94d16210 100644 --- a/src/assets/i18n/en.json5 +++ b/src/assets/i18n/en.json5 @@ -1987,7 +1987,7 @@ "error.validation.custom-url.empty": "The custom url is required and cannot be empty.", - "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters.", + "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters. Only alphanumeric characters, dashes and underscores are supported.", "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", From 1c720dc70b461791abd803575841045815c55710 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Mon, 2 Feb 2026 17:27:00 +0100 Subject: [PATCH 14/17] [DURACOM-413] add redirect on no-content response --- src/app/core/shared/authorized.operators.ts | 22 +++++++++++++++++++++ src/app/item-page/item-page.resolver.ts | 6 +++++- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/src/app/core/shared/authorized.operators.ts b/src/app/core/shared/authorized.operators.ts index 477c1ed6d74..5ce081360f4 100644 --- a/src/app/core/shared/authorized.operators.ts +++ b/src/app/core/shared/authorized.operators.ts @@ -56,6 +56,28 @@ export const redirectOn4xx = (router: Router, authService: AuthService) => }), map(([rd]: [RemoteData, boolean]) => rd), ); + + +/** + * Redirect to 404 if the requested content is not found (204 No Content) + * + * @param router + * @param authService + */ +export const redirectOn204 = (router: Router, authService: AuthService) => + (source: Observable>): Observable> => + source.pipe( + withLatestFrom(authService.isAuthenticated()), + filter(([rd, isAuthenticated]: [RemoteData, boolean]) => { + if (rd.hasNoContent) { + router.navigateByUrl(getPageNotFoundRoute(), { skipLocationChange: true }); + return false; + } + return true; + }), + map(([rd]: [RemoteData, boolean]) => rd), + ); + /** * Operator that returns a UrlTree to a forbidden page or the login page when the boolean received is false * @param router The router used to navigate to a forbidden page diff --git a/src/app/item-page/item-page.resolver.ts b/src/app/item-page/item-page.resolver.ts index 1c3ebbd56da..e23d09f77e1 100644 --- a/src/app/item-page/item-page.resolver.ts +++ b/src/app/item-page/item-page.resolver.ts @@ -15,7 +15,10 @@ import { RemoteData } from '@dspace/core/data/remote-data'; import { ResolvedAction } from '@dspace/core/resolving/resolver.actions'; import { getItemPageRoute } from '@dspace/core/router/utils/dso-route.utils'; import { HardRedirectService } from '@dspace/core/services/hard-redirect.service'; -import { redirectOn4xx } from '@dspace/core/shared/authorized.operators'; +import { + redirectOn4xx, + redirectOn204, +} from '@dspace/core/shared/authorized.operators'; import { getItemPageLinksToFollow, Item, @@ -56,6 +59,7 @@ export const itemPageResolver: ResolveFn> = ( ...getItemPageLinksToFollow(), ).pipe( getFirstCompletedRemoteData(), + redirectOn204(router, authService), redirectOn4xx(router, authService), ); From 703dccbdfe10660ca7bc8d5d2db959796f79815b Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Tue, 3 Feb 2026 17:49:00 +0100 Subject: [PATCH 15/17] [DURACOM-413] add cache invalidation on new version --- src/app/core/data/version-data.service.ts | 11 +++++++++++ .../dso-versioning-modal.service.ts | 1 + 2 files changed, 12 insertions(+) diff --git a/src/app/core/data/version-data.service.ts b/src/app/core/data/version-data.service.ts index e4750b71b1f..90f95377833 100644 --- a/src/app/core/data/version-data.service.ts +++ b/src/app/core/data/version-data.service.ts @@ -26,6 +26,7 @@ import { import { DefaultChangeAnalyzer } from './default-change-analyzer.service'; import { RemoteData } from './remote-data'; import { RequestService } from './request.service'; +import { Item } from "@dspace/core/shared/item.model"; /** * Service responsible for handling requests related to the Version object @@ -106,4 +107,14 @@ export class VersionDataService extends IdentifiableDataService impleme return this.patchData.createPatchFromCache(object); } + + /** + * Invalidates the cache of the version link for this item. + * + * @param item + */ + invalidateVersionHrefCache(item: Item): void { + this.requestService.setStaleByHrefSubstring(item._links.version.href); + } + } diff --git a/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.ts b/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.ts index 8091fccbcec..8abce150b04 100644 --- a/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.ts +++ b/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.ts @@ -81,6 +81,7 @@ export class DsoVersioningModalService { switchMap((newVersionItem: Item) => this.workspaceItemDataService.findByItem(newVersionItem.uuid, true, false)), getFirstSucceededRemoteDataPayload(), ).subscribe((wsItem) => { + this.versionService.invalidateVersionHrefCache(item); const wsiId = wsItem.id; const route = 'workspaceitems/' + wsiId + '/edit'; this.router.navigateByUrl(route); From 50fb7c9283b849a9f4266a59dc13d8690de05449 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Wed, 4 Feb 2026 11:36:53 +0100 Subject: [PATCH 16/17] [DURACOM-413] restore translation files, clear cache of findByCustumURL on new version creation --- src/app/core/data/item-data.service.ts | 20 + src/app/core/data/version-data.service.ts | 2 +- src/app/item-page/item-page.resolver.ts | 2 +- .../dso-versioning-modal.service.spec.ts | 60 +- .../dso-versioning-modal.service.ts | 4 + src/assets/i18n/ml.json5 | 5845 +++++++++++++++++ src/assets/i18n/od.json5 | 5659 ++++++++++++++++ src/assets/i18n/te.json5 | 5491 ++++++++++++++++ 8 files changed, 17076 insertions(+), 7 deletions(-) create mode 100644 src/assets/i18n/ml.json5 create mode 100644 src/assets/i18n/od.json5 create mode 100644 src/assets/i18n/te.json5 diff --git a/src/app/core/data/item-data.service.ts b/src/app/core/data/item-data.service.ts index 86f51366c25..fe83d8ea66e 100644 --- a/src/app/core/data/item-data.service.ts +++ b/src/app/core/data/item-data.service.ts @@ -460,6 +460,26 @@ export abstract class BaseItemDataService extends IdentifiableDataService return this.findByHref(hrefObs, useCachedVersionIfAvailable, reRequestOnStale, ...linksToFollow); } + + /** + * Invalidate cache of request findByCustomURL + * + * @param customUrl + * @param projections + */ + public invalidateFindByCustomUrlCache(customUrl: string, projections: string[] = []): void { + const options: any = { + searchParams: [new RequestParam('q', customUrl)], + }; + + projections.forEach((p) => options.searchParams.push(new RequestParam('projection', p))); + + this.searchData.getSearchByHref('findByCustomURL', options).pipe(take(1)).subscribe((href: string) => { + this.requestService.setStaleByHrefSubstring(href); + this.objectCache.remove(href); + }); + } + /** * Returns an observable of {@link RemoteData} of an object, based on its ID, with a list of * {@link FollowLinkConfig}, to automatically resolve {@link HALLink}s of the object diff --git a/src/app/core/data/version-data.service.ts b/src/app/core/data/version-data.service.ts index 90f95377833..09b22d62d1f 100644 --- a/src/app/core/data/version-data.service.ts +++ b/src/app/core/data/version-data.service.ts @@ -1,5 +1,6 @@ import { Injectable } from '@angular/core'; import { RestRequestMethod } from '@dspace/config/rest-request-method'; +import { Item } from '@dspace/core/shared/item.model'; import { isNotEmpty } from '@dspace/shared/utils/empty.util'; import { Operation } from 'fast-json-patch'; import { @@ -26,7 +27,6 @@ import { import { DefaultChangeAnalyzer } from './default-change-analyzer.service'; import { RemoteData } from './remote-data'; import { RequestService } from './request.service'; -import { Item } from "@dspace/core/shared/item.model"; /** * Service responsible for handling requests related to the Version object diff --git a/src/app/item-page/item-page.resolver.ts b/src/app/item-page/item-page.resolver.ts index e23d09f77e1..58f690ae309 100644 --- a/src/app/item-page/item-page.resolver.ts +++ b/src/app/item-page/item-page.resolver.ts @@ -55,7 +55,7 @@ export const itemPageResolver: ResolveFn> = ( const itemRD$ = itemService.findByIdOrCustomUrl( route.params.id, true, - false, + true, ...getItemPageLinksToFollow(), ).pipe( getFirstCompletedRemoteData(), diff --git a/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.spec.ts b/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.spec.ts index 779af6444bc..4b974e0c913 100644 --- a/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.spec.ts +++ b/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.spec.ts @@ -1,13 +1,18 @@ -import { waitForAsync } from '@angular/core/testing'; +import { + fakeAsync, + flush, + waitForAsync, +} from '@angular/core/testing'; import { buildPaginatedList } from '@dspace/core/data/paginated-list.model'; import { Item } from '@dspace/core/shared/item.model'; import { MetadataMap } from '@dspace/core/shared/metadata.models'; import { PageInfo } from '@dspace/core/shared/page-info.model'; import { Version } from '@dspace/core/shared/version.model'; +import { WorkspaceItem } from '@dspace/core/submission/models/workspaceitem.model'; import { createSuccessfulRemoteDataObject$ } from '@dspace/core/utilities/remote-data.utils'; import { - EMPTY, of, + Subject, } from 'rxjs'; import { createRelationshipsObservable } from '../../../item-page/simple/item-types/shared/item.component.spec'; @@ -23,6 +28,9 @@ describe('DsoVersioningModalService', () => { let workspaceItemDataService; let itemService; + let createVersionEvent$: Subject; + + const mockItem: Item = Object.assign(new Item(), { bundles: createSuccessfulRemoteDataObject$(buildPaginatedList(new PageInfo(), [])), metadata: new MetadataMap(), @@ -37,21 +45,40 @@ describe('DsoVersioningModalService', () => { }, }); + const mockVersion = Object.assign(new Version(), { + _links: { + self: { + href: 'version-href', + }, + item: { + href: 'item-href', + }, + }, + }); + beforeEach(waitForAsync(() => { + createVersionEvent$ = new Subject(); modalService = jasmine.createSpyObj('modalService', { - open: { componentInstance: { firstVersion: {}, versionNumber: {}, createVersionEvent: EMPTY } }, + open: { + componentInstance: { firstVersion: {}, versionNumber: {}, createVersionEvent: createVersionEvent$.asObservable() }, + close: jasmine.createSpy('close'), + }, }); versionService = jasmine.createSpyObj('versionService', { findByHref: createSuccessfulRemoteDataObject$(new Version()), + invalidateVersionHrefCache: undefined, }); versionHistoryService = jasmine.createSpyObj('versionHistoryService', { - createVersion: createSuccessfulRemoteDataObject$(new Version()), + createVersion: createSuccessfulRemoteDataObject$(mockVersion), hasDraftVersion$: of(false), }); itemVersionShared = jasmine.createSpyObj('itemVersionShared', ['notifyCreateNewVersion']); router = jasmine.createSpyObj('router', ['navigateByUrl']); workspaceItemDataService = jasmine.createSpyObj('workspaceItemDataService', ['findByItem']); - itemService = jasmine.createSpyObj('itemService', ['findByHref']); + workspaceItemDataService.findByItem.and.returnValue(createSuccessfulRemoteDataObject$(new WorkspaceItem())); + + itemService = jasmine.createSpyObj('itemService', ['findByHref', 'invalidateFindByCustomUrlCache']); + itemService.findByHref.and.returnValue(createSuccessfulRemoteDataObject$(mockItem)); service = new DsoVersioningModalService( modalService, @@ -93,4 +120,27 @@ describe('DsoVersioningModalService', () => { }); }); }); + + describe('version modal', () => { + it('should invalidate version href cache after a successful create', fakeAsync(() => { + service.openCreateVersionModal(mockItem); + createVersionEvent$.next('summary'); + flush(); + expect(versionService.invalidateVersionHrefCache).toHaveBeenCalledWith(mockItem); + expect(itemService.invalidateFindByCustomUrlCache).not.toHaveBeenCalled(); + })); + + it('should invalidate findByCustomUrl cache when item has dspace.customurl metadata', fakeAsync(() => { + const itemWithCustomUrl: Item = Object.assign(new Item(), mockItem, { + metadata: Object.assign(new MetadataMap(), { + 'dspace.customurl': [{ value: 'my-custom-url' }], + }), + }); + service.openCreateVersionModal(itemWithCustomUrl); + createVersionEvent$.next('summary'); + flush(); + expect(versionService.invalidateVersionHrefCache).toHaveBeenCalledWith(itemWithCustomUrl); + expect(itemService.invalidateFindByCustomUrlCache).toHaveBeenCalledWith('my-custom-url'); + })); + }); }); diff --git a/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.ts b/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.ts index 8abce150b04..4e37503f229 100644 --- a/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.ts +++ b/src/app/shared/dso-page/dso-versioning-modal-service/dso-versioning-modal.service.ts @@ -82,6 +82,10 @@ export class DsoVersioningModalService { getFirstSucceededRemoteDataPayload(), ).subscribe((wsItem) => { this.versionService.invalidateVersionHrefCache(item); + if (item.hasMetadata('dspace.customurl')) { + // when a new version is created we need to invalidate the cache for findByCustomURL so the item will not be resolved with the cached old version. + this.itemService.invalidateFindByCustomUrlCache(item.firstMetadataValue('dspace.customurl')); + } const wsiId = wsItem.id; const route = 'workspaceitems/' + wsiId + '/edit'; this.router.navigateByUrl(route); diff --git a/src/assets/i18n/ml.json5 b/src/assets/i18n/ml.json5 new file mode 100644 index 00000000000..c603e661a04 --- /dev/null +++ b/src/assets/i18n/ml.json5 @@ -0,0 +1,5845 @@ +{ + "401.help": "ഈ പേജ് ആക്‌സസ് ചെയ്യാൻ നിങ്ങൾക്ക് അധികാരം നൽകിയിട്ടില്ല. താഴെയുള്ള ബട്ടൺ ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഹോം പേജിലേക്ക് തിരികെ പോകാം.", + "401.link.home-page": "എന്നെ ഹോം പേജിലേക്ക് കൊണ്ടുപോകുക", + "401.unauthorized": "അനധികൃതം", + "403.help": "ഈ പേജ് ആക്‌സസ് ചെയ്യാൻ നിങ്ങൾക്ക് അനുമതി നൽകിയിട്ടില്ല. താഴെയുള്ള ബട്ടൺ ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഹോം പേജിലേക്ക് തിരികെ പോകാം.", + "403.link.home-page": "എന്നെ ഹോം പേജിലേക്ക് കൊണ്ടുപോകുക", + "403.forbidden": "നിഷേധിച്ചു", + "500.page-internal-server-error": "സേവനം ലഭ്യമല്ല", + "500.help": "പരിപാലന സമയം അല്ലെങ്കിൽ കപ്പാസിറ്റി പ്രശ്നങ്ങൾ കാരണം സെർവർ താങ്കളുടെ അഭ്യർത്ഥന സേവനം നൽകാൻ താൽക്കാലികമായി കഴിയുന്നില്ല. ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", + "500.link.home-page": "എന്നെ ഹോം പേജിലേക്ക് കൊണ്ടുപോകുക", + "404.help": "താങ്കൾ തിരയുന്ന പേജ് ഞങ്ങൾക്ക് കണ്ടെത്താൻ കഴിയുന്നില്ല. പേജ് മാറ്റിയിരിക്കാം അല്ലെങ്കിൽ ഇല്ലാതാക്കിയിരിക്കാം. താഴെയുള്ള ബട്ടൺ ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഹോം പേജിലേക്ക് തിരികെ പോകാം.", + "404.link.home-page": "എന്നെ ഹോം പേജിലേക്ക് കൊണ്ടുപോകുക", + "404.page-not-found": "പേജ് കണ്ടെത്തിയില്ല", + "error-page.description.401": "അനധികൃതം", + "error-page.description.403": "നിഷേധിച്ചു", + "error-page.description.500": "സേവനം ലഭ്യമല്ല", + "error-page.description.404": "പേജ് കണ്ടെത്തിയില്ല", + "error-page.orcid.generic-error": "ORCID വഴി ലോഗിൻ ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു. DSpace-നൊപ്പം താങ്കളുടെ ORCID അക്കൗണ്ട് ഇമെയിൽ വിലാസം പങ്കിട്ടിട്ടുണ്ടെന്ന് ഉറപ്പാക്കുക. പിശക് തുടരുകയാണെങ്കിൽ, അഡ്മിനിസ്ട്രേറ്ററെ ബന്ധപ്പെടുക", + "listelement.badge.access-status": "ആക്‌സസ് സ്റ്റാറ്റസ്:", + "access-status.embargo.listelement.badge": "എംബാർഗോ", + "access-status.metadata.only.listelement.badge": "മെറ്റാഡാറ്റ മാത്രം", + "access-status.open.access.listelement.badge": "ഓപ്പൺ ആക്‌സസ്", + "access-status.restricted.listelement.badge": "പരിമിതപ്പെടുത്തിയത്", + "access-status.unknown.listelement.badge": "അജ്ഞാതം", + "admin.curation-tasks.breadcrumbs": "സിസ്റ്റം ക്യൂറേഷൻ ടാസ്‌ക്കുകൾ", + "admin.curation-tasks.title": "സിസ്റ്റം ക്യൂറേഷൻ ടാസ്‌ക്കുകൾ", + "admin.curation-tasks.header": "സിസ്റ്റം ക്യൂറേഷൻ ടാസ്‌ക്കുകൾ", + "admin.registries.bitstream-formats.breadcrumbs": "ഫോർമാറ്റ് രജിസ്ട്രി", + "admin.registries.bitstream-formats.create.breadcrumbs": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ്", + "admin.registries.bitstream-formats.create.failure.content": "പുതിയ ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് സൃഷ്ടിക്കുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു.", + "admin.registries.bitstream-formats.create.failure.head": "പരാജയം", + "admin.registries.bitstream-formats.create.head": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് സൃഷ്ടിക്കുക", + "admin.registries.bitstream-formats.create.new": "ഒരു പുതിയ ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് ചേർക്കുക", + "admin.registries.bitstream-formats.create.success.content": "പുതിയ ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് വിജയകരമായി സൃഷ്ടിച്ചു.", + "admin.registries.bitstream-formats.create.success.head": "വിജയം", + "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} ഫോർമാറ്റ്(കൾ) നീക്കംചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു", + "admin.registries.bitstream-formats.delete.failure.head": "പരാജയം", + "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} ഫോർമാറ്റ്(കൾ) വിജയകരമായി നീക്കംചെയ്തു", + "admin.registries.bitstream-formats.delete.success.head": "വിജയം", + "admin.registries.bitstream-formats.description": "ഈ ബിറ്റ്സ്ട്രീം ഫോർമാറ്റുകളുടെ ലിസ്റ്റ് അറിയപ്പെടുന്ന ഫോർമാറ്റുകളും അവയുടെ സപ്പോർട്ട് ലെവലും കുറിച്ചുള്ള വിവരങ്ങൾ നൽകുന്നു.", + "admin.registries.bitstream-formats.edit.breadcrumbs": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ്", + "admin.registries.bitstream-formats.edit.description.hint": "", + "admin.registries.bitstream-formats.edit.description.label": "വിവരണം", + "admin.registries.bitstream-formats.edit.extensions.hint": "എക്സ്റ്റെൻഷനുകൾ ഫയൽ എക്സ്റ്റെൻഷനുകളാണ്, അപ്‌ലോഡ് ചെയ്ത ഫയലുകളുടെ ഫോർമാറ്റ് സ്വയം തിരിച്ചറിയാൻ ഉപയോഗിക്കുന്നു. ഓരോ ഫോർമാറ്റിനും നിരവധി എക്സ്റ്റെൻഷനുകൾ നൽകാം.", + "admin.registries.bitstream-formats.edit.extensions.label": "ഫയൽ എക്സ്റ്റെൻഷനുകൾ", + "admin.registries.bitstream-formats.edit.extensions.placeholder": "ഡോട്ട് ഇല്ലാതെ ഒരു ഫയൽ എക്സ്റ്റെൻഷൻ നൽകുക", + "admin.registries.bitstream-formats.edit.failure.content": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് എഡിറ്റ് ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു.", + "admin.registries.bitstream-formats.edit.failure.head": "പരാജയം", + "admin.registries.bitstream-formats.edit.head": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ്: {{ format }}", + "admin.registries.bitstream-formats.edit.internal.hint": "ഇന്റർണൽ എന്ന് മാർക്ക് ചെയ്ത ഫോർമാറ്റുകൾ ഉപയോക്താവിൽ നിന്ന് മറച്ചിരിക്കുന്നു, ഭരണപരമായ ആവശ്യങ്ങൾക്കായി ഉപയോഗിക്കുന്നു.", + "admin.registries.bitstream-formats.edit.internal.label": "ഇന്റർണൽ", + "admin.registries.bitstream-formats.edit.mimetype.hint": "ഈ ഫോർമാറ്റുമായി ബന്ധപ്പെട്ട MIME ടൈപ്പ്, അദ്വിതീയമായിരിക്കണമെന്നില്ല.", + "admin.registries.bitstream-formats.edit.mimetype.label": "MIME ടൈപ്പ്", + "admin.registries.bitstream-formats.edit.shortDescription.hint": "ഈ ഫോർമാറ്റിനായുള്ള ഒരു അദ്വിതീയമായ പേര് (ഉദാ: Microsoft Word XP അല്ലെങ്കിൽ Microsoft Word 2000)", + "admin.registries.bitstream-formats.edit.shortDescription.label": "പേര്", + "admin.registries.bitstream-formats.edit.success.content": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് വിജയകരമായി എഡിറ്റ് ചെയ്തു.", + "admin.registries.bitstream-formats.edit.success.head": "വിജയം", + "admin.registries.bitstream-formats.edit.supportLevel.hint": "നിങ്ങളുടെ സ്ഥാപനം ഈ ഫോർമാറ്റിനായി പ്രതിജ്ഞാബദ്ധമായ സപ്പോർട്ട് ലെവൽ.", + "admin.registries.bitstream-formats.edit.supportLevel.label": "സപ്പോർട്ട് ലെവൽ", + "admin.registries.bitstream-formats.head": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് രജിസ്ട്രി", + "admin.registries.bitstream-formats.no-items": "പ്രദർശിപ്പിക്കാൻ ബിറ്റ്സ്ട്രീം ഫോർമാറ്റുകൾ ഇല്ല.", + "admin.registries.bitstream-formats.table.delete": "തിരഞ്ഞെടുത്തവ ഇല്ലാതാക്കുക", + "admin.registries.bitstream-formats.table.deselect-all": "എല്ലാം അൺസെലക്ട് ചെയ്യുക", + "admin.registries.bitstream-formats.table.internal": "ഇന്റർണൽ", + "admin.registries.bitstream-formats.table.mimetype": "MIME ടൈപ്പ്", + "admin.registries.bitstream-formats.table.name": "പേര്", + "admin.registries.bitstream-formats.table.selected": "തിരഞ്ഞെടുത്ത ബിറ്റ്സ്ട്രീം ഫോർമാറ്റുകൾ", + "admin.registries.bitstream-formats.table.id": "ID", + "admin.registries.bitstream-formats.table.return": "തിരികെ", + "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "അറിയപ്പെടുന്നത്", + "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "സപ്പോർട്ട് ചെയ്യുന്നു", + "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "അജ്ഞാതം", + "admin.registries.bitstream-formats.table.supportLevel.head": "സപ്പോർട്ട് ലെവൽ", + "admin.registries.bitstream-formats.title": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റ് രജിസ്ട്രി", + "admin.registries.bitstream-formats.select": "തിരഞ്ഞെടുക്കുക", + "admin.registries.bitstream-formats.deselect": "അൺസെലക്ട് ചെയ്യുക", + "admin.registries.metadata.breadcrumbs": "മെറ്റാഡാറ്റ രജിസ്ട്രി", + "admin.registries.metadata.description": "മെറ്റാഡാറ്റ രജിസ്ട്രി റിപ്പോസിറ്ററിയിൽ ലഭ്യമായ എല്ലാ മെറ്റാഡാറ്റ ഫീൽഡുകളുടെയും ഒരു ലിസ്റ്റ് നിലനിർത്തുന്നു. ഈ ഫീൽഡുകൾ ഒന്നിലധികം സ്കീമകളായി വിഭജിക്കാം. എന്നിരുന്നാലും, DSpace-ന് യോഗ്യമായ ഡബ്ലിൻ കോർ സ്കീമ ആവശ്യമാണ്.", + "admin.registries.metadata.form.create": "മെറ്റാഡാറ്റ സ്കീമ സൃഷ്ടിക്കുക", + "admin.registries.metadata.form.edit": "മെറ്റാഡാറ്റ സ്കീമ എഡിറ്റ് ചെയ്യുക", + "admin.registries.metadata.form.name": "പേര്", + "admin.registries.metadata.form.namespace": "നേംസ്പേസ്", + "admin.registries.metadata.head": "മെറ്റാഡാറ്റ രജിസ്ട്രി", + "admin.registries.metadata.schemas.no-items": "പ്രദർശിപ്പിക്കാൻ മെറ്റാഡാറ്റ സ്കീമകൾ ഇല്ല.", + "admin.registries.metadata.schemas.select": "തിരഞ്ഞെടുക്കുക", + "admin.registries.metadata.schemas.deselect": "അൺസെലക്ട് ചെയ്യുക", + "admin.registries.metadata.schemas.table.delete": "തിരഞ്ഞെടുത്തവ ഇല്ലാതാക്കുക", + "admin.registries.metadata.schemas.table.selected": "തിരഞ്ഞെടുത്ത സ്കീമകൾ", + "admin.registries.metadata.schemas.table.id": "ID", + "admin.registries.metadata.schemas.table.name": "പേര്", + "admin.registries.metadata.schemas.table.namespace": "നേംസ്പേസ്", + "admin.registries.metadata.title": "മെറ്റാഡാറ്റ രജിസ്ട്രി", + "admin.registries.schema.breadcrumbs": "മെറ്റാഡാറ്റ സ്കീമ", + "admin.registries.schema.description": "ഇത് \"{{namespace}}\" എന്നതിനുള്ള മെറ്റാഡാറ്റ സ്കീമയാണ്.", + "admin.registries.schema.fields.select": "തിരഞ്ഞെടുക്കുക", + "admin.registries.schema.fields.deselect": "അൺസെലക്ട് ചെയ്യുക", + "admin.registries.schema.fields.head": "സ്കീമ മെറ്റാഡാറ്റ ഫീൽഡുകൾ", + "admin.registries.schema.fields.no-items": "പ്രദർശിപ്പിക്കാൻ മെറ്റാഡാറ്റ ഫീൽഡുകൾ ഇല്ല.", + "admin.registries.schema.fields.table.delete": "തിരഞ്ഞെടുത്തവ ഇല്ലാതാക്കുക", + "admin.registries.schema.fields.table.field": "ഫീൽഡ്", + "admin.registries.schema.fields.table.selected": "തിരഞ്ഞെടുത്ത മെറ്റാഡാറ്റ ഫീൽഡുകൾ", + "admin.registries.schema.fields.table.id": "ID", + "admin.registries.schema.fields.table.scopenote": "സ്കോപ്പ് നോട്ട്", + "admin.registries.schema.form.create": "മെറ്റാഡാറ്റ ഫീൽഡ് സൃഷ്ടിക്കുക", + "admin.registries.schema.form.edit": "മെറ്റാഡാറ്റ ഫീൽഡ് എഡിറ്റ് ചെയ്യുക", + "admin.registries.schema.form.element": "എലമെന്റ്", + "admin.registries.schema.form.qualifier": "ക്വാലിഫയർ", + "admin.registries.schema.form.scopenote": "സ്കോപ്പ് നോട്ട്", + "admin.registries.schema.head": "മെറ്റാഡാറ്റ സ്കീമ", + "admin.registries.schema.notification.created": "മെറ്റാഡാറ്റ സ്കീമ \"{{prefix}}\" വിജയകരമായി സൃഷ്ടിച്ചു", + "admin.registries.schema.notification.deleted.failure": "{{amount}} മെറ്റാഡാറ്റ സ്കീമകൾ ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", + "admin.registries.schema.notification.deleted.success": "{{amount}} മെറ്റാഡാറ്റ സ്കീമകൾ വിജയകരമായി ഇല്ലാതാക്കി", + "admin.registries.schema.notification.edited": "മെറ്റാഡാറ്റ സ്കീമ \"{{prefix}}\" വിജയകരമായി എഡിറ്റ് ചെയ്തു", + "admin.registries.schema.notification.failure": "പിശക്", + "admin.registries.schema.notification.field.created": "മെറ്റാഡാറ്റ ഫീൽഡ് \"{{field}}\" വിജയകരമായി സൃഷ്ടിച്ചു", + "admin.registries.schema.notification.field.deleted.failure": "{{amount}} മെറ്റാഡാറ്റ ഫീൽഡുകൾ ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", + "admin.registries.schema.notification.field.deleted.success": "{{amount}} മെറ്റാഡാറ്റ ഫീൽഡുകൾ വിജയകരമായി ഇല്ലാതാക്കി", + "admin.registries.schema.notification.field.edited": "മെറ്റാഡാറ്റ ഫീൽഡ് \"{{field}}\" വിജയകരമായി എഡിറ്റ് ചെയ്തു", + "admin.registries.schema.notification.success": "വിജയം", + "admin.registries.schema.return": "തിരികെ", + "admin.registries.schema.title": "മെറ്റാഡാറ്റ സ്കീമ രജിസ്ട്രി", + "admin.access-control.bulk-access.breadcrumbs": "ബൾക്ക് ആക്‌സസ് മാനേജ്മെന്റ്", + "administrativeBulkAccess.search.results.head": "തിരയൽ ഫലങ്ങൾ", + "admin.access-control.bulk-access": "ബൾക്ക് ആക്‌സസ് മാനേജ്മെന്റ്", + "admin.access-control.bulk-access.title": "ബൾക്ക് ആക്‌സസ് മാനേജ്മെന്റ്", + "admin.access-control.bulk-access-browse.header": "ഘട്ടം 1: ഒബ്ജക്റ്റുകൾ തിരഞ്ഞെടുക്കുക", + "admin.access-control.bulk-access-browse.search.header": "തിരയുക", + "admin.access-control.bulk-access-browse.selected.header": "നിലവിലെ തിരഞ്ഞെടുപ്പ്({{number}})", + "admin.access-control.bulk-access-settings.header": "ഘട്ടം 2: നടത്തേണ്ട ഓപ്പറേഷൻ", + "admin.access-control.epeople.actions.delete": "EPerson ഇല്ലാതാക്കുക", + "admin.access-control.epeople.actions.impersonate": "EPerson ആയി പ്രവർത്തിക്കുക", + "admin.access-control.epeople.actions.reset": "പാസ്‌വേഡ് റീസെറ്റ് ചെയ്യുക", + "admin.access-control.epeople.actions.stop-impersonating": "EPerson ആയി പ്രവർത്തിക്കുന്നത് നിർത്തുക", + "admin.access-control.epeople.breadcrumbs": "EPeople", + "admin.access-control.epeople.title": "EPeople", + "admin.access-control.epeople.edit.breadcrumbs": "പുതിയ EPerson", + "admin.access-control.epeople.edit.title": "പുതിയ EPerson", + "admin.access-control.epeople.add.breadcrumbs": "EPerson ചേർക്കുക", + "admin.access-control.epeople.add.title": "EPerson ചേർക്കുക", + "admin.access-control.epeople.head": "EPeople", + "admin.access-control.epeople.search.head": "തിരയുക", + "admin.access-control.epeople.button.see-all": "എല്ലാം ബ്രൗസ് ചെയ്യുക", + "admin.access-control.epeople.search.scope.metadata": "മെറ്റാഡാറ്റ", + "admin.access-control.epeople.search.scope.email": "ഇമെയിൽ (കൃത്യമായി)", + "admin.access-control.epeople.search.button": "തിരയുക", + "admin.access-control.epeople.search.placeholder": "ആളുകളെ തിരയുക...", + "admin.access-control.epeople.button.add": "EPerson ചേർക്കുക", + "admin.access-control.epeople.table.id": "ID", + "admin.access-control.epeople.table.name": "പേര്", + "admin.access-control.epeople.table.email": "ഇമെയിൽ (കൃത്യമായി)", + "admin.access-control.epeople.table.edit": "എഡിറ്റ്", + "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" എഡിറ്റ് ചെയ്യുക", + "admin.access-control.epeople.table.edit.buttons.edit-disabled": "ഈ ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യാൻ നിങ്ങൾക്ക് അധികാരം നൽകിയിട്ടില്ല", + "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" ഇല്ലാതാക്കുക", + "admin.access-control.epeople.no-items": "പ്രദർശിപ്പിക്കാൻ EPeople ഇല്ല.", + "admin.access-control.epeople.form.create": "EPerson സൃഷ്ടിക്കുക", + "admin.access-control.epeople.form.edit": "EPerson എഡിറ്റ് ചെയ്യുക", + "admin.access-control.epeople.form.firstName": "ആദ്യ പേര്", + "admin.access-control.epeople.form.lastName": "അവസാന പേര്", + "admin.access-control.epeople.form.email": "ഇമെയിൽ", + "admin.access-control.epeople.form.emailHint": "സാധുതയുള്ള ഇമെയിൽ വിലാസം ആയിരിക്കണം", + "admin.access-control.epeople.form.canLogIn": "ലോഗിൻ ചെയ്യാൻ കഴിയും", + "admin.access-control.epeople.form.requireCertificate": "സർട്ടിഫിക്കറ്റ് ആവശ്യമാണ്", + "admin.access-control.epeople.form.return": "തിരികെ", + "admin.access-control.epeople.form.notification.created.success": "EPerson \"{{name}}\" വിജയകരമായി സൃഷ്ടിച്ചു", + "admin.access-control.epeople.form.notification.created.failure": "EPerson \"{{name}}\" സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു", + "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson \"{{name}}\" സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു, ഇമെയിൽ \"{{email}}\" ഇതിനകം ഉപയോഗത്തിലാണ്.", + "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson \"{{name}}\" എഡിറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു, ഇമെയിൽ \"{{email}}\" ഇതിനകം ഉപയോഗത്തിലാണ്.", + "admin.access-control.epeople.form.notification.edited.success": "EPerson \"{{name}}\" വിജയകരമായി എഡിറ്റ് ചെയ്തു", + "admin.access-control.epeople.form.notification.edited.failure": "EPerson \"{{name}}\" എഡിറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു", + "admin.access-control.epeople.form.notification.deleted.success": "EPerson \"{{name}}\" വിജയകരമായി ഇല്ലാതാക്കി", + "admin.access-control.epeople.form.notification.deleted.failure": "EPerson \"{{name}}\" ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", + "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "ഈ ഗ്രൂപ്പുകളിലെ അംഗം:", + "admin.access-control.epeople.form.table.id": "ID", + "admin.access-control.epeople.form.table.name": "പേര്", + "admin.access-control.epeople.form.table.collectionOrCommunity": "കളക്ഷൻ/കമ്മ്യൂണിറ്റി", + "admin.access-control.epeople.form.memberOfNoGroups": "ഈ EPerson ഏതെങ്കിലും ഗ്രൂപ്പിലെ അംഗമല്ല", + "admin.access-control.epeople.form.goToGroups": "ഗ്രൂപ്പുകളിലേക്ക് ചേർക്കുക", + "admin.access-control.epeople.notification.deleted.failure": "id \"{{id}}\" ഉള്ള EPerson ഇല്ലാതാക്കാൻ ശ്രമിക്കുമ്പോൾ പിശക് സംഭവിച്ചു. കോഡ്: \"{{statusCode}}\", സന്ദേശം: \"{{restResponse.errorMessage}}\"", + "admin.access-control.epeople.notification.deleted.success": "EPerson: \"{{name}}\" വിജയകരമായി ഇല്ലാതാക്കി", + "admin.access-control.groups.title": "ഗ്രൂപ്പുകൾ", + "admin.access-control.groups.breadcrumbs": "ഗ്രൂപ്പുകൾ", + "admin.access-control.groups.singleGroup.breadcrumbs": "ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യുക", + "admin.access-control.groups.title.singleGroup": "ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യുക", + "admin.access-control.groups.title.addGroup": "പുതിയ ഗ്രൂപ്പ്", + "admin.access-control.groups.addGroup.breadcrumbs": "പുതിയ ഗ്രൂപ്പ്", + "admin.access-control.groups.head": "ഗ്രൂപ്പുകൾ", + "admin.access-control.groups.button.add": "ഗ്രൂപ്പ് ചേർക്കുക", + "admin.access-control.groups.search.head": "ഗ്രൂപ്പുകൾ തിരയുക", + "admin.access-control.groups.button.see-all": "എല്ലാം ബ്രൗസ് ചെയ്യുക", + "admin.access-control.groups.search.button": "തിരയുക", + "admin.access-control.groups.search.placeholder": "ഗ്രൂപ്പുകൾ തിരയുക...", + "admin.access-control.groups.table.id": "ID", + "admin.access-control.groups.table.name": "പേര്", + "admin.access-control.groups.table.collectionOrCommunity": "കളക്ഷൻ/കമ്മ്യൂണിറ്റി", + "admin.access-control.groups.table.members": "അംഗങ്ങൾ", + "admin.access-control.groups.table.edit": "എഡിറ്റ്", + "admin.access-control.groups.table.edit.buttons.edit": "\"{{name}}\" എഡിറ്റ് ചെയ്യുക", + "admin.access-control.groups.table.edit.buttons.remove": "\"{{name}}\" ഇല്ലാതാക്കുക", + "admin.access-control.groups.no-items": "ഈ പേരിൽ അല്ലെങ്കിൽ ഈ UUID ഉള്ള ഗ്രൂപ്പുകൾ കണ്ടെത്തിയില്ല", + "admin.access-control.groups.notification.deleted.success": "ഗ്രൂപ്പ് \"{{name}}\" വിജയകരമായി ഇല്ലാതാക്കി", + "admin.access-control.groups.notification.deleted.failure.title": "ഗ്രൂപ്പ് \"{{name}}\" ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", + "admin.access-control.groups.notification.deleted.failure.content": "കാരണം: \"{{cause}}\"", + "admin.access-control.groups.form.alert.permanent": "ഈ ഗ്രൂപ്പ് സ്ഥിരമാണ്, അതിനാൽ ഇത് എഡിറ്റ് ചെയ്യാനോ ഇല്ലാതാക്കാനോ കഴിയില്ല. ഈ പേജ് ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഇപ്പോഴും ഗ്രൂപ്പ് അംഗങ്ങളെ ചേർക്കാനും നീക്കംചെയ്യാനും കഴിയും.", + + "admin.access-control.groups.form.alert.workflowGroup": "സമർപ്പണ, വർക്ക്ഫ്ലോ പ്രക്രിയയിലെ ഒരു റോളുമായി യോജിക്കുന്നതിനാൽ ഈ ഗ്രൂപ്പ് പരിഷ്കരിക്കാനോ ഇല്ലാതാക്കാനോ കഴിയില്ല. \"{{name}}\" {{comcol}} ൽ. എഡിറ്റ് {{comcol}} പേജിലെ \"റോളുകൾ നിയോഗിക്കുക\" ടാബിൽ നിന്ന് നിങ്ങൾക്ക് ഇത് ഇല്ലാതാക്കാം. ഈ പേജ് ഉപയോഗിച്ച് ഗ്രൂപ്പ് അംഗങ്ങളെ ചേർക്കാനും നീക്കം ചെയ്യാനും നിങ്ങൾക്ക് കഴിയും.", + + "admin.access-control.groups.form.head.create": "ഗ്രൂപ്പ് സൃഷ്ടിക്കുക", + + "admin.access-control.groups.form.head.edit": "ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യുക", + + "admin.access-control.groups.form.groupName": "ഗ്രൂപ്പ് പേര്", + + "admin.access-control.groups.form.groupCommunity": "കമ്മ്യൂണിറ്റി അല്ലെങ്കിൽ കളക്ഷൻ", + + "admin.access-control.groups.form.groupDescription": "വിവരണം", + + "admin.access-control.groups.form.notification.created.success": "\"{{name}}\" ഗ്രൂപ്പ് വിജയകരമായി സൃഷ്ടിച്ചു", + + "admin.access-control.groups.form.notification.created.failure": "\"{{name}}\" ഗ്രൂപ്പ് സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "\"{{name}}\" എന്ന പേരിൽ ഗ്രൂപ്പ് സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു, പേര് ഇതിനകം ഉപയോഗത്തിലില്ലെന്ന് ഉറപ്പാക്കുക.", + + "admin.access-control.groups.form.notification.edited.failure": "\"{{name}}\" ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു", + + "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "\"{{name}}\" എന്ന പേര് ഇതിനകം ഉപയോഗത്തിലാണ്!", + + "admin.access-control.groups.form.notification.edited.success": "\"{{name}}\" ഗ്രൂപ്പ് വിജയകരമായി എഡിറ്റ് ചെയ്തു", + + "admin.access-control.groups.form.actions.delete": "ഗ്രൂപ്പ് ഇല്ലാതാക്കുക", + + "admin.access-control.groups.form.delete-group.modal.header": "\"{{ dsoName }}\" ഗ്രൂപ്പ് ഇല്ലാതാക്കുക", + + "admin.access-control.groups.form.delete-group.modal.info": "\"{{ dsoName }}\" ഗ്രൂപ്പ് ഇല്ലാതാക്കണമെന്ന് നിങ്ങൾക്ക് ഉറപ്പാണോ?", + + "admin.access-control.groups.form.delete-group.modal.cancel": "റദ്ദാക്കുക", + + "admin.access-control.groups.form.delete-group.modal.confirm": "ഇല്ലാതാക്കുക", + + "admin.access-control.groups.form.notification.deleted.success": "\"{{ name }}\" ഗ്രൂപ്പ് വിജയകരമായി ഇല്ലാതാക്കി", + + "admin.access-control.groups.form.notification.deleted.failure.title": "\"{{ name }}\" ഗ്രൂപ്പ് ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "admin.access-control.groups.form.notification.deleted.failure.content": "കാരണം: \"{{ cause }}\"", + + "admin.access-control.groups.form.members-list.head": "ഇ-പീപ്പിൾ", + + "admin.access-control.groups.form.members-list.search.head": "ഇ-പീപ്പിൾ ചേർക്കുക", + + "admin.access-control.groups.form.members-list.button.see-all": "എല്ലാം ബ്രൗസ് ചെയ്യുക", + + "admin.access-control.groups.form.members-list.headMembers": "നിലവിലെ അംഗങ്ങൾ", + + "admin.access-control.groups.form.members-list.search.button": "തിരയുക", + + "admin.access-control.groups.form.members-list.table.id": "ഐഡി", + + "admin.access-control.groups.form.members-list.table.name": "പേര്", + + "admin.access-control.groups.form.members-list.table.identity": "ഐഡന്റിറ്റി", + + "admin.access-control.groups.form.members-list.table.email": "ഇമെയിൽ", + + "admin.access-control.groups.form.members-list.table.netid": "നെറ്റ് ഐഡി", + + "admin.access-control.groups.form.members-list.table.edit": "നീക്കം ചെയ്യുക / ചേർക്കുക", + + "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "\"{{name}}\" എന്ന പേരുള്ള അംഗത്തെ നീക്കം ചെയ്യുക", + + "admin.access-control.groups.form.members-list.notification.success.addMember": "\"{{name}}\" അംഗത്തെ വിജയകരമായി ചേർത്തു", + + "admin.access-control.groups.form.members-list.notification.failure.addMember": "\"{{name}}\" അംഗത്തെ ചേർക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "admin.access-control.groups.form.members-list.notification.success.deleteMember": "\"{{name}}\" അംഗത്തെ വിജയകരമായി ഇല്ലാതാക്കി", + + "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "\"{{name}}\" അംഗത്തെ ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "admin.access-control.groups.form.members-list.table.edit.buttons.add": "\"{{name}}\" എന്ന പേരുള്ള അംഗത്തെ ചേർക്കുക", + + "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "നിലവിൽ സജീവമായ ഗ്രൂപ്പ് ഇല്ല, ആദ്യം ഒരു പേര് സമർപ്പിക്കുക.", + + "admin.access-control.groups.form.members-list.no-members-yet": "ഗ്രൂപ്പിൽ ഇതുവരെ അംഗങ്ങളില്ല, തിരയുക, ചേർക്കുക.", + + "admin.access-control.groups.form.members-list.no-items": "ആ തിരയലിൽ ഇ-പീപ്പിൾ കണ്ടെത്തിയില്ല", + + "admin.access-control.groups.form.subgroups-list.notification.failure": "എന്തോ തെറ്റുണ്ട്: \"{{cause}}\"", + + "admin.access-control.groups.form.subgroups-list.head": "ഗ്രൂപ്പുകൾ", + + "admin.access-control.groups.form.subgroups-list.search.head": "സബ്ഗ്രൂപ്പ് ചേർക്കുക", + + "admin.access-control.groups.form.subgroups-list.button.see-all": "എല്ലാം ബ്രൗസ് ചെയ്യുക", + + "admin.access-control.groups.form.subgroups-list.headSubgroups": "നിലവിലെ സബ്ഗ്രൂപ്പുകൾ", + + "admin.access-control.groups.form.subgroups-list.search.button": "തിരയുക", + + "admin.access-control.groups.form.subgroups-list.table.id": "ഐഡി", + + "admin.access-control.groups.form.subgroups-list.table.name": "പേര്", + + "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "കളക്ഷൻ/കമ്മ്യൂണിറ്റി", + + "admin.access-control.groups.form.subgroups-list.table.edit": "നീക്കം ചെയ്യുക / ചേർക്കുക", + + "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "\"{{name}}\" എന്ന പേരുള്ള സബ്ഗ്രൂപ്പ് നീക്കം ചെയ്യുക", + + "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "\"{{name}}\" എന്ന പേരുള്ള സബ്ഗ്രൂപ്പ് ചേർക്കുക", + + "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "\"{{name}}\" സബ്ഗ്രൂപ്പ് വിജയകരമായി ചേർത്തു", + + "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "\"{{name}}\" സബ്ഗ്രൂപ്പ് ചേർക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "\"{{name}}\" സബ്ഗ്രൂപ്പ് വിജയകരമായി ഇല്ലാതാക്കി", + + "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "\"{{name}}\" സബ്ഗ്രൂപ്പ് ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "നിലവിൽ സജീവമായ ഗ്രൂപ്പ് ഇല്ല, ആദ്യം ഒരു പേര് സമർപ്പിക്കുക.", + + "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "ഇത് നിലവിലെ ഗ്രൂപ്പാണ്, ചേർക്കാൻ കഴിയില്ല.", + + "admin.access-control.groups.form.subgroups-list.no-items": "ഈ പേരിൽ അല്ലെങ്കിൽ ഈ UUID ഉള്ള ഗ്രൂപ്പുകൾ കണ്ടെത്തിയില്ല", + + "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "ഗ്രൂപ്പിൽ ഇതുവരെ സബ്ഗ്രൂപ്പുകളില്ല.", + + "admin.access-control.groups.form.return": "തിരികെ", + + "admin.quality-assurance.breadcrumbs": "ഗുണനിലവാര ഉറപ്പ്", + + "admin.notifications.event.breadcrumbs": "ഗുണനിലവാര ഉറപ്പ് നിർദ്ദേശങ്ങൾ", + + "admin.notifications.event.page.title": "ഗുണനിലവാര ഉറപ്പ് നിർദ്ദേശങ്ങൾ", + + "admin.quality-assurance.page.title": "ഗുണനിലവാര ഉറപ്പ്", + + "admin.notifications.source.breadcrumbs": "ഗുണനിലവാര ഉറപ്പ്", + + "admin.access-control.groups.form.tooltip.editGroupPage": "ഈ പേജിൽ, നിങ്ങൾക്ക് ഒരു ഗ്രൂപ്പിന്റെ ഗുണങ്ങളും അംഗങ്ങളും പരിഷ്കരിക്കാനാകും. മുകളിലെ വിഭാഗത്തിൽ, നിങ്ങൾക്ക് ഗ്രൂപ്പ് പേരും വിവരണവും എഡിറ്റ് ചെയ്യാനാകും, ഒരു കളക്ഷൻ അല്ലെങ്കിൽ കമ്മ്യൂണിറ്റിക്കുള്ള ഒരു അഡ്മിൻ ഗ്രൂപ്പാണെങ്കിൽ ഒഴികെ, ഈ സാഹചര്യത്തിൽ ഗ്രൂപ്പ് പേരും വിവരണവും യാന്ത്രികമായി സൃഷ്ടിക്കപ്പെടുകയും എഡിറ്റ് ചെയ്യാൻ കഴിയില്ല. തുടർന്നുള്ള വിഭാഗങ്ങളിൽ, നിങ്ങൾക്ക് ഗ്രൂപ്പ് അംഗത്വം എഡിറ്റ് ചെയ്യാനാകും. കൂടുതൽ വിശദാംശങ്ങൾക്ക് [വിക്കി](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) കാണുക.", + + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "ഈ ഗ്രൂപ്പിൽ നിന്ന്/ലേക്ക് ഒരു ഇ-പേഴ്സൺ ചേർക്കാനോ നീക്കം ചെയ്യാനോ, ഒന്നുകിൽ 'എല്ലാം ബ്രൗസ് ചെയ്യുക' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക അല്ലെങ്കിൽ ഉപയോക്താക്കളെ തിരയാൻ താഴെയുള്ള സെർച്ച് ബാറ് ഉപയോഗിക്കുക (മെറ്റാഡാറ്റ അല്ലെങ്കിൽ ഇമെയിൽ വഴി തിരയാൻ സെർച്ച് ബാറിന്റെ ഇടതുവശത്തുള്ള ഡ്രോപ്പ്ഡൗൺ ഉപയോഗിക്കുക). തുടർന്ന് ചേർക്കാൻ ആഗ്രഹിക്കുന്ന ഓരോ ഉപയോക്താവിനും താഴെയുള്ള ലിസ്റ്റിൽ പ്ലസ് ഐക്കൺ ക്ലിക്ക് ചെയ്യുക, അല്ലെങ്കിൽ നീക്കം ചെയ്യാൻ ആഗ്രഹിക്കുന്ന ഓരോ ഉപയോക്താവിനും ട്രാഷ് കാൻ ഐക്കൺ ക്ലിക്ക് ചെയ്യുക. താഴെയുള്ള ലിസ്റ്റിൽ നിരവധി പേജുകൾ ഉണ്ടാകാം: അടുത്ത പേജുകളിലേക്ക് നാവിഗേറ്റ് ചെയ്യാൻ താഴെയുള്ള പേജ് നിയന്ത്രണങ്ങൾ ഉപയോഗിക്കുക.", + + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "ഈ ഗ്രൂപ്പിൽ നിന്ന്/ലേക്ക് ഒരു സബ്ഗ്രൂപ്പ് ചേർക്കാനോ നീക്കം ചെയ്യാനോ, ഒന്നുകിൽ 'എല്ലാം ബ്രൗസ് ചെയ്യുക' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക അല്ലെങ്കിൽ ഗ്രൂപ്പുകൾ തിരയാൻ താഴെയുള്ള സെർച്ച് ബാറ് ഉപയോഗിക്കുക. തുടർന്ന് ചേർക്കാൻ ആഗ്രഹിക്കുന്ന ഓരോ ഗ്രൂപ്പിനും താഴെയുള്ള ലിസ്റ്റിൽ പ്ലസ് ഐക്കൺ ക്ലിക്ക് ചെയ്യുക, അല്ലെങ്കിൽ നീക്കം ചെയ്യാൻ ആഗ്രഹിക്കുന്ന ഓരോ ഗ്രൂപ്പിനും ട്രാഷ് കാൻ ഐക്കൺ ക്ലിക്ക് ചെയ്യുക. താഴെയുള്ള ലിസ്റ്റിൽ നിരവധി പേജുകൾ ഉണ്ടാകാം: അടുത്ത പേജുകളിലേക്ക് നാവിഗേറ്റ് ചെയ്യാൻ താഴെയുള്ള പേജ് നിയന്ത്രണങ്ങൾ ഉപയോഗിക്കുക.", + + "admin.reports.collections.title": "കളക്ഷൻ ഫിൽട്ടർ റിപ്പോർട്ട്", + + "admin.reports.collections.breadcrumbs": "കളക്ഷൻ ഫിൽട്ടർ റിപ്പോർട്ട്", + + "admin.reports.collections.head": "കളക്ഷൻ ഫിൽട്ടർ റിപ്പോർട്ട്", + + "admin.reports.button.show-collections": "കളക്ഷനുകൾ കാണിക്കുക", + + "admin.reports.collections.collections-report": "കളക്ഷൻ റിപ്പോർട്ട്", + + "admin.reports.collections.item-results": "ഇനം ഫലങ്ങൾ", + + "admin.reports.collections.community": "കമ്മ്യൂണിറ്റി", + + "admin.reports.collections.collection": "കളക്ഷൻ", + + "admin.reports.collections.nb_items": "ഇനങ്ങളുടെ എണ്ണം", + + "admin.reports.collections.match_all_selected_filters": "തിരഞ്ഞെടുത്ത എല്ലാ ഫിൽട്ടറുകളുമായും പൊരുത്തപ്പെടുന്നു", + + "admin.reports.items.breadcrumbs": "മെറ്റാഡാറ്റ ക്വറി റിപ്പോർട്ട്", + + "admin.reports.items.head": "മെറ്റാഡാറ്റ ക്വറി റിപ്പോർട്ട്", + + "admin.reports.items.run": "ഇനം ക്വറി പ്രവർത്തിപ്പിക്കുക", + + "admin.reports.items.section.collectionSelector": "കളക്ഷൻ സെലക്ടർ", + + "admin.reports.items.section.metadataFieldQueries": "മെറ്റാഡാറ്റ ഫീൽഡ് ക്വറികൾ", + + "admin.reports.items.predefinedQueries": "മുൻകൂർ ക്വറികൾ", + + "admin.reports.items.section.limitPaginateQueries": "പരിധി/പേജിനേറ്റ് ക്വറികൾ", + + "admin.reports.items.limit": "പരിധി/", + + "admin.reports.items.offset": "ഓഫ്സെറ്റ്", + + "admin.reports.items.wholeRepo": "മുഴുവൻ റെപ്പോസിറ്ററി", + + "admin.reports.items.anyField": "ഏതെങ്കിലും ഫീൽഡ്", + + "admin.reports.items.predicate.exists": "നിലവിലുണ്ട്", + + "admin.reports.items.predicate.doesNotExist": "നിലവിലില്ല", + + "admin.reports.items.predicate.equals": "സമം", + + "admin.reports.items.predicate.doesNotEqual": "സമമല്ല", + + "admin.reports.items.predicate.like": "പോലെ", + + "admin.reports.items.predicate.notLike": "പോലെയല്ല", + + "admin.reports.items.predicate.contains": "ഉൾക്കൊള്ളുന്നു", + + "admin.reports.items.predicate.doesNotContain": "ഉൾക്കൊള്ളുന്നില്ല", + + "admin.reports.items.predicate.matches": "പൊരുത്തപ്പെടുന്നു", + + "admin.reports.items.predicate.doesNotMatch": "പൊരുത്തപ്പെടുന്നില്ല", + + "admin.reports.items.preset.new": "പുതിയ ക്വറി", + + "admin.reports.items.preset.hasNoTitle": "തലക്കെട്ട് ഇല്ല", + + "admin.reports.items.preset.hasNoIdentifierUri": "dc.identifier.uri ഇല്ല", + + "admin.reports.items.preset.hasCompoundSubject": "സംയുക്ത വിഷയം ഉണ്ട്", + + "admin.reports.items.preset.hasCompoundAuthor": "സംയുക്ത dc.contributor.author ഉണ്ട്", + + "admin.reports.items.preset.hasCompoundCreator": "സംയുക്ത dc.creator ഉണ്ട്", + + "admin.reports.items.preset.hasUrlInDescription": "dc.description-ൽ URL ഉണ്ട്", + + "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance-ൽ പൂർണ്ണ വാചകം ഉണ്ട്", + + "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance-ൽ പൂർണ്ണ വാചകമല്ലാത്തത് ഉണ്ട്", + + "admin.reports.items.preset.hasEmptyMetadata": "ശൂന്യമായ മെറ്റാഡാറ്റ ഉണ്ട്", + + "admin.reports.items.preset.hasUnbreakingDataInDescription": "വിവരണത്തിൽ അണ്ടർബ്രേക്കിംഗ് ഡാറ്റ ഉണ്ട്", + + "admin.reports.items.preset.hasXmlEntityInMetadata": "മെറ്റാഡാറ്റയിൽ XML എന്റിറ്റി ഉണ്ട്", + + "admin.reports.items.preset.hasNonAsciiCharInMetadata": "മെറ്റാഡാറ്റയിൽ നോൺ-ആസ്കി ചാര് ഉണ്ട്", + + "admin.reports.items.number": "നമ്പർ.", + + "admin.reports.items.id": "UUID", + + "admin.reports.items.collection": "കളക്ഷൻ", + + "admin.reports.items.handle": "URI", + + "admin.reports.items.title": "തലക്കെട്ട്", + + "admin.reports.commons.filters": "ഫിൽട്ടറുകൾ", + + "admin.reports.commons.additional-data": "തിരികെ നൽകേണ്ട അധിക ഡാറ്റ", + + "admin.reports.commons.previous-page": "മുമ്പത്തെ പേജ്", + + "admin.reports.commons.next-page": "അടുത്ത പേജ്", + + "admin.reports.commons.page": "പേജ്", + + "admin.reports.commons.of": "ന്റെ", + + "admin.reports.commons.export": "മെറ്റാഡാറ്റ അപ്ഡേറ്റിനായി എക്സ്പോർട്ട് ചെയ്യുക", + + "admin.reports.commons.filters.deselect_all": "എല്ലാ ഫിൽട്ടറുകളും നിർവചിക്കുക", + + "admin.reports.commons.filters.select_all": "എല്ലാ ഫിൽട്ടറുകളും തിരഞ്ഞെടുക്കുക", + + "admin.reports.commons.filters.matches_all": "സ്പെസിഫൈഡ് എല്ലാ ഫിൽട്ടറുകളുമായും പൊരുത്തപ്പെടുന്നു", + + "admin.reports.commons.filters.property": "ഇനം പ്രോപ്പർട്ടി ഫിൽട്ടറുകൾ", + + "admin.reports.commons.filters.property.is_item": "ഇനം - എല്ലായ്പ്പോഴും ശരി", + + "admin.reports.commons.filters.property.is_withdrawn": "വിത്ഡ്രോൺ ചെയ്ത ഇനങ്ങൾ", + + "admin.reports.commons.filters.property.is_not_withdrawn": "ലഭ്യമായ ഇനങ്ങൾ - വിത്ഡ്രോൺ ചെയ്തിട്ടില്ല", + + "admin.reports.commons.filters.property.is_discoverable": "ഡിസ്കവർ ചെയ്യാവുന്ന ഇനങ്ങൾ - സ്വകാര്യമല്ല", + + "admin.reports.commons.filters.property.is_not_discoverable": "ഡിസ്കവർ ചെയ്യാനാവാത്തത് - സ്വകാര്യ ഇനം", + + "admin.reports.commons.filters.bitstream": "ബേസിക് ബിറ്റ്സ്ട്രീം ഫിൽട്ടറുകൾ", + + "admin.reports.commons.filters.bitstream.has_multiple_originals": "ഇനത്തിന് ഒന്നിലധികം ഒറിജിനൽ ബിറ്റ്സ്ട്രീമുകൾ ഉണ്ട്", + + "admin.reports.commons.filters.bitstream.has_no_originals": "ഇനത്തിന് ഒറിജിനൽ ബിറ്റ്സ്ട്രീമുകൾ ഇല്ല", + + "admin.reports.commons.filters.bitstream.has_one_original": "ഇനത്തിന് ഒരു ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "admin.reports.commons.filters.bitstream_mime": "MIME തരം അനുസരിച്ച് ബിറ്റ്സ്ട്രീം ഫിൽട്ടറുകൾ", + + "admin.reports.commons.filters.bitstream_mime.has_doc_original": "ഇനത്തിന് ഒരു ഡോക്യുമെന്റ് ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട് (PDF, ഓഫീസ്, ടെക്സ്റ്റ്, HTML, XML, മുതലായവ)", + + "admin.reports.commons.filters.bitstream_mime.has_image_original": "ഇനത്തിന് ഒരു ഇമേജ് ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "മറ്റ് ബിറ്റ്സ്ട്രീം തരങ്ങൾ ഉണ്ട് (ഡോക്യുമെന്റ് അല്ലെങ്കിൽ ഇമേജ് അല്ല)", + + "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "ഇനത്തിന് ഒന്നിലധികം തരം ഒറിജിനൽ ബിറ്റ്സ്ട്രീമുകൾ ഉണ്ട് (ഡോക്യുമെന്റ്, ഇമേജ്, മറ്റുള്ളവ)", + + "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "ഇനത്തിന് ഒരു PDF ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "ഇനത്തിന് JPG ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "അസാധാരണമായ ചെറിയ PDF ഉണ്ട്", + + "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "അസാധാരണമായ വലിയ PDF ഉണ്ട്", + + "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "ടെക്സ്റ്റ് ഇനമില്ലാത്ത ഡോക്യുമെന്റ് ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "admin.reports.commons.filters.mime": "സപ്പോർട്ട് ചെയ്യുന്ന MIME തരം ഫിൽട്ടറുകൾ", + + "admin.reports.commons.filters.mime.has_only_supp_image_type": "ഇനം ഇമേജ് ബിറ്റ്സ്ട്രീമുകൾ സപ്പോർട്ട് ചെയ്യുന്നു", + + "admin.reports.commons.filters.mime.has_unsupp_image_type": "ഇനത്തിന് സപ്പോർട്ട് ചെയ്യാത്ത ഇമേജ് ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "admin.reports.commons.filters.mime.has_only_supp_doc_type": "ഇനം ഡോക്യുമെന്റ് ബിറ്റ്സ്ട്രീമുകൾ സപ്പോർട്ട് ചെയ്യുന്നു", + + "admin.reports.commons.filters.mime.has_unsupp_doc_type": "ഇനത്തിന് സപ്പോർട്ട് ചെയ്യാത്ത ഡോക്യുമെന്റ് ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "admin.reports.commons.filters.bundle": "ബിറ്റ്സ്ട്രീം ബണ്ടിൽ ഫിൽട്ടറുകൾ", + + "admin.reports.commons.filters.bundle.has_unsupported_bundle": "സപ്പോർട്ട് ചെയ്യാത്ത ബണ്ടിലിൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "admin.reports.commons.filters.bundle.has_small_thumbnail": "അസാധാരണമായ ചെറിയ തംബ്നെയിൽ ഉണ്ട്", + + "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "തംബ്നെയിൽ ഇല്ലാത്ത ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "അസാധുവായ തംബ്നെയിൽ പേര് ഉണ്ട് (ഓരോ ഒറിജിനലിനും ഒരു തംബ്നെയിൽ ഉണ്ടെന്ന് അനുമാനിക്കുന്നു)", + + "admin.reports.commons.filters.bundle.has_non_generated_thumb": "ജനറേറ്റ് ചെയ്യാത്ത തംബ്നെയിൽ ഉണ്ട്", + + "admin.reports.commons.filters.bundle.no_license": "ലൈസൻസ് ഇല്ല", + + "admin.reports.commons.filters.bundle.has_license_documentation": "ലൈസൻസ് ബണ്ടിലിൽ ഡോക്യുമെന്റേഷൻ ഉണ്ട്", + + "admin.reports.commons.filters.permission": "പെർമിഷൻ ഫിൽട്ടറുകൾ", + + "admin.reports.commons.filters.permission.has_restricted_original": "ഇനത്തിന് റിസ്ട്രിക്റ്റഡ് ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "അനോണിമസ് ഉപയോക്താവിന് ആക്സസ് ചെയ്യാൻ കഴിയാത്ത ഒരു ഒറിജിനൽ ബിറ്റ്സ്ട്രീം ഇനത്തിന് ഉണ്ട്", + + "admin.reports.commons.filters.permission.has_restricted_thumbnail": "ഇനത്തിന് റിസ്ട്രിക്റ്റഡ് തംബ്നെയിൽ ഉണ്ട്", + + "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "അനോണിമസ് ഉപയോക്താവിന് ആക്സസ് ചെയ്യാൻ കഴിയാത്ത ഒരു തംബ്നെയിൽ ഇനത്തിന് ഉണ്ട്", + + "admin.reports.commons.filters.permission.has_restricted_metadata": "ഇനത്തിൽ നിയന്ത്രിത മെറ്റാഡാറ്റ ഉണ്ട്", + + "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "അജ്ഞാത ഉപയോക്താവിന് ലഭ്യമല്ലാത്ത മെറ്റാഡാറ്റ ഇനത്തിൽ ഉണ്ട്", + + "admin.search.breadcrumbs": "അഡ്മിൻ തിരയൽ", + + "admin.search.collection.edit": "എഡിറ്റ് ചെയ്യുക", + + "admin.search.community.edit": "എഡിറ്റ് ചെയ്യുക", + + "admin.search.item.delete": "ഇല്ലാതാക്കുക", + + "admin.search.item.edit": "എഡിറ്റ് ചെയ്യുക", + + "admin.search.item.make-private": "കണ്ടെത്താൻ സാധ്യമല്ലാത്തതാക്കുക", + + "admin.search.item.make-public": "കണ്ടെത്താൻ സാധ്യമാക്കുക", + + "admin.search.item.move": "സ്ഥലം മാറ്റുക", + + "admin.search.item.reinstate": "പുനഃസ്ഥാപിക്കുക", + + "admin.search.item.withdraw": "പിൻവലിക്കുക", + + "admin.search.title": "അഡ്മിൻ തിരയൽ", + + "administrativeView.search.results.head": "അഡ്മിൻ തിരയൽ", + + "admin.workflow.breadcrumbs": "വർക്ക്ഫ്ലോ അഡ്മിനിസ്റ്റർ ചെയ്യുക", + + "admin.workflow.title": "വർക്ക്ഫ്ലോ അഡ്മിനിസ്റ്റർ ചെയ്യുക", + + "admin.workflow.item.workflow": "വർക്ക്ഫ്ലോ", + + "admin.workflow.item.workspace": "വർക്ക്സ്പേസ്", + + "admin.workflow.item.delete": "ഇല്ലാതാക്കുക", + + "admin.workflow.item.send-back": "തിരികെ അയയ്ക്കുക", + + "admin.workflow.item.policies": "പോളിസികൾ", + + "admin.workflow.item.supervision": "സൂപ്പർവിഷൻ", + + "admin.metadata-import.breadcrumbs": "മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", + + "admin.batch-import.breadcrumbs": "ബാച്ച് ഇറക്കുമതി ചെയ്യുക", + + "admin.metadata-import.title": "മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", + + "admin.batch-import.title": "ബാച്ച് ഇറക്കുമതി ചെയ്യുക", + + "admin.metadata-import.page.header": "മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", + + "admin.batch-import.page.header": "ബാച്ച് ഇറക്കുമതി ചെയ്യുക", + + "admin.metadata-import.page.help": "ഫയലുകളിൽ ബാച്ച് മെറ്റാഡാറ്റ പ്രവർത്തനങ്ങൾ അടങ്ങിയ CSV ഫയലുകൾ ഇവിടെ ഡ്രോപ്പ് ചെയ്യാം അല്ലെങ്കിൽ ബ്രൗസ് ചെയ്യാം", + + "admin.batch-import.page.help": "ഇറക്കുമതി ചെയ്യാൻ ഒരു കളക്ഷൻ തിരഞ്ഞെടുക്കുക. തുടർന്ന്, ഇറക്കുമതി ചെയ്യാൻ ഇനങ്ങൾ ഉൾപ്പെടുത്തിയ ഒരു സിംപിൾ ആർക്കൈവ് ഫോർമാറ്റ് (SAF) zip ഫയൽ ഡ്രോപ്പ് ചെയ്യുക അല്ലെങ്കിൽ ബ്രൗസ് ചെയ്യുക", + + "admin.batch-import.page.toggle.help": "ഫയൽ അപ്ലോഡ് അല്ലെങ്കിൽ URL വഴി ഇറക്കുമതി ചെയ്യാൻ സാധ്യമാണ്, ഇൻപുട്ട് സോഴ്സ് സജ്ജമാക്കാൻ മുകളിലെ ടോഗിൾ ഉപയോഗിക്കുക", + + "admin.metadata-import.page.dropMsg": "ഇറക്കുമതി ചെയ്യാൻ ഒരു മെറ്റാഡാറ്റ CSV ഡ്രോപ്പ് ചെയ്യുക", + + "admin.batch-import.page.dropMsg": "ഇറക്കുമതി ചെയ്യാൻ ഒരു ബാച്ച് ZIP ഡ്രോപ്പ് ചെയ്യുക", + + "admin.metadata-import.page.dropMsgReplace": "ഇറക്കുമതി ചെയ്യാൻ മെറ്റാഡാറ്റ CSV മാറ്റിസ്ഥാപിക്കാൻ ഡ്രോപ്പ് ചെയ്യുക", + + "admin.batch-import.page.dropMsgReplace": "ഇറക്കുമതി ചെയ്യാൻ ബാച്ച് ZIP മാറ്റിസ്ഥാപിക്കാൻ ഡ്രോപ്പ് ചെയ്യുക", + + "admin.metadata-import.page.button.return": "തിരികെ", + + "admin.metadata-import.page.button.proceed": "തുടരുക", + + "admin.metadata-import.page.button.select-collection": "കളക്ഷൻ തിരഞ്ഞെടുക്കുക", + + "admin.metadata-import.page.error.addFile": "ആദ്യം ഫയൽ തിരഞ്ഞെടുക്കുക!", + + "admin.metadata-import.page.error.addFileUrl": "ആദ്യം ഫയൽ URL നൽകുക!", + + "admin.batch-import.page.error.addFile": "ആദ്യം ZIP ഫയൽ തിരഞ്ഞെടുക്കുക!", + + "admin.metadata-import.page.toggle.upload": "അപ്ലോഡ്", + + "admin.metadata-import.page.toggle.url": "URL", + + "admin.metadata-import.page.urlMsg": "ഇറക്കുമതി ചെയ്യാൻ ബാച്ച് ZIP url നൽകുക", + + "admin.metadata-import.page.validateOnly": "സാധുത പരിശോധിക്കുക മാത്രം", + + "admin.metadata-import.page.validateOnly.hint": "തിരഞ്ഞെടുത്താൽ, അപ്ലോഡ് ചെയ്ത CSV സാധുത പരിശോധിക്കും. നിങ്ങൾക്ക് കണ്ടെത്തിയ മാറ്റങ്ങളുടെ ഒരു റിപ്പോർട്ട് ലഭിക്കും, പക്ഷേ മാറ്റങ്ങൾ സേവ് ചെയ്യില്ല.", + + "advanced-workflow-action.rating.form.rating.label": "റേറ്റിംഗ്", + + "advanced-workflow-action.rating.form.rating.error": "നിങ്ങൾ ഇനത്തെ റേറ്റ് ചെയ്യണം", + + "advanced-workflow-action.rating.form.review.label": "റിവ്യൂ", + + "advanced-workflow-action.rating.form.review.error": "ഈ റേറ്റിംഗ് സബ്മിറ്റ് ചെയ്യാൻ നിങ്ങൾ ഒരു റിവ്യൂ നൽകണം", + + "advanced-workflow-action.rating.description": "ചുവടെ നിന്ന് ഒരു റേറ്റിംഗ് തിരഞ്ഞെടുക്കുക", + + "advanced-workflow-action.rating.description-requiredDescription": "ചുവടെ നിന്ന് ഒരു റേറ്റിംഗ് തിരഞ്ഞെടുക്കുക, ഒപ്പം ഒരു റിവ്യൂ ചേർക്കുക", + + "advanced-workflow-action.select-reviewer.description-single": "സബ്മിറ്റ് ചെയ്യുന്നതിന് മുമ്പ് ചുവടെ നിന്ന് ഒരു റിവ്യൂവർ തിരഞ്ഞെടുക്കുക", + + "advanced-workflow-action.select-reviewer.description-multiple": "സബ്മിറ്റ് ചെയ്യുന്നതിന് മുമ്പ് ചുവടെ നിന്ന് ഒന്നോ അതിലധികമോ റിവ്യൂവർമാരെ തിരഞ്ഞെടുക്കുക", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "ഇ-പീപ്പിൾ", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "ഇ-പീപ്പിൾ ചേർക്കുക", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "എല്ലാം ബ്രൗസ് ചെയ്യുക", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "നിലവിലെ അംഗങ്ങൾ", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "തിരയുക", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ഐഡി", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "പേര്", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ഐഡന്റിറ്റി", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ഇമെയിൽ", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "നെറ്റ് ഐഡി", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "നീക്കം ചെയ്യുക / ചേർക്കുക", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "\"{{name}}\" എന്ന പേരുള്ള അംഗത്തെ നീക്കം ചെയ്യുക", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "\"{{name}}\" എന്ന അംഗത്തെ വിജയകരമായി ചേർത്തു", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "\"{{name}}\" എന്ന അംഗത്തെ ചേർക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "\"{{name}}\" എന്ന അംഗത്തെ വിജയകരമായി ഇല്ലാതാക്കി", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "\"{{name}}\" എന്ന അംഗത്തെ ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "\"{{name}}\" എന്ന പേരുള്ള അംഗത്തെ ചേർക്കുക", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "നിലവിൽ ഒരു സജീവ ഗ്രൂപ്പും ഇല്ല, ആദ്യം ഒരു പേര് സബ്മിറ്റ് ചെയ്യുക.", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "ഗ്രൂപ്പിൽ ഇതുവരെ അംഗങ്ങളില്ല, തിരയുകയും ചേർക്കുകയും ചെയ്യുക.", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "ആ തിരയലിൽ ഇ-പീപ്പിൾ കണ്ടെത്തിയില്ല", + + "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "റിവ്യൂവർ തിരഞ്ഞെടുത്തിട്ടില്ല.", + + "admin.batch-import.page.validateOnly.hint": "തിരഞ്ഞെടുത്താൽ, അപ്ലോഡ് ചെയ്ത ZIP സാധുത പരിശോധിക്കും. നിങ്ങൾക്ക് കണ്ടെത്തിയ മാറ്റങ്ങളുടെ ഒരു റിപ്പോർട്ട് ലഭിക്കും, പക്ഷേ മാറ്റങ്ങൾ സേവ് ചെയ്യില്ല.", + + "admin.batch-import.page.remove": "നീക്കം ചെയ്യുക", + + "auth.errors.invalid-user": "അസാധുവായ ഇമെയിൽ വിലാസം അല്ലെങ്കിൽ പാസ്വേഡ്.", + + "auth.messages.expired": "നിങ്ങളുടെ സെഷൻ കാലഹരണപ്പെട്ടിരിക്കുന്നു. ദയവായി വീണ്ടും ലോഗിൻ ചെയ്യുക.", + + "auth.messages.token-refresh-failed": "നിങ്ങളുടെ സെഷൻ ടോക്കൻ റിഫ്രഷ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. ദയവായി വീണ്ടും ലോഗിൻ ചെയ്യുക.", + + "bitstream.download.page": "ഇപ്പോൾ {{bitstream}} ഡൗൺലോഡ് ചെയ്യുന്നു...", + + "bitstream.download.page.back": "തിരികെ", + + "bitstream.edit.authorizations.link": "ബിറ്റ്സ്ട്രീമിന്റെ പോളിസികൾ എഡിറ്റ് ചെയ്യുക", + + "bitstream.edit.authorizations.title": "ബിറ്റ്സ്ട്രീമിന്റെ പോളിസികൾ എഡിറ്റ് ചെയ്യുക", + + "bitstream.edit.return": "തിരികെ", + + "bitstream.edit.bitstream": "ബിറ്റ്സ്ട്രീം: ", + + "bitstream.edit.form.description.hint": "ഓപ്ഷണലായി, ഫയലിന്റെ ഒരു ഹ്രസ്വ വിവരണം നൽകുക, ഉദാഹരണത്തിന് \"പ്രധാന ലേഖനം\" അല്ലെങ്കിൽ \"പരീക്ഷണ ഡാറ്റ വായനകൾ\".", + + "bitstream.edit.form.description.label": "വിവരണം", + + "bitstream.edit.form.embargo.hint": "ആക്സസ് അനുവദിക്കുന്ന ആദ്യ ദിവസം. ഈ തീയതി ഈ ഫോമിൽ മാറ്റാൻ കഴിയില്ല. ഒരു ബിറ്റ്സ്ട്രീമിന് ഒരു എംബാർഗോ തീയതി സജ്ജമാക്കാൻ, ഇനം സ്റ്റാറ്റസ് ടാബിൽ പോയി, Authorizations... ക്ലിക്ക് ചെയ്യുക, ബിറ്റ്സ്ട്രീമിന്റെ READ പോളിസി സൃഷ്ടിക്കുക അല്ലെങ്കിൽ എഡിറ്റ് ചെയ്യുക, ആവശ്യമുള്ളതുപോലെ Start Date സജ്ജമാക്കുക.", + + "bitstream.edit.form.embargo.label": "നിർദ്ദിഷ്ട തീയതി വരെ എംബാർഗോ", + + "bitstream.edit.form.fileName.hint": "ബിറ്റ്സ്ട്രീമിനായി ഫയൽനാമം മാറ്റുക. ഇത് ഡിസ്പ്ലേ ബിറ്റ്സ്ട്രീം URL മാറ്റുമെന്നത് ശ്രദ്ധിക്കുക, പക്ഷേ പഴയ ലിങ്കുകൾ സീക്വൻസ് ഐഡി മാറാത്തിടത്തോളം ഇപ്പോഴും പരിഹരിക്കും.", + + "bitstream.edit.form.fileName.label": "ഫയൽനാമം", + + "bitstream.edit.form.newFormat.label": "പുതിയ ഫോർമാറ്റ് വിവരിക്കുക", + + "bitstream.edit.form.newFormat.hint": "ഫയൽ സൃഷ്ടിക്കാൻ നിങ്ങൾ ഉപയോഗിച്ച അപ്ലിക്കേഷൻ, വേർഷൻ നമ്പർ (ഉദാഹരണത്തിന്, \"ACMESoft SuperApp version 1.5\").", + + "bitstream.edit.form.primaryBitstream.label": "പ്രാഥമിക ഫയൽ", + + "bitstream.edit.form.selectedFormat.hint": "ഫോർമാറ്റ് മുകളിലെ ലിസ്റ്റിൽ ഇല്ലെങ്കിൽ, മുകളിൽ \"format not in list\" തിരഞ്ഞെടുക്കുക \"Describe new format\" കീഴിൽ അത് വിവരിക്കുക.", + + "bitstream.edit.form.selectedFormat.label": "തിരഞ്ഞെടുത്ത ഫോർമാറ്റ്", + + "bitstream.edit.form.selectedFormat.unknown": "ഫോർമാറ്റ് ലിസ്റ്റിൽ ഇല്ല", + + "bitstream.edit.notifications.error.format.title": "ബിറ്റ്സ്ട്രീമിന്റെ ഫോർമാറ്റ് സേവ് ചെയ്യുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", + + "bitstream.edit.notifications.error.primaryBitstream.title": "പ്രാഥമിക ബിറ്റ്സ്ട്രീം സേവ് ചെയ്യുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", + + "bitstream.edit.form.iiifLabel.label": "IIIF ലേബൽ", + + "bitstream.edit.form.iiifLabel.hint": "ഈ ഇമേജിനുള്ള കാൻവാസ് ലേബൽ. നൽകിയിട്ടില്ലെങ്കിൽ ഡിഫോൾട്ട് ലേബൽ ഉപയോഗിക്കും.", + + "bitstream.edit.form.iiifToc.label": "IIIF ഉള്ളടക്ക പട്ടിക", + + "bitstream.edit.form.iiifToc.hint": "ഇവിടെ ടെക്സ്റ്റ് ചേർക്കുന്നത് ഒരു പുതിയ ഉള്ളടക്ക പട്ടിക റേഞ്ചിന്റെ ആരംഭമാണ്.", + + "bitstream.edit.form.iiifWidth.label": "IIIF കാൻവാസ് വീതി", + + "bitstream.edit.form.iiifWidth.hint": "കാൻവാസ് വീതി സാധാരണയായി ഇമേജ് വീതിയുമായി പൊരുത്തപ്പെടണം.", + + "bitstream.edit.form.iiifHeight.label": "IIIF കാൻവാസ് ഉയരം", + + "bitstream.edit.form.iiifHeight.hint": "കാൻവാസ് ഉയരം സാധാരണയായി ഇമേജ് ഉയരത്തിന് പൊരുത്തപ്പെടണം.", + + "bitstream.edit.notifications.saved.content": "ഈ ബിറ്റ്സ്ട്രീമിലെ നിങ്ങളുടെ മാറ്റങ്ങൾ സേവ് ചെയ്തു.", + + "bitstream.edit.notifications.saved.title": "ബിറ്റ്സ്ട്രീം സേവ് ചെയ്തു", + + "bitstream.edit.title": "ബിറ്റ്സ്ട്രീം എഡിറ്റ് ചെയ്യുക", + + "bitstream-request-a-copy.alert.canDownload1": "ഈ ഫയലിലേക്ക് നിങ്ങൾക്ക് ഇതിനകം ആക്സസ് ഉണ്ട്. ഫയൽ ഡൗൺലോഡ് ചെയ്യാൻ ആഗ്രഹിക്കുന്നുവെങ്കിൽ ക്ലിക്ക് ചെയ്യുക ", + + "bitstream-request-a-copy.alert.canDownload2": "ഇവിടെ", + + "bitstream-request-a-copy.header": "ഫയലിന്റെ ഒരു പകർപ്പ് അഭ്യർത്ഥിക്കുക", + + "bitstream-request-a-copy.intro": "ഇനിപ്പറയുന്ന ഇനത്തിനായി ഒരു പകർപ്പ് അഭ്യർത്ഥിക്കാൻ ഇനിപ്പറയുന്ന വിവരങ്ങൾ നൽകുക: ", + + "bitstream-request-a-copy.intro.bitstream.one": "ഇനിപ്പറയുന്ന ഫയൽ അഭ്യർത്ഥിക്കുന്നു: ", + + "bitstream-request-a-copy.intro.bitstream.all": "എല്ലാ ഫയലുകളും അഭ്യർത്ഥിക്കുന്നു. ", + + "bitstream-request-a-copy.name.label": "പേര് *", + + "bitstream-request-a-copy.name.error": "പേര് ആവശ്യമാണ്", + + "bitstream-request-a-copy.email.label": "നിങ്ങളുടെ ഇമെയിൽ വിലാസം *", + + "bitstream-request-a-copy.email.hint": "ഫയൽ അയയ്ക്കാൻ ഈ ഇമെയിൽ വിലാസം ഉപയോഗിക്കുന്നു.", + + "bitstream-request-a-copy.email.error": "ദയവായി ഒരു സാധുവായ ഇമെയിൽ വിലാസം നൽകുക.", + + "bitstream-request-a-copy.allfiles.label": "ഫയലുകൾ", + + "bitstream-request-a-copy.files-all-false.label": "അഭ്യർത്ഥിച്ച ഫയൽ മാത്രം", + + "bitstream-request-a-copy.files-all-true.label": "പ്രതിബന്ധിത ആക്സസിലുള്ള എല്ലാ ഫയലുകളും (ഈ ഇനത്തിന്റെ)", + + "bitstream-request-a-copy.message.label": "സന്ദേശം", + + "bitstream-request-a-copy.return": "തിരികെ", + + "bitstream-request-a-copy.submit": "പകർപ്പ് അഭ്യർത്ഥിക്കുക", + + "bitstream-request-a-copy.submit.success": "ഇനം അഭ്യർത്ഥന വിജയകരമായി സബ്മിറ്റ് ചെയ്തു.", + + "bitstream-request-a-copy.submit.error": "ഇനം അഭ്യർത്ഥന സബ്മിറ്റ് ചെയ്യുന്നതിൽ എന്തോ തെറ്റുണ്ടായി.", + + "bitstream-request-a-copy.access-by-token.warning": "ലേഖകൻ അല്ലെങ്കിൽ റിപ്പോസിറ്ററി സ്റ്റാഫ് നിങ്ങൾക്ക് നൽകിയ സുരക്ഷിത ആക്സസ് ലിങ്ക് ഉപയോഗിച്ചാണ് നിങ്ങൾ ഈ ഇനം കാണുന്നത്. അനധികൃത ഉപയോക്താക്കൾക്ക് ഈ ലിങ്ക് പങ്കിടാതിരിക്കേണ്ടത് പ്രധാനമാണ്.", + + "bitstream-request-a-copy.access-by-token.expiry-label": "ഈ ലിങ്ക് വഴി നൽകിയ ആക്സസ് കാലഹരണപ്പെടുന്നത്", + + "bitstream-request-a-copy.access-by-token.expired": "ഈ ലിങ്ക് വഴി നൽകിയ ആക്സസ് ഇനി സാധ്യമല്ല. ആക്സസ് കാലഹരണപ്പെട്ടത്", + + "bitstream-request-a-copy.access-by-token.not-granted": "ഈ ലിങ്ക് വഴി നൽകിയ ആക്സസ് സാധ്യമല്ല. ആക്സസ് നൽകിയിട്ടില്ല, അല്ലെങ്കിൽ റദ്ദാക്കിയിരിക്കുന്നു.", + + "bitstream-request-a-copy.access-by-token.re-request": "പുതിയ ആക്സസ് അഭ്യർത്ഥിക്കാൻ പ്രതിബന്ധിത ഡൗൺലോഡ് ലിങ്കുകൾ പിന്തുടരുക.", + + "bitstream-request-a-copy.access-by-token.alt-text": "ഈ ഇനത്തിലേക്കുള്ള ആക്സസ് ഒരു സുരക്ഷിത ടോക്കൺ വഴി നൽകിയിരിക്കുന്നു", + + "browse.back.all-results": "എല്ലാ ബ്രൗസ് ഫലങ്ങളും", + + "browse.comcol.by.author": "രചയിതാവ് പ്രകാരം", + + "browse.comcol.by.dateissued": "ഇഷ്യൂ തീയതി പ്രകാരം", + + "browse.comcol.by.subject": "വിഷയം പ്രകാരം", + + "browse.comcol.by.srsc": "വിഷയ വിഭാഗം പ്രകാരം", + + "browse.comcol.by.nsi": "നോർവീജിയൻ സയൻസ് ഇൻഡക്സ് പ്രകാരം", + + "browse.comcol.by.title": "ശീർഷകം പ്രകാരം", + + "browse.comcol.head": "ബ്രൗസ് ചെയ്യുക", + + "browse.empty": "കാണിക്കാൻ ഇനങ്ങളൊന്നുമില്ല.", + + "browse.metadata.author": "രചയിതാവ്", + + "browse.metadata.dateissued": "ഇഷ്യൂ തീയതി", + + "browse.metadata.subject": "വിഷയം", + + "browse.metadata.title": "ശീർഷകം", + + "browse.metadata.srsc": "വിഷയ വിഭാഗം", + + "browse.metadata.author.breadcrumbs": "രചയിതാവ് പ്രകാരം ബ്രൗസ് ചെയ്യുക", + + "browse.metadata.dateissued.breadcrumbs": "തീയതി പ്രകാരം ബ്രൗസ് ചെയ്യുക", + + "browse.metadata.subject.breadcrumbs": "വിഷയം പ്രകാരം ബ്രൗസ് ചെയ്യുക", + + "browse.metadata.srsc.breadcrumbs": "വിഷയ വിഭാഗം പ്രകാരം ബ്രൗസ് ചെയ്യുക", + + "browse.metadata.srsc.tree.description": "തിരയൽ ഫിൽട്ടറായി ചേർക്കാൻ ഒരു വിഷയം തിരഞ്ഞെടുക്കുക", + + "browse.metadata.nsi.breadcrumbs": "നോർവീജിയൻ സയൻസ് ഇൻഡക്സ് പ്രകാരം ബ്രൗസ് ചെയ്യുക", + + "browse.metadata.nsi.tree.description": "തിരയൽ ഫിൽട്ടറായി ചേർക്കാൻ ഒരു ഇൻഡക്സ് തിരഞ്ഞെടുക്കുക", + + "browse.metadata.title.breadcrumbs": "ശീർഷകം പ്രകാരം ബ്രൗസ് ചെയ്യുക", + + "browse.metadata.map": "ജിയോലൊക്കേഷൻ പ്രകാരം ബ്രൗസ് ചെയ്യുക", + + "browse.metadata.map.breadcrumbs": "ജിയോലൊക്കേഷൻ (മാപ്പ്) പ്രകാരം ബ്രൗസ് ചെയ്യുക", + + "browse.metadata.map.count.items": "ഇനങ്ങൾ", + + "pagination.next.button": "അടുത്തത്", + + "pagination.previous.button": "മുമ്പത്തേത്", + + "pagination.next.button.disabled.tooltip": "ഫലങ്ങളുടെ കൂടുതൽ പേജുകളില്ല", + + "pagination.page-number-bar": "പേജ് നാവിഗേഷനായി കൺട്രോൾ ബാർ, ഐഡി ഉള്ള ഘടകവുമായി ബന്ധപ്പെട്ടത്: ", + + "browse.startsWith": ", {{ startsWith }} ഉപയോഗിച്ച് ആരംഭിക്കുന്നു", + + "browse.startsWith.choose_start": "(ആരംഭം തിരഞ്ഞെടുക്കുക)", + + "browse.startsWith.choose_year": "(വർഷം തിരഞ്ഞെടുക്കുക)", + + "browse.startsWith.choose_year.label": "ഇഷ്യൂ വർഷം തിരഞ്ഞെടുക്കുക", + + "browse.startsWith.jump": "വർഷം അല്ലെങ്കിൽ മാസം ഉപയോഗിച്ച് ഫലങ്ങൾ ഫിൽട്ടർ ചെയ്യുക", + + "browse.startsWith.months.april": "ഏപ്രിൽ", + + "browse.startsWith.months.august": "ഓഗസ്റ്റ്", + + "browse.startsWith.months.december": "ഡിസംബർ", + + "browse.startsWith.months.february": "ഫെബ്രുവരി", + + "browse.startsWith.months.january": "ജനുവരി", + + "browse.startsWith.months.july": "ജൂലൈ", + + "browse.startsWith.months.june": "ജൂൺ", + + "browse.startsWith.months.march": "മാർച്ച്", + + "browse.startsWith.months.may": "മേയ്", + + "browse.startsWith.months.none": "(മാസം തിരഞ്ഞെടുക്കുക)", + + "browse.startsWith.months.none.label": "ഇഷ്യൂ മാസം തിരഞ്ഞെടുക്കുക", + + "browse.startsWith.months.november": "നവംബർ", + + "browse.startsWith.months.october": "ഒക്ടോബർ", + + "browse.startsWith.months.september": "സെപ്റ്റംബർ", + + "browse.startsWith.submit": "ബ്രൗസ് ചെയ്യുക", + + "browse.startsWith.type_date": "തീയതി അനുസരിച്ച് ഫിൽട്ടർ ചെയ്യുക", + + "browse.startsWith.type_date.label": "അല്ലെങ്കിൽ ഒരു തീയതി (വർഷം-മാസം) ടൈപ്പ് ചെയ്ത് ബ്രൗസ് ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", + + "browse.startsWith.type_text": "ആദ്യത്തെ കുറച്ച് അക്ഷരങ്ങൾ ടൈപ്പ് ചെയ്ത് ഫിൽട്ടർ ചെയ്യുക", + + "browse.startsWith.input": "ഫിൽട്ടർ", + + "browse.taxonomy.button": "ബ്രൗസ് ചെയ്യുക", + + "browse.title": "{{ field }}{{ startsWith }} {{ value }} ഉപയോഗിച്ച് ബ്രൗസ് ചെയ്യുന്നു", + + "browse.title.page": "{{ field }} {{ value }} ഉപയോഗിച്ച് ബ്രൗസ് ചെയ്യുന്നു", + + "search.browse.item-back": "ഫലങ്ങളിലേക്ക് തിരികെ", + + "chips.remove": "ചിപ്പ് നീക്കം ചെയ്യുക", + + "claimed-approved-search-result-list-element.title": "അംഗീകരിച്ചു", + + "claimed-declined-search-result-list-element.title": "നിരസിച്ചു, സമർപ്പകനിലേക്ക് തിരികെ അയച്ചു", + + "claimed-declined-task-search-result-list-element.title": "നിരസിച്ചു, റിവ്യൂ മാനേജറുടെ വർക്ക്ഫ്ലോയിലേക്ക് തിരികെ അയച്ചു", + + "collection.create.breadcrumbs": "കളക്ഷൻ സൃഷ്ടിക്കുക", + + "collection.browse.logo": "ഒരു കളക്ഷൻ ലോഗോയ്ക്കായി ബ്രൗസ് ചെയ്യുക", + + "collection.create.head": "ഒരു കളക്ഷൻ സൃഷ്ടിക്കുക", + + "collection.create.notifications.success": "കളക്ഷൻ വിജയകരമായി സൃഷ്ടിച്ചു", + + "collection.create.sub-head": "{{ parent }} കമ്മ്യൂണിറ്റിക്കായി ഒരു കളക്ഷൻ സൃഷ്ടിക്കുക", + + "collection.curate.header": "കളക്ഷൻ ക്യൂറേറ്റ് ചെയ്യുക: {{collection}}", + + "collection.delete.cancel": "റദ്ദാക്കുക", + + "collection.delete.confirm": "സ്ഥിരീകരിക്കുക", + + "collection.delete.processing": "ഡിലീറ്റ് ചെയ്യുന്നു", + + "collection.delete.head": "കളക്ഷൻ ഡിലീറ്റ് ചെയ്യുക", + + "collection.delete.notification.fail": "കളക്ഷൻ ഡിലീറ്റ് ചെയ്യാൻ കഴിഞ്ഞില്ല", + + "collection.delete.notification.success": "കളക്ഷൻ വിജയകരമായി ഡിലീറ്റ് ചെയ്തു", + + "collection.delete.text": "\"{{ dso }}\" കളക്ഷൻ ഡിലീറ്റ് ചെയ്യണമെന്ന് ഉറപ്പാണോ?", + + "collection.edit.delete": "ഈ കളക്ഷൻ ഡിലീറ്റ് ചെയ്യുക", + + "collection.edit.head": "കളക്ഷൻ എഡിറ്റ് ചെയ്യുക", + + "collection.edit.breadcrumbs": "കളക്ഷൻ എഡിറ്റ് ചെയ്യുക", + + "collection.edit.tabs.mapper.head": "ഇനം മാപ്പർ", + + "collection.edit.tabs.item-mapper.title": "കളക്ഷൻ എഡിറ്റ് - ഇനം മാപ്പർ", + + "collection.edit.item-mapper.cancel": "റദ്ദാക്കുക", + + "collection.edit.item-mapper.collection": "കളക്ഷൻ: \"{{name}}\"", + + "collection.edit.item-mapper.confirm": "തിരഞ്ഞെടുത്ത ഇനങ്ങൾ മാപ്പ് ചെയ്യുക", + + "collection.edit.item-mapper.description": "ഇത് ഐറ്റം മാപ്പർ ടൂൾ ആണ്, ഇത് കളക്ഷൻ അഡ്മിനിസ്ട്രേറ്റർമാർക്ക് മറ്റ് കളക്ഷനുകളിൽ നിന്ന് ഇനങ്ങൾ ഈ കളക്ഷനിലേക്ക് മാപ്പ് ചെയ്യാൻ അനുവദിക്കുന്നു. നിങ്ങൾക്ക് മറ്റ് കളക്ഷനുകളിൽ നിന്ന് ഇനങ്ങൾ തിരയാനും മാപ്പ് ചെയ്യാനും കഴിയും, അല്ലെങ്കിൽ നിലവിൽ മാപ്പ് ചെയ്ത ഇനങ്ങളുടെ ലിസ്റ്റ് ബ്രൗസ് ചെയ്യാനും കഴിയും.", + + "collection.edit.item-mapper.head": "ഇനം മാപ്പർ - മറ്റ് കളക്ഷനുകളിൽ നിന്ന് ഇനങ്ങൾ മാപ്പ് ചെയ്യുക", + + "collection.edit.item-mapper.no-search": "തിരയാൻ ഒരു ക്വറി നൽകുക", + + "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} ഇനങ്ങൾ മാപ്പ് ചെയ്യുന്നതിൽ പിശകുകൾ ഉണ്ടായി.", + + "collection.edit.item-mapper.notifications.map.error.head": "മാപ്പിംഗ് പിശകുകൾ", + + "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} ഇനങ്ങൾ വിജയകരമായി മാപ്പ് ചെയ്തു.", + + "collection.edit.item-mapper.notifications.map.success.head": "മാപ്പിംഗ് പൂർത്തിയായി", + + "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} ഇനങ്ങളുടെ മാപ്പിംഗ് നീക്കം ചെയ്യുന്നതിൽ പിശകുകൾ ഉണ്ടായി.", + + "collection.edit.item-mapper.notifications.unmap.error.head": "മാപ്പിംഗ് നീക്കം ചെയ്യുന്നതിൽ പിശകുകൾ", + + "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} ഇനങ്ങളുടെ മാപ്പിംഗ് വിജയകരമായി നീക്കം ചെയ്തു.", + + "collection.edit.item-mapper.notifications.unmap.success.head": "മാപ്പിംഗ് നീക്കം ചെയ്യൽ പൂർത്തിയായി", + + "collection.edit.item-mapper.remove": "തിരഞ്ഞെടുത്ത ഇനം മാപ്പിംഗുകൾ നീക്കം ചെയ്യുക", + + "collection.edit.item-mapper.search-form.placeholder": "ഇനങ്ങൾ തിരയുക...", + + "collection.edit.item-mapper.tabs.browse": "മാപ്പ് ചെയ്ത ഇനങ്ങൾ ബ്രൗസ് ചെയ്യുക", + + "collection.edit.item-mapper.tabs.map": "പുതിയ ഇനങ്ങൾ മാപ്പ് ചെയ്യുക", + + "collection.edit.logo.delete.title": "ലോഗോ ഡിലീറ്റ് ചെയ്യുക", + + "collection.edit.logo.delete-undo.title": "ഡിലീറ്റ് റദ്ദാക്കുക", + + "collection.edit.logo.label": "കളക്ഷൻ ലോഗോ", + + "collection.edit.logo.notifications.add.error": "കളക്ഷൻ ലോഗോ അപ്ലോഡ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. വീണ്ടും ശ്രമിക്കുന്നതിന് മുമ്പ് ഉള്ളടക്കം പരിശോധിക്കുക.", + + "collection.edit.logo.notifications.add.success": "കളക്ഷൻ ലോഗോ വിജയകരമായി അപ്ലോഡ് ചെയ്തു.", + + "collection.edit.logo.notifications.delete.success.title": "ലോഗോ ഡിലീറ്റ് ചെയ്തു", + + "collection.edit.logo.notifications.delete.success.content": "കളക്ഷന്റെ ലോഗോ വിജയകരമായി ഡിലീറ്റ് ചെയ്തു", + + "collection.edit.logo.notifications.delete.error.title": "ലോഗോ ഡിലീറ്റ് ചെയ്യുന്നതിൽ പിശക്", + + "collection.edit.logo.upload": "അപ്ലോഡ് ചെയ്യാൻ ഒരു കളക്ഷൻ ലോഗോ ഡ്രോപ്പ് ചെയ്യുക", + + "collection.edit.notifications.success": "കളക്ഷൻ വിജയകരമായി എഡിറ്റ് ചെയ്തു", + + "collection.edit.return": "തിരികെ", + + "collection.edit.tabs.access-control.head": "ആക്സസ് കൺട്രോൾ", + + "collection.edit.tabs.access-control.title": "കളക്ഷൻ എഡിറ്റ് - ആക്സസ് കൺട്രോൾ", + + "collection.edit.tabs.curate.head": "ക്യൂറേറ്റ്", + + "collection.edit.tabs.curate.title": "കളക്ഷൻ എഡിറ്റ് - ക്യൂറേറ്റ്", + + "collection.edit.tabs.authorizations.head": "അനുമതികൾ", + + "collection.edit.tabs.authorizations.title": "കളക്ഷൻ എഡിറ്റ് - അനുമതികൾ", + + "collection.edit.item.authorizations.load-bundle-button": "കൂടുതൽ ബണ്ടിലുകൾ ലോഡ് ചെയ്യുക", + + "collection.edit.item.authorizations.load-more-button": "കൂടുതൽ ലോഡ് ചെയ്യുക", + + "collection.edit.item.authorizations.show-bitstreams-button": "ബണ്ടിലിനായി ബിറ്റ്സ്ട്രീം പോളിസികൾ കാണിക്കുക", + + "collection.edit.tabs.metadata.head": "മെറ്റാഡാറ്റ എഡിറ്റ് ചെയ്യുക", + + "collection.edit.tabs.metadata.title": "കളക്ഷൻ എഡിറ്റ് - മെറ്റാഡാറ്റ", + + "collection.edit.tabs.roles.head": "റോളുകൾ നിയോഗിക്കുക", + + "collection.edit.tabs.roles.title": "കളക്ഷൻ എഡിറ്റ് - റോളുകൾ", + + "collection.edit.tabs.source.external": "ഈ കളക്ഷൻ ഒരു ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് അതിന്റെ ഉള്ളടക്കം ഹാർവെസ്റ്റ് ചെയ്യുന്നു", + + "collection.edit.tabs.source.form.errors.oaiSource.required": "ടാർഗെറ്റ് കളക്ഷന്റെ ഒരു സെറ്റ് ഐഡി നൽകണം.", + + "collection.edit.tabs.source.form.harvestType": "ഹാർവെസ്റ്റ് ചെയ്യുന്ന ഉള്ളടക്കം", + + "collection.edit.tabs.source.form.head": "ഒരു ബാഹ്യ സ്രോതസ്സ് കോൺഫിഗർ ചെയ്യുക", + + "collection.edit.tabs.source.form.metadataConfigId": "മെറ്റാഡാറ്റ ഫോർമാറ്റ്", + + "collection.edit.tabs.source.form.oaiSetId": "OAI സ്പെസിഫിക് സെറ്റ് ഐഡി", + + "collection.edit.tabs.source.form.oaiSource": "OAI പ്രൊവൈഡർ", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "മെറ്റാഡാറ്റയും ബിറ്റ്സ്ട്രീമുകളും ഹാർവെസ്റ്റ് ചെയ്യുക (ORE സപ്പോർട്ട് ആവശ്യമാണ്)", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "മെറ്റാഡാറ്റയും ബിറ്റ്സ്ട്രീമുകളിലേക്കുള്ള റഫറൻസുകളും ഹാർവെസ്റ്റ് ചെയ്യുക (ORE സപ്പോർട്ട് ആവശ്യമാണ്)", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "മെറ്റാഡാറ്റ മാത്രം ഹാർവെസ്റ്റ് ചെയ്യുക", + + "collection.edit.tabs.source.head": "ഉള്ളടക്ക സ്രോതസ്സ്", + + "collection.edit.tabs.source.notifications.discarded.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ ഉപേക്ഷിച്ചു. നിങ്ങളുടെ മാറ്റങ്ങൾ പുനഃസ്ഥാപിക്കാൻ 'അൺഡു' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", + + "collection.edit.tabs.source.notifications.discarded.title": "മാറ്റങ്ങൾ ഉപേക്ഷിച്ചു", + + "collection.edit.tabs.source.notifications.invalid.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ സേവ് ചെയ്തിട്ടില്ല. സേവ് ചെയ്യുന്നതിന് മുമ്പ് എല്ലാ ഫീൽഡുകളും സാധുതയുള്ളതാണെന്ന് ഉറപ്പാക്കുക.", + + "collection.edit.tabs.source.notifications.invalid.title": "മെറ്റാഡാറ്റ അസാധുവാണ്", + + "collection.edit.tabs.source.notifications.saved.content": "ഈ കളക്ഷന്റെ ഉള്ളടക്ക സ്രോതസ്സിലേക്കുള്ള നിങ്ങളുടെ മാറ്റങ്ങൾ സേവ് ചെയ്തു.", + + "collection.edit.tabs.source.notifications.saved.title": "ഉള്ളടക്ക സ്രോതസ്സ് സേവ് ചെയ്തു", + + "collection.edit.tabs.source.title": "കളക്ഷൻ എഡിറ്റ് - ഉള്ളടക്ക സ്രോതസ്സ്", + + "collection.edit.template.add-button": "ചേർക്കുക", + + "collection.edit.template.breadcrumbs": "ഇനം ടെംപ്ലേറ്റ്", + + "collection.edit.template.cancel": "റദ്ദാക്കുക", + + "collection.edit.template.delete-button": "ഡിലീറ്റ് ചെയ്യുക", + + "collection.edit.template.edit-button": "എഡിറ്റ് ചെയ്യുക", + + "collection.edit.template.error": "ടെംപ്ലേറ്റ് ഇനം വീണ്ടെടുക്കുന്നതിൽ ഒരു പിശക് ഉണ്ടായി", + + "collection.edit.template.head": "\"{{ collection }}\" കളക്ഷനായി ടെംപ്ലേറ്റ് ഇനം എഡിറ്റ് ചെയ്യുക", + + "collection.edit.template.label": "ടെംപ്ലേറ്റ് ഇനം", + + "collection.edit.template.loading": "ടെംപ്ലേറ്റ് ഇനം ലോഡ് ചെയ്യുന്നു...", + + "collection.edit.template.notifications.delete.error": "ഇനം ടെംപ്ലേറ്റ് ഡിലീറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു", + + "collection.edit.template.notifications.delete.success": "ഇനം ടെംപ്ലേറ്റ് വിജയകരമായി ഡിലീറ്റ് ചെയ്തു", + + "collection.edit.template.title": "ടെംപ്ലേറ്റ് ഇനം എഡിറ്റ് ചെയ്യുക", + + "collection.form.abstract": "ഹ്രസ്വ വിവരണം", + + "collection.form.description": "പരിചയ വാചകം (HTML)", + + "collection.form.errors.title.required": "ദയവായി ഒരു കളക്ഷൻ പേര് നൽകുക", + + "collection.form.license": "ലൈസൻസ്", + + "collection.form.provenance": "പ്രൊവിനൻസ്", + + "collection.form.rights": "കോപ്പിറൈറ്റ് വാചകം (HTML)", + + "collection.form.tableofcontents": "വാർത്തകൾ (HTML)", + + "collection.form.title": "പേര്", + + "collection.form.entityType": "എന്റിറ്റി തരം", + + "collection.listelement.badge": "കളക്ഷൻ", + + "collection.logo": "കളക്ഷൻ ലോഗോ", + + "collection.page.browse.search.head": "തിരയുക", + + "collection.page.edit": "ഈ കളക്ഷൻ എഡിറ്റ് ചെയ്യുക", + + "collection.page.handle": "ഈ കളക്ഷനായി സ്ഥിരമായ URI", + + "collection.page.license": "ലൈസൻസ്", + + "collection.page.news": "വാർത്തകൾ", + + "collection.page.options": "ഓപ്ഷനുകൾ", + + "collection.search.breadcrumbs": "തിരയുക", + + "collection.search.results.head": "തിരയൽ ഫലങ്ങൾ", + + "collection.select.confirm": "തിരഞ്ഞെടുത്തത് സ്ഥിരീകരിക്കുക", + + "collection.select.empty": "കാണിക്കാൻ കളക്ഷനുകളൊന്നുമില്ല", + + "collection.select.table.selected": "തിരഞ്ഞെടുത്ത കളക്ഷനുകൾ", + + "collection.select.table.select": "കളക്ഷൻ തിരഞ്ഞെടുക്കുക", + + "collection.select.table.deselect": "കളക്ഷൻ അൺസെലക്ട് ചെയ്യുക", + + "collection.select.table.title": "തലക്കെട്ട്", + + "collection.source.controls.head": "ഹാർവെസ്റ്റ് നിയന്ത്രണങ്ങൾ", + + "collection.source.controls.test.submit.error": "സെറ്റിംഗുകൾ പരീക്ഷിക്കുന്നതിൽ എന്തോ പിഴവ് സംഭവിച്ചു", + + "collection.source.controls.test.failed": "സെറ്റിംഗുകൾ പരീക്ഷിക്കുന്നതിനുള്ള സ്ക്രിപ്റ്റ് പരാജയപ്പെട്ടു", + + "collection.source.controls.test.completed": "സെറ്റിംഗുകൾ പരീക്ഷിക്കുന്നതിനുള്ള സ്ക്രിപ്റ്റ് വിജയകരമായി പൂർത്തിയായി", + + "collection.source.controls.test.submit": "കോൺഫിഗറേഷൻ പരീക്ഷിക്കുക", + + "collection.source.controls.test.running": "കോൺഫിഗറേഷൻ പരീക്ഷിക്കുന്നു...", + + "collection.source.controls.import.submit.success": "ഇംപോർട്ട് വിജയകരമായി ആരംഭിച്ചു", + + "collection.source.controls.import.submit.error": "ഇംപോർട്ട് ആരംഭിക്കുന്നതിൽ എന്തോ പിഴവ് സംഭവിച്ചു", + + "collection.source.controls.import.submit": "ഇപ്പോൾ ഇംപോർട്ട് ചെയ്യുക", + + "collection.source.controls.import.running": "ഇംപോർട്ട് ചെയ്യുന്നു...", + + "collection.source.controls.import.failed": "ഇംപോർട്ട് ചെയ്യുന്നതിനിടയിൽ ഒരു പിശക് സംഭവിച്ചു", + + "collection.source.controls.import.completed": "ഇംപോർട്ട് പൂർത്തിയായി", + + "collection.source.controls.reset.submit.success": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യൽ വിജയകരമായി ആരംഭിച്ചു", + + "collection.source.controls.reset.submit.error": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യൽ ആരംഭിക്കുന്നതിൽ എന്തോ പിഴവ് സംഭവിച്ചു", + + "collection.source.controls.reset.failed": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യുന്നതിനിടയിൽ ഒരു പിശക് സംഭവിച്ചു", + + "collection.source.controls.reset.completed": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യൽ പൂർത്തിയായി", + + "collection.source.controls.reset.submit": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യുക", + + "collection.source.controls.reset.running": "റീസെറ്റ് ചെയ്ത് വീണ്ടും ഇംപോർട്ട് ചെയ്യുന്നു...", + + "collection.source.controls.harvest.status": "ഹാർവെസ്റ്റ് സ്റ്റാറ്റസ്:", + + "collection.source.controls.harvest.start": "ഹാർവെസ്റ്റ് ആരംഭിക്കുന്ന സമയം:", + + "collection.source.controls.harvest.last": "അവസാനമായി ഹാർവെസ്റ്റ് ചെയ്ത സമയം:", + + "collection.source.controls.harvest.message": "ഹാർവെസ്റ്റ് വിവരം:", + + "collection.source.controls.harvest.no-information": "N/A", + + "collection.source.update.notifications.error.content": "നൽകിയ സെറ്റിംഗുകൾ പരീക്ഷിച്ചു, പക്ഷേ പ്രവർത്തിച്ചില്ല.", + + "collection.source.update.notifications.error.title": "സെർവർ പിശക്", + + "communityList.breadcrumbs": "കമ്മ്യൂണിറ്റി ലിസ്റ്റ്", + + "communityList.tabTitle": "കമ്മ്യൂണിറ്റി ലിസ്റ്റ്", + + "communityList.title": "കമ്മ്യൂണിറ്റികളുടെ ലിസ്റ്റ്", + + "communityList.showMore": "കൂടുതൽ കാണിക്കുക", + + "communityList.expand": "{{ name }} വികസിപ്പിക്കുക", + + "communityList.collapse": "{{ name }} ചുരുക്കുക", + + "community.browse.logo": "ഒരു കമ്മ്യൂണിറ്റി ലോഗോയ്ക്കായി ബ്രൗസ് ചെയ്യുക", + + "community.subcoms-cols.breadcrumbs": "സബ്കമ്മ്യൂണിറ്റികളും കളക്ഷനുകളും", + + "community.create.breadcrumbs": "കമ്മ്യൂണിറ്റി സൃഷ്ടിക്കുക", + + "community.create.head": "ഒരു കമ്മ്യൂണിറ്റി സൃഷ്ടിക്കുക", + + "community.create.notifications.success": "കമ്മ്യൂണിറ്റി വിജയകരമായി സൃഷ്ടിച്ചു", + + "community.create.sub-head": "{{ parent }} കമ്മ്യൂണിറ്റിക്കായി ഒരു സബ്-കമ്മ്യൂണിറ്റി സൃഷ്ടിക്കുക", + + "community.curate.header": "കമ്മ്യൂണിറ്റി ക്യൂറേറ്റ് ചെയ്യുക: {{community}}", + + "community.delete.cancel": "റദ്ദാക്കുക", + + "community.delete.confirm": "സ്ഥിരീകരിക്കുക", + + "community.delete.processing": "ഡിലീറ്റ് ചെയ്യുന്നു...", + + "community.delete.head": "കമ്മ്യൂണിറ്റി ഡിലീറ്റ് ചെയ്യുക", + + "community.delete.notification.fail": "കമ്മ്യൂണിറ്റി ഡിലീറ്റ് ചെയ്യാൻ കഴിഞ്ഞില്ല", + + "community.delete.notification.success": "കമ്മ്യൂണിറ്റി വിജയകരമായി ഡിലീറ്റ് ചെയ്തു", + + "community.delete.text": "\"{{ dso }}\" കമ്മ്യൂണിറ്റി ഡിലീറ്റ് ചെയ്യണമെന്ന് ഉറപ്പാണോ?", + + "community.edit.delete": "ഈ കമ്മ്യൂണിറ്റി ഡിലീറ്റ് ചെയ്യുക", + + "community.edit.head": "കമ്മ്യൂണിറ്റി എഡിറ്റ് ചെയ്യുക", + + "community.edit.breadcrumbs": "കമ്മ്യൂണിറ്റി എഡിറ്റ് ചെയ്യുക", + + "community.edit.logo.delete.title": "ലോഗോ ഡിലീറ്റ് ചെയ്യുക", + + "community-collection.edit.logo.delete.title": "ഡിലീഷൻ സ്ഥിരീകരിക്കുക", + + "community.edit.logo.delete-undo.title": "ഡിലീറ്റ് റദ്ദാക്കുക", + + "community-collection.edit.logo.delete-undo.title": "ഡിലീറ്റ് റദ്ദാക്കുക", + + "community.edit.logo.label": "കമ്മ്യൂണിറ്റി ലോഗോ", + + "community.edit.logo.notifications.add.error": "കമ്മ്യൂണിറ്റി ലോഗോ അപ്ലോഡ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. വീണ്ടും ശ്രമിക്കുന്നതിന് മുമ്പ് ഉള്ളടക്കം പരിശോധിക്കുക.", + + "community.edit.logo.notifications.add.success": "കമ്മ്യൂണിറ്റി ലോഗോ വിജയകരമായി അപ്ലോഡ് ചെയ്തു.", + + "community.edit.logo.notifications.delete.success.title": "ലോഗോ ഡിലീറ്റ് ചെയ്തു", + + "community.edit.logo.notifications.delete.success.content": "കമ്മ്യൂണിറ്റിയുടെ ലോഗോ വിജയകരമായി ഡിലീറ്റ് ചെയ്തു", + + "community.edit.logo.notifications.delete.error.title": "ലോഗോ ഡിലീറ്റ് ചെയ്യുന്നതിൽ പിശക്", + + "community.edit.logo.upload": "അപ്ലോഡ് ചെയ്യാൻ ഒരു കമ്മ്യൂണിറ്റി ലോഗോ ഡ്രോപ്പ് ചെയ്യുക", + + "community.edit.notifications.success": "കമ്മ്യൂണിറ്റി വിജയകരമായി എഡിറ്റ് ചെയ്തു", + + "community.edit.notifications.unauthorized": "ഈ മാറ്റം വരുത്താൻ നിങ്ങൾക്ക് അനുമതിയില്ല", + + "community.edit.notifications.error": "കമ്മ്യൂണിറ്റി എഡിറ്റ് ചെയ്യുന്നതിനിടയിൽ ഒരു പിശക് സംഭവിച്ചു", + + "community.edit.return": "തിരികെ", + + "community.edit.tabs.curate.head": "ക്യൂറേറ്റ്", + + "community.edit.tabs.curate.title": "കമ്മ്യൂണിറ്റി എഡിറ്റ് - ക്യൂറേറ്റ്", + + "community.edit.tabs.access-control.head": "ആക്സസ് കൺട്രോൾ", + + "community.edit.tabs.access-control.title": "കമ്മ്യൂണിറ്റി എഡിറ്റ് - ആക്സസ് കൺട്രോൾ", + + "community.edit.tabs.metadata.head": "മെറ്റാഡാറ്റ എഡിറ്റ് ചെയ്യുക", + + "community.edit.tabs.metadata.title": "കമ്മ്യൂണിറ്റി എഡിറ്റ് - മെറ്റാഡാറ്റ", + + "community.edit.tabs.roles.head": "റോളുകൾ നിയോഗിക്കുക", + + "community.edit.tabs.roles.title": "കമ്മ്യൂണിറ്റി എഡിറ്റ് - റോളുകൾ", + + "community.edit.tabs.authorizations.head": "അനുമതികൾ", + + "community.edit.tabs.authorizations.title": "കമ്മ്യൂണിറ്റി എഡിറ്റ് - അനുമതികൾ", + + "community.listelement.badge": "കമ്മ്യൂണിറ്റി", + + "community.logo": "കമ്മ്യൂണിറ്റി ലോഗോ", + + "comcol-role.edit.no-group": "ഒന്നുമില്ല", + + "comcol-role.edit.create": "സൃഷ്ടിക്കുക", + + "comcol-role.edit.create.error.title": "'{{ role }}' റോളിനായി ഒരു ഗ്രൂപ്പ് സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "comcol-role.edit.restrict": "പരിമിതപ്പെടുത്തുക", + + "comcol-role.edit.delete": "ഡിലീറ്റ് ചെയ്യുക", + + "comcol-role.edit.delete.error.title": "'{{ role }}' റോളിന്റെ ഗ്രൂപ്പ് ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "comcol-role.edit.community-admin.name": "അഡ്മിനിസ്ട്രേറ്റർമാർ", + + "comcol-role.edit.collection-admin.name": "അഡ്മിനിസ്ട്രേറ്റർമാർ", + + "comcol-role.edit.community-admin.description": "കമ്മ്യൂണിറ്റി അഡ്മിനിസ്ട്രേറ്റർമാർക്ക് സബ്-കമ്മ്യൂണിറ്റികളോ കളക്ഷനുകളോ സൃഷ്ടിക്കാനും ആ സബ്-കമ്മ്യൂണിറ്റികളോ കളക്ഷനുകളോ മാനേജ് ചെയ്യാനോ മാനേജ്മെന്റ് നിയോഗിക്കാനോ കഴിയും. കൂടാതെ, ഏത് സബ്-കളക്ഷനുകളിലേക്ക് ഇനങ്ങൾ സമർപ്പിക്കാൻ കഴിയുമെന്നും, ഇനം മെറ്റാഡാറ്റ (സമർപ്പണത്തിന് ശേഷം) എഡിറ്റ് ചെയ്യാനും, മറ്റ് കളക്ഷനുകളിൽ നിന്ന് നിലവിലുള്ള ഇനങ്ങൾ (അധികാരപ്പെടുത്തലിന് വിധേയമായി) ചേർക്കാനും (മാപ്പ് ചെയ്യാനും) അവർ തീരുമാനിക്കുന്നു.", + + "comcol-role.edit.collection-admin.description": "കളക്ഷൻ അഡ്മിനിസ്ട്രേറ്റർമാർ ഈ കളക്ഷനിലേക്ക് ഇനങ്ങൾ സമർപ്പിക്കാൻ ആർക്കാണ് അനുമതി ഉള്ളതെന്നും, ഇനം മെറ്റാഡാറ്റ (സമർപ്പണത്തിന് ശേഷം) എഡിറ്റ് ചെയ്യാനും, മറ്റ് കളക്ഷനുകളിൽ നിന്ന് നിലവിലുള്ള ഇനങ്ങൾ ഈ കളക്ഷനിലേക്ക് ചേർക്കാനും (ആ കളക്ഷനുള്ള അധികാരപ്പെടുത്തലിന് വിധേയമായി) തീരുമാനിക്കുന്നു.", + + "comcol-role.edit.submitters.name": "സമർപ്പിക്കുന്നവർ", + + "comcol-role.edit.submitters.description": "ഈ കളക്ഷനിലേക്ക് പുതിയ ഇനങ്ങൾ സമർപ്പിക്കാൻ അനുമതി ഉള്ള ഇ-പീപ്പിൾ, ഗ്രൂപ്പുകൾ.", + + "comcol-role.edit.item_read.name": "ഡിഫോൾട്ട് ഇനം വായനാ ആക്സസ്", + + "comcol-role.edit.item_read.description": "ഈ കളക്ഷനിലേക്ക് സമർപ്പിച്ച പുതിയ ഇനങ്ങൾ വായിക്കാൻ കഴിയുന്ന ഇ-പീപ്പിൾ, ഗ്രൂപ്പുകൾ. ഈ റോളിലെ മാറ്റങ്ങൾ പിൻവലിച്ചുകൊണ്ട് പ്രവർത്തിക്കില്ല. സിസ്റ്റത്തിൽ ഇപ്പോഴുള്ള ഇനങ്ങൾ അവ ചേർക്കപ്പെട്ട സമയത്ത് വായനാ ആക്സസ് ഉണ്ടായിരുന്നവർക്ക് ഇപ്പോഴും കാണാനാകും.", + + "comcol-role.edit.item_read.anonymous-group": "ഇൻകമിംഗ് ഇനങ്ങൾക്കായുള്ള ഡിഫോൾട്ട് വായന നിലവിൽ അജ്ഞാതമായി സജ്ജമാക്കിയിരിക്കുന്നു.", + + "comcol-role.edit.bitstream_read.name": "ഡിഫോൾട്ട് ബിറ്റ്സ്ട്രീം വായനാ ആക്സസ്", + + "comcol-role.edit.bitstream_read.description": "ഈ കളക്ഷനിലേക്ക് സമർപ്പിച്ച പുതിയ ബിറ്റ്സ്ട്രീമുകൾ വായിക്കാൻ കഴിയുന്ന ഇ-പീപ്പിൾ, ഗ്രൂപ്പുകൾ. ഈ റോളിലെ മാറ്റങ്ങൾ പിൻവലിച്ചുകൊണ്ട് പ്രവർത്തിക്കില്ല. സിസ്റ്റത്തിൽ ഇപ്പോഴുള്ള ബിറ്റ്സ്ട്രീമുകൾ അവ ചേർക്കപ്പെട്ട സമയത്ത് വായനാ ആക്സസ് ഉണ്ടായിരുന്നവർക്ക് ഇപ്പോഴും കാണാനാകും.", + + "comcol-role.edit.bitstream_read.anonymous-group": "ഇൻകമിംഗ് ബിറ്റ്സ്ട്രീമുകൾക്കായുള്ള ഡിഫോൾട്ട് വായന നിലവിൽ അജ്ഞാതമായി സജ്ജമാക്കിയിരിക്കുന്നു.", + + "comcol-role.edit.editor.name": "എഡിറ്റർമാർ", + + "comcol-role.edit.editor.description": "എഡിറ്റർമാർക്ക് ഇൻകമിംഗ് സമർപ്പണങ്ങളുടെ മെറ്റാഡാറ്റ എഡിറ്റ് ചെയ്യാനും, അവ സ്വീകരിക്കാനോ നിരസിക്കാനോ കഴിയും.", + + "comcol-role.edit.finaleditor.name": "ഫൈനൽ എഡിറ്റർമാർ", + + "comcol-role.edit.finaleditor.description": "ഫൈനൽ എഡിറ്റർമാർക്ക് ഇൻകമിംഗ് സമർപ്പണങ്ങളുടെ മെറ്റാഡാറ്റ എഡിറ്റ് ചെയ്യാനാകും, പക്ഷേ അവ നിരസിക്കാൻ കഴിയില്ല.", + + "comcol-role.edit.reviewer.name": "റിവ്യൂവർമാർ", + + "comcol-role.edit.reviewer.description": "റിവ്യൂവർമാർക്ക് ഇൻകമിംഗ് സമർപ്പണങ്ങൾ സ്വീകരിക്കാനോ നിരസിക്കാനോ കഴിയും. എന്നാൽ, സമർപ്പണത്തിന്റെ മെറ്റാഡാറ്റ എഡിറ്റ് ചെയ്യാൻ അവർക്ക് കഴിയില്ല.", + + "comcol-role.edit.scorereviewers.name": "സ്കോർ റിവ്യൂവർമാർ", + + "comcol-role.edit.scorereviewers.description": "റിവ്യൂവർമാർക്ക് ഇൻകമിംഗ് സമർപ്പണങ്ങൾക്ക് ഒരു സ്കോർ നൽകാനാകും, ഇത് സമർപ്പണം നിരസിക്കപ്പെടുമോ ഇല്ലയോ എന്ന് നിർണ്ണയിക്കും.", + + "community.form.abstract": "ഹ്രസ്വ വിവരണം", + + "community.form.description": "പരിചയപ്പെടുത്തുന്ന വാചകം (HTML)", + + "community.form.errors.title.required": "ദയവായി ഒരു കമ്മ്യൂണിറ്റി പേര് നൽകുക", + + "community.form.rights": "കോപ്പിറൈറ്റ് വാചകം (HTML)", + + "community.form.tableofcontents": "വാർത്തകൾ (HTML)", + + "community.form.title": "പേര്", + + "community.page.edit": "ഈ കമ്മ്യൂണിറ്റി എഡിറ്റ് ചെയ്യുക", + + "community.page.handle": "ഈ കമ്മ്യൂണിറ്റിക്കുള്ള സ്ഥിരമായ URI", + + "community.page.license": "ലൈസൻസ്", + + "community.page.news": "വാർത്തകൾ", + + "community.page.options": "ഓപ്ഷനുകൾ", + + "community.all-lists.head": "സബ്കമ്മ്യൂണിറ്റികളും കളക്ഷനുകളും", + + "community.search.breadcrumbs": "തിരയുക", + + "community.search.results.head": "തിരയൽ ഫലങ്ങൾ", + + "community.sub-collection-list.head": "ഈ കമ്മ്യൂണിറ്റിയിലെ കളക്ഷനുകൾ", + + "community.sub-community-list.head": "ഈ കമ്മ്യൂണിറ്റിയിലെ കമ്മ്യൂണിറ്റികൾ", + + "cookies.consent.accept-all": "എല്ലാം അംഗീകരിക്കുക", + + "cookies.consent.accept-selected": "തിരഞ്ഞെടുത്തവ അംഗീകരിക്കുക", + + "cookies.consent.app.opt-out.description": "ഈ ആപ്പ് ഡിഫോൾട്ടായി ലോഡ് ചെയ്യുന്നു (പക്ഷേ നിങ്ങൾക്ക് ഒപ്റ്റ് ഔട്ട് ചെയ്യാം)", + + "cookies.consent.app.opt-out.title": "(ഒപ്റ്റ്-ഔട്ട്)", + + "cookies.consent.app.purpose": "ഉദ്ദേശ്യം", + + "cookies.consent.app.required.description": "ഈ ആപ്ലിക്കേഷൻ എല്ലായ്പ്പോഴും ആവശ്യമാണ്", + + "cookies.consent.app.required.title": "(എല്ലായ്പ്പോഴും ആവശ്യമാണ്)", + + "cookies.consent.update": "നിങ്ങളുടെ അവസാന സന്ദർശനത്തിന് ശേഷം മാറ്റങ്ങൾ ഉണ്ടായിട്ടുണ്ട്, ദയവായി നിങ്ങളുടെ സമ്മതം അപ്ഡേറ്റ് ചെയ്യുക.", + + "cookies.consent.close": "അടയ്ക്കുക", + + "cookies.consent.decline": "നിരസിക്കുക", + + "cookies.consent.decline-all": "എല്ലാം നിരസിക്കുക", + + "cookies.consent.ok": "അത് ശരിയാണ്", + + "cookies.consent.save": "സേവ് ചെയ്യുക", + + "cookies.consent.content-notice.description": "ഇനിപ്പറയുന്ന ഉദ്ദേശ്യങ്ങൾക്കായി ഞങ്ങൾ നിങ്ങളുടെ വ്യക്തിപരമായ വിവരങ്ങൾ ശേഖരിക്കുകയും പ്രോസസ്സ് ചെയ്യുകയും ചെയ്യുന്നു: {purposes}", + + "cookies.consent.content-notice.learnMore": "ഇഷ്ടാനുസൃതമാക്കുക", + + "cookies.consent.content-modal.description": "ഞങ്ങൾ നിങ്ങളെക്കുറിച്ച് ശേഖരിക്കുന്ന വിവരങ്ങൾ ഇവിടെ കാണാനും ഇഷ്ടാനുസൃതമാക്കാനും കഴിയും.", + + "cookies.consent.content-modal.privacy-policy.name": "സ്വകാര്യതാ നയം", + + "cookies.consent.content-modal.privacy-policy.text": "കൂടുതൽ അറിയാൻ, ദയവായി ഞങ്ങളുടെ {privacyPolicy} വായിക്കുക.", + + "cookies.consent.content-modal.no-privacy-policy.text": "", + + "cookies.consent.content-modal.title": "ഞങ്ങൾ ശേഖരിക്കുന്ന വിവരങ്ങൾ", + + "cookies.consent.app.title.accessibility": "ആക്സസിബിലിറ്റി സെറ്റിംഗുകൾ", + + "cookies.consent.app.description.accessibility": "നിങ്ങളുടെ ആക്സസിബിലിറ്റി സെറ്റിംഗുകൾ പ്രാദേശികമായി സംരക്ഷിക്കാൻ ആവശ്യമാണ്", + + "cookies.consent.app.title.authentication": "ഓഥന്റിക്കേഷൻ", + + "cookies.consent.app.description.authentication": "ലോഗിൻ ചെയ്യാൻ ആവശ്യമാണ്", + + "cookies.consent.app.title.correlation-id": "കോറിലേഷൻ ID", + + "cookies.consent.app.description.correlation-id": "സപ്പോർട്ട്/ഡീബഗ്ഗിംഗ് ആവശ്യങ്ങൾക്കായി ബാക്കെൻഡ് ലോഗുകളിൽ നിങ്ങളുടെ സെഷൻ ട്രാക്ക് ചെയ്യാൻ ഞങ്ങളെ അനുവദിക്കുക", + + "cookies.consent.app.title.preferences": "പ്രിഫറൻസുകൾ", + + "cookies.consent.app.description.preferences": "നിങ്ങളുടെ പ്രിഫറൻസുകൾ സംരക്ഷിക്കാൻ ആവശ്യമാണ്", + + "cookies.consent.app.title.acknowledgement": "സ്വീകാര്യത", + + "cookies.consent.app.description.acknowledgement": "നിങ്ങളുടെ സ്വീകാര്യതകളും സമ്മതങ്ങളും സംരക്ഷിക്കാൻ ആവശ്യമാണ്", + + "cookies.consent.app.title.google-analytics": "ഗൂഗിൾ അനാലിറ്റിക്സ്", + + "cookies.consent.app.description.google-analytics": "സ്ഥിതിവിവരക്കണക്ക് ഡാറ്റ ട്രാക്ക് ചെയ്യാൻ അനുവദിക്കുന്നു", + + "cookies.consent.app.title.google-recaptcha": "ഗൂഗിൾ reCaptcha", + + "cookies.consent.app.description.google-recaptcha": "രജിസ്ട്രേഷൻ, പാസ്വേഡ് റികവറി സമയത്ത് ഞങ്ങൾ ഗൂഗിൾ reCAPTCHA സേവനം ഉപയോഗിക്കുന്നു", + + "cookies.consent.app.title.matomo": "മാറ്റോമോ", + + "cookies.consent.app.description.matomo": "സ്ഥിതിവിവരക്കണക്ക് ഡാറ്റ ട്രാക്ക് ചെയ്യാൻ അനുവദിക്കുന്നു", + + "cookies.consent.purpose.functional": "ഫങ്ഷണൽ", + + "cookies.consent.purpose.statistical": "സ്ഥിതിവിവരക്കണക്ക്", + + "cookies.consent.purpose.registration-password-recovery": "രജിസ്ട്രേഷൻ, പാസ്വേഡ് റികവറി", + + "cookies.consent.purpose.sharing": "പങ്കിടൽ", + + "curation-task.task.citationpage.label": "സിറ്റേഷൻ പേജ് സൃഷ്ടിക്കുക", + + "curation-task.task.checklinks.label": "മെറ്റാഡാറ്റയിലെ ലിങ്കുകൾ പരിശോധിക്കുക", + + "curation-task.task.noop.label": "NOOP", + + "curation-task.task.profileformats.label": "ബിറ്റ്സ്ട്രീം ഫോർമാറ്റുകൾ പ്രൊഫൈൽ ചെയ്യുക", + + "curation-task.task.requiredmetadata.label": "ആവശ്യമായ മെറ്റാഡാറ്റയ്ക്കായി പരിശോധിക്കുക", + + "curation-task.task.translate.label": "മൈക്രോസോഫ്റ്റ് ട്രാൻസ്ലേറ്റർ", + + "curation-task.task.vscan.label": "വൈറസ് സ്കാൻ", + + "curation-task.task.registerdoi.label": "DOI രജിസ്റ്റർ ചെയ്യുക", + + "curation.form.task-select.label": "ടാസ്ക്:", + + "curation.form.submit": "ആരംഭിക്കുക", + + "curation.form.submit.success.head": "ക്യൂറേഷൻ ടാസ്ക് വിജയകരമായി ആരംഭിച്ചു", + + "curation.form.submit.success.content": "നിങ്ങളെ അനുബന്ധ പ്രോസസ് പേജിലേക്ക് റീഡയറക്ട് ചെയ്യും.", + + "curation.form.submit.error.head": "ക്യൂറേഷൻ ടാസ്ക് പ്രവർത്തിപ്പിക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "curation.form.submit.error.content": "ക്യൂറേഷൻ ടാസ്ക് ആരംഭിക്കാൻ ശ്രമിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു.", + + "curation.form.submit.error.invalid-handle": "ഈ ഒബ്ജക്റ്റിനായി ഹാൻഡിൽ നിർണ്ണയിക്കാൻ കഴിഞ്ഞില്ല", + + "curation.form.handle.label": "ഹാൻഡിൽ:", + + "curation.form.handle.hint": "സൂചന: [your-handle-prefix]/0 നൽകി മുഴുവൻ സൈറ്റിലും ഒരു ടാസ്ക് പ്രവർത്തിപ്പിക്കാൻ (എല്ലാ ടാസ്കുകൾക്കും ഈ കഴിവ് ഉണ്ടാകണമെന്നില്ല)", + + "deny-request-copy.email.message": "ആദരണീയ {{ recipientName }},\nനിങ്ങളുടെ അഭ്യർത്ഥനയ്ക്ക് പ്രതികരമായി, നിങ്ങൾ അഭ്യർത്ഥിച്ച ഫയൽ(കൾ) ഒരു പകർപ്പ് അയയ്ക്കുന്നത് സാധ്യമല്ലെന്ന് വിഷമത്തോടെ അറിയിക്കുന്നു, ഇത് ഈ ഡോക്യുമെന്റുമായി ബന്ധപ്പെട്ടതാണ്: \"{{ itemUrl }}\" ({{ itemName }}), അതിന്റെ രചയിതാവാണ് ഞാൻ.\n\nആദരവോടെ,\n{{ authorName }} <{{ authorEmail }}>", + + "deny-request-copy.email.subject": "ഡോക്യുമെന്റിന്റെ പകർപ്പ് അഭ്യർത്ഥിക്കുക", + + "deny-request-copy.error": "ഒരു പിശക് സംഭവിച്ചു", + + "deny-request-copy.header": "ഡോക്യുമെന്റ് പകർപ്പ് അഭ്യർത്ഥന നിരസിക്കുക", + + "deny-request-copy.intro": "ഈ സന്ദേശം അഭ്യർത്ഥന സമർപ്പിച്ചയാൾക്ക് അയയ്ക്കും", + + "deny-request-copy.success": "ഇനം അഭ്യർത്ഥന വിജയകരമായി നിരസിച്ചു", + + "dynamic-list.load-more": "കൂടുതൽ ലോഡ് ചെയ്യുക", + + "dropdown.clear": "തിരഞ്ഞെടുത്തത് മായ്ക്കുക", + + "dropdown.clear.tooltip": "തിരഞ്ഞെടുത്ത ഓപ്ഷൻ മായ്ക്കുക", + + "dso.name.untitled": "ശീർഷകമില്ലാത്തത്", + + "dso.name.unnamed": "പേരില്ലാത്തത്", + + "dso-selector.create.collection.head": "പുതിയ കളക്ഷൻ", + + "dso-selector.create.collection.sub-level": "ഇതിൽ ഒരു പുതിയ കളക്ഷൻ സൃഷ്ടിക്കുക", + + "dso-selector.create.community.head": "പുതിയ കമ്മ്യൂണിറ്റി", + + "dso-selector.create.community.or-divider": "അല്ലെങ്കിൽ", + + "dso-selector.create.community.sub-level": "ഇതിൽ ഒരു പുതിയ കമ്മ്യൂണിറ്റി സൃഷ്ടിക്കുക", + + "dso-selector.create.community.top-level": "ഒരു പുതിയ ടോപ്പ്-ലെവൽ കമ്മ്യൂണിറ്റി സൃഷ്ടിക്കുക", + + "dso-selector.create.item.head": "പുതിയ ഇനം", + + "dso-selector.create.item.sub-level": "ഇതിൽ ഒരു പുതിയ ഇനം സൃഷ്ടിക്കുക", + + "dso-selector.create.submission.head": "പുതിയ സമർപ്പണം", + + "dso-selector.edit.collection.head": "കളക്ഷൻ എഡിറ്റ് ചെയ്യുക", + + "dso-selector.edit.community.head": "കമ്മ്യൂണിറ്റി എഡിറ്റ് ചെയ്യുക", + + "dso-selector.edit.item.head": "ഇനം എഡിറ്റ് ചെയ്യുക", + + "dso-selector.error.title": "ഒരു {{ type }} തിരയുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", + + "dso-selector.export-metadata.dspaceobject.head": "ഇതിൽ നിന്ന് മെറ്റാഡാറ്റ എക്സ്പോർട്ട് ചെയ്യുക", + + "dso-selector.export-batch.dspaceobject.head": "ഇതിൽ നിന്ന് ബാച്ച് (ZIP) എക്സ്പോർട്ട് ചെയ്യുക", + + "dso-selector.import-batch.dspaceobject.head": "ഇതിൽ നിന്ന് ബാച്ച് ഇമ്പോർട്ട് ചെയ്യുക", + + "dso-selector.no-results": "{{ type }} കണ്ടെത്തിയില്ല", + + "dso-selector.placeholder": "ഒരു {{ type }} തിരയുക", + + "dso-selector.placeholder.type.community": "കമ്മ്യൂണിറ്റി", + + "dso-selector.placeholder.type.collection": "കളക്ഷൻ", + + "dso-selector.placeholder.type.item": "ഇനം", + + "dso-selector.select.collection.head": "ഒരു കളക്ഷൻ തിരഞ്ഞെടുക്കുക", + + "dso-selector.set-scope.community.head": "തിരയൽ സ്കോപ്പ് തിരഞ്ഞെടുക്കുക", + + "dso-selector.set-scope.community.button": "DSpace മുഴുവനായും തിരയുക", + + "dso-selector.set-scope.community.or-divider": "അല്ലെങ്കിൽ", + + "dso-selector.set-scope.community.input-header": "ഒരു കമ്മ്യൂണിറ്റി അല്ലെങ്കിൽ കളക്ഷൻ തിരയുക", + + "dso-selector.claim.item.head": "പ്രൊഫൈൽ ടിപ്പുകൾ", + + "dso-selector.claim.item.body": "നിങ്ങളുമായി ബന്ധപ്പെട്ടിരിക്കാനിടയുള്ള നിലവിലുള്ള പ്രൊഫൈലുകൾ ഇവയാണ്. ഈ പ്രൊഫൈലുകളിൽ ഒന്നിൽ നിങ്ങളെ തിരിച്ചറിഞ്ഞാൽ, അത് തിരഞ്ഞെടുത്ത് ഡിറ്റെയിൽ പേജിൽ, ഓപ്ഷനുകൾക്കിടയിൽ, അത് ക്ലെയിം ചെയ്യാൻ തിരഞ്ഞെടുക്കുക. അല്ലെങ്കിൽ നിങ്ങൾക്ക് താഴെയുള്ള ബട്ടൺ ഉപയോഗിച്ച് പുതിയതായി ഒരു പ്രൊഫൈൽ സൃഷ്ടിക്കാം.", + + "dso-selector.claim.item.not-mine-label": "ഇവയൊന്നും എന്റേതല്ല", + + "dso-selector.claim.item.create-from-scratch": "പുതിയതായി ഒന്ന് സൃഷ്ടിക്കുക", + + "dso-selector.results-could-not-be-retrieved": "എന്തോ തെറ്റുണ്ടായി, ദയവായി വീണ്ടും റിഫ്രഷ് ചെയ്യുക ↻", + + "supervision-group-selector.header": "സൂപ്പർവിഷൻ ഗ്രൂപ്പ് സെലക്ടർ", + + "supervision-group-selector.select.type-of-order.label": "ഒരു ഓർഡർ തരം തിരഞ്ഞെടുക്കുക", + + "supervision-group-selector.select.type-of-order.option.none": "NONE", + + "supervision-group-selector.select.type-of-order.option.editor": "EDITOR", + + "supervision-group-selector.select.type-of-order.option.observer": "OBSERVER", + + "supervision-group-selector.select.group.label": "ഒരു ഗ്രൂപ്പ് തിരഞ്ഞെടുക്കുക", + + "supervision-group-selector.button.cancel": "ക്യാൻസൽ", + + "supervision-group-selector.button.save": "സേവ്", + + "supervision-group-selector.select.type-of-order.error": "ദയവായി ഒരു ഓർഡർ തരം തിരഞ്ഞെടുക്കുക", + + "supervision-group-selector.select.group.error": "ദയവായി ഒരു ഗ്രൂപ്പ് തിരഞ്ഞെടുക്കുക", + + "supervision-group-selector.notification.create.success.title": "{{ name }} ഗ്രൂപ്പിനായി സൂപ്പർവിഷൻ ഓർഡർ വിജയകരമായി സൃഷ്ടിച്ചു", + + "supervision-group-selector.notification.create.failure.title": "പിശക്", + + "supervision-group-selector.notification.create.already-existing": "തിരഞ്ഞെടുത്ത ഗ്രൂപ്പിനായി ഈ ഇനത്തിൽ ഇതിനകം ഒരു സൂപ്പർവിഷൻ ഓർഡർ നിലവിലുണ്ട്", + + "confirmation-modal.export-metadata.header": "{{ dsoName }} നായി മെറ്റാഡാറ്റ എക്സ്പോർട്ട് ചെയ്യുക", + + "confirmation-modal.export-metadata.info": "{{ dsoName }} നായി മെറ്റാഡാറ്റ എക്സ്പോർട്ട് ചെയ്യാൻ നിങ്ങൾ ഉറപ്പാണോ", + + "confirmation-modal.export-metadata.cancel": "ക്യാൻസൽ", + + "confirmation-modal.export-metadata.confirm": "എക്സ്പോർട്ട്", + + "confirmation-modal.export-batch.header": "{{ dsoName }} നായി ബാച്ച് (ZIP) എക്സ്പോർട്ട് ചെയ്യുക", + + "confirmation-modal.export-batch.info": "{{ dsoName }} നായി ബാച്ച് (ZIP) എക്സ്പോർട്ട് ചെയ്യാൻ നിങ്ങൾ ഉറപ്പാണോ", + + "confirmation-modal.export-batch.cancel": "ക്യാൻസൽ", + + "confirmation-modal.export-batch.confirm": "എക്സ്പോർട്ട്", + + "confirmation-modal.delete-eperson.header": "\"{{ dsoName }}\" EPerson ഇല്ലാതാക്കുക", + + "confirmation-modal.delete-eperson.info": "\"{{ dsoName }}\" EPerson ഇല്ലാതാക്കാൻ നിങ്ങൾ ഉറപ്പാണോ", + + "confirmation-modal.delete-eperson.cancel": "ക്യാൻസൽ", + + "confirmation-modal.delete-eperson.confirm": "ഇല്ലാതാക്കുക", + + "confirmation-modal.delete-community-collection-logo.info": "ലോഗോ ഇല്ലാതാക്കാൻ നിങ്ങൾ ഉറപ്പാണോ?", + + "confirmation-modal.delete-profile.header": "പ്രൊഫൈൽ ഇല്ലാതാക്കുക", + + "confirmation-modal.delete-profile.info": "നിങ്ങളുടെ പ്രൊഫൈൽ ഇല്ലാതാക്കാൻ നിങ്ങൾ ഉറപ്പാണോ", + + "confirmation-modal.delete-profile.cancel": "ക്യാൻസൽ", + + "confirmation-modal.delete-profile.confirm": "ഇല്ലാതാക്കുക", + + "confirmation-modal.delete-subscription.header": "സബ്സ്ക്രിപ്ഷൻ ഇല്ലാതാക്കുക", + + "confirmation-modal.delete-subscription.info": "\"{{ dsoName }}\" നായുള്ള സബ്സ്ക്രിപ്ഷൻ ഇല്ലാതാക്കാൻ നിങ്ങൾ ഉറപ്പാണോ", + + "confirmation-modal.delete-subscription.cancel": "ക്യാൻസൽ", + + "confirmation-modal.delete-subscription.confirm": "ഇല്ലാതാക്കുക", + + "confirmation-modal.review-account-info.header": "മാറ്റങ്ങൾ സംരക്ഷിക്കുക", + + "confirmation-modal.review-account-info.info": "നിങ്ങളുടെ പ്രൊഫൈലിലെ മാറ്റങ്ങൾ സംരക്ഷിക്കാൻ നിങ്ങൾ ഉറപ്പാണോ", + + "confirmation-modal.review-account-info.cancel": "ക്യാൻസൽ", + + "confirmation-modal.review-account-info.confirm": "സ്ഥിരീകരിക്കുക", + + "confirmation-modal.review-account-info.save": "സേവ്", + + "error.bitstream": "ബിറ്റ്സ്ട്രീം എടുക്കുന്നതിൽ പിശക്", + + "error.browse-by": "ഇനങ്ങൾ എടുക്കുന്നതിൽ പിശക്", + + "error.collection": "കളക്ഷൻ എടുക്കുന്നതിൽ പിശക്", + + "error.collections": "കളക്ഷനുകൾ എടുക്കുന്നതിൽ പിശക്", + + "error.community": "കമ്മ്യൂണിറ്റി എടുക്കുന്നതിൽ പിശക്", + + "error.identifier": "ഐഡന്റിഫയറിനായി ഒരു ഇനവും കണ്ടെത്തിയില്ല", + + "error.default": "പിശക്", + + "error.item": "ഇനം എടുക്കുന്നതിൽ പിശക്", + + "error.items": "ഇനങ്ങൾ എടുക്കുന്നതിൽ പിശക്", + + "error.objects": "ഒബ്ജക്റ്റുകൾ എടുക്കുന്നതിൽ പിശക്", + + "error.recent-submissions": "ഇടുങ്ങിയ സമർപ്പണങ്ങൾ എടുക്കുന്നതിൽ പിശക്", + + "error.profile-groups": "പ്രൊഫൈൽ ഗ്രൂപ്പുകൾ വീണ്ടെടുക്കുന്നതിൽ പിശക്", + + "error.search-results": "തിരയൽ ഫലങ്ങൾ എടുക്കുന്നതിൽ പിശക്", + + "error.invalid-search-query": "തിരയൽ ക്വറി സാധുവല്ല. ഈ പിശകിനെക്കുറിച്ചുള്ള കൂടുതൽ വിവരങ്ങൾക്ക് Solr ക്വറി സിന്റാക്സ് മികച്ച പരിശീലനങ്ങൾ പരിശോധിക്കുക.", + + "error.sub-collections": "സബ്-കളക്ഷനുകൾ എടുക്കുന്നതിൽ പിശക്", + + "error.sub-communities": "സബ്-കമ്മ്യൂണിറ്റികൾ എടുക്കുന്നതിൽ പിശക്", + + "error.submission.sections.init-form-error": "സെക്ഷൻ ആരംഭിക്കുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു, ദയവായി നിങ്ങളുടെ ഇൻപുട്ട്-ഫോം കോൺഫിഗറേഷൻ പരിശോധിക്കുക. വിശദാംശങ്ങൾ ചുവടെയുണ്ട് :

", + + "error.top-level-communities": "ടോപ്പ്-ലെവൽ കമ്മ്യൂണിറ്റികൾ എടുക്കുന്നതിൽ പിശക്", + + "error.validation.license.notgranted": "നിങ്ങളുടെ സമർപ്പണം പൂർത്തിയാക്കാൻ ഈ ലൈസൻസ് നൽകണം. നിങ്ങൾക്ക് ഈ സമയത്ത് ഈ ലൈസൻസ് നൽകാൻ കഴിയുന്നില്ലെങ്കിൽ, നിങ്ങളുടെ ജോലി സംരക്ഷിച്ച് പിന്നീട് മടങ്ങാം അല്ലെങ്കിൽ സമർപ്പണം നീക്കം ചെയ്യാം.", + + "error.validation.cclicense.required": "നിങ്ങളുടെ സമർപ്പണം പൂർത്തിയാക്കാൻ ഈ cclicense നൽകണം. നിങ്ങൾക്ക് ഈ സമയത്ത് cclicense നൽകാൻ കഴിയുന്നില്ലെങ്കിൽ, നിങ്ങളുടെ ജോലി സംരക്ഷിച്ച് പിന്നീട് മടങ്ങാം അല്ലെങ്കിൽ സമർപ്പണം നീക്കം ചെയ്യാം.", + + "error.validation.pattern": "ഈ ഇൻപുട്ട് നിലവിലെ പാറ്റേണാൽ പരിമിതപ്പെടുത്തിയിരിക്കുന്നു: {{ pattern }}.", + + "error.validation.filerequired": "ഫയൽ അപ്ലോഡ് നിർബന്ധമാണ്", + + "error.validation.required": "ഈ ഫീൽഡ് ആവശ്യമാണ്", + + "error.validation.NotValidEmail": "ഇതൊരു സാധുവായ ഇമെയിൽ അല്ല", + + "error.validation.emailTaken": "ഈ ഇമെയൽ ഇതിനകം എടുത്തിരിക്കുന്നു", + + "error.validation.groupExists": "ഈ ഗ്രൂപ്പ് ഇതിനകം നിലവിലുണ്ട്", + + "error.validation.metadata.name.invalid-pattern": "ഈ ഫീൽഡിൽ ഡോട്ടുകൾ, കോമകൾ അല്ലെങ്കിൽ ഇടങ്ങൾ അടങ്ങിയിരിക്കരുത്. ദയവായി എലമെന്റ് & ക്വാലിഫയർ ഫീൽഡുകൾ ഉപയോഗിക്കുക", + + "error.validation.metadata.name.max-length": "ഈ ഫീൽഡിൽ 32 വരെയുള്ള അക്ഷരങ്ങൾ മാത്രമേ അടങ്ങിയിരിക്കൂ", + + "error.validation.metadata.namespace.max-length": "ഈ ഫീൽഡിൽ 256 വരെയുള്ള അക്ഷരങ്ങൾ മാത്രമേ അടങ്ങിയിരിക്കൂ", + + "error.validation.metadata.element.invalid-pattern": "ഈ ഫീൽഡിൽ ഡോട്ടുകൾ, കോമകൾ അല്ലെങ്കിൽ ഇടങ്ങൾ അടങ്ങിയിരിക്കരുത്. ദയവായി ക്വാലിഫയർ ഫീൽഡ് ഉപയോഗിക്കുക", + + "error.validation.metadata.element.max-length": "ഈ ഫീൽഡിൽ 64 വരെയുള്ള അക്ഷരങ്ങൾ മാത്രമേ അടങ്ങിയിരിക്കൂ", + + "error.validation.metadata.qualifier.invalid-pattern": "ഈ ഫീൽഡിൽ ഡോട്ടുകൾ, കോമകൾ അല്ലെങ്കിൽ ഇടങ്ങൾ അടങ്ങിയിരിക്കരുത്", + + "error.validation.metadata.qualifier.max-length": "ഈ ഫീൽഡിൽ 64 വരെയുള്ള അക്ഷരങ്ങൾ മാത്രമേ അടങ്ങിയിരിക്കൂ", + + "feed.description": "സിന്ഡിക്കേഷൻ ഫീഡ്", + + "file-download-link.restricted": "പരിമിതപ്പെടുത്തിയ ബിറ്റ്സ്ട്രീം", + + "file-download-link.secure-access": "സുരക്ഷിത ആക്സസ് ടോക്കൺ വഴി ലഭ്യമായ പരിമിതപ്പെടുത്തിയ ബിറ്റ്സ്ട്രീം", + + "file-section.error.header": "ഈ ഇനത്തിനായുള്ള ഫയലുകൾ ലഭിക്കുന്നതിൽ പിശക്", + + "footer.copyright": "പകർപ്പവകാശം © 2002-{{ year }}", + + "footer.link.accessibility": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ", + + "footer.link.dspace": "DSpace സോഫ്റ്റ്വെയർ", + + "footer.link.lyrasis": "LYRASIS", + + "footer.link.cookies": "കുക്കി സജ്ജീകരണങ്ങൾ", + + "footer.link.privacy-policy": "സ്വകാര്യതാ നയം", + + "footer.link.end-user-agreement": "അവസാന ഉപയോക്തൃ ഉടമ്പടി", + + "footer.link.feedback": "ഫീഡ്ബാക്ക് അയയ്ക്കുക", + + "footer.link.coar-notify-support": "COAR Notify", + + "forgot-email.form.header": "പാസ്വേഡ് മറന്നു", + + "forgot-email.form.info": "അക്കൗണ്ടുമായി ബന്ധപ്പെട്ട ഇമെയിൽ വിലാസം നൽകുക.", + + "forgot-email.form.email": "ഇമെയിൽ വിലാസം *", + + "forgot-email.form.email.error.required": "ഒരു ഇമെയിൽ വിലാസം നൽകുക", + + "forgot-email.form.email.error.not-email-form": "ഒരു സാധുവായ ഇമെയിൽ വിലാസം നൽകുക", + + "forgot-email.form.email.hint": "ഈ വിലാസത്തിലേക്ക് കൂടുതൽ നിർദ്ദേശങ്ങളുള്ള ഒരു ഇമെയിൽ അയയ്ക്കും.", + + "forgot-email.form.submit": "പാസ്വേഡ് റീസെറ്റ് ചെയ്യുക", + + "forgot-email.form.success.head": "പാസ്വേഡ് റീസെറ്റ് ഇമെയിൽ അയച്ചു", + + "forgot-email.form.success.content": "{{ email }} എന്ന വിലാസത്തിലേക്ക് ഒരു പ്രത്യേക URL ഉള്ള ഒരു ഇമെയിൽ അയച്ചിട്ടുണ്ട്.", + + "forgot-email.form.error.head": "പാസ്വേഡ് റീസെറ്റ് ചെയ്യാൻ ശ്രമിക്കുമ്പോൾ പിശക്", + + "forgot-email.form.error.content": "ഇനിപ്പറയുന്ന ഇമെയിൽ വിലാസവുമായി ബന്ധപ്പെട്ട അക്കൗണ്ടിനായി പാസ്വേഡ് റീസെറ്റ് ചെയ്യാൻ ശ്രമിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു: {{ email }}", + + "forgot-password.title": "പാസ്വേഡ് മറന്നു", + + "forgot-password.form.head": "പാസ്വേഡ് മറന്നു", + + "forgot-password.form.info": "ചുവടെയുള്ള ബോക്സിൽ ഒരു പുതിയ പാസ്വേഡ് നൽകുക, രണ്ടാമത്തെ ബോക്സിൽ അതേ പാസ്വേഡ് വീണ്ടും നൽകി സ്ഥിരീകരിക്കുക.", + + "forgot-password.form.card.security": "സുരക്ഷ", + + "forgot-password.form.identification.header": "തിരിച്ചറിയുക", + + "forgot-password.form.identification.email": "ഇമെയിൽ വിലാസം: ", + + "forgot-password.form.label.password": "പാസ്വേഡ്", + + "forgot-password.form.label.passwordrepeat": "സ്ഥിരീകരിക്കാൻ വീണ്ടും നൽകുക", + + "forgot-password.form.error.empty-password": "ബോക്സുകളിൽ ഒരു പാസ്വേഡ് നൽകുക.", + + "forgot-password.form.error.matching-passwords": "പാസ്വേഡുകൾ പൊരുത്തപ്പെടുന്നില്ല.", + + "forgot-password.form.notification.error.title": "പുതിയ പാസ്വേഡ് സമർപ്പിക്കാൻ ശ്രമിക്കുമ്പോൾ പിശക്", + + "forgot-password.form.notification.success.content": "പാസ്വേഡ് റീസെറ്റ് വിജയിച്ചു. നിങ്ങൾ സൃഷ്ടിച്ച ഉപയോക്താവായി ലോഗിൻ ചെയ്തിരിക്കുന്നു.", + + "forgot-password.form.notification.success.title": "പാസ്വേഡ് റീസെറ്റ് പൂർത്തിയായി", + + "forgot-password.form.submit": "പാസ്വേഡ് സമർപ്പിക്കുക", + + "form.add": "കൂടുതൽ ചേർക്കുക", + + "form.add-help": "നിലവിലെ എൻട്രി ചേർക്കാനും മറ്റൊന്ന് ചേർക്കാനും ഇവിടെ ക്ലിക്ക് ചെയ്യുക", + + "form.cancel": "റദ്ദാക്കുക", + + "form.clear": "മായ്ക്കുക", + + "form.clear-help": "തിരഞ്ഞെടുത്ത മൂല്യം നീക്കം ചെയ്യാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക", + + "form.discard": "നിരസിക്കുക", + + "form.drag": "വലിച്ചിടുക", + + "form.edit": "എഡിറ്റ് ചെയ്യുക", + + "form.edit-help": "തിരഞ്ഞെടുത്ത മൂല്യം എഡിറ്റ് ചെയ്യാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക", + + "form.first-name": "പേരിന്റെ ആദ്യഭാഗം", + + "form.group-collapse": "ചുരുക്കുക", + + "form.group-collapse-help": "ചുരുക്കാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക", + + "form.group-expand": "വികസിപ്പിക്കുക", + + "form.group-expand-help": "കൂടുതൽ ഘടകങ്ങൾ ചേർക്കാനും വികസിപ്പിക്കാനും ഇവിടെ ക്ലിക്ക് ചെയ്യുക", + + "form.last-name": "പേരിന്റെ അവസാന ഭാഗം", + + "form.loading": "ലോഡിംഗ്...", + + "form.lookup": "തിരയുക", + + "form.lookup-help": "നിലവിലുള്ള ബന്ധം തിരയാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക", + + "form.no-results": "ഫലങ്ങൾ ഒന്നും കണ്ടെത്തിയില്ല", + + "form.no-value": "മൂല്യം നൽകിയിട്ടില്ല", + + "form.other-information.email": "ഇമെയിൽ", + + "form.other-information.first-name": "പേരിന്റെ ആദ്യഭാഗം", + + "form.other-information.insolr": "Solr ഇൻഡെക്സിൽ", + + "form.other-information.institution": "സ്ഥാപനം", + + "form.other-information.last-name": "പേരിന്റെ അവസാന ഭാഗം", + + "form.other-information.orcid": "ORCID", + + "form.remove": "നീക്കം ചെയ്യുക", + + "form.save": "സംരക്ഷിക്കുക", + + "form.save-help": "മാറ്റങ്ങൾ സംരക്ഷിക്കുക", + + "form.search": "തിരയുക", + + "form.search-help": "നിലവിലുള്ള കത്തിടപാടുകൾ തിരയാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക", + + "form.submit": "സംരക്ഷിക്കുക", + + "form.create": "സൃഷ്ടിക്കുക", + + "form.number-picker.decrement": "{{field}} കുറയ്ക്കുക", + + "form.number-picker.increment": "{{field}} വർദ്ധിപ്പിക്കുക", + + "form.repeatable.sort.tip": "പുതിയ സ്ഥാനത്ത് ഇനം ഡ്രോപ്പ് ചെയ്യുക", + + "grant-deny-request-copy.deny": "ആക്സസ് അഭ്യർത്ഥന നിരസിക്കുക", + + "grant-deny-request-copy.revoke": "ആക്സസ് റദ്ദാക്കുക", + + "grant-deny-request-copy.email.back": "പിന്നോട്ട്", + + "grant-deny-request-copy.email.message": "ഓപ്ഷണൽ അധിക സന്ദേശം", + + "grant-deny-request-copy.email.message.empty": "ഒരു സന്ദേശം നൽകുക", + + "grant-deny-request-copy.email.permissions.info": "ഈ അഭ്യർത്ഥനകൾക്ക് പ്രതികരിക്കേണ്ടതില്ലാതാക്കാൻ, ഡോക്യുമെന്റിലെ ആക്സസ് നിയന്ത്രണങ്ങൾ പുനരാലോചിക്കാൻ നിങ്ങൾക്ക് ഈ അവസരം ഉപയോഗിക്കാം. ഈ നിയന്ത്രണങ്ങൾ നീക്കം ചെയ്യാൻ റിപ്പോസിറ്ററി അഡ്മിനിസ്ട്രേറ്റർമാരോട് ആവശ്യപ്പെടാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുവെങ്കിൽ, ചുവടെയുള്ള ബോക്സ് ചെക്ക് ചെയ്യുക.", + + "grant-deny-request-copy.email.permissions.label": "ഓപ്പൺ ആക്സസിലേക്ക് മാറ്റുക", + + "grant-deny-request-copy.email.send": "അയയ്ക്കുക", + + "grant-deny-request-copy.email.subject": "വിഷയം", + + "grant-deny-request-copy.email.subject.empty": "ഒരു വിഷയം നൽകുക", + + "grant-deny-request-copy.grant": "ആക്സസ് അഭ്യർത്ഥന അനുവദിക്കുക", + + "grant-deny-request-copy.header": "ഡോക്യുമെന്റ് പകർപ്പ് അഭ്യർത്ഥന", + + "grant-deny-request-copy.home-page": "എന്നെ ഹോം പേജിലേക്ക് കൊണ്ടുപോകുക", + + "grant-deny-request-copy.intro1": "നിങ്ങൾ {{ name }} എന്ന ഡോക്യുമെന്റിന്റെ രചയിതാക്കളിൽ ഒരാളാണെങ്കിൽ, ഉപയോക്താവിന്റെ അഭ്യർത്ഥനയ്ക്ക് പ്രതികരിക്കാൻ ചുവടെയുള്ള ഓപ്ഷനുകളിൽ ഒന്ന് ഉപയോഗിക്കുക.", + + "grant-deny-request-copy.intro2": "ഒരു ഓപ്ഷൻ തിരഞ്ഞെടുത്ത ശേഷം, നിങ്ങൾക്ക് എഡിറ്റ് ചെയ്യാവുന്ന ഒരു നിർദ്ദേശിക്കപ്പെട്ട ഇമെയിൽ മറുപടി അവതരിപ്പിക്കും.", + + "grant-deny-request-copy.previous-decision": "ഈ അഭ്യർത്ഥന മുമ്പ് ഒരു സുരക്ഷിത ആക്സസ് ടോക്കൺ ഉപയോഗിച്ച് അനുവദിച്ചിട്ടുണ്ട്. ആക്സസ് ടോക്കൺ ഉടനടി അസാധുവാക്കാൻ നിങ്ങൾക്ക് ഇപ്പോൾ ഈ ആക്സസ് റദ്ദാക്കാം", + + "grant-deny-request-copy.processed": "ഈ അഭ്യർത്ഥന ഇതിനകം പ്രോസസ്സ് ചെയ്തിട്ടുണ്ട്. ഹോം പേജിലേക്ക് മടങ്ങാൻ നിങ്ങൾക്ക് ചുവടെയുള്ള ബട്ടൺ ഉപയോഗിക്കാം.", + + "grant-request-copy.email.subject": "ഡോക്യുമെന്റിന്റെ പകർപ്പ് അഭ്യർത്ഥിക്കുക", + + "grant-request-copy.error": "ഒരു പിശക് സംഭവിച്ചു", + + "grant-request-copy.header": "ഡോക്യുമെന്റ് പകർപ്പ് അഭ്യർത്ഥന അനുവദിക്കുക", + + "grant-request-copy.intro.attachment": "അഭ്യർത്ഥകന് ഒരു സന്ദേശം അയയ്ക്കും. അഭ്യർത്ഥിച്ച ഡോക്യുമെന്റ്(കൾ) അറ്റാച്ച് ചെയ്യും.", + + "grant-request-copy.intro.link": "അഭ്യർത്ഥകന് ഒരു സന്ദേശം അയയ്ക്കും. അഭ്യർത്ഥിച്ച ഡോക്യുമെന്റ്(കൾ) ലഭ്യമാക്കുന്ന ഒരു സുരക്ഷിത ലിങ്ക് അറ്റാച്ച് ചെയ്യും. ലിങ്ക് താഴെയുള്ള \"ആക്സസ് കാലയളവ്\" മെനുവിൽ തിരഞ്ഞെടുത്ത സമയത്തേക്ക് ആക്സസ് നൽകും.", + + "grant-request-copy.intro.link.preview": "അഭ്യർത്ഥകന് അയയ്ക്കുന്ന ലിങ്കിന്റെ പ്രിവ്യൂ ചുവടെയുണ്ട്:", + + "grant-request-copy.success": "ഇനം അഭ്യർത്ഥന വിജയകരമായി അനുവദിച്ചു", + + "grant-request-copy.access-period.header": "ആക്സസ് കാലയളവ്", + + "grant-request-copy.access-period.+1DAY": "1 ദിവസം", + + "grant-request-copy.access-period.+7DAYS": "1 ആഴ്ച", + + "grant-request-copy.access-period.+1MONTH": "1 മാസം", + + "grant-request-copy.access-period.+3MONTHS": "3 മാസം", + + "grant-request-copy.access-period.FOREVER": "എന്നേക്കും", + + "health.breadcrumbs": "ആരോഗ്യം", + + "health-page.heading": "ആരോഗ്യം", + + "health-page.info-tab": "വിവരം", + + "health-page.status-tab": "സ്ഥിതി", + + "health-page.error.msg": "ആരോഗ്യ പരിശോധന സേവനം താൽക്കാലികമായി ലഭ്യമല്ല", + + "health-page.property.status": "സ്റ്റാറ്റസ് കോഡ്", + + "health-page.section.db.title": "ഡാറ്റാബേസ്", + + "health-page.section.geoIp.title": "ജിയോഐപി", + + "health-page.section.solrAuthorityCore.title": "Solr: authority core", + + "health-page.section.solrOaiCore.title": "Solr: oai core", + + "health-page.section.solrSearchCore.title": "Solr: search core", + + "health-page.section.solrStatisticsCore.title": "Solr: statistics core", + + "health-page.section-info.app.title": "ആപ്ലിക്കേഷൻ ബാക്കെൻഡ്", + + "health-page.section-info.java.title": "ജാവ", + + "health-page.status": "സ്ഥിതി", + + "health-page.status.ok.info": "പ്രവർത്തനക്ഷമം", + + "health-page.status.error.info": "പ്രശ്നങ്ങൾ കണ്ടെത്തി", + + "health-page.status.warning.info": "സാധ്യമായ പ്രശ്നങ്ങൾ കണ്ടെത്തി", + + "health-page.title": "ആരോഗ്യം", + + "health-page.section.no-issues": "പ്രശ്നങ്ങളൊന്നും കണ്ടെത്തിയില്ല", + + "home.description": "", + + "home.breadcrumbs": "ഹോം", + + "home.search-form.placeholder": "റിപ്പോസിറ്ററി തിരയുക ...", + + "home.title": "ഹോം", + + "home.top-level-communities.head": "DSpace-ലെ കമ്മ്യൂണിറ്റികൾ", + + "home.top-level-communities.help": "അതിന്റെ കളക്ഷനുകൾ ബ്രൗസ് ചെയ്യാൻ ഒരു കമ്മ്യൂണിറ്റി തിരഞ്ഞെടുക്കുക.", + + "info.accessibility-settings.breadcrumbs": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ", + + "info.accessibility-settings.cookie-warning": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ സംരക്ഷിക്കുന്നത് നിലവിൽ സാധ്യമല്ല. ഉപയോക്തൃ ഡാറ്റയിൽ സജ്ജീകരണങ്ങൾ സംരക്ഷിക്കാൻ ലോഗിൻ ചെയ്യുക, അല്ലെങ്കിൽ പേജിന്റെ അടിയിലുള്ള 'കുക്കി സജ്ജീകരണങ്ങൾ' മെനു ഉപയോഗിച്ച് 'ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ' കുക്കി സ്വീകരിക്കുക. കുക്കി സ്വീകരിച്ചുകഴിഞ്ഞാൽ, ഈ സന്ദേശം നീക്കം ചെയ്യാൻ നിങ്ങൾക്ക് പേജ് റീലോഡ് ചെയ്യാം.", + + "info.accessibility-settings.disableNotificationTimeOut.label": "ടൈം ഔട്ട് കഴിഞ്ഞാൽ സ്വയം അറിയിപ്പുകൾ അടയ്ക്കുക", + + "info.accessibility-settings.disableNotificationTimeOut.hint": "ഈ ടോഗിൾ സജീവമാക്കുമ്പോൾ, ടൈം ഔട്ട് കഴിഞ്ഞാൽ അറിയിപ്പുകൾ സ്വയം അടയും. നിർജ്ജീവമാക്കുമ്പോൾ, അറിയിപ്പുകൾ മാനുവലായി അടയ്ക്കുന്നതുവരെ തുറന്നിരിക്കും.", + + "info.accessibility-settings.failed-notification": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ സംരക്ഷിക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "info.accessibility-settings.invalid-form-notification": "സംരക്ഷിച്ചിട്ടില്ല. ഫോമിൽ അസാധുവായ മൂല്യങ്ങൾ അടങ്ങിയിരിക്കുന്നു.", + + "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live പ്രദേശ ടൈം ഔട്ട് (സെക്കൻഡിൽ)", + + "info.accessibility-settings.liveRegionTimeOut.hint": "ARIA ലൈവ് പ്രദേശത്തെ ഒരു സന്ദേശം അപ്രത്യക്ഷമാകുന്നതിനുള്ള സമയം. ARIA ലൈവ് പ്രദേശങ്ങൾ പേജിൽ ദൃശ്യമാകില്ല, പക്ഷേ സ്ക്രീൻ റീഡറുകൾക്ക് അറിയിപ്പുകളുടെ (അല്ലെങ്കിൽ മറ്റ് പ്രവർത്തനങ്ങളുടെ) പ്രഖ്യാപനങ്ങൾ നൽകുന്നു.", + + "info.accessibility-settings.liveRegionTimeOut.invalid": "ലൈവ് പ്രദേശ ടൈം ഔട്ട് 0-ൽ കൂടുതലായിരിക്കണം", + + "info.accessibility-settings.notificationTimeOut.label": "അറിയിപ്പ് ടൈം ഔട്ട് (സെക്കൻഡിൽ)", + + "info.accessibility-settings.notificationTimeOut.hint": "ഒരു അറിയിപ്പ് അപ്രത്യക്ഷമാകുന്നതിനുള്ള സമയം.", + + "info.accessibility-settings.notificationTimeOut.invalid": "അറിയിപ്പ് ടൈം ഔട്ട് 0-ൽ കൂടുതലായിരിക്കണം", + + "info.accessibility-settings.save-notification.cookie": "സജ്ജീകരണങ്ങൾ പ്രാദേശികമായി വിജയകരമായി സംരക്ഷിച്ചു.", + + "info.accessibility-settings.save-notification.metadata": "ഉപയോക്തൃ പ്രൊഫൈലിൽ സജ്ജീകരണങ്ങൾ വിജയകരമായി സംരക്ഷിച്ചു.", + + "info.accessibility-settings.reset-failed": "റീസെറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. ലോഗിൻ ചെയ്യുക അല്ലെങ്കിൽ 'ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ' കുക്കി സ്വീകരിക്കുക.", + + "info.accessibility-settings.reset-notification": "സജ്ജീകരണങ്ങൾ വിജയകരമായി റീസെറ്റ് ചെയ്തു.", + + "info.accessibility-settings.reset": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ റീസെറ്റ് ചെയ്യുക", + + "info.accessibility-settings.submit": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ സംരക്ഷിക്കുക", + + "info.accessibility-settings.title": "ആക്സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ", + + "info.end-user-agreement.accept": "അവസാന ഉപയോക്തൃ ഉടമ്പടി ഞാൻ വായിച്ചിരിക്കുന്നു, ഞാൻ അംഗീകരിക്കുന്നു", + + "info.end-user-agreement.accept.error": "എൻഡ് യൂസർ ഒപ്പീസ് സ്വീകരിക്കുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", + "info.end-user-agreement.accept.success": "എൻഡ് യൂസർ ഒപ്പീസ് വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു", + "info.end-user-agreement.breadcrumbs": "എൻഡ് യൂസർ ഒപ്പീസ്", + "info.end-user-agreement.buttons.cancel": "റദ്ദാക്കുക", + "info.end-user-agreement.buttons.save": "സംരക്ഷിക്കുക", + "info.end-user-agreement.head": "എൻഡ് യൂസർ ഒപ്പീസ്", + "info.end-user-agreement.title": "എൻഡ് യൂസർ ഒപ്പീസ്", + "info.end-user-agreement.hosting-country": "യുണൈറ്റഡ് സ്റ്റേറ്റ്സ്", + "info.privacy.breadcrumbs": "പ്രൈവസി പ്രസ്താവന", + "info.privacy.head": "പ്രൈവസി പ്രസ്താവന", + "info.privacy.title": "പ്രൈവസി പ്രസ്താവന", + "info.feedback.breadcrumbs": "ഫീഡ്ബാക്ക്", + "info.feedback.head": "ഫീഡ്ബാക്ക്", + "info.feedback.title": "ഫീഡ്ബാക്ക്", + "info.feedback.info": "DSpace സിസ്റ്റത്തെക്കുറിച്ചുള്ള നിങ്ങളുടെ ഫീഡ്ബാക്ക് പങ്കിട്ടതിന് നന്ദി! നിങ്ങളുടെ അഭിപ്രായങ്ങൾ വിലമതിക്കുന്നു!", + "info.feedback.email_help": "നിങ്ങളുടെ ഫീഡ്ബാക്ക് പിന്തുടരാൻ ഈ വിലാസം ഉപയോഗിക്കും.", + "info.feedback.send": "ഫീഡ്ബാക്ക് അയയ്ക്കുക", + "info.feedback.comments": "അഭിപ്രായങ്ങൾ", + "info.feedback.email-label": "നിങ്ങളുടെ ഇമെയിൽ", + "info.feedback.create.success": "ഫീഡ്ബാക്ക് വിജയകരമായി അയച്ചു!", + "info.feedback.error.email.required": "സാധുവായ ഇമെയിൽ വിലാസം ആവശ്യമാണ്", + "info.feedback.error.message.required": "ഒരു അഭിപ്രായം ആവശ്യമാണ്", + "info.feedback.page-label": "പേജ്", + "info.feedback.page_help": "നിങ്ങളുടെ ഫീഡ്ബാക്കുമായി ബന്ധപ്പെട്ട പേജ്", + "info.coar-notify-support.title": "COAR Notify പിന്തുണ", + "info.coar-notify-support.breadcrumbs": "COAR Notify പിന്തുണ", + "item.alerts.private": "ഈ ഇനം കണ്ടെത്താൻ കഴിയില്ല", + "item.alerts.withdrawn": "ഈ ഇനം പിൻവലിച്ചിരിക്കുന്നു", + "item.alerts.reinstate-request": "പുനഃസ്ഥാപിക്കാൻ അഭ്യർത്ഥിക്കുക", + "quality-assurance.event.table.person-who-requested": "അഭ്യർത്ഥിച്ചത്", + "item.edit.authorizations.heading": "ഈ എഡിറ്റർ ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഒരു ഇനത്തിന്റെ പോളിസികൾ കാണാനും മാറ്റാനും കഴിയും, കൂടാതെ ഇന ഘടകങ്ങളുടെ പോളിസികൾ മാറ്റാനും കഴിയും: ബണ്ടിലുകളും ബിറ്റ്സ്ട്രീമുകളും. ചുരുക്കത്തിൽ, ഒരു ഇനം ബണ്ടിലുകളുടെ ഒരു കണ്ടെയ്നറാണ്, ബണ്ടിലുകൾ ബിറ്റ്സ്ട്രീമുകളുടെ കണ്ടെയ്നറുകളാണ്. കണ്ടെയ്നറുകൾ സാധാരണയായി ADD/REMOVE/READ/WRITE പോളിസികൾ ഉണ്ടായിരിക്കും, ബിറ്റ്സ്ട്രീമുകൾക്ക് READ/WRITE പോളിസികൾ മാത്രമേ ഉണ്ടാകൂ.", + "item.edit.authorizations.title": "ഇനത്തിന്റെ പോളിസികൾ എഡിറ്റ് ചെയ്യുക", + "item.badge.status": "ഇനത്തിന്റെ സ്ഥിതി:", + "item.badge.private": "കണ്ടെത്താൻ കഴിയില്ല", + "item.badge.withdrawn": "പിൻവലിച്ചത്", + "item.bitstreams.upload.bundle": "ബണ്ടിൽ", + "item.bitstreams.upload.bundle.placeholder": "ഒരു ബണ്ടിൽ തിരഞ്ഞെടുക്കുക അല്ലെങ്കിൽ പുതിയ ബണ്ടിൽ പേര് നൽകുക", + "item.bitstreams.upload.bundle.new": "ബണ്ടിൽ സൃഷ്ടിക്കുക", + "item.bitstreams.upload.bundles.empty": "ബിറ്റ്സ്ട്രീം അപ്ലോഡ് ചെയ്യാൻ ഈ ഇനത്തിൽ ഒരു ബണ്ടിലും ഇല്ല.", + "item.bitstreams.upload.cancel": "റദ്ദാക്കുക", + "item.bitstreams.upload.drop-message": "അപ്ലോഡ് ചെയ്യാൻ ഒരു ഫയൽ ഡ്രോപ്പ് ചെയ്യുക", + "item.bitstreams.upload.item": "ഇനം: ", + "item.bitstreams.upload.notifications.bundle.created.content": "പുതിയ ബണ്ടിൽ വിജയകരമായി സൃഷ്ടിച്ചു.", + "item.bitstreams.upload.notifications.bundle.created.title": "ബണ്ടിൽ സൃഷ്ടിച്ചു", + "item.bitstreams.upload.notifications.upload.failed": "അപ്ലോഡ് പരാജയപ്പെട്ടു. വീണ്ടും ശ്രമിക്കുന്നതിന് മുമ്പ് ഉള്ളടക്കം പരിശോധിക്കുക.", + "item.bitstreams.upload.title": "ബിറ്റ്സ്ട്രീം അപ്ലോഡ് ചെയ്യുക", + "item.edit.bitstreams.bundle.edit.buttons.upload": "അപ്ലോഡ്", + "item.edit.bitstreams.bundle.displaying": "ഇപ്പോൾ {{ total }} എന്നതിൽ {{ amount }} ബിറ്റ്സ്ട്രീമുകൾ പ്രദർശിപ്പിക്കുന്നു.", + "item.edit.bitstreams.bundle.load.all": "എല്ലാം ലോഡ് ചെയ്യുക ({{ total }})", + "item.edit.bitstreams.bundle.load.more": "കൂടുതൽ ലോഡ് ചെയ്യുക", + "item.edit.bitstreams.bundle.name": "ബണ്ടിൽ: {{ name }}", + "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} ബണ്ടിലിലെ ബിറ്റ്സ്ട്രീമുകൾ", + "item.edit.bitstreams.bundle.tooltip": "പേജ് നമ്പറിൽ ഡ്രോപ്പ് ചെയ്ത് നിങ്ങൾക്ക് ഒരു ബിറ്റ്സ്ട്രീം വ്യത്യസ്ത പേജിലേക്ക് നീക്കാൻ കഴിയും.", + "item.edit.bitstreams.discard-button": "നിരസിക്കുക", + "item.edit.bitstreams.edit.buttons.download": "ഡൗൺലോഡ്", + "item.edit.bitstreams.edit.buttons.drag": "വലിച്ചിടുക", + "item.edit.bitstreams.edit.buttons.edit": "എഡിറ്റ്", + "item.edit.bitstreams.edit.buttons.remove": "നീക്കം ചെയ്യുക", + "item.edit.bitstreams.edit.buttons.undo": "മാറ്റങ്ങൾ റദ്ദാക്കുക", + "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} {{ toIndex }} സ്ഥാനത്തേക്ക് തിരികെ കൊണ്ടുവന്നു, തിരഞ്ഞെടുത്തിട്ടില്ല.", + "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} ഇനി തിരഞ്ഞെടുത്തിട്ടില്ല.", + "item.edit.bitstreams.edit.live.loading": "നീക്കം പൂർത്തിയാകാൻ കാത്തിരിക്കുന്നു.", + "item.edit.bitstreams.edit.live.select": "{{ bitstream }} തിരഞ്ഞെടുത്തിരിക്കുന്നു.", + "item.edit.bitstreams.edit.live.move": "{{ bitstream }} ഇപ്പോൾ {{ toIndex }} സ്ഥാനത്താണ്.", + "item.edit.bitstreams.empty": "ഈ ഇനത്തിൽ ഒരു ബിറ്റ്സ്ട്രീമും ഇല്ല. ഒന്ന് സൃഷ്ടിക്കാൻ അപ്ലോഡ് ബട്ടൺ ക്ലിക്ക് ചെയ്യുക.", + "item.edit.bitstreams.info-alert": "ബിറ്റ്സ്ട്രീമുകൾ അവയുടെ ബണ്ടിലുകളിൽ വീണ്ടും ക്രമീകരിക്കാൻ കഴിയും. ഡ്രാഗ് ഹാൻഡിൽ പിടിച്ച് മൗസ് നീക്കി. അല്ലെങ്കിൽ, കീബോർഡ് ഉപയോഗിച്ച് ബിറ്റ്സ്ട്രീമുകൾ നീക്കാൻ കഴിയും: ബിറ്റ്സ്ട്രീമിന്റെ ഡ്രാഗ് ഹാൻഡിൽ ഫോക്കസ് ആയിരിക്കുമ്പോൾ എന്റർ അമർത്തി ബിറ്റ്സ്ട്രീം തിരഞ്ഞെടുക്കുക. ആരോ ഹൈ കീകൾ ഉപയോഗിച്ച് ബിറ്റ്സ്ട്രീം മുകളിലോ താഴെയോ നീക്കുക. ബിറ്റ്സ്ട്രീമിന്റെ നിലവിലെ സ്ഥാനം സ്ഥിരീകരിക്കാൻ വീണ്ടും എന്റർ അമർത്തുക.", + "item.edit.bitstreams.headers.actions": "പ്രവർത്തനങ്ങൾ", + "item.edit.bitstreams.headers.bundle": "ബണ്ടിൽ", + "item.edit.bitstreams.headers.description": "വിവരണം", + "item.edit.bitstreams.headers.format": "ഫോർമാറ്റ്", + "item.edit.bitstreams.headers.name": "പേര്", + "item.edit.bitstreams.notifications.discarded.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ നിരസിച്ചു. നിങ്ങളുടെ മാറ്റങ്ങൾ പുനഃസ്ഥാപിക്കാൻ 'അൺഡു' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", + "item.edit.bitstreams.notifications.discarded.title": "മാറ്റങ്ങൾ നിരസിച്ചു", + "item.edit.bitstreams.notifications.move.failed.title": "ബിറ്റ്സ്ട്രീം നീക്കുന്നതിൽ പിശക്", + "item.edit.bitstreams.notifications.move.saved.content": "ഈ ഇനത്തിന്റെ ബിറ്റ്സ്ട്രീമുകളുടെയും ബണ്ടിലുകളുടെയും നീക്കം മാറ്റങ്ങൾ സംരക്ഷിച്ചു.", + "item.edit.bitstreams.notifications.move.saved.title": "നീക്കം മാറ്റങ്ങൾ സംരക്ഷിച്ചു", + "item.edit.bitstreams.notifications.outdated.content": "നിങ്ങൾ ഇപ്പോൾ പ്രവർത്തിക്കുന്ന ഇനം മറ്റൊരു ഉപയോക്താവ് മാറ്റിയിരിക്കുന്നു. conflicts ഒഴിവാക്കാൻ നിങ്ങളുടെ നിലവിലെ മാറ്റങ്ങൾ നിരസിച്ചു", + "item.edit.bitstreams.notifications.outdated.title": "മാറ്റങ്ങൾ കാലഹരണപ്പെട്ടു", + "item.edit.bitstreams.notifications.remove.failed.title": "ബിറ്റ്സ്ട്രീം ഇല്ലാതാക്കുന്നതിൽ പിശക്", + "item.edit.bitstreams.notifications.remove.saved.content": "ഈ ഇനത്തിന്റെ ബിറ്റ്സ്ട്രീമുകൾ നീക്കം ചെയ്യുന്നതിനുള്ള നിങ്ങളുടെ മാറ്റങ്ങൾ സംരക്ഷിച്ചു.", + "item.edit.bitstreams.notifications.remove.saved.title": "നീക്കം ചെയ്യൽ മാറ്റങ്ങൾ സംരക്ഷിച്ചു", + "item.edit.bitstreams.reinstate-button": "അൺഡു", + "item.edit.bitstreams.save-button": "സംരക്ഷിക്കുക", + "item.edit.bitstreams.upload-button": "അപ്ലോഡ്", + "item.edit.bitstreams.load-more.link": "കൂടുതൽ ലോഡ് ചെയ്യുക", + "item.edit.delete.cancel": "റദ്ദാക്കുക", + "item.edit.delete.confirm": "ഇല്ലാതാക്കുക", + "item.edit.delete.description": "ഈ ഇനം പൂർണ്ണമായും ഇല്ലാതാക്കണമെന്ന് നിങ്ങൾക്ക് ഉറപ്പാണോ? ശ്രദ്ധിക്കുക: നിലവിൽ, ഒരു ടോംബ്സ്റ്റോൺ ശേഷിക്കില്ല.", + "item.edit.delete.error": "ഇനം ഇല്ലാതാക്കുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", + "item.edit.delete.header": "ഇനം ഇല്ലാതാക്കുക: {{ id }}", + "item.edit.delete.success": "ഇനം ഇല്ലാതാക്കി", + "item.edit.head": "ഇനം എഡിറ്റ് ചെയ്യുക", + "item.edit.breadcrumbs": "ഇനം എഡിറ്റ് ചെയ്യുക", + "item.edit.tabs.disabled.tooltip": "ഈ ടാബ് ആക്സസ് ചെയ്യാൻ നിങ്ങൾക്ക് അധികാരമില്ല", + "item.edit.tabs.mapper.head": "കളക്ഷൻ മാപ്പർ", + "item.edit.tabs.item-mapper.title": "ഇനം എഡിറ്റ് - കളക്ഷൻ മാപ്പർ", + "item.edit.identifiers.doi.status.UNKNOWN": "അജ്ഞാതം", + "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "രജിസ്ട്രേഷനായി ക്യൂ ചെയ്തു", + "item.edit.identifiers.doi.status.TO_BE_RESERVED": "റിസർവേഷനായി ക്യൂ ചെയ്തു", + "item.edit.identifiers.doi.status.IS_REGISTERED": "രജിസ്റ്റർ ചെയ്തു", + "item.edit.identifiers.doi.status.IS_RESERVED": "റിസർവ് ചെയ്തു", + "item.edit.identifiers.doi.status.UPDATE_RESERVED": "റിസർവ് ചെയ്തു (അപ്ഡേറ്റ് ക്യൂ ചെയ്തു)", + "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "രജിസ്റ്റർ ചെയ്തു (അപ്ഡേറ്റ് ക്യൂ ചെയ്തു)", + "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "അപ്ഡേറ്റും രജിസ്ട്രേഷനും ക്യൂ ചെയ്തു", + "item.edit.identifiers.doi.status.TO_BE_DELETED": "ഇല്ലാതാക്കാൻ ക്യൂ ചെയ്തു", + "item.edit.identifiers.doi.status.DELETED": "ഇല്ലാതാക്കി", + "item.edit.identifiers.doi.status.PENDING": "തീർച്ചപ്പെടുത്താത്തത് (രജിസ്റ്റർ ചെയ്തിട്ടില്ല)", + "item.edit.identifiers.doi.status.MINTED": "മിന്റ് ചെയ്തു (രജിസ്റ്റർ ചെയ്തിട്ടില്ല)", + "item.edit.tabs.status.buttons.register-doi.label": "പുതിയതോ തീർച്ചപ്പെടുത്താത്തതോ ആയ DOI രജിസ്റ്റർ ചെയ്യുക", + "item.edit.tabs.status.buttons.register-doi.button": "DOI രജിസ്റ്റർ ചെയ്യുക...", + "item.edit.register-doi.header": "പുതിയതോ തീർച്ചപ്പെടുത്താത്തതോ ആയ DOI രജിസ്റ്റർ ചെയ്യുക", + "item.edit.register-doi.description": "താഴെയുള്ള തീർച്ചപ്പെടുത്താത്ത ഐഡന്റിഫയറുകളും ഇനം മെറ്റാഡാറ്റയും അവലോകനം ചെയ്ത് DOI രജിസ്ട്രേഷനിൽ തുടരാൻ സ്ഥിരീകരിക്കുക, അല്ലെങ്കിൽ റദ്ദാക്കുക", + "item.edit.register-doi.confirm": "സ്ഥിരീകരിക്കുക", + "item.edit.register-doi.cancel": "റദ്ദാക്കുക", + "item.edit.register-doi.success": "DOI വിജയകരമായി രജിസ്ട്രേഷനായി ക്യൂ ചെയ്തു.", + "item.edit.register-doi.error": "DOI രജിസ്റ്റർ ചെയ്യുന്നതിൽ പിശക്", + "item.edit.register-doi.to-update": "ഇനിപ്പറയുന്ന DOI ഇതിനകം മിന്റ് ചെയ്തിട്ടുണ്ട്, ഓൺലൈനിൽ രജിസ്ട്രേഷനായി ക്യൂ ചെയ്യും", + "item.edit.item-mapper.buttons.add": "തിരഞ്ഞെടുത്ത കളക്ഷനുകളിലേക്ക് ഇനം മാപ്പ് ചെയ്യുക", + "item.edit.item-mapper.buttons.remove": "തിരഞ്ഞെടുത്ത കളക്ഷനുകൾക്കായി ഇനത്തിന്റെ മാപ്പിംഗ് നീക്കം ചെയ്യുക", + "item.edit.item-mapper.cancel": "റദ്ദാക്കുക", + "item.edit.item-mapper.description": "ഇത് ഇനം മാപ്പർ ടൂളാണ്, ഇത് അഡ്മിനിസ്ട്രേറ്റർമാർക്ക് ഈ ഇനം മറ്റ് കളക്ഷനുകളിലേക്ക് മാപ്പ് ചെയ്യാൻ അനുവദിക്കുന്നു. നിങ്ങൾക്ക് കളക്ഷനുകൾ തിരയാനും മാപ്പ് ചെയ്യാനും കഴിയും, അല്ലെങ്കിൽ ഇനം നിലവിൽ മാപ്പ് ചെയ്തിരിക്കുന്ന കളക്ഷനുകളുടെ ലിസ്റ്റ് ബ്രൗസ് ചെയ്യാനും കഴിയും.", + "item.edit.item-mapper.head": "ഇനം മാപ്പർ - ഇനം കളക്ഷനുകളിലേക്ക് മാപ്പ് ചെയ്യുക", + "item.edit.item-mapper.item": "ഇനം: \"{{name}}\"", + "item.edit.item-mapper.no-search": "തിരയാൻ ഒരു ക്വറി നൽകുക", + "item.edit.item-mapper.notifications.add.error.content": "{{amount}} കളക്ഷനുകളിലേക്ക് ഇനം മാപ്പ് ചെയ്യുന്നതിൽ പിശകുകൾ സംഭവിച്ചു.", + "item.edit.item-mapper.notifications.add.error.head": "മാപ്പിംഗ് പിശകുകൾ", + "item.edit.item-mapper.notifications.add.success.content": "{{amount}} കളക്ഷനുകളിലേക്ക് ഇനം വിജയകരമായി മാപ്പ് ചെയ്തു.", + "item.edit.item-mapper.notifications.add.success.head": "മാപ്പിംഗ് പൂർത്തിയായി", + "item.edit.item-mapper.notifications.remove.error.content": "{{amount}} കളക്ഷനുകളിലേക്കുള്ള മാപ്പിംഗ് നീക്കം ചെയ്യുന്നതിൽ പിശകുകൾ സംഭവിച്ചു.", + "item.edit.item-mapper.notifications.remove.error.head": "മാപ്പിംഗ് നീക്കം ചെയ്യൽ പിശകുകൾ", + "item.edit.item-mapper.notifications.remove.success.content": "{{amount}} കളക്ഷനുകളിലേക്കുള്ള ഇനത്തിന്റെ മാപ്പിംഗ് വിജയകരമായി നീക്കം ചെയ്തു.", + "item.edit.item-mapper.notifications.remove.success.head": "മാപ്പിംഗ് നീക്കം ചെയ്യൽ പൂർത്തിയായി", + "item.edit.item-mapper.search-form.placeholder": "കളക്ഷനുകൾ തിരയുക...", + "item.edit.item-mapper.tabs.browse": "മാപ്പ് ചെയ്ത കളക്ഷനുകൾ ബ്രൗസ് ചെയ്യുക", + "item.edit.item-mapper.tabs.map": "പുതിയ കളക്ഷനുകൾ മാപ്പ് ചെയ്യുക", + "item.edit.metadata.add-button": "ചേർക്കുക", + "item.edit.metadata.discard-button": "നിരസിക്കുക", + "item.edit.metadata.edit.language": "ഭാഷ എഡിറ്റ് ചെയ്യുക", + "item.edit.metadata.edit.value": "മൂല്യം എഡിറ്റ് ചെയ്യുക", + "item.edit.metadata.edit.authority.key": "അധികാര കീ എഡിറ്റ് ചെയ്യുക", + "item.edit.metadata.edit.buttons.enable-free-text-editing": "സൗജന്യ-ടെക്സ്റ്റ് എഡിറ്റിംഗ് പ്രവർത്തനക്ഷമമാക്കുക", + "item.edit.metadata.edit.buttons.disable-free-text-editing": "സൗജന്യ-ടെക്സ്റ്റ് എഡിറ്റിംഗ് പ്രവർത്തനരഹിതമാക്കുക", + "item.edit.metadata.edit.buttons.confirm": "സ്ഥിരീകരിക്കുക", + "item.edit.metadata.edit.buttons.drag": "ക്രമീകരിക്കാൻ വലിച്ചിടുക", + "item.edit.metadata.edit.buttons.edit": "എഡിറ്റ്", + "item.edit.metadata.edit.buttons.remove": "നീക്കം ചെയ്യുക", + "item.edit.metadata.edit.buttons.undo": "മാറ്റങ്ങൾ റദ്ദാക്കുക", + "item.edit.metadata.edit.buttons.unedit": "എഡിറ്റിംഗ് നിർത്തുക", + "item.edit.metadata.edit.buttons.virtual": "ഇതൊരു വെർച്വൽ മെറ്റാഡാറ്റ മൂല്യമാണ്, അതായത് ഒരു ബന്ധപ്പെട്ട എന്റിറ്റിയിൽ നിന്ന് പാരമ്പര്യമായി ലഭിച്ച മൂല്യം. ഇത് നേരിട്ട് പരിഷ്കരിക്കാൻ കഴിയില്ല. \"ബന്ധങ്ങൾ\" ടാബിൽ അനുബന്ധ ബന്ധം ചേർക്കുകയോ നീക്കം ചെയ്യുകയോ ചെയ്യുക", + "item.edit.metadata.empty": "ഇനത്തിൽ നിലവിൽ ഒരു മെറ്റാഡാറ്റയും ഇല്ല. ഒരു മെറ്റാഡാറ്റ മൂല്യം ചേർക്കാൻ ചേർക്കുക ക്ലിക്ക് ചെയ്യുക.", + "item.edit.metadata.headers.edit": "എഡിറ്റ്", + "item.edit.metadata.headers.field": "ഫീൽഡ്", + "item.edit.metadata.headers.language": "ഭാഷ", + "item.edit.metadata.headers.value": "മൂല്യം", + "item.edit.metadata.metadatafield": "ഫീൽഡ് എഡിറ്റ് ചെയ്യുക", + "item.edit.metadata.metadatafield.error": "മെറ്റാഡാറ്റ ഫീൽഡ് സാധൂകരിക്കുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", + "item.edit.metadata.metadatafield.invalid": "ദയവായി ഒരു സാധുവായ മെറ്റാഡാറ്റ ഫീൽഡ് തിരഞ്ഞെടുക്കുക", + "item.edit.metadata.notifications.discarded.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ നിരസിച്ചു. നിങ്ങളുടെ മാറ്റങ്ങൾ പുനഃസ്ഥാപിക്കാൻ 'അൺഡു' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", + "item.edit.metadata.notifications.discarded.title": "മാറ്റങ്ങൾ നിരസിച്ചു", + "item.edit.metadata.notifications.error.title": "ഒരു പിശക് സംഭവിച്ചു", + "item.edit.metadata.notifications.invalid.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ സംരക്ഷിച്ചിട്ടില്ല. സംരക്ഷിക്കുന്നതിന് മുമ്പ് എല്ലാ ഫീൽഡുകളും സാധുവാണെന്ന് ഉറപ്പാക്കുക.", + "item.edit.metadata.notifications.invalid.title": "മെറ്റാഡാറ്റ അസാധുവാണ്", + "item.edit.metadata.notifications.outdated.content": "നിങ്ങൾ ഇപ്പോൾ പ്രവർത്തിക്കുന്ന ഇനം മറ്റൊരു ഉപയോക്താവ് മാറ്റിയിരിക്കുന്നു. conflicts ഒഴിവാക്കാൻ നിങ്ങളുടെ നിലവിലെ മാറ്റങ്ങൾ നിരസിച്ചു", + "item.edit.metadata.notifications.outdated.title": "മാറ്റങ്ങൾ കാലഹരണപ്പെട്ടു", + "item.edit.metadata.notifications.saved.content": "ഈ ഇനത്തിന്റെ മെറ്റാഡാറ്റയിലെ നിങ്ങളുടെ മാറ്റങ്ങൾ സംരക്ഷിച്ചു.", + "item.edit.metadata.notifications.saved.title": "മെറ്റാഡാറ്റ സംരക്ഷിച്ചു", + "item.edit.metadata.reinstate-button": "അൺഡു", + "item.edit.metadata.reset-order-button": "ക്രമീകരണം റദ്ദാക്കുക", + "item.edit.metadata.save-button": "സംരക്ഷിക്കുക", + "item.edit.metadata.authority.label": "അധികാരം: ", + "item.edit.metadata.edit.buttons.open-authority-edition": "മാനുവൽ എഡിറ്റിംഗിനായി അധികാര കീ മൂല്യം അൺലോക്ക് ചെയ്യുക", + "item.edit.metadata.edit.buttons.close-authority-edition": "മാനുവൽ എഡിറ്റിംഗിനായി അധികാര കീ മൂല്യം ലോക്ക് ചെയ്യുക", + "item.edit.modify.overview.field": "ഫീൽഡ്", + "item.edit.modify.overview.language": "ഭാഷ", + "item.edit.modify.overview.value": "മൂല്യം", + "item.edit.move.cancel": "പിന്നിലേക്ക്", + "item.edit.move.save-button": "സംരക്ഷിക്കുക", + "item.edit.move.discard-button": "നിരസിക്കുക", + "item.edit.move.description": "നിങ്ങൾ ഈ ഇനം നീക്കാൻ ആഗ്രഹിക്കുന്ന കളക്ഷൻ തിരഞ്ഞെടുക്കുക. പ്രദർശിപ്പിക്കുന്ന കളക്ഷനുകളുടെ ലിസ്റ്റ് ചുരുക്കാൻ, നിങ്ങൾക്ക് ബോക്സിൽ ഒരു തിരയൽ ക്വറി നൽകാം.", + "item.edit.move.error": "ഇനം നീക്കാൻ ശ്രമിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", + "item.edit.move.head": "ഇനം നീക്കുക: {{id}}", + "item.edit.move.inheritpolicies.checkbox": "പോളിസികൾ പാരമ്പര്യമായി ലഭിക്കുക", + "item.edit.move.inheritpolicies.description": "ലക്ഷ്യസംഗ്രഹത്തിന്റെ സ്ഥിരമായ നയങ്ങൾ പാരമ്പര്യമായി ലഭിക്കുക", + "item.edit.move.inheritpolicies.tooltip": "മുന്നറിയിപ്പ്: പ്രവർത്തനക്ഷമമാക്കുമ്പോൾ, ഇനത്തിനും അതുമായി ബന്ധപ്പെട്ട ഏതെങ്കിലും ഫയലുകൾക്കുമുള്ള വായനാ പ്രവേശന നയം ലക്ഷ്യസംഗ്രഹത്തിന്റെ സ്ഥിരമായ വായനാ പ്രവേശന നയം ഉപയോഗിച്ച് മാറ്റിസ്ഥാപിക്കും. ഇത് പൂർവ്വസ്ഥിതിയാക്കാൻ കഴിയില്ല.", + "item.edit.move.move": "നീക്കുക", + "item.edit.move.processing": "നീക്കുന്നു...", + "item.edit.move.search.placeholder": "സംഗ്രഹങ്ങൾക്കായി തിരയൽ ക്വറി നൽകുക", + "item.edit.move.success": "ഇനം വിജയകരമായി നീക്കി", + "item.edit.move.title": "ഇനം നീക്കുക", + "item.edit.private.cancel": "റദ്ദാക്കുക", + "item.edit.private.confirm": "ആർക്കൈവിൽ കണ്ടെത്താൻ കഴിയാത്തതാക്കുക", + "item.edit.private.description": "ഈ ഇനം ആർക്കൈവിൽ കണ്ടെത്താൻ കഴിയാത്തതാക്കണമെന്ന് ഉറപ്പാണോ?", + "item.edit.private.error": "ഇനം കണ്ടെത്താൻ കഴിയാത്തതാക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", + "item.edit.private.header": "ഇനം കണ്ടെത്താൻ കഴിയാത്തതാക്കുക: {{ id }}", + "item.edit.private.success": "ഇനം ഇപ്പോൾ കണ്ടെത്താൻ കഴിയാത്തതാണ്", + "item.edit.public.cancel": "റദ്ദാക്കുക", + "item.edit.public.confirm": "കണ്ടെത്താൻ കഴിയുന്നതാക്കുക", + "item.edit.public.description": "ഈ ഇനം ആർക്കൈവിൽ കണ്ടെത്താൻ കഴിയുന്നതാക്കണമെന്ന് ഉറപ്പാണോ?", + "item.edit.public.error": "ഇനം കണ്ടെത്താൻ കഴിയുന്നതാക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", + "item.edit.public.header": "ഇനം കണ്ടെത്താൻ കഴിയുന്നതാക്കുക: {{ id }}", + "item.edit.public.success": "ഇനം ഇപ്പോൾ കണ്ടെത്താൻ കഴിയുന്നതാണ്", + "item.edit.reinstate.cancel": "റദ്ദാക്കുക", + "item.edit.reinstate.confirm": "പുനഃസ്ഥാപിക്കുക", + "item.edit.reinstate.description": "ഈ ഇനം ആർക്കൈവിലേക്ക് പുനഃസ്ഥാപിക്കണമെന്ന് ഉറപ്പാണോ?", + "item.edit.reinstate.error": "ഇനം പുനഃസ്ഥാപിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", + "item.edit.reinstate.header": "ഇനം പുനഃസ്ഥാപിക്കുക: {{ id }}", + "item.edit.reinstate.success": "ഇനം വിജയകരമായി പുനഃസ്ഥാപിച്ചു", + "item.edit.relationships.discard-button": "നിരസിക്കുക", + "item.edit.relationships.edit.buttons.add": "ചേർക്കുക", + "item.edit.relationships.edit.buttons.remove": "നീക്കം ചെയ്യുക", + "item.edit.relationships.edit.buttons.undo": "മാറ്റങ്ങൾ റദ്ദാക്കുക", + "item.edit.relationships.no-relationships": "ബന്ധങ്ങളൊന്നുമില്ല", + "item.edit.relationships.notifications.discarded.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ നിരസിച്ചു. മാറ്റങ്ങൾ പുനഃസ്ഥാപിക്കാൻ 'റദ്ദാക്കുക' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", + "item.edit.relationships.notifications.discarded.title": "മാറ്റങ്ങൾ നിരസിച്ചു", + "item.edit.relationships.notifications.failed.title": "ബന്ധങ്ങൾ എഡിറ്റ് ചെയ്യുന്നതിൽ പിശക്", + "item.edit.relationships.notifications.outdated.content": "നിങ്ങൾ ഇപ്പോൾ പ്രവർത്തിക്കുന്ന ഇനം മറ്റൊരു ഉപയോക്താവ് മാറ്റിയിട്ടുണ്ട്. conflicts ഒഴിവാക്കാൻ നിങ്ങളുടെ നിലവിലെ മാറ്റങ്ങൾ നിരസിച്ചു", + "item.edit.relationships.notifications.outdated.title": "പഴയ മാറ്റങ്ങൾ", + "item.edit.relationships.notifications.saved.content": "ഈ ഇനത്തിന്റെ ബന്ധങ്ങളിലെ നിങ്ങളുടെ മാറ്റങ്ങൾ സംരക്ഷിച്ചു.", + "item.edit.relationships.notifications.saved.title": "ബന്ധങ്ങൾ സംരക്ഷിച്ചു", + "item.edit.relationships.reinstate-button": "റദ്ദാക്കുക", + "item.edit.relationships.save-button": "സംരക്ഷിക്കുക", + "item.edit.relationships.no-entity-type": "ഈ ഇനത്തിനായി ബന്ധങ്ങൾ പ്രവർത്തനക്ഷമമാക്കാൻ 'dspace.entity.type' മെറ്റാഡാറ്റ ചേർക്കുക", + "item.edit.return": "പിന്നിലേക്ക്", + "item.edit.tabs.bitstreams.head": "ബിറ്റ്സ്ട്രീമുകൾ", + "item.edit.tabs.bitstreams.title": "ഇനം എഡിറ്റ് - ബിറ്റ്സ്ട്രീമുകൾ", + "item.edit.tabs.curate.head": "കുറെയറ്റ്", + "item.edit.tabs.curate.title": "ഇനം എഡിറ്റ് - കുറെയറ്റ്", + "item.edit.curate.title": "ഇനം കുറെയറ്റ് ചെയ്യുക: {{item}}", + "item.edit.tabs.access-control.head": "പ്രവേശന നിയന്ത്രണം", + "item.edit.tabs.access-control.title": "ഇനം എഡിറ്റ് - പ്രവേശന നിയന്ത്രണം", + "item.edit.tabs.metadata.head": "മെറ്റാഡാറ്റ", + "item.edit.tabs.metadata.title": "ഇനം എഡിറ്റ് - മെറ്റാഡാറ്റ", + "item.edit.tabs.relationships.head": "ബന്ധങ്ങൾ", + "item.edit.tabs.relationships.title": "ഇനം എഡിറ്റ് - ബന്ധങ്ങൾ", + "item.edit.tabs.status.buttons.authorizations.button": "അനുമതികൾ...", + "item.edit.tabs.status.buttons.authorizations.label": "ഇനത്തിന്റെ അനുമതി നയങ്ങൾ എഡിറ്റ് ചെയ്യുക", + "item.edit.tabs.status.buttons.delete.button": "സ്ഥിരമായി ഇല്ലാതാക്കുക", + "item.edit.tabs.status.buttons.delete.label": "ഇനം പൂർണ്ണമായും ഇല്ലാതാക്കുക", + "item.edit.tabs.status.buttons.mappedCollections.button": "മാപ്പ് ചെയ്ത സംഗ്രഹങ്ങൾ", + "item.edit.tabs.status.buttons.mappedCollections.label": "മാപ്പ് ചെയ്ത സംഗ്രഹങ്ങൾ നിയന്ത്രിക്കുക", + "item.edit.tabs.status.buttons.move.button": "ഈ ഇനം വ്യത്യസ്തമായ ഒരു സംഗ്രഹത്തിലേക്ക് നീക്കുക", + "item.edit.tabs.status.buttons.move.label": "ഇനം മറ്റൊരു സംഗ്രഹത്തിലേക്ക് നീക്കുക", + "item.edit.tabs.status.buttons.private.button": "കണ്ടെത്താൻ കഴിയാത്തതാക്കുക...", + "item.edit.tabs.status.buttons.private.label": "ഇനം കണ്ടെത്താൻ കഴിയാത്തതാക്കുക", + "item.edit.tabs.status.buttons.public.button": "കണ്ടെത്താൻ കഴിയുന്നതാക്കുക...", + "item.edit.tabs.status.buttons.public.label": "ഇനം കണ്ടെത്താൻ കഴിയുന്നതാക്കുക", + "item.edit.tabs.status.buttons.reinstate.button": "പുനഃസ്ഥാപിക്കുക...", + "item.edit.tabs.status.buttons.reinstate.label": "റിപ്പോസിറ്ററിയിലേക്ക് ഇനം പുനഃസ്ഥാപിക്കുക", + "item.edit.tabs.status.buttons.unauthorized": "ഈ പ്രവർത്തനം നടത്താൻ നിങ്ങൾക്ക് അധികാരമില്ല", + "item.edit.tabs.status.buttons.withdraw.button": "ഈ ഇനം പിൻവലിക്കുക", + "item.edit.tabs.status.buttons.withdraw.label": "റിപ്പോസിറ്ററിയിൽ നിന്ന് ഇനം പിൻവലിക്കുക", + "item.edit.tabs.status.description": "ഇനം മാനേജ്മെന്റ് പേജിലേക്ക് സ്വാഗതം. ഇവിടെ നിന്ന് നിങ്ങൾക്ക് ഇനം പിൻവലിക്കാനോ, പുനഃസ്ഥാപിക്കാനോ, നീക്കാനോ അല്ലെങ്കിൽ ഇല്ലാതാക്കാനോ കഴിയും. മറ്റ് ടാബുകളിൽ നിങ്ങൾക്ക് മെറ്റാഡാറ്റ / ബിറ്റ്സ്ട്രീമുകൾ അപ്ഡേറ്റ് ചെയ്യാനോ പുതിയത് ചേർക്കാനോ കഴിയും.", + "item.edit.tabs.status.head": "സ്റ്റാറ്റസ്", + "item.edit.tabs.status.labels.handle": "ഹാൻഡിൽ", + "item.edit.tabs.status.labels.id": "ഇനം ആന്തരിക ID", + "item.edit.tabs.status.labels.itemPage": "ഇനം പേജ്", + "item.edit.tabs.status.labels.lastModified": "അവസാനം പരിഷ്കരിച്ചത്", + "item.edit.tabs.status.title": "ഇനം എഡിറ്റ് - സ്റ്റാറ്റസ്", + "item.edit.tabs.versionhistory.head": "പതിപ്പ് ചരിത്രം", + "item.edit.tabs.versionhistory.title": "ഇനം എഡിറ്റ് - പതിപ്പ് ചരിത്രം", + "item.edit.tabs.versionhistory.under-construction": "പുതിയ പതിപ്പുകൾ എഡിറ്റ് ചെയ്യുകയോ ചേർക്കുകയോ ചെയ്യുന്നത് ഈ യൂസർ ഇന്റർഫേസിൽ ഇതുവരെ സാധ്യമല്ല.", + "item.edit.tabs.view.head": "ഇനം കാണുക", + "item.edit.tabs.view.title": "ഇനം എഡിറ്റ് - കാഴ്ച", + "item.edit.withdraw.cancel": "റദ്ദാക്കുക", + "item.edit.withdraw.confirm": "പിൻവലിക്കുക", + "item.edit.withdraw.description": "ഈ ഇനം ആർക്കൈവിൽ നിന്ന് പിൻവലിക്കണമെന്ന് ഉറപ്പാണോ?", + "item.edit.withdraw.error": "ഇനം പിൻവലിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", + "item.edit.withdraw.header": "ഇനം പിൻവലിക്കുക: {{ id }}", + "item.edit.withdraw.success": "ഇനം വിജയകരമായി പിൻവലിച്ചു", + "item.orcid.return": "പിന്നിലേക്ക്", + "item.listelement.badge": "ഇനം", + "item.page.description": "വിവരണം", + "item.page.org-unit": "സംഘടനാ യൂണിറ്റ്", + "item.page.org-units": "സംഘടനാ യൂണിറ്റുകൾ", + "item.page.project": "ഗവേഷണ പ്രോജക്റ്റ്", + "item.page.projects": "ഗവേഷണ പ്രോജക്റ്റുകൾ", + "item.page.publication": "പ്രസിദ്ധീകരണങ്ങൾ", + "item.page.publications": "പ്രസിദ്ധീകരണങ്ങൾ", + "item.page.article": "ലേഖനം", + "item.page.articles": "ലേഖനങ്ങൾ", + "item.page.journal": "ജേണൽ", + "item.page.journals": "ജേണലുകൾ", + "item.page.journal-issue": "ജേണൽ ഇഷ്യൂ", + "item.page.journal-issues": "ജേണൽ ഇഷ്യൂകൾ", + "item.page.journal-volume": "ജേണൽ വോളിയം", + "item.page.journal-volumes": "ജേണൽ വോളിയങ്ങൾ", + "item.page.journal-issn": "ജേണൽ ISSN", + "item.page.journal-title": "ജേണൽ ശീർഷകം", + "item.page.publisher": "പ്രസാധകൻ", + "item.page.titleprefix": "ഇനം: ", + "item.page.volume-title": "വോളിയം ശീർഷകം", + "item.page.dcterms.spatial": "ജിയോസ്പേഷ്യൽ പോയിന്റ്", + "item.search.results.head": "ഇനം തിരയൽ ഫലങ്ങൾ", + "item.search.title": "ഇനം തിരയൽ", + "item.truncatable-part.show-more": "കൂടുതൽ കാണിക്കുക", + "item.truncatable-part.show-less": "ചുരുക്കുക", + "item.qa-event-notification.check.notification-info": "നിങ്ങളുടെ അക്കൗണ്ടുമായി ബന്ധപ്പെട്ട {{num}} തീർച്ചയാക്കാത്ത നിർദ്ദേശങ്ങൾ ഉണ്ട്", + "item.qa-event-notification-info.check.button": "കാണുക", + "mydspace.qa-event-notification.check.notification-info": "നിങ്ങളുടെ അക്കൗണ്ടുമായി ബന്ധപ്പെട്ട {{num}} തീർച്ചയാക്കാത്ത നിർദ്ദേശങ്ങൾ ഉണ്ട്", + "mydspace.qa-event-notification-info.check.button": "കാണുക", + "workflow-item.search.result.delete-supervision.modal.header": "സൂപ്പർവിഷൻ ഓർഡർ ഇല്ലാതാക്കുക", + "workflow-item.search.result.delete-supervision.modal.info": "സൂപ്പർവിഷൻ ഓർഡർ ഇല്ലാതാക്കണമെന്ന് ഉറപ്പാണോ?", + "workflow-item.search.result.delete-supervision.modal.cancel": "റദ്ദാക്കുക", + "workflow-item.search.result.delete-supervision.modal.confirm": "ഇല്ലാതാക്കുക", + "workflow-item.search.result.notification.deleted.success": "സൂപ്പർവിഷൻ ഓർഡർ \"{{name}}\" വിജയകരമായി ഇല്ലാതാക്കി", + "workflow-item.search.result.notification.deleted.failure": "സൂപ്പർവിഷൻ ഓർഡർ \"{{name}}\" ഇല്ലാതാക്കുന്നതിൽ പരാജയപ്പെട്ടു", + "workflow-item.search.result.list.element.supervised-by": "സൂപ്പർവൈസ് ചെയ്യുന്നത്:", + "workflow-item.search.result.list.element.supervised.remove-tooltip": "സൂപ്പർവിഷൻ ഗ്രൂപ്പ് നീക്കം ചെയ്യുക", + "confidence.indicator.help-text.accepted": "ഈ അധികാര മൂല്യം ഒരു ഇന്ററാക്ടീവ് ഉപയോക്താവ് ശരിയാണെന്ന് സ്ഥിരീകരിച്ചിട്ടുണ്ട്", + "confidence.indicator.help-text.uncertain": "മൂല്യം ഒറ്റയടിക്ക് സാധുതയുള്ളതാണ്, പക്ഷേ ഒരു മനുഷ്യന് കണ്ടിട്ടും സ്വീകരിച്ചിട്ടും ഇല്ല, അതിനാൽ ഇപ്പോഴും അനിശ്ചിതമാണ്", + "confidence.indicator.help-text.ambiguous": "സമാന സാധുതയുള്ള ഒന്നിലധികം അധികാര മൂല്യങ്ങൾ ഉണ്ട്", + "confidence.indicator.help-text.notfound": "അധികാരത്തിൽ പൊരുത്തപ്പെടുന്ന ഉത്തരങ്ങളൊന്നുമില്ല", + "confidence.indicator.help-text.failed": "അധികാരത്തിന് ഒരു ആന്തരിക പരാജയം നേരിട്ടു", + "confidence.indicator.help-text.rejected": "ഈ സമർപ്പണം നിരസിക്കാൻ അധികാരം ശുപാർശ ചെയ്യുന്നു", + "confidence.indicator.help-text.novalue": "ഈ മൂല്യത്തിനായി യുക്തിസഹമായ ആത്മവിശ്വാസ മൂല്യം ഒന്നും തിരികെ ലഭിച്ചില്ല", + "confidence.indicator.help-text.unset": "ഈ മൂല്യത്തിനായി ആത്മവിശ്വാസം ഒരിക്കലും റെക്കോർഡ് ചെയ്തിട്ടില്ല", + "confidence.indicator.help-text.unknown": "അജ്ഞാതമായ ആത്മവിശ്വാസ മൂല്യം", + "item.page.abstract": "സംഗ്രഹം", + "item.page.author": "രചയിതാവ്", + "item.page.authors": "രചയിതാക്കൾ", + "item.page.citation": "ഉദ്ധരണി", + "item.page.collections": "സംഗ്രഹങ്ങൾ", + "item.page.collections.loading": "ലോഡ് ചെയ്യുന്നു...", + "item.page.collections.load-more": "കൂടുതൽ ലോഡ് ചെയ്യുക", + "item.page.date": "തീയതി", + "item.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", + "item.page.files": "ഫയലുകൾ", + "item.page.filesection.description": "വിവരണം:", + "item.page.filesection.download": "ഡൗൺലോഡ് ചെയ്യുക", + "item.page.filesection.format": "ഫോർമാറ്റ്:", + "item.page.filesection.name": "പേര്:", + "item.page.filesection.size": "വലുപ്പം:", + "item.page.journal.search.title": "ഈ ജേണലിലെ ലേഖനങ്ങൾ", + "item.page.link.full": "പൂർണ്ണ ഇനം പേജ്", + "item.page.link.simple": "ലളിതമായ ഇനം പേജ്", + "item.page.options": "ഓപ്ഷനുകൾ", + "item.page.orcid.title": "ORCID", + "item.page.orcid.tooltip": "ORCID സെറ്റിംഗ് പേജ് തുറക്കുക", + "item.page.person.search.title": "ഈ രചയിതാവിന്റെ ലേഖനങ്ങൾ", + "item.page.related-items.view-more": "{{ amount }} കൂടുതൽ കാണിക്കുക", + "item.page.related-items.view-less": "അവസാന {{ amount }} മറയ്ക്കുക", + "item.page.relationships.isAuthorOfPublication": "പ്രസിദ്ധീകരണങ്ങൾ", + "item.page.relationships.isJournalOfPublication": "പ്രസിദ്ധീകരണങ്ങൾ", + "item.page.relationships.isOrgUnitOfPerson": "രചയിതാക്കൾ", + "item.page.relationships.isOrgUnitOfProject": "ഗവേഷണ പ്രോജക്റ്റുകൾ", + "item.page.subject": "കീവേഡുകൾ", + "item.page.uri": "URI", + "item.page.bitstreams.view-more": "കൂടുതൽ കാണിക്കുക", + "item.page.bitstreams.collapse": "ചുരുക്കുക", + "item.page.bitstreams.primary": "പ്രാഥമികം", + "item.page.filesection.original.bundle": "യഥാർത്ഥ ബണ്ടിൽ", + "item.page.filesection.license.bundle": "ലൈസൻസ് ബണ്ടിൽ", + "item.page.return": "പിന്നിലേക്ക്", + "item.page.version.create": "പുതിയ പതിപ്പ് സൃഷ്ടിക്കുക", + "item.page.withdrawn": "ഈ ഇനത്തിനായി ഒരു പിൻവലിക്കൽ അഭ്യർത്ഥിക്കുക", + "item.page.reinstate": "പുനഃസ്ഥാപനം അഭ്യർത്ഥിക്കുക", + "item.page.version.hasDraft": "പതിപ്പ് ചരിത്രത്തിൽ ഒരു പുരോഗമിക്കുന്ന സമർപ്പണം ഉള്ളതിനാൽ ഒരു പുതിയ പതിപ്പ് സൃഷ്ടിക്കാൻ കഴിയില്ല", + "item.page.claim.button": "ക്ലെയിം ചെയ്യുക", + "item.page.claim.tooltip": "ഈ ഇനം പ്രൊഫൈലായി ക്ലെയിം ചെയ്യുക", + "item.page.image.alt.ROR": "ROR ലോഗോ", + "item.preview.dc.identifier.uri": "ഐഡന്റിഫയർ:", + "item.preview.dc.contributor.author": "രചയിതാക്കൾ:", + "item.preview.dc.date.issued": "പ്രസിദ്ധീകരിച്ച തീയതി:", + "item.preview.dc.description": "വിവരണം:", + "item.preview.dc.description.abstract": "സംഗ്രഹം:", + "item.preview.dc.identifier.other": "മറ്റ് ഐഡന്റിഫയർ:", + "item.preview.dc.language.iso": "ഭാഷ:", + "item.preview.dc.subject": "വിഷയങ്ങൾ:", + "item.preview.dc.title": "ശീർഷകം:", + "item.preview.dc.type": "തരം:", + "item.preview.oaire.version": "പതിപ്പ്", + "item.preview.oaire.citation.issue": "ഇഷ്യൂ", + "item.preview.oaire.citation.volume": "വോളിയം", + "item.preview.oaire.citation.title": "ഉദ്ധരണി കണ്ടെയ്നർ", + "item.preview.oaire.citation.startPage": "ഉദ്ധരണി ആരംഭ പേജ്", + "item.preview.oaire.citation.endPage": "ഉദ്ധരണി അവസാന പേജ്", + "item.preview.dc.relation.hasversion": "പതിപ്പ് ഉണ്ട്", + "item.preview.dc.relation.ispartofseries": "സീരീസിന്റെ ഭാഗമാണ്", + "item.preview.dc.rights": "അവകാശങ്ങൾ", + "item.preview.dc.identifier.other": "മറ്റ് ഐഡന്റിഫയർ", + "item.preview.dc.relation.issn": "ISSN", + "item.preview.dc.identifier.isbn": "ISBN", + "item.preview.dc.identifier": "ഐഡന്റിഫയർ:", + "item.preview.dc.relation.ispartof": "ജേണൽ അല്ലെങ്കിൽ സീരീസ്", + "item.preview.dc.identifier.doi": "DOI", + "item.preview.dc.publisher": "പ്രസാധകൻ:", + "item.preview.person.familyName": "അവസാന പേര്:", + "item.preview.person.givenName": "പേര്:", + "item.preview.person.identifier.orcid": "ORCID:", + "item.preview.person.affiliation.name": "അഫിലിയേഷനുകൾ:", + "item.preview.project.funder.name": "ഫണ്ടർ:", + "item.preview.project.funder.identifier": "ഫണ്ടർ ഐഡന്റിഫയർ:", + "item.preview.project.investigator": "പ്രോജക്റ്റ് അന്വേഷകൻ", + "item.preview.oaire.awardNumber": "ഫണ്ടിംഗ് ID:", + "item.preview.dc.title.alternative": "എക്രോണിം:", + "item.preview.dc.coverage.spatial": "അധികാരപരിധി:", + "item.preview.oaire.fundingStream": "ഫണ്ടിംഗ് സ്ട്രീം:", + "item.preview.oairecerif.identifier.url": "URL", + "item.preview.organization.address.addressCountry": "രാജ്യം", + "item.preview.organization.foundingDate": "സ്ഥാപന തീയതി", + "item.preview.organization.identifier.crossrefid": "Crossref ID", + "item.preview.organization.identifier.isni": "ISNI", + "item.preview.organization.identifier.ror": "ROR ID", + "item.preview.organization.legalName": "നിയമപരമായ പേര്", + "item.preview.dspace.entity.type": "എന്റിറ്റി തരം:", + "item.preview.creativework.publisher": "പ്രസാധകൻ", + "item.preview.creativeworkseries.issn": "ISSN", + "item.preview.dc.identifier.issn": "ISSN", + "item.preview.dc.identifier.openalex": "OpenAlex ഐഡന്റിഫയർ", + "item.preview.dc.description": "വിവരണം", + "item.select.confirm": "തിരഞ്ഞെടുത്തത് സ്ഥിരീകരിക്കുക", + "item.select.empty": "കാണിക്കാൻ ഇനങ്ങളൊന്നുമില്ല", + "item.select.table.selected": "തിരഞ്ഞെടുത്ത ഇനങ്ങൾ", + "item.select.table.select": "ഇനം തിരഞ്ഞെടുക്കുക", + "item.select.table.deselect": "ഇനം അൺസെലക്ട് ചെയ്യുക", + "item.select.table.author": "രചയിതാവ്", + "item.select.table.collection": "സംഗ്രഹം", + "item.select.table.title": "ശീർഷകം", + "item.version.history.empty": "ഈ ഇനത്തിന് ഇതുവരെ മറ്റ് പതിപ്പുകളൊന്നുമില്ല.", + "item.version.history.head": "പതിപ്പ് ചരിത്രം", + "item.version.history.return": "പിന്നിലേക്ക്", + "item.version.history.selected": "തിരഞ്ഞെടുത്ത പതിപ്പ്", + "item.version.history.selected.alert": "നിങ്ങൾ ഇപ്പോൾ ഇനത്തിന്റെ {{version}} പതിപ്പ് കാണുന്നു.", + "item.version.history.table.version": "പതിപ്പ്", + "item.version.history.table.item": "ഇനം", + "item.version.history.table.editor": "എഡിറ്റർ", + "item.version.history.table.date": "തീയതി", + "item.version.history.table.summary": "സംഗ്രഹം", + "item.version.history.table.workspaceItem": "വർക്ക്സ്പേസ് ഇനം", + "item.version.history.table.workflowItem": "വർക്ക്ഫ്ലോ ഇനം", + "item.version.history.table.actions": "പ്രവർത്തനം", + "item.version.history.table.action.editWorkspaceItem": "വർക്ക്സ്പേസ് ഇനം എഡിറ്റ് ചെയ്യുക", + "item.version.history.table.action.editSummary": "സംഗ്രഹം എഡിറ്റ് ചെയ്യുക", + "item.version.history.table.action.saveSummary": "സംഗ്രഹ എഡിറ്റുകൾ സംരക്ഷിക്കുക", + "item.version.history.table.action.discardSummary": "സംഗ്രഹ എഡിറ്റുകൾ നിരസിക്കുക", + "item.version.history.table.action.newVersion": "ഇതിൽ നിന്ന് ഒരു പുതിയ പതിപ്പ് സൃഷ്ടിക്കുക", + "item.version.history.table.action.deleteVersion": "പതിപ്പ് ഇല്ലാതാക്കുക", + "item.version.history.table.action.hasDraft": "പതിപ്പ് ചരിത്രത്തിൽ ഒരു പുരോഗമിക്കുന്ന സമർപ്പണം ഉള്ളതിനാൽ ഒരു പുതിയ പതിപ്പ് സൃഷ്ടിക്കാൻ കഴിയില്ല", + + "item.version.notice": "ഇത് ഈ ഇനത്തിന്റെ ഏറ്റവും പുതിയ പതിപ്പല്ല. ഏറ്റവും പുതിയ പതിപ്പ് ഇവിടെ കാണാം.", + + "item.version.create.modal.header": "പുതിയ പതിപ്പ്", + + "item.qa.withdrawn.modal.header": "പിൻവലിക്കൽ അഭ്യർത്ഥിക്കുക", + + "item.qa.reinstate.modal.header": "പുനഃസ്ഥാപിക്കൽ അഭ്യർത്ഥിക്കുക", + + "item.qa.reinstate.create.modal.header": "പുതിയ പതിപ്പ്", + + "item.version.create.modal.text": "ഈ ഇനത്തിനായി ഒരു പുതിയ പതിപ്പ് സൃഷ്ടിക്കുക", + + "item.version.create.modal.text.startingFrom": "{{version}} പതിപ്പിൽ നിന്ന് ആരംഭിക്കുന്നു", + + "item.version.create.modal.button.confirm": "സൃഷ്ടിക്കുക", + + "item.version.create.modal.button.confirm.tooltip": "പുതിയ പതിപ്പ് സൃഷ്ടിക്കുക", + + "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "അഭ്യർത്ഥന അയയ്ക്കുക", + + "qa-withdrown.create.modal.button.confirm": "പിൻവലിക്കുക", + + "qa-reinstate.create.modal.button.confirm": "പുനഃസ്ഥാപിക്കുക", + + "item.version.create.modal.button.cancel": "റദ്ദാക്കുക", + + "item.qa.withdrawn-reinstate.create.modal.button.cancel": "റദ്ദാക്കുക", + + "item.version.create.modal.button.cancel.tooltip": "പുതിയ പതിപ്പ് സൃഷ്ടിക്കരുത്", + + "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "അഭ്യർത്ഥന അയയ്ക്കരുത്", + + "item.version.create.modal.form.summary.label": "സംഗ്രഹം", + + "qa-withdrawn.create.modal.form.summary.label": "നിങ്ങൾ ഈ ഇനം പിൻവലിക്കാൻ അഭ്യർത്ഥിക്കുന്നു", + + "qa-withdrawn.create.modal.form.summary2.label": "പിൻവലിക്കലിനുള്ള കാരണം നൽകുക", + + "qa-reinstate.create.modal.form.summary.label": "നിങ്ങൾ ഈ ഇനം പുനഃസ്ഥാപിക്കാൻ അഭ്യർത്ഥിക്കുന്നു", + + "qa-reinstate.create.modal.form.summary2.label": "പുനഃസ്ഥാപിക്കലിനുള്ള കാരണം നൽകുക", + + "item.version.create.modal.form.summary.placeholder": "പുതിയ പതിപ്പിനായി സംഗ്രഹം നൽകുക", + + "qa-withdrown.modal.form.summary.placeholder": "പിൻവലിക്കലിനുള്ള കാരണം നൽകുക", + + "qa-reinstate.modal.form.summary.placeholder": "പുനഃസ്ഥാപിക്കലിനുള്ള കാരണം നൽകുക", + + "item.version.create.modal.submitted.header": "പുതിയ പതിപ്പ് സൃഷ്ടിക്കുന്നു...", + + "item.qa.withdrawn.modal.submitted.header": "പിൻവലിക്കൽ അഭ്യർത്ഥന അയയ്ക്കുന്നു...", + + "correction-type.manage-relation.action.notification.reinstate": "പുനഃസ്ഥാപിക്കൽ അഭ്യർത്ഥന അയച്ചു.", + + "correction-type.manage-relation.action.notification.withdrawn": "പിൻവലിക്കൽ അഭ്യർത്ഥന അയച്ചു.", + + "item.version.create.modal.submitted.text": "പുതിയ പതിപ്പ് സൃഷ്ടിക്കുന്നു. ഇനത്തിന് ധാരാളം ബന്ധങ്ങളുണ്ടെങ്കിൽ ഇതിന് സമയമെടുക്കാം.", + + "item.version.create.notification.success": "{{version}} പതിപ്പ് നമ്പറുള്ള പുതിയ പതിപ്പ് സൃഷ്ടിച്ചു", + + "item.version.create.notification.failure": "പുതിയ പതിപ്പ് സൃഷ്ടിച്ചിട്ടില്ല", + + "item.version.create.notification.inProgress": "പതിപ്പ് ചരിത്രത്തിൽ പ്രക്രിയയിലുള്ള സമർപ്പണമുണ്ടെന്നതിനാൽ പുതിയ പതിപ്പ് സൃഷ്ടിക്കാൻ കഴിയില്ല", + + "item.version.delete.modal.header": "പതിപ്പ് ഇല്ലാതാക്കുക", + + "item.version.delete.modal.text": "{{version}} പതിപ്പ് ഇല്ലാതാക്കണമോ?", + + "item.version.delete.modal.button.confirm": "ഇല്ലാതാക്കുക", + + "item.version.delete.modal.button.confirm.tooltip": "ഈ പതിപ്പ് ഇല്ലാതാക്കുക", + + "item.version.delete.modal.button.cancel": "റദ്ദാക്കുക", + + "item.version.delete.modal.button.cancel.tooltip": "ഈ പതിപ്പ് ഇല്ലാതാക്കരുത്", + + "item.version.delete.notification.success": "{{version}} പതിപ്പ് നമ്പർ ഇല്ലാതാക്കി", + + "item.version.delete.notification.failure": "{{version}} പതിപ്പ് നമ്പർ ഇല്ലാതാക്കിയിട്ടില്ല", + + "item.version.edit.notification.success": "{{version}} പതിപ്പ് നമ്പറിന്റെ സംഗ്രഹം മാറ്റി", + + "item.version.edit.notification.failure": "{{version}} പതിപ്പ് നമ്പറിന്റെ സംഗ്രഹം മാറ്റിയിട്ടില്ല", + + "itemtemplate.edit.metadata.add-button": "ചേർക്കുക", + + "itemtemplate.edit.metadata.discard-button": "ഉപേക്ഷിക്കുക", + + "itemtemplate.edit.metadata.edit.language": "ഭാഷ എഡിറ്റ് ചെയ്യുക", + + "itemtemplate.edit.metadata.edit.value": "മൂല്യം എഡിറ്റ് ചെയ്യുക", + + "itemtemplate.edit.metadata.edit.buttons.confirm": "സ്ഥിരീകരിക്കുക", + + "itemtemplate.edit.metadata.edit.buttons.drag": "പുനഃക്രമീകരിക്കാൻ വലിച്ചിടുക", + + "itemtemplate.edit.metadata.edit.buttons.edit": "എഡിറ്റ് ചെയ്യുക", + + "itemtemplate.edit.metadata.edit.buttons.remove": "നീക്കം ചെയ്യുക", + + "itemtemplate.edit.metadata.edit.buttons.undo": "മാറ്റങ്ങൾ റദ്ദാക്കുക", + + "itemtemplate.edit.metadata.edit.buttons.unedit": "എഡിറ്റിംഗ് നിർത്തുക", + + "itemtemplate.edit.metadata.empty": "ഇനം ടെംപ്ലേറ്റിൽ ഇപ്പോൾ മെറ്റാഡാറ്റ ഇല്ല. മെറ്റാഡാറ്റ മൂല്യം ചേർക്കാൻ ചേർക്കുക ക്ലിക്ക് ചെയ്യുക.", + + "itemtemplate.edit.metadata.headers.edit": "എഡിറ്റ് ചെയ്യുക", + + "itemtemplate.edit.metadata.headers.field": "ഫീൽഡ്", + + "itemtemplate.edit.metadata.headers.language": "ഭാഷ", + + "itemtemplate.edit.metadata.headers.value": "മൂല്യം", + + "itemtemplate.edit.metadata.metadatafield": "ഫീൽഡ് എഡിറ്റ് ചെയ്യുക", + + "itemtemplate.edit.metadata.metadatafield.error": "മെറ്റാഡാറ്റ ഫീൽഡ് സാധൂകരിക്കുന്നതിൽ ഒരു പിശക് സംഭവിച്ചു", + + "itemtemplate.edit.metadata.metadatafield.invalid": "സാധുവായ ഒരു മെറ്റാഡാറ്റ ഫീൽഡ് തിരഞ്ഞെടുക്കുക", + + "itemtemplate.edit.metadata.notifications.discarded.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ ഉപേക്ഷിച്ചു. നിങ്ങളുടെ മാറ്റങ്ങൾ പുനഃസ്ഥാപിക്കാൻ 'അൺഡു' ബട്ടൺ ക്ലിക്ക് ചെയ്യുക", + + "itemtemplate.edit.metadata.notifications.discarded.title": "മാറ്റങ്ങൾ ഉപേക്ഷിച്ചു", + + "itemtemplate.edit.metadata.notifications.error.title": "ഒരു പിശക് സംഭവിച്ചു", + + "itemtemplate.edit.metadata.notifications.invalid.content": "നിങ്ങളുടെ മാറ്റങ്ങൾ സേവ് ചെയ്തിട്ടില്ല. സേവ് ചെയ്യുന്നതിന് മുമ്പ് എല്ലാ ഫീൽഡുകളും സാധുവാണെന്ന് ഉറപ്പാക്കുക.", + + "itemtemplate.edit.metadata.notifications.invalid.title": "മെറ്റാഡാറ്റ അസാധുവാണ്", + + "itemtemplate.edit.metadata.notifications.outdated.content": "നിങ്ങൾ ഇപ്പോൾ പ്രവർത്തിക്കുന്ന ഇനം ടെംപ്ലേറ്റ് മറ്റൊരു ഉപയോക്താവ് മാറ്റിയിട്ടുണ്ട്. conflicts ഒഴിവാക്കാൻ നിങ്ങളുടെ നിലവിലെ മാറ്റങ്ങൾ ഉപേക്ഷിച്ചു", + + "itemtemplate.edit.metadata.notifications.outdated.title": "മാറ്റങ്ങൾ കാലഹരണപ്പെട്ടു", + + "itemtemplate.edit.metadata.notifications.saved.content": "ഈ ഇനം ടെംപ്ലേറ്റിന്റെ മെറ്റാഡാറ്റയിലെ നിങ്ങളുടെ മാറ്റങ്ങൾ സേവ് ചെയ്തു.", + + "itemtemplate.edit.metadata.notifications.saved.title": "മെറ്റാഡാറ്റ സേവ് ചെയ്തു", + + "itemtemplate.edit.metadata.reinstate-button": "അൺഡു", + + "itemtemplate.edit.metadata.reset-order-button": "പുനഃക്രമീകരണം റദ്ദാക്കുക", + + "itemtemplate.edit.metadata.save-button": "സേവ് ചെയ്യുക", + + "journal.listelement.badge": "ജേണൽ", + + "journal.page.description": "വിവരണം", + + "journal.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", + + "journal.page.editor": "എഡിറ്റർ-ഇൻ-ചീഫ്", + + "journal.page.issn": "ISSN", + + "journal.page.publisher": "പ്രസാധകൻ", + + "journal.page.options": "ഓപ്ഷനുകൾ", + + "journal.page.titleprefix": "ജേണൽ: ", + + "journal.search.results.head": "ജേണൽ തിരയൽ ഫലങ്ങൾ", + + "journal-relationships.search.results.head": "ജേണൽ തിരയൽ ഫലങ്ങൾ", + + "journal.search.title": "ജേണൽ തിരയൽ", + + "journalissue.listelement.badge": "ജേണൽ ഇഷ്യൂ", + + "journalissue.page.description": "വിവരണം", + + "journalissue.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", + + "journalissue.page.issuedate": "ഇഷ്യൂ തീയതി", + + "journalissue.page.journal-issn": "ജേണൽ ISSN", + + "journalissue.page.journal-title": "ജേണൽ ശീർഷകം", + + "journalissue.page.keyword": "കീവേഡുകൾ", + + "journalissue.page.number": "നമ്പർ", + + "journalissue.page.options": "ഓപ്ഷനുകൾ", + + "journalissue.page.titleprefix": "ജേണൽ ഇഷ്യൂ: ", + + "journalissue.search.results.head": "ജേണൽ ഇഷ്യൂ തിരയൽ ഫലങ്ങൾ", + + "journalvolume.listelement.badge": "ജേണൽ വാല്യം", + + "journalvolume.page.description": "വിവരണം", + + "journalvolume.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", + + "journalvolume.page.issuedate": "ഇഷ്യൂ തീയതി", + + "journalvolume.page.options": "ഓപ്ഷനുകൾ", + + "journalvolume.page.titleprefix": "ജേണൽ വാല്യം: ", + + "journalvolume.page.volume": "വാല്യം", + + "journalvolume.search.results.head": "ജേണൽ വാല്യം തിരയൽ ഫലങ്ങൾ", + + "iiifsearchable.listelement.badge": "ഡോക്യുമെന്റ് മീഡിയ", + + "iiifsearchable.page.titleprefix": "ഡോക്യുമെന്റ്: ", + + "iiifsearchable.page.doi": "സ്ഥിരമായ ലിങ്ക്: ", + + "iiifsearchable.page.issue": "ഇഷ്യൂ: ", + + "iiifsearchable.page.description": "വിവരണം: ", + + "iiifviewer.fullscreen.notice": "മികച്ച കാഴ്ചയ്ക്ക് ഫുൾ സ്ക്രീൻ ഉപയോഗിക്കുക.", + + "iiif.listelement.badge": "ഇമേജ് മീഡിയ", + + "iiif.page.titleprefix": "ഇമേജ്: ", + + "iiif.page.doi": "സ്ഥിരമായ ലിങ്ക്: ", + + "iiif.page.issue": "ഇഷ്യൂ: ", + + "iiif.page.description": "വിവരണം: ", + + "loading.bitstream": "ബിറ്റ്സ്ട്രീം ലോഡ് ചെയ്യുന്നു...", + + "loading.bitstreams": "ബിറ്റ്സ്ട്രീമുകൾ ലോഡ് ചെയ്യുന്നു...", + + "loading.browse-by": "ഇനങ്ങൾ ലോഡ് ചെയ്യുന്നു...", + + "loading.browse-by-page": "പേജ് ലോഡ് ചെയ്യുന്നു...", + + "loading.collection": "കളക്ഷൻ ലോഡ് ചെയ്യുന്നു...", + + "loading.collections": "കളക്ഷനുകൾ ലോഡ് ചെയ്യുന്നു...", + + "loading.content-source": "ഉള്ളടക്ക ഉറവിടം ലോഡ് ചെയ്യുന്നു...", + + "loading.community": "കമ്മ്യൂണിറ്റി ലോഡ് ചെയ്യുന്നു...", + + "loading.default": "ലോഡ് ചെയ്യുന്നു...", + + "loading.item": "ഇനം ലോഡ് ചെയ്യുന്നു...", + + "loading.items": "ഇനങ്ങൾ ലോഡ് ചെയ്യുന്നു...", + + "loading.mydspace-results": "ഇനങ്ങൾ ലോഡ് ചെയ്യുന്നു...", + + "loading.objects": "ലോഡ് ചെയ്യുന്നു...", + + "loading.recent-submissions": "സമീപകാല സമർപ്പണങ്ങൾ ലോഡ് ചെയ്യുന്നു...", + + "loading.search-results": "തിരയൽ ഫലങ്ങൾ ലോഡ് ചെയ്യുന്നു...", + + "loading.sub-collections": "സബ്-കളക്ഷനുകൾ ലോഡ് ചെയ്യുന്നു...", + + "loading.sub-communities": "സബ്-കമ്മ്യൂണിറ്റികൾ ലോഡ് ചെയ്യുന്നു...", + + "loading.top-level-communities": "ടോപ്പ്-ലെവൽ കമ്മ്യൂണിറ്റികൾ ലോഡ് ചെയ്യുന്നു...", + + "login.form.email": "ഇമെയിൽ വിലാസം", + + "login.form.forgot-password": "നിങ്ങളുടെ പാസ്വേഡ് മറന്നുപോയോ?", + + "login.form.header": "ദയവായി DSpace-ലേക്ക് ലോഗിൻ ചെയ്യുക", + + "login.form.new-user": "പുതിയ ഉപയോക്താവാണോ? രജിസ്റ്റർ ചെയ്യാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക.", + + "login.form.oidc": "OIDC ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക", + + "login.form.orcid": "ORCID ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക", + + "login.form.saml": "SAML ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക", + + "login.form.shibboleth": "Shibboleth ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക", + + "login.form.password": "പാസ്വേഡ്", + + "login.form.submit": "ലോഗിൻ ചെയ്യുക", + + "login.title": "ലോഗിൻ", + + "login.breadcrumbs": "ലോഗിൻ", + + "logout.form.header": "DSpace-ൽ നിന്ന് ലോഗൗട്ട് ചെയ്യുക", + + "logout.form.submit": "ലോഗൗട്ട് ചെയ്യുക", + + "logout.title": "ലോഗൗട്ട്", + + "menu.header.nav.description": "അഡ്മിൻ നാവിഗേഷൻ ബാർ", + + "menu.header.admin": "മാനേജ്മെന്റ്", + + "menu.header.image.logo": "റെപ്പോസിറ്ററി ലോഗോ", + + "menu.header.admin.description": "മാനേജ്മെന്റ് മെനു", + + "menu.section.access_control": "ആക്സസ് കൺട്രോൾ", + + "menu.section.access_control_authorizations": "അനുമതികൾ", + + "menu.section.access_control_bulk": "ബൾക്ക് ആക്സസ് മാനേജ്മെന്റ്", + + "menu.section.access_control_groups": "ഗ്രൂപ്പുകൾ", + + "menu.section.access_control_people": "ആളുകൾ", + + "menu.section.reports": "റിപ്പോർട്ടുകൾ", + + "menu.section.reports.collections": "ഫിൽട്ടർ ചെയ്ത കളക്ഷനുകൾ", + + "menu.section.reports.queries": "മെറ്റാഡാറ്റ ക്വറി", + + "menu.section.admin_search": "അഡ്മിൻ തിരയൽ", + + "menu.section.browse_community": "ഈ കമ്മ്യൂണിറ്റി", + + "menu.section.browse_community_by_author": "രചയിതാവ് പ്രകാരം", + + "menu.section.browse_community_by_issue_date": "ഇഷ്യൂ തീയതി പ്രകാരം", + + "menu.section.browse_community_by_title": "ശീർഷകം പ്രകാരം", + + "menu.section.browse_global": "DSpace എല്ലാം", + + "menu.section.browse_global_by_author": "രചയിതാവ് പ്രകാരം", + + "menu.section.browse_global_by_dateissued": "ഇഷ്യൂ തീയതി പ്രകാരം", + + "menu.section.browse_global_by_subject": "വിഷയം പ്രകാരം", + + "menu.section.browse_global_by_srsc": "ഗവേഷണ വിഷയ വിഭാഗങ്ങൾ പ്രകാരം", + + "menu.section.browse_global_by_nsi": "നോർവീജിയൻ സയൻസ് ഇൻഡക്സ് പ്രകാരം", + + "menu.section.browse_global_by_title": "ശീർഷകം പ്രകാരം", + + "menu.section.browse_global_communities_and_collections": "കമ്മ്യൂണിറ്റികളും കളക്ഷനുകളും", + + "menu.section.browse_global_geospatial_map": "ജിയോലൊക്കേഷൻ (മാപ്പ്) പ്രകാരം", + + "menu.section.control_panel": "കൺട്രോൾ പാനൽ", + + "menu.section.curation_task": "ക്യൂറേഷൻ ടാസ്ക്", + + "menu.section.edit": "എഡിറ്റ്", + + "menu.section.edit_collection": "കളക്ഷൻ", + + "menu.section.edit_community": "കമ്മ്യൂണിറ്റി", + + "menu.section.edit_item": "ഇനം", + + "menu.section.export": "എക്സ്പോർട്ട്", + + "menu.section.export_collection": "കളക്ഷൻ", + + "menu.section.export_community": "കമ്മ്യൂണിറ്റി", + + "menu.section.export_item": "ഇനം", + + "menu.section.export_metadata": "മെറ്റാഡാറ്റ", + + "menu.section.export_batch": "ബാച്ച് എക്സ്പോർട്ട് (ZIP)", + + "menu.section.icon.access_control": "ആക്സസ് കൺട്രോൾ മെനു വിഭാഗം", + + "menu.section.icon.reports": "റിപ്പോർട്ടുകൾ മെനു വിഭാഗം", + + "menu.section.icon.admin_search": "അഡ്മിൻ തിരയൽ മെനു വിഭാഗം", + + "menu.section.icon.control_panel": "കൺട്രോൾ പാനൽ മെനു വിഭാഗം", + + "menu.section.icon.curation_tasks": "ക്യൂറേഷൻ ടാസ്ക് മെനു വിഭാഗം", + + "menu.section.icon.edit": "എഡിറ്റ് മെനു വിഭാഗം", + + "menu.section.icon.export": "എക്സ്പോർട്ട് മെനു വിഭാഗം", + + "menu.section.icon.find": "ഫൈൻഡ് മെനു വിഭാഗം", + + "menu.section.icon.health": "ഹെൽത്ത് ചെക്ക് മെനു വിഭാഗം", + + "menu.section.icon.import": "ഇംപോർട്ട് മെനു വിഭാഗം", + + "menu.section.icon.new": "ന്യൂ മെനു വിഭാഗം", + + "menu.section.icon.pin": "സൈഡ്ബാർ പിൻ ചെയ്യുക", + + "menu.section.icon.unpin": "സൈഡ്ബാർ അൺപിൻ ചെയ്യുക", + + "menu.section.icon.notifications": "നോട്ടിഫിക്കേഷനുകൾ മെനു വിഭാഗം", + + "menu.section.import": "ഇംപോർട്ട്", + + "menu.section.import_batch": "ബാച്ച് ഇംപോർട്ട് (ZIP)", + + "menu.section.import_metadata": "മെറ്റാഡാറ്റ", + + "menu.section.new": "പുതിയത്", + + "menu.section.new_collection": "കളക്ഷൻ", + + "menu.section.new_community": "കമ്മ്യൂണിറ്റി", + + "menu.section.new_item": "ഇനം", + + "menu.section.new_item_version": "ഇനം പതിപ്പ്", + + "menu.section.new_process": "പ്രോസസ്സ്", + + "menu.section.notifications": "നോട്ടിഫിക്കേഷനുകൾ", + + "menu.section.quality-assurance": "ഗുണനിലവാര ഉറപ്പ്", + + "menu.section.notifications_publication-claim": "പബ്ലിക്കേഷൻ ക്ലെയിം", + + "menu.section.pin": "സൈഡ്ബാർ പിൻ ചെയ്യുക", + + "menu.section.unpin": "സൈഡ്ബാർ അൺപിൻ ചെയ്യുക", + + "menu.section.processes": "പ്രോസസുകൾ", + + "menu.section.health": "ആരോഗ്യം", + + "menu.section.registries": "റെജിസ്ട്രികൾ", + + "menu.section.registries_format": "ഫോർമാറ്റ്", + + "menu.section.registries_metadata": "മെറ്റാഡാറ്റ", + + "menu.section.statistics": "സ്ഥിതിവിവരക്കണക്കുകൾ", + + "menu.section.statistics_task": "സ്ഥിതിവിവരക്കണക്കുകൾ ടാസ്ക്", + + "menu.section.toggle.access_control": "ആക്സസ് കൺട്രോൾ വിഭാഗം ടോഗിൾ ചെയ്യുക", + + "menu.section.toggle.reports": "റിപ്പോർട്ടുകൾ വിഭാഗം ടോഗിൾ ചെയ്യുക", + + "menu.section.toggle.control_panel": "കൺട്രോൾ പാനൽ വിഭാഗം ടോഗിൾ ചെയ്യുക", + "menu.section.toggle.curation_task": "കുറേഷൻ ടാസ്ക് വിഭാഗം ടോഗിൾ ചെയ്യുക", + "menu.section.toggle.edit": "എഡിറ്റ് വിഭാഗം ടോഗിൾ ചെയ്യുക", + "menu.section.toggle.export": "എക്സ്പോർട്ട് വിഭാഗം ടോഗിൾ ചെയ്യുക", + "menu.section.toggle.find": "ഫൈൻഡ് വിഭാഗം ടോഗിൾ ചെയ്യുക", + "menu.section.toggle.import": "ഇംപോർട്ട് വിഭാഗം ടോഗിൾ ചെയ്യുക", + "menu.section.toggle.new": "ന്യൂ വിഭാഗം ടോഗിൾ ചെയ്യുക", + "menu.section.toggle.registries": "റെജിസ്ട്രികൾ വിഭാഗം ടോഗിൾ ചെയ്യുക", + "menu.section.toggle.statistics_task": "സ്റ്റാറ്റിസ്റ്റിക്സ് ടാസ്ക് വിഭാഗം ടോഗിൾ ചെയ്യുക", + "menu.section.workflow": "വർക്ക്ഫ്ലോ അഡ്മിനിസ്റ്റർ ചെയ്യുക", + + "metadata-export-search.tooltip": "തിരയൽ ഫലങ്ങൾ CSV ആയി എക്സ്പോർട്ട് ചെയ്യുക", + "metadata-export-search.submit.success": "എക്സ്പോർട്ട് വിജയകരമായി ആരംഭിച്ചു", + "metadata-export-search.submit.error": "എക്സ്പോർട്ട് ആരംഭിക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "mydspace.breadcrumbs": "എന്റെ DSpace", + "mydspace.description": "", + "mydspace.messages.controller-help": "ഇതം സമർപ്പിച്ചയാളെ സന്ദേശം അയയ്ക്കാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", + "mydspace.messages.description-placeholder": "നിങ്ങളുടെ സന്ദേശം ഇവിടെ ഇടുക...", + "mydspace.messages.hide-msg": "സന്ദേശം മറയ്ക്കുക", + "mydspace.messages.mark-as-read": "വായിച്ചതായി അടയാളപ്പെടുത്തുക", + "mydspace.messages.mark-as-unread": "വായിക്കാത്തതായി അടയാളപ്പെടുത്തുക", + "mydspace.messages.no-content": "ഉള്ളടക്കം ഇല്ല.", + "mydspace.messages.no-messages": "ഇതുവരെ സന്ദേശങ്ങളൊന്നുമില്ല.", + "mydspace.messages.send-btn": "അയയ്ക്കുക", + "mydspace.messages.show-msg": "സന്ദേശം കാണിക്കുക", + "mydspace.messages.subject-placeholder": "വിഷയം...", + "mydspace.messages.submitter-help": "കൺട്രോളറിന് സന്ദേശം അയയ്ക്കാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", + "mydspace.messages.title": "സന്ദേശങ്ങൾ", + "mydspace.messages.to": "ഇതിലേക്ക്", + + "mydspace.new-submission": "പുതിയ സമർപ്പണം", + "mydspace.new-submission-external": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് മെറ്റാഡേറ്റ ഇംപോർട്ട് ചെയ്യുക", + "mydspace.new-submission-external-short": "മെറ്റാഡേറ്റ ഇംപോർട്ട് ചെയ്യുക", + + "mydspace.results.head": "നിങ്ങളുടെ സമർപ്പണങ്ങൾ", + "mydspace.results.no-abstract": "അമൂർത്തി ഇല്ല", + "mydspace.results.no-authors": "രചയിതാക്കൾ ഇല്ല", + "mydspace.results.no-collections": "കളക്ഷനുകൾ ഇല്ല", + "mydspace.results.no-date": "തീയതി ഇല്ല", + "mydspace.results.no-files": "ഫയലുകൾ ഇല്ല", + "mydspace.results.no-results": "കാണിക്കാൻ ഇതങ്ങളൊന്നുമില്ല", + "mydspace.results.no-title": "തലക്കെട്ട് ഇല്ല", + "mydspace.results.no-uri": "URI ഇല്ല", + + "mydspace.search-form.placeholder": "എന്റെ DSpace-ൽ തിരയുക...", + "mydspace.show.workflow": "വർക്ക്ഫ്ലോ ടാസ്ക്കുകൾ", + "mydspace.show.workspace": "നിങ്ങളുടെ സമർപ്പണങ്ങൾ", + "mydspace.show.supervisedWorkspace": "പരിപാലിക്കപ്പെട്ട ഇതങ്ങൾ", + "mydspace.status": "എന്റെ DSpace സ്ഥിതി:", + "mydspace.status.mydspaceArchived": "ആർക്കൈവ് ചെയ്തു", + "mydspace.status.mydspaceValidation": "സാധൂകരണം", + "mydspace.status.mydspaceWaitingController": "റിവ്യൂവറിനായി കാത്തിരിക്കുന്നു", + "mydspace.status.mydspaceWorkflow": "വർക്ക്ഫ്ലോ", + "mydspace.status.mydspaceWorkspace": "വർക്ക്സ്പേസ്", + "mydspace.title": "എന്റെ DSpace", + "mydspace.upload.upload-failed": "പുതിയ വർക്ക്സ്പേസ് സൃഷ്ടിക്കുന്നതിൽ പിശക്. വീണ്ടും ശ്രമിക്കുന്നതിന് മുമ്പ് അപ്ലോഡ് ചെയ്ത ഉള്ളടക്കം പരിശോധിക്കുക.", + "mydspace.upload.upload-failed-manyentries": "പ്രോസസ്സ് ചെയ്യാൻ കഴിയാത്ത ഫയൽ. ഒരു ഫയലിന് മാത്രമേ അനുവദിച്ചിട്ടുള്ളൂ എന്നാൽ ധാരാളം എൻട്രികൾ കണ്ടെത്തി.", + "mydspace.upload.upload-failed-moreonefile": "പ്രോസസ്സ് ചെയ്യാൻ കഴിയാത്ത അഭ്യർത്ഥന. ഒരു ഫയൽ മാത്രമേ അനുവദിച്ചിട്ടുള്ളൂ.", + "mydspace.upload.upload-multiple-successful": "{{qty}} പുതിയ വർക്ക്സ്പേസ് ഇതങ്ങൾ സൃഷ്ടിച്ചു.", + "mydspace.view-btn": "കാണുക", + + "nav.expandable-navbar-section-suffix": "(സബ്മെനു)", + "notification.suggestion": "ഞങ്ങൾക്ക് {{source}} ൽ നിങ്ങളുടെ പ്രൊഫൈലുമായി ബന്ധപ്പെട്ട {{count}} പബ്ലിക്കേഷനുകൾ കണ്ടെത്തി.
", + "notification.suggestion.review": "സൂചനകൾ അവലോകനം ചെയ്യുക", + "notification.suggestion.please": "ദയവായി", + + "nav.browse.header": "DSpace ന്റെ എല്ലാം", + "nav.community-browse.header": "കമ്മ്യൂണിറ്റി പ്രകാരം", + "nav.context-help-toggle": "കോൺടെക്സ്റ്റ് സഹായം ടോഗിൾ ചെയ്യുക", + "nav.language": "ഭാഷ മാറ്റുക", + "nav.login": "ലോഗിൻ ചെയ്യുക", + "nav.user-profile-menu-and-logout": "യൂസർ പ്രൊഫൈൽ മെനു, ലോഗൗട്ട്", + "nav.logout": "ലോഗൗട്ട് ചെയ്യുക", + "nav.main.description": "പ്രധാന നാവിഗേഷൻ ബാർ", + "nav.mydspace": "എന്റെ DSpace", + "nav.profile": "പ്രൊഫൈൽ", + "nav.search": "തിരയുക", + "nav.search.button": "തിരയൽ സമർപ്പിക്കുക", + "nav.statistics.header": "സ്ഥിതിവിവരക്കണക്കുകൾ", + "nav.stop-impersonating": "EPerson ആയി നടിക്കുന്നത് നിർത്തുക", + "nav.subscriptions": "സബ്സ്ക്രിപ്ഷനുകൾ", + "nav.toggle": "നാവിഗേഷൻ ടോഗിൾ ചെയ്യുക", + "nav.user.description": "യൂസർ പ്രൊഫൈൽ ബാർ", + + "listelement.badge.dso-type": "ഇതം തരം:", + "none.listelement.badge": "ഇതം", + + "publication-claim.title": "പബ്ലിക്കേഷൻ ക്ലെയിം", + "publication-claim.source.description": "ചുവടെ നിങ്ങൾക്ക് എല്ലാ സ്രോതസ്സുകളും കാണാം.", + + "quality-assurance.title": "ഗുണനിലവാര ഉറപ്പ്", + "quality-assurance.topics.description": "ചുവടെ നിങ്ങൾക്ക് {{source}} ലേക്കുള്ള സബ്സ്ക്രിപ്ഷനുകളിൽ നിന്ന് ലഭിച്ച എല്ലാ വിഷയങ്ങളും കാണാം.", + "quality-assurance.source.description": "ചുവടെ നിങ്ങൾക്ക് എല്ലാ അറിയിപ്പ് സ്രോതസ്സുകളും കാണാം.", + "quality-assurance.topics": "നിലവിലെ വിഷയങ്ങൾ", + "quality-assurance.source": "നിലവിലെ സ്രോതസ്സുകൾ", + "quality-assurance.table.topic": "വിഷയം", + "quality-assurance.table.source": "സ്രോതസ്സ്", + "quality-assurance.table.last-event": "അവസാന ഇവന്റ്", + "quality-assurance.table.actions": "പ്രവർത്തനങ്ങൾ", + "quality-assurance.source-list.button.detail": "{{param}} നായി വിഷയങ്ങൾ കാണിക്കുക", + "quality-assurance.topics-list.button.detail": "{{param}} നായി സൂചനകൾ കാണിക്കുക", + "quality-assurance.noTopics": "വിഷയങ്ങൾ ഒന്നും കണ്ടെത്തിയില്ല.", + "quality-assurance.noSource": "സ്രോതസ്സുകൾ ഒന്നും കണ്ടെത്തിയില്ല.", + "notifications.events.title": "ഗുണനിലവാര ഉറപ്പ് സൂചനകൾ", + "quality-assurance.topic.error.service.retrieve": "ഗുണനിലവാര ഉറപ്പ് വിഷയങ്ങൾ ലോഡ് ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", + "quality-assurance.source.error.service.retrieve": "ഗുണനിലവാര ഉറപ്പ് സ്രോതസ്സ് ലോഡ് ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", + "quality-assurance.loading": "ലോഡ് ചെയ്യുന്നു ...", + "quality-assurance.events.topic": "വിഷയം:", + "quality-assurance.noEvents": "സൂചനകൾ ഒന്നും കണ്ടെത്തിയില്ല.", + "quality-assurance.event.table.trust": "വിശ്വാസ്യത", + "quality-assurance.event.table.publication": "പബ്ലിക്കേഷൻ", + "quality-assurance.event.table.details": "വിശദാംശങ്ങൾ", + "quality-assurance.event.table.project-details": "പ്രോജക്റ്റ് വിശദാംശങ്ങൾ", + "quality-assurance.event.table.reasons": "കാരണങ്ങൾ", + "quality-assurance.event.table.actions": "പ്രവർത്തനങ്ങൾ", + "quality-assurance.event.action.accept": "സൂചന സ്വീകരിക്കുക", + "quality-assurance.event.action.ignore": "സൂചന അവഗണിക്കുക", + "quality-assurance.event.action.undo": "ഇല്ലാതാക്കുക", + "quality-assurance.event.action.reject": "സൂചന നിരസിക്കുക", + "quality-assurance.event.action.import": "പ്രോജക്റ്റ് ഇംപോർട്ട് ചെയ്ത് സൂചന സ്വീകരിക്കുക", + "quality-assurance.event.table.pidtype": "PID തരം:", + "quality-assurance.event.table.pidvalue": "PID മൂല്യം:", + "quality-assurance.event.table.subjectValue": "വിഷയ മൂല്യം:", + "quality-assurance.event.table.abstract": "അമൂർത്തി:", + "quality-assurance.event.table.suggestedProject": "OpenAIRE നിർദ്ദേശിച്ച പ്രോജക്റ്റ് ഡാറ്റ", + "quality-assurance.event.table.project": "പ്രോജക്റ്റ് തലക്കെട്ട്:", + "quality-assurance.event.table.acronym": "എക്രോണിം:", + "quality-assurance.event.table.code": "കോഡ്:", + "quality-assurance.event.table.funder": "ഫണ്ടർ:", + "quality-assurance.event.table.fundingProgram": "ഫണ്ടിംഗ് പ്രോഗ്രാം:", + "quality-assurance.event.table.jurisdiction": "അധികാരപരിധി:", + "quality-assurance.events.back": "വിഷയങ്ങളിലേക്ക് തിരികെ", + "quality-assurance.events.back-to-sources": "സ്രോതസ്സുകളിലേക്ക് തിരികെ", + "quality-assurance.event.table.less": "കുറച്ച് കാണിക്കുക", + "quality-assurance.event.table.more": "കൂടുതൽ കാണിക്കുക", + "quality-assurance.event.project.found": "ലോക്കൽ റെക്കോർഡുമായി ബന്ധിപ്പിച്ചിരിക്കുന്നു:", + "quality-assurance.event.project.notFound": "ലോക്കൽ റെക്കോർഡ് കണ്ടെത്തിയില്ല", + "quality-assurance.event.sure": "നിങ്ങൾക്ക് ഉറപ്പാണോ?", + "quality-assurance.event.ignore.description": "ഈ പ്രവർത്തനം പ്രത്യാവര്ത്തനം ചെയ്യാൻ കഴിയില്ല. ഈ സൂചന അവഗണിക്കണോ?", + "quality-assurance.event.undo.description": "ഈ പ്രവർത്തനം പ്രത്യാവര്ത്തനം ചെയ്യാൻ കഴിയില്ല!", + "quality-assurance.event.reject.description": "ഈ പ്രവർത്തനം പ്രത്യാവര്ത്തനം ചെയ്യാൻ കഴിയില്ല. ഈ സൂചന നിരസിക്കണോ?", + "quality-assurance.event.accept.description": "DSpace പ്രോജക്റ്റ് തിരഞ്ഞെടുത്തിട്ടില്ല. സൂചന ഡാറ്റയെ അടിസ്ഥാനമാക്കി ഒരു പുതിയ പ്രോജക്റ്റ് സൃഷ്ടിക്കും.", + "quality-assurance.event.action.cancel": "റദ്ദാക്കുക", + "quality-assurance.event.action.saved": "നിങ്ങളുടെ തീരുമാനം വിജയകരമായി സംരക്ഷിച്ചു", + "quality-assurance.event.action.error": "ഒരു പിശക് സംഭവിച്ചു. നിങ്ങളുടെ തീരുമാനം സംരക്ഷിച്ചിട്ടില്ല.", + "quality-assurance.event.modal.project.title": "ബന്ധിപ്പിക്കാൻ ഒരു പ്രോജക്റ്റ് തിരഞ്ഞെടുക്കുക", + "quality-assurance.event.modal.project.publication": "പബ്ലിക്കേഷൻ:", + "quality-assurance.event.modal.project.bountToLocal": "ലോക്കൽ റെക്കോർഡുമായി ബന്ധിപ്പിച്ചിരിക്കുന്നു:", + "quality-assurance.event.modal.project.select": "പ്രോജക്റ്റ് തിരയൽ", + "quality-assurance.event.modal.project.search": "തിരയുക", + "quality-assurance.event.modal.project.clear": "മായ്ക്കുക", + "quality-assurance.event.modal.project.cancel": "റദ്ദാക്കുക", + "quality-assurance.event.modal.project.bound": "ബന്ധിപ്പിച്ച പ്രോജക്റ്റ്", + "quality-assurance.event.modal.project.remove": "നീക്കം ചെയ്യുക", + "quality-assurance.event.modal.project.placeholder": "ഒരു പ്രോജക്റ്റ് പേര് നൽകുക", + "quality-assurance.event.modal.project.notFound": "പ്രോജക്റ്റ് കണ്ടെത്തിയില്ല.", + "quality-assurance.event.project.bounded": "പ്രോജക്റ്റ് വിജയകരമായി ലിങ്ക് ചെയ്തു.", + "quality-assurance.event.project.removed": "പ്രോജക്റ്റ് വിജയകരമായി അൺലിങ്ക് ചെയ്തു.", + "quality-assurance.event.project.error": "ഒരു പിശക് സംഭവിച്ചു. ഒരു പ്രവർത്തനവും നടത്തിയില്ല.", + "quality-assurance.event.reason": "കാരണം", + + "orgunit.listelement.badge": "ഓർഗനൈസേഷണൽ യൂണിറ്റ്", + "orgunit.listelement.no-title": "തലക്കെട്ടില്ലാത്ത", + "orgunit.page.city": "നഗരം", + "orgunit.page.country": "രാജ്യം", + "orgunit.page.dateestablished": "സ്ഥാപിച്ച തീയതി", + "orgunit.page.description": "വിവരണം", + "orgunit.page.edit": "ഈ ഇതം എഡിറ്റ് ചെയ്യുക", + "orgunit.page.id": "ID", + "orgunit.page.options": "ഓപ്ഷനുകൾ", + "orgunit.page.titleprefix": "ഓർഗനൈസേഷണൽ യൂണിറ്റ്: ", + "orgunit.page.ror": "ROR ഐഡന്റിഫയർ", + "orgunit.search.results.head": "ഓർഗനൈസേഷണൽ യൂണിറ്റ് തിരയൽ ഫലങ്ങൾ", + + "pagination.options.description": "പേജിനേഷൻ ഓപ്ഷനുകൾ", + "pagination.results-per-page": "ഒരു പേജിലെ ഫലങ്ങൾ", + "pagination.showing.detail": "{{ range }} / {{ total }}", + "pagination.showing.label": "ഇപ്പോൾ കാണിക്കുന്നു ", + "pagination.sort-direction": "സോർട്ട് ഓപ്ഷനുകൾ", + + "person.listelement.badge": "വ്യക്തി", + "person.listelement.no-title": "പേര് കണ്ടെത്തിയില്ല", + "person.page.birthdate": "ജനന തീയതി", + "person.page.edit": "ഈ ഇതം എഡിറ്റ് ചെയ്യുക", + "person.page.email": "ഇമെയിൽ വിലാസം", + "person.page.firstname": "പേരിന്റെ ആദ്യഭാഗം", + "person.page.jobtitle": "ജോലി പദവി", + "person.page.lastname": "പേരിന്റെ അവസാനഭാഗം", + "person.page.name": "പേര്", + "person.page.link.full": "എല്ലാ മെറ്റാഡാറ്റയും കാണിക്കുക", + "person.page.options": "ഓപ്ഷനുകൾ", + "person.page.orcid": "ORCID", + "person.page.staffid": "സ്റ്റാഫ് ID", + "person.page.titleprefix": "വ്യക്തി: ", + "person.search.results.head": "വ്യക്തി തിരയൽ ഫലങ്ങൾ", + "person-relationships.search.results.head": "വ്യക്തി തിരയൽ ഫലങ്ങൾ", + "person.search.title": "വ്യക്തി തിരയൽ", + + "process.new.select-parameters": "പാരാമീറ്ററുകൾ", + "process.new.select-parameter": "പാരാമീറ്റർ തിരഞ്ഞെടുക്കുക", + "process.new.add-parameter": "ഒരു പാരാമീറ്റർ ചേർക്കുക...", + "process.new.delete-parameter": "പാരാമീറ്റർ ഇല്ലാതാക്കുക", + "process.new.parameter.label": "പാരാമീറ്റർ മൂല്യം", + "process.new.cancel": "റദ്ദാക്കുക", + "process.new.submit": "സംരക്ഷിക്കുക", + "process.new.select-script": "സ്ക്രിപ്റ്റ്", + "process.new.select-script.placeholder": "ഒരു സ്ക്രിപ്റ്റ് തിരഞ്ഞെടുക്കുക...", + "process.new.select-script.required": "സ്ക്രിപ്റ്റ് ആവശ്യമാണ്", + "process.new.parameter.file.upload-button": "ഫയൽ തിരഞ്ഞെടുക്കുക...", + "process.new.parameter.file.required": "ദയവായി ഒരു ഫയൽ തിരഞ്ഞെടുക്കുക", + "process.new.parameter.integer.required": "പാരാമീറ്റർ മൂല്യം ആവശ്യമാണ്", + "process.new.parameter.string.required": "പാരാമീറ്റർ മൂല്യം ആവശ്യമാണ്", + "process.new.parameter.type.value": "മൂല്യം", + "process.new.parameter.type.file": "ഫയൽ", + "process.new.parameter.required.missing": "ഇനിപ്പറയുന്ന പാരാമീറ്ററുകൾ ആവശ്യമാണെങ്കിലും ഇപ്പോഴും കാണുന്നില്ല:", + "process.new.notification.success.title": "വിജയം", + "process.new.notification.success.content": "പ്രോസസ്സ് വിജയകരമായി സൃഷ്ടിച്ചു", + "process.new.notification.error.title": "പിശക്", + "process.new.notification.error.content": "ഈ പ്രോസസ്സ് സൃഷ്ടിക്കുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", + "process.new.notification.error.max-upload.content": "ഫയൽ പരമാവധി അപ്ലോഡ് വലുപ്പം കവിഞ്ഞിരിക്കുന്നു", + "process.new.header": "ഒരു പുതിയ പ്രോസസ്സ് സൃഷ്ടിക്കുക", + "process.new.title": "ഒരു പുതിയ പ്രോസസ്സ് സൃഷ്ടിക്കുക", + "process.new.breadcrumbs": "ഒരു പുതിയ പ്രോസസ്സ് സൃഷ്ടിക്കുക", + + "process.detail.arguments": "ആർഗ്യുമെന്റുകൾ", + "process.detail.arguments.empty": "ഈ പ്രോസസ്സിൽ ഒരു ആർഗ്യുമെന്റും ഇല്ല", + "process.detail.back": "തിരികെ", + "process.detail.output": "പ്രോസസ്സ് ഔട്ട്പുട്ട്", + "process.detail.logs.button": "പ്രോസസ്സ് ഔട്ട്പുട്ട് വീണ്ടെടുക്കുക", + "process.detail.logs.loading": "വീണ്ടെടുക്കുന്നു", + "process.detail.logs.none": "ഈ പ്രോസസ്സിന് ഔട്ട്പുട്ട് ഇല്ല", + "process.detail.output-files": "ഔട്ട്പുട്ട് ഫയലുകൾ", + "process.detail.output-files.empty": "ഈ പ്രോസസ്സിൽ ഔട്ട്പുട്ട് ഫയലുകളൊന്നുമില്ല", + "process.detail.script": "സ്ക്രിപ്റ്റ്", + "process.detail.title": "പ്രോസസ്സ്: {{ id }} - {{ name }}", + "process.detail.start-time": "ആരംഭ സമയം", + "process.detail.end-time": "പൂർത്തിയാക്കൽ സമയം", + "process.detail.status": "സ്ഥിതി", + "process.detail.create": "സമാനമായ പ്രോസസ്സ് സൃഷ്ടിക്കുക", + "process.detail.actions": "പ്രവർത്തനങ്ങൾ", + "process.detail.delete.button": "പ്രോസസ്സ് ഇല്ലാതാക്കുക", + "process.detail.delete.header": "പ്രോസസ്സ് ഇല്ലാതാക്കുക", + "process.detail.delete.body": "നിലവിലെ പ്രോസസ്സ് ഇല്ലാതാക്കണമെന്ന് നിങ്ങൾക്ക് ഉറപ്പാണോ?", + "process.detail.delete.cancel": "റദ്ദാക്കുക", + "process.detail.delete.confirm": "പ്രോസസ്സ് ഇല്ലാതാക്കുക", + "process.detail.delete.success": "പ്രോസസ്സ് വിജയകരമായി ഇല്ലാതാക്കി.", + "process.detail.delete.error": "പ്രോസസ്സ് ഇല്ലാതാക്കുന്നതിനിടെ എന്തോ തെറ്റ് സംഭവിച്ചു", + "process.detail.refreshing": "ഓട്ടോ-റിഫ്രഷ് ചെയ്യുന്നു…", + + "process.overview.table.completed.info": "പൂർത്തിയാക്കൽ സമയം (UTC)", + "process.overview.table.completed.title": "വിജയിച്ച പ്രോസസ്സുകൾ", + "process.overview.table.empty": "പൊരുത്തപ്പെടുന്ന പ്രോസസ്സുകളൊന്നും കണ്ടെത്തിയില്ല.", + "process.overview.table.failed.info": "പൂർത്തിയാക്കൽ സമയം (UTC)", + "process.overview.table.failed.title": "പരാജയപ്പെട്ട പ്രോസസ്സുകൾ", + "process.overview.table.finish": "പൂർത്തിയാക്കൽ സമയം (UTC)", + "process.overview.table.id": "പ്രോസസ്സ് ID", + "process.overview.table.name": "പേര്", + "process.overview.table.running.info": "ആരംഭ സമയം (UTC)", + "process.overview.table.running.title": "പ്രവർത്തിക്കുന്ന പ്രോസസ്സുകൾ", + "process.overview.table.scheduled.info": "സൃഷ്ടിക്കൽ സമയം (UTC)", + "process.overview.table.scheduled.title": "ഷെഡ്യൂൾ ചെയ്ത പ്രോസസ്സുകൾ", + "process.overview.table.start": "ആരംഭ സമയം (UTC)", + "process.overview.table.status": "സ്ഥിതി", + "process.overview.table.user": "ഉപയോക്താവ്", + "process.overview.title": "പ്രോസസ്സുകളുടെ അവലോകനം", + "process.overview.breadcrumbs": "പ്രോസസ്സുകളുടെ അവലോകനം", + "process.overview.new": "പുതിയത്", + "process.overview.table.actions": "പ്രവർത്തനങ്ങൾ", + "process.overview.delete": "{{count}} പ്രോസസ്സുകൾ ഇല്ലാതാക്കുക", + "process.overview.delete-process": "പ്രോസസ്സ് ഇല്ലാതാക്കുക", + "process.overview.delete.clear": "ഇല്ലാതാക്കൽ തിരഞ്ഞെടുപ്പ് മായ്ക്കുക", + "process.overview.delete.processing": "{{count}} പ്രോസസ്സ്(കൾ) ഇല്ലാതാക്കുന്നു. ഇല്ലാതാക്കൽ പൂർണ്ണമായി പൂർത്തിയാകാൻ കാത്തിരിക്കുക. ഇതിന് കുറച്ച് സമയമെടുക്കാം.", + "process.overview.delete.body": "{{count}} പ്രോസസ്സ്(കൾ) ഇല്ലാതാക്കണമെന്ന് നിങ്ങൾക്ക് ഉറപ്പാണോ?", + "process.overview.delete.header": "പ്രോസസ്സുകൾ ഇല്ലാതാക്കുക", + "process.overview.unknown.user": "അജ്ഞാതം", + + "process.bulk.delete.error.head": "പ്രോസസ്സ് ഇല്ലാതാക്കുന്നതിൽ പിശക്", + "process.bulk.delete.error.body": "ID {{processId}} ഉള്ള പ്രോസസ്സ് ഇല്ലാതാക്കാൻ കഴിഞ്ഞില്ല. ബാക്കിയുള്ള പ്രോസസ്സുകൾ ഇല്ലാതാക്കുന്നത് തുടരും. ", + + "process.bulk.delete.success": "{{count}} പ്രക്രിയ(കൾ) വിജയകരമായി ഇല്ലാതാക്കി", + + "profile.breadcrumbs": "പ്രൊഫൈൽ അപ്ഡേറ്റ് ചെയ്യുക", + + "profile.card.accessibility.content": "ആക്‌സസിബിലിറ്റി സജ്ജീകരണങ്ങൾ ആക്‌സസിബിലിറ്റി സെറ്റിംഗ് പേജിൽ കോൺഫിഗർ ചെയ്യാവുന്നതാണ്.", + + "profile.card.accessibility.header": "ആക്‌സസിബിലിറ്റി", + + "profile.card.accessibility.link": "ആക്‌സസിബിലിറ്റി സെറ്റിംഗ് പേജിലേക്ക് പോകുക", + + "profile.card.identify": "തിരിച്ചറിയുക", + + "profile.card.security": "സുരക്ഷ", + + "profile.form.submit": "സേവ് ചെയ്യുക", + + "profile.groups.head": "നിങ്ങൾ അനുവദനീയമായ ഗ്രൂപ്പുകൾ", + + "profile.special.groups.head": "നിങ്ങൾ അനുവദനീയമായ പ്രത്യേക ഗ്രൂപ്പുകൾ", + + "profile.metadata.form.error.firstname.required": "ആദ്യ നാമം ആവശ്യമാണ്", + + "profile.metadata.form.error.lastname.required": "അവസാന നാമം ആവശ്യമാണ്", + + "profile.metadata.form.label.email": "ഇമെയിൽ വിലാസം", + + "profile.metadata.form.label.firstname": "ആദ്യ നാമം", + + "profile.metadata.form.label.language": "ഭാഷ", + + "profile.metadata.form.label.lastname": "അവസാന നാമം", + + "profile.metadata.form.label.phone": "ബന്ധപ്പെടാനുള്ള ടെലിഫോൺ", + + "profile.metadata.form.notifications.success.content": "നിങ്ങളുടെ പ്രൊഫൈലിലെ മാറ്റങ്ങൾ സേവ് ചെയ്തു.", + + "profile.metadata.form.notifications.success.title": "പ്രൊഫൈൽ സേവ് ചെയ്തു", + + "profile.notifications.warning.no-changes.content": "പ്രൊഫൈലിൽ ഒരു മാറ്റവും വരുത്തിയിട്ടില്ല.", + + "profile.notifications.warning.no-changes.title": "മാറ്റങ്ങളൊന്നുമില്ല", + + "profile.security.form.error.matching-passwords": "പാസ്‌വേഡുകൾ യോജിക്കുന്നില്ല", + + "profile.security.form.info": "ഓപ്ഷണലായി, നിങ്ങൾക്ക് താഴെയുള്ള ബോക്സിൽ ഒരു പുതിയ പാസ്‌വേഡ് നൽകാം, രണ്ടാമത്തെ ബോക്സിൽ അത് വീണ്ടും ടൈപ്പ് ചെയ്ത് സ്ഥിരീകരിക്കാം.", + + "profile.security.form.label.password": "പാസ്‌വേഡ്", + + "profile.security.form.label.passwordrepeat": "സ്ഥിരീകരിക്കാൻ വീണ്ടും ടൈപ്പ് ചെയ്യുക", + + "profile.security.form.label.current-password": "നിലവിലെ പാസ്‌വേഡ്", + + "profile.security.form.notifications.success.content": "നിങ്ങളുടെ പാസ്‌വേഡിലെ മാറ്റങ്ങൾ സേവ് ചെയ്തു.", + + "profile.security.form.notifications.success.title": "പാസ്‌വേഡ് സേവ് ചെയ്തു", + + "profile.security.form.notifications.error.title": "പാസ്‌വേഡ് മാറ്റുന്നതിൽ പിശക്", + + "profile.security.form.notifications.error.change-failed": "പാസ്‌വേഡ് മാറ്റാൻ ശ്രമിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു. നിലവിലെ പാസ്‌വേഡ് ശരിയാണോ എന്ന് പരിശോധിക്കുക.", + + "profile.security.form.notifications.error.not-same": "നൽകിയ പാസ്‌വേഡുകൾ ഒന്നല്ല.", + + "profile.security.form.notifications.error.general": "സുരക്ഷാ ഫോമിന്റെ ആവശ്യമായ ഫീൽഡുകൾ പൂരിപ്പിക്കുക.", + + "profile.title": "പ്രൊഫൈൽ അപ്ഡേറ്റ് ചെയ്യുക", + + "profile.card.researcher": "ഗവേഷക പ്രൊഫൈൽ", + + "project.listelement.badge": "ഗവേഷണ പ്രോജക്റ്റ്", + + "project.page.contributor": "സംഭാവന നൽകിയവർ", + + "project.page.description": "വിവരണം", + + "project.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", + + "project.page.expectedcompletion": "പ്രതീക്ഷിച്ച പൂർത്തീകരണം", + + "project.page.funder": "ഫണ്ടർമാർ", + + "project.page.id": "ഐഡി", + + "project.page.keyword": "കീവേഡുകൾ", + + "project.page.options": "ഓപ്ഷനുകൾ", + + "project.page.status": "സ്ഥിതി", + + "project.page.titleprefix": "ഗവേഷണ പ്രോജക്റ്റ്: ", + + "project.search.results.head": "പ്രോജക്റ്റ് തിരയൽ ഫലങ്ങൾ", + + "project-relationships.search.results.head": "പ്രോജക്റ്റ് തിരയൽ ഫലങ്ങൾ", + + "publication.listelement.badge": "പ്രസിദ്ധീകരണം", + + "publication.page.description": "വിവരണം", + + "publication.page.edit": "ഈ ഇനം എഡിറ്റ് ചെയ്യുക", + + "publication.page.journal-issn": "ജേണൽ ISSN", + + "publication.page.journal-title": "ജേണൽ ശീർഷകം", + + "publication.page.publisher": "പ്രസാധകൻ", + + "publication.page.options": "ഓപ്ഷനുകൾ", + + "publication.page.titleprefix": "പ്രസിദ്ധീകരണം: ", + + "publication.page.volume-title": "വോളിയം ശീർഷകം", + + "publication.search.results.head": "പ്രസിദ്ധീകരണ തിരയൽ ഫലങ്ങൾ", + + "publication-relationships.search.results.head": "പ്രസിദ്ധീകരണ തിരയൽ ഫലങ്ങൾ", + + "publication.search.title": "പ്രസിദ്ധീകരണ തിരയൽ", + + "media-viewer.next": "അടുത്തത്", + + "media-viewer.previous": "മുമ്പത്തേത്", + + "media-viewer.playlist": "പ്ലേലിസ്റ്റ്", + + "suggestion.loading": "ലോഡിംഗ് ...", + + "suggestion.title": "പ്രസിദ്ധീകരണ ക്ലെയിം", + + "suggestion.title.breadcrumbs": "പ്രസിദ്ധീകരണ ക്ലെയിം", + + "suggestion.targets.description": "താഴെ നിങ്ങൾക്ക് എല്ലാ സജ്ജെഷനുകളും കാണാം ", + + "suggestion.targets": "നിലവിലെ സജ്ജെഷനുകൾ", + + "suggestion.table.name": "ഗവേഷകന്റെ പേര്", + + "suggestion.table.actions": "പ്രവർത്തനങ്ങൾ", + + "suggestion.button.review": "{{ total }} സജ്ജെഷൻ(കൾ) അവലോകനം ചെയ്യുക", + + "suggestion.button.review.title": "ഇതിനായുള്ള {{ total }} സജ്ജെഷൻ(കൾ) അവലോകനം ചെയ്യുക ", + + "suggestion.noTargets": "ടാർഗെറ്റ് കണ്ടെത്തിയില്ല.", + + "suggestion.target.error.service.retrieve": "സജ്ജെഷൻ ടാർഗെറ്റുകൾ ലോഡ് ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു", + + "suggestion.evidence.type": "തരം", + + "suggestion.evidence.score": "സ്കോർ", + + "suggestion.evidence.notes": "കുറിപ്പുകൾ", + + "suggestion.approveAndImport": "അംഗീകരിക്കുക & ഇംപോർട്ട് ചെയ്യുക", + + "suggestion.approveAndImport.success": "സജ്ജെഷൻ വിജയകരമായി ഇംപോർട്ട് ചെയ്തു. കാണുക.", + + "suggestion.approveAndImport.bulk": "തിരഞ്ഞെടുത്തവ അംഗീകരിക്കുക & ഇംപോർട്ട് ചെയ്യുക", + + "suggestion.approveAndImport.bulk.success": "{{ count }} സജ്ജെഷനുകൾ വിജയകരമായി ഇംപോർട്ട് ചെയ്തു ", + + "suggestion.approveAndImport.bulk.error": "{{ count }} സജ്ജെഷനുകൾ സെർവർ പിശകുകൾ കാരണം ഇംപോർട്ട് ചെയ്യാൻ കഴിഞ്ഞില്ല", + + "suggestion.ignoreSuggestion": "സജ്ജെഷൻ അവഗണിക്കുക", + + "suggestion.ignoreSuggestion.success": "സജ്ജെഷൻ ഉപേക്ഷിച്ചു", + + "suggestion.ignoreSuggestion.bulk": "തിരഞ്ഞെടുത്ത സജ്ജെഷനുകൾ അവഗണിക്കുക", + + "suggestion.ignoreSuggestion.bulk.success": "{{ count }} സജ്ജെഷനുകൾ ഉപേക്ഷിച്ചു ", + + "suggestion.ignoreSuggestion.bulk.error": "{{ count }} സജ്ജെഷനുകൾ സെർവർ പിശകുകൾ കാരണം ഉപേക്ഷിക്കാൻ കഴിഞ്ഞില്ല", + + "suggestion.seeEvidence": "തെളിവുകൾ കാണുക", + + "suggestion.hideEvidence": "തെളിവുകൾ മറയ്ക്കുക", + + "suggestion.suggestionFor": "ഇതിനായുള്ള സജ്ജെഷനുകൾ", + + "suggestion.suggestionFor.breadcrumb": "{{ name }} എന്നതിനായുള്ള സജ്ജെഷനുകൾ", + + "suggestion.source.openaire": "OpenAIRE ഗ്രാഫ്", + + "suggestion.source.openalex": "OpenAlex", + + "suggestion.from.source": "ഇതിൽ നിന്ന് ", + + "suggestion.count.missing": "നിങ്ങൾക്ക് ഇനി പ്രസിദ്ധീകരണ ക്ലെയിമുകൾ ഇല്ല", + + "suggestion.totalScore": "മൊത്തം സ്കോർ", + + "suggestion.type.openaire": "OpenAIRE", + + "register-email.title": "പുതിയ ഉപയോക്തൃ രജിസ്ട്രേഷൻ", + + "register-page.create-profile.header": "പ്രൊഫൈൽ സൃഷ്ടിക്കുക", + + "register-page.create-profile.identification.header": "തിരിച്ചറിയുക", + + "register-page.create-profile.identification.email": "ഇമെയിൽ വിലാസം", + + "register-page.create-profile.identification.first-name": "ആദ്യ നാമം *", + + "register-page.create-profile.identification.first-name.error": "ഒരു ആദ്യ നാമം നൽകുക", + + "register-page.create-profile.identification.last-name": "അവസാന നാമം *", + + "register-page.create-profile.identification.last-name.error": "ഒരു അവസാന നാമം നൽകുക", + + "register-page.create-profile.identification.contact": "ബന്ധപ്പെടാനുള്ള ടെലിഫോൺ", + + "register-page.create-profile.identification.language": "ഭാഷ", + + "register-page.create-profile.security.header": "സുരക്ഷ", + + "register-page.create-profile.security.info": "താഴെയുള്ള ബോക്സിൽ ഒരു പാസ്‌വേഡ് നൽകുക, രണ്ടാമത്തെ ബോക്സിൽ അത് വീണ്ടും ടൈപ്പ് ചെയ്ത് സ്ഥിരീകരിക്കുക.", + + "register-page.create-profile.security.label.password": "പാസ്‌വേഡ് *", + + "register-page.create-profile.security.label.passwordrepeat": "സ്ഥിരീകരിക്കാൻ വീണ്ടും ടൈപ്പ് ചെയ്യുക *", + + "register-page.create-profile.security.error.empty-password": "താഴെയുള്ള ബോക്സിൽ ഒരു പാസ്‌വേഡ് നൽകുക.", + + "register-page.create-profile.security.error.matching-passwords": "പാസ്‌വേഡുകൾ യോജിക്കുന്നില്ല.", + + "register-page.create-profile.submit": "രജിസ്ട്രേഷൻ പൂർത്തിയാക്കുക", + + "register-page.create-profile.submit.error.content": "ഒരു പുതിയ ഉപയോക്താവിനെ രജിസ്ടർ ചെയ്യുമ്പോൾ എന്തോ തെറ്റ് സംഭവിച്ചു.", + + "register-page.create-profile.submit.error.head": "രജിസ്ട്രേഷൻ പരാജയപ്പെട്ടു", + + "register-page.create-profile.submit.success.content": "രജിസ്ട്രേഷൻ വിജയകരമായി. സൃഷ്ടിച്ച ഉപയോക്താവായി നിങ്ങൾ ലോഗിൻ ചെയ്തിരിക്കുന്നു.", + + "register-page.create-profile.submit.success.head": "രജിസ്ട്രേഷൻ പൂർത്തിയായി", + + "register-page.registration.header": "പുതിയ ഉപയോക്തൃ രജിസ്ട്രേഷൻ", + + "register-page.registration.info": "ഇമെയിൽ അപ്ഡേറ്റുകൾക്കായി കളക്ഷനുകളിൽ സബ്‌സ്‌ക്രൈബ് ചെയ്യാനും DSpace-ൽ പുതിയ ഇനങ്ങൾ സമർപ്പിക്കാനും ഒരു അക്കൗണ്ട് രജിസ്ടർ ചെയ്യുക.", + + "register-page.registration.email": "ഇമെയിൽ വിലാസം *", + + "register-page.registration.email.error.required": "ഒരു ഇമെയിൽ വിലാസം നൽകുക", + + "register-page.registration.email.error.not-email-form": "സാധുവായ ഒരു ഇമെയിൽ വിലാസം നൽകുക.", + + "register-page.registration.email.error.not-valid-domain": "അനുവദനീയമായ ഡൊമെയ്‌നുകളുള്ള ഇമെയിൽ ഉപയോഗിക്കുക: {{ domains }}", + + "register-page.registration.email.hint": "ഈ വിലാസം പരിശോധിച്ച് നിങ്ങളുടെ ലോഗിൻ നാമമായി ഉപയോഗിക്കും.", + + "register-page.registration.submit": "രജിസ്ടർ ചെയ്യുക", + + "register-page.registration.success.head": "പരിശോധന ഇമെയിൽ അയച്ചു", + + "register-page.registration.success.content": "{{ email }} എന്നതിലേക്ക് ഒരു പ്രത്യേക URL-ഉം കൂടുതൽ നിർദ്ദേശങ്ങളും അടങ്ങിയ ഒരു ഇമെയിൽ അയച്ചിട്ടുണ്ട്.", + + "register-page.registration.error.head": "ഇമെയിൽ രജിസ്ടർ ചെയ്യുമ്പോൾ പിശക്", + + "register-page.registration.error.content": "ഇനിപ്പറയുന്ന ഇമെയിൽ വിലാസം രജിസ്ടർ ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു: {{ email }}", + + "register-page.registration.error.recaptcha": "recaptcha ഉപയോഗിച്ച് പ്രാമാണീകരിക്കാൻ ശ്രമിക്കുമ്പോൾ പിശക്", + + "register-page.registration.google-recaptcha.must-accept-cookies": "രജിസ്ടർ ചെയ്യാൻ നിങ്ങൾ രജിസ്ട്രേഷൻ, പാസ്‌വേഡ് റികവറി (Google reCaptcha) കുക്കികൾ സ്വീകരിക്കണം.", + + "register-page.registration.google-recaptcha.open-cookie-settings": "കുക്കി സെറ്റിംഗുകൾ തുറക്കുക", + + "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", + + "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha പരിശോധനയിൽ ഒരു പിശക് സംഭവിച്ചു", + + "register-page.registration.google-recaptcha.notification.message.expired": "പരിശോധന കാലഹരണപ്പെട്ടു. വീണ്ടും പരിശോധിക്കുക.", + + "register-page.registration.info.maildomain": "ഇനിപ്പറയുന്ന ഡൊമെയ്‌നുകളുടെ മെയിൽ വിലാസങ്ങൾക്കായി അക്കൗണ്ടുകൾ രജിസ്ടർ ചെയ്യാം", + + "relationships.add.error.relationship-type.content": "രണ്ട് ഇനങ്ങൾക്കിടയിൽ {{ type }} എന്ന ബന്ധത്തിന് യോജിക്കുന്ന മാച്ച് കണ്ടെത്താൻ കഴിഞ്ഞില്ല", + + "relationships.add.error.server.content": "സെർവർ ഒരു പിശക് തിരികെ നൽകി", + + "relationships.add.error.title": "ബന്ധം ചേർക്കാൻ കഴിയുന്നില്ല", + + "relationships.Publication.isAuthorOfPublication.Person": "രചയിതാക്കൾ (വ്യക്തികൾ)", + + "relationships.Publication.isProjectOfPublication.Project": "ഗവേഷണ പ്രോജക്റ്റുകൾ", + + "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "സംഘടനാ യൂണിറ്റുകൾ", + + "relationships.Publication.isAuthorOfPublication.OrgUnit": "രചയിതാക്കൾ (സംഘടനാ യൂണിറ്റുകൾ)", + + "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "ജേണൽ ഇഷ്യൂ", + + "relationships.Publication.isContributorOfPublication.Person": "സംഭാവന നൽകിയവർ", + + "relationships.Publication.isContributorOfPublication.OrgUnit": "സംഭാവന നൽകിയവർ (സംഘടനാ യൂണിറ്റുകൾ)", + + "relationships.Person.isPublicationOfAuthor.Publication": "പ്രസിദ്ധീകരണങ്ങൾ", + + "relationships.Person.isProjectOfPerson.Project": "ഗവേഷണ പ്രോജക്റ്റുകൾ", + + "relationships.Person.isOrgUnitOfPerson.OrgUnit": "സംഘടനാ യൂണിറ്റുകൾ", + + "relationships.Person.isPublicationOfContributor.Publication": "പ്രസിദ്ധീകരണങ്ങൾ (സംഭാവന നൽകിയവ)", + + "relationships.Project.isPublicationOfProject.Publication": "പ്രസിദ്ധീകരണങ്ങൾ", + + "relationships.Project.isPersonOfProject.Person": "രചയിതാക്കൾ", + + "relationships.Project.isOrgUnitOfProject.OrgUnit": "സംഘടനാ യൂണിറ്റുകൾ", + + "relationships.Project.isFundingAgencyOfProject.OrgUnit": "ഫണ്ടർ", + + "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "സംഘടനാ പ്രസിദ്ധീകരണങ്ങൾ", + + "relationships.OrgUnit.isPersonOfOrgUnit.Person": "രചയിതാക്കൾ", + + "relationships.OrgUnit.isProjectOfOrgUnit.Project": "ഗവേഷണ പ്രോജക്റ്റുകൾ", + + "relationships.OrgUnit.isPublicationOfAuthor.Publication": "രചയിതാവിന്റെ പ്രസിദ്ധീകരണങ്ങൾ", + + "relationships.OrgUnit.isPublicationOfContributor.Publication": "പ്രസിദ്ധീകരണങ്ങൾ (സംഭാവന നൽകിയവ)", + + "relationships.OrgUnit.isProjectOfFundingAgency.Project": "ഗവേഷണ പ്രോജക്റ്റുകൾ (ഫണ്ടർ ചെയ്തവ)", + + "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "ജേണൽ വോളിയം", + + "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "പ്രസിദ്ധീകരണങ്ങൾ", + + "relationships.JournalVolume.isJournalOfVolume.Journal": "ജേണലുകൾ", + + "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "ജേണൽ ഇഷ്യൂ", + + "relationships.Journal.isVolumeOfJournal.JournalVolume": "ജേണൽ വോളിയം", + + "repository.image.logo": "റിപ്പോസിറ്ററി ലോഗോ", + + "repository.title": "DSpace റിപ്പോസിറ്ററി", + + "repository.title.prefix": "DSpace റിപ്പോസിറ്ററി :: ", + + "resource-policies.add.button": "ചേർക്കുക", + + "resource-policies.add.for.": "ഒരു പുതിയ പോളിസി ചേർക്കുക", + + "resource-policies.add.for.bitstream": "ഒരു പുതിയ ബിറ്റ്സ്ട്രീം പോളിസി ചേർക്കുക", + + "resource-policies.add.for.bundle": "ഒരു പുതിയ ബണ്ടിൽ പോളിസി ചേർക്കുക", + + "resource-policies.add.for.item": "ഒരു പുതിയ ഇനം പോളിസി ചേർക്കുക", + + "resource-policies.add.for.community": "ഒരു പുതിയ കമ്മ്യൂണിറ്റി പോളിസി ചേർക്കുക", + + "resource-policies.add.for.collection": "ഒരു പുതിയ കളക്ഷൻ പോളിസി ചേർക്കുക", + + "resource-policies.create.page.heading": "ഇതിനായി ഒരു പുതിയ റിസോഴ്‌സ് പോളിസി സൃഷ്ടിക്കുക ", + + "resource-policies.create.page.failure.content": "റിസോഴ്‌സ് പോളിസി സൃഷ്ടിക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു.", + + "resource-policies.create.page.success.content": "പ്രവർത്തനം വിജയകരമായി", + + "resource-policies.create.page.title": "ഒരു പുതിയ റിസോഴ്‌സ് പോളിസി സൃഷ്ടിക്കുക", + + "resource-policies.delete.btn": "തിരഞ്ഞെടുത്തവ ഇല്ലാതാക്കുക", + + "resource-policies.delete.btn.title": "തിരഞ്ഞെടുത്ത റിസോഴ്‌സ് പോളിസികൾ ഇല്ലാതാക്കുക", + + "resource-policies.delete.failure.content": "തിരഞ്ഞെടുത്ത റിസോഴ്‌സ് പോളിസികൾ ഇല്ലാതാക്കുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു.", + + "resource-policies.delete.success.content": "പ്രവർത്തനം വിജയകരമായി", + + "resource-policies.edit.page.heading": "റിസോഴ്‌സ് പോളിസി എഡിറ്റ് ചെയ്യുക ", + + "resource-policies.edit.page.failure.content": "റിസോഴ്‌സ് പോളിസി എഡിറ്റ് ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു.", + + "resource-policies.edit.page.target-failure.content": "റിസോഴ്‌സ് പോളിസിയുടെ ടാർഗെറ്റ് (ePerson അല്ലെങ്കിൽ ഗ്രൂപ്പ്) എഡിറ്റ് ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു.", + + "resource-policies.edit.page.other-failure.content": "റിസോഴ്‌സ് പോളിസി എഡിറ്റ് ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു. ടാർഗെറ്റ് (ePerson അല്ലെങ്കിൽ ഗ്രൂപ്പ്) വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു.", + + "resource-policies.edit.page.success.content": "പ്രവർത്തനം വിജയകരമായി", + + "resource-policies.edit.page.title": "റിസോഴ്‌സ് പോളിസി എഡിറ്റ് ചെയ്യുക", + + "resource-policies.form.action-type.label": "പ്രവർത്തന തരം തിരഞ്ഞെടുക്കുക", + + "resource-policies.form.action-type.required": "നിങ്ങൾ റിസോഴ്‌സ് പോളിസി പ്രവർത്തനം തിരഞ്ഞെടുക്കണം.", + + "resource-policies.form.eperson-group-list.label": "അനുമതി നൽകുന്ന ePerson അല്ലെങ്കിൽ ഗ്രൂപ്പ്", + + "resource-policies.form.eperson-group-list.select.btn": "തിരഞ്ഞെടുക്കുക", + + "resource-policies.form.eperson-group-list.tab.eperson": "ഒരു ePerson തിരയുക", + + "resource-policies.form.eperson-group-list.tab.group": "ഒരു ഗ്രൂപ്പ് തിരയുക", + + "resource-policies.form.eperson-group-list.table.headers.action": "പ്രവർത്തനം", + + "resource-policies.form.eperson-group-list.table.headers.id": "ഐഡി", + + "resource-policies.form.eperson-group-list.table.headers.name": "പേര്", + + "resource-policies.form.eperson-group-list.modal.header": "തരം മാറ്റാൻ കഴിയില്ല", + + "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ഒരു ePerson-നെ ഒരു ഗ്രൂപ്പ് ഉപയോഗിച്ച് മാറ്റാൻ കഴിയില്ല.", + + "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "ഒരു ഗ്രൂപ്പിനെ ഒരു ePerson ഉപയോഗിച്ച് മാറ്റാൻ കഴിയില്ല.", + + "resource-policies.form.eperson-group-list.modal.text2": "നിലവിലുള്ള റിസോഴ്‌സ് പോളിസി ഇല്ലാതാക്കി ആവശ്യമുള്ള തരത്തിൽ ഒരു പുതിയത് സൃഷ്ടിക്കുക.", + + "resource-policies.form.eperson-group-list.modal.close": "ശരി", + + "resource-policies.form.date.end.label": "അവസാന തീയതി", + + "resource-policies.form.date.start.label": "ആരംഭ തീയതി", + + "resource-policies.form.description.label": "വിവരണം", + + "resource-policies.form.name.label": "പേര്", + + "resource-policies.form.name.hint": "പരമാവധി 30 അക്ഷരങ്ങൾ", + + "resource-policies.form.policy-type.label": "പോളിസി തരം തിരഞ്ഞെടുക്കുക", + + "resource-policies.form.policy-type.required": "നിങ്ങൾ റിസോഴ്‌സ് പോളിസി തരം തിരഞ്ഞെടുക്കണം.", + + "resource-policies.table.headers.action": "പ്രവർത്തനം", + + "resource-policies.table.headers.date.end": "അവസാന തീയതി", + + "resource-policies.table.headers.date.start": "ആരംഭ തീയതി", + + "resource-policies.table.headers.edit": "എഡിറ്റ്", + + "resource-policies.table.headers.edit.group": "ഗ്രൂപ്പ് എഡിറ്റ് ചെയ്യുക", + + "resource-policies.table.headers.edit.policy": "പോളിസി എഡിറ്റ് ചെയ്യുക", + + "resource-policies.table.headers.eperson": "EPerson", + + "resource-policies.table.headers.group": "ഗ്രൂപ്പ്", + + "resource-policies.table.headers.select-all": "എല്ലാം തിരഞ്ഞെടുക്കുക", + + "resource-policies.table.headers.deselect-all": "എല്ലാം ഒഴിവാക്കുക", + + "resource-policies.table.headers.select": "തിരഞ്ഞെടുക്കുക", + + "resource-policies.table.headers.deselect": "ഒഴിവാക്കുക", + + "resource-policies.table.headers.id": "ഐഡി", + + "resource-policies.table.headers.name": "പേര്", + + "resource-policies.table.headers.policyType": "തരം", + + "resource-policies.table.headers.title.for.bitstream": "ബിറ്റ്സ്ട്രീമിനുള്ള പോളിസികൾ", + + "resource-policies.table.headers.title.for.bundle": "ബണ്ടിലിനുള്ള പോളിസികൾ", + "resource-policies.table.headers.title.for.item": "ഇനത്തിനുള്ള പോളിസികൾ", + "resource-policies.table.headers.title.for.community": "കമ്മ്യൂണിറ്റിക്കുള്ള പോളിസികൾ", + "resource-policies.table.headers.title.for.collection": "കളക്ഷനുള്ള പോളിസികൾ", + "root.skip-to-content": "ഉള്ളടക്കത്തിലേക്ക് പോകുക", + "search.description": "", + "search.switch-configuration.title": "കാണിക്കുക", + "search.title": "തിരയുക", + "search.breadcrumbs": "തിരയുക", + "search.search-form.placeholder": "റെപ്പോസിറ്ററി തിരയുക ...", + "search.filters.remove": "{{ type }} തരത്തിലുള്ള {{ value }} ഫിൽട്ടർ നീക്കം ചെയ്യുക", + "search.filters.applied.f.title": "തലക്കെട്ട്", + "search.filters.applied.f.author": "രചയിതാവ്", + "search.filters.applied.f.dateIssued.max": "അവസാന തീയതി", + "search.filters.applied.f.dateIssued.min": "ആരംഭ തീയതി", + "search.filters.applied.f.dateSubmitted": "സമർപ്പിച്ച തീയതി", + "search.filters.applied.f.discoverable": "കണ്ടെത്താനാകാത്ത", + "search.filters.applied.f.entityType": "ഇനം തരം", + "search.filters.applied.f.has_content_in_original_bundle": "ഫയലുകൾ ഉണ്ട്", + "search.filters.applied.f.original_bundle_filenames": "ഫയൽ നാമം", + "search.filters.applied.f.original_bundle_descriptions": "ഫയൽ വിവരണം", + "search.filters.applied.f.has_geospatial_metadata": "ഭൂമിശാസ്ത്ര സ്ഥാനം ഉണ്ട്", + "search.filters.applied.f.itemtype": "തരം", + "search.filters.applied.f.namedresourcetype": "സ്ഥിതി", + "search.filters.applied.f.subject": "വിഷയം", + "search.filters.applied.f.submitter": "സമർപ്പിക്കുന്നയാൾ", + "search.filters.applied.f.jobTitle": "ജോലി പദവി", + "search.filters.applied.f.birthDate.max": "ജനന അവസാന തീയതി", + "search.filters.applied.f.birthDate.min": "ജനന ആരംഭ തീയതി", + "search.filters.applied.f.supervisedBy": "പരിപാലിക്കുന്നത്", + "search.filters.applied.f.withdrawn": "വापസ് എടുത്തത്", + "search.filters.applied.operator.equals": "", + "search.filters.applied.operator.notequals": " തുല്യമല്ല", + "search.filters.applied.operator.authority": "", + "search.filters.applied.operator.notauthority": " അധികാരം അല്ല", + "search.filters.applied.operator.contains": " ഉൾക്കൊള്ളുന്നു", + "search.filters.applied.operator.notcontains": " ഉൾക്കൊള്ളുന്നില്ല", + "search.filters.applied.operator.query": "", + "search.filters.applied.f.point": "കോർഡിനേറ്റുകൾ", + "search.filters.filter.title.head": "തലക്കെട്ട്", + "search.filters.filter.title.placeholder": "തലക്കെട്ട്", + "search.filters.filter.title.label": "തലക്കെട്ട് തിരയുക", + "search.filters.filter.author.head": "രചയിതാവ്", + "search.filters.filter.author.placeholder": "രചയിതാവിന്റെ പേര്", + "search.filters.filter.author.label": "രചയിതാവിന്റെ പേര് തിരയുക", + "search.filters.filter.birthDate.head": "ജനന തീയതി", + "search.filters.filter.birthDate.placeholder": "ജനന തീയതി", + "search.filters.filter.birthDate.label": "ജനന തീയതി തിരയുക", + "search.filters.filter.collapse": "ഫിൽട്ടർ ചുരുക്കുക", + "search.filters.filter.creativeDatePublished.head": "പ്രസിദ്ധീകരിച്ച തീയതി", + "search.filters.filter.creativeDatePublished.placeholder": "പ്രസിദ്ധീകരിച്ച തീയതി", + "search.filters.filter.creativeDatePublished.label": "പ്രസിദ്ധീകരിച്ച തീയതി തിരയുക", + "search.filters.filter.creativeDatePublished.min.label": "ആരംഭം", + "search.filters.filter.creativeDatePublished.max.label": "അവസാനം", + "search.filters.filter.creativeWorkEditor.head": "എഡിറ്റർ", + "search.filters.filter.creativeWorkEditor.placeholder": "എഡിറ്റർ", + "search.filters.filter.creativeWorkEditor.label": "എഡിറ്റർ തിരയുക", + "search.filters.filter.creativeWorkKeywords.head": "വിഷയം", + "search.filters.filter.creativeWorkKeywords.placeholder": "വിഷയം", + "search.filters.filter.creativeWorkKeywords.label": "വിഷയം തിരയുക", + "search.filters.filter.creativeWorkPublisher.head": "പ്രസാധകൻ", + "search.filters.filter.creativeWorkPublisher.placeholder": "പ്രസാധകൻ", + "search.filters.filter.creativeWorkPublisher.label": "പ്രസാധകൻ തിരയുക", + "search.filters.filter.dateIssued.head": "തീയതി", + "search.filters.filter.dateIssued.max.placeholder": "പരമാവധി തീയതി", + "search.filters.filter.dateIssued.max.label": "അവസാനം", + "search.filters.filter.dateIssued.min.placeholder": "കുറഞ്ഞ തീയതി", + "search.filters.filter.dateIssued.min.label": "ആരംഭം", + "search.filters.filter.dateSubmitted.head": "സമർപ്പിച്ച തീയതി", + "search.filters.filter.dateSubmitted.placeholder": "സമർപ്പിച്ച തീയതി", + "search.filters.filter.dateSubmitted.label": "സമർപ്പിച്ച തീയതി തിരയുക", + "search.filters.filter.discoverable.head": "കണ്ടെത്താനാകാത്ത", + "search.filters.filter.withdrawn.head": "വാപസ് എടുത്തത്", + "search.filters.filter.entityType.head": "ഇനം തരം", + "search.filters.filter.entityType.placeholder": "ഇനം തരം", + "search.filters.filter.entityType.label": "ഇനം തരം തിരയുക", + "search.filters.filter.expand": "ഫിൽട്ടർ വികസിപ്പിക്കുക", + "search.filters.filter.has_content_in_original_bundle.head": "ഫയലുകൾ ഉണ്ട്", + "search.filters.filter.original_bundle_filenames.head": "ഫയൽ നാമം", + "search.filters.filter.has_geospatial_metadata.head": "ഭൂമിശാസ്ത്ര സ്ഥാനം ഉണ്ട്", + "search.filters.filter.original_bundle_filenames.placeholder": "ഫയൽ നാമം", + "search.filters.filter.original_bundle_filenames.label": "ഫയൽ നാമം തിരയുക", + "search.filters.filter.original_bundle_descriptions.head": "ഫയൽ വിവരണം", + "search.filters.filter.original_bundle_descriptions.placeholder": "ഫയൽ വിവരണം", + "search.filters.filter.original_bundle_descriptions.label": "ഫയൽ വിവരണം തിരയുക", + "search.filters.filter.itemtype.head": "തരം", + "search.filters.filter.itemtype.placeholder": "തരം", + "search.filters.filter.itemtype.label": "തരം തിരയുക", + "search.filters.filter.jobTitle.head": "ജോലി പദവി", + "search.filters.filter.jobTitle.placeholder": "ജോലി പദവി", + "search.filters.filter.jobTitle.label": "ജോലി പദവി തിരയുക", + "search.filters.filter.knowsLanguage.head": "അറിയുന്ന ഭാഷ", + "search.filters.filter.knowsLanguage.placeholder": "അറിയുന്ന ഭാഷ", + "search.filters.filter.knowsLanguage.label": "അറിയുന്ന ഭാഷ തിരയുക", + "search.filters.filter.namedresourcetype.head": "സ്ഥിതി", + "search.filters.filter.namedresourcetype.placeholder": "സ്ഥിതി", + "search.filters.filter.namedresourcetype.label": "സ്ഥിതി തിരയുക", + "search.filters.filter.objectpeople.head": "ആളുകൾ", + "search.filters.filter.objectpeople.placeholder": "ആളുകൾ", + "search.filters.filter.objectpeople.label": "ആളുകൾ തിരയുക", + "search.filters.filter.organizationAddressCountry.head": "രാജ്യം", + "search.filters.filter.organizationAddressCountry.placeholder": "രാജ്യം", + "search.filters.filter.organizationAddressCountry.label": "രാജ്യം തിരയുക", + "search.filters.filter.organizationAddressLocality.head": "നഗരം", + "search.filters.filter.organizationAddressLocality.placeholder": "നഗരം", + "search.filters.filter.organizationAddressLocality.label": "നഗരം തിരയുക", + "search.filters.filter.organizationFoundingDate.head": "സ്ഥാപിച്ച തീയതി", + "search.filters.filter.organizationFoundingDate.placeholder": "സ്ഥാപിച്ച തീയതി", + "search.filters.filter.organizationFoundingDate.label": "സ്ഥാപിച്ച തീയതി തിരയുക", + "search.filters.filter.organizationFoundingDate.min.label": "ആരംഭം", + "search.filters.filter.organizationFoundingDate.max.label": "അവസാനം", + "search.filters.filter.scope.head": "പരിധി", + "search.filters.filter.scope.placeholder": "പരിധി ഫിൽട്ടർ", + "search.filters.filter.scope.label": "പരിധി ഫിൽട്ടർ തിരയുക", + "search.filters.filter.show-less": "ചുരുക്കുക", + "search.filters.filter.show-more": "കൂടുതൽ കാണിക്കുക", + "search.filters.filter.subject.head": "വിഷയം", + "search.filters.filter.subject.placeholder": "വിഷയം", + "search.filters.filter.subject.label": "വിഷയം തിരയുക", + "search.filters.filter.submitter.head": "സമർപ്പിക്കുന്നയാൾ", + "search.filters.filter.submitter.placeholder": "സമർപ്പിക്കുന്നയാൾ", + "search.filters.filter.submitter.label": "സമർപ്പിക്കുന്നയാൾ തിരയുക", + "search.filters.filter.show-tree": "{{ name }} ട്രീ ബ്രൗസ് ചെയ്യുക", + "search.filters.filter.funding.head": "ഫണ്ടിംഗ്", + "search.filters.filter.funding.placeholder": "ഫണ്ടിംഗ്", + "search.filters.filter.supervisedBy.head": "പരിപാലിക്കുന്നത്", + "search.filters.filter.supervisedBy.placeholder": "പരിപാലിക്കുന്നത്", + "search.filters.filter.supervisedBy.label": "പരിപാലിക്കുന്നത് തിരയുക", + "search.filters.filter.access_status.head": "ആക്സസ് തരം", + "search.filters.filter.access_status.placeholder": "ആക്സസ് തരം", + "search.filters.filter.access_status.label": "ആക്സസ് തരം അനുസരിച്ച് തിരയുക", + "search.filters.entityType.JournalIssue": "ജേണൽ ഇഷ്യൂ", + "search.filters.entityType.JournalVolume": "ജേണൽ വാല്യം", + "search.filters.entityType.OrgUnit": "ഓർഗനൈസേഷണൽ യൂണിറ്റ്", + "search.filters.entityType.Person": "വ്യക്തി", + "search.filters.entityType.Project": "പ്രോജക്റ്റ്", + "search.filters.entityType.Publication": "പ്രസിദ്ധീകരണം", + "search.filters.has_content_in_original_bundle.true": "അതെ", + "search.filters.has_content_in_original_bundle.false": "ഇല്ല", + "search.filters.has_geospatial_metadata.true": "അതെ", + "search.filters.has_geospatial_metadata.false": "ഇല്ല", + "search.filters.discoverable.true": "ഇല്ല", + "search.filters.discoverable.false": "അതെ", + "search.filters.namedresourcetype.Archived": "ആർക്കൈവ് ചെയ്തത്", + "search.filters.namedresourcetype.Validation": "സാധൂകരണം", + "search.filters.namedresourcetype.Waiting for Controller": "റിവ്യൂവറിനായി കാത്തിരിക്കുന്നു", + "search.filters.namedresourcetype.Workflow": "വർക്ക്ഫ്ലോ", + "search.filters.namedresourcetype.Workspace": "വർക്ക്സ്പേസ്", + "search.filters.withdrawn.true": "അതെ", + "search.filters.withdrawn.false": "ഇല്ല", + "search.filters.head": "ഫിൽട്ടറുകൾ", + "search.filters.reset": "ഫിൽട്ടറുകൾ റീസെറ്റ് ചെയ്യുക", + "search.filters.search.submit": "സമർപ്പിക്കുക", + "search.filters.operator.equals.text": "തുല്യമാണ്", + "search.filters.operator.notequals.text": "തുല്യമല്ല", + "search.filters.operator.authority.text": "അധികാരം", + "search.filters.operator.notauthority.text": "അധികാരം അല്ല", + "search.filters.operator.contains.text": "ഉൾക്കൊള്ളുന്നു", + "search.filters.operator.notcontains.text": "ഉൾക്കൊള്ളുന്നില്ല", + "search.filters.operator.query.text": "ക്വറി", + "search.form.search": "തിരയുക", + "search.form.search_dspace": "എല്ലാ റെപ്പോസിറ്ററി", + "search.form.scope.all": "എല്ലാ DSpace", + "search.results.head": "തിരയൽ ഫലങ്ങൾ", + "search.results.no-results": "നിങ്ങളുടെ തിരയലിന് ഫലങ്ങൾ ലഭിച്ചില്ല. നിങ്ങൾ തിരയുന്നത് കണ്ടെത്താൻ പ്രയാസമാണോ? ശ്രമിക്കുക", + "search.results.no-results-link": "ഉദ്ധരണികൾ ചുറ്റും", + "search.results.empty": "നിങ്ങളുടെ തിരയലിന് ഫലങ്ങൾ ലഭിച്ചില്ല.", + "search.results.geospatial-map.empty": "ഈ പേജിൽ ഭൂമിശാസ്ത്ര സ്ഥാനങ്ങളുള്ള ഫലങ്ങൾ ഇല്ല", + "search.results.view-result": "കാണുക", + "search.results.response.500": "ക്വറി എക്സിക്യൂട്ട് ചെയ്യുന്നതിനിടയിൽ ഒരു പിശക് സംഭവിച്ചു, ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക", + "default.search.results.head": "തിരയൽ ഫലങ്ങൾ", + "default-relationships.search.results.head": "തിരയൽ ഫലങ്ങൾ", + "search.sidebar.close": "ഫലങ്ങളിലേക്ക് തിരികെ", + "search.sidebar.filters.title": "ഫിൽട്ടറുകൾ", + "search.sidebar.open": "തിരയൽ ഉപകരണങ്ങൾ", + "search.sidebar.results": "ഫലങ്ങൾ", + "search.sidebar.settings.rpp": "ഒരു പേജിലെ ഫലങ്ങൾ", + "search.sidebar.settings.sort-by": "ക്രമീകരിക്കുക", + "search.sidebar.advanced-search.title": "വിപുലമായ തിരയൽ", + "search.sidebar.advanced-search.filter-by": "ഫിൽട്ടർ ചെയ്യുക", + "search.sidebar.advanced-search.filters": "ഫിൽട്ടറുകൾ", + "search.sidebar.advanced-search.operators": "ഓപ്പറേറ്ററുകൾ", + "search.sidebar.advanced-search.add": "ചേർക്കുക", + "search.sidebar.settings.title": "ക്രമീകരണങ്ങൾ", + "search.view-switch.show-detail": "വിശദാംശങ്ങൾ കാണിക്കുക", + "search.view-switch.show-grid": "ഗ്രിഡായി കാണിക്കുക", + "search.view-switch.show-list": "ലിസ്റ്റായി കാണിക്കുക", + "search.view-switch.show-geospatialMap": "മാപ്പായി കാണിക്കുക", + "selectable-list-item-control.deselect": "ഇനം നിരസിക്കുക", + "selectable-list-item-control.select": "ഇനം തിരഞ്ഞെടുക്കുക", + "sorting.ASC": "ആരോഹണ", + "sorting.DESC": "അവരോഹണ", + "sorting.dc.title.ASC": "തലക്കെട്ട് ആരോഹണ", + "sorting.dc.title.DESC": "തലക്കെട്ട് അവരോഹണ", + "sorting.score.ASC": "കുറഞ്ഞ പ്രസക്തി", + "sorting.score.DESC": "കൂടുതൽ പ്രസക്തി", + "sorting.dc.date.issued.ASC": "പുറത്തിറക്കിയ തീയതി ആരോഹണ", + "sorting.dc.date.issued.DESC": "പുറത്തിറക്കിയ തീയതി അവരോഹണ", + "sorting.dc.date.accessioned.ASC": "ആക്സസ് ചെയ്ത തീയതി ആരോഹണ", + "sorting.dc.date.accessioned.DESC": "ആക്സസ് ചെയ്ത തീയതി അവരോഹണ", + "sorting.lastModified.ASC": "അവസാനം പരിഷ്കരിച്ചത് ആരോഹണ", + "sorting.lastModified.DESC": "അവസാനം പരിഷ്കരിച്ചത് അവരോഹണ", + "sorting.person.familyName.ASC": "അപ്പുറപ്പേര് ആരോഹണ", + "sorting.person.familyName.DESC": "അപ്പുറപ്പേര് അവരോഹണ", + "sorting.person.givenName.ASC": "പേര് ആരോഹണ", + "sorting.person.givenName.DESC": "പേര് അവരോഹണ", + "sorting.person.birthDate.ASC": "ജനന തീയതി ആരോഹണ", + "sorting.person.birthDate.DESC": "ജനന തീയതി അവരോഹണ", + "statistics.title": "സ്ഥിതിവിവരക്കണക്കുകൾ", + "statistics.header": "{{ scope }} ന്റെ സ്ഥിതിവിവരക്കണക്കുകൾ", + "statistics.breadcrumbs": "സ്ഥിതിവിവരക്കണക്കുകൾ", + "statistics.page.no-data": "ഡാറ്റ ലഭ്യമല്ല", + "statistics.table.no-data": "ഡാറ്റ ലഭ്യമല്ല", + "statistics.table.title.TotalVisits": "ആകെ സന്ദർശനങ്ങൾ", + "statistics.table.title.TotalVisitsPerMonth": "മാസം തോറും ആകെ സന്ദർശനങ്ങൾ", + "statistics.table.title.TotalDownloads": "ഫയൽ സന്ദർശനങ്ങൾ", + "statistics.table.title.TopCountries": "അധികം കണ്ട രാജ്യങ്ങൾ", + "statistics.table.title.TopCities": "അധികം കണ്ട നഗരങ്ങൾ", + "statistics.table.header.views": "കാഴ്ചകൾ", + "statistics.table.no-name": "(ഒബ്ജക്റ്റ് പേര് ലോഡ് ചെയ്യാൻ കഴിഞ്ഞില്ല)", + "submission.edit.breadcrumbs": "സമർപ്പണം എഡിറ്റ് ചെയ്യുക", + "submission.edit.title": "സമർപ്പണം എഡിറ്റ് ചെയ്യുക", + "submission.general.cancel": "റദ്ദാക്കുക", + "submission.general.cannot_submit": "നിങ്ങൾക്ക് പുതിയ സമർപ്പണം നടത്താൻ അനുമതി ഇല്ല.", + "submission.general.deposit": "ഡെപ്പോസിറ്റ്", + "submission.general.discard.confirm.cancel": "റദ്ദാക്കുക", + "submission.general.discard.confirm.info": "ഈ പ്രവർത്തനം പിൻവലിക്കാൻ കഴിയില്ല. നിങ്ങൾക്ക് ഉറപ്പാണോ?", + "submission.general.discard.confirm.submit": "അതെ, എനിക്ക് ഉറപ്പാണ്", + "submission.general.discard.confirm.title": "സമർപ്പണം നിരസിക്കുക", + "submission.general.discard.submit": "നിരസിക്കുക", + "submission.general.back.submit": "തിരികെ", + "submission.general.info.saved": "സേവ് ചെയ്തു", + "submission.general.info.pending-changes": "സേവ് ചെയ്യാത്ത മാറ്റങ്ങൾ", + "submission.general.save": "സേവ് ചെയ്യുക", + "submission.general.save-later": "പിന്നീട് സേവ് ചെയ്യുക", + "submission.import-external.page.title": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", + "submission.import-external.title": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", + "submission.import-external.title.Journal": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു ജേണൽ ഇറക്കുമതി ചെയ്യുക", + "submission.import-external.title.JournalIssue": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു ജേണൽ ഇഷ്യൂ ഇറക്കുമതി ചെയ്യുക", + "submission.import-external.title.JournalVolume": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു ജേണൽ വാല്യം ഇറക്കുമതി ചെയ്യുക", + "submission.import-external.title.OrgUnit": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു പ്രസാധകൻ ഇറക്കുമതി ചെയ്യുക", + "submission.import-external.title.Person": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു വ്യക്തി ഇറക്കുമതി ചെയ്യുക", + "submission.import-external.title.Project": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു പ്രോജക്റ്റ് ഇറക്കുമതി ചെയ്യുക", + "submission.import-external.title.Publication": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഒരു പ്രസിദ്ധീകരണം ഇറക്കുമതി ചെയ്യുക", + "submission.import-external.title.none": "ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് മെറ്റാഡാറ്റ ഇറക്കുമതി ചെയ്യുക", + "submission.import-external.page.hint": "DSpace-ലേക്ക് ഇറക്കുമതി ചെയ്യാൻ വെബിൽ നിന്ന് ഇനങ്ങൾ കണ്ടെത്താൻ മുകളിൽ ഒരു ക്വറി നൽകുക.", + "submission.import-external.back-to-my-dspace": "MyDSpace-ലേക്ക് തിരികെ", + "submission.import-external.search.placeholder": "ബാഹ്യ സ്രോതസ്സ് തിരയുക", + "submission.import-external.search.button": "തിരയുക", + "submission.import-external.search.button.hint": "തിരയാൻ ചില വാക്കുകൾ എഴുതുക", + "submission.import-external.search.source.hint": "ഒരു ബാഹ്യ സ്രോതസ്സ് തിരഞ്ഞെടുക്കുക", + "submission.import-external.source.arxiv": "arXiv", + "submission.import-external.source.ads": "NASA/ADS", + "submission.import-external.source.cinii": "CiNii", + "submission.import-external.source.crossref": "Crossref", + "submission.import-external.source.datacite": "DataCite", + "submission.import-external.source.dataciteProject": "DataCite", + "submission.import-external.source.doi": "DOI", + "submission.import-external.source.scielo": "SciELO", + "submission.import-external.source.scopus": "Scopus", + "submission.import-external.source.vufind": "VuFind", + "submission.import-external.source.wos": "Web Of Science", + "submission.import-external.source.orcidWorks": "ORCID", + "submission.import-external.source.epo": "European Patent Office (EPO)", + "submission.import-external.source.loading": "ലോഡിംഗ് ...", + "submission.import-external.source.sherpaJournal": "SHERPA Journals", + "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", + "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", + "submission.import-external.source.openaire": "OpenAIRE Search by Authors", + "submission.import-external.source.openaireTitle": "OpenAIRE Search by Title", + "submission.import-external.source.openaireFunding": "OpenAIRE Search by Funder", + "submission.import-external.source.orcid": "ORCID", + "submission.import-external.source.pubmed": "Pubmed", + "submission.import-external.source.pubmedeu": "Pubmed Europe", + "submission.import-external.source.lcname": "Library of Congress Names", + "submission.import-external.source.ror": "Research Organization Registry (ROR)", + "submission.import-external.source.openalexPublication": "OpenAlex Search by Title", + "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID", + "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI", + "submission.import-external.source.openalexPerson": "OpenAlex Search by name", + "submission.import-external.source.openalexJournal": "OpenAlex Journals", + "submission.import-external.source.openalexInstitution": "OpenAlex Institutions", + "submission.import-external.source.openalexPublisher": "OpenAlex Publishers", + "submission.import-external.source.openalexFunder": "OpenAlex Funders", + "submission.import-external.preview.title": "ഇനം പ്രിവ്യൂ", + "submission.import-external.preview.title.Publication": "പ്രസിദ്ധീകരണ പ്രിവ്യൂ", + "submission.import-external.preview.title.none": "ഇനം പ്രിവ്യൂ", + "submission.import-external.preview.title.Journal": "ജേണൽ പ്രിവ്യൂ", + "submission.import-external.preview.title.OrgUnit": "ഓർഗനൈസേഷണൽ യൂണിറ്റ് പ്രിവ്യൂ", + "submission.import-external.preview.title.Person": "വ്യക്തി പ്രിവ്യൂ", + "submission.import-external.preview.title.Project": "പ്രോജക്റ്റ് പ്രിവ്യൂ", + "submission.import-external.preview.title.Publication": "പ്രസിദ്ധീകരണം പ്രിവ്യൂ", + "submission.import-external.preview.subtitle": "ചുവടെയുള്ള മെറ്റാഡാറ്റ ഒരു ബാഹ്യ സ്രോതസ്സിൽ നിന്ന് ഇറക്കുമതി ചെയ്തതാണ്. സമർപ്പണം ആരംഭിക്കുമ്പോൾ ഇത് പ്രീ-ഫിൽ ചെയ്യും.", + "submission.import-external.preview.button.import": "സമർപ്പണം ആരംഭിക്കുക", + "submission.import-external.preview.error.import.title": "സമർപ്പണ പിശക്", + "submission.import-external.preview.error.import.body": "ബാഹ്യ സ്രോതസ്സ് എൻട്രി ഇറക്കുമതി പ്രക്രിയയിൽ ഒരു പിശക് സംഭവിച്ചു.", + "submission.sections.describe.relationship-lookup.close": "അടയ്ക്കുക", + "submission.sections.describe.relationship-lookup.external-source.added": "തിരഞ്ഞെടുപ്പിലേക്ക് പ്രാദേശിക എൻട്രി വിജയകരമായി ചേർത്തു", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "റിമോട്ട് രചയിതാവ് ഇറക്കുമതി ചെയ്യുക", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "റിമോട്ട് ജേണൽ ഇറക്കുമതി ചെയ്യുക", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "റിമോട്ട് ജേണൽ ഇഷ്യൂ ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "റിമോട്ട് ജേണൽ വോളിയം ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "പ്രോജക്റ്റ്", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "റിമോട്ട് ഇനം ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "റിമോട്ട് ഇവന്റ് ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "റിമോട്ട് ഉൽപ്പന്നം ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "റിമോട്ട് ഉപകരണം ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "റിമോട്ട് ഓർഗനൈസേഷണൽ യൂണിറ്റ് ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "റിമോട്ട് ഫണ്ട് ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "റിമോട്ട് വ്യക്തി ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "റിമോട്ട് പേറ്റന്റ് ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "റിമോട്ട് പ്രോജക്റ്റ് ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "റിമോട്ട് പബ്ലിക്കേഷൻ ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "പുതിയ എന്റിറ്റി ചേർത്തു!", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "പ്രോജക്റ്റ്", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "റിമോട്ട് രചയിതാവ് ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "ലോക്കൽ രചയിതാവിനെ വിജയകരമായി തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "എക്സ്റ്റേണൽ രചയിതാവിനെ വിജയകരമായി ഇമ്പോർട്ട് ചെയ്ത് തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "അധികാരം", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "പുതിയ ലോക്കൽ അധികാര എൻട്രിയായി ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "റദ്ദാക്കുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "പുതിയ എൻട്രികൾ ഇമ്പോർട്ട് ചെയ്യാൻ ഒരു കളക്ഷൻ തിരഞ്ഞെടുക്കുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "എന്റിറ്റികൾ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "പുതിയ ലോക്കൽ എന്റിറ്റിയായി ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC നാമത്തിൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa ജേണലിൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa പബ്ലിഷറിൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുന്നു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR-ൽ നിന്ന് ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "റിമോട്ട് ജേണൽ ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "ലോക്കൽ ജേണൽ വിജയകരമായി തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "എക്സ്റ്റേണൽ ജേണൽ വിജയകരമായി ഇമ്പോർട്ട് ചെയ്ത് തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "റിമോട്ട് ജേണൽ ഇഷ്യൂ ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "ലോക്കൽ ജേണൽ ഇഷ്യൂ വിജയകരമായി തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "എക്സ്റ്റേണൽ ജേണൽ ഇഷ്യൂ വിജയകരമായി ഇമ്പോർട്ട് ചെയ്ത് തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "റിമോട്ട് ജേണൽ വോളിയം ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "ലോക്കൽ ജേണൽ വോളിയം വിജയകരമായി തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "എക്സ്റ്റേണൽ ജേണൽ വോളിയം വിജയകരമായി ഇമ്പോർട്ട് ചെയ്ത് തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "ഒരു ലോക്കൽ മാച്ച് തിരഞ്ഞെടുക്കുക:", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "റിമോട്ട് ഓർഗനൈസേഷൻ ഇമ്പോർട്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "ലോക്കൽ ഓർഗനൈസേഷൻ വിജയകരമായി തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "എക്സ്റ്റേണൽ ഓർഗനൈസേഷൻ വിജയകരമായി ഇമ്പോർട്ട് ചെയ്ത് തിരഞ്ഞെടുത്തിലേക്ക് ചേർത്തു", + + "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "എല്ലാം അൺസെലക്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "പേജ് അൺസെലക്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.search-tab.loading": "ലോഡിംഗ്...", + + "submission.sections.describe.relationship-lookup.search-tab.placeholder": "തിരയൽ ക്വറി", + + "submission.sections.describe.relationship-lookup.search-tab.search": "തിരയുക", + + "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "തിരയുക...", + + "submission.sections.describe.relationship-lookup.search-tab.select-all": "എല്ലാം സെലക്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.search-tab.select-page": "പേജ് സെലക്ട് ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.selected": "{{ size }} ഇനങ്ങൾ തിരഞ്ഞെടുത്തു", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "ലോക്കൽ രചയിതാക്കൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "ലോക്കൽ ജേണലുകൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "ലോക്കൽ പ്രോജക്റ്റുകൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "ലോക്കൽ പബ്ലിക്കേഷനുകൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "ലോക്കൽ രചയിതാക്കൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "ലോക്കൽ ഓർഗനൈസേഷണൽ യൂണിറ്റുകൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "ലോക്കൽ ഡാറ്റ പാക്കേജുകൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "ലോക്കൽ ഡാറ്റ ഫയലുകൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "ലോക്കൽ ജേണലുകൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "ലോക്കൽ ജേണൽ ഇഷ്യൂകൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "ലോക്കൽ ജേണൽ ഇഷ്യൂകൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "ലോക്കൽ ജേണൽ വോളിയങ്ങൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "ലോക്കൽ ജേണൽ വോളിയങ്ങൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "ലോക്കൽ ജേണൽ വോളിയങ്ങൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa ജേണലുകൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa പബ്ലിഷർമാർ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC നാമങ്ങൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE രചയിതാക്കൾ അനുസരിച്ച് തിരയുക ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE ടൈറ്റിൽ അനുസരിച്ച് തിരയുക ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE ഫണ്ടർ അനുസരിച്ച് തിരയുക ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN അനുസരിച്ച് Sherpa ജേണലുകൾ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "സ്ഥാപനം അനുസരിച്ച് OpenAlex തിരയുക ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "പബ്ലിഷർ അനുസരിച്ച് OpenAlex തിരയുക ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "ഫണ്ടർ അനുസരിച്ച് OpenAlex തിരയുക ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "പ്രോജക്റ്റ് അനുസരിച്ച് DataCite തിരയുക ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "ഫണ്ടിംഗ് ഏജൻസികൾക്കായി തിരയുക", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "ഫണ്ടിംഗിനായി തിരയുക", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "ഓർഗനൈസേഷണൽ യൂണിറ്റുകൾക്കായി തിരയുക", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "പ്രോജക്റ്റുകൾ", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "പ്രോജക്റ്റിന്റെ ഫണ്ടർ", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "രചയിതാവിന്റെ പബ്ലിക്കേഷൻ", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "പ്രോജക്റ്റിന്റെ ഓർഗനൈസേഷണൽ യൂണിറ്റ്", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "പ്രോജക്റ്റ്", + + "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "പ്രോജക്റ്റുകൾ", + + "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "പ്രോജക്റ്റിന്റെ ഫണ്ടർ", + + "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "പ്രോജക്റ്റിന്റെ വ്യക്തി", + + "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "തിരയുക...", + + "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "നിലവിലെ തിരഞ്ഞെടുപ്പ് ({{ count }})", + + "submission.sections.describe.relationship-lookup.title.Journal": "ജേണൽ", + + "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "ജേണൽ ഇഷ്യൂകൾ", + + "submission.sections.describe.relationship-lookup.title.JournalIssue": "ജേണൽ ഇഷ്യൂകൾ", + + "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "ജേണൽ വോളിയങ്ങൾ", + + "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "ജേണൽ വോളിയങ്ങൾ", + + "submission.sections.describe.relationship-lookup.title.JournalVolume": "ജേണൽ വോളിയങ്ങൾ", + + "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "ജേണലുകൾ", + + "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "രചയിതാക്കൾ", + + "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "ഫണ്ടിംഗ് ഏജൻസി", + + "submission.sections.describe.relationship-lookup.title.Project": "പ്രോജക്റ്റുകൾ", + + "submission.sections.describe.relationship-lookup.title.Publication": "പബ്ലിക്കേഷനുകൾ", + + "submission.sections.describe.relationship-lookup.title.Person": "രചയിതാക്കൾ", + + "submission.sections.describe.relationship-lookup.title.OrgUnit": "ഓർഗനൈസേഷണൽ യൂണിറ്റുകൾ", + + "submission.sections.describe.relationship-lookup.title.DataPackage": "ഡാറ്റ പാക്കേജുകൾ", + + "submission.sections.describe.relationship-lookup.title.DataFile": "ഡാറ്റ ഫയലുകൾ", + + "submission.sections.describe.relationship-lookup.title.Funding Agency": "ഫണ്ടിംഗ് ഏജൻസി", + + "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "ഫണ്ടിംഗ്", + + "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "പാരന്റ് ഓർഗനൈസേഷണൽ യൂണിറ്റ്", + + "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "പബ്ലിക്കേഷൻ", + + "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "ഓർഗനൈസേഷണൽ യൂണിറ്റ്", + + "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ഡ്രോപ്പ്ഡൗൺ ടോഗിൾ ചെയ്യുക", + + "submission.sections.describe.relationship-lookup.selection-tab.settings": "സെറ്റിംഗുകൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "നിങ്ങളുടെ തിരഞ്ഞെടുപ്പ് ഇപ്പോൾ ശൂന്യമാണ്.", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "തിരഞ്ഞെടുത്ത രചയിതാക്കൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "തിരഞ്ഞെടുത്ത ജേണലുകൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "തിരഞ്ഞെടുത്ത ജേണൽ വോളിയം", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "തിരഞ്ഞെടുത്ത ജേണൽ വോളിയം", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "തിരഞ്ഞെടുത്ത പ്രോജക്റ്റുകൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "തിരഞ്ഞെടുത്ത പബ്ലിക്കേഷനുകൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "തിരഞ്ഞെടുത്ത രചയിതാക്കൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "തിരഞ്ഞെടുത്ത ഓർഗനൈസേഷണൽ യൂണിറ്റുകൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "തിരഞ്ഞെടുത്ത ഡാറ്റ പാക്കേജുകൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "തിരഞ്ഞെടുത്ത ഡാറ്റ ഫയലുകൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "തിരഞ്ഞെടുത്ത ജേണലുകൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "തിരഞ്ഞെടുത്ത ഇഷ്യൂ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "തിരഞ്ഞെടുത്ത ജേണൽ വോളിയം", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "തിരഞ്ഞെടുത്ത ഫണ്ടിംഗ് ഏജൻസി", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "തിരഞ്ഞെടുത്ത ഫണ്ടിംഗ്", + + "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "തിരഞ്ഞെടുത്ത ഇഷ്യൂ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "തിരഞ്ഞെടുത്ത ഓർഗനൈസേഷണൽ യൂണിറ്റ്", + + "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.selection-tab.title": "തിരയൽ ഫലങ്ങൾ", + + "submission.sections.describe.relationship-lookup.name-variant.notification.content": "ഈ വ്യക്തിക്കായി \"{{ value }}\" ഒരു പേര് വേരിയന്റായി സംരക്ഷിക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുണ്ടോ? അങ്ങനെ ചെയ്യാതിരിക്കുകയാണെങ്കിൽ, ഈ സബ്മിഷനിൽ മാത്രം ഇത് ഉപയോഗിക്കാം.", + + "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "ഒരു പുതിയ പേര് വേരിയന്റ് സംരക്ഷിക്കുക", + + "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "ഈ സബ്മിഷനിൽ മാത്രം ഉപയോഗിക്കുക", + + "submission.sections.ccLicense.type": "ലൈസൻസ് തരം", + + "submission.sections.ccLicense.select": "ഒരു ലൈസൻസ് തരം തിരഞ്ഞെടുക്കുക…", + + "submission.sections.ccLicense.change": "നിങ്ങളുടെ ലൈസൻസ് തരം മാറ്റുക…", + + "submission.sections.ccLicense.none": "ലൈസൻസുകൾ ലഭ്യമല്ല", + + "submission.sections.ccLicense.option.select": "ഒരു ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക…", + + "submission.sections.ccLicense.link": "നിങ്ങൾ തിരഞ്ഞെടുത്ത ലൈസൻസ്:", + + "submission.sections.ccLicense.confirmation": "ഞാൻ മുകളിലുള്ള ലൈസൻസ് അനുവദിക്കുന്നു", + + "submission.sections.general.add-more": "കൂടുതൽ ചേർക്കുക", + + "submission.sections.general.cannot_deposit": "ഫോമിൽ പിശകുകൾ കാരണം ഡെപ്പോസിറ്റ് പൂർത്തിയാക്കാൻ കഴിയില്ല.
ഡെപ്പോസിറ്റ് പൂർത്തിയാക്കാൻ എല്ലാ ആവശ്യമായ ഫീൽഡുകളും പൂരിപ്പിക്കുക.", + + "submission.sections.general.collection": "കളക്ഷൻ", + + "submission.sections.general.deposit_error_notice": "ഇനം സമർപ്പിക്കുന്നതിൽ ഒരു പ്രശ്നം ഉണ്ടായിരുന്നു, ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", + + "submission.sections.general.deposit_success_notice": "സമർപ്പണം വിജയകരമായി ഡെപ്പോസിറ്റ് ചെയ്തു.", + + "submission.sections.general.discard_error_notice": "ഇനം ഉപേക്ഷിക്കുന്നതിൽ ഒരു പ്രശ്നം ഉണ്ടായിരുന്നു, ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", + + "submission.sections.general.discard_success_notice": "സമർപ്പണം വിജയകരമായി ഉപേക്ഷിച്ചു.", + + "submission.sections.general.metadata-extracted": "പുതിയ മെറ്റാഡാറ്റ {{sectionId}} വിഭാഗത്തിലേക്ക് വേർതിരിച്ചെടുത്ത് ചേർത്തിരിക്കുന്നു.", + + "submission.sections.general.metadata-extracted-new-section": "പുതിയ {{sectionId}} വിഭാഗം സമർപ്പണത്തിലേക്ക് ചേർത്തിരിക്കുന്നു.", + + "submission.sections.general.no-collection": "കളക്ഷൻ കണ്ടെത്തിയില്ല", + + "submission.sections.general.no-entity": "എന്റിറ്റി തരങ്ങൾ കണ്ടെത്തിയില്ല", + + "submission.sections.general.no-sections": "ഒപ്ഷനുകൾ ലഭ്യമല്ല", + + "submission.sections.general.save_error_notice": "ഇനം സംരക്ഷിക്കുന്നതിൽ ഒരു പ്രശ്നം ഉണ്ടായിരുന്നു, ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", + + "submission.sections.general.save_success_notice": "സമർപ്പണം വിജയകരമായി സംരക്ഷിച്ചു.", + + "submission.sections.general.search-collection": "ഒരു കളക്ഷൻ തിരയുക", + + "submission.sections.general.sections_not_valid": "പൂർത്തിയാകാത്ത വിഭാഗങ്ങൾ ഉണ്ട്.", + + "submission.sections.identifiers.info": "നിങ്ങളുടെ ഇനത്തിനായി ഇനിപ്പറയുന്ന ഐഡന്റിഫയറുകൾ സൃഷ്ടിക്കും:", + + "submission.sections.identifiers.no_handle": "ഈ ഇനത്തിനായി ഹാൻഡിലുകൾ മിന്റ് ചെയ്തിട്ടില്ല.", + + "submission.sections.identifiers.no_doi": "ഈ ഇനത്തിനായി DOI-കൾ മിന്റ് ചെയ്തിട്ടില്ല.", + + "submission.sections.identifiers.handle_label": "ഹാൻഡിൽ: ", + + "submission.sections.identifiers.doi_label": "DOI: ", + + "submission.sections.identifiers.otherIdentifiers_label": "മറ്റ് ഐഡന്റിഫയറുകൾ: ", + + "submission.sections.submit.progressbar.accessCondition": "ഇനം ആക്സസ് വ്യവസ്ഥകൾ", + + "submission.sections.submit.progressbar.CClicense": "ക്രിയേറ്റീവ് കോമൺസ് ലൈസൻസ്", + + "submission.sections.submit.progressbar.describe.recycle": "റീസൈക്കിൾ", + + "submission.sections.submit.progressbar.describe.stepcustom": "വിവരണം", + + "submission.sections.submit.progressbar.describe.stepone": "വിവരണം", + + "submission.sections.submit.progressbar.describe.steptwo": "വിവരണം", + + "submission.sections.submit.progressbar.duplicates": "സാധ്യമായ ഡ്യൂപ്ലിക്കേറ്റുകൾ", + + "submission.sections.submit.progressbar.identifiers": "ഐഡന്റിഫയറുകൾ", + + "submission.sections.submit.progressbar.license": "ഡെപ്പോസിറ്റ് ലൈസൻസ്", + + "submission.sections.submit.progressbar.sherpapolicy": "ഷെർപ്പാ പോളിസികൾ", + + "submission.sections.submit.progressbar.upload": "ഫയലുകൾ അപ്ലോഡ് ചെയ്യുക", + + "submission.sections.submit.progressbar.sherpaPolicies": "പ്രസാധകരുടെ ഓപ്പൺ ആക്സസ് പോളിസി വിവരം", + + "submission.sections.sherpa-policy.title-empty": "പ്രസാധക പോളിസി വിവരം ലഭ്യമല്ല. നിങ്ങളുടെ ജോലിയുമായി ബന്ധപ്പെട്ട ഒരു ISSN ഉണ്ടെങ്കിൽ, ബന്ധപ്പെട്ട പ്രസാധക ഓപ്പൺ ആക്സസ് പോളിസികൾ കാണാൻ ദയവായി ഇത് മുകളിൽ നൽകുക.", + + "submission.sections.status.errors.title": "പിശകുകൾ", + + "submission.sections.status.valid.title": "സാധുത", + + "submission.sections.status.warnings.title": "മുന്നറിയിപ്പുകൾ", + + "submission.sections.status.errors.aria": "പിശകുകൾ ഉണ്ട്", + + "submission.sections.status.valid.aria": "സാധുതയുണ്ട്", + + "submission.sections.status.warnings.aria": "മുന്നറിയിപ്പുകൾ ഉണ്ട്", + + "submission.sections.status.info.title": "അധിക വിവരങ്ങൾ", + + "submission.sections.status.info.aria": "അധിക വിവരങ്ങൾ", + + "submission.sections.toggle.open": "വിഭാഗം തുറക്കുക", + + "submission.sections.toggle.close": "വിഭാഗം അടയ്ക്കുക", + + "submission.sections.toggle.aria.open": "{{sectionHeader}} വിഭാഗം വികസിപ്പിക്കുക", + + "submission.sections.toggle.aria.close": "{{sectionHeader}} വിഭാഗം ചുരുക്കുക", + + "submission.sections.upload.primary.make": "{{fileName}} പ്രാഥമിക ബിറ്റ്സ്ട്രീം ആക്കുക", + + "submission.sections.upload.primary.remove": "{{fileName}} പ്രാഥമിക ബിറ്റ്സ്ട്രീം ആയി നീക്കം ചെയ്യുക", + + "submission.sections.upload.delete.confirm.cancel": "റദ്ദാക്കുക", + + "submission.sections.upload.delete.confirm.info": "ഈ പ്രവർത്തനം പിൻവലിക്കാനാവില്ല. നിങ്ങൾക്ക് ഉറപ്പാണോ?", + + "submission.sections.upload.delete.confirm.submit": "അതെ, എനിക്ക് ഉറപ്പാണ്", + + "submission.sections.upload.delete.confirm.title": "ബിറ്റ്സ്ട്രീം ഇല്ലാതാക്കുക", + + "submission.sections.upload.delete.submit": "ഇല്ലാതാക്കുക", + + "submission.sections.upload.download.title": "ബിറ്റ്സ്ട്രീം ഡൗൺലോഡ് ചെയ്യുക", + + "submission.sections.upload.drop-message": "ഇനത്തിലേക്ക് അറ്റാച്ച് ചെയ്യാൻ ഫയലുകൾ ഡ്രോപ്പ് ചെയ്യുക", + + "submission.sections.upload.edit.title": "ബിറ്റ്സ്ട്രീം എഡിറ്റ് ചെയ്യുക", + + "submission.sections.upload.form.access-condition-label": "ആക്സസ് കണ്ടീഷൻ തരം", + + "submission.sections.upload.form.access-condition-hint": "ഇനം ഡെപ്പോസിറ്റ് ചെയ്ത ശേഷം ബിറ്റ്സ്ട്രീമിൽ പ്രയോഗിക്കാൻ ഒരു ആക്സസ് കണ്ടീഷൻ തിരഞ്ഞെടുക്കുക", + + "submission.sections.upload.form.date-required": "തീയതി ആവശ്യമാണ്.", + + "submission.sections.upload.form.date-required-from": "ആക്സസ് നൽകുന്ന തീയതി ആവശ്യമാണ്.", + + "submission.sections.upload.form.date-required-until": "ആക്സസ് നൽകുന്ന തീയതി വരെ ആവശ്യമാണ്.", + + "submission.sections.upload.form.from-label": "ആക്സസ് നൽകുന്നത്", + + "submission.sections.upload.form.from-hint": "ബന്ധപ്പെട്ട ആക്സസ് കണ്ടീഷൻ പ്രയോഗിക്കുന്ന തീയതി തിരഞ്ഞെടുക്കുക", + + "submission.sections.upload.form.from-placeholder": "മുതൽ", + + "submission.sections.upload.form.group-label": "ഗ്രൂപ്പ്", + + "submission.sections.upload.form.group-required": "ഗ്രൂപ്പ് ആവശ്യമാണ്.", + + "submission.sections.upload.form.until-label": "ആക്സസ് നൽകുന്നത് വരെ", + + "submission.sections.upload.form.until-hint": "ബന്ധപ്പെട്ട ആക്സസ് കണ്ടീഷൻ പ്രയോഗിക്കുന്ന തീയതി വരെ തിരഞ്ഞെടുക്കുക", + + "submission.sections.upload.form.until-placeholder": "വരെ", + + "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} കളക്ഷനിൽ അപ്ലോഡ് ചെയ്ത ഫയലുകൾ ഇനിപ്പറയുന്ന ഗ്രൂപ്പ്(കൾ) അനുസരിച്ച് ആക്സസ് ചെയ്യാവുന്നതാണ്:", + + "submission.sections.upload.header.policy.default.withlist": "ദയവായി ശ്രദ്ധിക്കുക, {{collectionName}} കളക്ഷനിൽ അപ്ലോഡ് ചെയ്ത ഫയലുകൾ, ഒറ്റ ഫയലിനായി വ്യക്തമായി തീരുമാനിച്ചതിന് പുറമേ, ഇനിപ്പറയുന്ന ഗ്രൂപ്പ്(കൾ) ഉപയോഗിച്ച് ആക്സസ് ചെയ്യാവുന്നതാണ്:", + + "submission.sections.upload.info": "ഇവിടെ നിങ്ങൾക്ക് ഇനത്തിൽ നിലവിൽ ഉള്ള എല്ലാ ഫയലുകളും കണ്ടെത്താനാകും. നിങ്ങൾക്ക് ഫയൽ മെറ്റാഡാറ്റയും ആക്സസ് വ്യവസ്ഥകളും അപ്ഡേറ്റ് ചെയ്യാനോ പേജിൽ എവിടെയെങ്കിലും ഫയലുകൾ വലിച്ചിട്ട് അധിക ഫയലുകൾ അപ്ലോഡ് ചെയ്യാനോ കഴിയും.", + + "submission.sections.upload.no-entry": "ഇല്ല", + + "submission.sections.upload.no-file-uploaded": "ഇതുവരെ ഫയൽ അപ്ലോഡ് ചെയ്തിട്ടില്ല.", + + "submission.sections.upload.save-metadata": "മെറ്റാഡാറ്റ സംരക്ഷിക്കുക", + + "submission.sections.upload.undo": "റദ്ദാക്കുക", + + "submission.sections.upload.upload-failed": "അപ്ലോഡ് പരാജയപ്പെട്ടു", + + "submission.sections.upload.upload-successful": "അപ്ലോഡ് വിജയിച്ചു", + + "submission.sections.accesses.form.discoverable-description": "ചെക്ക് ചെയ്യുമ്പോൾ, ഈ ഇനം തിരയൽ/ബ്രൗസിൽ കണ്ടെത്താനാകും. ചെക്ക് ചെയ്യാതിരിക്കുമ്പോൾ, ഇനം ഒരു നേരിട്ടുള്ള ലിങ്ക് വഴി മാത്രമേ ലഭ്യമാകൂ, അത് ഒരിക്കലും തിരയൽ/ബ്രൗസിൽ പ്രത്യക്ഷപ്പെടില്ല.", + + "submission.sections.accesses.form.discoverable-label": "കണ്ടെത്താനാകുന്ന", + + "submission.sections.accesses.form.access-condition-label": "ആക്സസ് കണ്ടീഷൻ തരം", + + "submission.sections.accesses.form.access-condition-hint": "ഇനം ഡെപ്പോസിറ്റ് ചെയ്ത ശേഷം പ്രയോഗിക്കാൻ ഒരു ആക്സസ് കണ്ടീഷൻ തിരഞ്ഞെടുക്കുക", + + "submission.sections.accesses.form.date-required": "തീയതി ആവശ്യമാണ്.", + + "submission.sections.accesses.form.date-required-from": "ആക്സസ് നൽകുന്ന തീയതി ആവശ്യമാണ്.", + + "submission.sections.accesses.form.date-required-until": "ആക്സസ് നൽകുന്ന തീയതി വരെ ആവശ്യമാണ്.", + + "submission.sections.accesses.form.from-label": "ആക്സസ് നൽകുന്നത്", + + "submission.sections.accesses.form.from-hint": "ബന്ധപ്പെട്ട ആക്സസ് കണ്ടീഷൻ പ്രയോഗിക്കുന്ന തീയതി തിരഞ്ഞെടുക്കുക", + + "submission.sections.accesses.form.from-placeholder": "മുതൽ", + + "submission.sections.accesses.form.group-label": "ഗ്രൂപ്പ്", + + "submission.sections.accesses.form.group-required": "ഗ്രൂപ്പ് ആവശ്യമാണ്.", + + "submission.sections.accesses.form.until-label": "ആക്സസ് നൽകുന്നത് വരെ", + + "submission.sections.accesses.form.until-hint": "ബന്ധപ്പെട്ട ആക്സസ് കണ്ടീഷൻ പ്രയോഗിക്കുന്ന തീയതി വരെ തിരഞ്ഞെടുക്കുക", + + "submission.sections.accesses.form.until-placeholder": "വരെ", + + "submission.sections.duplicates.none": "ഡ്യൂപ്ലിക്കേറ്റുകൾ കണ്ടെത്തിയില്ല.", + + "submission.sections.duplicates.detected": "സാധ്യമായ ഡ്യൂപ്ലിക്കേറ്റുകൾ കണ്ടെത്തി. ദയവായി താഴെയുള്ള ലിസ്റ്റ് അവലോകനം ചെയ്യുക.", + + "submission.sections.duplicates.in-workspace": "ഈ ഇനം വർക്ക്സ്പേസിലാണ്", + + "submission.sections.duplicates.in-workflow": "ഈ ഇനം വർക്ക്ഫ്ലോയിലാണ്", + + "submission.sections.license.granted-label": "ഞാൻ മുകളിലുള്ള ലൈസൻസ് സ്ഥിരീകരിക്കുന്നു", + + "submission.sections.license.required": "നിങ്ങൾ ലൈസൻസ് സ്വീകരിക്കണം", + + "submission.sections.license.notgranted": "നിങ്ങൾ ലൈസൻസ് സ്വീകരിക്കണം", + + "submission.sections.sherpa.publication.information": "പ്രസിദ്ധീകരണ വിവരം", + + "submission.sections.sherpa.publication.information.title": "തലക്കെട്ട്", + + "submission.sections.sherpa.publication.information.issns": "ISSNs", + + "submission.sections.sherpa.publication.information.url": "URL", + + "submission.sections.sherpa.publication.information.publishers": "പ്രസാധകർ", + + "submission.sections.sherpa.publication.information.romeoPub": "റോമിയോ പബ്", + + "submission.sections.sherpa.publication.information.zetoPub": "സെറ്റോ പബ്", + + "submission.sections.sherpa.publisher.policy": "പ്രസാധക പോളിസി", + + "submission.sections.sherpa.publisher.policy.description": "ഷെർപ്പ റോമിയോ വഴി ചുവടെയുള്ള വിവരം കണ്ടെത്തി. നിങ്ങളുടെ പ്രസാധകരുടെ പോളിസികളെ അടിസ്ഥാനമാക്കി, ഒരു എംബാർഗോ ആവശ്യമായി വരാം എന്നോ നിങ്ങൾ അപ്ലോഡ് ചെയ്യാൻ അനുവദിച്ചിരിക്കുന്ന ഫയലുകൾ ഏതൊക്കെയാണെന്നോ ഇത് ഉപദേശം നൽകുന്നു. നിങ്ങൾക്ക് എന്തെങ്കിലും ചോദ്യങ്ങൾ ഉണ്ടെങ്കിൽ, ഫീഡ്ബാക്ക് ഫോം വഴി നിങ്ങളുടെ സൈറ്റ് അഡ്മിനിസ്ട്രേറ്ററെ സമീപിക്കുക.", + + "submission.sections.sherpa.publisher.policy.openaccess": "ഈ ജേണലിന്റെ പോളിസി അനുവദിക്കുന്ന ഓപ്പൺ ആക്സസ് പാതകൾ ലേഖന പതിപ്പ് അനുസരിച്ച് താഴെ ലിസ്റ്റ് ചെയ്തിരിക്കുന്നു. കൂടുതൽ വിശദമായ കാഴ്ചയ്ക്ക് ഒരു പാതയിൽ ക്ലിക്ക് ചെയ്യുക", + + "submission.sections.sherpa.publisher.policy.more.information": "കൂടുതൽ വിവരങ്ങൾക്ക്, ഇനിപ്പറയുന്ന ലിങ്കുകൾ കാണുക:", + + "submission.sections.sherpa.publisher.policy.version": "പതിപ്പ്", + + "submission.sections.sherpa.publisher.policy.embargo": "എംബാർഗോ", + + "submission.sections.sherpa.publisher.policy.noembargo": "എംബാർഗോ ഇല്ല", + + "submission.sections.sherpa.publisher.policy.nolocation": "ഒന്നുമില്ല", + + "submission.sections.sherpa.publisher.policy.license": "ലൈസൻസ്", + + "submission.sections.sherpa.publisher.policy.prerequisites": "മുൻഗണനകൾ", + + "submission.sections.sherpa.publisher.policy.location": "സ്ഥാനം", + + "submission.sections.sherpa.publisher.policy.conditions": "വ്യവസ്ഥകൾ", + + "submission.sections.sherpa.publisher.policy.refresh": "റിഫ്രഷ്", + + "submission.sections.sherpa.record.information": "റെക്കോർഡ് വിവരം", + + "submission.sections.sherpa.record.information.id": "ID", + + "submission.sections.sherpa.record.information.date.created": "തീയതി സൃഷ്ടിച്ചു", + + "submission.sections.sherpa.record.information.date.modified": "അവസാനം പരിഷ്കരിച്ചത്", + + "submission.sections.sherpa.record.information.uri": "URI", + + "submission.sections.sherpa.error.message": "ഷെർപ്പ വിവരങ്ങൾ വീണ്ടെടുക്കുന്നതിൽ ഒരു പിശക് ഉണ്ടായിരുന്നു", + + "submission.submit.breadcrumbs": "പുതിയ സമർപ്പണം", + + "submission.submit.title": "പുതിയ സമർപ്പണം", + + "submission.workflow.generic.delete": "ഇല്ലാതാക്കുക", + + "submission.workflow.generic.delete-help": "ഈ ഇനം ഉപേക്ഷിക്കാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക. അതിനുശേഷം നിങ്ങളോട് ഇത് സ്ഥിരീകരിക്കാൻ ആവശ്യപ്പെടും.", + + "submission.workflow.generic.edit": "എഡിറ്റ് ചെയ്യുക", + + "submission.workflow.generic.edit-help": "ഇനത്തിന്റെ മെറ്റാഡാറ്റ മാറ്റാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", + + "submission.workflow.generic.view": "കാണുക", + + "submission.workflow.generic.view-help": "ഇനത്തിന്റെ മെറ്റാഡാറ്റ കാണാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", + + "submission.workflow.generic.submit_select_reviewer": "റിവ്യൂവർ തിരഞ്ഞെടുക്കുക", + + "submission.workflow.generic.submit_select_reviewer-help": "", + + "submission.workflow.generic.submit_score": "റേറ്റ് ചെയ്യുക", + + "submission.workflow.generic.submit_score-help": "", + + "submission.workflow.tasks.claimed.approve": "അംഗീകരിക്കുക", + + "submission.workflow.tasks.claimed.approve_help": "നിങ്ങൾ ഇനം അവലോകനം ചെയ്തിട്ടുണ്ടെങ്കിൽ അത് കളക്ഷനിൽ ഉൾപ്പെടുത്താൻ അനുയോജ്യമാണെങ്കിൽ, \"അംഗീകരിക്കുക\" തിരഞ്ഞെടുക്കുക.", + + "submission.workflow.tasks.claimed.edit": "എഡിറ്റ് ചെയ്യുക", + + "submission.workflow.tasks.claimed.edit_help": "ഇനത്തിന്റെ മെറ്റാഡാറ്റ മാറ്റാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", + + "submission.workflow.tasks.claimed.decline": "നിരസിക്കുക", + + "submission.workflow.tasks.claimed.decline_help": "", + + "submission.workflow.tasks.claimed.reject.reason.info": "ദയവായി സമർപ്പണം നിരസിക്കാനുള്ള കാരണം താഴെയുള്ള ബോക്സിൽ നൽകുക, സമർപ്പകന് ഒരു പ്രശ്നം പരിഹരിച്ച് വീണ്ടും സമർപ്പിക്കാൻ കഴിയുമോ എന്ന് സൂചിപ്പിക്കുക.", + + "submission.workflow.tasks.claimed.reject.reason.placeholder": "നിരസിക്കാനുള്ള കാരണം വിവരിക്കുക", + + "submission.workflow.tasks.claimed.reject.reason.submit": "ഇനം നിരസിക്കുക", + + "submission.workflow.tasks.claimed.reject.reason.title": "കാരണം", + + "submission.workflow.tasks.claimed.reject.submit": "നിരസിക്കുക", + + "submission.workflow.tasks.claimed.reject_help": "നിങ്ങൾ ഇനം അവലോകനം ചെയ്തിട്ടുണ്ടെങ്കിൽ അത് കളക്ഷനിൽ ഉൾപ്പെടുത്താൻ അനുയോജ്യമല്ലെങ്കിൽ, \"നിരസിക്കുക\" തിരഞ്ഞെടുക്കുക. അതിനുശേഷം ഇനം അനുയോജ്യമല്ലാത്തതിന്റെ കാരണം സൂചിപ്പിക്കുന്ന ഒരു സന്ദേശം നൽകാൻ ആവശ്യപ്പെടും, സമർപ്പകൻ എന്തെങ്കിലും മാറ്റണമെങ്കിൽ വീണ്ടും സമർപ്പിക്കണമോ എന്നും.", + + "submission.workflow.tasks.claimed.return": "പൂളിലേക്ക് തിരികെ നൽകുക", + + "submission.workflow.tasks.claimed.return_help": "ടാസ്ക് പൂളിലേക്ക് തിരികെ നൽകുക, അതിനാൽ മറ്റൊരു ഉപയോക്താവ് ടാസ്ക് നിർവഹിക്കാൻ കഴിയും.", + + "submission.workflow.tasks.generic.error": "പ്രവർത്തന സമയത്ത് പിശക് സംഭവിച്ചു...", + + "submission.workflow.tasks.generic.processing": "പ്രോസസ്സിംഗ്...", + + "submission.workflow.tasks.generic.submitter": "സമർപ്പകൻ", + + "submission.workflow.tasks.generic.success": "പ്രവർത്തനം വിജയിച്ചു", + + "submission.workflow.tasks.pool.claim": "ക്ലെയിം ചെയ്യുക", + + "submission.workflow.tasks.pool.claim_help": "ഈ ടാസ്ക് നിങ്ങൾക്കായി അസൈൻ ചെയ്യുക.", + + "submission.workflow.tasks.pool.hide-detail": "വിവരം മറയ്ക്കുക", + + "submission.workflow.tasks.pool.show-detail": "വിവരം കാണിക്കുക", + + "submission.workflow.tasks.duplicates": "ഈ ഇനത്തിനായി സാധ്യമായ ഡ്യൂപ്ലിക്കേറ്റുകൾ കണ്ടെത്തി. ഈ ഇനം ക്ലെയിം ചെയ്ത് എഡിറ്റ് ചെയ്യുക, വിശദാംശങ്ങൾ കാണാൻ.", + + "submission.workspace.generic.view": "കാണുക", + + "submission.workspace.generic.view-help": "ഇനത്തിന്റെ മെറ്റാഡാറ്റ കാണാൻ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുക.", + + "submitter.empty": "N/A", + + "subscriptions.title": "സബ്സ്ക്രിപ്ഷനുകൾ", + + "subscriptions.item": "ഇനങ്ങൾക്കുള്ള സബ്സ്ക്രിപ്ഷനുകൾ", + + "subscriptions.collection": "കളക്ഷനുകൾക്കുള്ള സബ്സ്ക്രിപ്ഷനുകൾ", + + "subscriptions.community": "കമ്മ്യൂണിറ്റികൾക്കുള്ള സബ്സ്ക്രിപ്ഷനുകൾ", + + "subscriptions.subscription_type": "സബ്സ്ക്രിപ്ഷൻ തരം", + + "subscriptions.frequency": "സബ്സ്ക്രിപ്ഷൻ ആവൃത്തി", + + "subscriptions.frequency.D": "ദിവസേന", + + "subscriptions.frequency.M": "മാസേന", + + "subscriptions.frequency.W": "ആഴ്ചതോറും", + + "subscriptions.tooltip": "സബ്സ്ക്രൈബ് ചെയ്യുക", + + "subscriptions.unsubscribe": "അൺസബ്സ്ക്രൈബ് ചെയ്യുക", + + "subscriptions.modal.title": "സബ്സ്ക്രിപ്ഷനുകൾ", + + "subscriptions.modal.type-frequency": "തരവും ആവൃത്തിയും", + + "subscriptions.modal.close": "അടയ്ക്കുക", + + "subscriptions.modal.delete-info": "ഈ സബ്സ്ക്രിപ്ഷൻ നീക്കം ചെയ്യാൻ, ദയവായി നിങ്ങളുടെ ഉപയോക്തൃ പ്രൊഫൈലിന് കീഴിലുള്ള \"സബ്സ്ക്രിപ്ഷനുകൾ\" പേജ് സന്ദർശിക്കുക", + + "subscriptions.modal.new-subscription-form.type.content": "ഉള്ളടക്കം", + + "subscriptions.modal.new-subscription-form.frequency.D": "ദിവസേന", + + "subscriptions.modal.new-subscription-form.frequency.W": "ആഴ്ചതോറും", + + "subscriptions.modal.new-subscription-form.frequency.M": "മാസേന", + + "subscriptions.modal.new-subscription-form.submit": "സമർപ്പിക്കുക", + + "subscriptions.modal.new-subscription-form.processing": "പ്രോസസ്സിംഗ്...", + + "subscriptions.modal.create.success": "{{ type }}-ലേക്ക് വിജയകരമായി സബ്സ്ക്രൈബ് ചെയ്തു.", + + "subscriptions.modal.delete.success": "സബ്സ്ക്രിപ്ഷൻ വിജയകരമായി ഇല്ലാതാക്കി", + + "subscriptions.modal.update.success": "{{ type }}-ലേക്കുള്ള സബ്സ്ക്രിപ്ഷൻ വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു", + + "subscriptions.modal.create.error": "സബ്സ്ക്രിപ്ഷൻ സൃഷ്ടിക്കുന്ന സമയത്ത് ഒരു പിശക് സംഭവിച്ചു", + + "subscriptions.modal.delete.error": "സബ്സ്ക്രിപ്ഷൻ ഇല്ലാതാക്കുന്ന സമയത്ത് ഒരു പിശക് സംഭവിച്ചു", + + "subscriptions.modal.update.error": "സബ്സ്ക്രിപ്ഷൻ അപ്ഡേറ്റ് ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", + + "subscriptions.table.dso": "വിഷയം", + + "subscriptions.table.subscription_type": "സബ്സ്ക്രിപ്ഷൻ തരം", + + "subscriptions.table.subscription_frequency": "സബ്സ്ക്രിപ്ഷൻ ആവൃത്തി", + + "subscriptions.table.action": "പ്രവർത്തനം", + + "subscriptions.table.edit": "എഡിറ്റ് ചെയ്യുക", + + "subscriptions.table.delete": "ഇല്ലാതാക്കുക", + + "subscriptions.table.not-available": "ലഭ്യമല്ല", + + "subscriptions.table.not-available-message": "സബ്സ്ക്രൈബ് ചെയ്ത ഇനം ഇല്ലാതാക്കിയിരിക്കുന്നു, അല്ലെങ്കിൽ നിങ്ങൾക്ക് ഇപ്പോൾ അത് കാണാൻ അനുമതി ഇല്ല", + + "subscriptions.table.empty.message": "നിങ്ങൾക്ക് ഇപ്പോൾ ഒരു സബ്സ്ക്രിപ്ഷനുകളും ഇല്ല. ഒരു കമ്മ്യൂണിറ്റിയിലോ കളക്ഷനിലോ ഇമെയിൽ അപ്ഡേറ്റുകൾക്കായി സബ്സ്ക്രൈബ് ചെയ്യാൻ, ഒബ്ജക്റ്റിന്റെ പേജിലെ സബ്സ്ക്രിപ്ഷൻ ബട്ടൺ ഉപയോഗിക്കുക.", + + "thumbnail.default.alt": "തംബ്നെയിൽ ഇമേജ്", + + "thumbnail.default.placeholder": "തംബ്നെയിൽ ലഭ്യമല്ല", + + "thumbnail.project.alt": "പ്രോജക്റ്റ് ലോഗോ", + + "thumbnail.project.placeholder": "പ്രോജക്റ്റ് പ്ലേസ്ഹോൾഡർ ഇമേജ്", + + "thumbnail.orgunit.alt": "ഓർഗ്യൂണിറ്റ് ലോഗോ", + + "thumbnail.orgunit.placeholder": "ഓർഗ്യൂണിറ്റ് പ്ലേസ്ഹോൾഡർ ഇമേജ്", + + "thumbnail.person.alt": "പ്രൊഫൈൽ ചിത്രം", + + "thumbnail.person.placeholder": "പ്രൊഫൈൽ ചിത്രം ലഭ്യമല്ല", + + "title": "ഡിസ്പേസ്", + + "vocabulary-treeview.header": "ഹൈരാർക്കിക്കൽ ട്രീ വ്യൂ", + + "vocabulary-treeview.load-more": "കൂടുതൽ ലോഡ് ചെയ്യുക", + + "vocabulary-treeview.search.form.reset": "റീസെറ്റ്", + + "vocabulary-treeview.search.form.search": "തിരയുക", + + "vocabulary-treeview.search.form.search-placeholder": "ആദ്യത്തെ കുറച്ച് അക്ഷരങ്ങൾ ടൈപ്പ് ചെയ്ത് ഫിൽട്ടർ ചെയ്യുക", + + "vocabulary-treeview.search.no-result": "കാണിക്കാൻ ഇനങ്ങളൊന്നും ഇല്ല", + + "vocabulary-treeview.tree.description.nsi": "ദി നോർവീജിയൻ സയൻസ് ഇൻഡെക്സ്", + + "vocabulary-treeview.tree.description.srsc": "ഗവേഷണ വിഷയ വിഭാഗങ്ങൾ", + + "vocabulary-treeview.info": "തിരയൽ ഫിൽട്ടറായി ചേർക്കാൻ ഒരു വിഷയം തിരഞ്ഞെടുക്കുക", + + "uploader.browse": "ബ്രൗസ് ചെയ്യുക", + + "uploader.drag-message": "നിങ്ങളുടെ ഫയലുകൾ ഇവിടെ വലിച്ചിടുക", + + "uploader.delete.btn-title": "ഇല്ലാതാക്കുക", + + "uploader.or": ", അല്ലെങ്കിൽ ", + + "uploader.processing": "അപ്ലോഡ് ചെയ്ത ഫയൽ(കൾ) പ്രോസസ്സ് ചെയ്യുന്നു... (ഈ പേജ് അടയ്ക്കാൻ ഇപ്പോൾ സുരക്ഷിതമാണ്)", + + "uploader.queue-length": "ക്യൂ നീളം", + + "virtual-metadata.delete-item.info": "വെർച്വൽ മെറ്റാഡാറ്റ യഥാർത്ഥ മെറ്റാഡാറ്റയായി സംരക്ഷിക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്ന തരങ്ങൾ തിരഞ്ഞെടുക്കുക", + + "virtual-metadata.delete-item.modal-head": "ഈ ബന്ധത്തിന്റെ വെർച്വൽ മെറ്റാഡാറ്റ", + + "virtual-metadata.delete-relationship.modal-head": "വെർച്വൽ മെറ്റാഡാറ്റ യഥാർത്ഥ മെറ്റാഡാറ്റയായി സംരക്ഷിക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്ന ഇനങ്ങൾ തിരഞ്ഞെടുക്കുക", + + "supervisedWorkspace.search.results.head": "പരിശോധിച്ച ഇനങ്ങൾ", + + "workspace.search.results.head": "നിങ്ങളുടെ സമർപ്പണങ്ങൾ", + + "workflowAdmin.search.results.head": "വർക്ക്ഫ്ലോ അഡ്മിനിസ്റ്റർ", + + "workflow.search.results.head": "വർക്ക്ഫ്ലോ ടാസ്ക്കുകൾ", + + "supervision.search.results.head": "വർക്ക്ഫ്ലോ, വർക്ക്സ്പേസ് ടാസ്ക്കുകൾ", + + "workflow-item.edit.breadcrumbs": "വർക്ക്ഫ്ലോഇറ്റം എഡിറ്റ് ചെയ്യുക", + + "workflow-item.edit.title": "വർക്ക്ഫ്ലോഇറ്റം എഡിറ്റ് ചെയ്യുക", + + "workflow-item.delete.notification.success.title": "ഇല്ലാതാക്കി", + + "workflow-item.delete.notification.success.content": "ഈ വർക്ക്ഫ്ലോ ഇനം വിജയകരമായി ഇല്ലാതാക്കി", + + "workflow-item.delete.notification.error.title": "എന്തോ തെറ്റായി", + + "workflow-item.delete.notification.error.content": "വർക്ക്ഫ്ലോ ഇനം ഇല്ലാതാക്കാൻ കഴിഞ്ഞില്ല", + + "workflow-item.delete.title": "വർക്ക്ഫ്ലോ ഇനം ഇല്ലാതാക്കുക", + + "workflow-item.delete.header": "വർക്ക്ഫ്ലോ ഇനം ഇല്ലാതാക്കുക", + + "workflow-item.delete.button.cancel": "റദ്ദാക്കുക", + + "workflow-item.delete.button.confirm": "ഇല്ലാതാക്കുക", + + "workflow-item.send-back.notification.success.title": "സബ്മിറ്ററിലേക്ക് തിരികെ അയച്ചു", + + "workflow-item.send-back.notification.success.content": "ഈ വർക്ക്ഫ്ലോ ഇനം വിജയകരമായി സബ്മിറ്ററിലേക്ക് തിരികെ അയച്ചു", + + "workflow-item.send-back.notification.error.title": "എന്തോ തെറ്റായി", + + "workflow-item.send-back.notification.error.content": "വർക്ക്ഫ്ലോ ഇനം സബ്മിറ്ററിലേക്ക് തിരികെ അയയ്ക്കാൻ കഴിഞ്ഞില്ല", + + "workflow-item.send-back.title": "വർക്ക്ഫ്ലോ ഇനം സബ്മിറ്ററിലേക്ക് തിരികെ അയയ്ക്കുക", + + "workflow-item.send-back.header": "വർക്ക്ഫ്ലോ ഇനം സബ്മിറ്ററിലേക്ക് തിരികെ അയയ്ക്കുക", + + "workflow-item.send-back.button.cancel": "റദ്ദാക്കുക", + + "workflow-item.send-back.button.confirm": "തിരികെ അയയ്ക്കുക", + + "workflow-item.view.breadcrumbs": "വർക്ക്ഫ്ലോ വ്യൂ", + + "workspace-item.view.breadcrumbs": "വർക്ക്സ്പേസ് വ്യൂ", + + "workspace-item.view.title": "വർക്ക്സ്പേസ് വ്യൂ", + + "workspace-item.delete.breadcrumbs": "വർക്ക്സ്പേസ് ഇനം ഇല്ലാതാക്കുക", + + "workspace-item.delete.header": "വർക്ക്സ്പേസ് ഇനം ഇല്ലാതാക്കുക", + + "workspace-item.delete.button.confirm": "ഇല്ലാതാക്കുക", + + "workspace-item.delete.button.cancel": "റദ്ദാക്കുക", + + "workspace-item.delete.notification.success.title": "ഇല്ലാതാക്കി", + + "workspace-item.delete.title": "ഈ വർക്ക്സ്പേസ് ഇനം വിജയകരമായി ഇല്ലാതാക്കി", + + "workspace-item.delete.notification.error.title": "എന്തോ തെറ്റായി", + + "workspace-item.delete.notification.error.content": "വർക്ക്സ്പേസ് ഇനം ഇല്ലാതാക്കാൻ കഴിഞ്ഞില്ല", + + "workflow-item.advanced.title": "അഡ്വാൻസ്ഡ് വർക്ക്ഫ്ലോ", + + "workflow-item.selectrevieweraction.notification.success.title": "റിവ്യൂവർ തിരഞ്ഞെടുത്തു", + + "workflow-item.selectrevieweraction.notification.success.content": "ഈ വർക്ക്ഫ്ലോ ഇനത്തിനായി റിവ്യൂവർ വിജയകരമായി തിരഞ്ഞെടുത്തു", + + "workflow-item.selectrevieweraction.notification.error.title": "എന്തോ തെറ്റായി", + + "workflow-item.selectrevieweraction.notification.error.content": "ഈ വർക്ക്ഫ്ലോ ഇനത്തിനായി റിവ്യൂവർ തിരഞ്ഞെടുക്കാൻ കഴിഞ്ഞില്ല", + + "workflow-item.selectrevieweraction.title": "റിവ്യൂവർ തിരഞ്ഞെടുക്കുക", + + "workflow-item.selectrevieweraction.header": "റിവ്യൂവർ തിരഞ്ഞെടുക്കുക", + + "workflow-item.selectrevieweraction.button.cancel": "റദ്ദാക്കുക", + + "workflow-item.selectrevieweraction.button.confirm": "സ്ഥിരീകരിക്കുക", + + "workflow-item.scorereviewaction.notification.success.title": "റേറ്റിംഗ് റിവ്യൂ", + + "workflow-item.scorereviewaction.notification.success.content": "ഈ ഇനത്തിന്റെ വർക്ക്ഫ്ലോ ഇനത്തിനായി റേറ്റിംഗ് വിജയകരമായി സമർപ്പിച്ചു", + + "workflow-item.scorereviewaction.notification.error.title": "എന്തോ തെറ്റായി", + + "workflow-item.scorereviewaction.notification.error.content": "ഈ ഇനം റേറ്റ് ചെയ്യാൻ കഴിഞ്ഞില്ല", + + "workflow-item.scorereviewaction.title": "ഈ ഇനം റേറ്റ് ചെയ്യുക", + + "workflow-item.scorereviewaction.header": "ഈ ഇനം റേറ്റ് ചെയ്യുക", + + "workflow-item.scorereviewaction.button.cancel": "റദ്ദാക്കുക", + + "workflow-item.scorereviewaction.button.confirm": "സ്ഥിരീകരിക്കുക", + + "idle-modal.header": "സെഷൻ ഉടൻ കാലഹരണപ്പെടും", + + "idle-modal.info": "സുരക്ഷാ കാരണങ്ങളാൽ, ഉപയോക്തൃ സെഷനുകൾ {{ timeToExpire }} മിനിറ്റ് നിഷ്ക്രിയതയ്ക്ക് ശേഷം കാലഹരണപ്പെടുന്നു. നിങ്ങളുടെ സെഷൻ ഉടൻ കാലഹരണപ്പെടും. നിങ്ങൾക്ക് അത് വിപുലീകരിക്കാൻ ആഗ്രഹിക്കുന്നുണ്ടോ അല്ലെങ്കിൽ ലോഗൗട്ട് ചെയ്യാൻ ആഗ്രഹിക്കുന്നുണ്ടോ?", + + "idle-modal.log-out": "ലോഗൗട്ട്", + + "idle-modal.extend-session": "സെഷൻ വിപുലീകരിക്കുക", + + "researcher.profile.action.processing": "പ്രോസസ്സിംഗ്...", + + "researcher.profile.associated": "ഗവേഷക പ്രൊഫൈൽ ബന്ധിപ്പിച്ചു", + + "researcher.profile.change-visibility.fail": "പ്രൊഫൈൽ ദൃശ്യമാക്കൽ മാറ്റുന്നതിനിടെ ഒരു പ്രതീക്ഷിതമല്ലാത്ത പിശക് സംഭവിച്ചു", + + "researcher.profile.create.new": "പുതിയത് സൃഷ്ടിക്കുക", + + "researcher.profile.create.success": "ഗവേഷക പ്രൊഫൈൽ വിജയകരമായി സൃഷ്ടിച്ചു", + + "researcher.profile.create.fail": "ഗവേഷക പ്രൊഫൈൽ സൃഷ്ടിക്കുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", + + "researcher.profile.delete": "ഇല്ലാതാക്കുക", + + "researcher.profile.expose": "പ്രദർശിപ്പിക്കുക", + + "researcher.profile.hide": "മറയ്ക്കുക", + + "researcher.profile.not.associated": "ഗവേഷക പ്രൊഫൈൽ ഇതുവരെ ബന്ധിപ്പിച്ചിട്ടില്ല", + + "researcher.profile.view": "കാണുക", + + "researcher.profile.private.visibility": "സ്വകാര്യം", + + "researcher.profile.public.visibility": "പബ്ലിക്", + + "researcher.profile.status": "സ്റ്റാറ്റസ്:", + + "researcherprofile.claim.not-authorized": "ഈ ഇനം ക്ലെയിം ചെയ്യാൻ നിങ്ങൾക്ക് അധികാരമില്ല. കൂടുതൽ വിവരങ്ങൾക്ക് അഡ്മിനിസ്ട്രേറ്റർ(മാർ) ബന്ധപ്പെടുക.", + + "researcherprofile.error.claim.body": "പ്രൊഫൈൽ ക്ലെയിം ചെയ്യുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു, ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക", + + "researcherprofile.error.claim.title": "പിശക്", + + "researcherprofile.success.claim.body": "പ്രൊഫൈൽ വിജയകരമായി ക്ലെയിം ചെയ്തു", + + "researcherprofile.success.claim.title": "വിജയം", + + "person.page.orcid.create": "ഒരു ORCID ID സൃഷ്ടിക്കുക", + + "person.page.orcid.granted-authorizations": "അനുവദിച്ച അധികാരങ്ങൾ", + + "person.page.orcid.grant-authorizations": "അധികാരങ്ങൾ അനുവദിക്കുക", + + "person.page.orcid.link": "ORCID ID-യുമായി ബന്ധിപ്പിക്കുക", + + "person.page.orcid.link.processing": "പ്രൊഫൈൽ ORCID-ലേക്ക് ലിങ്ക് ചെയ്യുന്നു...", + + "person.page.orcid.link.error.message": "പ്രൊഫൈൽ ORCID-ലേക്ക് ബന്ധിപ്പിക്കുന്നതിനിടെ എന്തോ തെറ്റായി. പ്രശ്നം തുടരുകയാണെങ്കിൽ, അഡ്മിനിസ്ട്രേറ്ററെ ബന്ധപ്പെടുക.", + + "person.page.orcid.orcid-not-linked-message": "ഈ പ്രൊഫൈലിന്റെ ORCID iD ({{ orcid }}) ORCID രജിസ്ട്രിയിൽ ഒരു അക്കൗണ്ടുമായി ഇതുവരെ ബന്ധിപ്പിച്ചിട്ടില്ല അല്ലെങ്കിൽ കണക്ഷൻ കാലഹരണപ്പെട്ടിരിക്കുന്നു.", + + "person.page.orcid.unlink": "ORCID-ൽ നിന്ന് വിച്ഛേദിക്കുക", + + "person.page.orcid.unlink.processing": "പ്രോസസ്സിംഗ്...", + + "person.page.orcid.missing-authorizations": "കാണാതായ അധികാരങ്ങൾ", + + "person.page.orcid.missing-authorizations-message": "ഇനിപ്പറയുന്ന അധികാരങ്ങൾ കാണാതായിരിക്കുന്നു:", + + "person.page.orcid.no-missing-authorizations-message": "കൊള്ളാം! ഈ ബോക്സ് ശൂന്യമാണ്, അതിനാൽ നിങ്ങളുടെ സ്ഥാപനം വാഗ്ദാനം ചെയ്യുന്ന എല്ലാ ഫംഗ്ഷനുകളും ഉപയോഗിക്കാൻ ആവശ്യമായ എല്ലാ ആക്സസ് അവകാശങ്ങളും നിങ്ങൾ അനുവദിച്ചിട്ടുണ്ട്.", + + "person.page.orcid.no-orcid-message": "ഇതുവരെ ഒരു ORCID iD ബന്ധിപ്പിച്ചിട്ടില്ല. ചുവടെയുള്ള ബട്ടൺ ക്ലിക്ക് ചെയ്തുകൊണ്ട് ഈ പ്രൊഫൈൽ ഒരു ORCID അക്കൗണ്ടുമായി ബന്ധിപ്പിക്കാൻ കഴിയും.", + + "person.page.orcid.profile-preferences": "പ്രൊഫൈൽ പ്രിഫറൻസുകൾ", + + "person.page.orcid.funding-preferences": "ഫണ്ടിംഗ് പ്രിഫറൻസുകൾ", + + "person.page.orcid.publications-preferences": "പബ്ലിക്കേഷൻ പ്രിഫറൻസുകൾ", + + "person.page.orcid.remove-orcid-message": "നിങ്ങളുടെ ORCID നീക്കംചെയ്യണമെങ്കിൽ, ദയവായി റെപ്പോസിറ്ററി അഡ്മിനിസ്ട്രേറ്ററെ ബന്ധപ്പെടുക", + + "person.page.orcid.save.preference.changes": "ക്രമീകരണങ്ങൾ അപ്ഡേറ്റ് ചെയ്യുക", + + "person.page.orcid.sync-profile.affiliation": "അഫിലിയേഷൻ", + + "person.page.orcid.sync-profile.biographical": "ജീവചരിത്ര ഡാറ്റ", + + "person.page.orcid.sync-profile.education": "വിദ്യാഭ്യാസം", + + "person.page.orcid.sync-profile.identifiers": "ഐഡന്റിഫയറുകൾ", + + "person.page.orcid.sync-fundings.all": "എല്ലാ ഫണ്ടിംഗുകളും", + + "person.page.orcid.sync-fundings.mine": "എന്റെ ഫണ്ടിംഗുകൾ", + + "person.page.orcid.sync-fundings.my_selected": "തിരഞ്ഞെടുത്ത ഫണ്ടിംഗുകൾ", + + "person.page.orcid.sync-fundings.disabled": "പ്രവർത്തനരഹിതം", + + "person.page.orcid.sync-publications.all": "എല്ലാ പബ്ലിക്കേഷനുകളും", + + "person.page.orcid.sync-publications.mine": "എന്റെ പബ്ലിക്കേഷനുകൾ", + + "person.page.orcid.sync-publications.my_selected": "തിരഞ്ഞെടുത്ത പബ്ലിക്കേഷനുകൾ", + + "person.page.orcid.sync-publications.disabled": "പ്രവർത്തനരഹിതം", + + "person.page.orcid.sync-queue.discard": "മാറ്റം ഉപേക്ഷിച്ച് ORCID രജിസ്ട്രിയുമായി സിങ്ക് ചെയ്യരുത്", + + "person.page.orcid.sync-queue.discard.error": "ORCID ക്യൂ റെക്കോർഡ് ഉപേക്ഷിക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "person.page.orcid.sync-queue.discard.success": "ORCID ക്യൂ റെക്കോർഡ് വിജയകരമായി ഉപേക്ഷിച്ചു", + + "person.page.orcid.sync-queue.empty-message": "ORCID ക്യൂ രജിസ്ട്രി ശൂന്യമാണ്", + + "person.page.orcid.sync-queue.table.header.type": "തരം", + + "person.page.orcid.sync-queue.table.header.description": "വിവരണം", + + "person.page.orcid.sync-queue.table.header.action": "പ്രവർത്തനം", + + "person.page.orcid.sync-queue.description.affiliation": "അഫിലിയേഷനുകൾ", + + "person.page.orcid.sync-queue.description.country": "രാജ്യം", + + "person.page.orcid.sync-queue.description.education": "വിദ്യാഭ്യാസങ്ങൾ", + + "person.page.orcid.sync-queue.description.external_ids": "ബാഹ്യ ഐഡുകൾ", + + "person.page.orcid.sync-queue.description.other_names": "മറ്റ് പേരുകൾ", + + "person.page.orcid.sync-queue.description.qualification": "യോഗ്യതകൾ", + + "person.page.orcid.sync-queue.description.researcher_urls": "ഗവേഷക URL-കൾ", + + "person.page.orcid.sync-queue.description.keywords": "കീവേഡുകൾ", + + "person.page.orcid.sync-queue.tooltip.insert": "ORCID രജിസ്ട്രിയിൽ ഒരു പുതിയ എൻട്രി ചേർക്കുക", + + "person.page.orcid.sync-queue.tooltip.update": "ORCID രജിസ്ട്രിയിലെ ഈ എൻട്രി അപ്ഡേറ്റ് ചെയ്യുക", + + "person.page.orcid.sync-queue.tooltip.delete": "ORCID രജിസ്ട്രിയിൽ നിന്ന് ഈ എൻട്രി നീക്കംചെയ്യുക", + + "person.page.orcid.sync-queue.tooltip.publication": "പബ്ലിക്കേഷൻ", + + "person.page.orcid.sync-queue.tooltip.project": "പ്രോജക്റ്റ്", + + "person.page.orcid.sync-queue.tooltip.affiliation": "അഫിലിയേഷൻ", + + "person.page.orcid.sync-queue.tooltip.education": "വിദ്യാഭ്യാസം", + + "person.page.orcid.sync-queue.tooltip.qualification": "യോഗ്യത", + + "person.page.orcid.sync-queue.tooltip.other_names": "മറ്റ് പേര്", + + "person.page.orcid.sync-queue.tooltip.country": "രാജ്യം", + + "person.page.orcid.sync-queue.tooltip.keywords": "കീവേഡ്", + + "person.page.orcid.sync-queue.tooltip.external_ids": "ബാഹ്യ ഐഡന്റിഫയർ", + + "person.page.orcid.sync-queue.tooltip.researcher_urls": "ഗവേഷക URL", + + "person.page.orcid.sync-queue.send": "ORCID രജിസ്ട്രിയുമായി സിങ്ക് ചെയ്യുക", + + "person.page.orcid.sync-queue.send.unauthorized-error.title": "അധികാരങ്ങൾ കാണാത്തതിനാൽ ORCID-ലേക്ക് സമർപ്പിക്കുന്നതിൽ പരാജയപ്പെട്ടു.", + + "person.page.orcid.sync-queue.send.unauthorized-error.content": "ആവശ്യമായ അനുമതികൾ വീണ്ടും അനുവദിക്കാൻ ഇവിടെ ക്ലിക്ക് ചെയ്യുക. പ്രശ്നം തുടരുകയാണെങ്കിൽ, അഡ്മിനിസ്ട്രേറ്ററെ ബന്ധപ്പെടുക", + + "person.page.orcid.sync-queue.send.bad-request-error": "ORCID രജിസ്ട്രിയിലേക്ക് അയച്ച റിസോഴ്സ് സാധുവല്ലാത്തതിനാൽ ORCID-ലേക്ക് സമർപ്പിക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "person.page.orcid.sync-queue.send.error": "ORCID-ലേക്ക് സമർപ്പിക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "person.page.orcid.sync-queue.send.conflict-error": "റിസോഴ്സ് ORCID രജിസ്ട്രിയിൽ ഇതിനകം തന്നെ ഉള്ളതിനാൽ ORCID-ലേക്ക് സമർപ്പിക്കുന്നതിൽ പരാജയപ്പെട്ടു", + + "person.page.orcid.sync-queue.send.not-found-warning": "റിസോഴ്സ് ORCID രജിസ്ട്രിയിൽ ഇനി നിലവിലില്ല.", + + "person.page.orcid.sync-queue.send.success": "ORCID-ലേക്ക് സമർപ്പിക്കൽ വിജയകരമായി പൂർത്തിയായി", + + "person.page.orcid.sync-queue.send.validation-error": "ORCID-ലേക്ക് സിങ്ക് ചെയ്യാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്ന ഡാറ്റ സാധുവല്ല", + + "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "തുകയുടെ കറൻസി ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.external-id.required": "അയയ്ക്കേണ്ട റിസോഴ്സിന് കുറഞ്ഞത് ഒരു ഐഡന്റിഫയറെങ്കിലും ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.title.required": "ശീർഷകം ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.start-date.required": "ആരംഭ തീയതി ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.funder.required": "ഫണ്ടർ ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.country.invalid": "സാധുവല്ലാത്ത 2 അക്ക ISO 3166 രാജ്യം", + + "person.page.orcid.sync-queue.send.validation-error.organization.required": "ഓർഗനൈസേഷൻ ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "ഓർഗനൈസേഷന്റെ പേര് ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "പബ്ലിക്കേഷൻ തീയതി 1900-ന് ശേഷം ഒരു വർഷമായിരിക്കണം", + + "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "അയയ്ക്കേണ്ട ഓർഗനൈസേഷന് ഒരു വിലാസം ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "അയയ്ക്കേണ്ട ഓർഗനൈസേഷന്റെ വിലാസത്തിന് ഒരു നഗരം ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "അയയ്ക്കേണ്ട ഓർഗനൈസേഷന്റെ വിലാസത്തിന് സാധുവായ 2 അക്ക ISO 3166 രാജ്യം ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "ഓർഗനൈസേഷനുകൾ വിവേചനം ചെയ്യാൻ ഒരു ഐഡന്റിഫയർ ആവശ്യമാണ്. പിന്തുണയ്ക്കുന്ന ഐഡുകൾ GRID, Ringgold, Legal Entity identifiers (LEIs), Crossref Funder Registry identifiers എന്നിവയാണ്", + + "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "ഓർഗനൈസേഷന്റെ ഐഡന്റിഫയറുകൾക്ക് ഒരു മൂല്യം ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "ഓർഗനൈസേഷന്റെ ഐഡന്റിഫയറുകൾക്ക് ഒരു സോഴ്സ് ആവശ്യമാണ്", + + "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "ഓർഗനൈസേഷൻ ഐഡന്റിഫയറുകളിൽ ഒന്നിന്റെ ഉറവിടം അസാധുവാണ്. പിന്തുണയ്ക്കുന്ന ഉറവിടങ്ങൾ RINGGOLD, GRID, LEI, FUNDREF എന്നിവയാണ്", + + "person.page.orcid.synchronization-mode": "സിങ്ക്രോണൈസേഷൻ മോഡ്", + + "person.page.orcid.synchronization-mode.batch": "ബാച്ച്", + + "person.page.orcid.synchronization-mode.label": "സിങ്ക്രോണൈസേഷൻ മോഡ്", + + "person.page.orcid.synchronization-mode-message": "ORCID-ലേക്ക് സിങ്ക്രോണൈസേഷൻ എങ്ങനെ നടത്തണമെന്ന് തിരഞ്ഞെടുക്കുക. \"മാനുവൽ\" (നിങ്ങളുടെ ഡാറ്റ ORCID-ലേക്ക് മാനുവലായി അയയ്ക്കേണ്ടതുണ്ട്) അല്ലെങ്കിൽ \"ബാച്ച്\" (സിസ്റ്റം ഒരു ഷെഡ്യൂൾ ചെയ്ത സ്ക്രിപ്റ്റ് വഴി നിങ്ങളുടെ ഡാറ്റ ORCID-ലേക്ക് അയയ്ക്കും) എന്നിവ ഓപ്ഷനുകളിൽ ഉൾപ്പെടുന്നു.", + + "person.page.orcid.synchronization-mode-funding-message": "നിങ്ങളുടെ ORCID റെക്കോർഡിന്റെ ഫണ്ടിംഗ് വിവരങ്ങളുടെ ലിസ്റ്റിലേക്ക് ലിങ്ക് ചെയ്ത പ്രോജക്റ്റ് എന്റിറ്റികൾ അയയ്ക്കാൻ തിരഞ്ഞെടുക്കുക.", + + "person.page.orcid.synchronization-mode-publication-message": "നിങ്ങളുടെ ORCID റെക്കോർഡിന്റെ ജോലികളുടെ ലിസ്റ്റിലേക്ക് ലിങ്ക് ചെയ്ത പബ്ലിക്കേഷൻ എന്റിറ്റികൾ അയയ്ക്കാൻ തിരഞ്ഞെടുക്കുക.", + + "person.page.orcid.synchronization-mode-profile-message": "നിങ്ങളുടെ ജീവചരിത്ര ഡാറ്റ അല്ലെങ്കിൽ വ്യക്തിഗത ഐഡന്റിഫയറുകൾ നിങ്ങളുടെ ORCID റെക്കോർഡിലേക്ക് അയയ്ക്കാൻ തിരഞ്ഞെടുക്കുക.", + + "person.page.orcid.synchronization-settings-update.success": "സിങ്ക്രോണൈസേഷൻ സെറ്റിംഗുകൾ വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു", + + "person.page.orcid.synchronization-settings-update.error": "സിങ്ക്രോണൈസേഷൻ സെറ്റിംഗുകൾ അപ്ഡേറ്റ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു", + + "person.page.orcid.synchronization-mode.manual": "മാനുവൽ", + + "person.page.orcid.scope.authenticate": "നിങ്ങളുടെ ORCID iD നേടുക", + + "person.page.orcid.scope.read-limited": "Trusted Parties-ലേക്ക് ലഭ്യമാക്കിയ വിവരങ്ങൾ വായിക്കുക", + + "person.page.orcid.scope.activities-update": "നിങ്ങളുടെ ഗവേഷണ പ്രവർത്തനങ്ങൾ ചേർക്കുക/അപ്ഡേറ്റ് ചെയ്യുക", + + "person.page.orcid.scope.person-update": "നിങ്ങളെക്കുറിച്ചുള്ള മറ്റ് വിവരങ്ങൾ ചേർക്കുക/അപ്ഡേറ്റ് ചെയ്യുക", + + "person.page.orcid.unlink.success": "പ്രൊഫൈലും ORCID രജിസ്ട്രിയും തമ്മിലുള്ള കണക്ഷൻ വിജയകരമായി തടയപ്പെട്ടു", + + "person.page.orcid.unlink.error": "പ്രൊഫൈലും ORCID രജിസ്ട്രിയും തമ്മിലുള്ള കണക്ഷൻ തടയുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു. വീണ്ടും ശ്രമിക്കുക", + + "person.orcid.sync.setting": "ORCID സിങ്ക്രോണൈസേഷൻ സെറ്റിംഗുകൾ", + + "person.orcid.registry.queue": "ORCID രജിസ്ട്രി ക്യൂ", + + "person.orcid.registry.auth": "ORCID അധികാരങ്ങൾ", + + "person.orcid-tooltip.authenticated": "{{orcid}}", + + "person.orcid-tooltip.not-authenticated": "{{orcid}} (സ്ഥിരീകരിക്കപ്പെട്ടിട്ടില്ല)", + + "home.recent-submissions.head": "ഏറ്റവും പുതിയ സമർപ്പണങ്ങൾ", + + "listable-notification-object.default-message": "ഈ ഒബ്ജക്റ്റ് വീണ്ടെടുക്കാൻ കഴിഞ്ഞില്ല", + + "system-wide-alert-banner.retrieval.error": "സിസ്റ്റം-വൈഡ് അലേർട്ട് ബാനർ വീണ്ടെടുക്കുന്നതിൽ എന്തോ തെറ്റ് സംഭവിച്ചു", + + "system-wide-alert-banner.countdown.prefix": "", + + "system-wide-alert-banner.countdown.days": "{{days}} ദിവസം(ങ്ങൾ),", + + "system-wide-alert-banner.countdown.hours": "{{hours}} മണിക്കൂർ(ങ്ങൾ),", + + "system-wide-alert-banner.countdown.minutes": "{{minutes}} മിനിറ്റ്(ങ്ങൾ):", + + "menu.section.system-wide-alert": "സിസ്റ്റം-വൈഡ് അലേർട്ട്", + + "system-wide-alert.form.header": "സിസ്റ്റം-വൈഡ് അലേർട്ട്", + + "system-wide-alert-form.retrieval.error": "സിസ്റ്റം-വൈഡ് അലേർട്ട് വീണ്ടെടുക്കുന്നതിൽ എന്തോ തെറ്റ് സംഭവിച്ചു", + + "system-wide-alert.form.cancel": "റദ്ദാക്കുക", + + "system-wide-alert.form.save": "സേവ് ചെയ്യുക", + + "system-wide-alert.form.label.active": "സജീവം", + + "system-wide-alert.form.label.inactive": "നിഷ്ക്രിയം", + + "system-wide-alert.form.error.message": "സിസ്റ്റം വൈഡ് അലേർട്ടിന് ഒരു സന്ദേശം ഉണ്ടായിരിക്കണം", + + "system-wide-alert.form.label.message": "അലേർട്ട് സന്ദേശം", + + "system-wide-alert.form.label.countdownTo.enable": "ഒരു കൗണ്ട്ഡൗൺ ടൈമർ പ്രവർത്തനക്ഷമമാക്കുക", + + "system-wide-alert.form.label.countdownTo.hint": "Hint: ഒരു കൗണ്ട്ഡൗൺ ടൈമർ സജ്ജമാക്കുക. പ്രവർത്തനക്ഷമമാക്കുമ്പോൾ, ഭാവിയിൽ ഒരു തീയതി സജ്ജമാക്കാം, സിസ്റ്റം-വൈഡ് അലേർട്ട് ബാനർ സജ്ജമാക്കിയ തീയതി വരെ ഒരു കൗണ്ട്ഡൗൺ നടത്തും. ഈ ടൈമർ അവസാനിക്കുമ്പോൾ, അത് അലേർട്ടിൽ നിന്ന് അപ്രത്യക്ഷമാകും. സെർവർ സ്വയമേവ നിർത്തപ്പെടുകയില്ല.", + + "system-wide-alert-form.select-date-by-calendar": "കലണ്ടർ ഉപയോഗിച്ച് തീയതി തിരഞ്ഞെടുക്കുക", + + "system-wide-alert.form.label.preview": "സിസ്റ്റം-വൈഡ് അലേർട്ട് പ്രിവ്യൂ", + + "system-wide-alert.form.update.success": "സിസ്റ്റം-വൈഡ് അലേർട്ട് വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു", + + "system-wide-alert.form.update.error": "സിസ്റ്റം-വൈഡ് അലേർട്ട് അപ്ഡേറ്റ് ചെയ്യുന്നതിനിടെ എന്തോ തെറ്റ് സംഭവിച്ചു", + + "system-wide-alert.form.create.success": "സിസ്റ്റം-വൈഡ് അലേർട്ട് വിജയകരമായി സൃഷ്ടിച്ചു", + + "system-wide-alert.form.create.error": "സിസ്റ്റം-വൈഡ് അലേർട്ട് സൃഷ്ടിക്കുന്നതിനിടെ എന്തോ തെറ്റ് സംഭവിച്ചു", + + "admin.system-wide-alert.breadcrumbs": "സിസ്റ്റം-വൈഡ് അലേർട്ടുകൾ", + + "admin.system-wide-alert.title": "സിസ്റ്റം-വൈഡ് അലേർട്ടുകൾ", + + "discover.filters.head": "ഡിസ്കവർ ചെയ്യുക", + + "item-access-control-title": "ഈ ഫോം ഐറ്റത്തിന്റെ മെറ്റാഡാറ്റയുടെയോ അതിന്റെ ബിറ്റ്സ്ട്രീമുകളുടെയോ ആക്സസ് വ്യവസ്ഥകളിൽ മാറ്റങ്ങൾ നടത്താൻ നിങ്ങളെ അനുവദിക്കുന്നു.", + + "collection-access-control-title": "ഈ കളക്ഷൻ സ്വന്തമാക്കിയ എല്ലാ ഐറ്റങ്ങളുടെയും ആക്സസ് വ്യവസ്ഥകളിൽ മാറ്റങ്ങൾ നടത്താൻ ഈ ഫോം നിങ്ങളെ അനുവദിക്കുന്നു. എല്ലാ ഐറ്റം മെറ്റാഡാറ്റയിലോ എല്ലാ ഉള്ളടക്കത്തിലോ (ബിറ്റ്സ്ട്രീമുകൾ) മാറ്റങ്ങൾ നടത്താം.", + + "community-access-control-title": "ഈ കമ്മ്യൂണിറ്റി കീഴിലുള്ള ഏതെങ്കിലും കളക്ഷൻ സ്വന്തമാക്കിയ എല്ലാ ഐറ്റങ്ങളുടെയും ആക്സസ് വ്യവസ്ഥകളിൽ മാറ്റങ്ങൾ നടത്താൻ ഈ ഫോം നിങ്ങളെ അനുവദിക്കുന്നു. എല്ലാ ഐറ്റം മെറ്റാഡാറ്റയിലോ എല്ലാ ഉള്ളടക്കത്തിലോ (ബിറ്റ്സ്ട്രീമുകൾ) മാറ്റങ്ങൾ നടത്താം.", + + "access-control-item-header-toggle": "ഐറ്റത്തിന്റെ മെറ്റാഡാറ്റ", + + "access-control-item-toggle.enable": "ഐറ്റത്തിന്റെ മെറ്റാഡാറ്റയിൽ മാറ്റങ്ങൾ നടത്താനുള്ള ഓപ്ഷൻ പ്രവർത്തനക്ഷമമാക്കുക", + + "access-control-item-toggle.disable": "ഐറ്റത്തിന്റെ മെറ്റാഡാറ്റയിൽ മാറ്റങ്ങൾ നടത്താനുള്ള ഓപ്ഷൻ പ്രവർത്തനരഹിതമാക്കുക", + + "access-control-bitstream-header-toggle": "ബിറ്റ്സ്ട്രീമുകൾ", + + "access-control-bitstream-toggle.enable": "ബിറ്റ്സ്ട്രീമുകളിൽ മാറ്റങ്ങൾ നടത്താനുള്ള ഓപ്ഷൻ പ്രവർത്തനക്ഷമമാക്കുക", + + "access-control-bitstream-toggle.disable": "ബിറ്റ്സ്ട്രീമുകളിൽ മാറ്റങ്ങൾ നടത്താനുള്ള ഓപ്ഷൻ പ്രവർത്തനരഹിതമാക്കുക", + + "access-control-mode": "മോഡ്", + + "access-control-access-conditions": "ആക്സസ് വ്യവസ്ഥകൾ", + + "access-control-no-access-conditions-warning-message": "നിലവിൽ, ചുവടെ ഒരു ആക്സസ് വ്യവസ്ഥയും വ്യക്തമാക്കിയിട്ടില്ല. ഇത് എക്സിക്യൂട്ട് ചെയ്താൽ, നിലവിലുള്ള ആക്സസ് വ്യവസ്ഥകൾ ഉടമസ്ഥ കളക്ഷനിൽ നിന്ന് പാരമ്പര്യമായി ലഭിച്ച ഡിഫോൾട്ട് ആക്സസ് വ്യവസ്ഥകൾ ഉപയോഗിച്ച് മാറ്റിസ്ഥാപിക്കും.", + + "access-control-replace-all": "ആക്സസ് വ്യവസ്ഥകൾ മാറ്റിസ്ഥാപിക്കുക", + + "access-control-add-to-existing": "നിലവിലുള്ളവയിലേക്ക് ചേർക്കുക", + + "access-control-limit-to-specific": "മാറ്റങ്ങൾ നിർദ്ദിഷ്ട ബിറ്റ്സ്ട്രീമുകളിലേക്ക് പരിമിതപ്പെടുത്തുക", + + "access-control-process-all-bitstreams": "ഐറ്റത്തിലെ എല്ലാ ബിറ്റ്സ്ട്രീമുകളും അപ്ഡേറ്റ് ചെയ്യുക", + + "access-control-bitstreams-selected": "ബിറ്റ്സ്ട്രീമുകൾ തിരഞ്ഞെടുത്തു", + + "access-control-bitstreams-select": "ബിറ്റ്സ്ട്രീമുകൾ തിരഞ്ഞെടുക്കുക", + + "access-control-cancel": "റദ്ദാക്കുക", + + "access-control-execute": "എക്സിക്യൂട്ട് ചെയ്യുക", + + "access-control-add-more": "കൂടുതൽ ചേർക്കുക", + + "access-control-remove": "ആക്സസ് വ്യവസ്ഥ നീക്കം ചെയ്യുക", + + "access-control-select-bitstreams-modal.title": "ബിറ്റ്സ്ട്രീമുകൾ തിരഞ്ഞെടുക്കുക", + + "access-control-select-bitstreams-modal.no-items": "കാണിക്കാൻ ഇനങ്ങളൊന്നുമില്ല.", + + "access-control-select-bitstreams-modal.close": "അടയ്ക്കുക", + + "access-control-option-label": "ആക്സസ് വ്യവസ്ഥ തരം", + + "access-control-option-note": "തിരഞ്ഞെടുത്ത ഒബ്ജക്റ്റുകളിൽ പ്രയോഗിക്കാൻ ഒരു ആക്സസ് വ്യവസ്ഥ തിരഞ്ഞെടുക്കുക.", + + "access-control-option-start-date": "ആക്സസ് നൽകുന്ന തീയതി", + + "access-control-option-start-date-note": "ബന്ധപ്പെട്ട ആക്സസ് വ്യവസ്ഥ പ്രയോഗിക്കുന്ന തീയതി തിരഞ്ഞെടുക്കുക", + + "access-control-option-end-date": "ആക്സസ് നൽകുന്നത് വരെയുള്ള തീയതി", + + "access-control-option-end-date-note": "ബന്ധപ്പെട്ട ആക്സസ് വ്യവസ്ഥ പ്രയോഗിക്കുന്നത് വരെയുള്ള തീയതി തിരഞ്ഞെടുക്കുക", + + "vocabulary-treeview.search.form.add": "ചേർക്കുക", + + "admin.notifications.publicationclaim.breadcrumbs": "പബ്ലിക്കേഷൻ ക്ലെയിം", + + "admin.notifications.publicationclaim.page.title": "പബ്ലിക്കേഷൻ ക്ലെയിം", + + "coar-notify-support.title": "COAR നോട്ടിഫൈ പ്രോട്ടോക്കോൾ", + + "coar-notify-support-title.content": "റെപ്പോസിറ്ററികൾ തമ്മിലുള്ള ആശയവിനിമയം മെച്ചപ്പെടുത്തുന്നതിനായി രൂപകൽപ്പന ചെയ്തിരിക്കുന്ന COAR നോട്ടിഫൈ പ്രോട്ടോക്കോൾ ഞങ്ങൾ പൂർണ്ണമായി പിന്തുണക്കുന്നു. COAR നോട്ടിഫൈ പ്രോട്ടോക്കോളിനെക്കുറിച്ച് കൂടുതൽ അറിയാൻ, COAR നോട്ടിഫൈ വെബ്സൈറ്റ് സന്ദർശിക്കുക.", + + "coar-notify-support.ldn-inbox.title": "LDN ഇൻബോക്സ്", + + "coar-notify-support.ldn-inbox.content": "നിങ്ങളുടെ സൗകര്യത്തിനായി, ഞങ്ങളുടെ LDN (Linked Data Notifications) ഇൻബോക്സ് {{ ldnInboxUrl }} എന്നതിൽ എളുപ്പത്തിൽ ആക്സസ് ചെയ്യാവുന്നതാണ്. LDN ഇൻബോക്സ് സുഗമമായ ആശയവിനിമയവും ഡാറ്റ എക്സ്ചേഞ്ചും സാധ്യമാക്കുന്നു, ഫലപ്രദവും കാര്യക്ഷമവുമായ സഹകരണം ഉറപ്പാക്കുന്നു.", + + "coar-notify-support.message-moderation.title": "സന്ദേശ മോഡറേഷൻ", + + "coar-notify-support.message-moderation.content": "ഒരു സുരക്ഷിതവും ഉൽപാദനക്ഷമവുമായ പരിസ്ഥിതി ഉറപ്പാക്കാൻ, എല്ലാ ഇൻകമിംഗ് LDN സന്ദേശങ്ങളും മോഡറേറ്റ് ചെയ്യപ്പെടുന്നു. നിങ്ങൾ ഞങ്ങളുമായി വിവരങ്ങൾ പങ്കിടാൻ ആഗ്രഹിക്കുന്നുവെങ്കിൽ, ദയവായി ഞങ്ങളുടെ സമർപ്പിച്ച", + + "coar-notify-support.message-moderation.feedback-form": " ഫീഡ്ബാക്ക് ഫോം വഴി ബന്ധപ്പെടുക.", + + "service.overview.delete.header": "സേവനം ഇല്ലാതാക്കുക", + + "ldn-registered-services.title": "രജിസ്റ്റർ ചെയ്ത സേവനങ്ങൾ", + "ldn-registered-services.table.name": "പേര്", + "ldn-registered-services.table.description": "വിവരണം", + "ldn-registered-services.table.status": "സ്ഥിതി", + "ldn-registered-services.table.action": "പ്രവർത്തനം", + "ldn-registered-services.new": "പുതിയത്", + "ldn-registered-services.new.breadcrumbs": "രജിസ്റ്റർ ചെയ്ത സേവനങ്ങൾ", + + "ldn-service.overview.table.enabled": "പ്രവർത്തനക്ഷമമാക്കി", + "ldn-service.overview.table.disabled": "പ്രവർത്തനരഹിതമാക്കി", + "ldn-service.overview.table.clickToEnable": "പ്രവർത്തനക്ഷമമാക്കാൻ ക്ലിക്ക് ചെയ്യുക", + "ldn-service.overview.table.clickToDisable": "പ്രവർത്തനരഹിതമാക്കാൻ ക്ലിക്ക് ചെയ്യുക", + + "ldn-edit-registered-service.title": "സേവനം എഡിറ്റ് ചെയ്യുക", + "ldn-create-service.title": "സേവനം സൃഷ്ടിക്കുക", + "service.overview.create.modal": "സേവനം സൃഷ്ടിക്കുക", + "service.overview.create.body": "ദയവായി ഈ സേവനത്തിന്റെ സൃഷ്ടി സ്ഥിരീകരിക്കുക.", + "ldn-service-status": "സ്ഥിതി", + "service.confirm.create": "സൃഷ്ടിക്കുക", + "service.refuse.create": "റദ്ദാക്കുക", + "ldn-register-new-service.title": "ഒരു പുതിയ സേവനം രജിസ്റ്റർ ചെയ്യുക", + "ldn-new-service.form.label.submit": "സേവ് ചെയ്യുക", + "ldn-new-service.form.label.name": "പേര്", + "ldn-new-service.form.label.description": "വിവരണം", + "ldn-new-service.form.label.url": "സേവന URL", + "ldn-new-service.form.label.ip-range": "സേവന IP റേഞ്ച്", + "ldn-new-service.form.label.score": "വിശ്വാസയോഗ്യതയുടെ നില", + "ldn-new-service.form.label.ldnUrl": "LDN ഇൻബോക്സ് URL", + "ldn-new-service.form.placeholder.name": "ദയവായി സേവനത്തിന്റെ പേര് നൽകുക", + "ldn-new-service.form.placeholder.description": "നിങ്ങളുടെ സേവനത്തെക്കുറിച്ച് ഒരു വിവരണം നൽകുക", + "ldn-new-service.form.placeholder.url": "സേവനത്തെക്കുറിച്ച് കൂടുതൽ വിവരങ്ങൾ പരിശോധിക്കാൻ ഉപയോക്താക്കൾക്കായി URL നൽകുക", + "ldn-new-service.form.placeholder.lowerIp": "IPv4 റേഞ്ച് ലോവർ ബൗണ്ട്", + "ldn-new-service.form.placeholder.upperIp": "IPv4 റേഞ്ച് അപ്പർ ബൗണ്ട്", + "ldn-new-service.form.placeholder.ldnUrl": "ദയവായി LDN ഇൻബോക്സിന്റെ URL വ്യക്തമാക്കുക", + "ldn-new-service.form.placeholder.score": "ദയവായി 0 മുതൽ 1 വരെയുള്ള ഒരു മൂല്യം നൽകുക. ഡെസിമൽ സെപ്പറേറ്ററായി \".\" ഉപയോഗിക്കുക", + "ldn-service.form.label.placeholder.default-select": "ഒരു പാറ്റേൺ തിരഞ്ഞെടുക്കുക", + + "ldn-service.form.pattern.ack-accept.label": "സ്വീകരിക്കുകയും അംഗീകരിക്കുകയും ചെയ്യുക", + "ldn-service.form.pattern.ack-accept.description": "ഒരു അഭ്യർത്ഥന (ഓഫർ) സ്വീകരിക്കുകയും അംഗീകരിക്കുകയും ചെയ്യാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു. ഇത് അഭ്യർത്ഥനയിൽ പ്രവർത്തിക്കാനുള്ള ഉദ്ദേശ്യം സൂചിപ്പിക്കുന്നു.", + "ldn-service.form.pattern.ack-accept.category": "സ്വീകാര്യതകൾ", + + "ldn-service.form.pattern.ack-reject.label": "സ്വീകരിക്കുകയും നിരസിക്കുകയും ചെയ്യുക", + "ldn-service.form.pattern.ack-reject.description": "ഒരു അഭ്യർത്ഥന (ഓഫർ) സ്വീകരിക്കുകയും നിരസിക്കുകയും ചെയ്യാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു. ഇത് അഭ്യർത്ഥനയിൽ കൂടുതൽ പ്രവർത്തനങ്ങൾ ഇല്ലെന്ന് സൂചിപ്പിക്കുന്നു.", + "ldn-service.form.pattern.ack-reject.category": "സ്വീകാര്യതകൾ", + + "ldn-service.form.pattern.ack-tentative-accept.label": "സ്വീകരിക്കുകയും താൽക്കാലികമായി അംഗീകരിക്കുകയും ചെയ്യുക", + "ldn-service.form.pattern.ack-tentative-accept.description": "ഒരു അഭ്യർത്ഥന (ഓഫർ) സ്വീകരിക്കുകയും താൽക്കാലികമായി അംഗീകരിക്കുകയും ചെയ്യാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു. ഇത് പ്രവർത്തിക്കാനുള്ള ഉദ്ദേശ്യം സൂചിപ്പിക്കുന്നു, ഇത് മാറിയേക്കാം.", + "ldn-service.form.pattern.ack-tentative-accept.category": "സ്വീകാര്യതകൾ", + + "ldn-service.form.pattern.ack-tentative-reject.label": "സ്വീകരിക്കുകയും താൽക്കാലികമായി നിരസിക്കുകയും ചെയ്യുക", + "ldn-service.form.pattern.ack-tentative-reject.description": "ഒരു അഭ്യർത്ഥന (ഓഫർ) സ്വീകരിക്കുകയും താൽക്കാലികമായി നിരസിക്കുകയും ചെയ്യാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു. ഇത് കൂടുതൽ പ്രവർത്തനങ്ങൾ ഇല്ലെന്ന് സൂചിപ്പിക്കുന്നു, ഇത് മാറിയേക്കാം.", + "ldn-service.form.pattern.ack-tentative-reject.category": "സ്വീകാര്യതകൾ", + + "ldn-service.form.pattern.announce-endorsement.label": "അംഗീകാരം പ്രഖ്യാപിക്കുക", + "ldn-service.form.pattern.announce-endorsement.description": "ഒരു അംഗീകാരത്തിന്റെ അസ്തിത്വം പ്രഖ്യാപിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു, അംഗീകരിച്ച റിസോഴ്സ് റഫർ ചെയ്യുന്നു.", + "ldn-service.form.pattern.announce-endorsement.category": "പ്രഖ്യാപനങ്ങൾ", + + "ldn-service.form.pattern.announce-ingest.label": "ഇംഗസ്റ്റ് പ്രഖ്യാപിക്കുക", + "ldn-service.form.pattern.announce-ingest.description": "ഒരു റിസോഴ്സ് ഇംഗസ്റ്റ് ചെയ്തിട്ടുണ്ടെന്ന് പ്രഖ്യാപിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", + "ldn-service.form.pattern.announce-ingest.category": "പ്രഖ്യാപനങ്ങൾ", + + "ldn-service.form.pattern.announce-relationship.label": "ബന്ധം പ്രഖ്യാപിക്കുക", + "ldn-service.form.pattern.announce-relationship.description": "രണ്ട് റിസോഴ്സുകൾ തമ്മിലുള്ള ഒരു ബന്ധം പ്രഖ്യാപിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", + "ldn-service.form.pattern.announce-relationship.category": "പ്രഖ്യാപനങ്ങൾ", + + "ldn-service.form.pattern.announce-review.label": "റിവ്യൂ പ്രഖ്യാപിക്കുക", + "ldn-service.form.pattern.announce-review.description": "ഒരു റിവ്യൂയുടെ അസ്തിത്വം പ്രഖ്യാപിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു, റിവ്യൂ ചെയ്ത റിസോഴ്സ് റഫർ ചെയ്യുന്നു.", + "ldn-service.form.pattern.announce-review.category": "പ്രഖ്യാപനങ്ങൾ", + + "ldn-service.form.pattern.announce-service-result.label": "സേവന ഫലം പ്രഖ്യാപിക്കുക", + "ldn-service.form.pattern.announce-service-result.description": "ഒരു 'സേവന ഫലം' ഉള്ളതായി പ്രഖ്യാപിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു, ബന്ധപ്പെട്ട റിസോഴ്സ് റഫർ ചെയ്യുന്നു.", + "ldn-service.form.pattern.announce-service-result.category": "പ്രഖ്യാപനങ്ങൾ", + + "ldn-service.form.pattern.request-endorsement.label": "അംഗീകാരം അഭ്യർത്ഥിക്കുക", + + "ldn-service.form.pattern.request-endorsement.description": "ഉത്ഭവ സിസ്റ്റത്തിന് സ്വന്തമായ ഒരു വിഭവത്തിന്റെ അംഗീകാരം അഭ്യർത്ഥിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", + "ldn-service.form.pattern.request-endorsement.category": "അഭ്യർത്ഥനകൾ", + + "ldn-service.form.pattern.request-ingest.label": "ഇംജസ്റ്റ് അഭ്യർത്ഥിക്കുക", + "ldn-service.form.pattern.request-ingest.description": "ടാർഗെറ്റ് സിസ്റ്റം ഒരു വിഭവം ഇംജസ്റ്റ് ചെയ്യാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", + "ldn-service.form.pattern.request-ingest.category": "അഭ്യർത്ഥനകൾ", + + "ldn-service.form.pattern.request-review.label": "അവലോകനം അഭ്യർത്ഥിക്കുക", + "ldn-service.form.pattern.request-review.description": "ഉത്ഭവ സിസ്റ്റത്തിന് സ്വന്തമായ ഒരു വിഭവത്തിന്റെ അവലോകനം അഭ്യർത്ഥിക്കാൻ ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", + "ldn-service.form.pattern.request-review.category": "അഭ്യർത്ഥനകൾ", + + "ldn-service.form.pattern.undo-offer.label": "ഓഫർ റദ്ദാക്കുക", + "ldn-service.form.pattern.undo-offer.description": "മുമ്പ് നൽകിയ ഒരു ഓഫർ റദ്ദാക്കാൻ (വാങ്ങാൻ) ഈ പാറ്റേൺ ഉപയോഗിക്കുന്നു.", + "ldn-service.form.pattern.undo-offer.category": "റദ്ദാക്കുക", + + "ldn-new-service.form.label.placeholder.selectedItemFilter": "ഇനം ഫിൽട്ടർ തിരഞ്ഞെടുത്തിട്ടില്ല", + "ldn-new-service.form.label.ItemFilter": "ഇനം ഫിൽട്ടർ", + "ldn-new-service.form.label.automatic": "യാന്ത്രികം", + "ldn-new-service.form.error.name": "പേര് ആവശ്യമാണ്", + "ldn-new-service.form.error.url": "URL ആവശ്യമാണ്", + "ldn-new-service.form.error.ipRange": "സാധുവായ IP ശ്രേണി നൽകുക", + "ldn-new-service.form.hint.ipRange": "സാധുവായ IpV4 രണ്ട് ശ്രേണി പരിധികളിലും നൽകുക (ശ്രദ്ധിക്കുക: ഒരൊറ്റ IP-യ്ക്ക്, രണ്ട് ഫീൽഡുകളിലും ഒരേ മൂല്യം നൽകുക)", + "ldn-new-service.form.error.ldnurl": "LDN URL ആവശ്യമാണ്", + "ldn-new-service.form.error.patterns": "കുറഞ്ഞത് ഒരു പാറ്റേൺ ആവശ്യമാണ്", + "ldn-new-service.form.error.score": "സാധുവായ സ്കോർ നൽകുക (0 മുതൽ 1 വരെ). ദശാംശ സെപ്പറേറ്ററായ “.” ഉപയോഗിക്കുക", + + "ldn-new-service.form.label.inboundPattern": "പിന്തുണയ്ക്കുന്ന പാറ്റേൺ", + "ldn-new-service.form.label.addPattern": "+ കൂടുതൽ ചേർക്കുക", + "ldn-new-service.form.label.removeItemFilter": "നീക്കം ചെയ്യുക", + "ldn-register-new-service.breadcrumbs": "പുതിയ സേവനം", + "service.overview.delete.body": "ഈ സേവനം ഇല്ലാതാക്കാൻ ആഗ്രഹിക്കുന്നുണ്ടോ?", + "service.overview.edit.body": "മാറ്റങ്ങൾ സ്ഥിരീകരിക്കുന്നുണ്ടോ?", + "service.overview.edit.modal": "സേവനം എഡിറ്റ് ചെയ്യുക", + "service.detail.update": "സ്ഥിരീകരിക്കുക", + "service.detail.return": "റദ്ദാക്കുക", + "service.overview.reset-form.body": "മാറ്റങ്ങൾ ഉപേക്ഷിച്ച് പുറത്തുകടക്കാൻ ആഗ്രഹിക്കുന്നുണ്ടോ?", + "service.overview.reset-form.modal": "മാറ്റങ്ങൾ ഉപേക്ഷിക്കുക", + "service.overview.reset-form.reset-confirm": "ഉപേക്ഷിക്കുക", + "admin.registries.services-formats.modify.success.head": "വിജയകരമായ എഡിറ്റ്", + "admin.registries.services-formats.modify.success.content": "സേവനം എഡിറ്റ് ചെയ്തു", + "admin.registries.services-formats.modify.failure.head": "എഡിറ്റ് പരാജയപ്പെട്ടു", + "admin.registries.services-formats.modify.failure.content": "സേവനം എഡിറ്റ് ചെയ്യപ്പെട്ടില്ല", + "ldn-service-notification.created.success.title": "വിജയകരമായ സൃഷ്ടി", + "ldn-service-notification.created.success.body": "സേവനം സൃഷ്ടിച്ചു", + "ldn-service-notification.created.failure.title": "സൃഷ്ടി പരാജയപ്പെട്ടു", + "ldn-service-notification.created.failure.body": "സേവനം സൃഷ്ടിച്ചിട്ടില്ല", + "ldn-service-notification.created.warning.title": "കുറഞ്ഞത് ഒരു ഇൻബൗണ്ട് പാറ്റേൺ തിരഞ്ഞെടുക്കുക", + "ldn-enable-service.notification.success.title": "വിജയകരമായ സ്റ്റാറ്റസ് അപ്ഡേറ്റ്", + "ldn-enable-service.notification.success.content": "സേവന സ്റ്റാറ്റസ് അപ്ഡേറ്റ് ചെയ്തു", + "ldn-service-delete.notification.success.title": "വിജയകരമായ ഇല്ലായ്മ", + "ldn-service-delete.notification.success.content": "സേവനം ഇല്ലാതാക്കി", + "ldn-service-delete.notification.error.title": "ഇല്ലായ്മ പരാജയപ്പെട്ടു", + "ldn-service-delete.notification.error.content": "സേവനം ഇല്ലാതാക്കിയിട്ടില്ല", + "service.overview.reset-form.reset-return": "റദ്ദാക്കുക", + "service.overview.delete": "സേവനം ഇല്ലാതാക്കുക", + "ldn-edit-service.title": "സേവനം എഡിറ്റ് ചെയ്യുക", + "ldn-edit-service.form.label.name": "പേര്", + "ldn-edit-service.form.label.description": "വിവരണം", + "ldn-edit-service.form.label.url": "സേവന URL", + "ldn-edit-service.form.label.ldnUrl": "LDN ഇൻബോക്സ് URL", + "ldn-edit-service.form.label.inboundPattern": "ഇൻബൗണ്ട് പാറ്റേൺ", + "ldn-edit-service.form.label.noInboundPatternSelected": "ഇൻബൗണ്ട് പാറ്റേൺ ഇല്ല", + "ldn-edit-service.form.label.selectedItemFilter": "തിരഞ്ഞെടുത്ത ഇനം ഫിൽട്ടർ", + "ldn-edit-service.form.label.selectItemFilter": "ഇനം ഫിൽട്ടർ ഇല്ല", + "ldn-edit-service.form.label.automatic": "യാന്ത്രികം", + "ldn-edit-service.form.label.addInboundPattern": "+ കൂടുതൽ ചേർക്കുക", + "ldn-edit-service.form.label.submit": "സേവ് ചെയ്യുക", + "ldn-edit-service.breadcrumbs": "സേവനം എഡിറ്റ് ചെയ്യുക", + "ldn-service.control-constaint-select-none": "ഒന്നും തിരഞ്ഞെടുക്കരുത്", + + "ldn-register-new-service.notification.error.title": "പിശക്", + "ldn-register-new-service.notification.error.content": "ഈ പ്രക്രിയ സൃഷ്ടിക്കുന്നതിനിടെ ഒരു പിശക് സംഭവിച്ചു", + "ldn-register-new-service.notification.success.title": "വിജയം", + "ldn-register-new-service.notification.success.content": "പ്രക്രിയ വിജയകരമായി സൃഷ്ടിച്ചു", + + "submission.sections.notify.info": "തിരഞ്ഞെടുത്ത സേവനം ഇനത്തിന്റെ നിലവിലെ സ്റ്റാറ്റസ് അനുസരിച്ച് അനുയോജ്യമാണ്. {{ service.name }}: {{ service.description }}", + + "item.page.endorsement": "അംഗീകാരം", + + "item.page.places": "ബന്ധപ്പെട്ട സ്ഥലങ്ങൾ", + + "item.page.review": "അവലോകനം", + + "item.page.referenced": "റഫറൻസ് ചെയ്തത്", + + "item.page.supplemented": "സപ്ലിമെന്റ് ചെയ്തത്", + + "menu.section.icon.ldn_services": "LDN സേവനങ്ങളുടെ അവലോകനം", + + "menu.section.services": "LDN സേവനങ്ങൾ", + + "menu.section.services_new": "LDN സേവനം", + + "quality-assurance.topics.description-with-target": "താഴെ നിങ്ങൾക്ക് {{source}} എന്നതിലേക്കുള്ള സബ്സ്ക്രിപ്ഷനുകളിൽ നിന്ന് ലഭിച്ച എല്ലാ വിഷയങ്ങളും കാണാൻ കഴിയും", + "quality-assurance.events.description": "തിരഞ്ഞെടുത്ത വിഷയം {{topic}}, {{source}} എന്നിവയുമായി ബന്ധപ്പെട്ട എല്ലാ നിർദ്ദേശങ്ങളുടെയും ലിസ്റ്റ് താഴെ.", + + "quality-assurance.events.description-with-topic-and-target": "തിരഞ്ഞെടുത്ത വിഷയം {{topic}}, {{source}} എന്നിവയുമായി ബന്ധപ്പെട്ട എല്ലാ നിർദ്ദേശങ്ങളുടെയും ലിസ്റ്റ് താഴെ.", + + "quality-assurance.event.table.event.message.serviceUrl": "ആക്ടർ:", + + "quality-assurance.event.table.event.message.link": "ലിങ്ക്:", + + "service.detail.delete.cancel": "റദ്ദാക്കുക", + + "service.detail.delete.button": "സേവനം ഇല്ലാതാക്കുക", + + "service.detail.delete.header": "സേവനം ഇല്ലാതാക്കുക", + + "service.detail.delete.body": "നിലവിലുള്ള സേവനം ഇല്ലാതാക്കാൻ ആഗ്രഹിക്കുന്നുണ്ടോ?", + + "service.detail.delete.confirm": "സേവനം ഇല്ലാതാക്കുക", + + "service.detail.delete.success": "സേവനം വിജയകരമായി ഇല്ലാതാക്കി.", + + "service.detail.delete.error": "സേവനം ഇല്ലാതാക്കുന്നതിനിടെ എന്തോ പിശക് സംഭവിച്ചു", + + "service.overview.table.id": "സേവനങ്ങളുടെ ID", + + "service.overview.table.name": "പേര്", + + "service.overview.table.start": "ആരംഭ സമയം (UTC)", + + "service.overview.table.status": "സ്റ്റാറ്റസ്", + + "service.overview.table.user": "ഉപയോക്താവ്", + + "service.overview.title": "സേവനങ്ങളുടെ അവലോകനം", + + "service.overview.breadcrumbs": "സേവനങ്ങളുടെ അവലോകനം", + + "service.overview.table.actions": "പ്രവർത്തനങ്ങൾ", + + "service.overview.table.description": "വിവരണം", + + "submission.sections.submit.progressbar.coarnotify": "COAR അറിയിക്കുക", + + "submission.section.section-coar-notify.control.request-review.label": "ഇനിപ്പറയുന്ന സേവനങ്ങളിൽ ഒന്നിലേക്ക് ഒരു അവലോകനം അഭ്യർത്ഥിക്കാം", + + "submission.section.section-coar-notify.control.request-endorsement.label": "ഇനിപ്പറയുന്ന ഓവർലേ ജേണലുകളിൽ ഒന്നിലേക്ക് ഒരു അംഗീകാരം അഭ്യർത്ഥിക്കാം", + + "submission.section.section-coar-notify.control.request-ingest.label": "നിങ്ങളുടെ സബ്മിഷന്റെ ഒരു കോപ്പി ഇനിപ്പറയുന്ന സേവനങ്ങളിൽ ഒന്നിലേക്ക് ഇംജസ്റ്റ് ചെയ്യാൻ അഭ്യർത്ഥിക്കാം", + + "submission.section.section-coar-notify.dropdown.no-data": "ഡാറ്റ ലഭ്യമല്ല", + + "submission.section.section-coar-notify.dropdown.select-none": "ഒന്നും തിരഞ്ഞെടുക്കരുത്", + + "submission.section.section-coar-notify.small.notification": "ഈ ഇനത്തിന്റെ {{ pattern }} എന്നതിനായി ഒരു സേവനം തിരഞ്ഞെടുക്കുക", + + "submission.section.section-coar-notify.selection.description": "തിരഞ്ഞെടുത്ത സേവനത്തിന്റെ വിവരണം:", + + "submission.section.section-coar-notify.selection.no-description": "കൂടുതൽ വിവരങ്ങൾ ലഭ്യമല്ല", + + "submission.section.section-coar-notify.notification.error": "തിരഞ്ഞെടുത്ത സേവനം നിലവിലെ ഇനത്തിന് അനുയോജ്യമല്ല. ഈ സേവനം ഏത് റെക്കോർഡുകളാണ് നിയന്ത്രിക്കുന്നത് എന്നതിനെക്കുറിച്ചുള്ള വിവരങ്ങൾക്കായി വിവരണം പരിശോധിക്കുക.", + + "submission.section.section-coar-notify.info.no-pattern": "ക്രമീകരിക്കാവുന്ന പാറ്റേണുകൾ കണ്ടെത്തിയില്ല.", + + "error.validation.coarnotify.invalidfilter": "അസാധുവായ ഫിൽട്ടർ, മറ്റൊരു സേവനം അല്ലെങ്കിൽ ഒന്നും തിരഞ്ഞെടുക്കാതെ പരീക്ഷിക്കുക.", + + "request-status-alert-box.accepted": " {{ serviceName }} എന്നതിനായി അഭ്യർത്ഥിച്ച {{ offerType }} ഏറ്റെടുത്തു.", + + "request-status-alert-box.rejected": " {{ serviceName }} എന്നതിനായി അഭ്യർത്ഥിച്ച {{ offerType }} നിരസിച്ചു.", + + "request-status-alert-box.tentative_rejected": " {{ serviceName }} എന്നതിനായി അഭ്യർത്ഥിച്ച {{ offerType }} താൽക്കാലികമായി നിരസിച്ചു. പുനരവലോകനം ആവശ്യമാണ്", + + "request-status-alert-box.requested": " {{ serviceName }} എന്നതിനായി അഭ്യർത്ഥിച്ച {{ offerType }} തീർച്ചപ്പെടുത്താത്തതാണ്.", + + "ldn-service-button-mark-inbound-deletion": "ഇല്ലാതാക്കാൻ പിന്തുണയ്ക്കുന്ന പാറ്റേൺ മാർക്ക് ചെയ്യുക", + + "ldn-service-button-unmark-inbound-deletion": "ഇല്ലാതാക്കാൻ പിന്തുണയ്ക്കുന്ന പാറ്റേൺ അൺമാർക്ക് ചെയ്യുക", + + "ldn-service-input-inbound-item-filter-dropdown": "പാറ്റേണിനായി ഇനം ഫിൽട്ടർ തിരഞ്ഞെടുക്കുക", + + "ldn-service-input-inbound-pattern-dropdown": "സേവനത്തിനായി ഒരു പാറ്റേൺ തിരഞ്ഞെടുക്കുക", + + "ldn-service-overview-select-delete": "ഇല്ലാതാക്കാൻ സേവനം തിരഞ്ഞെടുക്കുക", + + "ldn-service-overview-select-edit": "LDN സേവനം എഡിറ്റ് ചെയ്യുക", + + "ldn-service-overview-close-modal": "മോഡൽ അടയ്ക്കുക", + + "ldn-service-usesActorEmailId": "അറിയിപ്പുകളിൽ ആക്ടർ ഇമെയിൽ ഐഡി ആവശ്യമാണ്", + + "ldn-service-usesActorEmailId-description": "പ്രവർത്തനക്ഷമമാക്കിയാൽ, അയച്ച പ്രാരംഭ അറിയിപ്പുകളിൽ സബ്മിറ്റർ ഇമെയിൽ റിപോസിറ്ററി URL-യ്ക്ക് പകരം ഉൾപ്പെടുത്തും. ഇത് സാധാരണയായി അംഗീകാരം അല്ലെങ്കിൽ അവലോകന സേവനങ്ങളുടെ കാര്യത്തിലാണ്.", + + "a-common-or_statement.label": "ഇനം തരം ജേണൽ ആർട്ടിക്കിൾ അല്ലെങ്കിൽ ഡാറ്റാസെറ്റ് ആണ്", + + "always_true_filter.label": "എല്ലായ്പ്പോഴും ശരി", + + "automatic_processing_collection_filter_16.label": "യാന്ത്രിക പ്രോസസ്സിംഗ്", + + "dc-identifier-uri-contains-doi_condition.label": "URI-യിൽ DOI അടങ്ങിയിരിക്കുന്നു", + + "doi-filter.label": "DOI ഫിൽട്ടർ", + + "driver-document-type_condition.label": "ഡോക്യുമെന്റ് തരം ഡ്രൈവറിന് തുല്യമാണ്", + + "has-at-least-one-bitstream_condition.label": "കുറഞ്ഞത് ഒരു ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "has-bitstream_filter.label": "ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "has-one-bitstream_condition.label": "ഒരു ബിറ്റ്സ്ട്രീം ഉണ്ട്", + + "is-archived_condition.label": "ആർക്കൈവ് ചെയ്തിട്ടുണ്ട്", + + "is-withdrawn_condition.label": "വിട്ടുകളഞ്ഞിട്ടുണ്ട്", + + "item-is-public_condition.label": "ഇനം പബ്ലിക് ആണ്", + + "journals_ingest_suggestion_collection_filter_18.label": "ജേണലുകൾ ഇംജസ്റ്റ്", + + "title-starts-with-pattern_condition.label": "ശീർഷകം പാറ്റേൺ ഉപയോഗിച്ച് ആരംഭിക്കുന്നു", + + "type-equals-dataset_condition.label": "തരം ഡാറ്റാസെറ്റിന് തുല്യമാണ്", + + "type-equals-journal-article_condition.label": "തരം ജേണൽ ആർട്ടിക്കിന് തുല്യമാണ്", + + "ldn.no-filter.label": "ഒന്നുമില്ല", + + "admin.notify.dashboard": "ഡാഷ്ബോർഡ്", + + "menu.section.notify_dashboard": "ഡാഷ്ബോർഡ്", + + "menu.section.coar_notify": "COAR അറിയിക്കുക", + + "admin-notify-dashboard.title": "അറിയിക്കുക ഡാഷ്ബോർഡ്", + + "admin-notify-dashboard.description": "റിപോസിറ്ററിയിലുടനീളം COAR അറിയിക്കുക പ്രോട്ടോക്കോളിന്റെ പൊതുവായ ഉപയോഗം നിരീക്ഷിക്കുന്നത് അറിയിക്കുക ഡാഷ്ബോർഡ്. “മെട്രിക്സ്” ടാബിൽ COAR അറിയിക്കുക പ്രോട്ടോക്കോളിന്റെ ഉപയോഗത്തെക്കുറിച്ചുള്ള സ്ഥിതിവിവരക്കണക്കുകൾ ഉണ്ട്. “ലോഗുകൾ/ഇൻബൗണ്ട്”, “ലോഗുകൾ/ഔട്ട്ബൗണ്ട്” ടാബുകളിൽ ലഭിച്ചതോ അയച്ചതോ ആയ ഓരോ LDN സന്ദേശത്തിന്റെയും വ്യക്തിഗത സ്റ്റാറ്റസ് തിരയാനും പരിശോധിക്കാനും കഴിയും.", + + "admin-notify-dashboard.metrics": "മെട്രിക്സ്", + + "admin-notify-dashboard.received-ldn": "ലഭിച്ച LDN-കളുടെ എണ്ണം", + + "admin-notify-dashboard.generated-ldn": "സൃഷ്ടിച്ച LDN-കളുടെ എണ്ണം", + + "admin-notify-dashboard.NOTIFY.incoming.accepted": "സ്വീകരിച്ചു", + + "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "സ്വീകരിച്ച ഇൻബൗണ്ട് അറിയിപ്പുകൾ", + + "admin-notify-logs.NOTIFY.incoming.accepted": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: സ്വീകരിച്ച അറിയിപ്പുകൾ", + + "admin-notify-dashboard.NOTIFY.incoming.processed": "പ്രോസസ്സ് ചെയ്ത LDN", + + "admin-notify-dashboard.NOTIFY.incoming.processed.description": "പ്രോസസ്സ് ചെയ്ത ഇൻബൗണ്ട് അറിയിപ്പുകൾ", + + "admin-notify-logs.NOTIFY.incoming.processed": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: പ്രോസസ്സ് ചെയ്ത LDN", + + "admin-notify-logs.NOTIFY.incoming.failure": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: പരാജയപ്പെട്ട അറിയിപ്പുകൾ", + + "admin-notify-dashboard.NOTIFY.incoming.failure": "പരാജയം", + + "admin-notify-dashboard.NOTIFY.incoming.failure.description": "പരാജയപ്പെട്ട ഇൻബൗണ്ട് അറിയിപ്പുകൾ", + + "admin-notify-logs.NOTIFY.outgoing.failure": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: പരാജയപ്പെട്ട അറിയിപ്പുകൾ", + + "admin-notify-dashboard.NOTIFY.outgoing.failure": "പരാജയം", + + "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "പരാജയപ്പെട്ട ഔട്ട്ബൗണ്ട് അറിയിപ്പുകൾ", + + "admin-notify-logs.NOTIFY.incoming.untrusted": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: വിശ്വസനീയമല്ലാത്ത അറിയിപ്പുകൾ", + + "admin-notify-dashboard.NOTIFY.incoming.untrusted": "വിശ്വസനീയമല്ല", + + "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "ഇൻബൗണ്ട് അറിയിപ്പുകൾ വിശ്വസനീയമല്ല", + + "admin-notify-logs.NOTIFY.incoming.delivered": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: ഡെലിവർ ചെയ്ത അറിയിപ്പുകൾ", + + "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "ഇൻബൗണ്ട് അറിയിപ്പുകൾ വിജയകരമായി ഡെലിവർ ചെയ്തു", + + "admin-notify-dashboard.NOTIFY.outgoing.delivered": "ഡെലിവർ ചെയ്തു", + + "admin-notify-logs.NOTIFY.outgoing.delivered": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: ഡെലിവർ ചെയ്ത അറിയിപ്പുകൾ", + + "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "ഔട്ട്ബൗണ്ട് അറിയിപ്പുകൾ വിജയകരമായി ഡെലിവർ ചെയ്തു", + + "admin-notify-logs.NOTIFY.outgoing.queued": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: ക്യൂ ചെയ്ത അറിയിപ്പുകൾ", + + "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "നിലവിൽ ക്യൂ ചെയ്തിരിക്കുന്ന അറിയിപ്പുകൾ", + + "admin-notify-dashboard.NOTIFY.outgoing.queued": "ക്യൂ ചെയ്തു", + + "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "നിലവിൽ പ്രദർശിപ്പിക്കുന്നു: വീണ്ടും ശ്രമിക്കാൻ ക്യൂ ചെയ്ത അറിയിപ്പുകൾ", + + "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "വീണ്ടും ശ്രമിക്കാൻ ക്യൂ ചെയ്തു", + + "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "നിലവിൽ വീണ്ടും ശ്രമിക്കാൻ ക്യൂ ചെയ്തിരിക്കുന്ന അറിയിപ്പുകൾ", + + "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "ഇനങ്ങൾ ഉൾപ്പെടുന്നു", + + "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "ഇൻബൗണ്ട് അറിയിപ്പുകളുമായി ബന്ധപ്പെട്ട ഇനങ്ങൾ", + + "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "ഇനങ്ങൾ ഉൾപ്പെടുന്നു", + + "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "ഔട്ട്ബൗണ്ട് അറിയിപ്പുകളുമായി ബന്ധപ്പെട്ട ഇനങ്ങൾ", + + "admin.notify.dashboard.breadcrumbs": "ഡാഷ്ബോർഡ്", + + "admin.notify.dashboard.inbound": "ഇൻബൗണ്ട് സന്ദേശങ്ങൾ", + + "admin.notify.dashboard.inbound-logs": "ലോഗുകൾ/ഇൻബൗണ്ട്", + + "admin.notify.dashboard.filter": "ഫിൽട്ടർ: ", + + "search.filters.applied.f.relateditem": "ബന്ധപ്പെട്ട ഇനങ്ങൾ", + + "search.filters.applied.f.ldn_service": "LDN സേവനം", + + "search.filters.applied.f.notifyReview": "അറിയിക്കുക അവലോകനം", + + "search.filters.applied.f.notifyEndorsement": "അറിയിക്കുക അംഗീകാരം", + + "search.filters.applied.f.notifyRelation": "അറിയിക്കുക ബന്ധം", + + "search.filters.applied.f.access_status": "ആക്സസ് തരം", + + "search.filters.filter.queue_last_start_time.head": "അവസാന പ്രോസസ്സിംഗ് സമയം ", + + "search.filters.filter.queue_last_start_time.min.label": "കുറഞ്ഞ പരിധി", + + "search.filters.filter.queue_last_start_time.max.label": "കൂടിയ പരിധി", + + "search.filters.applied.f.queue_last_start_time.min": "കുറഞ്ഞ പരിധി", + + "search.filters.applied.f.queue_last_start_time.max": "കൂടിയ പരിധി", + + "admin.notify.dashboard.outbound": "ഔട്ട്ബൗണ്ട് സന്ദേശങ്ങൾ", + + "admin.notify.dashboard.outbound-logs": "ലോഗുകൾ/ഔട്ട്ബൗണ്ട്", + + "NOTIFY.incoming.search.results.head": "ഇൻകമിംഗ്", + + "search.filters.filter.relateditem.head": "ബന്ധപ്പെട്ട ഇനം", + + "search.filters.filter.origin.head": "ഉത്ഭവം", + + "search.filters.filter.ldn_service.head": "LDN സേവനം", + + "search.filters.filter.target.head": "ടാർഗെറ്റ്", + + "search.filters.filter.queue_status.head": "ക്യൂ സ്റ്റാറ്റസ്", + + "search.filters.filter.activity_stream_type.head": "ആക്ടിവിറ്റി സ്ട്രീം തരം", + + "search.filters.filter.coar_notify_type.head": "COAR അറിയിക്കുക തരം", + + "search.filters.filter.notification_type.head": "അറിയിപ്പ് തരം", + + "search.filters.filter.relateditem.label": "ബന്ധപ്പെട്ട ഇനങ്ങൾ തിരയുക", + "search.filters.filter.queue_status.label": "ക്യൂ സ്റ്റാറ്റസ് തിരയുക", + "search.filters.filter.target.label": "ടാർഗെറ്റ് തിരയുക", + "search.filters.filter.activity_stream_type.label": "ആക്ടിവിറ്റി സ്ട്രീം തരം തിരയുക", + "search.filters.applied.f.queue_status": "ക്യൂ സ്റ്റാറ്റസ്", + "search.filters.queue_status.0,authority": "വിശ്വസനീയമല്ലാത്ത ഐപി", + "search.filters.queue_status.1,authority": "ക്യൂ ചെയ്തു", + "search.filters.queue_status.2,authority": "പ്രോസസ്സിംഗ്", + "search.filters.queue_status.3,authority": "പ്രോസസ്സ് ചെയ്തു", + "search.filters.queue_status.4,authority": "പരാജയപ്പെട്ടു", + "search.filters.queue_status.5,authority": "വിശ്വസനീയമല്ല", + "search.filters.queue_status.6,authority": "മാപ്പ് ചെയ്യാത്ത പ്രവർത്തനം", + "search.filters.queue_status.7,authority": "റീട്രൈയ്ക്കായി ക്യൂ ചെയ്തു", + "search.filters.applied.f.activity_stream_type": "ആക്ടിവിറ്റി സ്ട്രീം തരം", + "search.filters.applied.f.coar_notify_type": "COAR അറിയിപ്പ് തരം", + "search.filters.applied.f.notification_type": "അറിയിപ്പ് തരം", + "search.filters.filter.coar_notify_type.label": "COAR അറിയിപ്പ് തരം തിരയുക", + "search.filters.filter.notification_type.label": "അറിയിപ്പ് തരം തിരയുക", + "search.filters.filter.relateditem.placeholder": "ബന്ധപ്പെട്ട ഇനങ്ങൾ", + "search.filters.filter.target.placeholder": "ടാർഗെറ്റ്", + "search.filters.filter.origin.label": "ഉറവിടം തിരയുക", + "search.filters.filter.origin.placeholder": "ഉറവിടം", + "search.filters.filter.ldn_service.label": "LDN സേവനം തിരയുക", + "search.filters.filter.ldn_service.placeholder": "LDN സേവനം", + "search.filters.filter.queue_status.placeholder": "ക്യൂ സ്റ്റാറ്റസ്", + "search.filters.filter.activity_stream_type.placeholder": "ആക്ടിവിറ്റി സ്ട്രീം തരം", + "search.filters.filter.coar_notify_type.placeholder": "COAR അറിയിപ്പ് തരം", + "search.filters.filter.notification_type.placeholder": "അറിയിപ്പ്", + "search.filters.filter.notifyRelation.head": "അറിയിപ്പ് ബന്ധം", + "search.filters.filter.notifyRelation.label": "അറിയിപ്പ് ബന്ധം തിരയുക", + "search.filters.filter.notifyRelation.placeholder": "അറിയിപ്പ് ബന്ധം", + "search.filters.filter.notifyReview.head": "അറിയിപ്പ് അവലോകനം", + "search.filters.filter.notifyReview.label": "അറിയിപ്പ് അവലോകനം തിരയുക", + "search.filters.filter.notifyReview.placeholder": "അറിയിപ്പ് അവലോകനം", + "search.filters.coar_notify_type.coar-notify:ReviewAction": "അവലോകന പ്രവർത്തനം", + "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "അവലോകന പ്രവർത്തനം", + "notify-detail-modal.coar-notify:ReviewAction": "അവലോകന പ്രവർത്തനം", + "search.filters.coar_notify_type.coar-notify:EndorsementAction": "അംഗീകാര പ്രവർത്തനം", + "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "അംഗീകാര പ്രവർത്തനം", + "notify-detail-modal.coar-notify:EndorsementAction": "അംഗീകാര പ്രവർത്തനം", + "search.filters.coar_notify_type.coar-notify:IngestAction": "ഇംഗസ്റ്റ് പ്രവർത്തനം", + "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ഇംഗസ്റ്റ് പ്രവർത്തനം", + "notify-detail-modal.coar-notify:IngestAction": "ഇംഗസ്റ്റ് പ്രവർത്തനം", + "search.filters.coar_notify_type.coar-notify:RelationshipAction": "ബന്ധം പ്രവർത്തനം", + "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "ബന്ധം പ്രവർത്തനം", + "notify-detail-modal.coar-notify:RelationshipAction": "ബന്ധം പ്രവർത്തനം", + "search.filters.queue_status.QUEUE_STATUS_QUEUED": "ക്യൂ ചെയ്തു", + "notify-detail-modal.QUEUE_STATUS_QUEUED": "ക്യൂ ചെയ്തു", + "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "റീട്രൈയ്ക്കായി ക്യൂ ചെയ്തു", + "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "റീട്രൈയ്ക്കായി ക്യൂ ചെയ്തു", + "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "പ്രോസസ്സിംഗ്", + "notify-detail-modal.QUEUE_STATUS_PROCESSING": "പ്രോസസ്സിംഗ്", + "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "പ്രോസസ്സ് ചെയ്തു", + "notify-detail-modal.QUEUE_STATUS_PROCESSED": "പ്രോസസ്സ് ചെയ്തു", + "search.filters.queue_status.QUEUE_STATUS_FAILED": "പരാജയപ്പെട്ടു", + "notify-detail-modal.QUEUE_STATUS_FAILED": "പരാജയപ്പെട്ടു", + "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "വിശ്വസനീയമല്ല", + "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "വിശ്വസനീയമല്ലാത്ത ഐപി", + "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "വിശ്വസനീയമല്ല", + "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "വിശ്വസനീയമല്ലാത്ത ഐപി", + "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "മാപ്പ് ചെയ്യാത്ത പ്രവർത്തനം", + "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "മാപ്പ് ചെയ്യാത്ത പ്രവർത്തനം", + "sorting.queue_last_start_time.DESC": "ക്യൂ അവസാനം ആരംഭിച്ചത് ഇറക്കം", + "sorting.queue_last_start_time.ASC": "ക്യൂ അവസാനം ആരംഭിച്ചത് ഉയർത്തം", + "sorting.queue_attempts.DESC": "ക്യൂ ശ്രമിച്ചത് ഇറക്കം", + "sorting.queue_attempts.ASC": "ക്യൂ ശ്രമിച്ചത് ഉയർത്തം", + "NOTIFY.incoming.involvedItems.search.results.head": "ഇൻകമിംഗ് LDN-ൽ ഉൾപ്പെട്ട ഇനങ്ങൾ", + "NOTIFY.outgoing.involvedItems.search.results.head": "ഔട്ട്ഗോയിംഗ് LDN-ൽ ഉൾപ്പെട്ട ഇനങ്ങൾ", + "type.notify-detail-modal": "തരം", + "id.notify-detail-modal": "ഐഡി", + "coarNotifyType.notify-detail-modal": "COAR അറിയിപ്പ് തരം", + "activityStreamType.notify-detail-modal": "ആക്ടിവിറ്റി സ്ട്രീം തരം", + "inReplyTo.notify-detail-modal": "ഉത്തരമായി", + "object.notify-detail-modal": "റിപ്പോസിറ്ററി ഇനം", + "context.notify-detail-modal": "റിപ്പോസിറ്ററി ഇനം", + "queueAttempts.notify-detail-modal": "ക്യൂ ശ്രമങ്ങൾ", + "queueLastStartTime.notify-detail-modal": "ക്യൂ അവസാനം ആരംഭിച്ച സമയം", + "origin.notify-detail-modal": "LDN സേവനം", + "target.notify-detail-modal": "LDN സേവനം", + "queueStatusLabel.notify-detail-modal": "ക്യൂ സ്റ്റാറ്റസ്", + "queueTimeout.notify-detail-modal": "ക്യൂ ടൈംഔട്ട്", + "notify-message-modal.title": "സന്ദേശ വിവരങ്ങൾ", + "notify-message-modal.show-message": "സന്ദേശം കാണിക്കുക", + "notify-message-result.timestamp": "ടൈംസ്റ്റാമ്പ്", + "notify-message-result.repositoryItem": "റിപ്പോസിറ്ററി ഇനം", + "notify-message-result.ldnService": "LDN സേവനം", + "notify-message-result.type": "തരം", + "notify-message-result.status": "സ്റ്റാറ്റസ്", + "notify-message-result.action": "പ്രവർത്തനം", + "notify-message-result.detail": "വിവരങ്ങൾ", + "notify-message-result.reprocess": "റീപ്രോസസ്സ്", + "notify-queue-status.processed": "പ്രോസസ്സ് ചെയ്തു", + "notify-queue-status.failed": "പരാജയപ്പെട്ടു", + "notify-queue-status.queue_retry": "റീട്രൈയ്ക്കായി ക്യൂ ചെയ്തു", + "notify-queue-status.unmapped_action": "മാപ്പ് ചെയ്യാത്ത പ്രവർത്തനം", + "notify-queue-status.processing": "പ്രോസസ്സിംഗ്", + "notify-queue-status.queued": "ക്യൂ ചെയ്തു", + "notify-queue-status.untrusted": "വിശ്വസനീയമല്ല", + "ldnService.notify-detail-modal": "LDN സേവനം", + "relatedItem.notify-detail-modal": "ബന്ധപ്പെട്ട ഇനം", + "search.filters.filter.notifyEndorsement.head": "അറിയിപ്പ് അംഗീകാരം", + "search.filters.filter.notifyEndorsement.placeholder": "അറിയിപ്പ് അംഗീകാരം", + "search.filters.filter.notifyEndorsement.label": "അറിയിപ്പ് അംഗീകാരം തിരയുക", + "form.date-picker.placeholder.year": "വർഷം", + "form.date-picker.placeholder.month": "മാസം", + "form.date-picker.placeholder.day": "ദിവസം", + "item.page.cc.license.title": "ക്രിയേറ്റീവ് കോമൺസ് ലൈസൺസ്", + "item.page.cc.license.disclaimer": "മറ്റെവിടെയെങ്കിലും സൂചിപ്പിച്ചിട്ടില്ലെങ്കിൽ, ഈ ഇനത്തിന്റെ ലൈസൺസ് ഇങ്ങനെ വിവരിക്കപ്പെടുന്നു", + "browse.search-form.placeholder": "റിപ്പോസിറ്ററി തിരയുക", + "file-download-link.download": "ഡൗൺലോഡ് ചെയ്യുക ", + "register-page.registration.aria.label": "നിങ്ങളുടെ ഇമെയിൽ വിലാസം നൽകുക", + "forgot-email.form.aria.label": "നിങ്ങളുടെ ഇമെയിൽ വിലാസം നൽകുക", + "search-facet-option.update.announcement": "പേജ് റീലോഡ് ചെയ്യും. ഫിൽട്ടർ {{ filter }} തിരഞ്ഞെടുത്തിരിക്കുന്നു.", + "live-region.ordering.instructions": "{{ itemName }} ക്രമീകരിക്കാൻ സ്പേസ്ബാർ അമർത്തുക.", + "live-region.ordering.status": "{{ itemName }}, പിടിച്ചു. ലിസ്റ്റിലെ നിലവിലെ സ്ഥാനം: {{ index }} / {{ length }}. സ്ഥാനം മാറ്റാൻ മുകളിലേക്കും താഴേക്കും ആരോ കീ അമർത്തുക, ഡ്രോപ്പ് ചെയ്യാൻ സ്പേസ്ബാർ, റദ്ദാക്കാൻ എസ്കേപ്പ്.", + "live-region.ordering.moved": "{{ itemName }}, {{ index }} / {{ length }} സ്ഥാനത്തേക്ക് നീക്കി. സ്ഥാനം മാറ്റാൻ മുകളിലേക്കും താഴേക്കും ആരോ കീ അമർത്തുക, ഡ്രോപ്പ് ചെയ്യാൻ സ്പേസ്ബാർ, റദ്ദാക്കാൻ എസ്കേപ്പ്.", + "live-region.ordering.dropped": "{{ itemName }}, {{ index }} / {{ length }} സ്ഥാനത്ത് ഡ്രോപ്പ് ചെയ്തു.", + "dynamic-form-array.sortable-list.label": "ക്രമീകരിക്കാവുന്ന ലിസ്റ്റ്", + "external-login.component.or": "അല്ലെങ്കിൽ", + "external-login.confirmation.header": "ലോഗിൻ പ്രക്രിയ പൂർത്തിയാക്കാൻ ആവശ്യമായ വിവരങ്ങൾ", + "external-login.noEmail.informationText": "{{authMethod}} എന്നതിൽ നിന്ന് ലഭിച്ച വിവരങ്ങൾ ലോഗിൻ പ്രക്രിയ പൂർത്തിയാക്കാൻ പര്യാപ്തമല്ല. ദയവായി താഴെ വിവരങ്ങൾ നൽകുക, അല്ലെങ്കിൽ മറ്റൊരു രീതിയിൽ ലോഗിൻ ചെയ്ത് നിങ്ങളുടെ {{authMethod}} നിലവിലുള്ള അക്കൗണ്ടുമായി ബന്ധിപ്പിക്കുക.", + "external-login.haveEmail.informationText": "ഈ സിസ്റ്റത്തിൽ നിങ്ങൾക്ക് ഇതുവരെ ഒരു അക്കൗണ്ട് ഇല്ലെന്ന് തോന്നുന്നു. അങ്ങനെയാണെങ്കിൽ, {{authMethod}} എന്നതിൽ നിന്ന് ലഭിച്ച ഡാറ്റ സ്ഥിരീകരിച്ച് നിങ്ങൾക്ക് ഒരു പുതിയ അക്കൗണ്ട് സൃഷ്ടിക്കും. അല്ലെങ്കിൽ, സിസ്റ്റത്തിൽ നിങ്ങൾക്ക് ഇതിനകം ഒരു അക്കൗണ്ട് ഉണ്ടെങ്കിൽ, ഇമെയിൽ വിലാസം അപ്ഡേറ്റ് ചെയ്യുക അല്ലെങ്കിൽ മറ്റൊരു രീതിയിൽ ലോഗിൻ ചെയ്ത് നിങ്ങളുടെ {{authMethod}} നിലവിലുള്ള അക്കൗണ്ടുമായി ബന്ധിപ്പിക്കുക.", + "external-login.confirm-email.header": "ഇമെയിൽ സ്ഥിരീകരിക്കുക അല്ലെങ്കിൽ അപ്ഡേറ്റ് ചെയ്യുക", + "external-login.confirmation.email-required": "ഇമെയിൽ ആവശ്യമാണ്.", + "external-login.confirmation.email-label": "ഉപയോക്തൃ ഇമെയിൽ", + "external-login.confirmation.email-invalid": "ഇമെയിൽ ഫോർമാറ്റ് അസാധുവാണ്.", + "external-login.confirm.button.label": "ഈ ഇമെയിൽ സ്ഥിരീകരിക്കുക", + "external-login.confirm-email-sent.header": "സ്ഥിരീകരണ ഇമെയിൽ അയച്ചു", + "external-login.confirm-email-sent.info": "നൽകിയ വിലാസത്തിലേക്ക് ഞങ്ങൾ ഒരു ഇമെയിൽ അയച്ചിട്ടുണ്ട്.
ലോഗിൻ പ്രക്രിയ പൂർത്തിയാക്കാൻ ഇമെയിലിലെ നിർദ്ദേശങ്ങൾ പാലിക്കുക.", + "external-login.provide-email.header": "ഇമെയിൽ നൽകുക", + "external-login.provide-email.button.label": "സ്ഥിരീകരണ ലിങ്ക് അയയ്ക്കുക", + "external-login-validation.review-account-info.header": "നിങ്ങളുടെ അക്കൗണ്ട് വിവരങ്ങൾ അവലോകനം ചെയ്യുക", + "external-login-validation.review-account-info.info": "ORCID-ൽ നിന്ന് ലഭിച്ച വിവരങ്ങൾ നിങ്ങളുടെ പ്രൊഫൈലിൽ റെക്കോർഡ് ചെയ്തിരിക്കുന്നവയിൽ നിന്ന് വ്യത്യസ്തമാണ്.
ദയവായി അവ അവലോകനം ചെയ്ത് ഏതെങ്കിലും അപ്ഡേറ്റ് ചെയ്യാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുണ്ടോയെന്ന് തീരുമാനിക്കുക. സേവ് ചെയ്ത ശേഷം നിങ്ങളുടെ പ്രൊഫൈൽ പേജിലേക്ക് റീഡയറക്ട് ചെയ്യും.", + "external-login-validation.review-account-info.table.header.information": "വിവരങ്ങൾ", + "external-login-validation.review-account-info.table.header.received-value": "ലഭിച്ച മൂല്യം", + "external-login-validation.review-account-info.table.header.current-value": "നിലവിലെ മൂല്യം", + "external-login-validation.review-account-info.table.header.action": "ഓവർറൈഡ്", + "external-login-validation.review-account-info.table.row.not-applicable": "ബാധകമല്ല", + "on-label": "ഓൺ", + "off-label": "ഓഫ്", + "review-account-info.merge-data.notification.success": "നിങ്ങളുടെ അക്കൗണ്ട് വിവരങ്ങൾ വിജയകരമായി അപ്ഡേറ്റ് ചെയ്തു", + "review-account-info.merge-data.notification.error": "നിങ്ങളുടെ അക്കൗണ്ട് വിവരങ്ങൾ അപ്ഡേറ്റ് ചെയ്യുമ്പോൾ എന്തോ തെറ്റ് സംഭവിച്ചു", + "review-account-info.alert.error.content": "എന്തോ തെറ്റ് സംഭവിച്ചു. ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", + "external-login-page.provide-email.notifications.error": "എന്തോ തെറ്റ് സംഭവിച്ചു. ഇമെയിൽ വിലാസം ഒഴിവാക്കിയിട്ടുണ്ട് അല്ലെങ്കിൽ ഓപ്പറേഷൻ അസാധുവാണ്.", + "external-login.error.notification": "നിങ്ങളുടെ അഭ്യർത്ഥന പ്രോസസ്സ് ചെയ്യുമ്പോൾ ഒരു പിശക് സംഭവിച്ചു. ദയവായി പിന്നീട് വീണ്ടും ശ്രമിക്കുക.", + "external-login.connect-to-existing-account.label": "നിലവിലുള്ള ഉപയോക്താവുമായി ബന്ധിപ്പിക്കുക", + "external-login.modal.label.close": "അടയ്ക്കുക", + "external-login-page.provide-email.create-account.notifications.error.header": "എന്തോ തെറ്റ് സംഭവിച്ചു", + "external-login-page.provide-email.create-account.notifications.error.content": "ദയവായി നിങ്ങളുടെ ഇമെയിൽ വിലാസം വീണ്ടും പരിശോധിച്ച് വീണ്ടും ശ്രമിക്കുക.", + "external-login-page.confirm-email.create-account.notifications.error.no-netId": "ഈ ഇമെയിൽ അക്കൗണ്ടിൽ എന്തോ തെറ്റ് സംഭവിച്ചു. വീണ്ടും ശ്രമിക്കുക അല്ലെങ്കിൽ ലോഗിൻ ചെയ്യാൻ മറ്റൊരു രീതി ഉപയോഗിക്കുക.", + "external-login-page.orcid-confirmation.firstname": "പേരിന്റെ ആദ്യഭാഗം", + "external-login-page.orcid-confirmation.firstname.label": "പേരിന്റെ ആദ്യഭാഗം", + "external-login-page.orcid-confirmation.lastname": "പേരിന്റെ അവസാനഭാഗം", + "external-login-page.orcid-confirmation.lastname.label": "പേരിന്റെ അവസാനഭാഗം", + "external-login-page.orcid-confirmation.netid": "അക്കൗണ്ട് ഐഡന്റിഫയർ", + "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", + "external-login-page.orcid-confirmation.email": "ഇമെയിൽ", + "external-login-page.orcid-confirmation.email.label": "ഇമെയിൽ", + "search.filters.access_status.open.access": "ഓപ്പൺ ആക്സസ്സ്", + "search.filters.access_status.restricted": "പരിമിതമായ ആക്സസ്സ്", + "search.filters.access_status.embargo": "എംബാർഗോ ആക്സസ്സ്", + "search.filters.access_status.metadata.only": "മെറ്റാഡാറ്റ മാത്രം", + "search.filters.access_status.unknown": "അജ്ഞാതം", + "metadata-export-filtered-items.tooltip": "റിപ്പോർട്ട് ഔട്ട്പുട്ട് CSV ആയി എക്സ്പോർട്ട് ചെയ്യുക", + "metadata-export-filtered-items.submit.success": "CSV എക്സ്പോർട്ട് വിജയിച്ചു.", + "metadata-export-filtered-items.submit.error": "CSV എക്സ്പോർട്ട് പരാജയപ്പെട്ടു.", + "metadata-export-filtered-items.columns.warning": "CSV എക്സ്പോർട്ട് യാന്ത്രികമായി എല്ലാ ബന്ധപ്പെട്ട ഫീൽഡുകളും ഉൾപ്പെടുത്തുന്നു, അതിനാൽ ഈ ലിസ്റ്റിലെ തിരഞ്ഞെടുപ്പുകൾ കണക്കിലെടുക്കുന്നില്ല.", + "embargo.listelement.badge": "{{ date }} വരെ എംബാർഗോ", + "metadata-export-search.submit.error.limit-exceeded": "ആദ്യ {{limit}} ഇനങ്ങൾ മാത്രം എക്സ്പോർട്ട് ചെയ്യും", + "file-download-link.request-copy": "എന്നതിന്റെ ഒരു പകർപ്പ് അഭ്യർത്ഥിക്കുക ", + +} \ No newline at end of file diff --git a/src/assets/i18n/od.json5 b/src/assets/i18n/od.json5 new file mode 100644 index 00000000000..1a46d28b7ea --- /dev/null +++ b/src/assets/i18n/od.json5 @@ -0,0 +1,5659 @@ +{ + "401.help": "ଆପଣ ଏହି ପୃଷ୍ଠାକୁ ପ୍ରବେଶ କରିବାର ଅନୁମତି ନାହିଁ। ଆପଣ ନିମ୍ନସ୍ଥ ବଟନ୍ ବ୍ୟବହାର କରି ମୂଳ ପୃଷ୍ଠାକୁ ଫେରିପାରିବେ।", + "401.link.home-page": "ମୋତେ ମୂଳ ପୃଷ୍ଠାକୁ ନେଇଯାଅ", + "401.unauthorized": "ଅନୁମତିପ୍ରାପ୍ତ ନୁହେଁ", + "403.help": "ଆପଣଙ୍କର ଏହି ପୃଷ୍ଠାକୁ ପ୍ରବେଶ କରିବାର ଅନୁମତି ନାହିଁ। ଆପଣ ନିମ୍ନସ୍ଥ ବଟନ୍ ବ୍ୟବହାର କରି ମୂଳ ପୃଷ୍ଠାକୁ ଫେରିପାରିବେ।", + "403.link.home-page": "ମୋତେ ମୂଳ ପୃଷ୍ଠାକୁ ନେଇଯାଅ", + "403.forbidden": "ନିଷିଦ୍ଧ", + "500.page-internal-server-error": "ସେବା ଉପଲବ୍ଧ ନାହିଁ", + "500.help": "ମେନ୍ଟେନାନ୍ସ ବା ସାମର୍ଥ୍ୟ ସମସ୍ୟା ଯୋଗୁଁ ସର୍ଭର୍ ଆପଣଙ୍କ ଅନୁରୋଧକୁ ସେବା ଦେଇପାରୁନାହିଁ। ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ।", + "500.link.home-page": "ମୋତେ ମୂଳ ପୃଷ୍ଠାକୁ ନେଇଯାଅ", + "404.help": "ଆପଣ ଖୋଜୁଥିବା ପୃଷ୍ଠା ଆମେ ଖୋଜି ପାରିଲୁ ନାହିଁ। ପୃଷ୍ଠା ସ୍ଥାନାନ୍ତରିତ କିମ୍ବା ବିଲୋପ ହୋଇଥାଇପାରେ। ଆପଣ ନିମ୍ନସ୍ଥ ବଟନ୍ ବ୍ୟବହାର କରି ମୂଳ ପୃଷ୍ଠାକୁ ଫେରିପାରିବେ।", + "404.link.home-page": "ମୋତେ ମୂଳ ପୃଷ୍ଠାକୁ ନେଇଯାଅ", + "404.page-not-found": "ପୃଷ୍ଠା ମିଳିଲା ନାହିଁ", + "error-page.description.401": "ଅନୁମତିପ୍ରାପ୍ତ ନୁହେଁ", + "error-page.description.403": "ନିଷିଦ୍ଧ", + "error-page.description.500": "ସେବା ଉପଲବ୍ଧ ନାହିଁ", + "error-page.description.404": "ପୃଷ୍ଠା ମିଳିଲା ନାହିଁ", + "error-page.orcid.generic-error": "ORCID ମାଧ୍ୟମରେ ଲଗଇନ୍ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା। ନିଶ୍ଚିତ କରନ୍ତୁ ଯେ ଆପଣ DSpace ସହିତ ଆପଣଙ୍କର ORCID ଆକାଉଣ୍ଟ୍ ଇମେଲ୍ ଠିକଣା ଅଂଶୀଦାର କରିଛନ୍ତି। ଯଦି ତ୍ରୁଟି ବଜାୟ ରହେ, ପ୍ରଶାସକଙ୍କୁ ଯୋଗାଯୋଗ କରନ୍ତୁ।", + "listelement.badge.access-status": "ପ୍ରବେଶ ସ୍ଥିତି:", + "access-status.embargo.listelement.badge": "ଏମ୍ବାର୍ଗୋ", + "access-status.metadata.only.listelement.badge": "କେବଳ ମେଟାଡାଟା", + "access-status.open.access.listelement.badge": "ଖୋଲା ପ୍ରବେଶ", + "access-status.restricted.listelement.badge": "ସୀମିତ", + "access-status.unknown.listelement.badge": "ଅଜ୍ଞାତ", + "admin.curation-tasks.breadcrumbs": "ସିଷ୍ଟମ୍ କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ", + "admin.curation-tasks.title": "ସିଷ୍ଟମ୍ କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ", + "admin.curation-tasks.header": "ସିଷ୍ଟମ୍ କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ", + "admin.registries.bitstream-formats.breadcrumbs": "ଫର୍ମାଟ୍ ରେଜିଷ୍ଟ୍ରି", + "admin.registries.bitstream-formats.create.breadcrumbs": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍", + "admin.registries.bitstream-formats.create.failure.content": "ନୂତନ ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସୃଷ୍ଟି କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", + "admin.registries.bitstream-formats.create.failure.head": "ବିଫଳତା", + "admin.registries.bitstream-formats.create.head": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସୃଷ୍ଟି କରନ୍ତୁ", + "admin.registries.bitstream-formats.create.new": "ଏକ ନୂତନ ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ଯୋଡନ୍ତୁ", + "admin.registries.bitstream-formats.create.success.content": "ନୂତନ ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି।", + "admin.registries.bitstream-formats.create.success.head": "ସଫଳତା", + "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} ଫର୍ମାଟ୍ ବିଲୋପ କରିବାରେ ବିଫଳ", + "admin.registries.bitstream-formats.delete.failure.head": "ବିଫଳତା", + "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} ଫର୍ମାଟ୍ ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", + "admin.registries.bitstream-formats.delete.success.head": "ସଫଳତା", + "admin.registries.bitstream-formats.description": "ଜ୍ଞାତ ଫର୍ମାଟ୍ ଏବଂ ସେମାନଙ୍କର ସମର୍ଥନ ସ୍ତର ବିଷୟରେ ସୂଚନା ପ୍ରଦାନ କରୁଥିବା ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍‌ର ଏହି ତାଲିକା।", + "admin.registries.bitstream-formats.edit.breadcrumbs": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍", + "admin.registries.bitstream-formats.edit.description.hint": "", + "admin.registries.bitstream-formats.edit.description.label": "ବର୍ଣ୍ଣନା", + "admin.registries.bitstream-formats.edit.extensions.hint": "ଏକ୍ସଟେନ୍ସନ୍ ହେଉଛି ଫାଇଲ୍ ଏକ୍ସଟେନ୍ସନ୍ ଯାହା ଅପଲୋଡ୍ କରାଯାଇଥିବା ଫାଇଲ୍‌ର ଫର୍ମାଟ୍ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଚିହ୍ନିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ। ଆପଣ ପ୍ରତ୍ୟେକ ଫର୍ମାଟ୍ ପାଇଁ ଅନେକ ଏକ୍ସଟେନ୍ସନ୍ ପ୍ରବେଶ କରିପାରିବେ।", + "admin.registries.bitstream-formats.edit.extensions.label": "ଫାଇଲ୍ ଏକ୍ସଟେନ୍ସନ୍", + "admin.registries.bitstream-formats.edit.extensions.placeholder": "ଡଟ୍ ବିନା ଏକ ଫାଇଲ୍ ଏକ୍ସଟେନ୍ସନ୍ ପ୍ରବେଶ କରନ୍ତୁ", + "admin.registries.bitstream-formats.edit.failure.content": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସଂପାଦନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", + "admin.registries.bitstream-formats.edit.failure.head": "ବିଫଳତା", + "admin.registries.bitstream-formats.edit.head": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍: {{ format }}", + "admin.registries.bitstream-formats.edit.internal.hint": "ଆନ୍ତରିକ ଭାବରେ ଚିହ୍ନିତ ଫର୍ମାଟ୍‌ଗୁଡିକ ଉପଭୋକ୍ତାଙ୍କ ପାଇଁ ଲୁକ୍କାୟିତ ହୋଇଥାଏ, ଏବଂ ପ୍ରଶାସନିକ ଉଦ୍ଦେଶ୍ୟ ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", + "admin.registries.bitstream-formats.edit.internal.label": "ଆନ୍ତରିକ", + "admin.registries.bitstream-formats.edit.mimetype.hint": "ଏହି ଫର୍ମାଟ୍ ସହିତ ସଂଯୁକ୍ତ MIME ପ୍ରକାର, ଅନନ୍ୟ ହେବା ଆବଶ୍ୟକ ନୁହେଁ।", + "admin.registries.bitstream-formats.edit.mimetype.label": "MIME ପ୍ରକାର", + "admin.registries.bitstream-formats.edit.shortDescription.hint": "ଏହି ଫର୍ମାଟ୍ ପାଇଁ ଏକ ଅନନ୍ୟ ନାମ (ଉଦାହରଣ ସ୍ୱରୂପ \"Microsoft Word XP\" କିମ୍ବା \"Microsoft Word 2000\")", + "admin.registries.bitstream-formats.edit.shortDescription.label": "ନାମ", + "admin.registries.bitstream-formats.edit.success.content": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସଫଳତାର ସହିତ ସଂପାଦିତ ହୋଇଛି।", + "admin.registries.bitstream-formats.edit.success.head": "ସଫଳତା", + "admin.registries.bitstream-formats.edit.supportLevel.hint": "ଆପଣଙ୍କ ଅନୁଷ୍ଠାନ ଏହି ଫର୍ମାଟ୍ ପାଇଁ ପ୍ରତିଶ୍ରୁତି ଦେଇଥିବା ସମର୍ଥନ ସ୍ତର।", + "admin.registries.bitstream-formats.edit.supportLevel.label": "ସମର୍ଥନ ସ୍ତର", + "admin.registries.bitstream-formats.head": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ରେଜିଷ୍ଟ୍ରି", + "admin.registries.bitstream-formats.no-items": "ଦେଖାଇବା ପାଇଁ କୌଣସି ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ନାହିଁ।", + "admin.registries.bitstream-formats.table.delete": "ଚୟନିତ ବିଲୋପ କରନ୍ତୁ", + "admin.registries.bitstream-formats.table.deselect-all": "ସମସ୍ତ ଚୟନ ରଦ୍ଦ କରନ୍ତୁ", + "admin.registries.bitstream-formats.table.internal": "ଆନ୍ତରିକ", + "admin.registries.bitstream-formats.table.mimetype": "MIME ପ୍ରକାର", + "admin.registries.bitstream-formats.table.name": "ନାମ", + "admin.registries.bitstream-formats.table.selected": "ଚୟନିତ ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍", + "admin.registries.bitstream-formats.table.id": "ID", + "admin.registries.bitstream-formats.table.return": "ପଛକୁ", + "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "ଜ୍ଞାତ", + "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "ସମର୍ଥିତ", + "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "ଅଜ୍ଞାତ", + "admin.registries.bitstream-formats.table.supportLevel.head": "ସମର୍ଥନ ସ୍ତର", + "admin.registries.bitstream-formats.title": "ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ରେଜିଷ୍ଟ୍ରି", + "admin.registries.bitstream-formats.select": "ଚୟନ କରନ୍ତୁ", + "admin.registries.bitstream-formats.deselect": "ଚୟନ ରଦ୍ଦ କରନ୍ତୁ", + "admin.registries.metadata.breadcrumbs": "ମେଟାଡାଟା ରେଜିଷ୍ଟ୍ରି", + "admin.registries.metadata.description": "ମେଟାଡାଟା ରେଜିଷ୍ଟ୍ରି ରେପୋଜିଟରୀରେ ଉପଲବ୍ଧ ସମସ୍ତ ମେଟାଡାଟା କ୍ଷେତ୍ରର ଏକ ତାଲିକା ରଖିଥାଏ। ଏହି କ୍ଷେତ୍ରଗୁଡିକୁ ଏକାଧିକ ସ୍କିମା ମଧ୍ୟରେ ବିଭକ୍ତ କରାଯାଇପାରେ। ତଥାପି, DSpace ପାଇଁ ଯୋଗ୍ୟ ଡବ୍ଲିନ୍ କୋର୍ ସ୍କିମା ଆବଶ୍ୟକ।", + "admin.registries.metadata.form.create": "ମେଟାଡାଟା ସ୍କିମା ସୃଷ୍ଟି କରନ୍ତୁ", + "admin.registries.metadata.form.edit": "ମେଟାଡାଟା ସ୍କିମା ସଂପାଦନ କରନ୍ତୁ", + "admin.registries.metadata.form.name": "ନାମ", + "admin.registries.metadata.form.namespace": "ନେମସ୍ପେସ୍", + "admin.registries.metadata.head": "ମେଟାଡାଟା ରେଜିଷ୍ଟ୍ରି", + "admin.registries.metadata.schemas.no-items": "ଦେଖାଇବା ପାଇଁ କୌଣସି ମେଟାଡାଟା ସ୍କିମା ନାହିଁ।", + "admin.registries.metadata.schemas.select": "ଚୟନ କରନ୍ତୁ", + "admin.registries.metadata.schemas.deselect": "ଚୟନ ରଦ୍ଦ କରନ୍ତୁ", + "admin.registries.metadata.schemas.table.delete": "ଚୟନିତ ବିଲୋପ କରନ୍ତୁ", + "admin.registries.metadata.schemas.table.selected": "ଚୟନିତ ସ୍କିମା", + "admin.registries.metadata.schemas.table.id": "ID", + "admin.registries.metadata.schemas.table.name": "ନାମ", + "admin.registries.metadata.schemas.table.namespace": "ନେମସ୍ପେସ୍", + "admin.registries.metadata.title": "ମେଟାଡାଟା ରେଜିଷ୍ଟ୍ରି", + "admin.registries.schema.breadcrumbs": "ମେଟାଡାଟା ସ୍କିମା", + "admin.registries.schema.description": "ଏହା \"{{namespace}}\" ପାଇଁ ମେଟାଡାଟା ସ୍କିମା।", + "admin.registries.schema.fields.select": "ଚୟନ କରନ୍ତୁ", + "admin.registries.schema.fields.deselect": "ଚୟନ ରଦ୍ଦ କରନ୍ତୁ", + "admin.registries.schema.fields.head": "ସ୍କିମା ମେଟାଡାଟା କ୍ଷେତ୍ର", + "admin.registries.schema.fields.no-items": "ଦେଖାଇବା ପାଇଁ କୌଣସି ମେଟାଡାଟା କ୍ଷେତ୍ର ନାହିଁ।", + "admin.registries.schema.fields.table.delete": "ଚୟନିତ ବିଲୋପ କରନ୍ତୁ", + "admin.registries.schema.fields.table.field": "କ୍ଷେତ୍ର", + "admin.registries.schema.fields.table.selected": "ଚୟନିତ ମେଟାଡାଟା କ୍ଷେତ୍ର", + "admin.registries.schema.fields.table.id": "ID", + "admin.registries.schema.fields.table.scopenote": "ସ୍କୋପ୍ ନୋଟ୍", + "admin.registries.schema.form.create": "ମେଟାଡାଟା କ୍ଷେତ୍ର ସୃଷ୍ଟି କରନ୍ତୁ", + "admin.registries.schema.form.edit": "ମେଟାଡାଟା କ୍ଷେତ୍ର ସଂପାଦନ କରନ୍ତୁ", + "admin.registries.schema.form.element": "ଏଲିମେଣ୍ଟ୍", + "admin.registries.schema.form.qualifier": "କ୍ୱାଲିଫାୟର୍", + "admin.registries.schema.form.scopenote": "ସ୍କୋପ୍ ନୋଟ୍", + "admin.registries.schema.head": "ମେଟାଡାଟା ସ୍କିମା", + "admin.registries.schema.notification.created": "ମେଟାଡାଟା ସ୍କିମା \"{{prefix}}\" ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", + "admin.registries.schema.notification.deleted.failure": "{{amount}} ମେଟାଡାଟା ସ୍କିମା ବିଲୋପ କରିବାରେ ବିଫଳ", + "admin.registries.schema.notification.deleted.success": "{{amount}} ମେଟାଡାଟା ସ୍କିମା ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", + "admin.registries.schema.notification.edited": "ମେଟାଡାଟା ସ୍କିମା \"{{prefix}}\" ସଫଳତାର ସହିତ ସଂପାଦିତ ହୋଇଛି", + "admin.registries.schema.notification.failure": "ତ୍ରୁଟି", + "admin.registries.schema.notification.field.created": "ମେଟାଡାଟା କ୍ଷେତ୍ର \"{{field}}\" ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", + "admin.registries.schema.notification.field.deleted.failure": "{{amount}} ମେଟାଡାଟା କ୍ଷେତ୍ର ବିଲୋପ କରିବାରେ ବିଫଳ", + "admin.registries.schema.notification.field.deleted.success": "{{amount}} ମେଟାଡାଟା କ୍ଷେତ୍ର ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", + "admin.registries.schema.notification.field.edited": "ମେଟାଡାଟା କ୍ଷେତ୍ର \"{{field}}\" ସଫଳତାର ସହିତ ସଂପାଦିତ ହୋଇଛି", + "admin.registries.schema.notification.success": "ସଫଳତା", + "admin.registries.schema.return": "ପଛକୁ", + "admin.registries.schema.title": "ମେଟାଡାଟା ସ୍କିମା ରେଜିଷ୍ଟ୍ରି", + "admin.access-control.bulk-access.breadcrumbs": "ବଲ୍କ୍ ଆକ୍ସେସ୍ ପରିଚାଳନା", + "administrativeBulkAccess.search.results.head": "ସନ୍ଧାନ ଫଳାଫଳ", + "admin.access-control.bulk-access": "ବଲ୍କ୍ ଆକ୍ସେସ୍ ପରିଚାଳନା", + "admin.access-control.bulk-access.title": "ବଲ୍କ୍ ଆକ୍ସେସ୍ ପରିଚାଳନା", + "admin.access-control.bulk-access-browse.header": "ପଦକ୍ଷେପ 1: ବସ୍ତୁ ଚୟନ କରନ୍ତୁ", + "admin.access-control.bulk-access-browse.search.header": "ସନ୍ଧାନ", + "admin.access-control.bulk-access-browse.selected.header": "ବର୍ତ୍ତମାନର ଚୟନ ({{number}})", + "admin.access-control.bulk-access-settings.header": "ପଦକ୍ଷେପ 2: କରିବାକୁ ପରିଚାଳନା", + "admin.access-control.epeople.actions.delete": "EPerson ବିଲୋପ କରନ୍ତୁ", + "admin.access-control.epeople.actions.impersonate": "EPerson ଭାବରେ ଅଭିନୟ କରନ୍ତୁ", + "admin.access-control.epeople.actions.reset": "ପାସୱାର୍ଡ ପୁନଃସେଟ୍ କରନ୍ତୁ", + "admin.access-control.epeople.actions.stop-impersonating": "EPerson ଭାବରେ ଅଭିନୟ ବନ୍ଦ କରନ୍ତୁ", + "admin.access-control.epeople.breadcrumbs": "EPeople", + "admin.access-control.epeople.title": "EPeople", + "admin.access-control.epeople.edit.breadcrumbs": "ନୂତନ EPerson", + "admin.access-control.epeople.edit.title": "ନୂତନ EPerson", + "admin.access-control.epeople.add.breadcrumbs": "EPerson ଯୋଡନ୍ତୁ", + "admin.access-control.epeople.add.title": "EPerson ଯୋଡନ୍ତୁ", + "admin.access-control.epeople.head": "EPeople", + "admin.access-control.epeople.search.head": "ସନ୍ଧାନ", + "admin.access-control.epeople.button.see-all": "ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ", + "admin.access-control.epeople.search.scope.metadata": "ମେଟାଡାଟା", + "admin.access-control.epeople.search.scope.email": "ଇମେଲ୍ (ଠିକ୍)", + "admin.access-control.epeople.search.button": "ସନ୍ଧାନ", + "admin.access-control.epeople.search.placeholder": "ଲୋକଙ୍କୁ ସନ୍ଧାନ କରନ୍ତୁ...", + "admin.access-control.epeople.button.add": "EPerson ଯୋଡନ୍ତୁ", + "admin.access-control.epeople.table.id": "ID", + "admin.access-control.epeople.table.name": "ନାମ", + "admin.access-control.epeople.table.email": "ଇମେଲ୍ (ଠିକ୍)", + "admin.access-control.epeople.table.edit": "ସଂପାଦନ", + "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" ସଂପାଦନ କରନ୍ତୁ", + "admin.access-control.epeople.table.edit.buttons.edit-disabled": "ଆପଣଙ୍କର ଏହି ଗୋଷ୍ଠୀ ସଂପାଦନ କରିବାର ଅନୁମତି ନାହିଁ", + "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" ବିଲୋପ କରନ୍ତୁ", + "admin.access-control.epeople.no-items": "ଦେଖାଇବା ପାଇଁ କୌଣସି EPeople ନାହିଁ।", + "admin.access-control.epeople.form.create": "EPerson ସୃଷ୍ଟି କରନ୍ତୁ", + "admin.access-control.epeople.form.edit": "EPerson ସଂପାଦନ କରନ୍ତୁ", + "admin.access-control.epeople.form.firstName": "ପ୍ରଥମ ନାମ", + "admin.access-control.epeople.form.lastName": "ଶେଷ ନାମ", + "admin.access-control.epeople.form.email": "ଇମେଲ୍", + "admin.access-control.epeople.form.emailHint": "ଏକ ବୈଧ ଇମେଲ୍ ଠିକଣା ହେବା ଆବଶ୍ୟକ", + "admin.access-control.epeople.form.canLogIn": "ଲଗ୍ ଇନ୍ କରିପାରିବେ", + "admin.access-control.epeople.form.requireCertificate": "ସାର୍ଟିଫିକେଟ୍ ଆବଶ୍ୟକ", + "admin.access-control.epeople.form.return": "ପଛକୁ", + "admin.access-control.epeople.form.notification.created.success": "EPerson \"{{name}}\" ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", + "admin.access-control.epeople.form.notification.created.failure": "EPerson \"{{name}}\" ସୃଷ୍ଟି କରିବାରେ ବିଫଳ", + "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson \"{{name}}\" ସୃଷ୍ଟି କରିବାରେ ବିଫଳ, ଇମେଲ୍ \"{{email}}\" ପୂର୍ବରୁ ବ୍ୟବହୃତ ହୋଇଛି।", + "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson \"{{name}}\" ସଂପାଦନ କରିବାରେ ବିଫଳ, ଇମେଲ୍ \"{{email}}\" ପୂର୍ବରୁ ବ୍ୟବହୃତ ହୋଇଛି।", + "admin.access-control.epeople.form.notification.edited.success": "EPerson \"{{name}}\" ସଫଳତାର ସହିତ ସଂପାଦିତ ହୋଇଛି", + "admin.access-control.epeople.form.notification.edited.failure": "EPerson \"{{name}}\" ସଂପାଦନ କରିବାରେ ବିଫଳ", + "admin.access-control.epeople.form.notification.deleted.success": "EPerson \"{{name}}\" ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", + "admin.access-control.epeople.form.notification.deleted.failure": "EPerson \"{{name}}\" ବିଲୋପ କରିବାରେ ବିଫଳ", + "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "ଏହି ଗୋଷ୍ଠୀଗୁଡିକର ସଦସ୍ୟ:", + "admin.access-control.epeople.form.table.id": "ID", + "admin.access-control.epeople.form.table.name": "ନାମ", + "admin.access-control.epeople.form.table.collectionOrCommunity": "ସଂଗ୍ରହ/ସମ୍ପ୍ରଦାୟ", + "admin.access-control.epeople.form.memberOfNoGroups": "ଏହି EPerson କୌଣସି ଗୋଷ୍ଠୀର ସଦସ୍ୟ ନୁହେଁ", + "admin.access-control.epeople.form.goToGroups": "ଗୋଷ୍ଠୀଗୁଡିକୁ ଯୋଡନ୍ତୁ", + "admin.access-control.epeople.notification.deleted.failure": "EPerson \"{{id}}\" ବିଲୋପ କରିବାରେ ତ୍ରୁଟି ଘଟିଲା, କୋଡ୍: \"{{statusCode}}\" ଏବଂ ସନ୍ଦେଶ: \"{{restResponse.errorMessage}}\"", + "admin.access-control.epeople.notification.deleted.success": "EPerson \"{{name}}\" ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", + "admin.access-control.groups.title": "ଗୋଷ୍ଠୀ", + "admin.access-control.groups.breadcrumbs": "ଗୋଷ୍ଠୀ", + "admin.access-control.groups.singleGroup.breadcrumbs": "ଗୋଷ୍ଠୀ ସଂପାଦନ କରନ୍ତୁ", + "admin.access-control.groups.title.singleGroup": "ଗୋଷ୍ଠୀ ସଂପାଦନ କରନ୍ତୁ", + "admin.access-control.groups.title.addGroup": "ନୂତନ ଗୋଷ୍ଠୀ", + "admin.access-control.groups.addGroup.breadcrumbs": "ନୂତନ ଗୋଷ୍ଠୀ", + "admin.access-control.groups.head": "ଗୋଷ୍ଠୀ", + "admin.access-control.groups.button.add": "ଗୋଷ୍ଠୀ ଯୋଡନ୍ତୁ", + "admin.access-control.groups.search.head": "ଗୋଷ୍ଠୀ ସନ୍ଧାନ କରନ୍ତୁ", + "admin.access-control.groups.button.see-all": "ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ", + "admin.access-control.groups.search.button": "ସନ୍ଧାନ", + + "admin.access-control.groups.search.placeholder": "ଗୋଷ୍ଠୀଗୁଡିକୁ ଖୋଜନ୍ତୁ...", + + "admin.access-control.groups.table.id": "ଆଇଡି", + + "admin.access-control.groups.table.name": "ନାମ", + + "admin.access-control.groups.table.collectionOrCommunity": "ସଂଗ୍ରହ/ସମ୍ପ୍ରଦାୟ", + + "admin.access-control.groups.table.members": "ସଦସ୍ୟଗଣ", + + "admin.access-control.groups.table.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", + + "admin.access-control.groups.table.edit.buttons.edit": "\"{{name}}\" କୁ ସମ୍ପାଦନ କରନ୍ତୁ", + + "admin.access-control.groups.table.edit.buttons.remove": "\"{{name}}\" କୁ ବିଲୋପ କରନ୍ତୁ", + + "admin.access-control.groups.no-items": "ଏହି ନାମ ବା UUID ସହିତ କୌଣସି ଗୋଷ୍ଠୀ ମିଳିଲା ନାହିଁ", + + "admin.access-control.groups.notification.deleted.success": "\"{{name}}\" ଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", + + "admin.access-control.groups.notification.deleted.failure.title": "\"{{name}}\" ଗୋଷ୍ଠୀ ବିଲୋପ କରିବାରେ ବିଫଳ ହେଲା", + + "admin.access-control.groups.notification.deleted.failure.content": "କାରଣ: \"{{cause}}\"", + + "admin.access-control.groups.form.alert.permanent": "ଏହି ଗୋଷ୍ଠୀ ସ୍ଥାୟୀ, ତେଣୁ ଏହାକୁ ସମ୍ପାଦନ କିମ୍ବା ବିଲୋପ କରାଯାଇପାରିବ ନାହିଁ। ଆପଣ ଏହି ପୃଷ୍ଠା ବ୍ୟବହାର କରି ଗୋଷ୍ଠୀ ସଦସ୍ୟମାନଙ୍କୁ ଯୋଡିବା ଏବଂ ଅପସାରଣ କରିପାରିବେ।", + + "admin.access-control.groups.form.alert.workflowGroup": "ଏହି ଗୋଷ୍ଠୀକୁ ପରିବର୍ତ୍ତନ କିମ୍ବା ବିଲୋପ କରାଯାଇପାରିବ ନାହିଁ କାରଣ ଏହା \"{{name}}\" {{comcol}} ରେ ଦାଖଲା ଏବଂ କାର୍ଯ୍ୟପ୍ରଣାଳୀ ପ୍ରକ୍ରିୟାରେ ଏକ ଭୂମିକା ସହିତ ସମ୍ବନ୍ଧିତ। ଆପଣ ଏହାକୁ \"ଭୂମିକା ନିର୍ଦ୍ଧାରଣ\" ଟ୍ୟାବରେ ସମ୍ପାଦନ {{comcol}} ପୃଷ୍ଠାରୁ ବିଲୋପ କରିପାରିବେ। ଆପଣ ଏହି ପୃଷ୍ଠା ବ୍ୟବହାର କରି ଗୋଷ୍ଠୀ ସଦସ୍ୟମାନଙ୍କୁ ଯୋଡିବା ଏବଂ ଅପସାରଣ କରିପାରିବେ।", + + "admin.access-control.groups.form.head.create": "ଗୋଷ୍ଠୀ ସୃଷ୍ଟି କରନ୍ତୁ", + + "admin.access-control.groups.form.head.edit": "ଗୋଷ୍ଠୀ ସମ୍ପାଦନ କରନ୍ତୁ", + + "admin.access-control.groups.form.groupName": "ଗୋଷ୍ଠୀର ନାମ", + + "admin.access-control.groups.form.groupCommunity": "ସମ୍ପ୍ରଦାୟ କିମ୍ବା ସଂଗ୍ରହ", + + "admin.access-control.groups.form.groupDescription": "ବର୍ଣ୍ଣନା", + + "admin.access-control.groups.form.notification.created.success": "\"{{name}}\" ଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", + + "admin.access-control.groups.form.notification.created.failure": "\"{{name}}\" ଗୋଷ୍ଠୀ ସୃଷ୍ଟି କରିବାରେ ବିଫଳ ହେଲା", + + "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "\"{{name}}\" ନାମ ସହିତ ଗୋଷ୍ଠୀ ସୃଷ୍ଟି କରିବାରେ ବିଫଳ ହେଲା, ନିଶ୍ଚିତ କରନ୍ତୁ ଯେ ନାମ ପୂର୍ବରୁ ବ୍ୟବହୃତ ହୋଇନାହିଁ।", + + "admin.access-control.groups.form.notification.edited.failure": "\"{{name}}\" ଗୋଷ୍ଠୀ ସମ୍ପାଦନ କରିବାରେ ବିଫଳ ହେଲା", + + "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "\"{{name}}\" ନାମ ପୂର୍ବରୁ ବ୍ୟବହୃତ ହୋଇଛି!", + + "admin.access-control.groups.form.notification.edited.success": "\"{{name}}\" ଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ସମ୍ପାଦିତ ହୋଇଛି", + + "admin.access-control.groups.form.actions.delete": "ଗୋଷ୍ଠୀ ବିଲୋପ କରନ୍ତୁ", + + "admin.access-control.groups.form.delete-group.modal.header": "\"{{ dsoName }}\" ଗୋଷ୍ଠୀ ବିଲୋପ କରନ୍ତୁ", + + "admin.access-control.groups.form.delete-group.modal.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ \"{{ dsoName }}\" ଗୋଷ୍ଠୀ ବିଲୋପ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", + + "admin.access-control.groups.form.delete-group.modal.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "admin.access-control.groups.form.delete-group.modal.confirm": "ବିଲୋପ କରନ୍ତୁ", + + "admin.access-control.groups.form.notification.deleted.success": "\"{{ name }}\" ଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", + + "admin.access-control.groups.form.notification.deleted.failure.title": "\"{{ name }}\" ଗୋଷ୍ଠୀ ବିଲୋପ କରିବାରେ ବିଫଳ ହେଲା", + + "admin.access-control.groups.form.notification.deleted.failure.content": "କାରଣ: \"{{ cause }}\"", + + "admin.access-control.groups.form.members-list.head": "ଇ-ଲୋକ", + + "admin.access-control.groups.form.members-list.search.head": "ଇ-ଲୋକ ଯୋଡନ୍ତୁ", + + "admin.access-control.groups.form.members-list.button.see-all": "ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "admin.access-control.groups.form.members-list.headMembers": "ବର୍ତ୍ତମାନର ସଦସ୍ୟଗଣ", + + "admin.access-control.groups.form.members-list.search.button": "ଖୋଜନ୍ତୁ", + + "admin.access-control.groups.form.members-list.table.id": "ଆଇଡି", + + "admin.access-control.groups.form.members-list.table.name": "ନାମ", + + "admin.access-control.groups.form.members-list.table.identity": "ପରିଚୟ", + + "admin.access-control.groups.form.members-list.table.email": "ଇମେଲ୍", + + "admin.access-control.groups.form.members-list.table.netid": "ନେଟଆଇଡି", + + "admin.access-control.groups.form.members-list.table.edit": "ଅପସାରଣ / ଯୋଡନ୍ତୁ", + + "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "\"{{name}}\" ନାମ ସହିତ ସଦସ୍ୟ ଅପସାରଣ କରନ୍ତୁ", + + "admin.access-control.groups.form.members-list.notification.success.addMember": "\"{{name}}\" ସଦସ୍ୟ ସଫଳତାର ସହିତ ଯୋଡାଗଲା", + + "admin.access-control.groups.form.members-list.notification.failure.addMember": "\"{{name}}\" ସଦସ୍ୟ ଯୋଡିବାରେ ବିଫଳ ହେଲା", + + "admin.access-control.groups.form.members-list.notification.success.deleteMember": "\"{{name}}\" ସଦସ୍ୟ ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", + + "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "\"{{name}}\" ସଦସ୍ୟ ବିଲୋପ କରିବାରେ ବିଫଳ ହେଲା", + + "admin.access-control.groups.form.members-list.table.edit.buttons.add": "\"{{name}}\" ନାମ ସହିତ ସଦସ୍ୟ ଯୋଡନ୍ତୁ", + + "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "ବର୍ତ୍ତମାନ କୌଣସି ସକ୍ରିୟ ଗୋଷ୍ଠୀ ନାହିଁ, ପ୍ରଥମେ ଏକ ନାମ ଦାଖଲ କରନ୍ତୁ।", + + "admin.access-control.groups.form.members-list.no-members-yet": "ଗୋଷ୍ଠୀରେ ବର୍ତ୍ତମାନ କୌଣସି ସଦସ୍ୟ ନାହିଁ, ଖୋଜନ୍ତୁ ଏବଂ ଯୋଡନ୍ତୁ।", + + "admin.access-control.groups.form.members-list.no-items": "ସେହି ଖୋଜରେ କୌଣସି ଇ-ଲୋକ ମିଳିଲା ନାହିଁ", + + "admin.access-control.groups.form.subgroups-list.notification.failure": "କିଛି ଭୁଲ୍ ହୋଇଛି: \"{{cause}}\"", + + "admin.access-control.groups.form.subgroups-list.head": "ଗୋଷ୍ଠୀଗୁଡିକ", + + "admin.access-control.groups.form.subgroups-list.search.head": "ଉପଗୋଷ୍ଠୀ ଯୋଡନ୍ତୁ", + + "admin.access-control.groups.form.subgroups-list.button.see-all": "ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "admin.access-control.groups.form.subgroups-list.headSubgroups": "ବର୍ତ୍ତମାନର ଉପଗୋଷ୍ଠୀଗୁଡିକ", + + "admin.access-control.groups.form.subgroups-list.search.button": "ଖୋଜନ୍ତୁ", + + "admin.access-control.groups.form.subgroups-list.table.id": "ଆଇଡି", + + "admin.access-control.groups.form.subgroups-list.table.name": "ନାମ", + + "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "ସଂଗ୍ରହ/ସମ୍ପ୍ରଦାୟ", + + "admin.access-control.groups.form.subgroups-list.table.edit": "ଅପସାରଣ / ଯୋଡନ୍ତୁ", + + "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "\"{{name}}\" ନାମ ସହିତ ଉପଗୋଷ୍ଠୀ ଅପସାରଣ କରନ୍ତୁ", + + "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "\"{{name}}\" ନାମ ସହିତ ଉପଗୋଷ୍ଠୀ ଯୋଡନ୍ତୁ", + + "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "\"{{name}}\" ଉପଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ଯୋଡାଗଲା", + + "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "\"{{name}}\" ଉପଗୋଷ୍ଠୀ ଯୋଡିବାରେ ବିଫଳ ହେଲା", + + "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "\"{{name}}\" ଉପଗୋଷ୍ଠୀ ସଫଳତାର ସହିତ ବିଲୋପ ହୋଇଛି", + + "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "\"{{name}}\" ଉପଗୋଷ୍ଠୀ ବିଲୋପ କରିବାରେ ବିଫଳ ହେଲା", + + "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "ବର୍ତ୍ତମାନ କୌଣସି ସକ୍ରିୟ ଗୋଷ୍ଠୀ ନାହିଁ, ପ୍ରଥମେ ଏକ ନାମ ଦାଖଲ କରନ୍ତୁ।", + + "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "ଏହା ବର୍ତ୍ତମାନର ଗୋଷ୍ଠୀ, ଯୋଡାଯାଇପାରିବ ନାହିଁ।", + + "admin.access-control.groups.form.subgroups-list.no-items": "ଏହି ନାମ ବା UUID ସହିତ କୌଣସି ଗୋଷ୍ଠୀ ମିଳିଲା ନାହିଁ", + + "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "ଗୋଷ୍ଠୀରେ ବର୍ତ୍ତମାନ କୌଣସି ଉପଗୋଷ୍ଠୀ ନାହିଁ।", + + "admin.access-control.groups.form.return": "ପଛକୁ", + + "admin.quality-assurance.breadcrumbs": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ", + + "admin.notifications.event.breadcrumbs": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ ସୁଚନା", + + "admin.notifications.event.page.title": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ ସୁଚନା", + + "admin.quality-assurance.page.title": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ", + + "admin.notifications.source.breadcrumbs": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ", + + "admin.access-control.groups.form.tooltip.editGroupPage": "ଏହି ପୃଷ୍ଠାରେ, ଆପଣ ଏକ ଗୋଷ୍ଠୀର ଗୁଣଧର୍ମ ଏବଂ ସଦସ୍ୟମାନଙ୍କୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ। ଉପର ବିଭାଗରେ, ଆପଣ ଗୋଷ୍ଠୀର ନାମ ଏବଂ ବର୍ଣ୍ଣନା ସମ୍ପାଦନ କରିପାରିବେ, ଯଦି ଏହା ଏକ ସଂଗ୍ରହ କିମ୍ବା ସମ୍ପ୍ରଦାୟ ପାଇଁ ଏକ ପ୍ରଶାସନିକ ଗୋଷ୍ଠୀ ନୁହେଁ, ଯେଉଁଠାରେ ଗୋଷ୍ଠୀର ନାମ ଏବଂ ବର୍ଣ୍ଣନା ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଉତ୍ପାଦିତ ହୁଏ ଏବଂ ସମ୍ପାଦନ କରାଯାଇପାରିବ ନାହିଁ। ନିମ୍ନଲିଖିତ ବିଭାଗଗୁଡିକରେ, ଆପଣ ଗୋଷ୍ଠୀ ସଦସ୍ୟତା ସମ୍ପାଦନ କରିପାରିବେ। ଅଧିକ ବିବରଣୀ ପାଇଁ [ୱିକି](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) ଦେଖନ୍ତୁ।", + + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "ଏହି ଗୋଷ୍ଠୀରେ/ରୁ ଏକ ଇ-ଲୋକ ଯୋଡିବା/ଅପସାରଣ କରିବା ପାଇଁ, କିମ୍ବା 'ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ କିମ୍ବା ନିମ୍ନରେ ଥିବା ସନ୍ଧାନ ବାର୍ ବ୍ୟବହାର କରି ଉପଭୋକ୍ତାମାନଙ୍କୁ ଖୋଜନ୍ତୁ (ସନ୍ଧାନ ବାର୍ ବାମରେ ଥିବା ଡ୍ରପଡାଉନ୍ ବ୍ୟବହାର କରି ମେଟାଡାଟା କିମ୍ବା ଇମେଲ୍ ଦ୍ୱାରା ଖୋଜିବାକୁ ଚୟନ କରନ୍ତୁ)। ତା’ପରେ ନିମ୍ନରେ ଥିବା ତାଲିକାରେ ପ୍ରତ୍ୟେକ ଉପଭୋକ୍ତା ପାଇଁ ପ୍ଲସ୍ ଆଇକନ୍ କ୍ଲିକ୍ କରନ୍ତୁ ଯାହାକୁ ଆପଣ ଯୋଡିବାକୁ ଚାହୁଁଛନ୍ତି, କିମ୍ବା ପ୍ରତ୍ୟେକ ଉପଭୋକ୍ତା ପାଇଁ ଟ୍ରାସ୍ କ୍ୟାନ୍ ଆଇକନ୍ କ୍ଲିକ୍ କରନ୍ତୁ ଯାହାକୁ ଆପଣ ଅପସାରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି। ନିମ୍ନରେ ଥିବା ତାଲିକାରେ ଅନେକ ପୃଷ୍ଠା ରହିପାରେ: ପରବର୍ତ୍ତୀ ପୃଷ୍ଠାଗୁଡିକୁ ନେଭିଗେଟ୍ କରିବାକୁ ତଳେ ଥିବା ପୃଷ୍ଠା ନିୟନ୍ତ୍ରଣଗୁଡିକ ବ୍ୟବହାର କରନ୍ତୁ।", + + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "ଏହି ଗୋଷ୍ଠୀରେ/ରୁ ଏକ ଉପଗୋଷ୍ଠୀ ଯୋଡିବା/ଅପସାରଣ କରିବା ପାଇଁ, କିମ୍ବା 'ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ କିମ୍ବା ନିମ୍ନରେ ଥିବା ସନ୍ଧାନ ବାର୍ ବ୍ୟବହାର କରି ଗୋଷ୍ଠୀଗୁଡିକୁ ଖୋଜନ୍ତୁ। ତା’ପରେ ନିମ୍ନରେ ଥିବା ତାଲିକାରେ ପ୍ରତ୍ୟେକ ଗୋଷ୍ଠୀ ପାଇଁ ପ୍ଲସ୍ ଆଇକନ୍ କ୍ଲିକ୍ କରନ୍ତୁ ଯାହାକୁ ଆପଣ ଯୋଡିବାକୁ ଚାହୁଁଛନ୍ତି, କିମ୍ବା ପ୍ରତ୍ୟେକ ଗୋଷ୍ଠୀ ପାଇଁ ଟ୍ରାସ୍ କ୍ୟାନ୍ ଆଇକନ୍ କ୍ଲିକ୍ କରନ୍ତୁ ଯାହାକୁ ଆପଣ ଅପସାରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି। ନିମ୍ନରେ ଥିବା ତାଲିକାରେ ଅନେକ ପୃଷ୍ଠା ରହିପାରେ: ପରବର୍ତ୍ତୀ ପୃଷ୍ଠାଗୁଡିକୁ ନେଭିଗେଟ୍ କରିବାକୁ ତଳେ ଥିବା ପୃଷ୍ଠା ନିୟନ୍ତ୍ରଣଗୁଡିକ ବ୍ୟବହାର କରନ୍ତୁ।", + + "admin.reports.collections.title": "ସଂଗ୍ରହ ଫିଲ୍ଟର୍ ରିପୋର୍ଟ", + + "admin.reports.collections.breadcrumbs": "ସଂଗ୍ରହ ଫିଲ୍ଟର୍ ରିପୋର୍ଟ", + + "admin.reports.collections.head": "ସଂଗ୍ରହ ଫିଲ୍ଟର୍ ରିପୋର୍ଟ", + + "admin.reports.button.show-collections": "ସଂଗ୍ରହଗୁଡିକ ଦେଖାନ୍ତୁ", + + "admin.reports.collections.collections-report": "ସଂଗ୍ରହ ରିପୋର୍ଟ", + + "admin.reports.collections.item-results": "ଆଇଟମ୍ ଫଳାଫଳ", + + "admin.reports.collections.community": "ସମ୍ପ୍ରଦାୟ", + + "admin.reports.collections.collection": "ସଂଗ୍ରହ", + + "admin.reports.collections.nb_items": "ଆଇଟମ୍ ସଂଖ୍ୟା", + + "admin.reports.collections.match_all_selected_filters": "ସମସ୍ତ ଚୟନିତ ଫିଲ୍ଟର୍ ସହିତ ମେଳ ଖାଉଛି", + + "admin.reports.items.breadcrumbs": "ମେଟାଡାଟା କ୍ୱେରି ରିପୋର୍ଟ", + + "admin.reports.items.head": "ମେଟାଡାଟା କ୍ୱେରି ରିପୋର୍ଟ", + + "admin.reports.items.run": "ଆଇଟମ୍ କ୍ୱେରି ଚଲାନ୍ତୁ", + + "admin.reports.items.section.collectionSelector": "ସଂଗ୍ରହ ଚୟନକାରୀ", + + "admin.reports.items.section.metadataFieldQueries": "ମେଟାଡାଟା ଫିଲ୍ଡ୍ କ୍ୱେରିଗୁଡିକ", + + "admin.reports.items.predefinedQueries": "ପୂର୍ବନିର୍ଦ୍ଧାରିତ କ୍ୱେରିଗୁଡିକ", + + "admin.reports.items.section.limitPaginateQueries": "ସୀମା/ପୃଷ୍ଠାକରଣ କ୍ୱେରିଗୁଡିକ", + + "admin.reports.items.limit": "ସୀମା/", + + "admin.reports.items.offset": "ଅଫସେଟ୍", + + "admin.reports.items.wholeRepo": "ସମ୍ପୂର୍ଣ୍ଣ ଭଣ୍ଡାର", + + "admin.reports.items.anyField": "କୌଣସି ଫିଲ୍ଡ୍", + + "admin.reports.items.predicate.exists": "ଅଛି", + + "admin.reports.items.predicate.doesNotExist": "ନାହିଁ", + + "admin.reports.items.predicate.equals": "ସମାନ", + + "admin.reports.items.predicate.doesNotEqual": "ସମାନ ନୁହେଁ", + + "admin.reports.items.predicate.like": "ପରି", + + "admin.reports.items.predicate.notLike": "ପରି ନୁହେଁ", + + "admin.reports.items.predicate.contains": "ଧାରଣ କରେ", + + "admin.reports.items.predicate.doesNotContain": "ଧାରଣ କରେ ନାହିଁ", + + "admin.reports.items.predicate.matches": "ମେଳ ଖାଏ", + + "admin.reports.items.predicate.doesNotMatch": "ମେଳ ଖାଏ ନାହିଁ", + + "admin.reports.items.preset.new": "ନୂତନ କ୍ୱେରି", + + "admin.reports.items.preset.hasNoTitle": "କୌଣସି ଶୀର୍ଷକ ନାହିଁ", + + "admin.reports.items.preset.hasNoIdentifierUri": "dc.identifier.uri ନାହିଁ", + + "admin.reports.items.preset.hasCompoundSubject": "ଯୌଗିକ ବିଷୟ ଅଛି", + + "admin.reports.items.preset.hasCompoundAuthor": "ଯୌଗିକ dc.contributor.author ଅଛି", + + "admin.reports.items.preset.hasCompoundCreator": "ଯୌଗିକ dc.creator ଅଛି", + + "admin.reports.items.preset.hasUrlInDescription": "dc.description ରେ URL ଅଛି", + + "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance ରେ ସମ୍ପୂର୍ଣ୍ଣ ପାଠ୍ୟ ଅଛି", + + "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance ରେ ସମ୍ପୂର୍ଣ୍ଣ ପାଠ୍ୟ ନାହିଁ", + + "admin.reports.items.preset.hasEmptyMetadata": "ଖାଲି ମେଟାଡାଟା ଅଛି", + + "admin.reports.items.preset.hasUnbreakingDataInDescription": "ବର୍ଣ୍ଣନାରେ ଅବିଚ୍ଛିନ୍ନ ମେଟାଡାଟା ଅଛି", + + "admin.reports.items.preset.hasXmlEntityInMetadata": "ମେଟାଡାଟାରେ XML ଏଣ୍ଟିଟି ଅଛି", + + "admin.reports.items.preset.hasNonAsciiCharInMetadata": "ମେଟାଡାଟାରେ ନନ୍-ASCII ଅକ୍ଷର ଅଛି", + + "admin.reports.items.number": "ନଂ.", + + "admin.reports.items.id": "UUID", + + "admin.reports.items.collection": "ସଂଗ୍ରହ", + + "admin.reports.items.handle": "URI", + + "admin.reports.items.title": "ଶୀର୍ଷକ", + + "admin.reports.commons.filters": "ଫିଲ୍ଟର୍‌ଗୁଡିକ", + + "admin.reports.commons.additional-data": "ଫେରସ୍ତ କରିବାକୁ ଅତିରିକ୍ତ ତଥ୍ୟ", + + "admin.reports.commons.previous-page": "ପୂର୍ବ ପୃଷ୍ଠା", + + "admin.reports.commons.next-page": "ପରବର୍ତ୍ତୀ ପୃଷ୍ଠା", + + "admin.reports.commons.page": "ପୃଷ୍ଠା", + + "admin.reports.commons.of": "ର", + + "admin.reports.commons.export": "ମେଟାଡାଟା ଅପଡେଟ୍ ପାଇଁ ରପ୍ତାନି କରନ୍ତୁ", + + "admin.reports.commons.filters.deselect_all": "ସମସ୍ତ ଫିଲ୍ଟର୍‌ଗୁଡିକୁ ଅଚୟନ କରନ୍ତୁ", + + "admin.reports.commons.filters.select_all": "ସମସ୍ତ ଫିଲ୍ଟର୍‌ଗୁଡିକୁ ଚୟନ କରନ୍ତୁ", + + "admin.reports.commons.filters.matches_all": "ନିର୍ଦ୍ଦିଷ୍ଟ ସମସ୍ତ ଫିଲ୍ଟର୍‌ଗୁଡିକ ସହିତ ମେଳ ଖାଏ", + + "admin.reports.commons.filters.property": "ଆଇଟମ୍ ଗୁଣଧର୍ମ ଫିଲ୍ଟର୍‌ଗୁଡିକ", + + "admin.reports.commons.filters.property.is_item": "ଆଇଟମ୍ - ସର୍ବଦା ସତ୍ୟ", + + "admin.reports.commons.filters.property.is_withdrawn": "ପ୍ରତ୍ୟାହୃତ ଆଇଟମ୍‌ଗୁଡିକ", + + "admin.reports.commons.filters.property.is_not_withdrawn": "ଉପଲବ୍ଧ ଆଇଟମ୍‌ଗୁଡିକ - ପ୍ରତ୍ୟାହୃତ ନୁହେଁ", + + "admin.reports.commons.filters.property.is_discoverable": "ଆବିଷ୍କାରଯୋଗ୍ୟ ଆଇଟମ୍‌ଗୁଡିକ - ବ୍ୟକ୍ତିଗତ ନୁହେଁ", + + "admin.reports.commons.filters.property.is_not_discoverable": "ଆବିଷ୍କାରଯୋଗ୍ୟ ନୁହେଁ - ବ୍ୟକ୍ତିଗତ ଆଇଟମ୍", + + "admin.reports.commons.filters.bitstream": "ମୌଳିକ ବିଟ୍‌ଷ୍ଟ୍ରିମ୍ ଫିଲ୍ଟର୍‌ଗୁଡିକ", + + "admin.reports.commons.filters.bitstream.has_multiple_originals": "ଆଇଟମରେ ଏକାଧିକ ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + "admin.reports.commons.filters.bitstream.has_no_originals": "ଆଇଟମରେ କୌଣସି ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ନାହିଁ", + "admin.reports.commons.filters.bitstream.has_one_original": "ଆଇଟମରେ ଗୋଟିଏ ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + "admin.reports.commons.filters.bitstream_mime": "MIME ପ୍ରକାର ଦ୍ୱାରା ବିଟଷ୍ଟ୍ରିମ୍ ଫିଲ୍ଟର୍", + "admin.reports.commons.filters.bitstream_mime.has_doc_original": "ଆଇଟମରେ ଏକ ଡକ୍ ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି (PDF, ଅଫିସ୍, ଟେକ୍ସଟ୍, HTML, XML, ଇତ୍ୟାଦି)", + "admin.reports.commons.filters.bitstream_mime.has_image_original": "ଆଇଟମରେ ଏକ ପ୍ରତିଛବି ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "ଅନ୍ୟ ବିଟଷ୍ଟ୍ରିମ୍ ପ୍ରକାର ଅଛି (ଡକ୍ କିମ୍ବା ପ୍ରତିଛବି ନୁହେଁ)", + "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "ଆଇଟମରେ ଏକାଧିକ ପ୍ରକାରର ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି (ଡକ୍, ପ୍ରତିଛବି, ଅନ୍ୟ)", + "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "ଆଇଟମରେ ଏକ PDF ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "ଆଇଟମରେ JPG ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "ଅସାଧାରଣ ଛୋଟ PDF ଅଛି", + "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "ଅସାଧାରଣ ବଡ଼ PDF ଅଛି", + "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "ଟେକ୍ସଟ୍ ଆଇଟମ ବିନା ଡକ୍ୟୁମେଣ୍ଟ୍ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + "admin.reports.commons.filters.mime": "ସମର୍ଥିତ MIME ପ୍ରକାର ଫିଲ୍ଟର୍", + "admin.reports.commons.filters.mime.has_only_supp_image_type": "ଆଇଟମ ପ୍ରତିଛବି ବିଟଷ୍ଟ୍ରିମ୍ ସମର୍ଥିତ", + "admin.reports.commons.filters.mime.has_unsupp_image_type": "ଆଇଟମରେ ଅସମର୍ଥିତ ପ୍ରତିଛବି ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + "admin.reports.commons.filters.mime.has_only_supp_doc_type": "ଆଇଟମ ଡକ୍ୟୁମେଣ୍ଟ୍ ବିଟଷ୍ଟ୍ରିମ୍ ସମର୍ଥିତ", + "admin.reports.commons.filters.mime.has_unsupp_doc_type": "ଆଇଟମରେ ଅସମର୍ଥିତ ଡକ୍ୟୁମେଣ୍ଟ୍ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + "admin.reports.commons.filters.bundle": "ବିଟଷ୍ଟ୍ରିମ୍ ବଣ୍ଡଲ୍ ଫିଲ୍ଟର୍", + "admin.reports.commons.filters.bundle.has_unsupported_bundle": "ଅସମର୍ଥିତ ବଣ୍ଡଲରେ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + "admin.reports.commons.filters.bundle.has_small_thumbnail": "ଅସାଧାରଣ ଛୋଟ ଥମ୍ବନେଲ୍ ଅଛି", + "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "ଥମ୍ବନେଲ୍ ବିନା ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "ଅବৈଧ ଥମ୍ବନେଲ୍ ନାମ ଅଛି (ପ୍ରତ୍ୟେକ ମୂଳ ପାଇଁ ଗୋଟିଏ ଥମ୍ବନେଲ୍ ଧାରଣା କରେ)", + "admin.reports.commons.filters.bundle.has_non_generated_thumb": "ଅଣ-ଜେନେରେଟେଡ୍ ଥମ୍ବନେଲ୍ ଅଛି", + "admin.reports.commons.filters.bundle.no_license": "ଲାଇସେନ୍ସ୍ ନାହିଁ", + "admin.reports.commons.filters.bundle.has_license_documentation": "ଲାଇସେନ୍ସ୍ ବଣ୍ଡଲରେ ଡକ୍ୟୁମେଣ୍ଟେସନ୍ ଅଛି", + "admin.reports.commons.filters.permission": "ଅନୁମତି ଫିଲ୍ଟର୍", + "admin.reports.commons.filters.permission.has_restricted_original": "ଆଇଟମରେ ସୀମିତ ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "ଆଇଟମରେ ଅତିକମରେ ଗୋଟିଏ ମୂଳ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି ଯାହା ବେନାମୀ ଉପଯୋଗକର୍ତ୍ତାଙ୍କ ପାଇଁ ପ୍ରବେଶଯୋଗ୍ୟ ନୁହେଁ", + "admin.reports.commons.filters.permission.has_restricted_thumbnail": "ଆଇଟମରେ ସୀମିତ ଥମ୍ବନେଲ୍ ଅଛି", + "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "ଆଇଟମରେ ଅତିକମରେ ଗୋଟିଏ ଥମ୍ବନେଲ୍ ଅଛି ଯାହା ବେନାମୀ ଉପଯୋଗକର୍ତ୍ତାଙ୍କ ପାଇଁ ପ୍ରବେଶଯୋଗ୍ୟ ନୁହେଁ", + "admin.reports.commons.filters.permission.has_restricted_metadata": "ଆଇଟମରେ ସୀମିତ ମେଟାଡାଟା ଅଛି", + "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "ଆଇଟମରେ ମେଟାଡାଟା ଅଛି ଯାହା ବେନାମୀ ଉପଯୋଗକର୍ତ୍ତାଙ୍କ ପାଇଁ ପ୍ରବେଶଯୋଗ୍ୟ ନୁହେଁ", + "admin.search.breadcrumbs": "ପ୍ରଶାସନିକ ଖୋଜ", + "admin.search.collection.edit": "ସଂପାଦନ କରନ୍ତୁ", + "admin.search.community.edit": "ସଂପାଦନ କରନ୍ତୁ", + "admin.search.item.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", + "admin.search.item.edit": "ସଂପାଦନ କରନ୍ତୁ", + "admin.search.item.make-private": "ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ", + "admin.search.item.make-public": "ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ", + "admin.search.item.move": "ସ୍ଥାନାନ୍ତର କରନ୍ତୁ", + "admin.search.item.reinstate": "ପୁନଃସ୍ଥାପନ କରନ୍ତୁ", + "admin.search.item.withdraw": "ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", + "admin.search.title": "ପ୍ରଶାସନିକ ଖୋଜ", + "administrativeView.search.results.head": "ପ୍ରଶାସନିକ ଖୋଜ", + "admin.workflow.breadcrumbs": "ୱର୍କଫ୍ଲୋ ପରିଚାଳନା କରନ୍ତୁ", + "admin.workflow.title": "ୱର୍କଫ୍ଲୋ ପରିଚାଳନା କରନ୍ତୁ", + "admin.workflow.item.workflow": "ୱର୍କଫ୍ଲୋ", + "admin.workflow.item.workspace": "ୱର୍କସ୍ପେସ୍", + "admin.workflow.item.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", + "admin.workflow.item.send-back": "ଫେରାଇ ଦିଅନ୍ତୁ", + "admin.workflow.item.policies": "ନୀତି", + "admin.workflow.item.supervision": "ପରିଚାଳନା", + "admin.metadata-import.breadcrumbs": "ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", + "admin.batch-import.breadcrumbs": "ବ୍ୟାଚ୍ ଆମଦାନୀ କରନ୍ତୁ", + "admin.metadata-import.title": "ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", + "admin.batch-import.title": "ବ୍ୟାଚ୍ ଆମଦାନୀ କରନ୍ତୁ", + "admin.metadata-import.page.header": "ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", + "admin.batch-import.page.header": "ବ୍ୟାଚ୍ ଆମଦାନୀ କରନ୍ତୁ", + "admin.metadata-import.page.help": "ଆପଣ ଏଠାରେ CSV ଫାଇଲ୍ ଡ୍ରପ୍ କିମ୍ବା ବ୍ରାଉଜ୍ କରିପାରିବେ ଯାହା ଫାଇଲ୍ ଉପରେ ବ୍ୟାଚ୍ ମେଟାଡାଟା କାର୍ଯ୍ୟଗୁଡିକ ଅନ୍ତର୍ଭୁକ୍ତ କରେ", + "admin.batch-import.page.help": "ଆମଦାନୀ କରିବାକୁ ସଂଗ୍ରହ ଚୟନ କରନ୍ତୁ। ତା'ପରେ, ଆମଦାନୀ କରିବାକୁ ଆଇଟମ୍ ଅନ୍ତର୍ଭୁକ୍ତ କରୁଥିବା ଏକ ସରଳ ଆର୍କାଇଭ୍ ଫର୍ମାଟ୍ (SAF) ଜିପ୍ ଫାଇଲ୍ ଡ୍ରପ୍ କିମ୍ବା ବ୍ରାଉଜ୍ କରନ୍ତୁ", + "admin.batch-import.page.toggle.help": "ଫାଇଲ୍ ଅପଲୋଡ୍ କିମ୍ବା URL ମାଧ୍ୟମରେ ଆମଦାନୀ କରିବା ସମ୍ଭବ, ଇନପୁଟ୍ ସୋର୍ସ ସେଟ୍ କରିବାକୁ ଉପରୋକ୍ତ ଟୋଗଲ୍ ବ୍ୟବହାର କରନ୍ତୁ", + "admin.metadata-import.page.dropMsg": "ଆମଦାନୀ କରିବାକୁ ଏକ ମେଟାଡାଟା CSV ଡ୍ରପ୍ କରନ୍ତୁ", + "admin.batch-import.page.dropMsg": "ଆମଦାନୀ କରିବାକୁ ଏକ ବ୍ୟାଚ୍ ZIP ଡ୍ରପ୍ କରନ୍ତୁ", + "admin.metadata-import.page.dropMsgReplace": "ଆମଦାନୀ କରିବାକୁ ମେଟାଡାଟା CSV ବଦଳାଇବାକୁ ଡ୍ରପ୍ କରନ୍ତୁ", + "admin.batch-import.page.dropMsgReplace": "ଆମଦାନୀ କରିବାକୁ ବ୍ୟାଚ୍ ZIP ବଦଳାଇବାକୁ ଡ୍ରପ୍ କରନ୍ତୁ", + "admin.metadata-import.page.button.return": "ପଛକୁ", + "admin.metadata-import.page.button.proceed": "ଆଗକୁ ବଢନ୍ତୁ", + "admin.metadata-import.page.button.select-collection": "ସଂଗ୍ରହ ଚୟନ କରନ୍ତୁ", + "admin.metadata-import.page.error.addFile": "ପ୍ରଥମେ ଫାଇଲ୍ ଚୟନ କରନ୍ତୁ!", + "admin.metadata-import.page.error.addFileUrl": "ପ୍ରଥମେ ଫାଇଲ୍ URL ଇନସର୍ଟ କରନ୍ତୁ!", + "admin.batch-import.page.error.addFile": "ପ୍ରଥମେ ZIP ଫାଇଲ୍ ଚୟନ କରନ୍ତୁ!", + "admin.metadata-import.page.toggle.upload": "ଅପଲୋଡ୍", + "admin.metadata-import.page.toggle.url": "URL", + "admin.metadata-import.page.urlMsg": "ଆମଦାନୀ କରିବାକୁ ବ୍ୟାଚ୍ ZIP url ଇନସର୍ଟ କରନ୍ତୁ", + "admin.metadata-import.page.validateOnly": "କେବଳ ଯାଞ୍ଚ କରନ୍ତୁ", + "admin.metadata-import.page.validateOnly.hint": "ଚୟନ କରାଯାଇଥିଲେ, ଅପଲୋଡ୍ କରାଯାଇଥିବା CSV ଯାଞ୍ଚ କରାଯିବ। ଆପଣ ଚିହ୍ନିତ ପରିବର୍ତ୍ତନର ଏକ ରିପୋର୍ଟ ପାଇବେ, କିନ୍ତୁ କୌଣସି ପରିବର୍ତ୍ତନ ସେଭ୍ ହେବ ନାହିଁ।", + "advanced-workflow-action.rating.form.rating.label": "ମୂଲ୍ୟାଙ୍କନ", + "advanced-workflow-action.rating.form.rating.error": "ଆପଣ ଆଇଟମକୁ ମୂଲ୍ୟାଙ୍କନ କରିବା ଆବଶ୍ୟକ", + "advanced-workflow-action.rating.form.review.label": "ସମୀକ୍ଷା", + "advanced-workflow-action.rating.form.review.error": "ଏହି ମୂଲ୍ୟାଙ୍କନ ଦାଖଲ କରିବାକୁ ଆପଣଙ୍କୁ ଏକ ସମୀକ୍ଷା ପ୍ରବେଶ କରିବା ଆବଶ୍ୟକ", + "advanced-workflow-action.rating.description": "ନିମ୍ନରେ ଏକ ମୂଲ୍ୟାଙ୍କନ ଚୟନ କରନ୍ତୁ", + "advanced-workflow-action.rating.description-requiredDescription": "ନିମ୍ନରେ ଏକ ମୂଲ୍ୟାଙ୍କନ ଚୟନ କରନ୍ତୁ ଏବଂ ଏକ ସମୀକ୍ଷା ମଧ୍ୟ ଯୋଡନ୍ତୁ", + "advanced-workflow-action.select-reviewer.description-single": "ଦାଖଲ କରିବା ପୂର୍ବରୁ ଦୟାକରି ନିମ୍ନରେ ଗୋଟିଏ ସମୀକ୍ଷକ ଚୟନ କରନ୍ତୁ", + "advanced-workflow-action.select-reviewer.description-multiple": "ଦାଖଲ କରିବା ପୂର୍ବରୁ ଦୟାକରି ନିମ୍ନରେ ଗୋଟିଏ କିମ୍ବା ଅଧିକ ସମୀକ୍ଷକ ଚୟନ କରନ୍ତୁ", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "EPeople ଯୋଡନ୍ତୁ", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "ସମସ୍ତ ବ୍ରାଉଜ୍ କରନ୍ତୁ", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "ବର୍ତ୍ତମାନର ସଦସ୍ୟଗଣ", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "ଖୋଜନ୍ତୁ", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "ନାମ", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ପରିଚୟ", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ଇମେଲ୍", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "ନେଟ୍ ID", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "ଅପସାରଣ / ଯୋଡନ୍ତୁ", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "\"{{name}}\" ନାମ ସହିତ ସଦସ୍ୟ ଅପସାରଣ କରନ୍ତୁ", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "\"{{name}}\" ସଦସ୍ୟ ସଫଳତାର ସହିତ ଯୋଡାଗଲା", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "\"{{name}}\" ସଦସ୍ୟ ଯୋଡିବାରେ ବିଫଳ ହେଲା", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "\"{{name}}\" ସଦସ୍ୟ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହେଲା", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "\"{{name}}\" ସଦସ୍ୟ ଡିଲିଟ୍ କରିବାରେ ବିଫଳ ହେଲା", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "\"{{name}}\" ନାମ ସହିତ ସଦସ୍ୟ ଯୋଡନ୍ତୁ", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "କ current ଣସି ବର୍ତ୍ତମାନର ସକ୍ରିୟ ଗୋଷ୍ଠୀ ନାହିଁ, ପ୍ରଥମେ ଏକ ନାମ ଦାଖଲ କରନ୍ତୁ।", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "ଗୋଷ୍ଠୀରେ ଏପର୍ଯ୍ୟନ୍ତ କ current ଣସି ସଦସ୍ୟ ନାହିଁ, ଖୋଜନ୍ତୁ ଏବଂ ଯୋଡନ୍ତୁ।", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "ସେହି ଖୋଜରେ କ current ଣସି EPeople ମିଳିଲା ନାହିଁ", + "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "କ current ଣସି ସମୀକ୍ଷକ ଚୟନ କରାଯାଇନାହିଁ।", + "admin.batch-import.page.validateOnly.hint": "ଚୟନ କରାଯାଇଥିଲେ, ଅପଲୋଡ୍ କରାଯାଇଥିବା ZIP ଯାଞ୍ଚ କରାଯିବ। ଆପଣ ଚିହ୍ନିତ ପରିବର୍ତ୍ତନର ଏକ ରିପୋର୍ଟ ପାଇବେ, କିନ୍ତୁ କୌଣସି ପରିବର୍ତ୍ତନ ସେଭ୍ ହେବ ନାହିଁ।", + "admin.batch-import.page.remove": "ଅପସାରଣ କରନ୍ତୁ", + "auth.errors.invalid-user": "ଅବୈଧ ଇମେଲ୍ ଠିକଣା କିମ୍ବା ପାସୱାର୍ଡ।", + "auth.messages.expired": "ଆପଣଙ୍କର ସେସନ୍ ସମୟ ସମାପ୍ତ ହୋଇଛି। ଦୟାକରି ପୁନର୍ବାର ଲଗ୍ ଇନ୍ କରନ୍ତୁ।", + "auth.messages.token-refresh-failed": "ଆପଣଙ୍କର ସେସନ୍ ଟୋକନ୍ ରିଫ୍ରେସ୍ କରିବାରେ ବିଫଳ ହେଲା। ଦୟାକରି ପୁନର୍ବାର ଲଗ୍ ଇନ୍ କରନ୍ତୁ।", + "bitstream.download.page": "ବର୍ତ୍ତମାନ {{bitstream}} ଡାଉନଲୋଡ୍ କରୁଛି...", + "bitstream.download.page.back": "ପଛକୁ", + "bitstream.edit.authorizations.link": "ବିଟଷ୍ଟ୍ରିମ୍ ନୀତି ସଂପାଦନ କରନ୍ତୁ", + "bitstream.edit.authorizations.title": "ବିଟଷ୍ଟ୍ରିମ୍ ନୀତି ସଂପାଦନ କରନ୍ତୁ", + "bitstream.edit.return": "ପଛକୁ", + "bitstream.edit.bitstream": "ବିଟଷ୍ଟ୍ରିମ୍: ", + "bitstream.edit.form.description.hint": "ଇଚ୍ଛାଧୀନ ଭାବରେ, ଫାଇଲ୍ ବିଷୟରେ ଏକ ସଂକ୍ଷିପ୍ତ ବର୍ଣ୍ଣନା ପ୍ରଦାନ କରନ୍ତୁ, ଉଦାହରଣ ସ୍ୱରୂପ \"ମୁଖ୍ୟ ପ୍ରବନ୍ଧ\" କିମ୍ବା \"ପରୀକ୍ଷଣ ଡାଟା ପ reading ିବା\"।", + "bitstream.edit.form.description.label": "ବର୍ଣ୍ଣନା", + "bitstream.edit.form.embargo.hint": "ପ୍ରଥମ ଦିନ ଯେଉଁଥିରୁ ପ୍ରବେଶ ଅନୁମୋଦିତ। ଏହି ତାରିଖକୁ ଏହି ଫର୍ମରେ ସଂଶୋଧନ କରାଯାଇପାରିବ ନାହିଁ। ଏକ ବିଟଷ୍ଟ୍ରିମ୍ ପାଇଁ ଏକ ଏମ୍ବାର୍ଗୋ ତାରିଖ ସେଟ୍ କରିବାକୁ, ଆଇଟମ୍ ସ୍ଥିତି ଟ୍ୟାବ୍ କୁ ଯାଆନ୍ତୁ, ଅନୁମତି... କ୍ଲିକ୍ କରନ୍ତୁ, ବିଟଷ୍ଟ୍ରିମ୍ READ ନୀତି ସୃଷ୍ଟି କରନ୍ତୁ କିମ୍ବା ସଂପାଦନ କରନ୍ତୁ, ଏବଂ ଇଚ୍ଛିତ ଭାବରେ ଆରମ୍ଭ ତାରିଖ ସେଟ୍ କରନ୍ତୁ।", + "bitstream.edit.form.embargo.label": "ସ୍ଥିର ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ଏମ୍ବାର୍ଗୋ", + "bitstream.edit.form.fileName.hint": "ବିଟଷ୍ଟ୍ରିମ୍ ପାଇଁ ଫାଇଲ୍ ନାମ ପରିବର୍ତ୍ତନ କରନ୍ତୁ। ଧ୍ୟାନ ଦିଅନ୍ତୁ ଯେ ଏହା ପ୍ରଦର୍ଶନ ବିଟଷ୍ଟ୍ରିମ୍ URL କୁ ପରିବର୍ତ୍ତନ କରିବ, କିନ୍ତୁ ପୁରାଣା ଲିଙ୍କ୍ ଗୁଡିକ ଏପର୍ଯ୍ୟନ୍ତ ସମାଧାନ ହେବ ଯେପର୍ଯ୍ୟନ୍ତ ସିକ୍ୟୁଏନ୍ସ୍ ID ପରିବର୍ତ୍ତନ ହୁଏ ନାହିଁ।", + "bitstream.edit.form.fileName.label": "ଫାଇଲ୍ ନାମ", + "bitstream.edit.form.newFormat.label": "ନୂତନ ଫର୍ମାଟ୍ ବର୍ଣ୍ଣନା କରନ୍ତୁ", + "bitstream.edit.form.newFormat.hint": "ଫାଇଲ୍ ସୃଷ୍ଟି କରିବା ପାଇଁ ଆପଣ ବ୍ୟବହାର କରିଥିବା ଆପ୍ଲିକେସନ୍, ଏବଂ ସଂସ୍କରଣ ସଂଖ୍ୟା (ଉଦାହରଣ ସ୍ୱରୂପ, \"ACMESoft SuperApp ସଂସ୍କରଣ 1.5\")।", + "bitstream.edit.form.primaryBitstream.label": "ପ୍ରାଥମିକ ଫାଇଲ୍", + "bitstream.edit.form.selectedFormat.hint": "ଯଦି ଫର୍ମାଟ୍ ଉପରୋକ୍ତ ତାଲିକାରେ ନାହିଁ, ଉପରେ \"ତାଲିକାରେ ଫର୍ମାଟ୍ ନାହିଁ\" ଚୟନ କରନ୍ତୁ ଏବଂ ଏହାକୁ \"ନୂତନ ଫର୍ମାଟ୍ ବର୍ଣ୍ଣନା କରନ୍ତୁ\" ତଳେ ବର୍ଣ୍ଣନା କରନ୍ତୁ।", + "bitstream.edit.form.selectedFormat.label": "ଚୟନ କରାଯାଇଥିବା ଫର୍ମାଟ୍", + "bitstream.edit.form.selectedFormat.unknown": "ତାଲିକାରେ ଫର୍ମାଟ୍ ନାହିଁ", + "bitstream.edit.notifications.error.format.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ସେଭ୍ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "bitstream.edit.notifications.error.primaryBitstream.title": "ପ୍ରାଥମିକ ବିଟଷ୍ଟ୍ରିମ୍ ସେଭ୍ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "bitstream.edit.form.iiifLabel.label": "IIIF ଲେବଲ୍", + "bitstream.edit.form.iiifLabel.hint": "ଏହି ପ୍ରତିଛବି ପାଇଁ କ୍ୟାନଭାସ୍ ଲେବଲ୍। ଯଦି ପ୍ରଦାନ କରାଯାଇନଥାଏ, ଡିଫଲ୍ଟ ଲେବଲ୍ ବ୍ୟବହୃତ ହେବ।", + "bitstream.edit.form.iiifToc.label": "IIIF ବିଷୟସୂଚୀ", + "bitstream.edit.form.iiifToc.hint": "ଏଠାରେ ଟେକ୍ସଟ୍ ଯୋଡିବା ଏହାକୁ ଏକ ନୂତନ ବିଷୟସୂଚୀ ରେଞ୍ଜର ଆରମ୍ଭ କରେ।", + "bitstream.edit.form.iiifWidth.label": "IIIF କ୍ୟାନଭାସ୍ ଓସାର", + "bitstream.edit.form.iiifWidth.hint": "କ୍ୟାନଭାସ୍ ଓସାର ସାଧାରଣତ ପ୍ରତିଛବି ଓସାର ସହିତ ମେଳ ଖାଇବା ଉଚିତ୍।", + "bitstream.edit.form.iiifHeight.label": "IIIF କ୍ୟାନଭାସ୍ ଉଚ୍ଚତା", + "bitstream.edit.form.iiifHeight.hint": "କ୍ୟାନଭାସ୍ ଉଚ୍ଚତା ସାଧାରଣତ ପ୍ରତିଛବି ଉଚ୍ଚତା ସହିତ ମେଳ ଖାଇବା ଉଚିତ୍।", + + "bitstream.edit.notifications.saved.content": "ଏହି ବିଟଷ୍ଟ୍ରିମରେ ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଞ୍ଚୟ ହୋଇଛି।", + + "bitstream.edit.notifications.saved.title": "ବିଟଷ୍ଟ୍ରିମ ସଞ୍ଚୟ ହୋଇଛି", + + "bitstream.edit.title": "ବିଟଷ୍ଟ୍ରିମ ସମ୍ପାଦନ କରନ୍ତୁ", + + "bitstream-request-a-copy.alert.canDownload1": "ଆପଣ ଏହି ଫାଇଲକୁ ପୂର୍ବରୁ ଆକ୍ସେସ୍ କରିପାରିଛନ୍ତି। ଯଦି ଆପଣ ଫାଇଲଟିକୁ ଡାଉନଲୋଡ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି, ତେବେ ", + + "bitstream-request-a-copy.alert.canDownload2": "ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", + + "bitstream-request-a-copy.header": "ଫାଇଲର ଏକ କପି ଅନୁରୋଧ କରନ୍ତୁ", + + "bitstream-request-a-copy.intro": "ନିମ୍ନଲିଖିତ ଆଇଟମ୍ ପାଇଁ ଏକ କପି ଅନୁରୋଧ କରିବାକୁ ନିମ୍ନଲିଖିତ ସୂଚନା ପ୍ରବେଶ କରନ୍ତୁ: ", + + "bitstream-request-a-copy.intro.bitstream.one": "ନିମ୍ନଲିଖିତ ଫାଇଲ ଅନୁରୋଧ କରାଯାଉଛି: ", + + "bitstream-request-a-copy.intro.bitstream.all": "ସମସ୍ତ ଫାଇଲ ଅନୁରୋଧ କରାଯାଉଛି। ", + + "bitstream-request-a-copy.name.label": "ନାମ *", + + "bitstream-request-a-copy.name.error": "ନାମ ଆବଶ୍ୟକ", + + "bitstream-request-a-copy.email.label": "ଆପଣଙ୍କର ଇମେଲ୍ ଠିକଣା *", + + "bitstream-request-a-copy.email.hint": "ଫାଇଲ ପଠାଇବା ପାଇଁ ଏହି ଇମେଲ୍ ଠିକଣା ବ୍ୟବହୃତ ହୁଏ।", + + "bitstream-request-a-copy.email.error": "ଦୟାକରି ଏକ ବୈଧ ଇମେଲ୍ ଠିକଣା ପ୍ରବେଶ କରନ୍ତୁ।", + + "bitstream-request-a-copy.allfiles.label": "ଫାଇଲଗୁଡିକ", + + "bitstream-request-a-copy.files-all-false.label": "କେବଳ ଅନୁରୋଧିତ ଫାଇଲ", + + "bitstream-request-a-copy.files-all-true.label": "ସମସ୍ତ ଫାଇଲ (ଏହି ଆଇଟମର) ସୀମିତ ଆକ୍ସେସ୍ ରେ", + + "bitstream-request-a-copy.message.label": "ବାର୍ତ୍ତା", + + "bitstream-request-a-copy.return": "ପଛକୁ", + + "bitstream-request-a-copy.submit": "କପି ଅନୁରୋଧ କରନ୍ତୁ", + + "bitstream-request-a-copy.submit.success": "ଆଇଟମ୍ ଅନୁରୋଧ ସଫଳତାର ସହିତ ଦାଖଲ ହୋଇଛି।", + + "bitstream-request-a-copy.submit.error": "ଆଇଟମ୍ ଅନୁରୋଧ ଦାଖଲ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି।", + + "bitstream-request-a-copy.access-by-token.warning": "ଆପଣ ଲେଖକ କିମ୍ବା ରିପୋଜିଟରୀ କର୍ମଚାରୀଙ୍କ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଥିବା ସୁରକ୍ଷିତ ଆକ୍ସେସ୍ ଲିଙ୍କ୍ ବ୍ୟବହାର କରି ଏହି ଆଇଟମ୍ ଦେଖୁଛନ୍ତି। ଅନନୁମୋଦିତ ଉପଭୋକ୍ତାଙ୍କୁ ଏହି ଲିଙ୍କ୍ ଅଂଶୀଦାର ନକରିବା ଗୁରୁତ୍ୱପୂର୍ଣ୍ଣ।", + + "bitstream-request-a-copy.access-by-token.expiry-label": "ଏହି ଲିଙ୍କ୍ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଥିବା ଆକ୍ସେସ୍ ବିତରଣ ହେବ", + + "bitstream-request-a-copy.access-by-token.expired": "ଏହି ଲିଙ୍କ୍ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଥିବା ଆକ୍ସେସ୍ ଆଉ ସମ୍ଭବ ନୁହେଁ। ଆକ୍ସେସ୍ ବିତରଣ ହୋଇଛି", + + "bitstream-request-a-copy.access-by-token.not-granted": "ଏହି ଲିଙ୍କ୍ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଥିବା ଆକ୍ସେସ୍ ସମ୍ଭବ ନୁହେଁ। ଆକ୍ସେସ୍ ପ୍ରଦାନ କରାଯାଇନାହିଁ, କିମ୍ବା ପ୍ରତ୍ୟାହାର କରାଯାଇଛି।", + + "bitstream-request-a-copy.access-by-token.re-request": "ନୂତନ ଆକ୍ସେସ୍ ପାଇଁ ଏକ ନୂତନ ଅନୁରୋଧ ଦାଖଲ କରିବାକୁ ସୀମିତ ଡାଉନଲୋଡ୍ ଲିଙ୍କ୍ ଅନୁସରଣ କରନ୍ତୁ।", + + "bitstream-request-a-copy.access-by-token.alt-text": "ଏହି ଆଇଟମ୍ ପାଇଁ ଆକ୍ସେସ୍ ଏକ ସୁରକ୍ଷିତ ଟୋକେନ୍ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଛି", + + "browse.back.all-results": "ସମସ୍ତ ବ୍ରାଉଜ୍ ଫଳାଫଳ", + + "browse.comcol.by.author": "ଲେଖକ ଦ୍ୱାରା", + + "browse.comcol.by.dateissued": "ପ୍ରକାଶନ ତାରିଖ ଦ୍ୱାରା", + + "browse.comcol.by.subject": "ବିଷୟ ଦ୍ୱାରା", + + "browse.comcol.by.srsc": "ବିଷୟ ବର୍ଗ ଦ୍ୱାରା", + + "browse.comcol.by.nsi": "ନରୱେଜିଆନ ସାଇନ୍ସ ସୂଚୀ ଦ୍ୱାରା", + + "browse.comcol.by.title": "ଶୀର୍ଷକ ଦ୍ୱାରା", + + "browse.comcol.head": "ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "browse.empty": "ଦେଖାଇବାକୁ କୌଣସି ଆଇଟମ୍ ନାହିଁ।", + + "browse.metadata.author": "ଲେଖକ", + + "browse.metadata.dateissued": "ପ୍ରକାଶନ ତାରିଖ", + + "browse.metadata.subject": "ବିଷୟ", + + "browse.metadata.title": "ଶୀର୍ଷକ", + + "browse.metadata.srsc": "ବିଷୟ ବର୍ଗ", + + "browse.metadata.author.breadcrumbs": "ଲେଖକ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "browse.metadata.dateissued.breadcrumbs": "ତାରିଖ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "browse.metadata.subject.breadcrumbs": "ବିଷୟ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "browse.metadata.srsc.breadcrumbs": "ବିଷୟ ବର୍ଗ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "browse.metadata.srsc.tree.description": "ଏକ ବିଷୟ ବାଛନ୍ତୁ ଏବଂ ଏହାକୁ ସନ୍ଧାନ ଫିଲ୍ଟର୍ ଭାବରେ ଯୋଡନ୍ତୁ", + + "browse.metadata.nsi.breadcrumbs": "ନରୱେଜିଆନ ସାଇନ୍ସ ସୂଚୀ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "browse.metadata.nsi.tree.description": "ଏକ ସୂଚୀ ବାଛନ୍ତୁ ଏବଂ ଏହାକୁ ସନ୍ଧାନ ଫିଲ୍ଟର୍ ଭାବରେ ଯୋଡନ୍ତୁ", + + "browse.metadata.title.breadcrumbs": "ଶୀର୍ଷକ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "browse.metadata.map": "ଭୌଗୋଳିକ ସ୍ଥାନ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "browse.metadata.map.breadcrumbs": "ଭୌଗୋଳିକ ସ୍ଥାନ ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "browse.metadata.map.count.items": "ଆଇଟମ୍", + + "pagination.next.button": "ପରବର୍ତ୍ତୀ", + + "pagination.previous.button": "ପୂର୍ବବର୍ତ୍ତୀ", + + "pagination.next.button.disabled.tooltip": "ଫଳାଫଳର ଆଉ କୌଣସି ପୃଷ୍ଠା ନାହିଁ", + + "pagination.page-number-bar": "ପୃଷ୍ଠା ନେଭିଗେସନ୍ ପାଇଁ ନିୟନ୍ତ୍ରଣ ବାର, ଆଇଡି ସହିତ ଆପେକ୍ଷିକ: ", + + "browse.startsWith": ", ଆରମ୍ଭ ହେଉଛି {{ startsWith }}", + + "browse.startsWith.choose_start": "(ଆରମ୍ଭ ବାଛନ୍ତୁ)", + + "browse.startsWith.choose_year": "(ବର୍ଷ ବାଛନ୍ତୁ)", + + "browse.startsWith.choose_year.label": "ପ୍ରକାଶନ ବର୍ଷ ବାଛନ୍ତୁ", + + "browse.startsWith.jump": "ବର୍ଷ କିମ୍ବା ମାସ ଦ୍ୱାରା ଫଳାଫଳ ଫିଲ୍ଟର୍ କରନ୍ତୁ", + + "browse.startsWith.months.april": "ଅପ୍ରେଲ୍", + + "browse.startsWith.months.august": "ଅଗଷ୍ଟ", + + "browse.startsWith.months.december": "ଡିସେମ୍ବର", + + "browse.startsWith.months.february": "ଫେବୃଆରୀ", + + "browse.startsWith.months.january": "ଜାନୁଆରୀ", + + "browse.startsWith.months.july": "ଜୁଲାଇ", + + "browse.startsWith.months.june": "ଜୁନ୍", + + "browse.startsWith.months.march": "ମାର୍ଚ୍ଚ", + + "browse.startsWith.months.may": "ମେ", + + "browse.startsWith.months.none": "(ମାସ ବାଛନ୍ତୁ)", + + "browse.startsWith.months.none.label": "ପ୍ରକାଶନ ମାସ ବାଛନ୍ତୁ", + + "browse.startsWith.months.november": "ନଭେମ୍ବର", + + "browse.startsWith.months.october": "ଅକ୍ଟୋବର", + + "browse.startsWith.months.september": "ସେପ୍ଟେମ୍ବର", + + "browse.startsWith.submit": "ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "browse.startsWith.type_date": "ତାରିଖ ଦ୍ୱାରା ଫଳାଫଳ ଫିଲ୍ଟର୍ କରନ୍ତୁ", + + "browse.startsWith.type_date.label": "କିମ୍ବା ଏକ ତାରିଖ (ବର୍ଷ-ମାସ) ଟାଇପ୍ କରନ୍ତୁ ଏବଂ ବ୍ରାଉଜ୍ ବଟନ୍ ଉପରେ କ୍ଲିକ୍ କରନ୍ତୁ", + + "browse.startsWith.type_text": "ପ୍ରଥମ କିଛି ଅକ୍ଷର ଟାଇପ୍ କରି ଫଳାଫଳ ଫିଲ୍ଟର୍ କରନ୍ତୁ", + + "browse.startsWith.input": "ଫିଲ୍ଟର୍", + + "browse.taxonomy.button": "ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "browse.title": "{{ field }} ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରୁଛନ୍ତି {{ startsWith }} {{ value }}", + + "browse.title.page": "{{ field }} ଦ୍ୱାରା ବ୍ରାଉଜ୍ କରୁଛନ୍ତି {{ value }}", + + "search.browse.item-back": "ଫଳାଫଳକୁ ଫେରନ୍ତୁ", + + "chips.remove": "ଚିପ୍ ଅପସାରଣ କରନ୍ତୁ", + + "claimed-approved-search-result-list-element.title": "ଅନୁମୋଦିତ", + + "claimed-declined-search-result-list-element.title": "ପ୍ରତ୍ୟାଖ୍ୟାତ, ଦାଖଲକାରୀଙ୍କ ପାଖକୁ ଫେରିଛି", + + "claimed-declined-task-search-result-list-element.title": "ପ୍ରତ୍ୟାଖ୍ୟାତ, ରିଭ୍ୟୁ ମ୍ୟାନେଜର୍ କାର୍ଯ୍ୟପ୍ରଣାଳୀକୁ ଫେରିଛି", + + "collection.create.breadcrumbs": "କଲେକ୍ସନ୍ ସୃଷ୍ଟି କରନ୍ତୁ", + + "collection.browse.logo": "ଏକ କଲେକ୍ସନ୍ ଲୋଗୋ ପାଇଁ ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "collection.create.head": "ଏକ କଲେକ୍ସନ୍ ସୃଷ୍ଟି କରନ୍ତୁ", + + "collection.create.notifications.success": "କଲେକ୍ସନ୍ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", + + "collection.create.sub-head": "କମ୍ୟୁନିଟି {{ parent }} ପାଇଁ ଏକ କଲେକ୍ସନ୍ ସୃଷ୍ଟି କରନ୍ତୁ", + + "collection.curate.header": "କଲେକ୍ସନ୍ କ୍ୟୁରେଟ୍ କରନ୍ତୁ: {{collection}}", + + "collection.delete.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "collection.delete.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", + + "collection.delete.processing": "ଡିଲିଟ୍ କରୁଛି", + + "collection.delete.head": "କଲେକ୍ସନ୍ ଡିଲିଟ୍ କରନ୍ତୁ", + + "collection.delete.notification.fail": "କଲେକ୍ସନ୍ ଡିଲିଟ୍ କରାଯାଇପାରିବ ନାହିଁ", + + "collection.delete.notification.success": "କଲେକ୍ସନ୍ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", + + "collection.delete.text": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ \"{{ dso }}\" କଲେକ୍ସନ୍ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି", + + "collection.edit.delete": "ଏହି କଲେକ୍ସନ୍ ଡିଲିଟ୍ କରନ୍ତୁ", + + "collection.edit.head": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ କରନ୍ତୁ", + + "collection.edit.breadcrumbs": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ କରନ୍ତୁ", + + "collection.edit.tabs.mapper.head": "ଆଇଟମ୍ ମ୍ୟାପର୍", + + "collection.edit.tabs.item-mapper.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - ଆଇଟମ୍ ମ୍ୟାପର୍", + + "collection.edit.item-mapper.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "collection.edit.item-mapper.collection": "କଲେକ୍ସନ୍: \"{{name}}\"", + + "collection.edit.item-mapper.confirm": "ବଚ୍ଛିତ ଆଇଟମ୍ ମ୍ୟାପ୍ କରନ୍ତୁ", + + "collection.edit.item-mapper.description": "ଏହା ହେଉଛି ଆଇଟମ୍ ମ୍ୟାପର୍ ସାଧନ ଯାହା କଲେକ୍ସନ୍ ପ୍ରଶାସକଙ୍କୁ ଅନ୍ୟ କଲେକ୍ସନ୍ ମଧ୍ୟରୁ ଆଇଟମ୍ ମ୍ୟାପ୍ କରିବାକୁ ଅନୁମତି ଦେଇଥାଏ। ଆପଣ ଅନ୍ୟ କଲେକ୍ସନ୍ ମଧ୍ୟରୁ ଆଇଟମ୍ ଖୋଜିପାରିବେ ଏବଂ ସେଗୁଡିକୁ ମ୍ୟାପ୍ କରିପାରିବେ, କିମ୍ବା ବର୍ତ୍ତମାନ ମ୍ୟାପ୍ ହୋଇଥିବା ଆଇଟମ୍ ତାଲିକା ବ୍ରାଉଜ୍ କରିପାରିବେ।", + + "collection.edit.item-mapper.head": "ଆଇଟମ୍ ମ୍ୟାପର୍ - ଅନ୍ୟ କଲେକ୍ସନ୍ ମଧ୍ୟରୁ ଆଇଟମ୍ ମ୍ୟାପ୍ କରନ୍ତୁ", + + "collection.edit.item-mapper.no-search": "ଖୋଜିବାକୁ ଏକ ପ୍ରଶ୍ନ ପ୍ରବେଶ କରନ୍ତୁ", + + "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} ଆଇଟମ୍ ମ୍ୟାପିଂରେ ତ୍ରୁଟି ଘଟିଛି।", + + "collection.edit.item-mapper.notifications.map.error.head": "ମ୍ୟାପିଂ ତ୍ରୁଟି", + + "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} ଆଇଟମ୍ ସଫଳତାର ସହିତ ମ୍ୟାପ୍ ହୋଇଛି।", + + "collection.edit.item-mapper.notifications.map.success.head": "ମ୍ୟାପିଂ ସମାପ୍ତ", + + "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} ଆଇଟମ୍ ମ୍ୟାପିଂ ଅପସାରଣରେ ତ୍ରୁଟି ଘଟିଛି।", + + "collection.edit.item-mapper.notifications.unmap.error.head": "ମ୍ୟାପିଂ ଅପସାରଣ ତ୍ରୁଟି", + + "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} ଆଇଟମ୍ ମ୍ୟାପିଂ ସଫଳତାର ସହିତ ଅପସାରଣ ହୋଇଛି।", + + "collection.edit.item-mapper.notifications.unmap.success.head": "ମ୍ୟାପିଂ ଅପସାରଣ ସମାପ୍ତ", + + "collection.edit.item-mapper.remove": "ବଚ୍ଛିତ ଆଇଟମ୍ ମ୍ୟାପିଂ ଅପସାରଣ କରନ୍ତୁ", + + "collection.edit.item-mapper.search-form.placeholder": "ଆଇଟମ୍ ଖୋଜନ୍ତୁ...", + + "collection.edit.item-mapper.tabs.browse": "ମ୍ୟାପ୍ ହୋଇଥିବା ଆଇଟମ୍ ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "collection.edit.item-mapper.tabs.map": "ନୂତନ ଆଇଟମ୍ ମ୍ୟାପ୍ କରନ୍ତୁ", + + "collection.edit.logo.delete.title": "ଲୋଗୋ ଡିଲିଟ୍ କରନ୍ତୁ", + + "collection.edit.logo.delete-undo.title": "ଡିଲିଟ୍ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", + + "collection.edit.logo.label": "କଲେକ୍ସନ୍ ଲୋଗୋ", + + "collection.edit.logo.notifications.add.error": "କଲେକ୍ସନ୍ ଲୋଗୋ ଅପଲୋଡ୍ ବିଫଳ ହୋଇଛି। ପୁନରାବୃତ୍ତି କରିବା ପୂର୍ବରୁ ଦୟାକରି ବିଷୟବସ୍ତୁ ଯାଞ୍ଚ କରନ୍ତୁ।", + + "collection.edit.logo.notifications.add.success": "କଲେକ୍ସନ୍ ଲୋଗୋ ଅପଲୋଡ୍ ସଫଳ ହୋଇଛି।", + + "collection.edit.logo.notifications.delete.success.title": "ଲୋଗୋ ଡିଲିଟ୍ ହୋଇଛି", + + "collection.edit.logo.notifications.delete.success.content": "କଲେକ୍ସନ୍ ଲୋଗୋ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", + + "collection.edit.logo.upload": "ଅପଲୋଡ୍ କରିବାକୁ ଏକ କଲେକ୍ସନ୍ ଲୋଗୋ ଡ୍ରପ୍ କରନ୍ତୁ", + + "collection.edit.notifications.success": "କଲେକ୍ସନ୍ ସଫଳତାର ସହିତ ସମ୍ପାଦିତ ହୋଇଛି", + + "collection.edit.return": "ପଛକୁ", + + "collection.edit.tabs.access-control.head": "ଆକ୍ସେସ୍ ନିୟନ୍ତ୍ରଣ", + + "collection.edit.tabs.access-control.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - ଆକ୍ସେସ୍ ନିୟନ୍ତ୍ରଣ", + + "collection.edit.tabs.curate.head": "କ୍ୟୁରେଟ୍", + + "collection.edit.tabs.curate.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - କ୍ୟୁରେଟ୍", + + "collection.edit.tabs.authorizations.head": "ଅନୁମତି", + + "collection.edit.tabs.authorizations.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - ଅନୁମତି", + + "collection.edit.item.authorizations.load-bundle-button": "ଅଧିକ ବଣ୍ଡଲ୍ ଲୋଡ୍ କରନ୍ତୁ", + + "collection.edit.item.authorizations.load-more-button": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", + + "collection.edit.item.authorizations.show-bitstreams-button": "ବଣ୍ଡଲ୍ ପାଇଁ ବିଟଷ୍ଟ୍ରିମ୍ ନୀତି ଦେଖାନ୍ତୁ", + + "collection.edit.tabs.metadata.head": "ମେଟାଡାଟା ସମ୍ପାଦନ କରନ୍ତୁ", + + "collection.edit.tabs.metadata.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - ମେଟାଡାଟା", + + "collection.edit.tabs.roles.head": "ଭୂମିକା ନ୍ୟସ୍ତ କରନ୍ତୁ", + + "collection.edit.tabs.roles.title": "କଲେକ୍ସନ୍ ସମ୍ପାଦନ - ଭୂମିକା", + + "collection.edit.tabs.source.external": "ଏହି କଲେକ୍ସନ୍ ଏକ ବାହ୍ୟ ଉତ୍ସରୁ ଏହାର ବିଷୟବସ୍ତୁ ହାର୍ଭେଷ୍ଟ୍ କରେ", + + "collection.edit.tabs.source.form.errors.oaiSource.required": "ଆପଣ ଲକ୍ଷ୍ୟ କଲେକ୍ସନ୍ର ଏକ ସେଟ୍ ଆଇଡି ପ୍ରଦାନ କରିବା ଆବଶ୍ୟକ।", + + "collection.edit.tabs.source.form.harvestType": "ହାର୍ଭେଷ୍ଟ୍ ହେଉଥିବା ବିଷୟବସ୍ତୁ", + + "collection.edit.tabs.source.form.head": "ଏକ ବାହ୍ୟ ଉତ୍ସ କନଫିଗର୍ କରନ୍ତୁ", + + "collection.edit.tabs.source.form.metadataConfigId": "ମେଟାଡାଟା ଫର୍ମାଟ୍", + + "collection.edit.tabs.source.form.oaiSetId": "OAI ସ୍ପେସିଫିକ୍ ସେଟ୍ ଆଇଡି", + + "collection.edit.tabs.source.form.oaiSource": "OAI ପ୍ରୋଭାଇଡର୍", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "ମେଟାଡାଟା ଏବଂ ବିଟଷ୍ଟ୍ରିମ୍ ହାର୍ଭେଷ୍ଟ୍ କରନ୍ତୁ (ORE ସମର୍ଥନ ଆବଶ୍ୟକ)", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "ମେଟାଡାଟା ଏବଂ ବିଟଷ୍ଟ୍ରିମ୍ ରେଫରେନ୍ସ୍ ହାର୍ଭେଷ୍ଟ୍ କରନ୍ତୁ (ORE ସମର୍ଥନ ଆବଶ୍ୟକ)", + + "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "କେବଳ ମେଟାଡାଟା ହାର୍ଭେଷ୍ଟ୍ କରନ୍ତୁ", + + "collection.edit.tabs.source.head": "ବିଷୟବସ୍ତୁ ଉତ୍ସ", + + "collection.edit.tabs.source.notifications.discarded.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଛି। ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକୁ ପୁନର୍ବ୍ଯବହାର କରିବାକୁ 'ଅଣ୍ଡୁ' ବଟନ୍ ଉପରେ କ୍ଲିକ୍ କରନ୍ତୁ।", + + "collection.edit.tabs.source.notifications.discarded.title": "ପରିବର୍ତ୍ତନ ପରିତ୍ୟାଗ କରାଯାଇଛି", + "collection.edit.tabs.source.notifications.invalid.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ସଂରକ୍ଷିତ ହୋଇନାହିଁ। ସଂରକ୍ଷଣ କରିବା ପୂର୍ବରୁ ଦୟାକରି ନିଶ୍ଚିତ କରନ୍ତୁ ଯେ ସମସ୍ତ କ୍ଷେତ୍ରଗୁଡ଼ିକ ବୈଧ ଅଛି।", + "collection.edit.tabs.source.notifications.invalid.title": "ମେଟାଡାଟା ଅବୈଧ", + "collection.edit.tabs.source.notifications.saved.content": "ଏହି ସଂଗ୍ରହର ବିଷୟବସ୍ତୁ ସ୍ରୋତକୁ ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ସଂରକ୍ଷିତ ହୋଇଛି।", + "collection.edit.tabs.source.notifications.saved.title": "ବିଷୟବସ୍ତୁ ସ୍ରୋତ ସଂରକ୍ଷିତ", + "collection.edit.tabs.source.title": "ସଂଗ୍ରହ ସଂପାଦନା - ବିଷୟବସ୍ତୁ ସ୍ରୋତ", + "collection.edit.template.add-button": "ଯୋଡନ୍ତୁ", + "collection.edit.template.breadcrumbs": "ଆଇଟମ ଟେମ୍ପଲେଟ୍", + "collection.edit.template.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "collection.edit.template.delete-button": "ଡିଲିଟ୍ କରନ୍ତୁ", + "collection.edit.template.edit-button": "ସଂପାଦନ କରନ୍ତୁ", + "collection.edit.template.error": "ଟେମ୍ପଲେଟ୍ ଆଇଟମ୍ ପ୍ରାପ୍ତ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + "collection.edit.template.head": "\"{{ collection }}\" ସଂଗ୍ରହ ପାଇଁ ଟେମ୍ପଲେଟ୍ ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + "collection.edit.template.label": "ଟେମ୍ପଲେଟ୍ ଆଇଟମ୍", + "collection.edit.template.loading": "ଟେମ୍ପଲେଟ୍ ଆଇଟମ୍ ଲୋଡ୍ ହେଉଛି...", + "collection.edit.template.notifications.delete.error": "ଆଇଟମ୍ ଟେମ୍ପଲେଟ୍ ଡିଲିଟ୍ କରିବାରେ ବିଫଳ ହେଲା", + "collection.edit.template.notifications.delete.success": "ଆଇଟମ୍ ଟେମ୍ପଲେଟ୍ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", + "collection.edit.template.title": "ଟେମ୍ପଲେଟ୍ ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + "collection.form.abstract": "ସଂକ୍ଷିପ୍ତ ବର୍ଣ୍ଣନା", + "collection.form.description": "ପରିଚୟାତ୍ମକ ପାଠ୍ୟ (HTML)", + "collection.form.errors.title.required": "ଦୟାକରି ଏକ ସଂଗ୍ରହ ନାମ ପ୍ରବେଶ କରନ୍ତୁ", + "collection.form.license": "ଲାଇସେନ୍ସ", + "collection.form.provenance": "ଉତ୍ପତ୍ତି", + "collection.form.rights": "କପିରାଇଟ୍ ପାଠ୍ୟ (HTML)", + "collection.form.tableofcontents": "ଖବର (HTML)", + "collection.form.title": "ନାମ", + "collection.form.entityType": "ସଂସ୍ଥା ପ୍ରକାର", + "collection.listelement.badge": "ସଂଗ୍ରହ", + "collection.logo": "ସଂଗ୍ରହ ଲୋଗୋ", + "collection.page.browse.search.head": "ସନ୍ଧାନ କରନ୍ତୁ", + "collection.page.edit": "ଏହି ସଂଗ୍ରହକୁ ସଂପାଦନ କରନ୍ତୁ", + "collection.page.handle": "ଏହି ସଂଗ୍ରହ ପାଇଁ ସ୍ଥାୟୀ URI", + "collection.page.license": "ଲାଇସେନ୍ସ", + "collection.page.news": "ଖବର", + "collection.page.options": "ବିକଳ୍ପଗୁଡ଼ିକ", + "collection.search.breadcrumbs": "ସନ୍ଧାନ କରନ୍ତୁ", + "collection.search.results.head": "ସନ୍ଧାନ ଫଳାଫଳ", + "collection.select.confirm": "ଚୟନିତକୁ ନିଶ୍ଚିତ କରନ୍ତୁ", + "collection.select.empty": "ଦେଖାଇବା ପାଇଁ କୌଣସି ସଂଗ୍ରହ ନାହିଁ", + "collection.select.table.selected": "ଚୟନିତ ସଂଗ୍ରହଗୁଡ଼ିକ", + "collection.select.table.select": "ସଂଗ୍ରହ ଚୟନ କରନ୍ତୁ", + "collection.select.table.deselect": "ସଂଗ୍ରହ ଚୟନ ବାତିଲ୍ କରନ୍ତୁ", + "collection.select.table.title": "ଶୀର୍ଷକ", + "collection.source.controls.head": "ହାର୍ଭେଷ୍ଟ ନିୟନ୍ତ୍ରଣ", + "collection.source.controls.test.submit.error": "ସେଟିଂସମୂହ ପରୀକ୍ଷା କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", + "collection.source.controls.test.failed": "ସେଟିଂସମୂହ ପରୀକ୍ଷା କରିବାର ସ୍କ୍ରିପ୍ଟ ବିଫଳ ହୋଇଛି", + "collection.source.controls.test.completed": "ସେଟିଂସମୂହ ପରୀକ୍ଷା କରିବାର ସ୍କ୍ରିପ୍ଟ ସଫଳତାର ସହିତ ସମାପ୍ତ ହୋଇଛି", + "collection.source.controls.test.submit": "ବିନ୍ୟାସ ପରୀକ୍ଷା କରନ୍ତୁ", + "collection.source.controls.test.running": "ବିନ୍ୟାସ ପରୀକ୍ଷା ଚାଲିଛି...", + "collection.source.controls.import.submit.success": "ଆମଦାନୀ ସଫଳତାର ସହିତ ଆରମ୍ଭ ହୋଇଛି", + "collection.source.controls.import.submit.error": "ଆମଦାନୀ ଆରମ୍ଭ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", + "collection.source.controls.import.submit": "ବର୍ତ୍ତମାନ ଆମଦାନୀ କରନ୍ତୁ", + "collection.source.controls.import.running": "ଆମଦାନୀ ଚାଲିଛି...", + "collection.source.controls.import.failed": "ଆମଦାନୀ ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + "collection.source.controls.import.completed": "ଆମଦାନୀ ସମାପ୍ତ ହୋଇଛି", + "collection.source.controls.reset.submit.success": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ ସଫଳତାର ସହିତ ଆରମ୍ଭ ହୋଇଛି", + "collection.source.controls.reset.submit.error": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ ଆରମ୍ଭ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", + "collection.source.controls.reset.failed": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + "collection.source.controls.reset.completed": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ ସମାପ୍ତ ହୋଇଛି", + "collection.source.controls.reset.submit": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ କରନ୍ତୁ", + "collection.source.controls.reset.running": "ରିସେଟ୍ ଏବଂ ପୁନର୍ବାର ଆମଦାନୀ ଚାଲିଛି...", + "collection.source.controls.harvest.status": "ହାର୍ଭେଷ୍ଟ ସ୍ଥିତି:", + "collection.source.controls.harvest.start": "ହାର୍ଭେଷ୍ଟ ଆରମ୍ଭ ସମୟ:", + "collection.source.controls.harvest.last": "ଶେଷ ଥର ହାର୍ଭେଷ୍ଟ ହୋଇଥିଲା:", + "collection.source.controls.harvest.message": "ହାର୍ଭେଷ୍ଟ ସୂଚନା:", + "collection.source.controls.harvest.no-information": "N/A", + "collection.source.update.notifications.error.content": "ପ୍ରଦାନ କରାଯାଇଥିବା ସେଟିଂସମୂହ ପରୀକ୍ଷା କରାଯାଇଛି ଏବଂ କାମ କରିନାହିଁ।", + "collection.source.update.notifications.error.title": "ସର୍ଭର ତ୍ରୁଟି", + "communityList.breadcrumbs": "କମ୍ୟୁନିଟି ତାଲିକା", + "communityList.tabTitle": "କମ୍ୟୁନିଟି ତାଲିକା", + "communityList.title": "କମ୍ୟୁନିଟିଗୁଡ଼ିକର ତାଲିକା", + "communityList.showMore": "ଅଧିକ ଦେଖାନ୍ତୁ", + "communityList.expand": "{{ name }} ବିସ୍ତାର କରନ୍ତୁ", + "communityList.collapse": "{{ name }} ସଂକୋଚନ କରନ୍ତୁ", + "community.browse.logo": "ଏକ କମ୍ୟୁନିଟି ଲୋଗୋ ପାଇଁ ବ୍ରାଉଜ୍ କରନ୍ତୁ", + "community.subcoms-cols.breadcrumbs": "ଉପ-କମ୍ୟୁନିଟି ଏବଂ ସଂଗ୍ରହଗୁଡ଼ିକ", + "community.create.breadcrumbs": "କମ୍ୟୁନିଟି ସୃଷ୍ଟି କରନ୍ତୁ", + "community.create.head": "ଏକ କମ୍ୟୁନିଟି ସୃଷ୍ଟି କରନ୍ତୁ", + "community.create.notifications.success": "କମ୍ୟୁନିଟି ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", + "community.create.sub-head": "{{ parent }} କମ୍ୟୁନିଟି ପାଇଁ ଏକ ଉପ-କମ୍ୟୁନିଟି ସୃଷ୍ଟି କରନ୍ତୁ", + "community.curate.header": "କମ୍ୟୁନିଟି କ୍ୟୁରେଟ୍ କରନ୍ତୁ: {{community}}", + "community.delete.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "community.delete.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", + "community.delete.processing": "ଡିଲିଟ୍ ହେଉଛି...", + "community.delete.head": "କମ୍ୟୁନିଟି ଡିଲିଟ୍ କରନ୍ତୁ", + "community.delete.notification.fail": "କମ୍ୟୁନିଟି ଡିଲିଟ୍ କରାଯାଇପାରିବ ନାହିଁ", + "community.delete.notification.success": "କମ୍ୟୁନିଟି ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", + "community.delete.text": "ଆପଣ ନିଶ୍ଚିତ କି \"{{ dso }}\" କମ୍ୟୁନିଟିକୁ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", + "community.edit.delete": "ଏହି କମ୍ୟୁନିଟିକୁ ଡିଲିଟ୍ କରନ୍ତୁ", + "community.edit.head": "କମ୍ୟୁନିଟି ସଂପାଦନ କରନ୍ତୁ", + "community.edit.breadcrumbs": "କମ୍ୟୁନିଟି ସଂପାଦନ କରନ୍ତୁ", + "community.edit.logo.delete.title": "ଲୋଗୋ ଡିଲିଟ୍ କରନ୍ତୁ", + "community-collection.edit.logo.delete.title": "ଡିଲିଟ୍ ନିଶ୍ଚିତ କରନ୍ତୁ", + "community.edit.logo.delete-undo.title": "ଡିଲିଟ୍ ବାତିଲ୍ କରନ୍ତୁ", + "community-collection.edit.logo.delete-undo.title": "ଡିଲିଟ୍ ବାତିଲ୍ କରନ୍ତୁ", + "community.edit.logo.label": "କମ୍ୟୁନିଟି ଲୋଗୋ", + "community.edit.logo.notifications.add.error": "କମ୍ୟୁନିଟି ଲୋଗୋ ଅପଲୋଡ୍ କରିବାରେ ବିଫଳ ହେଲା। ପୁନର୍ବାର ଚେଷ୍ଟା କରିବା ପୂର୍ବରୁ ଦୟାକରି ବିଷୟବସ୍ତୁ ଯାଞ୍ଚ କରନ୍ତୁ।", + "community.edit.logo.notifications.add.success": "କମ୍ୟୁନିଟି ଲୋଗୋ ଅପଲୋଡ୍ ସଫଳ", + "community.edit.logo.notifications.delete.success.title": "ଲୋଗୋ ଡିଲିଟ୍ ହୋଇଛି", + "community.edit.logo.notifications.delete.success.content": "କମ୍ୟୁନିଟିର ଲୋଗୋ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", + "community.edit.logo.notifications.delete.error.title": "ଲୋଗୋ ଡିଲିଟ୍ କରିବାରେ ତ୍ରୁଟି", + "community.edit.logo.upload": "ଅପଲୋଡ୍ କରିବାକୁ ଏକ କମ୍ୟୁନିଟି ଲୋଗୋ ଡ୍ରପ୍ କରନ୍ତୁ", + "community.edit.notifications.success": "କମ୍ୟୁନିଟି ସଫଳତାର ସହିତ ସଂପାଦିତ ହୋଇଛି", + "community.edit.notifications.unauthorized": "ଏହି ପରିବର୍ତ୍ତନ କରିବାକୁ ଆପଣଙ୍କର ଅଧିକାର ନାହିଁ", + "community.edit.notifications.error": "କମ୍ୟୁନିଟି ସଂପାଦନ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + "community.edit.return": "ପଛକୁ ଯାଆନ୍ତୁ", + "community.edit.tabs.curate.head": "କ୍ୟୁରେଟ୍", + "community.edit.tabs.curate.title": "କମ୍ୟୁନିଟି ସଂପାଦନା - କ୍ୟୁରେଟ୍", + "community.edit.tabs.access-control.head": "ପ୍ରବେଶ ନିୟନ୍ତ୍ରଣ", + "community.edit.tabs.access-control.title": "କମ୍ୟୁନିଟି ସଂପାଦନା - ପ୍ରବେଶ ନିୟନ୍ତ୍ରଣ", + "community.edit.tabs.metadata.head": "ମେଟାଡାଟା ସଂପାଦନ କରନ୍ତୁ", + "community.edit.tabs.metadata.title": "କମ୍ୟୁନିଟି ସଂପାଦନା - ମେଟାଡାଟା", + "community.edit.tabs.roles.head": "ଭୂମିକା ନ୍ୟସ୍ତ କରନ୍ତୁ", + "community.edit.tabs.roles.title": "କମ୍ୟୁନିଟି ସଂପାଦନା - ଭୂମିକା", + "community.edit.tabs.authorizations.head": "ଅନୁମୋଦନ", + "community.edit.tabs.authorizations.title": "କମ୍ୟୁନିଟି ସଂପାଦନା - ଅନୁମୋଦନ", + "community.listelement.badge": "କମ୍ୟୁନିଟି", + "community.logo": "କମ୍ୟୁନିଟି ଲୋଗୋ", + "comcol-role.edit.no-group": "କିଛି ନାହିଁ", + "comcol-role.edit.create": "ସୃଷ୍ଟି କରନ୍ତୁ", + "comcol-role.edit.create.error.title": "'{{ role }}' ଭୂମିକା ପାଇଁ ଏକ ଗୋଷ୍ଠୀ ସୃଷ୍ଟି କରିବାରେ ବିଫଳ ହେଲା", + "comcol-role.edit.restrict": "ସୀମିତ କରନ୍ତୁ", + "comcol-role.edit.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", + "comcol-role.edit.delete.error.title": "'{{ role }}' ଭୂମିକାର ଗୋଷ୍ଠୀ ଡିଲିଟ୍ କରିବାରେ ବିଫଳ ହେଲା", + "comcol-role.edit.community-admin.name": "ପ୍ରଶାସକଗଣ", + "comcol-role.edit.collection-admin.name": "ପ୍ରଶାସକଗଣ", + "comcol-role.edit.community-admin.description": "କମ୍ୟୁନିଟି ପ୍ରଶାସକଗଣ ଉପ-କମ୍ୟୁନିଟି କିମ୍ବା ସଂଗ୍ରହ ସୃଷ୍ଟି କରିପାରିବେ, ଏବଂ ସେହି ଉପ-କମ୍ୟୁନିଟି କିମ୍ବା ସଂଗ୍ରହଗୁଡ଼ିକୁ ପରିଚାଳନା କିମ୍ବା ପରିଚାଳନା ନ୍ୟସ୍ତ କରିପାରିବେ। ଏହା ଛଡା, ସେମାନେ ନିଷ୍ପତି ନେଇପାରିବେ ଯେ କେଉଁମାନେ କୌଣସି ଉପ-ସଂଗ୍ରହକୁ ଆଇଟମ୍ ଦାଖଲ କରିପାରିବେ, ଆଇଟମ୍ ମେଟାଡାଟା ସଂପାଦନ କରିପାରିବେ (ଦାଖଲ ପରେ), ଏବଂ ଅନ୍ୟ ସଂଗ୍ରହରୁ ବିଦ୍ୟମାନ ଆଇଟମ୍ ଯୋଡନ୍ତୁ (ମାନ୍ୟତା ପାଇଁ)।", + "comcol-role.edit.collection-admin.description": "ସଂଗ୍ରହ ପ୍ରଶାସକଗଣ ନିଷ୍ପତି ନିଅନ୍ତି ଯେ କେଉଁମାନେ ସଂଗ୍ରହକୁ ନୂତନ ଆଇଟମ୍ ଦାଖଲ କରିପାରିବେ, ଆଇଟମ୍ ମେଟାଡାଟା ସଂପାଦନ କରିପାରିବେ (ଦାଖଲ ପରେ), ଏବଂ ଅନ୍ୟ ସଂଗ୍ରହରୁ ବିଦ୍ୟମାନ ଆଇଟମ୍ ଯୋଡନ୍ତୁ (ମାନ୍ୟତା ପାଇଁ)।", + "comcol-role.edit.submitters.name": "ଦାଖଲକାରୀଗଣ", + "comcol-role.edit.submitters.description": "E-ଲୋକ ଏବଂ ଗୋଷ୍ଠୀଗୁଡ଼ିକ ଯାହାଙ୍କର ଏହି ସଂଗ୍ରହକୁ ନୂତନ ଆଇଟମ୍ ଦାଖଲ କରିବାର ଅନୁମତି ଅଛି।", + "comcol-role.edit.item_read.name": "ଡିଫଲ୍ଟ ଆଇଟମ୍ ପଢିବା ପ୍ରବେଶ", + "comcol-role.edit.item_read.description": "E-ଲୋକ ଏବଂ ଗୋଷ୍ଠୀଗୁଡ଼ିକ ଯାହାଙ୍କର ଏହି ସଂଗ୍ରହକୁ ଦାଖଲ କରାଯାଇଥିବା ନୂତନ ଆଇଟମ୍ ପଢିବାର ଅନୁମତି ଅଛି। ଏହି ଭୂମିକାରେ ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ପ୍ରତ୍ୟାବର୍ତ୍ତନୀ ନୁହେଁ। ସିଷ୍ଟମରେ ଥିବା ବିଦ୍ୟମାନ ଆଇଟମ୍ ସେମାନଙ୍କ ପାଇଁ ଦୃଶ୍ୟମାନ ହେବ ଯେଉଁମାନଙ୍କର ସେମାନଙ୍କର ଯୋଗଦାନ ସମୟରେ ପଢିବାର ପ୍ରବେଶ ଥିଲା।", + "comcol-role.edit.item_read.anonymous-group": "ଆଗମନ ଆଇଟମ୍ ପାଇଁ ଡିଫଲ୍ଟ ପଢିବା ବର୍ତ୍ତମାନ ବେନାମୀ ଭାବରେ ସେଟ୍ ହୋଇଛି।", + "comcol-role.edit.bitstream_read.name": "ଡିଫଲ୍ଟ ବିଟଷ୍ଟ୍ରିମ୍ ପଢିବା ପ୍ରବେଶ", + "comcol-role.edit.bitstream_read.description": "E-ଲୋକ ଏବଂ ଗୋଷ୍ଠୀଗୁଡ଼ିକ ଯାହାଙ୍କର ଏହି ସଂଗ୍ରହକୁ ଦାଖଲ କରାଯାଇଥିବା ନୂତନ ବିଟଷ୍ଟ୍ରିମ୍ ପଢିବାର ଅନୁମତି ଅଛି। ଏହି ଭୂମିକାରେ ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ପ୍ରତ୍ୟାବର୍ତ୍ତନୀ ନୁହେଁ। ସିଷ୍ଟମରେ ଥିବା ବିଦ୍ୟମାନ ବିଟଷ୍ଟ୍ରିମ୍ ସେମାନଙ୍କ ପାଇଁ ଦୃଶ୍ୟମାନ ହେବ ଯେଉଁମାନଙ୍କର ସେମାନଙ୍କର ଯୋଗଦାନ ସମୟରେ ପଢିବାର ପ୍ରବେଶ ଥିଲା।", + "comcol-role.edit.bitstream_read.anonymous-group": "ଆଗମନ ବିଟଷ୍ଟ୍ରିମ୍ ପାଇଁ ଡିଫଲ୍ଟ ପଢିବା ବର୍ତ୍ତମାନ ବେନାମୀ ଭାବରେ ସେଟ୍ ହୋଇଛି।", + "comcol-role.edit.editor.name": "ସଂପାଦକଗଣ", + "comcol-role.edit.editor.description": "ସଂପାଦକଗଣ ଆଗମନ ଦାଖଲର ମେଟାଡାଟା ସଂପାଦନ କରିପାରିବେ, ଏବଂ ତା'ପରେ ସେଗୁଡ଼ିକୁ ଗ୍ରହଣ କିମ୍ବା ପ୍ରତ୍ୟାଖ୍ୟାନ କରିପାରିବେ।", + "comcol-role.edit.finaleditor.name": "ଅନ୍ତିମ ସଂପାଦକଗଣ", + "comcol-role.edit.finaleditor.description": "ଅନ୍ତିମ ସଂପାଦକଗଣ ଆଗମନ ଦାଖଲର ମେଟାଡାଟା ସଂପାଦନ କରିପାରିବେ, କିନ୍ତୁ ସେଗୁଡ଼ିକୁ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିପାରିବେ ନାହିଁ।", + "comcol-role.edit.reviewer.name": "ସମୀକ୍ଷକଗଣ", + "comcol-role.edit.reviewer.description": "ସମୀକ୍ଷକଗଣ ଆଗମନ ଦାଖଲକୁ ଗ୍ରହଣ କିମ୍ବା ପ୍ରତ୍ୟାଖ୍ୟାନ କରିପାରିବେ। ତଥାପି, ସେମାନେ ଦାଖଲର ମେଟାଡାଟା ସଂପାଦନ କରିପାରିବେ ନାହିଁ।", + "comcol-role.edit.scorereviewers.name": "ସ୍କୋର ସମୀକ୍ଷକଗଣ", + "comcol-role.edit.scorereviewers.description": "ସମୀକ୍ଷକଗଣ ଆଗମନ ଦାଖଲକୁ ଏକ ସ୍କୋର ଦେଇପାରିବେ, ଏହା ନିର୍ଣ୍ଣୟ କରିବ ଯେ ଦାଖଲ ପ୍ରତ୍ୟାଖ୍ୟାନ ହେବ କି ନାହିଁ।", + "community.form.abstract": "ସଂକ୍ଷିପ୍ତ ବର୍ଣ୍ଣନା", + "community.form.description": "ପରିଚୟାତ୍ମକ ପାଠ୍ୟ (HTML)", + "community.form.errors.title.required": "ଦୟାକରି ଏକ କମ୍ୟୁନିଟି ନାମ ପ୍ରବେଶ କରନ୍ତୁ", + "community.form.rights": "କପିରାଇଟ୍ ପାଠ୍ୟ (HTML)", + "community.form.tableofcontents": "ଖବର (HTML)", + "community.form.title": "ନାମ", + "community.page.edit": "ଏହି କମ୍ୟୁନିଟିକୁ ସଂପାଦନ କରନ୍ତୁ", + "community.page.handle": "ଏହି କମ୍ୟୁନିଟି ପାଇଁ ସ୍ଥାୟୀ URI", + "community.page.license": "ଲାଇସେନ୍ସ", + "community.page.news": "ଖବର", + "community.page.options": "ବିକଳ୍ପଗୁଡ଼ିକ", + "community.all-lists.head": "ଉପ-କମ୍ୟୁନିଟି ଏବଂ ସଂଗ୍ରହଗୁଡ଼ିକ", + "community.search.breadcrumbs": "ସନ୍ଧାନ କରନ୍ତୁ", + "community.search.results.head": "ସନ୍ଧାନ ଫଳାଫଳ", + "community.sub-collection-list.head": "ଏହି କମ୍ୟୁନିଟିରେ ସଂଗ୍ରହଗୁଡ଼ିକ", + "community.sub-community-list.head": "ଏହି କମ୍ୟୁନିଟିରେ କମ୍ୟୁନିଟିଗୁଡ଼ିକ", + "cookies.consent.accept-all": "ସମସ୍ତ ଗ୍ରହଣ କରନ୍ତୁ", + "cookies.consent.accept-selected": "ଚୟନିତ ଗ୍ରହଣ କରନ୍ତୁ", + "cookies.consent.app.opt-out.description": "ଏହି ଆପ୍ ଡିଫଲ୍ଟ ଭାବରେ ଲୋଡ୍ ହୋଇଛି (କିନ୍ତୁ ଆପଣ ବାହାରିପାରିବେ)", + "cookies.consent.app.opt-out.title": "(ବାହାରିବା)", + "cookies.consent.app.purpose": "ଉଦ୍ଦେଶ୍ୟ", + "cookies.consent.app.required.description": "ଏହି ଆପ୍ଲିକେସନ୍ ସର୍ବଦା ଆବଶ୍ୟକ", + "cookies.consent.app.required.title": "(ସର୍ବଦା ଆବଶ୍ୟକ)", + "cookies.consent.update": "ଆପଣଙ୍କର ଶେଷ ପରିଦର୍ଶନ ପରଠାରୁ ପରିବର୍ତ୍ତନ ହୋଇଛି, ଦୟାକରି ଆପଣଙ୍କର ସମ୍ମତି ଅଦ୍ୟତନ କରନ୍ତୁ।", + "cookies.consent.close": "ବନ୍ଦ କରନ୍ତୁ", + "cookies.consent.decline": "ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", + "cookies.consent.decline-all": "ସମସ୍ତ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", + "cookies.consent.ok": "ଠିକ୍ ଅଛି", + "cookies.consent.save": "ସଂରକ୍ଷଣ କରନ୍ତୁ", + "cookies.consent.content-notice.description": "ଆମେ ନିମ୍ନଲିଖିତ ଉଦ୍ଦେଶ୍ୟ ପାଇଁ ଆପଣଙ୍କର ବ୍ୟକ୍ତିଗତ ସୂଚନା ସଂଗ୍ରହ ଏବଂ ପ୍ରକ୍ରିୟା କରୁ: {purposes}", + "cookies.consent.content-notice.learnMore": "କଷ୍ଟମାଇଜ୍ କରନ୍ତୁ", + "cookies.consent.content-modal.description": "ଏଠାରେ ଆପଣ ଆମେ ଆପଣଙ୍କ ବିଷୟରେ ଯାହା ସଂଗ୍ରହ କରୁ ତାହା ଦେଖିପାରିବେ ଏବଂ କଷ୍ଟମାଇଜ୍ କରିପାରିବେ।", + "cookies.consent.content-modal.privacy-policy.name": "ଗୋପନୀୟତା ନୀତି", + "cookies.consent.content-modal.privacy-policy.text": "ଅଧିକ ଜାଣିବା ପାଇଁ, ଦୟାକରି ଆମର {privacyPolicy} ପଢନ୍ତୁ।", + "cookies.consent.content-modal.no-privacy-policy.text": "", + "cookies.consent.content-modal.title": "ଆମେ ଯାହା ସଂଗ୍ରହ କରୁ", + "cookies.consent.app.title.accessibility": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍", + "cookies.consent.app.description.accessibility": "ଆପଣଙ୍କର ଅଭିଗମ୍ୟତା ସେଟିଂସ୍ ସ୍ଥାନୀୟ ଭାବରେ ସଂରକ୍ଷଣ ପାଇଁ ଆବଶ୍ୟକ", + "cookies.consent.app.title.authentication": "ପ୍ରାମାଣିକରଣ", + "cookies.consent.app.description.authentication": "ଆପଣଙ୍କୁ ସାଇନ୍ ଇନ୍ କରିବା ପାଇଁ ଆବଶ୍ୟକ", + "cookies.consent.app.title.correlation-id": "ସମ୍ପର୍କ ଆଇଡି", + "cookies.consent.app.description.correlation-id": "ସହାୟତା/ଡିବଗ୍ ଉଦ୍ଦେଶ୍ୟ ପାଇଁ ବ୍ୟାକେଣ୍ଡ ଲଗ୍ ରେ ଆପଣଙ୍କର ସେସନ୍ ଟ୍ରାକ୍ କରିବା ପାଇଁ ଆମକୁ ଅନୁମତି ଦିଅନ୍ତୁ", + "cookies.consent.app.title.preferences": "ପସନ୍ଦ", + "cookies.consent.app.description.preferences": "ଆପଣଙ୍କର ପସନ୍ଦ ସଂରକ୍ଷଣ ପାଇଁ ଆବଶ୍ୟକ", + "cookies.consent.app.title.acknowledgement": "ସ୍ୱୀକୃତି", + "cookies.consent.app.description.acknowledgement": "ଆପଣଙ୍କର ସ୍ୱୀକୃତି ଏବଂ ସମ୍ମତି ସଂରକ୍ଷଣ ପାଇଁ ଆବଶ୍ୟକ", + "cookies.consent.app.title.google-analytics": "ଗୁଗଲ୍ ଆନାଲିଟିକ୍ସ୍", + "cookies.consent.app.description.google-analytics": "ଆମକୁ ସ୍ଥିତିକ ତଥ୍ୟ ଟ୍ରାକ୍ କରିବା ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ", + "cookies.consent.app.title.google-recaptcha": "ଗୁଗଲ୍ reCaptcha", + "cookies.consent.app.description.google-recaptcha": "ଆମେ ରେଜିଷ୍ଟ୍ରେସନ୍ ଏବଂ ପାସୱାର୍ଡ୍ ପୁନରୁଦ୍ଧାର ସମୟରେ ଗୁଗଲ୍ reCAPTCHA ସେବା ବ୍ୟବହାର କରୁ", + "cookies.consent.app.title.matomo": "ମାଟୋମୋ", + "cookies.consent.app.description.matomo": "ଆମକୁ ସ୍ଥିତିକ ତଥ୍ୟ ଟ୍ରାକ୍ କରିବା ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ", + "cookies.consent.purpose.functional": "କାର୍ଯ୍ୟାତ୍ମକ", + "cookies.consent.purpose.statistical": "ସ୍ଥିତିକ", + "cookies.consent.purpose.registration-password-recovery": "ରେଜିଷ୍ଟ୍ରେସନ୍ ଏବଂ ପାସୱାର୍ଡ୍ ପୁନରୁଦ୍ଧାର", + "cookies.consent.purpose.sharing": "ଅଂଶୀଦାର କରିବା", + "curation-task.task.citationpage.label": "ଉଦ୍ଧୃତି ପୃଷ୍ଠା ସୃଷ୍ଟି କରନ୍ତୁ", + "curation-task.task.checklinks.label": "ମେଟାଡାଟାରେ ଲିଙ୍କ୍ ଯାଞ୍ଚ କରନ୍ତୁ", + "curation-task.task.noop.label": "NOOP", + "curation-task.task.profileformats.label": "ବିଟଷ୍ଟ୍ରିମ୍ ଫର୍ମାଟ୍ ପ୍ରୋଫାଇଲ୍ କରନ୍ତୁ", + "curation-task.task.requiredmetadata.label": "ଆବଶ୍ୟକ ମେଟାଡାଟା ପାଇଁ ଯାଞ୍ଚ କରନ୍ତୁ", + "curation-task.task.translate.label": "ମାଇକ୍ରୋସଫ୍ଟ ଅନୁବାଦକ", + "curation-task.task.vscan.label": "ଭାଇରସ୍ ସ୍କାନ୍", + "curation-task.task.registerdoi.label": "DOI ରେଜିଷ୍ଟର୍ କରନ୍ତୁ", + "curation.form.task-select.label": "କାର୍ଯ୍ୟ:", + "curation.form.submit": "ଆରମ୍ଭ କରନ୍ତୁ", + "curation.form.submit.success.head": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ ସଫଳତାର ସହିତ ଆରମ୍ଭ ହୋଇଛି", + "curation.form.submit.success.content": "ଆପଣଙ୍କୁ ସମ୍ବନ୍ଧିତ ପ୍ରକ୍ରିୟା ପୃଷ୍ଠାକୁ ପୁନଃନିର୍ଦ୍ଦେଶିତ କରାଯିବ।", + "curation.form.submit.error.head": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ ଚଳାଇବାରେ ବିଫଳ ହେଲା", + "curation.form.submit.error.content": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ ଆରମ୍ଭ କରିବାବେଳେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", + "curation.form.submit.error.invalid-handle": "ଏହି ବସ୍ତୁ ପାଇଁ ହ୍ୟାଣ୍ଡଲ୍ ନିର୍ଣ୍ଣୟ କରିପାରିଲା ନାହିଁ", + "curation.form.handle.label": "ହ୍ୟାଣ୍ଡଲ୍:", + "curation.form.handle.hint": "ସୂଚନା: ସମଗ୍ର ସାଇଟ୍ ରେ ଏକ କାର୍ଯ୍ୟ ଚଳାଇବା ପାଇଁ [your-handle-prefix]/0 ପ୍ରବେଶ କରନ୍ତୁ (ସମସ୍ତ କାର୍ଯ୍ୟ ଏହି କ୍ଷମତାକୁ ସମର୍ଥନ କରିପାରିବ ନାହିଁ)", + "deny-request-copy.email.message": "ପ୍ରିୟ {{ recipientName }},\nଆପଣଙ୍କ ଅନୁରୋଧର ପ୍ରତିକ୍ରିୟାରେ ମୁଁ ଦୁଃଖିତ ଯେ ଆପଣଙ୍କୁ ଅନୁରୋଧିତ ଫାଇଲ୍(ଗୁଡିକ)ର ଏକ କପି ପଠାଇବା ସମ୍ଭବ ନୁହେଁ, ଯାହା ଦଲିଲ \"{{ itemUrl }}\" ({{ itemName }}) ସମ୍ବନ୍ଧିତ, ଯାହାର ମୁଁ ଲେଖକ ଅଟେ।\n\nଶୁଭେଚ୍ଛା ସହିତ,\n{{ authorName }} <{{ authorEmail }}>", + "deny-request-copy.email.subject": "ଦଲିଲର କପି ଅନୁରୋଧ", + "deny-request-copy.error": "ଏକ ତ୍ରୁଟି ଘଟିଲା", + "deny-request-copy.header": "ଦଲିଲ କପି ଅନୁରୋଧ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", + "deny-request-copy.intro": "ଏହି ବାର୍ତ୍ତା ଅନୁରୋଧକାରୀକୁ ପଠାଯିବ", + "deny-request-copy.success": "ଦଲିଲ ଅନୁରୋଧ ସଫଳତାର ସହିତ ପ୍ରତ୍ୟାଖ୍ୟାନ ହୋଇଛି", + "dynamic-list.load-more": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", + "dropdown.clear": "ଚୟନ ସଫା କରନ୍ତୁ", + "dropdown.clear.tooltip": "ଚୟନିତ ବିକଳ୍ପ ସଫା କରନ୍ତୁ", + "dso.name.untitled": "ଶୀର୍ଷକହୀନ", + "dso.name.unnamed": "ନାମହୀନ", + "dso-selector.create.collection.head": "ନୂତନ ସଂଗ୍ରହ", + "dso-selector.create.collection.sub-level": "ରେ ଏକ ନୂତନ ସଂଗ୍ରହ ସୃଷ୍ଟି କରନ୍ତୁ", + "dso-selector.create.community.head": "ନୂତନ ସମ୍ପ୍ରଦାୟ", + "dso-selector.create.community.or-divider": "କିମ୍ବା", + "dso-selector.create.community.sub-level": "ରେ ଏକ ନୂତନ ସମ୍ପ୍ରଦାୟ ସୃଷ୍ଟି କରନ୍ତୁ", + "dso-selector.create.community.top-level": "ଏକ ନୂତନ ଟପ୍-ଲେଭେଲ୍ ସମ୍ପ୍ରଦାୟ ସୃଷ୍ଟି କରନ୍ତୁ", + "dso-selector.create.item.head": "ନୂତନ ଆଇଟମ୍", + "dso-selector.create.item.sub-level": "ରେ ଏକ ନୂତନ ଆଇଟମ୍ ସୃଷ୍ଟି କରନ୍ତୁ", + "dso-selector.create.submission.head": "ନୂତନ ଦାଖଲା", + "dso-selector.edit.collection.head": "ସଂଗ୍ରହ ସଂପାଦନ କରନ୍ତୁ", + "dso-selector.edit.community.head": "ସମ୍ପ୍ରଦାୟ ସଂପାଦନ କରନ୍ତୁ", + "dso-selector.edit.item.head": "ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + "dso-selector.error.title": "{{ type }} ଖୋଜିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "dso-selector.export-metadata.dspaceobject.head": "ରୁ ମେଟାଡାଟା ରପ୍ତାନି କରନ୍ତୁ", + "dso-selector.export-batch.dspaceobject.head": "ରୁ ବ୍ୟାଚ୍ ରପ୍ତାନି କରନ୍ତୁ (ZIP)", + "dso-selector.import-batch.dspaceobject.head": "ରୁ ବ୍ୟାଚ୍ ଆମଦାନି କରନ୍ତୁ", + "dso-selector.no-results": "କୌଣସି {{ type }} ମିଳିଲା ନାହିଁ", + "dso-selector.placeholder": "ଏକ {{ type }} ଖୋଜନ୍ତୁ", + "dso-selector.placeholder.type.community": "ସମ୍ପ୍ରଦାୟ", + "dso-selector.placeholder.type.collection": "ସଂଗ୍ରହ", + "dso-selector.placeholder.type.item": "ଆଇଟମ୍", + "dso-selector.select.collection.head": "ଏକ ସଂଗ୍ରହ ଚୟନ କରନ୍ତୁ", + "dso-selector.set-scope.community.head": "ଏକ ଖୋଜା ସ୍କୋପ୍ ଚୟନ କରନ୍ତୁ", + "dso-selector.set-scope.community.button": "ସମସ୍ତ DSpace ଖୋଜନ୍ତୁ", + "dso-selector.set-scope.community.or-divider": "କିମ୍ବା", + "dso-selector.set-scope.community.input-header": "ଏକ ସମ୍ପ୍ରଦାୟ କିମ୍ବା ସଂଗ୍ରହ ଖୋଜନ୍ତୁ", + "dso-selector.claim.item.head": "ପ୍ରୋଫାଇଲ୍ ଟିପ୍ସ", + "dso-selector.claim.item.body": "ଏଗୁଡ଼ିକ ବିଦ୍ୟମାନ ପ୍ରୋଫାଇଲ୍ ଯାହା ଆପଣଙ୍କ ସହିତ ସମ୍ବନ୍ଧିତ ହୋଇପାରେ। ଯଦି ଆପଣ ଏହି ପ୍ରୋଫାଇଲ୍ ମଧ୍ୟରୁ କୌଣସି ଏକରେ ନିଜକୁ ଚିହ୍ନିପାରନ୍ତି, ତାହା ଚୟନ କରନ୍ତୁ ଏବଂ ବିବରଣୀ ପୃଷ୍ଠାରେ, ବିକଳ୍ପ ମଧ୍ୟରୁ, ଏହାକୁ ଦାବି କରିବାକୁ ଚୟନ କରନ୍ତୁ। ଅନ୍ୟଥା ଆପଣ ନିମ୍ନରେ ଥିବା ବଟନ୍ ବ୍ୟବହାର କରି ଏକ ନୂତନ ପ୍ରୋଫାଇଲ୍ ସୃଷ୍ଟି କରିପାରିବେ।", + "dso-selector.claim.item.not-mine-label": "ଏଗୁଡ଼ିକ ମୋର ନୁହେଁ", + "dso-selector.claim.item.create-from-scratch": "ଏକ ନୂତନ ସୃଷ୍ଟି କରନ୍ତୁ", + "dso-selector.results-could-not-be-retrieved": "କିଛି ଭୁଲ୍ ହୋଇଛି, ଦୟାକରି ପୁନର୍ବାର ରିଫ୍ରେସ୍ କରନ୍ତୁ ↻", + "supervision-group-selector.header": "ସୁପରଭିଜନ୍ ଗ୍ରୁପ୍ ସିଲେକ୍ଟର୍", + "supervision-group-selector.select.type-of-order.label": "ଏକ ଅର୍ଡର୍ ପ୍ରକାର ଚୟନ କରନ୍ତୁ", + "supervision-group-selector.select.type-of-order.option.none": "NONE", + "supervision-group-selector.select.type-of-order.option.editor": "ସମ୍ପାଦକ", + "supervision-group-selector.select.type-of-order.option.observer": "ପର୍ଯ୍ୟବେକ୍ଷକ", + "supervision-group-selector.select.group.label": "ଏକ ଗ୍ରୁପ୍ ଚୟନ କରନ୍ତୁ", + "supervision-group-selector.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "supervision-group-selector.button.save": "ସଂରକ୍ଷଣ କରନ୍ତୁ", + "supervision-group-selector.select.type-of-order.error": "ଦୟାକରି ଏକ ଅର୍ଡର୍ ପ୍ରକାର ଚୟନ କରନ୍ତୁ", + "supervision-group-selector.select.group.error": "ଦୟାକରି ଏକ ଗ୍ରୁପ୍ ଚୟନ କରନ୍ତୁ", + "supervision-group-selector.notification.create.success.title": "ଗ୍ରୁପ୍ {{ name }} ପାଇଁ ସୁପରଭିଜନ୍ ଅର୍ଡର୍ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", + "supervision-group-selector.notification.create.failure.title": "ତ୍ରୁଟି", + "supervision-group-selector.notification.create.already-existing": "ଏହି ଆଇଟମ୍ ପାଇଁ ଚୟନିତ ଗ୍ରୁପ୍ ପାଇଁ ଏକ ସୁପରଭିଜନ୍ ଅର୍ଡର୍ ପୂର୍ବରୁ ବିଦ୍ୟମାନ ଅଛି", + "confirmation-modal.export-metadata.header": "{{ dsoName }} ପାଇଁ ମେଟାଡାଟା ରପ୍ତାନି କରନ୍ତୁ", + "confirmation-modal.export-metadata.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ {{ dsoName }} ପାଇଁ ମେଟାଡାଟା ରପ୍ତାନି କରିବାକୁ ଚାହୁଁଛନ୍ତି", + "confirmation-modal.export-metadata.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "confirmation-modal.export-metadata.confirm": "ରପ୍ତାନି କରନ୍ତୁ", + "confirmation-modal.export-batch.header": "{{ dsoName }} ପାଇଁ ବ୍ୟାଚ୍ ରପ୍ତାନି କରନ୍ତୁ (ZIP)", + "confirmation-modal.export-batch.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ {{ dsoName }} ପାଇଁ ବ୍ୟାଚ୍ (ZIP) ରପ୍ତାନି କରିବାକୁ ଚାହୁଁଛନ୍ତି", + "confirmation-modal.export-batch.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "confirmation-modal.export-batch.confirm": "ରପ୍ତାନି କରନ୍ତୁ", + "confirmation-modal.delete-eperson.header": "EPerson \"{{ dsoName }}\" ଡିଲିଟ୍ କରନ୍ତୁ", + "confirmation-modal.delete-eperson.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ EPerson \"{{ dsoName }}\" ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି", + "confirmation-modal.delete-eperson.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "confirmation-modal.delete-eperson.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", + "confirmation-modal.delete-community-collection-logo.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ ଲୋଗୋ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", + "confirmation-modal.delete-profile.header": "ପ୍ରୋଫାଇଲ୍ ଡିଲିଟ୍ କରନ୍ତୁ", + "confirmation-modal.delete-profile.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ ଆପଣଙ୍କର ପ୍ରୋଫାଇଲ୍ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି", + "confirmation-modal.delete-profile.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "confirmation-modal.delete-profile.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", + "confirmation-modal.delete-subscription.header": "ସବସ୍କ୍ରିପସନ୍ ଡିଲିଟ୍ କରନ୍ତୁ", + "confirmation-modal.delete-subscription.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ \"{{ dsoName }}\" ପାଇଁ ସବସ୍କ୍ରିପସନ୍ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି", + "confirmation-modal.delete-subscription.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "confirmation-modal.delete-subscription.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", + "confirmation-modal.review-account-info.header": "ପରିବର୍ତ୍ତନଗୁଡିକ ସଂରକ୍ଷଣ କରନ୍ତୁ", + "confirmation-modal.review-account-info.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ ଆପଣଙ୍କର ପ୍ରୋଫାଇଲ୍ ରେ ପରିବର୍ତ୍ତନଗୁଡିକ ସଂରକ୍ଷଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି", + "confirmation-modal.review-account-info.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "confirmation-modal.review-account-info.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", + "confirmation-modal.review-account-info.save": "ସଂରକ୍ଷଣ କରନ୍ତୁ", + "error.bitstream": "ବିଟଷ୍ଟ୍ରିମ୍ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.browse-by": "ଆଇଟମ୍ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.collection": "ସଂଗ୍ରହ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.collections": "ସଂଗ୍ରହଗୁଡିକ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.community": "ସମ୍ପ୍ରଦାୟ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.identifier": "ଆଇଡେଣ୍ଟିଫାୟର୍ ପାଇଁ କୌଣସି ଆଇଟମ୍ ମିଳିଲା ନାହିଁ", + "error.default": "ତ୍ରୁଟି", + "error.item": "ଆଇଟମ୍ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.items": "ଆଇଟମ୍ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.objects": "ବସ୍ତୁ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.recent-submissions": "ସାମ୍ପ୍ରତିକ ଦାଖଲା ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.profile-groups": "ପ୍ରୋଫାଇଲ୍ ଗ୍ରୁପ୍ ପ୍ରାପ୍ତ କରିବାରେ ତ୍ରୁଟି", + "error.search-results": "ଖୋଜା ଫଳାଫଳ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.invalid-search-query": "ଖୋଜା କ୍ୱେରୀ ବୈଧ ନୁହେଁ। ଦୟାକରି ଏହି ତ୍ରୁଟି ବିଷୟରେ ଅଧିକ ସୂଚନା ପାଇଁ Solr କ୍ୱେରୀ ସିଣ୍ଟାକ୍ସ୍ ସର୍ବୋତ୍ତମ ପ୍ରଥା ଯାଞ୍ଚ କରନ୍ତୁ।", + "error.sub-collections": "ଉପ-ସଂଗ୍ରହ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.sub-communities": "ଉପ-ସମ୍ପ୍ରଦାୟ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.top-level-communities": "ଟପ୍-ଲେଭେଲ୍ ସମ୍ପ୍ରଦାୟ ଫେଚ୍ କରିବାରେ ତ୍ରୁଟି", + "error.validation.license.notgranted": "ଆପଣଙ୍କର ଦାଖଲା ସମାପ୍ତ କରିବାକୁ ଆପଣ ଏହି ଲାଇସେନ୍ସ୍ ଗ୍ରାଣ୍ଟ୍ କରିବା ଆବଶ୍ୟକ। ଯଦି ଆପଣ ବର୍ତ୍ତମାନ ଏହି ଲାଇସେନ୍ସ୍ ଗ୍ରାଣ୍ଟ୍ କରିବାକୁ ଅସମର୍ଥ, ତେବେ ଆପଣ ଆପଣଙ୍କର କାର୍ଯ୍ୟ ସଂରକ୍ଷଣ କରିପାରିବେ ଏବଂ ପରେ ଫେରିପାରିବେ କିମ୍ବା ଦାଖଲା ହଟାଇପାରିବେ।", + "error.validation.cclicense.required": "ଆପଣଙ୍କର ଦାଖଲା ସମାପ୍ତ କରିବାକୁ ଆପଣ ଏହି cclicense ଗ୍ରାଣ୍ଟ୍ କରିବା ଆବଶ୍ୟକ। ଯଦି ଆପଣ ବର୍ତ୍ତମାନ cclicense ଗ୍ରାଣ୍ଟ୍ କରିବାକୁ ଅସମର୍ଥ, ତେବେ ଆପଣ ଆପଣଙ୍କର କାର୍ଯ୍ୟ ସଂରକ୍ଷଣ କରିପାରିବେ ଏବଂ ପରେ ଫେରିପାରିବେ କିମ୍ବା ଦାଖଲା ହଟାଇପାରିବେ।", + "error.validation.pattern": "ଏହି ଇନପୁଟ୍ ବର୍ତ୍ତମାନ ପ୍ୟାଟର୍ନ୍ ଦ୍ୱାରା ସୀମିତ: {{ pattern }}।", + "error.validation.filerequired": "ଫାଇଲ୍ ଅପଲୋଡ୍ ବାଧ୍ୟତାମୂଳକ", + "error.validation.required": "ଏହି କ୍ଷେତ୍ର ଆବଶ୍ୟକ", + "error.validation.NotValidEmail": "ଏହା ଏକ ବୈଧ ଇମେଲ୍ ନୁହେଁ", + "error.validation.emailTaken": "ଏହି ଇମେଲ୍ ପୂର୍ବରୁ ନିଆଯାଇଛି", + "error.validation.groupExists": "ଏହି ଗ୍ରୁପ୍ ପୂର୍ବରୁ ବିଦ୍ୟମାନ ଅଛି", + "error.validation.metadata.name.invalid-pattern": "ଏହି କ୍ଷେତ୍ରରେ ଡଟ୍, କମା କିମ୍ବା ସ୍ପେସ୍ ରହିପାରିବ ନାହିଁ। ଦୟାକରି ଏଲିମେଣ୍ଟ୍ ଏବଂ କ୍ୱାଲିଫାୟର୍ କ୍ଷେତ୍ରଗୁଡିକ ବ୍ୟବହାର କରନ୍ତୁ", + "error.validation.metadata.name.max-length": "ଏହି କ୍ଷେତ୍ରରେ 32 ରୁ ଅଧିକ ଅକ୍ଷର ରହିପାରିବ ନାହିଁ", + "error.validation.metadata.namespace.max-length": "ଏହି କ୍ଷେତ୍ରରେ 256 ରୁ ଅଧିକ ଅକ୍ଷର ରହିପାରିବ ନାହିଁ", + + "error.validation.metadata.element.invalid-pattern": "ଏହି କ୍ଷେତ୍ରରେ ବିନ୍ଦୁ, କମା କିମ୍ବା ସ୍ଥାନ ଅନ୍ତର୍ଭୁକ୍ତ କରିପାରିବେ ନାହିଁ। ଦୟାକରି Qualifier କ୍ଷେତ୍ର ବ୍ୟବହାର କରନ୍ତୁ", + + "error.validation.metadata.element.max-length": "ଏହି କ୍ଷେତ୍ରରେ ୬୪ ଅକ୍ଷରରୁ ଅଧିକ ଅନ୍ତର୍ଭୁକ୍ତ କରିପାରିବେ ନାହିଁ", + + "error.validation.metadata.qualifier.invalid-pattern": "ଏହି କ୍ଷେତ୍ରରେ ବିନ୍ଦୁ, କମା କିମ୍ବା ସ୍ଥାନ ଅନ୍ତର୍ଭୁକ୍ତ କରିପାରିବେ ନାହିଁ", + + "error.validation.metadata.qualifier.max-length": "ଏହି କ୍ଷେତ୍ରରେ ୬୪ ଅକ୍ଷରରୁ ଅଧିକ ଅନ୍ତର୍ଭୁକ୍ତ କରିପାରିବେ ନାହିଁ", + + "feed.description": "ସିଣ୍ଡିକେସନ ଫିଡ୍", + + "file-download-link.restricted": "ସୀମିତ ବିଟଷ୍ଟ୍ରିମ୍", + + "file-download-link.secure-access": "ସୁରକ୍ଷିତ ପ୍ରବେଶ ଟୋକେନ୍ ମାଧ୍ୟମରେ ସୀମିତ ବିଟଷ୍ଟ୍ରିମ୍ ଉପଲବ୍ଧ", + + "file-section.error.header": "ଏହି ଆଇଟମ୍ ପାଇଁ ଫାଇଲ୍ ପ୍ରାପ୍ତ କରିବାରେ ତ୍ରୁଟି", + + "footer.copyright": "କପିରାଇଟ୍ © ୨୦୦୨-{{ year }}", + + "footer.link.accessibility": "ସୁଗମତା ସେଟିଂସ୍", + + "footer.link.dspace": "DSpace ସଫ୍ଟୱେର୍", + + "footer.link.lyrasis": "LYRASIS", + + "footer.link.cookies": "କୁକି ସେଟିଂସ୍", + + "footer.link.privacy-policy": "ଗୋପନୀୟତା ନୀତି", + + "footer.link.end-user-agreement": "ଶେଷ ଉପଭୋକ୍ତା ଚୁକ୍ତିନାମା", + + "footer.link.feedback": "ମତାମତ ପଠାନ୍ତୁ", + + "footer.link.coar-notify-support": "COAR ନୋଟିଫାଇ", + + "forgot-email.form.header": "ପାସୱାର୍ଡ ଭୁଲି ଗଲେ", + + "forgot-email.form.info": "ଆକାଉଣ୍ଟ୍ ସହିତ ଜଡିତ ଇମେଲ୍ ଠିକଣା ପ୍ରବେଶ କରନ୍ତୁ।", + + "forgot-email.form.email": "ଇମେଲ୍ ଠିକଣା *", + + "forgot-email.form.email.error.required": "ଦୟାକରି ଏକ ଇମେଲ୍ ଠିକଣା ପୂରଣ କରନ୍ତୁ", + + "forgot-email.form.email.error.not-email-form": "ଦୟାକରି ଏକ ବୈଧ ଇମେଲ୍ ଠିକଣା ପୂରଣ କରନ୍ତୁ", + + "forgot-email.form.email.hint": "ଏହି ଠିକଣାକୁ ଏକ ଇମେଲ୍ ପଠାଯିବ ଯାହା ଅଧିକ ସୂଚନା ସହିତ ଏକ ବିଶେଷ URL ଅନ୍ତର୍ଭୁକ୍ତ କରିଥାଏ।", + + "forgot-email.form.submit": "ପାସୱାର୍ଡ ରିସେଟ୍ କରନ୍ତୁ", + + "forgot-email.form.success.head": "ପାସୱାର୍ଡ ରିସେଟ୍ ଇମେଲ୍ ପଠାଯାଇଛି", + + "forgot-email.form.success.content": "{{ email }} କୁ ଏକ ଇମେଲ୍ ପଠାଯାଇଛି ଯାହା ଏକ ବିଶେଷ URL ଏବଂ ଅଧିକ ସୂଚନା ଅନ୍ତର୍ଭୁକ୍ତ କରିଥାଏ।", + + "forgot-email.form.error.head": "ପାସୱାର୍ଡ ରିସେଟ୍ କରିବାବେଳେ ତ୍ରୁଟି", + + "forgot-email.form.error.content": "ନିମ୍ନଲିଖିତ ଇମେଲ୍ ଠିକଣା ସହିତ ଜଡିତ ଆକାଉଣ୍ଟ୍ ପାଇଁ ପାସୱାର୍ଡ ରିସେଟ୍ କରିବାବେଳେ ଏକ ତ୍ରୁଟି ଘଟିଛି: {{ email }}", + + "forgot-password.title": "ପାସୱାର୍ଡ ଭୁଲି ଗଲେ", + + "forgot-password.form.head": "ପାସୱାର୍ଡ ଭୁଲି ଗଲେ", + + "forgot-password.form.info": "ନିମ୍ନରେ ଥିବା ବାକ୍ସରେ ଏକ ନୂତନ ପାସୱାର୍ଡ ପ୍ରବେଶ କରନ୍ତୁ, ଏବଂ ଏହାକୁ ଦ୍ୱିତୀୟ ବାକ୍ସରେ ପୁନର୍ବାର ଟାଇପ୍ କରି ନିଶ୍ଚିତ କରନ୍ତୁ।", + + "forgot-password.form.card.security": "ସୁରକ୍ଷା", + + "forgot-password.form.identification.header": "ଚିହ୍ନିତ କରନ୍ତୁ", + + "forgot-password.form.identification.email": "ଇମେଲ୍ ଠିକଣା: ", + + "forgot-password.form.label.password": "ପାସୱାର୍ଡ", + + "forgot-password.form.label.passwordrepeat": "ନିଶ୍ଚିତ କରିବାକୁ ପୁନର୍ବାର ଟାଇପ୍ କରନ୍ତୁ", + + "forgot-password.form.error.empty-password": "ଦୟାକରି ଉପରେ ଥିବା ବାକ୍ସରେ ଏକ ପାସୱାର୍ଡ ପ୍ରବେଶ କରନ୍ତୁ।", + + "forgot-password.form.error.matching-passwords": "ପାସୱାର୍ଡଗୁଡିକ ମେଳ ଖାଉନାହିଁ।", + + "forgot-password.form.notification.error.title": "ନୂତନ ପାସୱାର୍ଡ ଦାଖଲ କରିବାବେଳେ ତ୍ରୁଟି", + + "forgot-password.form.notification.success.content": "ପାସୱାର୍ଡ ରିସେଟ୍ ସଫଳ ହୋଇଛି। ଆପଣ ସୃଷ୍ଟି କରାଯାଇଥିବା ଉପଭୋକ୍ତା ଭାବରେ ଲଗ୍ ଇନ୍ ହୋଇଛନ୍ତି।", + + "forgot-password.form.notification.success.title": "ପାସୱାର୍ଡ ରିସେଟ୍ ସମ୍ପୂର୍ଣ୍ଣ", + + "forgot-password.form.submit": "ପାସୱାର୍ଡ ଦାଖଲ କରନ୍ତୁ", + + "form.add": "ଅଧିକ ଯୋଡନ୍ତୁ", + + "form.add-help": "ବର୍ତ୍ତମାନର ପ୍ରବେଶ ଯୋଡିବାକୁ ଏବଂ ଅନ୍ୟ ଏକ ଯୋଡିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", + + "form.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "form.clear": "ସଫା କରନ୍ତୁ", + + "form.clear-help": "ଚୟନିତ ମୂଲ୍ୟ ଅପସାରଣ କରିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", + + "form.discard": "ପରିତ୍ୟାଗ କରନ୍ତୁ", + + "form.drag": "ଟାଣନ୍ତୁ", + + "form.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", + + "form.edit-help": "ଚୟନିତ ମୂଲ୍ୟ ସମ୍ପାଦନ କରିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", + + "form.first-name": "ପ୍ରଥମ ନାମ", + + "form.group-collapse": "ସଙ୍କୁଚିତ କରନ୍ତୁ", + + "form.group-collapse-help": "ସଙ୍କୁଚିତ କରିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", + + "form.group-expand": "ପ୍ରସାରିତ କରନ୍ତୁ", + + "form.group-expand-help": "ଅଧିକ ଉପାଦାନ ଯୋଡିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", + + "form.last-name": "ଶେଷ ନାମ", + + "form.loading": "ଲୋଡ୍ ହେଉଛି...", + + "form.lookup": "ଖୋଜନ୍ତୁ", + + "form.lookup-help": "ଏକ ପୂର୍ବରୁ ଥିବା ସମ୍ପର୍କ ଖୋଜିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", + + "form.no-results": "କୌଣସି ଫଳାଫଳ ମିଳିଲା ନାହିଁ", + + "form.no-value": "କୌଣସି ମୂଲ୍ୟ ପ୍ରବେଶ କରାଯାଇନାହିଁ", + + "form.other-information.email": "ଇମେଲ୍", + + "form.other-information.first-name": "ପ୍ରଥମ ନାମ", + + "form.other-information.insolr": "Solr ସୂଚିକାରେ", + + "form.other-information.institution": "ଅନୁଷ୍ଠାନ", + + "form.other-information.last-name": "ଶେଷ ନାମ", + + "form.other-information.orcid": "ORCID", + + "form.remove": "ଅପସାରଣ କରନ୍ତୁ", + + "form.save": "ସଂରକ୍ଷଣ କରନ୍ତୁ", + + "form.save-help": "ପରିବର୍ତ୍ତନଗୁଡିକୁ ସଂରକ୍ଷଣ କରନ୍ତୁ", + + "form.search": "ସନ୍ଧାନ କରନ୍ତୁ", + + "form.search-help": "ଏକ ପୂର୍ବରୁ ଥିବା ପତ୍ରବିନିମୟ ଖୋଜିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ", + + "form.submit": "ସଂରକ୍ଷଣ କରନ୍ତୁ", + + "form.create": "ସୃଷ୍ଟି କରନ୍ତୁ", + + "form.number-picker.decrement": "{{field}} ହ୍ରାସ କରନ୍ତୁ", + + "form.number-picker.increment": "{{field}} ବୃଦ୍ଧି କରନ୍ତୁ", + + "form.repeatable.sort.tip": "ନୂତନ ସ୍ଥାନରେ ଆଇଟମ୍ ଡ୍ରପ୍ କରନ୍ତୁ", + + "grant-deny-request-copy.deny": "ପ୍ରବେଶ ଅନୁରୋଧ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", + + "grant-deny-request-copy.revoke": "ପ୍ରବେଶ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", + + "grant-deny-request-copy.email.back": "ପଛକୁ ଯାଆନ୍ତୁ", + + "grant-deny-request-copy.email.message": "ବୈକଳ୍ପିକ ଅତିରିକ୍ତ ସନ୍ଦେଶ", + + "grant-deny-request-copy.email.message.empty": "ଦୟାକରି ଏକ ସନ୍ଦେଶ ପ୍ରବେଶ କରନ୍ତୁ", + + "grant-deny-request-copy.email.permissions.info": "ଆପଣ ଏହି ଅନୁରୋଧଗୁଡିକୁ ଉତ୍ତର ଦେବା ପାଇଁ ଦଲିଲରେ ଥିବା ପ୍ରବେଶ ନିର୍ବାଚନଗୁଡିକୁ ପୁନର୍ବିଚାର କରିପାରିବେ। ଯଦି ଆପଣ ରିପୋଜିଟରି ପ୍ରଶାସକଙ୍କୁ ଏହି ନିର୍ବାଚନଗୁଡିକୁ ଅପସାରଣ କରିବାକୁ ଅନୁରୋଧ କରିବାକୁ ଚାହୁଁଛନ୍ତି, ଦୟାକରି ନିମ୍ନରେ ଥିବା ବାକ୍ସରେ ଚେକ୍ କରନ୍ତୁ।", + + "grant-deny-request-copy.email.permissions.label": "ଖୋଲା ପ୍ରବେଶକୁ ପରିବର୍ତ୍ତନ କରନ୍ତୁ", + + "grant-deny-request-copy.email.send": "ପଠାନ୍ତୁ", + + "grant-deny-request-copy.email.subject": "ବିଷୟ", + + "grant-deny-request-copy.email.subject.empty": "ବିଷୟ ପ୍ରବେଶ କରନ୍ତୁ", + "grant-deny-request-copy.grant": "ଅନୁରୋଧ ପ୍ରବେଶ ଅନୁମତି ଦିଅନ୍ତୁ", + "grant-deny-request-copy.header": "ଡକ୍ୟୁମେଣ୍ଟ କପି ଅନୁରୋଧ", + "grant-deny-request-copy.home-page": "ମୋତେ ମୂଳପୃଷ୍ଠାକୁ ନିଅନ୍ତୁ", + "grant-deny-request-copy.intro1": "ଯଦି ଆପଣ ଡକ୍ୟୁମେଣ୍ଟ {{ name }}ର ଲେଖକଙ୍କ ମଧ୍ୟରୁ ଜଣେ, ତେବେ ଦୟାକରି ନିମ୍ନଲିଖିତ ବିକଳ୍ପଗୁଡ଼ିକ ମଧ୍ୟରୁ ଗୋଟିଏ ବ୍ୟବହାର କରି ଉପଭୋକ୍ତାଙ୍କ ଅନୁରୋଧକୁ ପ୍ରତିକ୍ରିୟା ଦିଅନ୍ତୁ।", + "grant-deny-request-copy.intro2": "ଏକ ବିକଳ୍ପ ଚୟନ କରିବା ପରେ, ଆପଣଙ୍କୁ ଏକ ପ୍ରସ୍ତାବିତ ଇମେଲ୍ ପ୍ରତିକ୍ରିୟା ଦେଖାଯିବ ଯାହାକୁ ଆପଣ ସମ୍ପାଦନ କରିପାରିବେ।", + "grant-deny-request-copy.previous-decision": "ଏହି ଅନୁରୋଧକୁ ପୂର୍ବରୁ ଏକ ସୁରକ୍ଷିତ ପ୍ରବେଶ ଟୋକେନ୍ ସହିତ ଅନୁମତି ଦିଆଯାଇଥିଲା। ଆପଣ ବର୍ତ୍ତମାନ ଏହି ପ୍ରବେଶକୁ ବାତିଲ୍ କରିପାରିବେ ଯାହାଦ୍ୱାରା ପ୍ରବେଶ ଟୋକେନ୍ ତୁରନ୍ତ ଅବୈଧ ହେବ", + "grant-deny-request-copy.processed": "ଏହି ଅନୁରୋଧକୁ ପୂର୍ବରୁ ପ୍ରକ୍ରିୟାକରଣ କରାଯାଇଛି। ଆପଣ ନିମ୍ନରେ ଥିବା ବଟନ୍ ବ୍ୟବହାର କରି ମୂଳପୃଷ୍ଠାକୁ ଫେରିପାରିବେ।", + "grant-request-copy.email.subject": "ଡକ୍ୟୁମେଣ୍ଟର କପି ଅନୁରୋଧ", + "grant-request-copy.error": "ଏକ ତ୍ରୁଟି ଘଟିଲା", + "grant-request-copy.header": "ଡକ୍ୟୁମେଣ୍ଟ କପି ଅନୁରୋଧକୁ ଅନୁମତି ଦିଅନ୍ତୁ", + "grant-request-copy.intro.attachment": "ଅନୁରୋଧକାରୀଙ୍କୁ ଏକ ସନ୍ଦେଶ ପଠାଯିବ। ଅନୁରୋଧିତ ଡକ୍ୟୁମେଣ୍ଟ(ଗୁଡ଼ିକ) ସଂଲଗ୍ନ ହେବ।", + "grant-request-copy.intro.link": "ଅନୁରୋଧକାରୀଙ୍କୁ ଏକ ସନ୍ଦେଶ ପଠାଯିବ। ଅନୁରୋଧିତ ଡକ୍ୟୁମେଣ୍ଟ(ଗୁଡ଼ିକ)କୁ ପ୍ରବେଶ ପ୍ରଦାନ କରୁଥିବା ଏକ ସୁରକ୍ଷିତ ଲିଙ୍କ୍ ସଂଲଗ୍ନ ହେବ। ଲିଙ୍କ୍ ନିମ୍ନରେ ଥିବା \"ପ୍ରବେଶ ସମୟ\" ମେନୁରେ ଚୟନ କରାଯାଇଥିବା ସମୟ ପର୍ଯ୍ୟନ୍ତ ପ୍ରବେଶ ପ୍ରଦାନ କରିବ।", + "grant-request-copy.intro.link.preview": "ନିମ୍ନରେ ଅନୁରୋଧକାରୀଙ୍କୁ ପଠାଯିବାକୁ ଥିବା ଲିଙ୍କ୍ର ଏକ ପ୍ରିଭ୍ୟୁ ଦେଖାଯାଉଛି:", + "grant-request-copy.success": "ଆଇଟମ୍ ଅନୁରୋଧ ସଫଳତାର ସହିତ ଅନୁମତି ଦିଆଗଲା", + "grant-request-copy.access-period.header": "ପ୍ରବେଶ ସମୟ", + "grant-request-copy.access-period.+1DAY": "1 ଦିନ", + "grant-request-copy.access-period.+7DAYS": "1 ସପ୍ତାହ", + "grant-request-copy.access-period.+1MONTH": "1 ମାସ", + "grant-request-copy.access-period.+3MONTHS": "3 ମାସ", + "grant-request-copy.access-period.FOREVER": "ଚିରକାଳୀନ", + "health.breadcrumbs": "ସ୍ୱାସ୍ଥ୍ୟ", + "health-page.heading": "ସ୍ୱାସ୍ଥ୍ୟ", + "health-page.info-tab": "ସୂଚନା", + "health-page.status-tab": "ସ୍ଥିତି", + "health-page.error.msg": "ସ୍ୱାସ୍ଥ୍ୟ ଯାଞ୍ଚ ସେବା ଅସ୍ଥାୟୀ ଭାବରେ ଅପ୍ରାପ୍ୟ", + "health-page.property.status": "ସ୍ଥିତି କୋଡ୍", + "health-page.section.db.title": "ଡାଟାବେସ୍", + "health-page.section.geoIp.title": "ଜିଓଆଇପି", + "health-page.section.solrAuthorityCore.title": "Solr: ପ୍ରାଧିକୃତ କୋର୍", + "health-page.section.solrOaiCore.title": "Solr: OAI କୋର୍", + "health-page.section.solrSearchCore.title": "Solr: ସନ୍ଧାନ କୋର୍", + "health-page.section.solrStatisticsCore.title": "Solr: ପରିସଂଖ୍ୟାନ କୋର୍", + "health-page.section-info.app.title": "ଆପ୍ଲିକେସନ୍ ବ୍ୟାକେଣ୍ଡ", + "health-page.section-info.java.title": "ଜାଭା", + "health-page.status": "ସ୍ଥିତି", + "health-page.status.ok.info": "କାର୍ଯ୍ୟକାରୀ", + "health-page.status.error.info": "ସମସ୍ୟା ଚିହ୍ନଟ ହୋଇଛି", + "health-page.status.warning.info": "ସମ୍ଭାବ୍ୟ ସମସ୍ୟା ଚିହ୍ନଟ ହୋଇଛି", + "health-page.title": "ସ୍ୱାସ୍ଥ୍ୟ", + "health-page.section.no-issues": "କୌଣସି ସମସ୍ୟା ଚିହ୍ନଟ ହୋଇନାହିଁ", + "home.description": "", + "home.breadcrumbs": "ମୂଳପୃଷ୍ଠା", + "home.search-form.placeholder": "ଭଣ୍ଡାର ଖୋଜନ୍ତୁ ...", + "home.title": "ମୂଳପୃଷ୍ଠା", + "home.top-level-communities.head": "DSpaceରେ ସମ୍ପ୍ରଦାୟଗୁଡ଼ିକ", + "home.top-level-communities.help": "ଏହାର ସଂଗ୍ରହଗୁଡ଼ିକୁ ବ୍ରାଉଜ୍ କରିବାକୁ ଏକ ସମ୍ପ୍ରଦାୟ ଚୟନ କରନ୍ତୁ।", + "info.accessibility-settings.breadcrumbs": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍", + "info.accessibility-settings.cookie-warning": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍ ସଞ୍ଚୟ କରିବା ବର୍ତ୍ତମାନ ସମ୍ଭବ ନୁହେଁ। କିମ୍ବା ତଥ୍ୟରେ ସେଟିଂସ୍ ସଞ୍ଚୟ କରିବାକୁ ଲଗ୍ ଇନ୍ କରନ୍ତୁ, କିମ୍ବା ପୃଷ୍ଠାର ତଳେ ଥିବା 'କୁକି ସେଟିଂସ୍' ମେନୁ ବ୍ୟବହାର କରି 'ଅଭିଗମ୍ୟତା ସେଟିଂସ୍' କୁକି ଗ୍ରହଣ କରନ୍ତୁ। ଥରେ କୁକି ଗ୍ରହଣ କରାଯାଇଗଲେ, ଆପଣ ଏହି ସନ୍ଦେଶକୁ ଅପସାରଣ କରିବାକୁ ପୃଷ୍ଠାକୁ ପୁନର୍ବାର ଲୋଡ୍ କରିପାରିବେ।", + "info.accessibility-settings.disableNotificationTimeOut.label": "ସମୟ ସମାପ୍ତି ପରେ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ବନ୍ଦ କରନ୍ତୁ", + "info.accessibility-settings.disableNotificationTimeOut.hint": "ଯେତେବେଳେ ଏହି ଟୋଗଲ୍ ସକ୍ରିୟ ହୁଏ, ସମୟ ସମାପ୍ତି ପରେ ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ବନ୍ଦ ହେବ। ଯେତେବେଳେ ନିଷ୍କ୍ରିୟ ହୁଏ, ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକ ହସ୍ତଚାଳିତ ଭାବରେ ବନ୍ଦ ନହେବା ପର୍ଯ୍ୟନ୍ତ ଖୋଲା ରହିବ।", + "info.accessibility-settings.failed-notification": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍ ସଞ୍ଚୟ କରିବାରେ ବିଫଳ", + "info.accessibility-settings.invalid-form-notification": "ସଞ୍ଚୟ କରାଯାଇନାହିଁ। ଫର୍ମରେ ଅବୈଧ ମୂଲ୍ୟଗୁଡ଼ିକ ଅଛି।", + "info.accessibility-settings.liveRegionTimeOut.label": "ARIA ଲାଇଭ୍ ଅଞ୍ଚଳ ସମୟ ସମାପ୍ତି (ସେକେଣ୍ଡରେ)", + "info.accessibility-settings.liveRegionTimeOut.hint": "ସମୟ ଯାହା ପରେ ARIA ଲାଇଭ୍ ଅଞ୍ଚଳରେ ଥିବା ଏକ ସନ୍ଦେଶ ଅଦୃଶ୍ୟ ହୁଏ। ARIA ଲାଇଭ୍ ଅଞ୍ଚଳଗୁଡ଼ିକ ପୃଷ୍ଠାରେ ଦୃଶ୍ୟମାନ ନୁହେଁ, କିନ୍ତୁ ସ୍କ୍ରିନ୍ ରିଡର୍ ପାଇଁ ବିଜ୍ଞପ୍ତି (କିମ୍ବା ଅନ୍ୟାନ୍ୟ କାର୍ଯ୍ୟ)ର ଘୋଷଣା ପ୍ରଦାନ କରନ୍ତି।", + "info.accessibility-settings.liveRegionTimeOut.invalid": "ଲାଇଭ୍ ଅଞ୍ଚଳ ସମୟ ସମାପ୍ତି 0 ଠାରୁ ବଡ଼ ହେବା ଆବଶ୍ୟକ", + "info.accessibility-settings.notificationTimeOut.label": "ବିଜ୍ଞପ୍ତି ସମୟ ସମାପ୍ତି (ସେକେଣ୍ଡରେ)", + "info.accessibility-settings.notificationTimeOut.hint": "ସମୟ ଯାହା ପରେ ଏକ ବିଜ୍ଞପ୍ତି ଅଦୃଶ୍ୟ ହୁଏ।", + "info.accessibility-settings.notificationTimeOut.invalid": "ବିଜ୍ଞପ୍ତି ସମୟ ସମାପ୍ତି 0 ଠାରୁ ବଡ଼ ହେବା ଆବଶ୍ୟକ", + "info.accessibility-settings.save-notification.cookie": "ସେଟିଂସ୍ ସ୍ଥାନୀୟ ଭାବରେ ସଫଳତାର ସହିତ ସଞ୍ଚୟ ହୋଇଛି।", + "info.accessibility-settings.save-notification.metadata": "ଉପଯୋଗକର୍ତ୍ତା ପ୍ରୋଫାଇଲରେ ସେଟିଂସ୍ ସଫଳତାର ସହିତ ସଞ୍ଚୟ ହୋଇଛି।", + "info.accessibility-settings.reset-failed": "ପୁନଃସେଟ୍ କରିବାରେ ବିଫଳ। କିମ୍ବା ଲଗ୍ ଇନ୍ କରନ୍ତୁ କିମ୍ବା 'ଅଭିଗମ୍ୟତା ସେଟିଂସ୍' କୁକି ଗ୍ରହଣ କରନ୍ତୁ।", + "info.accessibility-settings.reset-notification": "ସେଟିଂସ୍ ସଫଳତାର ସହିତ ପୁନଃସେଟ୍ ହୋଇଛି।", + "info.accessibility-settings.reset": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍ ପୁନଃସେଟ୍ କରନ୍ତୁ", + "info.accessibility-settings.submit": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍ ସଞ୍ଚୟ କରନ୍ତୁ", + "info.accessibility-settings.title": "ଅଭିଗମ୍ୟତା ସେଟିଂସ୍", + "info.end-user-agreement.accept": "ମୁଁ ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା ପଢ଼ିଛି ଏବଂ ମୁଁ ସହମତ", + "info.end-user-agreement.accept.error": "ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା ଗ୍ରହଣ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "info.end-user-agreement.accept.success": "ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା ସଫଳତାର ସହିତ ଅଦ୍ୟତନ ହୋଇଛି", + "info.end-user-agreement.breadcrumbs": "ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା", + "info.end-user-agreement.buttons.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "info.end-user-agreement.buttons.save": "ସଞ୍ଚୟ କରନ୍ତୁ", + "info.end-user-agreement.head": "ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା", + "info.end-user-agreement.title": "ଏଣ୍ଡ୍ ୟୁଜର୍ ଚୁକ୍ତିନାମା", + "info.end-user-agreement.hosting-country": "ଯୁକ୍ତରାଷ୍ଟ୍ର ଆମେରିକା", + "info.privacy.breadcrumbs": "ଗୋପନୀୟତା ବିବୃତି", + "info.privacy.head": "ଗୋପନୀୟତା ବିବୃତି", + "info.privacy.title": "ଗୋପନୀୟତା ବିବୃତି", + "info.feedback.breadcrumbs": "ମତାମତ", + "info.feedback.head": "ମତାମତ", + "info.feedback.title": "ମତାମତ", + "info.feedback.info": "DSpace ସିଷ୍ଟମ୍ ବିଷୟରେ ଆପଣଙ୍କର ମତାମତ ଅଂଶୀଦାର କରିବାକୁ ଧନ୍ୟବାଦ! ଆପଣଙ୍କର ମନ୍ତବ୍ୟଗୁଡ଼ିକ ପ୍ରଶଂସନୀୟ!", + "info.feedback.email_help": "ଆପଣଙ୍କ ମତାମତ ଉପରେ ଅନୁସରଣ କରିବାକୁ ଏହି ଠିକଣା ବ୍ୟବହାର କରାଯିବ।", + "info.feedback.send": "ମତାମତ ପଠାନ୍ତୁ", + "info.feedback.comments": "ମନ୍ତବ୍ୟ", + "info.feedback.email-label": "ଆପଣଙ୍କର ଇମେଲ୍", + "info.feedback.create.success": "ମତାମତ ସଫଳତାର ସହିତ ପଠାଯାଇଛି!", + "info.feedback.error.email.required": "ଏକ ବୈଧ ଇମେଲ୍ ଠିକଣା ଆବଶ୍ୟକ", + "info.feedback.error.message.required": "ଏକ ମନ୍ତବ୍ୟ ଆବଶ୍ୟକ", + "info.feedback.page-label": "ପୃଷ୍ଠା", + "info.feedback.page_help": "ଆପଣଙ୍କ ମତାମତ ସହିତ ସମ୍ବନ୍ଧିତ ପୃଷ୍ଠା", + "info.coar-notify-support.title": "COAR ନୋଟିଫାଇ ସମର୍ଥନ", + "info.coar-notify-support.breadcrumbs": "COAR ନୋଟିଫାଇ ସମର୍ଥନ", + "item.alerts.private": "ଏହି ଆଇଟମ୍ ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ", + "item.alerts.withdrawn": "ଏହି ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର କରାଯାଇଛି", + "item.alerts.reinstate-request": "ପୁନଃସ୍ଥାପନ ଅନୁରୋଧ", + "quality-assurance.event.table.person-who-requested": "ଅନୁରୋଧ କରିଥିବା ବ୍ୟକ୍ତି", + "item.edit.authorizations.heading": "ଏହି ସମ୍ପାଦକ ସହିତ, ଆପଣ ଏକ ଆଇଟମ୍ ନୀତିଗୁଡ଼ିକୁ ଦେଖିପାରିବେ ଏବଂ ପରିବର୍ତ୍ତନ କରିପାରିବେ, ଏବଂ ପୃଷ୍ଠା ସଂଖ୍ୟା ଉପରେ ଡ୍ରପ୍ କରି ଏକ ବିଟଷ୍ଟ୍ରିମ୍ କୁ ଏକ ଭିନ୍ନ ପୃଷ୍ଠାକୁ ଘୁଞ୍ଚାଇପାରିବେ।", + "item.edit.authorizations.title": "ଆଇଟମ୍ ନୀତିଗୁଡ଼ିକୁ ସମ୍ପାଦନ କରନ୍ତୁ", + "item.badge.status": "ଆଇଟମ୍ ସ୍ଥିତି:", + "item.badge.private": "ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ", + "item.badge.withdrawn": "ପ୍ରତ୍ୟାହାର କରାଯାଇଛି", + "item.bitstreams.upload.bundle": "ବଣ୍ଡଲ୍", + "item.bitstreams.upload.bundle.placeholder": "ଏକ ବଣ୍ଡଲ୍ ଚୟନ କରନ୍ତୁ କିମ୍ବା ନୂତନ ବଣ୍ଡଲ୍ ନାମ ପ୍ରବେଶ କରନ୍ତୁ", + "item.bitstreams.upload.bundle.new": "ବଣ୍ଡଲ୍ ସୃଷ୍ଟି କରନ୍ତୁ", + "item.bitstreams.upload.bundles.empty": "ଏହି ଆଇଟମ୍ ରେ କୌଣସି ବଣ୍ଡଲ୍ ନାହିଁ ଯାହାକୁ ଏକ ବିଟଷ୍ଟ୍ରିମ୍ ଅପଲୋଡ୍ କରାଯାଇପାରିବ।", + "item.bitstreams.upload.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "item.bitstreams.upload.drop-message": "ଅପଲୋଡ୍ କରିବାକୁ ଏକ ଫାଇଲ୍ ଡ୍ରପ୍ କରନ୍ତୁ", + "item.bitstreams.upload.item": "ଆଇଟମ୍: ", + "item.bitstreams.upload.notifications.bundle.created.content": "ନୂତନ ବଣ୍ଡଲ୍ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି।", + "item.bitstreams.upload.notifications.bundle.created.title": "ବଣ୍ଡଲ୍ ସୃଷ୍ଟି ହୋଇଛି", + "item.bitstreams.upload.notifications.upload.failed": "ଅପଲୋଡ୍ ବିଫଳ ହୋଇଛି। ଦୟାକରି ପୁନରାବୃତ୍ତି କରିବା ପୂର୍ବରୁ ବିଷୟବସ୍ତୁ ଯାଞ୍ଚ କରନ୍ତୁ।", + "item.bitstreams.upload.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଅପଲୋଡ୍ କରନ୍ତୁ", + "item.edit.bitstreams.bundle.edit.buttons.upload": "ଅପଲୋଡ୍ କରନ୍ତୁ", + "item.edit.bitstreams.bundle.displaying": "ବର୍ତ୍ତମାନ {{ total }} ରୁ {{ amount }} ବିଟଷ୍ଟ୍ରିମ୍ ପ୍ରଦର୍ଶିତ ହେଉଛି।", + "item.edit.bitstreams.bundle.load.all": "ସମସ୍ତ ({{ total }}) ଲୋଡ୍ କରନ୍ତୁ", + "item.edit.bitstreams.bundle.load.more": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", + "item.edit.bitstreams.bundle.name": "ବଣ୍ଡଲ୍: {{ name }}", + "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} ବଣ୍ଡଲ୍ ରେ ଥିବା ବିଟଷ୍ଟ୍ରିମ୍", + "item.edit.bitstreams.bundle.tooltip": "ଆପଣ ଏକ ବିଟଷ୍ଟ୍ରିମ୍ କୁ ପୃଷ୍ଠା ସଂଖ୍ୟା ଉପରେ ଡ୍ରପ୍ କରି ଏକ ଭିନ୍ନ ପୃଷ୍ଠାକୁ ଘୁଞ୍ଚାଇପାରିବେ।", + "item.edit.bitstreams.discard-button": "ପରିତ୍ୟାଗ କରନ୍ତୁ", + "item.edit.bitstreams.edit.buttons.download": "ଡାଉନଲୋଡ୍ କରନ୍ତୁ", + "item.edit.bitstreams.edit.buttons.drag": "ଟାଣନ୍ତୁ", + "item.edit.bitstreams.edit.buttons.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", + "item.edit.bitstreams.edit.buttons.remove": "ଅପସାରଣ କରନ୍ତୁ", + "item.edit.bitstreams.edit.buttons.undo": "ପରିବର୍ତ୍ତନଗୁଡ଼ିକୁ ପ୍ରତ୍ୟାବର୍ତ୍ତନ କରନ୍ତୁ", + "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} କୁ ସ୍ଥିତି {{ toIndex }} କୁ ଫେରାଇ ଦିଆଯାଇଛି ଏବଂ ଏହା ବର୍ତ୍ତମାନ ଚୟନିତ ନୁହେଁ।", + "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} ବର୍ତ୍ତମାନ ଚୟନିତ ନୁହେଁ।", + "item.edit.bitstreams.edit.live.loading": "ଘୁଞ୍ଚାଇବା ସମାପ୍ତ ହେବା ପର୍ଯ୍ୟନ୍ତ ଅପେକ୍ଷା କରୁଛି।", + "item.edit.bitstreams.edit.live.select": "{{ bitstream }} ଚୟନିତ ହୋଇଛି।", + "item.edit.bitstreams.edit.live.move": "{{ bitstream }} ବର୍ତ୍ତମାନ ସ୍ଥିତି {{ toIndex }} ରେ ଅଛି।", + "item.edit.bitstreams.empty": "ଏହି ଆଇଟମ୍ ରେ କୌଣସି ବିଟଷ୍ଟ୍ରିମ୍ ନାହିଁ। ଗୋଟିଏ ସୃଷ୍ଟି କରିବାକୁ ଅପଲୋଡ୍ ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ।", + "item.edit.bitstreams.info-alert": "ବିଟଷ୍ଟ୍ରିମ୍ ଗୁଡ଼ିକୁ ସେମାନଙ୍କ ବଣ୍ଡଲ୍ ମଧ୍ୟରେ ଡ୍ରାଗ୍ ହ୍ୟାଣ୍ଡଲ୍ ଧରି ଏବଂ ମାଉସ୍ ଘୁଞ୍ଚାଇ ପୁନର୍ବିନ୍ୟାସ କରାଯାଇପାରିବ। ବିକଳ୍ପ ଭାବରେ, ନିମ୍ନଲିଖିତ ଉପାୟରେ କିବୋର୍ଡ୍ ବ୍ୟବହାର କରି ବିଟଷ୍ଟ୍ରିମ୍ ଗୁଡ଼ିକୁ ଘୁଞ୍ଚାଇପାରିବେ: ବିଟଷ୍ଟ୍ରିମ୍ ର ଡ୍ରାଗ୍ ହ୍ୟାଣ୍ଡଲ୍ ଫୋକସ୍ ରେ ଥିବା ସମୟରେ ଏଣ୍ଟର୍ ଦବାଇ ବିଟଷ୍ଟ୍ରିମ୍ ଚୟନ କରନ୍ତୁ। ବିଟଷ୍ଟ୍ରିମ୍ କୁ ଉପର କିମ୍ବା ତଳକୁ ଘୁଞ୍ଚାଇବାକୁ ଏରୋ କି ବ୍ୟବହାର କରନ୍ତୁ। ବିଟଷ୍ଟ୍ରିମ୍ ର ବର୍ତ୍ତମାନ ସ୍ଥିତି ନିଶ୍ଚିତ କରିବାକୁ ପୁନର୍ବାର ଏଣ୍ଟର୍ ଦବାନ୍ତୁ।", + "item.edit.bitstreams.headers.actions": "କାର୍ଯ୍ୟ", + "item.edit.bitstreams.headers.bundle": "ବଣ୍ଡଲ୍", + "item.edit.bitstreams.headers.description": "ବିବରଣୀ", + "item.edit.bitstreams.headers.format": "ଫର୍ମାଟ୍", + "item.edit.bitstreams.headers.name": "ନାମ", + "item.edit.bitstreams.notifications.discarded.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡ଼ିକୁ ପରିତ୍ୟାଗ କରାଯାଇଛି। ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡ଼ିକୁ ପୁନର୍ସ୍ଥାପନ କରିବାକୁ 'ପ୍ରତ୍ୟାବର୍ତ୍ତନ' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ", + "item.edit.bitstreams.notifications.discarded.title": "ପରିବର୍ତ୍ତନ ପରିତ୍ୟାଗ କରାଯାଇଛି", + "item.edit.bitstreams.notifications.move.failed.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଘୁଞ୍ଚାଇବାରେ ତ୍ରୁଟି", + "item.edit.bitstreams.notifications.move.saved.content": "ଆପଣଙ୍କର ଏହି ଆଇଟମ୍ ର ବିଟଷ୍ଟ୍ରିମ୍ ଏବଂ ବଣ୍ଡଲ୍ ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ସଞ୍ଚୟ ହୋଇଛି।", + "item.edit.bitstreams.notifications.move.saved.title": "ପରିବର୍ତ୍ତନ ସଂରକ୍ଷିତ ହେଲା", + "item.edit.bitstreams.notifications.outdated.content": "ଆପଣ ବର୍ତ୍ତମାନ କାମ କରୁଥିବା ଆଇଟମ୍ ଅନ୍ୟ ଏକ ଉପଯୋଗକର୍ତ୍ତା ଦ୍ୱାରା ପରିବର୍ତ୍ତିତ ହୋଇଛି। ବିବାଦ ରୋକିବା ପାଇଁ ଆପଣଙ୍କର ବର୍ତ୍ତମାନର ପରିବର୍ତ୍ତନଗୁଡିକ ବାତିଲ ହୋଇଛି", + "item.edit.bitstreams.notifications.outdated.title": "ପୁରାତନ ପରିବର୍ତ୍ତନ", + "item.edit.bitstreams.notifications.remove.failed.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଡିଲିଟ୍ କରିବାରେ ତ୍ରୁଟି", + "item.edit.bitstreams.notifications.remove.saved.content": "ଆଇଟମ୍ର ବିଟଷ୍ଟ୍ରିମ୍ ପାଇଁ ଆପଣଙ୍କର ଅପସାରଣ ପରିବର୍ତ୍ତନ ସଂରକ୍ଷିତ ହୋଇଛି।", + "item.edit.bitstreams.notifications.remove.saved.title": "ଅପସାରଣ ପରିବର୍ତ୍ତନ ସଂରକ୍ଷିତ", + "item.edit.bitstreams.reinstate-button": "ପୂର୍ବବତ୍ କରନ୍ତୁ", + "item.edit.bitstreams.save-button": "ସେଭ୍ କରନ୍ତୁ", + "item.edit.bitstreams.upload-button": "ଅପଲୋଡ୍ କରନ୍ତୁ", + "item.edit.bitstreams.load-more.link": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", + "item.edit.delete.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "item.edit.delete.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", + "item.edit.delete.description": "ଆପଣ ନିଶ୍ଚିତ କି ଏହି ଆଇଟମ୍ ସମ୍ପୂର୍ଣ୍ଣ ଭାବରେ ଡିଲିଟ୍ ହେବା ଉଚିତ୍? ସତର୍କତା: ବର୍ତ୍ତମାନ, କୌଣସି ଟୋମ୍ବଷ୍ଟୋନ୍ ଛାଡି ହେବ ନାହିଁ।", + "item.edit.delete.error": "ଆଇଟମ୍ ଡିଲିଟ୍ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "item.edit.delete.header": "ଆଇଟମ୍ ଡିଲିଟ୍ କରନ୍ତୁ: {{ id }}", + "item.edit.delete.success": "ଆଇଟମ୍ ଡିଲିଟ୍ ହୋଇଛି", + "item.edit.head": "ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + "item.edit.breadcrumbs": "ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + "item.edit.tabs.disabled.tooltip": "ଆପଣ ଏହି ଟ୍ୟାବ୍ ପ୍ରବେଶ କରିବାକୁ ଅଧିକୃତ ନୁହଁନ୍ତି", + "item.edit.tabs.mapper.head": "କଲେକ୍ସନ୍ ମ୍ୟାପର୍", + "item.edit.tabs.item-mapper.title": "ଆଇଟମ୍ ସଂପାଦନ - କଲେକ୍ସନ୍ ମ୍ୟାପର୍", + "item.edit.identifiers.doi.status.UNKNOWN": "ଅଜ୍ଞାତ", + "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "ପଞ୍ଜିକରଣ ପାଇଁ ଧାଡିରେ ଅଛି", + "item.edit.identifiers.doi.status.TO_BE_RESERVED": "ସଂରକ୍ଷଣ ପାଇଁ ଧାଡିରେ ଅଛି", + "item.edit.identifiers.doi.status.IS_REGISTERED": "ପଞ୍ଜିକୃତ", + "item.edit.identifiers.doi.status.IS_RESERVED": "ସଂରକ୍ଷିତ", + "item.edit.identifiers.doi.status.UPDATE_RESERVED": "ସଂରକ୍ଷିତ (ଅପଡେଟ୍ ଧାଡିରେ ଅଛି)", + "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "ପଞ୍ଜିକୃତ (ଅପଡେଟ୍ ଧାଡିରେ ଅଛି)", + "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "ଅପଡେଟ୍ ଏବଂ ପଞ୍ଜିକରଣ ପାଇଁ ଧାଡିରେ ଅଛି", + "item.edit.identifiers.doi.status.TO_BE_DELETED": "ଡିଲିଟ୍ ପାଇଁ ଧାଡିରେ ଅଛି", + "item.edit.identifiers.doi.status.DELETED": "ଡିଲିଟ୍ ହୋଇଛି", + "item.edit.identifiers.doi.status.PENDING": "ବିଚାରାଧୀନ (ପଞ୍ଜିକୃତ ନୁହେଁ)", + "item.edit.identifiers.doi.status.MINTED": "ମିଣ୍ଟେଡ୍ (ପଞ୍ଜିକୃତ ନୁହେଁ)", + "item.edit.tabs.status.buttons.register-doi.label": "ଏକ ନୂତନ କିମ୍ବା ବିଚାରାଧୀନ DOI ପଞ୍ଜିକରଣ କରନ୍ତୁ", + "item.edit.tabs.status.buttons.register-doi.button": "DOI ପଞ୍ଜିକରଣ କରନ୍ତୁ...", + "item.edit.register-doi.header": "ଏକ ନୂତନ କିମ୍ବା ବିଚାରାଧୀନ DOI ପଞ୍ଜିକରଣ କରନ୍ତୁ", + "item.edit.register-doi.description": "ନିମ୍ନରେ କୌଣସି ବିଚାରାଧୀନ ପରିଚୟକାରୀ ଏବଂ ଆଇଟମ୍ ମେଟାଡାଟା ସମୀକ୍ଷା କରନ୍ତୁ ଏବଂ DOI ପଞ୍ଜିକରଣ ସହିତ ଆଗେଇବାକୁ ନିଶ୍ଚିତ କରନ୍ତୁ, କିମ୍ବା ବାହାରକୁ ଯିବାକୁ ବାତିଲ୍ କରନ୍ତୁ", + "item.edit.register-doi.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", + "item.edit.register-doi.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "item.edit.register-doi.success": "DOI ସଫଳତାର ସହିତ ପଞ୍ଜିକରଣ ପାଇଁ ଧାଡିରେ ଅଛି।", + "item.edit.register-doi.error": "DOI ପଞ୍ଜିକରଣରେ ତ୍ରୁଟି", + "item.edit.register-doi.to-update": "ନିମ୍ନଲିଖିତ DOI ପୂର୍ବରୁ ମିଣ୍ଟେଡ୍ ହୋଇଛି ଏବଂ ଅନଲାଇନ୍ ପଞ୍ଜିକରଣ ପାଇଁ ଧାଡିରେ ରଖାଯିବ", + "item.edit.item-mapper.buttons.add": "ଚୟନିତ କଲେକ୍ସନ୍ ଗୁଡିକୁ ଆଇଟମ୍ ମ୍ୟାପ୍ କରନ୍ତୁ", + "item.edit.item-mapper.buttons.remove": "ଚୟନିତ କଲେକ୍ସନ୍ ଗୁଡିକ ପାଇଁ ଆଇଟମ୍ର ମ୍ୟାପିଂ ଅପସାରଣ କରନ୍ତୁ", + "item.edit.item-mapper.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "item.edit.item-mapper.description": "ଏହା ହେଉଛି ଆଇଟମ୍ ମ୍ୟାପର୍ ଟୁଲ୍ ଯାହା ପ୍ରଶାସକମାନଙ୍କୁ ଏହି ଆଇଟମ୍ କୁ ଅନ୍ୟ କଲେକ୍ସନ୍ ଗୁଡିକୁ ମ୍ୟାପ୍ କରିବାକୁ ଅନୁମତି ଦେଇଥାଏ। ଆପଣ କଲେକ୍ସନ୍ ଗୁଡିକୁ ସନ୍ଧାନ କରିପାରିବେ ଏବଂ ସେଗୁଡିକୁ ମ୍ୟାପ୍ କରିପାରିବେ, କିମ୍ବା ଆଇଟମ୍ ବର୍ତ୍ତମାନ ମ୍ୟାପ୍ ହୋଇଥିବା କଲେକ୍ସନ୍ ଗୁଡିକର ତାଲିକା ବ୍ରାଉଜ୍ କରିପାରିବେ।", + "item.edit.item-mapper.head": "ଆଇଟମ୍ ମ୍ୟାପର୍ - କଲେକ୍ସନ୍ ଗୁଡିକୁ ଆଇଟମ୍ ମ୍ୟାପ୍ କରନ୍ତୁ", + "item.edit.item-mapper.item": "ଆଇଟମ୍: \"{{name}}\"", + "item.edit.item-mapper.no-search": "ସନ୍ଧାନ କରିବାକୁ ଏକ ପ୍ରଶ୍ନ ପ୍ରବେଶ କରନ୍ତୁ", + "item.edit.item-mapper.notifications.add.error.content": "{{amount}} କଲେକ୍ସନ୍ ଗୁଡିକୁ ଆଇଟମ୍ ମ୍ୟାପିଂ ପାଇଁ ତ୍ରୁଟି ଘଟିଲା।", + "item.edit.item-mapper.notifications.add.error.head": "ମ୍ୟାପିଂ ତ୍ରୁଟି", + "item.edit.item-mapper.notifications.add.success.content": "ଆଇଟମ୍ କୁ {{amount}} କଲେକ୍ସନ୍ ଗୁଡିକୁ ସଫଳତାର ସହିତ ମ୍ୟାପ୍ କରାଯାଇଛି।", + "item.edit.item-mapper.notifications.add.success.head": "ମ୍ୟାପିଂ ସମ୍ପୂର୍ଣ୍ଣ", + "item.edit.item-mapper.notifications.remove.error.content": "{{amount}} କଲେକ୍ସନ୍ ଗୁଡିକୁ ମ୍ୟାପିଂ ଅପସାରଣ ପାଇଁ ତ୍ରୁଟି ଘଟିଲା।", + "item.edit.item-mapper.notifications.remove.error.head": "ମ୍ୟାପିଂ ଅପସାରଣ ତ୍ରୁଟି", + "item.edit.item-mapper.notifications.remove.success.content": "ଆଇଟମ୍ କୁ {{amount}} କଲେକ୍ସନ୍ ଗୁଡିକୁ ମ୍ୟାପିଂ ସଫଳତାର ସହିତ ଅପସାରଣ କରାଯାଇଛି।", + "item.edit.item-mapper.notifications.remove.success.head": "ମ୍ୟାପିଂ ଅପସାରଣ ସମ୍ପୂର୍ଣ୍ଣ", + "item.edit.item-mapper.search-form.placeholder": "କଲେକ୍ସନ୍ ଗୁଡିକୁ ସନ୍ଧାନ କରନ୍ତୁ...", + "item.edit.item-mapper.tabs.browse": "ମ୍ୟାପ୍ ହୋଇଥିବା କଲେକ୍ସନ୍ ଗୁଡିକୁ ବ୍ରାଉଜ୍ କରନ୍ତୁ", + "item.edit.item-mapper.tabs.map": "ନୂତନ କଲେକ୍ସନ୍ ଗୁଡିକୁ ମ୍ୟାପ୍ କରନ୍ତୁ", + "item.edit.metadata.add-button": "ଯୋଡନ୍ତୁ", + "item.edit.metadata.discard-button": "ପରିତ୍ୟାଗ କରନ୍ତୁ", + "item.edit.metadata.edit.language": "ଭାଷା ସଂପାଦନ କରନ୍ତୁ", + "item.edit.metadata.edit.value": "ମୂଲ୍ୟ ସଂପାଦନ କରନ୍ତୁ", + "item.edit.metadata.edit.authority.key": "ପ୍ରାଧିକରଣ କି ସଂପାଦନ କରନ୍ତୁ", + "item.edit.metadata.edit.buttons.enable-free-text-editing": "ମୁକ୍ତ-ପାଠ୍ୟ ସଂପାଦନ ସକ୍ଷମ କରନ୍ତୁ", + "item.edit.metadata.edit.buttons.disable-free-text-editing": "ମୁକ୍ତ-ପାଠ୍ୟ ସଂପାଦନ ଅକ୍ଷମ କରନ୍ତୁ", + "item.edit.metadata.edit.buttons.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", + "item.edit.metadata.edit.buttons.drag": "ପୁନଃକ୍ରମିକରଣ ପାଇଁ ଟାଣନ୍ତୁ", + "item.edit.metadata.edit.buttons.edit": "ସଂପାଦନ କରନ୍ତୁ", + "item.edit.metadata.edit.buttons.remove": "ଅପସାରଣ କରନ୍ତୁ", + "item.edit.metadata.edit.buttons.undo": "ପରିବର୍ତ୍ତନଗୁଡିକୁ ପୂର୍ବବତ୍ କରନ୍ତୁ", + "item.edit.metadata.edit.buttons.unedit": "ସଂପାଦନ ବନ୍ଦ କରନ୍ତୁ", + "item.edit.metadata.edit.buttons.virtual": "ଏହା ଏକ ଭର୍ଚୁଆଲ୍ ମେଟାଡାଟା ମୂଲ୍ୟ, ଅର୍ଥାତ୍ ଏକ ସମ୍ବନ୍ଧିତ ସଂସ୍ଥା ଠାରୁ ଉତ୍ତରାଧିକାର ସୂତ୍ରରେ ପ୍ରାପ୍ତ ଏକ ମୂଲ୍ୟ। ଏହାକୁ ସିଧାସଳଖ ସଂଶୋଧନ କରାଯାଇପାରିବ ନାହିଁ। \"ସମ୍ପର୍କ\" ଟ୍ୟାବରେ ସମ୍ବନ୍ଧିତ ସମ୍ପର୍କ ଯୋଡନ୍ତୁ କିମ୍ବା ଅପସାରଣ କରନ୍ତୁ", + "item.edit.metadata.empty": "ଆଇଟମ୍ ବର୍ତ୍ତମାନ କୌଣସି ମେଟାଡାଟା ଧାରଣ କରୁନାହିଁ। ଏକ ମେଟାଡାଟା ମୂଲ୍ୟ ଯୋଡିବା ଆରମ୍ଭ କରିବାକୁ ଯୋଡନ୍ତୁ କ୍ଲିକ୍ କରନ୍ତୁ।", + "item.edit.metadata.headers.edit": "ସଂପାଦନ କରନ୍ତୁ", + "item.edit.metadata.headers.field": "କ୍ଷେତ୍ର", + "item.edit.metadata.headers.language": "ଭାଷା", + "item.edit.metadata.headers.value": "ମୂଲ୍ୟ", + "item.edit.metadata.metadatafield": "କ୍ଷେତ୍ର ସଂପାଦନ କରନ୍ତୁ", + "item.edit.metadata.metadatafield.error": "ମେଟାଡାଟା କ୍ଷେତ୍ର ଯାଞ୍ଚ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "item.edit.metadata.metadatafield.invalid": "ଦୟାକରି ଏକ ବୈଧ ମେଟାଡାଟା କ୍ଷେତ୍ର ଚୟନ କରନ୍ତୁ", + "item.edit.metadata.notifications.discarded.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଛି। ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକୁ ପୁନର୍ସ୍ଥାପନ କରିବାକୁ 'ପୂର୍ବବତ୍' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ", + "item.edit.metadata.notifications.discarded.title": "ପରିବର୍ତ୍ତନ ପରିତ୍ୟାଗ କରାଯାଇଛି", + "item.edit.metadata.notifications.error.title": "ଏକ ତ୍ରୁଟି ଘଟିଲା", + "item.edit.metadata.notifications.invalid.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଂରକ୍ଷିତ ହୋଇନାହିଁ। ଦୟାକରି ସଂରକ୍ଷଣ କରିବା ପୂର୍ବରୁ ସମସ୍ତ କ୍ଷେତ୍ର ବୈଧ ବୋଲି ନିଶ୍ଚିତ କରନ୍ତୁ।", + "item.edit.metadata.notifications.invalid.title": "ମେଟାଡାଟା ଅବୈଧ", + "item.edit.metadata.notifications.outdated.content": "ଆପଣ ବର୍ତ୍ତମାନ କାମ କରୁଥିବା ଆଇଟମ୍ ଅନ୍ୟ ଏକ ଉପଯୋଗକର୍ତ୍ତା ଦ୍ୱାରା ପରିବର୍ତ୍ତିତ ହୋଇଛି। ବିବାଦ ରୋକିବା ପାଇଁ ଆପଣଙ୍କର ବର୍ତ୍ତମାନର ପରିବର୍ତ୍ତନଗୁଡିକ ବାତିଲ ହୋଇଛି", + "item.edit.metadata.notifications.outdated.title": "ପୁରାତନ ପରିବର୍ତ୍ତନ", + "item.edit.metadata.notifications.saved.content": "ଆଇଟମ୍ର ମେଟାଡାଟାରେ ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଂରକ୍ଷିତ ହୋଇଛି।", + "item.edit.metadata.notifications.saved.title": "ମେଟାଡାଟା ସଂରକ୍ଷିତ", + "item.edit.metadata.reinstate-button": "ପୂର୍ବବତ୍ କରନ୍ତୁ", + "item.edit.metadata.reset-order-button": "ପୁନଃକ୍ରମିକରଣ ପୂର୍ବବତ୍ କରନ୍ତୁ", + "item.edit.metadata.save-button": "ସେଭ୍ କରନ୍ତୁ", + "item.edit.metadata.authority.label": "ପ୍ରାଧିକରଣ: ", + "item.edit.metadata.edit.buttons.open-authority-edition": "ହସ୍ତକୃତ ସଂପାଦନ ପାଇଁ ପ୍ରାଧିକରଣ କି ମୂଲ୍ୟ ଅନଲକ୍ କରନ୍ତୁ", + "item.edit.metadata.edit.buttons.close-authority-edition": "ହସ୍ତକୃତ ସଂପାଦନ ପାଇଁ ପ୍ରାଧିକରଣ କି ମୂଲ୍ୟ ଲକ୍ କରନ୍ତୁ", + "item.edit.modify.overview.field": "କ୍ଷେତ୍ର", + "item.edit.modify.overview.language": "ଭାଷା", + "item.edit.modify.overview.value": "ମୂଲ୍ୟ", + "item.edit.move.cancel": "ପଛକୁ", + "item.edit.move.save-button": "ସେଭ୍ କରନ୍ତୁ", + "item.edit.move.discard-button": "ପରିତ୍ୟାଗ କରନ୍ତୁ", + "item.edit.move.description": "ଆପଣ ଏହି ଆଇଟମ୍ କୁ ଯେଉଁ କଲେକ୍ସନ୍ କୁ ଗତି କରିବାକୁ ଚାହୁଁଛନ୍ତି ତାହା ଚୟନ କରନ୍ତୁ। ପ୍ରଦର୍ଶିତ କଲେକ୍ସନ୍ ଗୁଡିକର ତାଲିକାକୁ ସଂକୀର୍ଣ୍ଣ କରିବାକୁ, ଆପଣ ବାକ୍ସରେ ଏକ ସନ୍ଧାନ ପ୍ରଶ୍ନ ପ୍ରବେଶ କରିପାରିବେ।", + "item.edit.move.error": "ଆଇଟମ୍ ଗତି କରିବାକୁ ଚେଷ୍ଟା କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "item.edit.move.head": "ଆଇଟମ୍ ଗତି କରନ୍ତୁ: {{id}}", + "item.edit.move.inheritpolicies.checkbox": "ନୀତି ଉତ୍ତରାଧିକାର କରନ୍ତୁ", + "item.edit.move.inheritpolicies.description": "ଗନ୍ତବ୍ୟସ୍ଥଳ କଲେକ୍ସନ୍ର ଡିଫଲ୍ଟ ନୀତି ଉତ୍ତରାଧିକାର କରନ୍ତୁ", + "item.edit.move.inheritpolicies.tooltip": "ଚେତାବନୀ: ସକ୍ଷମ ହେଲେ, ଆଇଟମ୍ ଏବଂ ଆଇଟମ୍ ସହିତ ଜଡିତ କୌଣସି ଫାଇଲ୍ ପାଇଁ ପଠନ ପ୍ରବେଶ ନୀତି କଲେକ୍ସନ୍ର ଡିଫଲ୍ଟ ପଠନ ପ୍ରବେଶ ନୀତି ଦ୍ୱାରା ପ୍ରତିସ୍ଥାପିତ ହେବ। ଏହାକୁ ପୂର୍ବବତ୍ କରାଯାଇପାରିବ ନାହିଁ।", + "item.edit.move.move": "ଗତି କରନ୍ତୁ", + "item.edit.move.processing": "ଗତି କରୁଛି...", + "item.edit.move.search.placeholder": "କଲେକ୍ସନ୍ ଗୁଡିକୁ ଖୋଜିବା ପାଇଁ ଏକ ସନ୍ଧାନ ପ୍ରଶ୍ନ ପ୍ରବେଶ କରନ୍ତୁ", + "item.edit.move.success": "ଆଇଟମ୍ ସଫଳତାର ସହିତ ଗତି କରାଯାଇଛି", + "item.edit.move.title": "ଆଇଟମ୍ ଗତି କରନ୍ତୁ", + "item.edit.private.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "item.edit.private.confirm": "ଏହାକୁ ଅସନ୍ଧାନଯୋଗ୍ୟ କରନ୍ତୁ", + "item.edit.private.description": "ଆପଣ ନିଶ୍ଚିତ କି ଏହି ଆଇଟମ୍ ଆର୍କାଇଭରେ ଅସନ୍ଧାନଯୋଗ୍ୟ ହେବା ଉଚିତ୍?", + "item.edit.private.error": "ଆଇଟମ୍ କୁ ଅସନ୍ଧାନଯୋଗ୍ୟ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "item.edit.private.header": "ଆଇଟମ୍ ଅସନ୍ଧାନଯୋଗ୍ୟ କରନ୍ତୁ: {{ id }}", + "item.edit.private.success": "ଆଇଟମ୍ ବର୍ତ୍ତମାନ ଅସନ୍ଧାନଯୋଗ୍ୟ", + "item.edit.public.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "item.edit.public.confirm": "ଏହାକୁ ସନ୍ଧାନଯୋଗ୍ୟ କରନ୍ତୁ", + "item.edit.public.description": "ଆପଣ ନିଶ୍ଚିତ କି ଏହି ଆଇଟମ୍ ଆର୍କାଇଭରେ ସନ୍ଧାନଯୋଗ୍ୟ ହେବା ଉଚିତ୍?", + "item.edit.public.error": "ଆଇଟମ୍ କୁ ସନ୍ଧାନଯୋଗ୍ୟ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "item.edit.public.header": "ଆଇଟମ୍ ସନ୍ଧାନଯୋଗ୍ୟ କରନ୍ତୁ: {{ id }}", + "item.edit.public.success": "ଆଇଟମ୍ ବର୍ତ୍ତମାନ ସନ୍ଧାନଯୋଗ୍ୟ", + "item.edit.reinstate.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "item.edit.reinstate.confirm": "ପୁନର୍ସ୍ଥାପନ କରନ୍ତୁ", + "item.edit.reinstate.description": "ଆପଣ ନିଶ୍ଚିତ କି ଏହି ଆଇଟମ୍ ଆର୍କାଇଭକୁ ପୁନର୍ସ୍ଥାପନ କରିବା ଉଚିତ୍?", + "item.edit.reinstate.error": "ଆଇଟମ୍ ପୁନର୍ସ୍ଥାପନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "item.edit.reinstate.header": "ଆଇଟମ୍ ପୁନର୍ସ୍ଥାପନ କରନ୍ତୁ: {{ id }}", + "item.edit.reinstate.success": "ଆଇଟମ୍ ସଫଳତାର ସହିତ ପୁନର୍ସ୍ଥାପିତ ହୋଇଛି", + "item.edit.relationships.discard-button": "ପରିତ୍ୟାଗ କରନ୍ତୁ", + "item.edit.relationships.edit.buttons.add": "ଯୋଡନ୍ତୁ", + "item.edit.relationships.edit.buttons.remove": "ଅପସାରଣ କରନ୍ତୁ", + "item.edit.relationships.edit.buttons.undo": "ପରିବର୍ତ୍ତନଗୁଡିକୁ ପୂର୍ବବତ୍ କରନ୍ତୁ", + "item.edit.relationships.no-relationships": "କୌଣସି ସମ୍ପର୍କ ନାହିଁ", + "item.edit.relationships.notifications.discarded.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଛି। ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକୁ ପୁନର୍ସ୍ଥାପନ କରିବାକୁ 'ପୂର୍ବବତ୍' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ", + "item.edit.relationships.notifications.discarded.title": "ପରିବର୍ତ୍ତନ ପରିତ୍ୟାଗ କରାଯାଇଛି", + "item.edit.relationships.notifications.failed.title": "ସମ୍ପର୍କ ସଂପାଦନରେ ତ୍ରୁଟି", + "item.edit.relationships.notifications.outdated.content": "ଆପଣ ବର୍ତ୍ତମାନ କାମ କରୁଥିବା ଆଇଟମ୍ ଅନ୍ୟ ଏକ ଉପଯୋଗକର୍ତ୍ତା ଦ୍ୱାରା ପରିବର୍ତ୍ତିତ ହୋଇଛି। ବିବାଦ ରୋକିବା ପାଇଁ ଆପଣଙ୍କର ବର୍ତ୍ତମାନର ପରିବର୍ତ୍ତନଗୁଡିକ ବାତିଲ ହୋଇଛି", + "item.edit.relationships.notifications.outdated.title": "ପୁରାତନ ପରିବର୍ତ୍ତନ", + "item.edit.relationships.notifications.saved.content": "ଆଇଟମ୍ର ସମ୍ପର୍କରେ ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଂରକ୍ଷିତ ହୋଇଛି।", + "item.edit.relationships.notifications.saved.title": "ସମ୍ପର୍କ ସଂରକ୍ଷିତ", + "item.edit.relationships.reinstate-button": "ପୂର୍ବବତ୍ କରନ୍ତୁ", + "item.edit.relationships.save-button": "ସେଭ୍ କରନ୍ତୁ", + + "item.edit.relationships.no-entity-type": "ଏହି ଆଇଟମ୍ ପାଇଁ ସମ୍ପର୍କ ସକ୍ଷମ କରିବାକୁ 'dspace.entity.type' ମେଟାଡାଟା ଯୋଡନ୍ତୁ", + + "item.edit.return": "ପଛକୁ ଯାଆନ୍ତୁ", + + "item.edit.tabs.bitstreams.head": "ବିଟଷ୍ଟ୍ରିମ୍", + + "item.edit.tabs.bitstreams.title": "ଆଇଟମ୍ ସଂପାଦନା - ବିଟଷ୍ଟ୍ରିମ୍", + + "item.edit.tabs.curate.head": "କ୍ୟୁରେଟ୍", + + "item.edit.tabs.curate.title": "ଆଇଟମ୍ ସଂପାଦନା - କ୍ୟୁରେଟ୍", + + "item.edit.curate.title": "ଆଇଟମ୍ କ୍ୟୁରେଟ୍ କରନ୍ତୁ: {{item}}", + + "item.edit.tabs.access-control.head": "ଆକ୍ସେସ୍ ନିୟନ୍ତ୍ରଣ", + + "item.edit.tabs.access-control.title": "ଆଇଟମ୍ ସଂପାଦନା - ଆକ୍ସେସ୍ ନିୟନ୍ତ୍ରଣ", + + "item.edit.tabs.metadata.head": "ମେଟାଡାଟା", + + "item.edit.tabs.metadata.title": "ଆଇଟମ୍ ସଂପାଦନା - ମେଟାଡାଟା", + + "item.edit.tabs.relationships.head": "ସମ୍ପର୍କ", + + "item.edit.tabs.relationships.title": "ଆଇଟମ୍ ସଂପାଦନା - ସମ୍ପର୍କ", + + "item.edit.tabs.status.buttons.authorizations.button": "ଅଧିକାର...", + + "item.edit.tabs.status.buttons.authorizations.label": "ଆଇଟମ୍ ର ଅଧିକାର ନୀତି ସଂପାଦନ କରନ୍ତୁ", + + "item.edit.tabs.status.buttons.delete.button": "ସ୍ଥାୟୀ ଭାବେ ଡିଲିଟ୍ କରନ୍ତୁ", + + "item.edit.tabs.status.buttons.delete.label": "ଆଇଟମ୍ କୁ ସମ୍ପୂର୍ଣ୍ଣ ଭାବେ ମିଟାଇଦିଅନ୍ତୁ", + + "item.edit.tabs.status.buttons.mappedCollections.button": "ମ୍ୟାପ୍ କରାଯାଇଥିବା ସଂଗ୍ରହ", + + "item.edit.tabs.status.buttons.mappedCollections.label": "ମ୍ୟାପ୍ କରାଯାଇଥିବା ସଂଗ୍ରହ ପରିଚାଳନା କରନ୍ତୁ", + + "item.edit.tabs.status.buttons.move.button": "ଏହି ଆଇଟମ୍ କୁ ଏକ ଭିନ୍ନ ସଂଗ୍ରହକୁ ଘୁଞ୍ଚାନ୍ତୁ", + + "item.edit.tabs.status.buttons.move.label": "ଆଇଟମ୍ କୁ ଅନ୍ୟ ସଂଗ୍ରହକୁ ଘୁଞ୍ଚାନ୍ତୁ", + + "item.edit.tabs.status.buttons.private.button": "ଏହାକୁ ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ...", + + "item.edit.tabs.status.buttons.private.label": "ଆଇଟମ୍ କୁ ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ", + + "item.edit.tabs.status.buttons.public.button": "ଏହାକୁ ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ...", + + "item.edit.tabs.status.buttons.public.label": "ଆଇଟମ୍ କୁ ଆବିଷ୍କାରଯୋଗ୍ୟ କରନ୍ତୁ", + + "item.edit.tabs.status.buttons.reinstate.button": "ପୁନଃ ସ୍ଥାପନ କରନ୍ତୁ...", + + "item.edit.tabs.status.buttons.reinstate.label": "ଆଇଟମ୍ କୁ ରିପୋଜିଟରିରେ ପୁନଃ ସ୍ଥାପନ କରନ୍ତୁ", + + "item.edit.tabs.status.buttons.unauthorized": "ଆପଣ ଏହି କାର୍ଯ୍ୟକୁ କରିବାକୁ ଅଧିକୃତ ନୁହଁନ୍ତି", + + "item.edit.tabs.status.buttons.withdraw.button": "ଏହି ଆଇଟମ୍ କୁ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", + + "item.edit.tabs.status.buttons.withdraw.label": "ରିପୋଜିଟରିରୁ ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", + + "item.edit.tabs.status.description": "ଆଇଟମ୍ ପରିଚାଳନା ପୃଷ୍ଠାକୁ ସ୍ୱାଗତ | ଏଠାରୁ ଆପଣ ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର, ପୁନଃ ସ୍ଥାପନ, ଘୁଞ୍ଚାଇବା କିମ୍ବା ଡିଲିଟ୍ କରିପାରିବେ | ଆପଣ ଅନ୍ୟ ଟ୍ୟାବ୍ ଗୁଡିକରେ ମେଟାଡାଟା / ବିଟଷ୍ଟ୍ରିମ୍ ଅଦ୍ୟତନ କିମ୍ବା ନୂତନ ଯୋଡିପାରିବେ |", + + "item.edit.tabs.status.head": "ସ୍ଥିତି", + + "item.edit.tabs.status.labels.handle": "ହ୍ୟାଣ୍ଡଲ୍", + + "item.edit.tabs.status.labels.id": "ଆଇଟମ୍ ଆଭ୍ୟନ୍ତରୀଣ ID", + + "item.edit.tabs.status.labels.itemPage": "ଆଇଟମ୍ ପୃଷ୍ଠା", + + "item.edit.tabs.status.labels.lastModified": "ଶେଷ ସଂଶୋଧିତ", + + "item.edit.tabs.status.title": "ଆଇଟମ୍ ସଂପାଦନା - ସ୍ଥିତି", + + "item.edit.tabs.versionhistory.head": "ସଂସ୍କରଣ ଇତିହାସ", + + "item.edit.tabs.versionhistory.title": "ଆଇଟମ୍ ସଂପାଦନା - ସଂସ୍କରଣ ଇତିହାସ", + + "item.edit.tabs.versionhistory.under-construction": "ଏହି ଉପଯୋଗକର୍ତ୍ତା ଇଣ୍ଟରଫେସରେ ସଂସ୍କରଣ ସଂପାଦନା କିମ୍ବା ନୂତନ ସଂସ୍କରଣ ଯୋଡିବା ଏପର୍ଯ୍ୟନ୍ତ ସମ୍ଭବ ନୁହେଁ |", + + "item.edit.tabs.view.head": "ଆଇଟମ୍ ଦେଖନ୍ତୁ", + + "item.edit.tabs.view.title": "ଆଇଟମ୍ ସଂପାଦନା - ଦେଖନ୍ତୁ", + + "item.edit.withdraw.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "item.edit.withdraw.confirm": "ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", + + "item.edit.withdraw.description": "ଆପଣ ନିଶ୍ଚିତ କି ଏହି ଆଇଟମ୍ କୁ ଆର୍କାଇଭରୁ ପ୍ରତ୍ୟାହାର କରିବା ଉଚିତ୍?", + + "item.edit.withdraw.error": "ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + + "item.edit.withdraw.header": "ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ: {{ id }}", + + "item.edit.withdraw.success": "ଆଇଟମ୍ ସଫଳତାର ସହିତ ପ୍ରତ୍ୟାହାର ହୋଇଛି", + + "item.orcid.return": "ପଛକୁ ଯାଆନ୍ତୁ", + + "item.listelement.badge": "ଆଇଟମ୍", + + "item.page.description": "ବର୍ଣ୍ଣନା", + + "item.page.org-unit": "ସାଂଗଠନିକ ଏକକ", + + "item.page.org-units": "ସାଂଗଠନିକ ଏକକ", + + "item.page.project": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟ", + + "item.page.projects": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟ", + + "item.page.publication": "ପ୍ରକାଶନ", + + "item.page.publications": "ପ୍ରକାଶନ", + + "item.page.article": "ପ୍ରବନ୍ଧ", + + "item.page.articles": "ପ୍ରବନ୍ଧ", + + "item.page.journal": "ଜର୍ଣ୍ଣାଲ୍", + + "item.page.journals": "ଜର୍ଣ୍ଣାଲ୍", + + "item.page.journal-issue": "ଜର୍ଣ୍ଣାଲ୍ ଇସୁ", + + "item.page.journal-issues": "ଜର୍ଣ୍ଣାଲ୍ ଇସୁ", + + "item.page.journal-volume": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍", + + "item.page.journal-volumes": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍", + + "item.page.journal-issn": "ଜର୍ଣ୍ଣାଲ୍ ISSN", + + "item.page.journal-title": "ଜର୍ଣ୍ଣାଲ୍ ଆଖ୍ୟା", + + "item.page.publisher": "ପ୍ରକାଶକ", + + "item.page.titleprefix": "ଆଇଟମ୍: ", + + "item.page.volume-title": "ଭଲ୍ୟୁମ୍ ଆଖ୍ୟା", + + "item.page.dcterms.spatial": "ଭୌଗୋଳିକ ବିନ୍ଦୁ", + + "item.search.results.head": "ଆଇଟମ୍ ସନ୍ଧାନ ଫଳାଫଳ", + + "item.search.title": "ଆଇଟମ୍ ସନ୍ଧାନ", + + "item.truncatable-part.show-more": "ଅଧିକ ଦେଖାନ୍ତୁ", + + "item.truncatable-part.show-less": "ସଂକୋଚନ କରନ୍ତୁ", + + "item.qa-event-notification.check.notification-info": "ଆପଣଙ୍କ ଆକାଉଣ୍ଟ୍ ସହିତ ଜଡିତ {{num}} ବିଚାରାଧୀନ ପରାମର୍ଶ ଅଛି", + + "item.qa-event-notification-info.check.button": "ଦେଖନ୍ତୁ", + + "mydspace.qa-event-notification.check.notification-info": "ଆପଣଙ୍କ ଆକାଉଣ୍ଟ୍ ସହିତ ଜଡିତ {{num}} ବିଚାରାଧୀନ ପରାମର୍ଶ ଅଛି", + + "mydspace.qa-event-notification-info.check.button": "ଦେଖନ୍ତୁ", + + "workflow-item.search.result.delete-supervision.modal.header": "ପରିଚାଳନା ଅର୍ଡର୍ ଡିଲିଟ୍ କରନ୍ତୁ", + + "workflow-item.search.result.delete-supervision.modal.info": "ଆପଣ ନିଶ୍ଚିତ କି ଆପଣ ପରିଚାଳନା ଅର୍ଡର୍ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", + + "workflow-item.search.result.delete-supervision.modal.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "workflow-item.search.result.delete-supervision.modal.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", + + "workflow-item.search.result.notification.deleted.success": "ପରିଚାଳନା ଅର୍ଡର୍ \"{{name}}\" ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", + + "workflow-item.search.result.notification.deleted.failure": "ପରିଚାଳନା ଅର୍ଡର୍ \"{{name}}\" ଡିଲିଟ୍ ହେଲା ନାହିଁ", + + "workflow-item.search.result.list.element.supervised-by": "ପରିଚାଳିତ ହେଉଛି:", + + "workflow-item.search.result.list.element.supervised.remove-tooltip": "ପରିଚାଳନା ଗୃପ୍ ହଟାନ୍ତୁ", + + "confidence.indicator.help-text.accepted": "ଏହି ପ୍ରାଧିକୃତ ମୂଲ୍ୟ ଏକ ଇଣ୍ଟରାକ୍ଟିଭ୍ ଉପଯୋଗକର୍ତ୍ତା ଦ୍ୱାରା ସଠିକ୍ ଭାବରେ ନିଶ୍ଚିତ ହୋଇଛି", + + "confidence.indicator.help-text.uncertain": "ମୂଲ୍ୟ ଏକକ ଏବଂ ବୈଧ, କିନ୍ତୁ ଏହା ଏକ ମାନବ ଦ୍ୱାରା ଦେଖାଯାଇ ନାହିଁ ଏବଂ ଗ୍ରହଣ କରାଯାଇ ନାହିଁ, ତେଣୁ ଏହା ଏପର୍ଯ୍ୟନ୍ତ ଅନିଶ୍ଚିତ ଅଛି", + + "confidence.indicator.help-text.ambiguous": "ସମାନ ବୈଧତା ର ଅନେକ ମେଳ ଖାଉଥିବା ପ୍ରାଧିକୃତ ମୂଲ୍ୟ ଅଛି", + + "confidence.indicator.help-text.notfound": "ପ୍ରାଧିକୃତ କୌଣସି ମେଳ ଖାଉଥିବା ଉତ୍ତର ନାହିଁ", + + "confidence.indicator.help-text.failed": "ପ୍ରାଧିକୃତ ଏକ ଆଭ୍ୟନ୍ତରୀଣ ବିଫଳତା ସମ୍ମୁଖୀନ କରିଛି", + + "confidence.indicator.help-text.rejected": "ପ୍ରାଧିକୃତ ଏହି ଦାଖଲାକୁ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିବାକୁ ସୁପାରିଶ କରେ", + + "confidence.indicator.help-text.novalue": "ପ୍ରାଧିକୃତରୁ କୌଣସି ଯୁକ୍ତିଯୁକ୍ତ ଆତ୍ମବିଶ୍ୱାସ ମୂଲ୍ୟ ଫେରିନାହିଁ", + + "confidence.indicator.help-text.unset": "ଏହି ମୂଲ୍ୟ ପାଇଁ ଆତ୍ମବିଶ୍ୱାସ କେବେ ରେକର୍ଡ ହୋଇନାହିଁ", + + "confidence.indicator.help-text.unknown": "ଅଜ୍ଞାତ ଆତ୍ମବିଶ୍ୱାସ ମୂଲ୍ୟ", + + "item.page.abstract": "ସାରାଂଶ", + + "item.page.author": "ଲେଖକ", + + "item.page.authors": "ଲେଖକ", + + "item.page.citation": "ଉଦ୍ଧରଣ", + + "item.page.collections": "ସଂଗ୍ରହ", + + "item.page.collections.loading": "ଲୋଡ୍ ହେଉଛି...", + + "item.page.collections.load-more": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", + + "item.page.date": "ତାରିଖ", + + "item.page.edit": "ଏହି ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + + "item.page.files": "ଫାଇଲ୍", + + "item.page.filesection.description": "ବର୍ଣ୍ଣନା:", + + "item.page.filesection.download": "ଡାଉନଲୋଡ୍ କରନ୍ତୁ", + + "item.page.filesection.format": "ଫର୍ମାଟ୍:", + + "item.page.filesection.name": "ନାମ:", + + "item.page.filesection.size": "ଆକାର:", + + "item.page.journal.search.title": "ଏହି ଜର୍ଣ୍ଣାଲରେ ପ୍ରବନ୍ଧ", + + "item.page.link.full": "ପୂର୍ଣ୍ଣ ଆଇଟମ୍ ପୃଷ୍ଠା", + + "item.page.link.simple": "ସରଳ ଆଇଟମ୍ ପୃଷ୍ଠା", + + "item.page.options": "ବିକଳ୍ପ", + + "item.page.orcid.title": "ORCID", + + "item.page.orcid.tooltip": "ORCID ସେଟିଂ ପୃଷ୍ଠା ଖୋଲନ୍ତୁ", + + "item.page.person.search.title": "ଏହି ଲେଖକଙ୍କ ଦ୍ୱାରା ପ୍ରବନ୍ଧ", + + "item.page.related-items.view-more": "{{ amount }} ଅଧିକ ଦେଖାନ୍ତୁ", + + "item.page.related-items.view-less": "ଶେଷ {{ amount }} ଲୁଚାନ୍ତୁ", + + "item.page.relationships.isAuthorOfPublication": "ପ୍ରକାଶନ", + + "item.page.relationships.isJournalOfPublication": "ପ୍ରକାଶନ", + + "item.page.relationships.isOrgUnitOfPerson": "ଲେଖକ", + + "item.page.relationships.isOrgUnitOfProject": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟ", + + "item.page.subject": "କିୱାର୍ଡ", + + "item.page.uri": "URI", + + "item.page.bitstreams.view-more": "ଅଧିକ ଦେଖାନ୍ତୁ", + + "item.page.bitstreams.collapse": "ସଂକୋଚନ କରନ୍ତୁ", + + "item.page.bitstreams.primary": "ପ୍ରାଥମିକ", + + "item.page.filesection.original.bundle": "ମୂଳ ବଣ୍ଡଲ୍", + + "item.page.filesection.license.bundle": "ଲାଇସେନ୍ସ ବଣ୍ଡଲ୍", + + "item.page.return": "ପଛକୁ ଯାଆନ୍ତୁ", + + "item.page.version.create": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରନ୍ତୁ", + + "item.page.withdrawn": "ଏହି ଆଇଟମ୍ ପାଇଁ ଏକ ପ୍ରତ୍ୟାହାର ଅନୁରୋଧ କରନ୍ତୁ", + + "item.page.reinstate": "ପୁନଃ ସ୍ଥାପନ ଅନୁରୋଧ କରନ୍ତୁ", + + "item.page.version.hasDraft": "ସଂସ୍କରଣ ଇତିହାସରେ ଏକ ଚାଲିଥିବା ଦାଖଲା ଥିବାରୁ ଏକ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରାଯାଇପାରିବ ନାହିଁ", + + "item.page.claim.button": "ଦାବି କରନ୍ତୁ", + + "item.page.claim.tooltip": "ଏହି ଆଇଟମ୍ କୁ ପ୍ରୋଫାଇଲ୍ ଭାବରେ ଦାବି କରନ୍ତୁ", + + "item.page.image.alt.ROR": "ROR ଲୋଗୋ", + + "item.preview.dc.identifier.uri": "ପରିଚୟକାରୀ:", + + "item.preview.dc.contributor.author": "ଲେଖକ:", + + "item.preview.dc.date.issued": "ପ୍ରକାଶିତ ତାରିଖ:", + + "item.preview.dc.description": "ବର୍ଣ୍ଣନା:", + + "item.preview.dc.description.abstract": "ସାରାଂଶ:", + + "item.preview.dc.identifier.other": "ଅନ୍ୟ ପରିଚୟକାରୀ:", + + "item.preview.dc.language.iso": "ଭାଷା:", + + "item.preview.dc.subject": "ବିଷୟ:", + + "item.preview.dc.title": "ଆଖ୍ୟା:", + + "item.preview.dc.type": "ପ୍ରକାର:", + + "item.preview.oaire.version": "ସଂସ୍କରଣ", + + "item.preview.oaire.citation.issue": "ଇସୁ", + + "item.preview.oaire.citation.volume": "ଭଲ୍ୟୁମ୍", + + "item.preview.oaire.citation.title": "ଉଦ୍ଧରଣ କଣ୍ଟେନର", + + "item.preview.oaire.citation.startPage": "ଉଦ୍ଧରଣ ଆରମ୍ଭ ପୃଷ୍ଠା", + + "item.preview.oaire.citation.endPage": "ଉଦ୍ଧରଣ ଶେଷ ପୃଷ୍ଠା", + + "item.preview.dc.relation.hasversion": "ସଂସ୍କରଣ ଅଛି", + + "item.preview.dc.relation.ispartofseries": "ସିରିଜର ଅଂଶ", + + "item.preview.dc.rights": "ଅଧିକାର", + + "item.preview.dc.identifier.other": "ଅନ୍ୟ ପରିଚୟକାରୀ", + + "item.preview.dc.relation.issn": "ISSN", + + "item.preview.dc.identifier.isbn": "ISBN", + + "item.preview.dc.identifier": "ପରିଚୟକାରୀ:", + + "item.preview.dc.relation.ispartof": "ଜର୍ଣ୍ଣାଲ୍ କିମ୍ବା ସିରିଜ୍", + + "item.preview.dc.identifier.doi": "DOI", + + "item.preview.dc.publisher": "ପ୍ରକାଶକ:", + + "item.preview.person.familyName": "ଉପନାମ:", + + "item.preview.person.givenName": "ନାମ:", + + "item.preview.person.identifier.orcid": "ORCID:", + + "item.preview.person.affiliation.name": "ସଂଲଗ୍ନତା:", + + "item.preview.project.funder.name": "ଅର୍ଥଦାତା:", + + "item.preview.project.funder.identifier": "ଅର୍ଥଦାତା ପରିଚୟକାରୀ:", + + "item.preview.project.investigator": "ପ୍ରୋଜେକ୍ଟ୍ ଗବେଷକ", + + "item.preview.oaire.awardNumber": "ଅନୁଦାନ ID:", + + "item.preview.dc.title.alternative": "ସଂକ୍ଷିପ୍ତ ନାମ:", + + "item.preview.dc.coverage.spatial": "କ୍ଷେତ୍ରାଧିକାର:", + + "item.preview.oaire.fundingStream": "ଅନୁଦାନ ଧାରା:", + + "item.preview.oairecerif.identifier.url": "URL", + + "item.preview.organization.address.addressCountry": "ଦେଶ", + + "item.preview.organization.foundingDate": "ପ୍ରତିଷ୍ଠା ତାରିଖ", + + "item.preview.organization.identifier.crossrefid": "Crossref ID", + + "item.preview.organization.identifier.isni": "ISNI", + + "item.preview.organization.identifier.ror": "ROR ID", + + "item.preview.organization.legalName": "ଆଇନଗତ ନାମ", + + "item.preview.dspace.entity.type": "ଏଣ୍ଟିଟି ପ୍ରକାର:", + + "item.preview.creativework.publisher": "ପ୍ରକାଶକ", + + "item.preview.creativeworkseries.issn": "ISSN", + + "item.preview.dc.identifier.issn": "ISSN", + + "item.preview.dc.identifier.openalex": "OpenAlex ପରିଚୟକାରୀ", + + "item.preview.dc.description": "ବର୍ଣ୍ଣନା", + + "item.select.confirm": "ଚୟନିତ ନିଶ୍ଚିତ କରନ୍ତୁ", + + "item.select.empty": "ଦେଖାଇବାକୁ କୌଣସି ଆଇଟମ୍ ନାହିଁ", + + "item.select.table.selected": "ଚୟନିତ ଆଇଟମ୍", + + "item.select.table.select": "ଆଇଟମ୍ ଚୟନ କରନ୍ତୁ", + + "item.select.table.deselect": "ଆଇଟମ୍ ଅଚୟନ କରନ୍ତୁ", + + "item.select.table.author": "ଲେଖକ", + + "item.select.table.collection": "ସଂଗ୍ରହ", + + "item.select.table.title": "ଆଖ୍ୟା", + + "item.version.history.empty": "ଏହି ଆଇଟମ୍ ପାଇଁ ଏପର୍ଯ୍ୟନ୍ତ ଅନ୍ୟ କୌଣସି ସଂସ୍କରଣ ନାହିଁ |", + + "item.version.history.head": "ସଂସ୍କରଣ ଇତିହାସ", + + "item.version.history.return": "ପଛକୁ ଯାଆନ୍ତୁ", + + "item.version.history.selected": "ଚୟନିତ ସଂସ୍କରଣ", + + "item.version.history.selected.alert": "ଆପଣ ବର୍ତ୍ତମାନ ଆଇଟମ୍ ର ସଂସ୍କରଣ {{version}} ଦେଖୁଛନ୍ତି |", + + "item.version.history.table.version": "ସଂସ୍କରଣ", + + "item.version.history.table.item": "ଆଇଟମ୍", + + "item.version.history.table.editor": "ସଂପାଦକ", + + "item.version.history.table.date": "ତାରିଖ", + + "item.version.history.table.summary": "ସାରାଂଶ", + + "item.version.history.table.workspaceItem": "ୱର୍କସ୍ପେସ୍ ଆଇଟମ୍", + + "item.version.history.table.workflowItem": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍", + + "item.version.history.table.actions": "କାର୍ଯ୍ୟ", + + "item.version.history.table.action.editWorkspaceItem": "ୱର୍କସ୍ପେସ୍ ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + + "item.version.history.table.action.editSummary": "ସାରାଂଶ ସଂପାଦନ କରନ୍ତୁ", + + "item.version.history.table.action.saveSummary": "ସାରାଂଶ ସଂପାଦନ ସେଭ୍ କରନ୍ତୁ", + + "item.version.history.table.action.discardSummary": "ସାରାଂଶ ସଂପାଦନ ପରିତ୍ୟାଗ କରନ୍ତୁ", + + "item.version.history.table.action.newVersion": "ଏହି ସଂସ୍କରଣରୁ ଏକ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରନ୍ତୁ", + + "item.version.history.table.action.deleteVersion": "ସଂସ୍କରଣ ଡିଲିଟ୍ କରନ୍ତୁ", + + "item.version.history.table.action.hasDraft": "ସଂସ୍କରଣ ଇତିହାସରେ ଏକ ଚାଲିଥିବା ଦାଖଲା ଥିବାରୁ ଏକ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରାଯାଇପାରିବ ନାହିଁ", + + "item.version.notice": "ଏହା ଏହି ଆଇଟମ୍ ର ସର୍ବଶେଷ ସଂସ୍କରଣ ନୁହେଁ | ସର୍ବଶେଷ ସଂସ୍କରଣ ଏଠାରେ ମିଳିପାରିବ |", + + "item.version.create.modal.header": "ନୂତନ ସଂସ୍କରଣ", + + "item.qa.withdrawn.modal.header": "ପ୍ରତ୍ୟାହାର ଅନୁରୋଧ", + + "item.qa.reinstate.modal.header": "ପୁନଃ ସ୍ଥାପନ ଅନୁରୋଧ", + + "item.qa.reinstate.create.modal.header": "ନୂତନ ସଂସ୍କରଣ", + + "item.version.create.modal.text": "ଏହି ଆଇଟମ୍ ପାଇଁ ଏକ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରନ୍ତୁ", + + "item.version.create.modal.text.startingFrom": "ସଂସ୍କରଣ {{version}} ରୁ ଆରମ୍ଭ କରି", + + "item.version.create.modal.button.confirm": "ସୃଷ୍ଟି କରନ୍ତୁ", + + "item.version.create.modal.button.confirm.tooltip": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି କରନ୍ତୁ", + + "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "ଅନୁରୋଧ ପଠାନ୍ତୁ", + + "qa-withdrown.create.modal.button.confirm": "ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", + + "qa-reinstate.create.modal.button.confirm": "ପୁନଃ ସ୍ଥାପନ କରନ୍ତୁ", + + "item.version.create.modal.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "item.qa.withdrawn-reinstate.create.modal.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "item.version.create.modal.button.cancel.tooltip": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ନକରନ୍ତୁ", + + "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "ଅନୁରୋଧ ପଠାନ୍ତୁ ନାହିଁ", + + "item.version.create.modal.form.summary.label": "ସାରାଂଶ", + + "qa-withdrawn.create.modal.form.summary.label": "ଆପଣ ଏହି ଆଇଟମ୍ ପ୍ରତ୍ୟାହାର କରିବାକୁ ଅନୁରୋଧ କରୁଛନ୍ତି", + + "qa-withdrawn.create.modal.form.summary2.label": "ପ୍ରତ୍ୟାହାରର କାରଣ ପ୍ରବେଶ କରନ୍ତୁ", + + "qa-reinstate.create.modal.form.summary.label": "ଆପଣ ଏହି ଆଇଟମ୍ ପୁନଃସ୍ଥାପନ କରିବାକୁ ଅନୁରୋଧ କରୁଛନ୍ତି", + + "qa-reinstate.create.modal.form.summary2.label": "ପୁନଃସ୍ଥାପନର କାରଣ ପ୍ରବେଶ କରନ୍ତୁ", + + "item.version.create.modal.form.summary.placeholder": "ନୂତନ ସଂସ୍କରଣ ପାଇଁ ସାରାଂଶ ଭର୍ତ୍ତି କରନ୍ତୁ", + + "qa-withdrown.modal.form.summary.placeholder": "ପ୍ରତ୍ୟାହାରର କାରଣ ପ୍ରବେଶ କରନ୍ତୁ", + + "qa-reinstate.modal.form.summary.placeholder": "ପୁନଃସ୍ଥାପନର କାରଣ ପ୍ରବେଶ କରନ୍ତୁ", + + "item.version.create.modal.submitted.header": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ହେଉଛି...", + + "item.qa.withdrawn.modal.submitted.header": "ପ୍ରତ୍ୟାହାର ଅନୁରୋଧ ପଠାଯାଉଛି...", + + "correction-type.manage-relation.action.notification.reinstate": "ପୁନଃସ୍ଥାପନ ଅନୁରୋଧ ପଠାଯାଇଛି।", + + "correction-type.manage-relation.action.notification.withdrawn": "ପ୍ରତ୍ୟାହାର ଅନୁରୋଧ ପଠାଯାଇଛି।", + + "item.version.create.modal.submitted.text": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ହେଉଛି। ଆଇଟମ୍ର ଅନେକ ସମ୍ପର୍କ ଥିଲେ ଏହା କିଛି ସମୟ ନେଇପାରେ।", + + "item.version.create.notification.success": "{{version}} ସଂଖ୍ୟା ସହିତ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ହୋଇଛି", + + "item.version.create.notification.failure": "ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ହୋଇନାହିଁ", + + "item.version.create.notification.inProgress": "ଏକ ନୂତନ ସଂସ୍କରଣ ସୃଷ୍ଟି ହୋଇପାରିବ ନାହିଁ କାରଣ ସଂସ୍କରଣ ଇତିହାସରେ ଏକ ଚାଲିଥିବା ଦାଖଲା ଅଛି", + + "item.version.delete.modal.header": "ସଂସ୍କରଣ ବିଲୋପ କରନ୍ତୁ", + + "item.version.delete.modal.text": "ଆପଣ {{version}} ସଂସ୍କରଣ ବିଲୋପ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି?", + + "item.version.delete.modal.button.confirm": "ବିଲୋପ କରନ୍ତୁ", + + "item.version.delete.modal.button.confirm.tooltip": "ଏହି ସଂସ୍କରଣ ବିଲୋପ କରନ୍ତୁ", + + "item.version.delete.modal.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "item.version.delete.modal.button.cancel.tooltip": "ଏହି ସଂସ୍କରଣ ବିଲୋପ ନକରନ୍ତୁ", + + "item.version.delete.notification.success": "{{version}} ସଂଖ୍ୟା ସହିତ ସଂସ୍କରଣ ବିଲୋପ ହୋଇଛି", + + "item.version.delete.notification.failure": "{{version}} ସଂଖ୍ୟା ସହିତ ସଂସ୍କରଣ ବିଲୋପ ହୋଇନାହିଁ", + + "item.version.edit.notification.success": "{{version}} ସଂଖ୍ୟା ସହିତ ସଂସ୍କରଣର ସାରାଂଶ ପରିବର୍ତ୍ତନ ହୋଇଛି", + + "item.version.edit.notification.failure": "{{version}} ସଂଖ୍ୟା ସହିତ ସଂସ୍କରଣର ସାରାଂଶ ପରିବର୍ତ୍ତନ ହୋଇନାହିଁ", + + "itemtemplate.edit.metadata.add-button": "ଯୋଡନ୍ତୁ", + + "itemtemplate.edit.metadata.discard-button": "ପରିତ୍ୟାଗ କରନ୍ତୁ", + + "itemtemplate.edit.metadata.edit.language": "ଭାଷା ସମ୍ପାଦନ କରନ୍ତୁ", + + "itemtemplate.edit.metadata.edit.value": "ମୂଲ୍ୟ ସମ୍ପାଦନ କରନ୍ତୁ", + + "itemtemplate.edit.metadata.edit.buttons.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", + + "itemtemplate.edit.metadata.edit.buttons.drag": "ପୁନଃକ୍ରମାଙ୍କନ କରିବାକୁ ଟାଣନ୍ତୁ", + + "itemtemplate.edit.metadata.edit.buttons.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", + + "itemtemplate.edit.metadata.edit.buttons.remove": "ଅପସାରଣ କରନ୍ତୁ", + + "itemtemplate.edit.metadata.edit.buttons.undo": "ପରିବର୍ତ୍ତନଗୁଡିକ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", + + "itemtemplate.edit.metadata.edit.buttons.unedit": "ସମ୍ପାଦନା ବନ୍ଦ କରନ୍ତୁ", + + "itemtemplate.edit.metadata.empty": "ଆଇଟମ୍ ଟେମ୍ପଲେଟ୍ ବର୍ତ୍ତମାନ କୌଣସି ମେଟାଡାଟା ଧାରଣ କରୁନାହିଁ। ଏକ ମେଟାଡାଟା ମୂଲ୍ୟ ଯୋଡିବା ଆରମ୍ଭ କରିବାକୁ ଯୋଡନ୍ତୁ କ୍ଲିକ୍ କରନ୍ତୁ।", + + "itemtemplate.edit.metadata.headers.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", + + "itemtemplate.edit.metadata.headers.field": "କ୍ଷେତ୍ର", + + "itemtemplate.edit.metadata.headers.language": "ଭାଷା", + + "itemtemplate.edit.metadata.headers.value": "ମୂଲ୍ୟ", + + "itemtemplate.edit.metadata.metadatafield": "କ୍ଷେତ୍ର ସମ୍ପାଦନ କରନ୍ତୁ", + + "itemtemplate.edit.metadata.metadatafield.error": "ମେଟାଡାଟା କ୍ଷେତ୍ର ଯାଞ୍ଚ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + + "itemtemplate.edit.metadata.metadatafield.invalid": "ଦୟାକରି ଏକ ବ valid ଧ ମେଟାଡାଟା କ୍ଷେତ୍ର ବାଛନ୍ତୁ", + + "itemtemplate.edit.metadata.notifications.discarded.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଥିଲା। ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ପୁନର୍ବାର ସ୍ଥାପନ କରିବାକୁ 'ପ୍ରତ୍ୟାହାର' ବଟନ୍ କ୍ଲିକ୍ କରନ୍ତୁ", + + "itemtemplate.edit.metadata.notifications.discarded.title": "ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଛି", + + "itemtemplate.edit.metadata.notifications.error.title": "ଏକ ତ୍ରୁଟି ଘଟିଛି", + + "itemtemplate.edit.metadata.notifications.invalid.content": "ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଞ୍ଚୟ ହୋଇନାହିଁ। ଦୟାକରି ସଞ୍ଚୟ କରିବା ପୂର୍ବରୁ ସମସ୍ତ କ୍ଷେତ୍ରଗୁଡିକ ବ valid ଧ କି ନାହିଁ ନିଶ୍ଚିତ କରନ୍ତୁ।", + + "itemtemplate.edit.metadata.notifications.invalid.title": "ମେଟାଡାଟା ଅବৈଧ", + + "itemtemplate.edit.metadata.notifications.outdated.content": "ଆପଣ ବର୍ତ୍ତମାନ ଯାହା ଉପରେ କାମ କରୁଛନ୍ତି ସେହି ଆଇଟମ୍ ଟେମ୍ପଲେଟ୍ ଅନ୍ୟ ଏକ ଉପଯୋଗକର୍ତ୍ତା ଦ୍ୱାରା ପରିବର୍ତ୍ତିତ ହୋଇଛି। ସଂଘର୍ଷ ରୋକିବା ପାଇଁ ଆପଣଙ୍କର ବର୍ତ୍ତମାନର ପରିବର୍ତ୍ତନଗୁଡିକ ପରିତ୍ୟାଗ କରାଯାଇଛି", + + "itemtemplate.edit.metadata.notifications.outdated.title": "ପରିବର୍ତ୍ତନଗୁଡିକ ପୁରାତନ", + + "itemtemplate.edit.metadata.notifications.saved.content": "ଏହି ଆଇଟମ୍ ଟେମ୍ପଲେଟ୍ ର ମେଟାଡାଟାକୁ ଆପଣଙ୍କର ପରିବର୍ତ୍ତନଗୁଡିକ ସଞ୍ଚୟ ହୋଇଛି।", + + "itemtemplate.edit.metadata.notifications.saved.title": "ମେଟାଡାଟା ସଞ୍ଚୟ ହୋଇଛି", + + "itemtemplate.edit.metadata.reinstate-button": "ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", + + "itemtemplate.edit.metadata.reset-order-button": "ପୁନଃକ୍ରମାଙ୍କନ ପ୍ରତ୍ୟାହାର କରନ୍ତୁ", + + "itemtemplate.edit.metadata.save-button": "ସଞ୍ଚୟ କରନ୍ତୁ", + + "journal.listelement.badge": "ଜର୍ଣ୍ଣାଲ୍", + + "journal.page.description": "ବର୍ଣ୍ଣନା", + + "journal.page.edit": "ଏହି ଆଇଟମ୍ ସମ୍ପାଦନ କରନ୍ତୁ", + + "journal.page.editor": "ମୁଖ୍ୟ ସମ୍ପାଦକ", + + "journal.page.issn": "ISSN", + + "journal.page.publisher": "ପ୍ରକାଶକ", + + "journal.page.options": "ବିକଳ୍ପଗୁଡିକ", + + "journal.page.titleprefix": "ଜର୍ଣ୍ଣାଲ୍: ", + + "journal.search.results.head": "ଜର୍ଣ୍ଣାଲ୍ ସନ୍ଧାନ ଫଳାଫଳ", + + "journal-relationships.search.results.head": "ଜର୍ଣ୍ଣାଲ୍ ସନ୍ଧାନ ଫଳାଫଳ", + + "journal.search.title": "ଜର୍ଣ୍ଣାଲ୍ ସନ୍ଧାନ", + + "journalissue.listelement.badge": "ଜର୍ଣ୍ଣାଲ୍ ଇସ୍ୟୁ", + + "journalissue.page.description": "ବର୍ଣ୍ଣନା", + + "journalissue.page.edit": "ଏହି ଆଇଟମ୍ ସମ୍ପାଦନ କରନ୍ତୁ", + + "journalissue.page.issuedate": "ଇସ୍ୟୁ ତାରିଖ", + + "journalissue.page.journal-issn": "ଜର୍ଣ୍ଣାଲ୍ ISSN", + + "journalissue.page.journal-title": "ଜର୍ଣ୍ଣାଲ୍ ଆଖ୍ୟା", + + "journalissue.page.keyword": "କିୱାର୍ଡଗୁଡିକ", + + "journalissue.page.number": "ସଂଖ୍ୟା", + + "journalissue.page.options": "ବିକଳ୍ପଗୁଡିକ", + + "journalissue.page.titleprefix": "ଜର୍ଣ୍ଣାଲ୍ ଇସ୍ୟୁ: ", + + "journalissue.search.results.head": "ଜର୍ଣ୍ଣାଲ୍ ଇସ୍ୟୁ ସନ୍ଧାନ ଫଳାଫଳ", + + "journalvolume.listelement.badge": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍", + + "journalvolume.page.description": "ବର୍ଣ୍ଣନା", + + "journalvolume.page.edit": "ଏହି ଆଇଟମ୍ ସମ୍ପାଦନ କରନ୍ତୁ", + + "journalvolume.page.issuedate": "ଇସ୍ୟୁ ତାରିଖ", + + "journalvolume.page.options": "ବିକଳ୍ପଗୁଡିକ", + + "journalvolume.page.titleprefix": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍: ", + + "journalvolume.page.volume": "ଭଲ୍ୟୁମ୍", + + "journalvolume.search.results.head": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍ ସନ୍ଧାନ ଫଳାଫଳ", + + "iiifsearchable.listelement.badge": "ଡକ୍ୟୁମେଣ୍ଟ ମିଡିଆ", + + "iiifsearchable.page.titleprefix": "ଡକ୍ୟୁମେଣ୍ଟ: ", + + "iiifsearchable.page.doi": "ସ୍ଥାୟୀ ଲିଙ୍କ୍: ", + + "iiifsearchable.page.issue": "ଇସ୍ୟୁ: ", + + "iiifsearchable.page.description": "ବର୍ଣ୍ଣନା: ", + + "iiifviewer.fullscreen.notice": "ଉନ୍ନତ ଦର୍ଶନ ପାଇଁ ପୂର୍ଣ୍ଣ ସ୍କ୍ରିନ୍ ବ୍ୟବହାର କରନ୍ତୁ।", + + "iiif.listelement.badge": "ପ୍ରତିଛବି ମିଡିଆ", + + "iiif.page.titleprefix": "ପ୍ରତିଛବି: ", + + "iiif.page.doi": "ସ୍ଥାୟୀ ଲିଙ୍କ୍: ", + + "iiif.page.issue": "ଇସ୍ୟୁ: ", + + "iiif.page.description": "ବର୍ଣ୍ଣନା: ", + + "loading.bitstream": "ବିଟଷ୍ଟ୍ରିମ୍ ଲୋଡ୍ ହେଉଛି...", + + "loading.bitstreams": "ବିଟଷ୍ଟ୍ରିମ୍ ଲୋଡ୍ ହେଉଛି...", + + "loading.browse-by": "ଆଇଟମ୍ ଲୋଡ୍ ହେଉଛି...", + + "loading.browse-by-page": "ପୃଷ୍ଠା ଲୋଡ୍ ହେଉଛି...", + + "loading.collection": "ସଂଗ୍ରହ ଲୋଡ୍ ହେଉଛି...", + + "loading.collections": "ସଂଗ୍ରହ ଲୋଡ୍ ହେଉଛି...", + + "loading.content-source": "ବିଷୟବସ୍ତୁ ସ୍ରୋତ ଲୋଡ୍ ହେଉଛି...", + + "loading.community": "ସମ୍ପ୍ରଦାୟ ଲୋଡ୍ ହେଉଛି...", + + "loading.default": "ଲୋଡ୍ ହେଉଛି...", + + "loading.item": "ଆଇଟମ୍ ଲୋଡ୍ ହେଉଛି...", + + "loading.items": "ଆଇଟମ୍ ଲୋଡ୍ ହେଉଛି...", + + "loading.mydspace-results": "ଆଇଟମ୍ ଲୋଡ୍ ହେଉଛି...", + + "loading.objects": "ଲୋଡ୍ ହେଉଛି...", + + "loading.recent-submissions": "ସାମ୍ପ୍ରତିକ ଦାଖଲା ଲୋଡ୍ ହେଉଛି...", + + "loading.search-results": "ସନ୍ଧାନ ଫଳାଫଳ ଲୋଡ୍ ହେଉଛି...", + + "loading.sub-collections": "ଉପ-ସଂଗ୍ରହ ଲୋଡ୍ ହେଉଛି...", + + "loading.sub-communities": "ଉପ-ସମ୍ପ୍ରଦାୟ ଲୋଡ୍ ହେଉଛି...", + + "loading.top-level-communities": "ଶୀର୍ଷ ସ୍ତରର ସମ୍ପ୍ରଦାୟ ଲୋଡ୍ ହେଉଛି...", + + "login.form.email": "ଇମେଲ୍ ଠିକଣା", + + "login.form.forgot-password": "ଆପଣ ଆପଣଙ୍କର ପାସୱାର୍ଡ ଭୁଲି ଯାଇଛନ୍ତି କି?", + + "login.form.header": "ଦୟାକରି DSpace ରେ ଲଗ୍ ଇନ୍ କରନ୍ତୁ", + + "login.form.new-user": "ନୂତନ ଉପଯୋଗକର୍ତ୍ତା? ରେଜିଷ୍ଟର କରିବାକୁ ଏଠାରେ କ୍ଲିକ୍ କରନ୍ତୁ।", + + "login.form.oidc": "OIDC ସହିତ ଲଗ୍ ଇନ୍ କରନ୍ତୁ", + + "login.form.orcid": "ORCID ସହିତ ଲଗ୍ ଇନ୍ କରନ୍ତୁ", + + "login.form.password": "ପାସୱାର୍ଡ", + + "login.form.saml": "SAML ସହିତ ଲଗ୍ ଇନ୍ କରନ୍ତୁ", + + "login.form.shibboleth": "Shibboleth ସହିତ ଲଗ୍ ଇନ୍ କରନ୍ତୁ", + + "login.form.submit": "ଲଗ୍ ଇନ୍ କରନ୍ତୁ", + + "login.title": "ଲଗ୍ ଇନ୍", + + "login.breadcrumbs": "ଲଗ୍ ଇନ୍", + + "logout.form.header": "DSpace ରୁ ଲଗ୍ ଆଉଟ୍ କରନ୍ତୁ", + + "logout.form.submit": "ଲଗ୍ ଆଉଟ୍ କରନ୍ତୁ", + + "logout.title": "ଲଗ୍ ଆଉଟ୍", + + "menu.header.nav.description": "ପ୍ରଶାସନ ନାଭିଗେସନ୍ ବାର", + + "menu.header.admin": "ପରିଚାଳନା", + + "menu.header.image.logo": "ରେପୋଜିଟରୀ ଲୋଗୋ", + + "menu.header.admin.description": "ପରିଚାଳନା ମେନୁ", + + "menu.section.access_control": "ପ୍ରବେଶ ନିୟନ୍ତ୍ରଣ", + + "menu.section.access_control_authorizations": "ଅନୁମୋଦନ", + + "menu.section.access_control_bulk": "ବଲ୍କ ପ୍ରବେଶ ପରିଚାଳନା", + + "menu.section.access_control_groups": "ଗୋଷ୍ଠୀ", + + "menu.section.access_control_people": "ଲୋକ", + + "menu.section.reports": "ରିପୋର୍ଟଗୁଡିକ", + + "menu.section.reports.collections": "ଫିଲ୍ଟର୍ କରାଯାଇଥିବା ସଂଗ୍ରହ", + + "menu.section.reports.queries": "ମେଟାଡାଟା ପ୍ରଶ୍ନ", + + "menu.section.admin_search": "ପ୍ରଶାସନ ସନ୍ଧାନ", + + "menu.section.browse_community": "ଏହି ସମ୍ପ୍ରଦାୟ", + + "menu.section.browse_community_by_author": "ଲେଖକ ଦ୍ୱାରା", + + "menu.section.browse_community_by_issue_date": "ଇସ୍ୟୁ ତାରିଖ ଦ୍ୱାରା", + + "menu.section.browse_community_by_title": "ଆଖ୍ୟା ଦ୍ୱାରା", + + "menu.section.browse_global": "ସମସ୍ତ DSpace", + + "menu.section.browse_global_by_author": "ଲେଖକ ଦ୍ୱାରା", + + "menu.section.browse_global_by_dateissued": "ଇସ୍ୟୁ ତାରିଖ ଦ୍ୱାରା", + + "menu.section.browse_global_by_subject": "ବିଷୟ ଦ୍ୱାରା", + + "menu.section.browse_global_by_srsc": "ବିଷୟ ବର୍ଗ ଦ୍ୱାରା", + + "menu.section.browse_global_by_nsi": "ନରୱେଜିଆନ୍ ବିଜ୍ଞାନ ସୂଚୀ ଦ୍ୱାରା", + + "menu.section.browse_global_by_title": "ଆଖ୍ୟା ଦ୍ୱାରା", + + "menu.section.browse_global_communities_and_collections": "ସମ୍ପ୍ରଦାୟ ଏବଂ ସଂଗ୍ରହ", + + "menu.section.browse_global_geospatial_map": "ଭୌଗୋଳିକ ସ୍ଥାନ (ମାନଚିତ୍ର) ଦ୍ୱାରା", + + "menu.section.control_panel": "ନିୟନ୍ତ୍ରଣ ପ୍ୟାନେଲ୍", + + "menu.section.curation_task": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ", + + "menu.section.edit": "ସମ୍ପାଦନ କରନ୍ତୁ", + + "menu.section.edit_collection": "ସଂଗ୍ରହ", + + "menu.section.edit_community": "ସମ୍ପ୍ରଦାୟ", + + "menu.section.edit_item": "ଆଇଟମ୍", + + "menu.section.export": "ରପ୍ତାନି କରନ୍ତୁ", + + "menu.section.export_collection": "ସଂଗ୍ରହ", + + "menu.section.export_community": "ସମ୍ପ୍ରଦାୟ", + + "menu.section.export_item": "ଆଇଟମ୍", + + "menu.section.export_metadata": "ମେଟାଡାଟା", + + "menu.section.export_batch": "ବ୍ୟାଚ୍ ରପ୍ତାନି (ZIP)", + + "menu.section.icon.access_control": "ପ୍ରବେଶ ନିୟନ୍ତ୍ରଣ ମେନୁ ବିଭାଗ", + + "menu.section.icon.reports": "ରିପୋର୍ଟ ମେନୁ ବିଭାଗ", + + "menu.section.icon.admin_search": "ପ୍ରଶାସନ ସନ୍ଧାନ ମେନୁ ବିଭାଗ", + + "menu.section.icon.control_panel": "ନିୟନ୍ତ୍ରଣ ପ୍ୟାନେଲ୍ ମେନୁ ବିଭାଗ", + + "menu.section.icon.curation_tasks": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ ମେନୁ ବିଭାଗ", + + "menu.section.icon.edit": "ସମ୍ପାଦନ ମେନୁ ବିଭାଗ", + + "menu.section.icon.export": "ରପ୍ତାନି ମେନୁ ବିଭାଗ", + + "menu.section.icon.find": "ସନ୍ଧାନ ମେନୁ ବିଭାଗ", + + "menu.section.icon.health": "ସ୍ୱାସ୍ଥ୍ୟ ଯାଞ୍ଚ ମେନୁ ବିଭାଗ", + + "menu.section.icon.import": "ଆମଦାନୀ ମେନୁ ବିଭାଗ", + + "menu.section.icon.new": "ନୂତନ ମେନୁ ବିଭାଗ", + + "menu.section.icon.pin": "ସାଇଡବାର୍ ପିନ୍ କରନ୍ତୁ", + + "menu.section.icon.unpin": "ସାଇଡବାର୍ ଅନ୍ପିନ୍ କରନ୍ତୁ", + + "menu.section.icon.notifications": "ବିଜ୍ଞପ୍ତି ମେନୁ ବିଭାଗ", + + "menu.section.import": "ଆମଦାନୀ କରନ୍ତୁ", + + "menu.section.import_batch": "ବ୍ୟାଚ୍ ଆମଦାନୀ (ZIP)", + + "menu.section.import_metadata": "ମେଟାଡାଟା", + + "menu.section.new": "ନୂତନ", + + "menu.section.new_collection": "ସଂଗ୍ରହ", + + "menu.section.new_community": "ସମ୍ପ୍ରଦାୟ", + + "menu.section.new_item": "ଆଇଟମ୍", + + "menu.section.new_item_version": "ଆଇଟମ୍ ସଂସ୍କରଣ", + + "menu.section.new_process": "ପ୍ରକ୍ରିୟା", + + "menu.section.notifications": "ବିଜ୍ଞପ୍ତିଗୁଡିକ", + + "menu.section.quality-assurance": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ", + + "menu.section.notifications_publication-claim": "ପ୍ରକାଶନ ଦାବି", + + "menu.section.pin": "ସାଇଡବାର୍ ପିନ୍ କରନ୍ତୁ", + + "menu.section.unpin": "ସାଇଡବାର୍ ଅନ୍ପିନ୍ କରନ୍ତୁ", + + "menu.section.processes": "ପ୍ରକ୍ରିୟାଗୁଡିକ", + + "menu.section.health": "ସ୍ୱାସ୍ଥ୍ୟ", + + "menu.section.registries": "ରେଜିଷ୍ଟ୍ରି", + + "menu.section.registries_format": "ଫର୍ମାଟ୍", + + "menu.section.registries_metadata": "ମେଟାଡାଟା", + + "menu.section.statistics": "ପରିସଂଖ୍ୟାନ", + + "menu.section.statistics_task": "ପରିସଂଖ୍ୟାନ କାର୍ଯ୍ୟ", + + "menu.section.toggle.access_control": "ପ୍ରବେଶ ନିୟନ୍ତ୍ରଣ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", + + "menu.section.toggle.reports": "ରିପୋର୍ଟ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", + + "menu.section.toggle.control_panel": "ନିୟନ୍ତ୍ରଣ ପ୍ୟାନେଲ୍ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", + + "menu.section.toggle.curation_task": "କ୍ୟୁରେସନ୍ କାର୍ଯ୍ୟ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", + + "menu.section.toggle.edit": "ସମ୍ପାଦନ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", + + "menu.section.toggle.export": "ରପ୍ତାନି ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", + + "menu.section.toggle.find": "ସନ୍ଧାନ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", + + "menu.section.toggle.import": "ଆମଦାନୀ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", + + "menu.section.toggle.new": "ନୂତନ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", + + "menu.section.toggle.registries": "ରେଜିଷ୍ଟ୍ରି ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", + + "menu.section.toggle.statistics_task": "ପରିସଂଖ୍ୟାନ କାର୍ଯ୍ୟ ବିଭାଗ ଟୋଗଲ୍ କରନ୍ତୁ", + + "menu.section.workflow": "ୱର୍କଫ୍ଲୋ ପରିଚାଳନା କରନ୍ତୁ", + + "metadata-export-search.tooltip": "ସନ୍ଧାନ ଫଳାଫଳକୁ CSV ଭାବରେ ରପ୍ତାନି କରନ୍ତୁ", + + "metadata-export-search.submit.success": "ରପ୍ତାନି ସଫଳତାର ସହିତ ଆରମ୍ଭ ହୋଇଥିଲା", + + "metadata-export-search.submit.error": "ରପ୍ତାନି ଆରମ୍ଭ କରିବାରେ ବିଫଳ ହୋଇଛି", + + "mydspace.breadcrumbs": "ମୋର DSpace", + + "mydspace.description": "", + + "mydspace.messages.controller-help": "ଆଇଟମ୍ ପ୍ରେରକକୁ ଏକ ସନ୍ଦେଶ ପଠାଇବା ପାଇଁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", + "mydspace.messages.description-placeholder": "ଆପଣଙ୍କର ସନ୍ଦେଶ ଏଠାରେ ଲେଖନ୍ତୁ...", + "mydspace.messages.hide-msg": "ସନ୍ଦେଶ ଲୁଚାନ୍ତୁ", + "mydspace.messages.mark-as-read": "ପଢ଼ିସାରିଛି ଭାବେ ଚିହ୍ନିତ କରନ୍ତୁ", + "mydspace.messages.mark-as-unread": "ଅପଢ଼ା ଭାବେ ଚିହ୍ନିତ କରନ୍ତୁ", + "mydspace.messages.no-content": "କୌଣସି ବିଷୟବସ୍ତୁ ନାହିଁ।", + "mydspace.messages.no-messages": "ଏପର୍ଯ୍ୟନ୍ତ କୌଣସି ସନ୍ଦେଶ ନାହିଁ।", + "mydspace.messages.send-btn": "ପଠାନ୍ତୁ", + "mydspace.messages.show-msg": "ସନ୍ଦେଶ ଦେଖାନ୍ତୁ", + "mydspace.messages.subject-placeholder": "ବିଷୟ...", + "mydspace.messages.submitter-help": "ନିୟନ୍ତ୍ରକଙ୍କୁ ଏକ ସନ୍ଦେଶ ପଠାଇବା ପାଇଁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", + "mydspace.messages.title": "ସନ୍ଦେଶଗୁଡିକ", + "mydspace.messages.to": "ପ୍ରତି", + "mydspace.new-submission": "ନୂତନ ଦାଖଲା", + "mydspace.new-submission-external": "ବାହ୍ୟ ସ୍ରୋତରୁ ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", + "mydspace.new-submission-external-short": "ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", + "mydspace.results.head": "ଆପଣଙ୍କର ଦାଖଲାଗୁଡିକ", + "mydspace.results.no-abstract": "କୌଣସି ସାରାଂଶ ନାହିଁ", + "mydspace.results.no-authors": "କୌଣସି ଲେଖକ ନାହିଁ", + "mydspace.results.no-collections": "କୌଣସି ସଂଗ୍ରହ ନାହିଁ", + "mydspace.results.no-date": "କୌଣସି ତାରିଖ ନାହିଁ", + "mydspace.results.no-files": "କୌଣସି ଫାଇଲ୍ ନାହିଁ", + "mydspace.results.no-results": "ଦେଖାଇବା ପାଇଁ କୌଣସି ଆଇଟମ୍ ନଥିଲା", + "mydspace.results.no-title": "କୌଣସି ଶୀର୍ଷକ ନାହିଁ", + "mydspace.results.no-uri": "କୌଣସି URI ନାହିଁ", + "mydspace.search-form.placeholder": "ମୋର DSpace ରେ ଖୋଜନ୍ତୁ...", + "mydspace.show.workflow": "ୱାର୍କଫ୍ଲୋ କାର୍ଯ୍ୟଗୁଡିକ", + "mydspace.show.workspace": "ଆପଣଙ୍କର ଦାଖଲାଗୁଡିକ", + "mydspace.show.supervisedWorkspace": "ତଦାରଖ କରାଯାଇଥିବା ଆଇଟମ୍", + "mydspace.status": "ମୋର DSpace ସ୍ଥିତି:", + "mydspace.status.mydspaceArchived": "ସଂରକ୍ଷିତ", + "mydspace.status.mydspaceValidation": "ଯାଞ୍ଚ", + "mydspace.status.mydspaceWaitingController": "ସମୀକ୍ଷକଙ୍କ ପ୍ରତୀକ୍ଷାରେ", + "mydspace.status.mydspaceWorkflow": "ୱାର୍କଫ୍ଲୋ", + "mydspace.status.mydspaceWorkspace": "ୱାର୍କସ୍ପେସ୍", + "mydspace.title": "ମୋର DSpace", + "mydspace.upload.upload-failed": "ନୂତନ ୱାର୍କସ୍ପେସ୍ ସୃଷ୍ଟି କରିବାରେ ତ୍ରୁଟି। ପୁନରାବୃତ୍ତି କରିବା ପୂର୍ବରୁ ଅପଲୋଡ୍ କରାଯାଇଥିବା ବିଷୟବସ୍ତୁ ଯାଞ୍ଚ କରନ୍ତୁ।", + "mydspace.upload.upload-failed-manyentries": "ଅପ୍ରକ୍ରିୟାଶୀଳ ଫାଇଲ୍। ଏକ ଫାଇଲ୍ ପାଇଁ କେବଳ ଗୋଟିଏ ଏଣ୍ଟ୍ରି ଅନୁମତି ଥିବାବେଳେ ଅନେକ ଏଣ୍ଟ୍ରି ଚିହ୍ନିତ ହୋଇଛି।", + "mydspace.upload.upload-failed-moreonefile": "ଅପ୍ରକ୍ରିୟାଶୀଳ ଅନୁରୋଧ। କେବଳ ଗୋଟିଏ ଫାଇଲ୍ ଅନୁମତି ଅଛି।", + "mydspace.upload.upload-multiple-successful": "{{qty}} ନୂତନ ୱାର୍କସ୍ପେସ୍ ଆଇଟମ୍ ସୃଷ୍ଟି ହୋଇଛି।", + "mydspace.view-btn": "ଦେଖନ୍ତୁ", + "nav.expandable-navbar-section-suffix": "(ଉପମେନୁ)", + "notification.suggestion": "ଆମେ {{source}} ରେ {{count}} ପ୍ରକାଶନ ପାଇଛୁ ଯାହା ଆପଣଙ୍କ ପ୍ରୋଫାଇଲ୍ ସହିତ ସମ୍ବନ୍ଧିତ ପ୍ରତୀତ ହୁଏ।
", + "notification.suggestion.review": "ପରାମର୍ଶଗୁଡିକ ସମୀକ୍ଷା କରନ୍ତୁ", + "notification.suggestion.please": "ଦୟାକରି", + "nav.browse.header": "ସମସ୍ତ DSpace", + "nav.community-browse.header": "କମ୍ୟୁନିଟି ଦ୍ୱାରା", + "nav.context-help-toggle": "ପ୍ରସଙ୍ଗ ସହାୟତା ଟୋଗଲ୍ କରନ୍ତୁ", + "nav.language": "ଭାଷା ପରିବର୍ତ୍ତନ କରନ୍ତୁ", + "nav.login": "ଲଗ୍ ଇନ୍ କରନ୍ତୁ", + "nav.user-profile-menu-and-logout": "ଉପଯୋଗକର୍ତ୍ତା ପ୍ରୋଫାଇଲ୍ ମେନୁ ଏବଂ ଲଗ୍ ଆଉଟ୍", + "nav.logout": "ଲଗ୍ ଆଉଟ୍ କରନ୍ତୁ", + "nav.main.description": "ମୁଖ୍ୟ ନେଭିଗେସନ୍ ବାର୍", + "nav.mydspace": "ମୋର DSpace", + "nav.profile": "ପ୍ରୋଫାଇଲ୍", + "nav.search": "ଖୋଜନ୍ତୁ", + "nav.search.button": "ଖୋଜା ଦାଖଲ କରନ୍ତୁ", + "nav.statistics.header": "ପରିସଂଖ୍ୟାନ", + "nav.stop-impersonating": "EPerson ଭାବେ ଅଭିନୟ ବନ୍ଦ କରନ୍ତୁ", + "nav.subscriptions": "ସବସ୍କ୍ରିପସନ୍", + "nav.toggle": "ନେଭିଗେସନ୍ ଟୋଗଲ୍ କରନ୍ତୁ", + "nav.user.description": "ଉପଯୋଗକର୍ତ୍ତା ପ୍ରୋଫାଇଲ୍ ବାର୍", + "listelement.badge.dso-type": "ଆଇଟମ୍ ପ୍ରକାର:", + "none.listelement.badge": "ଆଇଟମ୍", + "publication-claim.title": "ପ୍ରକାଶନ ଦାବି", + "publication-claim.source.description": "ନିମ୍ନରେ ଆପଣ ସମସ୍ତ ସ୍ରୋତ ଦେଖିପାରିବେ।", + "quality-assurance.title": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ", + "quality-assurance.topics.description": "ନିମ୍ନରେ ଆପଣ {{source}} କୁ ସବସ୍କ୍ରିପସନ୍ ରୁ ପ୍ରାପ୍ତ ସମସ୍ତ ବିଷୟ ଦେଖିପାରିବେ।", + "quality-assurance.source.description": "ନିମ୍ନରେ ଆପଣ ସମସ୍ତ ବିଜ୍ଞପ୍ତି ସ୍ରୋତ ଦେଖିପାରିବେ।", + "quality-assurance.topics": "ବର୍ତ୍ତମାନର ବିଷୟଗୁଡିକ", + "quality-assurance.source": "ବର୍ତ୍ତମାନର ସ୍ରୋତଗୁଡିକ", + "quality-assurance.table.topic": "ବିଷୟ", + "quality-assurance.table.source": "ସ୍ରୋତ", + "quality-assurance.table.last-event": "ଶେଷ ଘଟଣା", + "quality-assurance.table.actions": "କାର୍ଯ୍ୟଗୁଡିକ", + "quality-assurance.source-list.button.detail": "{{param}} ପାଇଁ ବିଷୟଗୁଡିକ ଦେଖାନ୍ତୁ", + "quality-assurance.topics-list.button.detail": "{{param}} ପାଇଁ ପରାମର୍ଶଗୁଡିକ ଦେଖାନ୍ତୁ", + "quality-assurance.noTopics": "କୌଣସି ବିଷୟ ମିଳିଲା ନାହିଁ।", + "quality-assurance.noSource": "କୌଣସି ସ୍ରୋତ ମିଳିଲା ନାହିଁ।", + "notifications.events.title": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ ପରାମର୍ଶ", + "quality-assurance.topic.error.service.retrieve": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ ବିଷୟଗୁଡିକ ଲୋଡ୍ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + "quality-assurance.source.error.service.retrieve": "ଗୁଣବତ୍ତା ନିଶ୍ଚିତକରଣ ସ୍ରୋତ ଲୋଡ୍ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + "quality-assurance.loading": "ଲୋଡ୍ ହେଉଛି ...", + "quality-assurance.events.topic": "ବିଷୟ:", + "quality-assurance.noEvents": "କୌଣସି ପରାମର୍ଶ ମିଳିଲା ନାହିଁ।", + "quality-assurance.event.table.trust": "ବିଶ୍ୱାସ", + "quality-assurance.event.table.publication": "ପ୍ରକାଶନ", + "quality-assurance.event.table.details": "ବିବରଣୀ", + "quality-assurance.event.table.project-details": "ପ୍ରୋଜେକ୍ଟ ବିବରଣୀ", + "quality-assurance.event.table.reasons": "କାରଣଗୁଡିକ", + "quality-assurance.event.table.actions": "କାର୍ଯ୍ୟଗୁଡିକ", + "quality-assurance.event.action.accept": "ପରାମର୍ଶ ଗ୍ରହଣ କରନ୍ତୁ", + "quality-assurance.event.action.ignore": "ପରାମର୍ଶ ଅଗ୍ରାହ୍ୟ କରନ୍ତୁ", + "quality-assurance.event.action.undo": "ଡିଲିଟ୍ କରନ୍ତୁ", + "quality-assurance.event.action.reject": "ପରାମର୍ଶ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", + "quality-assurance.event.action.import": "ପ୍ରୋଜେକ୍ଟ ଆମଦାନୀ କରନ୍ତୁ ଏବଂ ପରାମର୍ଶ ଗ୍ରହଣ କରନ୍ତୁ", + "quality-assurance.event.table.pidtype": "PID ପ୍ରକାର:", + "quality-assurance.event.table.pidvalue": "PID ମୂଲ୍ୟ:", + "quality-assurance.event.table.subjectValue": "ବିଷୟ ମୂଲ୍ୟ:", + "quality-assurance.event.table.abstract": "ସାରାଂଶ:", + "quality-assurance.event.table.suggestedProject": "OpenAIRE ଦ୍ୱାରା ପ୍ରସ୍ତାବିତ ପ୍ରୋଜେକ୍ଟ ତଥ୍ୟ", + "quality-assurance.event.table.project": "ପ୍ରୋଜେକ୍ଟ ଶୀର୍ଷକ:", + "quality-assurance.event.table.acronym": "ସଂକ୍ଷିପ୍ତ ନାମ:", + "quality-assurance.event.table.code": "କୋଡ୍:", + "quality-assurance.event.table.funder": "ଅର୍ଥଦାତା:", + "quality-assurance.event.table.fundingProgram": "ଅର୍ଥଦାନ ପ୍ରୋଗ୍ରାମ୍:", + "quality-assurance.event.table.jurisdiction": "କ୍ଷେତ୍ରାଧିକାର:", + "quality-assurance.events.back": "ବିଷୟଗୁଡିକ ପାଖକୁ ଫେରନ୍ତୁ", + "quality-assurance.events.back-to-sources": "ସ୍ରୋତଗୁଡିକ ପାଖକୁ ଫେରନ୍ତୁ", + "quality-assurance.event.table.less": "କମ୍ ଦେଖାନ୍ତୁ", + "quality-assurance.event.table.more": "ଅଧିକ ଦେଖାନ୍ତୁ", + "quality-assurance.event.project.found": "ସ୍ଥାନୀୟ ରେକର୍ଡ୍ ସହିତ ବାନ୍ଧିଛି:", + "quality-assurance.event.project.notFound": "କୌଣସି ସ୍ଥାନୀୟ ରେକର୍ଡ୍ ମିଳିଲା ନାହିଁ", + "quality-assurance.event.sure": "ଆପଣ ନିଶ୍ଚିତ କି?", + "quality-assurance.event.ignore.description": "ଏହି କାର୍ଯ୍ୟକୁ ପଛକୁ ଫେରାଇ ହେବ ନାହିଁ। ଏହି ପରାମର୍ଶକୁ ଅଗ୍ରାହ୍ୟ କରିବେ କି?", + "quality-assurance.event.undo.description": "ଏହି କାର୍ଯ୍ୟକୁ ପଛକୁ ଫେରାଇ ହେବ ନାହିଁ!", + "quality-assurance.event.reject.description": "ଏହି କାର୍ଯ୍ୟକୁ ପଛକୁ ଫେରାଇ ହେବ ନାହିଁ। ଏହି ପରାମର୍ଶକୁ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିବେ କି?", + "quality-assurance.event.accept.description": "କୌଣସି DSpace ପ୍ରୋଜେକ୍ଟ ଚୟନ କରାଯାଇନାହିଁ। ପରାମର୍ଶ ତଥ୍ୟ ଉପରେ ଆଧାରିତ ଏକ ନୂତନ ପ୍ରୋଜେକ୍ଟ ସୃଷ୍ଟି ହେବ।", + "quality-assurance.event.action.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "quality-assurance.event.action.saved": "ଆପଣଙ୍କର ନିଷ୍ପତ୍ତି ସଫଳତାର ସହିତ ସଞ୍ଚୟ ହୋଇଛି।", + "quality-assurance.event.action.error": "ଏକ ତ୍ରୁଟି ଘଟିଛି। ଆପଣଙ୍କର ନିଷ୍ପତ୍ତି ସଞ୍ଚୟ ହୋଇନାହିଁ।", + "quality-assurance.event.modal.project.title": "ବାନ୍ଧିବା ପାଇଁ ଏକ ପ୍ରୋଜେକ୍ଟ ଚୟନ କରନ୍ତୁ", + "quality-assurance.event.modal.project.publication": "ପ୍ରକାଶନ:", + "quality-assurance.event.modal.project.bountToLocal": "ସ୍ଥାନୀୟ ରେକର୍ଡ୍ ସହିତ ବାନ୍ଧିଛି:", + "quality-assurance.event.modal.project.select": "ପ୍ରୋଜେକ୍ଟ ଖୋଜନ୍ତୁ", + "quality-assurance.event.modal.project.search": "ଖୋଜନ୍ତୁ", + "quality-assurance.event.modal.project.clear": "ପରିଷ୍କାର କରନ୍ତୁ", + "quality-assurance.event.modal.project.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "quality-assurance.event.modal.project.bound": "ବାନ୍ଧିଥିବା ପ୍ରୋଜେକ୍ଟ", + "quality-assurance.event.modal.project.remove": "ଅପସାରଣ କରନ୍ତୁ", + "quality-assurance.event.modal.project.placeholder": "ଏକ ପ୍ରୋଜେକ୍ଟ ନାମ ପ୍ରବେଶ କରନ୍ତୁ", + "quality-assurance.event.modal.project.notFound": "କୌଣସି ପ୍ରୋଜେକ୍ଟ ମିଳିଲା ନାହିଁ।", + "quality-assurance.event.project.bounded": "ପ୍ରୋଜେକ୍ଟ ସଫଳତାର ସହିତ ଲିଙ୍କ୍ ହୋଇଛି।", + "quality-assurance.event.project.removed": "ପ୍ରୋଜେକ୍ଟ ସଫଳତାର ସହିତ ଅଲିଙ୍କ୍ ହୋଇଛି।", + "quality-assurance.event.project.error": "ଏକ ତ୍ରୁଟି ଘଟିଛି। କୌଣସି କାର୍ଯ୍ୟ କରାଯାଇନାହିଁ।", + "quality-assurance.event.reason": "କାରଣ", + "orgunit.listelement.badge": "ସାଂସ୍ଥିକ ଏକକ", + "orgunit.listelement.no-title": "ଶୀର୍ଷକବିହୀନ", + "orgunit.page.city": "ସହର", + "orgunit.page.country": "ଦେଶ", + "orgunit.page.dateestablished": "ସ୍ଥାପନ ତାରିଖ", + "orgunit.page.description": "ବର୍ଣ୍ଣନା", + "orgunit.page.edit": "ଏହି ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + "orgunit.page.id": "ID", + "orgunit.page.options": "ବିକଳ୍ପଗୁଡିକ", + "orgunit.page.titleprefix": "ସାଂସ୍ଥିକ ଏକକ: ", + "orgunit.page.ror": "ROR ପରିଚୟକାରୀ", + "orgunit.search.results.head": "ସାଂସ୍ଥିକ ଏକକ ଖୋଜା ଫଳାଫଳ", + "pagination.options.description": "ପୃଷ୍ଠାକରଣ ବିକଳ୍ପଗୁଡିକ", + "pagination.results-per-page": "ପ୍ରତି ପୃଷ୍ଠାରେ ଫଳାଫଳ", + "pagination.showing.detail": "{{ range }} ର {{ total }}", + "pagination.showing.label": "ବର୍ତ୍ତମାନ ଦେଖାଯାଉଛି ", + "pagination.sort-direction": "କ୍ରମ ବିକଳ୍ପଗୁଡିକ", + "person.listelement.badge": "ବ୍ୟକ୍ତି", + "person.listelement.no-title": "କୌଣସି ନାମ ମିଳିଲା ନାହିଁ", + "person.page.birthdate": "ଜନ୍ମ ତାରିଖ", + "person.page.edit": "ଏହି ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + "person.page.email": "ଇମେଲ୍ ଠିକଣା", + "person.page.firstname": "ପ୍ରଥମ ନାମ", + "person.page.jobtitle": "ଚାକିରି ଶୀର୍ଷକ", + "person.page.lastname": "ଶେଷ ନାମ", + "person.page.name": "ନାମ", + "person.page.link.full": "ସମସ୍ତ ମେଟାଡାଟା ଦେଖାନ୍ତୁ", + "person.page.options": "ବିକଳ୍ପଗୁଡିକ", + "person.page.orcid": "ORCID", + "person.page.staffid": "ସ୍ଟାଫ୍ ID", + "person.page.titleprefix": "ବ୍ୟକ୍ତି: ", + "person.search.results.head": "ବ୍ୟକ୍ତି ଖୋଜା ଫଳାଫଳ", + "person-relationships.search.results.head": "ବ୍ୟକ୍ତି ଖୋଜା ଫଳାଫଳ", + "person.search.title": "ବ୍ୟକ୍ତି ଖୋଜା", + "process.new.select-parameters": "ପାରାମିଟର୍", + "process.new.select-parameter": "ପାରାମିଟର୍ ଚୟନ କରନ୍ତୁ", + "process.new.add-parameter": "ଏକ ପାରାମିଟର୍ ଯୋଡନ୍ତୁ...", + "process.new.delete-parameter": "ପାରାମିଟର୍ ଡିଲିଟ୍ କରନ୍ତୁ", + "process.new.parameter.label": "ପାରାମିଟର୍ ମୂଲ୍ୟ", + "process.new.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "process.new.submit": "ସଞ୍ଚୟ କରନ୍ତୁ", + "process.new.select-script": "ସ୍କ୍ରିପ୍ଟ୍", + "process.new.select-script.placeholder": "ଏକ ସ୍କ୍ରିପ୍ଟ୍ ଚୟନ କରନ୍ତୁ...", + "process.new.select-script.required": "ସ୍କ୍ରିପ୍ଟ୍ ଆବଶ୍ୟକ", + "process.new.parameter.file.upload-button": "ଫାଇଲ୍ ଚୟନ କରନ୍ତୁ...", + "process.new.parameter.file.required": "ଦୟାକରି ଏକ ଫାଇଲ୍ ଚୟନ କରନ୍ତୁ", + "process.new.parameter.integer.required": "ପାରାମିଟର୍ ମୂଲ୍ୟ ଆବଶ୍ୟକ", + "process.new.parameter.string.required": "ପାରାମିଟର୍ ମୂଲ୍ୟ ଆବଶ୍ୟକ", + "process.new.parameter.type.value": "ମୂଲ୍ୟ", + "process.new.parameter.type.file": "ଫାଇଲ୍", + "process.new.parameter.required.missing": "ନିମ୍ନଲିଖିତ ପାରାମିଟର୍ ଆବଶ୍ୟକ କିନ୍ତୁ ଏପର୍ଯ୍ୟନ୍ତ ଅନୁପସ୍ଥିତ:", + "process.new.notification.success.title": "ସଫଳତା", + "process.new.notification.success.content": "ପ୍ରକ୍ରିୟା ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", + "process.new.notification.error.title": "ତ୍ରୁଟି", + "process.new.notification.error.content": "ଏହି ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + "process.new.notification.error.max-upload.content": "ଫାଇଲ୍ ଅଧିକତମ ଅପଲୋଡ୍ ଆକାର ଅତିକ୍ରମ କରିଛି", + "process.new.header": "ଏକ ନୂତନ ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରନ୍ତୁ", + "process.new.title": "ଏକ ନୂତନ ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରନ୍ତୁ", + "process.new.breadcrumbs": "ଏକ ନୂତନ ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରନ୍ତୁ", + "process.detail.arguments": "ଯୁକ୍ତିଗୁଡିକ", + "process.detail.arguments.empty": "ଏହି ପ୍ରକ୍ରିୟାରେ କୌଣସି ଯୁକ୍ତି ନାହିଁ", + "process.detail.back": "ପଛକୁ ଯାଆନ୍ତୁ", + "process.detail.output": "ପ୍ରକ୍ରିୟା ଆଉଟପୁଟ୍", + "process.detail.logs.button": "ପ୍ରକ୍ରିୟା ଆଉଟପୁଟ୍ ପ୍ରାପ୍ତ କରନ୍ତୁ", + "process.detail.logs.loading": "ପ୍ରାପ୍ତ କରୁଛି", + "process.detail.logs.none": "ଏହି ପ୍ରକ୍ରିୟାରେ କୌଣସି ଆଉଟପୁଟ୍ ନାହିଁ", + "process.detail.output-files": "ଆଉଟପୁଟ୍ ଫାଇଲ୍", + "process.detail.output-files.empty": "ଏହି ପ୍ରକ୍ରିୟାରେ କୌଣସି ଆଉଟପୁଟ୍ ଫାଇଲ୍ ନାହିଁ", + "process.detail.script": "ସ୍କ୍ରିପ୍ଟ୍", + "process.detail.title": "ପ୍ରକ୍ରିୟା: {{ id }} - {{ name }}", + "process.detail.start-time": "ଆରମ୍ଭ ସମୟ", + "process.detail.end-time": "ସମାପ୍ତି ସମୟ", + "process.detail.status": "ସ୍ଥିତି", + "process.detail.create": "ସମାନ ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରନ୍ତୁ", + "process.detail.actions": "କାର୍ଯ୍ୟଗୁଡିକ", + "process.detail.delete.button": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", + "process.detail.delete.header": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", + "process.detail.delete.body": "ଆପଣ ନିଶ୍ଚିତ କି ବର୍ତ୍ତମାନର ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", + "process.detail.delete.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + "process.detail.delete.confirm": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", + "process.detail.delete.success": "ପ୍ରକ୍ରିୟା ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି।", + "process.detail.delete.error": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", + "process.detail.refreshing": "ସ୍ୱୟଂଚାଳିତ ରିଫ୍ରେସ୍ ହେଉଛି…", + "process.overview.table.completed.info": "ସମାପ୍ତି ସମୟ (UTC)", + "process.overview.table.completed.title": "ସଫଳ ପ୍ରକ୍ରିୟାଗୁଡିକ", + "process.overview.table.empty": "କୌଣସି ମେଳ ଖାଉଥିବା ପ୍ରକ୍ରିୟା ମିଳିଲା ନାହିଁ।", + "process.overview.table.failed.info": "ସମାପ୍ତି ସମୟ (UTC)", + "process.overview.table.failed.title": "ବିଫଳ ପ୍ରକ୍ରିୟାଗୁଡିକ", + "process.overview.table.finish": "ସମାପ୍ତି ସମୟ (UTC)", + "process.overview.table.id": "ପ୍ରକ୍ରିୟା ID", + "process.overview.table.name": "ନାମ", + "process.overview.table.running.info": "ଆରମ୍ଭ ସମୟ (UTC)", + "process.overview.table.running.title": "ଚାଲିଥିବା ପ୍ରକ୍ରିୟାଗୁଡିକ", + "process.overview.table.scheduled.info": "ସୃଷ୍ଟି ସମୟ (UTC)", + "process.overview.table.scheduled.title": "ଯୋଜନାକୃତ ପ୍ରକ୍ରିୟାଗୁଡିକ", + "process.overview.table.start": "ଆରମ୍ଭ ସମୟ (UTC)", + "process.overview.table.status": "ସ୍ଥିତି", + "process.overview.table.user": "ଉପଯୋଗକର୍ତ୍ତା", + "process.overview.title": "ପ୍ରକ୍ରିୟା ସମୀକ୍ଷା", + "process.overview.breadcrumbs": "ପ୍ରକ୍ରିୟା ସମୀକ୍ଷା", + "process.overview.new": "ନୂତନ", + "process.overview.table.actions": "କ୍ରିୟାଗୁଡ଼ିକ", + "process.overview.delete": "{{count}} ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", + "process.overview.delete-process": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", + "process.overview.delete.clear": "ଡିଲିଟ୍ ଚୟନ ସଫା କରନ୍ତୁ", + "process.overview.delete.processing": "{{count}} ପ୍ରକ୍ରିୟା(ଗୁଡ଼ିକ) ଡିଲିଟ୍ ହେଉଛି। ଦୟାକରି ଡିଲିଟ୍ ସମ୍ପୂର୍ଣ୍ଣ ହେବା ପର୍ଯ୍ୟନ୍ତ ଅପେକ୍ଷା କରନ୍ତୁ। ଏହା କିଛି ସମୟ ନେଇପାରେ।", + "process.overview.delete.body": "ଆପଣ ନିଶ୍ଚିତ କି {{count}} ପ୍ରକ୍ରିୟା(ଗୁଡ଼ିକ) ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", + "process.overview.delete.header": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରନ୍ତୁ", + "process.overview.unknown.user": "ଅଜ୍ଞାତ", + "process.bulk.delete.error.head": "ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ କରିବାରେ ତ୍ରୁଟି", + "process.bulk.delete.error.body": "ID {{processId}} ସହିତ ପ୍ରକ୍ରିୟା ଡିଲିଟ୍ ହୋଇପାରିବ ନାହିଁ। ଅନ୍ୟ ପ୍ରକ୍ରିୟାଗୁଡ଼ିକ ଡିଲିଟ୍ ହେବା ଜାରି ରହିବ।", + "process.bulk.delete.success": "{{count}} ପ୍ରକ୍ରିୟା(ଗୁଡ଼ିକ) ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", + "profile.breadcrumbs": "ପ୍ରୋଫାଇଲ୍ ଅପଡେଟ୍ କରନ୍ତୁ", + "profile.card.accessibility.content": "ସୁଗମତା ସେଟିଂସ୍ ସୁଗମତା ସେଟିଂସ୍ ପୃଷ୍ଠାରେ କନଫିଗର୍ କରାଯାଇପାରିବ।", + "profile.card.accessibility.header": "ସୁଗମତା", + "profile.card.accessibility.link": "ସୁଗମତା ସେଟିଂସ୍ ପୃଷ୍ଠାକୁ ଯାଆନ୍ତୁ", + "profile.card.identify": "ଚିହ୍ନଟ କରନ୍ତୁ", + "profile.card.security": "ସୁରକ୍ଷା", + "profile.form.submit": "ସେଭ୍ କରନ୍ତୁ", + "profile.groups.head": "ଆପଣ ଯେଉଁ ଅଧିକାର ଗୋଷ୍ଠୀଗୁଡ଼ିକରେ ଅଛନ୍ତି", + "profile.special.groups.head": "ଆପଣ ଯେଉଁ ବିଶେଷ ଅଧିକାର ଗୋଷ୍ଠୀଗୁଡ଼ିକରେ ଅଛନ୍ତି", + "profile.metadata.form.error.firstname.required": "ପ୍ରଥମ ନାମ ଆବଶ୍ୟକ", + "profile.metadata.form.error.lastname.required": "ଶେଷ ନାମ ଆବଶ୍ୟକ", + "profile.metadata.form.label.email": "ଇମେଲ୍ ଠିକଣା", + "profile.metadata.form.label.firstname": "ପ୍ରଥମ ନାମ", + "profile.metadata.form.label.language": "ଭାଷା", + "profile.metadata.form.label.lastname": "ଶେଷ ନାମ", + "profile.metadata.form.label.phone": "ଯୋଗାଯୋଗ ଫୋନ୍", + "profile.metadata.form.notifications.success.content": "ଆପଣଙ୍କର ପ୍ରୋଫାଇଲ୍ ରେ ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ସେଭ୍ ହୋଇଛି।", + "profile.metadata.form.notifications.success.title": "ପ୍ରୋଫାଇଲ୍ ସେଭ୍ ହୋଇଛି", + "profile.notifications.warning.no-changes.content": "ପ୍ରୋଫାଇଲ୍ ରେ କୌଣସି ପରିବର୍ତ୍ତନ ହୋଇନାହିଁ।", + "profile.notifications.warning.no-changes.title": "କୌଣସି ପରିବର୍ତ୍ତନ ନାହିଁ", + "profile.security.form.error.matching-passwords": "ପାସୱାର୍ଡଗୁଡ଼ିକ ମେଳ ଖାଉନାହିଁନ୍ତି।", + "profile.security.form.info": "ବାଛିକରି, ଆପଣ ନିମ୍ନ ବାକ୍ସରେ ଏକ ନୂତନ ପାସୱାର୍ଡ୍ ପ୍ରବେଶ କରିପାରିବେ, ଏବଂ ଏହାକୁ ଦ୍ୱିତୀୟ ବାକ୍ସରେ ପୁନର୍ବାର ଟାଇପ୍ କରି ନିଶ୍ଚିତ କରିପାରିବେ।", + "profile.security.form.label.password": "ପାସୱାର୍ଡ୍", + "profile.security.form.label.passwordrepeat": "ନିଶ୍ଚିତକରଣ ପାଇଁ ପୁନରାବୃତ୍ତି କରନ୍ତୁ", + "profile.security.form.label.current-password": "ବର୍ତ୍ତମାନର ପାସୱାର୍ଡ୍", + "profile.security.form.notifications.success.content": "ଆପଣଙ୍କର ପାସୱାର୍ଡ୍ ରେ ପରିବର୍ତ୍ତନଗୁଡ଼ିକ ସେଭ୍ ହୋଇଛି।", + "profile.security.form.notifications.success.title": "ପାସୱାର୍ଡ୍ ସେଭ୍ ହୋଇଛି", + "profile.security.form.notifications.error.title": "ପାସୱାର୍ଡ୍ ପରିବର୍ତ୍ତନରେ ତ୍ରୁଟି", + "profile.security.form.notifications.error.change-failed": "ପାସୱାର୍ଡ୍ ପରିବର୍ତ୍ତନ କରିବାବେଳେ ଏକ ତ୍ରୁଟି ଘଟିଲା। ଦୟାକରି ଯାଞ୍ଚ କରନ୍ତୁ ଯେ ବର୍ତ୍ତମାନର ପାସୱାର୍ଡ୍ ସଠିକ୍ ଅଛି କି ନାହିଁ।", + "profile.security.form.notifications.error.not-same": "ପ୍ରଦାନ କରାଯାଇଥିବା ପାସୱାର୍ଡଗୁଡ଼ିକ ସମାନ ନୁହେଁ।", + "profile.security.form.notifications.error.general": "ଦୟାକରି ସୁରକ୍ଷା ଫର୍ମର ଆବଶ୍ୟକ କ୍ଷେତ୍ରଗୁଡ଼ିକ ପୂରଣ କରନ୍ତୁ।", + "profile.title": "ପ୍ରୋଫାଇଲ୍ ଅପଡେଟ୍ କରନ୍ତୁ", + "profile.card.researcher": "ଗବେଷକ ପ୍ରୋଫାଇଲ୍", + "project.listelement.badge": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟ୍", + "project.page.contributor": "ଯୋଗଦାନକାରୀଗଣ", + "project.page.description": "ବର୍ଣ୍ଣନା", + "project.page.edit": "ଏହି ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + "project.page.expectedcompletion": "ଆଶା କରାଯାଉଥିବା ସମାପ୍ତି", + "project.page.funder": "ଅର୍ଥଦାତାଗଣ", + "project.page.id": "ID", + "project.page.keyword": "କିୱାର୍ଡଗୁଡ଼ିକ", + "project.page.options": "ବିକଳ୍ପଗୁଡ଼ିକ", + "project.page.status": "ସ୍ଥିତି", + "project.page.titleprefix": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟ୍: ", + "project.search.results.head": "ପ୍ରୋଜେକ୍ଟ୍ ସନ୍ଧାନ ଫଳାଫଳ", + "project-relationships.search.results.head": "ପ୍ରୋଜେକ୍ଟ୍ ସନ୍ଧାନ ଫଳାଫଳ", + "publication.listelement.badge": "ପ୍ରକାଶନ", + "publication.page.description": "ବର୍ଣ୍ଣନା", + "publication.page.edit": "ଏହି ଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + "publication.page.journal-issn": "ଜର୍ଣ୍ଣାଲ୍ ISSN", + "publication.page.journal-title": "ଜର୍ଣ୍ଣାଲ୍ ଶୀର୍ଷକ", + "publication.page.publisher": "ପ୍ରକାଶକ", + "publication.page.options": "ବିକଳ୍ପଗୁଡ଼ିକ", + "publication.page.titleprefix": "ପ୍ରକାଶନ: ", + "publication.page.volume-title": "ଭଲ୍ୟୁମ୍ ଶୀର୍ଷକ", + "publication.search.results.head": "ପ୍ରକାଶନ ସନ୍ଧାନ ଫଳାଫଳ", + "publication-relationships.search.results.head": "ପ୍ରକାଶନ ସନ୍ଧାନ ଫଳାଫଳ", + "publication.search.title": "ପ୍ରକାଶନ ସନ୍ଧାନ", + "media-viewer.next": "ପରବର୍ତ୍ତୀ", + "media-viewer.previous": "ପୂର୍ବବର୍ତ୍ତୀ", + "media-viewer.playlist": "ପ୍ଲେଲିଷ୍ଟ୍", + "suggestion.loading": "ଲୋଡ୍ ହେଉଛି ...", + "suggestion.title": "ପ୍ରକାଶନ ଦାବି", + "suggestion.title.breadcrumbs": "ପ୍ରକାଶନ ଦାବି", + "suggestion.targets.description": "ନିମ୍ନରେ ଆପଣ ସମସ୍ତ ପ୍ରସ୍ତାବଗୁଡ଼ିକ ଦେଖିପାରିବେ ", + "suggestion.targets": "ବର୍ତ୍ତମାନର ପ୍ରସ୍ତାବଗୁଡ଼ିକ", + "suggestion.table.name": "ଗବେଷକ ନାମ", + "suggestion.table.actions": "କ୍ରିୟାଗୁଡ଼ିକ", + "suggestion.button.review": "{{ total }} ପ୍ରସ୍ତାବ(ଗୁଡ଼ିକ) ସମୀକ୍ଷା କରନ୍ତୁ", + "suggestion.button.review.title": "{{ total }} ପ୍ରସ୍ତାବ(ଗୁଡ଼ିକ) ସମୀକ୍ଷା କରନ୍ତୁ ", + "suggestion.noTargets": "କୌଣସି ଟାର୍ଗେଟ୍ ମିଳିଲା ନାହିଁ।", + "suggestion.target.error.service.retrieve": "ପ୍ରସ୍ତାବ ଟାର୍ଗେଟ୍ ଲୋଡ୍ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "suggestion.evidence.type": "ପ୍ରକାର", + "suggestion.evidence.score": "ସ୍କୋର୍", + "suggestion.evidence.notes": "ଟିପ୍ପଣୀଗୁଡ଼ିକ", + "suggestion.approveAndImport": "ଅନୁମୋଦନ କରନ୍ତୁ ଏବଂ ଆମଦାନୀ କରନ୍ତୁ", + "suggestion.approveAndImport.success": "ପ୍ରସ୍ତାବ ସଫଳତାର ସହିତ ଆମଦାନୀ ହୋଇଛି। ଦେଖନ୍ତୁ।", + "suggestion.approveAndImport.bulk": "ଚୟନିତ ଅନୁମୋଦନ କରନ୍ତୁ ଏବଂ ଆମଦାନୀ କରନ୍ତୁ", + "suggestion.approveAndImport.bulk.success": "{{ count }} ପ୍ରସ୍ତାବଗୁଡ଼ିକ ସଫଳତାର ସହିତ ଆମଦାନୀ ହୋଇଛି ", + "suggestion.approveAndImport.bulk.error": "{{ count }} ପ୍ରସ୍ତାବଗୁଡ଼ିକ ଅପ୍ରତ୍ୟାଶିତ ସର୍ଭର୍ ତ୍ରୁଟି ଯୋଗୁଁ ଆମଦାନୀ ହୋଇନାହିଁ", + "suggestion.ignoreSuggestion": "ପ୍ରସ୍ତାବ ଅଣଦେଖା କରନ୍ତୁ", + "suggestion.ignoreSuggestion.success": "ପ୍ରସ୍ତାବ ପରିତ୍ୟକ୍ତ ହୋଇଛି", + "suggestion.ignoreSuggestion.bulk": "ଚୟନିତ ପ୍ରସ୍ତାବ ଅଣଦେଖା କରନ୍ତୁ", + "suggestion.ignoreSuggestion.bulk.success": "{{ count }} ପ୍ରସ୍ତାବଗୁଡ଼ିକ ପରିତ୍ୟକ୍ତ ହୋଇଛି ", + "suggestion.ignoreSuggestion.bulk.error": "{{ count }} ପ୍ରସ୍ତାବଗୁଡ଼ିକ ଅପ୍ରତ୍ୟାଶିତ ସର୍ଭର୍ ତ୍ରୁଟି ଯୋଗୁଁ ପରିତ୍ୟକ୍ତ ହୋଇନାହିଁ", + "suggestion.seeEvidence": "ପ୍ରମାଣ ଦେଖନ୍ତୁ", + "suggestion.hideEvidence": "ପ୍ରମାଣ ଲୁଚାନ୍ତୁ", + "suggestion.suggestionFor": "ପ୍ରସ୍ତାବଗୁଡ଼ିକ ", + "suggestion.suggestionFor.breadcrumb": "{{ name }} ପାଇଁ ପ୍ରସ୍ତାବଗୁଡ଼ିକ", + "suggestion.source.openaire": "OpenAIRE ଗ୍ରାଫ୍", + "suggestion.source.openalex": "OpenAlex", + "suggestion.from.source": "ଠାରୁ ", + "suggestion.count.missing": "ଆପଣଙ୍କର କୌଣସି ପ୍ରକାଶନ ଦାବି ବାକି ନାହିଁ", + "suggestion.totalScore": "ସମୁଦାୟ ସ୍କୋର୍", + "suggestion.type.openaire": "OpenAIRE", + "register-email.title": "ନୂତନ ଉପଯୋଗକର୍ତ୍ତା ପଞ୍ଜିକରଣ", + "register-page.create-profile.header": "ପ୍ରୋଫାଇଲ୍ ସୃଷ୍ଟି କରନ୍ତୁ", + "register-page.create-profile.identification.header": "ଚିହ୍ନଟ କରନ୍ତୁ", + "register-page.create-profile.identification.email": "ଇମେଲ୍ ଠିକଣା", + "register-page.create-profile.identification.first-name": "ପ୍ରଥମ ନାମ *", + "register-page.create-profile.identification.first-name.error": "ଦୟାକରି ଏକ ପ୍ରଥମ ନାମ ପୂରଣ କରନ୍ତୁ", + "register-page.create-profile.identification.last-name": "ଶେଷ ନାମ *", + "register-page.create-profile.identification.last-name.error": "ଦୟାକରି ଏକ ଶେଷ ନାମ ପୂରଣ କରନ୍ତୁ", + "register-page.create-profile.identification.contact": "ଯୋଗାଯୋଗ ଫୋନ୍", + "register-page.create-profile.identification.language": "ଭାଷା", + "register-page.create-profile.security.header": "ସୁରକ୍ଷା", + "register-page.create-profile.security.info": "ଦୟାକରି ନିମ୍ନ ବାକ୍ସରେ ଏକ ପାସୱାର୍ଡ୍ ପ୍ରବେଶ କରନ୍ତୁ, ଏବଂ ଏହାକୁ ଦ୍ୱିତୀୟ ବାକ୍ସରେ ପୁନର୍ବାର ଟାଇପ୍ କରି ନିଶ୍ଚିତ କରନ୍ତୁ।", + "register-page.create-profile.security.label.password": "ପାସୱାର୍ଡ୍ *", + "register-page.create-profile.security.label.passwordrepeat": "ନିଶ୍ଚିତକରଣ ପାଇଁ ପୁନରାବୃତ୍ତି କରନ୍ତୁ *", + "register-page.create-profile.security.error.empty-password": "ଦୟାକରି ନିମ୍ନ ବାକ୍ସରେ ଏକ ପାସୱାର୍ଡ୍ ପ୍ରବେଶ କରନ୍ତୁ।", + "register-page.create-profile.security.error.matching-passwords": "ପାସୱାର୍ଡଗୁଡ଼ିକ ମେଳ ଖାଉନାହିଁନ୍ତି।", + "register-page.create-profile.submit": "ପଞ୍ଜିକରଣ ସମାପ୍ତ କରନ୍ତୁ", + "register-page.create-profile.submit.error.content": "ନୂତନ ଉପଯୋଗକର୍ତ୍ତା ପଞ୍ଜିକରଣ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଲା।", + "register-page.create-profile.submit.error.head": "ପଞ୍ଜିକରଣ ବିଫଳ ହେଲା", + "register-page.create-profile.submit.success.content": "ପଞ୍ଜିକରଣ ସଫଳ ହୋଇଛି। ଆପଣ ସୃଷ୍ଟି କରାଯାଇଥିବା ଉପଯୋଗକର୍ତ୍ତା ଭାବରେ ଲଗ୍ ଇନ୍ ହୋଇଛନ୍ତି।", + "register-page.create-profile.submit.success.head": "ପଞ୍ଜିକରଣ ସମାପ୍ତ ହେଲା", + "register-page.registration.header": "ନୂତନ ଉପଯୋଗକର୍ତ୍ତା ପଞ୍ଜିକରଣ", + "register-page.registration.info": "ଇମେଲ୍ ଅପଡେଟ୍ ପାଇଁ ସଂଗ୍ରହଗୁଡ଼ିକୁ ସବସ୍କ୍ରାଇବ୍ କରିବାକୁ ଏବଂ DSpace ରେ ନୂତନ ଆଇଟମ୍ ଦାଖଲ କରିବାକୁ ଏକ ଆକାଉଣ୍ଟ୍ ପଞ୍ଜିକରଣ କରନ୍ତୁ।", + "register-page.registration.email": "ଇମେଲ୍ ଠିକଣା *", + "register-page.registration.email.error.required": "ଦୟାକରି ଏକ ଇମେଲ୍ ଠିକଣା ପୂରଣ କରନ୍ତୁ", + "register-page.registration.email.error.not-email-form": "ଦୟାକରି ଏକ ବୈଧ ଇମେଲ୍ ଠିକଣା ପୂରଣ କରନ୍ତୁ।", + "register-page.registration.email.error.not-valid-domain": "ଅନୁମୋଦିତ ଡୋମେନ୍ ସହିତ ଇମେଲ୍ ବ୍ୟବହାର କରନ୍ତୁ: {{ domains }}", + "register-page.registration.email.hint": "ଏହି ଠିକଣା ଯାଞ୍ଚ ହେବ ଏବଂ ଆପଣଙ୍କର ଲଗଇନ୍ ନାମ ଭାବରେ ବ୍ୟବହୃତ ହେବ।", + "register-page.registration.submit": "ପଞ୍ଜିକରଣ କରନ୍ତୁ", + "register-page.registration.success.head": "ଯାଞ୍ଚ ଇମେଲ୍ ପଠାଯାଇଛି", + "register-page.registration.success.content": "{{ email }} କୁ ଏକ ବିଶେଷ URL ଏବଂ ଅଧିକ ନିର୍ଦ୍ଦେଶନାମା ସହିତ ଏକ ଇମେଲ୍ ପଠାଯାଇଛି।", + "register-page.registration.error.head": "ଇମେଲ୍ ପଞ୍ଜିକରଣ କରିବାରେ ତ୍ରୁଟି", + "register-page.registration.error.content": "ନିମ୍ନଲିଖିତ ଇମେଲ୍ ଠିକଣା ପଞ୍ଜିକରଣ କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା: {{ email }}", + "register-page.registration.error.recaptcha": "recaptcha ସହିତ ପ୍ରାମାଣିକରଣ କରିବାରେ ତ୍ରୁଟି", + "register-page.registration.google-recaptcha.must-accept-cookies": "ପଞ୍ଜିକରଣ କରିବାକୁ ଆପଣଙ୍କୁ ପଞ୍ଜିକରଣ ଏବଂ ପାସୱାର୍ଡ୍ ପୁନରୁଦ୍ଧାର (Google reCaptcha) କୁକିଗୁଡ଼ିକୁ ଗ୍ରହଣ କରିବାକୁ ହେବ।", + "register-page.registration.google-recaptcha.open-cookie-settings": "କୁକି ସେଟିଂସ୍ ଖୋଲନ୍ତୁ", + "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", + "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha ଯାଞ୍ଚ ବେଳେ ଏକ ତ୍ରୁଟି ଘଟିଲା", + "register-page.registration.google-recaptcha.notification.message.expired": "ଯାଞ୍ଚ ସମୟ ସମାପ୍ତ ହୋଇଛି। ଦୟାକରି ପୁନର୍ବାର ଯାଞ୍ଚ କରନ୍ତୁ।", + "register-page.registration.info.maildomain": "ଡୋମେନ୍ ଗୁଡ଼ିକର ମେଲ୍ ଠିକଣା ପାଇଁ ଆକାଉଣ୍ଟ୍ ପଞ୍ଜିକରଣ କରାଯାଇପାରିବ", + "relationships.add.error.relationship-type.content": "ଦୁଇଟି ଆଇଟମ୍ ମଧ୍ୟରେ ସମ୍ବନ୍ଧ ପ୍ରକାର {{ type }} ପାଇଁ କୌଣସି ଉପଯୁକ୍ତ ମେଳ ମିଳିପାରିବ ନାହିଁ", + "relationships.add.error.server.content": "ସର୍ଭର୍ ଏକ ତ୍ରୁଟି ଫେରାଇଛି", + "relationships.add.error.title": "ସମ୍ବନ୍ଧ ଯୋଡ଼ିବା ସମ୍ଭବ ନାହିଁ", + "relationships.Publication.isAuthorOfPublication.Person": "ଲେଖକଗଣ (ବ୍ୟକ୍ତିଗତ)", + "relationships.Publication.isProjectOfPublication.Project": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟଗୁଡ଼ିକ", + "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "ସାଂଗଠନିକ ଏକକଗୁଡ଼ିକ", + "relationships.Publication.isAuthorOfPublication.OrgUnit": "ଲେଖକଗଣ (ସାଂଗଠନିକ ଏକକ)", + "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "ଜର୍ଣ୍ଣାଲ୍ ଇସ୍ୟୁ", + "relationships.Publication.isContributorOfPublication.Person": "ଯୋଗଦାନକାରୀ", + "relationships.Publication.isContributorOfPublication.OrgUnit": "ଯୋଗଦାନକାରୀ (ସାଂଗଠନିକ ଏକକ)", + "relationships.Person.isPublicationOfAuthor.Publication": "ପ୍ରକାଶନଗୁଡ଼ିକ", + "relationships.Person.isProjectOfPerson.Project": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟଗୁଡ଼ିକ", + "relationships.Person.isOrgUnitOfPerson.OrgUnit": "ସାଂଗଠନିକ ଏକକଗୁଡ଼ିକ", + "relationships.Person.isPublicationOfContributor.Publication": "ପ୍ରକାଶନଗୁଡ଼ିକ (ଯୋଗଦାନକାରୀ ଭାବରେ)", + "relationships.Project.isPublicationOfProject.Publication": "ପ୍ରକାଶନଗୁଡ଼ିକ", + "relationships.Project.isPersonOfProject.Person": "ଲେଖକଗଣ", + "relationships.Project.isOrgUnitOfProject.OrgUnit": "ସାଂଗଠନିକ ଏକକଗୁଡ଼ିକ", + "relationships.Project.isFundingAgencyOfProject.OrgUnit": "ଅର୍ଥଦାତା", + "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "ସଂଗଠନ ପ୍ରକାଶନଗୁଡ଼ିକ", + "relationships.OrgUnit.isPersonOfOrgUnit.Person": "ଲେଖକଗଣ", + "relationships.OrgUnit.isProjectOfOrgUnit.Project": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟଗୁଡ଼ିକ", + "relationships.OrgUnit.isPublicationOfAuthor.Publication": "ଲେଖିତ ପ୍ରକାଶନଗୁଡ଼ିକ", + "relationships.OrgUnit.isPublicationOfContributor.Publication": "ପ୍ରକାଶନଗୁଡ଼ିକ (ଯୋଗଦାନକାରୀ ଭାବରେ)", + "relationships.OrgUnit.isProjectOfFundingAgency.Project": "ଗବେଷଣା ପ୍ରୋଜେକ୍ଟଗୁଡ଼ିକ (ଅର୍ଥଦାତା ଭାବରେ)", + "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍", + "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "ପ୍ରକାଶନଗୁଡ଼ିକ", + "relationships.JournalVolume.isJournalOfVolume.Journal": "ଜର୍ଣ୍ଣାଲଗୁଡ଼ିକ", + "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "ଜର୍ଣ୍ଣାଲ୍ ଇସ୍ୟୁ", + "relationships.Journal.isVolumeOfJournal.JournalVolume": "ଜର୍ଣ୍ଣାଲ୍ ଭଲ୍ୟୁମ୍", + "repository.image.logo": "ରିପୋଜିଟରି ଲୋଗୋ", + "repository.title": "DSpace ରିପୋଜିଟରି", + "repository.title.prefix": "DSpace ରିପୋଜିଟରି :: ", + "resource-policies.add.button": "ଯୋଡ଼ନ୍ତୁ", + "resource-policies.add.for.": "ଏକ ନୂତନ ନୀତି ଯୋଡ଼ନ୍ତୁ", + "resource-policies.add.for.bitstream": "ଏକ ନୂତନ ବିଟଷ୍ଟ୍ରିମ୍ ନୀତି ଯୋଡ଼ନ୍ତୁ", + "resource-policies.add.for.bundle": "ଏକ ନୂତନ ବଣ୍ଡଲ୍ ନୀତି ଯୋଡ଼ନ୍ତୁ", + "resource-policies.add.for.item": "ଏକ ନୂତନ ଆଇଟମ୍ ନୀତି ଯୋଡ଼ନ୍ତୁ", + "resource-policies.add.for.community": "ଏକ ନୂତନ ସମ୍ପ୍ରଦାୟ ନୀତି ଯୋଡ଼ନ୍ତୁ", + "resource-policies.add.for.collection": "ଏକ ନୂତନ ସଂଗ୍ରହ ନୀତି ଯୋଡ଼ନ୍ତୁ", + "resource-policies.create.page.heading": "ପାଇଁ ନୂତନ ସମ୍ବଳ ନୀତି ସୃଷ୍ଟି କରନ୍ତୁ ", + "resource-policies.create.page.failure.content": "ସମ୍ବଳ ନୀତି ସୃଷ୍ଟି କରିବାରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", + "resource-policies.create.page.success.content": "ଅପରେସନ୍ ସଫଳ", + "resource-policies.create.page.title": "ନୂତନ ସମ୍ବଳ ନୀତି ସୃଷ୍ଟି କରନ୍ତୁ", + "resource-policies.delete.btn": "ଚୟନ କରାଯାଇଥିବା ଡିଲିଟ୍ କରନ୍ତୁ", + "resource-policies.delete.btn.title": "ଚୟନ କରାଯାଇଥିବା ସମ୍ବଳ ନୀତିଗୁଡିକୁ ଡିଲିଟ୍ କରନ୍ତୁ", + "resource-policies.delete.failure.content": "ଚୟନ କରାଯାଇଥିବା ସମ୍ବଳ ନୀତିଗୁଡିକୁ ଡିଲିଟ୍ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", + "resource-policies.delete.success.content": "ଅପରେସନ୍ ସଫଳ ହେଲା", + "resource-policies.edit.page.heading": "ସମ୍ବଳ ନୀତି ସଂପାଦନ କରନ୍ତୁ ", + "resource-policies.edit.page.failure.content": "ସମ୍ବଳ ନୀତି ସଂପାଦନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", + "resource-policies.edit.page.target-failure.content": "ଟାର୍ଗେଟ୍ (ePerson କିମ୍ବା ଗୋଷ୍ଠୀ) ସଂପାଦନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା।", + "resource-policies.edit.page.other-failure.content": "ସମ୍ବଳ ନୀତି ସଂପାଦନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଲା। ଟାର୍ଗେଟ୍ (ePerson କିମ୍ବା ଗୋଷ୍ଠୀ) ସଫଳତାର ସହିତ ଅପଡେଟ୍ ହୋଇଛି।", + "resource-policies.edit.page.success.content": "ଅପରେସନ୍ ସଫଳ ହେଲା", + "resource-policies.edit.page.title": "ସମ୍ବଳ ନୀତି ସଂପାଦନ କରନ୍ତୁ", + "resource-policies.form.action-type.label": "କାର୍ଯ୍ୟ ପ୍ରକାର ଚୟନ କରନ୍ତୁ", + "resource-policies.form.action-type.required": "ଆପଣଙ୍କୁ ସମ୍ବଳ ନୀତି କାର୍ଯ୍ୟ ଚୟନ କରିବାକୁ ପଡିବ।", + "resource-policies.form.eperson-group-list.label": "ePerson କିମ୍ବା ଗୋଷ୍ଠୀ ଯାହାକୁ ଅନୁମତି ଦିଆଯିବ", + "resource-policies.form.eperson-group-list.select.btn": "ଚୟନ କରନ୍ତୁ", + "resource-policies.form.eperson-group-list.tab.eperson": "ePerson ପାଇଁ ଖୋଜନ୍ତୁ", + "resource-policies.form.eperson-group-list.tab.group": "ଗୋଷ୍ଠୀ ପାଇଁ ଖୋଜନ୍ତୁ", + "resource-policies.form.eperson-group-list.table.headers.action": "କାର୍ଯ୍ୟ", + "resource-policies.form.eperson-group-list.table.headers.id": "ID", + "resource-policies.form.eperson-group-list.table.headers.name": "ନାମ", + "resource-policies.form.eperson-group-list.modal.header": "ପ୍ରକାର ପରିବର୍ତ୍ତନ କରିବା ସମ୍ଭବ ନୁହେଁ", + "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePerson କୁ ଗୋଷ୍ଠୀ ସହିତ ପରିବର୍ତ୍ତନ କରିବା ସମ୍ଭବ ନୁହେଁ।", + "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "ଗୋଷ୍ଠୀକୁ ePerson ସହିତ ପରିବର୍ତ୍ତନ କରିବା ସମ୍ଭବ ନୁହେଁ।", + "resource-policies.form.eperson-group-list.modal.text2": "ବର୍ତ୍ତମାନର ସମ୍ବଳ ନୀତି ଡିଲିଟ୍ କରନ୍ତୁ ଏବଂ ନୂତନ ଏକ ଇଚ୍ଛିତ ପ୍ରକାର ସହିତ ସୃଷ୍ଟି କରନ୍ତୁ।", + "resource-policies.form.eperson-group-list.modal.close": "ଠିକ୍ ଅଛି", + "resource-policies.form.date.end.label": "ଶେଷ ତାରିଖ", + "resource-policies.form.date.start.label": "ଆରମ୍ଭ ତାରିଖ", + "resource-policies.form.description.label": "ବର୍ଣ୍ଣନା", + "resource-policies.form.name.label": "ନାମ", + "resource-policies.form.name.hint": "ସର୍ବାଧିକ 30 ଅକ୍ଷର", + "resource-policies.form.policy-type.label": "ନୀତି ପ୍ରକାର ଚୟନ କରନ୍ତୁ", + "resource-policies.form.policy-type.required": "ଆପଣଙ୍କୁ ସମ୍ବଳ ନୀତି ପ୍ରକାର ଚୟନ କରିବାକୁ ପଡିବ।", + "resource-policies.table.headers.action": "କାର୍ଯ୍ୟ", + "resource-policies.table.headers.date.end": "ଶେଷ ତାରିଖ", + "resource-policies.table.headers.date.start": "ଆରମ୍ଭ ତାରିଖ", + "resource-policies.table.headers.edit": "ସଂପାଦନ କରନ୍ତୁ", + "resource-policies.table.headers.edit.group": "ଗୋଷ୍ଠୀ ସଂପାଦନ କରନ୍ତୁ", + "resource-policies.table.headers.edit.policy": "ନୀତି ସଂପାଦନ କରନ୍ତୁ", + "resource-policies.table.headers.eperson": "ePerson", + "resource-policies.table.headers.group": "ଗୋଷ୍ଠୀ", + "resource-policies.table.headers.select-all": "ସମସ୍ତ ଚୟନ କରନ୍ତୁ", + "resource-policies.table.headers.deselect-all": "ସମସ୍ତ ଅଚୟନ କରନ୍ତୁ", + "resource-policies.table.headers.select": "ଚୟନ କରନ୍ତୁ", + "resource-policies.table.headers.deselect": "ଅଚୟନ କରନ୍ତୁ", + "resource-policies.table.headers.id": "ID", + "resource-policies.table.headers.name": "ନାମ", + "resource-policies.table.headers.policyType": "ପ୍ରକାର", + "resource-policies.table.headers.title.for.bitstream": "ବିଟଷ୍ଟ୍ରିମ୍ ପାଇଁ ନୀତିଗୁଡିକ", + "resource-policies.table.headers.title.for.bundle": "ବଣ୍ଡଲ୍ ପାଇଁ ନୀତିଗୁଡିକ", + "resource-policies.table.headers.title.for.item": "ଆଇଟମ୍ ପାଇଁ ନୀତିଗୁଡିକ", + "resource-policies.table.headers.title.for.community": "କମ୍ୟୁନିଟି ପାଇଁ ନୀତିଗୁଡିକ", + "resource-policies.table.headers.title.for.collection": "କଲେକ୍ସନ୍ ପାଇଁ ନୀତିଗୁଡିକ", + "root.skip-to-content": "ମୁଖ୍ୟ ବିଷୟବସ୍ତୁକୁ ଛାଡିଦିଅନ୍ତୁ", + "search.description": "", + "search.switch-configuration.title": "ଦେଖାନ୍ତୁ", + "search.title": "ଖୋଜନ୍ତୁ", + "search.breadcrumbs": "ଖୋଜନ୍ତୁ", + "search.search-form.placeholder": "ରେପୋଜିଟରୀ ଖୋଜନ୍ତୁ ...", + "search.filters.remove": "{{ type }} ପ୍ରକାରର ଫିଲ୍ଟର୍ କୁ ଅପସାରଣ କରନ୍ତୁ ଯାହାର ମୂଲ୍ୟ {{ value }}", + "search.filters.applied.f.title": "ଶୀର୍ଷକ", + "search.filters.applied.f.author": "ଲେଖକ", + "search.filters.applied.f.dateIssued.max": "ଶେଷ ତାରିଖ", + "search.filters.applied.f.dateIssued.min": "ଆରମ୍ଭ ତାରିଖ", + "search.filters.applied.f.dateSubmitted": "ଦାଖଲ ତାରିଖ", + "search.filters.applied.f.discoverable": "ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ", + "search.filters.applied.f.entityType": "ଆଇଟମ୍ ପ୍ରକାର", + "search.filters.applied.f.has_content_in_original_bundle": "ଫାଇଲ୍ ଅଛି", + "search.filters.applied.f.original_bundle_filenames": "ଫାଇଲ୍ ନାମ", + "search.filters.applied.f.original_bundle_descriptions": "ଫାଇଲ୍ ବର୍ଣ୍ଣନା", + "search.filters.applied.f.has_geospatial_metadata": "ଭୌଗଳିକ ସ୍ଥାନ ଅଛି", + "search.filters.applied.f.itemtype": "ପ୍ରକାର", + "search.filters.applied.f.namedresourcetype": "ସ୍ଥିତି", + "search.filters.applied.f.subject": "ବିଷୟ", + "search.filters.applied.f.submitter": "ଦାଖଲକାରୀ", + "search.filters.applied.f.jobTitle": "କାର୍ଯ୍ୟ ଶୀର୍ଷକ", + "search.filters.applied.f.birthDate.max": "ଜନ୍ମ ଶେଷ ତାରିଖ", + "search.filters.applied.f.birthDate.min": "ଜନ୍ମ ଆରମ୍ଭ ତାରିଖ", + "search.filters.applied.f.supervisedBy": "ପରିଚାଳିତ", + "search.filters.applied.f.withdrawn": "ପ୍ରତ୍ୟାହାର କରାଯାଇଛି", + "search.filters.applied.operator.equals": "", + "search.filters.applied.operator.notequals": " ସମାନ ନୁହେଁ", + "search.filters.applied.operator.authority": "", + "search.filters.applied.operator.notauthority": " ପ୍ରାଧିକରଣ ନୁହେଁ", + "search.filters.applied.operator.contains": " ଧାରଣ କରେ", + "search.filters.applied.operator.notcontains": " ଧାରଣ କରେ ନାହିଁ", + "search.filters.applied.operator.query": "", + "search.filters.applied.f.point": "ଦିଗବାରେଣି", + "search.filters.filter.title.head": "ଶୀର୍ଷକ", + "search.filters.filter.title.placeholder": "ଶୀର୍ଷକ", + "search.filters.filter.title.label": "ଶୀର୍ଷକ ଖୋଜନ୍ତୁ", + "search.filters.filter.author.head": "ଲେଖକ", + "search.filters.filter.author.placeholder": "ଲେଖକ ନାମ", + "search.filters.filter.author.label": "ଲେଖକ ନାମ ଖୋଜନ୍ତୁ", + "search.filters.filter.birthDate.head": "ଜନ୍ମ ତାରିଖ", + "search.filters.filter.birthDate.placeholder": "ଜନ୍ମ ତାରିଖ", + "search.filters.filter.birthDate.label": "ଜନ୍ମ ତାରିଖ ଖୋଜନ୍ତୁ", + "search.filters.filter.collapse": "ଫିଲ୍ଟର୍ ସଂକୋଚନ କରନ୍ତୁ", + "search.filters.filter.creativeDatePublished.head": "ପ୍ରକାଶନ ତାରିଖ", + "search.filters.filter.creativeDatePublished.placeholder": "ପ୍ରକାଶନ ତାରିଖ", + "search.filters.filter.creativeDatePublished.label": "ପ୍ରକାଶନ ତାରିଖ ଖୋଜନ୍ତୁ", + "search.filters.filter.creativeDatePublished.min.label": "ଆରମ୍ଭ", + "search.filters.filter.creativeDatePublished.max.label": "ଶେଷ", + "search.filters.filter.creativeWorkEditor.head": "ସମ୍ପାଦକ", + "search.filters.filter.creativeWorkEditor.placeholder": "ସମ୍ପାଦକ", + "search.filters.filter.creativeWorkEditor.label": "ସମ୍ପାଦକ ଖୋଜନ୍ତୁ", + "search.filters.filter.creativeWorkKeywords.head": "ବିଷୟ", + "search.filters.filter.creativeWorkKeywords.placeholder": "ବିଷୟ", + "search.filters.filter.creativeWorkKeywords.label": "ବିଷୟ ଖୋଜନ୍ତୁ", + "search.filters.filter.creativeWorkPublisher.head": "ପ୍ରକାଶକ", + "search.filters.filter.creativeWorkPublisher.placeholder": "ପ୍ରକାଶକ", + "search.filters.filter.creativeWorkPublisher.label": "ପ୍ରକାଶକ ଖୋଜନ୍ତୁ", + "search.filters.filter.dateIssued.head": "ତାରିଖ", + "search.filters.filter.dateIssued.max.placeholder": "ସର୍ବାଧିକ ତାରିଖ", + "search.filters.filter.dateIssued.max.label": "ଶେଷ", + "search.filters.filter.dateIssued.min.placeholder": "ସର୍ବନିମ୍ନ ତାରିଖ", + "search.filters.filter.dateIssued.min.label": "ଆରମ୍ଭ", + "search.filters.filter.dateSubmitted.head": "ଦାଖଲ ତାରିଖ", + "search.filters.filter.dateSubmitted.placeholder": "ଦାଖଲ ତାରିଖ", + "search.filters.filter.dateSubmitted.label": "ଦାଖଲ ତାରିଖ ଖୋଜନ୍ତୁ", + "search.filters.filter.discoverable.head": "ଅଣ-ଆବିଷ୍କାରଯୋଗ୍ୟ", + "search.filters.filter.withdrawn.head": "ପ୍ରତ୍ୟାହାର କରାଯାଇଛି", + "search.filters.filter.entityType.head": "ଆଇଟମ୍ ପ୍ରକାର", + "search.filters.filter.entityType.placeholder": "ଆଇଟମ୍ ପ୍ରକାର", + "search.filters.filter.entityType.label": "ଆଇଟମ୍ ପ୍ରକାର ଖୋଜନ୍ତୁ", + "search.filters.filter.expand": "ଫିଲ୍ଟର୍ ପ୍ରସାରିତ କରନ୍ତୁ", + "search.filters.filter.has_content_in_original_bundle.head": "ଫାଇଲ୍ ଅଛି", + "search.filters.filter.original_bundle_filenames.head": "ଫାଇଲ୍ ନାମ", + "search.filters.filter.has_geospatial_metadata.head": "ଭୌଗଳିକ ସ୍ଥାନ ଅଛି", + "search.filters.filter.original_bundle_filenames.placeholder": "ଫାଇଲ୍ ନାମ", + "search.filters.filter.original_bundle_filenames.label": "ଫାଇଲ୍ ନାମ ଖୋଜନ୍ତୁ", + "search.filters.filter.original_bundle_descriptions.head": "ଫାଇଲ୍ ବର୍ଣ୍ଣନା", + "search.filters.filter.original_bundle_descriptions.placeholder": "ଫାଇଲ୍ ବର୍ଣ୍ଣନା", + "search.filters.filter.original_bundle_descriptions.label": "ଫାଇଲ୍ ବର୍ଣ୍ଣନା ଖୋଜନ୍ତୁ", + "search.filters.filter.itemtype.head": "ପ୍ରକାର", + "search.filters.filter.itemtype.placeholder": "ପ୍ରକାର", + "search.filters.filter.itemtype.label": "ପ୍ରକାର ଖୋଜନ୍ତୁ", + "search.filters.filter.jobTitle.head": "କାର୍ଯ୍ୟ ଶୀର୍ଷକ", + "search.filters.filter.jobTitle.placeholder": "କାର୍ଯ୍ୟ ଶୀର୍ଷକ", + "search.filters.filter.jobTitle.label": "କାର୍ଯ୍ୟ ଶୀର୍ଷକ ଖୋଜନ୍ତୁ", + "search.filters.filter.knowsLanguage.head": "ଜଣାଶୁଣା ଭାଷା", + "search.filters.filter.knowsLanguage.placeholder": "ଜଣାଶୁଣା ଭାଷା", + "search.filters.filter.knowsLanguage.label": "ଜଣାଶୁଣା ଭାଷା ଖୋଜନ୍ତୁ", + "search.filters.filter.namedresourcetype.head": "ସ୍ଥିତି", + "search.filters.filter.namedresourcetype.placeholder": "ସ୍ଥିତି", + "search.filters.filter.namedresourcetype.label": "ସ୍ଥିତି ଖୋଜନ୍ତୁ", + "search.filters.filter.objectpeople.head": "ଲୋକ", + "search.filters.filter.objectpeople.placeholder": "ଲୋକ", + "search.filters.filter.objectpeople.label": "ଲୋକ ଖୋଜନ୍ତୁ", + "search.filters.filter.organizationAddressCountry.head": "ଦେଶ", + "search.filters.filter.organizationAddressCountry.placeholder": "ଦେଶ", + "search.filters.filter.organizationAddressCountry.label": "ଦେଶ ଖୋଜନ୍ତୁ", + "search.filters.filter.organizationAddressLocality.head": "ସହର", + "search.filters.filter.organizationAddressLocality.placeholder": "ସହର", + "search.filters.filter.organizationAddressLocality.label": "ସହର ଖୋଜନ୍ତୁ", + "search.filters.filter.organizationFoundingDate.head": "ପ୍ରତିଷ୍ଠା ତାରିଖ", + "search.filters.filter.organizationFoundingDate.placeholder": "ପ୍ରତିଷ୍ଠା ତାରିଖ", + "search.filters.filter.organizationFoundingDate.label": "ପ୍ରତିଷ୍ଠା ତାରିଖ ଖୋଜନ୍ତୁ", + "search.filters.filter.organizationFoundingDate.min.label": "ଆରମ୍ଭ", + "search.filters.filter.organizationFoundingDate.max.label": "ଶେଷ", + "search.filters.filter.scope.head": "ସ୍କୋପ୍", + "search.filters.filter.scope.placeholder": "ସ୍କୋପ୍ ଫିଲ୍ଟର୍", + "search.filters.filter.scope.label": "ସ୍କୋପ୍ ଫିଲ୍ଟର୍ ଖୋଜନ୍ତୁ", + "search.filters.filter.show-less": "ସଂକୋଚନ କରନ୍ତୁ", + "search.filters.filter.show-more": "ଅଧିକ ଦେଖାନ୍ତୁ", + "search.filters.filter.subject.head": "ବିଷୟ", + "search.filters.filter.subject.placeholder": "ବିଷୟ", + "search.filters.filter.subject.label": "ବିଷୟ ଖୋଜନ୍ତୁ", + "search.filters.filter.submitter.head": "ଦାଖଲକାରୀ", + "search.filters.filter.submitter.placeholder": "ଦାଖଲକାରୀ", + "search.filters.filter.submitter.label": "ଦାଖଲକାରୀ ଖୋଜନ୍ତୁ", + "search.filters.filter.show-tree": "{{ name }} ଟ୍ରି ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "search.filters.filter.funding.head": "ଫଣ୍ଡିଂ", + + "search.filters.filter.funding.placeholder": "ଫଣ୍ଡିଂ", + + "search.filters.filter.supervisedBy.head": "ପରିଚାଳନା କରୁଛନ୍ତି", + + "search.filters.filter.supervisedBy.placeholder": "ପରିଚାଳନା କରୁଛନ୍ତି", + + "search.filters.filter.supervisedBy.label": "ପରିଚାଳନା କରୁଥିବା ଖୋଜନ୍ତୁ", + + "search.filters.filter.access_status.head": "ପ୍ରବେଶ ପ୍ରକାର", + + "search.filters.filter.access_status.placeholder": "ପ୍ରବେଶ ପ୍ରକାର", + + "search.filters.filter.access_status.label": "ପ୍ରବେଶ ପ୍ରକାର ଦ୍ୱାରା ଖୋଜନ୍ତୁ", + + "search.filters.entityType.JournalIssue": "ଜର୍ଣ୍ଣାଲ ଇସୁ", + + "search.filters.entityType.JournalVolume": "ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", + + "search.filters.entityType.OrgUnit": "ସାଂଗଠନିକ ଏକକ", + + "search.filters.entityType.Person": "ବ୍ୟକ୍ତି", + + "search.filters.entityType.Project": "ପ୍ରୋଜେକ୍ଟ", + + "search.filters.entityType.Publication": "ପ୍ରକାଶନ", + + "search.filters.has_content_in_original_bundle.true": "ହଁ", + + "search.filters.has_content_in_original_bundle.false": "ନାହିଁ", + + "search.filters.has_geospatial_metadata.true": "ହଁ", + + "search.filters.has_geospatial_metadata.false": "ନାହିଁ", + + "search.filters.discoverable.true": "ନାହିଁ", + + "search.filters.discoverable.false": "ହଁ", + + "search.filters.namedresourcetype.Archived": "ଆର୍କାଇଭ୍ ହୋଇଛି", + + "search.filters.namedresourcetype.Validation": "ଯାଞ୍ଚ", + + "search.filters.namedresourcetype.Waiting for Controller": "ସମୀକ୍ଷକ ପାଇଁ ଅପେକ୍ଷା", + + "search.filters.namedresourcetype.Workflow": "ୱର୍କଫ୍ଲୋ", + + "search.filters.namedresourcetype.Workspace": "ୱର୍କସ୍ପେସ୍", + + "search.filters.withdrawn.true": "ହଁ", + + "search.filters.withdrawn.false": "ନାହିଁ", + + "search.filters.head": "ଫିଲ୍ଟରଗୁଡିକ", + + "search.filters.reset": "ଫିଲ୍ଟରଗୁଡିକ ପୁନଃସେଟ୍ କରନ୍ତୁ", + + "search.filters.search.submit": "ଦାଖଲ କରନ୍ତୁ", + + "search.filters.operator.equals.text": "ସମାନ", + + "search.filters.operator.notequals.text": "ସମାନ ନୁହେଁ", + + "search.filters.operator.authority.text": "ପ୍ରାଧିକରଣ", + + "search.filters.operator.notauthority.text": "ପ୍ରାଧିକରଣ ନୁହେଁ", + + "search.filters.operator.contains.text": "ଧାରଣ କରେ", + + "search.filters.operator.notcontains.text": "ଧାରଣ କରେ ନାହିଁ", + + "search.filters.operator.query.text": "କ୍ୟୁଏରି", + + "search.form.search": "ଖୋଜନ୍ତୁ", + + "search.form.search_dspace": "ସମସ୍ତ ରେପୋଜିଟୋରୀ", + + "search.form.scope.all": "ଡିଏସ୍ପେସ୍ ର ସମସ୍ତ", + + "search.results.head": "ଖୋଜା ଫଳାଫଳ", + + "search.results.no-results": "ଆପଣଙ୍କର ଖୋଜା କୌଣସି ଫଳାଫଳ ଫେରାଇ ନାହିଁ। ଆପଣ ଯାହା ଖୋଜୁଛନ୍ତି ତାହା ଖୋଜିବାରେ ସମସ୍ୟା ହେଉଛି କି? ଏହାକୁ", + + "search.results.no-results-link": "କୋଟେସନ୍ ମଧ୍ୟରେ ରଖି ଚେଷ୍ଟା କରନ୍ତୁ", + + "search.results.empty": "ଆପଣଙ୍କର ଖୋଜା କୌଣସି ଫଳାଫଳ ଫେରାଇ ନାହିଁ।", + + "search.results.geospatial-map.empty": "ଏହି ପୃଷ୍ଠାରେ କୌଣସି ଭୌଗୋଳିକ ସ୍ଥାନ ସହିତ ଫଳାଫଳ ନାହିଁ", + + "search.results.view-result": "ଦେଖନ୍ତୁ", + + "search.results.response.500": "କ୍ୟୁଏରି କାର୍ଯ୍ୟକାରୀ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି, ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ", + + "default.search.results.head": "ଖୋଜା ଫଳାଫଳ", + + "default-relationships.search.results.head": "ଖୋଜା ଫଳାଫଳ", + + "search.sidebar.close": "ଫଳାଫଳକୁ ଫେରନ୍ତୁ", + + "search.sidebar.filters.title": "ଫିଲ୍ଟରଗୁଡିକ", + + "search.sidebar.open": "ଖୋଜା ସାଧନଗୁଡିକ", + + "search.sidebar.results": "ଫଳାଫଳ", + + "search.sidebar.settings.rpp": "ପ୍ରତି ପୃଷ୍ଠାରେ ଫଳାଫଳ", + + "search.sidebar.settings.sort-by": "ଦ୍ୱାରା ସଜାନ୍ତୁ", + + "search.sidebar.advanced-search.title": "ଉନ୍ନତ ଖୋଜା", + + "search.sidebar.advanced-search.filter-by": "ଦ୍ୱାରା ଫିଲ୍ଟର୍ କରନ୍ତୁ", + + "search.sidebar.advanced-search.filters": "ଫିଲ୍ଟରଗୁଡିକ", + + "search.sidebar.advanced-search.operators": "ଅପରେଟରଗୁଡିକ", + + "search.sidebar.advanced-search.add": "ଯୋଡନ୍ତୁ", + + "search.sidebar.settings.title": "ସେଟିଂସ୍", + + "search.view-switch.show-detail": "ବିସ୍ତୃତ ଦେଖାନ୍ତୁ", + + "search.view-switch.show-grid": "ଗ୍ରିଡ୍ ଭାବରେ ଦେଖାନ୍ତୁ", + + "search.view-switch.show-list": "ତାଲିକା ଭାବରେ ଦେଖାନ୍ତୁ", + + "search.view-switch.show-geospatialMap": "ମାନଚିତ୍ର ଭାବରେ ଦେଖାନ୍ତୁ", + + "selectable-list-item-control.deselect": "ଆଇଟମ୍ ଅଚୟନ କରନ୍ତୁ", + + "selectable-list-item-control.select": "ଆଇଟମ୍ ଚୟନ କରନ୍ତୁ", + + "sorting.ASC": "ଆରୋହୀ", + + "sorting.DESC": "ଅବରୋହୀ", + + "sorting.dc.title.ASC": "ଆଖ୍ୟା ଆରୋହୀ", + + "sorting.dc.title.DESC": "ଆଖ୍ୟା ଅବରୋହୀ", + + "sorting.score.ASC": "ସମ୍ବନ୍ଧିତ ନୁହେଁ", + + "sorting.score.DESC": "ଅଧିକ ସମ୍ବନ୍ଧିତ", + + "sorting.dc.date.issued.ASC": "ଜାରି ତାରିଖ ଆରୋହୀ", + + "sorting.dc.date.issued.DESC": "ଜାରି ତାରିଖ ଅବରୋହୀ", + + "sorting.dc.date.accessioned.ASC": "ପ୍ରବେଶ ତାରିଖ ଆରୋହୀ", + + "sorting.dc.date.accessioned.DESC": "ପ୍ରବେଶ ତାରିଖ ଅବରୋହୀ", + + "sorting.lastModified.ASC": "ଶେଷ ପରିବର୍ତ୍ତନ ଆରୋହୀ", + + "sorting.lastModified.DESC": "ଶେଷ ପରିବର୍ତ୍ତନ ଅବରୋହୀ", + + "sorting.person.familyName.ASC": "ଉପନାମ ଆରୋହୀ", + + "sorting.person.familyName.DESC": "ଉପନାମ ଅବରୋହୀ", + + "sorting.person.givenName.ASC": "ନାମ ଆରୋହୀ", + + "sorting.person.givenName.DESC": "ନାମ ଅବରୋହୀ", + + "sorting.person.birthDate.ASC": "ଜନ୍ମ ତାରିଖ ଆରୋହୀ", + + "sorting.person.birthDate.DESC": "ଜନ୍ମ ତାରିଖ ଅବରୋହୀ", + + "statistics.title": "ପରିସଂଖ୍ୟାନ", + + "statistics.header": "{{ scope }} ପାଇଁ ପରିସଂଖ୍ୟାନ", + + "statistics.breadcrumbs": "ପରିସଂଖ୍ୟାନ", + + "statistics.page.no-data": "କୌଣସି ତଥ୍ୟ ଉପଲବ୍ଧ ନାହିଁ", + + "statistics.table.no-data": "କୌଣସି ତଥ୍ୟ ଉପଲବ୍ଧ ନାହିଁ", + + "statistics.table.title.TotalVisits": "ସମୁଦାୟ ପରିଦର୍ଶନ", + + "statistics.table.title.TotalVisitsPerMonth": "ପ୍ରତି ମାସରେ ସମୁଦାୟ ପରିଦର୍ଶନ", + + "statistics.table.title.TotalDownloads": "ଫାଇଲ୍ ପରିଦର୍ଶନ", + + "statistics.table.title.TopCountries": "ଶୀର୍ଷ ଦେଶ ଦୃଶ୍ୟ", + + "statistics.table.title.TopCities": "ଶୀର୍ଷ ସହର ଦୃଶ୍ୟ", + + "statistics.table.header.views": "ଦୃଶ୍ୟ", + + "statistics.table.no-name": "(ବସ୍ତୁର ନାମ ଲୋଡ୍ କରାଯାଇପାରିବ ନାହିଁ)", + + "submission.edit.breadcrumbs": "ସବମିସନ୍ ସଂପାଦନ କରନ୍ତୁ", + + "submission.edit.title": "ସବମିସନ୍ ସଂପାଦନ କରନ୍ତୁ", + + "submission.general.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "submission.general.cannot_submit": "ଆପଣଙ୍କର ଏକ ନୂତନ ସବମିସନ୍ କରିବାର ଅନୁମତି ନାହିଁ।", + + "submission.general.deposit": "ଡିପୋଜିଟ୍", + + "submission.general.discard.confirm.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "submission.general.discard.confirm.info": "ଏହି କାର୍ଯ୍ୟକୁ ପ୍ରତ୍ୟାବର୍ତ୍ତନ କରାଯାଇପାରିବ ନାହିଁ। ଆପଣ ନିଶ୍ଚିତ କି?", + + "submission.general.discard.confirm.submit": "ହଁ, ମୁଁ ନିଶ୍ଚିତ", + + "submission.general.discard.confirm.title": "ସବମିସନ୍ ପରିତ୍ୟାଗ କରନ୍ତୁ", + + "submission.general.discard.submit": "ପରିତ୍ୟାଗ କରନ୍ତୁ", + + "submission.general.back.submit": "ପଛକୁ", + + "submission.general.info.saved": "ସେଭ୍ ହୋଇଛି", + + "submission.general.info.pending-changes": "ଅସେଭ୍ ହୋଇଥିବା ପରିବର୍ତ୍ତନଗୁଡିକ", + + "submission.general.save": "ସେଭ୍ କରନ୍ତୁ", + + "submission.general.save-later": "ପରେ ପାଇଁ ସେଭ୍ କରନ୍ତୁ", + + "submission.import-external.page.title": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", + + "submission.import-external.title": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", + + "submission.import-external.title.Journal": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ଜର୍ଣ୍ଣାଲ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.import-external.title.JournalIssue": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ଜର୍ଣ୍ଣାଲ ଇସୁ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.import-external.title.JournalVolume": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.import-external.title.OrgUnit": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ପ୍ରକାଶକ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.import-external.title.Person": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ବ୍ୟକ୍ତି ଆମଦାନୀ କରନ୍ତୁ", + + "submission.import-external.title.Project": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ପ୍ରୋଜେକ୍ଟ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.import-external.title.Publication": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଏକ ପ୍ରକାଶନ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.import-external.title.none": "ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ମେଟାଡାଟା ଆମଦାନୀ କରନ୍ତୁ", + + "submission.import-external.page.hint": "DSpace ରେ ଆମଦାନୀ କରିବାକୁ ୱେବରୁ ଆଇଟମ୍ ଖୋଜିବା ପାଇଁ ଉପରେ ଏକ କ୍ୟୁଏରି ପ୍ରବେଶ କରନ୍ତୁ।", + + "submission.import-external.back-to-my-dspace": "ମୋର DSpace କୁ ଫେରନ୍ତୁ", + + "submission.import-external.search.placeholder": "ବାହ୍ୟ ସ୍ରୋତ ଖୋଜନ୍ତୁ", + + "submission.import-external.search.button": "ଖୋଜନ୍ତୁ", + + "submission.import-external.search.button.hint": "ଖୋଜିବା ପାଇଁ କିଛି ଶବ୍ଦ ଲେଖନ୍ତୁ", + + "submission.import-external.search.source.hint": "ଏକ ବାହ୍ୟ ସ୍ରୋତ ଚୟନ କରନ୍ତୁ", + + "submission.import-external.source.arxiv": "arXiv", + + "submission.import-external.source.ads": "NASA/ADS", + + "submission.import-external.source.cinii": "CiNii", + + "submission.import-external.source.crossref": "Crossref", + + "submission.import-external.source.datacite": "DataCite", + + "submission.import-external.source.dataciteProject": "DataCite", + + "submission.import-external.source.doi": "DOI", + + "submission.import-external.source.scielo": "SciELO", + + "submission.import-external.source.scopus": "Scopus", + + "submission.import-external.source.vufind": "VuFind", + + "submission.import-external.source.wos": "Web Of Science", + + "submission.import-external.source.orcidWorks": "ORCID", + + "submission.import-external.source.epo": "ୟୁରୋପୀୟ ପେଟେଣ୍ଟ ଅଫିସ୍ (EPO)", + + "submission.import-external.source.loading": "ଲୋଡ୍ ହେଉଛି ...", + + "submission.import-external.source.sherpaJournal": "SHERPA ଜର୍ଣ୍ଣାଲଗୁଡିକ", + + "submission.import-external.source.sherpaJournalIssn": "ISSN ଦ୍ୱାରା SHERPA ଜର୍ଣ୍ଣାଲଗୁଡିକ", + + "submission.import-external.source.sherpaPublisher": "SHERPA ପ୍ରକାଶକଗୁଡିକ", + + "submission.import-external.source.openaire": "OpenAIRE ଲେଖକଙ୍କ ଦ୍ୱାରା ଖୋଜନ୍ତୁ", + + "submission.import-external.source.openaireTitle": "OpenAIRE ଆଖ୍ୟା ଦ୍ୱାରା ଖୋଜନ୍ତୁ", + + "submission.import-external.source.openaireFunding": "OpenAIRE ଫଣ୍ଡର୍ ଦ୍ୱାରା ଖୋଜନ୍ତୁ", + + "submission.import-external.source.orcid": "ORCID", + + "submission.import-external.source.pubmed": "Pubmed", + + "submission.import-external.source.pubmedeu": "Pubmed Europe", + + "submission.import-external.source.lcname": "ଲାଇବ୍ରେରୀ ଅଫ୍ କଂଗ୍ରେସ୍ ନାମଗୁଡିକ", + + "submission.import-external.source.ror": "ଗବେଷଣା ସଂଗଠନ ରେଜିଷ୍ଟ୍ରି (ROR)", + + "submission.import-external.source.openalexPublication": "OpenAlex ଆଖ୍ୟା ଦ୍ୱାରା ଖୋଜନ୍ତୁ", + + "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex ଲେଖକ ID ଦ୍ୱାରା ଖୋଜନ୍ତୁ", + + "submission.import-external.source.openalexPublicationByDOI": "OpenAlex DOI ଦ୍ୱାରା ଖୋଜନ୍ତୁ", + + "submission.import-external.source.openalexPerson": "OpenAlex ନାମ ଦ୍ୱାରା ଖୋଜନ୍ତୁ", + + "submission.import-external.source.openalexJournal": "OpenAlex ଜର୍ଣ୍ଣାଲଗୁଡିକ", + + "submission.import-external.source.openalexInstitution": "OpenAlex ସଂସ୍ଥାଗୁଡିକ", + + "submission.import-external.source.openalexPublisher": "OpenAlex ପ୍ରକାଶକଗୁଡିକ", + + "submission.import-external.source.openalexFunder": "OpenAlex ଫଣ୍ଡରଗୁଡିକ", + + "submission.import-external.preview.title": "ଆଇଟମ୍ ପ୍ରିଭ୍ୟୁ", + + "submission.import-external.preview.title.Publication": "ପ୍ରକାଶନ ପ୍ରିଭ୍ୟୁ", + + "submission.import-external.preview.title.none": "ଆଇଟମ୍ ପ୍ରିଭ୍ୟୁ", + + "submission.import-external.preview.title.Journal": "ଜର୍ଣ୍ଣାଲ ପ୍ରିଭ୍ୟୁ", + + "submission.import-external.preview.title.OrgUnit": "ସାଂଗଠନିକ ଏକକ ପ୍ରିଭ୍ୟୁ", + + "submission.import-external.preview.title.Person": "ବ୍ୟକ୍ତି ପ୍ରିଭ୍ୟୁ", + + "submission.import-external.preview.title.Project": "ପ୍ରୋଜେକ୍ଟ ପ୍ରିଭ୍ୟୁ", + + "submission.import-external.preview.subtitle": "ନିମ୍ନରେ ଥିବା ମେଟାଡାଟା ଏକ ବାହ୍ୟ ସ୍ରୋତରୁ ଆମଦାନୀ କରାଯାଇଥିଲା। ଆପଣ ସବମିସନ୍ ଆରମ୍ଭ କରିବା ସମୟରେ ଏହା ପୂର୍ବ-ପୂରଣ ହୋଇଥିବ।", + + "submission.import-external.preview.button.import": "ସବମିସନ୍ ଆରମ୍ଭ କରନ୍ତୁ", + + "submission.import-external.preview.error.import.title": "ସବମିସନ୍ ତ୍ରୁଟି", + + "submission.import-external.preview.error.import.body": "ବାହ୍ୟ ସ୍ରୋତ ଆମଦାନୀ ପ୍ରକ୍ରିୟାରେ ଏକ ତ୍ରୁଟି ଘଟିଛି।", + + "submission.sections.describe.relationship-lookup.close": "ବନ୍ଦ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.added": "ଚୟନକୁ ସ୍ଥାନୀୟ ପ୍ରବେଶ ସଫଳତାର ସହିତ ଯୋଡା ଯାଇଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "ଦୂରସ୍ଥ ଲେଖକ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଇସୁ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "ପ୍ରୋଜେକ୍ଟ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "ଦୂରସ୍ଥ ଆଇଟମ୍ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "ଦୂରସ୍ଥ ଇଭେଣ୍ଟ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "ଦୂରସ୍ଥ ଉତ୍ପାଦ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "ଦୂରସ୍ଥ ଉପକରଣ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "ଦୂରସ୍ଥ ସାଂଗଠନିକ ଏକକ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "ଦୂରସ୍ଥ ଫଣ୍ଡ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "ଦୂରସ୍ଥ ବ୍ୟକ୍ତି ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "ଦୂରସ୍ଥ ପେଟେଣ୍ଟ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "ଦୂରସ୍ଥ ପ୍ରୋଜେକ୍ଟ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "ଦୂରସ୍ଥ ପ୍ରକାଶନ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "ନୂତନ ଏଣ୍ଟିଟି ଯୋଡା ଯାଇଛି!", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "ପ୍ରୋଜେକ୍ଟ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "ଦୂରସ୍ଥ ଲେଖକ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "ସ୍ଥାନୀୟ ଲେଖକକୁ ଚୟନକୁ ସଫଳତାର ସହିତ ଯୋଡା ଯାଇଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "ବାହ୍ୟ ଲେଖକକୁ ସଫଳତାର ସହିତ ଆମଦାନୀ ଏବଂ ଚୟନକୁ ଯୋଡା ଯାଇଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "ପ୍ରାଧିକରଣ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "ଏକ ନୂତନ ସ୍ଥାନୀୟ ପ୍ରାଧିକରଣ ପ୍ରବେଶ ଭାବରେ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "ନୂତନ ପ୍ରବେଶଗୁଡିକ ଆମଦାନୀ କରିବାକୁ ଏକ ସଂଗ୍ରହ ଚୟନ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "ଏଣ୍ଟିଟିଗୁଡିକ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "ଏକ ନୂତନ ସ୍ଥାନୀୟ ଏଣ୍ଟିଟି ଭାବରେ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC ନାମରୁ ଆମଦାନୀ କରୁଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID ରୁ ଆମଦାନୀ କରୁଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE ରୁ ଆମଦାନୀ କରୁଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE ରୁ ଆମଦାନୀ କରୁଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE ରୁ ଆମଦାନୀ କରୁଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa ଜର୍ଣ୍ଣାଲରୁ ଆମଦାନୀ କରୁଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa ପ୍ରକାଶକରୁ ଆମଦାନୀ କରୁଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed ରୁ ଆମଦାନୀ କରୁଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv ରୁ ଆମଦାନୀ କରୁଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR ରୁ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "ଚୟନକୁ ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ସଫଳତାର ସହିତ ଯୋଗ କରାଯାଇଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "ବାହ୍ୟ ଜର୍ଣ୍ଣାଲ ସଫଳତାର ସହିତ ଆମଦାନୀ ଏବଂ ଚୟନକୁ ଯୋଗ କରାଯାଇଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "ଚୟନକୁ ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ ସଫଳତାର ସହିତ ଯୋଗ କରାଯାଇଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "ବାହ୍ୟ ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ ସଫଳତାର ସହିତ ଆମଦାନୀ ଏବଂ ଚୟନକୁ ଯୋଗ କରାଯାଇଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "ଦୂରସ୍ଥ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "ଚୟନକୁ ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ସଫଳତାର ସହିତ ଯୋଗ କରାଯାଇଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "ବାହ୍ୟ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ସଫଳତାର ସହିତ ଆମଦାନୀ ଏବଂ ଚୟନକୁ ଯୋଗ କରାଯାଇଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "ଏକ ସ୍ଥାନୀୟ ମେଳ ଚୟନ କରନ୍ତୁ:", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "ଦୂରସ୍ଥ ସଂଗଠନ ଆମଦାନୀ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "ଚୟନକୁ ସ୍ଥାନୀୟ ସଂଗଠନ ସଫଳତାର ସହିତ ଯୋଗ କରାଯାଇଛି", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "ବାହ୍ୟ ସଂଗଠନ ସଫଳତାର ସହିତ ଆମଦାନୀ ଏବଂ ଚୟନକୁ ଯୋଗ କରାଯାଇଛି", + + "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "ସମସ୍ତ ଚୟନ ଅଣଚୟନ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "ପୃଷ୍ଠା ଅଣଚୟନ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.search-tab.loading": "ଲୋଡ୍ ହେଉଛି...", + + "submission.sections.describe.relationship-lookup.search-tab.placeholder": "ସନ୍ଧାନ ପ୍ରଶ୍ନ", + + "submission.sections.describe.relationship-lookup.search-tab.search": "ଯାଆନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "ସନ୍ଧାନ କରନ୍ତୁ...", + + "submission.sections.describe.relationship-lookup.search-tab.select-all": "ସମସ୍ତ ଚୟନ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.search-tab.select-page": "ପୃଷ୍ଠା ଚୟନ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.selected": "{{ size }} ଆଇଟମ୍ ଚୟନ କରାଯାଇଛି", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "ସ୍ଥାନୀୟ ଲେଖକ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "ସ୍ଥାନୀୟ ପ୍ରୋଜେକ୍ଟ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "ସ୍ଥାନୀୟ ପ୍ରକାଶନ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "ସ୍ଥାନୀୟ ଲେଖକ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "ସ୍ଥାନୀୟ ସାଂଗଠନିକ ୟୁନିଟ୍ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "ସ୍ଥାନୀୟ ଡାଟା ପ୍ୟାକେଜ୍ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "ସ୍ଥାନୀୟ ଡାଟା ଫାଇଲ୍ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "ସ୍ଥାନୀୟ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "ଶେରପା ଜର୍ଣ୍ଣାଲ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "ଶେରପା ପ୍ରକାଶକ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC ନାମ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "ପବମେଡ୍ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "କ୍ରସ୍ରେଫ୍ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "ସ୍କୋପସ୍ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "ଲେଖକ ଦ୍ୱାରା ଓପେନଏଆଇଆରଇ ସନ୍ଧାନ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "ଶୀର୍ଷକ ଦ୍ୱାରା ଓପେନଏଆଇଆରଇ ସନ୍ଧାନ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "ଫଣ୍ଡର୍ ଦ୍ୱାରା ଓପେନଏଆଇଆରଇ ସନ୍ଧାନ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN ଦ୍ୱାରା ଶେରପା ଜର୍ଣ୍ଣାଲ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "ଓପେନଆଲେକ୍ସ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "ଅନୁଷ୍ଠାନ ଦ୍ୱାରା ଓପେନଆଲେକ୍ସ ସନ୍ଧାନ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "ପ୍ରକାଶକ ଦ୍ୱାରା ଓପେନଆଲେକ୍ସ ସନ୍ଧାନ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "ଫଣ୍ଡର୍ ଦ୍ୱାରା ଓପେନଆଲେକ୍ସ ସନ୍ଧାନ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "ପ୍ରୋଜେକ୍ଟ ଦ୍ୱାରା ଡାଟାସାଇଟ୍ ସନ୍ଧାନ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "ଫଣ୍ଡିଂ ଏଜେନ୍ସି ଖୋଜନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "ଫଣ୍ଡିଂ ଖୋଜନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "ସାଂଗଠନିକ ୟୁନିଟ୍ ଖୋଜନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "ପ୍ରୋଜେକ୍ଟ", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "ପ୍ରୋଜେକ୍ଟର ଫଣ୍ଡର୍", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "ଲେଖକର ପ୍ରକାଶନ", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "ପ୍ରୋଜେକ୍ଟର ଅର୍ଗଏକକ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "ପ୍ରୋଜେକ୍ଟ", + + "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "ପ୍ରୋଜେକ୍ଟ", + + "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "ପ୍ରୋଜେକ୍ଟର ଫଣ୍ଡର୍", + + "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "ପ୍ରୋଜେକ୍ଟର ବ୍ୟକ୍ତି", + + "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "ସନ୍ଧାନ କରନ୍ତୁ...", + + "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "ବର୍ତ୍ତମାନର ଚୟନ ({{ count }})", + + "submission.sections.describe.relationship-lookup.title.Journal": "ଜର୍ଣ୍ଣାଲ", + + "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ", + + "submission.sections.describe.relationship-lookup.title.JournalIssue": "ଜର୍ଣ୍ଣାଲ ଇସ୍ୟୁ", + + "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", + + "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", + + "submission.sections.describe.relationship-lookup.title.JournalVolume": "ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", + + "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "ଜର୍ଣ୍ଣାଲ", + + "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "ଲେଖକ", + + "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "ଫଣ୍ଡିଂ ଏଜେନ୍ସି", + + "submission.sections.describe.relationship-lookup.title.Project": "ପ୍ରୋଜେକ୍ଟ", + + "submission.sections.describe.relationship-lookup.title.Publication": "ପ୍ରକାଶନ", + + "submission.sections.describe.relationship-lookup.title.Person": "ଲେଖକ", + + "submission.sections.describe.relationship-lookup.title.OrgUnit": "ସାଂଗଠନିକ ୟୁନିଟ୍", + + "submission.sections.describe.relationship-lookup.title.DataPackage": "ଡାଟା ପ୍ୟାକେଜ୍", + + "submission.sections.describe.relationship-lookup.title.DataFile": "ଡାଟା ଫାଇଲ୍", + + "submission.sections.describe.relationship-lookup.title.Funding Agency": "ଫଣ୍ଡିଂ ଏଜେନ୍ସି", + + "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "ଫଣ୍ଡିଂ", + + "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "ପିତୃ ସାଂଗଠନିକ ୟୁନିଟ୍", + + "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "ପ୍ରକାଶନ", + + "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "ଅର୍ଗଏକକ", + + "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ଡ୍ରପଡାଉନ୍ ଟୋଗଲ୍ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.selection-tab.settings": "ସେଟିଂସ୍", + + "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "ଆପଣଙ୍କର ଚୟନ ବର୍ତ୍ତମାନ ଖାଲି ଅଛି।", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "ଚୟନିତ ଲେଖକ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "ଚୟନିତ ଜର୍ଣ୍ଣାଲ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "ଚୟନିତ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "ଚୟନିତ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "ଚୟନିତ ପ୍ରୋଜେକ୍ଟ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "ଚୟନିତ ପ୍ରକାଶନ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "ଚୟନିତ ଲେଖକ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "ଚୟନିତ ସାଂଗଠନିକ ୟୁନିଟ୍", + + "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "ଚୟନିତ ଡାଟା ପ୍ୟାକେଜ୍", + + "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "ଚୟନିତ ଡାଟା ଫାଇଲ୍", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "ଚୟନିତ ଜର୍ଣ୍ଣାଲ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "ଚୟନିତ ଇସ୍ୟୁ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "ଚୟନିତ ଜର୍ଣ୍ଣାଲ ଭଲ୍ୟୁମ୍", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "ଚୟନିତ ଫଣ୍ଡିଂ ଏଜେନ୍ସି", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "ଚୟନିତ ଫଣ୍ଡିଂ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "ଚୟନିତ ଇସ୍ୟୁ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "ଚୟନିତ ସାଂଗଠନିକ ୟୁନିଟ୍", + + "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.selection-tab.title": "ସନ୍ଧାନ ଫଳାଫଳ", + + "submission.sections.describe.relationship-lookup.name-variant.notification.content": "ଆପଣ ଏହି ବ୍ୟକ୍ତିଙ୍କ ପାଇଁ \"{{ value }}\" ଏକ ନାମ ଭାରିଏଣ୍ଟ୍ ଭାବରେ ସଞ୍ଚୟ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ଯାହା ଆପଣ ଏବଂ ଅନ୍ୟମାନେ ଭବିଷ୍ୟତରେ ଦାଖଲା ପାଇଁ ପୁନର୍ବାର ବ୍ୟବହାର କରିପାରିବେ? ଯଦି ଆପଣ ନକଲି ତେବେ ଆପଣ ଏହି ଦାଖଲା ପାଇଁ ଏହାକୁ ବ୍ୟବହାର କରିପାରିବେ।", + + "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "ଏକ ନୂତନ ନାମ ଭାରିଏଣ୍ଟ୍ ସଞ୍ଚୟ କରନ୍ତୁ", + + "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "କେବଳ ଏହି ଦାଖଲା ପାଇଁ ବ୍ୟବହାର କରନ୍ତୁ", + + "submission.sections.ccLicense.type": "ଲାଇସେନ୍ସ ପ୍ରକାର", + + "submission.sections.ccLicense.select": "ଏକ ଲାଇସେନ୍ସ ପ୍ରକାର ଚୟନ କରନ୍ତୁ…", + + "submission.sections.ccLicense.change": "ଆପଣଙ୍କର ଲାଇସେନ୍ସ ପ୍ରକାର ପରିବର୍ତ୍ତନ କରନ୍ତୁ…", + + "submission.sections.ccLicense.none": "କୌଣସି ଲାଇସେନ୍ସ ଉପଲବ୍ଧ ନାହିଁ", + + "submission.sections.ccLicense.option.select": "ଏକ ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ…", + + "submission.sections.ccLicense.link": "ଆପଣ ନିମ୍ନଲିଖିତ ଲାଇସେନ୍ସ ଚୟନ କରିଛନ୍ତି:", + + "submission.sections.ccLicense.confirmation": "ମୁଁ ଉପରୋକ୍ତ ଲାଇସେନ୍ସ ପ୍ରଦାନ କରେ", + + "submission.sections.general.add-more": "ଅଧିକ ଯୋଡନ୍ତୁ", + + "submission.sections.general.cannot_deposit": "ଫର୍ମରେ ତ୍ରୁଟି ଥିବାରୁ ଡିପୋଜିଟ୍ ସମ୍ପୂର୍ଣ୍ଣ କରାଯାଇପାରିବ ନାହିଁ।
ଦୟାକରି ସମସ୍ତ ଆବଶ୍ୟକ କ୍ଷେତ୍ର ପୂରଣ କରି ଡିପୋଜିଟ୍ ସମ୍ପୂର୍ଣ୍ଣ କରନ୍ତୁ।", + + "submission.sections.general.collection": "ସଂଗ୍ରହ", + + "submission.sections.general.deposit_error_notice": "ଆଇଟମ୍ ଦାଖଲ କରିବା ସମୟରେ ଏକ ସମସ୍ୟା ଘଟିଥିଲା, ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ।", + + "submission.sections.general.deposit_success_notice": "ଦାଖଲା ସଫଳତାର ସହିତ ଡିପୋଜିଟ୍ ହୋଇଛି।", + + "submission.sections.general.discard_error_notice": "ଆଇଟମ୍ ପରିତ୍ୟାଗ କରିବା ସମୟରେ ଏକ ସମସ୍ୟା ଘଟିଥିଲା, ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ।", + + "submission.sections.general.discard_success_notice": "ଦାଖଲା ସଫଳତାର ସହିତ ପରିତ୍ୟାଗ ହୋଇଛି।", + + "submission.sections.general.metadata-extracted": "ନୂତନ ମେଟାଡାଟା ବାହାର କରାଯାଇଛି ଏବଂ {{sectionId}} ବିଭାଗରେ ଯୋଡା ଯାଇଛି।", + + "submission.sections.general.metadata-extracted-new-section": "ନୂତନ {{sectionId}} ବିଭାଗ ଦାଖଲାରେ ଯୋଡା ଯାଇଛି।", + + "submission.sections.general.no-collection": "କୌଣସି ସଂଗ୍ରହ ମିଳିଲା ନାହିଁ", + + "submission.sections.general.no-entity": "କୌଣସି ଏଣ୍ଟିଟି ପ୍ରକାର ମିଳିଲା ନାହିଁ", + + "submission.sections.general.no-sections": "କୌଣସି ବିକଳ୍ପ ଉପଲବ୍ଧ ନାହିଁ", + + "submission.sections.general.save_error_notice": "ଆଇଟମ୍ ସଞ୍ଚୟ କରିବା ସମୟରେ ଏକ ସମସ୍ୟା ଘଟିଥିଲା, ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ।", + + "submission.sections.general.save_success_notice": "ଦାଖଲା ସଫଳତାର ସହିତ ସଞ୍ଚୟ ହୋଇଛି।", + + "submission.sections.general.search-collection": "ଏକ ସଂଗ୍ରହ ଖୋଜନ୍ତୁ", + + "submission.sections.general.sections_not_valid": "ଅସମ୍ପୂର୍ଣ୍ଣ ବିଭାଗ ଅଛି।", + + "submission.sections.identifiers.info": "ଆପଣଙ୍କ ଆଇଟମ୍ ପାଇଁ ନିମ୍ନଲିଖିତ ଆଇଡେଣ୍ଟିଫାୟର୍ ସୃଷ୍ଟି ହେବ:", + + "submission.sections.identifiers.no_handle": "ଏହି ଆଇଟମ୍ ପାଇଁ କୌଣସି ହ୍ୟାଣ୍ଡଲ୍ ମିଣ୍ଟ ହୋଇନାହିଁ।", + + "submission.sections.identifiers.no_doi": "ଏହି ଆଇଟମ୍ ପାଇଁ କୌଣସି DOI ମିଣ୍ଟ ହୋଇନାହିଁ।", + + "submission.sections.identifiers.handle_label": "ହ୍ୟାଣ୍ଡଲ୍: ", + + "submission.sections.identifiers.doi_label": "DOI: ", + + "submission.sections.identifiers.otherIdentifiers_label": "ଅନ୍ୟ ଆଇଡେଣ୍ଟିଫାୟର୍: ", + + "submission.sections.submit.progressbar.accessCondition": "ଆଇଟମ୍ ପ୍ରବେଶ ଶର୍ତ୍ତ", + + "submission.sections.submit.progressbar.CClicense": "କ୍ରିଏଟିଭ୍ କମନ୍ସ ଲାଇସେନ୍ସ", + + "submission.sections.submit.progressbar.describe.recycle": "ରିସାଇକଲ୍", + + "submission.sections.submit.progressbar.describe.stepcustom": "ବର୍ଣ୍ଣନା କରନ୍ତୁ", + + "submission.sections.submit.progressbar.describe.stepone": "ବର୍ଣ୍ଣନା କରନ୍ତୁ", + + "submission.sections.submit.progressbar.describe.steptwo": "ବର୍ଣ୍ଣନା କରନ୍ତୁ", + + "submission.sections.submit.progressbar.duplicates": "ସମ୍ଭାବ୍ୟ ଡୁପ୍ଲିକେଟ୍", + + "submission.sections.submit.progressbar.identifiers": "ଆଇଡେଣ୍ଟିଫାୟର୍", + + "submission.sections.submit.progressbar.license": "ଡିପୋଜିଟ୍ ଲାଇସେନ୍ସ", + + "submission.sections.submit.progressbar.sherpapolicy": "ଶେରପା ନୀତି", + + "submission.sections.submit.progressbar.upload": "ଫାଇଲ୍ ଅପଲୋଡ୍ କରନ୍ତୁ", + + "submission.sections.submit.progressbar.sherpaPolicies": "ପ୍ରକାଶକ ଖୋଲା ପ୍ରବେଶ ନୀତି ସୂଚନା", + + "submission.sections.sherpa-policy.title-empty": "କୌଣସି ପ୍ରକାଶକ ନୀତି ସୂଚନା ଉପଲବ୍ଧ ନାହିଁ। ଯଦି ଆପଣଙ୍କ କାର୍ଯ୍ୟରେ ଏକ ସମ୍ବନ୍ଧିତ ISSN ଅଛି, ଦୟାକରି ଉପରେ ଏହାକୁ ପ୍ରବେଶ କରନ୍ତୁ ଯେପରିକି ସମ୍ବନ୍ଧିତ ପ୍ରକାଶକ ଖୋଲା ପ୍ରବେଶ ନୀତିଗୁଡିକ ଦେଖାଯାଇପାରିବ।", + + "submission.sections.status.errors.title": "ତ୍ରୁଟିଗୁଡିକ", + + "submission.sections.status.valid.title": "ବ valid ଧ", + + "submission.sections.status.warnings.title": "ଚେତାବନୀ", + + "submission.sections.status.errors.aria": "ତ୍ରୁଟି ଅଛି", + + "submission.sections.status.valid.aria": "ବ valid ଧ", + + "submission.sections.status.warnings.aria": "ଚେତାବନୀ ଅଛି", + + "submission.sections.status.info.title": "ଅତିରିକ୍ତ ସୂଚନା", + + "submission.sections.status.info.aria": "ଅତିରିକ୍ତ ସୂଚନା", + + "submission.sections.toggle.open": "ବିଭାଗ ଖୋଲନ୍ତୁ", + + "submission.sections.toggle.close": "ବିଭାଗ ବନ୍ଦ କରନ୍ତୁ", + + "submission.sections.toggle.aria.open": "{{sectionHeader}} ବିଭାଗ ବିସ୍ତାର କରନ୍ତୁ", + + "submission.sections.toggle.aria.close": "{{sectionHeader}} ବିଭାଗ ସଂକୋଚନ କରନ୍ତୁ", + + "submission.sections.upload.primary.make": "{{fileName}} କୁ ପ୍ରାଥମିକ ବିଟଷ୍ଟ୍ରିମ୍ କରନ୍ତୁ", + + "submission.sections.upload.primary.remove": "{{fileName}} କୁ ପ୍ରାଥମିକ ବିଟଷ୍ଟ୍ରିମ୍ ଭାବରେ ଅପସାରଣ କରନ୍ତୁ", + + "submission.sections.upload.delete.confirm.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "submission.sections.upload.delete.confirm.info": "ଏହି କାର୍ଯ୍ୟକୁ ପ୍ରତ୍ୟାବର୍ତ୍ତନ କରାଯାଇପାରିବ ନାହିଁ। ଆପଣ ନିଶ୍ଚିତ କି?", + + "submission.sections.upload.delete.confirm.submit": "ହଁ, ମୁଁ ନିଶ୍ଚିତ", + + "submission.sections.upload.delete.confirm.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଡିଲିଟ୍ କରନ୍ତୁ", + + "submission.sections.upload.delete.submit": "ଡିଲିଟ୍ କରନ୍ତୁ", + + "submission.sections.upload.download.title": "ବିଟଷ୍ଟ୍ରିମ୍ ଡାଉନଲୋଡ୍ କରନ୍ତୁ", + + "submission.sections.upload.drop-message": "ଆଇଟମ୍ ସହିତ ସେଗୁଡିକୁ ଜୋଡିବା ପାଇଁ ଫାଇଲ୍ ଡ୍ରପ୍ କରନ୍ତୁ", + + "submission.sections.upload.edit.title": "ବିଟଷ୍ଟ୍ରିମ୍ ସଂପାଦନ କରନ୍ତୁ", + + "submission.sections.upload.form.access-condition-label": "ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରକାର", + + "submission.sections.upload.form.access-condition-hint": "ଆଇଟମ୍ ଡିପୋଜିଟ୍ ହେବା ପରେ ବିଟଷ୍ଟ୍ରିମ୍ ଉପରେ ପ୍ରୟୋଗ କରିବାକୁ ଏକ ପ୍ରବେଶ ସର୍ତ୍ତ ଚୟନ କରନ୍ତୁ", + + "submission.sections.upload.form.date-required": "ତାରିଖ ଆବଶ୍ୟକ।", + + "submission.sections.upload.form.date-required-from": "ପ୍ରବେଶ ତାରିଖରୁ ଆବଶ୍ୟକ।", + + "submission.sections.upload.form.date-required-until": "ପ୍ରବେଶ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ଆବଶ୍ୟକ।", + + "submission.sections.upload.form.from-label": "ଠାରୁ ପ୍ରବେଶ ଦିଅନ୍ତୁ", + + "submission.sections.upload.form.from-hint": "ଯେଉଁ ତାରିଖରୁ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରୟୋଗ କରାଯାଇଛି ସେହି ତାରିଖ ଚୟନ କରନ୍ତୁ", + + "submission.sections.upload.form.from-placeholder": "ଠାରୁ", + + "submission.sections.upload.form.group-label": "ଗୋଷ୍ଠୀ", + + "submission.sections.upload.form.group-required": "ଗୋଷ୍ଠୀ ଆବଶ୍ୟକ।", + + "submission.sections.upload.form.until-label": "ପର୍ଯ୍ୟନ୍ତ ପ୍ରବେଶ ଦିଅନ୍ତୁ", + + "submission.sections.upload.form.until-hint": "ଯେଉଁ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରୟୋଗ କରାଯାଇଛି ସେହି ତାରିଖ ଚୟନ କରନ୍ତୁ", + + "submission.sections.upload.form.until-placeholder": "ପର୍ଯ୍ୟନ୍ତ", + + "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} ସଂଗ୍ରହରେ ଅପଲୋଡ୍ କରାଯାଇଥିବା ଫାଇଲ୍ ନିମ୍ନଲିଖିତ ଗୋଷ୍ଠୀ(ଗୁଡିକ) ଅନୁଯାୟୀ ପ୍ରବେଶଯୋଗ୍ୟ ହେବ:", + + "submission.sections.upload.header.policy.default.withlist": "ଦୟାକରି ଧ୍ୟାନ ଦିଅନ୍ତୁ ଯେ {{collectionName}} ସଂଗ୍ରହରେ ଅପଲୋଡ୍ କରାଯାଇଥିବା ଫାଇଲ୍, ଏକକ ଫାଇଲ୍ ପାଇଁ ସ୍ପଷ୍ଟ ଭାବରେ ନିଷ୍ପତ୍ତି ନିଆଯାଇଥିବା ବ୍ୟତିତ, ନିମ୍ନଲିଖିତ ଗୋଷ୍ଠୀ(ଗୁଡିକ) ସହିତ ପ୍ରବେଶଯୋଗ୍ୟ ହେବ:", + + "submission.sections.upload.info": "ଏଠାରେ ଆପଣ ବର୍ତ୍ତମାନ ଆଇଟମ୍ ରେ ଥିବା ସମସ୍ତ ଫାଇଲ୍ ପାଇବେ। ଆପଣ ଫାଇଲ୍ ମେଟାଡାଟା ଏବଂ ପ୍ରବେଶ ସର୍ତ୍ତ ଅଦ୍ୟତନ କରିପାରିବେ କିମ୍ବା ପୃଷ୍ଠାରେ ଯେକୌଣସି ସ୍ଥାନରେ ସେଗୁଡିକୁ ଟାଣି ଛାଡିବା ଦ୍ୱାରା ଅତିରିକ୍ତ ଫାଇଲ୍ ଅପଲୋଡ୍ କରିପାରିବେ।", + + "submission.sections.upload.no-entry": "ନା", + + "submission.sections.upload.no-file-uploaded": "ଏପର୍ଯ୍ୟନ୍ତ କୌଣସି ଫାଇଲ୍ ଅପଲୋଡ୍ ହୋଇନାହିଁ।", + + "submission.sections.upload.save-metadata": "ମେଟାଡାଟା ସେଭ୍ କରନ୍ତୁ", + + "submission.sections.upload.undo": "ବାତିଲ୍ କରନ୍ତୁ", + + "submission.sections.upload.upload-failed": "ଅପଲୋଡ୍ ବିଫଳ ହେଲା", + + "submission.sections.upload.upload-successful": "ଅପଲୋଡ୍ ସଫଳ ହେଲା", + + "submission.sections.accesses.form.discoverable-description": "ଚେକ୍ କରାଯାଇଥିବା ବେଳେ, ଏହି ଆଇଟମ୍ ଖୋଜା/ବ୍ରାଉଜ୍ ରେ ଦେଖାଯିବ। ଅଚେକ୍ କରାଯାଇଥିବା ବେଳେ, ଆଇଟମ୍ କେବଳ ଏକ ସିଧାସଳଖ ଲିଙ୍କ୍ ମାଧ୍ୟମରେ ଉପଲବ୍ଧ ହେବ ଏବଂ ଖୋଜା/ବ୍ରାଉଜ୍ ରେ କଦାପି ଦେଖାଯିବ ନାହିଁ।", + + "submission.sections.accesses.form.discoverable-label": "ଆବିଷ୍କାରଯୋଗ୍ୟ", + + "submission.sections.accesses.form.access-condition-label": "ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରକାର", + + "submission.sections.accesses.form.access-condition-hint": "ଆଇଟମ୍ ଡିପୋଜିଟ୍ ହେବା ପରେ ଏହା ଉପରେ ପ୍ରୟୋଗ କରିବାକୁ ଏକ ପ୍ରବେଶ ସର୍ତ୍ତ ଚୟନ କରନ୍ତୁ", + + "submission.sections.accesses.form.date-required": "ତାରିଖ ଆବଶ୍ୟକ।", + + "submission.sections.accesses.form.date-required-from": "ପ୍ରବେଶ ତାରିଖରୁ ଆବଶ୍ୟକ।", + + "submission.sections.accesses.form.date-required-until": "ପ୍ରବେଶ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ଆବଶ୍ୟକ।", + + "submission.sections.accesses.form.from-label": "ଠାରୁ ପ୍ରବେଶ ଦିଅନ୍ତୁ", + + "submission.sections.accesses.form.from-hint": "ଯେଉଁ ତାରିଖରୁ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରୟୋଗ କରାଯାଇଛି ସେହି ତାରିଖ ଚୟନ କରନ୍ତୁ", + + "submission.sections.accesses.form.from-placeholder": "ଠାରୁ", + + "submission.sections.accesses.form.group-label": "ଗୋଷ୍ଠୀ", + + "submission.sections.accesses.form.group-required": "ଗୋଷ୍ଠୀ ଆବଶ୍ୟକ।", + + "submission.sections.accesses.form.until-label": "ପର୍ଯ୍ୟନ୍ତ ପ୍ରବେଶ ଦିଅନ୍ତୁ", + + "submission.sections.accesses.form.until-hint": "ଯେଉଁ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ସର୍ତ୍ତ ପ୍ରୟୋଗ କରାଯାଇଛି ସେହି ତାରିଖ ଚୟନ କରନ୍ତୁ", + + "submission.sections.accesses.form.until-placeholder": "ପର୍ଯ୍ୟନ୍ତ", + + "submission.sections.duplicates.none": "କୌଣସି ନକଲ ଚିହ୍ନଟ ହୋଇନାହିଁ।", + + "submission.sections.duplicates.detected": "ସମ୍ଭାବ୍ୟ ନକଲ ଚିହ୍ନଟ ହୋଇଛି। ଦୟାକରି ନିମ୍ନରେ ଥିବା ତାଲିକାକୁ ସମୀକ୍ଷା କରନ୍ତୁ।", + + "submission.sections.duplicates.in-workspace": "ଏହି ଆଇଟମ୍ କାର୍ଯ୍ୟସ୍ଥଳରେ ଅଛି", + + "submission.sections.duplicates.in-workflow": "ଏହି ଆଇଟମ୍ କାର୍ଯ୍ୟପ୍ରଣାଳୀରେ ଅଛି", + + "submission.sections.license.granted-label": "ମୁଁ ଉପରେ ଥିବା ଲାଇସେନ୍ସକୁ ନିଶ୍ଚିତ କରେ", + + "submission.sections.license.required": "ଆପଣଙ୍କୁ ଲାଇସେନ୍ସ ଗ୍ରହଣ କରିବାକୁ ପଡିବ", + + "submission.sections.license.notgranted": "ଆପଣଙ୍କୁ ଲାଇସେନ୍ସ ଗ୍ରହଣ କରିବାକୁ ପଡିବ", + + "submission.sections.sherpa.publication.information": "ପ୍ରକାଶନ ସୂଚନା", + + "submission.sections.sherpa.publication.information.title": "ଶୀର୍ଷକ", + + "submission.sections.sherpa.publication.information.issns": "ISSNs", + + "submission.sections.sherpa.publication.information.url": "URL", + + "submission.sections.sherpa.publication.information.publishers": "ପ୍ରକାଶକ", + + "submission.sections.sherpa.publication.information.romeoPub": "ରୋମିଓ ପବ୍", + + "submission.sections.sherpa.publication.information.zetoPub": "ଜେଟୋ ପବ୍", + + "submission.sections.sherpa.publisher.policy": "ପ୍ରକାଶକ ନୀତି", + + "submission.sections.sherpa.publisher.policy.description": "ନିମ୍ନରେ ଥିବା ସୂଚନା ଶେରପା ରୋମିଓ ମାଧ୍ୟମରେ ମିଳିଛି। ଆପଣଙ୍କ ପ୍ରକାଶକର ନୀତି ଉପରେ ଆଧାରିତ, ଏହା ଏକ ଏମ୍ବାର୍ଗୋ ଆବଶ୍ୟକ କି ନାହିଁ ଏବଂ/କିମ୍ବା କେଉଁ ଫାଇଲ୍ ଆପଣ ଅପଲୋଡ୍ କରିପାରିବେ ସେ ସମ୍ବନ୍ଧରେ ପରାମର୍ଶ ଦିଏ। ଯଦି ଆପଣଙ୍କର ପ୍ରଶ୍ନ ଅଛି, ଦୟାକରି ଫୁଟରରେ ଥିବା ଫିଡବ୍ୟାକ୍ ଫର୍ମ ମାଧ୍ୟମରେ ଆପଣଙ୍କ ସାଇଟ୍ ପ୍ରଶାସକଙ୍କ ସହିତ ଯୋଗାଯୋଗ କରନ୍ତୁ।", + + "submission.sections.sherpa.publisher.policy.openaccess": "ଏହି ଜର୍ଣ୍ଣାଲର ନୀତି ଦ୍ୱାରା ଅନୁମୋଦିତ ଖୋଲା ପ୍ରବେଶ ପଥଗୁଡିକ ନିମ୍ନରେ ଆର୍ଟିକଲ୍ ସଂସ୍କରଣ ଅନୁଯାୟୀ ତାଲିକାଭୁକ୍ତ ହୋଇଛି। ଅଧିକ ବିସ୍ତୃତ ଦୃଶ୍ୟ ପାଇଁ ଏକ ପଥ ଉପରେ କ୍ଲିକ୍ କରନ୍ତୁ", + + "submission.sections.sherpa.publisher.policy.more.information": "ଅଧିକ ସୂଚନା ପାଇଁ, ଦୟାକରି ନିମ୍ନଲିଖିତ ଲିଙ୍କ୍ ଦେଖନ୍ତୁ:", + + "submission.sections.sherpa.publisher.policy.version": "ସଂସ୍କରଣ", + + "submission.sections.sherpa.publisher.policy.embargo": "ଏମ୍ବାର୍ଗୋ", + + "submission.sections.sherpa.publisher.policy.noembargo": "କୌଣସି ଏମ୍ବାର୍ଗୋ ନାହିଁ", + + "submission.sections.sherpa.publisher.policy.nolocation": "କିଛି ନାହିଁ", + + "submission.sections.sherpa.publisher.policy.license": "ଲାଇସେନ୍ସ", + + "submission.sections.sherpa.publisher.policy.prerequisites": "ପୂର୍ବାପେକ୍ଷା", + + "submission.sections.sherpa.publisher.policy.location": "ଅବସ୍ଥାନ", + + "submission.sections.sherpa.publisher.policy.conditions": "ସର୍ତ୍ତଗୁଡିକ", + + "submission.sections.sherpa.publisher.policy.refresh": "ରିଫ୍ରେସ୍ କରନ୍ତୁ", + + "submission.sections.sherpa.record.information": "ରେକର୍ଡ ସୂଚନା", + + "submission.sections.sherpa.record.information.id": "ID", + + "submission.sections.sherpa.record.information.date.created": "ତାରିଖ ସୃଷ୍ଟି ହୋଇଛି", + + "submission.sections.sherpa.record.information.date.modified": "ଶେଷ ପରିବର୍ତ୍ତିତ", + + "submission.sections.sherpa.record.information.uri": "URI", + + "submission.sections.sherpa.error.message": "ଶେରପା ସୂଚନା ପ୍ରାପ୍ତିରେ ଏକ ତ୍ରୁଟି ହୋଇଛି", + + "submission.submit.breadcrumbs": "ନୂତନ ଦାଖଲା", + + "submission.submit.title": "ନୂତନ ଦାଖଲା", + + "submission.workflow.generic.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", + + "submission.workflow.generic.delete-help": "ଏହି ଆଇଟମ୍ ପରିତ୍ୟାଗ କରିବାକୁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ। ତା’ପରେ ଆପଣଙ୍କୁ ଏହାକୁ ନିଶ୍ଚିତ କରିବାକୁ କୁହାଯିବ।", + + "submission.workflow.generic.edit": "ସଂପାଦନ କରନ୍ତୁ", + + "submission.workflow.generic.edit-help": "ଆଇଟମ୍ ର ମେଟାଡାଟା ପରିବର୍ତ୍ତନ କରିବାକୁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", + + "submission.workflow.generic.view": "ଦେଖନ୍ତୁ", + + "submission.workflow.generic.view-help": "ଆଇଟମ୍ ର ମେଟାଡାଟା ଦେଖିବାକୁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", + + "submission.workflow.generic.submit_select_reviewer": "ସମୀକ୍ଷକ ଚୟନ କରନ୍ତୁ", + + "submission.workflow.generic.submit_select_reviewer-help": "", + + "submission.workflow.generic.submit_score": "ମୂଲ୍ୟାୟନ କରନ୍ତୁ", + + "submission.workflow.generic.submit_score-help": "", + + "submission.workflow.tasks.claimed.approve": "ଅନୁମୋଦନ କରନ୍ତୁ", + + "submission.workflow.tasks.claimed.approve_help": "ଯଦି ଆପଣ ଆଇଟମ୍ ର ସମୀକ୍ଷା କରିଛନ୍ତି ଏବଂ ଏହା ସଂଗ୍ରହରେ ସମାଵେଶ ପାଇଁ ଉପଯୁକ୍ତ, \"ଅନୁମୋଦନ କରନ୍ତୁ\" ଚୟନ କରନ୍ତୁ।", + + "submission.workflow.tasks.claimed.edit": "ସଂପାଦନ କରନ୍ତୁ", + + "submission.workflow.tasks.claimed.edit_help": "ଆଇଟମ୍ ର ମେଟାଡାଟା ପରିବର୍ତ୍ତନ କରିବାକୁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", + + "submission.workflow.tasks.claimed.decline": "ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", + + "submission.workflow.tasks.claimed.decline_help": "", + + "submission.workflow.tasks.claimed.reject.reason.info": "ଦୟାକରି ନିମ୍ନରେ ଥିବା ବାକ୍ସରେ ଦାଖଲାକୁ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିବାର କାରଣ ପ୍ରବେଶ କରନ୍ତୁ, ସୂଚାଅନ୍ତୁ ଯେ ଦାଖଲକାରୀ ଏକ ସମସ୍ୟା ସମାଧାନ କରିପାରିବେ କି ନାହିଁ ଏବଂ ପୁନର୍ବାର ଦାଖଲ କରିପାରିବେ।", + + "submission.workflow.tasks.claimed.reject.reason.placeholder": "ପ୍ରତ୍ୟାଖ୍ୟାନର କାରଣ ବର୍ଣ୍ଣନା କରନ୍ତୁ", + + "submission.workflow.tasks.claimed.reject.reason.submit": "ଆଇଟମ୍ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", + + "submission.workflow.tasks.claimed.reject.reason.title": "କାରଣ", + + "submission.workflow.tasks.claimed.reject.submit": "ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", + + "submission.workflow.tasks.claimed.reject_help": "ଯଦି ଆପଣ ଆଇଟମ୍ ର ସମୀକ୍ଷା କରିଛନ୍ତି ଏବଂ ଏହା ସଂଗ୍ରହରେ ସମାଵେଶ ପାଇଁ ନୁହେଁ ଉପଯୁକ୍ତ, \"ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ\" ଚୟନ କରନ୍ତୁ। ତା’ପରେ ଆପଣଙ୍କୁ ଏକ ବାର୍ତ୍ତା ପ୍ରବେଶ କରିବାକୁ କୁହାଯିବ ଯାହା ସୂଚାଇବ କାହିଁକି ଆଇଟମ୍ ଟି ଅନୁପଯୁକ୍ତ, ଏବଂ ଦାଖଲକାରୀ କିଛି ପରିବର୍ତ୍ତନ କରିବା ଉଚିତ୍ କି ନାହିଁ ଏବଂ ପୁନର୍ବାର ଦାଖଲ କରିବା ଉଚିତ୍।", + + "submission.workflow.tasks.claimed.return": "ପୁଲ୍ କୁ ଫେରନ୍ତୁ", + + "submission.workflow.tasks.claimed.return_help": "ଅନ୍ୟ ଏକ ଉପଯୋଗକର୍ତ୍ତା କାର୍ଯ୍ୟ କରିପାରିବେ ତାହା ପାଇଁ କାର୍ଯ୍ୟକୁ ପୁଲ୍ କୁ ଫେରାନ୍ତୁ।", + + "submission.workflow.tasks.generic.error": "କାର୍ଯ୍ୟ ସମୟରେ ତ୍ରୁଟି ଘଟିଲା...", + + "submission.workflow.tasks.generic.processing": "ପ୍ରକ୍ରିୟାକରଣ...", + + "submission.workflow.tasks.generic.submitter": "ଦାଖଲକାରୀ", + + "submission.workflow.tasks.generic.success": "କାର୍ଯ୍ୟ ସଫଳ ହେଲା", + + "submission.workflow.tasks.pool.claim": "ଦାବି କରନ୍ତୁ", + + "submission.workflow.tasks.pool.claim_help": "ଏହି କାର୍ଯ୍ୟକୁ ନିଜେ ନିଯୁକ୍ତ କରନ୍ତୁ।", + + "submission.workflow.tasks.pool.hide-detail": "ବିବରଣୀ ଲୁଚାନ୍ତୁ", + + "submission.workflow.tasks.pool.show-detail": "ବିବରଣୀ ଦେଖାନ୍ତୁ", + + "submission.workflow.tasks.duplicates": "ଏହି ଆଇଟମ୍ ପାଇଁ ସମ୍ଭାବ୍ୟ ନକଲ ଚିହ୍ନଟ ହୋଇଛି। ବିବରଣୀ ଦେଖିବାକୁ ଏହି ଆଇଟମ୍ କୁ ଦାବି କରନ୍ତୁ ଏବଂ ସଂପାଦନ କରନ୍ତୁ।", + + "submission.workspace.generic.view": "ଦେଖନ୍ତୁ", + + "submission.workspace.generic.view-help": "ଆଇଟମ୍ ର ମେଟାଡାଟା ଦେଖିବାକୁ ଏହି ବିକଳ୍ପ ଚୟନ କରନ୍ତୁ।", + + "submitter.empty": "N/A", + + "subscriptions.title": "ସବସ୍କ୍ରିପ୍ସନ୍", + + "subscriptions.item": "ଆଇଟମ୍ ପାଇଁ ସବସ୍କ୍ରିପ୍ସନ୍", + + "subscriptions.collection": "ସଂଗ୍ରହ ପାଇଁ ସବସ୍କ୍ରିପ୍ସନ୍", + + "subscriptions.community": "ସମ୍ପ୍ରଦାୟ ପାଇଁ ସବସ୍କ୍ରିପ୍ସନ୍", + + "subscriptions.subscription_type": "ସବସ୍କ୍ରିପ୍ସନ୍ ପ୍ରକାର", + + "subscriptions.frequency": "ସବସ୍କ୍ରିପ୍ସନ୍ ଆବୃତ୍ତି", + + "subscriptions.frequency.D": "ଦ Daily ନିକ", + + "subscriptions.frequency.M": "ମାସିକ", + + "subscriptions.frequency.W": "ସାପ୍ତାହିକ", + + "subscriptions.tooltip": "ସବସ୍କ୍ରାଇବ୍ କରନ୍ତୁ", + + "subscriptions.unsubscribe": "ଅନସବସ୍କ୍ରାଇବ୍ କରନ୍ତୁ", + + "subscriptions.modal.title": "ସବସ୍କ୍ରିପ୍ସନ୍", + + "subscriptions.modal.type-frequency": "ପ୍ରକାର ଏବଂ ଆବୃତ୍ତି", + + "subscriptions.modal.close": "ବନ୍ଦ କରନ୍ତୁ", + + "subscriptions.modal.delete-info": "ଏହି ସବସ୍କ୍ରିପ୍ସନ୍ ଅପସାରଣ କରିବାକୁ, ଦୟାକରି ଆପଣଙ୍କ ଉପଯୋଗକର୍ତ୍ତା ପ୍ରୋଫାଇଲ୍ ଅଧୀନରେ \"ସବସ୍କ୍ରିପ୍ସନ୍\" ପୃଷ୍ଠା ପରିଦର୍ଶନ କରନ୍ତୁ", + + "subscriptions.modal.new-subscription-form.type.content": "ବିଷୟବସ୍ତୁ", + + "subscriptions.modal.new-subscription-form.frequency.D": "ଦ Daily ନିକ", + + "subscriptions.modal.new-subscription-form.frequency.W": "ସାପ୍ତାହିକ", + + "subscriptions.modal.new-subscription-form.frequency.M": "ମାସିକ", + + "subscriptions.modal.new-subscription-form.submit": "ଦାଖଲ କରନ୍ତୁ", + + "subscriptions.modal.new-subscription-form.processing": "ପ୍ରକ୍ରିୟାକରଣ...", + + "subscriptions.modal.create.success": "{{ type }} କୁ ସଫଳତାର ସହିତ ସବସ୍କ୍ରାଇବ୍ ହୋଇଛି।", + + "subscriptions.modal.delete.success": "ସବସ୍କ୍ରିପ୍ସନ୍ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", + + "subscriptions.modal.update.success": "{{ type }} ରେ ସବସ୍କ୍ରିପ୍ସନ୍ ସଫଳତାର ସହିତ ଅପଡେଟ୍ ହୋଇଛି", + + "subscriptions.modal.create.error": "ସବସ୍କ୍ରିପ୍ସନ୍ ସୃଷ୍ଟି କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + + "subscriptions.modal.delete.error": "ସବସ୍କ୍ରିପ୍ସନ୍ ଡିଲିଟ୍ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + + "subscriptions.modal.update.error": "ସବସ୍କ୍ରିପ୍ସନ୍ ଅପଡେଟ୍ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + + "subscriptions.table.dso": "ବିଷୟ", + + "subscriptions.table.subscription_type": "ସବସ୍କ୍ରିପ୍ସନ୍ ପ୍ରକାର", + + "subscriptions.table.subscription_frequency": "ସବସ୍କ୍ରିପ୍ସନ୍ ଫ୍ରିକ୍ୱେନ୍ସି", + + "subscriptions.table.action": "କାର୍ଯ୍ୟ", + + "subscriptions.table.edit": "ସଂପାଦନ କରନ୍ତୁ", + + "subscriptions.table.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", + + "subscriptions.table.not-available": "ଉପଲବ୍ଧ ନାହିଁ", + + "subscriptions.table.not-available-message": "ସବସ୍କ୍ରାଇବ୍ ହୋଇଥିବା ଆଇଟମ୍ ଡିଲିଟ୍ ହୋଇଛି, କିମ୍ବା ଆପଣଙ୍କର ଏହାକୁ ଦେଖିବାର ଅନୁମତି ନାହିଁ", + + "subscriptions.table.empty.message": "ଆପଣଙ୍କର ବର୍ତ୍ତମାନ କୌଣସି ସବସ୍କ୍ରିପ୍ସନ୍ ନାହିଁ। ଏକ ସମୁଦାୟ କିମ୍ବା ସଂଗ୍ରହ ପାଇଁ ଇମେଲ୍ ଅପଡେଟ୍ ଗୁଡିକୁ ସବସ୍କ୍ରାଇବ୍ କରିବା ପାଇଁ, ଆଇଟମ୍ ପୃଷ୍ଠାରେ ସବସ୍କ୍ରିପ୍ସନ୍ ବଟନ୍ ବ୍ୟବହାର କରନ୍ତୁ।", + + "thumbnail.default.alt": "ଥମ୍ବନେଲ୍ ପ୍ରତିଛବି", + + "thumbnail.default.placeholder": "କୌଣସି ଥମ୍ବନେଲ୍ ଉପଲବ୍ଧ ନାହିଁ", + + "thumbnail.project.alt": "ପ୍ରୋଜେକ୍ଟ ଲୋଗୋ", + + "thumbnail.project.placeholder": "ପ୍ରୋଜେକ୍ଟ ପ୍ଲେସହୋଲ୍ଡର୍ ପ୍ରତିଛବି", + + "thumbnail.orgunit.alt": "ଅର୍ଗୟୁନିଟ୍ ଲୋଗୋ", + + "thumbnail.orgunit.placeholder": "ଅର୍ଗୟୁନିଟ୍ ପ୍ଲେସହୋଲ୍ଡର୍ ପ୍ରତିଛବି", + + "thumbnail.person.alt": "ପ୍ରୋଫାଇଲ୍ ଚିତ୍ର", + + "thumbnail.person.placeholder": "କୌଣସି ପ୍ରୋଫାଇଲ୍ ଚିତ୍ର ଉପଲବ୍ଧ ନାହିଁ", + + "title": "ଡିଏସ୍ପେସ୍", + + "vocabulary-treeview.header": "ହାୟାରାର୍କିକାଲ୍ ଟ୍ରି ଭ୍ୟୁ", + + "vocabulary-treeview.load-more": "ଅଧିକ ଲୋଡ୍ କରନ୍ତୁ", + + "vocabulary-treeview.search.form.reset": "ରିସେଟ୍ କରନ୍ତୁ", + + "vocabulary-treeview.search.form.search": "ସନ୍ଧାନ କରନ୍ତୁ", + + "vocabulary-treeview.search.form.search-placeholder": "ପ୍ରଥମ କିଛି ଅକ୍ଷର ଟାଇପ୍ କରି ଫିଲ୍ଟର୍ ଫଳାଫଳ", + + "vocabulary-treeview.search.no-result": "ଦେଖାଇବା ପାଇଁ କୌଣସି ଆଇଟମ୍ ନାହିଁ", + + "vocabulary-treeview.tree.description.nsi": "ନରୱେଜିଆନ୍ ସାଇନ୍ସ ଇଣ୍ଡେକ୍ସ୍", + + "vocabulary-treeview.tree.description.srsc": "ଗବେଷଣା ବିଷୟ ବର୍ଗୀକରଣ", + + "vocabulary-treeview.info": "ସନ୍ଧାନ ଫିଲ୍ଟର୍ ଭାବରେ ଯୋଡିବା ପାଇଁ ଏକ ବିଷୟ ଚୟନ କରନ୍ତୁ", + + "uploader.browse": "ବ୍ରାଉଜ୍ କରନ୍ତୁ", + + "uploader.drag-message": "ଆପଣଙ୍କର ଫାଇଲ୍ ଗୁଡିକୁ ଏଠାରେ ଡ୍ରାଗ୍ ଏବଂ ଡ୍ରପ୍ କରନ୍ତୁ", + + "uploader.delete.btn-title": "ଡିଲିଟ୍ କରନ୍ତୁ", + + "uploader.or": ", କିମ୍ବା ", + + "uploader.processing": "ଅପଲୋଡ୍ ଫାଇଲ୍(ଗୁଡିକ) ପ୍ରକ୍ରିୟାକରଣ ଚାଲିଛି... (ଏହି ପୃଷ୍ଠାକୁ ବନ୍ଦ କରିବା ବିପଦମୁକ୍ତ)", + + "uploader.queue-length": "କ୍ୟୁ ଲମ୍ବ", + + "virtual-metadata.delete-item.info": "ଯେଉଁସବୁ ପ୍ରକାର ପାଇଁ ଆପଣ ଭର୍ଚୁଆଲ୍ ମେଟାଡାଟାକୁ ପ୍ରକୃତ ମେଟାଡାଟା ଭାବରେ ସେଭ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି, ସେଗୁଡିକୁ ଚୟନ କରନ୍ତୁ", + + "virtual-metadata.delete-item.modal-head": "ଏହି ସମ୍ପର୍କର ଭର୍ଚୁଆଲ୍ ମେଟାଡାଟା", + + "virtual-metadata.delete-relationship.modal-head": "ଯେଉଁସବୁ ଆଇଟମ୍ ପାଇଁ ଆପଣ ଭର୍ଚୁଆଲ୍ ମେଟାଡାଟାକୁ ପ୍ରକୃତ ମେଟାଡାଟା ଭାବରେ ସେଭ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି, ସେଗୁଡିକୁ ଚୟନ କରନ୍ତୁ", + + "supervisedWorkspace.search.results.head": "ପରିଦର୍ଶିତ ଆଇଟମ୍ ଗୁଡିକ", + + "workspace.search.results.head": "ଆପଣଙ୍କର ସବମିସନ୍ ଗୁଡିକ", + + "workflowAdmin.search.results.head": "ୱର୍କଫ୍ଲୋ ପରିଚାଳନା କରନ୍ତୁ", + + "workflow.search.results.head": "ୱର୍କଫ୍ଲୋ କାର୍ଯ୍ୟଗୁଡିକ", + + "supervision.search.results.head": "ୱର୍କଫ୍ଲୋ ଏବଂ ୱର୍କସ୍ପେସ୍ କାର୍ଯ୍ୟଗୁଡିକ", + + "workflow-item.edit.breadcrumbs": "ୱର୍କଫ୍ଲୋଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + + "workflow-item.edit.title": "ୱର୍କଫ୍ଲୋଆଇଟମ୍ ସଂପାଦନ କରନ୍ତୁ", + + "workflow-item.delete.notification.success.title": "ଡିଲିଟ୍ ହୋଇଛି", + + "workflow-item.delete.notification.success.content": "ଏହି ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", + + "workflow-item.delete.notification.error.title": "କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "workflow-item.delete.notification.error.content": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ଡିଲିଟ୍ ହୋଇପାରିବ ନାହିଁ", + + "workflow-item.delete.title": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ଡିଲିଟ୍ କରନ୍ତୁ", + + "workflow-item.delete.header": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ଡିଲିଟ୍ କରନ୍ତୁ", + + "workflow-item.delete.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "workflow-item.delete.button.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", + + "workflow-item.send-back.notification.success.title": "ସବମିଟର୍ ପାଖକୁ ପଠାଯାଇଛି", + + "workflow-item.send-back.notification.success.content": "ଏହି ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ସଫଳତାର ସହିତ ସବମିଟର୍ ପାଖକୁ ପଠାଯାଇଛି", + + "workflow-item.send-back.notification.error.title": "କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "workflow-item.send-back.notification.error.content": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ସବମିଟର୍ ପାଖକୁ ପଠାଯାଇପାରିବ ନାହିଁ", + + "workflow-item.send-back.title": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ସବମିଟର୍ ପାଖକୁ ପଠାନ୍ତୁ", + + "workflow-item.send-back.header": "ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ସବମିଟର୍ ପାଖକୁ ପଠାନ୍ତୁ", + + "workflow-item.send-back.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "workflow-item.send-back.button.confirm": "ପଠାନ୍ତୁ", + + "workflow-item.view.breadcrumbs": "ୱର୍କଫ୍ଲୋ ଦୃଶ୍ୟ", + + "workspace-item.view.breadcrumbs": "ୱର୍କସ୍ପେସ୍ ଦୃଶ୍ୟ", + + "workspace-item.view.title": "ୱର୍କସ୍ପେସ୍ ଦୃଶ୍ୟ", + + "workspace-item.delete.breadcrumbs": "ୱର୍କସ୍ପେସ୍ ଡିଲିଟ୍ କରନ୍ତୁ", + + "workspace-item.delete.header": "ୱର୍କସ୍ପେସ୍ ଆଇଟମ୍ ଡିଲିଟ୍ କରନ୍ତୁ", + + "workspace-item.delete.button.confirm": "ଡିଲିଟ୍ କରନ୍ତୁ", + + "workspace-item.delete.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "workspace-item.delete.notification.success.title": "ଡିଲିଟ୍ ହୋଇଛି", + + "workspace-item.delete.title": "ଏହି ୱର୍କସ୍ପେସ୍ ଆଇଟମ୍ ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି", + + "workspace-item.delete.notification.error.title": "କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "workspace-item.delete.notification.error.content": "ୱର୍କସ୍ପେସ୍ ଆଇଟମ୍ ଡିଲିଟ୍ ହୋଇପାରିବ ନାହିଁ", + + "workflow-item.advanced.title": "ଆଡଭାନ୍ସଡ୍ ୱର୍କଫ୍ଲୋ", + + "workflow-item.selectrevieweraction.notification.success.title": "ରିଭ୍ୟୁୟର୍ ଚୟନ କରାଯାଇଛି", + + "workflow-item.selectrevieweraction.notification.success.content": "ଏହି ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ପାଇଁ ରିଭ୍ୟୁୟର୍ ସଫଳତାର ସହିତ ଚୟନ କରାଯାଇଛି", + + "workflow-item.selectrevieweraction.notification.error.title": "କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "workflow-item.selectrevieweraction.notification.error.content": "ଏହି ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ପାଇଁ ରିଭ୍ୟୁୟର୍ ଚୟନ କରାଯାଇପାରିବ ନାହିଁ", + + "workflow-item.selectrevieweraction.title": "ରିଭ୍ୟୁୟର୍ ଚୟନ କରନ୍ତୁ", + + "workflow-item.selectrevieweraction.header": "ରିଭ୍ୟୁୟର୍ ଚୟନ କରନ୍ତୁ", + + "workflow-item.selectrevieweraction.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "workflow-item.selectrevieweraction.button.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", + + "workflow-item.scorereviewaction.notification.success.title": "ରେଟିଂ ରିଭ୍ୟୁ", + + "workflow-item.scorereviewaction.notification.success.content": "ଏହି ଆଇଟମ୍ ୱର୍କଫ୍ଲୋ ଆଇଟମ୍ ପାଇଁ ରେଟିଂ ସଫଳତାର ସହିତ ସବମିଟ୍ ହୋଇଛି", + + "workflow-item.scorereviewaction.notification.error.title": "କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "workflow-item.scorereviewaction.notification.error.content": "ଏହି ଆଇଟମ୍ ରେଟ୍ କରାଯାଇପାରିବ ନାହିଁ", + + "workflow-item.scorereviewaction.title": "ଏହି ଆଇଟମ୍ ରେଟ୍ କରନ୍ତୁ", + + "workflow-item.scorereviewaction.header": "ଏହି ଆଇଟମ୍ ରେଟ୍ କରନ୍ତୁ", + + "workflow-item.scorereviewaction.button.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "workflow-item.scorereviewaction.button.confirm": "ନିଶ୍ଚିତ କରନ୍ତୁ", + + "idle-modal.header": "ସେସନ୍ ଶୀଘ୍ର ମିଆଦ୍ ଅତିକ୍ରମ କରିବ", + + "idle-modal.info": "ସୁରକ୍ଷା କାରଣରୁ, ଉପଯୋଗକର୍ତ୍ତା ସେସନ୍ ଗୁଡିକ {{ timeToExpire }} ମିନିଟ୍ ନିଷ୍କ୍ରିୟତା ପରେ ମିଆଦ୍ ଅତିକ୍ରମ କରିଥାଏ। ଆପଣଙ୍କର ସେସନ୍ ଶୀଘ୍ର ମିଆଦ୍ ଅତିକ୍ରମ କରିବ। ଆପଣ ଏହାକୁ ବୃଦ୍ଧି କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ଲଗ୍ ଆଉଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି?", + + "idle-modal.log-out": "ଲଗ୍ ଆଉଟ୍ କରନ୍ତୁ", + + "idle-modal.extend-session": "ସେସନ୍ ବୃଦ୍ଧି କରନ୍ତୁ", + + "researcher.profile.action.processing": "ପ୍ରକ୍ରିୟାକରଣ ଚାଲିଛି...", + + "researcher.profile.associated": "ଗବେଷକ ପ୍ରୋଫାଇଲ୍ ସଂଯୁକ୍ତ ହୋଇଛି", + + "researcher.profile.change-visibility.fail": "ପ୍ରୋଫାଇଲ୍ ଦୃଶ୍ୟମାନତା ପରିବର୍ତ୍ତନ କରିବା ସମୟରେ ଏକ ଅପ୍ରତ୍ୟାଶିତ ତ୍ରୁଟି ଘଟିଛି", + + "researcher.profile.create.new": "ନୂତନ ସୃଷ୍ଟି କରନ୍ତୁ", + + "researcher.profile.create.success": "ଗବେଷକ ପ୍ରୋଫାଇଲ୍ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", + + "researcher.profile.create.fail": "ଗବେଷକ ପ୍ରୋଫାଇଲ୍ ସୃଷ୍ଟି କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + + "researcher.profile.delete": "ଡିଲିଟ୍ କରନ୍ତୁ", + + "researcher.profile.expose": "ପ୍ରଦର୍ଶନ କରନ୍ତୁ", + + "researcher.profile.hide": "ଲୁଚାନ୍ତୁ", + + "researcher.profile.not.associated": "ଗବେଷକ ପ୍ରୋଫାଇଲ୍ ଏପର୍ଯ୍ୟନ୍ତ ସଂଯୁକ୍ତ ହୋଇନାହିଁ", + + "researcher.profile.view": "ଦେଖନ୍ତୁ", + + "researcher.profile.private.visibility": "ପ୍ରାଇଭେଟ୍", + + "researcher.profile.public.visibility": "ପବ୍ଲିକ୍", + + "researcher.profile.status": "ସ୍ଥିତି:", + + "researcherprofile.claim.not-authorized": "ଆପଣ ଏହି ଆଇଟମ୍ ଦାବି କରିବା ପାଇଁ ଅଧିକୃତ ନୁହଁନ୍ତି। ଅଧିକ ବିବରଣୀ ପାଇଁ ପ୍ରଶାସକ(ମାନେ)ଙ୍କ ସହିତ ଯୋଗାଯୋଗ କରନ୍ତୁ।", + + "researcherprofile.error.claim.body": "ପ୍ରୋଫାଇଲ୍ ଦାବି କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି, ଦୟାକରି ପରେ ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ", + + "researcherprofile.error.claim.title": "ତ୍ରୁଟି", + + "researcherprofile.success.claim.body": "ପ୍ରୋଫାଇଲ୍ ସଫଳତାର ସହିତ ଦାବି କରାଯାଇଛି", + + "researcherprofile.success.claim.title": "ସଫଳତା", + + "person.page.orcid.create": "ଏକ ORCID ID ସୃଷ୍ଟି କରନ୍ତୁ", + + "person.page.orcid.granted-authorizations": "ପ୍ରଦାନ କରାଯାଇଥିବା ଅନୁମତି ଗୁଡିକ", + + "person.page.orcid.grant-authorizations": "ଅନୁମତି ପ୍ରଦାନ କରନ୍ତୁ", + + "person.page.orcid.link": "ORCID ID ସହିତ ସଂଯୋଗ କରନ୍ତୁ", + + "person.page.orcid.link.processing": "ORCID ସହିତ ପ୍ରୋଫାଇଲ୍ ଲିଙ୍କ୍ କରାଯାଉଛି...", + + "person.page.orcid.link.error.message": "ORCID ସହିତ ପ୍ରୋଫାଇଲ୍ ସଂଯୋଗ କରିବା ସମୟରେ କିଛି ତ୍ରୁଟି ଘଟିଛି। ଯଦି ସମସ୍ୟା ବଜାୟ ରହେ, ପ୍ରଶାସକଙ୍କ ସହିତ ଯୋଗାଯୋଗ କରନ୍ତୁ।", + + "person.page.orcid.orcid-not-linked-message": "ଏହି ପ୍ରୋଫାଇଲ୍ ({{ orcid }})ର ORCID iD ଏପର୍ଯ୍ୟନ୍ତ ORCID ରେଜିଷ୍ଟ୍ରିରେ ଏକ ଆକାଉଣ୍ଟ୍ ସହିତ ସଂଯୋଗ ହୋଇନାହିଁ କିମ୍ବା ସଂଯୋଗ ମିଆଦ୍ ଅତିକ୍ରମ କରିଛି।", + + "person.page.orcid.unlink": "ORCID ରୁ ଡିସ୍କନେକ୍ଟ୍ କରନ୍ତୁ", + + "person.page.orcid.unlink.processing": "ପ୍ରକ୍ରିୟାକରଣ ଚାଲିଛି...", + + "person.page.orcid.missing-authorizations": "ଅନୁମତି ଅନୁପସ୍ଥିତ", + + "person.page.orcid.missing-authorizations-message": "ନିମ୍ନଲିଖିତ ଅନୁମତି ଗୁଡିକ ଅନୁପସ୍ଥିତ:", + + "person.page.orcid.no-missing-authorizations-message": "ବହୁତ ଭଲ! ଏହି ବାକ୍ସଟି ଖାଲି ଅଛି, ତେଣୁ ଆପଣ ଆପଣଙ୍କର ଅନୁଷ୍ଠାନ ଦ୍ୱାରା ପ୍ରଦାନ କରାଯାଇଥିବା ସମସ୍ତ କାର୍ଯ୍ୟକ୍ଷମତା ବ୍ୟବହାର କରିବା ପାଇଁ ସମସ୍ତ ପ୍ରବେଶ ଅଧିକାର ପ୍ରାପ୍ତ କରିଛନ୍ତି।", + + "person.page.orcid.no-orcid-message": "ଏପର୍ଯ୍ୟନ୍ତ କୌଣସି ORCID iD ସଂଯୁକ୍ତ ହୋଇନାହିଁ। ନିମ୍ନରେ ଥିବା ବଟନ୍ ଉପରେ କ୍ଲିକ୍ କରି ଏହି ପ୍ରୋଫାଇଲ୍ କୁ ଏକ ORCID ଆକାଉଣ୍ଟ୍ ସହିତ ଲିଙ୍କ୍ କରିବା ସମ୍ଭବ।", + + "person.page.orcid.profile-preferences": "ପ୍ରୋଫାଇଲ୍ ପସନ୍ଦଗୁଡିକ", + + "person.page.orcid.funding-preferences": "ଫଣ୍ଡିଂ ପସନ୍ଦଗୁଡିକ", + + "person.page.orcid.publications-preferences": "ପ୍ରକାଶନ ପସନ୍ଦଗୁଡିକ", + + "person.page.orcid.remove-orcid-message": "ଯଦି ଆପଣଙ୍କୁ ଆପଣଙ୍କର ORCID ଅପସାରଣ କରିବା ଆବଶ୍ୟକ, ଦୟାକରି ରିପୋଜିଟରି ପ୍ରଶାସକଙ୍କ ସହିତ ଯୋଗାଯୋଗ କରନ୍ତୁ", + + "person.page.orcid.save.preference.changes": "ସେଟିଂସ୍ ଅପଡେଟ୍ କରନ୍ତୁ", + + "person.page.orcid.sync-profile.affiliation": "ଅନୁବନ୍ଧନ", + + "person.page.orcid.sync-profile.biographical": "ଜୀବନୀ ତଥ୍ୟ", + + "person.page.orcid.sync-profile.education": "ଶିକ୍ଷା", + + "person.page.orcid.sync-profile.identifiers": "ଆଇଡେଣ୍ଟିଫାୟର୍ ଗୁଡିକ", + + "person.page.orcid.sync-fundings.all": "ସମସ୍ତ ଫଣ୍ଡିଂଗୁଡିକ", + + "person.page.orcid.sync-fundings.mine": "ମୋର ଫଣ୍ଡିଂଗୁଡିକ", + + "person.page.orcid.sync-fundings.my_selected": "ଚୟନିତ ଫଣ୍ଡିଂଗୁଡିକ", + + "person.page.orcid.sync-fundings.disabled": "ଅକ୍ଷମ କରାଯାଇଛି", + + "person.page.orcid.sync-publications.all": "ସମସ୍ତ ପ୍ରକାଶନଗୁଡିକ", + + "person.page.orcid.sync-publications.mine": "ମୋର ପ୍ରକାଶନଗୁଡିକ", + + "person.page.orcid.sync-publications.my_selected": "ଚୟନିତ ପ୍ରକାଶନଗୁଡିକ", + + "person.page.orcid.sync-publications.disabled": "ଅକ୍ଷମ କରାଯାଇଛି", + + "person.page.orcid.sync-queue.discard": "ପରିବର୍ତ୍ତନକୁ ପରିତ୍ୟାଗ କରନ୍ତୁ ଏବଂ ORCID ରେଜିଷ୍ଟ୍ରି ସହିତ ସିଙ୍କ୍ରୋନାଇଜ୍ କରନ୍ତୁ ନାହିଁ", + + "person.page.orcid.sync-queue.discard.error": "ORCID କ୍ୟୁ ରେକର୍ଡ୍ ପରିତ୍ୟାଗ କରିବାରେ ବିଫଳ ହୋଇଛି", + + "person.page.orcid.sync-queue.discard.success": "ORCID କ୍ୟୁ ରେକର୍ଡ୍ ସଫଳତାର ସହିତ ପରିତ୍ୟାଗ କରାଯାଇଛି", + + "person.page.orcid.sync-queue.empty-message": "ORCID କ୍ୟୁ ରେଜିଷ୍ଟ୍ରି ଖାଲି ଅଛି", + + "person.page.orcid.sync-queue.table.header.type": "ପ୍ରକାର", + + "person.page.orcid.sync-queue.table.header.description": "ବର୍ଣ୍ଣନା", + + "person.page.orcid.sync-queue.table.header.action": "କାର୍ଯ୍ୟ", + + "person.page.orcid.sync-queue.description.affiliation": "ଅନୁବନ୍ଧନଗୁଡିକ", + + "person.page.orcid.sync-queue.description.country": "ଦେଶ", + + "person.page.orcid.sync-queue.description.education": "ଶିକ୍ଷାଗୁଡିକ", + + "person.page.orcid.sync-queue.description.external_ids": "ବାହ୍ୟ ଆଇଡି ଗୁଡିକ", + + "person.page.orcid.sync-queue.description.other_names": "ଅନ୍ୟ ନାମଗୁଡିକ", + + "person.page.orcid.sync-queue.description.qualification": "ଯୋଗ୍ୟତାଗୁଡିକ", + + "person.page.orcid.sync-queue.description.researcher_urls": "ଗବେଷକ URL ଗୁଡିକ", + + "person.page.orcid.sync-queue.description.keywords": "କିୱାର୍ଡଗୁଡିକ", + + "person.page.orcid.sync-queue.tooltip.insert": "ORCID ରେଜିଷ୍ଟ୍ରିରେ ଏକ ନୂତନ ଏଣ୍ଟ୍ରି ଯୋଡନ୍ତୁ", + + "person.page.orcid.sync-queue.tooltip.update": "ORCID ରେଜିଷ୍ଟ୍ରିରେ ଏହି ଏଣ୍ଟ୍ରି ଅପଡେଟ୍ କରନ୍ତୁ", + + "person.page.orcid.sync-queue.tooltip.delete": "ORCID ରେଜିଷ୍ଟ୍ରିରୁ ଏହି ଏଣ୍ଟ୍ରି ଅପସାରଣ କରନ୍ତୁ", + + "person.page.orcid.sync-queue.tooltip.publication": "ପ୍ରକାଶନ", + + "person.page.orcid.sync-queue.tooltip.project": "ପ୍ରୋଜେକ୍ଟ୍", + + "person.page.orcid.sync-queue.tooltip.affiliation": "ଅନୁବନ୍ଧନ", + + "person.page.orcid.sync-queue.tooltip.education": "ଶିକ୍ଷା", + + "person.page.orcid.sync-queue.tooltip.qualification": "ଯୋଗ୍ୟତା", + + "person.page.orcid.sync-queue.tooltip.other_names": "ଅନ୍ୟ ନାମ", + + "person.page.orcid.sync-queue.tooltip.country": "ଦେଶ", + + "person.page.orcid.sync-queue.tooltip.keywords": "କିୱାର୍ଡ୍", + + "person.page.orcid.sync-queue.tooltip.external_ids": "ବାହ୍ୟ ଆଇଡେଣ୍ଟିଫାୟର୍", + + "person.page.orcid.sync-queue.tooltip.researcher_urls": "ଗବେଷକ URL", + + "person.page.orcid.sync-queue.send": "ORCID ରେଜିଷ୍ଟ୍ରି ସହିତ ସିଙ୍କ୍ରୋନାଇଜ୍ କରନ୍ତୁ", + + "person.page.orcid.sync-queue.send.unauthorized-error.title": "ORCID କୁ ପ୍ରେରଣ ବିଫଳ ହେଲା ଅନୁମୋଦନ ନଥିବାରୁ।", + + "person.page.orcid.sync-queue.send.unauthorized-error.content": "ଆବଶ୍ୟକ ଅନୁମତିଗୁଡିକୁ ପୁନର୍ବାର ଦେବା ପାଇଁ ଏଠି କ୍ଲିକ୍ କରନ୍ତୁ। ଯଦି ସମସ୍ୟା ବଜାୟ ରହିଥାଏ, ପ୍ରଶାସକଙ୍କୁ ଯୋଗାଯୋଗ କରନ୍ତୁ", + + "person.page.orcid.sync-queue.send.bad-request-error": "ORCID କୁ ପ୍ରେରଣ ବିଫଳ ହେଲା କାରଣ ORCID ରେଜିଷ୍ଟ୍ରି ପାଇଁ ପ୍ରେରିତ ସମ୍ବଳ ବୈଧ ନୁହେଁ", + + "person.page.orcid.sync-queue.send.error": "ORCID କୁ ପ୍ରେରଣ ବିଫଳ ହେଲା", + + "person.page.orcid.sync-queue.send.conflict-error": "ORCID କୁ ପ୍ରେରଣ ବିଫଳ ହେଲା କାରଣ ସମ୍ବଳ ପୂର୍ବରୁ ORCID ରେଜିଷ୍ଟ୍ରିରେ ଉପସ୍ଥିତ ଅଛି", + + "person.page.orcid.sync-queue.send.not-found-warning": "ସମ୍ବଳ ବର୍ତ୍ତମାନ ORCID ରେଜିଷ୍ଟ୍ରିରେ ଉପସ୍ଥିତ ନାହିଁ।", + + "person.page.orcid.sync-queue.send.success": "ORCID କୁ ପ୍ରେରଣ ସଫଳତାର ସହିତ ସମାପ୍ତ ହେଲା", + + "person.page.orcid.sync-queue.send.validation-error": "ଆପଣ ORCID ସହିତ ସିଙ୍କ୍ରୋନାଇଜ୍ କରିବାକୁ ଚାହୁଁଥିବା ତଥ୍ୟ ବୈଧ ନୁହେଁ", + + "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "ପରିମାଣର ମୁଦ୍ରା ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.external-id.required": "ପ୍ରେରଣ କରାଯାଇଥିବା ସମ୍ବଳ ପାଇଁ ଅତିକମରେ ଗୋଟିଏ ପରିଚୟକାରୀ ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.title.required": "ଶୀର୍ଷକ ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.start-date.required": "ଆରମ୍ଭ ତାରିଖ ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.funder.required": "ଅର୍ଥଦାତା ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.country.invalid": "ଅବୈଧ 2 ଅଙ୍କ ISO 3166 ଦେଶ", + + "person.page.orcid.sync-queue.send.validation-error.organization.required": "ସଂଗଠନ ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "ସଂଗଠନର ନାମ ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "ପ୍ରକାଶନ ତାରିଖ 1900 ପରବର୍ତ୍ତୀ ଗୋଟିଏ ବର୍ଷ ହେବା ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "ପ୍ରେରଣ କରାଯାଇଥିବା ସଂଗଠନ ପାଇଁ ଗୋଟିଏ ଠିକଣା ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "ପ୍ରେରଣ କରାଯାଇଥିବା ସଂଗଠନର ଠିକଣା ପାଇଁ ଗୋଟିଏ ସହର ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "ପ୍ରେରଣ କରାଯାଇଥିବା ସଂଗଠନର ଠିକଣା ପାଇଁ ଗୋଟିଏ ବୈଧ 2 ଅଙ୍କ ISO 3166 ଦେଶ ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "ସଂଗଠନଗୁଡିକୁ ପୃଥକ କରିବା ପାଇଁ ଗୋଟିଏ ପରିଚୟକାରୀ ଆବଶ୍ୟକ। ସମର୍ଥିତ ଆଇଡି ହେଉଛି GRID, Ringgold, Legal Entity identifiers (LEIs) ଏବଂ Crossref Funder Registry identifiers", + + "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "ସଂଗଠନର ପରିଚୟକାରୀଗୁଡିକ ପାଇଁ ଗୋଟିଏ ମୂଲ୍ୟ ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "ସଂଗଠନର ପରିଚୟକାରୀଗୁଡିକ ପାଇଁ ଗୋଟିଏ ଉତ୍ସ ଆବଶ୍ୟକ", + + "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "ସଂଗଠନର ଗୋଟିଏ ପରିଚୟକାରୀର ଉତ୍ସ ଅବୈଧ। ସମର୍ଥିତ ଉତ୍ସଗୁଡିକ ହେଉଛି RINGGOLD, GRID, LEI ଏବଂ FUNDREF", + + "person.page.orcid.synchronization-mode": "ସିଙ୍କ୍ରୋନାଇଜେସନ୍ ମୋଡ୍", + + "person.page.orcid.synchronization-mode.batch": "ବ୍ୟାଚ୍", + + "person.page.orcid.synchronization-mode.label": "ସିଙ୍କ୍ରୋନାଇଜେସନ୍ ମୋଡ୍", + + "person.page.orcid.synchronization-mode-message": "ଦୟାକରି ମନୋନୟନ କରନ୍ତୁ ଯେ ଆପଣ ORCID ସହିତ ସିଙ୍କ୍ରୋନାଇଜେସନ୍ କିପରି ଘଟିବା ଚାହୁଁଛନ୍ତି। ବିକଳ୍ପଗୁଡିକରେ \"ମ୍ୟାନୁଆଲ୍\" (ଆପଣଙ୍କୁ ନିଜ ତଥ୍ୟ ORCID କୁ ମାନୁଆଲି ପ୍ରେରଣ କରିବାକୁ ହେବ) କିମ୍ବା \"ବ୍ୟାଚ୍\" (ସିଷ୍ଟମ୍ ଏକ ନିର୍ଦ୍ଧାରିତ ସ୍କ୍ରିପ୍ଟ୍ ମାଧ୍ୟମରେ ଆପଣଙ୍କ ତଥ୍ୟ ORCID କୁ ପ୍ରେରଣ କରିବ) ଅନ୍ତର୍ଭୁକ୍ତ ଅଛି।", + + "person.page.orcid.synchronization-mode-funding-message": "ଆପଣଙ୍କର ଲିଙ୍କ୍ ହୋଇଥିବା ପ୍ରୋଜେକ୍ଟ ଏଣ୍ଟିଟିଗୁଡିକୁ ଆପଣଙ୍କ ORCID ରେକର୍ଡର ଫଣ୍ଡିଂ ସୂଚନାର ତାଲିକାକୁ ପ୍ରେରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ନାହିଁ ମନୋନୟନ କରନ୍ତୁ।", + + "person.page.orcid.synchronization-mode-publication-message": "ଆପଣଙ୍କର ଲିଙ୍କ୍ ହୋଇଥିବା ପ୍ରକାଶନ ଏଣ୍ଟିଟିଗୁଡିକୁ ଆପଣଙ୍କ ORCID ରେକର୍ଡର କାର୍ଯ୍ୟଗୁଡିକର ତାଲିକାକୁ ପ୍ରେରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ନାହିଁ ମନୋନୟନ କରନ୍ତୁ।", + + "person.page.orcid.synchronization-mode-profile-message": "ଆପଣଙ୍କ ଜୀବନୀ ତଥ୍ୟ କିମ୍ବା ବ୍ୟକ୍ତିଗତ ପରିଚୟକାରୀଗୁଡିକୁ ଆପଣଙ୍କ ORCID ରେକର୍ଡକୁ ପ୍ରେରଣ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ନାହିଁ ମନୋନୟନ କରନ୍ତୁ।", + + "person.page.orcid.synchronization-settings-update.success": "ସିଙ୍କ୍ରୋନାଇଜେସନ୍ ସେଟିଂସ୍ ସଫଳତାର ସହିତ ଅପଡେଟ୍ ହୋଇଛି", + + "person.page.orcid.synchronization-settings-update.error": "ସିଙ୍କ୍ରୋନାଇଜେସନ୍ ସେଟିଂସ୍ ଅପଡେଟ୍ ବିଫଳ ହେଲା", + + "person.page.orcid.synchronization-mode.manual": "ମ୍ୟାନୁଆଲ୍", + + "person.page.orcid.scope.authenticate": "ଆପଣଙ୍କର ORCID iD ପ୍ରାପ୍ତ କରନ୍ତୁ", + + "person.page.orcid.scope.read-limited": "ବିଶ୍ୱସ୍ତ ପକ୍ଷଗୁଡିକ ପାଇଁ ଦୃଶ୍ୟମାନ ଥିବା ଆପଣଙ୍କ ସୂଚନାକୁ ପଢନ୍ତୁ", + + "person.page.orcid.scope.activities-update": "ଆପଣଙ୍କର ଗବେଷଣା କାର୍ଯ୍ୟକଳାପଗୁଡିକୁ ଯୋଡନ୍ତୁ/ଅପଡେଟ୍ କରନ୍ତୁ", + + "person.page.orcid.scope.person-update": "ଆପଣଙ୍କ ବିଷୟରେ ଅନ୍ୟ ସୂଚନା ଯୋଡନ୍ତୁ/ଅପଡେଟ୍ କରନ୍ତୁ", + + "person.page.orcid.unlink.success": "ପ୍ରୋଫାଇଲ୍ ଏବଂ ORCID ରେଜିଷ୍ଟ୍ରି ମଧ୍ୟରେ ସଂଯୋଗ ବିଚ୍ଛିନ୍ନ ସଫଳତାର ସହିତ ହୋଇଛି", + + "person.page.orcid.unlink.error": "ପ୍ରୋଫାଇଲ୍ ଏବଂ ORCID ରେଜିଷ୍ଟ୍ରି ମଧ୍ୟରେ ସଂଯୋଗ ବିଚ୍ଛିନ୍ନ କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି। ପୁନର୍ବାର ଚେଷ୍ଟା କରନ୍ତୁ", + + "person.orcid.sync.setting": "ORCID ସିଙ୍କ୍ରୋନାଇଜେସନ୍ ସେଟିଂସ୍", + + "person.orcid.registry.queue": "ORCID ରେଜିଷ୍ଟ୍ରି କ୍ୟୁ", + + "person.orcid.registry.auth": "ORCID ଅନୁମୋଦନଗୁଡିକ", + + "person.orcid-tooltip.authenticated": "{{orcid}}", + + "person.orcid-tooltip.not-authenticated": "{{orcid}} (ଅସ୍ଥିର)", + + "home.recent-submissions.head": "ସାମ୍ପ୍ରତିକ ଦାଖଲଗୁଡିକ", + + "listable-notification-object.default-message": "ଏହି ବସ୍ତୁ ପ୍ରାପ୍ତ ହୋଇପାରିବ ନାହିଁ", + + "system-wide-alert-banner.retrieval.error": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ବ୍ୟାନର୍ ପ୍ରାପ୍ତ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "system-wide-alert-banner.countdown.prefix": "ମାତ୍ର", + + "system-wide-alert-banner.countdown.days": "{{days}} ଦିନ(ଗୁଡିକ),", + + "system-wide-alert-banner.countdown.hours": "{{hours}} ଘଣ୍ଟା(ଗୁଡିକ) ଏବଂ", + + "system-wide-alert-banner.countdown.minutes": "{{minutes}} ମିନିଟ୍(ଗୁଡିକ):", + + "menu.section.system-wide-alert": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ", + + "system-wide-alert.form.header": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ", + + "system-wide-alert-form.retrieval.error": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ପ୍ରାପ୍ତ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "system-wide-alert.form.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "system-wide-alert.form.save": "ସେଭ୍ କରନ୍ତୁ", + + "system-wide-alert.form.label.active": "ସକ୍ରିୟ", + + "system-wide-alert.form.label.inactive": "ନିଷ୍କ୍ରିୟ", + + "system-wide-alert.form.error.message": "ସିଷ୍ଟମ୍ ବ୍ୟାପୀ ଆଲର୍ଟ ପାଇଁ ଏକ ସନ୍ଦେଶ ରହିବା ଆବଶ୍ୟକ", + + "system-wide-alert.form.label.message": "ଆଲର୍ଟ ସନ୍ଦେଶ", + + "system-wide-alert.form.label.countdownTo.enable": "ଏକ କାଉଣ୍ଟଡାଉନ୍ ଟାଇମର୍ ସକ୍ଷମ କରନ୍ତୁ", + + "system-wide-alert.form.label.countdownTo.hint": "ସୂଚନା: ଏକ କାଉଣ୍ଟଡାଉନ୍ ଟାଇମର୍ ସେଟ୍ କରନ୍ତୁ। ସକ୍ଷମ ହୋଇଥିବା ବେଳେ, ଭବିଷ୍ୟତରେ ଏକ ତାରିଖ ସେଟ୍ କରାଯାଇପାରିବ ଏବଂ ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ବ୍ୟାନର୍ ସେଟ୍ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ କାଉଣ୍ଟଡାଉନ୍ କରିବ। ଯେତେବେଳେ ଏହି ଟାଇମର୍ ଶେଷ ହେବ, ଏହା ଆଲର୍ଟରୁ ଅଦୃଶ୍ୟ ହୋଇଯିବ। ସର୍ଭର୍ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ବନ୍ଦ ହେବ ନାହିଁ।", + + "system-wide-alert-form.select-date-by-calendar": "କ୍ୟାଲେଣ୍ଡର ବ୍ୟବହାର କରି ତାରିଖ ଚୟନ କରନ୍ତୁ", + + "system-wide-alert.form.label.preview": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ପ୍ରିଭ୍ୟୁ", + + "system-wide-alert.form.update.success": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ସଫଳତାର ସହିତ ଅପଡେଟ୍ ହୋଇଛି", + + "system-wide-alert.form.update.error": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ଅପଡେଟ୍ କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "system-wide-alert.form.create.success": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", + + "system-wide-alert.form.create.error": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟ ସୃଷ୍ଟି କରିବାରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "admin.system-wide-alert.breadcrumbs": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟଗୁଡିକ", + + "admin.system-wide-alert.title": "ସିଷ୍ଟମ୍-ବ୍ୟାପୀ ଆଲର୍ଟଗୁଡିକ", + + "discover.filters.head": "ଆବିଷ୍କାର କରନ୍ତୁ", + + "item-access-control-title": "ଏହି ଫର୍ମ ଆପଣଙ୍କୁ ଆଇଟମ୍ ମେଟାଡାଟା କିମ୍ବା ଏହାର ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକର ପ୍ରବେଶ ପରିସ୍ଥିତିରେ ପରିବର୍ତ୍ତନ କରିବାକୁ ଅନୁମତି ଦେଇଥାଏ।", + + "collection-access-control-title": "ଏହି ଫର୍ମ ଆପଣଙ୍କୁ ଏହି ସଂଗ୍ରହ ଦ୍ୱାରା ମାଲିକାନା କରାଯାଇଥିବା ସମସ୍ତ ଆଇଟମ୍ ପାଇଁ ପ୍ରବେଶ ପରିସ୍ଥିତିରେ ପରିବର୍ତ୍ତନ କରିବାକୁ ଅନୁମତି ଦେଇଥାଏ। ପରିବର୍ତ୍ତନଗୁଡିକ ସମସ୍ତ ଆଇଟମ୍ ମେଟାଡାଟା କିମ୍ବା ସମସ୍ତ ବିଷୟବସ୍ତୁ (ବିଟ୍ସ୍ଟ୍ରିମ୍) ପାଇଁ କରାଯାଇପାରିବ।", + + "community-access-control-title": "ଏହି ଫର୍ମ ଆପଣଙ୍କୁ ଏହି ସମ୍ପ୍ରଦାୟ ତଳେ ଥିବା କୌଣସି ସଂଗ୍ରହ ଦ୍ୱାରା ମାଲିକାନା କରାଯାଇଥିବା ସମସ୍ତ ଆଇଟମ୍ ପାଇଁ ପ୍ରବେଶ ପରିସ୍ଥିତିରେ ପରିବର୍ତ୍ତନ କରିବାକୁ ଅନୁମତି ଦେଇଥାଏ। ପରିବର୍ତ୍ତନଗୁଡିକ ସମସ୍ତ ଆଇଟମ୍ ମେଟାଡାଟା କିମ୍ବା ସମସ୍ତ ବିଷୟବସ୍ତୁ (ବିଟ୍ସ୍ଟ୍ରିମ୍) ପାଇଁ କରାଯାଇପାରିବ।", + + "access-control-item-header-toggle": "ଆଇଟମ୍ ମେଟାଡାଟା", + + "access-control-item-toggle.enable": "ଆଇଟମ୍ ମେଟାଡାଟାରେ ପରିବର୍ତ୍ତନ କରିବାର ବିକଳ୍ପ ସକ୍ଷମ କରନ୍ତୁ", + + "access-control-item-toggle.disable": "ଆଇଟମ୍ ମେଟାଡାଟାରେ ପରିବର୍ତ୍ତନ କରିବାର ବିକଳ୍ପ ଅକ୍ଷମ କରନ୍ତୁ", + + "access-control-bitstream-header-toggle": "ବିଟ୍ସ୍ଟ୍ରିମ୍", + + "access-control-bitstream-toggle.enable": "ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକରେ ପରିବର୍ତ୍ତନ କରିବାର ବିକଳ୍ପ ସକ୍ଷମ କରନ୍ତୁ", + + "access-control-bitstream-toggle.disable": "ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକରେ ପରିବର୍ତ୍ତନ କରିବାର ବିକଳ୍ପ ଅକ୍ଷମ କରନ୍ତୁ", + + "access-control-mode": "ମୋଡ୍", + + "access-control-access-conditions": "ପ୍ରବେଶ ପରିସ୍ଥିତି", + + "access-control-no-access-conditions-warning-message": "ବର୍ତ୍ତମାନ, ନିମ୍ନରେ କୌଣସି ପ୍ରବେଶ ପରିସ୍ଥିତି ଉଲ୍ଲେଖ କରାଯାଇନାହିଁ। ଯଦି ଏହା କାର୍ଯ୍ୟକାରୀ ହୁଏ, ଏହା ବର୍ତ୍ତମାନର ପ୍ରବେଶ ପରିସ୍ଥିତିଗୁଡିକୁ ସଂଗ୍ରହ ଦ୍ୱାରା ଅନୁବଂଶାନୁକ୍ରମେ ପ୍ରାପ୍ତ ଡିଫଲ୍ଟ ପ୍ରବେଶ ପରିସ୍ଥିତିଗୁଡିକ ସହିତ ପ୍ରତିସ୍ଥାପନ କରିବ।", + + "access-control-replace-all": "ପ୍ରବେଶ ପରିସ୍ଥିତିଗୁଡିକୁ ପ୍ରତିସ୍ଥାପନ କରନ୍ତୁ", + + "access-control-add-to-existing": "ବିଦ୍ୟମାନ ଗୁଡିକରେ ଯୋଡନ୍ତୁ", + + "access-control-limit-to-specific": "ପରିବର୍ତ୍ତନଗୁଡିକୁ ସ୍ଥିର ବିଟ୍ସ୍ଟ୍ରିମ୍ ପାଇଁ ସୀମିତ କରନ୍ତୁ", + + "access-control-process-all-bitstreams": "ଆଇଟମ୍ ର ସମସ୍ତ ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକୁ ଅପଡେଟ୍ କରନ୍ତୁ", + + "access-control-bitstreams-selected": "ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକ ଚୟନ କରାଯାଇଛି", + + "access-control-bitstreams-select": "ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକ ଚୟନ କରନ୍ତୁ", + + "access-control-cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "access-control-execute": "କାର୍ଯ୍ୟକାରୀ କରନ୍ତୁ", + + "access-control-add-more": "ଅଧିକ ଯୋଡନ୍ତୁ", + + "access-control-remove": "ପ୍ରବେଶ ପରିସ୍ଥିତି ଅପସାରଣ କରନ୍ତୁ", + + "access-control-select-bitstreams-modal.title": "ବିଟ୍ସ୍ଟ୍ରିମ୍ ଗୁଡିକ ଚୟନ କରନ୍ତୁ", + + "access-control-select-bitstreams-modal.no-items": "ଦେଖାଇବାକୁ କୌଣସି ଆଇଟମ୍ ନାହିଁ।", + + "access-control-select-bitstreams-modal.close": "ବନ୍ଦ କରନ୍ତୁ", + + "access-control-option-label": "ପ୍ରବେଶ ପରିସ୍ଥିତି ପ୍ରକାର", + + "access-control-option-note": "ଚୟନିତ ବସ୍ତୁଗୁଡିକୁ ପ୍ରୟୋଗ କରିବାକୁ ଏକ ପ୍ରବେଶ ପରିସ୍ଥିତି ଚୟନ କରନ୍ତୁ।", + + "access-control-option-start-date": "ପ୍ରବେଶ ଦିଅନ୍ତୁ ଯେଉଁଠାରୁ", + + "access-control-option-start-date-note": "ଯେଉଁ ତାରିଖରୁ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ପରିସ୍ଥିତି ପ୍ରୟୋଗ କରାଯାଇଛି ତାହା ଚୟନ କରନ୍ତୁ", + + "access-control-option-end-date": "ପ୍ରବେଶ ଦିଅନ୍ତୁ ଯେପର୍ଯ୍ୟନ୍ତ", + + "access-control-option-end-date-note": "ଯେଉଁ ତାରିଖ ପର୍ଯ୍ୟନ୍ତ ସମ୍ବନ୍ଧିତ ପ୍ରବେଶ ପରିସ୍ଥିତି ପ୍ରୟୋଗ କରାଯାଇଛି ତାହା ଚୟନ କରନ୍ତୁ", + + "vocabulary-treeview.search.form.add": "ଯୋଡନ୍ତୁ", + + "admin.notifications.publicationclaim.breadcrumbs": "ପ୍ରକାଶନ ଦାବି", + + "admin.notifications.publicationclaim.page.title": "ପ୍ରକାଶନ ଦାବି", + + "coar-notify-support.title": "COAR ନୋଟିଫାଇ ପ୍ରୋଟୋକଲ୍", + + "coar-notify-support-title.content": "ଏଠାରେ, ଆମେ COAR ନୋଟିଫାଇ ପ୍ରୋଟୋକଲ୍ ପାଇଁ ସମ୍ପୂର୍ଣ୍ଣ ସମର୍ଥନ ପ୍ରଦାନ କରୁ, ଯାହା ରିପୋଜିଟରୀ ମଧ୍ୟରେ ସଂଚାରକୁ ଉନ୍ନତ କରିବା ପାଇଁ ଡିଜାଇନ୍ କରାଯାଇଛି। COAR ନୋଟିଫାଇ ପ୍ରୋଟୋକଲ୍ ବିଷୟରେ ଅଧିକ ଜାଣିବା ପାଇଁ, COAR ନୋଟିଫାଇ ୱେବସାଇଟ୍ ପରିଦର୍ଶନ କରନ୍ତୁ।", + + "coar-notify-support.ldn-inbox.title": "LDN ଇନବକ୍ସ", + + "coar-notify-support.ldn-inbox.content": "ଆପଣଙ୍କର ସୁବିଧା ପାଇଁ, ଆମର LDN (ଲିଙ୍କ୍ ଡାଟା ନୋଟିଫିକେସନ୍) ଇନବକ୍ସ {{ ldnInboxUrl }} ରେ ସହଜରେ ପ୍ରବେଶଯୋଗ୍ୟ। LDN ଇନବକ୍ସ ସୁଗମ ସଂଚାର ଏବଂ ତଥ୍ୟ ବିନିମୟକୁ ସକ୍ଷମ କରେ, ଯାହା କାର୍ଯ୍ୟକ୍ଷମ ଏବଂ ପ୍ରଭାବଶାଳୀ ସହଯୋଗକୁ ନିଶ୍ଚିତ କରେ।", + + "coar-notify-support.message-moderation.title": "ସନ୍ଦେଶ ମଡରେସନ୍", + + "coar-notify-support.message-moderation.content": "ଏକ ସୁରକ୍ଷିତ ଏବଂ ଉତ୍ପାଦନଶୀଳ ପରିବେଶ ନିଶ୍ଚିତ କରିବା ପାଇଁ, ସମସ୍ତ ଇନକମିଂ LDN ସନ୍ଦେଶଗୁଡିକ ମଡରେଟ୍ କରାଯାଇଥାଏ। ଯଦି ଆପଣ ଆମ ସହିତ ସୂଚନା ବିନିମୟ କରିବାକୁ ଯୋଜନା କରୁଛନ୍ତି, ଦୟାକରି ଆମର ସ୍ୱତନ୍ତ୍ର", + + "coar-notify-support.message-moderation.feedback-form": " ଫିଡବ୍ୟାକ୍ ଫର୍ମ ମାଧ୍ୟମରେ ଯୋଗାଯୋଗ କରନ୍ତୁ।", + + "service.overview.delete.header": "ସେବା ଡିଲିଟ୍ କରନ୍ତୁ", + + "ldn-registered-services.title": "ନିବନ୍ଧିତ ସେବାଗୁଡିକ", + "ldn-registered-services.table.name": "ନାମ", + + "ldn-registered-services.table.description": "ବର୍ଣ୍ଣନା", + "ldn-registered-services.table.status": "ସ୍ଥିତି", + "ldn-registered-services.table.action": "କାର୍ଯ୍ୟ", + "ldn-registered-services.new": "ନୂତନ", + "ldn-registered-services.new.breadcrumbs": "ପଞ୍ଜିକୃତ ସେବାଗୁଡ଼ିକ", + + "ldn-service.overview.table.enabled": "ସକ୍ରିୟ", + "ldn-service.overview.table.disabled": "ନିଷ୍କ୍ରିୟ", + "ldn-service.overview.table.clickToEnable": "ସକ୍ରିୟ କରିବା ପାଇଁ କ୍ଲିକ୍ କରନ୍ତୁ", + "ldn-service.overview.table.clickToDisable": "ନିଷ୍କ୍ରିୟ କରିବା ପାଇଁ କ୍ଲିକ୍ କରନ୍ତୁ", + + "ldn-edit-registered-service.title": "ସେବା ସମ୍ପାଦନ କରନ୍ତୁ", + "ldn-create-service.title": "ସେବା ସୃଷ୍ଟି କରନ୍ତୁ", + "service.overview.create.modal": "ସେବା ସୃଷ୍ଟି କରନ୍ତୁ", + "service.overview.create.body": "ଦୟାକରି ଏହି ସେବାର ସୃଷ୍ଟି ନିଶ୍ଚିତ କରନ୍ତୁ।", + "ldn-service-status": "ସ୍ଥିତି", + "service.confirm.create": "ସୃଷ୍ଟି କରନ୍ତୁ", + "service.refuse.create": "ବାତିଲ୍ କରନ୍ତୁ", + "ldn-register-new-service.title": "ଏକ ନୂତନ ସେବା ପଞ୍ଜିକରଣ କରନ୍ତୁ", + "ldn-new-service.form.label.submit": "ସଂରକ୍ଷଣ କରନ୍ତୁ", + "ldn-new-service.form.label.name": "ନାମ", + "ldn-new-service.form.label.description": "ବର୍ଣ୍ଣନା", + "ldn-new-service.form.label.url": "ସେବା URL", + "ldn-new-service.form.label.ip-range": "ସେବା IP ପରିସର", + "ldn-new-service.form.label.score": "ବିଶ୍ୱାସର ସ୍ତର", + "ldn-new-service.form.label.ldnUrl": "LDN ଇନବକ୍ସ URL", + "ldn-new-service.form.placeholder.name": "ଦୟାକରି ସେବାର ନାମ ପ୍ରଦାନ କରନ୍ତୁ", + + "ldn-new-service.form.placeholder.description": "ଦୟାକରି ଆପଣଙ୍କ ସେବା ସମ୍ବନ୍ଧୀୟ ଏକ ବର୍ଣ୍ଣନା ପ୍ରଦାନ କରନ୍ତୁ", + "ldn-new-service.form.placeholder.url": "ଦୟାକରି ସେବା ସମ୍ବନ୍ଧୀୟ ଅଧିକ ସୂଚନା ପାଇଁ URL ଇନପୁଟ୍ କରନ୍ତୁ", + "ldn-new-service.form.placeholder.lowerIp": "IPv4 ରେଞ୍ଜର ନିମ୍ନ ସୀମା", + "ldn-new-service.form.placeholder.upperIp": "IPv4 ରେଞ୍ଜର ଉଚ୍ଚ ସୀମା", + "ldn-new-service.form.placeholder.ldnUrl": "ଦୟାକରି LDN ଇନବକ୍ସର URL ନିର୍ଦ୍ଦିଷ୍ଟ କରନ୍ତୁ", + "ldn-new-service.form.placeholder.score": "ଦୟାକରି 0 ରୁ 1 ମଧ୍ୟରେ ଏକ ମୂଲ୍ୟ ପ୍ରବେଶ କରନ୍ତୁ। ଦଶମିକ ସେପାରେଟର ଭାବରେ “.” ବ୍ୟବହାର କରନ୍ତୁ", + "ldn-service.form.label.placeholder.default-select": "ଏକ ପ୍ୟାଟର୍ନ ଚୟନ କରନ୍ତୁ", + + "ldn-service.form.pattern.ack-accept.label": "ସ୍ୱୀକାର ଏବଂ ଗ୍ରହଣ କରନ୍ତୁ", + "ldn-service.form.pattern.ack-accept.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ଅନୁରୋଧ (ଅଫର୍)କୁ ସ୍ୱୀକାର ଏବଂ ଗ୍ରହଣ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ। ଏହା ଅନୁରୋଧ ଉପରେ କାର୍ଯ୍ୟ କରିବାର ଇଚ୍ଛାକୁ ସୂଚିତ କରେ।", + "ldn-service.form.pattern.ack-accept.category": "ସ୍ୱୀକୃତି", + + "ldn-service.form.pattern.ack-reject.label": "ସ୍ୱୀକାର ଏବଂ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", + "ldn-service.form.pattern.ack-reject.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ଅନୁରୋଧ (ଅଫର୍)କୁ ସ୍ୱୀକାର ଏବଂ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ। ଏହା ଅନୁରୋଧ ସମ୍ବନ୍ଧୀୟ କୌଣସି ଅତିରିକ୍ତ କାର୍ଯ୍ୟକୁ ସୂଚିତ କରେ ନାହିଁ।", + "ldn-service.form.pattern.ack-reject.category": "ସ୍ୱୀକୃତି", + + "ldn-service.form.pattern.ack-tentative-accept.label": "ସ୍ୱୀକାର ଏବଂ ଅନିଶ୍ଚିତ ଭାବରେ ଗ୍ରହଣ କରନ୍ତୁ", + "ldn-service.form.pattern.ack-tentative-accept.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ଅନୁରୋଧ (ଅଫର୍)କୁ ସ୍ୱୀକାର ଏବଂ ଅନିଶ୍ଚିତ ଭାବରେ ଗ୍ରହଣ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ। ଏହା କାର୍ଯ୍ୟ କରିବାର ଇଚ୍ଛାକୁ ସୂଚିତ କରେ, ଯାହା ପରିବର୍ତ୍ତନ ହୋଇପାରେ।", + "ldn-service.form.pattern.ack-tentative-accept.category": "ସ୍ୱୀକୃତି", + + "ldn-service.form.pattern.ack-tentative-reject.label": "ସ୍ୱୀକାର ଏବଂ ଅନିଶ୍ଚିତ ଭାବରେ ପ୍ରତ୍ୟାଖ୍ୟାନ କରନ୍ତୁ", + "ldn-service.form.pattern.ack-tentative-reject.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ଅନୁରୋଧ (ଅଫର୍)କୁ ସ୍ୱୀକାର ଏବଂ ଅନିଶ୍ଚିତ ଭାବରେ ପ୍ରତ୍ୟାଖ୍ୟାନ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ। ଏହା ପରିବର୍ତ୍ତନ ବିଷୟରେ କୌଣସି ଅତିରିକ୍ତ କାର୍ଯ୍ୟକୁ ସୂଚିତ କରେ ନାହିଁ।", + "ldn-service.form.pattern.ack-tentative-reject.category": "ସ୍ୱୀକୃତି", + + "ldn-service.form.pattern.announce-endorsement.label": "ସମର୍ଥନ ଘୋଷଣା କରନ୍ତୁ", + "ldn-service.form.pattern.announce-endorsement.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ସମର୍ଥନର ଅସ୍ତିତ୍ୱ ଘୋଷଣା କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ, ଯାହା ସମର୍ଥିତ ସମ୍ବଳକୁ ସନ୍ଦର୍ଭିତ କରେ।", + "ldn-service.form.pattern.announce-endorsement.category": "ଘୋଷଣା", + + "ldn-service.form.pattern.announce-ingest.label": "ଇନଜେଷ୍ଟ ଘୋଷଣା କରନ୍ତୁ", + "ldn-service.form.pattern.announce-ingest.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ସମ୍ବଳ ଇନଜେଷ୍ଟ ହୋଇଛି ବୋଲି ଘୋଷଣା କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", + "ldn-service.form.pattern.announce-ingest.category": "ଘୋଷଣା", + + "ldn-service.form.pattern.announce-relationship.label": "ସମ୍ପର୍କ ଘୋଷଣା କରନ୍ତୁ", + "ldn-service.form.pattern.announce-relationship.description": "ଏହି ପ୍ୟାଟର୍ନ ଦୁଇଟି ସମ୍ବଳ ମଧ୍ୟରେ ଏକ ସମ୍ପର୍କ ଘୋଷଣା କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", + "ldn-service.form.pattern.announce-relationship.category": "ଘୋଷଣା", + + "ldn-service.form.pattern.announce-review.label": "ସମୀକ୍ଷା ଘୋଷଣା କରନ୍ତୁ", + "ldn-service.form.pattern.announce-review.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ ସମୀକ୍ଷାର ଅସ୍ତିତ୍ୱ ଘୋଷଣା କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ, ଯାହା ସମୀକ୍ଷିତ ସମ୍ବଳକୁ ସନ୍ଦର୍ଭିତ କରେ।", + "ldn-service.form.pattern.announce-review.category": "ଘୋଷଣା", + + "ldn-service.form.pattern.announce-service-result.label": "ସେବା ଫଳାଫଳ ଘୋଷଣା କରନ୍ତୁ", + "ldn-service.form.pattern.announce-service-result.description": "ଏହି ପ୍ୟାଟର୍ନ ଏକ 'ସେବା ଫଳାଫଳ'ର ଅସ୍ତିତ୍ୱ ଘୋଷଣା କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ, ଯାହା ସମ୍ବନ୍ଧିତ ସମ୍ବଳକୁ ସନ୍ଦର୍ଭିତ କରେ।", + "ldn-service.form.pattern.announce-service-result.category": "ଘୋଷଣା", + + "ldn-service.form.pattern.request-endorsement.label": "ସମର୍ଥନ ଅନୁରୋଧ କରନ୍ତୁ", + "ldn-service.form.pattern.request-endorsement.description": "ଏହି ପ୍ୟାଟର୍ନ ଉତ୍ପତ୍ତି ସିଷ୍ଟମ ଦ୍ୱାରା ମାଲିକାନା କରାଯାଇଥିବା ଏକ ସମ୍ବଳର ସମର୍ଥନ ଅନୁରୋଧ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", + "ldn-service.form.pattern.request-endorsement.category": "ଅନୁରୋଧ", + + "ldn-service.form.pattern.request-ingest.label": "ଇନଜେଷ୍ଟ ଅନୁରୋଧ କରନ୍ତୁ", + "ldn-service.form.pattern.request-ingest.description": "ଏହି ପ୍ୟାଟର୍ନ ଲକ୍ଷ୍ୟ ସିଷ୍ଟମ ଏକ ସମ୍ବଳ ଇନଜେଷ୍ଟ କରିବା ପାଇଁ ଅନୁରୋଧ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", + "ldn-service.form.pattern.request-ingest.category": "ଅନୁରୋଧ", + + "ldn-service.form.pattern.request-review.label": "ସମୀକ୍ଷା ଅନୁରୋଧ କରନ୍ତୁ", + "ldn-service.form.pattern.request-review.description": "ଏହି ପ୍ୟାଟର୍ନ ଉତ୍ପତ୍ତି ସିଷ୍ଟମ ଦ୍ୱାରା ମାଲିକାନା କରାଯାଇଥିବା ଏକ ସମ୍ବଳର ସମୀକ୍ଷା ଅନୁରୋଧ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", + "ldn-service.form.pattern.request-review.category": "ଅନୁରୋଧ", + + "ldn-service.form.pattern.undo-offer.label": "ଅଫର୍ ବାତିଲ୍ କରନ୍ତୁ", + "ldn-service.form.pattern.undo-offer.description": "ଏହି ପ୍ୟାଟର୍ନ ପୂର୍ବରୁ କରାଯାଇଥିବା ଏକ ଅଫର୍ (ପ୍ରତ୍ୟାହାର)କୁ ବାତିଲ୍ କରିବା ପାଇଁ ବ୍ୟବହୃତ ହୁଏ।", + "ldn-service.form.pattern.undo-offer.category": "ବାତିଲ୍", + + "ldn-new-service.form.label.placeholder.selectedItemFilter": "କୌଣସି ଆଇଟମ୍ ଫିଲ୍ଟର୍ ଚୟନ କରାଯାଇନାହିଁ", + "ldn-new-service.form.label.ItemFilter": "ଆଇଟମ୍ ଫିଲ୍ଟର୍", + "ldn-new-service.form.label.automatic": "ସ୍ୱୟଂଚାଳିତ", + "ldn-new-service.form.error.name": "ନାମ ଆବଶ୍ୟକ", + "ldn-new-service.form.error.url": "URL ଆବଶ୍ୟକ", + "ldn-new-service.form.error.ipRange": "ଦୟାକରି ଏକ ବୈଧ IP ରେଞ୍ଜ ପ୍ରବେଶ କରନ୍ତୁ", + "ldn-new-service.form.hint.ipRange": "ଦୟାକରି ଉଭୟ ରେଞ୍ଜ ସୀମାରେ ଏକ ବୈଧ IpV4 ପ୍ରବେଶ କରନ୍ତୁ (ଟିପ୍ପଣୀ: ଏକକ IP ପାଇଁ, ଦୟାକରି ଉଭୟ କ୍ଷେତ୍ରରେ ସମାନ ମୂଲ୍ୟ ପ୍ରବେଶ କରନ୍ତୁ)", + "ldn-new-service.form.error.ldnurl": "LDN URL ଆବଶ୍ୟକ", + "ldn-new-service.form.error.patterns": "ଅତିକମରେ ଏକ ପ୍ୟାଟର୍ନ୍ ଆବଶ୍ୟକ", + "ldn-new-service.form.error.score": "ଦୟାକରି ଏକ ବୈଧ ସ୍କୋର୍ ପ୍ରବେଶ କରନ୍ତୁ (0 ରୁ 1 ମଧ୍ୟରେ)। ଦଶମିକ ସେପାରେଟର ଭାବରେ “.” ବ୍ୟବହାର କରନ୍ତୁ", + + "ldn-new-service.form.label.inboundPattern": "ସମର୍ଥିତ ପ୍ୟାଟର୍ନ୍", + "ldn-new-service.form.label.addPattern": "+ ଅଧିକ ଯୋଡନ୍ତୁ", + "ldn-new-service.form.label.removeItemFilter": "ଅପସାରଣ କରନ୍ତୁ", + "ldn-register-new-service.breadcrumbs": "ନୂତନ ସେବା", + "service.overview.delete.body": "ଆପଣ ଏହି ସେବାକୁ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି?", + "service.overview.edit.body": "ଆପଣ ପରିବର୍ତ୍ତନଗୁଡିକୁ ନିଶ୍ଚିତ କରନ୍ତି କି?", + "service.overview.edit.modal": "ସେବା ସଂପାଦନ କରନ୍ତୁ", + "service.detail.update": "ନିଶ୍ଚିତ କରନ୍ତୁ", + "service.detail.return": "ବାତିଲ୍ କରନ୍ତୁ", + "service.overview.reset-form.body": "ଆପଣ ପରିବର୍ତ୍ତନଗୁଡିକୁ ପରିତ୍ୟାଗ କରି ଛାଡିବାକୁ ଚାହୁଁଛନ୍ତି କି?", + "service.overview.reset-form.modal": "ପରିବର୍ତ୍ତନଗୁଡିକୁ ପରିତ୍ୟାଗ କରନ୍ତୁ", + "service.overview.reset-form.reset-confirm": "ପରିତ୍ୟାଗ କରନ୍ତୁ", + "admin.registries.services-formats.modify.success.head": "ସଫଳ ସଂପାଦନ", + "admin.registries.services-formats.modify.success.content": "ସେବା ସଂପାଦିତ ହୋଇଛି", + "admin.registries.services-formats.modify.failure.head": "ସଂପାଦନ ବିଫଳ", + "admin.registries.services-formats.modify.failure.content": "ସେବା ସଂପାଦିତ ହୋଇନାହିଁ", + "ldn-service-notification.created.success.title": "ସଫଳ ସୃଷ୍ଟି", + "ldn-service-notification.created.success.body": "ସେବା ସୃଷ୍ଟି ହୋଇଛି", + "ldn-service-notification.created.failure.title": "ସୃଷ୍ଟି ବିଫଳ", + "ldn-service-notification.created.failure.body": "ସେବା ସୃଷ୍ଟି ହୋଇନାହିଁ", + "ldn-service-notification.created.warning.title": "ଦୟାକରି ଅତିକମରେ ଗୋଟିଏ ଇନବାଉଣ୍ଡ୍ ପ୍ୟାଟର୍ନ୍ ଚୟନ କରନ୍ତୁ", + "ldn-enable-service.notification.success.title": "ସଫଳ ସ୍ଥିତି ଅଦ୍ୟତନ", + "ldn-enable-service.notification.success.content": "ସେବା ସ୍ଥିତି ଅଦ୍ୟତନ ହୋଇଛି", + "ldn-service-delete.notification.success.title": "ସଫଳ ବିଲୋପ", + "ldn-service-delete.notification.success.content": "ସେବା ଡିଲିଟ୍ ହୋଇଛି", + "ldn-service-delete.notification.error.title": "ବିଲୋପ ବିଫଳ", + "ldn-service-delete.notification.error.content": "ସେବା ଡିଲିଟ୍ ହୋଇନାହିଁ", + "service.overview.reset-form.reset-return": "ବାତିଲ୍ କରନ୍ତୁ", + "service.overview.delete": "ସେବା ଡିଲିଟ୍ କରନ୍ତୁ", + "ldn-edit-service.title": "ସେବା ସଂପାଦନ କରନ୍ତୁ", + "ldn-edit-service.form.label.name": "ନାମ", + "ldn-edit-service.form.label.description": "ବର୍ଣ୍ଣନା", + "ldn-edit-service.form.label.url": "ସେବା URL", + "ldn-edit-service.form.label.ldnUrl": "LDN ଇନବକ୍ସ URL", + "ldn-edit-service.form.label.inboundPattern": "ଇନବାଉଣ୍ଡ୍ ପ୍ୟାଟର୍ନ୍", + "ldn-edit-service.form.label.noInboundPatternSelected": "କୌଣସି ଇନବାଉଣ୍ଡ୍ ପ୍ୟାଟର୍ନ୍ ନାହିଁ", + "ldn-edit-service.form.label.selectedItemFilter": "ଚୟନିତ ଆଇଟମ୍ ଫିଲ୍ଟର୍", + "ldn-edit-service.form.label.selectItemFilter": "କୌଣସି ଆଇଟମ୍ ଫିଲ୍ଟର୍ ନାହିଁ", + "ldn-edit-service.form.label.automatic": "ସ୍ୱୟଂଚାଳିତ", + "ldn-edit-service.form.label.addInboundPattern": "+ ଅଧିକ ଯୋଡନ୍ତୁ", + "ldn-edit-service.form.label.submit": "ସେଭ୍ କରନ୍ତୁ", + "ldn-edit-service.breadcrumbs": "ସେବା ସଂପାଦନ କରନ୍ତୁ", + "ldn-service.control-constaint-select-none": "କିଛି ମଧ୍ୟ ଚୟନ କରନ୍ତୁ ନାହିଁ", + + "ldn-register-new-service.notification.error.title": "ତ୍ରୁଟି", + "ldn-register-new-service.notification.error.content": "ଏହି ପ୍ରକ୍ରିୟା ସୃଷ୍ଟି କରିବା ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି", + "ldn-register-new-service.notification.success.title": "ସଫଳତା", + "ldn-register-new-service.notification.success.content": "ପ୍ରକ୍ରିୟା ସଫଳତାର ସହିତ ସୃଷ୍ଟି ହୋଇଛି", + + "submission.sections.notify.info": "ଚୟନିତ ସେବା ଆଇଟମ୍ ସହିତ ସୁସଂଗତ ଅଟେ ଏହାର ବର୍ତ୍ତମାନ ସ୍ଥିତି ଅନୁଯାୟୀ। {{ service.name }}: {{ service.description }}", + + "item.page.endorsement": "ସମର୍ଥନ", + + "item.page.places": "ସମ୍ବନ୍ଧିତ ସ୍ଥାନଗୁଡିକ", + + "item.page.review": "ସମୀକ୍ଷା", + + "item.page.referenced": "ଦ୍ୱାରା ସନ୍ଦର୍ଭିତ", + + "item.page.supplemented": "ଦ୍ୱାରା ପରିପୂରକ", + + "menu.section.icon.ldn_services": "LDN ସେବା ସମୀକ୍ଷା", + + "menu.section.services": "LDN ସେବାଗୁଡିକ", + + "menu.section.services_new": "LDN ସେବା", + + "quality-assurance.topics.description-with-target": "ନିମ୍ନରେ ଆପଣ {{source}} ସହିତ ସବସ୍କ୍ରିପସନ୍ ରୁ ପ୍ରାପ୍ତ ସମସ୍ତ ବିଷୟଗୁଡିକ ଦେଖିପାରିବେ, ଯାହା ସମ୍ବନ୍ଧିତ ଅଟେ", + + "quality-assurance.events.description": "ନିମ୍ନରେ ଚୟନିତ ବିଷୟ {{topic}} ପାଇଁ ସମସ୍ତ ସୁଚନାଗୁଡିକର ତାଲିକା, ଯାହା {{source}} ସହିତ ସମ୍ବନ୍ଧିତ।", + + "quality-assurance.events.description-with-topic-and-target": "ନିମ୍ନରେ ଚୟନିତ ବିଷୟ {{topic}} ପାଇଁ ସମସ୍ତ ସୁଚନାଗୁଡିକର ତାଲିକା, ଯାହା {{source}} ସହିତ ସମ୍ବନ୍ଧିତ ଏବଂ ", + + "quality-assurance.event.table.event.message.serviceUrl": "ଅଭିନେତା:", + + "quality-assurance.event.table.event.message.link": "ଲିଙ୍କ୍:", + + "service.detail.delete.cancel": "ବାତିଲ୍ କରନ୍ତୁ", + + "service.detail.delete.button": "ସେବା ଡିଲିଟ୍ କରନ୍ତୁ", + + "service.detail.delete.header": "ସେବା ଡିଲିଟ୍ କରନ୍ତୁ", + + "service.detail.delete.body": "ଆପଣ ବର୍ତ୍ତମାନ ସେବାକୁ ଡିଲିଟ୍ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି?", + + "service.detail.delete.confirm": "ସେବା ଡିଲିଟ୍ କରନ୍ତୁ", + + "service.detail.delete.success": "ସେବା ସଫଳତାର ସହିତ ଡିଲିଟ୍ ହୋଇଛି।", + + "service.detail.delete.error": "ସେବା ଡିଲିଟ୍ କରିବା ସମୟରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "service.overview.table.id": "ସେବା ID", + + "service.overview.table.name": "ନାମ", + + "service.overview.table.start": "ଆରମ୍ଭ ସମୟ (UTC)", + + "service.overview.table.status": "ସ୍ଥିତି", + + "service.overview.table.user": "ଉପଯୋଗକର୍ତ୍ତା", + + "service.overview.title": "ସେବା ସମୀକ୍ଷା", + + "service.overview.breadcrumbs": "ସେବା ସମୀକ୍ଷା", + + "service.overview.table.actions": "କାର୍ଯ୍ୟଗୁଡିକ", + + "service.overview.table.description": "ବର୍ଣ୍ଣନା", + + "submission.sections.submit.progressbar.coarnotify": "COAR ନୋଟିଫାଇ", + + "submission.section.section-coar-notify.control.request-review.label": "ଆପଣ ନିମ୍ନଲିଖିତ ସେବାଗୁଡିକ ମଧ୍ୟରୁ ଗୋଟିଏକୁ ସମୀକ୍ଷା ଅନୁରୋଧ କରିପାରିବେ", + + "submission.section.section-coar-notify.control.request-endorsement.label": "ଆପଣ ନିମ୍ନଲିଖିତ ଓଭରଲେ ଜର୍ନାଲଗୁଡିକ ମଧ୍ୟରୁ ଗୋଟିଏକୁ ସମର୍ଥନ ଅନୁରୋଧ କରିପାରିବେ", + + "submission.section.section-coar-notify.control.request-ingest.label": "ଆପଣ ନିମ୍ନଲିଖିତ ସେବାଗୁଡିକ ମଧ୍ୟରୁ ଗୋଟିଏକୁ ଆପଣଙ୍କ ସବମିସନ୍ର ଏକ କପି ଇନଜେଷ୍ଟ କରିବାକୁ ଅନୁରୋଧ କରିପାରିବେ", + + "submission.section.section-coar-notify.dropdown.no-data": "କୌଣସି ଡାଟା ଉପଲବ୍ଧ ନାହିଁ", + + "submission.section.section-coar-notify.dropdown.select-none": "କିଛି ମଧ୍ୟ ଚୟନ କରନ୍ତୁ ନାହିଁ", + + "submission.section.section-coar-notify.small.notification": "ଏହି ଆଇଟମ୍ର {{ pattern }} ପାଇଁ ଏକ ସେବା ଚୟନ କରନ୍ତୁ", + + "submission.section.section-coar-notify.selection.description": "ଚୟନିତ ସେବାର ବର୍ଣ୍ଣନା:", + + "submission.section.section-coar-notify.selection.no-description": "ଅତିରିକ୍ତ ସୂଚନା ଉପଲବ୍ଧ ନାହିଁ", + + "submission.section.section-coar-notify.notification.error": "ଚୟନିତ ସେବା ବର୍ତ୍ତମାନର ଆଇଟମ୍ ପାଇଁ ଉପଯୁକ୍ତ ନୁହେଁ। ଦୟାକରି ବର୍ଣ୍ଣନା ଯାଞ୍ଚ କରନ୍ତୁ ଏବଂ ଏହି ସେବା ଦ୍ୱାରା କେଉଁ ରେକର୍ଡ୍ ପରିଚାଳିତ ହୋଇପାରିବ ତାହା ବିଷୟରେ ସୂଚନା ପାଇଁ।", + + "submission.section.section-coar-notify.info.no-pattern": "କୌଣସି କଂଫିଗରେବଲ୍ ପ୍ୟାଟର୍ନ୍ ମିଳିଲା ନାହିଁ।", + + "error.validation.coarnotify.invalidfilter": "ଅବୈଧ ଫିଲ୍ଟର୍, ଦୟାକରି ଅନ୍ୟ ସେବା କିମ୍ବା କିଛି ମଧ୍ୟ ନାହିଁ ଚୟନ କରିବାକୁ ଚେଷ୍ଟା କରନ୍ତୁ।", + + "request-status-alert-box.accepted": " {{ serviceName }} ପାଇଁ ଅନୁରୋଧିତ {{ offerType }} ଗ୍ରହଣ କରାଯାଇଛି।", + + "request-status-alert-box.rejected": " {{ serviceName }} ପାଇଁ ଅନୁରୋଧିତ {{ offerType }} ପ୍ରତ୍ୟାଖ୍ୟାନ କରାଯାଇଛି।", + + "request-status-alert-box.tentative_rejected": " {{ serviceName }} ପାଇଁ ଅନୁରୋଧିତ {{ offerType }} ଅନିଶ୍ଚିତ ଭାବରେ ପ୍ରତ୍ୟାଖ୍ୟାନ କରାଯାଇଛି। ସଂଶୋଧନ ଆବଶ୍ୟକ", + + "request-status-alert-box.requested": " {{ serviceName }} ପାଇଁ ଅନୁରୋଧିତ {{ offerType }} ବିଚାରାଧୀନ ଅଛି।", + + "ldn-service-button-mark-inbound-deletion": "ଡିଲିସନ୍ ପାଇଁ ସମର୍ଥିତ ପ୍ୟାଟର୍ନ୍ ଚିହ୍ନିତ କରନ୍ତୁ", + + "ldn-service-button-unmark-inbound-deletion": "ଡିଲିସନ୍ ପାଇଁ ସମର୍ଥିତ ପ୍ୟାଟର୍ନ୍ ଅଚିହ୍ନିତ କରନ୍ତୁ", + + "ldn-service-input-inbound-item-filter-dropdown": "ପ୍ୟାଟର୍ନ୍ ପାଇଁ ଆଇଟମ୍ ଫିଲ୍ଟର୍ ଚୟନ କରନ୍ତୁ", + + "ldn-service-input-inbound-pattern-dropdown": "ସେବା ପାଇଁ ଏକ ପ୍ୟାଟର୍ନ୍ ଚୟନ କରନ୍ତୁ", + + "ldn-service-overview-select-delete": "ଡିଲିସନ୍ ପାଇଁ ସେବା ଚୟନ କରନ୍ତୁ", + + "ldn-service-overview-select-edit": "LDN ସେବା ସଂପାଦନ କରନ୍ତୁ", + + "ldn-service-overview-close-modal": "ମୋଡାଲ୍ ବନ୍ଦ କରନ୍ତୁ", + + "ldn-service-usesActorEmailId": "ବିଜ୍ଞପ୍ତିରେ ଅଭିନେତା ଇମେଲ୍ ଆବଶ୍ୟକ କରେ", + + "ldn-service-usesActorEmailId-description": "ଯଦି ସକ୍ଷମ କରାଯାଏ, ପ୍ରାରମ୍ଭିକ ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକେ ସବ୍ମିଟର ଇମେଲ୍ ରେପୋଜିଟରି URL ପରିବର୍ତ୍ତେ ଅନ୍ତର୍ଭୁକ୍ତ ହେବ। ଏହା ସାଧାରଣତଃ ଅନୁମୋଦନ କିମ୍ବା ସମୀକ୍ଷା ସେବା ପାଇଁ ପ୍ରଯୁଜ୍ୟ।", + + "a-common-or_statement.label": "ଆଇଟମ୍ ପ୍ରକାର ହେଉଛି ଜର୍ଣ୍ଣାଲ ଆର୍ଟିକଲ୍ କିମ୍ବା ଡାଟାସେଟ୍", + + "always_true_filter.label": "ସର୍ବଦା ସତ୍ୟ", + + "automatic_processing_collection_filter_16.label": "ସ୍ୱୟଂଚାଳିତ ପ୍ରକ୍ରିୟାକରଣ", + + "dc-identifier-uri-contains-doi_condition.label": "URI ରେ DOI ଅନ୍ତର୍ଭୁକ୍ତ", + + "doi-filter.label": "DOI ଫିଲ୍ଟର୍", + + "driver-document-type_condition.label": "ଡକ୍ୟୁମେଣ୍ଟ ପ୍ରକାର ଡ୍ରାଇଭର୍ ସହିତ ସମାନ", + + "has-at-least-one-bitstream_condition.label": "ଅତିକମରେ ଗୋଟିଏ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + + "has-bitstream_filter.label": "ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + + "has-one-bitstream_condition.label": "ଗୋଟିଏ ବିଟଷ୍ଟ୍ରିମ୍ ଅଛି", + + "is-archived_condition.label": "ଆର୍କାଇଭ୍ ହୋଇଛି", + + "is-withdrawn_condition.label": "ପ୍ରତ୍ୟାହାର କରାଯାଇଛି", + + "item-is-public_condition.label": "ଆଇଟମ୍ ସାର୍ବଜନୀନ ଅଟେ", + + "journals_ingest_suggestion_collection_filter_18.label": "ଜର୍ଣ୍ଣାଲ୍ ଇନଜେଷ୍ଟ୍", + + "title-starts-with-pattern_condition.label": "ଆଖ୍ୟା ପ୍ୟାଟର୍ନ୍ ସହିତ ଆରମ୍ଭ ହୁଏ", + + "type-equals-dataset_condition.label": "ପ୍ରକାର ଡାଟାସେଟ୍ ସହିତ ସମାନ", + + "type-equals-journal-article_condition.label": "ପ୍ରକାର ଜର୍ଣ୍ଣାଲ୍ ଆର୍ଟିକଲ୍ ସହିତ ସମାନ", + + "ldn.no-filter.label": "କିଛି ନାହିଁ", + + "admin.notify.dashboard": "ଡ୍ୟାସବୋର୍ଡ୍", + + "menu.section.notify_dashboard": "ଡ୍ୟାସବୋର୍ଡ୍", + + "menu.section.coar_notify": "COAR ନୋଟିଫାଇ", + + "admin-notify-dashboard.title": "ନୋଟିଫାଇ ଡ୍ୟାସବୋର୍ଡ୍", + + "admin-notify-dashboard.description": "ନୋଟିଫାଇ ଡ୍ୟାସବୋର୍ଡ୍ ରେପୋଜିଟରିରେ COAR ନୋଟିଫାଇ ପ୍ରୋଟୋକଲ୍ ବ୍ୟବହାରକୁ ମନିଟର୍ କରେ। “ମେଟ୍ରିକ୍ସ” ଟ୍ୟାବରେ COAR ନୋଟିଫାଇ ପ୍ରୋଟୋକଲ୍ ବ୍ୟବହାର ସମ୍ବନ୍ଧୀୟ ପରିସଂଖ୍ୟାନ ଅନ୍ତର୍ଭୁକ୍ତ। “ଲଗ୍/ଇନବାଉଣ୍ଡ” ଏବଂ “ଲଗ୍/ଆଉଟବାଉଣ୍ଡ” ଟ୍ୟାବଗୁଡ଼ିକରେ ପ୍ରତ୍ୟେକ LDN ବାର୍ତ୍ତାର ସ୍ଥିତି ଖୋଜିବା ଏବଂ ଯାଞ୍ଚ କରିବା ସମ୍ଭବ, ଯାହା ଗ୍ରହଣ କିମ୍ବା ପ୍ରେରଣ କରାଯାଇଥାଏ।", + + "admin-notify-dashboard.metrics": "ମେଟ୍ରିକ୍ସ", + + "admin-notify-dashboard.received-ldn": "ଗ୍ରହଣ କରାଯାଇଥିବା LDN ର ସଂଖ୍ୟା", + + "admin-notify-dashboard.generated-ldn": "ଉତ୍ପାଦିତ LDN ର ସଂଖ୍ୟା", + + "admin-notify-dashboard.NOTIFY.incoming.accepted": "ଗ୍ରହଣ କରାଯାଇଛି", + + "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "ଗ୍ରହଣ କରାଯାଇଥିବା ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", + + "admin-notify-logs.NOTIFY.incoming.accepted": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ଗ୍ରହଣ କରାଯାଇଥିବା ବିଜ୍ଞପ୍ତି", + + "admin-notify-dashboard.NOTIFY.incoming.processed": "ପ୍ରକ୍ରିୟାକରଣ କରାଯାଇଥିବା LDN", + + "admin-notify-dashboard.NOTIFY.incoming.processed.description": "ପ୍ରକ୍ରିୟାକରଣ କରାଯାଇଥିବା ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", + + "admin-notify-logs.NOTIFY.incoming.processed": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ପ୍ରକ୍ରିୟାକରଣ କରାଯାଇଥିବା LDN", + + "admin-notify-logs.NOTIFY.incoming.failure": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ବିଫଳ ବିଜ୍ଞପ୍ତି", + + "admin-notify-dashboard.NOTIFY.incoming.failure": "ବିଫଳତା", + + "admin-notify-dashboard.NOTIFY.incoming.failure.description": "ବିଫଳ ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", + + "admin-notify-logs.NOTIFY.outgoing.failure": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ବିଫଳ ବିଜ୍ଞପ୍ତି", + + "admin-notify-dashboard.NOTIFY.outgoing.failure": "ବିଫଳତା", + + "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "ବିଫଳ ଆଉଟବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", + + "admin-notify-logs.NOTIFY.incoming.untrusted": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ଅବିଶ୍ୱସନୀୟ ବିଜ୍ଞପ୍ତି", + + "admin-notify-dashboard.NOTIFY.incoming.untrusted": "ଅବିଶ୍ୱସନୀୟ", + + "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "ଅବିଶ୍ୱସନୀୟ ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", + + "admin-notify-logs.NOTIFY.incoming.delivered": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ବିତରଣ କରାଯାଇଥିବା ବିଜ୍ଞପ୍ତି", + + "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "ସଫଳତାର ସହିତ ବିତରଣ କରାଯାଇଥିବା ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", + + "admin-notify-dashboard.NOTIFY.outgoing.delivered": "ବିତରଣ କରାଯାଇଛି", + + "admin-notify-logs.NOTIFY.outgoing.delivered": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ବିତରଣ କରାଯାଇଥିବା ବିଜ୍ଞପ୍ତି", + + "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "ସଫଳତାର ସହିତ ବିତରଣ କରାଯାଇଥିବା ଆଉଟବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି", + + "admin-notify-logs.NOTIFY.outgoing.queued": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ଧାଡିରେ ଥିବା ବିଜ୍ଞପ୍ତି", + + "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "ଧାଡିରେ ଥିବା ବିଜ୍ଞପ୍ତି", + + "admin-notify-dashboard.NOTIFY.outgoing.queued": "ଧାଡିରେ ଅଛି", + + "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "ବର୍ତ୍ତମାନ ପ୍ରଦର୍ଶିତ: ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଥିବା ବିଜ୍ଞପ୍ତି", + + "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଅଛି", + + "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଥିବା ବିଜ୍ଞପ୍ତି", + + "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "ଜଡିତ ଆଇଟମ୍", + + "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "ଇନବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି ସହିତ ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", + + "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "ଜଡିତ ଆଇଟମ୍", + + "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "ଆଉଟବାଉଣ୍ଡ ବିଜ୍ଞପ୍ତି ସହିତ ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", + + "admin.notify.dashboard.breadcrumbs": "ଡ୍ୟାସବୋର୍ଡ୍", + + "admin.notify.dashboard.inbound": "ଇନବାଉଣ୍ଡ ବାର୍ତ୍ତା", + + "admin.notify.dashboard.inbound-logs": "ଲଗ୍/ଇନବାଉଣ୍ଡ", + + "admin.notify.dashboard.filter": "ଫିଲ୍ଟର୍: ", + + "search.filters.applied.f.relateditem": "ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", + + "search.filters.applied.f.ldn_service": "LDN ସେବା", + + "search.filters.applied.f.notifyReview": "ନୋଟିଫାଇ ସମୀକ୍ଷା", + + "search.filters.applied.f.notifyEndorsement": "ନୋଟିଫାଇ ଅନୁମୋଦନ", + + "search.filters.applied.f.notifyRelation": "ନୋଟିଫାଇ ସମ୍ପର୍କ", + + "search.filters.applied.f.access_status": "ପ୍ରବେଶ ପ୍ରକାର", + + "search.filters.filter.queue_last_start_time.head": "ଶେଷ ପ୍ରକ୍ରିୟାକରଣ ସମୟ ", + + "search.filters.filter.queue_last_start_time.min.label": "ସର୍ବନିମ୍ନ ପରିସର", + + "search.filters.filter.queue_last_start_time.max.label": "ସର୍ବାଧିକ ପରିସର", + + "search.filters.applied.f.queue_last_start_time.min": "ସର୍ବନିମ୍ନ ପରିସର", + + "search.filters.applied.f.queue_last_start_time.max": "ସର୍ବାଧିକ ପରିସର", + + "admin.notify.dashboard.outbound": "ଆଉଟବାଉଣ୍ଡ ବାର୍ତ୍ତା", + + "admin.notify.dashboard.outbound-logs": "ଲଗ୍/ଆଉଟବାଉଣ୍ଡ", + + "NOTIFY.incoming.search.results.head": "ଆସୁଥିବା", + + "search.filters.filter.relateditem.head": "ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", + + "search.filters.filter.origin.head": "ଉତ୍ସ", + + "search.filters.filter.ldn_service.head": "LDN ସେବା", + + "search.filters.filter.target.head": "ଲକ୍ଷ୍ୟ", + + "search.filters.filter.queue_status.head": "ଧାଡି ସ୍ଥିତି", + + "search.filters.filter.activity_stream_type.head": "କାର୍ଯ୍ୟକଳାପ ଧାରା ପ୍ରକାର", + + "search.filters.filter.coar_notify_type.head": "COAR ନୋଟିଫାଇ ପ୍ରକାର", + + "search.filters.filter.notification_type.head": "ବିଜ୍ଞପ୍ତି ପ୍ରକାର", + + "search.filters.filter.relateditem.label": "ସମ୍ବନ୍ଧିତ ଆଇଟମ୍ ଖୋଜନ୍ତୁ", + + "search.filters.filter.queue_status.label": "ଧାଡି ସ୍ଥିତି ଖୋଜନ୍ତୁ", + + "search.filters.filter.target.label": "ଲକ୍ଷ୍ୟ ଖୋଜନ୍ତୁ", + + "search.filters.filter.activity_stream_type.label": "କାର୍ଯ୍ୟକଳାପ ଧାରା ପ୍ରକାର ଖୋଜନ୍ତୁ", + + "search.filters.applied.f.queue_status": "ଧାଡି ସ୍ଥିତି", + + "search.filters.queue_status.0,authority": "ଅବିଶ୍ୱସନୀୟ IP", + + "search.filters.queue_status.1,authority": "ଧାଡିରେ ଅଛି", + + "search.filters.queue_status.2,authority": "ପ୍ରକ୍ରିୟାକରଣରେ ଅଛି", + + "search.filters.queue_status.3,authority": "ପ୍ରକ୍ରିୟାକରଣ ହୋଇସାରିଛି", + + "search.filters.queue_status.4,authority": "ବିଫଳ", + + "search.filters.queue_status.5,authority": "ଅବିଶ୍ୱସନୀୟ", + + "search.filters.queue_status.6,authority": "ଅଣମାନଚିତ୍ରିତ କାର୍ଯ୍ୟ", + + "search.filters.queue_status.7,authority": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଅଛି", + + "search.filters.applied.f.activity_stream_type": "କାର୍ଯ୍ୟକଳାପ ଧାରା ପ୍ରକାର", + + "search.filters.applied.f.coar_notify_type": "COAR ନୋଟିଫାଇ ପ୍ରକାର", + + "search.filters.applied.f.notification_type": "ବିଜ୍ଞପ୍ତି ପ୍ରକାର", + + "search.filters.filter.coar_notify_type.label": "COAR ନୋଟିଫାଇ ପ୍ରକାର ଖୋଜନ୍ତୁ", + + "search.filters.filter.notification_type.label": "ବିଜ୍ଞପ୍ତି ପ୍ରକାର ଖୋଜନ୍ତୁ", + + "search.filters.filter.relateditem.placeholder": "ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", + + "search.filters.filter.target.placeholder": "ଲକ୍ଷ୍ୟ", + + "search.filters.filter.origin.label": "ଉତ୍ସ ଖୋଜନ୍ତୁ", + + "search.filters.filter.origin.placeholder": "ଉତ୍ସ", + + "search.filters.filter.ldn_service.label": "LDN ସେବା ଖୋଜନ୍ତୁ", + + "search.filters.filter.ldn_service.placeholder": "LDN ସେବା", + + "search.filters.filter.queue_status.placeholder": "ଧାଡି ସ୍ଥିତି", + + "search.filters.filter.activity_stream_type.placeholder": "କାର୍ଯ୍ୟକଳାପ ଧାରା ପ୍ରକାର", + + "search.filters.filter.coar_notify_type.placeholder": "COAR ନୋଟିଫାଇ ପ୍ରକାର", + + "search.filters.filter.notification_type.placeholder": "ବିଜ୍ଞପ୍ତି", + + "search.filters.filter.notifyRelation.head": "ନୋଟିଫାଇ ସମ୍ପର୍କ", + + "search.filters.filter.notifyRelation.label": "ନୋଟିଫାଇ ସମ୍ପର୍କ ଖୋଜନ୍ତୁ", + + "search.filters.filter.notifyRelation.placeholder": "ନୋଟିଫାଇ ସମ୍ପର୍କ", + + "search.filters.filter.notifyReview.head": "ନୋଟିଫାଇ ସମୀକ୍ଷା", + + "search.filters.filter.notifyReview.label": "ନୋଟିଫାଇ ସମୀକ୍ଷା ଖୋଜନ୍ତୁ", + + "search.filters.filter.notifyReview.placeholder": "ନୋଟିଫାଇ ସମୀକ୍ଷା", + + "search.filters.coar_notify_type.coar-notify:ReviewAction": "ସମୀକ୍ଷା କାର୍ଯ୍ୟ", + + "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "ସମୀକ୍ଷା କାର୍ଯ୍ୟ", + + "notify-detail-modal.coar-notify:ReviewAction": "ସମୀକ୍ଷା କାର୍ଯ୍ୟ", + + "search.filters.coar_notify_type.coar-notify:EndorsementAction": "ଅନୁମୋଦନ କାର୍ଯ୍ୟ", + + "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "ଅନୁମୋଦନ କାର୍ଯ୍ୟ", + + "notify-detail-modal.coar-notify:EndorsementAction": "ଅନୁମୋଦନ କାର୍ଯ୍ୟ", + + "search.filters.coar_notify_type.coar-notify:IngestAction": "ଇନଜେଷ୍ଟ୍ କାର୍ଯ୍ୟ", + + "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ଇନଜେଷ୍ଟ୍ କାର୍ଯ୍ୟ", + + "notify-detail-modal.coar-notify:IngestAction": "ଇନଜେଷ୍ଟ୍ କାର୍ଯ୍ୟ", + + "search.filters.coar_notify_type.coar-notify:RelationshipAction": "ସମ୍ପର୍କ କାର୍ଯ୍ୟ", + + "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "ସମ୍ପର୍କ କାର୍ଯ୍ୟ", + + "notify-detail-modal.coar-notify:RelationshipAction": "ସମ୍ପର୍କ କାର୍ଯ୍ୟ", + + "search.filters.queue_status.QUEUE_STATUS_QUEUED": "ଧାଡିରେ ଅଛି", + + "notify-detail-modal.QUEUE_STATUS_QUEUED": "ଧାଡିରେ ଅଛି", + + "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଅଛି", + + "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଅଛି", + + "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "ପ୍ରକ୍ରିୟାକରଣରେ ଅଛି", + + "notify-detail-modal.QUEUE_STATUS_PROCESSING": "ପ୍ରକ୍ରିୟାକରଣରେ ଅଛି", + + "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "ପ୍ରକ୍ରିୟାକରଣ ହୋଇସାରିଛି", + + "notify-detail-modal.QUEUE_STATUS_PROCESSED": "ପ୍ରକ୍ରିୟାକରଣ ହୋଇସାରିଛି", + + "search.filters.queue_status.QUEUE_STATUS_FAILED": "ବିଫଳ", + + "notify-detail-modal.QUEUE_STATUS_FAILED": "ବିଫଳ", + + "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "ଅବିଶ୍ୱସନୀୟ", + + "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "ଅବିଶ୍ୱସନୀୟ IP", + + "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "ଅବିଶ୍ୱସନୀୟ", + + "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "ଅବିଶ୍ୱସନୀୟ IP", + + "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "ଅଣମାନଚିତ୍ରିତ କାର୍ଯ୍ୟ", + + "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "ଅଣମାନଚିତ୍ରିତ କାର୍ଯ୍ୟ", + + "sorting.queue_last_start_time.DESC": "ଶେଷ ଆରମ୍ଭ ଧାଡି ଅବରୋହୀ", + + "sorting.queue_last_start_time.ASC": "ଶେଷ ଆରମ୍ଭ ଧାଡି ଆରୋହୀ", + + "sorting.queue_attempts.DESC": "ଧାଡି ଚେଷ୍ଟା ଅବରୋହୀ", + + "sorting.queue_attempts.ASC": "ଧାଡି ଚେଷ୍ଟା ଆରୋହୀ", + + "NOTIFY.incoming.involvedItems.search.results.head": "ଆସୁଥିବା LDN ରେ ଜଡିତ ଆଇଟମ୍", + + "NOTIFY.outgoing.involvedItems.search.results.head": "ଯାଉଥିବା LDN ରେ ଜଡିତ ଆଇଟମ୍", + + "type.notify-detail-modal": "ପ୍ରକାର", + + "id.notify-detail-modal": "ଆଇଡି", + + "coarNotifyType.notify-detail-modal": "COAR ନୋଟିଫାଇ ପ୍ରକାର", + + "activityStreamType.notify-detail-modal": "କାର୍ଯ୍ୟକଳାପ ଧାରା ପ୍ରକାର", + + "inReplyTo.notify-detail-modal": "ଉତ୍ତରରେ", + + "object.notify-detail-modal": "ରେପୋଜିଟରି ଆଇଟମ୍", + + "context.notify-detail-modal": "ରେପୋଜିଟରି ଆଇଟମ୍", + + "queueAttempts.notify-detail-modal": "ଧାଡି ଚେଷ୍ଟା", + + "queueLastStartTime.notify-detail-modal": "ଧାଡି ଶେଷ ଆରମ୍ଭ ସମୟ", + + "origin.notify-detail-modal": "LDN ସେବା", + + "target.notify-detail-modal": "LDN ସେବା", + + "queueStatusLabel.notify-detail-modal": "ଧାଡି ସ୍ଥିତି", + + "queueTimeout.notify-detail-modal": "ଧାଡି ସମୟ ସମାପ୍ତି", + + "notify-message-modal.title": "ବାର୍ତ୍ତା ବିବରଣୀ", + + "notify-message-modal.show-message": "ବାର୍ତ୍ତା ଦେଖାନ୍ତୁ", + + "notify-message-result.timestamp": "ସମୟସ୍ଟାମ୍ପ", + + "notify-message-result.repositoryItem": "ରେପୋଜିଟରି ଆଇଟମ୍", + + "notify-message-result.ldnService": "LDN ସେବା", + + "notify-message-result.type": "ପ୍ରକାର", + + "notify-message-result.status": "ସ୍ଥିତି", + + "notify-message-result.action": "କାର୍ଯ୍ୟ", + + "notify-message-result.detail": "ବିବରଣୀ", + + "notify-message-result.reprocess": "ପୁନଃପ୍ରକ୍ରିୟାକରଣ", + + "notify-queue-status.processed": "ପ୍ରକ୍ରିୟାକରଣ ହୋଇସାରିଛି", + + "notify-queue-status.failed": "ବିଫଳ", + + "notify-queue-status.queue_retry": "ପୁନର୍ବାର ଚେଷ୍ଟା ପାଇଁ ଧାଡିରେ ଅଛି", + + "notify-queue-status.unmapped_action": "ଅଣମାନଚିତ୍ରିତ କାର୍ଯ୍ୟ", + + "notify-queue-status.processing": "ପ୍ରକ୍ରିୟାକରଣରେ ଅଛି", + + "notify-queue-status.queued": "ଧାଡିରେ ଅଛି", + + "notify-queue-status.untrusted": "ଅବିଶ୍ୱସନୀୟ", + + "ldnService.notify-detail-modal": "LDN ସେବା", + + "relatedItem.notify-detail-modal": "ସମ୍ବନ୍ଧିତ ଆଇଟମ୍", + + "search.filters.filter.notifyEndorsement.head": "ନୋଟିଫାଇ ଅନୁମୋଦନ", + + "search.filters.filter.notifyEndorsement.placeholder": "ନୋଟିଫାଇ ଅନୁମୋଦନ", + + "search.filters.filter.notifyEndorsement.label": "ନୋଟିଫାଇ ଅନୁମୋଦନ ଖୋଜନ୍ତୁ", + + "form.date-picker.placeholder.year": "ବର୍ଷ", + + "form.date-picker.placeholder.month": "ମାସ", + + "form.date-picker.placeholder.day": "ଦିନ", + + "item.page.cc.license.title": "କ୍ରିଏଟିଭ୍ କମନ୍ସ୍ ଲାଇସେନ୍ସ୍", + + "item.page.cc.license.disclaimer": "ଅନ୍ୟଥା ଉଲ୍ଲେଖ ନକରିବା ସ୍ଥଳେ, ଏହି ଆଇଟମର ଲାଇସେନ୍ସ୍ ଏହିପରି ବର୍ଣ୍ଣନା କରାଯାଇଛି", + + "browse.search-form.placeholder": "ରେପୋଜିଟରି ଖୋଜନ୍ତୁ", + + "file-download-link.download": "ଡାଉନଲୋଡ୍ କରନ୍ତୁ ", + + "register-page.registration.aria.label": "ଆପଣଙ୍କର ଇମେଲ୍ ଠିକଣା ପ୍ରବେଶ କରନ୍ତୁ", + + "forgot-email.form.aria.label": "ଆପଣଙ୍କର ଇମେଲ୍ ଠିକଣା ପ୍ରବେଶ କରନ୍ତୁ", + + "search-facet-option.update.announcement": "ପୃଷ୍ଠା ପୁନର୍ଲୋଡ୍ ହେବ। ଫିଲ୍ଟର୍ {{ filter }} ଚୟନ କରାଯାଇଛି।", + + "live-region.ordering.instructions": "{{ itemName }} କୁ ପୁନଃବିନ୍ୟାସ କରିବାକୁ ସ୍ପେସବାର୍ ଦବାନ୍ତୁ।", + + "live-region.ordering.status": "{{ itemName }}, ଧରାଯାଇଛି। ତାଲିକାରେ ବର୍ତ୍ତମାନ ସ୍ଥାନ: {{ index }} ର {{ length }}। ସ୍ଥାନ ପରିବର୍ତ୍ତନ କରିବାକୁ ଉପର ଏବଂ ତଳ ତୀର କି ଦବାନ୍ତୁ, ଡ୍ରପ୍ କରିବାକୁ ସ୍ପେସବାର୍, ବାତିଲ୍ କରିବାକୁ ଏସ୍କେପ୍।", + + "live-region.ordering.moved": "{{ itemName }}, ସ୍ଥାନ {{ index }} ର {{ length }} କୁ ଗତି କରିଛି। ସ୍ଥାନ ପରିବର୍ତ୍ତନ କରିବାକୁ ଉପର ଏବଂ ତଳ ତୀର କି ଦବାନ୍ତୁ, ଡ୍ରପ୍ କରିବାକୁ ସ୍ପେସବାର୍, ବାତିଲ୍ କରିବାକୁ ଏସ୍କେପ୍।", + + "live-region.ordering.dropped": "{{ itemName }}, ସ୍ଥାନ {{ index }} ର {{ length }} ରେ ଡ୍ରପ୍ ହୋଇଛି।", + + "dynamic-form-array.sortable-list.label": "ସର୍ଟେବଲ୍ ତାଲିକା", + + "external-login.component.or": "କିମ୍ବା", + + "external-login.confirmation.header": "ଲଗଇନ୍ ପ୍ରକ୍ରିୟା ସମ୍ପୂର୍ଣ୍ଣ କରିବା ପାଇଁ ଆବଶ୍ୟକ ତଥ୍ୟ", + + "external-login.noEmail.informationText": "{{authMethod}} ରୁ ପ୍ରାପ୍ତ ସୂଚନା ଲଗଇନ୍ ପ୍ରକ୍ରିୟା ସମ୍ପୂର୍ଣ୍ଣ କରିବା ପାଇଁ ପର୍ଯ୍ୟାପ୍ତ ନୁହେଁ। ଦୟାକରି ନିମ୍ନରେ ଅନୁପସ୍ଥିତ ସୂଚନା ପ୍ରଦାନ କରନ୍ତୁ, କିମ୍ବା ଏକ ଭିନ୍ନ ପଦ୍ଧତିରେ ଲଗଇନ୍ କରି ଆପଣଙ୍କର {{authMethod}} କୁ ଏକ ପୂର୍ବରୁ ଥିବା ଖାତା ସହିତ ସଂଯୋଗ କରନ୍ତୁ।", + + "external-login.haveEmail.informationText": "ଏହି ବ୍ୟବସ୍ଥାରେ ଆପଣଙ୍କର ଏକ ଖାତା ନାହିଁ ବୋଲି ଜଣାପଡୁଛି। ଯଦି ଏହା ସତ୍ୟ ହୋଇଥାଏ, ଦୟାକରି {{authMethod}} ରୁ ପ୍ରାପ୍ତ ତଥ୍ୟ ନିଶ୍ଚିତ କରନ୍ତୁ ଏବଂ ଆପଣଙ୍କ ପାଇଁ ଏକ ନୂତନ ଖାତା ସୃଷ୍ଟି କରାଯିବ। ଅନ୍ୟଥା, ଯଦି ଆପଣଙ୍କର ଏହି ବ୍ୟବସ୍ଥାରେ ପୂର୍ବରୁ ଏକ ଖାତା ଅଛି, ଦୟାକରି ଇମେଲ୍ ଠିକଣାକୁ ବ୍ୟବସ୍ଥାରେ ପୂର୍ବରୁ ବ୍ୟବହୃତ ଇମେଲ୍ ସହିତ ମେଳ କରନ୍ତୁ କିମ୍ବା ଏକ ଭିନ୍ନ ପଦ୍ଧତିରେ ଲଗଇନ୍ କରି ଆପଣଙ୍କର {{authMethod}} କୁ ଆପଣଙ୍କର ପୂର୍ବରୁ ଥିବା ଖାତା ସହିତ ସଂଯୋଗ କରନ୍ତୁ।", + + "external-login.confirm-email.header": "ଇମେଲ୍ ନିଶ୍ଚିତ କିମ୍ବା ଅଦ୍ୟତନ କରନ୍ତୁ", + + "external-login.confirmation.email-required": "ଇମେଲ୍ ଆବଶ୍ୟକ।", + + "external-login.confirmation.email-label": "ଉପଯୋଗକର୍ତ୍ତା ଇମେଲ୍", + + "external-login.confirmation.email-invalid": "ଅବୈଧ ଇମେଲ୍ ଫର୍ମାଟ୍।", + + "external-login.confirm.button.label": "ଏହି ଇମେଲ୍ ନିଶ୍ଚିତ କରନ୍ତୁ", + + "external-login.confirm-email-sent.header": "ନିଶ୍ଚିତକରଣ ଇମେଲ୍ ପଠାଯାଇଛି", + + "external-login.confirm-email-sent.info": "ଆମେ ଆପଣଙ୍କର ଇନପୁଟ୍ ବୈଧ କରିବା ପାଇଁ ପ୍ରଦାନ କରାଯାଇଥିବା ଠିକଣାକୁ ଏକ ଇମେଲ୍ ପଠାଇଛୁ।
ଦୟାକରି ଲଗଇନ୍ ପ୍ରକ୍ରିୟା ସମ୍ପୂର୍ଣ୍ଣ କରିବା ପାଇଁ ଇମେଲ୍ରେ ଥିବା ନିର୍ଦ୍ଦେଶାବଳୀ ଅନୁସରଣ କରନ୍ତୁ।", + + "external-login.provide-email.header": "ଇମେଲ୍ ପ୍ରଦାନ କରନ୍ତୁ", + + "external-login.provide-email.button.label": "ଯାଞ୍ଚ ଲିଙ୍କ୍ ପଠାନ୍ତୁ", + + "external-login-validation.review-account-info.header": "ଆପଣଙ୍କର ଖାତା ସୂଚନା ସମୀକ୍ଷା କରନ୍ତୁ", + + "external-login-validation.review-account-info.info": "ORCID ରୁ ପ୍ରାପ୍ତ ସୂଚନା ଆପଣଙ୍କ ପ୍ରୋଫାଇଲ୍ରେ ରେକର୍ଡ କରାଯାଇଥିବା ସୂଚନା ଠାରୁ ଭିନ୍ନ।
ଦୟାକରି ସେଗୁଡିକ ସମୀକ୍ଷା କରନ୍ତୁ ଏବଂ ସ୍ଥିର କରନ୍ତୁ ଯେ ଆପଣ କୌଣସି ସୂଚନା ଅଦ୍ୟତନ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି ନାହିଁ। ସଂରକ୍ଷଣ କରିବା ପରେ ଆପଣଙ୍କୁ ଆପଣଙ୍କ ପ୍ରୋଫାଇଲ୍ ପେଜ୍ କୁ ପୁନଃନିର୍ଦ୍ଦେଶିତ କରାଯିବ।", + + "external-login-validation.review-account-info.table.header.information": "ସୂଚନା", + + "external-login-validation.review-account-info.table.header.received-value": "ପ୍ରାପ୍ତ ମୂଲ୍ୟ", + + "external-login-validation.review-account-info.table.header.current-value": "ବର୍ତ୍ତମାନ ମୂଲ୍ୟ", + + "external-login-validation.review-account-info.table.header.action": "ଅତିକ୍ରମ କରନ୍ତୁ", + + "external-login-validation.review-account-info.table.row.not-applicable": "ପ୍ରଯୁଜ୍ୟ ନୁହେଁ", + + "on-label": "ଚାଲୁ", + + "off-label": "ବନ୍ଦ", + + "review-account-info.merge-data.notification.success": "ଆପଣଙ୍କର ଖାତା ସୂଚନା ସଫଳତାର ସହିତ ଅଦ୍ୟତନ ହୋଇଛି", + + "review-account-info.merge-data.notification.error": "ଆପଣଙ୍କର ଖାତା ସୂଚନା ଅଦ୍ୟତନ କରିବା ସମୟରେ କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "review-account-info.alert.error.content": "କିଛି ତ୍ରୁଟି ଘଟିଛି। ଦୟାକରି ପରବର୍ତ୍ତୀ ସମୟରେ ପୁନଃଚେଷ୍ଟା କରନ୍ତୁ।", + + "external-login-page.provide-email.notifications.error": "କିଛି ତ୍ରୁଟି ଘଟିଛି। ଇମେଲ୍ ଠିକଣା ବାଦ ଦିଆଯାଇଛି କିମ୍ବା କାର୍ଯ୍ୟଟି ବୈଧ ନୁହେଁ।", + + "external-login.error.notification": "ଆପଣଙ୍କର ଅନୁରୋଧ ପ୍ରକ୍ରିୟାକରଣ ସମୟରେ ଏକ ତ୍ରୁଟି ଘଟିଛି। ଦୟାକରି ପରବର୍ତ୍ତୀ ସମୟରେ ପୁନଃଚେଷ୍ଟା କରନ୍ତୁ।", + + "external-login.connect-to-existing-account.label": "ଏକ ପୂର୍ବରୁ ଥିବା ଉପଯୋଗକର୍ତ୍ତା ସହିତ ସଂଯୋଗ କରନ୍ତୁ", + + "external-login.modal.label.close": "ବନ୍ଦ କରନ୍ତୁ", + + "external-login-page.provide-email.create-account.notifications.error.header": "କିଛି ତ୍ରୁଟି ଘଟିଛି", + + "external-login-page.provide-email.create-account.notifications.error.content": "ଦୟାକରି ଆପଣଙ୍କର ଇମେଲ୍ ଠିକଣାକୁ ପୁନର୍ବାର ଯାଞ୍ଚ କରନ୍ତୁ ଏବଂ ପୁନଃଚେଷ୍ଟା କରନ୍ତୁ।", + + "external-login-page.confirm-email.create-account.notifications.error.no-netId": "ଏହି ଇମେଲ୍ ଖାତା ସହିତ କିଛି ତ୍ରୁଟି ଘଟିଛି। ପୁନଃଚେଷ୍ଟା କରନ୍ତୁ କିମ୍ବା ଲଗଇନ୍ କରିବା ପାଇଁ ଏକ ଭିନ୍ନ ପଦ୍ଧତି ବ୍ୟବହାର କରନ୍ତୁ।", + + "external-login-page.orcid-confirmation.firstname": "ପ୍ରଥମ ନାମ", + + "external-login-page.orcid-confirmation.firstname.label": "ପ୍ରଥମ ନାମ", + + "external-login-page.orcid-confirmation.lastname": "ଶେଷ ନାମ", + + "external-login-page.orcid-confirmation.lastname.label": "ଶେଷ ନାମ", + + "external-login-page.orcid-confirmation.netid": "ଖାତା ଚିହ୍ନଟକାରୀ", + + "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", + + "external-login-page.orcid-confirmation.email": "ଇମେଲ୍", + + "external-login-page.orcid-confirmation.email.label": "ଇମେଲ୍", + + "search.filters.access_status.open.access": "ଖୋଲା ପ୍ରବେଶ", + + "search.filters.access_status.restricted": "ସୀମିତ ପ୍ରବେଶ", + + "search.filters.access_status.embargo": "ନିଷେଧିତ ପ୍ରବେଶ", + + "search.filters.access_status.metadata.only": "ମେଟାଡାଟା ମାତ୍ର", + + "search.filters.access_status.unknown": "ଅଜ୍ଞାତ", + + "metadata-export-filtered-items.tooltip": "CSV ଭାବରେ ରିପୋର୍ଟ ଆଉଟପୁଟ୍ ରପ୍ତାନି କରନ୍ତୁ", + + "metadata-export-filtered-items.submit.success": "CSV ରପ୍ତାନି ସଫଳ ହୋଇଛି।", + + "metadata-export-filtered-items.submit.error": "CSV ରପ୍ତାନି ବିଫଳ ହୋଇଛି।", + + "metadata-export-filtered-items.columns.warning": "CSV ରପ୍ତାନି ସ୍ୱୟଂଚାଳିତ ଭାବରେ ସମସ୍ତ ପ୍ରାସଙ୍ଗିକ କ୍ଷେତ୍ରଗୁଡିକୁ ଅନ୍ତର୍ଭୁକ୍ତ କରେ, ତେଣୁ ଏହି ତାଲିକାରେ ଚୟନଗୁଡିକ ଗ୍ରହଣ କରାଯାଇନଥାଏ।", + + "embargo.listelement.badge": "{{ date }} ପର୍ଯ୍ୟନ୍ତ ନିଷେଧ", + + "metadata-export-search.submit.error.limit-exceeded": "କେବଳ ପ୍ରଥମ {{limit}} ଆଇଟମ୍ ଗୁଡିକ ରପ୍ତାନି କରାଯିବ", + + "file-download-link.request-copy": "ଏହାର ଏକ କପି ଅନୁରୋଧ କରନ୍ତୁ ", + +} diff --git a/src/assets/i18n/te.json5 b/src/assets/i18n/te.json5 new file mode 100644 index 00000000000..6f2fe1986b0 --- /dev/null +++ b/src/assets/i18n/te.json5 @@ -0,0 +1,5491 @@ +{ + "401.help": "మీరు ఈ పేజీని యాక్సెస్ చేయడానికి అధికారం లేదు. మీరు దిగువ బటన్ ఉపయోగించి హోమ్ పేజీకి తిరిగి వెళ్లవచ్చు.", + "401.link.home-page": "నన్ను హోమ్ పేజీకి తీసుకెళ్లండి", + "401.unauthorized": "అనధికారం", + "403.help": "మీకు ఈ పేజీని యాక్సెస్ చేయడానికి అనుమతి లేదు. మీరు దిగువ బటన్ ఉపయోగించి హోమ్ పేజీకి తిరిగి వెళ్లవచ్చు.", + "403.link.home-page": "నన్ను హోమ్ పేజీకి తీసుకెళ్లండి", + "403.forbidden": "నిషేధించబడింది", + "500.page-internal-server-error": "సేవ అందుబాటులో లేదు", + "500.help": "మెయింటెనెన్స్ డౌన్ టైమ్ లేదా సామర్థ్య సమస్యల కారణంగా సర్వర్ తాత్కాలికంగా మీ అభ్యర్థనను సేవ చేయడంలో అసమర్థంగా ఉంది. దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి.", + "500.link.home-page": "నన్ను హోమ్ పేజీకి తీసుకెళ్లండి", + "404.help": "మీరు చూస్తున్న పేజీ మాకు కనుగొనబడలేదు. పేజీ తరలించబడి లేదా తొలగించబడి ఉండవచ్చు. మీరు దిగువ బటన్ ఉపయోగించి హోమ్ పేజీకి తిరిగి వెళ్లవచ్చు.", + "404.link.home-page": "నన్ను హోమ్ పేజీకి తీసుకెళ్లండి", + "404.page-not-found": "పేజీ కనుగొనబడలేదు", + "error-page.description.401": "అనధికారం", + "error-page.description.403": "నిషేధించబడింది", + "error-page.description.500": "సేవ అందుబాటులో లేదు", + "error-page.description.404": "పేజీ కనుగొనబడలేదు", + "error-page.orcid.generic-error": "ORCID ద్వారా లాగిన్ సమయంలో లోపం సంభవించింది. మీరు DSpace తో మీ ORCID ఖాతా ఇమెయిల్ చిరునామాను పంచుకున్నారని నిర్ధారించుకోండి. లోపం కొనసాగితే, నిర్వాహకుని సంప్రదించండి", + "listelement.badge.access-status": "యాక్సెస్ స్థితి:", + "access-status.embargo.listelement.badge": "ఎంబార్గో", + "access-status.metadata.only.listelement.badge": "మెటాడేటా మాత్రమే", + "access-status.open.access.listelement.badge": "ఓపెన్ యాక్సెస్", + "access-status.restricted.listelement.badge": "పరిమితం", + "access-status.unknown.listelement.badge": "తెలియదు", + "admin.curation-tasks.breadcrumbs": "సిస్టమ్ క్యూరేషన్ టాస్క్స్", + "admin.curation-tasks.title": "సిస్టమ్ క్యూరేషన్ టాస్క్స్", + "admin.curation-tasks.header": "సిస్టమ్ క్యూరేషన్ టాస్క్స్", + "admin.registries.bitstream-formats.breadcrumbs": "ఫార్మాట్ రిజిస్ట్రీ", + "admin.registries.bitstream-formats.create.breadcrumbs": "బిట్స్ట్రీమ్ ఫార్మాట్", + "admin.registries.bitstream-formats.create.failure.content": "కొత్త బిట్స్ట్రీమ్ ఫార్మాట్ సృష్టించడంలో లోపం సంభవించింది.", + "admin.registries.bitstream-formats.create.failure.head": "విఫలం", + "admin.registries.bitstream-formats.create.head": "బిట్స్ట్రీమ్ ఫార్మాట్ సృష్టించండి", + "admin.registries.bitstream-formats.create.new": "కొత్త బిట్స్ట్రీమ్ ఫార్మాట్ జోడించండి", + "admin.registries.bitstream-formats.create.success.content": "కొత్త బిట్స్ట్రీమ్ ఫార్మాట్ విజయవంతంగా సృష్టించబడింది.", + "admin.registries.bitstream-formats.create.success.head": "విజయం", + "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} ఫార్మాట్(లు) తొలగించడంలో విఫలమైంది", + "admin.registries.bitstream-formats.delete.failure.head": "విఫలం", + "admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} ఫార్మాట్(లు) విజయవంతంగా తొలగించబడ్డాయి", + "admin.registries.bitstream-formats.delete.success.head": "విజయం", + "admin.registries.bitstream-formats.description": "ఈ బిట్స్ట్రీమ్ ఫార్మాట్ల జాబితా తెలిసిన ఫార్మాట్లు మరియు వాటి మద్దతు స్థాయి గురించి సమాచారాన్ని అందిస్తుంది.", + "admin.registries.bitstream-formats.edit.breadcrumbs": "బిట్స్ట్రీమ్ ఫార్మాట్", + "admin.registries.bitstream-formats.edit.description.hint": "", + "admin.registries.bitstream-formats.edit.description.label": "వివరణ", + "admin.registries.bitstream-formats.edit.extensions.hint": "ఎక్స్టెన్షన్లు అప్లోడ్ చేయబడిన ఫైళ్ల ఫార్మాట్ను స్వయంచాలకంగా గుర్తించడానికి ఉపయోగించే ఫైల్ ఎక్స్టెన్షన్లు. మీరు ప్రతి ఫార్మాట్ కోసం అనేక ఎక్స్టెన్షన్లను నమోదు చేయవచ్చు.", + "admin.registries.bitstream-formats.edit.extensions.label": "ఫైల్ ఎక్స్టెన్షన్లు", + "admin.registries.bitstream-formats.edit.extensions.placeholder": "డాట్ లేకుండా ఫైల్ ఎక్స్టెన్షన్ నమోదు చేయండి", + "admin.registries.bitstream-formats.edit.failure.content": "బిట్స్ట్రీమ్ ఫార్మాట్ సవరించడంలో లోపం సంభవించింది.", + "admin.registries.bitstream-formats.edit.failure.head": "విఫలం", + "admin.registries.bitstream-formats.edit.head": "బిట్స్ట్రీమ్ ఫార్మాట్: {{ format }}", + "admin.registries.bitstream-formats.edit.internal.hint": "అంతర్గతంగా గుర్తించబడిన ఫార్మాట్లు వినియోగదారు నుండి దాచబడతాయి మరియు నిర్వహణా ప్రయోజనాల కోసం ఉపయోగించబడతాయి.", + "admin.registries.bitstream-formats.edit.internal.label": "అంతర్గత", + "admin.registries.bitstream-formats.edit.mimetype.hint": "ఈ ఫార్మాట్ కోసం అనుబంధించబడిన MIME రకం, ప్రత్యేకంగా ఉండాల్సిన అవసరం లేదు.", + "admin.registries.bitstream-formats.edit.mimetype.label": "MIME రకం", + "admin.registries.bitstream-formats.edit.shortDescription.hint": "ఈ ఫార్మాట్ కోసం ఒక ప్రత్యేకమైన పేరు, (ఉదా. \"Microsoft Word XP\" లేదా \"Microsoft Word 2000\")", + "admin.registries.bitstream-formats.edit.shortDescription.label": "పేరు", + "admin.registries.bitstream-formats.edit.success.content": "బిట్స్ట్రీమ్ ఫార్మాట్ విజయవంతంగా సవరించబడింది.", + "admin.registries.bitstream-formats.edit.success.head": "విజయం", + "admin.registries.bitstream-formats.edit.supportLevel.hint": "మీ సంస్థ ఈ ఫార్మాట్ కోసం హామీ ఇచ్చిన మద్దతు స్థాయి.", + "admin.registries.bitstream-formats.edit.supportLevel.label": "మద్దతు స్థాయి", + "admin.registries.bitstream-formats.head": "బిట్స్ట్రీమ్ ఫార్మాట్ రిజిస్ట్రీ", + "admin.registries.bitstream-formats.no-items": "చూపించడానికి బిట్స్ట్రీమ్ ఫార్మాట్లు లేవు.", + "admin.registries.bitstream-formats.table.delete": "ఎంచుకున్నవి తొలగించండి", + "admin.registries.bitstream-formats.table.deselect-all": "అన్నింటినీ ఎంపిక రద్దు చేయండి", + "admin.registries.bitstream-formats.table.internal": "అంతర్గత", + "admin.registries.bitstream-formats.table.mimetype": "MIME రకం", + "admin.registries.bitstream-formats.table.name": "పేరు", + "admin.registries.bitstream-formats.table.selected": "ఎంచుకున్న బిట్స్ట్రీమ్ ఫార్మాట్లు", + "admin.registries.bitstream-formats.table.id": "ID", + "admin.registries.bitstream-formats.table.return": "తిరిగి వెళ్లండి", + "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "తెలిసినది", + "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "మద్దతు ఉంది", + "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "తెలియదు", + "admin.registries.bitstream-formats.table.supportLevel.head": "మద్దతు స్థాయి", + "admin.registries.bitstream-formats.title": "బిట్స్ట్రీమ్ ఫార్మాట్ రిజిస్ట్రీ", + "admin.registries.bitstream-formats.select": "ఎంచుకోండి", + "admin.registries.bitstream-formats.deselect": "ఎంపిక రద్దు చేయండి", + "admin.registries.metadata.breadcrumbs": "మెటాడేటా రిజిస్ట్రీ", + "admin.registries.metadata.description": "మెటాడేటా రిజిస్ట్రీ రిపోజిటరీలో అందుబాటులో ఉన్న అన్ని మెటాడేటా ఫీల్డ్ల జాబితాను నిర్వహిస్తుంది. ఈ ఫీల్డ్లు బహుళ స్కీమాల మధ్య విభజించబడి ఉండవచ్చు. అయితే, DSpace కు క్వాలిఫైడ్ డబ్లిన్ కోర్ స్కీమా అవసరం.", + "admin.registries.metadata.form.create": "మెటాడేటా స్కీమా సృష్టించండి", + "admin.registries.metadata.form.edit": "మెటాడేటా స్కీమా సవరించండి", + "admin.registries.metadata.form.name": "పేరు", + "admin.registries.metadata.form.namespace": "నేమ్స్పేస్", + "admin.registries.metadata.head": "మెటాడేటా రిజిస్ట్రీ", + "admin.registries.metadata.schemas.no-items": "చూపించడానికి మెటాడేటా స్కీమాలు లేవు.", + "admin.registries.metadata.schemas.select": "ఎంచుకోండి", + "admin.registries.metadata.schemas.deselect": "ఎంపిక రద్దు చేయండి", + "admin.registries.metadata.schemas.table.delete": "ఎంచుకున్నవి తొలగించండి", + "admin.registries.metadata.schemas.table.selected": "ఎంచుకున్న స్కీమాలు", + "admin.registries.metadata.schemas.table.id": "ID", + "admin.registries.metadata.schemas.table.name": "పేరు", + "admin.registries.metadata.schemas.table.namespace": "నేమ్స్పేస్", + "admin.registries.metadata.title": "మెటాడేటా రిజిస్ట్రీ", + "admin.registries.schema.breadcrumbs": "మెటాడేటా స్కీమా", + "admin.registries.schema.description": "ఇది \"{{namespace}}\" కోసం మెటాడేటా స్కీమా.", + "admin.registries.schema.fields.select": "ఎంచుకోండి", + "admin.registries.schema.fields.deselect": "ఎంపిక రద్దు చేయండి", + "admin.registries.schema.fields.head": "స్కీమా మెటాడేటా ఫీల్డ్లు", + "admin.registries.schema.fields.no-items": "చూపించడానికి మెటాడేటా ఫీల్డ్లు లేవు.", + "admin.registries.schema.fields.table.delete": "ఎంచుకున్నవి తొలగించండి", + "admin.registries.schema.fields.table.field": "ఫీల్డ్", + "admin.registries.schema.fields.table.selected": "ఎంచుకున్న మెటాడేటా ఫీల్డ్లు", + "admin.registries.schema.fields.table.id": "ID", + "admin.registries.schema.fields.table.scopenote": "స్కోప్ నోట్", + "admin.registries.schema.form.create": "మెటాడేటా ఫీల్డ్ సృష్టించండి", + "admin.registries.schema.form.edit": "మెటాడేటా ఫీల్డ్ సవరించండి", + "admin.registries.schema.form.element": "ఎలిమెంట్", + "admin.registries.schema.form.qualifier": "క్వాలిఫైయర్", + "admin.registries.schema.form.scopenote": "స్కోప్ నోట్", + "admin.registries.schema.head": "మెటాడేటా స్కీమా", + "admin.registries.schema.notification.created": "మెటాడేటా స్కీమా \"{{prefix}}\" విజయవంతంగా సృష్టించబడింది", + "admin.registries.schema.notification.deleted.failure": "{{amount}} మెటాడేటా స్కీమాలను తొలగించడంలో విఫలమైంది", + "admin.registries.schema.notification.deleted.success": "{{amount}} మెటాడేటా స్కీమాలు విజయవంతంగా తొలగించబడ్డాయి", + "admin.registries.schema.notification.edited": "మెటాడేటా స్కీమా \"{{prefix}}\" విజయవంతంగా సవరించబడింది", + "admin.registries.schema.notification.failure": "లోపం", + "admin.registries.schema.notification.field.created": "మెటాడేటా ఫీల్డ్ \"{{field}}\" విజయవంతంగా సృష్టించబడింది", + "admin.registries.schema.notification.field.deleted.failure": "{{amount}} మెటాడేటా ఫీల్డ్లను తొలగించడంలో విఫలమైంది", + "admin.registries.schema.notification.field.deleted.success": "{{amount}} మెటాడేటా ఫీల్డ్లు విజయవంతంగా తొలగించబడ్డాయి", + "admin.registries.schema.notification.field.edited": "మెటాడేటా ఫీల్డ్ \"{{field}}\" విజయవంతంగా సవరించబడింది", + "admin.registries.schema.notification.success": "విజయం", + "admin.registries.schema.return": "తిరిగి వెళ్లండి", + "admin.registries.schema.title": "మెటాడేటా స్కీమా రిజిస్ట్రీ", + "admin.access-control.bulk-access.breadcrumbs": "బల్క్ యాక్సెస్ మేనేజ్మెంట్", + "administrativeBulkAccess.search.results.head": "శోధన ఫలితాలు", + "admin.access-control.bulk-access": "బల్క్ యాక్సెస్ మేనేజ్మెంట్", + "admin.access-control.bulk-access.title": "బల్క్ యాక్సెస్ మేనేజ్మెంట్", + "admin.access-control.bulk-access-browse.header": "దశ 1: ఆబ్జెక్ట్లను ఎంచుకోండి", + "admin.access-control.bulk-access-browse.search.header": "శోధించండి", + "admin.access-control.bulk-access-browse.selected.header": "ప్రస్తుత ఎంపిక({{number}})", + "admin.access-control.bulk-access-settings.header": "దశ 2: నిర్వహించాల్సిన ఆపరేషన్", + "admin.access-control.epeople.actions.delete": "EPerson తొలగించండి", + "admin.access-control.epeople.actions.impersonate": "EPersonగా ప్రవర్తించండి", + "admin.access-control.epeople.actions.reset": "పాస్వర్డ్ రీసెట్ చేయండి", + "admin.access-control.epeople.actions.stop-impersonating": "EPersonగా ప్రవర్తించడం ఆపండి", + "admin.access-control.epeople.breadcrumbs": "EPeople", + "admin.access-control.epeople.title": "EPeople", + "admin.access-control.epeople.edit.breadcrumbs": "కొత్త EPerson", + "admin.access-control.epeople.edit.title": "కొత్త EPerson", + "admin.access-control.epeople.add.breadcrumbs": "EPerson జోడించండి", + "admin.access-control.epeople.add.title": "EPerson జోడించండి", + "admin.access-control.epeople.head": "EPeople", + "admin.access-control.epeople.search.head": "శోధించండి", + "admin.access-control.epeople.button.see-all": "అన్నింటినీ బ్రౌజ్ చేయండి", + "admin.access-control.epeople.search.scope.metadata": "మెటాడేటా", + "admin.access-control.epeople.search.scope.email": "ఇమెయిల్ (ఖచ్చితమైనది)", + "admin.access-control.epeople.search.button": "శోధించండి", + "admin.access-control.epeople.search.placeholder": "వ్యక్తులను శోధించండి...", + "admin.access-control.epeople.button.add": "EPerson జోడించండి", + "admin.access-control.epeople.table.id": "ID", + "admin.access-control.epeople.table.name": "పేరు", + "admin.access-control.epeople.table.email": "ఇమెయిల్ (ఖచ్చితమైనది)", + "admin.access-control.epeople.table.edit": "సవరించండి", + "admin.access-control.epeople.table.edit.buttons.edit": "\"{{name}}\" సవరించండి", + "admin.access-control.epeople.table.edit.buttons.edit-disabled": "మీరు ఈ గ్రూప్‌ను సవరించడానికి అధికారం లేదు", + "admin.access-control.epeople.table.edit.buttons.remove": "\"{{name}}\" తొలగించండి", + "admin.access-control.epeople.no-items": "చూపించడానికి EPeople లేవు.", + "admin.access-control.epeople.form.create": "EPerson సృష్టించండి", + "admin.access-control.epeople.form.edit": "EPerson సవరించండి", + "admin.access-control.epeople.form.firstName": "మొదటి పేరు", + "admin.access-control.epeople.form.lastName": "చివరి పేరు", + "admin.access-control.epeople.form.email": "ఇమెయిల్", + "admin.access-control.epeople.form.emailHint": "చెల్లుబాటు అయ్యే ఇమెయిల్ చిరునామా ఉండాలి", + "admin.access-control.epeople.form.canLogIn": "లాగిన్ అవ్వవచ్చు", + "admin.access-control.epeople.form.requireCertificate": "సర్టిఫికేట్ అవసరం", + "admin.access-control.epeople.form.return": "తిరిగి వెళ్లండి", + "admin.access-control.epeople.form.notification.created.success": "EPerson \"{{name}}\" విజయవంతంగా సృష్టించబడింది", + "admin.access-control.epeople.form.notification.created.failure": "EPerson \"{{name}}\" సృష్టించడంలో విఫలమైంది", + "admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson \"{{name}}\" సృష్టించడంలో విఫలమైంది, ఇమెయిల్ \"{{email}}\" ఇప్పటికే ఉపయోగంలో ఉంది.", + "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson \"{{name}}\" సవరించడంలో విఫలమైంది, ఇమెయిల్ \"{{email}}\" ఇప్పటికే ఉపయోగంలో ఉంది.", + "admin.access-control.epeople.form.notification.edited.success": "EPerson \"{{name}}\" విజయవంతంగా సవరించబడింది", + "admin.access-control.epeople.form.notification.edited.failure": "EPerson \"{{name}}\" సవరించడంలో విఫలమైంది", + "admin.access-control.epeople.form.notification.deleted.success": "EPerson \"{{name}}\" విజయవంతంగా తొలగించబడింది", + "admin.access-control.epeople.form.notification.deleted.failure": "EPerson \"{{name}}\" తొలగించడంలో విఫలమైంది", + "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "ఈ గ్రూప్‌లకు సభ్యుడు:", + "admin.access-control.epeople.form.table.id": "ID", + "admin.access-control.epeople.form.table.name": "పేరు", + "admin.access-control.epeople.form.table.collectionOrCommunity": "కలెక్షన్/కమ్యూనిటీ", + "admin.access-control.epeople.form.memberOfNoGroups": "ఈ EPerson ఏ గ్రూప్‌కు సభ్యుడు కాదు", + "admin.access-control.epeople.form.goToGroups": "గ్రూప్‌లకు జోడించండి", + "admin.access-control.epeople.notification.deleted.failure": "EPerson \"{{id}}\" తొలగించడంలో లోపం సంభవించింది: \"{{statusCode}}\" మరియు సందేశం: \"{{restResponse.errorMessage}}\"", + "admin.access-control.epeople.notification.deleted.success": "EPerson \"{{name}}\" విజయవంతంగా తొలగించబడింది", + "admin.access-control.groups.title": "గ్రూప్‌లు", + "admin.access-control.groups.breadcrumbs": "గ్రూప్‌లు", + "admin.access-control.groups.singleGroup.breadcrumbs": "గ్రూప్ సవరించండి", + "admin.access-control.groups.title.singleGroup": "గ్రూప్ సవరించండి", + "admin.access-control.groups.title.addGroup": "కొత్త గ్రూప్", + "admin.access-control.groups.addGroup.breadcrumbs": "కొత్త గ్రూప్", + "admin.access-control.groups.head": "గ్రూప్‌లు", + "admin.access-control.groups.button.add": "గ్రూప్ జోడించండి", + "admin.access-control.groups.search.head": "గ్రూప్‌లను శోధించండి", + "admin.access-control.groups.button.see-all": "అన్నింటినీ బ్రౌజ్ చేయండి", + "admin.access-control.groups.search.button": "శోధించండి", + "admin.access-control.groups.search.placeholder": "గ్రూప్‌లను శోధించండి...", + "admin.access-control.groups.table.id": "ID", + "admin.access-control.groups.table.name": "పేరు", + "admin.access-control.groups.table.collectionOrCommunity": "కలెక్షన్/కమ్యూనిటీ", + "admin.access-control.groups.table.members": "సభ్యులు", + "admin.access-control.groups.table.edit": "సవరించండి", + "admin.access-control.groups.table.edit.buttons.edit": "\"{{name}}\" సవరించండి", + "admin.access-control.groups.table.edit.buttons.remove": "\"{{name}}\" తొలగించండి", + "admin.access-control.groups.no-items": "దీని పేరులో లేదా ఈ UUIDతో ఏ గ్రూప్‌లు కనుగొనబడలేదు", + "admin.access-control.groups.notification.deleted.success": "గ్రూప్ \"{{name}}\" విజయవంతంగా తొలగించబడింది", + "admin.access-control.groups.notification.deleted.failure.title": "గ్రూప్ \"{{name}}\" తొలగించడంలో విఫలమైంది", + "admin.access-control.groups.notification.deleted.failure.content": "కారణం: \"{{cause}}\"", + "admin.access-control.groups.form.alert.permanent": "ఈ గ్రూప్ శాశ్వతమైనది, కాబట్టి దీన్ని సవరించలేరు లేదా తొలగించలేరు. మీరు ఈ పేజీని ఉపయోగించి గ్రూప్ సభ్యులను జోడించడానికి మరియు తొలగించడానికి ఇంకా సాధ్యమే.", + "admin.access-control.groups.form.alert.workflowGroup": "ఈ గ్రూప్‌ను సవరించలేరు లేదా తొలగించలేరు ఎందుకంటే ఇది \"{{name}}\" {{comcol}}లో సబ్మిషన్ మరియు వర్క్‌ఫ్లో ప్రక్రియలో ఒక రోల్‌కు అనుగుణంగా ఉంది. మీరు దీన్ని \"రోల్‌లను కేటాయించండి\" ట్యాబ్‌లో {{comcol}} పేజీని సవరించడం ద్వారా తొలగించవచ్చు. మీరు ఇంకా ఈ పేజీని ఉపయోగించి గ్రూప్ సభ్యులను జోడించడానికి మరియు తొలగించడానికి సాధ్యమే.", + "admin.access-control.groups.form.tooltip.editGroupPage": "ఈ పేజీలో, మీరు ఒక గ్రూప్ యొక్క లక్షణాలను మరియు సభ్యులను సవరించవచ్చు. ఎగువ విభాగంలో, మీరు గ్రూప్ పేరు మరియు వివరణను సవరించవచ్చు, ఇది ఒక కలెక్షన్ లేదా కమ్యూనిటీ కోసం అడ్మిన్ గ్రూప్ అయితే, గ్రూప్ పేరు మరియు వివరణ స్వయంచాలకంగా ఉత్పన్నమవుతాయి మరియు సవరించలేరు. క్రింది విభాగాలలో, మీరు గ్రూప్ సభ్యత్వాన్ని సవరించవచ్చు. మరిన్ని వివరాల కోసం [వికీ](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) చూడండి.", + + "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "ఈ గ్రూప్‌కు ఇ-పీపుల్‌ని జోడించడానికి లేదా తీసివేయడానికి, 'బ్రౌజ్ ఆల్' బటన్‌పై క్లిక్ చేయండి లేదా క్రింద ఉన్న సెర్చ్ బార్‌ను ఉపయోగించండి (సెర్చ్ బార్‌కు ఎడమవైపు డ్రాప్‌డౌన్‌ను ఉపయోగించి మెటాడేటా ద్వారా లేదా ఇమెయిల్ ద్వారా శోధించడానికి ఎంచుకోండి). తర్వాత క్రింది జాబితాలో మీరు జోడించాలనుకున్న ప్రతి వినియోగదారు కోసం ప్లస్ ఐకాన్‌పై క్లిక్ చేయండి, లేదా తీసివేయాలనుకున్న ప్రతి వినియోగదారు కోసం ట్రాష్ కాన్ ఐకాన్‌పై క్లిక్ చేయండి. క్రింది జాబితాలో అనేక పేజీలు ఉండవచ్చు: తర్వాతి పేజీలకు నావిగేట్ చేయడానికి జాబితా క్రింద ఉన్న పేజీ నియంత్రణలను ఉపయోగించండి.", + + "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "ఈ గ్రూప్‌కు సబ్‌గ్రూప్‌ని జోడించడానికి లేదా తీసివేయడానికి, 'బ్రౌజ్ ఆల్' బటన్‌పై క్లిక్ చేయండి లేదా క్రింద ఉన్న సెర్చ్ బార్‌ను ఉపయోగించి గ్రూప్‌ల కోసం శోధించండి. తర్వాత క్రింది జాబితాలో మీరు జోడించాలనుకున్న ప్రతి గ్రూప్ కోసం ప్లస్ ఐకాన్‌పై క్లిక్ చేయండి, లేదా తీసివేయాలనుకున్న ప్రతి గ్రూప్ కోసం ట్రాష్ కాన్ ఐకాన్‌పై క్లిక్ చేయండి. క్రింది జాబితాలో అనేక పేజీలు ఉండవచ్చు: తర్వాతి పేజీలకు నావిగేట్ చేయడానికి జాబితా క్రింద ఉన్న పేజీ నియంత్రణలను ఉపయోగించండి.", + + "admin.reports.collections.title": "కలెక్షన్ ఫిల్టర్ రిపోర్ట్", + + "admin.reports.collections.breadcrumbs": "కలెక్షన్ ఫిల్టర్ రిపోర్ట్", + + "admin.reports.collections.head": "కలెక్షన్ ఫిల్టర్ రిపోర్ట్", + + "admin.reports.button.show-collections": "కలెక్షన్‌లను చూపించు", + + "admin.reports.collections.collections-report": "కలెక్షన్ రిపోర్ట్", + + "admin.reports.collections.item-results": "ఐటెమ్ ఫలితాలు", + + "admin.reports.collections.community": "కమ్యూనిటీ", + + "admin.reports.collections.collection": "కలెక్షన్", + + "admin.reports.collections.nb_items": "ఐటెమ్‌ల సంఖ్య", + + "admin.reports.collections.match_all_selected_filters": "ఎంచుకున్న అన్ని ఫిల్టర్‌లతో సరిపోలుతుంది", + + "admin.reports.items.breadcrumbs": "మెటాడేటా క్వెరీ రిపోర్ట్", + + "admin.reports.items.head": "మెటాడేటా క్వెరీ రిపోర్ట్", + + "admin.reports.items.run": "ఐటెమ్ క్వెరీని రన్ చేయండి", + + "admin.reports.items.section.collectionSelector": "కలెక్షన్ సెలెక్టర్", + + "admin.reports.items.section.metadataFieldQueries": "మెటాడేటా ఫీల్డ్ క్వెరీలు", + + "admin.reports.items.predefinedQueries": "ముందే నిర్వచించబడిన క్వెరీలు", + + "admin.reports.items.section.limitPaginateQueries": "లిమిట్/పేజినేట్ క్వెరీలు", + + "admin.reports.items.limit": "లిమిట్/", + + "admin.reports.items.offset": "ఆఫ్సెట్", + + "admin.reports.items.wholeRepo": "మొత్తం రిపోజిటరీ", + + "admin.reports.items.anyField": "ఏదైనా ఫీల్డ్", + + "admin.reports.items.predicate.exists": "ఉంది", + + "admin.reports.items.predicate.doesNotExist": "లేదు", + + "admin.reports.items.predicate.equals": "సమానం", + + "admin.reports.items.predicate.doesNotEqual": "సమానం కాదు", + + "admin.reports.items.predicate.like": "వంటిది", + + "admin.reports.items.predicate.notLike": "వంటిది కాదు", + + "admin.reports.items.predicate.contains": "కలిగి ఉంది", + + "admin.reports.items.predicate.doesNotContain": "కలిగి లేదు", + + "admin.reports.items.predicate.matches": "సరిపోలుతుంది", + + "admin.reports.items.predicate.doesNotMatch": "సరిపోలడం లేదు", + + "admin.reports.items.preset.new": "కొత్త క్వెరీ", + + "admin.reports.items.preset.hasNoTitle": "టైటిల్ లేదు", + + "admin.reports.items.preset.hasNoIdentifierUri": "dc.identifier.uri లేదు", + + "admin.reports.items.preset.hasCompoundSubject": "సమ్మేళన విషయం ఉంది", + + "admin.reports.items.preset.hasCompoundAuthor": "సమ్మేళన dc.contributor.author ఉంది", + + "admin.reports.items.preset.hasCompoundCreator": "సమ్మేళన dc.creator ఉంది", + + "admin.reports.items.preset.hasUrlInDescription": "dc.descriptionలో URL ఉంది", + + "admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenanceలో పూర్తి టెక్స్ట్ ఉంది", + + "admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenanceలో పూర్తి టెక్స్ట్ కాదు", + + "admin.reports.items.preset.hasEmptyMetadata": "ఖాళీ మెటాడేటా ఉంది", + + "admin.reports.items.preset.hasUnbreakingDataInDescription": "వివరణలో విచ్ఛిన్నం కాని మెటాడేటా ఉంది", + + "admin.reports.items.preset.hasXmlEntityInMetadata": "మెటాడేటాలో XML ఎంటిటీ ఉంది", + + "admin.reports.items.preset.hasNonAsciiCharInMetadata": "మెటాడేటాలో నాన్-అస్కీ అక్షరం ఉంది", + + "admin.reports.items.number": "సంఖ్య.", + + "admin.reports.items.id": "UUID", + + "admin.reports.items.collection": "కలెక్షన్", + + "admin.reports.items.handle": "URI", + + "admin.reports.items.title": "టైటిల్", + + "admin.reports.commons.filters": "ఫిల్టర్‌లు", + + "admin.reports.commons.additional-data": "తిరిగి పొందడానికి అదనపు డేటా", + + "admin.reports.commons.previous-page": "మునుపటి పేజీ", + + "admin.reports.commons.next-page": "తర్వాతి పేజీ", + + "admin.reports.commons.page": "పేజీ", + + "admin.reports.commons.of": "లో", + + "admin.reports.commons.export": "మెటాడేటా నవీకరణ కోసం ఎగుమతి చేయండి", + + "admin.reports.commons.filters.deselect_all": "అన్ని ఫిల్టర్‌లను ఎంపికను తొలగించండి", + + "admin.reports.commons.filters.select_all": "అన్ని ఫిల్టర్‌లను ఎంచుకోండి", + + "admin.reports.commons.filters.matches_all": "నిర్దిష్టపరచిన అన్ని ఫిల్టర్‌లతో సరిపోలుతుంది", + + "admin.reports.commons.filters.property": "ఐటెమ్ ప్రాపర్టీ ఫిల్టర్‌లు", + + "admin.reports.commons.filters.property.is_item": "ఐటెమ్ - ఎల్లప్పుడూ నిజం", + + "admin.reports.commons.filters.property.is_withdrawn": "విడిపోయిన ఐటెమ్‌లు", + + "admin.reports.commons.filters.property.is_not_withdrawn": "అందుబాటులో ఉన్న ఐటెమ్‌లు - విడిపోలేదు", + + "admin.reports.commons.filters.property.is_discoverable": "డిస్కవర్ చేయగల ఐటెమ్‌లు - ప్రైవేట్ కాదు", + + "admin.reports.commons.filters.property.is_not_discoverable": "డిస్కవర్ చేయలేము - ప్రైవేట్ ఐటెమ్", + + "admin.reports.commons.filters.bitstream": "బేసిక్ బిట్‌స్ట్రీమ్ ఫిల్టర్‌లు", + + "admin.reports.commons.filters.bitstream.has_multiple_originals": "ఐటెమ్‌కు బహుళ ఆరిజినల్ బిట్‌స్ట్రీమ్‌లు ఉన్నాయి", + + "admin.reports.commons.filters.bitstream.has_no_originals": "ఐటెమ్‌కు ఆరిజినల్ బిట్‌స్ట్రీమ్‌లు లేవు", + + "admin.reports.commons.filters.bitstream.has_one_original": "ఐటెమ్‌కు ఒక ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", + + "admin.reports.commons.filters.bitstream_mime": "MIME రకం ద్వారా బిట్‌స్ట్రీమ్ ఫిల్టర్‌లు", + + "admin.reports.commons.filters.bitstream_mime.has_doc_original": "ఐటెమ్‌కు డాక్ ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది (PDF, Office, Text, HTML, XML, మొదలైనవి)", + + "admin.reports.commons.filters.bitstream_mime.has_image_original": "ఐటెమ్‌కు ఇమేజ్ ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", + + "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "ఇతర బిట్‌స్ట్రీమ్ రకాలు ఉన్నాయి (డాక్ లేదా ఇమేజ్ కాదు)", + + "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "ఐటెమ్‌కు బహుళ రకాల ఆరిజినల్ బిట్‌స్ట్రీమ్‌లు ఉన్నాయి (డాక్, ఇమేజ్, ఇతర)", + + "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "ఐటెమ్‌కు PDF ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", + + "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "ఐటెమ్‌కు JPG ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", + + "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "అసాధారణంగా చిన్న PDF ఉంది", + + "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "అసాధారణంగా పెద్ద PDF ఉంది", + + "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "TEXT ఐటెమ్ లేకుండా డాక్యుమెంట్ బిట్‌స్ట్రీమ్ ఉంది", + + "admin.reports.commons.filters.mime": "సపోర్ట్ చేయబడిన MIME రకం ఫిల్టర్‌లు", + + "admin.reports.commons.filters.mime.has_only_supp_image_type": "ఐటెమ్ ఇమేజ్ బిట్‌స్ట్రీమ్‌లు సపోర్ట్ చేయబడ్డాయి", + + "admin.reports.commons.filters.mime.has_unsupp_image_type": "ఐటెమ్‌కు సపోర్ట్ చేయని ఇమేజ్ బిట్‌స్ట్రీమ్ ఉంది", + + "admin.reports.commons.filters.mime.has_only_supp_doc_type": "ఐటెమ్ డాక్యుమెంట్ బిట్‌స్ట్రీమ్‌లు సపోర్ట్ చేయబడ్డాయి", + + "admin.reports.commons.filters.mime.has_unsupp_doc_type": "ఐటెమ్‌కు సపోర్ట్ చేయని డాక్యుమెంట్ బిట్‌స్ట్రీమ్ ఉంది", + + "admin.reports.commons.filters.bundle": "బిట్‌స్ట్రీమ్ బండిల్ ఫిల్టర్‌లు", + + "admin.reports.commons.filters.bundle.has_unsupported_bundle": "సపోర్ట్ చేయని బండిల్‌లో బిట్‌స్ట్రీమ్ ఉంది", + + "admin.reports.commons.filters.bundle.has_small_thumbnail": "అసాధారణంగా చిన్న థంబ్‌నెయిల్ ఉంది", + + "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "థంబ్‌నెయిల్ లేకుండా ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", + + "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "చెల్లని థంబ్‌నెయిల్ పేరు ఉంది (ప్రతి ఆరిజినల్ కోసం ఒక థంబ్‌నెయిల్ అని భావిస్తుంది)", + + "admin.reports.commons.filters.bundle.has_non_generated_thumb": "జనరేట్ చేయని థంబ్‌నెయిల్ ఉంది", + + "admin.reports.commons.filters.bundle.no_license": "లైసెన్స్ లేదు", + + "admin.reports.commons.filters.bundle.has_license_documentation": "లైసెన్స్ బండిల్‌లో డాక్యుమెంటేషన్ ఉంది", + + "admin.reports.commons.filters.permission": "పర్మిషన్ ఫిల్టర్‌లు", + + "admin.reports.commons.filters.permission.has_restricted_original": "ఐటెమ్‌కు రిస్ట్రిక్టెడ్ ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది", + + "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "ఐటెమ్‌కు కనీసం ఒక ఆరిజినల్ బిట్‌స్ట్రీమ్ ఉంది, ఇది అనామక వినియోగదారుకు అందుబాటులో లేదు", + + "admin.reports.commons.filters.permission.has_restricted_thumbnail": "ఐటెమ్‌కు రిస్ట్రిక్టెడ్ థంబ్‌నెయిల్ ఉంది", + + "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "ఐటెమ్‌కు కనీసం ఒక థంబ్‌నెయిల్ ఉంది, ఇది అనామక వినియోగదారుకు అందుబాటులో లేదు", + + "admin.reports.commons.filters.permission.has_restricted_metadata": "ఐటెమ్‌కు రిస్ట్రిక్టెడ్ మెటాడేటా ఉంది", + + "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "ఐటెమ్‌కు మెటాడేటా ఉంది, ఇది అనామక వినియోగదారుకు అందుబాటులో లేదు", + + "admin.search.breadcrumbs": "అడ్మినిస్ట్రేటివ్ సెర్చ్", + + "admin.search.collection.edit": "ఎడిట్", + + "admin.search.community.edit": "ఎడిట్", + + "admin.search.item.delete": "డిలీట్", + + "admin.search.item.edit": "ఎడిట్", + + "admin.search.item.make-private": "డిస్కవర్ చేయలేనిదిగా చేయండి", + + "admin.search.item.make-public": "డిస్కవర్ చేయగలిగేదిగా చేయండి", + + "admin.search.item.move": "మూవ్", + + "admin.search.item.reinstate": "రీఇన్‌స్టేట్", + + "admin.search.item.withdraw": "విథ్‌డ్రా", + + "admin.search.title": "అడ్మినిస్ట్రేటివ్ సెర్చ్", + + "administrativeView.search.results.head": "అడ్మినిస్ట్రేటివ్ సెర్చ్", + + "admin.workflow.breadcrumbs": "వర్క్‌ఫ్లోను అడ్మినిస్టర్ చేయండి", + + "admin.workflow.title": "వర్క్‌ఫ్లోను అడ్మినిస్టర్ చేయండి", + + "admin.workflow.item.workflow": "వర్క్‌ఫ్లో", + + "admin.workflow.item.workspace": "వర్క్‌స్పేస్", + + "admin.workflow.item.delete": "డిలీట్", + + "admin.workflow.item.send-back": "తిరిగి పంపండి", + + "admin.workflow.item.policies": "పాలిసీలు", + + "admin.workflow.item.supervision": "సూపర్విజన్", + + "admin.metadata-import.breadcrumbs": "మెటాడేటాను ఇంపోర్ట్ చేయండి", + + "admin.batch-import.breadcrumbs": "బ్యాచ్‌ను ఇంపోర్ట్ చేయండి", + + "admin.metadata-import.title": "మెటాడేటాను ఇంపోర్ట్ చేయండి", + + "admin.batch-import.title": "బ్యాచ్‌ను ఇంపోర్ట్ చేయండి", + + "admin.metadata-import.page.header": "మెటాడేటాను ఇంపోర్ట్ చేయండి", + + "admin.batch-import.page.header": "బ్యాచ్‌ను ఇంపోర్ట్ చేయండి", + + "admin.metadata-import.page.help": "ఫైళ్లపై బ్యాచ్ మెటాడేటా ఆపరేషన్లను కలిగి ఉన్న CSV ఫైళ్లను ఇక్కడ డ్రాప్ చేయవచ్చు లేదా బ్రౌజ్ చేయవచ్చు", + + "admin.batch-import.page.help": "ఇంపోర్ట్ చేయడానికి కలెక్షన్‌ను ఎంచుకోండి. తర్వాత, ఇంపోర్ట్ చేయడానికి ఐటెమ్‌లను కలిగి ఉన్న సింపుల్ ఆర్కైవ్ ఫార్మాట్ (SAF) జిప్ ఫైల్‌ను డ్రాప్ చేయండి లేదా బ్రౌజ్ చేయండి", + + "admin.batch-import.page.toggle.help": "ఫైల్ అప్‌లోడ్ ద్వారా లేదా URL ద్వారా ఇంపోర్ట్ చేయడం సాధ్యమే, ఇన్‌పుట్ సోర్స్‌ను సెట్ చేయడానికి పై టోగుల్‌ను ఉపయోగించండి", + + "admin.metadata-import.page.dropMsg": "ఇంపోర్ట్ చేయడానికి మెటాడేటా CSVని డ్రాప్ చేయండి", + + "admin.batch-import.page.dropMsg": "ఇంపోర్ట్ చేయడానికి బ్యాచ్ ZIPని డ్రాప్ చేయండి", + + "admin.metadata-import.page.dropMsgReplace": "ఇంపోర్ట్ చేయడానికి మెటాడేటా CSVని భర్తీ చేయడానికి డ్రాప్ చేయండి", + + "admin.batch-import.page.dropMsgReplace": "ఇంపోర్ట్ చేయడానికి బ్యాచ్ ZIPని భర్తీ చేయడానికి డ్రాప్ చేయండి", + + "admin.metadata-import.page.button.return": "బ్యాక్", + + "admin.metadata-import.page.button.proceed": "ప్రాసీడ్", + + "admin.metadata-import.page.button.select-collection": "కలెక్షన్‌ను ఎంచుకోండి", + + "admin.metadata-import.page.error.addFile": "ముందుగా ఫైల్‌ను ఎంచుకోండి!", + + "admin.metadata-import.page.error.addFileUrl": "ముందుగా ఫైల్ URLని ఇన్‌సర్ట్ చేయండి!", + + "admin.batch-import.page.error.addFile": "ముందుగా ZIP ఫైల్‌ను ఎంచుకోండి!", + + "admin.metadata-import.page.toggle.upload": "అప్‌లోడ్", + + "admin.metadata-import.page.toggle.url": "URL", + + "admin.metadata-import.page.urlMsg": "ఇంపోర్ట్ చేయడానికి బ్యాచ్ ZIP urlని ఇన్‌సర్ట్ చేయండి", + + "admin.metadata-import.page.validateOnly": "వాలిడేట్ మాత్రమే", + + "admin.metadata-import.page.validateOnly.hint": "ఎంచుకున్నప్పుడు, అప్‌లోడ్ చేసిన CSV వాలిడేట్ చేయబడుతుంది. మీరు కనుగొన్న మార్పుల రిపోర్ట్‌ను పొందుతారు, కానీ మార్పులు సేవ్ చేయబడవు.", + + "advanced-workflow-action.rating.form.rating.label": "రేటింగ్", + + "advanced-workflow-action.rating.form.rating.error": "మీరు ఐటెమ్‌ను రేట్ చేయాలి", + + "advanced-workflow-action.rating.form.review.label": "రివ్యూ", + + "advanced-workflow-action.rating.form.review.error": "ఈ రేటింగ్‌ను సబ్‌మిట్ చేయడానికి మీరు రివ్యూను ఎంటర్ చేయాలి", + + "advanced-workflow-action.rating.description": "దయచేసి క్రింద ఒక రేటింగ్‌ను ఎంచుకోండి", + + "advanced-workflow-action.rating.description-requiredDescription": "దయచేసి క్రింద ఒక రేటింగ్‌ను ఎంచుకోండి మరియు ఒక రివ్యూను కూడా జోడించండి", + + "advanced-workflow-action.select-reviewer.description-single": "సబ్‌మిట్ చేయడానికి ముందు దయచేసి క్రింద ఒక రివ్యూయర్‌ను ఎంచుకోండి", + + "advanced-workflow-action.select-reviewer.description-multiple": "సబ్‌మిట్ చేయడానికి ముందు దయచేసి క్రింద ఒకటి లేదా అంతకంటే ఎక్కువ రివ్యూయర్‌లను ఎంచుకోండి", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "ఇ-పీపుల్", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "ఇ-పీపుల్‌ను జోడించండి", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "అన్నింటినీ బ్రౌజ్ చేయండి", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "ప్రస్తుత సభ్యులు", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "శోధించండి", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "పేరు", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ఐడెంటిటీ", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ఇమెయిల్", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "నెట్ ID", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "తీసివేయండి / జోడించండి", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "\"{{name}}\" పేరుతో ఉన్న సభ్యుని తీసివేయండి", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "\"{{name}}\" సభ్యుని విజయవంతంగా జోడించబడింది", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "\"{{name}}\" సభ్యుని జోడించడంలో విఫలమైంది", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "\"{{name}}\" సభ్యుని విజయవంతంగా తొలగించబడింది", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "\"{{name}}\" సభ్యుని తొలగించడంలో విఫలమైంది", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "\"{{name}}\" పేరుతో ఉన్న సభ్యుని జోడించండి", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "ప్రస్తుతం యాక్టివ్ గ్రూప్ లేదు, ముందుగా ఒక పేరును సబ్‌మిట్ చేయండి.", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "గ్రూప్‌లో ఇంకా సభ్యులు లేరు, శోధించి జోడించండి.", + + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "ఆ శోధనలో ఇ-పీపుల్ కనుగొనబడలేదు", + + "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "రివ్యూయర్ ఎంచుకోబడలేదు.", + + "admin.batch-import.page.validateOnly.hint": "ఎంచుకున్నప్పుడు, అప్‌లోడ్ చేసిన ZIP వాలిడేట్ చేయబడుతుంది. మీరు కనుగొన్న మార్పుల రిపోర్ట్‌ను పొందుతారు, కానీ మార్పులు సేవ్ చేయబడవు.", + + "admin.batch-import.page.remove": "తీసివేయండి", + + "auth.errors.invalid-user": "చెల్లని ఇమెయిల్ చిరునామా లేదా పాస్‌వర్డ్.", + + "auth.messages.expired": "మీ సెషన్ కాలం చెల్లింది. దయచేసి మళ్లీ లాగిన్ అవ్వండి.", + + "auth.messages.token-refresh-failed": "మీ సెషన్ టోకన్‌ను రిఫ్రెష్ చేయడంలో విఫలమైంది. దయచేసి మళ్లీ లాగిన్ అవ్వండి.", + + "bitstream.download.page": "ఇప్పుడు {{bitstream}} డౌన్‌లోడ్ అవుతోంది...", + + "bitstream.download.page.back": "బ్యాక్", + + "bitstream.edit.authorizations.link": "బిట్స్ట్రీమ్ యొక్క విధానాలను సవరించండి", + "bitstream.edit.authorizations.title": "బిట్స్ట్రీమ్ యొక్క విధానాలను సవరించండి", + "bitstream.edit.return": "తిరిగి", + "bitstream.edit.bitstream": "బిట్స్ట్రీమ్: ", + "bitstream.edit.form.description.hint": "ఐచ్ఛికంగా, ఫైల్ యొక్క సంక్షిప్త వివరణను అందించండి, ఉదాహరణకు \"ప్రధాన వ్యాసం\" లేదా \"ప్రయోగ డేటా రీడింగులు\".", + "bitstream.edit.form.description.label": "వివరణ", + "bitstream.edit.form.embargo.hint": "యాక్సెస్ అనుమతించబడిన మొదటి రోజు. ఈ తేదీని ఈ ఫారమ్‌లో సవరించలేరు. బిట్స్ట్రీమ్‌కు ఎంబార్గో తేదీని సెట్ చేయడానికి, అంశం స్థితి ట్యాబ్‌కు వెళ్లి, అధికారాలు... క్లిక్ చేయండి, బిట్స్ట్రీమ్ యొక్క READ విధానాన్ని సృష్టించండి లేదా సవరించండి మరియు ప్రారంభ తేదీని కోరుకున్న విధంగా సెట్ చేయండి.", + "bitstream.edit.form.embargo.label": "నిర్దిష్ట తేదీ వరకు ఎంబార్గో", + "bitstream.edit.form.fileName.hint": "బిట్స్ట్రీమ్ కోసం ఫైల్ పేరును మార్చండి. ఇది ప్రదర్శన బిట్స్ట్రీమ్ URLని మారుస్తుంది, కానీ పాత లింక్‌లు సీక్వెన్స్ ID మారకపోతే ఇంకా పరిష్కరించబడతాయి.", + "bitstream.edit.form.fileName.label": "ఫైల్ పేరు", + "bitstream.edit.form.newFormat.label": "కొత్త ఫార్మాట్‌ను వివరించండి", + "bitstream.edit.form.newFormat.hint": "ఫైల్‌ను సృష్టించడానికి మీరు ఉపయోగించిన అప్లికేషన్ మరియు వెర్షన్ నంబర్ (ఉదాహరణకు, \"ACMESoft SuperApp వెర్షన్ 1.5\").", + "bitstream.edit.form.primaryBitstream.label": "ప్రాథమిక ఫైల్", + "bitstream.edit.form.selectedFormat.hint": "ఫార్మాట్ పైన ఉన్న జాబితాలో లేకుంటే, \"ఫార్మాట్ జాబితాలో లేదు\"ని ఎంచుకోండి మరియు దానిని \"కొత్త ఫార్మాట్‌ను వివరించండి\" క్రింద వివరించండి.", + "bitstream.edit.form.selectedFormat.label": "ఎంచుకున్న ఫార్మాట్", + "bitstream.edit.form.selectedFormat.unknown": "ఫార్మాట్ జాబితాలో లేదు", + "bitstream.edit.notifications.error.format.title": "బిట్స్ట్రీమ్ ఫార్మాట్‌ను సేవ్ చేయడంలో లోపం సంభవించింది", + "bitstream.edit.notifications.error.primaryBitstream.title": "ప్రాథమిక బిట్స్ట్రీమ్‌ను సేవ్ చేయడంలో లోపం సంభవించింది", + "bitstream.edit.form.iiifLabel.label": "IIIF లేబుల్", + "bitstream.edit.form.iiifLabel.hint": "ఈ చిత్రం కోసం కెన్వాస్ లేబుల్. అందించకపోతే డిఫాల్ట్ లేబుల్ ఉపయోగించబడుతుంది.", + "bitstream.edit.form.iiifToc.label": "IIIF విషయ సూచిక", + "bitstream.edit.form.iiifToc.hint": "ఇక్కడ టెక్స్ట్‌ను జోడించడం దీనిని కొత్త విషయ సూచిక పరిధి యొక్క ప్రారంభంగా చేస్తుంది.", + "bitstream.edit.form.iiifWidth.label": "IIIF కెన్వాస్ వెడల్పు", + "bitstream.edit.form.iiifWidth.hint": "కెన్వాస్ వెడల్పు సాధారణంగా ఇమేజ్ వెడల్పుతో సరిపోలాలి.", + "bitstream.edit.form.iiifHeight.label": "IIIF కెన్వాస్ ఎత్తు", + "bitstream.edit.form.iiifHeight.hint": "కెన్వాస్ ఎత్తు సాధారణంగా ఇమేజ్ ఎత్తుతో సరిపోలాలి.", + "bitstream.edit.notifications.saved.content": "ఈ బిట్స్ట్రీమ్‌కు మీ మార్పులు సేవ్ చేయబడ్డాయి.", + "bitstream.edit.notifications.saved.title": "బిట్స్ట్రీమ్ సేవ్ చేయబడింది", + "bitstream.edit.title": "బిట్స్ట్రీమ్‌ను సవరించండి", + "bitstream-request-a-copy.alert.canDownload1": "మీకు ఇప్పటికే ఈ ఫైల్‌కు యాక్సెస్ ఉంది. మీరు ఫైల్‌ను డౌన్‌లోడ్ చేయాలనుకుంటే, క్లిక్ చేయండి ", + "bitstream-request-a-copy.alert.canDownload2": "ఇక్కడ", + "bitstream-request-a-copy.header": "ఫైల్ యొక్క కాపీని అభ్యర్థించండి", + "bitstream-request-a-copy.intro": "క్రింది అంశం కోసం కాపీని అభ్యర్థించడానికి క్రింది సమాచారాన్ని నమోదు చేయండి: ", + "bitstream-request-a-copy.intro.bitstream.one": "క్రింది ఫైల్‌ను అభ్యర్థిస్తున్నారు: ", + "bitstream-request-a-copy.intro.bitstream.all": "అన్ని ఫైల్‌లను అభ్యర్థిస్తున్నారు. ", + "bitstream-request-a-copy.name.label": "పేరు *", + "bitstream-request-a-copy.name.error": "పేరు అవసరం", + "bitstream-request-a-copy.email.label": "మీ ఇమెయిల్ చిరునామా *", + "bitstream-request-a-copy.email.hint": "ఈ ఇమెయిల్ చిరునామా ఫైల్‌ను పంపడానికి ఉపయోగించబడుతుంది.", + "bitstream-request-a-copy.email.error": "దయచేసి సరైన ఇమెయిల్ చిరునామాను నమోదు చేయండి.", + "bitstream-request-a-copy.allfiles.label": "ఫైల్‌లు", + "bitstream-request-a-copy.files-all-false.label": "అభ్యర్థించిన ఫైల్ మాత్రమే", + "bitstream-request-a-copy.files-all-true.label": "అన్ని ఫైల్‌లు (ఈ అంశం యొక్క) పరిమిత యాక్సెస్‌లో", + "bitstream-request-a-copy.message.label": "సందేశం", + "bitstream-request-a-copy.return": "తిరిగి", + "bitstream-request-a-copy.submit": "కాపీని అభ్యర్థించండి", + "bitstream-request-a-copy.submit.success": "అంశం అభ్యర్థన విజయవంతంగా సమర్పించబడింది.", + "bitstream-request-a-copy.submit.error": "అంశం అభ్యర్థనను సమర్పించడంలో ఏదో తప్పు జరిగింది.", + "bitstream-request-a-copy.access-by-token.warning": "మీరు రచయిత లేదా రిపోజిటరీ సిబ్బంది మీకు అందించిన సురక్షిత యాక్సెస్ లింక్‌తో ఈ అంశాన్ని చూస్తున్నారు. ఈ లింక్‌ను అనధికార వినియోగదారులతో భాగస్వామ్యం చేయకుండా ఉండటం ముఖ్యం.", + "bitstream-request-a-copy.access-by-token.expiry-label": "ఈ లింక్ ద్వారా అందించబడిన యాక్సెస్ ముగుస్తుంది", + "bitstream-request-a-copy.access-by-token.expired": "ఈ లింక్ ద్వారా అందించబడిన యాక్సెస్ ఇకపై సాధ్యం కాదు. యాక్సెస్ ముగిసింది", + "bitstream-request-a-copy.access-by-token.not-granted": "ఈ లింక్ ద్వారా అందించబడిన యాక్సెస్ సాధ్యం కాదు. యాక్సెస్ ఇంకా మంజూరు చేయబడలేదు లేదా రద్దు చేయబడింది.", + "bitstream-request-a-copy.access-by-token.re-request": "కొత్త అభ్యర్థనను సమర్పించడానికి పరిమిత డౌన్‌లోడ్ లింక్‌లను అనుసరించండి.", + "bitstream-request-a-copy.access-by-token.alt-text": "ఈ అంశానికి యాక్సెస్ సురక్షిత టోకెన్ ద్వారా అందించబడింది", + "browse.back.all-results": "అన్ని బ్రౌజ్ ఫలితాలు", + "browse.comcol.by.author": "రచయిత ద్వారా", + "browse.comcol.by.dateissued": "ఇష్యూ తేదీ ద్వారా", + "browse.comcol.by.subject": "విషయం ద్వారా", + "browse.comcol.by.srsc": "విషయం వర్గం ద్వారా", + "browse.comcol.by.nsi": "నార్వేజియన్ సైన్స్ ఇండెక్స్ ద్వారా", + "browse.comcol.by.title": "శీర్షిక ద్వారా", + "browse.comcol.head": "బ్రౌజ్ చేయండి", + "browse.empty": "చూపించడానికి అంశాలు లేవు.", + "browse.metadata.author": "రచయిత", + "browse.metadata.dateissued": "ఇష్యూ తేదీ", + "browse.metadata.subject": "విషయం", + "browse.metadata.title": "శీర్షిక", + "browse.metadata.srsc": "విషయం వర్గం", + "browse.metadata.author.breadcrumbs": "రచయిత ద్వారా బ్రౌజ్ చేయండి", + "browse.metadata.dateissued.breadcrumbs": "తేదీ ద్వారా బ్రౌజ్ చేయండి", + "browse.metadata.subject.breadcrumbs": "విషయం ద్వారా బ్రౌజ్ చేయండి", + "browse.metadata.srsc.breadcrumbs": "విషయం వర్గం ద్వారా బ్రౌజ్ చేయండి", + "browse.metadata.srsc.tree.description": "శోధన ఫిల్టర్‌గా జోడించడానికి ఒక విషయాన్ని ఎంచుకోండి", + "browse.metadata.nsi.breadcrumbs": "నార్వేజియన్ సైన్స్ ఇండెక్స్ ద్వారా బ్రౌజ్ చేయండి", + "browse.metadata.nsi.tree.description": "శోధన ఫిల్టర్‌గా జోడించడానికి ఒక ఇండెక్స్‌ను ఎంచుకోండి", + "browse.metadata.title.breadcrumbs": "శీర్షిక ద్వారా బ్రౌజ్ చేయండి", + "browse.metadata.map": "భౌగోళిక స్థానం ద్వారా బ్రౌజ్ చేయండి", + "browse.metadata.map.breadcrumbs": "భౌగోళిక స్థానం ద్వారా బ్రౌజ్ చేయండి", + "browse.metadata.map.count.items": "అంశాలు", + "pagination.next.button": "తర్వాత", + "pagination.previous.button": "మునుపటి", + "pagination.next.button.disabled.tooltip": "ఫలితాల యొక్క మరిన్ని పేజీలు లేవు", + "pagination.page-number-bar": "పేజీ నావిగేషన్ కోసం కంట్రోల్ బార్, IDతో మూలకానికి సంబంధించి: ", + "browse.startsWith": ", {{ startsWith }} తో ప్రారంభమవుతుంది", + "browse.startsWith.choose_start": "(ప్రారంభాన్ని ఎంచుకోండి)", + "browse.startsWith.choose_year": "(సంవత్సరాన్ని ఎంచుకోండి)", + "browse.startsWith.choose_year.label": "ఇష్యూ సంవత్సరాన్ని ఎంచుకోండి", + "browse.startsWith.jump": "సంవత్సరం లేదా నెల ద్వారా ఫలితాలను ఫిల్టర్ చేయండి", + "browse.startsWith.months.april": "ఏప్రిల్", + "browse.startsWith.months.august": "ఆగస్టు", + "browse.startsWith.months.december": "డిసెంబర్", + "browse.startsWith.months.february": "ఫిబ్రవరి", + "browse.startsWith.months.january": "జనవరి", + "browse.startsWith.months.july": "జూలై", + "browse.startsWith.months.june": "జూన్", + "browse.startsWith.months.march": "మార్చి", + "browse.startsWith.months.may": "మే", + "browse.startsWith.months.none": "(నెలను ఎంచుకోండి)", + "browse.startsWith.months.none.label": "ఇష్యూ నెలను ఎంచుకోండి", + "browse.startsWith.months.november": "నవంబర్", + "browse.startsWith.months.october": "అక్టోబర్", + "browse.startsWith.months.september": "సెప్టెంబర్", + "browse.startsWith.submit": "బ్రౌజ్ చేయండి", + "browse.startsWith.type_date": "తేదీ ద్వారా ఫలితాలను ఫిల్టర్ చేయండి", + "browse.startsWith.type_date.label": "లేదా ఒక తేదీని (సంవత్సరం-నెల) టైప్ చేసి బ్రౌజ్ బటన్‌పై క్లిక్ చేయండి", + "browse.startsWith.type_text": "మొదటి కొన్ని అక్షరాలను టైప్ చేయడం ద్వారా ఫలితాలను ఫిల్టర్ చేయండి", + "browse.startsWith.input": "ఫిల్టర్", + "browse.taxonomy.button": "బ్రౌజ్ చేయండి", + "browse.title": "{{ field }} ద్వారా బ్రౌజ్ చేస్తున్నారు{{ startsWith }} {{ value }}", + "browse.title.page": "{{ field }} ద్వారా బ్రౌజ్ చేస్తున్నారు {{ value }}", + "search.browse.item-back": "ఫలితాలకు తిరిగి వెళ్లండి", + "chips.remove": "చిప్‌ను తీసివేయండి", + "claimed-approved-search-result-list-element.title": "ఆమోదించబడింది", + "claimed-declined-search-result-list-element.title": "తిరస్కరించబడింది, సమర్పించేవారికి తిరిగి పంపబడింది", + "claimed-declined-task-search-result-list-element.title": "తిరస్కరించబడింది, రివ్యూ మేనేజర్ యొక్క వర్క్‌ఫ్లోకు తిరిగి పంపబడింది", + "collection.create.breadcrumbs": "కలెక్షన్‌ను సృష్టించండి", + "collection.browse.logo": "కలెక్షన్ లోగో కోసం బ్రౌజ్ చేయండి", + "collection.create.head": "ఒక కలెక్షన్‌ను సృష్టించండి", + "collection.create.notifications.success": "కలెక్షన్ విజయవంతంగా సృష్టించబడింది", + "collection.create.sub-head": "కమ్యూనిటీ {{ parent }} కోసం కలెక్షన్‌ను సృష్టించండి", + "collection.curate.header": "కలెక్షన్‌ను క్యూరేట్ చేయండి: {{collection}}", + "collection.delete.cancel": "రద్దు చేయండి", + "collection.delete.confirm": "నిర్ధారించండి", + "collection.delete.processing": "తొలగిస్తోంది", + "collection.delete.head": "కలెక్షన్‌ను తొలగించండి", + "collection.delete.notification.fail": "కలెక్షన్ తొలగించబడలేదు", + "collection.delete.notification.success": "కలెక్షన్ విజయవంతంగా తొలగించబడింది", + "collection.delete.text": "మీరు కలెక్షన్ \"{{ dso }}\"ని తొలగించాలని నిజంగా నిర్ధారించుకున్నారా", + "collection.edit.delete": "ఈ కలెక్షన్‌ను తొలగించండి", + "collection.edit.head": "కలెక్షన్‌ను సవరించండి", + "collection.edit.breadcrumbs": "కలెక్షన్‌ను సవరించండి", + "collection.edit.tabs.mapper.head": "అంశం మ్యాపర్", + "collection.edit.tabs.item-mapper.title": "కలెక్షన్ ఎడిట్ - అంశం మ్యాపర్", + "collection.edit.item-mapper.cancel": "రద్దు చేయండి", + "collection.edit.item-mapper.collection": "కలెక్షన్: \"{{name}}\"", + "collection.edit.item-mapper.confirm": "ఎంచుకున్న అంశాలను మ్యాప్ చేయండి", + "collection.edit.item-mapper.description": "ఇది అంశం మ్యాపర్ సాధనం, ఇది కలెక్షన్ నిర్వాహకులకు ఇతర కలెక్షన్‌ల నుండి అంశాలను ఈ కలెక్షన్‌కు మ్యాప్ చేయడానికి అనుమతిస్తుంది. మీరు ఇతర కలెక్షన్‌ల నుండి అంశాలను శోధించవచ్చు మరియు వాటిని మ్యాప్ చేయవచ్చు లేదా ప్రస్తుతం మ్యాప్ చేయబడిన అంశాల జాబితాను బ్రౌజ్ చేయవచ్చు.", + "collection.edit.item-mapper.head": "అంశం మ్యాపర్ - ఇతర కలెక్షన్‌ల నుండి అంశాలను మ్యాప్ చేయండి", + "collection.edit.item-mapper.no-search": "శోధించడానికి ఒక ప్రశ్నను నమోదు చేయండి", + "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} అంశాల మ్యాపింగ్‌లో లోపాలు సంభవించాయి.", + "collection.edit.item-mapper.notifications.map.error.head": "మ్యాపింగ్ లోపాలు", + "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} అంశాలు విజయవంతంగా మ్యాప్ చేయబడ్డాయి.", + "collection.edit.item-mapper.notifications.map.success.head": "మ్యాపింగ్ పూర్తయింది", + "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} అంశాల మ్యాపింగ్‌లను తొలగించడంలో లోపాలు సంభవించాయి.", + "collection.edit.item-mapper.notifications.unmap.error.head": "మ్యాపింగ్‌లను తొలగించడంలో లోపాలు", + "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} అంశాల మ్యాపింగ్‌లు విజయవంతంగా తొలగించబడ్డాయి.", + "collection.edit.item-mapper.notifications.unmap.success.head": "మ్యాపింగ్‌లను తొలగించడం పూర్తయింది", + "collection.edit.item-mapper.remove": "ఎంచుకున్న అంశం మ్యాపింగ్‌లను తొలగించండి", + "collection.edit.item-mapper.search-form.placeholder": "అంశాలను శోధించండి...", + "collection.edit.item-mapper.tabs.browse": "మ్యాప్ చేయబడిన అంశాలను బ్రౌజ్ చేయండి", + "collection.edit.item-mapper.tabs.map": "కొత్త అంశాలను మ్యాప్ చేయండి", + "collection.edit.logo.delete.title": "లోగోను తొలగించండి", + "collection.edit.logo.delete-undo.title": "తొలగింపును రద్దు చేయండి", + "collection.edit.logo.label": "కలెక్షన్ లోగో", + "collection.edit.logo.notifications.add.error": "కలెక్షన్ లోగోను అప్‌లోడ్ చేయడం విఫలమైంది. దయచేసి మళ్లీ ప్రయత్నించే ముందు కంటెంట్‌ను ధృవీకరించండి.", + "collection.edit.logo.notifications.add.success": "కలెక్షన్ లోగో అప్‌లోడ్ విజయవంతమైంది.", + "collection.edit.logo.notifications.delete.success.title": "లోగో తొలగించబడింది", + "collection.edit.logo.notifications.delete.success.content": "కలెక్షన్ యొక్క లోగో విజయవంతంగా తొలగించబడింది", + "collection.edit.logo.notifications.delete.error.title": "లోగో తొలగించడంలో లోపం", + "collection.edit.logo.upload": "అప్‌లోడ్ చేయడానికి ఒక కలెక్షన్ లోగోను డ్రాప్ చేయండి", + "collection.edit.notifications.success": "కలెక్షన్ విజయవంతంగా సవరించబడింది", + "collection.edit.return": "తిరిగి", + "collection.edit.tabs.access-control.head": "యాక్సెస్ కంట్రోల్", + "collection.edit.tabs.access-control.title": "కలెక్షన్ ఎడిట్ - యాక్సెస్ కంట్రోల్", + "collection.edit.tabs.curate.head": "క్యూరేట్", + "collection.edit.tabs.curate.title": "కలెక్షన్ ఎడిట్ - క్యూరేట్", + "collection.edit.tabs.authorizations.head": "అధికారాలు", + "collection.edit.tabs.authorizations.title": "కలెక్షన్ ఎడిట్ - అధికారాలు", + "collection.edit.item.authorizations.load-bundle-button": "మరిన్ని బండిల్‌లను లోడ్ చేయండి", + "collection.edit.item.authorizations.load-more-button": "మరిన్ని లోడ్ చేయండి", + "collection.edit.item.authorizations.show-bitstreams-button": "బండిల్ కోసం బిట్స్ట్రీమ్ విధానాలను చూపించండి", + "collection.edit.tabs.metadata.head": "మెటాడేటాను సవరించండి", + "collection.edit.tabs.metadata.title": "కలెక్షన్ ఎడిట్ - మెటాడేటా", + "collection.edit.tabs.roles.head": "రోల్‌లను కేటాయించండి", + "collection.edit.tabs.roles.title": "కలెక్షన్ ఎడిట్ - రోల్‌లు", + "collection.edit.tabs.source.external": "ఈ కలెక్షన్ దాని కంటెంట్‌ను బాహ్య మూలం నుండి సేకరిస్తుంది", + "collection.edit.tabs.source.form.errors.oaiSource.required": "మీరు టార్గెట్ కలెక్షన్ యొక్క సెట్ IDని అందించాలి.", + "collection.edit.tabs.source.form.harvestType": "సేకరించబడిన కంటెంట్", + "collection.edit.tabs.source.form.head": "బాహ్య మూలాన్ని కాన్ఫిగర్ చేయండి", + "collection.edit.tabs.source.form.metadataConfigId": "మెటాడేటా ఫార్మాట్", + "collection.edit.tabs.source.form.oaiSetId": "OAI ప్రత్యేక సెట్ ID", + "collection.edit.tabs.source.form.oaiSource": "OAI ప్రొవైడర్", + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "మెటాడేటా మరియు బిట్స్ట్రీమ్‌లను సేకరించండి (ORE మద్దతు అవసరం)", + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "మెటాడేటా మరియు బిట్స్ట్రీమ్‌లకు సూచనలను సేకరించండి (ORE మద్దతు అవసరం)", + "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "మెటాడేటాను మాత్రమే సేకరించండి", + "collection.edit.tabs.source.head": "కంటెంట్ మూలం", + "collection.edit.tabs.source.notifications.discarded.content": "మీ మార్పులు విస్మరించబడ్డాయి. మీ మార్పులను పునరుద్ధరించడానికి 'అన్డు' బటన్‌పై క్లిక్ చేయండి", + "collection.edit.tabs.source.notifications.discarded.title": "మార్పులు విస్మరించబడ్డాయి", + "collection.edit.tabs.source.notifications.invalid.content": "మీ మార్పులు సేవ్ చేయబడలేదు. సేవ్ చేయడానికి ముందు అన్ని ఫీల్డ్‌లు చెల్లుబాటు అయ్యేవిధంగా ఉన్నాయని నిర్ధారించుకోండి.", + "collection.edit.tabs.source.notifications.invalid.title": "మెటాడేటా చెల్లదు", + "collection.edit.tabs.source.notifications.saved.content": "ఈ కలెక్షన్ యొక్క కంటెంట్ మూలానికి మీ మార్పులు సేవ్ చేయబడ్డాయి.", + "collection.edit.tabs.source.notifications.saved.title": "కంటెంట్ మూలం సేవ్ చేయబడింది", + "collection.edit.tabs.source.title": "కలెక్షన్ ఎడిట్ - కంటెంట్ మూలం", + "collection.edit.template.add-button": "జోడించండి", + "collection.edit.template.breadcrumbs": "అంశం టెంప్లేట్", + "collection.edit.template.cancel": "రద్దు చేయండి", + "collection.edit.template.delete-button": "తొలగించండి", + "collection.edit.template.edit-button": "సవరించండి", + "collection.edit.template.error": "టెంప్లేట్ అంశాన్ని తిరిగి పొందడంలో లోపం సంభవించింది", + "collection.edit.template.head": "సేకరణ \"{{ collection }}\" కోసం టెంప్లేట్ అంశాన్ని సవరించండి", + "collection.edit.template.label": "టెంప్లేట్ అంశం", + "collection.edit.template.loading": "టెంప్లేట్ అంశం లోడ్ అవుతోంది...", + "collection.edit.template.notifications.delete.error": "అంశం టెంప్లేట్ను తొలగించడంలో విఫలమైంది", + "collection.edit.template.notifications.delete.success": "అంశం టెంప్లేట్ విజయవంతంగా తొలగించబడింది", + "collection.edit.template.title": "టెంప్లేట్ అంశాన్ని సవరించండి", + "collection.form.abstract": "సంక్షిప్త వివరణ", + "collection.form.description": "పరిచయ వచనం (HTML)", + "collection.form.errors.title.required": "దయచేసి సేకరణ పేరును నమోదు చేయండి", + "collection.form.license": "లైసెన్స్", + "collection.form.provenance": "మూలం", + "collection.form.rights": "కాపీరైట్ వచనం (HTML)", + "collection.form.tableofcontents": "వార్తలు (HTML)", + "collection.form.title": "పేరు", + "collection.form.entityType": "ఎంటిటీ రకం", + "collection.listelement.badge": "సేకరణ", + "collection.logo": "సేకరణ లోగో", + "collection.page.browse.search.head": "శోధించండి", + "collection.page.edit": "ఈ సేకరణను సవరించండి", + "collection.page.handle": "ఈ సేకరణకు శాశ్వత URI", + "collection.page.license": "లైసెన్స్", + "collection.page.news": "వార్తలు", + "collection.page.options": "ఎంపికలు", + "collection.search.breadcrumbs": "శోధించండి", + "collection.search.results.head": "శోధన ఫలితాలు", + "collection.select.confirm": "ఎంపికను నిర్ధారించండి", + "collection.select.empty": "చూపించడానికి సేకరణలు లేవు", + "collection.select.table.selected": "ఎంపిక చేసిన సేకరణలు", + "collection.select.table.select": "సేకరణను ఎంచుకోండి", + "collection.select.table.deselect": "సేకరణను ఎంపిక చేయకు", + "collection.select.table.title": "శీర్షిక", + "collection.source.controls.head": "హార్వెస్ట్ నియంత్రణలు", + "collection.source.controls.test.submit.error": "సెట్టింగ్లను పరీక్షించడాన్ని ప్రారంభించడంలో ఏదో తప్పు జరిగింది", + "collection.source.controls.test.failed": "సెట్టింగ్లను పరీక్షించడానికి స్క్రిప్ట్ విఫలమైంది", + "collection.source.controls.test.completed": "సెట్టింగ్లను పరీక్షించడానికి స్క్రిప్ట్ విజయవంతంగా పూర్తయింది", + "collection.source.controls.test.submit": "కాన్ఫిగరేషన్ పరీక్షించండి", + "collection.source.controls.test.running": "కాన్ఫిగరేషన్ పరీక్షిస్తోంది...", + "collection.source.controls.import.submit.success": "దిగుమతి విజయవంతంగా ప్రారంభించబడింది", + "collection.source.controls.import.submit.error": "దిగుమతిని ప్రారంభించడంలో ఏదో తప్పు జరిగింది", + "collection.source.controls.import.submit": "ఇప్పుడే దిగుమతి చేయండి", + "collection.source.controls.import.running": "దిగుమతి చేస్తోంది...", + "collection.source.controls.import.failed": "దిగుమతి సమయంలో లోపం సంభవించింది", + "collection.source.controls.import.completed": "దిగుమతి పూర్తయింది", + "collection.source.controls.reset.submit.success": "రీసెట్ మరియు రీఇంపోర్ట్ విజయవంతంగా ప్రారంభించబడింది", + "collection.source.controls.reset.submit.error": "రీసెట్ మరియు రీఇంపోర్ట్ ప్రారంభించడంలో ఏదో తప్పు జరిగింది", + "collection.source.controls.reset.failed": "రీసెట్ మరియు రీఇంపోర్ట్ సమయంలో లోపం సంభవించింది", + "collection.source.controls.reset.completed": "రీసెట్ మరియు రీఇంపోర్ట్ పూర్తయింది", + "collection.source.controls.reset.submit": "రీసెట్ చేసి మళ్లీ దిగుమతి చేయండి", + "collection.source.controls.reset.running": "రీసెట్ చేసి మళ్లీ దిగుమతి చేస్తోంది...", + "collection.source.controls.harvest.status": "హార్వెస్ట్ స్థితి:", + "collection.source.controls.harvest.start": "హార్వెస్ట్ ప్రారంభ సమయం:", + "collection.source.controls.harvest.last": "చివరిసారి హార్వెస్ట్ చేసిన సమయం:", + "collection.source.controls.harvest.message": "హార్వెస్ట్ సమాచారం:", + "collection.source.controls.harvest.no-information": "N/A", + "collection.source.update.notifications.error.content": "ఇచ్చిన సెట్టింగ్లు పరీక్షించబడి పని చేయలేదు.", + "collection.source.update.notifications.error.title": "సర్వర్ లోపం", + "communityList.breadcrumbs": "సంఘాల జాబితా", + "communityList.tabTitle": "సంఘాల జాబితా", + "communityList.title": "సంఘాల జాబితా", + "communityList.showMore": "మరిన్ని చూపించు", + "communityList.expand": "{{ name }} విస్తరించండి", + "communityList.collapse": "{{ name }} ముడుచుకోండి", + "community.browse.logo": "సంఘం లోగో కోసం బ్రౌజ్ చేయండి", + "community.subcoms-cols.breadcrumbs": "ఉపసంఘాలు మరియు సేకరణలు", + "community.create.breadcrumbs": "సంఘాన్ని సృష్టించండి", + "community.create.head": "సంఘాన్ని సృష్టించండి", + "community.create.notifications.success": "సంఘం విజయవంతంగా సృష్టించబడింది", + "community.create.sub-head": "సంఘం {{ parent }} కోసం ఉప-సంఘాన్ని సృష్టించండి", + "community.curate.header": "సంఘాన్ని క్యూరేట్ చేయండి: {{community}}", + "community.delete.cancel": "రద్దు చేయండి", + "community.delete.confirm": "నిర్ధారించండి", + "community.delete.processing": "తొలగిస్తోంది...", + "community.delete.head": "సంఘాన్ని తొలగించండి", + "community.delete.notification.fail": "సంఘాన్ని తొలగించలేకపోయాం", + "community.delete.notification.success": "సంఘం విజయవంతంగా తొలగించబడింది", + "community.delete.text": "మీరు నిజంగా \"{{ dso }}\" సంఘాన్ని తొలగించాలనుకుంటున్నారా?", + "community.edit.delete": "ఈ సంఘాన్ని తొలగించండి", + "community.edit.head": "సంఘాన్ని సవరించండి", + "community.edit.breadcrumbs": "సంఘాన్ని సవరించండి", + "community.edit.logo.delete.title": "లోగోను తొలగించండి", + "community-collection.edit.logo.delete.title": "తొలగింపును నిర్ధారించండి", + "community.edit.logo.delete-undo.title": "తొలగింపును రద్దు చేయండి", + "community-collection.edit.logo.delete-undo.title": "తొలగింపును రద్దు చేయండి", + "community.edit.logo.label": "సంఘం లోగో", + "community.edit.logo.notifications.add.error": "సంఘం లోగో అప్లోడ్ చేయడంలో విఫలమైంది. దయచేసి మళ్లీ ప్రయత్నించే ముందు కంటెంట్ను ధృవీకరించండి.", + "community.edit.logo.notifications.add.success": "సంఘం లోగో అప్లోడ్ విజయవంతమైంది.", + "community.edit.logo.notifications.delete.success.title": "లోగో తొలగించబడింది", + "community.edit.logo.notifications.delete.success.content": "సంఘం లోగో విజయవంతంగా తొలగించబడింది", + "community.edit.logo.notifications.delete.error.title": "లోగో తొలగించడంలో లోపం", + "community.edit.logo.upload": "అప్లోడ్ చేయడానికి సంఘం లోగోను డ్రాప్ చేయండి", + "community.edit.notifications.success": "సంఘం విజయవంతంగా సవరించబడింది", + "community.edit.notifications.unauthorized": "ఈ మార్పును చేయడానికి మీకు అనుమతులు లేవు", + "community.edit.notifications.error": "సంఘాన్ని సవరించడంలో లోపం సంభవించింది", + "community.edit.return": "వెనక్కి", + "community.edit.tabs.curate.head": "క్యూరేట్", + "community.edit.tabs.curate.title": "సంఘం సవరణ - క్యూరేట్", + "community.edit.tabs.access-control.head": "యాక్సెస్ కంట్రోల్", + "community.edit.tabs.access-control.title": "సంఘం సవరణ - యాక్సెస్ కంట్రోల్", + "community.edit.tabs.metadata.head": "మెటాడేటాను సవరించండి", + "community.edit.tabs.metadata.title": "సంఘం సవరణ - మెటాడేటా", + "community.edit.tabs.roles.head": "రోల్స్ కేటాయించండి", + "community.edit.tabs.roles.title": "సంఘం సవరణ - రోల్స్", + "community.edit.tabs.authorizations.head": "అధికారాలు", + "community.edit.tabs.authorizations.title": "సంఘం సవరణ - అధికారాలు", + "community.listelement.badge": "సంఘం", + "community.logo": "సంఘం లోగో", + "comcol-role.edit.no-group": "ఏదీ లేదు", + "comcol-role.edit.create": "సృష్టించండి", + "comcol-role.edit.create.error.title": "'{{ role }}' రోల్ కోసం గ్రూప్ సృష్టించడంలో విఫలమైంది", + "comcol-role.edit.restrict": "పరిమితం చేయండి", + "comcol-role.edit.delete": "తొలగించండి", + "comcol-role.edit.delete.error.title": "'{{ role }}' రోల్ గ్రూప్ను తొలగించడంలో విఫలమైంది", + "comcol-role.edit.community-admin.name": "నిర్వాహకులు", + "comcol-role.edit.collection-admin.name": "నిర్వాహకులు", + "comcol-role.edit.community-admin.description": "సంఘ నిర్వాహకులు ఉప-సంఘాలు లేదా సేకరణలను సృష్టించవచ్చు, మరియు ఆ ఉప-సంఘాలు లేదా సేకరణలను నిర్వహించవచ్చు లేదా నిర్వహణను కేటాయించవచ్చు. అదనంగా, ఏ ఉప-సేకరణలకు అంశాలను సమర్పించవచ్చు, అంశ మెటాడేటాను సవరించవచ్చు (సమర్పణ తర్వాత), మరియు ఇతర సేకరణల నుండి ఇప్పటికే ఉన్న అంశాలను జోడించవచ్చు (మ్యాప్) (ఆ సేకరణకు అధికారం ఉంటే).", + "comcol-role.edit.collection-admin.description": "సేకరణ నిర్వాహకులు ఏ వ్యక్తులు సేకరణకు అంశాలను సమర్పించవచ్చు, అంశ మెటాడేటాను సవరించవచ్చు (సమర్పణ తర్వాత), మరియు ఇతర సేకరణల నుండి ఇప్పటికే ఉన్న అంశాలను ఈ సేకరణకు జోడించవచ్చు (మ్యాప్) (ఆ సేకరణకు అధికారం ఉంటే).", + "comcol-role.edit.submitters.name": "సమర్పించేవారు", + "comcol-role.edit.submitters.description": "ఈ సేకరణకు కొత్త అంశాలను సమర్పించడానికి అనుమతి ఉన్న E-ప్రజలు మరియు గ్రూపులు.", + "comcol-role.edit.item_read.name": "డిఫాల్ట్ అంశం చదవడానికి యాక్సెస్", + "comcol-role.edit.item_read.description": "ఈ సేకరణకు సమర్పించబడిన కొత్త అంశాలను చదవగల E-ప్రజలు మరియు గ్రూపులు. ఈ రోల్కు మార్పులు రెట్రోయాక్టివ్గా ఉండవు. సిస్టమ్లో ఇప్పటికే ఉన్న అంశాలు వాటిని జోడించిన సమయంలో చదవడానికి యాక్సెస్ ఉన్న వారికి ఇప్పటికీ చూడగలుగుతారు.", + "comcol-role.edit.item_read.anonymous-group": "ఇన్కమింగ్ అంశాలకు డిఫాల్ట్ చదవడం ప్రస్తుతం అనామకంగా సెట్ చేయబడింది.", + "comcol-role.edit.bitstream_read.name": "డిఫాల్ట్ బిట్స్ట్రీమ్ చదవడానికి యాక్సెస్", + "comcol-role.edit.bitstream_read.description": "ఈ సేకరణకు సమర్పించబడిన కొత్త బిట్స్ట్రీమ్లను చదవగల E-ప్రజలు మరియు గ్రూపులు. ఈ రోల్కు మార్పులు రెట్రోయాక్టివ్గా ఉండవు. సిస్టమ్లో ఇప్పటికే ఉన్న బిట్స్ట్రీమ్లు వాటిని జోడించిన సమయంలో చదవడానికి యాక్సెస్ ఉన్న వారికి ఇప్పటికీ చూడగలుగుతారు.", + "comcol-role.edit.bitstream_read.anonymous-group": "ఇన్కమింగ్ బిట్స్ట్రీమ్లకు డిఫాల్ట్ చదవడం ప్రస్తుతం అనామకంగా సెట్ చేయబడింది.", + "comcol-role.edit.editor.name": "ఎడిటర్లు", + "comcol-role.edit.editor.description": "ఎడిటర్లు ఇన్కమింగ్ సమర్పణల మెటాడేటాను సవరించగలరు, ఆపై వాటిని అంగీకరించవచ్చు లేదా తిరస్కరించవచ్చు.", + "comcol-role.edit.finaleditor.name": "ఫైనల్ ఎడిటర్లు", + "comcol-role.edit.finaleditor.description": "ఫైనల్ ఎడిటర్లు ఇన్కమింగ్ సమర్పణల మెటాడేటాను సవరించగలరు, కానీ వాటిని తిరస్కరించలేరు.", + "comcol-role.edit.reviewer.name": "రివ్యూయర్లు", + "comcol-role.edit.reviewer.description": "రివ్యూయర్లు ఇన్కమింగ్ సమర్పణలను అంగీకరించవచ్చు లేదా తిరస్కరించవచ్చు. అయితే, వారు సమర్పణ మెటాడేటాను సవరించలేరు.", + "comcol-role.edit.scorereviewers.name": "స్కోర్ రివ్యూయర్లు", + "comcol-role.edit.scorereviewers.description": "రివ్యూయర్లు ఇన్కమింగ్ సమర్పణలకు స్కోర్ ఇవ్వగలరు, ఇది సమర్పణ తిరస్కరించబడుతుందో లేదో నిర్ణయిస్తుంది.", + "community.form.abstract": "సంక్షిప్త వివరణ", + "community.form.description": "పరిచయ వచనం (HTML)", + "community.form.errors.title.required": "దయచేసి సంఘం పేరును నమోదు చేయండి", + "community.form.rights": "కాపీరైట్ వచనం (HTML)", + "community.form.tableofcontents": "వార్తలు (HTML)", + "community.form.title": "పేరు", + "community.page.edit": "ఈ సంఘాన్ని సవరించండి", + "community.page.handle": "ఈ సంఘానికి శాశ్వత URI", + "community.page.license": "లైసెన్స్", + "community.page.news": "వార్తలు", + "community.page.options": "ఎంపికలు", + "community.all-lists.head": "ఉపసంఘాలు మరియు సేకరణలు", + "community.search.breadcrumbs": "శోధించండి", + "community.search.results.head": "శోధన ఫలితాలు", + "community.sub-collection-list.head": "ఈ సంఘంలోని సేకరణలు", + "community.sub-community-list.head": "ఈ సంఘంలోని సంఘాలు", + "cookies.consent.accept-all": "అన్నింటినీ అంగీకరించండి", + "cookies.consent.accept-selected": "ఎంపిక చేసినవి అంగీకరించండి", + "cookies.consent.app.opt-out.description": "ఈ యాప్ డిఫాల్ట్గా లోడ్ చేయబడుతుంది (కానీ మీరు ఆప్ట్ అవుట్ చేయవచ్చు)", + "cookies.consent.app.opt-out.title": "(ఆప్ట్-అవుట్)", + "cookies.consent.app.purpose": "ప్రయోజనం", + "cookies.consent.app.required.description": "ఈ అప్లికేషన్ ఎల్లప్పుడూ అవసరం", + "cookies.consent.app.required.title": "(ఎల్లప్పుడూ అవసరం)", + "cookies.consent.update": "మీ చివరి సందర్శన నుండి మార్పులు ఉన్నాయి, దయచేసి మీ సమ్మతిని నవీకరించండి.", + "cookies.consent.close": "మూసివేయి", + "cookies.consent.decline": "తిరస్కరించు", + "cookies.consent.decline-all": "అన్నింటినీ తిరస్కరించు", + "cookies.consent.ok": "సరే", + "cookies.consent.save": "సేవ్ చేయండి", + "cookies.consent.content-notice.description": "మేము మీ వ్యక్తిగత సమాచారాన్ని క్రింది ప్రయోజనాల కోసం సేకరిస్తాము మరియు ప్రాసెస్ చేస్తాము: {purposes}", + "cookies.consent.content-notice.learnMore": "కస్టమైజ్ చేయండి", + "cookies.consent.content-modal.description": "ఇక్కడ మీరు మేము మీ గురించి సేకరించే సమాచారాన్ని చూడవచ్చు మరియు కస్టమైజ్ చేయవచ్చు.", + "cookies.consent.content-modal.privacy-policy.name": "గోప్యతా విధానం", + "cookies.consent.content-modal.privacy-policy.text": "మరింత తెలుసుకోవడానికి, దయచేసి మా {privacyPolicy} చదవండి.", + "cookies.consent.content-modal.no-privacy-policy.text": "", + "cookies.consent.content-modal.title": "మేము సేకరించే సమాచారం", + "cookies.consent.app.title.accessibility": "యాక్సెసిబిలిటీ సెట్టింగ్లు", + "cookies.consent.app.description.accessibility": "మీ యాక్సెసిబిలిటీ సెట్టింగ్లను స్థానికంగా సేవ్ చేయడానికి అవసరం", + "cookies.consent.app.title.authentication": "ఆథెంటికేషన్", + "cookies.consent.app.description.authentication": "లాగిన్ అవ్వడానికి అవసరం", + "cookies.consent.app.title.correlation-id": "కోరిలేషన్ ID", + "cookies.consent.app.description.correlation-id": "సపోర్ట్/డీబగ్గింగ్ ప్రయోజనాల కోసం బ్యాకెండ్ లాగ్లలో మీ సెషన్ను ట్రాక్ చేయడానికి అనుమతించండి", + "cookies.consent.app.title.preferences": "ప్రాధాన్యతలు", + "cookies.consent.app.description.preferences": "మీ ప్రాధాన్యతలను సేవ్ చేయడానికి అవసరం", + "cookies.consent.app.title.acknowledgement": "ఆమోదం", + "cookies.consent.app.description.acknowledgement": "మీ ఆమోదాలు మరియు సమ్మతులను సేవ్ చేయడానికి అవసరం", + "cookies.consent.app.title.google-analytics": "గూగుల్ అనాలిటిక్స్", + "cookies.consent.app.description.google-analytics": "స్టాటిస్టికల్ డేటాను ట్రాక్ చేయడానికి అనుమతిస్తుంది", + "cookies.consent.app.title.google-recaptcha": "గూగుల్ reCaptcha", + "cookies.consent.app.description.google-recaptcha": "మేము రిజిస్ట్రేషన్ మరియు పాస్వర్డ్ రికవరీ సమయంలో గూగుల్ reCAPTCHA సేవను ఉపయోగిస్తాము", + "cookies.consent.app.title.matomo": "మాటోమో", + "cookies.consent.app.description.matomo": "స్టాటిస్టికల్ డేటాను ట్రాక్ చేయడానికి అనుమతిస్తుంది", + "cookies.consent.purpose.functional": "ఫంక్షనల్", + "cookies.consent.purpose.statistical": "స్టాటిస్టికల్", + "cookies.consent.purpose.registration-password-recovery": "రిజిస్ట్రేషన్ మరియు పాస్వర్డ్ రికవరీ", + "cookies.consent.purpose.sharing": "షేరింగ్", + "curation-task.task.citationpage.label": "సైటేషన్ పేజీని జనరేట్ చేయండి", + "curation-task.task.checklinks.label": "మెటాడేటాలో లింక్లను తనిఖీ చేయండి", + "curation-task.task.noop.label": "NOOP", + "curation-task.task.profileformats.label": "బిట్స్ట్రీమ్ ఫార్మాట్లను ప్రొఫైల్ చేయండి", + "curation-task.task.requiredmetadata.label": "అవసరమైన మెటాడేటా కోసం తనిఖీ చేయండి", + "curation-task.task.translate.label": "మైక్రోసాఫ్ట్ ట్రాన్స్లేటర్", + "curation-task.task.vscan.label": "వైరస్ స్కాన్", + "curation-task.task.registerdoi.label": "DOI నమోదు చేయండి", + "curation.form.task-select.label": "టాస్క్:", + "curation.form.submit": "ప్రారంభించండి", + "curation.form.submit.success.head": "క్యూరేషన్ టాస్క్ విజయవంతంగా ప్రారంభించబడింది", + "curation.form.submit.success.content": "మీరు సంబంధిత ప్రాసెస్ పేజీకి రీడైరెక్ట్ చేయబడతారు.", + "curation.form.submit.error.head": "క్యూరేషన్ టాస్క్ రన్ చేయడంలో విఫలమైంది", + "curation.form.submit.error.content": "క్యూరేషన్ టాస్క్ ప్రారంభించడానికి ప్రయత్నించేటప్పుడు లోపం సంభవించింది.", + "curation.form.submit.error.invalid-handle": "ఈ ఆబ్జెక్ట్ కోసం హ్యాండల్ను నిర్ణయించలేకపోయాం", + "curation.form.handle.label": "హ్యాండల్:", + "curation.form.handle.hint": "హింట్: మొత్తం సైట్ అంతటా టాస్క్ రన్ చేయడానికి [your-handle-prefix]/0 ను నమోదు చేయండి (అన్ని టాస్క్లు ఈ సామర్థ్యాన్ని మద్దతు ఇవ్వకపోవచ్చు)", + "deny-request-copy.email.message": "ప్రియమైన {{ recipientName }},\nమీరు అభ్యర్థించిన ఫైల్(ల)కు కాపీని పంపడం సాధ్యం కాదని విచారంగా తెలియజేస్తున్నాము, డాక్యుమెంట్: \"{{ itemUrl }}\" ({{ itemName }}), దీనికి నేను రచయితను.\n\nఉత్తమ శుభాకాంక్షలు,\n{{ authorName }} <{{ authorEmail }}>", + "deny-request-copy.email.subject": "డాక్యుమెంట్ కాపీని అభ్యర్థించండి", + "deny-request-copy.error": "లోపం సంభవించింది", + "deny-request-copy.header": "డాక్యుమెంట్ కాపీ అభ్యర్థనను తిరస్కరించండి", + "deny-request-copy.intro": "ఈ సందేశం అభ్యర్థన దరఖాస్తుదారుకు పంపబడుతుంది", + "deny-request-copy.success": "అంశం అభ్యర్థన విజయవంతంగా తిరస్కరించబడింది", + "dropdown.clear": "ఎంపికను క్లియర్ చేయండి", + "dropdown.clear.tooltip": "ఎంపిక చేసిన ఎంపికను క్లియర్ చేయండి", + "dso.name.untitled": "శీర్షిక లేనిది", + "dso.name.unnamed": "పేరు లేనిది", + "dso-selector.create.collection.head": "కొత్త సేకరణ", + "dso-selector.create.collection.sub-level": "లో కొత్త సేకరణను సృష్టించండి", + "dso-selector.create.community.head": "కొత్త సంఘం", + "dso-selector.create.community.or-divider": "లేదా", + "dso-selector.create.community.sub-level": "లో కొత్త సంఘాన్ని సృష్టించండి", + "dso-selector.create.community.top-level": "కొత్త టాప్-లెవల్ సంఘాన్ని సృష్టించండి", + "dso-selector.create.item.head": "కొత్త అంశం", + "dso-selector.create.item.sub-level": "లో కొత్త అంశాన్ని సృష్టించండి", + "dso-selector.create.submission.head": "కొత్త సమర్పణ", + "dso-selector.edit.collection.head": "సేకరణను సవరించండి", + + "dso-selector.edit.community.head": "సంఘం సవరించు", + + "dso-selector.edit.item.head": "అంశం సవరించు", + + "dso-selector.error.title": "{{ type }} కోసం శోధించడంలో లోపం సంభవించింది", + + "dso-selector.export-metadata.dspaceobject.head": "నుండి మెటాడేటా ఎగుమతి చేయండి", + + "dso-selector.export-batch.dspaceobject.head": "బ్యాచ్ (ZIP) నుండి ఎగుమతి చేయండి", + + "dso-selector.import-batch.dspaceobject.head": "నుండి బ్యాచ్ దిగుమతి చేయండి", + + "dso-selector.no-results": "{{ type }} కనుగొనబడలేదు", + + "dso-selector.placeholder": "{{ type }} కోసం శోధించండి", + + "dso-selector.placeholder.type.community": "సంఘం", + + "dso-selector.placeholder.type.collection": "సేకరణ", + + "dso-selector.placeholder.type.item": "అంశం", + + "dso-selector.select.collection.head": "సేకరణను ఎంచుకోండి", + + "dso-selector.set-scope.community.head": "శోధన పరిధిని ఎంచుకోండి", + + "dso-selector.set-scope.community.button": "DSpace అంతటా శోధించండి", + + "dso-selector.set-scope.community.or-divider": "లేదా", + + "dso-selector.set-scope.community.input-header": "సంఘం లేదా సేకరణ కోసం శోధించండి", + + "dso-selector.claim.item.head": "ప్రొఫైల్ చిట్కాలు", + + "dso-selector.claim.item.body": "ఇవి మీకు సంబంధించిన ప్రొఫైల్స్. మీరు ఈ ప్రొఫైల్స్లో మిమ్మల్ని గుర్తించినట్లయితే, దాన్ని ఎంచుకోండి మరియు వివరాల పేజీలో, ఎంపికలలో, దాన్ని క్లెయిమ్ చేయడానికి ఎంచుకోండి. లేకపోతే మీరు క్రింద ఉన్న బటన్ను ఉపయోగించి కొత్తదాన్ని స్క్రాచ్ నుండి సృష్టించవచ్చు.", + + "dso-selector.claim.item.not-mine-label": "ఇవి ఏవీ నావి కావు", + + "dso-selector.claim.item.create-from-scratch": "కొత్తదాన్ని సృష్టించండి", + + "dso-selector.results-could-not-be-retrieved": "ఏదో తప్పు జరిగింది, దయచేసి మళ్లీ రిఫ్రెష్ చేయండి ↻", + + "supervision-group-selector.header": "సూపర్విజన్ గ్రూప్ సెలెక్టర్", + + "supervision-group-selector.select.type-of-order.label": "ఆర్డర్ రకాన్ని ఎంచుకోండి", + + "supervision-group-selector.select.type-of-order.option.none": "ఏదీ లేదు", + + "supervision-group-selector.select.type-of-order.option.editor": "ఎడిటర్", + + "supervision-group-selector.select.type-of-order.option.observer": "ఆబ్జర్వర్", + + "supervision-group-selector.select.group.label": "గ్రూప్ను ఎంచుకోండి", + + "supervision-group-selector.button.cancel": "రద్దు చేయండి", + + "supervision-group-selector.button.save": "సేవ్ చేయండి", + + "supervision-group-selector.select.type-of-order.error": "దయచేసి ఆర్డర్ రకాన్ని ఎంచుకోండి", + + "supervision-group-selector.select.group.error": "దయచేసి గ్రూప్ను ఎంచుకోండి", + + "supervision-group-selector.notification.create.success.title": "{{ name }} గ్రూప్ కోసం సూపర్విజన్ ఆర్డర్ విజయవంతంగా సృష్టించబడింది", + + "supervision-group-selector.notification.create.failure.title": "లోపం", + + "supervision-group-selector.notification.create.already-existing": "ఈ అంశంపై ఎంచుకున్న గ్రూప్ కోసం ఇప్పటికే సూపర్విజన్ ఆర్డర్ ఉంది", + + "confirmation-modal.export-metadata.header": "{{ dsoName }} కోసం మెటాడేటా ఎగుమతి చేయండి", + + "confirmation-modal.export-metadata.info": "మీరు {{ dsoName }} కోసం మెటాడేటాను ఎగుమతి చేయాలని ఖచ్చితంగా అనుకుంటున్నారా?", + + "confirmation-modal.export-metadata.cancel": "రద్దు చేయండి", + + "confirmation-modal.export-metadata.confirm": "ఎగుమతి చేయండి", + + "confirmation-modal.export-batch.header": "{{ dsoName }} కోసం బ్యాచ్ (ZIP) ఎగుమతి చేయండి", + + "confirmation-modal.export-batch.info": "మీరు {{ dsoName }} కోసం బ్యాచ్ (ZIP) ఎగుమతి చేయాలని ఖచ్చితంగా అనుకుంటున్నారా?", + + "confirmation-modal.export-batch.cancel": "రద్దు చేయండి", + + "confirmation-modal.export-batch.confirm": "ఎగుమతి చేయండి", + + "confirmation-modal.delete-eperson.header": "EPerson \"{{ dsoName }}\" ను తొలగించండి", + + "confirmation-modal.delete-eperson.info": "మీరు EPerson \"{{ dsoName }}\" ను తొలగించాలని ఖచ్చితంగా అనుకుంటున్నారా?", + + "confirmation-modal.delete-eperson.cancel": "రద్దు చేయండి", + + "confirmation-modal.delete-eperson.confirm": "తొలగించండి", + + "confirmation-modal.delete-community-collection-logo.info": "మీరు లోగోను తొలగించాలని ఖచ్చితంగా అనుకుంటున్నారా?", + + "confirmation-modal.delete-profile.header": "ప్రొఫైల్ తొలగించండి", + + "confirmation-modal.delete-profile.info": "మీరు మీ ప్రొఫైల్ను తొలగించాలని ఖచ్చితంగా అనుకుంటున్నారా?", + + "confirmation-modal.delete-profile.cancel": "రద్దు చేయండి", + + "confirmation-modal.delete-profile.confirm": "తొలగించండి", + + "confirmation-modal.delete-subscription.header": "చందాను తొలగించండి", + + "confirmation-modal.delete-subscription.info": "మీరు \"{{ dsoName }}\" కోసం చందాను తొలగించాలని ఖచ్చితంగా అనుకుంటున్నారా?", + + "confirmation-modal.delete-subscription.cancel": "రద్దు చేయండి", + + "confirmation-modal.delete-subscription.confirm": "తొలగించండి", + + "confirmation-modal.review-account-info.header": "మార్పులను సేవ్ చేయండి", + + "confirmation-modal.review-account-info.info": "మీరు మీ ప్రొఫైల్కు మార్పులను సేవ్ చేయాలని ఖచ్చితంగా అనుకుంటున్నారా?", + + "confirmation-modal.review-account-info.cancel": "రద్దు చేయండి", + + "confirmation-modal.review-account-info.confirm": "నిర్ధారించండి", + + "confirmation-modal.review-account-info.save": "సేవ్ చేయండి", + + "error.bitstream": "బిట్స్ట్రీమ్ పొందడంలో లోపం", + + "error.browse-by": "అంశాలను పొందడంలో లోపం", + + "error.collection": "సేకరణ పొందడంలో లోపం", + + "error.collections": "సేకరణలు పొందడంలో లోపం", + + "error.community": "సంఘం పొందడంలో లోపం", + + "error.identifier": "ఐడెంటిఫైయర్ కోసం ఏ అంశం కనుగొనబడలేదు", + + "error.default": "లోపం", + + "error.item": "అంశం పొందడంలో లోపం", + + "error.items": "అంశాలను పొందడంలో లోపం", + + "error.objects": "ఆబ్జెక్ట్లను పొందడంలో లోపం", + + "error.recent-submissions": "ఇటీవలి సబ్మిషన్లు పొందడంలో లోపం", + + "error.profile-groups": "ప్రొఫైల్ గ్రూప్లను పొందడంలో లోపం", + + "error.search-results": "శోధన ఫలితాలను పొందడంలో లోపం", + + "error.invalid-search-query": "శోధన ప్రశ్న చెల్లదు. దయచేసి ఈ లోపం గురించి మరింత సమాచారం కోసం Solr ప్రశ్న సింటాక్స్ ఉత్తమ పద్ధతులను తనిఖీ చేయండి.", + + "error.sub-collections": "ఉప సేకరణలు పొందడంలో లోపం", + + "error.sub-communities": "ఉప సంఘాలు పొందడంలో లోపం", + + "error.submission.sections.init-form-error": "సెక్షన్ ప్రారంభించడంలో లోపం సంభవించింది, దయచేసి మీ ఇన్పుట్-ఫారమ్ కాన్ఫిగరేషన్ను తనిఖీ చేయండి. వివరాలు క్రింద ఉన్నాయి :

", + + "error.top-level-communities": "టాప్-లెవల్ సంఘాలు పొందడంలో లోపం", + + "error.validation.license.notgranted": "మీ సబ్మిషన్ను పూర్తి చేయడానికి మీరు ఈ లైసెన్స్ను మంజూరు చేయాలి. మీరు ప్రస్తుతం ఈ లైసెన్స్ను మంజూరు చేయలేకపోతే, మీరు మీ పనిని సేవ్ చేసి తర్వాత తిరిగి రావచ్చు లేదా సబ్మిషన్ను తీసివేయవచ్చు.", + + "error.validation.cclicense.required": "మీ సబ్మిషన్ను పూర్తి చేయడానికి మీరు ఈ cclicenseని మంజూరు చేయాలి. మీరు ప్రస్తుతం cclicenseని మంజూరు చేయలేకపోతే, మీరు మీ పనిని సేవ్ చేసి తర్వాత తిరిగి రావచ్చు లేదా సబ్మిషన్ను తీసివేయవచ్చు.", + + "error.validation.pattern": "ఈ ఇన్పుట్ ప్రస్తుత నమూనా ద్వారా పరిమితం చేయబడింది: {{ pattern }}.", + + "error.validation.filerequired": "ఫైల్ అప్లోడ్ తప్పనిసరి", + + "error.validation.required": "ఈ ఫీల్డ్ అవసరం", + + "error.validation.NotValidEmail": "ఇది చెల్లుబాటు అయ్యే ఇమెయిల్ కాదు", + + "error.validation.emailTaken": "ఈ ఇమెయిల్ ఇప్పటికే తీసుకోబడింది", + + "error.validation.groupExists": "ఈ గ్రూప్ ఇప్పటికే ఉంది", + + "error.validation.metadata.name.invalid-pattern": "ఈ ఫీల్డ్ డాట్స్, కామాలు లేదా స్పేస్లను కలిగి ఉండకూడదు. దయచేసి ఎలిమెంట్ & క్వాలిఫైయర్ ఫీల్డ్లను ఉపయోగించండి", + + "error.validation.metadata.name.max-length": "ఈ ఫీల్డ్ 32 క్యారెక్టర్ల కంటే ఎక్కువ కలిగి ఉండకూడదు", + + "error.validation.metadata.namespace.max-length": "ఈ ఫీల్డ్ 256 క్యారెక్టర్ల కంటే ఎక్కువ కలిగి ఉండకూడదు", + + "error.validation.metadata.element.invalid-pattern": "ఈ ఫీల్డ్ డాట్స్, కామాలు లేదా స్పేస్లను కలిగి ఉండకూడదు. దయచేసి క్వాలిఫైయర్ ఫీల్డ్ను ఉపయోగించండి", + + "error.validation.metadata.element.max-length": "ఈ ఫీల్డ్ 64 క్యారెక్టర్ల కంటే ఎక్కువ కలిగి ఉండకూడదు", + + "error.validation.metadata.qualifier.invalid-pattern": "ఈ ఫీల్డ్ డాట్స్, కామాలు లేదా స్పేస్లను కలిగి ఉండకూడదు", + + "error.validation.metadata.qualifier.max-length": "ఈ ఫీల్డ్ 64 క్యారెక్టర్ల కంటే ఎక్కువ కలిగి ఉండకూడదు", + + "feed.description": "సిండికేషన్ ఫీడ్", + + "file-download-link.restricted": "పరిమిత బిట్స్ట్రీమ్", + + "file-download-link.secure-access": "సురక్షిత యాక్సెస్ టోకెన్ ద్వారా అందుబాటులో ఉన్న పరిమిత బిట్స్ట్రీమ్", + + "file-section.error.header": "ఈ అంశం కోసం ఫైళ్లను పొందడంలో లోపం", + + "footer.copyright": "కాపీరైట్ © 2002-{{ year }}", + + "footer.link.accessibility": "యాక్సెసిబిలిటీ సెట్టింగ్లు", + + "footer.link.dspace": "DSpace సాఫ్ట్వేర్", + + "footer.link.lyrasis": "LYRASIS", + + "footer.link.cookies": "కుకీ సెట్టింగ్లు", + + "footer.link.privacy-policy": "గోప్యతా విధానం", + + "footer.link.end-user-agreement": "ఎండ్ యూజర్ ఒప్పందం", + + "footer.link.feedback": "ఫీడ్బ్యాక్ పంపండి", + + "footer.link.coar-notify-support": "COAR నోటిఫై", + + "forgot-email.form.header": "పాస్వర్డ్ మర్చిపోయాను", + + "forgot-email.form.info": "ఖాతాతో అనుబంధించబడిన ఇమెయిల్ చిరునామాను నమోదు చేయండి.", + + "forgot-email.form.email": "ఇమెయిల్ చిరునామా *", + + "forgot-email.form.email.error.required": "దయచేసి ఇమెయిల్ చిరునామాను నమోదు చేయండి", + + "forgot-email.form.email.error.not-email-form": "దయచేసి చెల్లుబాటు అయ్యే ఇమెయిల్ చిరునామాను నమోదు చేయండి", + + "forgot-email.form.email.hint": "ఈ చిరునామాకు ఇమెయిల్ పంపబడుతుంది, దానితో మరింత సూచనలు ఉంటాయి.", + + "forgot-email.form.submit": "పాస్వర్డ్ రీసెట్ చేయండి", + + "forgot-email.form.success.head": "పాస్వర్డ్ రీసెట్ ఇమెయిల్ పంపబడింది", + + "forgot-email.form.success.content": "{{ email }} కు ఒక ప్రత్యేక URL మరియు మరింత సూచనలతో కూడిన ఇమెయిల్ పంపబడింది.", + + "forgot-email.form.error.head": "పాస్వర్డ్ రీసెట్ చేయడానికి ప్రయత్నించేటప్పుడు లోపం సంభవించింది", + + "forgot-email.form.error.content": "ఈ ఇమెయిల్ చిరునామాతో అనుబంధించబడిన ఖాతా కోసం పాస్వర్డ్ను రీసెట్ చేయడానికి ప్రయత్నించేటప్పుడు లోపం సంభవించింది: {{ email }}", + + "forgot-password.title": "పాస్వర్డ్ మర్చిపోయాను", + + "forgot-password.form.head": "పాస్వర్డ్ మర్చిపోయాను", + + "forgot-password.form.info": "దయచేసి క్రింద ఉన్న బాక్స్లో కొత్త పాస్వర్డ్ను నమోదు చేయండి, మరియు దాన్ని రెండవ బాక్స్లో మళ్లీ టైప్ చేసి నిర్ధారించండి.", + + "forgot-password.form.card.security": "భద్రత", + + "forgot-password.form.identification.header": "గుర్తించండి", + + "forgot-password.form.identification.email": "ఇమెయిల్ చిరునామా: ", + + "forgot-password.form.label.password": "పాస్వర్డ్", + + "forgot-password.form.label.passwordrepeat": "నిర్ధారించడానికి మళ్లీ టైప్ చేయండి", + + "forgot-password.form.error.empty-password": "దయచేసి పై బాక్స్లో పాస్వర్డ్ను నమోదు చేయండి.", + + "forgot-password.form.error.matching-passwords": "పాస్వర్డ్లు సరిపోలడం లేదు.", + + "forgot-password.form.notification.error.title": "కొత్త పాస్వర్డ్ను సబ్మిట్ చేయడానికి ప్రయత్నించేటప్పుడు లోపం సంభవించింది", + + "forgot-password.form.notification.success.content": "పాస్వర్డ్ రీసెట్ విజయవంతమైంది. మీరు సృష్టించిన వినియోగదారుగా లాగిన్ అయ్యారు.", + + "forgot-password.form.notification.success.title": "పాస్వర్డ్ రీసెట్ పూర్తయింది", + + "forgot-password.form.submit": "పాస్వర్డ్ను సబ్మిట్ చేయండి", + + "form.add": "మరిన్ని జోడించండి", + + "form.add-help": "ప్రస్తుత ఎంట్రీని జోడించడానికి మరియు మరొకదాన్ని జోడించడానికి ఇక్కడ క్లిక్ చేయండి", + + "form.cancel": "రద్దు చేయండి", + + "form.clear": "క్లియర్ చేయండి", + + "form.clear-help": "ఎంచుకున్న విలువను తీసివేయడానికి ఇక్కడ క్లిక్ చేయండి", + + "form.discard": "డిస్కార్డ్ చేయండి", + + "form.drag": "డ్రాగ్ చేయండి", + + "form.edit": "సవరించండి", + + "form.edit-help": "ఎంచుకున్న విలువను సవరించడానికి ఇక్కడ క్లిక్ చేయండి", + + "form.first-name": "మొదటి పేరు", + + "form.group-collapse": "కుదించండి", + + "form.group-collapse-help": "కుదించడానికి ఇక్కడ క్లిక్ చేయండి", + + "form.group-expand": "విస్తరించండి", + + "form.group-expand-help": "మరిన్ని ఎలిమెంట్లను జోడించడానికి ఇక్కడ క్లిక్ చేయండి", + + "form.last-name": "చివరి పేరు", + + "form.loading": "లోడ్ అవుతోంది...", + + "form.lookup": "లుకప్", + + "form.lookup-help": "ఇప్పటికే ఉన్న సంబంధాన్ని చూడటానికి ఇక్కడ క్లిక్ చేయండి", + + "form.no-results": "ఫలితాలు ఏవీ కనుగొనబడలేదు", + + "form.no-value": "విలువ నమోదు చేయబడలేదు", + + "form.other-information.email": "ఇమెయిల్", + + "form.other-information.first-name": "మొదటి పేరు", + + "form.other-information.insolr": "సోల్ర్ ఇండెక్స్లో", + + "form.other-information.institution": "సంస్థ", + + "form.other-information.last-name": "చివరి పేరు", + + "form.other-information.orcid": "ORCID", + + "form.remove": "తీసివేయండి", + + "form.save": "సేవ్ చేయండి", + + "form.save-help": "మార్పులను సేవ్ చేయండి", + + "form.search": "శోధించండి", + + "form.search-help": "ఇప్పటికే ఉన్న కరెస్పాండెన్స్ను చూడటానికి ఇక్కడ క్లిక్ చేయండి", + + "form.submit": "సేవ్ చేయండి", + + "form.create": "సృష్టించండి", + + "form.number-picker.decrement": "{{field}} తగ్గించండి", + + "form.number-picker.increment": "{{field}} పెంచండి", + + "form.repeatable.sort.tip": "కొత్త స్థానంలో అంశాన్ని వదలండి", + + "grant-deny-request-copy.deny": "యాక్సెస్ అభ్యర్థనను తిరస్కరించండి", + + "grant-deny-request-copy.revoke": "యాక్సెస్ను రద్దు చేయండి", + + "grant-deny-request-copy.email.back": "వెనుకకు", + + "grant-deny-request-copy.email.message": "ఐచ్ఛిక అదనపు సందేశం", + + "grant-deny-request-copy.email.message.empty": "దయచేసి ఒక సందేశాన్ని నమోదు చేయండి", + + "grant-deny-request-copy.email.permissions.info": "మీరు ఈ సందర్భాన్ని ఉపయోగించి డాక్యుమెంట్పై యాక్సెస్ పరిమితులను పునఃపరిశీలించవచ్చు, ఈ అభ్యర్థనలకు ప్రతిస్పందించాల్సిన అవసరం లేకుండా చేయవచ్చు. మీరు ఈ పరిమితులను తీసివేయడానికి రిపోజిటరీ నిర్వాహకులను అడగాలనుకుంటే, దయచేసి క్రింద ఉన్న బాక్స్ను చెక్ చేయండి.", + + "grant-deny-request-copy.email.permissions.label": "ఓపెన్ యాక్సెస్కు మార్చండి", + + "grant-deny-request-copy.email.send": "పంపండి", + + "grant-deny-request-copy.email.subject": "విషయం", + + "grant-deny-request-copy.email.subject.empty": "దయచేసి ఒక విషయాన్ని నమోదు చేయండి", + + "grant-deny-request-copy.grant": "యాక్సెస్ అభ్యర్థనను మంజూరు చేయండి", + + "grant-deny-request-copy.header": "డాక్యుమెంట్ కాపీ అభ్యర్థన", + + "grant-deny-request-copy.home-page": "నన్ను హోమ్ పేజీకి తీసుకెళ్లండి", + + "grant-deny-request-copy.intro1": "మీరు {{ name }} డాక్యుమెంట్ యొక్క రచయితలలో ఒకరు అయితే, దయచేసి యూజర్ అభ్యర్థనకు ప్రతిస్పందించడానికి క్రింది ఎంపికలలో ఒకదాన్ని ఉపయోగించండి.", + + "grant-deny-request-copy.intro2": "ఒక ఎంపికను ఎంచుకున్న తర్వాత, మీరు సవరించగలిగే సూచించబడిన ఇమెయిల్ రిప్లై మీకు ప్రదర్శించబడుతుంది.", + + "grant-deny-request-copy.previous-decision": "ఈ అభ్యర్థన ఇంతకు ముందు సురక్షిత యాక్సెస్ టోకెన్తో మంజూరు చేయబడింది. మీరు ఇప్పుడు ఈ యాక్సెస్ టోకెన్ను వెంటనే అమాన్యం చేయడానికి ఈ యాక్సెస్ను రద్దు చేయవచ్చు", + + "grant-deny-request-copy.processed": "ఈ అభ్యర్థన ఇప్పటికే ప్రాసెస్ చేయబడింది. మీరు క్రింద ఉన్న బటన్ను ఉపయోగించి హోమ్ పేజీకి తిరిగి వెళ్లవచ్చు.", + + "grant-request-copy.email.subject": "డాక్యుమెంట్ కాపీని అభ్యర్థించండి", + + "grant-request-copy.error": "లోపం సంభవించింది", + + "grant-request-copy.header": "డాక్యుమెంట్ కాపీ అభ్యర్థనను మంజూరు చేయండి", + + "grant-request-copy.intro.attachment": "అభ్యర్థకుడికి ఒక సందేశం పంపబడుతుంది. అభ్యర్థించబడిన డాక్యుమెంట్(లు) అటాచ్ చేయబడతాయి.", + + "grant-request-copy.intro.link": "అభ్యర్థకుడికి ఒక సందేశం పంపబడుతుంది. అభ్యర్థించబడిన డాక్యుమెంట్(లు)కు యాక్సెస్ అందించే సురక్షిత లింక్ అటాచ్ చేయబడుతుంది. లింక్ క్రింద ఉన్న \"యాక్సెస్ పీరియడ్\" మెనూ నుండి ఎంచుకున్న సమయం వరకు యాక్సెస్ అందిస్తుంది.", + + "grant-request-copy.intro.link.preview": "అభ్యర్థకుడికి పంపబడే లింక్ యొక్క ప్రివ్యూ క్రింద ఉంది:", + + "grant-request-copy.success": "అంశం అభ్యర్థన విజయవంతంగా మంజూరు చేయబడింది", + + "grant-request-copy.access-period.header": "యాక్సెస్ పీరియడ్", + + "grant-request-copy.access-period.+1DAY": "1 రోజు", + + "grant-request-copy.access-period.+7DAYS": "1 వారం", + + "grant-request-copy.access-period.+1MONTH": "1 నెల", + + "grant-request-copy.access-period.+3MONTHS": "3 నెలలు", + + "grant-request-copy.access-period.FOREVER": "ఎప్పటికీ", + + "health.breadcrumbs": "ఆరోగ్యం", + + "health-page.heading": "ఆరోగ్యం", + + "health-page.info-tab": "సమాచారం", + + "health-page.status-tab": "స్థితి", + + "health-page.error.msg": "ఆరోగ్య చెక్ సర్వీస్ తాత్కాలికంగా అందుబాటులో లేదు", + + "health-page.property.status": "స్థితి కోడ్", + + "health-page.section.db.title": "డేటాబేస్", + + "health-page.section.geoIp.title": "జియోఐపి", + + "health-page.section.solrAuthorityCore.title": "సోల్ర్: అథారిటీ కోర్", + + "health-page.section.solrOaiCore.title": "సోల్ర్: OAI కోర్", + + "health-page.section.solrSearchCore.title": "సోల్ర్: శోధన కోర్", + + "health-page.section.solrStatisticsCore.title": "సోల్ర్: గణాంకాలు కోర్", + + "health-page.section-info.app.title": "అప్లికేషన్ బ్యాకెండ్", + + "health-page.section-info.java.title": "జావా", + + "health-page.status": "స్థితి", + + "health-page.status.ok.info": "కార్యాచరణ", + + "health-page.status.error.info": "సమస్యలు కనిపించాయి", + + "health-page.status.warning.info": "సమస్యలు కనిపించవచ్చు", + + "health-page.title": "ఆరోగ్యం", + + "health-page.section.no-issues": "సమస్యలు కనిపించలేదు", + + "home.description": "", + + "home.breadcrumbs": "హోమ్", + + "home.search-form.placeholder": "రిపోజిటరీలో శోధించండి ...", + + "home.title": "హోమ్", + + "home.top-level-communities.head": "DSpaceలో కమ్యూనిటీలు", + + "home.top-level-communities.help": "దాని సేకరణలను బ్రౌజ్ చేయడానికి ఒక కమ్యూనిటీని ఎంచుకోండి.", + + "info.accessibility-settings.breadcrumbs": "సుసాధ్యత సెట్టింగ్లు", + + "info.accessibility-settings.cookie-warning": "సుసాధ్యత సెట్టింగ్లను ఇప్పుడు సేవ్ చేయడం సాధ్యం కాదు. వినియోగదారు డేటాలో సెట్టింగ్లను సేవ్ చేయడానికి లాగిన్ అవ్వండి, లేదా పేజీ దిగువన ఉన్న 'కుకీ సెట్టింగ్లు' మెనూ ఉపయోగించి 'సుసాధ్యత సెట్టింగ్లు' కుకీని అంగీకరించండి. కుకీ అంగీకరించబడిన తర్వాత, ఈ సందేశాన్ని తీసివేయడానికి మీరు పేజీని రీలోడ్ చేయవచ్చు.", + + "info.accessibility-settings.disableNotificationTimeOut.label": "సమయం ముగిసిన తర్వాత నోటిఫికేషన్లను స్వయంచాలకంగా మూసివేయండి", + + "info.accessibility-settings.disableNotificationTimeOut.hint": "ఈ టోగుల్ యాక్టివేట్ చేయబడినప్పుడు, సమయం ముగిసిన తర్వాత నోటిఫికేషన్లు స్వయంచాలకంగా మూసివేయబడతాయి. డీయాక్టివేట్ చేయబడినప్పుడు, నోటిఫికేషన్లు మాన్యువల్గా మూసివేయబడే వరకు తెరిచి ఉంటాయి.", + + "info.accessibility-settings.failed-notification": "సుసాధ్యత సెట్టింగ్లను సేవ్ చేయడంలో విఫలమైంది", + + "info.accessibility-settings.invalid-form-notification": "సేవ్ చేయలేదు. ఫారమ్‌లో చెల్లని విలువలు ఉన్నాయి.", + + "info.accessibility-settings.liveRegionTimeOut.label": "ARIA లైవ్ ప్రాంతం సమయం (సెకన్లలో)", + + "info.accessibility-settings.liveRegionTimeOut.hint": "ARIA లైవ్ ప్రాంతంలో ఒక సందేశం అదృశ్యమయ్యే వ్యవధి. ARIA లైవ్ ప్రాంతాలు పేజీలో కనిపించవు, కానీ స్క్రీన్ రీడర్‌లకు నోటిఫికేషన్ల (లేదా ఇతర చర్యల) ప్రకటనలను అందిస్తాయి.", + + "info.accessibility-settings.liveRegionTimeOut.invalid": "లైవ్ ప్రాంతం సమయం 0 కంటే ఎక్కువగా ఉండాలి", + + "info.accessibility-settings.notificationTimeOut.label": "నోటిఫికేషన్ సమయం (సెకన్లలో)", + + "info.accessibility-settings.notificationTimeOut.hint": "నోటిఫికేషన్ అదృశ్యమయ్యే వ్యవధి.", + + "info.accessibility-settings.notificationTimeOut.invalid": "నోటిఫికేషన్ సమయం 0 కంటే ఎక్కువగా ఉండాలి", + + "info.accessibility-settings.save-notification.cookie": "సెట్టింగ్లు స్థానికంగా విజయవంతంగా సేవ్ చేయబడ్డాయి.", + + "info.accessibility-settings.save-notification.metadata": "వినియోగదారు ప్రొఫైల్‌లో సెట్టింగ్లు విజయవంతంగా సేవ్ చేయబడ్డాయి.", + + "info.accessibility-settings.reset-failed": "రీసెట్ చేయడంలో విఫలమైంది. లాగిన్ అవ్వండి లేదా 'సుసాధ్యత సెట్టింగ్లు' కుకీని అంగీకరించండి.", + + "info.accessibility-settings.reset-notification": "సెట్టింగ్లు విజయవంతంగా రీసెట్ చేయబడ్డాయి.", + + "info.accessibility-settings.reset": "సుసాధ్యత సెట్టింగ్లను రీసెట్ చేయండి", + + "info.accessibility-settings.submit": "సుసాధ్యత సెట్టింగ్లను సేవ్ చేయండి", + + "info.accessibility-settings.title": "సుసాధ్యత సెట్టింగ్లు", + + "info.end-user-agreement.accept": "నేను ఎండ్ యూజర్ ఒప్పందాన్ని చదివి అంగీకరిస్తున్నాను", + + "info.end-user-agreement.accept.error": "ఎండ్ యూజర్ ఒప్పందాన్ని అంగీకరించడంలో లోపం సంభవించింది", + + "info.end-user-agreement.accept.success": "ఎండ్ యూజర్ ఒప్పందం విజయవంతంగా నవీకరించబడింది", + + "info.end-user-agreement.breadcrumbs": "ఎండ్ యూజర్ ఒప్పందం", + + "info.end-user-agreement.buttons.cancel": "రద్దు చేయండి", + + "info.end-user-agreement.buttons.save": "సేవ్ చేయండి", + + "info.end-user-agreement.head": "ఎండ్ యూజర్ ఒప్పందం", + + "info.end-user-agreement.title": "ఎండ్ యూజర్ ఒప్పందం", + + "info.end-user-agreement.hosting-country": "యునైటెడ్ స్టేట్స్", + + "info.privacy.breadcrumbs": "గోప్యతా ప్రకటన", + + "info.privacy.head": "గోప్యతా ప్రకటన", + + "info.privacy.title": "గోప్యతా ప్రకటన", + + "info.feedback.breadcrumbs": "ఫీడ్‌బ్యాక్", + + "info.feedback.head": "ఫీడ్‌బ్యాక్", + + "info.feedback.title": "ఫీడ్‌బ్యాక్", + + "info.feedback.info": "DSpace సిస్టమ్ గురించి మీ ఫీడ్‌బ్యాక్‌ను పంచినందుకు ధన్యవాదాలు! మీ వ్యాఖ్యలు మాకు ముఖ్యమైనవి!", + + "info.feedback.email_help": "మీ ఫీడ్‌బ్యాక్‌పై ఫాలో అప్ చేయడానికి ఈ ఇమెయిల్ ఉపయోగించబడుతుంది.", + + "info.feedback.send": "ఫీడ్‌బ్యాక్ పంపండి", + + "info.feedback.comments": "వ్యాఖ్యలు", + + "info.feedback.email-label": "మీ ఇమెయిల్", + + "info.feedback.create.success": "ఫీడ్‌బ్యాక్ విజయవంతంగా పంపబడింది!", + + "info.feedback.error.email.required": "చెల్లుబాటు అయ్యే ఇమెయిల్ చిరునామా అవసరం", + + "info.feedback.error.message.required": "ఒక వ్యాఖ్య అవసరం", + + "info.feedback.page-label": "పేజీ", + + "info.feedback.page_help": "మీ ఫీడ్‌బ్యాక్‌కు సంబంధించిన పేజీ", + + "info.coar-notify-support.title": "COAR నోటిఫై మద్దతు", + + "info.coar-notify-support.breadcrumbs": "COAR నోటిఫై మద్దతు", + + "item.alerts.private": "ఈ అంశం కనుగొనబడదు", + + "item.alerts.withdrawn": "ఈ అంశం వెనక్కి తీసుకోబడింది", + + "item.alerts.reinstate-request": "పునరుద్ధరణ కోరండి", + + "quality-assurance.event.table.person-who-requested": "ఎవరు కోరారు", + + "item.edit.authorizations.heading": "ఈ ఎడిటర్‌తో మీరు ఒక అంశం యొక్క పాలసీలను వీక్షించవచ్చు మరియు మార్చవచ్చు, అలాగే వ్యక్తిగత అంశం భాగాల పాలసీలను మార్చవచ్చు: బండిల్‌లు మరియు బిట్‌స్ట్రీమ్‌లు. సంక్షిప్తంగా, ఒక అంశం బండిల్‌ల కంటైనర్, మరియు బండిల్‌లు బిట్‌స్ట్రీమ్‌ల కంటైనర్‌లు. కంటైనర్‌లు సాధారణంగా ADD/REMOVE/READ/WRITE పాలసీలను కలిగి ఉంటాయి, అయితే బిట్‌స్ట్రీమ్‌లు READ/WRITE పాలసీలను మాత్రమే కలిగి ఉంటాయి.", + + "item.edit.authorizations.title": "అంశం యొక్క పాలసీలను సవరించండి", + + "item.badge.status": "అంశం స్థితి:", + + "item.badge.private": "కనుగొనబడదు", + + "item.badge.withdrawn": "వెనక్కి తీసుకోబడింది", + + "item.bitstreams.upload.bundle": "బండిల్", + + "item.bitstreams.upload.bundle.placeholder": "ఒక బండిల్‌ను ఎంచుకోండి లేదా కొత్త బండిల్ పేరును నమోదు చేయండి", + + "item.bitstreams.upload.bundle.new": "బండిల్ సృష్టించండి", + + "item.bitstreams.upload.bundles.empty": "ఈ అంశంలో బిట్‌స్ట్రీమ్‌ను అప్‌లోడ్ చేయడానికి ఏ బండిల్‌లు లేవు.", + + "item.bitstreams.upload.cancel": "రద్దు చేయండి", + + "item.bitstreams.upload.drop-message": "అప్‌లోడ్ చేయడానికి ఒక ఫైల్‌ను డ్రాప్ చేయండి", + + "item.bitstreams.upload.item": "అంశం: ", + + "item.bitstreams.upload.notifications.bundle.created.content": "కొత్త బండిల్ విజయవంతంగా సృష్టించబడింది.", + + "item.bitstreams.upload.notifications.bundle.created.title": "బండిల్ సృష్టించబడింది", + + "item.bitstreams.upload.notifications.upload.failed": "అప్‌లోడ్ విఫలమైంది. మళ్లీ ప్రయత్నించే ముందు కంటెంట్‌ను ధృవీకరించండి.", + + "item.bitstreams.upload.title": "బిట్‌స్ట్రీమ్ అప్‌లోడ్ చేయండి", + + "item.edit.bitstreams.bundle.edit.buttons.upload": "అప్‌లోడ్", + + "item.edit.bitstreams.bundle.displaying": "ప్రస్తుతం {{ total }}లో {{ amount }} బిట్‌స్ట్రీమ్‌లు ప్రదర్శించబడుతున్నాయి.", + + "item.edit.bitstreams.bundle.load.all": "అన్ని లోడ్ చేయండి ({{ total }})", + + "item.edit.bitstreams.bundle.load.more": "మరిన్ని లోడ్ చేయండి", + + "item.edit.bitstreams.bundle.name": "బండిల్: {{ name }}", + + "item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} బండిల్‌లో బిట్‌స్ట్రీమ్‌లు", + + "item.edit.bitstreams.bundle.tooltip": "మీరు ఒక బిట్‌స్ట్రీమ్‌ను వేరే పేజీకి తరలించడానికి దానిని పేజీ నంబర్‌పై డ్రాప్ చేయవచ్చు.", + + "item.edit.bitstreams.discard-button": "విస్మరించండి", + + "item.edit.bitstreams.edit.buttons.download": "డౌన్‌లోడ్", + + "item.edit.bitstreams.edit.buttons.drag": "డ్రాగ్", + + "item.edit.bitstreams.edit.buttons.edit": "సవరించండి", + + "item.edit.bitstreams.edit.buttons.remove": "తీసివేయండి", + + "item.edit.bitstreams.edit.buttons.undo": "మార్పులను రద్దు చేయండి", + + "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} స్థానం {{ toIndex }}కి తిరిగి వచ్చింది మరియు ఇక ఎంపిక చేయబడలేదు.", + + "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} ఇక ఎంపిక చేయబడలేదు.", + + "item.edit.bitstreams.edit.live.loading": "తరలింపు పూర్తవ్వడానికి వేచి ఉండండి.", + + "item.edit.bitstreams.edit.live.select": "{{ bitstream }} ఎంపిక చేయబడింది.", + + "item.edit.bitstreams.edit.live.move": "{{ bitstream }} ఇప్పుడు స్థానం {{ toIndex }}లో ఉంది.", + + "item.edit.bitstreams.empty": "ఈ అంశంలో ఏ బిట్‌స్ట్రీమ్‌లు లేవు. ఒకదాన్ని సృష్టించడానికి అప్‌లోడ్ బటన్‌పై క్లిక్ చేయండి.", + + "item.edit.bitstreams.info-alert": "బిట్‌స్ట్రీమ్‌లను వాటి బండిల్‌ల్లో డ్రాగ్ హ్యాండిల్‌ను పట్టుకొని మౌస్‌ను కదిలించడం ద్వారా పునర్వ్యవస్థీకరించవచ్చు. ప్రత్యామ్నాయంగా, కీబోర్డ్ ఉపయోగించి బిట్‌స్ట్రీమ్‌లను తరలించవచ్చు: బిట్‌స్ట్రీమ్ యొక్క డ్రాగ్ హ్యాండిల్ ఫోకస్‌లో ఉన్నప్పుడు ఎంటర్ నొక్కడం ద్వారా బిట్‌స్ట్రీమ్‌ను ఎంచుకోండి. బిట్‌స్ట్రీమ్‌ను పైకి లేదా కిందికి తరలించడానికి ఎర్రో కీలను ఉపయోగించండి. బిట్‌స్ట్రీమ్ యొక్క ప్రస్తుత స్థానాన్ని నిర్ధారించడానికి మళ్లీ ఎంటర్ నొక్కండి.", + + "item.edit.bitstreams.headers.actions": "చర్యలు", + + "item.edit.bitstreams.headers.bundle": "బండిల్", + + "item.edit.bitstreams.headers.description": "వివరణ", + + "item.edit.bitstreams.headers.format": "ఫార్మాట్", + + "item.edit.bitstreams.headers.name": "పేరు", + + "item.edit.bitstreams.notifications.discarded.content": "మీ మార్పులు విస్మరించబడ్డాయి. మీ మార్పులను పునరుద్ధరించడానికి 'అన్‌డు' బటన్‌పై క్లిక్ చేయండి", + + "item.edit.bitstreams.notifications.discarded.title": "మార్పులు విస్మరించబడ్డాయి", + + "item.edit.bitstreams.notifications.move.failed.title": "బిట్‌స్ట్రీమ్‌లను తరలించడంలో లోపం", + + "item.edit.bitstreams.notifications.move.saved.content": "ఈ అంశం యొక్క బిట్‌స్ట్రీమ్‌లు మరియు బండిల్‌లకు మీ తరలింపు మార్పులు సేవ్ చేయబడ్డాయి.", + + "item.edit.bitstreams.notifications.move.saved.title": "తరలింపు మార్పులు సేవ్ చేయబడ్డాయి", + + "item.edit.bitstreams.notifications.outdated.content": "మీరు ప్రస్తుతం పని చేస్తున్న అంశం మరొక వినియోగదారునిచే మార్చబడింది. సంఘర్షణలను నివారించడానికి మీ ప్రస్తుత మార్పులు విస్మరించబడ్డాయి", + + "item.edit.bitstreams.notifications.outdated.title": "మార్పులు పాతవయ్యాయి", + + "item.edit.bitstreams.notifications.remove.failed.title": "బిట్‌స్ట్రీమ్‌ను తొలగించడంలో లోపం", + + "item.edit.bitstreams.notifications.remove.saved.content": "ఈ అంశం యొక్క బిట్‌స్ట్రీమ్‌లకు మీ తొలగింపు మార్పులు సేవ్ చేయబడ్డాయి.", + + "item.edit.bitstreams.notifications.remove.saved.title": "తొలగింపు మార్పులు సేవ్ చేయబడ్డాయి", + + "item.edit.bitstreams.reinstate-button": "అన్‌డు", + + "item.edit.bitstreams.save-button": "సేవ్ చేయండి", + + "item.edit.bitstreams.upload-button": "అప్‌లోడ్", + + "item.edit.bitstreams.load-more.link": "మరిన్ని లోడ్ చేయండి", + + "item.edit.delete.cancel": "రద్దు చేయండి", + + "item.edit.delete.confirm": "తొలగించండి", + + "item.edit.delete.description": "ఈ అంశాన్ని పూర్తిగా తొలగించాలని మీరు ఖచ్చితంగా అనుకుంటున్నారా? హెచ్చరిక: ప్రస్తుతం, ఏ టోంబ్‌స్టోన్ మిగిలి ఉండదు.", + + "item.edit.delete.error": "అంశాన్ని తొలగించడంలో లోపం సంభవించింది", + + "item.edit.delete.header": "అంశాన్ని తొలగించండి: {{ id }}", + + "item.edit.delete.success": "అంశం తొలగించబడింది", + + "item.edit.head": "అంశాన్ని సవరించండి", + + "item.edit.breadcrumbs": "అంశాన్ని సవరించండి", + + "item.edit.tabs.disabled.tooltip": "మీకు ఈ ట్యాబ్‌ను యాక్సెస్ చేయడానికి అధికారం లేదు", + + "item.edit.tabs.mapper.head": "కలెక్షన్ మ్యాపర్", + + "item.edit.tabs.item-mapper.title": "అంశం సవరణ - కలెక్షన్ మ్యాపర్", + + "item.edit.identifiers.doi.status.UNKNOWN": "తెలియదు", + + "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "రిజిస్ట్రేషన్ కోసం క్యూ చేయబడింది", + + "item.edit.identifiers.doi.status.TO_BE_RESERVED": "రిజర్వేషన్ కోసం క్యూ చేయబడింది", + + "item.edit.identifiers.doi.status.IS_REGISTERED": "రిజిస్టర్ చేయబడింది", + + "item.edit.identifiers.doi.status.IS_RESERVED": "రిజర్వ్ చేయబడింది", + + "item.edit.identifiers.doi.status.UPDATE_RESERVED": "రిజర్వ్ చేయబడింది (అప్‌డేట్ క్యూ చేయబడింది)", + + "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "రిజిస్టర్ చేయబడింది (అప్‌డేట్ క్యూ చేయబడింది)", + + "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "అప్‌డేట్ మరియు రిజిస్ట్రేషన్ కోసం క్యూ చేయబడింది", + + "item.edit.identifiers.doi.status.TO_BE_DELETED": "తొలగింపు కోసం క్యూ చేయబడింది", + + "item.edit.identifiers.doi.status.DELETED": "తొలగించబడింది", + + "item.edit.identifiers.doi.status.PENDING": "పెండింగ్ (రిజిస్టర్ చేయబడలేదు)", + + "item.edit.identifiers.doi.status.MINTED": "మింటెడ్ (రిజిస్టర్ చేయబడలేదు)", + + "item.edit.tabs.status.buttons.register-doi.label": "కొత్త లేదా పెండింగ్ DOIని రిజిస్టర్ చేయండి", + + "item.edit.tabs.status.buttons.register-doi.button": "DOIని రిజిస్టర్ చేయండి...", + + "item.edit.register-doi.header": "కొత్త లేదా పెండింగ్ DOIని రిజిస్టర్ చేయండి", + + "item.edit.register-doi.description": "క్రింద ఏదైనా పెండింగ్ ఐడెంటిఫైయర్‌లు మరియు అంశం మెటాడేటాను సమీక్షించండి మరియు DOI రిజిస్ట్రేషన్‌తో కొనసాగడానికి నిర్ధారించండి, లేదా వెనుకకు వెళ్లడానికి రద్దు చేయండి", + + "item.edit.register-doi.confirm": "నిర్ధారించండి", + + "item.edit.register-doi.cancel": "రద్దు చేయండి", + + "item.edit.register-doi.success": "DOI విజయవంతంగా రిజిస్ట్రేషన్ కోసం క్యూ చేయబడింది.", + + "item.edit.register-doi.error": "DOIని రిజిస్టర్ చేయడంలో లోపం", + + "item.edit.register-doi.to-update": "ఈ DOI ఇప్పటికే మింటెడ్ చేయబడింది మరియు ఆన్‌లైన్‌లో రిజిస్ట్రేషన్ కోసం క్యూ చేయబడుతుంది", + + "item.edit.item-mapper.buttons.add": "ఎంచుకున్న కలెక్షన్‌లకు అంశాన్ని మ్యాప్ చేయండి", + + "item.edit.item-mapper.buttons.remove": "ఎంచుకున్న కలెక్షన్‌ల కోసం అంశం యొక్క మ్యాపింగ్‌ను తొలగించండి", + + "item.edit.item-mapper.cancel": "రద్దు చేయండి", + + "item.edit.item-mapper.description": "ఇది అడ్మినిస్ట్రేటర్‌లకు ఈ అంశాన్ని ఇతర కలెక్షన్‌లకు మ్యాప్ చేయడానికి అనుమతించే అంశం మ్యాపర్ టూల్. మీరు కలెక్షన్‌ల కోసం శోధించవచ్చు మరియు వాటిని మ్యాప్ చేయవచ్చు, లేదా అంశం ప్రస్తుతం మ్యాప్ చేయబడిన కలెక్షన్‌ల జాబితాను బ్రౌజ్ చేయవచ్చు.", + + "item.edit.item-mapper.head": "అంశం మ్యాపర్ - కలెక్షన్‌లకు అంశాన్ని మ్యాప్ చేయండి", + + "item.edit.item-mapper.item": "అంశం: \"{{name}}\"", + + "item.edit.item-mapper.no-search": "శోధన చేయడానికి ఒక ప్రశ్నను నమోదు చేయండి", + + "item.edit.item-mapper.notifications.add.error.content": "{{amount}} కలెక్షన్‌లకు అంశాన్ని మ్యాప్ చేయడంలో లోపాలు సంభవించాయి.", + + "item.edit.item-mapper.notifications.add.error.head": "మ్యాపింగ్ లోపాలు", + + "item.edit.item-mapper.notifications.add.success.content": "{{amount}} కలెక్షన్‌లకు అంశాన్ని విజయవంతంగా మ్యాప్ చేయబడింది.", + + "item.edit.item-mapper.notifications.add.success.head": "మ్యాపింగ్ పూర్తయింది", + + "item.edit.item-mapper.notifications.remove.error.content": "{{amount}} కలెక్షన్‌లకు మ్యాపింగ్‌ను తొలగించడంలో లోపాలు సంభవించాయి.", + + "item.edit.item-mapper.notifications.remove.error.head": "మ్యాపింగ్ తొలగింపు లోపాలు", + + "item.edit.item-mapper.notifications.remove.success.content": "{{amount}} కలెక్షన్‌లకు అంశం యొక్క మ్యాపింగ్ విజయవంతంగా తొలగించబడింది.", + + "item.edit.item-mapper.notifications.remove.success.head": "మ్యాపింగ్ తొలగింపు పూర్తయింది", + + "item.edit.item-mapper.search-form.placeholder": "కలెక్షన్‌లను శోధించండి...", + + "item.edit.item-mapper.tabs.browse": "మ్యాప్ చేయబడిన కలెక్షన్‌లను బ్రౌజ్ చేయండి", + + "item.edit.item-mapper.tabs.map": "కొత్త కలెక్షన్‌లను మ్యాప్ చేయండి", + + "item.edit.metadata.add-button": "జోడించండి", + + "item.edit.metadata.discard-button": "విస్మరించండి", + + "item.edit.metadata.edit.language": "భాషను సవరించండి", + + "item.edit.metadata.edit.value": "విలువను సవరించండి", + + "item.edit.metadata.edit.authority.key": "అథారిటీ కీని సవరించండి", + + "item.edit.metadata.edit.buttons.enable-free-text-editing": "ఉచిత-టెక్స్ట్ ఎడిటింగ్‌ను ప్రారంభించండి", + + "item.edit.metadata.edit.buttons.disable-free-text-editing": "ఉచిత-టెక్స్ట్ ఎడిటింగ్‌ను నిలిపివేయండి", + + "item.edit.metadata.edit.buttons.confirm": "నిర్ధారించండి", + + "item.edit.metadata.edit.buttons.drag": "పునర్వ్యవస్థీకరించడానికి డ్రాగ్ చేయండి", + + "item.edit.metadata.edit.buttons.edit": "సవరించండి", + + "item.edit.metadata.edit.buttons.remove": "తీసివేయి", + + "item.edit.metadata.edit.buttons.undo": "మార్పులను రద్దు చేయి", + + "item.edit.metadata.edit.buttons.unedit": "సవరించడం ఆపు", + + "item.edit.metadata.edit.buttons.virtual": "ఇది వర్చువల్ మెటాడేటా విలువ, అంటే సంబంధిత ఎంటిటీ నుండి వారసత్వంగా వచ్చిన విలువ. దీన్ని నేరుగా సవరించలేరు. \"సంబంధాలు\" ట్యాబ్‌లో సంబంధిత సంబంధాన్ని జోడించండి లేదా తీసివేయండి", + + "item.edit.metadata.empty": "ఇటీవలి అంశంలో ఏ మెటాడేటా లేదు. మెటాడేటా విలువను జోడించడం ప్రారంభించడానికి జోడించు క్లిక్ చేయండి.", + + "item.edit.metadata.headers.edit": "సవరించు", + + "item.edit.metadata.headers.field": "ఫీల్డ్", + + "item.edit.metadata.headers.language": "భాష", + + "item.edit.metadata.headers.value": "విలువ", + + "item.edit.metadata.metadatafield": "ఫీల్డ్‌ను సవరించు", + + "item.edit.metadata.metadatafield.error": "మెటాడేటా ఫీల్డ్‌ను ధృవీకరించడంలో లోపం సంభవించింది", + + "item.edit.metadata.metadatafield.invalid": "దయచేసి సరైన మెటాడేటా ఫీల్డ్‌ను ఎంచుకోండి", + + "item.edit.metadata.notifications.discarded.content": "మీ మార్పులు విస్మరించబడ్డాయి. మీ మార్పులను పునరుద్ధరించడానికి 'రద్దు చేయి' బటన్‌ను క్లిక్ చేయండి", + + "item.edit.metadata.notifications.discarded.title": "మార్పులు విస్మరించబడ్డాయి", + + "item.edit.metadata.notifications.error.title": "లోపం సంభవించింది", + + "item.edit.metadata.notifications.invalid.content": "మీ మార్పులు సేవ్ చేయబడలేదు. సేవ్ చేయడానికి ముందు అన్ని ఫీల్డ్‌లు చెల్లుబాటు అయ్యేలా ఉండేలా చూసుకోండి.", + + "item.edit.metadata.notifications.invalid.title": "మెటాడేటా చెల్లదు", + + "item.edit.metadata.notifications.outdated.content": "మీరు ప్రస్తుతం పని చేస్తున్న అంశం మరొక వినియోగదారు చేత మార్చబడింది. సంఘర్షణలను నివారించడానికి మీ ప్రస్తుత మార్పులు విస్మరించబడ్డాయి", + + "item.edit.metadata.notifications.outdated.title": "మార్పులు పాతవి", + + "item.edit.metadata.notifications.saved.content": "ఈ అంశం యొక్క మెటాడేటాలో మీరు చేసిన మార్పులు సేవ్ చేయబడ్డాయి.", + + "item.edit.metadata.notifications.saved.title": "మెటాడేటా సేవ్ చేయబడింది", + + "item.edit.metadata.reinstate-button": "రద్దు చేయి", + + "item.edit.metadata.reset-order-button": "మళ్లీ ఆర్డర్ చేయి", + + "item.edit.metadata.save-button": "సేవ్ చేయి", + + "item.edit.metadata.authority.label": "అధికారం: ", + + "item.edit.metadata.edit.buttons.open-authority-edition": "మాన్యువల్ సవరణ కోసం అధికార కీ విలువను అన్‌లాక్ చేయి", + + "item.edit.metadata.edit.buttons.close-authority-edition": "మాన్యువల్ సవరణ కోసం అధికార కీ విలువను లాక్ చేయి", + + "item.edit.modify.overview.field": "ఫీల్డ్", + + "item.edit.modify.overview.language": "భాష", + + "item.edit.modify.overview.value": "విలువ", + + "item.edit.move.cancel": "వెనక్కి", + + "item.edit.move.save-button": "సేవ్ చేయి", + + "item.edit.move.discard-button": "విస్మరించు", + + "item.edit.move.description": "మీరు ఈ అంశాన్ని తరలించాలనుకునే కలెక్షన్‌ను ఎంచుకోండి. ప్రదర్శించబడే కలెక్షన్‌ల జాబితాను తగ్గించడానికి, మీరు బాక్స్‌లో శోధన ప్రశ్నను నమోదు చేయవచ్చు.", + + "item.edit.move.error": "అంశాన్ని తరలించడానికి ప్రయత్నించడంలో లోపం సంభవించింది", + + "item.edit.move.head": "అంశాన్ని తరలించు: {{id}}", + + "item.edit.move.inheritpolicies.checkbox": "పాలసీలను వారసత్వంగా పొందండి", + + "item.edit.move.inheritpolicies.description": "గమ్యం కలెక్షన్ యొక్క డిఫాల్ట్ పాలసీలను వారసత్వంగా పొందండి", + + "item.edit.move.inheritpolicies.tooltip": "హెచ్చరిక: ప్రారంభించబడినప్పుడు, అంశం మరియు అంశంతో అనుబంధించబడిన ఏదైనా ఫైల్‌ల కోసం రీడ్ యాక్సెస్ పాలసీ కలెక్షన్ యొక్క డిఫాల్ట్ రీడ్ యాక్సెస్ పాలసీతో భర్తీ చేయబడుతుంది. దీన్ని రద్దు చేయలేరు.", + + "item.edit.move.move": "తరలించు", + + "item.edit.move.processing": "తరలిస్తోంది...", + + "item.edit.move.search.placeholder": "కలెక్షన్‌ల కోసం శోధించడానికి శోధన ప్రశ్నను నమోదు చేయండి", + + "item.edit.move.success": "అంశం విజయవంతంగా తరలించబడింది", + + "item.edit.move.title": "అంశాన్ని తరలించు", + + "item.edit.private.cancel": "రద్దు చేయి", + + "item.edit.private.confirm": "డిస్కవర్ చేయలేనిదిగా చేయి", + + "item.edit.private.description": "ఈ అంశం ఆర్కైవ్‌లో డిస్కవర్ చేయలేనిదిగా చేయాలని మీరు ఖచ్చితంగా భావిస్తున్నారా?", + + "item.edit.private.error": "అంశాన్ని డిస్కవర్ చేయలేనిదిగా చేయడంలో లోపం సంభవించింది", + + "item.edit.private.header": "అంశాన్ని డిస్కవర్ చేయలేనిదిగా చేయి: {{ id }}", + + "item.edit.private.success": "అంశం ఇప్పుడు డిస్కవర్ చేయలేనిదిగా ఉంది", + + "item.edit.public.cancel": "రద్దు చేయి", + + "item.edit.public.confirm": "డిస్కవర్ చేయగలిగేదిగా చేయి", + + "item.edit.public.description": "ఈ అంశం ఆర్కైవ్‌లో డిస్కవర్ చేయగలిగేదిగా చేయాలని మీరు ఖచ్చితంగా భావిస్తున్నారా?", + + "item.edit.public.error": "అంశాన్ని డిస్కవర్ చేయగలిగేదిగా చేయడంలో లోపం సంభవించింది", + + "item.edit.public.header": "అంశాన్ని డిస్కవర్ చేయగలిగేదిగా చేయి: {{ id }}", + + "item.edit.public.success": "అంశం ఇప్పుడు డిస్కవర్ చేయగలిగేదిగా ఉంది", + + "item.edit.reinstate.cancel": "రద్దు చేయి", + + "item.edit.reinstate.confirm": "పునరుద్ధరించు", + + "item.edit.reinstate.description": "ఈ అంశాన్ని ఆర్కైవ్‌కు పునరుద్ధరించాలని మీరు ఖచ్చితంగా భావిస్తున్నారా?", + + "item.edit.reinstate.error": "అంశాన్ని పునరుద్ధరించడంలో లోపం సంభవించింది", + + "item.edit.reinstate.header": "అంశాన్ని పునరుద్ధరించు: {{ id }}", + + "item.edit.reinstate.success": "అంశం విజయవంతంగా పునరుద్ధరించబడింది", + + "item.edit.relationships.discard-button": "విస్మరించు", + + "item.edit.relationships.edit.buttons.add": "జోడించు", + + "item.edit.relationships.edit.buttons.remove": "తీసివేయి", + + "item.edit.relationships.edit.buttons.undo": "మార్పులను రద్దు చేయి", + + "item.edit.relationships.no-relationships": "సంబంధాలు లేవు", + + "item.edit.relationships.notifications.discarded.content": "మీ మార్పులు విస్మరించబడ్డాయి. మీ మార్పులను పునరుద్ధరించడానికి 'రద్దు చేయి' బటన్‌ను క్లిక్ చేయండి", + + "item.edit.relationships.notifications.discarded.title": "మార్పులు విస్మరించబడ్డాయి", + + "item.edit.relationships.notifications.failed.title": "సంబంధాలను సవరించడంలో లోపం", + + "item.edit.relationships.notifications.outdated.content": "మీరు ప్రస్తుతం పని చేస్తున్న అంశం మరొక వినియోగదారు చేత మార్చబడింది. సంఘర్షణలను నివారించడానికి మీ ప్రస్తుత మార్పులు విస్మరించబడ్డాయి", + + "item.edit.relationships.notifications.outdated.title": "మార్పులు పాతవి", + + "item.edit.relationships.notifications.saved.content": "ఈ అంశం యొక్క సంబంధాలలో మీరు చేసిన మార్పులు సేవ్ చేయబడ్డాయి.", + + "item.edit.relationships.notifications.saved.title": "సంబంధాలు సేవ్ చేయబడ్డాయి", + + "item.edit.relationships.reinstate-button": "రద్దు చేయి", + + "item.edit.relationships.save-button": "సేవ్ చేయి", + + "item.edit.relationships.no-entity-type": "ఈ అంశం కోసం సంబంధాలను ప్రారంభించడానికి 'dspace.entity.type' మెటాడేటాను జోడించండి", + + "item.edit.return": "వెనక్కి", + + "item.edit.tabs.bitstreams.head": "బిట్‌స్ట్రీమ్‌లు", + + "item.edit.tabs.bitstreams.title": "అంశం సవరణ - బిట్‌స్ట్రీమ్‌లు", + + "item.edit.tabs.curate.head": "క్యూరేట్ చేయి", + + "item.edit.tabs.curate.title": "అంశం సవరణ - క్యూరేట్ చేయి", + + "item.edit.curate.title": "అంశాన్ని క్యూరేట్ చేయి: {{item}}", + + "item.edit.tabs.access-control.head": "యాక్సెస్ కంట్రోల్", + + "item.edit.tabs.access-control.title": "అంశం సవరణ - యాక్సెస్ కంట్రోల్", + + "item.edit.tabs.metadata.head": "మెటాడేటా", + + "item.edit.tabs.metadata.title": "అంశం సవరణ - మెటాడేటా", + + "item.edit.tabs.relationships.head": "సంబంధాలు", + + "item.edit.tabs.relationships.title": "అంశం సవరణ - సంబంధాలు", + + "item.edit.tabs.status.buttons.authorizations.button": "అధికారాలు...", + + "item.edit.tabs.status.buttons.authorizations.label": "అంశం యొక్క అధికార పాలసీలను సవరించండి", + + "item.edit.tabs.status.buttons.delete.button": "శాశ్వతంగా తొలగించు", + + "item.edit.tabs.status.buttons.delete.label": "అంశాన్ని పూర్తిగా తొలగించు", + + "item.edit.tabs.status.buttons.mappedCollections.button": "మ్యాప్ చేసిన కలెక్షన్‌లు", + + "item.edit.tabs.status.buttons.mappedCollections.label": "మ్యాప్ చేసిన కలెక్షన్‌లను నిర్వహించండి", + + "item.edit.tabs.status.buttons.move.button": "ఈ అంశాన్ని వేరే కలెక్షన్‌కు తరలించండి", + + "item.edit.tabs.status.buttons.move.label": "అంశాన్ని మరొక కలెక్షన్‌కు తరలించండి", + + "item.edit.tabs.status.buttons.private.button": "డిస్కవర్ చేయలేనిదిగా చేయి...", + + "item.edit.tabs.status.buttons.private.label": "అంశాన్ని డిస్కవర్ చేయలేనిదిగా చేయి", + + "item.edit.tabs.status.buttons.public.button": "డిస్కవర్ చేయగలిగేదిగా చేయి...", + + "item.edit.tabs.status.buttons.public.label": "అంశాన్ని డిస్కవర్ చేయగలిగేదిగా చేయి", + + "item.edit.tabs.status.buttons.reinstate.button": "పునరుద్ధరించు...", + + "item.edit.tabs.status.buttons.reinstate.label": "రిపోజిటరీలో అంశాన్ని పునరుద్ధరించు", + + "item.edit.tabs.status.buttons.unauthorized": "ఈ చర్యను చేయడానికి మీకు అధికారం లేదు", + + "item.edit.tabs.status.buttons.withdraw.button": "ఈ అంశాన్ని వైదొలగించు", + + "item.edit.tabs.status.buttons.withdraw.label": "రిపోజిటరీ నుండి అంశాన్ని వైదొలగించు", + + "item.edit.tabs.status.description": "అంశం నిర్వహణ పేజీకి స్వాగతం. ఇక్కడ నుండి మీరు అంశాన్ని వైదొలగించవచ్చు, పునరుద్ధరించవచ్చు, తరలించవచ్చు లేదా తొలగించవచ్చు. మీరు ఇతర ట్యాబ్‌లలో మెటాడేటా / బిట్‌స్ట్రీమ్‌లను నవీకరించవచ్చు లేదా కొత్తవాటిని జోడించవచ్చు.", + + "item.edit.tabs.status.head": "స్థితి", + + "item.edit.tabs.status.labels.handle": "హ్యాండిల్", + + "item.edit.tabs.status.labels.id": "అంశం అంతర్గత ID", + + "item.edit.tabs.status.labels.itemPage": "అంశం పేజీ", + + "item.edit.tabs.status.labels.lastModified": "చివరిగా మార్చబడింది", + + "item.edit.tabs.status.title": "అంశం సవరణ - స్థితి", + + "item.edit.tabs.versionhistory.head": "వెర్షన్ హిస్టరీ", + + "item.edit.tabs.versionhistory.title": "అంశం సవరణ - వెర్షన్ హిస్టరీ", + + "item.edit.tabs.versionhistory.under-construction": "ఈ వినియోగదారు ఇంటర్‌ఫేస్‌లో కొత్త వెర్షన్‌లను సవరించడం లేదా జోడించడం ఇంకా సాధ్యం కాదు.", + + "item.edit.tabs.view.head": "అంశాన్ని వీక్షించండి", + + "item.edit.tabs.view.title": "అంశం సవరణ - వీక్షించండి", + + "item.edit.withdraw.cancel": "రద్దు చేయి", + + "item.edit.withdraw.confirm": "వైదొలగించు", + + "item.edit.withdraw.description": "ఈ అంశాన్ని ఆర్కైవ్ నుండి వైదొలగించాలని మీరు ఖచ్చితంగా భావిస్తున్నారా?", + + "item.edit.withdraw.error": "అంశాన్ని వైదొలగించడంలో లోపం సంభవించింది", + + "item.edit.withdraw.header": "అంశాన్ని వైదొలగించు: {{ id }}", + + "item.edit.withdraw.success": "అంశం విజయవంతంగా వైదొలగించబడింది", + + "item.orcid.return": "వెనక్కి", + + "item.listelement.badge": "అంశం", + + "item.page.description": "వివరణ", + + "item.page.org-unit": "సంస్థాగత యూనిట్", + + "item.page.org-units": "సంస్థాగత యూనిట్‌లు", + + "item.page.project": "రీసెర్చ్ ప్రాజెక్ట్", + + "item.page.projects": "రీసెర్చ్ ప్రాజెక్ట్‌లు", + + "item.page.publication": "ప్రచురణలు", + + "item.page.publications": "ప్రచురణలు", + + "item.page.article": "ఆర్టికల్", + + "item.page.articles": "ఆర్టికల్‌లు", + + "item.page.journal": "జర్నల్", + + "item.page.journals": "జర్నల్‌లు", + + "item.page.journal-issue": "జర్నల్ ఇష్యూ", + + "item.page.journal-issues": "జర్నల్ ఇష్యూలు", + + "item.page.journal-volume": "జర్నల్ వాల్యూమ్", + + "item.page.journal-volumes": "జర్నల్ వాల్యూమ్‌లు", + + "item.page.journal-issn": "జర్నల్ ISSN", + + "item.page.journal-title": "జర్నల్ టైటిల్", + + "item.page.publisher": "ప్రచురణకర్త", + + "item.page.titleprefix": "అంశం: ", + + "item.page.volume-title": "వాల్యూమ్ టైటిల్", + + "item.page.dcterms.spatial": "జియోస్పేషియల్ పాయింట్", + + "item.search.results.head": "అంశం శోధన ఫలితాలు", + + "item.search.title": "అంశం శోధన", + + "item.truncatable-part.show-more": "మరిన్ని చూపించు", + + "item.truncatable-part.show-less": "కుదించు", + + "item.qa-event-notification.check.notification-info": "మీ ఖాతాకు సంబంధించిన {{num}} పెండింగ్ సూచనలు ఉన్నాయి", + + "item.qa-event-notification-info.check.button": "వీక్షించండి", + + "mydspace.qa-event-notification.check.notification-info": "మీ ఖాతాకు సంబంధించిన {{num}} పెండింగ్ సూచనలు ఉన్నాయి", + + "mydspace.qa-event-notification-info.check.button": "వీక్షించండి", + + "workflow-item.search.result.delete-supervision.modal.header": "సూపర్విజన్ ఆర్డర్‌ను తొలగించు", + + "workflow-item.search.result.delete-supervision.modal.info": "సూపర్విజన్ ఆర్డర్‌ను తొలగించాలని మీరు ఖచ్చితంగా భావిస్తున్నారా", + + "workflow-item.search.result.delete-supervision.modal.cancel": "రద్దు చేయి", + + "workflow-item.search.result.delete-supervision.modal.confirm": "తొలగించు", + + "workflow-item.search.result.notification.deleted.success": "సూపర్విజన్ ఆర్డర్ \"{{name}}\" విజయవంతంగా తొలగించబడింది", + + "workflow-item.search.result.notification.deleted.failure": "సూపర్విజన్ ఆర్డర్ \"{{name}}\" తొలగించడంలో విఫలమైంది", + + "workflow-item.search.result.list.element.supervised-by": "సూపర్వైజ్ చేసినది:", + + "workflow-item.search.result.list.element.supervised.remove-tooltip": "సూపర్విజన్ గ్రూప్‌ను తొలగించు", + + "confidence.indicator.help-text.accepted": "ఈ అధికార విలువ ఇంటరాక్టివ్ వినియోగదారు ద్వారా ఖచ్చితంగా నిర్ధారించబడింది", + + "confidence.indicator.help-text.uncertain": "విలువ సింగిల్ మరియు చెల్లుబాటు అయ్యేది కానీ మానవుడిచే చూడబడలేదు మరియు అంగీకరించబడలేదు కాబట్టి ఇది ఇంకా అనిశ్చితంగా ఉంది", + + "confidence.indicator.help-text.ambiguous": "సమానమైన చెల్లుబాటు యొక్క బహుళ మ్యాచింగ్ అధికార విలువలు ఉన్నాయి", + + "confidence.indicator.help-text.notfound": "అధికారంలో సరిపోలే సమాధానాలు లేవు", + + "confidence.indicator.help-text.failed": "అధికారం అంతర్గత వైఫల్యాన్ని ఎదుర్కొంది", + + "confidence.indicator.help-text.rejected": "ఈ సబ్మిషన్‌ను తిరస్కరించాలని అధికారం సిఫార్సు చేస్తుంది", + + "confidence.indicator.help-text.novalue": "అధికారం నుండి సరైన కాన్ఫిడెన్స్ విలువ తిరిగి రాలేదు", + + "confidence.indicator.help-text.unset": "ఈ విలువ కోసం కాన్ఫిడెన్స్ ఎప్పుడూ రికార్డ్ చేయబడలేదు", + + "confidence.indicator.help-text.unknown": "తెలియని కాన్ఫిడెన్స్ విలువ", + + "item.page.abstract": "సారాంశం", + + "item.page.author": "రచయిత", + + "item.page.authors": "రచయితలు", + + "item.page.citation": "సైటేషన్", + + "item.page.collections": "కలెక్షన్‌లు", + + "item.page.collections.loading": "లోడ్ అవుతోంది...", + + "item.page.collections.load-more": "మరిన్ని లోడ్ చేయండి", + + "item.page.date": "తేదీ", + + "item.page.edit": "ఈ అంశాన్ని సవరించండి", + + "item.page.files": "ఫైల్‌లు", + + "item.page.filesection.description": "వివరణ:", + + "item.page.filesection.download": "డౌన్‌లోడ్", + + "item.page.filesection.format": "ఫార్మాట్:", + + "item.page.filesection.name": "పేరు:", + + "item.page.filesection.size": "పరిమాణం:", + + "item.page.journal.search.title": "ఈ జర్నల్‌లోని ఆర్టికల్‌లు", + + "item.page.link.full": "పూర్తి అంశం పేజీ", + + "item.page.link.simple": "సాధారణ అంశం పేజీ", + + "item.page.options": "ఎంపికలు", + + "item.page.orcid.title": "ORCID", + + "item.page.orcid.tooltip": "ORCID సెట్టింగ్ పేజీని తెరవండి", + + "item.page.person.search.title": "ఈ రచయిత చేసిన ఆర్టికల్‌లు", + + "item.page.related-items.view-more": "మరిన్ని {{ amount }} చూపించు", + + "item.page.related-items.view-less": "చివరి {{ amount }} దాచు", + + "item.page.relationships.isAuthorOfPublication": "ప్రచురణలు", + + "item.page.relationships.isJournalOfPublication": "ప్రచురణలు", + + "item.page.relationships.isOrgUnitOfPerson": "రచయితలు", + + "item.page.relationships.isOrgUnitOfProject": "రీసెర్చ్ ప్రాజెక్ట్‌లు", + + "item.page.subject": "కీలక పదాలు", + + "item.page.uri": "URI", + + "item.page.bitstreams.view-more": "మరిన్ని చూపించు", + + "item.page.bitstreams.collapse": "కుదించు", + + "item.page.bitstreams.primary": "ప్రాథమిక", + + "item.page.filesection.original.bundle": "అసలు బండిల్", + + "item.page.filesection.license.bundle": "లైసెన్స్ బండిల్", + + "item.page.return": "వెనక్కి", + + "item.page.version.create": "కొత్త వెర్షన్‌ను సృష్టించండి", + + "item.page.withdrawn": "ఈ అంశం కోసం వైదొలగింపును అభ్యర్థించండి", + + "item.page.reinstate": "పునరుద్ధరణను అభ్యర్థించండి", + + "item.page.version.hasDraft": "వెర్షన్ హిస్టరీలో ప్రోగ్రెస్ సబ్మిషన్ ఉన్నందున కొత్త వెర్షన్ సృష్టించబడదు", + + "item.page.claim.button": "క్లెయిమ్ చేయి", + + "item.page.claim.tooltip": "ఈ అంశాన్ని ప్రొఫైల్‌గా క్లెయిమ్ చేయండి", + + "item.page.image.alt.ROR": "ROR లోగో", + + "item.preview.dc.identifier.uri": "ఐడెంటిఫైయర్:", + + "item.preview.dc.contributor.author": "రచయితలు:", + + "item.preview.dc.date.issued": "ప్రచురణ తేదీ:", + + "item.preview.dc.description": "వివరణ:", + + "item.preview.dc.description.abstract": "సారాంశం:", + + "item.preview.dc.identifier.other": "ఇతర ఐడెంటిఫైయర్:", + + "item.preview.dc.language.iso": "భాష:", + + "item.preview.dc.subject": "విషయాలు:", + + "item.preview.dc.title": "శీర్షిక:", + + "item.preview.dc.type": "రకం:", + + "item.preview.oaire.version": "వెర్షన్", + + "item.preview.oaire.citation.issue": "ఇష్యూ", + + "item.preview.oaire.citation.volume": "వాల్యూమ్", + + "item.preview.oaire.citation.title": "సైటేషన్ కంటైనర్", + + "item.preview.oaire.citation.startPage": "సైటేషన్ ప్రారంభ పేజీ", + + "item.preview.oaire.citation.endPage": "సైటేషన్ ముగింపు పేజీ", + + "item.preview.dc.relation.hasversion": "వెర్షన్ ఉంది", + + "item.preview.dc.relation.ispartofseries": "సిరీస్‌లో భాగం", + + "item.preview.dc.rights": "హక్కులు", + + "item.preview.dc.identifier.other": "ఇతర ఐడెంటిఫైయర్", + + "item.preview.dc.relation.issn": "ISSN", + + "item.preview.dc.identifier.isbn": "ISBN", + + "item.preview.dc.identifier": "ఐడెంటిఫైయర్:", + + "item.preview.dc.relation.ispartof": "జర్నల్ లేదా సిరీస్", + + "item.preview.dc.identifier.doi": "DOI", + + "item.preview.dc.publisher": "ప్రచురణకర్త:", + + "item.preview.person.familyName": "ఇంటిపేరు:", + + "item.preview.person.givenName": "పేరు:", + + "item.preview.person.identifier.orcid": "ORCID:", + + "item.preview.person.affiliation.name": "సంబంధాలు:", + + "item.preview.project.funder.name": "నిధి:", + + "item.preview.project.funder.identifier": "నిధి గుర్తింపు:", + + "item.preview.project.investigator": "ప్రాజెక్ట్ పరిశోధకుడు", + + "item.preview.oaire.awardNumber": "నిధి ID:", + + "item.preview.dc.title.alternative": "సంక్షిప్త నామం:", + + "item.preview.dc.coverage.spatial": "అధికార పరిధి:", + + "item.preview.oaire.fundingStream": "నిధి ప్రవాహం:", + + "item.preview.oairecerif.identifier.url": "URL", + + "item.preview.organization.address.addressCountry": "దేశం", + + "item.preview.organization.foundingDate": "స్థాపన తేదీ", + + "item.preview.organization.identifier.crossrefid": "Crossref ID", + + "item.preview.organization.identifier.isni": "ISNI", + + "item.preview.organization.identifier.ror": "ROR ID", + + "item.preview.organization.legalName": "చట్టబద్ధమైన పేరు", + + "item.preview.dspace.entity.type": "ఎంటిటీ రకం:", + + "item.preview.creativework.publisher": "ప్రచురణకర్త", + + "item.preview.creativeworkseries.issn": "ISSN", + + "item.preview.dc.identifier.issn": "ISSN", + + "item.preview.dc.identifier.openalex": "OpenAlex గుర్తింపు", + + "item.preview.dc.description": "వివరణ", + + "item.select.confirm": "ఎంచుకున్నవి నిర్ధారించండి", + + "item.select.empty": "చూపించడానికి అంశాలు లేవు", + + "item.select.table.selected": "ఎంచుకున్న అంశాలు", + + "item.select.table.select": "అంశాన్ని ఎంచుకోండి", + + "item.select.table.deselect": "అంశాన్ని ఎంచుకోవద్దు", + + "item.select.table.author": "రచయిత", + + "item.select.table.collection": "సేకరణ", + + "item.select.table.title": "శీర్షిక", + + "item.version.history.empty": "ఈ అంశానికి ఇంకా ఇతర వెర్షన్లు లేవు.", + + "item.version.history.head": "వెర్షన్ చరిత్ర", + + "item.version.history.return": "వెనుకకు", + + "item.version.history.selected": "ఎంచుకున్న వెర్షన్", + + "item.version.history.selected.alert": "మీరు ప్రస్తుతం అంశం యొక్క {{version}} వెర్షన్ను చూస్తున్నారు.", + + "item.version.history.table.version": "వెర్షన్", + + "item.version.history.table.item": "అంశం", + + "item.version.history.table.editor": "సంపాదకుడు", + + "item.version.history.table.date": "తేదీ", + + "item.version.history.table.summary": "సారాంశం", + + "item.version.history.table.workspaceItem": "వర్క్స్పేస్ అంశం", + + "item.version.history.table.workflowItem": "వర్క్ఫ్లో అంశం", + + "item.version.history.table.actions": "చర్య", + + "item.version.history.table.action.editWorkspaceItem": "వర్క్స్పేస్ అంశాన్ని సవరించండి", + + "item.version.history.table.action.editSummary": "సారాంశాన్ని సవరించండి", + + "item.version.history.table.action.saveSummary": "సారాంశ సవరణలను సేవ్ చేయండి", + + "item.version.history.table.action.discardSummary": "సారాంశ సవరణలను విస్మరించండి", + + "item.version.history.table.action.newVersion": "దీని నుండి కొత్త వెర్షన్ సృష్టించండి", + + "item.version.history.table.action.deleteVersion": "వెర్షన్ను తొలగించండి", + + "item.version.history.table.action.hasDraft": "వెర్షన్ చరిత్రలో ప్రగతిలో ఉన్న సమర్పణ ఉన్నందున కొత్త వెర్షన్ సృష్టించబడదు", + + "item.version.notice": "ఇది ఈ అంశం యొక్క తాజా వెర్షన్ కాదు. తాజా వెర్షన్ ఇక్కడ కనుగొనవచ్చు.", + + "item.version.create.modal.header": "కొత్త వెర్షన్", + + "item.qa.withdrawn.modal.header": "ఉపసంహరణను అభ్యర్థించండి", + + "item.qa.reinstate.modal.header": "పునఃస్థాపనను అభ్యర్థించండి", + + "item.qa.reinstate.create.modal.header": "కొత్త వెర్షన్", + + "item.version.create.modal.text": "ఈ అంశానికి కొత్త వెర్షన్ సృష్టించండి", + + "item.version.create.modal.text.startingFrom": "{{version}} వెర్షన్ నుండి ప్రారంభించి", + + "item.version.create.modal.button.confirm": "సృష్టించండి", + + "item.version.create.modal.button.confirm.tooltip": "కొత్త వెర్షన్ సృష్టించండి", + + "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "అభ్యర్థనను పంపండి", + + "qa-withdrown.create.modal.button.confirm": "ఉపసంహరించండి", + + "qa-reinstate.create.modal.button.confirm": "పునఃస్థాపించండి", + + "item.version.create.modal.button.cancel": "రద్దు చేయండి", + + "item.qa.withdrawn-reinstate.create.modal.button.cancel": "రద్దు చేయండి", + + "item.version.create.modal.button.cancel.tooltip": "కొత్త వెర్షన్ సృష్టించవద్దు", + + "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "అభ్యర్థనను పంపవద్దు", + + "item.version.create.modal.form.summary.label": "సారాంశం", + + "qa-withdrawn.create.modal.form.summary.label": "మీరు ఈ అంశాన్ని ఉపసంహరించడానికి అభ్యర్థిస్తున్నారు", + + "qa-withdrawn.create.modal.form.summary2.label": "దయచేసి ఉపసంహరణ కోసం కారణం నమోదు చేయండి", + + "qa-reinstate.create.modal.form.summary.label": "మీరు ఈ అంశాన్ని పునఃస్థాపించడానికి అభ్యర్థిస్తున్నారు", + + "qa-reinstate.create.modal.form.summary2.label": "దయచేసి పునఃస్థాపణ కోసం కారణం నమోదు చేయండి", + + "item.version.create.modal.form.summary.placeholder": "కొత్త వెర్షన్ కోసం సారాంశాన్ని నమోదు చేయండి", + + "qa-withdrown.modal.form.summary.placeholder": "ఉపసంహరణ కోసం కారణం నమోదు చేయండి", + + "qa-reinstate.modal.form.summary.placeholder": "పునఃస్థాపణ కోసం కారణం నమోదు చేయండి", + + "item.version.create.modal.submitted.header": "కొత్త వెర్షన్ సృష్టించబడుతోంది...", + + "item.qa.withdrawn.modal.submitted.header": "ఉపసంహరణ అభ్యర్థన పంపబడుతోంది...", + + "correction-type.manage-relation.action.notification.reinstate": "పునఃస్థాపన అభ్యర్థన పంపబడింది.", + + "correction-type.manage-relation.action.notification.withdrawn": "ఉపసంహరణ అభ్యర్థన పంపబడింది.", + + "item.version.create.modal.submitted.text": "కొత్త వెర్షన్ సృష్టించబడుతోంది. అంశానికి చాలా సంబంధాలు ఉంటే ఇది కొంత సమయం పట్టవచ్చు.", + + "item.version.create.notification.success": "కొత్త వెర్షన్ {{version}} వెర్షన్ నంబర్తో సృష్టించబడింది", + + "item.version.create.notification.failure": "కొత్త వెర్షన్ సృష్టించబడలేదు", + + "item.version.create.notification.inProgress": "వెర్షన్ చరిత్రలో ప్రగతిలో ఉన్న సమర్పణ ఉన్నందున కొత్త వెర్షన్ సృష్టించబడదు", + + "item.version.delete.modal.header": "వెర్షన్ను తొలగించండి", + + "item.version.delete.modal.text": "మీరు {{version}} వెర్షన్ను తొలగించాలనుకుంటున్నారా?", + + "item.version.delete.modal.button.confirm": "తొలగించండి", + + "item.version.delete.modal.button.confirm.tooltip": "ఈ వెర్షన్ను తొలగించండి", + + "item.version.delete.modal.button.cancel": "రద్దు చేయండి", + + "item.version.delete.modal.button.cancel.tooltip": "ఈ వెర్షన్ను తొలగించవద్దు", + + "item.version.delete.notification.success": "{{version}} వెర్షన్ నంబర్ తొలగించబడింది", + + "item.version.delete.notification.failure": "{{version}} వెర్షన్ నంబర్ తొలగించబడలేదు", + + "item.version.edit.notification.success": "{{version}} వెర్షన్ నంబర్ యొక్క సారాంశం మార్చబడింది", + + "item.version.edit.notification.failure": "{{version}} వెర్షన్ నంబర్ యొక్క సారాంశం మార్చబడలేదు", + + "itemtemplate.edit.metadata.add-button": "జోడించండి", + + "itemtemplate.edit.metadata.discard-button": "విస్మరించండి", + + "itemtemplate.edit.metadata.edit.language": "భాషను సవరించండి", + + "itemtemplate.edit.metadata.edit.value": "విలువను సవరించండి", + + "itemtemplate.edit.metadata.edit.buttons.confirm": "నిర్ధారించండి", + + "itemtemplate.edit.metadata.edit.buttons.drag": "పునఃక్రమంలో ఉంచడానికి లాగండి", + + "itemtemplate.edit.metadata.edit.buttons.edit": "సవరించండి", + + "itemtemplate.edit.metadata.edit.buttons.remove": "తీసివేయండి", + + "itemtemplate.edit.metadata.edit.buttons.undo": "మార్పులను రద్దు చేయండి", + + "itemtemplate.edit.metadata.edit.buttons.unedit": "సవరణను ఆపండి", + + "itemtemplate.edit.metadata.empty": "అంశం టెంప్లేట్ ప్రస్తుతం ఏ మెటాడేటాను కలిగి ఉండదు. మెటాడేటా విలువను జోడించడం ప్రారంభించడానికి జోడించు క్లిక్ చేయండి.", + + "itemtemplate.edit.metadata.headers.edit": "సవరించండి", + + "itemtemplate.edit.metadata.headers.field": "ఫీల్డ్", + + "itemtemplate.edit.metadata.headers.language": "భాష", + + "itemtemplate.edit.metadata.headers.value": "విలువ", + + "itemtemplate.edit.metadata.metadatafield": "ఫీల్డ్ను సవరించండి", + + "itemtemplate.edit.metadata.metadatafield.error": "మెటాడేటా ఫీల్డ్ను ధ్రువీకరించడంలో లోపం సంభవించింది", + + "itemtemplate.edit.metadata.metadatafield.invalid": "దయచేసి సరైన మెటాడేటా ఫీల్డ్ను ఎంచుకోండి", + + "itemtemplate.edit.metadata.notifications.discarded.content": "మీ మార్పులు విస్మరించబడ్డాయి. మీ మార్పులను పునఃస్థాపించడానికి 'రద్దు చేయి' బటన్ క్లిక్ చేయండి", + + "itemtemplate.edit.metadata.notifications.discarded.title": "మార్పులు విస్మరించబడ్డాయి", + + "itemtemplate.edit.metadata.notifications.error.title": "లోపం సంభవించింది", + + "itemtemplate.edit.metadata.notifications.invalid.content": "మీ మార్పులు సేవ్ చేయబడలేదు. సేవ్ చేయడానికి ముందు అన్ని ఫీల్డ్లు సరైనవి అని నిర్ధారించుకోండి.", + + "itemtemplate.edit.metadata.notifications.invalid.title": "మెటాడేటా చెల్లదు", + + "itemtemplate.edit.metadata.notifications.outdated.content": "మీరు ప్రస్తుతం పనిచేస్తున్న అంశం టెంప్లేట్ మరొక వినియోగదారు చేత మార్చబడింది. వివాదాలను నివారించడానికి మీ ప్రస్తుత మార్పులు విస్మరించబడ్డాయి", + + "itemtemplate.edit.metadata.notifications.outdated.title": "మార్పులు పాతవయ్యాయి", + + "itemtemplate.edit.metadata.notifications.saved.content": "ఈ అంశం టెంప్లేట్ యొక్క మెటాడేటాకు మీరు చేసిన మార్పులు సేవ్ చేయబడ్డాయి.", + + "itemtemplate.edit.metadata.notifications.saved.title": "మెటాడేటా సేవ్ చేయబడింది", + + "itemtemplate.edit.metadata.reinstate-button": "రద్దు చేయి", + + "itemtemplate.edit.metadata.reset-order-button": "పునఃక్రమంలో ఉంచడానికి రద్దు చేయి", + + "itemtemplate.edit.metadata.save-button": "సేవ్ చేయండి", + + "journal.listelement.badge": "జర్నల్", + + "journal.page.description": "వివరణ", + + "journal.page.edit": "ఈ అంశాన్ని సవరించండి", + + "journal.page.editor": "ఎడిటర్-ఇన్-చీఫ్", + + "journal.page.issn": "ISSN", + + "journal.page.publisher": "ప్రచురణకర్త", + + "journal.page.options": "ఎంపికలు", + + "journal.page.titleprefix": "జర్నల్: ", + + "journal.search.results.head": "జర్నల్ శోధన ఫలితాలు", + + "journal-relationships.search.results.head": "జర్నల్ శోధన ఫలితాలు", + + "journal.search.title": "జర్నల్ శోధన", + + "journalissue.listelement.badge": "జర్నల్ ఇష్యూ", + + "journalissue.page.description": "వివరణ", + + "journalissue.page.edit": "ఈ అంశాన్ని సవరించండి", + + "journalissue.page.issuedate": "ఇష్యూ తేదీ", + + "journalissue.page.journal-issn": "జర్నల్ ISSN", + + "journalissue.page.journal-title": "జర్నల్ శీర్షిక", + + "journalissue.page.keyword": "కీలక పదాలు", + + "journalissue.page.number": "సంఖ్య", + + "journalissue.page.options": "ఎంపికలు", + + "journalissue.page.titleprefix": "జర్నల్ ఇష్యూ: ", + + "journalissue.search.results.head": "జర్నల్ ఇష్యూ శోధన ఫలితాలు", + + "journalvolume.listelement.badge": "జర్నల్ వాల్యూమ్", + + "journalvolume.page.description": "వివరణ", + + "journalvolume.page.edit": "ఈ అంశాన్ని సవరించండి", + + "journalvolume.page.issuedate": "ఇష్యూ తేదీ", + + "journalvolume.page.options": "ఎంపికలు", + + "journalvolume.page.titleprefix": "జర్నల్ వాల్యూమ్: ", + + "journalvolume.page.volume": "వాల్యూమ్", + + "journalvolume.search.results.head": "జర్నల్ వాల్యూమ్ శోధన ఫలితాలు", + + "iiifsearchable.listelement.badge": "డాక్యుమెంట్ మీడియా", + + "iiifsearchable.page.titleprefix": "డాక్యుమెంట్: ", + + "iiifsearchable.page.doi": "శాశ్వత లింక్: ", + + "iiifsearchable.page.issue": "ఇష్యూ: ", + + "iiifsearchable.page.description": "వివరణ: ", + + "iiifviewer.fullscreen.notice": "మెరుగైన వీక్షణ కోసం పూర్తి స్క్రీన్ ఉపయోగించండి.", + + "iiif.listelement.badge": "ఇమేజ్ మీడియా", + + "iiif.page.titleprefix": "ఇమేజ్: ", + + "iiif.page.doi": "శాశ్వత లింక్: ", + + "iiif.page.issue": "ఇష్యూ: ", + + "iiif.page.description": "వివరణ: ", + + "loading.bitstream": "బిట్స్ట్రీమ్ లోడ్ అవుతోంది...", + + "loading.bitstreams": "బిట్స్ట్రీమ్లు లోడ్ అవుతున్నాయి...", + + "loading.browse-by": "అంశాలు లోడ్ అవుతున్నాయి...", + + "loading.browse-by-page": "పేజీ లోడ్ అవుతోంది...", + + "loading.collection": "సేకరణ లోడ్ అవుతోంది...", + + "loading.collections": "సేకరణలు లోడ్ అవుతున్నాయి...", + + "loading.content-source": "కంటెంట్ సోర్స్ లోడ్ అవుతోంది...", + + "loading.community": "కమ్యూనిటీ లోడ్ అవుతోంది...", + + "loading.default": "లోడ్ అవుతోంది...", + + "loading.item": "అంశం లోడ్ అవుతోంది...", + + "loading.items": "అంశాలు లోడ్ అవుతున్నాయి...", + + "loading.mydspace-results": "అంశాలు లోడ్ అవుతున్నాయి...", + + "loading.objects": "లోడ్ అవుతోంది...", + + "loading.recent-submissions": "ఇటీవలి సమర్పణలు లోడ్ అవుతున్నాయి...", + + "loading.search-results": "శోధన ఫలితాలు లోడ్ అవుతున్నాయి...", + + "loading.sub-collections": "ఉప సేకరణలు లోడ్ అవుతున్నాయి...", + + "loading.sub-communities": "ఉప కమ్యూనిటీలు లోడ్ అవుతున్నాయి...", + + "loading.top-level-communities": "టాప్-లెవల్ కమ్యూనిటీలు లోడ్ అవుతున్నాయి...", + + "login.form.email": "ఇమెయిల్ చిరునామా", + + "login.form.forgot-password": "మీ పాస్వర్డ్ మర్చిపోయారా?", + + "login.form.header": "దయచేసి DSpace లో లాగిన్ అవ్వండి", + + "login.form.new-user": "కొత్త వినియోగదారు? నమోదు చేసుకోవడానికి ఇక్కడ క్లిక్ చేయండి.", + + "login.form.oidc": "OIDCతో లాగిన్ అవ్వండి", + + "login.form.orcid": "ORCIDతో లాగిన్ అవ్వండి", + + "login.form.password": "పాస్వర్డ్", + + "login.form.saml": "SAMLతో లాగిన్ అవ్వండి", + + "login.form.shibboleth": "Shibbolethతో లాగిన్ అవ్వండి", + + "login.form.submit": "లాగిన్ అవ్వండి", + + "login.title": "లాగిన్", + + "login.breadcrumbs": "లాగిన్", + + "logout.form.header": "DSpace నుండి లాగ్ అవుట్ అవ్వండి", + + "logout.form.submit": "లాగ్ అవుట్ అవ్వండి", + + "logout.title": "లాగ్ అవుట్", + + "menu.header.nav.description": "అడ్మిన్ నావిగేషన్ బార్", + + "menu.header.admin": "నిర్వహణ", + + "menu.header.image.logo": "రిపోజిటరీ లోగో", + + "menu.header.admin.description": "నిర్వహణ మెనూ", + + "menu.section.access_control": "యాక్సెస్ కంట్రోల్", + + "menu.section.access_control_authorizations": "అధికారాలు", + + "menu.section.access_control_bulk": "బల్క్ యాక్సెస్ మేనేజ్మెంట్", + + "menu.section.access_control_groups": "గ్రూపులు", + + "menu.section.access_control_people": "వ్యక్తులు", + + "menu.section.reports": "రిపోర్టులు", + + "menu.section.reports.collections": "ఫిల్టర్ చేసిన సేకరణలు", + + "menu.section.reports.queries": "మెటాడేటా ప్రశ్న", + + "menu.section.admin_search": "అడ్మిన్ శోధన", + + "menu.section.browse_community": "ఈ కమ్యూనిటీ", + + "menu.section.browse_community_by_author": "రచయిత ద్వారా", + + "menu.section.browse_community_by_issue_date": "ఇష్యూ తేదీ ద్వారా", + + "menu.section.browse_community_by_title": "శీర్షిక ద్వారా", + + "menu.section.browse_global": "DSpace యొక్క అన్ని", + + "menu.section.browse_global_by_author": "రచయిత ద్వారా", + + "menu.section.browse_global_by_dateissued": "ఇష్యూ తేదీ ద్వారా", + + "menu.section.browse_global_by_subject": "విషయం ద్వారా", + + "menu.section.browse_global_by_srsc": "విషయం వర్గం ద్వారా", + + "menu.section.browse_global_by_nsi": "నార్వేజియన్ సైన్స్ ఇండెక్స్ ద్వారా", + + "menu.section.browse_global_by_title": "శీర్షిక ద్వారా", + + "menu.section.browse_global_communities_and_collections": "కమ్యూనిటీలు & సేకరణలు", + + "menu.section.browse_global_geospatial_map": "జియోలొకేషన్ ద్వారా (మ్యాప్)", + + "menu.section.control_panel": "కంట్రోల్ ప్యానెల్", + + "menu.section.curation_task": "క్యూరేషన్ టాస్క్", + + "menu.section.edit": "సవరించండి", + + "menu.section.edit_collection": "సేకరణ", + + "menu.section.edit_community": "కమ్యూనిటీ", + + "menu.section.edit_item": "అంశం", + + "menu.section.export": "ఎగుమతి", + + "menu.section.export_collection": "సేకరణ", + + "menu.section.export_community": "కమ్యూనిటీ", + + "menu.section.export_item": "అంశం", + + "menu.section.export_metadata": "మెటాడేటా", + + "menu.section.export_batch": "బ్యాచ్ ఎగుమతి (ZIP)", + + "menu.section.icon.access_control": "యాక్సెస్ కంట్రోల్ మెను విభాగం", + + "menu.section.icon.reports": "నివేదికల మెను విభాగం", + + "menu.section.icon.admin_search": "అడ్మిన్ శోధన మెను విభాగం", + + "menu.section.icon.control_panel": "కంట్రోల్ ప్యానెల్ మెను విభాగం", + + "menu.section.icon.curation_tasks": "క్యూరేషన్ టాస్క్ మెను విభాగం", + + "menu.section.icon.edit": "మెను విభాగాన్ని సవరించండి", + + "menu.section.icon.export": "ఎగుమతి మెను విభాగం", + + "menu.section.icon.find": "మెను విభాగాన్ని కనుగొనండి", + + "menu.section.icon.health": "ఆరోగ్య తనిఖీ మెను విభాగం", + + "menu.section.icon.import": "దిగుమతి మెను విభాగం", + + "menu.section.icon.new": "కొత్త మెను విభాగం", + + "menu.section.icon.pin": "సైడ్బార్‌ను పిన్ చేయండి", + + "menu.section.icon.unpin": "సైడ్బార్‌ను అన్‌పిన్ చేయండి", + + "menu.section.icon.notifications": "నోటిఫికేషన్ల మెను విభాగం", + + "menu.section.import": "దిగుమతి", + + "menu.section.import_batch": "బ్యాచ్ దిగుమతి (ZIP)", + + "menu.section.import_metadata": "మెటాడేటా", + + "menu.section.new": "కొత్తది", + + "menu.section.new_collection": "సేకరణ", + + "menu.section.new_community": "సంఘం", + + "menu.section.new_item": "అంశం", + + "menu.section.new_item_version": "అంశం వెర్షన్", + + "menu.section.new_process": "ప్రక్రియ", + + "menu.section.notifications": "నోటిఫికేషన్లు", + + "menu.section.quality-assurance": "నాణ్యత హామీ", + + "menu.section.notifications_publication-claim": "ప్రచురణ దావా", + + "menu.section.pin": "సైడ్బార్‌ను పిన్ చేయండి", + + "menu.section.unpin": "సైడ్బార్‌ను అన్‌పిన్ చేయండి", + + "menu.section.processes": "ప్రక్రియలు", + + "menu.section.health": "ఆరోగ్యం", + + "menu.section.registries": "రిజిస్ట్రీలు", + + "menu.section.registries_format": "ఫార్మాట్", + + "menu.section.registries_metadata": "మెటాడేటా", + + "menu.section.statistics": "గణాంకాలు", + + "menu.section.statistics_task": "గణాంకాల టాస్క్", + + "menu.section.toggle.access_control": "యాక్సెస్ కంట్రోల్ విభాగాన్ని టోగుల్ చేయండి", + + "menu.section.toggle.reports": "నివేదికల విభాగాన్ని టోగుల్ చేయండి", + + "menu.section.toggle.control_panel": "కంట్రోల్ ప్యానెల్ విభాగాన్ని టోగుల్ చేయండి", + + "menu.section.toggle.curation_task": "క్యూరేషన్ టాస్క్ విభాగాన్ని టోగుల్ చేయండి", + + "menu.section.toggle.edit": "సవరణ విభాగాన్ని టోగుల్ చేయండి", + + "menu.section.toggle.export": "ఎగుమతి విభాగాన్ని టోగుల్ చేయండి", + + "menu.section.toggle.find": "కనుగొనే విభాగాన్ని టోగుల్ చేయండి", + + "menu.section.toggle.import": "దిగుమతి విభాగాన్ని టోగుల్ చేయండి", + + "menu.section.toggle.new": "కొత్త విభాగాన్ని టోగుల్ చేయండి", + + "menu.section.toggle.registries": "రిజిస్ట్రీల విభాగాన్ని టోగుల్ చేయండి", + + "menu.section.toggle.statistics_task": "గణాంకాల టాస్క్ విభాగాన్ని టోగుల్ చేయండి", + + "menu.section.workflow": "వర్క్‌ఫ్లోను నిర్వహించండి", + + "metadata-export-search.tooltip": "శోధన ఫలితాలను CSVగా ఎగుమతి చేయండి", + + "metadata-export-search.submit.success": "ఎగుమతి విజయవంతంగా ప్రారంభించబడింది", + + "metadata-export-search.submit.error": "ఎగుమతిని ప్రారంభించడంలో విఫలమైంది", + + "mydspace.breadcrumbs": "నా DSpace", + + "mydspace.description": "", + + "mydspace.messages.controller-help": "అంశం సమర్పకుడికి సందేశాన్ని పంపడానికి ఈ ఎంపికను ఎంచుకోండి.", + + "mydspace.messages.description-placeholder": "మీ సందేశాన్ని ఇక్కడ నమోదు చేయండి...", + + "mydspace.messages.hide-msg": "సందేశాన్ని దాచండి", + + "mydspace.messages.mark-as-read": "చదివినట్లు గుర్తించండి", + + "mydspace.messages.mark-as-unread": "చదవనిదిగా గుర్తించండి", + + "mydspace.messages.no-content": "విషయం లేదు.", + + "mydspace.messages.no-messages": "ఇంకా సందేశాలు లేవు.", + + "mydspace.messages.send-btn": "పంపండి", + + "mydspace.messages.show-msg": "సందేశాన్ని చూపించు", + + "mydspace.messages.subject-placeholder": "విషయం...", + + "mydspace.messages.submitter-help": "నియంత్రకుడికి సందేశాన్ని పంపడానికి ఈ ఎంపికను ఎంచుకోండి.", + + "mydspace.messages.title": "సందేశాలు", + + "mydspace.messages.to": "కు", + + "mydspace.new-submission": "కొత్త సమర్పణ", + + "mydspace.new-submission-external": "బాహ్య మూలం నుండి మెటాడేటాను దిగుమతి చేయండి", + + "mydspace.new-submission-external-short": "మెటాడేటాను దిగుమతి చేయండి", + + "mydspace.results.head": "మీ సమర్పణలు", + + "mydspace.results.no-abstract": "సారాంశం లేదు", + + "mydspace.results.no-authors": "రచయితలు లేరు", + + "mydspace.results.no-collections": "సేకరణలు లేవు", + + "mydspace.results.no-date": "తేదీ లేదు", + + "mydspace.results.no-files": "ఫైళ్ళు లేవు", + + "mydspace.results.no-results": "చూపించడానికి అంశాలు లేవు", + + "mydspace.results.no-title": "శీర్షిక లేదు", + + "mydspace.results.no-uri": "URI లేదు", + + "mydspace.search-form.placeholder": "నా DSpaceలో శోధించండి...", + + "mydspace.show.workflow": "వర్క్‌ఫ్లో టాస్క్‌లు", + + "mydspace.show.workspace": "మీ సమర్పణలు", + + "mydspace.show.supervisedWorkspace": "పర్యవేక్షిత అంశాలు", + + "mydspace.status": "నా DSpace స్థితి:", + + "mydspace.status.mydspaceArchived": "ఆర్కైవ్ చేయబడింది", + + "mydspace.status.mydspaceValidation": "ధృవీకరణ", + + "mydspace.status.mydspaceWaitingController": "సమీక్షకుడి కోసం వేచి ఉంది", + + "mydspace.status.mydspaceWorkflow": "వర్క్‌ఫ్లో", + + "mydspace.status.mydspaceWorkspace": "వర్క్‌స్పేస్", + + "mydspace.title": "నా DSpace", + + "mydspace.upload.upload-failed": "కొత్త వర్క్‌స్పేస్ అంశాన్ని సృష్టించడంలో లోపం. మళ్లీ ప్రయత్నించే ముందు అప్‌లోడ్ చేసిన కంటెంట్‌ను ధృవీకరించండి.", + + "mydspace.upload.upload-failed-manyentries": "ప్రాసెస్ చేయలేని ఫైల్. ఫైల్ కోసం ఒక్కదాన్ని మాత్రమే అనుమతించినప్పటికీ చాలా ఎంట్రీలు కనుగొనబడ్డాయి.", + + "mydspace.upload.upload-failed-moreonefile": "ప్రాసెస్ చేయలేని అభ్యర్థన. ఒక ఫైల్ మాత్రమే అనుమతించబడుతుంది.", + + "mydspace.upload.upload-multiple-successful": "{{qty}} కొత్త వర్క్‌స్పేస్ అంశాలు సృష్టించబడ్డాయి.", + + "mydspace.view-btn": "చూడండి", + + "nav.expandable-navbar-section-suffix": "(సబ్‌మెను)", + + "notification.suggestion": "మేము మీ ప్రొఫైల్‌కు సంబంధించినట్లు కనిపించే {{source}}లో {{count}} ప్రచురణలు కనుగొన్నాము.
", + + "notification.suggestion.review": "సూచనలను సమీక్షించండి", + + "notification.suggestion.please": "దయచేసి", + + "nav.browse.header": "DSpace యొక్క అన్ని", + + "nav.community-browse.header": "సంఘం ద్వారా", + + "nav.context-help-toggle": "కాంటెక్స్ట్ సహాయాన్ని టోగుల్ చేయండి", + + "nav.language": "భాష మార్పు", + + "nav.login": "లాగిన్", + + "nav.user-profile-menu-and-logout": "వినియోగదారు ప్రొఫైల్ మెను మరియు లాగ్ అవుట్", + + "nav.logout": "లాగ్ అవుట్", + + "nav.main.description": "ప్రధాన నావిగేషన్ బార్", + + "nav.mydspace": "నా DSpace", + + "nav.profile": "ప్రొఫైల్", + + "nav.search": "శోధించండి", + + "nav.search.button": "శోధనను సమర్పించండి", + + "nav.statistics.header": "గణాంకాలు", + + "nav.stop-impersonating": "EPersonను అనుకరించడం ఆపండి", + + "nav.subscriptions": "సభ్యత్వాలు", + + "nav.toggle": "నావిగేషన్‌ను టోగుల్ చేయండి", + + "nav.user.description": "వినియోగదారు ప్రొఫైల్ బార్", + + "listelement.badge.dso-type": "అంశం రకం:", + + "none.listelement.badge": "అంశం", + + "publication-claim.title": "ప్రచురణ దావా", + + "publication-claim.source.description": "క్రింద మీరు అన్ని మూలాలను చూడవచ్చు.", + + "quality-assurance.title": "నాణ్యత హామీ", + + "quality-assurance.topics.description": "క్రింద మీరు {{source}}కు సభ్యత్వాల నుండి అందుకున్న అన్ని విషయాలను చూడవచ్చు.", + + "quality-assurance.source.description": "క్రింద మీరు అన్ని నోటిఫికేషన్ మూలాలను చూడవచ్చు.", + + "quality-assurance.topics": "ప్రస్తుత విషయాలు", + + "quality-assurance.source": "ప్రస్తుత మూలాలు", + + "quality-assurance.table.topic": "విషయం", + + "quality-assurance.table.source": "మూలం", + + "quality-assurance.table.last-event": "చివరి ఈవెంట్", + + "quality-assurance.table.actions": "చర్యలు", + + "quality-assurance.source-list.button.detail": "{{param}} కోసం విషయాలను చూపించండి", + + "quality-assurance.topics-list.button.detail": "{{param}} కోసం సూచనలను చూపించండి", + + "quality-assurance.noTopics": "విషయాలు కనుగొనబడలేదు.", + + "quality-assurance.noSource": "మూలాలు కనుగొనబడలేదు.", + + "notifications.events.title": "నాణ్యత హామీ సూచనలు", + + "quality-assurance.topic.error.service.retrieve": "నాణ్యత హామీ విషయాలను లోడ్ చేస్తున్నప్పుడు లోపం సంభవించింది", + + "quality-assurance.source.error.service.retrieve": "నాణ్యత హామీ మూలాన్ని లోడ్ చేస్తున్నప్పుడు లోపం సంభవించింది", + + "quality-assurance.loading": "లోడ్ అవుతోంది ...", + + "quality-assurance.events.topic": "విషయం:", + + "quality-assurance.noEvents": "సూచనలు కనుగొనబడలేదు.", + + "quality-assurance.event.table.trust": "నమ్మకం", + + "quality-assurance.event.table.publication": "ప్రచురణ", + + "quality-assurance.event.table.details": "వివరాలు", + + "quality-assurance.event.table.project-details": "ప్రాజెక్ట్ వివరాలు", + + "quality-assurance.event.table.reasons": "కారణాలు", + + "quality-assurance.event.table.actions": "చర్యలు", + + "quality-assurance.event.action.accept": "సూచనను అంగీకరించండి", + + "quality-assurance.event.action.ignore": "సూచనను విస్మరించండి", + + "quality-assurance.event.action.undo": "తొలగించు", + + "quality-assurance.event.action.reject": "సూచనను తిరస్కరించండి", + + "quality-assurance.event.action.import": "ప్రాజెక్ట్‌ను దిగుమతి చేసి సూచనను అంగీకరించండి", + + "quality-assurance.event.table.pidtype": "PID రకం:", + + "quality-assurance.event.table.pidvalue": "PID విలువ:", + + "quality-assurance.event.table.subjectValue": "విషయ విలువ:", + + "quality-assurance.event.table.abstract": "సారాంశం:", + + "quality-assurance.event.table.suggestedProject": "OpenAIRE సూచించిన ప్రాజెక్ట్ డేటా", + + "quality-assurance.event.table.project": "ప్రాజెక్ట్ శీర్షిక:", + + "quality-assurance.event.table.acronym": "ఎక్రోనిం:", + + "quality-assurance.event.table.code": "కోడ్:", + + "quality-assurance.event.table.funder": "నిధిదాత:", + + "quality-assurance.event.table.fundingProgram": "నిధుల ప్రోగ్రామ్:", + + "quality-assurance.event.table.jurisdiction": "అధికార పరిధి:", + + "quality-assurance.events.back": "విషయాలకు తిరిగి వెళ్లండి", + + "quality-assurance.events.back-to-sources": "మూలాలకు తిరిగి వెళ్లండి", + + "quality-assurance.event.table.less": "తక్కువ చూపించు", + + "quality-assurance.event.table.more": "మరిన్ని చూపించు", + + "quality-assurance.event.project.found": "స్థానిక రికార్డ్‌కు బౌండ్:", + + "quality-assurance.event.project.notFound": "స్థానిక రికార్డ్ కనుగొనబడలేదు", + + "quality-assurance.event.sure": "మీరు ఖచ్చితంగా ఉన్నారా?", + + "quality-assurance.event.ignore.description": "ఈ ఆపరేషన్‌ను రద్దు చేయలేము. ఈ సూచనను విస్మరించాల్సిందేనా?", + + "quality-assurance.event.undo.description": "ఈ ఆపరేషన్‌ను రద్దు చేయలేము!", + + "quality-assurance.event.reject.description": "ఈ ఆపరేషన్‌ను రద్దు చేయలేము. ఈ సూచనను తిరస్కరించాల్సిందేనా?", + + "quality-assurance.event.accept.description": "DSpace ప్రాజెక్ట్ ఎంచుకోబడలేదు. సూచన డేటా ఆధారంగా కొత్త ప్రాజెక్ట్ సృష్టించబడుతుంది.", + + "quality-assurance.event.action.cancel": "రద్దు చేయండి", + + "quality-assurance.event.action.saved": "మీ నిర్ణయం విజయవంతంగా సేవ్ చేయబడింది.", + + "quality-assurance.event.action.error": "లోపం సంభవించింది. మీ నిర్ణయం సేవ్ చేయబడలేదు.", + + "quality-assurance.event.modal.project.title": "బౌండ్ చేయడానికి ప్రాజెక్ట్‌ను ఎంచుకోండి", + + "quality-assurance.event.modal.project.publication": "ప్రచురణ:", + + "quality-assurance.event.modal.project.bountToLocal": "స్థానిక రికార్డ్‌కు బౌండ్:", + + "quality-assurance.event.modal.project.select": "ప్రాజెక్ట్ శోధన", + + "quality-assurance.event.modal.project.search": "శోధించండి", + + "quality-assurance.event.modal.project.clear": "క్లియర్ చేయండి", + + "quality-assurance.event.modal.project.cancel": "రద్దు చేయండి", + + "quality-assurance.event.modal.project.bound": "బౌండ్ ప్రాజెక్ట్", + + "quality-assurance.event.modal.project.remove": "తీసివేయండి", + + "quality-assurance.event.modal.project.placeholder": "ప్రాజెక్ట్ పేరును నమోదు చేయండి", + + "quality-assurance.event.modal.project.notFound": "ప్రాజెక్ట్ కనుగొనబడలేదు.", + + "quality-assurance.event.project.bounded": "ప్రాజెక్ట్ విజయవంతంగా లింక్ చేయబడింది.", + + "quality-assurance.event.project.removed": "ప్రాజెక్ట్ విజయవంతంగా అన్‌లింక్ చేయబడింది.", + + "quality-assurance.event.project.error": "లోపం సంభవించింది. ఏ ఆపరేషన్ నిర్వహించబడలేదు.", + + "quality-assurance.event.reason": "కారణం", + + "orgunit.listelement.badge": "సంస్థాగత యూనిట్", + + "orgunit.listelement.no-title": "శీర్షిక లేనిది", + + "orgunit.page.city": "నగరం", + + "orgunit.page.country": "దేశం", + + "orgunit.page.dateestablished": "స్థాపన తేదీ", + + "orgunit.page.description": "వివరణ", + + "orgunit.page.edit": "ఈ అంశాన్ని సవరించండి", + + "orgunit.page.id": "ID", + + "orgunit.page.options": "ఎంపికలు", + + "orgunit.page.titleprefix": "సంస్థాగత యూనిట్: ", + + "orgunit.page.ror": "ROR ఐడెంటిఫైయర్", + + "orgunit.search.results.head": "సంస్థాగత యూనిట్ శోధన ఫలితాలు", + + "pagination.options.description": "పేజినేషన్ ఎంపికలు", + + "pagination.results-per-page": "పేజీకి ఫలితాలు", + + "pagination.showing.detail": "{{ range }} లో {{ total }}", + + "pagination.showing.label": "ఇప్పుడు చూపిస్తోంది ", + + "pagination.sort-direction": "క్రమం ఎంపికలు", + + "person.listelement.badge": "వ్యక్తి", + + "person.listelement.no-title": "పేరు కనుగొనబడలేదు", + + "person.page.birthdate": "పుట్టిన తేదీ", + + "person.page.edit": "ఈ అంశాన్ని సవరించండి", + + "person.page.email": "ఇమెయిల్ చిరునామా", + + "person.page.firstname": "మొదటి పేరు", + + "person.page.jobtitle": "ఉద్యోగ శీర్షిక", + + "person.page.lastname": "చివరి పేరు", + + "person.page.name": "పేరు", + + "person.page.link.full": "అన్ని మెటాడేటాను చూపించు", + + "person.page.options": "ఎంపికలు", + + "person.page.orcid": "ORCID", + + "person.page.staffid": "స్టాఫ్ ID", + + "person.page.titleprefix": "వ్యక్తి: ", + + "person.search.results.head": "వ్యక్తి శోధన ఫలితాలు", + + "person-relationships.search.results.head": "వ్యక్తి శోధన ఫలితాలు", + + "person.search.title": "వ్యక్తి శోధన", + + "process.new.select-parameters": "పారామితులు", + + "process.new.select-parameter": "పారామీటర్‌ను ఎంచుకోండి", + + "process.new.add-parameter": "పారామీటర్‌ను జోడించండి...", + + "process.new.delete-parameter": "పారామీటర్‌ను తొలగించండి", + + "process.new.parameter.label": "పారామీటర్ విలువ", + + "process.new.cancel": "రద్దు చేయండి", + + "process.new.submit": "సేవ్ చేయండి", + + "process.new.select-script": "స్క్రిప్ట్", + + "process.new.select-script.placeholder": "స్క్రిప్ట్‌ను ఎంచుకోండి...", + + "process.new.select-script.required": "స్క్రిప్ట్ అవసరం", + + "process.new.parameter.file.upload-button": "ఫైల్‌ను ఎంచుకోండి...", + + "process.new.parameter.file.required": "దయచేసి ఫైల్‌ను ఎంచుకోండి", + + "process.new.parameter.integer.required": "పారామీటర్ విలువ అవసరం", + + "process.new.parameter.string.required": "పారామీటర్ విలువ అవసరం", + + "process.new.parameter.type.value": "విలువ", + + "process.new.parameter.type.file": "ఫైల్", + + "process.new.parameter.required.missing": "కింది పారామితులు అవసరమైనవి కానీ ఇంకా లేవు:", + + "process.new.notification.success.title": "విజయం", + + "process.new.notification.success.content": "ప్రక్రియ విజయవంతంగా సృష్టించబడింది", + + "process.new.notification.error.title": "లోపం", + + "process.new.notification.error.content": "ఈ ప్రక్రియను సృష్టించడంలో లోపం సంభవించింది", + + "process.new.notification.error.max-upload.content": "ఫైల్ గరిష్ట అప్‌లోడ్ పరిమాణాన్ని మించిపోయింది", + + "process.new.header": "కొత్త ప్రక్రియను సృష్టించండి", + + "process.new.title": "కొత్త ప్రక్రియను సృష్టించండి", + + "process.new.breadcrumbs": "కొత్త ప్రక్రియను సృష్టించండి", + + "process.detail.arguments": "వాదనలు", + + "process.detail.arguments.empty": "ఈ ప్రక్రియలో ఏ వాదనలు లేవు", + + "process.detail.back": "తిరిగి వెళ్లండి", + + "process.detail.output": "ప్రక్రియ అవుట్పుట్", + + "process.detail.logs.button": "ప్రక్రియ అవుట్పుట్‌ను పొందండి", + + "process.detail.logs.loading": "పొందుతోంది", + + "process.detail.logs.none": "ఈ ప్రక్రియకు అవుట్పుట్ లేదు", + + "process.detail.output-files": "అవుట్పుట్ ఫైళ్ళు", + + "process.detail.output-files.empty": "ఈ ప్రక్రియలో ఏ అవుట్పుట్ ఫైళ్ళు లేవు", + + "process.detail.script": "స్క్రిప్ట్", + + "process.detail.title": "ప్రక్రియ: {{ id }} - {{ name }}", + + "process.detail.start-time": "ప్రారంభ సమయం", + + "process.detail.end-time": "ముగింపు సమయం", + + "process.detail.status": "స్థితి", + + "process.detail.create": "ఇలాంటి ప్రక్రియను సృష్టించండి", + + "process.detail.actions": "చర్యలు", + + "process.detail.delete.button": "ప్రక్రియను తొలగించండి", + + "process.detail.delete.header": "ప్రక్రియను తొలగించండి", + + "process.detail.delete.body": "మీరు ప్రస్తుత ప్రక్రియను తొలగించాలనుకుంటున్నారా?", + + "process.detail.delete.cancel": "రద్దు చేయండి", + + "process.detail.delete.confirm": "ప్రక్రియను తొలగించండి", + + "process.detail.delete.success": "ప్రక్రియ విజయవంతంగా తొలగించబడింది.", + + "process.detail.delete.error": "ప్రక్రియను తొలగించడంలో ఏదో తప్పు జరిగింది", + + "process.detail.refreshing": "స్వయంచాలకంగా రిఫ్రెష్ అవుతోంది…", + + "process.overview.table.completed.info": "ముగింపు సమయం (UTC)", + + "process.overview.table.completed.title": "విజయవంతమైన ప్రక్రియలు", + + "process.overview.table.empty": "సరిపోలిన ప్రక్రియలు కనుగొనబడలేదు.", + + "process.overview.table.failed.info": "ముగింపు సమయం (UTC)", + + "process.overview.table.failed.title": "విఫలమైన ప్రక్రియలు", + + "process.overview.table.finish": "ముగింపు సమయం (UTC)", + + "process.overview.table.id": "ప్రక్రియ ID", + + "process.overview.table.name": "పేరు", + + "process.overview.table.running.info": "ప్రారంభ సమయం (UTC)", + + "process.overview.table.running.title": "నడుస్తున్న ప్రక్రియలు", + + "process.overview.table.scheduled.info": "సృష్టికరణ సమయం (UTC)", + + "process.overview.table.scheduled.title": "షెడ్యూల్ చేయబడిన ప్రక్రియలు", + + "process.overview.table.start": "ప్రారంభ సమయం (UTC)", + + "process.overview.table.status": "స్థితి", + + "process.overview.table.user": "వినియోగదారు", + + "process.overview.title": "ప్రక్రియల అవలోకనం", + + "process.overview.breadcrumbs": "ప్రక్రియల అవలోకనం", + + "process.overview.new": "కొత్తది", + + "process.overview.table.actions": "చర్యలు", + + "process.overview.delete": "{{count}} ప్రక్రియలను తొలగించండి", + + "process.overview.delete-process": "ప్రక్రియను తొలగించండి", + + "process.overview.delete.clear": "తొలగించే ఎంపికను క్లియర్ చేయండి", + + "process.overview.delete.processing": "{{count}} ప్రక్రియ(లు) తొలగించబడుతున్నాయి. తొలగింపు పూర్తిగా పూర్తయ్యే వరకు దయచేసి వేచి ఉండండి. ఇది కొంత సమయం పట్టవచ్చు.", + + "process.overview.delete.body": "మీరు నిజంగా {{count}} ప్రక్రియ(లను) తొలగించాలనుకుంటున్నారా?", + "process.overview.delete.header": "ప్రక్రియలను తొలగించు", + "process.overview.unknown.user": "తెలియదు", + "process.bulk.delete.error.head": "ప్రక్రియను తొలగించడంలో లోపం", + "process.bulk.delete.error.body": "ID {{processId}} తో ఉన్న ప్రక్రియను తొలగించలేకపోయాము. మిగతా ప్రక్రియలు తొలగించబడతాయి.", + "process.bulk.delete.success": "{{count}} ప్రక్రియ(లు) విజయవంతంగా తొలగించబడ్డాయి", + "profile.breadcrumbs": "ప్రొఫైల్ నవీకరించు", + "profile.card.accessibility.content": "ఆక్సెసిబిలిటీ సెట్టింగ్లను ఆక్సెసిబిలిటీ సెట్టింగ్స్ పేజీలో కాన్ఫిగర్ చేయవచ్చు.", + "profile.card.accessibility.header": "ఆక్సెసిబిలిటీ", + "profile.card.accessibility.link": "ఆక్సెసిబిలిటీ సెట్టింగ్స్ పేజీకి వెళ్లండి", + "profile.card.identify": "గుర్తించు", + "profile.card.security": "భద్రత", + "profile.form.submit": "సేవ్ చేయి", + "profile.groups.head": "మీరు చెందిన అథారైజేషన్ గ్రూపులు", + "profile.special.groups.head": "మీరు చెందిన ప్రత్యేక అథారైజేషన్ గ్రూపులు", + "profile.metadata.form.error.firstname.required": "మొదటి పేరు అవసరం", + "profile.metadata.form.error.lastname.required": "చివరి పేరు అవసరం", + "profile.metadata.form.label.email": "ఇమెయిల్ చిరునామా", + "profile.metadata.form.label.firstname": "మొదటి పేరు", + "profile.metadata.form.label.language": "భాష", + "profile.metadata.form.label.lastname": "చివరి పేరు", + "profile.metadata.form.label.phone": "సంప్రదించే టెలిఫోన్", + "profile.metadata.form.notifications.success.content": "మీ ప్రొఫైల్లోని మార్పులు సేవ్ చేయబడ్డాయి.", + "profile.metadata.form.notifications.success.title": "ప్రొఫైల్ సేవ్ చేయబడింది", + "profile.notifications.warning.no-changes.content": "ప్రొఫైల్లో ఎటువంటి మార్పులు చేయలేదు.", + "profile.notifications.warning.no-changes.title": "మార్పులు లేవు", + "profile.security.form.error.matching-passwords": "పాస్వర్డ్లు సరిపోలడం లేదు", + "profile.security.form.info": "ఐచ్ఛికంగా, మీరు క్రింద ఇచ్చిన బాక్స్లో కొత్త పాస్వర్డ్ ను నమోదు చేసి, దానిని మరోసారి టైప్ చేసి నిర్ధారించండి.", + "profile.security.form.label.password": "పాస్వర్డ్", + "profile.security.form.label.passwordrepeat": "నిర్ధారించడానికి మళ్లీ టైప్ చేయండి", + "profile.security.form.label.current-password": "ప్రస్తుత పాస్వర్డ్", + "profile.security.form.notifications.success.content": "మీ పాస్వర్డ్ మార్పులు సేవ్ చేయబడ్డాయి.", + "profile.security.form.notifications.success.title": "పాస్వర్డ్ సేవ్ చేయబడింది", + "profile.security.form.notifications.error.title": "పాస్వర్డ్ మార్చడంలో లోపం", + "profile.security.form.notifications.error.change-failed": "పాస్వర్డ్ మార్చడంలో లోపం సంభవించింది. ప్రస్తుత పాస్వర్డ్ సరిగ్గా ఉందో లేదో తనిఖీ చేయండి.", + "profile.security.form.notifications.error.not-same": "ఇచ్చిన పాస్వర్డ్లు సమానంగా లేవు", + "profile.security.form.notifications.error.general": "దయచేసి భద్రతా ఫారమ్ యొక్క అవసరమైన ఫీల్డ్లను పూరించండి.", + "profile.title": "ప్రొఫైల్ నవీకరించు", + "profile.card.researcher": "రిసెర్చర్ ప్రొఫైల్", + "project.listelement.badge": "రీసెర్చ్ ప్రాజెక్ట్", + "project.page.contributor": "కంట్రిబ్యూటర్లు", + "project.page.description": "వివరణ", + "project.page.edit": "ఈ అంశాన్ని సవరించండి", + "project.page.expectedcompletion": "అంచనా పూర్తి", + "project.page.funder": "ఫండర్లు", + "project.page.id": "ID", + "project.page.keyword": "కీలక పదాలు", + "project.page.options": "ఎంపికలు", + "project.page.status": "స్థితి", + "project.page.titleprefix": "రీసెర్చ్ ప్రాజెక్ట్: ", + "project.search.results.head": "ప్రాజెక్ట్ శోధన ఫలితాలు", + "project-relationships.search.results.head": "ప్రాజెక్ట్ శోధన ఫలితాలు", + "publication.listelement.badge": "ప్రచురణ", + "publication.page.description": "వివరణ", + "publication.page.edit": "ఈ అంశాన్ని సవరించండి", + "publication.page.journal-issn": "జర్నల్ ISSN", + "publication.page.journal-title": "జర్నల్ శీర్షిక", + "publication.page.publisher": "ప్రచురణకర్త", + "publication.page.options": "ఎంపికలు", + "publication.page.titleprefix": "ప్రచురణ: ", + "publication.page.volume-title": "వాల్యూమ్ శీర్షిక", + "publication.search.results.head": "ప్రచురణ శోధన ఫలితాలు", + "publication-relationships.search.results.head": "ప్రచురణ శోధన ఫలితాలు", + "publication.search.title": "ప్రచురణ శోధన", + "media-viewer.next": "తర్వాత", + "media-viewer.previous": "మునుపటి", + "media-viewer.playlist": "ప్లేలిస్ట్", + "suggestion.loading": "లోడ్ అవుతోంది ...", + "suggestion.title": "ప్రచురణ క్లెయిమ్", + "suggestion.title.breadcrumbs": "ప్రచురణ క్లెయిమ్", + "suggestion.targets.description": "క్రింద మీరు అన్ని సూచనలను చూడవచ్చు", + "suggestion.targets": "ప్రస్తుత సూచనలు", + "suggestion.table.name": "రిసెర్చర్ పేరు", + "suggestion.table.actions": "చర్యలు", + "suggestion.button.review": "{{ total }} సూచన(లను) సమీక్షించండి", + "suggestion.button.review.title": "కోసం {{ total }} సూచన(లను) సమీక్షించండి", + "suggestion.noTargets": "లక్ష్యం కనుగొనబడలేదు.", + "suggestion.target.error.service.retrieve": "సూచన లక్ష్యాలను లోడ్ చేయడంలో లోపం సంభవించింది", + "suggestion.evidence.type": "రకం", + "suggestion.evidence.score": "స్కోరు", + "suggestion.evidence.notes": "గమనికలు", + "suggestion.approveAndImport": "ఆమోదించు & దిగుమతి చేయండి", + "suggestion.approveAndImport.success": "సూచన విజయవంతంగా దిగుమతి చేయబడింది. వీక్షించండి.", + "suggestion.approveAndImport.bulk": "ఎంచుకున్నవాటిని ఆమోదించు & దిగుమతి చేయండి", + "suggestion.approveAndImport.bulk.success": "{{ count }} సూచనలు విజయవంతంగా దిగుమతి చేయబడ్డాయి", + "suggestion.approveAndImport.bulk.error": "{{ count }} సూచనలు అనుకోని సర్వర్ లోపాల కారణంగా దిగుమతి చేయబడలేదు", + "suggestion.ignoreSuggestion": "సూచనను విస్మరించండి", + "suggestion.ignoreSuggestion.success": "సూచన విస్మరించబడింది", + "suggestion.ignoreSuggestion.bulk": "ఎంచుకున్న సూచనను విస్మరించండి", + "suggestion.ignoreSuggestion.bulk.success": "{{ count }} సూచనలు విస్మరించబడ్డాయి", + "suggestion.ignoreSuggestion.bulk.error": "{{ count }} సూచనలు అనుకోని సర్వర్ లోపాల కారణంగా విస్మరించబడలేదు", + "suggestion.seeEvidence": "సాక్ష్యం చూడండి", + "suggestion.hideEvidence": "సాక్ష్యాన్ని దాచండి", + "suggestion.suggestionFor": "కోసం సూచనలు", + "suggestion.suggestionFor.breadcrumb": "{{ name }} కోసం సూచనలు", + "suggestion.source.openaire": "OpenAIRE గ్రాఫ్", + "suggestion.source.openalex": "OpenAlex", + "suggestion.from.source": "నుండి", + "suggestion.count.missing": "మీకు ప్రచురణ క్లెయిమ్లు ఇంకా లేవు", + "suggestion.totalScore": "మొత్తం స్కోరు", + "suggestion.type.openaire": "OpenAIRE", + "register-email.title": "కొత్త వినియోగదారు నమోదు", + "register-page.create-profile.header": "ప్రొఫైల్ సృష్టించండి", + "register-page.create-profile.identification.header": "గుర్తించు", + "register-page.create-profile.identification.email": "ఇమెయిల్ చిరునామా", + "register-page.create-profile.identification.first-name": "మొదటి పేరు *", + "register-page.create-profile.identification.first-name.error": "దయచేసి మొదటి పేరును పూరించండి", + "register-page.create-profile.identification.last-name": "చివరి పేరు *", + "register-page.create-profile.identification.last-name.error": "దయచేసి చివరి పేరును పూరించండి", + "register-page.create-profile.identification.contact": "సంప్రదించే టెలిఫోన్", + "register-page.create-profile.identification.language": "భాష", + "register-page.create-profile.security.header": "భద్రత", + "register-page.create-profile.security.info": "దయచేసి క్రింద ఇచ్చిన బాక్స్లో పాస్వర్డ్ ను నమోదు చేసి, దానిని మరోసారి టైప్ చేసి నిర్ధారించండి.", + "register-page.create-profile.security.label.password": "పాస్వర్డ్ *", + "register-page.create-profile.security.label.passwordrepeat": "నిర్ధారించడానికి మళ్లీ టైప్ చేయండి *", + "register-page.create-profile.security.error.empty-password": "దయచేసి క్రింద ఇచ్చిన బాక్స్లో పాస్వర్డ్ ను నమోదు చేయండి.", + "register-page.create-profile.security.error.matching-passwords": "పాస్వర్డ్లు సరిపోలడం లేదు", + "register-page.create-profile.submit": "నమోదును పూర్తి చేయండి", + "register-page.create-profile.submit.error.content": "కొత్త వినియోగదారుని నమోదు చేయడంలో ఏదో తప్పు జరిగింది.", + "register-page.create-profile.submit.error.head": "నమోదు విఫలమైంది", + "register-page.create-profile.submit.success.content": "నమోదు విజయవంతమైంది. మీరు సృష్టించిన వినియోగదారుగా లాగిన్ అయ్యారు.", + "register-page.create-profile.submit.success.head": "నమోదు పూర్తయింది", + "register-page.registration.header": "కొత్త వినియోగదారు నమోదు", + "register-page.registration.info": "ఇమెయిల్ నవీకరణల కోసం కలెక్షన్లకు సభ్యత్వం పొందడానికి మరియు DSpace కు కొత్త అంశాలను సమర్పించడానికి ఖాతాను నమోదు చేయండి.", + "register-page.registration.email": "ఇమెయిల్ చిరునామా *", + "register-page.registration.email.error.required": "దయచేసి ఇమెయిల్ చిరునామాను పూరించండి", + "register-page.registration.email.error.not-email-form": "దయచేసి సరైన ఇమెయిల్ చిరునామాను పూరించండి.", + "register-page.registration.email.error.not-valid-domain": "అనుమతించబడిన డొమైన్లతో ఇమెయిల్ ఉపయోగించండి: {{ domains }}", + "register-page.registration.email.hint": "ఈ చిరునామా ధృవీకరించబడి మీ లాగిన్ పేరుగా ఉపయోగించబడుతుంది.", + "register-page.registration.submit": "నమోదు చేయండి", + "register-page.registration.success.head": "ధృవీకరణ ఇమెయిల్ పంపబడింది", + "register-page.registration.success.content": "{{ email }} కు ప్రత్యేక URL మరియు మరింత సూచనలతో కూడిన ఇమెయిల్ పంపబడింది.", + "register-page.registration.error.head": "ఇమెయిల్ నమోదు చేయడంలో లోపం", + "register-page.registration.error.content": "ఈ ఇమెయిల్ చిరునామాను నమోదు చేయడంలో లోపం సంభవించింది: {{ email }}", + "register-page.registration.error.recaptcha": "recaptcha తో ప్రమాణీకరించడంలో లోపం", + "register-page.registration.google-recaptcha.must-accept-cookies": "మీరు నమోదు చేయడానికి నమోదు మరియు పాస్వర్డ్ రికవరీ (Google reCaptcha) కుకీలను అంగీకరించాలి.", + "register-page.registration.google-recaptcha.open-cookie-settings": "కుకీ సెట్టింగ్లను తెరవండి", + "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha", + "register-page.registration.google-recaptcha.notification.message.error": "reCaptcha ధృవీకరణ సమయంలో లోపం సంభవించింది", + "register-page.registration.google-recaptcha.notification.message.expired": "ధృవీకరణ కాలముగిసింది. దయచేసి మళ్లీ ధృవీకరించండి.", + "register-page.registration.info.maildomain": "డొమైన్ల మెయిల్ చిరునామాల కోసం ఖాతాలు నమోదు చేయవచ్చు", + "relationships.add.error.relationship-type.content": "రెండు అంశాల మధ్య {{ type }} సంబంధం కోసం సరిపోయే మ్యాచ్ కనుగొనబడలేదు", + "relationships.add.error.server.content": "సర్వర్ లోపం తిరిగి ఇచ్చింది", + "relationships.add.error.title": "సంబంధాన్ని జోడించలేకపోయాము", + "relationships.Publication.isAuthorOfPublication.Person": "రచయితలు (వ్యక్తులు)", + "relationships.Publication.isProjectOfPublication.Project": "రీసెర్చ్ ప్రాజెక్ట్లు", + "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "సంస్థాగత యూనిట్లు", + "relationships.Publication.isAuthorOfPublication.OrgUnit": "రచయితలు (సంస్థాగత యూనిట్లు)", + "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "జర్నల్ ఇష్యూ", + "relationships.Publication.isContributorOfPublication.Person": "కంట్రిబ్యూటర్", + "relationships.Publication.isContributorOfPublication.OrgUnit": "కంట్రిబ్యూటర్ (సంస్థాగత యూనిట్లు)", + "relationships.Person.isPublicationOfAuthor.Publication": "ప్రచురణలు", + "relationships.Person.isProjectOfPerson.Project": "రీసెర్చ్ ప్రాజెక్ట్లు", + "relationships.Person.isOrgUnitOfPerson.OrgUnit": "సంస్థాగత యూనిట్లు", + "relationships.Person.isPublicationOfContributor.Publication": "ప్రచురణలు (కంట్రిబ్యూటర్ గా)", + "relationships.Project.isPublicationOfProject.Publication": "ప్రచురణలు", + "relationships.Project.isPersonOfProject.Person": "రచయితలు", + "relationships.Project.isOrgUnitOfProject.OrgUnit": "సంస్థాగత యూనిట్లు", + "relationships.Project.isFundingAgencyOfProject.OrgUnit": "ఫండర్", + "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "సంస్థ ప్రచురణలు", + "relationships.OrgUnit.isPersonOfOrgUnit.Person": "రచయితలు", + "relationships.OrgUnit.isProjectOfOrgUnit.Project": "రీసెర్చ్ ప్రాజెక్ట్లు", + "relationships.OrgUnit.isPublicationOfAuthor.Publication": "రచయిత ప్రచురణలు", + "relationships.OrgUnit.isPublicationOfContributor.Publication": "ప్రచురణలు (కంట్రిబ్యూటర్ గా)", + "relationships.OrgUnit.isProjectOfFundingAgency.Project": "రీసెర్చ్ ప్రాజెక్ట్లు (ఫండర్ ఆఫ్)", + "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "జర్నల్ వాల్యూమ్", + "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "ప్రచురణలు", + "relationships.JournalVolume.isJournalOfVolume.Journal": "జర్నల్స్", + "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "జర్నల్ ఇష్యూ", + "relationships.Journal.isVolumeOfJournal.JournalVolume": "జర్నల్ వాల్యూమ్", + "repository.image.logo": "రిపోజిటరీ లోగో", + "repository.title": "DSpace రిపోజిటరీ", + "repository.title.prefix": "DSpace రిపోజిటరీ :: ", + "resource-policies.add.button": "జోడించు", + "resource-policies.add.for.": "కొత్త పాలసీని జోడించండి", + "resource-policies.add.for.bitstream": "కొత్త బిట్స్ట్రీమ్ పాలసీని జోడించండి", + "resource-policies.add.for.bundle": "కొత్త బండిల్ పాలసీని జోడించండి", + "resource-policies.add.for.item": "కొత్త అంశం పాలసీని జోడించండి", + "resource-policies.add.for.community": "కొత్త కమ్యూనిటీ పాలసీని జోడించండి", + "resource-policies.add.for.collection": "కొత్త కలెక్షన్ పాలసీని జోడించండి", + "resource-policies.create.page.heading": "కోసం కొత్త రిసోర్స్ పాలసీని సృష్టించండి", + "resource-policies.create.page.failure.content": "రిసోర్స్ పాలసీని సృష్టించడంలో లోపం సంభవించింది.", + "resource-policies.create.page.success.content": "ఆపరేషన్ విజయవంతమైంది", + "resource-policies.create.page.title": "కొత్త రిసోర్స్ పాలసీని సృష్టించండి", + "resource-policies.delete.btn": "ఎంచుకున్నవాటిని తొలగించు", + "resource-policies.delete.btn.title": "ఎంచుకున్న రిసోర్స్ పాలసీలను తొలగించు", + "resource-policies.delete.failure.content": "ఎంచుకున్న రిసోర్స్ పాలసీలను తొలగించడంలో లోపం సంభవించింది.", + "resource-policies.delete.success.content": "ఆపరేషన్ విజయవంతమైంది", + "resource-policies.edit.page.heading": "రిసోర్స్ పాలసీని సవరించండి", + "resource-policies.edit.page.failure.content": "రిసోర్స్ పాలసీని సవరించడంలో లోపం సంభవించింది.", + "resource-policies.edit.page.target-failure.content": "రిసోర్స్ పాలసీ యొక్క టార్గెట్ (ePerson లేదా గ్రూప్)ని సవరించడంలో లోపం సంభవించింది.", + "resource-policies.edit.page.other-failure.content": "రిసోర్స్ పాలసీని సవరించడంలో లోపం సంభవించింది. టార్గెట్ (ePerson లేదా గ్రూప్) విజయవంతంగా నవీకరించబడింది.", + "resource-policies.edit.page.success.content": "ఆపరేషన్ విజయవంతమైంది", + "resource-policies.edit.page.title": "రిసోర్స్ పాలసీని సవరించండి", + "resource-policies.form.action-type.label": "చర్య రకాన్ని ఎంచుకోండి", + "resource-policies.form.action-type.required": "మీరు రిసోర్స్ పాలసీ చర్యను ఎంచుకోవాలి.", + "resource-policies.form.eperson-group-list.label": "అనుమతి ఇవ్వబడే ePerson లేదా గ్రూప్", + "resource-policies.form.eperson-group-list.select.btn": "ఎంచుకోండి", + "resource-policies.form.eperson-group-list.tab.eperson": "ePerson కోసం శోధించండి", + "resource-policies.form.eperson-group-list.tab.group": "గ్రూప్ కోసం శోధించండి", + "resource-policies.form.eperson-group-list.table.headers.action": "చర్య", + "resource-policies.form.eperson-group-list.table.headers.id": "ID", + "resource-policies.form.eperson-group-list.table.headers.name": "పేరు", + "resource-policies.form.eperson-group-list.modal.header": "రకాన్ని మార్చలేరు", + "resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePersonని గ్రూప్తో భర్తీ చేయడం సాధ్యం కాదు.", + "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "గ్రూప్ను ePersonతో భర్తీ చేయడం సాధ్యం కాదు.", + "resource-policies.form.eperson-group-list.modal.text2": "ప్రస్తుత రిసోర్స్ పాలసీని తొలగించి, కావలసిన రకంతో కొత్తదాన్ని సృష్టించండి.", + "resource-policies.form.eperson-group-list.modal.close": "సరే", + "resource-policies.form.date.end.label": "ముగింపు తేదీ", + "resource-policies.form.date.start.label": "ప్రారంభ తేదీ", + "resource-policies.form.description.label": "వివరణ", + "resource-policies.form.name.label": "పేరు", + "resource-policies.form.name.hint": "గరిష్టంగా 30 అక్షరాలు", + "resource-policies.form.policy-type.label": "పాలసీ రకాన్ని ఎంచుకోండి", + "resource-policies.form.policy-type.required": "మీరు రిసోర్స్ పాలసీ రకాన్ని ఎంచుకోవాలి.", + "resource-policies.table.headers.action": "చర్య", + "resource-policies.table.headers.date.end": "ముగింపు తేదీ", + "resource-policies.table.headers.date.start": "ప్రారంభ తేదీ", + "resource-policies.table.headers.edit": "సవరించు", + "resource-policies.table.headers.edit.group": "గ్రూప్ను సవరించు", + "resource-policies.table.headers.edit.policy": "పాలసీని సవరించు", + "resource-policies.table.headers.eperson": "EPerson", + "resource-policies.table.headers.group": "గ్రూప్", + "resource-policies.table.headers.select-all": "అన్నింటినీ ఎంచుకోండి", + "resource-policies.table.headers.deselect-all": "అన్నింటినీ ఎంపికను తొలగించు", + "resource-policies.table.headers.select": "ఎంచుకోండి", + "resource-policies.table.headers.deselect": "ఎంపికను తొలగించు", + "resource-policies.table.headers.id": "ID", + "resource-policies.table.headers.name": "పేరు", + "resource-policies.table.headers.policyType": "రకం", + "resource-policies.table.headers.title.for.bitstream": "బిట్స్ట్రీమ్ కోసం పాలసీలు", + "resource-policies.table.headers.title.for.bundle": "బండిల్ కోసం పాలసీలు", + "resource-policies.table.headers.title.for.item": "అంశం కోసం పాలసీలు", + "resource-policies.table.headers.title.for.community": "కమ్యూనిటీ కోసం పాలసీలు", + "resource-policies.table.headers.title.for.collection": "కలెక్షన్ కోసం పాలసీలు", + "root.skip-to-content": "ప్రధాన కంటెంట్కు దాటవేయి", + "search.description": "", + "search.switch-configuration.title": "చూపించు", + "search.title": "శోధన", + "search.breadcrumbs": "శోధన", + "search.search-form.placeholder": "రిపోజిటరీని శోధించండి ...", + "search.filters.remove": "{{ type }} రకం ఫిల్టర్ను తొలగించండి, విలువ {{ value }}", + "search.filters.applied.f.title": "శీర్షిక", + "search.filters.applied.f.author": "రచయిత", + "search.filters.applied.f.dateIssued.max": "ముగింపు తేదీ", + "search.filters.applied.f.dateIssued.min": "ప్రారంభ తేదీ", + "search.filters.applied.f.dateSubmitted": "సమర్పించిన తేదీ", + "search.filters.applied.f.discoverable": "డిస్కవర్ చేయలేనివి", + "search.filters.applied.f.entityType": "అంశం రకం", + "search.filters.applied.f.has_content_in_original_bundle": "ఫైళ్లు ఉన్నాయి", + "search.filters.applied.f.original_bundle_filenames": "ఫైల్ పేరు", + "search.filters.applied.f.original_bundle_descriptions": "ఫైల్ వివరణ", + "search.filters.applied.f.has_geospatial_metadata": "భౌగోళిక స్థానం ఉంది", + "search.filters.applied.f.itemtype": "రకం", + "search.filters.applied.f.namedresourcetype": "స్థితి", + "search.filters.applied.f.subject": "విషయం", + "search.filters.applied.f.submitter": "సమర్పించేవారు", + "search.filters.applied.f.jobTitle": "ఉద్యోగ శీర్షిక", + "search.filters.applied.f.birthDate.max": "ముగింపు పుట్టిన తేదీ", + "search.filters.applied.f.birthDate.min": "ప్రారంభ పుట్టిన తేదీ", + "search.filters.applied.f.supervisedBy": "సూపర్వైజ్ చేసినవారు", + "search.filters.applied.f.withdrawn": "విడిచిపెట్టబడింది", + "search.filters.applied.operator.equals": "", + "search.filters.applied.operator.notequals": " సమానం కాదు", + "search.filters.applied.operator.authority": "", + "search.filters.applied.operator.notauthority": " అధికారం కాదు", + "search.filters.applied.operator.contains": " కలిగి ఉంది", + "search.filters.applied.operator.notcontains": "కలిగి లేదు", + "search.filters.applied.operator.query": "", + "search.filters.applied.f.point": "కోఆర్డినేట్లు", + "search.filters.filter.title.head": "శీర్షిక", + "search.filters.filter.title.placeholder": "శీర్షిక", + "search.filters.filter.title.label": "శీర్షికను శోధించండి", + "search.filters.filter.author.head": "రచయిత", + "search.filters.filter.author.placeholder": "రచయిత పేరు", + "search.filters.filter.author.label": "రచయిత పేరును శోధించండి", + "search.filters.filter.birthDate.head": "పుట్టిన తేదీ", + "search.filters.filter.birthDate.placeholder": "పుట్టిన తేదీ", + "search.filters.filter.birthDate.label": "పుట్టిన తేదీని శోధించండి", + "search.filters.filter.collapse": "ఫిల్టర్‌ను మూసివేయి", + "search.filters.filter.creativeDatePublished.head": "ప్రచురణ తేదీ", + "search.filters.filter.creativeDatePublished.placeholder": "ప్రచురణ తేదీ", + "search.filters.filter.creativeDatePublished.label": "ప్రచురణ తేదీని శోధించండి", + "search.filters.filter.creativeDatePublished.min.label": "ప్రారంభం", + "search.filters.filter.creativeDatePublished.max.label": "ముగింపు", + "search.filters.filter.creativeWorkEditor.head": "సంపాదకుడు", + "search.filters.filter.creativeWorkEditor.placeholder": "సంపాదకుడు", + "search.filters.filter.creativeWorkEditor.label": "సంపాదకుడిని శోధించండి", + "search.filters.filter.creativeWorkKeywords.head": "విషయం", + "search.filters.filter.creativeWorkKeywords.placeholder": "విషయం", + "search.filters.filter.creativeWorkKeywords.label": "విషయాన్ని శోధించండి", + "search.filters.filter.creativeWorkPublisher.head": "ప్రచురణకర్త", + "search.filters.filter.creativeWorkPublisher.placeholder": "ప్రచురణకర్త", + "search.filters.filter.creativeWorkPublisher.label": "ప్రచురణకర్తను శోధించండి", + "search.filters.filter.dateIssued.head": "తేదీ", + "search.filters.filter.dateIssued.max.placeholder": "గరిష్ట తేదీ", + "search.filters.filter.dateIssued.max.label": "ముగింపు", + "search.filters.filter.dateIssued.min.placeholder": "కనిష్ట తేదీ", + "search.filters.filter.dateIssued.min.label": "ప్రారంభం", + "search.filters.filter.dateSubmitted.head": "సమర్పించిన తేదీ", + "search.filters.filter.dateSubmitted.placeholder": "సమర్పించిన తేదీ", + "search.filters.filter.dateSubmitted.label": "సమర్పించిన తేదీని శోధించండి", + "search.filters.filter.discoverable.head": "కనుగొనలేనివి", + "search.filters.filter.withdrawn.head": "విడిచిపెట్టబడినవి", + "search.filters.filter.entityType.head": "అంశం రకం", + "search.filters.filter.entityType.placeholder": "అంశం రకం", + "search.filters.filter.entityType.label": "అంశం రకాన్ని శోధించండి", + "search.filters.filter.expand": "ఫిల్టర్‌ను విస్తరించండి", + "search.filters.filter.has_content_in_original_bundle.head": "ఫైళ్ళు ఉన్నాయి", + "search.filters.filter.original_bundle_filenames.head": "ఫైల్ పేరు", + "search.filters.filter.has_geospatial_metadata.head": "భౌగోళిక స్థానం ఉంది", + "search.filters.filter.original_bundle_filenames.placeholder": "ఫైల్ పేరు", + "search.filters.filter.original_bundle_filenames.label": "ఫైల్ పేరును శోధించండి", + "search.filters.filter.original_bundle_descriptions.head": "ఫైల్ వివరణ", + "search.filters.filter.original_bundle_descriptions.placeholder": "ఫైల్ వివరణ", + "search.filters.filter.original_bundle_descriptions.label": "ఫైల్ వివరణను శోధించండి", + "search.filters.filter.itemtype.head": "రకం", + "search.filters.filter.itemtype.placeholder": "రకం", + "search.filters.filter.itemtype.label": "రకాన్ని శోధించండి", + "search.filters.filter.jobTitle.head": "ఉద్యోగ శీర్షిక", + "search.filters.filter.jobTitle.placeholder": "ఉద్యోగ శీర్షిక", + "search.filters.filter.jobTitle.label": "ఉద్యోగ శీర్షికను శోధించండి", + "search.filters.filter.knowsLanguage.head": "తెలిసిన భాష", + "search.filters.filter.knowsLanguage.placeholder": "తెలిసిన భాష", + "search.filters.filter.knowsLanguage.label": "తెలిసిన భాషను శోధించండి", + "search.filters.filter.namedresourcetype.head": "స్థితి", + "search.filters.filter.namedresourcetype.placeholder": "స్థితి", + "search.filters.filter.namedresourcetype.label": "స్థితిని శోధించండి", + "search.filters.filter.objectpeople.head": "వ్యక్తులు", + "search.filters.filter.objectpeople.placeholder": "వ్యక్తులు", + "search.filters.filter.objectpeople.label": "వ్యక్తులను శోధించండి", + "search.filters.filter.organizationAddressCountry.head": "దేశం", + "search.filters.filter.organizationAddressCountry.placeholder": "దేశం", + "search.filters.filter.organizationAddressCountry.label": "దేశాన్ని శోధించండి", + "search.filters.filter.organizationAddressLocality.head": "నగరం", + "search.filters.filter.organizationAddressLocality.placeholder": "నగరం", + "search.filters.filter.organizationAddressLocality.label": "నగరాన్ని శోధించండి", + "search.filters.filter.organizationFoundingDate.head": "స్థాపన తేదీ", + "search.filters.filter.organizationFoundingDate.placeholder": "స్థాపన తేదీ", + "search.filters.filter.organizationFoundingDate.label": "స్థాపన తేదీని శోధించండి", + "search.filters.filter.organizationFoundingDate.min.label": "ప్రారంభం", + "search.filters.filter.organizationFoundingDate.max.label": "ముగింపు", + "search.filters.filter.scope.head": "పరిధి", + "search.filters.filter.scope.placeholder": "పరిధి ఫిల్టర్", + "search.filters.filter.scope.label": "పరిధి ఫిల్టర్‌ను శోధించండి", + "search.filters.filter.show-less": "మూసివేయి", + "search.filters.filter.show-more": "ఇంకా చూపించు", + "search.filters.filter.subject.head": "విషయం", + "search.filters.filter.subject.placeholder": "విషయం", + "search.filters.filter.subject.label": "విషయాన్ని శోధించండి", + "search.filters.filter.submitter.head": "సమర్పించినవారు", + "search.filters.filter.submitter.placeholder": "సమర్పించినవారు", + "search.filters.filter.submitter.label": "సమర్పించినవారిని శోధించండి", + "search.filters.filter.show-tree": "{{ name }} ట్రీని బ్రౌజ్ చేయండి", + "search.filters.filter.funding.head": "ఫండింగ్", + "search.filters.filter.funding.placeholder": "ఫండింగ్", + "search.filters.filter.supervisedBy.head": "సూపర్వైజ్ చేసినవారు", + "search.filters.filter.supervisedBy.placeholder": "సూపర్వైజ్ చేసినవారు", + "search.filters.filter.supervisedBy.label": "సూపర్వైజ్ చేసినవారిని శోధించండి", + "search.filters.filter.access_status.head": "యాక్సెస్ రకం", + "search.filters.filter.access_status.placeholder": "యాక్సెస్ రకం", + "search.filters.filter.access_status.label": "యాక్సెస్ రకం ద్వారా శోధించండి", + "search.filters.entityType.JournalIssue": "జర్నల్ ఇష్యూ", + "search.filters.entityType.JournalVolume": "జర్నల్ వాల్యూమ్", + "search.filters.entityType.OrgUnit": "సంస్థాగత యూనిట్", + "search.filters.entityType.Person": "వ్యక్తి", + "search.filters.entityType.Project": "ప్రాజెక్ట్", + "search.filters.entityType.Publication": "ప్రచురణ", + "search.filters.has_content_in_original_bundle.true": "అవును", + "search.filters.has_content_in_original_bundle.false": "కాదు", + "search.filters.has_geospatial_metadata.true": "అవును", + "search.filters.has_geospatial_metadata.false": "కాదు", + "search.filters.discoverable.true": "కాదు", + "search.filters.discoverable.false": "అవును", + "search.filters.namedresourcetype.Archived": "ఆర్కైవ్ చేయబడింది", + "search.filters.namedresourcetype.Validation": "వాలిడేషన్", + "search.filters.namedresourcetype.Waiting for Controller": "రివ్యూయర్ కోసం వేచి ఉంది", + "search.filters.namedresourcetype.Workflow": "వర్క్‌ఫ్లో", + "search.filters.namedresourcetype.Workspace": "వర్క్‌స్పేస్", + "search.filters.withdrawn.true": "అవును", + "search.filters.withdrawn.false": "కాదు", + "search.filters.head": "ఫిల్టర్లు", + "search.filters.reset": "ఫిల్టర్లను రీసెట్ చేయండి", + "search.filters.search.submit": "సమర్పించండి", + "search.filters.operator.equals.text": "సమానం", + "search.filters.operator.notequals.text": "సమానం కాదు", + "search.filters.operator.authority.text": "అథారిటీ", + "search.filters.operator.notauthority.text": "అథారిటీ కాదు", + "search.filters.operator.contains.text": "కలిగి ఉంది", + "search.filters.operator.notcontains.text": "కలిగి లేదు", + "search.filters.operator.query.text": "క్వెరీ", + "search.form.search": "శోధించండి", + "search.form.search_dspace": "మొత్తం రిపోజిటరీ", + "search.form.scope.all": "DSpace యొక్క అన్ని", + "search.results.head": "శోధన ఫలితాలు", + "search.results.no-results": "మీ శోధనకు ఫలితాలు లేవు. మీరు వెతుకుతున్నది కనుగొనడంలో సమస్య ఉందా? దాని చుట్టూ", + "search.results.no-results-link": "కోట్లు ఉంచడానికి ప్రయత్నించండి", + "search.results.empty": "మీ శోధనకు ఫలితాలు లేవు.", + "search.results.geospatial-map.empty": "ఈ పేజీలో భౌగోళిక స్థానాలు ఉన్న ఫలితాలు లేవు", + "search.results.view-result": "వీక్షించండి", + "search.results.response.500": "క్వెరీ అమలు సమయంలో లోపం సంభవించింది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి", + "default.search.results.head": "శోధన ఫలితాలు", + "default-relationships.search.results.head": "శోధన ఫలితాలు", + "search.sidebar.close": "ఫలితాలకు తిరిగి వెళ్లండి", + "search.sidebar.filters.title": "ఫిల్టర్లు", + "search.sidebar.open": "శోధన సాధనాలు", + "search.sidebar.results": "ఫలితాలు", + "search.sidebar.settings.rpp": "పేజీకి ఫలితాలు", + "search.sidebar.settings.sort-by": "ద్వారా క్రమబద్ధీకరించండి", + "search.sidebar.advanced-search.title": "అధునాతన శోధన", + "search.sidebar.advanced-search.filter-by": "ద్వారా ఫిల్టర్ చేయండి", + "search.sidebar.advanced-search.filters": "ఫిల్టర్లు", + "search.sidebar.advanced-search.operators": "ఆపరేటర్లు", + "search.sidebar.advanced-search.add": "జోడించండి", + "search.sidebar.settings.title": "సెట్టింగ్‌లు", + "search.view-switch.show-detail": "వివరాలను చూపించు", + "search.view-switch.show-grid": "గ్రిడ్‌గా చూపించు", + "search.view-switch.show-list": "లిస్ట్‌గా చూపించు", + "search.view-switch.show-geospatialMap": "మ్యాప్‌గా చూపించు", + "selectable-list-item-control.deselect": "అంశాన్ని ఎంపిక చేయకండి", + "selectable-list-item-control.select": "అంశాన్ని ఎంపిక చేయండి", + "sorting.ASC": "ఆరోహణ", + "sorting.DESC": "అవరోహణ", + "sorting.dc.title.ASC": "శీర్షిక ఆరోహణ", + "sorting.dc.title.DESC": "శీర్షిక అవరోహణ", + "sorting.score.ASC": "కనిష్ట సంబంధితం", + "sorting.score.DESC": "ఎక్కువ సంబంధితం", + "sorting.dc.date.issued.ASC": "ఇష్యూ తేదీ ఆరోహణ", + "sorting.dc.date.issued.DESC": "ఇష్యూ తేదీ అవరోహణ", + "sorting.dc.date.accessioned.ASC": "యాక్సెస్ తేదీ ఆరోహణ", + "sorting.dc.date.accessioned.DESC": "యాక్సెస్ తేదీ అవరోహణ", + "sorting.lastModified.ASC": "చివరిగా మార్పు చేయబడినది ఆరోహణ", + "sorting.lastModified.DESC": "చివరిగా మార్పు చేయబడినది అవరోహణ", + "sorting.person.familyName.ASC": "ఇంటిపేరు ఆరోహణ", + "sorting.person.familyName.DESC": "ఇంటిపేరు అవరోహణ", + "sorting.person.givenName.ASC": "పేరు ఆరోహణ", + "sorting.person.givenName.DESC": "పేరు అవరోహణ", + "sorting.person.birthDate.ASC": "పుట్టిన తేదీ ఆరోహణ", + "sorting.person.birthDate.DESC": "పుట్టిన తేదీ అవరోహణ", + "statistics.title": "గణాంకాలు", + "statistics.header": "{{ scope }} కోసం గణాంకాలు", + "statistics.breadcrumbs": "గణాంకాలు", + "statistics.page.no-data": "డేటా అందుబాటులో లేదు", + "statistics.table.no-data": "డేటా అందుబాటులో లేదు", + "statistics.table.title.TotalVisits": "మొత్తం సందర్శనలు", + "statistics.table.title.TotalVisitsPerMonth": "నెలకు మొత్తం సందర్శనలు", + "statistics.table.title.TotalDownloads": "ఫైల్ సందర్శనలు", + "statistics.table.title.TopCountries": "అత్యధిక దేశ వీక్షణలు", + "statistics.table.title.TopCities": "అత్యధిక నగర వీక్షణలు", + "statistics.table.header.views": "వీక్షణలు", + "statistics.table.no-name": "(ఆబ్జెక్ట్ పేరు లోడ్ చేయబడలేదు)", + "submission.edit.breadcrumbs": "సమర్పణను సవరించండి", + "submission.edit.title": "సమర్పణను సవరించండి", + "submission.general.cancel": "రద్దు చేయండి", + "submission.general.cannot_submit": "మీకు కొత్త సమర్పణ చేయడానికి అనుమతి లేదు.", + "submission.general.deposit": "డిపాజిట్ చేయండి", + "submission.general.discard.confirm.cancel": "రద్దు చేయండి", + "submission.general.discard.confirm.info": "ఈ ఆపరేషన్‌ను రద్దు చేయలేము. మీరు ఖచ్చితంగా ఉన్నారా?", + "submission.general.discard.confirm.submit": "అవును, నేను ఖచ్చితంగా ఉన్నాను", + "submission.general.discard.confirm.title": "సమర్పణను విస్మరించండి", + "submission.general.discard.submit": "విస్మరించండి", + "submission.general.back.submit": "తిరిగి వెళ్లండి", + "submission.general.info.saved": "సేవ్ చేయబడింది", + "submission.general.info.pending-changes": "సేవ్ చేయని మార్పులు", + "submission.general.save": "సేవ్ చేయండి", + "submission.general.save-later": "తర్వాత కోసం సేవ్ చేయండి", + "submission.import-external.page.title": "బాహ్య మూలం నుండి మెటాడేటాను దిగుమతి చేయండి", + "submission.import-external.title": "బాహ్య మూలం నుండి మెటాడేటాను దిగుమతి చేయండి", + "submission.import-external.title.Journal": "బాహ్య మూలం నుండి జర్నల్‌ను దిగుమతి చేయండి", + "submission.import-external.title.JournalIssue": "బాహ్య మూలం నుండి జర్నల్ ఇష్యూను దిగుమతి చేయండి", + "submission.import-external.title.JournalVolume": "బాహ్య మూలం నుండి జర్నల్ వాల్యూమ్‌ను దిగుమతి చేయండి", + "submission.import-external.title.OrgUnit": "బాహ్య మూలం నుండి ప్రచురణకర్తను దిగుమతి చేయండి", + "submission.import-external.title.Person": "బాహ్య మూలం నుండి వ్యక్తిని దిగుమతి చేయండి", + "submission.import-external.title.Project": "బాహ్య మూలం నుండి ప్రాజెక్ట్‌ను దిగుమతి చేయండి", + "submission.import-external.title.Publication": "బాహ్య మూలం నుండి ప్రచురణను దిగుమతి చేయండి", + "submission.import-external.title.none": "బాహ్య మూలం నుండి మెటాడేటాను దిగుమతి చేయండి", + "submission.import-external.page.hint": "DSpaceలో దిగుమతి చేయడానికి వెబ్‌లోని అంశాలను కనుగొనడానికి పైన ఒక క్వెరీని నమోదు చేయండి.", + "submission.import-external.back-to-my-dspace": "నా DSpaceకి తిరిగి వెళ్లండి", + "submission.import-external.search.placeholder": "బాహ్య మూలాన్ని శోధించండి", + "submission.import-external.search.button": "శోధించండి", + "submission.import-external.search.button.hint": "శోధించడానికి కొన్ని పదాలను వ్రాయండి", + "submission.import-external.search.source.hint": "ఒక బాహ్య మూలాన్ని ఎంచుకోండి", + "submission.import-external.source.arxiv": "arXiv", + "submission.import-external.source.ads": "NASA/ADS", + "submission.import-external.source.cinii": "CiNii", + "submission.import-external.source.crossref": "Crossref", + "submission.import-external.source.datacite": "DataCite", + "submission.import-external.source.dataciteProject": "DataCite", + "submission.import-external.source.doi": "DOI", + "submission.import-external.source.scielo": "SciELO", + "submission.import-external.source.scopus": "Scopus", + "submission.import-external.source.vufind": "VuFind", + "submission.import-external.source.wos": "Web Of Science", + "submission.import-external.source.orcidWorks": "ORCID", + "submission.import-external.source.epo": "యూరోపియన్ పేటెంట్ ఆఫీస్ (EPO)", + "submission.import-external.source.loading": "లోడ్ అవుతోంది ...", + "submission.import-external.source.sherpaJournal": "SHERPA జర్నల్స్", + "submission.import-external.source.sherpaJournalIssn": "ISSN ద్వారా SHERPA జర్నల్స్", + "submission.import-external.source.sherpaPublisher": "SHERPA ప్రచురణకర్తలు", + "submission.import-external.source.openaire": "రచయితల ద్వారా OpenAIRE శోధన", + "submission.import-external.source.openaireTitle": "శీర్షిక ద్వారా OpenAIRE శోధన", + "submission.import-external.source.openaireFunding": "ఫండర్ ద్వారా OpenAIRE శోధన", + "submission.import-external.source.orcid": "ORCID", + "submission.import-external.source.pubmed": "Pubmed", + "submission.import-external.source.pubmedeu": "Pubmed Europe", + "submission.import-external.source.lcname": "లైబ్రరీ ఆఫ్ కాంగ్రెస్ పేర్లు", + "submission.import-external.source.ror": "రీసెర్చ్ ఆర్గనైజేషన్ రిజిస్ట్రీ (ROR)", + "submission.import-external.source.openalexPublication": "శీర్షిక ద్వారా OpenAlex శోధన", + "submission.import-external.source.openalexPublicationByAuthorId": "రచయిత ID ద్వారా OpenAlex శోధన", + "submission.import-external.source.openalexPublicationByDOI": "DOI ద్వారా OpenAlex శోధన", + "submission.import-external.source.openalexPerson": "పేరు ద్వారా OpenAlex శోధన", + "submission.import-external.source.openalexJournal": "OpenAlex జర్నల్స్", + "submission.import-external.source.openalexInstitution": "OpenAlex సంస్థలు", + "submission.import-external.source.openalexPublisher": "OpenAlex ప్రచురణకర్తలు", + "submission.import-external.source.openalexFunder": "OpenAlex ఫండర్లు", + "submission.import-external.preview.title": "అంశం పూర్వావలోకనం", + "submission.import-external.preview.title.Publication": "ప్రచురణ పూర్వావలోకనం", + "submission.import-external.preview.title.none": "అంశం పూర్వావలోకనం", + "submission.import-external.preview.title.Journal": "జర్నల్ పూర్వావలోకనం", + "submission.import-external.preview.title.OrgUnit": "సంస్థాగత యూనిట్ పూర్వావలోకనం", + "submission.import-external.preview.title.Person": "వ్యక్తి పూర్వావలోకనం", + "submission.import-external.preview.title.Project": "ప్రాజెక్ట్ పూర్వావలోకనం", + "submission.import-external.preview.subtitle": "క్రింద ఉన్న మెటాడేటా బాహ్య మూలం నుండి దిగుమతి చేయబడింది. మీరు సమర్పణను ప్రారంభించినప్పుడు ఇది ముందుగా నింపబడుతుంది.", + "submission.import-external.preview.button.import": "సమర్పణను ప్రారంభించండి", + "submission.import-external.preview.error.import.title": "సమర్పణ లోపం", + "submission.import-external.preview.error.import.body": "బాహ్య మూలం ఎంట్రీ దిగుమతి ప్రక్రియలో లోపం సంభవించింది.", + "submission.sections.describe.relationship-lookup.close": "మూసివేయండి", + "submission.sections.describe.relationship-lookup.external-source.added": "ఎంపికకు స్థానిక ఎంట్రీ విజయవంతంగా జోడించబడింది", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "రిమోట్ రచయితను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "రిమోట్ జర్నల్‌ను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "రిమోట్ జర్నల్ ఇష్యూను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "రిమోట్ జర్నల్ వాల్యూమ్‌ను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "ప్రాజెక్ట్", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "రిమోట్ అంశాన్ని దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "రిమోట్ ఈవెంట్‌ను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "రిమోట్ ఉత్పత్తిని దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "రిమోట్ పరికరాలను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "రిమోట్ సంస్థాగత యూనిట్‌ను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "రిమోట్ ఫండ్‌ను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "రిమోట్ వ్యక్తిని దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "రిమోట్ పేటెంట్‌ను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "రిమోట్ ప్రాజెక్ట్‌ను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "రిమోట్ ప్రచురణను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "కొత్త ఎంటిటీ జోడించబడింది!", + "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "ప్రాజెక్ట్", + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "రిమోట్ రచయితను దిగుమతి చేయండి", + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "స్థానిక రచయితను ఎంపికకు విజయవంతంగా జోడించారు", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "బాహ్య రచయితను విజయవంతంగా దిగుమతి చేసి ఎంపికకు జోడించబడింది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "అధికారం", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "కొత్త స్థానిక అధికార ఎంట్రీగా దిగుమతి చేయండి", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "రద్దు చేయి", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "కొత్త ఎంట్రీలను దిగుమతి చేయడానికి ఒక సేకరణను ఎంచుకోండి", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "ఎంటిటీలు", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "కొత్త స్థానిక ఎంటిటీగా దిగుమతి చేయండి", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC నామం నుండి దిగుమతి చేస్తోంది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID నుండి దిగుమతి చేస్తోంది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE నుండి దిగుమతి చేస్తోంది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE నుండి దిగుమతి చేస్తోంది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE నుండి దిగుమతి చేస్తోంది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa జర్నల్ నుండి దిగుమతి చేస్తోంది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa ప్రచురణకర్త నుండి దిగుమతి చేస్తోంది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed నుండి దిగుమతి చేస్తోంది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv నుండి దిగుమతి చేస్తోంది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR నుండి దిగుమతి చేయండి", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "దిగుమతి చేయండి", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "రిమోట్ జర్నల్ను దిగుమతి చేయండి", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "స్థానిక జర్నల్ను ఎంపికకు విజయవంతంగా జోడించబడింది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "బాహ్య జర్నల్ను విజయవంతంగా దిగుమతి చేసి ఎంపికకు జోడించబడింది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "రిమోట్ జర్నల్ ఇష్యూను దిగుమతి చేయండి", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "స్థానిక జర్నల్ ఇష్యూను ఎంపికకు విజయవంతంగా జోడించబడింది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "బాహ్య జర్నల్ ఇష్యూను విజయవంతంగా దిగుమతి చేసి ఎంపికకు జోడించబడింది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "రిమోట్ జర్నల్ వాల్యూమ్ను దిగుమతి చేయండి", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "స్థానిక జర్నల్ వాల్యూమ్ను ఎంపికకు విజయవంతంగా జోడించబడింది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "బాహ్య జర్నల్ వాల్యూమ్ను విజయవంతంగా దిగుమతి చేసి ఎంపికకు జోడించబడింది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "స్థానిక మ్యాచ్ను ఎంచుకోండి:", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "రిమోట్ సంస్థను దిగుమతి చేయండి", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "స్థానిక సంస్థను ఎంపికకు విజయవంతంగా జోడించబడింది", + + "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "బాహ్య సంస్థను విజయవంతంగా దిగుమతి చేసి ఎంపికకు జోడించబడింది", + + "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "అన్నింటిని ఎంపిక రద్దు చేయి", + + "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "పేజీని ఎంపిక రద్దు చేయి", + + "submission.sections.describe.relationship-lookup.search-tab.loading": "లోడ్ అవుతోంది...", + + "submission.sections.describe.relationship-lookup.search-tab.placeholder": "శోధన ప్రశ్న", + + "submission.sections.describe.relationship-lookup.search-tab.search": "వెళ్ళు", + + "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "శోధించండి...", + + "submission.sections.describe.relationship-lookup.search-tab.select-all": "అన్నింటిని ఎంచుకోండి", + + "submission.sections.describe.relationship-lookup.search-tab.select-page": "పేజీని ఎంచుకోండి", + + "submission.sections.describe.relationship-lookup.selected": "{{ size }} అంశాలు ఎంపిక చేయబడ్డాయి", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "స్థానిక రచయితలు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "స్థానిక జర్నల్స్ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "స్థానిక ప్రాజెక్టులు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "స్థానిక ప్రచురణలు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "స్థానిక రచయితలు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "స్థానిక సంస్థాగత యూనిట్లు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "స్థానిక డేటా ప్యాకేజీలు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "స్థానిక డేటా ఫైళ్ళు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "స్థానిక జర్నల్స్ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "స్థానిక జర్నల్ ఇష్యూలు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "స్థానిక జర్నల్ ఇష్యూలు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "స్థానిక జర్నల్ వాల్యూమ్లు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "స్థానిక జర్నల్ వాల్యూమ్లు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "స్థానిక జర్నల్ వాల్యూమ్లు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa జర్నల్స్ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa ప్రచురణకర్తలు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC నామాలు ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE రచయితల ద్వారా శోధించండి ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE శీర్షిక ద్వారా శోధించండి ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE ఫండర్ ద్వారా శోధించండి ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN ద్వారా Sherpa జర్నల్స్ ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "సంస్థ ద్వారా OpenAlex శోధన ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "ప్రచురణకర్త ద్వారా OpenAlex శోధన ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "ఫండర్ ద్వారా OpenAlex శోధన ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "ప్రాజెక్ట్ ద్వారా DataCite శోధన ({{ count }})", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "ఫండింగ్ ఏజెన్సీల కోసం శోధించండి", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "ఫండింగ్ కోసం శోధించండి", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "సంస్థాగత యూనిట్ల కోసం శోధించండి", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "ప్రాజెక్టులు", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "ప్రాజెక్ట్ యొక్క ఫండర్", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "రచయిత యొక్క ప్రచురణ", + + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "ప్రాజెక్ట్ యొక్క OrgUnit", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "ప్రాజెక్ట్", + + "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "ప్రాజెక్టులు", + + "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "ప్రాజెక్ట్ యొక్క ఫండర్", + + "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "ప్రాజెక్ట్ యొక్క వ్యక్తి", + + "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "శోధించండి...", + + "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "ప్రస్తుత ఎంపిక ({{ count }})", + + "submission.sections.describe.relationship-lookup.title.Journal": "జర్నల్", + + "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "జర్నల్ ఇష్యూలు", + + "submission.sections.describe.relationship-lookup.title.JournalIssue": "జర్నల్ ఇష్యూలు", + + "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "జర్నల్ వాల్యూమ్లు", + + "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "జర్నల్ వాల్యూమ్లు", + + "submission.sections.describe.relationship-lookup.title.JournalVolume": "జర్నల్ వాల్యూమ్లు", + + "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "జర్నల్స్", + + "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "రచయితలు", + + "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "ఫండింగ్ ఏజెన్సీ", + + "submission.sections.describe.relationship-lookup.title.Project": "ప్రాజెక్టులు", + + "submission.sections.describe.relationship-lookup.title.Publication": "ప్రచురణలు", + + "submission.sections.describe.relationship-lookup.title.Person": "రచయితలు", + + "submission.sections.describe.relationship-lookup.title.OrgUnit": "సంస్థాగత యూనిట్లు", + + "submission.sections.describe.relationship-lookup.title.DataPackage": "డేటా ప్యాకేజీలు", + + "submission.sections.describe.relationship-lookup.title.DataFile": "డేటా ఫైళ్ళు", + + "submission.sections.describe.relationship-lookup.title.Funding Agency": "ఫండింగ్ ఏజెన్సీ", + + "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "ఫండింగ్", + + "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "పేరెంట్ సంస్థాగత యూనిట్", + + "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "ప్రచురణ", + + "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "OrgUnit", + + "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "డ్రాప్డౌన్ టోగుల్ చేయండి", + + "submission.sections.describe.relationship-lookup.selection-tab.settings": "సెట్టింగ్లు", + + "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "మీ ఎంపిక ప్రస్తుతం ఖాళీగా ఉంది.", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "ఎంపిక చేసిన రచయితలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "ఎంపిక చేసిన జర్నల్స్", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "ఎంపిక చేసిన జర్నల్ వాల్యూమ్", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "ఎంపిక చేసిన జర్నల్ వాల్యూమ్", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "ఎంపిక చేసిన ప్రాజెక్టులు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "ఎంపిక చేసిన ప్రచురణలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "ఎంపిక చేసిన రచయితలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "ఎంపిక చేసిన సంస్థాగత యూనిట్లు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "ఎంపిక చేసిన డేటా ప్యాకేజీలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "ఎంపిక చేసిన డేటా ఫైళ్ళు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "ఎంపిక చేసిన జర్నల్స్", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "ఎంపిక చేసిన ఇష్యూ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "ఎంపిక చేసిన జర్నల్ వాల్యూమ్", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "ఎంపిక చేసిన ఫండింగ్ ఏజెన్సీ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "ఎంపిక చేసిన ఫండింగ్", + + "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "ఎంపిక చేసిన ఇష్యూ", + + "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "ఎంపిక చేసిన సంస్థాగత యూనిట్", + + "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.selection-tab.title": "శోధన ఫలితాలు", + + "submission.sections.describe.relationship-lookup.name-variant.notification.content": "మీరు \"{{ value }}\"ను ఈ వ్యక్తి కోసం ఒక పేరు వేరియంట్గా సేవ్ చేయాలనుకుంటున్నారా, తద్వారా మీరు మరియు ఇతరులు భవిష్యత్ సబ్మిషన్ల కోసం దాన్ని తిరిగి ఉపయోగించవచ్చు? మీరు చేయకపోతే, మీరు ఇప్పటికీ ఈ సబ్మిషన్ కోసం దాన్ని ఉపయోగించవచ్చు.", + + "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "కొత్త పేరు వేరియంట్ను సేవ్ చేయండి", + + "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "ఈ సబ్మిషన్ కోసం మాత్రమే ఉపయోగించండి", + + "submission.sections.ccLicense.type": "లైసెన్స్ రకం", + + "submission.sections.ccLicense.select": "లైసెన్స్ రకాన్ని ఎంచుకోండి…", + + "submission.sections.ccLicense.change": "మీ లైసెన్స్ రకాన్ని మార్చండి…", + + "submission.sections.ccLicense.none": "లైసెన్సులు అందుబాటులో లేవు", + + "submission.sections.ccLicense.option.select": "ఒక ఎంపికను ఎంచుకోండి…", + + "submission.sections.ccLicense.link": "మీరు ఈ క్రింది లైసెన్స్ను ఎంచుకున్నారు:", + + "submission.sections.ccLicense.confirmation": "నేను పై లైసెన్స్ను మంజూరు చేస్తున్నాను", + + "submission.sections.general.add-more": "మరిన్ని జోడించండి", + + "submission.sections.general.cannot_deposit": "ఫారమ్లో లోపాల కారణంగా డిపాజిట్ పూర్తి చేయబడదు.
డిపాజిట్ను పూర్తి చేయడానికి అన్ని అవసరమైన ఫీల్డ్లను పూరించండి.", + + "submission.sections.general.collection": "సేకరణ", + + "submission.sections.general.deposit_error_notice": "అంశాన్ని సమర్పించేటప్పుడు ఒక సమస్య ఉంది, దయచేసి తర్వాత ప్రయత్నించండి.", + + "submission.sections.general.deposit_success_notice": "సమర్పణ విజయవంతంగా డిపాజిట్ చేయబడింది.", + + "submission.sections.general.discard_error_notice": "అంశాన్ని విస్మరించేటప్పుడు ఒక సమస్య ఉంది, దయచేసి తర్వాత ప్రయత్నించండి.", + + "submission.sections.general.discard_success_notice": "సమర్పణ విజయవంతంగా విస్మరించబడింది.", + + "submission.sections.general.metadata-extracted": "కొత్త మెటాడేటా సంగ్రహించబడి {{sectionId}} విభాగానికి జోడించబడింది.", + + "submission.sections.general.metadata-extracted-new-section": "కొత్త {{sectionId}} విభాగం సబ్మిషన్కు జోడించబడింది.", + + "submission.sections.general.no-collection": "సేకరణ కనుగొనబడలేదు", + + "submission.sections.general.no-entity": "ఎంటిటీ రకాలు కనుగొనబడలేదు", + + "submission.sections.general.no-sections": "ఎంపికలు అందుబాటులో లేవు", + + "submission.sections.general.save_error_notice": "అంశాన్ని సేవ్ చేసేటప్పుడు ఒక సమస్య ఉంది, దయచేసి తర్వాత ప్రయత్నించండి.", + + "submission.sections.general.save_success_notice": "సమర్పణ విజయవంతంగా సేవ్ చేయబడింది.", + + "submission.sections.general.search-collection": "సేకరణ కోసం శోధించండి", + + "submission.sections.general.sections_not_valid": "పూర్తి కాని విభాగాలు ఉన్నాయి.", + + "submission.sections.identifiers.info": "మీ అంశం కోసం ఈ క్రింది ఐడెంటిఫైయర్లు సృష్టించబడతాయి:", + + "submission.sections.identifiers.no_handle": "ఈ అంశం కోసం హ్యాండిల్స్ మింట్ చేయబడలేదు.", + + "submission.sections.identifiers.no_doi": "ఈ అంశం కోసం DOIs మింట్ చేయబడలేదు.", + + "submission.sections.identifiers.handle_label": "హ్యాండిల్: ", + + "submission.sections.identifiers.doi_label": "DOI: ", + + "submission.sections.identifiers.otherIdentifiers_label": "ఇతర ఐడెంటిఫైయర్లు: ", + + "submission.sections.submit.progressbar.accessCondition": "అంశం యాక్సెస్ షరతులు", + + "submission.sections.submit.progressbar.CClicense": "క్రియేటివ్ కామన్స్ లైసెన్స్", + + "submission.sections.submit.progressbar.describe.recycle": "రీసైకిల్", + + "submission.sections.submit.progressbar.describe.stepcustom": "వివరించండి", + + "submission.sections.submit.progressbar.describe.stepone": "వివరించండి", + + "submission.sections.submit.progressbar.describe.steptwo": "వివరించండి", + + "submission.sections.submit.progressbar.duplicates": "సంభావ్య నకిలీలు", + + "submission.sections.submit.progressbar.identifiers": "ఐడెంటిఫైయర్లు", + + "submission.sections.submit.progressbar.license": "డిపాజిట్ లైసెన్స్", + + "submission.sections.submit.progressbar.sherpapolicy": "Sherpa విధానాలు", + + "submission.sections.submit.progressbar.upload": "ఫైళ్ళను అప్లోడ్ చేయండి", + + "submission.sections.submit.progressbar.sherpaPolicies": "ప్రచురణకర్త ఓపెన్ యాక్సెస్ విధాన సమాచారం", + + "submission.sections.sherpa-policy.title-empty": "ప్రచురణకర్త విధాన సమాచారం అందుబాటులో లేదు. మీ పనికి సంబంధించిన ISSN ఉంటే, దయచేసి సంబంధిత ప్రచురణకర్త ఓపెన్ యాక్సెస్ విధానాలను చూడటానికి దాన్ని పైన నమోదు చేయండి.", + + "submission.sections.status.errors.title": "లోపాలు", + + "submission.sections.status.valid.title": "విలిడ్", + + "submission.sections.status.warnings.title": "హెచ్చరికలు", + "submission.sections.status.errors.aria": "లోపాలు ఉన్నాయి", + "submission.sections.status.valid.aria": "చెల్లుబాటు అవుతుంది", + "submission.sections.status.warnings.aria": "హెచ్చరికలు ఉన్నాయి", + "submission.sections.status.info.title": "అదనపు సమాచారం", + "submission.sections.status.info.aria": "అదనపు సమాచారం", + "submission.sections.toggle.open": "విభాగాన్ని తెరవండి", + "submission.sections.toggle.close": "విభాగాన్ని మూసివేయండి", + "submission.sections.toggle.aria.open": "{{sectionHeader}} విభాగాన్ని విస్తరించండి", + "submission.sections.toggle.aria.close": "{{sectionHeader}} విభాగాన్ని మూసివేయండి", + "submission.sections.upload.primary.make": "{{fileName}}ని ప్రాధమిక బిట్స్ట్రీమ్‌గా చేయండి", + "submission.sections.upload.primary.remove": "{{fileName}}ని ప్రాధమిక బిట్స్ట్రీమ్‌గా తీసివేయండి", + "submission.sections.upload.delete.confirm.cancel": "రద్దు చేయండి", + "submission.sections.upload.delete.confirm.info": "ఈ పనిని తిరిగి తిప్పలేరు. మీరు ఖచ్చితంగా ఉన్నారా?", + "submission.sections.upload.delete.confirm.submit": "అవును, నేను ఖచ్చితంగా ఉన్నాను", + "submission.sections.upload.delete.confirm.title": "బిట్స్ట్రీమ్‌ని తొలగించండి", + "submission.sections.upload.delete.submit": "తొలగించండి", + "submission.sections.upload.download.title": "బిట్స్ట్రీమ్‌ని డౌన్‌లోడ్ చేయండి", + "submission.sections.upload.drop-message": "ఫైళ్లను డ్రాగ్ చేసి అంశంతో అటాచ్ చేయండి", + "submission.sections.upload.edit.title": "బిట్స్ట్రీమ్‌ని సవరించండి", + "submission.sections.upload.form.access-condition-label": "యాక్సెస్ కండిషన్ రకం", + "submission.sections.upload.form.access-condition-hint": "అంశం డిపాజిట్ అయిన తర్వాత బిట్స్ట్రీమ్‌పై వర్తించే యాక్సెస్ కండిషన్‌ని ఎంచుకోండి", + "submission.sections.upload.form.date-required": "తేదీ అవసరం.", + "submission.sections.upload.form.date-required-from": "యాక్సెస్ ఇవ్వడానికి తేదీ అవసరం.", + "submission.sections.upload.form.date-required-until": "యాక్సెస్ ఇవ్వడానికి తేదీ అవసరం.", + "submission.sections.upload.form.from-label": "యాక్సెస్ ఇవ్వడం ప్రారంభించండి", + "submission.sections.upload.form.from-hint": "సంబంధిత యాక్సెస్ కండిషన్ వర్తించే తేదీని ఎంచుకోండి", + "submission.sections.upload.form.from-placeholder": "నుండి", + "submission.sections.upload.form.group-label": "గ్రూప్", + "submission.sections.upload.form.group-required": "గ్రూప్ అవసరం.", + "submission.sections.upload.form.until-label": "యాక్సెస్ ఇవ్వడం ముగించండి", + "submission.sections.upload.form.until-hint": "సంబంధిత యాక్సెస్ కండిషన్ వర్తించే తేదీ వరకు ఎంచుకోండి", + "submission.sections.upload.form.until-placeholder": "వరకు", + "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} కలెక్షన్‌లో అప్‌లోడ్ చేసిన ఫైళ్లు ఈ క్రింది గ్రూప్(ల) ప్రకారం యాక్సెస్ చేయబడతాయి:", + "submission.sections.upload.header.policy.default.withlist": "{{collectionName}} కలెక్షన్‌లో అప్‌లోడ్ చేసిన ఫైళ్లు, ఒక్క ఫైల్ కోసం స్పష్టంగా నిర్ణయించిన దానికి అదనంగా, ఈ క్రింది గ్రూప్(ల)తో యాక్సెస్ చేయబడతాయని గమనించండి:", + "submission.sections.upload.info": "ఇక్కడ మీరు ప్రస్తుతం అంశంలో ఉన్న అన్ని ఫైళ్లను కనుగొంటారు. మీరు ఫైల్ మెటాడేటా మరియు యాక్సెస్ కండిషన్‌లను నవీకరించవచ్చు లేదా పేజీలో ఎక్కడైనా ఫైళ్లను డ్రాగ్ & డ్రాప్ చేయడం ద్వారా అదనపు ఫైళ్లను అప్‌లోడ్ చేయవచ్చు.", + "submission.sections.upload.no-entry": "లేదు", + "submission.sections.upload.no-file-uploaded": "ఇంకా ఫైల్ అప్‌లోడ్ చేయబడలేదు.", + "submission.sections.upload.save-metadata": "మెటాడేటాను సేవ్ చేయండి", + "submission.sections.upload.undo": "రద్దు చేయండి", + "submission.sections.upload.upload-failed": "అప్‌లోడ్ విఫలమైంది", + "submission.sections.upload.upload-successful": "అప్‌లోడ్ విజయవంతమైంది", + "submission.sections.accesses.form.discoverable-description": "చెక్ చేసినప్పుడు, ఈ అంశం శోధన/బ్రౌజ్‌లో కనిపిస్తుంది. అన్‌చెక్ చేసినప్పుడు, అంశం డైరెక్ట్ లింక్ ద్వారా మాత్రమే అందుబాటులో ఉంటుంది మరియు ఎప్పుడూ శోధన/బ్రౌజ్‌లో కనిపించదు.", + "submission.sections.accesses.form.discoverable-label": "కనుగొనగలిగినది", + "submission.sections.accesses.form.access-condition-label": "యాక్సెస్ కండిషన్ రకం", + "submission.sections.accesses.form.access-condition-hint": "అంశం డిపాజిట్ అయిన తర్వాత వర్తించే యాక్సెస్ కండిషన్‌ని ఎంచుకోండి", + "submission.sections.accesses.form.date-required": "తేదీ అవసరం.", + "submission.sections.accesses.form.date-required-from": "యాక్సెస్ ఇవ్వడానికి తేదీ అవసరం.", + "submission.sections.accesses.form.date-required-until": "యాక్సెస్ ఇవ్వడానికి తేదీ అవసరం.", + "submission.sections.accesses.form.from-label": "యాక్సెస్ ఇవ్వడం ప్రారంభించండి", + "submission.sections.accesses.form.from-hint": "సంబంధిత యాక్సెస్ కండిషన్ వర్తించే తేదీని ఎంచుకోండి", + "submission.sections.accesses.form.from-placeholder": "నుండి", + "submission.sections.accesses.form.group-label": "గ్రూప్", + "submission.sections.accesses.form.group-required": "గ్రూప్ అవసరం.", + "submission.sections.accesses.form.until-label": "యాక్సెస్ ఇవ్వడం ముగించండి", + "submission.sections.accesses.form.until-hint": "సంబంధిత యాక్సెస్ కండిషన్ వర్తించే తేదీ వరకు ఎంచుకోండి", + "submission.sections.accesses.form.until-placeholder": "వరకు", + "submission.sections.duplicates.none": "ఏ నకిలీలు కనుగొనబడలేదు.", + "submission.sections.duplicates.detected": "సంభావ్య నకిలీలు కనుగొనబడ్డాయి. దయచేసి క్రింది జాబితాను సమీక్షించండి.", + "submission.sections.duplicates.in-workspace": "ఈ అంశం వర్క్‌స్పేస్‌లో ఉంది", + "submission.sections.duplicates.in-workflow": "ఈ అంశం వర్క్‌ఫ్లోలో ఉంది", + "submission.sections.license.granted-label": "నేను పై లైసెన్స్‌ని నిర్ధారిస్తున్నాను", + "submission.sections.license.required": "మీరు లైసెన్స్‌ని అంగీకరించాలి", + "submission.sections.license.notgranted": "మీరు లైసెన్స్‌ని అంగీకరించాలి", + "submission.sections.sherpa.publication.information": "ప్రచురణ సమాచారం", + "submission.sections.sherpa.publication.information.title": "శీర్షిక", + "submission.sections.sherpa.publication.information.issns": "ISSNలు", + "submission.sections.sherpa.publication.information.url": "URL", + "submission.sections.sherpa.publication.information.publishers": "ప్రచురణకర్త", + "submission.sections.sherpa.publication.information.romeoPub": "రోమియో పబ్", + "submission.sections.sherpa.publication.information.zetoPub": "జీటో పబ్", + "submission.sections.sherpa.publisher.policy": "ప్రచురణకర్త పాలసీ", + "submission.sections.sherpa.publisher.policy.description": "క్రింది సమాచారం షెర్పా రోమియో ద్వారా కనుగొనబడింది. మీ ప్రచురణకర్త పాలసీల ఆధారంగా, ఇది ఎంబార్గో అవసరం కావచ్చు మరియు/లేదా మీరు అప్‌లోడ్ చేయడానికి అనుమతించబడిన ఫైళ్ల గురించి సలహాలు ఇస్తుంది. మీకు ప్రశ్నలు ఉంటే, దయచేసి ఫుటర్‌లోని ఫీడ్‌బ్యాక్ ఫారమ్ ద్వారా మీ సైట్ నిర్వాహకుడిని సంప్రదించండి.", + "submission.sections.sherpa.publisher.policy.openaccess": "ఈ జర్నల్ పాలసీ ద్వారా అనుమతించబడిన ఓపెన్ యాక్సెస్ మార్గాలు ఆర్టికల్ వెర్షన్ ప్రకారం క్రింద జాబితా చేయబడ్డాయి. మరింత వివరణాత్మక వీక్షణ కోసం ఒక మార్గంపై క్లిక్ చేయండి", + "submission.sections.sherpa.publisher.policy.more.information": "మరింత సమాచారం కోసం, దయచేసి ఈ క్రింది లింక్‌లను చూడండి:", + "submission.sections.sherpa.publisher.policy.version": "వెర్షన్", + "submission.sections.sherpa.publisher.policy.embargo": "ఎంబార్గో", + "submission.sections.sherpa.publisher.policy.noembargo": "ఎంబార్గో లేదు", + "submission.sections.sherpa.publisher.policy.nolocation": "ఏదీ లేదు", + "submission.sections.sherpa.publisher.policy.license": "లైసెన్స్", + "submission.sections.sherpa.publisher.policy.prerequisites": "అవసరమైనవి", + "submission.sections.sherpa.publisher.policy.location": "స్థానం", + "submission.sections.sherpa.publisher.policy.conditions": "షరతులు", + "submission.sections.sherpa.publisher.policy.refresh": "రిఫ్రెష్ చేయండి", + "submission.sections.sherpa.record.information": "రికార్డ్ సమాచారం", + "submission.sections.sherpa.record.information.id": "ID", + "submission.sections.sherpa.record.information.date.created": "తేదీ సృష్టించబడింది", + "submission.sections.sherpa.record.information.date.modified": "చివరిగా మార్చబడింది", + "submission.sections.sherpa.record.information.uri": "URI", + "submission.sections.sherpa.error.message": "షెర్పా సమాచారాన్ని పొందడంలో లోపం ఉంది", + "submission.submit.breadcrumbs": "కొత్త సమర్పణ", + "submission.submit.title": "కొత్త సమర్పణ", + "submission.workflow.generic.delete": "తొలగించండి", + "submission.workflow.generic.delete-help": "ఈ అంశాన్ని విస్మరించడానికి ఈ ఎంపికను ఎంచుకోండి. అప్పుడు మీరు దానిని నిర్ధారించమని అడుగుతారు.", + "submission.workflow.generic.edit": "సవరించండి", + "submission.workflow.generic.edit-help": "అంశం యొక్క మెటాడేటాను మార్చడానికి ఈ ఎంపికను ఎంచుకోండి.", + "submission.workflow.generic.view": "చూడండి", + "submission.workflow.generic.view-help": "అంశం యొక్క మెటాడేటాను వీక్షించడానికి ఈ ఎంపికను ఎంచుకోండి.", + "submission.workflow.generic.submit_select_reviewer": "రివ్యూయర్‌ని ఎంచుకోండి", + "submission.workflow.generic.submit_select_reviewer-help": "", + "submission.workflow.generic.submit_score": "రేట్ చేయండి", + "submission.workflow.generic.submit_score-help": "", + "submission.workflow.tasks.claimed.approve": "ఆమోదించండి", + "submission.workflow.tasks.claimed.approve_help": "మీరు అంశాన్ని సమీక్షించి, అది కలెక్షన్‌లో చేరడానికి సరిపోతే, \"ఆమోదించండి\"ని ఎంచుకోండి.", + "submission.workflow.tasks.claimed.edit": "సవరించండి", + "submission.workflow.tasks.claimed.edit_help": "అంశం యొక్క మెటాడేటాను మార్చడానికి ఈ ఎంపికను ఎంచుకోండి.", + "submission.workflow.tasks.claimed.decline": "తిరస్కరించండి", + "submission.workflow.tasks.claimed.decline_help": "", + "submission.workflow.tasks.claimed.reject.reason.info": "దయచేసి సమర్పణను తిరస్కరించడానికి మీ కారణాన్ని క్రింది బాక్స్‌లో నమోదు చేయండి, సబ్మిటర్ ఒక సమస్యను పరిష్కరించి తిరిగి సమర్పించగలడో లేదో సూచించండి.", + "submission.workflow.tasks.claimed.reject.reason.placeholder": "తిరస్కరణ కారణాన్ని వివరించండి", + "submission.workflow.tasks.claimed.reject.reason.submit": "అంశాన్ని తిరస్కరించండి", + "submission.workflow.tasks.claimed.reject.reason.title": "కారణం", + "submission.workflow.tasks.claimed.reject.submit": "తిరస్కరించండి", + "submission.workflow.tasks.claimed.reject_help": "మీరు అంశాన్ని సమీక్షించి, అది కలెక్షన్‌లో చేరడానికి సరిపోకపోతే, \"తిరస్కరించండి\"ని ఎంచుకోండి. అప్పుడు మీరు అంశం ఎందుకు సరిపోదో సూచించే సందేశాన్ని నమోదు చేయమని అడుగుతారు, మరియు సబ్మిటర్ ఏదైనా మార్చి తిరిగి సమర్పించాల్సిన అవసరం ఉందో లేదో.", + "submission.workflow.tasks.claimed.return": "పూల్‌కు తిరిగి ఇవ్వండి", + "submission.workflow.tasks.claimed.return_help": "టాస్‌ని పూల్‌కు తిరిగి ఇవ్వండి, తద్వారా మరొక వినియోగదారు టాస్‌ని నిర్వహించగలడు.", + "submission.workflow.tasks.generic.error": "ఆపరేషన్ సమయంలో లోపం సంభవించింది...", + "submission.workflow.tasks.generic.processing": "ప్రాసెస్ చేస్తోంది...", + "submission.workflow.tasks.generic.submitter": "సబ్మిటర్", + "submission.workflow.tasks.generic.success": "ఆపరేషన్ విజయవంతమైంది", + "submission.workflow.tasks.pool.claim": "క్లెయిమ్ చేయండి", + "submission.workflow.tasks.pool.claim_help": "ఈ టాస్‌ని మీకు అసైన్ చేయండి.", + "submission.workflow.tasks.pool.hide-detail": "వివరాలను దాచండి", + "submission.workflow.tasks.pool.show-detail": "వివరాలను చూపించండి", + "submission.workflow.tasks.duplicates": "ఈ అంశం కోసం సంభావ్య నకిలీలు కనుగొనబడ్డాయి. వివరాలను చూడటానికి ఈ అంశాన్ని క్లెయిమ్ చేసి సవరించండి.", + "submission.workspace.generic.view": "చూడండి", + "submission.workspace.generic.view-help": "అంశం యొక్క మెటాడేటాను వీక్షించడానికి ఈ ఎంపికను ఎంచుకోండి.", + "submitter.empty": "N/A", + "subscriptions.title": "సబ్‌స్క్రిప్షన్‌లు", + "subscriptions.item": "అంశాల కోసం సబ్‌స్క్రిప్షన్‌లు", + "subscriptions.collection": "కలెక్షన్‌ల కోసం సబ్‌స్క్రిప్షన్‌లు", + "subscriptions.community": "కమ్యూనిటీల కోసం సబ్‌స్క్రిప్షన్‌లు", + "subscriptions.subscription_type": "సబ్‌స్క్రిప్షన్ రకం", + "subscriptions.frequency": "సబ్‌స్క్రిప్షన్ ఫ్రీక్వెన్సీ", + "subscriptions.frequency.D": "రోజువారీ", + "subscriptions.frequency.M": "నెలవారీ", + "subscriptions.frequency.W": "వారంవారీ", + "subscriptions.tooltip": "సబ్‌స్క్రయిబ్ చేయండి", + "subscriptions.unsubscribe": "అన్‌సబ్‌స్క్రయిబ్ చేయండి", + "subscriptions.modal.title": "సబ్‌స్క్రిప్షన్‌లు", + "subscriptions.modal.type-frequency": "రకం మరియు ఫ్రీక్వెన్సీ", + "subscriptions.modal.close": "మూసివేయండి", + "subscriptions.modal.delete-info": "ఈ సబ్‌స్క్రిప్షన్‌ని తీసివేయడానికి, దయచేసి మీ వినియోగదారు ప్రొఫైల్ క్రింద \"సబ్‌స్క్రిప్షన్‌లు\" పేజీని సందర్శించండి", + "subscriptions.modal.new-subscription-form.type.content": "కంటెంట్", + "subscriptions.modal.new-subscription-form.frequency.D": "రోజువారీ", + "subscriptions.modal.new-subscription-form.frequency.W": "వారంవారీ", + "subscriptions.modal.new-subscription-form.frequency.M": "నెలవారీ", + "subscriptions.modal.new-subscription-form.submit": "సమర్పించండి", + "subscriptions.modal.new-subscription-form.processing": "ప్రాసెస్ చేస్తోంది...", + "subscriptions.modal.create.success": "{{ type }}కు విజయవంతంగా సబ్‌స్క్రయిబ్ చేయబడింది.", + "subscriptions.modal.delete.success": "సబ్‌స్క్రిప్షన్ విజయవంతంగా తొలగించబడింది", + "subscriptions.modal.update.success": "{{ type }}కు సబ్‌స్క్రిప్షన్ విజయవంతంగా నవీకరించబడింది", + "subscriptions.modal.create.error": "సబ్‌స్క్రిప్షన్ సృష్టించడంలో లోపం సంభవించింది", + "subscriptions.modal.delete.error": "సబ్‌స్క్రిప్షన్ తొలగించడంలో లోపం సంభవించింది", + "subscriptions.modal.update.error": "సబ్‌స్క్రిప్షన్ నవీకరించడంలో లోపం సంభవించింది", + "subscriptions.table.dso": "విషయం", + "subscriptions.table.subscription_type": "సబ్‌స్క్రిప్షన్ రకం", + "subscriptions.table.subscription_frequency": "సబ్‌స్క్రిప్షన్ ఫ్రీక్వెన్సీ", + "subscriptions.table.action": "చర్య", + "subscriptions.table.edit": "సవరించండి", + "subscriptions.table.delete": "తొలగించండి", + "subscriptions.table.not-available": "అందుబాటులో లేదు", + "subscriptions.table.not-available-message": "సబ్‌స్క్రయిబ్ చేయబడిన అంశం తొలగించబడింది, లేదా మీకు ప్రస్తుతం దాన్ని వీక్షించడానికి అనుమతి లేదు", + "subscriptions.table.empty.message": "మీకు ప్రస్తుతం ఏ సబ్‌స్క్రిప్షన్‌లు లేవు. ఒక కమ్యూనిటీ లేదా కలెక్షన్ కోసం ఇమెయిల్ నవీకరణలకు సబ్‌స్క్రయిబ్ చేయడానికి, ఆబ్జెక్ట్ పేజీలోని సబ్‌స్క్రిప్షన్ బటన్‌ని ఉపయోగించండి.", + "thumbnail.default.alt": "థంబ్‌నెయిల్ ఇమేజ్", + "thumbnail.default.placeholder": "థంబ్‌నెయిల్ అందుబాటులో లేదు", + "thumbnail.project.alt": "ప్రాజెక్ట్ లోగో", + "thumbnail.project.placeholder": "ప్రాజెక్ట్ ప్లేస్‌హోల్డర్ ఇమేజ్", + "thumbnail.orgunit.alt": "ఆర్గ్‌యూనిట్ లోగో", + "thumbnail.orgunit.placeholder": "ఆర్గ్‌యూనిట్ ప్లేస్‌హోల్డర్ ఇమేజ్", + "thumbnail.person.alt": "ప్రొఫైల్ పిక్చర్", + "thumbnail.person.placeholder": "ప్రొఫైల్ పిక్చర్ అందుబాటులో లేదు", + "title": "DSpace", + "vocabulary-treeview.header": "హైరార్కికల్ ట్రీ వ్యూ", + "vocabulary-treeview.load-more": "మరిన్ని లోడ్ చేయండి", + "vocabulary-treeview.search.form.reset": "రీసెట్ చేయండి", + "vocabulary-treeview.search.form.search": "శోధించండి", + "vocabulary-treeview.search.form.search-placeholder": "మొదటి కొన్ని అక్షరాలను టైప్ చేయడం ద్వారా ఫలితాలను ఫిల్టర్ చేయండి", + "vocabulary-treeview.search.no-result": "చూపించడానికి ఏ అంశాలు లేవు", + "vocabulary-treeview.tree.description.nsi": "నార్వేజియన్ సైన్స్ ఇండెక్స్", + "vocabulary-treeview.tree.description.srsc": "రీసెర్చ్ సబ్జెక్ట్ కేటగిరీలు", + "vocabulary-treeview.info": "శోధన ఫిల్టర్‌గా జోడించడానికి ఒక సబ్జెక్ట్‌ని ఎంచుకోండి", + "uploader.browse": "బ్రౌజ్ చేయండి", + "uploader.drag-message": "మీ ఫైళ్లను ఇక్కడ డ్రాగ్ & డ్రాప్ చేయండి", + "uploader.delete.btn-title": "తొలగించండి", + "uploader.or": ", లేదా ", + "uploader.processing": "అప్‌లోడ్ చేసిన ఫైల్(ల)ను ప్రాసెస్ చేస్తోంది... (ఈ పేజీని మూసివేయడం ఇప్పుడు సురక్షితం)", + "uploader.queue-length": "క్యూ పొడవు", + "virtual-metadata.delete-item.info": "వాస్తవ మెటాడేటాగా సేవ్ చేయాలనుకున్న వర్చువల్ మెటాడేటా రకాలను ఎంచుకోండి", + "virtual-metadata.delete-item.modal-head": "ఈ సంబంధం యొక్క వర్చువల్ మెటాడేటా", + "virtual-metadata.delete-relationship.modal-head": "వాస్తవ మెటాడేటాగా సేవ్ చేయాలనుకున్న వర్చువల్ మెటాడేటా ఉన్న అంశాలను ఎంచుకోండి", + "supervisedWorkspace.search.results.head": "సూపర్వైజ్ చేయబడిన అంశాలు", + "workspace.search.results.head": "మీ సమర్పణలు", + "workflowAdmin.search.results.head": "వర్క్‌ఫ్లోని నిర్వహించండి", + "workflow.search.results.head": "వర్క్‌ఫ్లో టాస్క్‌లు", + "supervision.search.results.head": "వర్క్‌ఫ్లో మరియు వర్క్‌స్పేస్ టాస్క్‌లు", + "workflow-item.edit.breadcrumbs": "వర్క్‌ఫ్లోఅంశాన్ని సవరించండి", + "workflow-item.edit.title": "వర్క్‌ఫ్లోఅంశాన్ని సవరించండి", + "workflow-item.delete.notification.success.title": "తొలగించబడింది", + "workflow-item.delete.notification.success.content": "ఈ వర్క్‌ఫ్లో అంశం విజయవంతంగా తొలగించబడింది", + "workflow-item.delete.notification.error.title": "ఏదో తప్పు జరిగింది", + "workflow-item.delete.notification.error.content": "వర్క్‌ఫ్లో అంశాన్ని తొలగించలేకపోయాం", + "workflow-item.delete.title": "వర్క్ఫ్లో అంశాన్ని తొలగించు", + "workflow-item.delete.header": "వర్క్ఫ్లో అంశాన్ని తొలగించు", + "workflow-item.delete.button.cancel": "రద్దు చేయి", + "workflow-item.delete.button.confirm": "తొలగించు", + "workflow-item.send-back.notification.success.title": "సమర్పించినవారికి తిరిగి పంపబడింది", + "workflow-item.send-back.notification.success.content": "ఈ వర్క్ఫ్లో అంశం విజయవంతంగా సమర్పించినవారికి తిరిగి పంపబడింది", + "workflow-item.send-back.notification.error.title": "ఏదో తప్పు జరిగింది", + "workflow-item.send-back.notification.error.content": "వర్క్ఫ్లో అంశాన్ని సమర్పించినవారికి తిరిగి పంపలేకపోయాము", + "workflow-item.send-back.title": "వర్క్ఫ్లో అంశాన్ని సమర్పించినవారికి తిరిగి పంపండి", + "workflow-item.send-back.header": "వర్క్ఫ్లో అంశాన్ని సమర్పించినవారికి తిరిగి పంపండి", + "workflow-item.send-back.button.cancel": "రద్దు చేయి", + "workflow-item.send-back.button.confirm": "తిరిగి పంపండి", + "workflow-item.view.breadcrumbs": "వర్క్ఫ్లో వీక్షణ", + "workspace-item.view.breadcrumbs": "వర్క్స్పేస్ వీక్షణ", + "workspace-item.view.title": "వర్క్స్పేస్ వీక్షణ", + "workspace-item.delete.breadcrumbs": "వర్క్స్పేస్ తొలగింపు", + "workspace-item.delete.header": "వర్క్స్పేస్ అంశాన్ని తొలగించు", + "workspace-item.delete.button.confirm": "తొలగించు", + "workspace-item.delete.button.cancel": "రద్దు చేయి", + "workspace-item.delete.notification.success.title": "తొలగించబడింది", + "workspace-item.delete.title": "ఈ వర్క్స్పేస్ అంశం విజయవంతంగా తొలగించబడింది", + "workspace-item.delete.notification.error.title": "ఏదో తప్పు జరిగింది", + "workspace-item.delete.notification.error.content": "వర్క్స్పేస్ అంశాన్ని తొలగించలేకపోయాము", + "workflow-item.advanced.title": "అధునాతన వర్క్ఫ్లో", + "workflow-item.selectrevieweraction.notification.success.title": "సమీక్షకుడు ఎంపిక చేయబడ్డారు", + "workflow-item.selectrevieweraction.notification.success.content": "ఈ వర్క్ఫ్లో అంశానికి సమీక్షకుడు విజయవంతంగా ఎంపిక చేయబడ్డారు", + "workflow-item.selectrevieweraction.notification.error.title": "ఏదో తప్పు జరిగింది", + "workflow-item.selectrevieweraction.notification.error.content": "ఈ వర్క్ఫ్లో అంశానికి సమీక్షకుడిని ఎంచుకోలేకపోయాము", + "workflow-item.selectrevieweraction.title": "సమీక్షకుడిని ఎంచుకోండి", + "workflow-item.selectrevieweraction.header": "సమీక్షకుడిని ఎంచుకోండి", + "workflow-item.selectrevieweraction.button.cancel": "రద్దు చేయి", + "workflow-item.selectrevieweraction.button.confirm": "నిర్ధారించండి", + "workflow-item.scorereviewaction.notification.success.title": "రేటింగ్ సమీక్ష", + "workflow-item.scorereviewaction.notification.success.content": "ఈ వర్క్ఫ్లో అంశానికి రేటింగ్ విజయవంతంగా సమర్పించబడింది", + "workflow-item.scorereviewaction.notification.error.title": "ఏదో తప్పు జరిగింది", + "workflow-item.scorereviewaction.notification.error.content": "ఈ అంశాన్ని రేట్ చేయలేకపోయాము", + "workflow-item.scorereviewaction.title": "ఈ అంశాన్ని రేట్ చేయండి", + "workflow-item.scorereviewaction.header": "ఈ అంశాన్ని రేట్ చేయండి", + "workflow-item.scorereviewaction.button.cancel": "రద్దు చేయి", + "workflow-item.scorereviewaction.button.confirm": "నిర్ధారించండి", + "idle-modal.header": "సెషన్ త్వరలో ముగుస్తుంది", + "idle-modal.info": "భద్రతా కారణాల వల్ల, వినియోగదారు సెషన్లు {{ timeToExpire }} నిమిషాల నిష్క్రియాత్వం తర్వాత ముగుస్తాయి. మీ సెషన్ త్వరలో ముగుస్తుంది. మీరు దాన్ని పొడిగించాలనుకుంటున్నారా లేదా లాగ్ అవుట్ అవాలనుకుంటున్నారా?", + "idle-modal.log-out": "లాగ్ అవుట్", + "idle-modal.extend-session": "సెషన్ పొడిగించు", + "researcher.profile.action.processing": "ప్రాసెస్ చేస్తోంది...", + "researcher.profile.associated": "రిసెర్చర్ ప్రొఫైల్ అనుబంధించబడింది", + "researcher.profile.change-visibility.fail": "ప్రొఫైల్ దృశ్యమానతను మార్చడంలో అనుకోని లోపం సంభవించింది", + "researcher.profile.create.new": "క్రొత్తది సృష్టించు", + "researcher.profile.create.success": "రిసెర్చర్ ప్రొఫైల్ విజయవంతంగా సృష్టించబడింది", + "researcher.profile.create.fail": "రిసెర్చర్ ప్రొఫైల్ సృష్టించడంలో లోపం సంభవించింది", + "researcher.profile.delete": "తొలగించు", + "researcher.profile.expose": "బహిర్గతం చేయి", + "researcher.profile.hide": "దాచు", + "researcher.profile.not.associated": "రిసెర్చర్ ప్రొఫైల్ ఇంకా అనుబంధించబడలేదు", + "researcher.profile.view": "చూడండి", + "researcher.profile.private.visibility": "ప్రైవేట్", + "researcher.profile.public.visibility": "పబ్లిక్", + "researcher.profile.status": "స్థితి:", + "researcherprofile.claim.not-authorized": "మీరు ఈ అంశాన్ని క్లెయిమ్ చేయడానికి అధికారం లేదు. మరిన్ని వివరాల కోసం నిర్వాహక(ల)ని సంప్రదించండి.", + "researcherprofile.error.claim.body": "ప్రొఫైల్ క్లెయిమ్ చేస్తున్నప్పుడు లోపం సంభవించింది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి", + "researcherprofile.error.claim.title": "లోపం", + "researcherprofile.success.claim.body": "ప్రొఫైల్ విజయవంతంగా క్లెయిమ్ చేయబడింది", + "researcherprofile.success.claim.title": "విజయం", + "person.page.orcid.create": "ORCID ID సృష్టించు", + "person.page.orcid.granted-authorizations": "మంజూరు చేసిన అధికారాలు", + "person.page.orcid.grant-authorizations": "అధికారాలు మంజూరు చేయి", + "person.page.orcid.link": "ORCID IDకి కనెక్ట్ చేయి", + "person.page.orcid.link.processing": "ORCIDకి ప్రొఫైల్ లింక్ చేస్తోంది...", + "person.page.orcid.link.error.message": "ORCIDతో ప్రొఫైల్ను కనెక్ట్ చేస్తున్నప్పుడు ఏదో తప్పు జరిగింది. సమస్య కొనసాగితే, నిర్వాహకుని సంప్రదించండి.", + "person.page.orcid.orcid-not-linked-message": "ఈ ప్రొఫైల్ యొక్క ORCID iD ({{ orcid }}) ఇంకా ORCID రిజిస్ట్రీతో కనెక్ట్ కాలేదు లేదా కనెక్షన్ కాలంచెల్లింది.", + "person.page.orcid.unlink": "ORCID నుండి డిస్కనెక్ట్ చేయి", + "person.page.orcid.unlink.processing": "ప్రాసెస్ చేస్తోంది...", + "person.page.orcid.missing-authorizations": "తప్పిపోయిన అధికారాలు", + "person.page.orcid.missing-authorizations-message": "ఈ క్రింది అధికారాలు తప్పిపోయాయి:", + "person.page.orcid.no-missing-authorizations-message": "అద్భుతం! ఈ బాక్స్ ఖాళీగా ఉంది, కాబట్టి మీరు మీ సంస్థ అందించే అన్ని ఫంక్షన్లను ఉపయోగించడానికి అన్ని యాక్సెస్ హక్కులను మంజూరు చేసారు.", + "person.page.orcid.no-orcid-message": "ఇంకా ORCID iD అనుబంధించబడలేదు. క్రింది బటన్ పై క్లిక్ చేయడం ద్వారా ఈ ప్రొఫైల్ను ORCID ఖాతాతో లింక్ చేయడం సాధ్యమవుతుంది.", + "person.page.orcid.profile-preferences": "ప్రొఫైల్ ప్రాధాన్యతలు", + "person.page.orcid.funding-preferences": "ఫండింగ్ ప్రాధాన్యతలు", + "person.page.orcid.publications-preferences": "ప్రచురణ ప్రాధాన్యతలు", + "person.page.orcid.remove-orcid-message": "మీరు మీ ORCIDని తీసివేయాలనుకుంటే, దయచేసి రిపోజిటరీ నిర్వాహకుని సంప్రదించండి", + "person.page.orcid.save.preference.changes": "సెట్టింగ్లను అప్డేట్ చేయి", + "person.page.orcid.sync-profile.affiliation": "అఫిలియేషన్", + "person.page.orcid.sync-profile.biographical": "జీవిత చరిత్ర డేటా", + "person.page.orcid.sync-profile.education": "విద్య", + "person.page.orcid.sync-profile.identifiers": "ఐడెంటిఫైయర్లు", + "person.page.orcid.sync-fundings.all": "అన్ని ఫండింగ్లు", + "person.page.orcid.sync-fundings.mine": "నా ఫండింగ్లు", + "person.page.orcid.sync-fundings.my_selected": "ఎంచుకున్న ఫండింగ్లు", + "person.page.orcid.sync-fundings.disabled": "డిసేబుల్ చేయబడింది", + "person.page.orcid.sync-publications.all": "అన్ని ప్రచురణలు", + "person.page.orcid.sync-publications.mine": "నా ప్రచురణలు", + "person.page.orcid.sync-publications.my_selected": "ఎంచుకున్న ప్రచురణలు", + "person.page.orcid.sync-publications.disabled": "డిసేబుల్ చేయబడింది", + "person.page.orcid.sync-queue.discard": "మార్పును విస్మరించండి మరియు ORCID రిజిస్ట్రీతో సింక్రొనైజ్ చేయకండి", + "person.page.orcid.sync-queue.discard.error": "ORCID క్యూ రికార్డ్ విస్మరించడంలో విఫలమైంది", + "person.page.orcid.sync-queue.discard.success": "ORCID క్యూ రికార్డ్ విజయవంతంగా విస్మరించబడింది", + "person.page.orcid.sync-queue.empty-message": "ORCID క్యూ రిజిస్ట్రీ ఖాళీగా ఉంది", + "person.page.orcid.sync-queue.table.header.type": "రకం", + "person.page.orcid.sync-queue.table.header.description": "వివరణ", + "person.page.orcid.sync-queue.table.header.action": "చర్య", + "person.page.orcid.sync-queue.description.affiliation": "అఫిలియేషన్లు", + "person.page.orcid.sync-queue.description.country": "దేశం", + "person.page.orcid.sync-queue.description.education": "విద్య", + "person.page.orcid.sync-queue.description.external_ids": "బాహ్య ఐడిలు", + "person.page.orcid.sync-queue.description.other_names": "ఇతర పేర్లు", + "person.page.orcid.sync-queue.description.qualification": "క్వాలిఫికేషన్లు", + "person.page.orcid.sync-queue.description.researcher_urls": "రిసెర్చర్ URLలు", + "person.page.orcid.sync-queue.description.keywords": "కీలక పదాలు", + "person.page.orcid.sync-queue.tooltip.insert": "ORCID రిజిస్ట్రీలో క్రొత్త ఎంట్రీని జోడించండి", + "person.page.orcid.sync-queue.tooltip.update": "ORCID రిజిస్ట్రీలో ఈ ఎంట్రీని అప్డేట్ చేయండి", + "person.page.orcid.sync-queue.tooltip.delete": "ORCID రిజిస్ట్రీ నుండి ఈ ఎంట్రీని తీసివేయండి", + "person.page.orcid.sync-queue.tooltip.publication": "ప్రచురణ", + "person.page.orcid.sync-queue.tooltip.project": "ప్రాజెక్ట్", + "person.page.orcid.sync-queue.tooltip.affiliation": "అఫిలియేషన్", + "person.page.orcid.sync-queue.tooltip.education": "విద్య", + "person.page.orcid.sync-queue.tooltip.qualification": "క్వాలిఫికేషన్", + "person.page.orcid.sync-queue.tooltip.other_names": "ఇతర పేరు", + "person.page.orcid.sync-queue.tooltip.country": "దేశం", + "person.page.orcid.sync-queue.tooltip.keywords": "కీలక పదం", + "person.page.orcid.sync-queue.tooltip.external_ids": "బాహ్య ఐడెంటిఫైయర్", + "person.page.orcid.sync-queue.tooltip.researcher_urls": "రిసెర్చర్ URL", + "person.page.orcid.sync-queue.send": "ORCID రిజిస్ట్రీతో సింక్రొనైజ్ చేయండి", + "person.page.orcid.sync-queue.send.unauthorized-error.title": "తప్పిపోయిన అధికారాల కారణంగా ORCIDకి సమర్పణ విఫలమైంది.", + "person.page.orcid.sync-queue.send.unauthorized-error.content": "అవసరమైన అనుమతులను మళ్లీ మంజూరు చేయడానికి ఇక్కడ క్లిక్ చేయండి. సమస్య కొనసాగితే, నిర్వాహకుని సంప్రదించండి", + "person.page.orcid.sync-queue.send.bad-request-error": "ORCID రిజిస్ట్రీకి పంపిన రిసోర్స్ చెల్లదు కాబట్టి ORCIDకి సమర్పణ విఫలమైంది", + "person.page.orcid.sync-queue.send.error": "ORCIDకి సమర్పణ విఫలమైంది", + "person.page.orcid.sync-queue.send.conflict-error": "రిసోర్స్ ఇప్పటికే ORCID రిజిస్ట్రీలో ఉన్నందున ORCIDకి సమర్పణ విఫలమైంది", + "person.page.orcid.sync-queue.send.not-found-warning": "రిసోర్స్ ఇకపై ORCID రిజిస్ట్రీలో లేదు.", + "person.page.orcid.sync-queue.send.success": "ORCIDకి సమర్పణ విజయవంతంగా పూర్తయింది", + "person.page.orcid.sync-queue.send.validation-error": "మీరు ORCIDతో సింక్రొనైజ్ చేయాలనుకున్న డేటా చెల్లదు", + "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "మొత్తం కరెన్సీ అవసరం", + "person.page.orcid.sync-queue.send.validation-error.external-id.required": "పంపబడే రిసోర్స్కు కనీసం ఒక ఐడెంటిఫైయర్ అవసరం", + "person.page.orcid.sync-queue.send.validation-error.title.required": "టైటిల్ అవసరం", + "person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type అవసరం", + "person.page.orcid.sync-queue.send.validation-error.start-date.required": "ప్రారంభ తేదీ అవసరం", + "person.page.orcid.sync-queue.send.validation-error.funder.required": "ఫండర్ అవసరం", + "person.page.orcid.sync-queue.send.validation-error.country.invalid": "చెల్లని 2 అంకెల ISO 3166 దేశం", + "person.page.orcid.sync-queue.send.validation-error.organization.required": "సంస్థ అవసరం", + "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "సంస్థ పేరు అవసరం", + "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "పంపబడే సంస్థకు చిరునామా అవసరం", + "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "పంపబడే సంస్థ చిరునామాకు నగరం అవసరం", + "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "పంపబడే సంస్థ చిరునామాకు చెల్లుబాటు అయ్యే 2 అంకెల ISO 3166 దేశం అవసరం", + "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "సంస్థలను వివక్షత చేయడానికి ఒక ఐడెంటిఫైయర్ అవసరం. మద్దతు ఇచ్చే ఐడిలు GRID, Ringgold, లీగల్ ఎంటిటీ ఐడెంటిఫైయర్లు (LEIs) మరియు Crossref Funder రిజిస్ట్రీ ఐడెంటిఫైయర్లు", + "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "సంస్థ ఐడెంటిఫైయర్లకు విలువ అవసరం", + "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "సంస్థ ఐడెంటిఫైయర్లకు సోర్స్ అవసరం", + "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "సంస్థ ఐడెంటిఫైయర్లలో ఒకదాని సోర్స్ చెల్లదు. మద్దతు ఇచ్చే సోర్స్లు RINGGOLD, GRID, LEI మరియు FUNDREF", + "person.page.orcid.synchronization-mode": "సింక్రొనైజేషన్ మోడ్", + "person.page.orcid.synchronization-mode.batch": "బ్యాచ్", + "person.page.orcid.synchronization-mode.label": "సింక్రొనైజేషన్ మోడ్", + "person.page.orcid.synchronization-mode-message": "ORCIDతో సింక్రొనైజేషన్ ఎలా జరగాలనుకుంటున్నారో దయచేసి ఎంచుకోండి. ఎంపికలలో \"మాన్యువల్\" (మీరు మీ డేటాను ORCIDకి మాన్యువల్గా పంపాలి), లేదా \"బ్యాచ్\" (సిస్టమ్ షెడ్యూల్డ్ స్క్రిప్ట్ ద్వారా మీ డేటాను ORCIDకి పంపుతుంది).", + "person.page.orcid.synchronization-mode-funding-message": "మీరు లింక్ చేసిన ప్రాజెక్ట్ ఎంటిటీలను మీ ORCID రికార్డ్ యొక్క ఫండింగ్ సమాచార జాబితాకు పంపాలనుకుంటున్నారో లేదో ఎంచుకోండి.", + "person.page.orcid.synchronization-mode-publication-message": "మీరు లింక్ చేసిన పబ్లికేషన్ ఎంటిటీలను మీ ORCID రికార్డ్ యొక్క వర్క్స్ జాబితాకు పంపాలనుకుంటున్నారో లేదో ఎంచుకోండి.", + "person.page.orcid.synchronization-mode-profile-message": "మీ జీవిత చరిత్ర డేటా లేదా వ్యక్తిగత ఐడెంటిఫైయర్లను మీ ORCID రికార్డ్కు పంపాలనుకుంటున్నారో లేదో ఎంచుకోండి.", + "person.page.orcid.synchronization-settings-update.success": "సింక్రొనైజేషన్ సెట్టింగ్లు విజయవంతంగా అప్డేట్ చేయబడ్డాయి", + "person.page.orcid.synchronization-settings-update.error": "సింక్రొనైజేషన్ సెట్టింగ్లను అప్డేట్ చేయడంలో విఫలమైంది", + "person.page.orcid.synchronization-mode.manual": "మాన్యువల్", + "person.page.orcid.scope.authenticate": "మీ ORCID iDని పొందండి", + "person.page.orcid.scope.read-limited": "ట్రస్టెడ్ పార్టీలకు దృశ్యమానంగా ఉండే మీ సమాచారాన్ని చదవండి", + "person.page.orcid.scope.activities-update": "మీ పరిశోధన కార్యకలాపాలను జోడించండి/అప్డేట్ చేయండి", + "person.page.orcid.scope.person-update": "మీ గురించి ఇతర సమాచారాన్ని జోడించండి/అప్డేట్ చేయండి", + "person.page.orcid.unlink.success": "ప్రొఫైల్ మరియు ORCID రిజిస్ట్రీ మధ్య డిస్కనెక్షన్ విజయవంతమైంది", + "person.page.orcid.unlink.error": "ప్రొఫైల్ మరియు ORCID రిజిస్ట్రీ మధ్య డిస్కనెక్ట్ చేస్తున్నప్పుడు లోపం సంభవించింది. మళ్లీ ప్రయత్నించండి", + "person.orcid.sync.setting": "ORCID సింక్రొనైజేషన్ సెట్టింగ్లు", + "person.orcid.registry.queue": "ORCID రిజిస్ట్రీ క్యూ", + "person.orcid.registry.auth": "ORCID అధికారాలు", + "person.orcid-tooltip.authenticated": "{{orcid}}", + "person.orcid-tooltip.not-authenticated": "{{orcid}} (నిర్ధారించబడలేదు)", + "home.recent-submissions.head": "ఇటీవలి సమర్పణలు", + "listable-notification-object.default-message": "ఈ వస్తువును పొందలేకపోయాము", + "system-wide-alert-banner.retrieval.error": "సిస్టమ్-వైడ్ అలర్ట్ బ్యానర్ పొందడంలో ఏదో తప్పు జరిగింది", + "system-wide-alert-banner.countdown.prefix": "లో", + "system-wide-alert-banner.countdown.days": "{{days}} రోజు(లు),", + "system-wide-alert-banner.countdown.hours": "{{hours}} గంట(లు) మరియు", + "system-wide-alert-banner.countdown.minutes": "{{minutes}} నిమిషం(లు):", + "menu.section.system-wide-alert": "సిస్టమ్-వైడ్ అలర్ట్", + "system-wide-alert.form.header": "సిస్టమ్-వైడ్ అలర్ట్", + "system-wide-alert-form.retrieval.error": "సిస్టమ్-వైడ్ అలర్ట్ పొందడంలో ఏదో తప్పు జరిగింది", + "system-wide-alert.form.cancel": "రద్దు చేయి", + "system-wide-alert.form.save": "సేవ్ చేయి", + "system-wide-alert.form.label.active": "యాక్టివ్", + "system-wide-alert.form.label.inactive": "ఇనాక్టివ్", + "system-wide-alert.form.error.message": "సిస్టమ్ వైడ్ అలర్ట్కు ఒక సందేశం ఉండాలి", + "system-wide-alert.form.label.message": "అలర్ట్ సందేశం", + "system-wide-alert.form.label.countdownTo.enable": "కౌంట్డౌన్ టైమర్ను ఎనేబుల్ చేయండి", + "system-wide-alert.form.label.countdownTo.hint": "హింట్: కౌంట్డౌన్ టైమర్ను సెట్ చేయండి. ఎనేబుల్ చేసినప్పుడు, భవిష్యత్తులో ఒక తేదీని సెట్ చేయవచ్చు మరియు సిస్టమ్-వైడ్ అలర్ట్ బ్యానర్ సెట్ చేసిన తేదీకి కౌంట్డౌన్ చేస్తుంది. ఈ టైమర్ ముగిసినప్పుడు, అది అలర్ట్ నుండి అదృశ్యమవుతుంది. సర్వర్ స్వయంచాలకంగా ఆగదు.", + "system-wide-alert-form.select-date-by-calendar": "క్యాలెండర్ ఉపయోగించి తేదీని ఎంచుకోండి", + "system-wide-alert.form.label.preview": "సిస్టమ్-వైడ్ అలర్ట్ ప్రివ్యూ", + "system-wide-alert.form.update.success": "సిస్టమ్-వైడ్ అలర్ట్ విజయవంతంగా అప్డేట్ చేయబడింది", + "system-wide-alert.form.update.error": "సిస్టమ్-వైడ్ అలర్ట్ను అప్డేట్ చేస్తున్నప్పుడు ఏదో తప్పు జరిగింది", + "system-wide-alert.form.create.success": "సిస్టమ్-వైడ్ అలర్ట్ విజయవంతంగా సృష్టించబడింది", + "system-wide-alert.form.create.error": "సిస్టమ్-వైడ్ అలర్ట్ను సృష్టించడంలో ఏదో తప్పు జరిగింది", + "admin.system-wide-alert.breadcrumbs": "సిస్టమ్-వైడ్ అలర్ట్స్", + "admin.system-wide-alert.title": "సిస్టమ్-వైడ్ అలర్ట్స్", + "discover.filters.head": "డిస్కవర్", + "item-access-control-title": "ఈ ఫారమ్ మీరు ఐటెమ్ యొక్క మెటాడేటా లేదా దాని బిట్స్ట్రీమ్ల యాక్సెస్ పరిస్థితులలో మార్పులు చేయడానికి అనుమతిస్తుంది.", + "collection-access-control-title": "ఈ ఫారమ్ మీరు ఈ కలెక్షన్ యాజమాన్యంలో ఉన్న అన్ని ఐటెమ్ల యాక్సెస్ పరిస్థితులలో మార్పులు చేయడానికి అనుమతిస్తుంది. మార్పులు అన్ని ఐటెమ్ మెటాడేటా లేదా అన్ని కంటెంట్ (బిట్స్ట్రీమ్స్)కు చేయవచ్చు.", + + "community-access-control-title": "ఈ ఫారమ్ ద్వారా మీరు ఈ కమ్యూనిటీ క్రింద ఉన్న ఏదైనా సేకరణ యాజమాన్యంలోని అన్ని అంశాల యాక్సెస్ పరిస్థితులను మార్చవచ్చు. మార్పులు అన్ని అంశాల మెటాడేటా లేదా అన్ని కంటెంట్ (బిట్స్ట్రీమ్స్)కు చేయవచ్చు.", + + "access-control-item-header-toggle": "అంశం యొక్క మెటాడేటా", + + "access-control-item-toggle.enable": "అంశం యొక్క మెటాడేటాలో మార్పులు చేయడానికి ఎంపికను ప్రారంభించండి", + + "access-control-item-toggle.disable": "అంశం యొక్క మెటాడేటాలో మార్పులు చేయడానికి ఎంపికను నిలిపివేయండి", + + "access-control-bitstream-header-toggle": "బిట్స్ట్రీమ్స్", + + "access-control-bitstream-toggle.enable": "బిట్స్ట్రీమ్స్లో మార్పులు చేయడానికి ఎంపికను ప్రారంభించండి", + + "access-control-bitstream-toggle.disable": "బిట్స్ట్రీమ్స్లో మార్పులు చేయడానికి ఎంపికను నిలిపివేయండి", + + "access-control-mode": "మోడ్", + + "access-control-access-conditions": "యాక్సెస్ పరిస్థితులు", + + "access-control-no-access-conditions-warning-message": "ప్రస్తుతం, క్రింద ఏ యాక్సెస్ పరిస్థితులు పేర్కొనబడలేదు. ఈ పనిని నిర్వహించినట్లయితే, ప్రస్తుత యాక్సెస్ పరిస్థితులు యాజమాన్య సేకరణ నుండి వారసత్వంగా వచ్చిన డిఫాల్ట్ యాక్సెస్ పరిస్థితులతో భర్తీ చేయబడతాయి.", + + "access-control-replace-all": "యాక్సెస్ పరిస్థితులను భర్తీ చేయండి", + + "access-control-add-to-existing": "ఇప్పటికే ఉన్నవాటికి జోడించండి", + + "access-control-limit-to-specific": "మార్పులను నిర్దిష్ట బిట్స్ట్రీమ్స్ కు పరిమితం చేయండి", + + "access-control-process-all-bitstreams": "అంశంలోని అన్ని బిట్స్ట్రీమ్స్ ను నవీకరించండి", + + "access-control-bitstreams-selected": "బిట్స్ట్రీమ్స్ ఎంపిక చేయబడ్డాయి", + + "access-control-bitstreams-select": "బిట్స్ట్రీమ్స్ ఎంచుకోండి", + + "access-control-cancel": "రద్దు చేయండి", + + "access-control-execute": "నిర్వహించండి", + + "access-control-add-more": "మరిన్ని జోడించండి", + + "access-control-remove": "యాక్సెస్ పరిస్థితిని తీసివేయండి", + + "access-control-select-bitstreams-modal.title": "బిట్స్ట్రీమ్స్ ఎంచుకోండి", + + "access-control-select-bitstreams-modal.no-items": "చూపించడానికి అంశాలు లేవు.", + + "access-control-select-bitstreams-modal.close": "మూసివేయండి", + + "access-control-option-label": "యాక్సెస్ పరిస్థితి రకం", + + "access-control-option-note": "ఎంచుకున్న వస్తువులకు వర్తించే యాక్సెస్ పరిస్థితిని ఎంచుకోండి.", + + "access-control-option-start-date": "యాక్సెస్ ఇవ్వండి", + + "access-control-option-start-date-note": "సంబంధిత యాక్సెస్ పరిస్థితి వర్తించే తేదీని ఎంచుకోండి", + + "access-control-option-end-date": "యాక్సెస్ ఇవ్వండి", + + "access-control-option-end-date-note": "సంబంధిత యాక్సెస్ పరిస్థితి వర్తించే తేదీని ఎంచుకోండి", + + "vocabulary-treeview.search.form.add": "జోడించండి", + + "admin.notifications.publicationclaim.breadcrumbs": "ప్రచురణ క్లెయిమ్", + + "admin.notifications.publicationclaim.page.title": "ప్రచురణ క్లెయిమ్", + + "coar-notify-support.title": "COAR నోటిఫై ప్రోటోకాల్", + + "coar-notify-support-title.content": "ఇక్కడ, మేము COAR నోటిఫై ప్రోటోకాల్‌కు పూర్తిగా మద్దతు ఇస్తున్నాము, ఇది రిపోజిటరీల మధ్య కమ్యూనికేషన్‌ను మెరుగుపరచడానికి రూపొందించబడింది. COAR నోటిఫై ప్రోటోకాల్ గురించి మరింత తెలుసుకోవడానికి, COAR నోటిఫై వెబ్‌సైట్ని సందర్శించండి.", + + "coar-notify-support.ldn-inbox.title": "LDN ఇన్‌బాక్స్", + + "coar-notify-support.ldn-inbox.content": "మీ సౌకర్యం కోసం, మా LDN (లింక్డ్ డేటా నోటిఫికేషన్స్) ఇన్‌బాక్స్ {{ ldnInboxUrl }} వద్ద సులభంగా అందుబాటులో ఉంది. LDN ఇన్‌బాక్స్ సమర్థవంతమైన మరియు ప్రభావవంతమైన సహకారాన్ని నిర్ధారిస్తూ, సుగమమైన కమ్యూనికేషన్ మరియు డేటా వినిమయాన్ని సాధ్యం చేస్తుంది.", + + "coar-notify-support.message-moderation.title": "సందేశ మోడరేషన్", + + "coar-notify-support.message-moderation.content": "సురక్షితమైన మరియు ఉత్పాదక వాతావరణాన్ని నిర్ధారించడానికి, అన్ని ఇన్‌కమింగ్ LDN సందేశాలు మోడరేట్ చేయబడతాయి. మీరు మాతో సమాచారాన్ని మార్పుకోవడానికి ప్రణాళికలు చేస్తుంటే, దయచేసి మా ప్రత్యేకమైన", + + "coar-notify-support.message-moderation.feedback-form": " ఫీడ్‌బ్యాక్ ఫారమ్ ద్వారా సంప్రదించండి.", + + "service.overview.delete.header": "సేవను తొలగించండి", + + "ldn-registered-services.title": "నమోదు చేసిన సేవలు", + "ldn-registered-services.table.name": "పేరు", + "ldn-registered-services.table.description": "వివరణ", + "ldn-registered-services.table.status": "స్థితి", + "ldn-registered-services.table.action": "చర్య", + "ldn-registered-services.new": "కొత్తది", + "ldn-registered-services.new.breadcrumbs": "నమోదు చేసిన సేవలు", + + "ldn-service.overview.table.enabled": "ప్రారంభించబడింది", + "ldn-service.overview.table.disabled": "నిలిపివేయబడింది", + "ldn-service.overview.table.clickToEnable": "ప్రారంభించడానికి క్లిక్ చేయండి", + "ldn-service.overview.table.clickToDisable": "నిలిపివేయడానికి క్లిక్ చేయండి", + + "ldn-edit-registered-service.title": "సేవను సవరించండి", + "ldn-create-service.title": "సేవను సృష్టించండి", + "service.overview.create.modal": "సేవను సృష్టించండి", + "service.overview.create.body": "దయచేసి ఈ సేవ సృష్టిని నిర్ధారించండి.", + "ldn-service-status": "స్థితి", + "service.confirm.create": "సృష్టించండి", + "service.refuse.create": "రద్దు చేయండి", + "ldn-register-new-service.title": "కొత్త సేవను నమోదు చేయండి", + "ldn-new-service.form.label.submit": "సేవ్ చేయండి", + "ldn-new-service.form.label.name": "పేరు", + "ldn-new-service.form.label.description": "వివరణ", + "ldn-new-service.form.label.url": "సేవ URL", + "ldn-new-service.form.label.ip-range": "సేవ IP పరిధి", + "ldn-new-service.form.label.score": "నమ్మకం స్థాయి", + "ldn-new-service.form.label.ldnUrl": "LDN ఇన్‌బాక్స్ URL", + "ldn-new-service.form.placeholder.name": "దయచేసి సేవ పేరును అందించండి", + "ldn-new-service.form.placeholder.description": "దయచేసి మీ సేవ గురించి వివరణ అందించండి", + "ldn-new-service.form.placeholder.url": "సేవ గురించి మరిన్ని సమాచారం తనిఖీ చేయడానికి URLని ఇన్‌పుట్ చేయండి", + "ldn-new-service.form.placeholder.lowerIp": "IPv4 పరిధి దిగువ పరిమితి", + "ldn-new-service.form.placeholder.upperIp": "IPv4 పరిధి ఎగువ పరిమితి", + "ldn-new-service.form.placeholder.ldnUrl": "దయచేసి LDN ఇన్‌బాక్స్ యొక్క URLని పేర్కొనండి", + "ldn-new-service.form.placeholder.score": "దయచేసి 0 మరియు 1 మధ్య విలువను నమోదు చేయండి. దశాంశ విభజనకు “.”ని ఉపయోగించండి", + "ldn-service.form.label.placeholder.default-select": "ఒక నమూనాను ఎంచుకోండి", + + "ldn-service.form.pattern.ack-accept.label": "ఆమోదించండి మరియు అంగీకరించండి", + "ldn-service.form.pattern.ack-accept.description": "ఈ నమూనా ఒక అభ్యర్థనను (ఆఫర్) ఆమోదించడానికి మరియు అంగీకరించడానికి ఉపయోగించబడుతుంది. ఇది అభ్యర్థనపై చర్య తీసుకోవడానికి ఉద్దేశాన్ని సూచిస్తుంది.", + "ldn-service.form.pattern.ack-accept.category": "ఆమోదాలు", + + "ldn-service.form.pattern.ack-reject.label": "ఆమోదించండి మరియు తిరస్కరించండి", + "ldn-service.form.pattern.ack-reject.description": "ఈ నమూనా ఒక అభ్యర్థనను (ఆఫర్) ఆమోదించడానికి మరియు తిరస్కరించడానికి ఉపయోగించబడుతుంది. ఇది అభ్యర్థనకు సంబంధించి మరింత చర్య లేదని సూచిస్తుంది.", + "ldn-service.form.pattern.ack-reject.category": "ఆమోదాలు", + + "ldn-service.form.pattern.ack-tentative-accept.label": "ఆమోదించండి మరియు తాత్కాలికంగా అంగీకరించండి", + "ldn-service.form.pattern.ack-tentative-accept.description": "ఈ నమూనా ఒక అభ్యర్థనను (ఆఫర్) ఆమోదించడానికి మరియు తాత్కాలికంగా అంగీకరించడానికి ఉపయోగించబడుతుంది. ఇది చర్య తీసుకోవడానికి ఉద్దేశాన్ని సూచిస్తుంది, ఇది మారవచ్చు.", + "ldn-service.form.pattern.ack-tentative-accept.category": "ఆమోదాలు", + + "ldn-service.form.pattern.ack-tentative-reject.label": "ఆమోదించండి మరియు తాత్కాలికంగా తిరస్కరించండి", + "ldn-service.form.pattern.ack-tentative-reject.description": "ఈ నమూనా ఒక అభ్యర్థనను (ఆఫర్) ఆమోదించడానికి మరియు తాత్కాలికంగా తిరస్కరించడానికి ఉపయోగించబడుతుంది. ఇది అభ్యర్థనకు సంబంధించి మరింత చర్య లేదని సూచిస్తుంది, ఇది మారవచ్చు.", + "ldn-service.form.pattern.ack-tentative-reject.category": "ఆమోదాలు", + + "ldn-service.form.pattern.announce-endorsement.label": "ఆమోదాన్ని ప్రకటించండి", + "ldn-service.form.pattern.announce-endorsement.description": "ఈ నమూనా ఒక ఆమోదం యొక్క ఉనికిని ప్రకటించడానికి ఉపయోగించబడుతుంది, ఆమోదించబడిన వనరును సూచిస్తుంది.", + "ldn-service.form.pattern.announce-endorsement.category": "ప్రకటనలు", + + "ldn-service.form.pattern.announce-ingest.label": "ఇంజెస్ట్‌ని ప్రకటించండి", + "ldn-service.form.pattern.announce-ingest.description": "ఈ నమూనా ఒక వనరు ఇంజెస్ట్ చేయబడినట్లు ప్రకటించడానికి ఉపయోగించబడుతుంది.", + "ldn-service.form.pattern.announce-ingest.category": "ప్రకటనలు", + + "ldn-service.form.pattern.announce-relationship.label": "సంబంధాన్ని ప్రకటించండి", + "ldn-service.form.pattern.announce-relationship.description": "ఈ నమూనా రెండు వనరుల మధ్య సంబంధాన్ని ప్రకటించడానికి ఉపయోగించబడుతుంది.", + "ldn-service.form.pattern.announce-relationship.category": "ప్రకటనలు", + + "ldn-service.form.pattern.announce-review.label": "సమీక్షను ప్రకటించండి", + "ldn-service.form.pattern.announce-review.description": "ఈ నమూనా ఒక సమీక్ష యొక్క ఉనికిని ప్రకటించడానికి ఉపయోగించబడుతుంది, సమీక్షించబడిన వనరును సూచిస్తుంది.", + "ldn-service.form.pattern.announce-review.category": "ప్రకటనలు", + + "ldn-service.form.pattern.announce-service-result.label": "సేవ ఫలితాన్ని ప్రకటించండి", + "ldn-service.form.pattern.announce-service-result.description": "ఈ నమూనా ఒక 'సేవ ఫలితం' యొక్క ఉనికిని ప్రకటించడానికి ఉపయోగించబడుతుంది, సంబంధిత వనరును సూచిస్తుంది.", + "ldn-service.form.pattern.announce-service-result.category": "ప్రకటనలు", + + "ldn-service.form.pattern.request-endorsement.label": "ఆమోదాన్ని అభ్యర్థించండి", + "ldn-service.form.pattern.request-endorsement.description": "ఈ నమూనా ఒరిజిన్ సిస్టమ్ యాజమాన్యంలోని వనరు యొక్క ఆమోదాన్ని అభ్యర్థించడానికి ఉపయోగించబడుతుంది.", + "ldn-service.form.pattern.request-endorsement.category": "అభ్యర్థనలు", + + "ldn-service.form.pattern.request-ingest.label": "ఇంజెస్ట్‌ను అభ్యర్థించండి", + "ldn-service.form.pattern.request-ingest.description": "ఈ నమూనా టార్గెట్ సిస్టమ్ ఒక వనరును ఇంజెస్ట్ చేయాలని అభ్యర్థించడానికి ఉపయోగించబడుతుంది.", + "ldn-service.form.pattern.request-ingest.category": "అభ్యర్థనలు", + + "ldn-service.form.pattern.request-review.label": "సమీక్షను అభ్యర్థించండి", + "ldn-service.form.pattern.request-review.description": "ఈ నమూనా ఒరిజిన్ సిస్టమ్ యాజమాన్యంలోని వనరు యొక్క సమీక్షను అభ్యర్థించడానికి ఉపయోగించబడుతుంది.", + "ldn-service.form.pattern.request-review.category": "అభ్యర్థనలు", + + "ldn-service.form.pattern.undo-offer.label": "ఆఫర్‌ను రద్దు చేయండి", + "ldn-service.form.pattern.undo-offer.description": "ఈ నమూనా మునుపు చేసిన ఆఫర్‌ను (రిట్రాక్ట్) రద్దు చేయడానికి ఉపయోగించబడుతుంది.", + "ldn-service.form.pattern.undo-offer.category": "రద్దు చేయండి", + + "ldn-new-service.form.label.placeholder.selectedItemFilter": "అంశం ఫిల్టర్ ఎంపిక చేయబడలేదు", + "ldn-new-service.form.label.ItemFilter": "అంశం ఫిల్టర్", + "ldn-new-service.form.label.automatic": "స్వయంచాలక", + "ldn-new-service.form.error.name": "పేరు అవసరం", + "ldn-new-service.form.error.url": "URL అవసరం", + "ldn-new-service.form.error.ipRange": "దయచేసి సరైన IP పరిధిని నమోదు చేయండి", + "ldn-new-service.form.hint.ipRange": "దయచేసి రెండు పరిధి పరిమితులలో సరైన IpV4ని నమోదు చేయండి (గమనిక: ఒకే IP కోసం, దయచేసి రెండు ఫీల్డ్‌లలో ఒకే విలువను నమోదు చేయండి)", + "ldn-new-service.form.error.ldnurl": "LDN URL అవసరం", + "ldn-new-service.form.error.patterns": "కనీసం ఒక నమూనా అవసరం", + "ldn-new-service.form.error.score": "దయచేసి సరైన స్కోర్‌ను నమోదు చేయండి (0 మరియు 1 మధ్య). దశాంశ విభజనకు “.”ని ఉపయోగించండి", + + "ldn-new-service.form.label.inboundPattern": "మద్దతు ఉన్న నమూనా", + "ldn-new-service.form.label.addPattern": "+ మరిన్ని జోడించండి", + "ldn-new-service.form.label.removeItemFilter": "తొలగించండి", + "ldn-register-new-service.breadcrumbs": "కొత్త సేవ", + "service.overview.delete.body": "మీరు ఖచ్చితంగా ఈ సేవను తొలగించాలనుకుంటున్నారా?", + "service.overview.edit.body": "మీరు మార్పులను నిర్ధారిస్తున్నారా?", + "service.overview.edit.modal": "సేవను సవరించండి", + "service.detail.update": "నిర్ధారించండి", + "service.detail.return": "రద్దు చేయండి", + "service.overview.reset-form.body": "మీరు మార్పులను విస్మరించి వెళ్లాలనుకుంటున్నారా?", + "service.overview.reset-form.modal": "మార్పులను విస్మరించండి", + "service.overview.reset-form.reset-confirm": "విస్మరించండి", + "admin.registries.services-formats.modify.success.head": "విజయవంతమైన సవరణ", + "admin.registries.services-formats.modify.success.content": "సేవ సవరించబడింది", + "admin.registries.services-formats.modify.failure.head": "సవరణ విఫలమైంది", + "admin.registries.services-formats.modify.failure.content": "సేవ సవరించబడలేదు", + "ldn-service-notification.created.success.title": "విజయవంతమైన సృష్టి", + "ldn-service-notification.created.success.body": "సేవ సృష్టించబడింది", + "ldn-service-notification.created.failure.title": "సృష్టి విఫలమైంది", + "ldn-service-notification.created.failure.body": "సేవ సృష్టించబడలేదు", + "ldn-service-notification.created.warning.title": "దయచేసి కనీసం ఒక ఇన్‌బౌండ్ నమూనాను ఎంచుకోండి", + "ldn-enable-service.notification.success.title": "విజయవంతమైన స్థితి నవీకరణ", + "ldn-enable-service.notification.success.content": "సేవ స్థితి నవీకరించబడింది", + "ldn-service-delete.notification.success.title": "విజయవంతమైన తొలగింపు", + "ldn-service-delete.notification.success.content": "సేవ తొలగించబడింది", + "ldn-service-delete.notification.error.title": "తొలగింపు విఫలమైంది", + "ldn-service-delete.notification.error.content": "సేవ తొలగించబడలేదు", + "service.overview.reset-form.reset-return": "రద్దు చేయండి", + "service.overview.delete": "సేవను తొలగించండి", + "ldn-edit-service.title": "సేవను సవరించండి", + "ldn-edit-service.form.label.name": "పేరు", + "ldn-edit-service.form.label.description": "వివరణ", + "ldn-edit-service.form.label.url": "సేవ URL", + "ldn-edit-service.form.label.ldnUrl": "LDN ఇన్‌బాక్స్ URL", + "ldn-edit-service.form.label.inboundPattern": "ఇన్‌బౌండ్ నమూనా", + "ldn-edit-service.form.label.noInboundPatternSelected": "ఇన్‌బౌండ్ నమూనా లేదు", + "ldn-edit-service.form.label.selectedItemFilter": "ఎంపిక చేసిన అంశం ఫిల్టర్", + "ldn-edit-service.form.label.selectItemFilter": "అంశం ఫిల్టర్ లేదు", + "ldn-edit-service.form.label.automatic": "స్వయంచాలక", + "ldn-edit-service.form.label.addInboundPattern": "+ మరిన్ని జోడించండి", + "ldn-edit-service.form.label.submit": "సేవ్ చేయండి", + "ldn-edit-service.breadcrumbs": "సేవను సవరించండి", + "ldn-service.control-constaint-select-none": "ఏదీ ఎంచుకోకండి", + + "ldn-register-new-service.notification.error.title": "లోపం", + "ldn-register-new-service.notification.error.content": "ఈ ప్రక్రియను సృష్టించే సమయంలో లోపం సంభవించింది", + "ldn-register-new-service.notification.success.title": "విజయం", + "ldn-register-new-service.notification.success.content": "ప్రక్రియ విజయవంతంగా సృష్టించబడింది", + + "submission.sections.notify.info": "ఎంపిక చేసిన సేవ ప్రస్తుత స్థితి ప్రకారం అంశంతో అనుకూలంగా ఉంది. {{ service.name }}: {{ service.description }}", + + "item.page.endorsement": "ఆమోదం", + + "item.page.places": "సంబంధిత స్థలాలు", + + "item.page.review": "సమీక్ష", + + "item.page.referenced": "సూచించబడింది", + + "item.page.supplemented": "సప్లిమెంట్ చేయబడింది", + + "menu.section.icon.ldn_services": "LDN సేవల అవలోకనం", + + "menu.section.services": "LDN సేవలు", + + "menu.section.services_new": "LDN సేవ", + + "quality-assurance.topics.description-with-target": "క్రింద మీరు {{source}}కు సభ్యత్వాల నుండి అందుకున్న అన్ని అంశాలను చూడవచ్చు, ఇవి సంబంధించినవి", + + "quality-assurance.events.description": "ఎంపిక చేసిన అంశం {{topic}} కోసం అన్ని సూచనల జాబితా క్రింద ఉంది, ఇది {{source}}కు సంబంధించినది.", + + "quality-assurance.events.description-with-topic-and-target": "ఎంపిక చేసిన అంశం {{topic}} కోసం అన్ని సూచనల జాబితా క్రింద ఉంది, ఇది {{source}}కు సంబంధించినది మరియు ", + + "quality-assurance.event.table.event.message.serviceUrl": "నటుడు:", + + "quality-assurance.event.table.event.message.link": "లింక్:", + + "service.detail.delete.cancel": "రద్దు చేయండి", + + "service.detail.delete.button": "సేవను తొలగించండి", + + "service.detail.delete.header": "సేవను తొలగించండి", + + "service.detail.delete.body": "మీరు ఖచ్చితంగా ప్రస్తుత సేవను తొలగించాలనుకుంటున్నారా?", + + "service.detail.delete.confirm": "సేవను తొలగించండి", + + "service.detail.delete.success": "సేవ విజయవంతంగా తొలగించబడింది.", + + "service.detail.delete.error": "సేవను తొలగించే సమయంలో ఏదో తప్పు జరిగింది", + + "service.overview.table.id": "సేవల ID", + + "service.overview.table.name": "పేరు", + + "service.overview.table.start": "ప్రారంభ సమయం (UTC)", + + "service.overview.table.status": "స్థితి", + + "service.overview.table.user": "వినియోగదారు", + + "service.overview.table.actions": "చర్యలు", + + "service.overview.table.description": "వివరణ", + + "service.overview.title": "సేవల అవలోకనం", + + "service.overview.breadcrumbs": "సేవల అవలోకనం", + + "submission.sections.submit.progressbar.coarnotify": "COAR నోటిఫై", + + "submission.section.section-coar-notify.control.request-review.label": "మీరు క్రింది సేవలలో ఒకదానికి సమీక్షను అభ్యర్థించవచ్చు", + + "submission.section.section-coar-notify.control.request-endorsement.label": "మీరు క్రింది ఓవర్లే జర్నల్‌లకు ఆమోదాన్ని అభ్యర్థించవచ్చు", + + "submission.section.section-coar-notify.control.request-ingest.label": "మీరు మీ సబ్‌మిషన్‌కు కాపీని ఇంజెస్ట్ చేయాలని క్రింది సేవలలో ఒకదానికి అభ్యర్థించవచ్చు", + + "submission.section.section-coar-notify.dropdown.no-data": "డేటా అందుబాటులో లేదు", + + "submission.section.section-coar-notify.dropdown.select-none": "ఏదీ ఎంచుకోకండి", + + "submission.section.section-coar-notify.small.notification": "ఈ అంశం యొక్క {{ pattern }} కోసం ఒక సేవను ఎంచుకోండి", + + "submission.section.section-coar-notify.selection.description": "ఎంచుకున్న సేవ యొక్క వివరణ:", + + "submission.section.section-coar-notify.selection.no-description": "మరిన్ని సమాచారం అందుబాటులో లేదు", + + "submission.section.section-coar-notify.notification.error": "ఎంచుకున్న సేవ ప్రస్తుత అంశానికి అనుకూలంగా లేదు. దయచేసి ఈ సేవ ద్వారా నిర్వహించబడే రికార్డ్ గురించి వివరాల కోసం వివరణను తనిఖీ చేయండి.", + + "submission.section.section-coar-notify.info.no-pattern": "కాన్ఫిగర్ చేయదగిన నమూనాలు కనుగొనబడలేదు.", + + "error.validation.coarnotify.invalidfilter": "చెల్లని ఫిల్టర్, దయచేసి మరొక సేవను లేదా ఏదీ ఎంచుకోకుండా ప్రయత్నించండి.", + + "request-status-alert-box.accepted": "{{ offerType }} కోసం అభ్యర్థించిన {{ serviceName }} ను స్వీకరించారు.", + + "request-status-alert-box.rejected": "{{ offerType }} కోసం అభ్యర్థించిన {{ serviceName }} ను తిరస్కరించారు.", + + "request-status-alert-box.tentative_rejected": "{{ offerType }} కోసం అభ్యర్థించిన {{ serviceName }} ను తాత్కాలికంగా తిరస్కరించారు. సవరణలు అవసరం", + + "request-status-alert-box.requested": "{{ offerType }} కోసం అభ్యర్థించిన {{ serviceName }} పెండింగ్‌లో ఉంది.", + + "ldn-service-button-mark-inbound-deletion": "డిలీషన్ కోసం మద్దతు ఇచ్చిన నమూనాను మార్క్ చేయండి", + + "ldn-service-button-unmark-inbound-deletion": "డిలీషన్ కోసం మద్దతు ఇచ్చిన నమూనాను అన్‌మార్క్ చేయండి", + + "ldn-service-input-inbound-item-filter-dropdown": "నమూనా కోసం అంశం ఫిల్టర్‌ను ఎంచుకోండి", + + "ldn-service-input-inbound-pattern-dropdown": "సేవ కోసం ఒక నమూనాను ఎంచుకోండి", + + "ldn-service-overview-select-delete": "డిలీషన్ కోసం సేవను ఎంచుకోండి", + + "ldn-service-overview-select-edit": "LDN సేవను సవరించండి", + + "ldn-service-overview-close-modal": "మోడల్‌ను మూసివేయండి", + + "ldn-service-usesActorEmailId": "నోటిఫికేషన్‌లలో నటుని ఇమెయిల్ అవసరం", + + "ldn-service-usesActorEmailId-description": "ఒకవేళ ఎనేబుల్ చేస్తే, పంపబడిన ప్రారంభ నోటిఫికేషన్‌లలో రిపోజిటరీ URL కు బదులుగా సబ్మిటర్ ఇమెయిల్ ఉంటుంది. ఇది సాధారణంగా ఎండోర్స్‌మెంట్ లేదా రివ్యూ సేవలకు వర్తిస్తుంది.", + + "a-common-or_statement.label": "అంశం రకం జర్నల్ ఆర్టికల్ లేదా డేటాసెట్", + + "always_true_filter.label": "ఎల్లప్పుడూ నిజం", + + "automatic_processing_collection_filter_16.label": "స్వయంచాలక ప్రాసెసింగ్", + + "dc-identifier-uri-contains-doi_condition.label": "URIలో DOI ఉంది", + + "doi-filter.label": "DOI ఫిల్టర్", + + "driver-document-type_condition.label": "డాక్యుమెంట్ రకం డ్రైవర్‌కు సమానం", + + "has-at-least-one-bitstream_condition.label": "కనీసం ఒక బిట్‌స్ట్రీమ్ ఉంది", + + "has-bitstream_filter.label": "బిట్‌స్ట్రీమ్ ఉంది", + + "has-one-bitstream_condition.label": "ఒక బిట్‌స్ట్రీమ్ ఉంది", + + "is-archived_condition.label": "ఆర్కైవ్ చేయబడింది", + + "is-withdrawn_condition.label": "విడిచిపెట్టబడింది", + + "item-is-public_condition.label": "అంశం పబ్లిక్‌గా ఉంది", + + "journals_ingest_suggestion_collection_filter_18.label": "జర్నల్స్ ఇంజెస్ట్", + + "title-starts-with-pattern_condition.label": "టైటిల్ నమూనాతో ప్రారంభమవుతుంది", + + "type-equals-dataset_condition.label": "రకం డేటాసెట్‌కు సమానం", + + "type-equals-journal-article_condition.label": "రకం జర్నల్ ఆర్టికల్‌కు సమానం", + + "ldn.no-filter.label": "ఏదీ లేదు", + + "admin.notify.dashboard": "డాష్‌బోర్డ్", + + "menu.section.notify_dashboard": "డాష్‌బోర్డ్", + + "menu.section.coar_notify": "COAR నోటిఫై", + + "admin-notify-dashboard.title": "నోటిఫై డాష్‌బోర్డ్", + + "admin-notify-dashboard.description": "నోటిఫై డాష్‌బోర్డ్ రిపోజిటరీ అంతటా COAR నోటిఫై ప్రోటోకాల్ యొక్క సాధారణ ఉపయోగాన్ని మానిటర్ చేస్తుంది. “మెట్రిక్స్” ట్యాబ్‌లో COAR నోటిఫై ప్రోటోకాల్ యొక్క ఉపయోగ గణాంకాలు ఉంటాయి. “లాగ్స్/ఇన్‌బౌండ్” మరియు “లాగ్స్/అవుట్‌బౌండ్” ట్యాబ్‌లలో, స్వీకరించబడిన లేదా పంపబడిన ప్రతి LDN సందేశం యొక్క వ్యక్తిగత స్థితిని శోధించి తనిఖీ చేయడం సాధ్యమవుతుంది.", + + "admin-notify-dashboard.metrics": "మెట్రిక్స్", + + "admin-notify-dashboard.received-ldn": "స్వీకరించబడిన LDNల సంఖ్య", + + "admin-notify-dashboard.generated-ldn": "జనరేట్ చేయబడిన LDNల సంఖ్య", + + "admin-notify-dashboard.NOTIFY.incoming.accepted": "అంగీకరించబడింది", + + "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "అంగీకరించబడిన ఇన్‌బౌండ్ నోటిఫికేషన్‌లు", + + "admin-notify-logs.NOTIFY.incoming.accepted": "ప్రస్తుతం ప్రదర్శిస్తున్నది: అంగీకరించబడిన నోటిఫికేషన్‌లు", + + "admin-notify-dashboard.NOTIFY.incoming.processed": "ప్రాసెస్ చేయబడిన LDNలు", + + "admin-notify-dashboard.NOTIFY.incoming.processed.description": "ప్రాసెస్ చేయబడిన ఇన్‌బౌండ్ నోటిఫికేషన్‌లు", + + "admin-notify-logs.NOTIFY.incoming.processed": "ప్రస్తుతం ప్రదర్శిస్తున్నది: ప్రాసెస్ చేయబడిన LDNలు", + + "admin-notify-logs.NOTIFY.incoming.failure": "ప్రస్తుతం ప్రదర్శిస్తున్నది: విఫలమైన నోటిఫికేషన్‌లు", + + "admin-notify-dashboard.NOTIFY.incoming.failure": "విఫలం", + + "admin-notify-dashboard.NOTIFY.incoming.failure.description": "విఫలమైన ఇన్‌బౌండ్ నోటిఫికేషన్‌లు", + + "admin-notify-logs.NOTIFY.outgoing.failure": "ప్రస్తుతం ప్రదర్శిస్తున్నది: విఫలమైన నోటిఫికేషన్‌లు", + + "admin-notify-dashboard.NOTIFY.outgoing.failure": "విఫలం", + + "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "విఫలమైన అవుట్‌బౌండ్ నోటిఫికేషన్‌లు", + + "admin-notify-logs.NOTIFY.incoming.untrusted": "ప్రస్తుతం ప్రదర్శిస్తున్నది: నమ్మదగని నోటిఫికేషన్‌లు", + + "admin-notify-dashboard.NOTIFY.incoming.untrusted": "నమ్మదగనిది కాదు", + + "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "నమ్మదగని ఇన్‌బౌండ్ నోటిఫికేషన్‌లు", + + "admin-notify-logs.NOTIFY.incoming.delivered": "ప్రస్తుతం ప్రదర్శిస్తున్నది: డెలివర్ చేయబడిన నోటిఫికేషన్‌లు", + + "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "ఇన్‌బౌండ్ నోటిఫికేషన్‌లు విజయవంతంగా డెలివర్ చేయబడ్డాయి", + + "admin-notify-dashboard.NOTIFY.outgoing.delivered": "డెలివర్ చేయబడింది", + + "admin-notify-logs.NOTIFY.outgoing.delivered": "ప్రస్తుతం ప్రదర్శిస్తున్నది: డెలివర్ చేయబడిన నోటిఫికేషన్‌లు", + + "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "అవుట్‌బౌండ్ నోటిఫికేషన్‌లు విజయవంతంగా డెలివర్ చేయబడ్డాయి", + + "admin-notify-logs.NOTIFY.outgoing.queued": "ప్రస్తుతం ప్రదర్శిస్తున్నది: క్యూలో ఉన్న నోటిఫికేషన్‌లు", + + "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "ప్రస్తుతం క్యూలో ఉన్న నోటిఫికేషన్‌లు", + + "admin-notify-dashboard.NOTIFY.outgoing.queued": "క్యూలో ఉంది", + + "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "ప్రస్తుతం ప్రదర్శిస్తున్నది: రిట్రై కోసం క్యూలో ఉన్న నోటిఫికేషన్‌లు", + + "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "రిట్రై కోసం క్యూలో ఉంది", + + "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "ప్రస్తుతం రిట్రై కోసం క్యూలో ఉన్న నోటిఫికేషన్‌లు", + + "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "ఇన్‌వాల్వ్ చేయబడిన అంశాలు", + + "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "ఇన్‌బౌండ్ నోటిఫికేషన్‌లతో సంబంధం ఉన్న అంశాలు", + + "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "ఇన్‌వాల్వ్ చేయబడిన అంశాలు", + + "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "అవుట్‌బౌండ్ నోటిఫికేషన్‌లతో సంబంధం ఉన్న అంశాలు", + + "admin.notify.dashboard.breadcrumbs": "డాష్‌బోర్డ్", + + "admin.notify.dashboard.inbound": "ఇన్‌బౌండ్ సందేశాలు", + + "admin.notify.dashboard.inbound-logs": "లాగ్స్/ఇన్‌బౌండ్", + + "admin.notify.dashboard.filter": "ఫిల్టర్: ", + + "search.filters.applied.f.relateditem": "సంబంధిత అంశాలు", + + "search.filters.applied.f.ldn_service": "LDN సేవ", + + "search.filters.applied.f.notifyReview": "నోటిఫై రివ్యూ", + + "search.filters.applied.f.notifyEndorsement": "నోటిఫై ఎండోర్స్‌మెంట్", + + "search.filters.applied.f.notifyRelation": "నోటిఫై రిలేషన్", + + "search.filters.applied.f.access_status": "యాక్సెస్ రకం", + + "search.filters.filter.queue_last_start_time.head": "చివరి ప్రాసెసింగ్ సమయం ", + + "search.filters.filter.queue_last_start_time.min.label": "కనిష్ట పరిధి", + + "search.filters.filter.queue_last_start_time.max.label": "గరిష్ట పరిధి", + + "search.filters.applied.f.queue_last_start_time.min": "కనిష్ట పరిధి", + + "search.filters.applied.f.queue_last_start_time.max": "గరిష్ట పరిధి", + + "admin.notify.dashboard.outbound": "అవుట్‌బౌండ్ సందేశాలు", + + "admin.notify.dashboard.outbound-logs": "లాగ్స్/అవుట్‌బౌండ్", + + "NOTIFY.incoming.search.results.head": "ఇన్‌కమింగ్", + + "search.filters.filter.relateditem.head": "సంబంధిత అంశం", + + "search.filters.filter.origin.head": "మూలం", + + "search.filters.filter.ldn_service.head": "LDN సేవ", + + "search.filters.filter.target.head": "టార్గెట్", + + "search.filters.filter.queue_status.head": "క్యూ స్థితి", + + "search.filters.filter.activity_stream_type.head": "ఆక్టివిటీ స్ట్రీమ్ రకం", + + "search.filters.filter.coar_notify_type.head": "COAR నోటిఫై రకం", + + "search.filters.filter.notification_type.head": "నోటిఫికేషన్ రకం", + + "search.filters.filter.relateditem.label": "సంబంధిత అంశాలను శోధించండి", + + "search.filters.filter.queue_status.label": "క్యూ స్థితిని శోధించండి", + + "search.filters.filter.target.label": "టార్గెట్‌ను శోధించండి", + + "search.filters.filter.activity_stream_type.label": "ఆక్టివిటీ స్ట్రీమ్ రకాన్ని శోధించండి", + + "search.filters.applied.f.queue_status": "క్యూ స్థితి", + + "search.filters.queue_status.0,authority": "నమ్మదగని IP", + + "search.filters.queue_status.1,authority": "క్యూలో ఉంది", + + "search.filters.queue_status.2,authority": "ప్రాసెసింగ్", + + "search.filters.queue_status.3,authority": "ప్రాసెస్ చేయబడింది", + + "search.filters.queue_status.4,authority": "విఫలమైంది", + + "search.filters.queue_status.5,authority": "నమ్మదగనిది", + + "search.filters.queue_status.6,authority": "మ్యాప్ చేయని యాక్షన్", + + "search.filters.queue_status.7,authority": "రిట్రై కోసం క్యూలో ఉంది", + + "search.filters.applied.f.activity_stream_type": "ఆక్టివిటీ స్ట్రీమ్ రకం", + + "search.filters.applied.f.coar_notify_type": "COAR నోటిఫై రకం", + + "search.filters.applied.f.notification_type": "నోటిఫికేషన్ రకం", + + "search.filters.filter.coar_notify_type.label": "COAR నోటిఫై రకాన్ని శోధించండి", + + "search.filters.filter.notification_type.label": "నోటిఫికేషన్ రకాన్ని శోధించండి", + + "search.filters.filter.relateditem.placeholder": "సంబంధిత అంశాలు", + + "search.filters.filter.target.placeholder": "టార్గెట్", + + "search.filters.filter.origin.label": "మూలాన్ని శోధించండి", + + "search.filters.filter.origin.placeholder": "మూలం", + + "search.filters.filter.ldn_service.label": "LDN సేవను శోధించండి", + + "search.filters.filter.ldn_service.placeholder": "LDN సేవ", + + "search.filters.filter.queue_status.placeholder": "క్యూ స్థితి", + + "search.filters.filter.activity_stream_type.placeholder": "ఆక్టివిటీ స్ట్రీమ్ రకం", + + "search.filters.filter.coar_notify_type.placeholder": "COAR నోటిఫై రకం", + + "search.filters.filter.notification_type.placeholder": "నోటిఫికేషన్", + + "search.filters.filter.notifyRelation.head": "నోటిఫై రిలేషన్", + + "search.filters.filter.notifyRelation.label": "నోటిఫై రిలేషన్‌ను శోధించండి", + + "search.filters.filter.notifyRelation.placeholder": "నోటిఫై రిలేషన్", + + "search.filters.filter.notifyReview.head": "నోటిఫై రివ్యూ", + + "search.filters.filter.notifyReview.label": "నోటిఫై రివ్యూను శోధించండి", + + "search.filters.filter.notifyReview.placeholder": "నోటిఫై రివ్యూ", + + "search.filters.coar_notify_type.coar-notify:ReviewAction": "రివ్యూ యాక్షన్", + + "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "రివ్యూ యాక్షన్", + + "notify-detail-modal.coar-notify:ReviewAction": "రివ్యూ యాక్షన్", + + "search.filters.coar_notify_type.coar-notify:EndorsementAction": "ఎండోర్స్‌మెంట్ యాక్షన్", + + "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "ఎండోర్స్‌మెంట్ యాక్షన్", + + "notify-detail-modal.coar-notify:EndorsementAction": "ఎండోర్స్‌మెంట్ యాక్షన్", + + "search.filters.coar_notify_type.coar-notify:IngestAction": "ఇంజెస్ట్ యాక్షన్", + + "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ఇంజెస్ట్ యాక్షన్", + + "notify-detail-modal.coar-notify:IngestAction": "ఇంజెస్ట్ యాక్షన్", + + "search.filters.coar_notify_type.coar-notify:RelationshipAction": "రిలేషన్‌షిప్ యాక్షన్", + + "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "రిలేషన్‌షిప్ యాక్షన్", + + "notify-detail-modal.coar-notify:RelationshipAction": "రిలేషన్‌షిప్ యాక్షన్", + + "search.filters.queue_status.QUEUE_STATUS_QUEUED": "క్యూలో ఉంది", + + "notify-detail-modal.QUEUE_STATUS_QUEUED": "క్యూలో ఉంది", + + "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "రిట్రై కోసం క్యూలో ఉంది", + + "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "రిట్రై కోసం క్యూలో ఉంది", + + "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "ప్రాసెసింగ్", + + "notify-detail-modal.QUEUE_STATUS_PROCESSING": "ప్రాసెసింగ్", + + "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "ప్రాసెస్ చేయబడింది", + + "notify-detail-modal.QUEUE_STATUS_PROCESSED": "ప్రాసెస్ చేయబడింది", + + "search.filters.queue_status.QUEUE_STATUS_FAILED": "విఫలమైంది", + + "notify-detail-modal.QUEUE_STATUS_FAILED": "విఫలమైంది", + + "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "నమ్మదగనిది", + + "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "నమ్మదగని IP", + + "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "నమ్మదగనిది", + + "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "నమ్మదగని IP", + + "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "మ్యాప్ చేయని యాక్షన్", + + "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "మ్యాప్ చేయని యాక్షన్", + + "sorting.queue_last_start_time.DESC": "చివరి ప్రారంభించిన క్యూ డిసెండింగ్", + + "sorting.queue_last_start_time.ASC": "చివరి ప్రారంభించిన క్యూ ఆసెండింగ్", + + "sorting.queue_attempts.DESC": "క్యూ ప్రయత్నించబడింది డిసెండింగ్", + + "sorting.queue_attempts.ASC": "క్యూ ప్రయత్నించబడింది ఆసెండింగ్", + + "NOTIFY.incoming.involvedItems.search.results.head": "ఇన్‌కమింగ్ LDNలలో ఇన్‌వాల్వ్ చేయబడిన అంశాలు", + + "NOTIFY.outgoing.involvedItems.search.results.head": "అవుట్‌గోయింగ్ LDNలలో ఇన్‌వాల్వ్ చేయబడిన అంశాలు", + + "type.notify-detail-modal": "రకం", + + "id.notify-detail-modal": "Id", + + "coarNotifyType.notify-detail-modal": "COAR నోటిఫై రకం", + + "activityStreamType.notify-detail-modal": "ఆక్టివిటీ స్ట్రీమ్ రకం", + + "inReplyTo.notify-detail-modal": "సమాధానంగా", + + "object.notify-detail-modal": "రిపోజిటరీ అంశం", + + "context.notify-detail-modal": "రిపోజిటరీ అంశం", + + "queueAttempts.notify-detail-modal": "క్యూ ప్రయత్నాలు", + + "queueLastStartTime.notify-detail-modal": "క్యూ చివరిగా ప్రారంభించబడింది", + + "origin.notify-detail-modal": "LDN సేవ", + + "target.notify-detail-modal": "LDN సేవ", + + "queueStatusLabel.notify-detail-modal": "క్యూ స్థితి", + + "queueTimeout.notify-detail-modal": "క్యూ టైమ్‌అవుట్", + + "notify-message-modal.title": "సందేశ వివరాలు", + + "notify-message-modal.show-message": "సందేశాన్ని చూపించు", + + "notify-message-result.timestamp": "టైమ్‌స్టాంప్", + + "notify-message-result.repositoryItem": "రిపోజిటరీ అంశం", + + "notify-message-result.ldnService": "LDN సేవ", + + "notify-message-result.type": "రకం", + + "notify-message-result.status": "స్థితి", + + "notify-message-result.action": "యాక్షన్", + + "notify-message-result.detail": "వివరాలు", + + "notify-message-result.reprocess": "రీప్రాసెస్", + + "notify-queue-status.processed": "ప్రాసెస్ చేయబడింది", + + "notify-queue-status.failed": "విఫలమైంది", + + "notify-queue-status.queue_retry": "రిట్రై కోసం క్యూలో ఉంది", + + "notify-queue-status.unmapped_action": "మ్యాప్ చేయని యాక్షన్", + + "notify-queue-status.processing": "ప్రాసెసింగ్", + + "notify-queue-status.queued": "క్యూలో ఉంది", + + "notify-queue-status.untrusted": "నమ్మదగనిది", + + "ldnService.notify-detail-modal": "LDN సేవ", + + "relatedItem.notify-detail-modal": "సంబంధిత అంశం", + + "search.filters.filter.notifyEndorsement.head": "నోటిఫై ఎండోర్స్‌మెంట్", + + "search.filters.filter.notifyEndorsement.placeholder": "నోటిఫై ఎండోర్స్‌మెంట్", + + "search.filters.filter.notifyEndorsement.label": "నోటిఫై ఎండోర్స్‌మెంట్‌ను శోధించండి", + + "form.date-picker.placeholder.year": "సంవత్సరం", + + "form.date-picker.placeholder.month": "నెల", + + "form.date-picker.placeholder.day": "రోజు", + + "item.page.cc.license.title": "క్రియేటివ్ కామన్స్ లైసెన్స్", + + "item.page.cc.license.disclaimer": "ఇతర విధంగా పేర్కొననంత వరకు, ఈ అంశం యొక్క లైసెన్స్ ఇలా వివరించబడింది", + + "browse.search-form.placeholder": "రిపోజిటరీని శోధించండి", + + "file-download-link.download": "డౌన్‌లోడ్ ", + + "register-page.registration.aria.label": "మీ ఇమెయిల్ చిరునామాను నమోదు చేయండి", + + "forgot-email.form.aria.label": "మీ ఇమెయిల్ చిరునామాను నమోదు చేయండి", + + "search-facet-option.update.announcement": "పేజీ రీలోడ్ అవుతుంది. ఫిల్టర్ {{ filter }} ఎంచుకోబడింది.", + + "live-region.ordering.instructions": "{{ itemName }}ని మళ్లీ ఆర్డర్ చేయడానికి స్పేస్‌బార్ నొక్కండి.", + + "live-region.ordering.status": "{{ itemName }}, పట్టుకోబడింది. జాబితాలో ప్రస్తుత స్థానం: {{ index }} లో {{ length }}. స్థానాన్ని మార్చడానికి ఎగువ మరియు క్రింది బాణం కీలను ఉపయోగించండి, డ్రాప్ చేయడానికి స్పేస్‌బార్, రద్దు చేయడానికి ఎస్కేప్.", + + "live-region.ordering.moved": "{{ itemName }}, {{ index }} స్థానానికి {{ length }} లోకి తరలించబడింది. స్థానాన్ని మార్చడానికి ఎగువ మరియు క్రింది బాణం కీలను ఉపయోగించండి, డ్రాప్ చేయడానికి స్పేస్‌బార్, రద్దు చేయడానికి ఎస్కేప్.", + + "live-region.ordering.dropped": "{{ itemName }}, {{ index }} స్థానంలో {{ length }} లో డ్రాప్ చేయబడింది.", + + "dynamic-form-array.sortable-list.label": "సార్ట్ చేయదగిన జాబితా", + + "external-login.component.or": "లేదా", + + "external-login.confirmation.header": "లాగిన్ ప్రక్రియను పూర్తి చేయడానికి అవసరమైన సమాచారం", + + "external-login.noEmail.informationText": "{{authMethod}} నుండి అందిన సమాచారం లాగిన్ ప్రక్రియను పూర్తి చేయడానికి సరిపోదు. దయచేసి క్రింద తప్పిపోయిన సమాచారాన్ని అందించండి, లేదా ఇప్పటికే ఉన్న ఖాతాకు మీ {{authMethod}}ని అనుబంధించడానికి వేరే పద్ధతి ద్వారా లాగిన్ అవ్వండి.", + + "external-login.haveEmail.informationText": "మీరు ఈ సిస్టమ్‌లో ఇంకా ఖాతా కలిగి లేరని అనిపిస్తుంది. అలా అయితే, దయచేసి {{authMethod}} నుండి అందిన డేటాను నిర్ధారించండి మరియు మీ కోసం కొత్త ఖాతా సృష్టించబడుతుంది. లేకుంటే, మీరు ఇప్పటికే సిస్టమ్‌లో ఖాతాను కలిగి ఉంటే, దయచేసి ఇమెయిల్ చిరునామాను సిస్టమ్‌లో ఇప్పటికే ఉపయోగించినదానికి సరిపోయేలా నవీకరించండి లేదా మీ ఇప్పటికే ఉన్న ఖాతాకు మీ {{authMethod}}ని అనుబంధించడానికి వేరే పద్ధతి ద్వారా లాగిన్ అవ్వండి.", + + "external-login.confirm-email.header": "ఇమెయిల్‌ను నిర్ధారించండి లేదా నవీకరించండి", + + "external-login.confirmation.email-required": "ఇమెయిల్ అవసరం.", + + "external-login.confirmation.email-label": "వినియోగదారు ఇమెయిల్", + + "external-login.confirmation.email-invalid": "చెల్లని ఇమెయిల్ ఫార్మాట్.", + + "external-login.confirm.button.label": "ఈ ఇమెయిల్‌ను నిర్ధారించండి", + + "external-login.confirm-email-sent.header": "నిర్ధారణ ఇమెయిల్ పంపబడింది", + + "external-login.confirm-email-sent.info": "మేము మీ ఇన్పుట్‌ను ధృవీకరించడానికి అందించిన చిరునామాకు ఒక ఇమెయిల్ పంపాము.
దయచేసి లాగిన్ ప్రక్రియను పూర్తి చేయడానికి ఇమెయిల్‌లోని సూచనలను అనుసరించండి.", + + "external-login.provide-email.header": "ఇమెయిల్ అందించండి", + + "external-login.provide-email.button.label": "ధృవీకరణ లింక్‌ను పంపండి", + + "external-login-validation.review-account-info.header": "మీ ఖాతా సమాచారాన్ని సమీక్షించండి", + + "external-login-validation.review-account-info.info": "ORCID నుండి అందిన సమాచారం మీ ప్రొఫైల్‌లో రికార్డ్ చేయబడిన దానికి భిన్నంగా ఉంది.
దయచేసి వాటిని సమీక్షించండి మరియు మీరు ఏవైనా నవీకరించాలనుకుంటున్నారో నిర్ణయించుకోండి. సేవ్ చేసిన తర్వాత మీరు మీ ప్రొఫైల్ పేజీకి మళ్లించబడతారు.", + + "external-login-validation.review-account-info.table.header.information": "సమాచారం", + + "external-login-validation.review-account-info.table.header.received-value": "అందిన విలువ", + + "external-login-validation.review-account-info.table.header.current-value": "ప్రస్తుత విలువ", + + "external-login-validation.review-account-info.table.header.action": "అతిగా రాసేయి", + + "external-login-validation.review-account-info.table.row.not-applicable": "వర్తించదు", + + "on-label": "ఆన్", + + "off-label": "ఆఫ్", + + "review-account-info.merge-data.notification.success": "మీ ఖాతా సమాచారం విజయవంతంగా నవీకరించబడింది", + + "review-account-info.merge-data.notification.error": "మీ ఖాతా సమాచారాన్ని నవీకరించడంలో ఏదో తప్పు జరిగింది", + + "review-account-info.alert.error.content": "ఏదో తప్పు జరిగింది. దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి.", + + "external-login-page.provide-email.notifications.error": "ఏదో తప్పు జరిగింది. ఇమెయిల్ చిరునామా విస్మరించబడింది లేదా ఆపరేషన్ చెల్లదు.", + + "external-login.error.notification": "మీ అభ్యర్థనను ప్రాసెస్ చేయడంలో ఒక లోపం ఏర్పడింది. దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి.", + + "external-login.connect-to-existing-account.label": "ఇప్పటికే ఉన్న వినియోగదారుకు కనెక్ట్ అవ్వండి", + + "external-login.modal.label.close": "మూసివేయి", + + "external-login-page.provide-email.create-account.notifications.error.header": "ఏదో తప్పు జరిగింది", + + "external-login-page.provide-email.create-account.notifications.error.content": "దయచేసి మీ ఇమెయిల్ చిరునామాను మళ్లీ తనిఖీ చేసి మళ్లీ ప్రయత్నించండి.", + + "external-login-page.confirm-email.create-account.notifications.error.no-netId": "ఈ ఇమెయిల్ ఖాతాతో ఏదో తప్పు జరిగింది. మళ్లీ ప్రయత్నించండి లేదా లాగిన్ అవ్వడానికి వేరే పద్ధతిని ఉపయోగించండి.", + + "external-login-page.orcid-confirmation.firstname": "మొదటి పేరు", + + "external-login-page.orcid-confirmation.firstname.label": "మొదటి పేరు", + + "external-login-page.orcid-confirmation.lastname": "చివరి పేరు", + + "external-login-page.orcid-confirmation.lastname.label": "చివరి పేరు", + + "external-login-page.orcid-confirmation.netid": "ఖాతా ఐడెంటిఫైయర్", + + "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx", + + "external-login-page.orcid-confirmation.email": "ఇమెయిల్", + + "external-login-page.orcid-confirmation.email.label": "ఇమెయిల్", + + "search.filters.access_status.open.access": "ఓపెన్ యాక్సెస్", + + "search.filters.access_status.restricted": "పరిమిత యాక్సెస్", + + "search.filters.access_status.embargo": "ఎంబార్గో యాక్సెస్", + + "search.filters.access_status.metadata.only": "మెటాడేటా మాత్రమే", + + "search.filters.access_status.unknown": "తెలియదు", + + "metadata-export-filtered-items.tooltip": "CSV గా రిపోర్ట్ అవుట్పుట్‌ను ఎగుమతి చేయండి", + + "metadata-export-filtered-items.submit.success": "CSV ఎగుమతి విజయవంతమైంది.", + + "metadata-export-filtered-items.submit.error": "CSV ఎగుమతి విఫలమైంది.", + + "metadata-export-filtered-items.columns.warning": "CSV ఎగుమతి స్వయంచాలకంగా అన్ని సంబంధిత ఫీల్డ్‌లను కలిగి ఉంటుంది, కాబట్టి ఈ జాబితాలోని ఎంపికలు పరిగణనలోకి తీసుకోబడవు.", + + "embargo.listelement.badge": "{{ date }} వరకు ఎంబార్గో", + + "metadata-export-search.submit.error.limit-exceeded": "మొదటి {{limit}} అంశాలు మాత్రమే ఎగుమతి చేయబడతాయి", + + "file-download-link.request-copy": "యొక్క కాపీని అభ్యర్థించండి ", + +} \ No newline at end of file From 46fdb557461e25758bf5aa6a417088c0b05e9a12 Mon Sep 17 00:00:00 2001 From: FrancescoMolinaro Date: Wed, 4 Feb 2026 11:48:07 +0100 Subject: [PATCH 17/17] [DURACOM-413] restore it translation files, fix de translation --- src/assets/i18n/de.json5 | 2 +- src/assets/i18n/it.json5 | 28 ++++++++++++++-------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/assets/i18n/de.json5 b/src/assets/i18n/de.json5 index 3f471ed4b11..55198b6c766 100644 --- a/src/assets/i18n/de.json5 +++ b/src/assets/i18n/de.json5 @@ -11143,7 +11143,7 @@ // "item.preview.organization.alternateName": "Alternative name", // TODO New key - Add a translation - "item.preview.organization.alternateName": "Alternative name", + "item.preview.organization.alternateName": "Alternativer name", } diff --git a/src/assets/i18n/it.json5 b/src/assets/i18n/it.json5 index 8c94ac954f7..26d70f3d5e9 100644 --- a/src/assets/i18n/it.json5 +++ b/src/assets/i18n/it.json5 @@ -10195,7 +10195,7 @@ "listable-notification-object.default-message": "Questo oggetto non può essere recuperato", // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", - "system-wide-alert-banner.retrieval.error": "Qualcosa è andato storto nel recupero del banner di allarme di sistema", + "system-wide-alert-banner.retrieval.error": "Qualcosa è andato storto nel recupero del banner del messaggio di servizio", // "system-wide-alert-banner.countdown.prefix": "In", "system-wide-alert-banner.countdown.prefix": "Tra", @@ -10210,13 +10210,13 @@ "system-wide-alert-banner.countdown.minutes": "{{minutes}} minuti:", // "menu.section.system-wide-alert": "System-wide Alert", - "menu.section.system-wide-alert": "Allarme di sistema", + "menu.section.system-wide-alert": "Messaggio di servizio", // "system-wide-alert.form.header": "System-wide Alert", - "system-wide-alert.form.header": "Allarme di sistema", + "system-wide-alert.form.header": "Messaggio di servizio", // "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert", - "system-wide-alert-form.retrieval.error": "Qualcosa è andato storto nel recupero dell'allarme di sistema", + "system-wide-alert-form.retrieval.error": "Qualcosa è andato storto nel recupero del messaggio di servizio", // "system-wide-alert.form.cancel": "Cancel", "system-wide-alert.form.cancel": "Annulla", @@ -10231,41 +10231,41 @@ "system-wide-alert.form.label.inactive": "DISATTIVO", // "system-wide-alert.form.error.message": "The system wide alert must have a message", - "system-wide-alert.form.error.message": "L'allarme di sistema deve avere un messaggio", + "system-wide-alert.form.error.message": "Il messaggio di servizio deve avere del contenuto", // "system-wide-alert.form.label.message": "Alert message", - "system-wide-alert.form.label.message": "Messaggio di allarme", + "system-wide-alert.form.label.message": "Messaggio di servizio", // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer", "system-wide-alert.form.label.countdownTo.enable": "Attiva un conto alla rovescia", // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", - "system-wide-alert.form.label.countdownTo.hint": "Suggerimento: Imposta un conto alla rovescia. Se abilitato, è possibile impostare una data futura e il banner di allarme di sistema eseguirà un conto alla rovescia fino alla data impostata. Quando il timer terminerà, l'avviso scomparirà. Il server NON verrà arrestato automaticamente.", + "system-wide-alert.form.label.countdownTo.hint": "Suggerimento: Imposta un conto alla rovescia. Se abilitato, è possibile impostare una data futura e il banner di messaggio di servizio eseguirà un conto alla rovescia fino alla data impostata. Quando il timer terminerà, l'avviso scomparirà. Il server NON verrà arrestato automaticamente.", // "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", // TODO New key - Add a translation "system-wide-alert-form.select-date-by-calendar": "Select date using calendar", // "system-wide-alert.form.label.preview": "System-wide alert preview", - "system-wide-alert.form.label.preview": "Anteprima dell'allarme di sistema", + "system-wide-alert.form.label.preview": "Anteprima del messaggio di servizio", // "system-wide-alert.form.update.success": "The system-wide alert was successfully updated", - "system-wide-alert.form.update.success": "L'allarme di sistema è stato aggiornato con successo", + "system-wide-alert.form.update.success": "Il messaggio di servizio è stato aggiornato con successo", // "system-wide-alert.form.update.error": "Something went wrong when updating the system-wide alert", - "system-wide-alert.form.update.error": "Qualcosa è andato storto durante l'aggiornamento dell'allarme di sistema", + "system-wide-alert.form.update.error": "Qualcosa è andato storto durante l'aggiornamento del messaggio di servizio", // "system-wide-alert.form.create.success": "The system-wide alert was successfully created", - "system-wide-alert.form.create.success": "L'allarme di sistema è stato creato con successo", + "system-wide-alert.form.create.success": "Il messaggio di servizio è stato creato con successo", // "system-wide-alert.form.create.error": "Something went wrong when creating the system-wide alert", - "system-wide-alert.form.create.error": "Qualcosa è andato storto nella creazione dell'allarme di sistema", + "system-wide-alert.form.create.error": "Qualcosa è andato storto nella creazione del messaggio di servizio", // "admin.system-wide-alert.breadcrumbs": "System-wide Alerts", - "admin.system-wide-alert.breadcrumbs": "Allarmi di sistema", + "admin.system-wide-alert.breadcrumbs": "Messaggi di servizio", // "admin.system-wide-alert.title": "System-wide Alerts", - "admin.system-wide-alert.title": "Allarmi di sistema", + "admin.system-wide-alert.title": "Messaggi di servizio", // "discover.filters.head": "Discover", // TODO New key - Add a translation