diff --git a/config/config.example.yml b/config/config.example.yml index ca30e900496..0b1c4889f03 100644 --- a/config/config.example.yml +++ b/config/config.example.yml @@ -629,3 +629,47 @@ geospatialMapViewer: accessibility: # The duration in days after which the accessibility settings cookie expires cookieExpirationDuration: 7 + +# Configuration for custom layout +layout: + # Configuration of icons and styles to be used for each authority controlled link + authorityRef: + - entityType: DEFAULT + entityStyle: + default: + icon: fa fa-user + style: text-info + - entityType: PERSON + entityStyle: + person: + icon: fa fa-user + style: text-success + default: + icon: fa fa-user + style: text-info + - entityType: ORGUNIT + entityStyle: + default: + icon: fa fa-university + style: text-success + - entityType: PROJECT + entityStyle: + default: + icon: fas fa-project-diagram + style: text-success + +# When the search results are retrieved, for each item type the metadata with a valid authority value are inspected. +# Referenced items will be fetched with a find all by id strategy to avoid individual rest requests +# to efficiently display the search results. +followAuthorityMetadata: + - type: Publication + metadata: dc.contributor.author + - type: Product + metadata: dc.contributor.author + +# The maximum number of item to process when following authority metadata values. +followAuthorityMaxItemLimit: 100 + +# The maximum number of metadata values to process for each metadata key +# when following authority metadata values. +followAuthorityMetadataValuesLimit: 5 diff --git a/scripts/sync-i18n-files.ts b/scripts/sync-i18n-files.ts index 6b3881b3b82..7e06f7530b7 100644 --- a/scripts/sync-i18n-files.ts +++ b/scripts/sync-i18n-files.ts @@ -37,14 +37,11 @@ function parseCliInput() { .option('-o, --output-file ', 'where output of script ends up; mutually exclusive with -i') .usage('([-d ] [-s ]) || (-t (-i | -o ) [-s ])') .parse(process.argv); - - const sourceFile = program.opts().sourceFile; - - if (!program.targetFile) { + if (!program.targetFile) { fs.readdirSync(projectRoot(LANGUAGE_FILES_LOCATION)).forEach(file => { - if (!sourceFile.toString().endsWith(file)) { + if (program.opts().sourceFile && !program.opts().sourceFile.toString().endsWith(file)) { const targetFileLocation = projectRoot(LANGUAGE_FILES_LOCATION + "/" + file); - console.log('Syncing file at: ' + targetFileLocation + ' with source file at: ' + sourceFile); + console.log('Syncing file at: ' + targetFileLocation + ' with source file at: ' + program.opts().sourceFile); if (program.outputDir) { if (!fs.existsSync(program.outputDir)) { fs.mkdirSync(program.outputDir); @@ -69,7 +66,7 @@ function parseCliInput() { console.log(program.outputHelp()); process.exit(1); } - if (!checkIfFileExists(sourceFile)) { + if (!checkIfFileExists(program.opts().sourceFile)) { console.error('Path of source file is not valid.'); console.log(program.outputHelp()); process.exit(1); 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 cb7e62c8fe6..c20dc0a1834 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 + */ + public 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 + */ + public 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/provide-core.ts b/src/app/core/provide-core.ts index 5307709ad4f..48600b35914 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 { AuthStatus } from './auth/models/auth-status.model'; import { ShortLivedToken } from './auth/models/short-lived-token.model'; @@ -228,4 +229,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 d377610d08d..fc0f8b4ffda 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('dspace.customurl')) { + url = item.firstMetadataValue('dspace.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/shared/dspace-object.model.ts b/src/app/core/shared/dspace-object.model.ts index e155117d5a6..fa4f4a37115 100644 --- a/src/app/core/shared/dspace-object.model.ts +++ b/src/app/core/shared/dspace-object.model.ts @@ -126,6 +126,20 @@ export class DSpaceObject extends ListableObject implements CacheableObject { return Metadata.all(this.metadata, keyOrKeys, undefined, valueFilter, escapeHTML); } + + /** + * Gets all matching metadata in this DSpaceObject, up to a limit. + * + * @param {string|string[]} keyOrKeys The metadata key(s) in scope. Wildcards are supported; see [[Metadata]]. + * @param {number} limit The maximum number of results to return. + * @param {MetadataValueFilter} valueFilter The value filter to use. If unspecified, no filtering will be done. + * @returns {MetadataValue[]} the matching values or an empty array. + */ + limitedMetadata(keyOrKeys: string | string[], limit: number, valueFilter?: MetadataValueFilter): MetadataValue[] { + return Metadata.all(this.metadata, keyOrKeys, null, valueFilter, false, limit); + } + + /** * Like [[allMetadata]], but only returns string values. * diff --git a/src/app/core/shared/item.model.ts b/src/app/core/shared/item.model.ts index 06fc0b01e84..aefe936b15e 100644 --- a/src/app/core/shared/item.model.ts +++ b/src/app/core/shared/item.model.ts @@ -99,6 +99,13 @@ export class Item extends DSpaceObject implements ChildHALResource, HandleObject @autoserializeAs(Boolean, 'withdrawn') isWithdrawn: boolean; + /** + * A boolean representing if this Item is currently withdrawn or not + */ + @autoserializeAs(String, 'entityType') + entityType: string; + + /** * The {@link HALLink}s for this Item */ diff --git a/src/app/core/shared/metadata.models.ts b/src/app/core/shared/metadata.models.ts index 15cfeb285e6..6e9b2a1f516 100644 --- a/src/app/core/shared/metadata.models.ts +++ b/src/app/core/shared/metadata.models.ts @@ -1,4 +1,5 @@ /* eslint-disable max-classes-per-file */ +import { hasValue } from '@dspace/shared/utils/empty.util'; import { autoserialize, Deserialize, @@ -6,6 +7,7 @@ import { } from 'cerialize'; import { v4 as uuidv4 } from 'uuid'; + export const VIRTUAL_METADATA_PREFIX = 'virtual::'; /** A single metadata value and its properties. */ @@ -56,6 +58,24 @@ export class MetadataValue implements MetadataValueInterface { @autoserialize confidence: number; + /** + * Returns true if this Metadatum's authority key starts with 'virtual::' + */ + get isVirtual(): boolean { + return hasValue(this.authority) && this.authority.startsWith(VIRTUAL_METADATA_PREFIX); + } + + /** + * If this is a virtual Metadatum, it returns everything in the authority key after 'virtual::'. + * Returns undefined otherwise. + */ + get virtualValue(): string { + if (this.isVirtual) { + return this.authority.substring(this.authority.indexOf(VIRTUAL_METADATA_PREFIX) + VIRTUAL_METADATA_PREFIX.length); + } else { + return undefined; + } + } } /** Constraints for matching metadata values. */ @@ -74,6 +94,10 @@ export interface MetadataValueFilter { /** Whether the value constraint should match as a substring. */ substring?: boolean; + /** + * Whether to negate the filter + */ + negate?: boolean; } export class MetadatumViewModel { diff --git a/src/app/core/shared/metadata.utils.spec.ts b/src/app/core/shared/metadata.utils.spec.ts index f3ca5d82e7d..0333d114cad 100644 --- a/src/app/core/shared/metadata.utils.spec.ts +++ b/src/app/core/shared/metadata.utils.spec.ts @@ -50,11 +50,11 @@ const multiViewModelList = [ { key: 'foo', ...bar, order: 0 }, ]; -const testMethod = (fn, resultKind, mapOrMaps, keyOrKeys, hitHighlights, expected, filter?) => { +const testMethod = (fn, resultKind, mapOrMaps, keyOrKeys, hitHighlights, expected, filter?, limit?: number) => { const keys = keyOrKeys instanceof Array ? keyOrKeys : [keyOrKeys]; describe('and key' + (keys.length === 1 ? (' ' + keys[0]) : ('s ' + JSON.stringify(keys))) + ' with ' + (isUndefined(filter) ? 'no filter' : 'filter ' + JSON.stringify(filter)), () => { - const result = fn(mapOrMaps, keys, hitHighlights, filter); + const result = fn(mapOrMaps, keys, hitHighlights, filter, true, limit); let shouldReturn; if (resultKind === 'boolean') { shouldReturn = expected; @@ -62,7 +62,8 @@ const testMethod = (fn, resultKind, mapOrMaps, keyOrKeys, hitHighlights, expecte shouldReturn = 'undefined'; } else if (expected instanceof Array) { shouldReturn = 'an array with ' + expected.length + ' ' + (expected.length > 1 ? 'ordered ' : '') - + resultKind + (expected.length !== 1 ? 's' : ''); + + resultKind + (expected.length !== 1 ? 's' : '') + + (isUndefined(limit) ? '' : ' (limited to ' + limit + ')'); } else { shouldReturn = 'a ' + resultKind; } @@ -255,4 +256,60 @@ describe('Metadata', () => { }); + describe('all method with limit', () => { + const testAllWithLimit = (mapOrMaps, keyOrKeys, expected, limit) => + testMethod(Metadata.all, 'value', mapOrMaps, keyOrKeys, undefined, expected, undefined, limit); + + describe('with multiMap and limit', () => { + testAllWithLimit(multiMap, 'dc.title', [dcTitle1], 1); + }); + }); + + describe('hasValue method', () => { + const testHasValue = (value, expected) => + testMethod(Metadata.hasValue, 'boolean', value, undefined, undefined, expected); + + describe('with undefined value', () => { + testHasValue(undefined, false); + }); + describe('with null value', () => { + testHasValue(null, false); + }); + describe('with string value', () => { + testHasValue('test', true); + }); + describe('with empty string value', () => { + testHasValue('', false); + }); + describe('with undefined value for a MetadataValue object', () => { + const value: Partial = { + value: undefined, + }; + testHasValue(value, false); + }); + describe('with null value for a MetadataValue object', () => { + const value: Partial = { + value: null, + }; + testHasValue(value, false); + }); + describe('with empty string for a MetadataValue object', () => { + const value: Partial = { + value: '', + }; + testHasValue(value, false); + }); + describe('with value for a MetadataValue object', () => { + const value: Partial = { + value: 'test', + }; + testHasValue(value, true); + }); + describe('with a generic object', () => { + const value: any = { + test: 'test', + }; + testHasValue(value, true); + }); + }); }); diff --git a/src/app/core/shared/metadata.utils.ts b/src/app/core/shared/metadata.utils.ts index b44362a3ff5..b7f1db6476a 100644 --- a/src/app/core/shared/metadata.utils.ts +++ b/src/app/core/shared/metadata.utils.ts @@ -1,11 +1,15 @@ import { + hasValue, + isEmpty, isNotEmpty, isNotUndefined, isUndefined, } from '@dspace/shared/utils/empty.util'; import escape from 'lodash/escape'; import groupBy from 'lodash/groupBy'; +import isObject from 'lodash/isObject'; import sortBy from 'lodash/sortBy'; +import { validate as uuidValidate } from 'uuid'; import { MetadataMapInterface, @@ -14,6 +18,11 @@ import { MetadatumViewModel, } from './metadata.models'; + + +export const AUTHORITY_GENERATE = 'will be generated::'; +export const AUTHORITY_REFERENCE = 'will be referenced::'; +export const PLACEHOLDER_VALUE = '#PLACEHOLDER_PARENT_METADATA_VALUE#'; /** * Utility class for working with DSpace object metadata. * @@ -39,13 +48,13 @@ export class Metadata { * @param escapeHTML Whether the HTML is used inside a `[innerHTML]` attribute * @returns {MetadataValue[]} the matching values or an empty array. */ - public static all(metadata: MetadataMapInterface, keyOrKeys: string | string[], hitHighlights?: MetadataMapInterface, filter?: MetadataValueFilter, escapeHTML?: boolean): MetadataValue[] { + public static all(metadata: MetadataMapInterface, keyOrKeys: string | string[], hitHighlights?: MetadataMapInterface, filter?: MetadataValueFilter, escapeHTML?: boolean, limit?: number): MetadataValue[] { const matches: MetadataValue[] = []; if (isNotEmpty(hitHighlights)) { for (const mdKey of Metadata.resolveKeys(hitHighlights, keyOrKeys)) { if (hitHighlights[mdKey]) { for (const candidate of hitHighlights[mdKey]) { - if (Metadata.valueMatches(candidate as MetadataValue, filter)) { + if (Metadata.valueMatches(candidate as MetadataValue, filter) && (isEmpty(limit) || (hasValue(limit) && matches.length < limit))) { matches.push(candidate as MetadataValue); } } @@ -58,7 +67,7 @@ export class Metadata { for (const mdKey of Metadata.resolveKeys(metadata, keyOrKeys)) { if (metadata[mdKey]) { for (const candidate of metadata[mdKey]) { - if (Metadata.valueMatches(candidate as MetadataValue, filter)) { + if (Metadata.valueMatches(candidate as MetadataValue, filter) && (isEmpty(limit) || (hasValue(limit) && matches.length < limit))) { if (escapeHTML) { matches.push(Object.assign(new MetadataValue(), candidate, { value: escape(candidate.value), @@ -148,6 +157,40 @@ export class Metadata { return isNotUndefined(Metadata.first(metadata, keyOrKeys, hitHighlights, filter)); } + + /** + * Returns true if this Metadatum's authority key contains a reference + */ + public static hasAuthorityReference(authority: string): boolean { + return hasValue(authority) && (typeof authority === 'string' && (authority.startsWith(AUTHORITY_GENERATE) || authority.startsWith(AUTHORITY_REFERENCE))); + } + + /** + * Returns true if this Metadatum's authority key is a valid + */ + public static hasValidAuthority(authority: string): boolean { + return hasValue(authority) && !Metadata.hasAuthorityReference(authority); + } + + /** + * Returns true if this Metadatum's authority key is a valid UUID + */ + public static hasValidItemAuthority(authority: string): boolean { + return hasValue(authority) && uuidValidate(authority); + } + + /** + * Returns true if this Metadatum's value is defined + */ + public static hasValue(value: MetadataValue|string): boolean { + if (isEmpty(value)) { + return false; + } + if (isObject(value) && value.hasOwnProperty('value')) { + return isNotEmpty(value.value); + } + return true; + } /** * Checks if a value matches a filter. * @@ -169,11 +212,14 @@ export class Metadata { fValue = filter.value.toLowerCase(); mValue = mdValue.value.toLowerCase(); } + let result: boolean; + if (filter.substring) { - return mValue.includes(fValue); + result = mValue.includes(fValue); } else { - return mValue === fValue; + result = mValue === fValue; } + return filter.negate ? !result : result; } return true; } 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/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/dso-shared/dso-edit-metadata/dso-edit-metadata-headers/dso-edit-metadata-headers.component.html b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-headers/dso-edit-metadata-headers.component.html index ecaf2aa7443..15dc97f7da4 100644 --- a/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-headers/dso-edit-metadata-headers.component.html +++ b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-headers/dso-edit-metadata-headers.component.html @@ -4,6 +4,7 @@
{{ dsoType + '.edit.metadata.headers.value' | translate }}
{{ dsoType + '.edit.metadata.headers.language' | translate }}
+
{{ dsoType + '.edit.metadata.headers.authority' | translate }}
{{ dsoType + '.edit.metadata.headers.edit' | translate }}
diff --git a/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-headers/dso-edit-metadata-headers.component.spec.ts b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-headers/dso-edit-metadata-headers.component.spec.ts index becb7b5278b..e9358c9e186 100644 --- a/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-headers/dso-edit-metadata-headers.component.spec.ts +++ b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-headers/dso-edit-metadata-headers.component.spec.ts @@ -29,7 +29,7 @@ describe('DsoEditMetadataHeadersComponent', () => { fixture.detectChanges(); }); - it('should display three headers', () => { - expect(fixture.debugElement.queryAll(By.css('.ds-flex-cell')).length).toEqual(3); + it('should display four headers', () => { + expect(fixture.debugElement.queryAll(By.css('.ds-flex-cell')).length).toEqual(4); }); }); diff --git a/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-shared/dso-edit-metadata-cells.scss b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-shared/dso-edit-metadata-cells.scss index d83bacecb21..ce9ed9c481d 100644 --- a/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-shared/dso-edit-metadata-cells.scss +++ b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-shared/dso-edit-metadata-cells.scss @@ -12,6 +12,12 @@ max-width: var(--ds-dso-edit-lang-width); } +.ds-authority-cell { + min-width: var(--ds-dso-edit-authority-width); + max-width: var(--ds-dso-edit-authority-width); +} + + .ds-edit-cell { min-width: var(--ds-dso-edit-actions-width); } diff --git a/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.html b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.html index 031e407e459..88818fd2761 100644 --- a/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.html +++ b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.html @@ -48,6 +48,15 @@
{{ mdValue.newValue.language }}
} +
+ @if (!mdValue.editing) { +
{{ mdValue.newValue.authority }}
+ } + @if(mdValue.editing) { + + } +
diff --git a/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.spec.ts b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.spec.ts index 0e2c4b5d217..4a80f28fde6 100644 --- a/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.spec.ts +++ b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.spec.ts @@ -8,7 +8,7 @@ import { waitForAsync, } from '@angular/core/testing'; import { By } from '@angular/platform-browser'; -import { RouterModule } from '@angular/router'; +import { RouterTestingModule } from '@angular/router/testing'; import { DSONameService } from '@dspace/core/breadcrumbs/dso-name.service'; import { RelationshipDataService } from '@dspace/core/data/relationship-data.service'; import { @@ -74,7 +74,7 @@ describe('DsoEditMetadataValueComponent', () => { await TestBed.configureTestingModule({ imports: [ TranslateModule.forRoot(), - RouterModule.forRoot([]), + RouterTestingModule.withRoutes([]), DsoEditMetadataValueComponent, VarDirective, BtnDisabledDirective, @@ -89,8 +89,8 @@ describe('DsoEditMetadataValueComponent', () => { .overrideComponent(DsoEditMetadataValueComponent, { remove: { imports: [ - DsoEditMetadataValueFieldLoaderComponent, ThemedTypeBadgeComponent, + DsoEditMetadataValueFieldLoaderComponent, ], }, }) @@ -101,6 +101,7 @@ describe('DsoEditMetadataValueComponent', () => { fixture = TestBed.createComponent(DsoEditMetadataValueComponent); component = fixture.componentInstance; component.mdValue = editMetadataValue; + component.mdField = 'person.birthDate'; component.saving$ = of(false); fixture.detectChanges(); }); diff --git a/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.ts b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.ts index 051aec9b439..ff84e00d8b6 100644 --- a/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.ts +++ b/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.ts @@ -7,6 +7,7 @@ import { NgClass, } from '@angular/common'; import { + ChangeDetectorRef, Component, EventEmitter, Input, @@ -32,8 +33,12 @@ import { import { Vocabulary } from '@dspace/core/submission/vocabularies/models/vocabulary.model'; import { hasValue } from '@dspace/shared/utils/empty.util'; import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'; -import { TranslateModule } from '@ngx-translate/core'; import { + TranslateModule, + TranslateService, +} from '@ngx-translate/core'; +import { + BehaviorSubject, EMPTY, Observable, } from 'rxjs'; @@ -83,16 +88,30 @@ export class DsoEditMetadataValueComponent implements OnInit, OnChanges { * Also used to determine metadata-representations in case of virtual metadata */ @Input() dso: DSpaceObject; + /** + * Editable metadata value to show + */ + @Input() mdValue: DsoEditMetadataValue; + /** - * The metadata field that is being edited + * The metadata field to display a value for */ - @Input() mdField: string; + @Input() + set mdField(mdField: string) { + this._mdField$.next(mdField); + } + + get mdField() { + return this._mdField$.value; + } + + protected readonly _mdField$ = new BehaviorSubject(null); /** - * Editable metadata value to show + * Flag whether this is a new metadata field or exists already */ - @Input() mdValue: DsoEditMetadataValue; + @Input() isNewMdField = false; /** * Type of DSO we're displaying values for @@ -169,6 +188,8 @@ export class DsoEditMetadataValueComponent implements OnInit, OnChanges { protected relationshipService: RelationshipDataService, protected dsoNameService: DSONameService, protected metadataService: MetadataService, + protected cdr: ChangeDetectorRef, + protected translate: TranslateService, protected dsoEditMetadataFieldService: DsoEditMetadataFieldService, ) { } @@ -177,11 +198,6 @@ export class DsoEditMetadataValueComponent implements OnInit, OnChanges { this.initVirtualProperties(); } - ngOnChanges(changes: SimpleChanges): void { - if (changes.mdField) { - this.fieldType$ = this.getFieldType(); - } - } /** * Initialise potential properties of a virtual metadata value @@ -219,4 +235,15 @@ export class DsoEditMetadataValueComponent implements OnInit, OnChanges { ); } + /** + * Change callback for the component. Check if the mdField has changed to retrieve whether it is metadata + * that uses a controlled vocabulary and update the related properties + * + * @param {SimpleChanges} changes + */ + ngOnChanges(changes: SimpleChanges): void { + if (changes.mdField) { + this.fieldType$ = this.getFieldType(); + } + } } diff --git a/src/app/item-page/item-page.resolver.spec.ts b/src/app/item-page/item-page.resolver.spec.ts index e410fa271f1..7da5b8ff8bb 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 dspace.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: { + 'dspace.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 dspace.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 dspace.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..d2c59f6e1b3 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('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 { + 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/shared/entity-icon/entity-icon.directive.spec.ts b/src/app/shared/entity-icon/entity-icon.directive.spec.ts new file mode 100644 index 00000000000..4322f99e146 --- /dev/null +++ b/src/app/shared/entity-icon/entity-icon.directive.spec.ts @@ -0,0 +1,131 @@ +import { Component } from '@angular/core'; +import { + ComponentFixture, + TestBed, +} from '@angular/core/testing'; + +import { EntityIconDirective } from './entity-icon.directive'; + +describe('EntityIconDirective', () => { + let component: TestComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [ + EntityIconDirective, + TestComponent, + ], + }).compileComponents(); + }); + + describe('with default value provided', () => { + beforeEach(() => { + fixture = TestBed.createComponent(TestComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + + it('should display a text-success icon', () => { + const successIcon = fixture.nativeElement.querySelector('[data-test="entityTestComponent"]').querySelector('i.text-success'); + expect(successIcon).toBeTruthy(); + }); + + it('should display a text-success icon after span', () => { + const successIcon = fixture.nativeElement.querySelector('[data-test="entityTestComponent"]').querySelector('i.text-success'); + const entityElement = fixture.nativeElement.querySelector('[data-test="entityTestComponent"]'); + // position 1 because the icon is after the span + expect(entityElement.children[1]).toBe(successIcon); + }); + }); + + describe('with primary value provided', () => { + beforeEach(() => { + fixture = TestBed.createComponent(TestComponent); + component = fixture.componentInstance; + component.metadata.entityType = 'person'; + component.metadata.entityStyle = 'personStaff'; + component.iconPosition = 'before'; + fixture.detectChanges(); + }); + + it('should display a text-primary icon', () => { + const primaryIcon = fixture.nativeElement.querySelector('[data-test="entityTestComponent"]').querySelector('i.text-primary'); + expect(primaryIcon).toBeTruthy(); + }); + + it('should display a text-primary icon before span', () => { + const primaryIcon = fixture.nativeElement.querySelector('[data-test="entityTestComponent"]').querySelector('i.text-primary'); + const entityElement = fixture.nativeElement.querySelector('[data-test="entityTestComponent"]'); + // position 0 because the icon is before the span + expect(entityElement.children[0]).toBe(primaryIcon); + }); + }); + + describe('when given type doesn\'t exist and fallback on default disabled', () => { + beforeEach(() => { + fixture = TestBed.createComponent(TestComponent); + component = fixture.componentInstance; + component.fallbackOnDefault = false; + component.metadata.entityType = 'TESTFAKE'; + component.metadata.entityStyle = 'personFallback'; + component.iconPosition = 'before'; + fixture.detectChanges(); + }); + + it('should not display a text-primary icon', () => { + const primaryIcon = fixture.nativeElement.querySelector('[data-test="entityTestComponent"]').querySelector('i'); + expect(primaryIcon).toBeFalsy(); + }); + }); + + describe('when given style doesn\'t exist and fallback on default disabled', () => { + beforeEach(() => { + fixture = TestBed.createComponent(TestComponent); + component = fixture.componentInstance; + component.fallbackOnDefault = false; + component.metadata.entityType = 'person'; + component.metadata.entityStyle = 'personFallback'; + component.iconPosition = 'before'; + fixture.detectChanges(); + }); + + it('should not display a text-primary icon', () => { + const primaryIcon = fixture.nativeElement.querySelector('[data-test="entityTestComponent"]').querySelector('i'); + expect(primaryIcon).toBeFalsy(); + }); + }); + +}); + + // declare a test component + @Component({ + selector: 'ds-test-cmp', + template: ` +
+ {{ metadata.value }}
`, + imports: [ + EntityIconDirective, + ], + }) +class TestComponent { + + metadata = { + authority: null, + value: 'Test', + orcidAuthenticated: null, + entityType: 'default', + entityStyle: 'default', + }; + iconPosition = 'after'; + fallbackOnDefault = true; + + } diff --git a/src/app/shared/entity-icon/entity-icon.directive.ts b/src/app/shared/entity-icon/entity-icon.directive.ts new file mode 100644 index 00000000000..f06de65fd37 --- /dev/null +++ b/src/app/shared/entity-icon/entity-icon.directive.ts @@ -0,0 +1,130 @@ +import { + Directive, + ElementRef, + Input, + OnInit, +} from '@angular/core'; +import { + AuthorityRefConfig, + AuthorityRefEntityStyleConfig, +} from '@dspace/config/layout-config.interfaces'; +import { + isEmpty, + isNotEmpty, +} from '@dspace/shared/utils/empty.util'; + +import { environment } from '../../../environments/environment'; + + +/** + * Directive to add to the element a entity icon based on metadata entity type and entity style + */ +@Directive({ + selector: '[dsEntityIcon]', + standalone: true, +}) +export class EntityIconDirective implements OnInit { + + /** + * The metadata entity type + */ + @Input() entityType = 'default'; + + /** + * The metadata entity style + */ + @Input() entityStyle: string|string[] = 'default'; + + /** + * A boolean representing if to fallback on default style if the given one is not found + */ + @Input() fallbackOnDefault = true; + + /** + * A boolean representing if to show html icon before or after + */ + @Input() iconPosition = 'after'; + + /** + * A configuration representing authorityRef values + */ + confValue = environment.layout.authorityRef; + + /** + * Initialize instance variables + * + * @param {ElementRef} elem + */ + constructor(private elem: ElementRef) { + } + + /** + * Adding icon to element oninit + */ + ngOnInit() { + const crisRefConfig: AuthorityRefConfig = this.getCrisRefConfigByType(this.entityType); + if (isNotEmpty(crisRefConfig)) { + const crisStyle: AuthorityRefEntityStyleConfig = this.getCrisRefEntityStyleConfig(crisRefConfig, this.entityStyle); + if (isNotEmpty(crisStyle)) { + this.addIcon(crisStyle); + } + } + } + + /** + * Return the AuthorityRefConfig by the given type + * + * @param type + * @private + */ + private getCrisRefConfigByType(type: string): AuthorityRefConfig { + let filteredConf: AuthorityRefConfig = this.confValue.find((config) => config.entityType.toUpperCase() === type.toUpperCase()); + if (isEmpty(filteredConf) && this.fallbackOnDefault) { + filteredConf = this.confValue.find((config) => config.entityType.toUpperCase() === 'DEFAULT'); + } + + return filteredConf; + } + + /** + * Return the AuthorityRefEntityStyleConfig by the given style + * + * @param crisConfig + * @param styles + * @private + */ + private getCrisRefEntityStyleConfig(crisConfig: AuthorityRefConfig, styles: string|string[]): AuthorityRefEntityStyleConfig { + let filteredConf: AuthorityRefEntityStyleConfig; + if (Array.isArray(styles)) { + styles.forEach((style) => { + if (Object.keys(crisConfig.entityStyle).includes(style)) { + filteredConf = crisConfig.entityStyle[style]; + } + }); + } else { + filteredConf = crisConfig.entityStyle[styles]; + } + + if (isEmpty(filteredConf) && this.fallbackOnDefault) { + filteredConf = crisConfig.entityStyle.default; + } + + return filteredConf; + } + + /** + * Attach icon to HTML element + * + * @param crisStyle + * @private + */ + private addIcon(entityStyle: AuthorityRefEntityStyleConfig): void { + const iconElement = ``; + if (this.iconPosition === 'after') { + this.elem.nativeElement.insertAdjacentHTML('afterend', ' ' + iconElement); + } else { + this.elem.nativeElement.insertAdjacentHTML('beforebegin', iconElement + ' '); + } + } + +} diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.html b/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.html index da6de76594c..d2bdfe9dcf4 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.html +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.html @@ -7,7 +7,12 @@
    -
  • {{entry.value}}
  • +
  • + @if (entry.source) { + + } + {{entry.value}} +
  • @for (item of entry.otherInformation | dsObjNgFor; track item) {
  • {{ 'form.other-information.' + item.key | translate }} : {{item.value}} @@ -18,7 +23,15 @@
      -
    • {{entry.value}}
    • +
    • + @if(entry.source) { + + } +
      {{entry.value}}
      + @if(entry.source) { +
      {{ ('form.entry.source.' + entry.source) | translate}}
      + } +
    diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.scss b/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.scss index 4f09ab6c1a4..030fb2196dc 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.scss +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.scss @@ -37,3 +37,7 @@ right: 0; transform: translateY(-50%) } + +.source-icon { + height: 20px +} diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.spec.ts b/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.spec.ts index 97fbaf03686..2a4dc110b02 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.spec.ts +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.spec.ts @@ -45,6 +45,7 @@ import { TranslateModule } from '@ngx-translate/core'; import { getTestScheduler } from 'jasmine-marbles'; import { of } from 'rxjs'; import { TestScheduler } from 'rxjs/testing'; +import { v4 as uuidv4 } from 'uuid'; import { ObjNgFor } from '../../../../../utils/object-ngfor.pipe'; import { AuthorityConfidenceStateDirective } from '../../../../directives/authority-confidence-state.directive'; @@ -52,11 +53,14 @@ import { VocabularyTreeviewComponent } from '../../../../vocabulary-treeview/voc import { DsDynamicOneboxComponent } from './dynamic-onebox.component'; import { DynamicOneboxModel } from './dynamic-onebox.model'; + export let ONEBOX_TEST_GROUP; export let ONEBOX_TEST_MODEL_CONFIG; +const validAuthority = uuidv4(); + // Mock class for NgbModalRef export class MockNgbModalRef { componentInstance = { @@ -364,13 +368,13 @@ describe('DsDynamicOneboxComponent test suite', () => { oneboxComponent.group = ONEBOX_TEST_GROUP; oneboxComponent.model = new DynamicOneboxModel(ONEBOX_TEST_MODEL_CONFIG); const entry = of(Object.assign(new VocabularyEntry(), { - authority: 'test001', + authority: validAuthority, value: 'test001', display: 'test', })); spyOn((oneboxComponent as any).vocabularyService, 'getVocabularyEntryByValue').and.returnValue(entry); spyOn((oneboxComponent as any).vocabularyService, 'getVocabularyEntryByID').and.returnValue(entry); - (oneboxComponent.model as any).value = new FormFieldMetadataValueObject('test', null, 'test001'); + (oneboxComponent.model as any).value = new FormFieldMetadataValueObject('test', null, validAuthority, 'test001'); oneboxCompFixture.detectChanges(); }); @@ -381,7 +385,7 @@ describe('DsDynamicOneboxComponent test suite', () => { it('should init component properly', fakeAsync(() => { tick(); - expect(oneboxComponent.currentValue).toEqual(new FormFieldMetadataValueObject('test001', null, 'test001', 'test')); + expect(oneboxComponent.currentValue).toEqual(new FormFieldMetadataValueObject('test001', null, validAuthority, 'test')); expect((oneboxComponent as any).vocabularyService.getVocabularyEntryByID).toHaveBeenCalled(); })); diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.ts b/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.ts index 8b3901106e7..180785cf5f3 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.ts +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/models/onebox/dynamic-onebox.component.ts @@ -64,6 +64,7 @@ import { tap, } from 'rxjs/operators'; +import { environment } from '../../../../../../../environments/environment'; import { ObjNgFor } from '../../../../../utils/object-ngfor.pipe'; import { AuthorityConfidenceStateDirective } from '../../../../directives/authority-confidence-state.directive'; import { VocabularyTreeviewModalComponent } from '../../../../vocabulary-treeview-modal/vocabulary-treeview-modal.component'; @@ -106,8 +107,11 @@ export class DsDynamicOneboxComponent extends DsDynamicVocabularyComponent imple hideSearchingWhenUnsubscribed$ = new Observable(() => () => this.changeSearchingStatus(false)); click$ = new Subject(); currentValue: any; + previousValue: any; inputValue: any; preloadLevel: number; + authorithyIcons = environment.submission.icons.authority.sourceIcons; + private vocabulary$: Observable; private isHierarchicalVocabulary$: Observable; @@ -293,6 +297,7 @@ export class DsDynamicOneboxComponent extends DsDynamicVocabularyComponent imple modalRef.result.then((result: VocabularyEntryDetail) => { if (result) { this.currentValue = result; + this.previousValue = result; this.dispatchUpdate(result); } }, () => { @@ -323,6 +328,7 @@ export class DsDynamicOneboxComponent extends DsDynamicVocabularyComponent imple .subscribe((formValue: FormFieldMetadataValueObject) => { this.changeLoadingInitialValueStatus(false); this.currentValue = formValue; + this.previousValue = formValue; this.cdr.detectChanges(); }); } else { @@ -331,13 +337,44 @@ export class DsDynamicOneboxComponent extends DsDynamicVocabularyComponent imple } else { result = value.value; } + this.currentValue = null; + this.cdr.detectChanges(); this.currentValue = result; + this.previousValue = result; this.cdr.detectChanges(); } } + /** + * Hide image on error + * @param image + */ + handleImgError(image: HTMLElement): void { + image.style.display = 'none'; + } + + /** + * Get configured icon for each authority source + * @param source + */ + getAuthoritySourceIcon(source: string, image: HTMLElement): string { + if (hasValue(this.authorithyIcons)) { + const iconPath = this.authorithyIcons.find(icon => icon.source === source)?.path; + + if (!hasValue(iconPath)) { + this.handleImgError(image); + } + + return iconPath; + } else { + this.handleImgError(image); + } + + return ''; + } + ngOnDestroy(): void { this.subs .filter((sub) => hasValue(sub)) diff --git a/src/app/shared/image.utils.ts b/src/app/shared/image.utils.ts new file mode 100644 index 00000000000..a6070364220 --- /dev/null +++ b/src/app/shared/image.utils.ts @@ -0,0 +1,34 @@ +import { + Observable, + of, +} from 'rxjs'; +import { map } from 'rxjs/operators'; + +export const getDefaultImageUrlByEntityType = (entityType: string): Observable => { + const fallbackImage = 'assets/images/file-placeholder.svg'; + + if (!entityType) { + return of(fallbackImage); + } + + const defaultImage = `assets/images/${entityType.toLowerCase()}-placeholder.svg`; + return checkImageExists(defaultImage).pipe(map((exists) => exists ? defaultImage : fallbackImage)); +}; + +const checkImageExists = (url: string): Observable => { + return new Observable((observer) => { + const img = new Image(); + + img.onload = () => { + observer.next(true); + observer.complete(); + }; + + img.onerror = () => { + observer.next(false); + observer.complete(); + }; + + img.src = url; + }); +}; diff --git a/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.html b/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.html new file mode 100644 index 00000000000..7a19f47d347 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.html @@ -0,0 +1,21 @@ +
    + @if (isLoading()) { +
    +
    +
    + +
    +
    +
    + } + + @if (src() !== null) { + + } + @if (src() === null && isLoading() === false) { +
    + +
    + } +
    diff --git a/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.scss b/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.scss new file mode 100644 index 00000000000..598ca7ceed4 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.scss @@ -0,0 +1,10 @@ +:host{ + img { + height: 80px; + width: 80px; + min-width: 80px; + border: 1px solid #ccc; + border-radius: 50%; + object-fit: cover; + } +} diff --git a/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.spec.ts b/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.spec.ts new file mode 100644 index 00000000000..472283ceedd --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.spec.ts @@ -0,0 +1,82 @@ +import { + ComponentFixture, + TestBed, + waitForAsync, +} from '@angular/core/testing'; +import { AuthService } from '@dspace/core/auth/auth.service'; +import { AuthorizationDataService } from '@dspace/core/data/feature-authorization/authorization-data.service'; +import { FileService } from '@dspace/core/shared/file.service'; +import { TranslateModule } from '@ngx-translate/core'; +import { of } from 'rxjs'; + +import { ThemedLoadingComponent } from '../../loading/themed-loading.component'; +import { MetadataLinkViewAvatarPopoverComponent } from './metadata-link-view-avatar-popover.component'; + +describe('MetadataLinkViewAvatarPopoverComponent', () => { + let component: MetadataLinkViewAvatarPopoverComponent; + let fixture: ComponentFixture; + let authService; + let authorizationService; + let fileService; + + beforeEach(waitForAsync(() => { + authService = jasmine.createSpyObj('AuthService', { + isAuthenticated: of(true), + }); + authorizationService = jasmine.createSpyObj('AuthorizationService', { + isAuthorized: of(true), + }); + fileService = jasmine.createSpyObj('FileService', { + retrieveFileDownloadLink: null, + }); + + TestBed.configureTestingModule({ + imports: [ + MetadataLinkViewAvatarPopoverComponent, + TranslateModule.forRoot(), + ], + providers: [ + { provide: AuthService, useValue: authService }, + { provide: AuthorizationDataService, useValue: authorizationService }, + { provide: FileService, useValue: fileService }, + ], + }) + .overrideComponent(MetadataLinkViewAvatarPopoverComponent, { remove: { imports: [ThemedLoadingComponent] } }).compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(MetadataLinkViewAvatarPopoverComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + + it('should set fallback image if no entity type', (done) => { + component.ngOnInit(); + component.placeholderImageUrl$.subscribe((url) => { + expect(url).toBe('assets/images/file-placeholder.svg'); + done(); + }); + }); + + it('should set correct placeholder image based on entity type if image exists', (done) => { + component.entityType = 'OrgUnit'; + component.ngOnInit(); + component.placeholderImageUrl$.subscribe((url) => { + expect(url).toBe('assets/images/orgunit-placeholder.svg'); + done(); + }); + }); + + it('should set correct fallback image if image does not exists', (done) => { + component.entityType = 'missingEntityType'; + component.ngOnInit(); + component.placeholderImageUrl$.subscribe((url) => { + expect(url).toBe('assets/images/file-placeholder.svg'); + done(); + }); + }); +}); diff --git a/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.ts b/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.ts new file mode 100644 index 00000000000..42fb08d9216 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component.ts @@ -0,0 +1,46 @@ +import { + AsyncPipe, + NgClass, +} from '@angular/common'; +import { + Component, + Input, + OnInit, +} from '@angular/core'; +import { TranslateModule } from '@ngx-translate/core'; +import { Observable } from 'rxjs'; +import { ThumbnailComponent } from 'src/app/thumbnail/thumbnail.component'; + +import { getDefaultImageUrlByEntityType } from '../../image.utils'; +import { ThemedLoadingComponent } from '../../loading/themed-loading.component'; +import { SafeUrlPipe } from '../../utils/safe-url-pipe'; + +@Component({ + selector: 'ds-metadata-link-view-avatar-popover', + templateUrl: './metadata-link-view-avatar-popover.component.html', + styleUrls: ['./metadata-link-view-avatar-popover.component.scss'], + imports: [ + AsyncPipe, + NgClass, + SafeUrlPipe, + ThemedLoadingComponent, + TranslateModule, + ], +}) +export class MetadataLinkViewAvatarPopoverComponent extends ThumbnailComponent implements OnInit { + + + /** + * Placeholder image url that changes based on entity type + */ + placeholderImageUrl$: Observable; + + /** + * The entity type of the item which the avatar belong + */ + @Input() entityType: string; + + ngOnInit() { + this.placeholderImageUrl$ = getDefaultImageUrlByEntityType(this.entityType); + } +} diff --git a/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.html b/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.html new file mode 100644 index 00000000000..93913a77ad4 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.html @@ -0,0 +1,20 @@ + + @if ((orcidUrl$ | async)) { + + {{ metadataValue }} + + } @else { + {{ metadataValue }} + } + + + @if (hasOrcidBadge()) { + orcid-logo + } + + diff --git a/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.scss b/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.scss new file mode 100644 index 00000000000..b92a52cd35d --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.scss @@ -0,0 +1,4 @@ +.orcid-icon { + height: 1.2rem; + padding-left: 0.3rem; +} diff --git a/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.spec.ts b/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.spec.ts new file mode 100644 index 00000000000..cb89a89f67f --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.spec.ts @@ -0,0 +1,74 @@ +import { + ComponentFixture, + TestBed, +} from '@angular/core/testing'; +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { ConfigurationDataService } from '@dspace/core/data/configuration-data.service'; +import { TranslateLoaderMock } from '@dspace/core/testing/translate-loader.mock'; +import { createSuccessfulRemoteDataObject$ } from '@dspace/core/utilities/remote-data.utils'; +import { + TranslateLoader, + TranslateModule, +} from '@ngx-translate/core'; +import { Item } from 'src/app/core/shared/item.model'; +import { MetadataValue } from 'src/app/core/shared/metadata.models'; + +import { MetadataLinkViewOrcidComponent } from './metadata-link-view-orcid.component'; + +describe('MetadataLinkViewOrcidComponent', () => { + let component: MetadataLinkViewOrcidComponent; + let fixture: ComponentFixture; + + const configurationDataService = jasmine.createSpyObj('configurationDataService', { + findByPropertyName: createSuccessfulRemoteDataObject$({ values: ['https://sandbox.orcid.org'] }), + }); + + + const metadataValue = Object.assign(new MetadataValue(), { + 'value': '0000-0001-8918-3592', + 'language': 'en_US', + 'authority': null, + 'confidence': -1, + 'place': 0, + }); + + const testItem = Object.assign(new Item(), + { + type: 'item', + metadata: { + 'person.identifier.orcid': [metadataValue], + 'dspace.orcid.authenticated': [ + { + language: null, + value: 'authenticated', + }, + ], + }, + uuid: 'test-item-uuid', + }, + ); + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [TranslateModule.forRoot({ + loader: { + provide: TranslateLoader, + useClass: TranslateLoaderMock, + }, + }), BrowserAnimationsModule, MetadataLinkViewOrcidComponent], + providers: [ + { provide: ConfigurationDataService, useValue: configurationDataService }, + ], + }) + .compileComponents(); + + fixture = TestBed.createComponent(MetadataLinkViewOrcidComponent); + component = fixture.componentInstance; + component.itemValue = testItem; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.ts b/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.ts new file mode 100644 index 00000000000..82458a82ce9 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-orcid/metadata-link-view-orcid.component.ts @@ -0,0 +1,61 @@ +import { AsyncPipe } from '@angular/common'; +import { + Component, + Input, + OnInit, +} from '@angular/core'; +import { ConfigurationDataService } from '@dspace/core/data/configuration-data.service'; +import { ConfigurationProperty } from '@dspace/core/shared/configuration-property.model'; +import { Item } from '@dspace/core/shared/item.model'; +import { getFirstSucceededRemoteDataPayload } from '@dspace/core/shared/operators'; +import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'; +import { TranslateModule } from '@ngx-translate/core'; +import { + map, + Observable, +} from 'rxjs'; + +@Component({ + selector: 'ds-metadata-link-view-orcid', + templateUrl: './metadata-link-view-orcid.component.html', + styleUrls: ['./metadata-link-view-orcid.component.scss'], + imports: [ + AsyncPipe, + NgbTooltipModule, + TranslateModule, + ], +}) +export class MetadataLinkViewOrcidComponent implements OnInit { + /** + * Item value to display the metadata for + */ + @Input() itemValue: Item; + + metadataValue: string; + + orcidUrl$: Observable; + + constructor(protected configurationService: ConfigurationDataService) {} + + ngOnInit(): void { + this.orcidUrl$ = this.configurationService + .findByPropertyName('orcid.domain-url') + .pipe( + getFirstSucceededRemoteDataPayload(), + map((property: ConfigurationProperty) => + property?.values?.length > 0 ? property.values[0] : null, + ), + ); + this.metadataValue = this.itemValue.firstMetadataValue( + 'person.identifier.orcid', + ); + } + + public hasOrcid(): boolean { + return this.itemValue.hasMetadata('person.identifier.orcid'); + } + + public hasOrcidBadge(): boolean { + return this.itemValue.hasMetadata('dspace.orcid.authenticated'); + } +} diff --git a/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.html b/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.html new file mode 100644 index 00000000000..db449afca53 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.html @@ -0,0 +1,77 @@ +
    + +
    + @if (item.thumbnail | async) { + + } + {{item.firstMetadataValue('dc.title')}} +
    + + @for (metadata of entityMetdataFields; track metadata) { + @if (item.hasMetadata(metadata)) { +
    +
    + {{ "metadata-link-view.popover.label." + (isOtherEntityType ? "other" : item.entityType) + "." + metadata | translate }} +
    +
    + @if (longTextMetadataList.includes(metadata)) { + + {{ item.firstMetadataValue(metadata) }} + + } + @if (isLink(item.firstMetadataValue(metadata)) && !getSourceSubTypeIdentifier(metadata)) { + + {{ item.firstMetadataValue(metadata) }} + + } + @if (getSourceSubTypeIdentifier(metadata)) { +
    + + @if (isLink(rorValue)) { + + {{ item.firstMetadataValue(metadata) }} + + } + @if (!isLink(rorValue)) { + + {{ item.firstMetadataValue(metadata) }} + + } + + source-logo +
    + } + @if (!isLink(item.firstMetadataValue(metadata)) && !longTextMetadataList.includes(metadata)) { +
    + @if (metadata === 'person.identifier.orcid') { + + } @else { + {{ item.firstMetadataValue(metadata) }} + } +
    + } +
    +
    + } + } + + +
    diff --git a/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.scss b/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.scss new file mode 100644 index 00000000000..47ea2c353d2 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.scss @@ -0,0 +1,6 @@ +.source-icon { + height: var(--ds-identifier-subtype-icon-height); + min-height: 16px; + width: auto; + padding-left: 0.3rem; +} diff --git a/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.spec.ts b/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.spec.ts new file mode 100644 index 00000000000..23ee3c39a88 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.spec.ts @@ -0,0 +1,141 @@ +import { NO_ERRORS_SCHEMA } from '@angular/core'; +import { + ComponentFixture, + TestBed, + waitForAsync, +} from '@angular/core/testing'; +import { By } from '@angular/platform-browser'; +import { ActivatedRoute } from '@angular/router'; +import { createSuccessfulRemoteDataObject$ } from '@dspace/core/utilities/remote-data.utils'; +import { TranslateModule } from '@ngx-translate/core'; +import { Bitstream } from 'src/app/core/shared/bitstream.model'; +import { Item } from 'src/app/core/shared/item.model'; +import { MetadataValueFilter } from 'src/app/core/shared/metadata.models'; +import { environment } from 'src/environments/environment.test'; + +import { MetadataLinkViewAvatarPopoverComponent } from '../metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component'; +import { MetadataLinkViewOrcidComponent } from '../metadata-link-view-orcid/metadata-link-view-orcid.component'; +import { MetadataLinkViewPopoverComponent } from './metadata-link-view-popover.component'; + +describe('MetadataLinkViewPopoverComponent', () => { + let component: MetadataLinkViewPopoverComponent; + let fixture: ComponentFixture; + + + const itemMock = Object.assign(new Item(), { + uuid: '1234-1234-1234-1234', + entityType: 'Publication', + + firstMetadataValue(keyOrKeys: string | string[], valueFilter?: MetadataValueFilter): string { + return itemMock.metadata[keyOrKeys as string][0].value; + }, + + metadata: { + 'dc.title': [ + { + value: 'file name', + language: null, + }, + ], + 'dc.identifier.uri': [ + { + value: 'http://example.com', + language: null, + }, + ], + 'dc.description.abstract': [ + { + value: 'Long text description', + language: null, + }, + ], + 'organization.identifier.ror': [ + { + value: 'https://ror.org/1234', + language: null, + }, + ], + 'person.identifier.orcid': [ + { + value: 'https://orcid.org/0000-0000-0000-0000', + language: null, + }, + ], + 'dspace.entity.type': [ + { + value: 'Person', + language: null, + }, + ], + }, + thumbnail: createSuccessfulRemoteDataObject$(new Bitstream()), + }); + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + imports: [TranslateModule.forRoot(), MetadataLinkViewPopoverComponent], + schemas: [NO_ERRORS_SCHEMA], + providers: [ + { provide: ActivatedRoute, useValue: { snapshot: { data: { dso: itemMock } } } }, + ], + }) + .overrideComponent(MetadataLinkViewPopoverComponent, { remove: { imports: [MetadataLinkViewOrcidComponent, MetadataLinkViewAvatarPopoverComponent] } }).compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(MetadataLinkViewPopoverComponent); + component = fixture.componentInstance; + component.item = itemMock; + itemMock.firstMetadataValue = jasmine.createSpy() + .withArgs('dspace.entity.type').and.returnValue('Person') + .withArgs('dc.title').and.returnValue('Test Title') + .withArgs('dc.identifier.uri').and.returnValue('http://example.com') + .withArgs('dc.description.abstract').and.returnValue('Long text description') + .withArgs('organization.identifier.ror').and.returnValue('https://ror.org/1234') + .withArgs('person.identifier.orcid').and.returnValue('https://orcid.org/0000-0000-0000-0000'); + + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + + it('should display the item title', () => { + const titleElement = fixture.debugElement.query(By.css('.font-weight-bold.h4')); + expect(titleElement.nativeElement.textContent).toContain('Test Title'); + }); + + it('should display a link for each metadata field that is a valid link', () => { + component.entityMetdataFields = ['dc.identifier.uri']; + fixture.detectChanges(); + const linkElement = fixture.debugElement.query(By.css('a[href="http://example.com"]')); + expect(linkElement).toBeTruthy(); + }); + + it('should retrieve the identifier subtype configuration based on the given metadata value', () => { + const metadataValue = 'organization.identifier.ror'; + const expectedSubtypeConfig = environment.identifierSubtypes.find((config) => config.name === 'ror'); + expect(component.getSourceSubTypeIdentifier(metadataValue)).toEqual(expectedSubtypeConfig); + }); + + + it('should check if a given metadata value is a valid link', () => { + const validLink = 'http://example.com'; + const invalidLink = 'not a link'; + expect(component.isLink(validLink)).toBeTrue(); + expect(component.isLink(invalidLink)).toBeFalse(); + }); + + it('should display the "more info" link with the correct router link', () => { + spyOn(component, 'getItemPageRoute').and.returnValue('/item/' + itemMock.uuid); + fixture.detectChanges(); + const moreInfoLinkElement = fixture.debugElement.query(By.css('a[data-test="more-info-link"]')); + expect(moreInfoLinkElement.nativeElement.href).toContain('/item/' + itemMock.uuid); + }); + + it('should display the avatar popover when item has a thumbnail', () => { + const avatarPopoverElement = fixture.debugElement.query(By.css('ds-metadata-link-view-avatar-popover')); + expect(avatarPopoverElement).toBeTruthy(); + }); +}); diff --git a/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.ts b/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.ts new file mode 100644 index 00000000000..b7a3b703792 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view-popover/metadata-link-view-popover.component.ts @@ -0,0 +1,122 @@ +import { + AsyncPipe, + NgOptimizedImage, +} from '@angular/common'; +import { + Component, + Input, + OnInit, +} from '@angular/core'; +import { RouterLink } from '@angular/router'; +import { IdentifierSubtypesConfig } from '@dspace/config/identifier-subtypes-config.interface'; +import { MetadataLinkViewPopoverDataConfig } from '@dspace/config/metadata-link-view-popoverdata-config.interface'; +import { getItemPageRoute } from '@dspace/core/router/utils/dso-route.utils'; +import { Item } from '@dspace/core/shared/item.model'; +import { + hasNoValue, + hasValue, +} from '@dspace/shared/utils/empty.util'; +import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'; +import { TranslateModule } from '@ngx-translate/core'; +import { AuthorithyIcon } from 'src/config/submission-config.interface'; +import { environment } from 'src/environments/environment'; + +import { VarDirective } from '../../utils/var.directive'; +import { MetadataLinkViewAvatarPopoverComponent } from '../metadata-link-view-avatar-popover/metadata-link-view-avatar-popover.component'; +import { MetadataLinkViewOrcidComponent } from '../metadata-link-view-orcid/metadata-link-view-orcid.component'; + + +@Component({ + selector: 'ds-metadata-link-view-popover', + templateUrl: './metadata-link-view-popover.component.html', + styleUrls: ['./metadata-link-view-popover.component.scss'], + imports: [ + AsyncPipe, + MetadataLinkViewAvatarPopoverComponent, + MetadataLinkViewOrcidComponent, + NgbTooltipModule, + NgOptimizedImage, + RouterLink, + TranslateModule, + VarDirective, + ], +}) +export class MetadataLinkViewPopoverComponent implements OnInit { + + /** + * The item to display the metadata for + */ + @Input() item: Item; + + /** + * The metadata link view popover data configuration. + * This configuration is used to determine which metadata fields to display for the given entity type + */ + metadataLinkViewPopoverData: MetadataLinkViewPopoverDataConfig = environment.metadataLinkViewPopoverData; + + /** + * The metadata fields to display for the given entity type + */ + entityMetdataFields: string[] = []; + + /** + * The metadata fields including long text metadata values. + * These metadata values should be truncated to a certain length. + */ + longTextMetadataList = ['dc.description.abstract', 'dc.description']; + + /** + * The source icons configuration + */ + sourceIcons: AuthorithyIcon[] = environment.submission.icons.authority.sourceIcons; + + /** + * The identifier subtype configurations + */ + identifierSubtypeConfig: IdentifierSubtypesConfig[] = environment.identifierSubtypes; + + /** + * Whether the entity type is not found in the metadataLinkViewPopoverData configuration + */ + isOtherEntityType = false; + + /** + * If `metadataLinkViewPopoverData` is provided, it retrieves the metadata fields based on the entity type. + * If no metadata fields are found for the entity type, it falls back to the fallback metadata list. + */ + ngOnInit() { + if (this.metadataLinkViewPopoverData) { + const metadataFields = this.metadataLinkViewPopoverData.entityDataConfig.find((config) => config.entityType === this.item.entityType); + this.entityMetdataFields = hasValue(metadataFields) ? metadataFields.metadataList : this.metadataLinkViewPopoverData.fallbackMetdataList; + this.isOtherEntityType = hasNoValue(metadataFields); + } + } + + /** + * Checks if the given metadata value is a valid link. + */ + isLink(metadataValue: string): boolean { + const urlRegex = /^(http|https):\/\/[^ "]+$/; + return urlRegex.test(metadataValue); + } + + /** + * Returns the page route for the item. + * @returns The page route for the item. + */ + getItemPageRoute(): string { + return getItemPageRoute(this.item); + } + + /** + * Retrieves the identifier subtype configuration based on the given metadata value. + * @param metadataValue - The metadata value used to determine the identifier subtype. + * @returns The identifier subtype configuration object. + */ + getSourceSubTypeIdentifier(metadataValue: string): IdentifierSubtypesConfig { + const metadataValueSplited = metadataValue.split('.'); + const subtype = metadataValueSplited[metadataValueSplited.length - 1]; + const identifierSubtype = this.identifierSubtypeConfig.find((config) => config.name === subtype); + return identifierSubtype; + } +} diff --git a/src/app/shared/metadata-link-view/metadata-link-view.component.html b/src/app/shared/metadata-link-view/metadata-link-view.component.html new file mode 100644 index 00000000000..abc7a38549e --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view.component.html @@ -0,0 +1,51 @@ +
    + @if (metadataView) { + + } +
    + + + + + {{metadataView.value}} + + + + @if (metadataView.orcidAuthenticated) { + orcid-logo + } + + + + {{normalizeValue(metadataView.value)}} + + + + {{normalizeValue(metadataView.value)}} + + + + + + diff --git a/src/app/shared/metadata-link-view/metadata-link-view.component.scss b/src/app/shared/metadata-link-view/metadata-link-view.component.scss new file mode 100644 index 00000000000..f34f101c7e0 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view.component.scss @@ -0,0 +1,11 @@ +.orcid-icon { + height: 1.2rem; + padding-left: 0.3rem; +} + + +::ng-deep .popover { + max-width: 400px !important; + width: 100%; + min-width: 300px !important; +} diff --git a/src/app/shared/metadata-link-view/metadata-link-view.component.spec.ts b/src/app/shared/metadata-link-view/metadata-link-view.component.spec.ts new file mode 100644 index 00000000000..789730fca64 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view.component.spec.ts @@ -0,0 +1,217 @@ +import { + ComponentFixture, + TestBed, + waitForAsync, +} from '@angular/core/testing'; +import { By } from '@angular/platform-browser'; +import { RouterTestingModule } from '@angular/router/testing'; +import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'; +import { of } from 'rxjs'; +import { v4 as uuidv4 } from 'uuid'; + +import { ItemDataService } from '../../core/data/item-data.service'; +import { Item } from '../../core/shared/item.model'; +import { MetadataValue } from '../../core/shared/metadata.models'; +import { EntityIconDirective } from '../entity-icon/entity-icon.directive'; +import { VarDirective } from '../utils/var.directive'; +import { MetadataLinkViewComponent } from './metadata-link-view.component'; +import SpyObj = jasmine.SpyObj; +import { + createFailedRemoteDataObject$, + createSuccessfulRemoteDataObject$, +} from '@dspace/core/utilities/remote-data.utils'; + +import { MetadataLinkViewPopoverComponent } from './metadata-link-view-popover/metadata-link-view-popover.component'; + +describe('MetadataLinkViewComponent', () => { + let component: MetadataLinkViewComponent; + let fixture: ComponentFixture; + let itemService: SpyObj; + const validAuthority = uuidv4(); + + const testPerson = Object.assign(new Item(), { + id: '1', + bundles: of({}), + metadata: { + 'dspace.entity.type': [ + Object.assign(new MetadataValue(), { + value: 'Person', + }), + ], + 'person.orgunit.id': [ + Object.assign(new MetadataValue(), { + value: 'OrgUnit', + authority: '2', + }), + ], + 'person.identifier.orcid': [ + Object.assign(new MetadataValue(), { + language: 'en_US', + value: '0000-0001-8918-3592', + }), + ], + 'dspace.orcid.authenticated': [ + Object.assign(new MetadataValue(), { + language: null, + value: 'authenticated', + }), + ], + }, + entityType: 'Person', + }); + + const testOrgunit = Object.assign(new Item(), { + id: '2', + bundles: of({}), + metadata: { + 'dspace.entity.type': [ + Object.assign(new MetadataValue(), { + value: 'OrgUnit', + }), + ], + 'orgunit.person.id': [ + Object.assign(new MetadataValue(), { + value: 'Person', + authority: '1', + }), + ], + }, + entityType: 'OrgUnit', + }); + + const testMetadataValueWithoutAuthority = Object.assign(new MetadataValue(), { + authority: null, + confidence: -1, + language: null, + place: 0, + uuid: '56e99d82-2cae-4cce-8d12-39899dea7c72', + value: 'Università degli Studi di Milano Bicocca', + }); + + const testMetadataValueWithAuthority = Object.assign(new MetadataValue(), { + authority: validAuthority, + confidence: 600, + language: null, + place: 0, + uuid: '56e99d82-2cae-4cce-8d12-39899dea7c72', + value: 'Università degli Studi di Milano Bicocca', + }); + + itemService = jasmine.createSpyObj('ItemDataService', { + findById: jasmine.createSpy('findById'), + }); + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + imports: [ + NgbTooltipModule, + RouterTestingModule, + MetadataLinkViewComponent, EntityIconDirective, VarDirective, + ], + providers: [ + { provide: ItemDataService, useValue: itemService }, + ], + }) + .overrideComponent(MetadataLinkViewComponent, { remove: { imports: [MetadataLinkViewPopoverComponent] } }).compileComponents(); + })); + + describe('Check metadata without authority', () => { + beforeEach(() => { + fixture = TestBed.createComponent(MetadataLinkViewComponent); + itemService.findById.and.returnValue(createSuccessfulRemoteDataObject$(testOrgunit)); + component = fixture.componentInstance; + component.metadata = testMetadataValueWithoutAuthority; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + + it('should render the span element', () => { + const text = fixture.debugElement.query(By.css('[data-test="textWithoutIcon"]')); + const link = fixture.debugElement.query(By.css('[data-test="linkToAuthority"]')); + + expect(text).toBeTruthy(); + expect(link).toBeNull(); + }); + + }); + + describe('Check metadata with authority', () => { + describe('when item is found with orcid', () => { + beforeEach(() => { + fixture = TestBed.createComponent(MetadataLinkViewComponent); + itemService.findById.and.returnValue(createSuccessfulRemoteDataObject$(testPerson)); + component = fixture.componentInstance; + component.metadata = testMetadataValueWithAuthority; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + + it('should render the link element', () => { + const link = fixture.debugElement.query(By.css('[data-test="linkToAuthority"]')); + + expect(link).toBeTruthy(); + }); + + it('should render the orcid icon', () => { + const icon = fixture.debugElement.query(By.css('[data-test="orcidIcon"]')); + + expect(icon).toBeTruthy(); + }); + }); + + describe('when item is found without orcid', () => { + beforeEach(() => { + fixture = TestBed.createComponent(MetadataLinkViewComponent); + itemService.findById.and.returnValue(createSuccessfulRemoteDataObject$(testOrgunit)); + component = fixture.componentInstance; + component.metadata = testMetadataValueWithAuthority; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + + it('should render the link element', () => { + const link = fixture.debugElement.query(By.css('[data-test="linkToAuthority"]')); + + expect(link).toBeTruthy(); + }); + + it('should not render the orcid icon', () => { + const icon = fixture.debugElement.query(By.css('[data-test="orcidIcon"]')); + + expect(icon).toBeFalsy(); + }); + }); + + describe('when item is not found', () => { + beforeEach(() => { + fixture = TestBed.createComponent(MetadataLinkViewComponent); + itemService.findById.and.returnValue(createFailedRemoteDataObject$()); + component = fixture.componentInstance; + component.metadata = testMetadataValueWithAuthority; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + + it('should render the span element', () => { + const text = fixture.debugElement.query(By.css('[data-test="textWithIcon"]')); + const link = fixture.debugElement.query(By.css('[data-test="linkToAuthority"]')); + + expect(text).toBeTruthy(); + expect(link).toBeNull(); + }); + }); + }); + +}); diff --git a/src/app/shared/metadata-link-view/metadata-link-view.component.ts b/src/app/shared/metadata-link-view/metadata-link-view.component.ts new file mode 100644 index 00000000000..e44e1422f15 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-link-view.component.ts @@ -0,0 +1,182 @@ +import { + AsyncPipe, + NgTemplateOutlet, +} from '@angular/common'; +import { + Component, + Input, + OnInit, +} from '@angular/core'; +import { RouterLink } from '@angular/router'; +import { getItemPageRoute } from '@dspace/core/router/utils/dso-route.utils'; +import { followLink } from '@dspace/core/shared/follow-link-config.model'; +import { PLACEHOLDER_PARENT_METADATA } from '@dspace/core/shared/form/ds-dynamic-form-constants'; +import { isNotEmpty } from '@dspace/shared/utils/empty.util'; +import { + NgbPopoverModule, + NgbTooltipModule, +} from '@ng-bootstrap/ng-bootstrap'; +import { + Observable, + of, +} from 'rxjs'; +import { + map, + switchMap, + take, +} from 'rxjs/operators'; + +import { ItemDataService } from '../../core/data/item-data.service'; +import { RemoteData } from '../../core/data/remote-data'; +import { Item } from '../../core/shared/item.model'; +import { MetadataValue } from '../../core/shared/metadata.models'; +import { Metadata } from '../../core/shared/metadata.utils'; +import { getFirstCompletedRemoteData } from '../../core/shared/operators'; +import { EntityIconDirective } from '../entity-icon/entity-icon.directive'; +import { VarDirective } from '../utils/var.directive'; +import { MetadataLinkViewPopoverComponent } from './metadata-link-view-popover/metadata-link-view-popover.component'; +import { MetadataView } from './metadata-view.model'; +import { StickyPopoverDirective } from './sticky-popover.directive'; + +@Component({ + selector: 'ds-metadata-link-view', + templateUrl: './metadata-link-view.component.html', + styleUrls: ['./metadata-link-view.component.scss'], + imports: [ + AsyncPipe, + EntityIconDirective, + MetadataLinkViewPopoverComponent, + NgbPopoverModule, + NgbTooltipModule, + NgTemplateOutlet, + RouterLink, + StickyPopoverDirective, + VarDirective, + ], +}) +export class MetadataLinkViewComponent implements OnInit { + + /** + * Metadata value that we need to show in the template + */ + @Input() metadata: MetadataValue; + + /** + * Processed metadata to create MetadataOrcid with the information needed to show + */ + metadataView$: Observable; + + /** + * Position of the Icon before/after the element + */ + iconPosition = 'after'; + + /** + * Related item of the metadata value + */ + relatedItem: Item; + + /** + * Route of related item page + */ + relatedDsoRoute: string; + + /** + * Map all entities with the icons specified in the environment configuration file + */ + constructor(private itemService: ItemDataService) { } + + /** + * On init process metadata to get the information and form MetadataOrcid model + */ + ngOnInit(): void { + this.metadataView$ = of(this.metadata).pipe( + switchMap((metadataValue: MetadataValue) => this.getMetadataView(metadataValue)), + take(1), + ); + } + + + /** + * Retrieves the metadata view for a given metadata value. + * If the metadata value has a valid authority, it retrieves the item using the authority and creates a metadata view. + * If the metadata value does not have a valid authority, it creates a metadata view with null values. + * + * @param metadataValue The metadata value for which to retrieve the metadata view. + * @returns An Observable that emits the metadata view. + */ + private getMetadataView(metadataValue: MetadataValue): Observable { + const linksToFollow = [followLink('thumbnail')]; + + if (Metadata.hasValidAuthority(metadataValue.authority)) { + return this.itemService.findById(metadataValue.authority, true, false, ...linksToFollow).pipe( + getFirstCompletedRemoteData(), + map((itemRD: RemoteData) => this.createMetadataView(itemRD, metadataValue)), + ); + } else { + return of({ + authority: null, + value: metadataValue.value, + orcidAuthenticated: null, + entityType: null, + entityStyle: null, + }); + } + } + + /** + * Creates a MetadataView object based on the provided itemRD and metadataValue. + * @param itemRD - The RemoteData object containing the item information. + * @param metadataValue - The MetadataValue object containing the metadata information. + * @returns The created MetadataView object. + */ + private createMetadataView(itemRD: RemoteData, metadataValue: MetadataValue): MetadataView { + if (itemRD.hasSucceeded) { + this.relatedItem = itemRD.payload; + this.relatedDsoRoute = this.getItemPageRoute(this.relatedItem); + return { + authority: metadataValue.authority, + value: metadataValue.value, + orcidAuthenticated: this.getOrcid(itemRD.payload), + entityType: (itemRD.payload as Item)?.entityType, + }; + } else { + return { + authority: null, + value: metadataValue.value, + orcidAuthenticated: null, + entityType: 'PRIVATE', + }; + } + } + + /** + * Returns the orcid for given item, or null if there is no metadata authenticated for person + * + * @param referencedItem Item of the metadata being shown + */ + getOrcid(referencedItem: Item): string { + if (referencedItem?.hasMetadata('dspace.orcid.authenticated')) { + return referencedItem.firstMetadataValue('person.identifier.orcid'); + } + return null; + } + + /** + * Normalize value to display + * + * @param value + */ + normalizeValue(value: string): string { + if (isNotEmpty(value) && value.includes(PLACEHOLDER_PARENT_METADATA)) { + return ''; + } else { + return value; + } + } + + getItemPageRoute(item: Item): string { + return getItemPageRoute(item); + } + +} diff --git a/src/app/shared/metadata-link-view/metadata-view.model.ts b/src/app/shared/metadata-link-view/metadata-view.model.ts new file mode 100644 index 00000000000..fc5ecf24792 --- /dev/null +++ b/src/app/shared/metadata-link-view/metadata-view.model.ts @@ -0,0 +1,6 @@ +export interface MetadataView { + authority: string; + value: string; + orcidAuthenticated: string; + entityType: string; +} diff --git a/src/app/shared/metadata-link-view/sticky-popover.directive.ts b/src/app/shared/metadata-link-view/sticky-popover.directive.ts new file mode 100644 index 00000000000..0809fde9a97 --- /dev/null +++ b/src/app/shared/metadata-link-view/sticky-popover.directive.ts @@ -0,0 +1,129 @@ +import { DOCUMENT } from '@angular/common'; +import { + ApplicationRef, + ChangeDetectorRef, + Directive, + ElementRef, + Inject, + Injector, + Input, + NgZone, + OnDestroy, + OnInit, + Renderer2, + TemplateRef, + ViewContainerRef, +} from '@angular/core'; +import { + NavigationStart, + Router, +} from '@angular/router'; +import { + NgbPopover, + NgbPopoverConfig, +} from '@ng-bootstrap/ng-bootstrap'; +import { Subscription } from 'rxjs'; + +/** + * Directive to create a sticky popover using NgbPopover. + * The popover remains open when the mouse is over its content and closes when the mouse leaves. + */ +@Directive({ + selector: '[dsStickyPopover]', + standalone:true, +}) +export class StickyPopoverDirective extends NgbPopover implements OnInit, OnDestroy { + /** Template for the sticky popover content */ + @Input() dsStickyPopover: TemplateRef; + + /** Subscriptions to manage router events */ + subs: Subscription[] = []; + + /** Flag to determine if the popover can be closed */ + private canClosePopover: boolean; + + /** Reference to the element the directive is applied to */ + private readonly _elRef; + + /** Renderer to listen to and manipulate DOM elements */ + private readonly _render; + + constructor( + _elementRef: ElementRef, + _renderer: Renderer2, injector: Injector, + viewContainerRef: ViewContainerRef, + config: NgbPopoverConfig, + _ngZone: NgZone, + @Inject(DOCUMENT) _document: Document, + _changeDetector: ChangeDetectorRef, + applicationRef: ApplicationRef, + private router: Router, + ) { + super(_elementRef, _renderer, injector, viewContainerRef, config, _ngZone, document, _changeDetector, applicationRef); + this._elRef = _elementRef; + this._render = _renderer; + this.triggers = 'manual'; + this.container = 'body'; + } + + /** + * Sets up event listeners for mouse enter, mouse leave, and click events. + */ + ngOnInit(): void { + super.ngOnInit(); + this.ngbPopover = this.dsStickyPopover; + + this._render.listen(this._elRef.nativeElement, 'mouseenter', () => { + this.canClosePopover = true; + this.open(); + }); + + this._render.listen(this._elRef.nativeElement, 'mouseleave', () => { + setTimeout(() => { + if (this.canClosePopover) { + this.close(); + } + }, 100); + }); + + this._render.listen(this._elRef.nativeElement, 'click', () => { + this.close(); + }); + + this.subs.push( + this.router.events.subscribe((event) => { + if (event instanceof NavigationStart) { + this.close(); + } + }), + ); + } + + /** + * Opens the popover and sets up event listeners for mouse over and mouse out events on the popover. + */ + open() { + super.open(); + const popover = window.document.querySelector('.popover'); + this._render.listen(popover, 'mouseover', () => { + this.canClosePopover = false; + }); + + this._render.listen(popover, 'mouseout', () => { + this.canClosePopover = true; + setTimeout(() => { + if (this.canClosePopover) { + this.close(); + } + }, 0); + }); + } + + /** + * Unsubscribes from all subscriptions when the directive is destroyed. + */ + ngOnDestroy() { + super.ngOnDestroy(); + this.subs.forEach((sub) => sub.unsubscribe()); + } +} diff --git a/src/app/shared/metadata-representation/metadata-representation.decorator.ts b/src/app/shared/metadata-representation/metadata-representation.decorator.ts index 5fc916daef5..e7cb2a720bd 100644 --- a/src/app/shared/metadata-representation/metadata-representation.decorator.ts +++ b/src/app/shared/metadata-representation/metadata-representation.decorator.ts @@ -15,6 +15,7 @@ import { DEFAULT_THEME, resolveTheme, } from '../object-collection/shared/listable-object/listable-object.decorator'; +import { AuthorityLinkMetadataListElementComponent } from '../object-list/metadata-representation-list-element/authority-link/authority-link-metadata-list-element.component'; import { BrowseLinkMetadataListElementComponent } from '../object-list/metadata-representation-list-element/browse-link/browse-link-metadata-list-element.component'; import { ItemMetadataListElementComponent } from '../object-list/metadata-representation-list-element/item/item-metadata-list-element.component'; import { PlainTextMetadataListElementComponent } from '../object-list/metadata-representation-list-element/plain-text/plain-text-metadata-list-element.component'; @@ -34,7 +35,8 @@ export type MetadataRepresentationComponent = typeof ItemMetadataListElementComponent | typeof OrgUnitItemMetadataListElementComponent | typeof PersonItemMetadataListElementComponent | - typeof ProjectItemMetadataListElementComponent; + typeof ProjectItemMetadataListElementComponent | + typeof AuthorityLinkMetadataListElementComponent; export const METADATA_REPRESENTATION_COMPONENT_DECORATOR_MAP = new Map>>>([ @@ -42,21 +44,27 @@ export const METADATA_REPRESENTATION_COMPONENT_DECORATOR_MAP = [MetadataRepresentationType.PlainText, new Map([ [DEFAULT_CONTEXT, new Map([[DEFAULT_THEME, PlainTextMetadataListElementComponent as any]])]])], [MetadataRepresentationType.AuthorityControlled, new Map([ - [DEFAULT_CONTEXT, new Map([[DEFAULT_THEME, PlainTextMetadataListElementComponent]])]])], + [DEFAULT_CONTEXT, new Map([[DEFAULT_THEME, AuthorityLinkMetadataListElementComponent]])]])], [MetadataRepresentationType.BrowseLink, new Map([ [DEFAULT_CONTEXT, new Map([[DEFAULT_THEME, BrowseLinkMetadataListElementComponent]])]])], [MetadataRepresentationType.Item, new Map([ [DEFAULT_CONTEXT, new Map([[DEFAULT_THEME, ItemMetadataListElementComponent]])]])], ])], ['Person', new Map([ + [MetadataRepresentationType.AuthorityControlled, new Map([ + [DEFAULT_CONTEXT, new Map([[DEFAULT_THEME, AuthorityLinkMetadataListElementComponent as any]])]])], [MetadataRepresentationType.Item, new Map([ [DEFAULT_CONTEXT, new Map([[DEFAULT_THEME, PersonItemMetadataListElementComponent]])]])], ])], ['OrgUnit', new Map([ + [MetadataRepresentationType.AuthorityControlled, new Map([ + [DEFAULT_CONTEXT, new Map([[DEFAULT_THEME, AuthorityLinkMetadataListElementComponent as any]])]])], [MetadataRepresentationType.Item, new Map([ [DEFAULT_CONTEXT, new Map([[DEFAULT_THEME, OrgUnitItemMetadataListElementComponent]])]])], ])], ['Project', new Map([ + [MetadataRepresentationType.AuthorityControlled, new Map([ + [DEFAULT_CONTEXT, new Map([[DEFAULT_THEME, AuthorityLinkMetadataListElementComponent as any]])]])], [MetadataRepresentationType.Item, new Map([ [DEFAULT_CONTEXT, new Map([[DEFAULT_THEME, ProjectItemMetadataListElementComponent]])]])], ])], diff --git a/src/app/shared/object-list/item-list-element/item-types/item/item-list-element.component.spec.ts b/src/app/shared/object-list/item-list-element/item-types/item/item-list-element.component.spec.ts index 2eba47d4fb7..1140df6df2a 100644 --- a/src/app/shared/object-list/item-list-element/item-types/item/item-list-element.component.spec.ts +++ b/src/app/shared/object-list/item-list-element/item-types/item/item-list-element.component.spec.ts @@ -10,6 +10,7 @@ import { APP_CONFIG } from '@dspace/config/app-config.interface'; import { AuthService } from '@dspace/core/auth/auth.service'; import { DSONameService } from '@dspace/core/breadcrumbs/dso-name.service'; import { AuthorizationDataService } from '@dspace/core/data/feature-authorization/authorization-data.service'; +import { APP_DATA_SERVICES_MAP } from '@dspace/core/data-services-map-type'; import { Item } from '@dspace/core/shared/item.model'; import { ActivatedRouteStub } from '@dspace/core/testing/active-router.stub'; import { AuthServiceStub } from '@dspace/core/testing/auth-service.stub'; @@ -17,6 +18,7 @@ import { AuthorizationDataServiceStub } from '@dspace/core/testing/authorization import { DSONameServiceMock } from '@dspace/core/testing/dso-name.service.mock'; import { TruncatableServiceStub } from '@dspace/core/testing/truncatable-service.stub'; import { XSRFService } from '@dspace/core/xsrf/xsrf.service'; +import { provideMockStore } from '@ngrx/store/testing'; import { TranslateModule } from '@ngx-translate/core'; import { of } from 'rxjs'; @@ -85,8 +87,6 @@ describe('ItemListElementComponent', () => { TranslateModule.forRoot(), TruncatePipe, ], - declarations: [ - ], providers: [ { provide: DSONameService, useValue: new DSONameServiceMock() }, { provide: APP_CONFIG, useValue: environment }, @@ -96,6 +96,8 @@ describe('ItemListElementComponent', () => { { provide: ThemeService, useValue: themeService }, { provide: TruncatableService, useValue: truncatableService }, { provide: XSRFService, useValue: {} }, + { provide: APP_DATA_SERVICES_MAP, useValue: {} }, + provideMockStore(), ], }).overrideComponent(ItemListElementComponent, { set: { changeDetection: ChangeDetectionStrategy.Default }, diff --git a/src/app/shared/object-list/metadata-representation-list-element/authority-link/authority-link-metadata-list-element.component.html b/src/app/shared/object-list/metadata-representation-list-element/authority-link/authority-link-metadata-list-element.component.html new file mode 100644 index 00000000000..847d69e8e11 --- /dev/null +++ b/src/app/shared/object-list/metadata-representation-list-element/authority-link/authority-link-metadata-list-element.component.html @@ -0,0 +1 @@ + diff --git a/src/app/shared/object-list/metadata-representation-list-element/authority-link/authority-link-metadata-list-element.component.spec.ts b/src/app/shared/object-list/metadata-representation-list-element/authority-link/authority-link-metadata-list-element.component.spec.ts new file mode 100644 index 00000000000..5477752846c --- /dev/null +++ b/src/app/shared/object-list/metadata-representation-list-element/authority-link/authority-link-metadata-list-element.component.spec.ts @@ -0,0 +1,65 @@ +import { + ChangeDetectionStrategy, + NO_ERRORS_SCHEMA, +} from '@angular/core'; +import { + ComponentFixture, + TestBed, + waitForAsync, +} from '@angular/core/testing'; +import { ItemDataService } from '@dspace/core/data/item-data.service'; +import { MetadataRepresentationType } from '@dspace/core/shared/metadata-representation/metadata-representation.model'; +import { MetadatumRepresentation } from '@dspace/core/shared/metadata-representation/metadatum/metadatum-representation.model'; +import { ValueListBrowseDefinition } from '@dspace/core/shared/value-list-browse-definition.model'; + +import { MetadataLinkViewComponent } from '../../../metadata-link-view/metadata-link-view.component'; +import { AuthorityLinkMetadataListElementComponent } from './authority-link-metadata-list-element.component'; + + +const mockMetadataRepresentation = Object.assign(new MetadatumRepresentation('type'), { + key: 'dc.contributor.author', + value: 'Test Author', + browseDefinition: Object.assign(new ValueListBrowseDefinition(), { + id: 'author', + }), +} as Partial); + +const itemService = jasmine.createSpyObj('ItemDataService', { + findByIdWithProjections: jasmine.createSpy('findByIdWithProjections'), +}); + +describe('AuthorityLinkMetadataListElementComponent', () => { + let comp: AuthorityLinkMetadataListElementComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + void TestBed.configureTestingModule({ + imports: [AuthorityLinkMetadataListElementComponent, MetadataLinkViewComponent], + schemas: [NO_ERRORS_SCHEMA], + providers: [ + { provide: ItemDataService, useValue: itemService }, + ], + }).overrideComponent(AuthorityLinkMetadataListElementComponent, { + set: { changeDetection: ChangeDetectionStrategy.Default }, + }).compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AuthorityLinkMetadataListElementComponent); + comp = fixture.componentInstance; + }); + + describe('with authorithy controlled metadata', () => { + beforeEach(() => { + comp.mdRepresentation = mockMetadataRepresentation; + spyOnProperty(comp.mdRepresentation, 'representationType', 'get').and.returnValue(MetadataRepresentationType.AuthorityControlled); + fixture.detectChanges(); + }); + + it('should contain the value', () => { + expect(fixture.debugElement.nativeElement.textContent).toContain(mockMetadataRepresentation.value); + }); + + }); + +}); diff --git a/src/app/shared/object-list/metadata-representation-list-element/authority-link/authority-link-metadata-list-element.component.ts b/src/app/shared/object-list/metadata-representation-list-element/authority-link/authority-link-metadata-list-element.component.ts new file mode 100644 index 00000000000..6d4bbea52c8 --- /dev/null +++ b/src/app/shared/object-list/metadata-representation-list-element/authority-link/authority-link-metadata-list-element.component.ts @@ -0,0 +1,29 @@ + +import { + Component, + OnInit, +} from '@angular/core'; +import { MetadatumRepresentation } from '@dspace/core/shared/metadata-representation/metadatum/metadatum-representation.model'; + +import { MetadataLinkViewComponent } from '../../../metadata-link-view/metadata-link-view.component'; +import { MetadataRepresentationListElementComponent } from '../metadata-representation-list-element.component'; + +@Component({ + selector: 'ds-authority-link-metadata-list-element', + templateUrl: './authority-link-metadata-list-element.component.html', + imports: [ + MetadataLinkViewComponent, + ], +}) +/** + * A component for displaying MetadataRepresentation objects with authority in the form of a link + * It will simply use the value retrieved from MetadataRepresentation.getValue() to display a link to the item + */ +export class AuthorityLinkMetadataListElementComponent extends MetadataRepresentationListElementComponent implements OnInit { + + metadataValue: MetadatumRepresentation; + + ngOnInit() { + this.metadataValue = this.mdRepresentation as MetadatumRepresentation; + } +} diff --git a/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.html b/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.html index ba12d01189a..3a2f5ed03af 100644 --- a/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.html +++ b/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.html @@ -23,45 +23,60 @@ }
- @if (object !== undefined && object !== null) { - - @if (linkType !== linkTypes.None) { - - } - @if (linkType === linkTypes.None) { - - } - - - @if (firstMetadataValue('dc.publisher') || firstMetadataValue('dc.date.issued')) { - (@if (firstMetadataValue('dc.publisher')) { - - } - @if (firstMetadataValue('dc.publisher') && firstMetadataValue('dc.date.issued')) { - , - } - @if (firstMetadataValue('dc.date.issued')) { - - }) - } - @if (allMetadataValues(['dc.contributor.author', 'dc.creator', 'dc.contributor.*']).length > 0) { - - @for (author of allMetadataValues(['dc.contributor.author', 'dc.creator', 'dc.contributor.*']); track author; let last = $last) { - - - @if (!last) { - ; + @if (object !== undefined && object !== null) { + + @if (linkType !== linkTypes.None) { + + } + @if (linkType === linkTypes.None) { + + } + + + @if (firstMetadataValue('dc.publisher') || firstMetadataValue('dc.date.issued')) { + (@if (firstMetadataValue('dc.publisher')) { + + } + @if (firstMetadataValue('dc.publisher') && firstMetadataValue('dc.date.issued')) { + , + } + @if (firstMetadataValue('dc.date.issued')) { + + }) + } + @if (dso.allMetadataValues(authorMetadata, placeholderFilter).length > 0) { + + @let collapsed = isCollapsed() | async; + + @if (collapsed) { + @for (author of dso.limitedMetadata(authorMetadata, additionalMetadataLimit, placeholderFilter); track author; let last = $last) { + + + @if (!last) { + ; + } + + } + } + @if (!collapsed) { + @for (author of dso.allMetadata(authorMetadata, placeholderFilter); track author; let last = $last) { + + + @if (!last) { + ; + } + } - } - - } - - - @if (firstMetadataValue('dc.description.abstract'); as abstract) { + + + } + + + @if (firstMetadataValue('dc.description.abstract'); as abstract) {
@@ -69,6 +84,6 @@
}
- } -
+ } +
diff --git a/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.spec.ts b/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.spec.ts index 242f4535a1a..2707d3b5339 100644 --- a/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.spec.ts +++ b/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.spec.ts @@ -13,6 +13,7 @@ import { APP_CONFIG } from '@dspace/config/app-config.interface'; import { AuthService } from '@dspace/core/auth/auth.service'; import { DSONameService } from '@dspace/core/breadcrumbs/dso-name.service'; import { AuthorizationDataService } from '@dspace/core/data/feature-authorization/authorization-data.service'; +import { APP_DATA_SERVICES_MAP } from '@dspace/core/data-services-map-type'; import { Item } from '@dspace/core/shared/item.model'; import { ItemSearchResult } from '@dspace/core/shared/object-collection/item-search-result.model'; import { ActivatedRouteStub } from '@dspace/core/testing/active-router.stub'; @@ -24,6 +25,10 @@ import { import { mockTruncatableService } from '@dspace/core/testing/mock-trucatable.service'; import { TranslateModule } from '@ngx-translate/core'; import { of } from 'rxjs'; +import { MetadataLinkViewComponent } from 'src/app/shared/metadata-link-view/metadata-link-view.component'; +import { TruncatableComponent } from 'src/app/shared/truncatable/truncatable.component'; +import { TruncatablePartComponent } from 'src/app/shared/truncatable/truncatable-part/truncatable-part.component'; +import { ThemedThumbnailComponent } from 'src/app/thumbnail/themed-thumbnail.component'; import { getMockThemeService } from '../../../../../theme-support/test/theme-service.mock'; import { ThemeService } from '../../../../../theme-support/theme.service'; @@ -225,10 +230,18 @@ describe('ItemSearchResultListElementComponent', () => { 'invalidateAuthorizationsRequestCache', ]), }, + { provide: APP_DATA_SERVICES_MAP, useValue: {} }, ], schemas: [NO_ERRORS_SCHEMA], }).overrideComponent(ItemSearchResultListElementComponent, { add: { changeDetection: ChangeDetectionStrategy.Default }, + }).overrideComponent(ItemSearchResultListElementComponent, { + remove: { imports: [ + ThemedThumbnailComponent, + TruncatableComponent, + TruncatablePartComponent, + MetadataLinkViewComponent, + ] }, }).compileComponents(); })); @@ -277,6 +290,32 @@ describe('ItemSearchResultListElementComponent', () => { }); }); + describe('When the item has authors and isCollapsed is true', () => { + beforeEach(() => { + spyOn(publicationListElementComponent, 'isCollapsed').and.returnValue(of(true)); + publicationListElementComponent.object = mockItemWithMetadata; + fixture.detectChanges(); + }); + + it('should show limitedMetadata', () => { + const authorElements = fixture.debugElement.queryAll(By.css('span.item-list-authors ds-metadata-link-view')); + expect(authorElements.length).toBe(mockItemWithMetadata.indexableObject.limitedMetadata(publicationListElementComponent.authorMetadata, publicationListElementComponent.additionalMetadataLimit).length); + }); + }); + + describe('When the item has authors and isCollapsed is false', () => { + beforeEach(() => { + spyOn(publicationListElementComponent, 'isCollapsed').and.returnValue(of(false)); + publicationListElementComponent.object = mockItemWithMetadata; + fixture.detectChanges(); + }); + + it('should show allMetadata', () => { + const authorElements = fixture.debugElement.queryAll(By.css('span.item-list-authors ds-metadata-link-view')); + expect(authorElements.length).toBe(mockItemWithMetadata.indexableObject.allMetadata(publicationListElementComponent.authorMetadata).length); + }); + }); + describe('When the item has a publisher', () => { beforeEach(() => { publicationListElementComponent.object = mockItemWithMetadata; @@ -413,6 +452,13 @@ describe('ItemSearchResultListElementComponent', () => { schemas: [NO_ERRORS_SCHEMA], }).overrideComponent(ItemSearchResultListElementComponent, { set: { changeDetection: ChangeDetectionStrategy.Default }, + }).overrideComponent(ItemSearchResultListElementComponent, { + remove: { imports: [ + ThemedThumbnailComponent, + TruncatableComponent, + TruncatablePartComponent, + MetadataLinkViewComponent, + ] }, }).compileComponents(); })); diff --git a/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.ts b/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.ts index 8b4e3d028c3..ceecab94105 100644 --- a/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.ts +++ b/src/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.ts @@ -9,10 +9,14 @@ import { import { RouterLink } from '@angular/router'; import { getItemPageRoute } from '@dspace/core/router/utils/dso-route.utils'; import { Item } from '@dspace/core/shared/item.model'; +import { MetadataValueFilter } from '@dspace/core/shared/metadata.models'; +import { PLACEHOLDER_VALUE } from '@dspace/core/shared/metadata.utils'; import { ItemSearchResult } from '@dspace/core/shared/object-collection/item-search-result.model'; import { ViewMode } from '@dspace/core/shared/view-mode.model'; +import { environment } from '../../../../../../../environments/environment'; import { ThemedThumbnailComponent } from '../../../../../../thumbnail/themed-thumbnail.component'; +import { MetadataLinkViewComponent } from '../../../../../metadata-link-view/metadata-link-view.component'; import { ThemedBadgesComponent } from '../../../../../object-collection/shared/badges/themed-badges.component'; import { listableObjectComponent } from '../../../../../object-collection/shared/listable-object/listable-object.decorator'; import { TruncatableComponent } from '../../../../../truncatable/truncatable.component'; @@ -27,6 +31,7 @@ import { SearchResultListElementComponent } from '../../../search-result-list-el templateUrl: './item-search-result-list-element.component.html', imports: [ AsyncPipe, + MetadataLinkViewComponent, NgClass, RouterLink, ThemedBadgesComponent, @@ -44,6 +49,14 @@ export class ItemSearchResultListElementComponent extends SearchResultListElemen */ itemPageRoute: string; + authorMetadata = environment.searchResult.authorMetadata; + + + readonly placeholderFilter: MetadataValueFilter = { + negate: true, + value: PLACEHOLDER_VALUE, + }; + ngOnInit(): void { super.ngOnInit(); this.showThumbnails = this.showThumbnails ?? this.appConfig.browseBy.showThumbnails; diff --git a/src/app/shared/object-list/search-result-list-element/search-result-list-element.component.ts b/src/app/shared/object-list/search-result-list-element/search-result-list-element.component.ts index bfb85285442..dcff3a6967b 100644 --- a/src/app/shared/object-list/search-result-list-element/search-result-list-element.component.ts +++ b/src/app/shared/object-list/search-result-list-element/search-result-list-element.component.ts @@ -28,6 +28,11 @@ export class SearchResultListElementComponent, K exten dso: K; dsoTitle: string; + /** + * Limit of additional metadata values to show + */ + additionalMetadataLimit: number; + public constructor(protected truncatableService: TruncatableService, public dsoNameService: DSONameService, @Inject(APP_CONFIG) protected appConfig?: AppConfig) { @@ -38,6 +43,7 @@ export class SearchResultListElementComponent, K exten * Retrieve the dso from the search result */ ngOnInit(): void { + this.additionalMetadataLimit = this.appConfig?.followAuthorityMetadataValuesLimit; if (hasValue(this.object)) { this.dso = this.object.indexableObject; this.dsoTitle = this.dsoNameService.getHitHighlights(this.object, this.dso, true); diff --git a/src/app/shared/object-list/sidebar-search-list-element/sidebar-search-list-element.component.spec.ts b/src/app/shared/object-list/sidebar-search-list-element/sidebar-search-list-element.component.spec.ts index b9a1385087b..8f4111fb271 100644 --- a/src/app/shared/object-list/sidebar-search-list-element/sidebar-search-list-element.component.spec.ts +++ b/src/app/shared/object-list/sidebar-search-list-element/sidebar-search-list-element.component.spec.ts @@ -5,6 +5,7 @@ import { waitForAsync, } from '@angular/core/testing'; import { RouterTestingModule } from '@angular/router/testing'; +import { APP_CONFIG } from '@dspace/config/app-config.interface'; import { DSONameService } from '@dspace/core/breadcrumbs/dso-name.service'; import { LinkService } from '@dspace/core/cache/builders/link.service'; import { ChildHALResource } from '@dspace/core/shared/child-hal-resource.model'; @@ -16,6 +17,7 @@ import { createSuccessfulRemoteDataObject$ } from '@dspace/core/utilities/remote import { TranslateModule } from '@ngx-translate/core'; import { TruncatableService } from '../../truncatable/truncatable.service'; +import { TruncatablePartComponent } from '../../truncatable/truncatable-part/truncatable-part.component'; import { VarDirective } from '../../utils/var.directive'; export function createSidebarSearchListElementTests( @@ -33,6 +35,12 @@ export function createSidebarSearchListElementTests( let linkService; + const environment = { + browseBy: { + showThumbnails: true, + }, + }; + beforeEach(waitForAsync(() => { linkService = jasmine.createSpyObj('linkService', { resolveLink: Object.assign(new HALResource(), { @@ -44,11 +52,12 @@ export function createSidebarSearchListElementTests( providers: [ { provide: TruncatableService, useValue: mockTruncatableService }, { provide: LinkService, useValue: linkService }, + { provide: APP_CONFIG, useValue: environment }, DSONameService, ...extraProviders, ], schemas: [NO_ERRORS_SCHEMA], - }).compileComponents(); + }).overrideComponent(componentClass, { remove: { imports: [TruncatablePartComponent] } }).compileComponents(); })); beforeEach(() => { 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.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 9eeb6aecd5e..ded2c60e1ef 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,9 @@ 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; + 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/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) { + + } +
+ @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..3bd4d0f522e --- /dev/null +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.scss @@ -0,0 +1,18 @@ +.options-select-menu { + max-height: 25vh; +} + +.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..706723516f5 --- /dev/null +++ b/src/app/submission/sections/custom-url/submission-section-custom-url.component.ts @@ -0,0 +1,307 @@ +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'; +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, + ], +}) +export class SubmissionSectionCustomUrlComponent extends SectionModelComponent implements AfterViewInit { + + /** + * 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[] = []; + + private readonly errorMessagePrefix = 'error.validation.custom-url.'; + + /** + * The FormComponent reference + */ + @ViewChild('formRef') public formRef: FormComponent; + + 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', + errorMessages: { + 'conflict': 'error.validation.custom-url.conflict', + 'empty': 'error.validation.custom-url.empty', + 'invalid-characters': 'error.validation.custom-url.invalid-characters', + }, + }), + ]; + 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 + */ + 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; + this.updateControlStatus(true); + } + }), + ); + } +} 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/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/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 159926bf032..678a2b37f38 100644 --- a/src/assets/i18n/en.json5 +++ b/src/assets/i18n/en.json5 @@ -1923,10 +1923,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", @@ -2559,6 +2565,8 @@ "item.edit.metadata.headers.language": "Lang", + "item.edit.metadata.headers.authority": "Authority", + "item.edit.metadata.headers.value": "Value", "item.edit.metadata.metadatafield": "Edit field", @@ -3243,6 +3251,8 @@ "itemtemplate.edit.metadata.headers.value": "Value", + "itemtemplate.edit.metadata.headers.authority": "Authority", + "itemtemplate.edit.metadata.metadatafield": "Edit field", "itemtemplate.edit.metadata.metadatafield.error": "An error occurred validating the metadata field", @@ -5544,6 +5554,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", @@ -5654,6 +5666,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", @@ -6312,6 +6330,8 @@ "home.recent-submissions.head": "Recent Submissions", + "authority-confidence.search-label": "Search", + "listable-notification-object.default-message": "This object couldn't be retrieved", "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", @@ -7213,4 +7233,52 @@ "item.preview.organization.address.addressLocality": "City", "item.preview.organization.alternateName": "Alternative name", + + "metadata-link-view.popover.label.Person.dc.title": "Fullname", + + "metadata-link-view.popover.label.Person.person.affiliation.name": "Main affiliation", + + "metadata-link-view.popover.label.Person.person.email": "Email", + + "metadata-link-view.popover.label.Person.person.identifier.orcid": "ORCID", + + "metadata-link-view.popover.label.Person.dc.description.abstract": "Abstract", + + "metadata-link-view.popover.label.OrgUnit.dc.title": "Fullname", + + "metadata-link-view.popover.label.OrgUnit.organization.identifier.ror": "ROR", + + "metadata-link-view.popover.label.OrgUnit.crisou.director": "Director", + + "metadata-link-view.popover.label.OrgUnit.organization.parentOrganization": "Parent Organization", + + "metadata-link-view.popover.label.OrgUnit.dc.description.abstract": "Description", + + "metadata-link-view.popover.label.Project.dc.title": "Title", + + "metadata-link-view.popover.label.Project.oairecerif.project.status": "Status", + + "metadata-link-view.popover.label.Project.dc.description.abstract": "Abstract", + + "metadata-link-view.popover.label.Funding.dc.title": "Title", + + "metadata-link-view.popover.label.Funding.oairecerif.funder": "Funder", + + "metadata-link-view.popover.label.Funding.oairecerif.fundingProgram": "Funding program", + + "metadata-link-view.popover.label.Funding.dc.description.abstract": "Abstract", + + "metadata-link-view.popover.label.Publication.dc.title": "Title", + + "metadata-link-view.popover.label.Publication.dc.identifier.doi": "DOI", + + "metadata-link-view.popover.label.Publication.dc.identifier.uri": "URL", + + "metadata-link-view.popover.label.Publication.dc.description.abstract": "Abstract", + + "metadata-link-view.popover.label.other.dc.title": "Title", + + "metadata-link-view.popover.label.other.dc.description.abstract": "Description", + + "metadata-link-view.popover.label.more-info": "More info", } 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 8c94ac954f7..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.", @@ -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..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/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/assets/images/local.logo.icon.svg b/src/assets/images/local.logo.icon.svg new file mode 100644 index 00000000000..fe25b833c9d --- /dev/null +++ b/src/assets/images/local.logo.icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/openaire.logo.icon.svg b/src/assets/images/openaire.logo.icon.svg new file mode 100644 index 00000000000..ea4d2014d5b --- /dev/null +++ b/src/assets/images/openaire.logo.icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/ror.logo.icon.svg b/src/assets/images/ror.logo.icon.svg new file mode 100644 index 00000000000..6bea5c60952 --- /dev/null +++ b/src/assets/images/ror.logo.icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/assets/images/sherpa.logo.icon.svg b/src/assets/images/sherpa.logo.icon.svg new file mode 100644 index 00000000000..e6a4921f3e6 --- /dev/null +++ b/src/assets/images/sherpa.logo.icon.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + diff --git a/src/assets/images/zdb.logo.icon.svg b/src/assets/images/zdb.logo.icon.svg new file mode 100644 index 00000000000..a495cc2718f --- /dev/null +++ b/src/assets/images/zdb.logo.icon.svg @@ -0,0 +1 @@ +180509 ZDB-Logo diff --git a/src/config/additional-metadata.config.ts b/src/config/additional-metadata.config.ts new file mode 100644 index 00000000000..968cbd247c2 --- /dev/null +++ b/src/config/additional-metadata.config.ts @@ -0,0 +1,23 @@ +import { Config } from './config.interface'; + +export type AdditionalMetadataConfigRenderingTypes = + 'text' + | 'crisref' + | 'link' + | 'link.email' + | 'identifier' + | 'valuepair' + | 'date' + | 'authors' + | 'currentRole' + | 'lastRole'; + +export interface AdditionalMetadataConfig extends Config { + name: string, + rendering: AdditionalMetadataConfigRenderingTypes, + label?: string, + prefix?: string, + suffix?: string, + limitTo?: number, + startFromLast?: boolean +} diff --git a/src/config/app-config.interface.ts b/src/config/app-config.interface.ts index 681e494c6bd..297e2a3d61d 100644 --- a/src/config/app-config.interface.ts +++ b/src/config/app-config.interface.ts @@ -19,16 +19,21 @@ import { FilterVocabularyConfig } from './filter-vocabulary-config'; import { FormConfig } from './form-config.interfaces'; import { GeospatialMapConfig } from './geospatial-map-config'; import { HomeConfig } from './homepage-config.interface'; +import { IdentifierSubtypesConfig } from './identifier-subtypes-config.interface'; import { InfoConfig } from './info-config.interface'; import { ItemConfig } from './item-config.interface'; import { LangConfig } from './lang-config.interface'; +import { LayoutConfig } from './layout-config.interfaces'; import { LiveRegionConfig } from './live-region.config'; import { MarkdownConfig } from './markdown-config.interface'; import { MatomoConfig } from './matomo-config.interface'; import { MediaViewerConfig } from './media-viewer-config.interface'; +import { MetadataLinkViewPopoverDataConfig } from './metadata-link-view-popoverdata-config.interface'; import { INotificationBoardOptions } from './notifications-config.interfaces'; import { QualityAssuranceConfig } from './quality-assurance.config'; +import { FollowAuthorityMetadata } from './search-follow-metadata.interface'; import { SearchConfig } from './search-page-config.interface'; +import { SearchResultConfig } from './search-result-config.interface'; import { ServerConfig } from './server-config.interface'; import { SubmissionConfig } from './submission-config.interface'; import { SuggestionConfig } from './suggestion-config.interfaces'; @@ -69,6 +74,13 @@ interface AppConfig extends Config { matomo?: MatomoConfig; geospatialMapViewer: GeospatialMapConfig; accessibility: AccessibilitySettingsConfig; + layout: LayoutConfig; + metadataLinkViewPopoverData: MetadataLinkViewPopoverDataConfig; + identifierSubtypes: IdentifierSubtypesConfig[]; + searchResult: SearchResultConfig; + followAuthorityMetadata: FollowAuthorityMetadata[]; + followAuthorityMaxItemLimit: number; + followAuthorityMetadataValuesLimit: number; } /** diff --git a/src/config/default-app-config.ts b/src/config/default-app-config.ts index a685c7cf3fd..7c9cbb24297 100644 --- a/src/config/default-app-config.ts +++ b/src/config/default-app-config.ts @@ -1,3 +1,6 @@ +import { LayoutConfig } from '@dspace/config/layout-config.interfaces'; +import { SearchResultConfig } from '@dspace/config/search-result-config.interface'; + import { AccessibilitySettingsConfig } from './accessibility-settings.config'; import { ActuatorsConfig } from './actuators.config'; import { AdminNotifyMetricsRow } from './admin-notify-metrics.config'; @@ -14,6 +17,10 @@ import { FilterVocabularyConfig } from './filter-vocabulary-config'; import { FormConfig } from './form-config.interfaces'; import { GeospatialMapConfig } from './geospatial-map-config'; import { HomeConfig } from './homepage-config.interface'; +import { + IdentifierSubtypesConfig, + IdentifierSubtypesIconPositionEnum, +} from './identifier-subtypes-config.interface'; import { InfoConfig } from './info-config.interface'; import { ItemConfig } from './item-config.interface'; import { LangConfig } from './lang-config.interface'; @@ -21,12 +28,14 @@ import { LiveRegionConfig } from './live-region.config'; import { MarkdownConfig } from './markdown-config.interface'; import { MatomoConfig } from './matomo-config.interface'; import { MediaViewerConfig } from './media-viewer-config.interface'; +import { MetadataLinkViewPopoverDataConfig } from './metadata-link-view-popoverdata-config.interface'; import { INotificationBoardOptions, NotificationAnimationsType, } from './notifications-config.interfaces'; import { QualityAssuranceConfig } from './quality-assurance.config'; import { RestRequestMethod } from './rest-request-method'; +import { FollowAuthorityMetadata } from './search-follow-metadata.interface'; import { SearchConfig } from './search-page-config.interface'; import { ServerConfig } from './server-config.interface'; import { SubmissionConfig } from './submission-config.interface'; @@ -251,6 +260,32 @@ export class DefaultAppConfig implements AppConfig { }, ], + sourceIcons: [ + { + source: 'orcid', + path: 'assets/images/orcid.logo.icon.svg', + }, + { + source: 'openaire', + path: 'assets/images/openaire.logo.icon.svg', + }, + { + source: 'ror', + path: 'assets/images/ror.logo.icon.svg', + }, + { + source: 'sherpa', + path: 'assets/images/sherpa.logo.icon.svg', + }, + { + source: 'zdb', + path: 'assets/images/zdb.logo.icon.svg', + }, + { + source: 'local', + path: 'assets/images/local.logo.icon.svg', + }, + ], }, }, }; @@ -642,4 +677,112 @@ export class DefaultAppConfig implements AppConfig { accessibility: AccessibilitySettingsConfig = { cookieExpirationDuration: 7, }; + + layout: LayoutConfig = { + authorityRef: [ + { + entityType: 'DEFAULT', + entityStyle: { + default: { + icon: 'fa fa-info', + style: 'text-info', + }, + }, + }, + { + entityType: 'PERSON', + entityStyle: { + default: { + icon: 'fa fa-user', + style: 'text-info', + }, + }, + }, + { + entityType: 'ORGUNIT', + entityStyle: { + default: { + icon: 'fa fa-university', + style: 'text-info', + }, + }, + }, + { + entityType: 'PROJECT', + entityStyle: { + default: { + icon: 'fas fa-project-diagram', + style: 'text-info', + }, + }, + }, + ], + }; + + searchResult: SearchResultConfig = { + additionalMetadataFields: [], + authorMetadata: ['dc.contributor.author', 'dc.creator', 'dc.contributor.*'], + }; + + // Configuration for the metadata link view popover + metadataLinkViewPopoverData: MetadataLinkViewPopoverDataConfig = { + fallbackMetdataList: ['dc.description.abstract'], + + entityDataConfig: [ + { + entityType: 'Person', + metadataList: ['person.affiliation.name', 'person.email', 'person.identifier.orcid', 'dc.description.abstract'], + }, + { + entityType: 'OrgUnit', + metadataList: ['organization.parentOrganization', 'organization.identifier.ror', 'dc.description.abstract'], + }, + { + entityType: 'Project', + metadataList: ['oairecerif.project.status', 'dc.description.abstract'], + }, + { + entityType: 'Funding', + metadataList: ['oairecerif.funder', 'oairecerif.fundingProgram', 'dc.description.abstract'], + }, + { + entityType: 'Publication', + metadataList: ['dc.identifier.doi', 'dc.identifier.uri', 'dc.description.abstract'], + }, + ], + }; + + identifierSubtypes: IdentifierSubtypesConfig[] = [ + { + name: 'ror', + icon: 'assets/images/ror.logo.icon.svg', + iconPosition: IdentifierSubtypesIconPositionEnum.LEFT, + link: 'https://ror.org', + }, + ]; + + // The maximum number of item to process when following authority metadata values. + followAuthorityMaxItemLimit = 100; + // The maximum number of metadata values to process for each metadata key + // when following authority metadata values. + followAuthorityMetadataValuesLimit = 5; + + // When the search results are retrieved, for each item type the metadata with a valid authority value are inspected. + // Referenced items will be fetched with a find all by id strategy to avoid individual rest requests + // to efficiently display the search results. + followAuthorityMetadata: FollowAuthorityMetadata[] = [ + { + type: 'Publication', + metadata: ['dc.contributor.author'], + }, + { + type: 'Product', + metadata: ['dc.contributor.author'], + }, + { + type: 'Patent', + metadata: ['dc.contributor.author'], + }, + ]; + } diff --git a/src/config/identifier-subtypes-config.interface.ts b/src/config/identifier-subtypes-config.interface.ts new file mode 100644 index 00000000000..370fd2a1bf2 --- /dev/null +++ b/src/config/identifier-subtypes-config.interface.ts @@ -0,0 +1,15 @@ +/** + * Represents the configuration for identifier subtypes. + */ +export interface IdentifierSubtypesConfig { + name: string; // The name of the identifier subtype + icon: string; // The icon to display for the identifier subtype + iconPosition: IdentifierSubtypesIconPositionEnum; // The position of the icon relative to the identifier + link: string; // The link to navigate to when the icon is clicked +} + +export enum IdentifierSubtypesIconPositionEnum { + NONE = 'NONE', + LEFT = 'LEFT', + RIGHT = 'RIGHT', +} diff --git a/src/config/layout-config.interfaces.ts b/src/config/layout-config.interfaces.ts new file mode 100644 index 00000000000..c2a0a5f7d2e --- /dev/null +++ b/src/config/layout-config.interfaces.ts @@ -0,0 +1,19 @@ +import { Config } from './config.interface'; + +export interface AuthorityRefEntityStyleConfig extends Config { + icon: string; + style: string; +} + +export interface AuthorityRefConfig extends Config { + entityType: string; + entityStyle: { + default: AuthorityRefEntityStyleConfig; + [entity: string]: AuthorityRefEntityStyleConfig; + }; +} + + +export interface LayoutConfig extends Config { + authorityRef: AuthorityRefConfig[]; +} diff --git a/src/config/metadata-link-view-popoverdata-config.interface.ts b/src/config/metadata-link-view-popoverdata-config.interface.ts new file mode 100644 index 00000000000..01ee9a80723 --- /dev/null +++ b/src/config/metadata-link-view-popoverdata-config.interface.ts @@ -0,0 +1,23 @@ +export interface MetadataLinkViewPopoverDataConfig { + /** + * The list of entity types to display the metadata for + */ + entityDataConfig: EntityDataConfig[]; + + /** + * The list of metadata keys to fallback to + */ + fallbackMetdataList: string[]; +} + + +export interface EntityDataConfig { + /** + * The metadata entity type + */ + entityType: string; + /** + * The list of metadata keys to display + */ + metadataList: string[]; +} diff --git a/src/config/search-follow-metadata.interface.ts b/src/config/search-follow-metadata.interface.ts new file mode 100644 index 00000000000..b6c60a5f23a --- /dev/null +++ b/src/config/search-follow-metadata.interface.ts @@ -0,0 +1,18 @@ +import { Config } from './config.interface'; + +/** + * Config that determines how to follow metadata of search results. + */ +export interface FollowAuthorityMetadata extends Config { + + /** + * The type of the browse by dspace object result. + */ + type: string; + + /** + * The metadata to follow of the browse by dspace object result. + */ + metadata: string[]; + +} diff --git a/src/config/search-result-config.interface.ts b/src/config/search-result-config.interface.ts new file mode 100644 index 00000000000..e90a080a21b --- /dev/null +++ b/src/config/search-result-config.interface.ts @@ -0,0 +1,12 @@ +import { AdditionalMetadataConfig } from './additional-metadata.config'; +import { Config } from './config.interface'; + +export interface SearchResultConfig extends Config { + additionalMetadataFields: SearchResultAdditionalMetadataEntityTypeConfig[], + authorMetadata: string[]; +} + +export interface SearchResultAdditionalMetadataEntityTypeConfig extends Config { + entityType: string, + metadataConfiguration: Array[] +} diff --git a/src/config/submission-config.interface.ts b/src/config/submission-config.interface.ts index afc81a39e25..9d3ebe57a36 100644 --- a/src/config/submission-config.interface.ts +++ b/src/config/submission-config.interface.ts @@ -13,10 +13,16 @@ interface TypeBindConfig extends Config { field: string; } +export interface AuthorithyIcon { + source: string, + path: string +} + interface IconsConfig extends Config { metadata: MetadataIconConfig[]; authority: { confidence: ConfidenceIconConfig[]; + sourceIcons?: AuthorithyIcon[] }; } diff --git a/src/environments/environment.test.ts b/src/environments/environment.test.ts index bd456f328cd..342e3da52b3 100644 --- a/src/environments/environment.test.ts +++ b/src/environments/environment.test.ts @@ -476,4 +476,97 @@ export const environment: BuildConfig = { accessibility: { cookieExpirationDuration: 7, }, + + layout: { + authorityRef: [ + { + entityType: 'DEFAULT', + entityStyle: { + default: { + icon: 'fa fa-user', + style: 'text-success', + }, + }, + }, + { + entityType: 'PERSON', + entityStyle: { + person: { + icon: 'fa fa-user', + style: 'text-success', + }, + personStaff: { + icon: 'fa fa-user', + style: 'text-primary', + }, + default: { + icon: 'fa fa-user', + style: 'text-success', + }, + }, + }, + { + entityType: 'ORGUNIT', + entityStyle: { + default: { + icon: 'fa fa-university', + style: 'text-success', + }, + }, + }, + ], + }, + + searchResult: { + additionalMetadataFields: [], + authorMetadata: ['dc.contributor.author', 'dc.creator', 'dc.contributor.*'], + }, + + metadataLinkViewPopoverData: { + fallbackMetdataList: ['dc.description.abstract'], + + entityDataConfig: [ + { + entityType: 'Person', + metadataList: ['person.affiliation.name', 'person.email', 'person.identifier.orcid', 'dc.description.abstract'], + }, + { + entityType: 'OrgUnit', + metadataList: ['organization.parentOrganization', 'organization.identifier.ror', 'crisou.director', 'dc.description.abstract'], + }, + { + entityType: 'Project', + metadataList: ['oairecerif.project.status', 'dc.description.abstract'], + }, + { + entityType: 'Funding', + metadataList: ['oairecerif.funder', 'oairecerif.fundingProgram', 'dc.description.abstract'], + }, + { + entityType: 'Publication', + metadataList: ['dc.identifier.doi', 'dc.identifier.uri', 'dc.description.abstract'], + }, + ], + }, + + identifierSubtypes: [], + + followAuthorityMaxItemLimit: 100, + + followAuthorityMetadataValuesLimit: 5, + + followAuthorityMetadata: [ + { + type: 'Publication', + metadata: ['dc.contributor.author'], + }, + { + type: 'Product', + metadata: ['dc.contributor.author'], + }, + { + type: 'Patent', + metadata: ['dc.contributor.author'], + }, + ], }; diff --git a/src/styles/_custom_variables.scss b/src/styles/_custom_variables.scss index 8b0e1ad32f7..c9410b60329 100644 --- a/src/styles/_custom_variables.scss +++ b/src/styles/_custom_variables.scss @@ -125,6 +125,7 @@ --ds-dso-edit-field-width: 210px; --ds-dso-edit-lang-width: 90px; + --ds-dso-edit-authority-width: 150px; --ds-dso-edit-actions-width: 173px; --ds-dso-edit-virtual-tooltip-min-width: 300px; @@ -164,4 +165,5 @@ --ds-filters-skeleton-height: 40px; --ds-filters-skeleton-spacing: 12px; + --ds-identifier-subtype-icon-height: 24px; } diff --git a/src/styles/_mixins.scss b/src/styles/_mixins.scss index eb39b8c7866..b1012c9a1f7 100644 --- a/src/styles/_mixins.scss +++ b/src/styles/_mixins.scss @@ -38,3 +38,21 @@ background-color: var(--ds-dark-scrollbar-bg); } } + +/* Define a mixin for vertical ellipsis + To be used as a class e.g. ellipsis-y-1,... ellipsis-y-4,... ellipsis-y-10 + */ +@mixin ellipsis-y($lines) { + display: -webkit-box; + -webkit-line-clamp: $lines; // number of lines + -webkit-box-orient: vertical; + overflow: hidden; + text-overflow: ellipsis; +} + +// Generate classes for 1 to 10 lines +@for $i from 1 through 10 { + .ellipsis-y-#{$i} { + @include ellipsis-y($i); + } +} diff --git a/src/themes/custom/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.ts b/src/themes/custom/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.ts index a370c0e3467..fd54859022d 100644 --- a/src/themes/custom/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.ts +++ b/src/themes/custom/app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.ts @@ -8,6 +8,7 @@ import { Context } from '@dspace/core/shared/context.model'; import { ItemSearchResult } from '@dspace/core/shared/object-collection/item-search-result.model'; import { ViewMode } from '@dspace/core/shared/view-mode.model'; +import { MetadataLinkViewComponent } from '../../../../../../../../../app/shared/metadata-link-view/metadata-link-view.component'; import { ThemedBadgesComponent } from '../../../../../../../../../app/shared/object-collection/shared/badges/themed-badges.component'; import { listableObjectComponent } from '../../../../../../../../../app/shared/object-collection/shared/listable-object/listable-object.decorator'; import { ItemSearchResultListElementComponent as BaseComponent } from '../../../../../../../../../app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component'; @@ -25,6 +26,7 @@ import { ThemedThumbnailComponent } from '../../../../../../../../../app/thumbna templateUrl: '../../../../../../../../../app/shared/object-list/search-result-list-element/item-search-result/item-types/item/item-search-result-list-element.component.html', imports: [ AsyncPipe, + MetadataLinkViewComponent, NgClass, RouterLink, ThemedBadgesComponent,