diff --git a/config/config.example.yml b/config/config.example.yml index 87f7cc6637..fd639b81ae 100644 --- a/config/config.example.yml +++ b/config/config.example.yml @@ -156,9 +156,15 @@ languages: - code: tr label: Türkçe active: true + - code: kk + label: Қазақ + active: true - code: bn label: বাংলা active: true + - code: el + label: Ελληνικά + active: true # Browse-By Pages browseBy: @@ -171,6 +177,21 @@ browseBy: # If true, thumbnail images for items will be added to BOTH search and browse result lists. showThumbnails: true +communityList: + # No. of communities to list per expansion (show more) + pageSize: 20 + +homePage: + recentSubmissions: + # The number of item showing in recent submission components + pageSize: 5 + # Sort record of recent submission + sortField: 'dc.date.accessioned' + topLevelCommunityList: + # No. of communities to list per page on the home page + # This will always round to the nearest number from the list of page sizes. e.g. if you set it to 7 it'll use 10 + pageSize: 5 + # Item Config item: edit: @@ -260,10 +281,3 @@ mediaViewer: info: enableEndUserAgreement: true enablePrivacyStatement: true -# Home Page -homePage: - recentSubmissions: - # The number of item showing in recent submission components - pageSize: 5 - # Sort record of recent submission - sortField: 'dc.date.accessioned' diff --git a/package.json b/package.json index 32832460a2..33e337121b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dspace-angular", - "version": "0.0.0", + "version": "7.4.0-next", "scripts": { "ng": "ng", "config:watch": "nodemon", @@ -10,7 +10,7 @@ "start:prod": "yarn run build:prod && cross-env NODE_ENV=production yarn run serve:ssr", "start:mirador:prod": "yarn run build:mirador && yarn run start:prod", "preserve": "yarn base-href", - "serve": "ng serve --configuration development", + "serve": "ts-node --project ./tsconfig.ts-node.json scripts/serve.ts", "serve:ssr": "node dist/server/main", "analyze": "webpack-bundle-analyzer dist/browser/stats.json", "build": "ng build --configuration development", diff --git a/scripts/serve.ts b/scripts/serve.ts index 09e517c3d4..99bfc822d4 100644 --- a/scripts/serve.ts +++ b/scripts/serve.ts @@ -10,6 +10,6 @@ const appConfig: AppConfig = buildAppConfig(); * Any CLI arguments given to this script are patched through to `ng serve` as well. */ child.spawn( - `ng serve --host ${appConfig.ui.host} --port ${appConfig.ui.port} --serve-path ${appConfig.ui.nameSpace} --ssl ${appConfig.ui.ssl} ${process.argv.slice(2).join(' ')}`, + `ng serve --host ${appConfig.ui.host} --port ${appConfig.ui.port} --serve-path ${appConfig.ui.nameSpace} --ssl ${appConfig.ui.ssl} ${process.argv.slice(2).join(' ')} --configuration development`, { stdio: 'inherit', shell: true } ); diff --git a/server.ts b/server.ts index 9fe03fe5b5..c9cdf3d76a 100644 --- a/server.ts +++ b/server.ts @@ -48,6 +48,7 @@ import { ServerAppModule } from './src/main.server'; import { buildAppConfig } from './src/config/config.server'; import { APP_CONFIG, AppConfig } from './src/config/app-config.interface'; import { extendEnvironmentWithAppConfig } from './src/config/config.util'; +import { logStartupMessage } from './startup-message'; /* * Set path for the browser application's dist folder @@ -281,6 +282,8 @@ function run() { } function start() { + logStartupMessage(environment); + /* * If SSL is enabled * - Read credentials from configuration files diff --git a/src/app/community-list-page/community-list-service.spec.ts b/src/app/community-list-page/community-list-service.spec.ts index 401ffe0b11..410dd9f804 100644 --- a/src/app/community-list-page/community-list-service.spec.ts +++ b/src/app/community-list-page/community-list-service.spec.ts @@ -15,6 +15,8 @@ import { Collection } from '../core/shared/collection.model'; import { PageInfo } from '../core/shared/page-info.model'; import { FlatNode } from './flat-node.model'; import { FindListOptions } from '../core/data/find-list-options.model'; +import { APP_CONFIG } from 'src/config/app-config.interface'; +import { environment } from 'src/environments/environment.test'; describe('CommunityListService', () => { let store: StoreMock; @@ -191,13 +193,14 @@ describe('CommunityListService', () => { }; TestBed.configureTestingModule({ providers: [CommunityListService, + { provide: APP_CONFIG, useValue: environment }, { provide: CollectionDataService, useValue: collectionDataServiceStub }, { provide: CommunityDataService, useValue: communityDataServiceStub }, { provide: Store, useValue: StoreMock }, ], }); store = TestBed.inject(Store as any); - service = new CommunityListService(communityDataServiceStub, collectionDataServiceStub, store); + service = new CommunityListService(environment, communityDataServiceStub, collectionDataServiceStub, store); }); it('should create', inject([CommunityListService], (serviceIn: CommunityListService) => { diff --git a/src/app/community-list-page/community-list-service.ts b/src/app/community-list-page/community-list-service.ts index 89b68812ae..99e9dbeb0d 100644 --- a/src/app/community-list-page/community-list-service.ts +++ b/src/app/community-list-page/community-list-service.ts @@ -1,5 +1,5 @@ /* eslint-disable max-classes-per-file */ -import { Injectable } from '@angular/core'; +import { Inject, Injectable } from '@angular/core'; import { createSelector, Store } from '@ngrx/store'; import { combineLatest as observableCombineLatest, Observable, of as observableOf } from 'rxjs'; @@ -23,6 +23,7 @@ import { followLink } from '../shared/utils/follow-link-config.model'; import { FlatNode } from './flat-node.model'; import { ShowMoreFlatNode } from './show-more-flat-node.model'; import { FindListOptions } from '../core/data/find-list-options.model'; +import { AppConfig, APP_CONFIG } from 'src/config/app-config.interface'; // Helper method to combine an flatten an array of observables of flatNode arrays export const combineAndFlatten = (obsList: Observable[]): Observable => @@ -80,8 +81,6 @@ const communityListStateSelector = (state: AppState) => state.communityList; const expandedNodesSelector = createSelector(communityListStateSelector, (communityList: CommunityListState) => communityList.expandedNodes); const loadingNodeSelector = createSelector(communityListStateSelector, (communityList: CommunityListState) => communityList.loadingNode); -export const MAX_COMCOLS_PER_PAGE = 20; - /** * Service class for the community list, responsible for the creating of the flat list used by communityList dataSource * and connection to the store to retrieve and save the state of the community list @@ -89,8 +88,15 @@ export const MAX_COMCOLS_PER_PAGE = 20; @Injectable() export class CommunityListService { - constructor(private communityDataService: CommunityDataService, private collectionDataService: CollectionDataService, - private store: Store) { + private pageSize: number; + + constructor( + @Inject(APP_CONFIG) protected appConfig: AppConfig, + private communityDataService: CommunityDataService, + private collectionDataService: CollectionDataService, + private store: Store + ) { + this.pageSize = appConfig.communityList.pageSize; } private configOnePage: FindListOptions = Object.assign(new FindListOptions(), { @@ -145,7 +151,7 @@ export class CommunityListService { private getTopCommunities(options: FindListOptions): Observable> { return this.communityDataService.findTop({ currentPage: options.currentPage, - elementsPerPage: MAX_COMCOLS_PER_PAGE, + elementsPerPage: this.pageSize, sort: { field: options.sort.field, direction: options.sort.direction @@ -216,7 +222,7 @@ export class CommunityListService { let subcoms = []; for (let i = 1; i <= currentCommunityPage; i++) { const nextSetOfSubcommunitiesPage = this.communityDataService.findByParent(community.uuid, { - elementsPerPage: MAX_COMCOLS_PER_PAGE, + elementsPerPage: this.pageSize, currentPage: i }, followLink('subcommunities', { findListOptions: this.configOnePage }), @@ -241,7 +247,7 @@ export class CommunityListService { let collections = []; for (let i = 1; i <= currentCollectionPage; i++) { const nextSetOfCollectionsPage = this.collectionDataService.findByParent(community.uuid, { - elementsPerPage: MAX_COMCOLS_PER_PAGE, + elementsPerPage: this.pageSize, currentPage: i }) .pipe( diff --git a/src/app/core/pagination/pagination.service.spec.ts b/src/app/core/pagination/pagination.service.spec.ts index 66349e8a9e..da508d45cd 100644 --- a/src/app/core/pagination/pagination.service.spec.ts +++ b/src/app/core/pagination/pagination.service.spec.ts @@ -120,6 +120,17 @@ describe('PaginationService', () => { expect(router.navigate).toHaveBeenCalledWith([], {queryParams: navigateParams, queryParamsHandling: 'merge'}); }); + it('should pass on navigationExtras to router.navigate', () => { + service.updateRoute('test', {page: 2}, undefined, undefined, { queryParamsHandling: 'preserve', replaceUrl: true, preserveFragment: true }); + + const navigateParams = {}; + navigateParams[`test.page`] = `2`; + navigateParams[`test.rpp`] = `10`; + navigateParams[`test.sf`] = `score`; + navigateParams[`test.sd`] = `ASC`; + + expect(router.navigate).toHaveBeenCalledWith([], {queryParams: navigateParams, queryParamsHandling: 'preserve', replaceUrl: true, preserveFragment: true }); + }); }); describe('updateRouteWithUrl', () => { it('should update the route with the provided page params and url', () => { @@ -144,7 +155,17 @@ describe('PaginationService', () => { expect(router.navigate).toHaveBeenCalledWith(['someUrl'], {queryParams: navigateParams, queryParamsHandling: 'merge'}); }); + it('should pass on navigationExtras to router.navigate', () => { + service.updateRouteWithUrl('test',['someUrl'], {page: 2}, undefined, undefined, { queryParamsHandling: 'preserve', replaceUrl: true, preserveFragment: true }); + const navigateParams = {}; + navigateParams[`test.page`] = `2`; + navigateParams[`test.rpp`] = `10`; + navigateParams[`test.sf`] = `score`; + navigateParams[`test.sd`] = `ASC`; + + expect(router.navigate).toHaveBeenCalledWith(['someUrl'], {queryParams: navigateParams, queryParamsHandling: 'preserve', replaceUrl: true, preserveFragment: true }); + }); }); describe('clearPagination', () => { it('should clear the pagination next time the updateRoute/updateRouteWithUrl method is called', () => { diff --git a/src/app/core/pagination/pagination.service.ts b/src/app/core/pagination/pagination.service.ts index 40e13d654f..ce4c3adc3c 100644 --- a/src/app/core/pagination/pagination.service.ts +++ b/src/app/core/pagination/pagination.service.ts @@ -1,5 +1,5 @@ import { Injectable } from '@angular/core'; -import { Router } from '@angular/router'; +import { NavigationExtras, Router } from '@angular/router'; import { RouteService } from '../services/route.service'; import { PaginationComponentOptions } from '../../shared/pagination/pagination-component-options.model'; import { combineLatest as observableCombineLatest, Observable } from 'rxjs'; @@ -117,15 +117,22 @@ export class PaginationService { * @param params - The page related params to update in the route * @param extraParams - Addition params unrelated to the pagination that need to be added to the route * @param retainScrollPosition - Scroll to the pagination component after updating the route instead of the top of the page + * @param navigationExtras - Extra parameters to pass on to `router.navigate`. Can be used to override values set by this service. */ - updateRoute(paginationId: string, params: { - page?: number - pageSize?: number - sortField?: string - sortDirection?: SortDirection - }, extraParams?, retainScrollPosition?: boolean) { + updateRoute( + paginationId: string, + params: { + page?: number + pageSize?: number + sortField?: string + sortDirection?: SortDirection + }, + extraParams?, + retainScrollPosition?: boolean, + navigationExtras?: NavigationExtras, + ) { - this.updateRouteWithUrl(paginationId, [], params, extraParams, retainScrollPosition); + this.updateRouteWithUrl(paginationId, [], params, extraParams, retainScrollPosition, navigationExtras); } /** @@ -135,13 +142,21 @@ export class PaginationService { * @param params - The page related params to update in the route * @param extraParams - Addition params unrelated to the pagination that need to be added to the route * @param retainScrollPosition - Scroll to the pagination component after updating the route instead of the top of the page + * @param navigationExtras - Extra parameters to pass on to `router.navigate`. Can be used to override values set by this service. */ - updateRouteWithUrl(paginationId: string, url: string[], params: { - page?: number - pageSize?: number - sortField?: string - sortDirection?: SortDirection - }, extraParams?, retainScrollPosition?: boolean) { + updateRouteWithUrl( + paginationId: string, + url: string[], + params: { + page?: number + pageSize?: number + sortField?: string + sortDirection?: SortDirection + }, + extraParams?, + retainScrollPosition?: boolean, + navigationExtras?: NavigationExtras, + ) { this.getCurrentRouting(paginationId).subscribe((currentFindListOptions) => { const currentParametersWithIdName = this.getParametersWithIdName(paginationId, currentFindListOptions); const parametersWithIdName = this.getParametersWithIdName(paginationId, params); @@ -152,12 +167,14 @@ export class PaginationService { this.router.navigate(url, { queryParams: queryParams, queryParamsHandling: 'merge', - fragment: `p-${paginationId}` + fragment: `p-${paginationId}`, + ...navigationExtras, }); } else { this.router.navigate(url, { queryParams: queryParams, - queryParamsHandling: 'merge' + queryParamsHandling: 'merge', + ...navigationExtras, }); } this.clearParams = {}; diff --git a/src/app/home-page/top-level-community-list/top-level-community-list.component.spec.ts b/src/app/home-page/top-level-community-list/top-level-community-list.component.spec.ts index 17feaa9bbf..fcddccd89e 100644 --- a/src/app/home-page/top-level-community-list/top-level-community-list.component.spec.ts +++ b/src/app/home-page/top-level-community-list/top-level-community-list.component.spec.ts @@ -32,6 +32,8 @@ import { SearchConfigurationService } from '../../core/shared/search/search-conf import { ConfigurationProperty } from '../../core/shared/configuration-property.model'; import { createPaginatedList } from '../../shared/testing/utils.test'; import { SearchConfigurationServiceStub } from '../../shared/testing/search-configuration-service.stub'; +import { APP_CONFIG } from 'src/config/app-config.interface'; +import { environment } from 'src/environments/environment.test'; describe('TopLevelCommunityList Component', () => { let comp: TopLevelCommunityListComponent; @@ -151,6 +153,7 @@ describe('TopLevelCommunityList Component', () => { ], declarations: [TopLevelCommunityListComponent], providers: [ + { provide: APP_CONFIG, useValue: environment }, { provide: CommunityDataService, useValue: communityDataServiceStub }, { provide: HostWindowService, useValue: new HostWindowServiceStub(0) }, { provide: PaginationService, useValue: paginationService }, diff --git a/src/app/home-page/top-level-community-list/top-level-community-list.component.ts b/src/app/home-page/top-level-community-list/top-level-community-list.component.ts index 5f6306649f..7d58f57196 100644 --- a/src/app/home-page/top-level-community-list/top-level-community-list.component.ts +++ b/src/app/home-page/top-level-community-list/top-level-community-list.component.ts @@ -1,4 +1,4 @@ -import { ChangeDetectionStrategy, Component, OnInit, OnDestroy } from '@angular/core'; +import { ChangeDetectionStrategy, Component, OnInit, OnDestroy, Inject } from '@angular/core'; import { BehaviorSubject, combineLatest as observableCombineLatest, Subscription } from 'rxjs'; @@ -12,6 +12,7 @@ import { PaginationComponentOptions } from '../../shared/pagination/pagination-c import { hasValue } from '../../shared/empty.util'; import { switchMap } from 'rxjs/operators'; import { PaginationService } from '../../core/pagination/pagination.service'; +import { AppConfig, APP_CONFIG } from 'src/config/app-config.interface'; /** * this component renders the Top-Level Community list @@ -50,11 +51,14 @@ export class TopLevelCommunityListComponent implements OnInit, OnDestroy { */ currentPageSubscription: Subscription; - constructor(private cds: CommunityDataService, - private paginationService: PaginationService) { + constructor( + @Inject(APP_CONFIG) protected appConfig: AppConfig, + private cds: CommunityDataService, + private paginationService: PaginationService + ) { this.config = new PaginationComponentOptions(); this.config.id = this.pageId; - this.config.pageSize = 5; + this.config.pageSize = appConfig.homePage.topLevelCommunityList.pageSize; this.config.currentPage = 1; this.sortConfig = new SortOptions('dc.title', SortDirection.ASC); } diff --git a/src/app/init.service.ts b/src/app/init.service.ts index 69ed2ad555..a0cbb06b66 100644 --- a/src/app/init.service.ts +++ b/src/app/init.service.ts @@ -143,10 +143,6 @@ export abstract class InitService { if (environment.debug) { console.info(environment); } - - const env: string = environment.production ? 'Production' : 'Development'; - const color: string = environment.production ? 'red' : 'green'; - console.info(`Environment: %c${env}`, `color: ${color}; font-weight: bold;`); } /** diff --git a/src/app/shared/cookies/browser-klaro.service.spec.ts b/src/app/shared/cookies/browser-klaro.service.spec.ts index 2155fb1bad..5806148d94 100644 --- a/src/app/shared/cookies/browser-klaro.service.spec.ts +++ b/src/app/shared/cookies/browser-klaro.service.spec.ts @@ -10,9 +10,15 @@ import { AuthService } from '../../core/auth/auth.service'; import { CookieService } from '../../core/services/cookie.service'; import { getTestScheduler } from 'jasmine-marbles'; import { MetadataValue } from '../../core/shared/metadata.models'; -import { cloneDeep } from 'lodash'; +import {clone, cloneDeep} from 'lodash'; +import { ConfigurationDataService } from '../../core/data/configuration-data.service'; +import {createFailedRemoteDataObject$, createSuccessfulRemoteDataObject$} from '../remote-data.utils'; +import { ConfigurationProperty } from '../../core/shared/configuration-property.model'; describe('BrowserKlaroService', () => { + const trackingIdProp = 'google.analytics.key'; + const trackingIdTestValue = 'mock-tracking-id'; + const googleAnalytics = 'google-analytics'; let translateService; let ePersonService; let authService; @@ -20,11 +26,20 @@ describe('BrowserKlaroService', () => { let user; let service: BrowserKlaroService; + let configurationDataService: ConfigurationDataService; + const createConfigSuccessSpy = (...values: string[]) => jasmine.createSpyObj('configurationDataService', { + findByPropertyName: createSuccessfulRemoteDataObject$({ + ... new ConfigurationProperty(), + name: trackingIdProp, + values: values, + }), + }); let mockConfig; let appName; let purpose; let testKey; + let findByPropertyName; beforeEach(() => { user = new EPerson(); @@ -38,6 +53,8 @@ describe('BrowserKlaroService', () => { isAuthenticated: observableOf(true), getAuthenticatedUserFromStore: observableOf(user) }); + configurationDataService = createConfigSuccessSpy(trackingIdTestValue); + findByPropertyName = configurationDataService.findByPropertyName; cookieService = jasmine.createSpyObj('cookieService', { get: '{%22token_item%22:true%2C%22impersonation%22:true%2C%22redirect%22:true%2C%22language%22:true%2C%22klaro%22:true%2C%22has_agreed_end_user%22:true%2C%22google-analytics%22:true}', set: () => { @@ -63,6 +80,10 @@ describe('BrowserKlaroService', () => { { provide: CookieService, useValue: cookieService + }, + { + provide: ConfigurationDataService, + useValue: configurationDataService } ] }); @@ -83,6 +104,9 @@ describe('BrowserKlaroService', () => { services: [{ name: appName, purposes: [purpose] + },{ + name: googleAnalytics, + purposes: [purpose] }], }; @@ -233,4 +257,54 @@ describe('BrowserKlaroService', () => { expect(ePersonService.patch).not.toHaveBeenCalled(); }); }); + + describe('initialize google analytics configuration', () => { + let GOOGLE_ANALYTICS_KEY; + beforeEach(() => { + GOOGLE_ANALYTICS_KEY = clone((service as any).GOOGLE_ANALYTICS_KEY); + configurationDataService.findByPropertyName = findByPropertyName; + spyOn((service as any), 'getUser$').and.returnValue(observableOf(user)); + translateService.get.and.returnValue(observableOf('loading...')); + spyOn(service, 'addAppMessages'); + spyOn((service as any), 'initializeUser'); + spyOn(service, 'translateConfiguration'); + }); + it('should not filter googleAnalytics when servicesToHide are empty', () => { + const filteredConfig = (service as any).filterConfigServices([]); + expect(filteredConfig).toContain(jasmine.objectContaining({name: googleAnalytics})); + }); + it('should filter services using names passed as servicesToHide', () => { + const filteredConfig = (service as any).filterConfigServices([googleAnalytics]); + expect(filteredConfig).not.toContain(jasmine.objectContaining({name: googleAnalytics})); + }); + it('should have been initialized with googleAnalytics', () => { + service.initialize(); + expect(service.klaroConfig.services).toContain(jasmine.objectContaining({name: googleAnalytics})); + }); + it('should filter googleAnalytics when empty configuration is retrieved', () => { + configurationDataService.findByPropertyName = jasmine.createSpy().withArgs(GOOGLE_ANALYTICS_KEY).and.returnValue( + createSuccessfulRemoteDataObject$({ + ... new ConfigurationProperty(), + name: googleAnalytics, + values: [], + })); + + service.initialize(); + expect(service.klaroConfig.services).not.toContain(jasmine.objectContaining({name: googleAnalytics})); + }); + it('should filter googleAnalytics when an error occurs', () => { + configurationDataService.findByPropertyName = jasmine.createSpy().withArgs(GOOGLE_ANALYTICS_KEY).and.returnValue( + createFailedRemoteDataObject$('Erro while loading GA') + ); + service.initialize(); + expect(service.klaroConfig.services).not.toContain(jasmine.objectContaining({name: googleAnalytics})); + }); + it('should filter googleAnalytics when an invalid payload is retrieved', () => { + configurationDataService.findByPropertyName = jasmine.createSpy().withArgs(GOOGLE_ANALYTICS_KEY).and.returnValue( + createSuccessfulRemoteDataObject$(null) + ); + service.initialize(); + expect(service.klaroConfig.services).not.toContain(jasmine.objectContaining({name: googleAnalytics})); + }); + }); }); diff --git a/src/app/shared/cookies/browser-klaro.service.ts b/src/app/shared/cookies/browser-klaro.service.ts index 638d465864..6929fb0695 100644 --- a/src/app/shared/cookies/browser-klaro.service.ts +++ b/src/app/shared/cookies/browser-klaro.service.ts @@ -4,15 +4,17 @@ import { combineLatest as observableCombineLatest, Observable, of as observableO import { AuthService } from '../../core/auth/auth.service'; import { TranslateService } from '@ngx-translate/core'; import { environment } from '../../../environments/environment'; -import { switchMap, take } from 'rxjs/operators'; +import { map, switchMap, take } from 'rxjs/operators'; import { EPerson } from '../../core/eperson/models/eperson.model'; import { KlaroService } from './klaro.service'; -import { hasValue, isNotEmpty } from '../empty.util'; +import { hasValue, isEmpty, isNotEmpty } from '../empty.util'; import { CookieService } from '../../core/services/cookie.service'; import { EPersonDataService } from '../../core/eperson/eperson-data.service'; import { cloneDeep, debounce } from 'lodash'; import { ANONYMOUS_STORAGE_NAME_KLARO, klaroConfiguration } from './klaro-configuration'; import { Operation } from 'fast-json-patch'; +import { getFirstCompletedRemoteData} from '../../core/shared/operators'; +import { ConfigurationDataService } from '../../core/data/configuration-data.service'; /** * Metadata field to store a user's cookie consent preferences in @@ -38,23 +40,31 @@ const cookiePurposeMessagePrefix = 'cookies.consent.purpose.'; * Update request debounce in ms */ const updateDebounce = 300; + /** * Browser implementation for the KlaroService, representing a service for handling Klaro consent preferences and UI */ @Injectable() export class BrowserKlaroService extends KlaroService { + + private readonly GOOGLE_ANALYTICS_KEY = 'google.analytics.key'; + + private readonly GOOGLE_ANALYTICS_SERVICE_NAME = 'google-analytics'; + /** * Initial Klaro configuration */ - klaroConfig = klaroConfiguration; + klaroConfig = cloneDeep(klaroConfiguration); constructor( private translateService: TranslateService, private authService: AuthService, private ePersonService: EPersonDataService, + private configService: ConfigurationDataService, private cookieService: CookieService) { super(); } + /** * Initializes the service: * - Retrieves the current authenticated user @@ -68,14 +78,25 @@ export class BrowserKlaroService extends KlaroService { this.klaroConfig.translations.en.consentNotice.description = 'cookies.consent.content-notice.description.no-privacy'; } + const servicesToHide$: Observable = this.configService.findByPropertyName(this.GOOGLE_ANALYTICS_KEY).pipe( + getFirstCompletedRemoteData(), + map(remoteData => { + if (!remoteData.hasSucceeded || !remoteData.payload || isEmpty(remoteData.payload.values)) { + return [this.GOOGLE_ANALYTICS_SERVICE_NAME]; + } else { + return []; + } + }), + ); + this.translateService.setDefaultLang(environment.defaultLanguage); const user$: Observable = this.getUser$(); const translationServiceReady$ = this.translateService.get('loading.default').pipe(take(1)); - observableCombineLatest([user$, translationServiceReady$]) - .subscribe(([user, translation]: [EPerson, string]) => { + observableCombineLatest([user$, servicesToHide$, translationServiceReady$]) + .subscribe(([user, servicesToHide, _]: [EPerson, string[], string]) => { user = cloneDeep(user); if (hasValue(user)) { @@ -93,6 +114,9 @@ export class BrowserKlaroService extends KlaroService { * Show the configuration if the configuration has not been confirmed */ this.translateConfiguration(); + + this.klaroConfig.services = this.filterConfigServices(servicesToHide); + Klaro.setup(this.klaroConfig); }); } @@ -168,7 +192,10 @@ export class BrowserKlaroService extends KlaroService { */ addAppMessages() { this.klaroConfig.services.forEach((app) => { - this.klaroConfig.translations.en[app.name] = { title: this.getTitleTranslation(app.name), description: this.getDescriptionTranslation(app.name) }; + this.klaroConfig.translations.en[app.name] = { + title: this.getTitleTranslation(app.name), + description: this.getDescriptionTranslation(app.name) + }; app.purposes.forEach((purpose) => { this.klaroConfig.translations.en.purposes[purpose] = this.getPurposeTranslation(purpose); }); @@ -257,4 +284,11 @@ export class BrowserKlaroService extends KlaroService { getStorageName(identifier: string) { return 'klaro-' + identifier; } + + /** + * remove the google analytics from the services + */ + private filterConfigServices(servicesToHide: string[]): Pick[] { + return this.klaroConfig.services.filter(service => !servicesToHide.some(name => name === service.name)); + } } diff --git a/src/assets/i18n/el.json5 b/src/assets/i18n/el.json5 new file mode 100644 index 0000000000..4d3b57897a --- /dev/null +++ b/src/assets/i18n/el.json5 @@ -0,0 +1,2242 @@ +{ + "401.help": "Δεν έχετε εξουσιοδότηση πρόσβασης σε αυτήν τη σελίδα. Μπορείτε να χρησιμοποιήσετε το παρακάτω κουμπί για να επιστρέψετε στην αρχική σελίδα.", + "401.link.home-page": "Μετάβαση στην αρχική σελίδα", + "401.unauthorized": "Χωρίς εξουσιοδότηση", + "403.forbidden": "Απαγορευμένη πρόσβαση", + "403.help": "Δεν έχετε άδεια πρόσβασης σε αυτήν τη σελίδα. Μπορείτε να χρησιμοποιήσετε το παρακάτω κουμπί για να επιστρέψετε στην αρχική σελίδα.", + "403.link.home-page": "Μετάβαση στην αρχική σελίδα", + "404.help": "Δεν μπορούμε να βρούμε τη σελίδα που ψάχνετε. Η σελίδα μπορεί να έχει μετακινηθεί ή διαγραφεί. Μπορείτε να χρησιμοποιήσετε το παρακάτω κουμπί για να επιστρέψετε στην αρχική σελίδα.", + "404.link.home-page": "Μετάβαση στην αρχική σελίδα", + "404.page-not-found": "Η σελίδα δεν βρέθηκε", + "500.help": "Ο διακομιστής δεν μπορεί προσωρινά να εξυπηρετήσει το αίτημά σας λόγω εργασιών συντήρησης ή προβλημάτων χωρητικότητας. Παρακαλώ προσπαθήστε ξανά αργότερα.", + "500.link.home-page": "Μετάβαση στην αρχική σελίδα", + "500.page-internal-server-error": "Μη διαθέσιμη υπηρεσία", + "access-status.embargo.listelement.badge": "Embargo", + "access-status.metadata.only.listelement.badge": "Μόνο μεταδεδομένα", + "access-status.open.access.listelement.badge": "Ανοιχτή πρόσβαση", + "access-status.restricted.listelement.badge": "Περιορισμένος", + "access-status.unknown.listelement.badge": "Αγνωστος", + "admin.access-control.epeople.actions.delete": "Διαγραφή Eperson", + "admin.access-control.epeople.actions.impersonate": "Προσομοιώστε το Eperson", + "admin.access-control.epeople.actions.reset": "Επαναφορά κωδικού πρόσβασης", + "admin.access-control.epeople.actions.stop-impersonating": "Διακοπή προσομοίωσης χρήστη", + "admin.access-control.epeople.breadcrumbs": "Χρήστες", + "admin.access-control.epeople.button.add": "Προσθήκη Eperson", + "admin.access-control.epeople.button.see-all": "Περιήγηση σε όλα", + "admin.access-control.epeople.form.canLogIn": "Δυνατότητα σύνδεσης", + "admin.access-control.epeople.form.create": "Δημιουργία EPerson", + "admin.access-control.epeople.form.edit": "Επεξεργασία EPerson", + "admin.access-control.epeople.form.email": "Ηλεκτρονική Διεύθυνση", + "admin.access-control.epeople.form.emailHint": "Πρέπει να είναι έγκυρη διεύθυνση e-mail", + "admin.access-control.epeople.form.firstName": "Ονομα", + "admin.access-control.epeople.form.goToGroups": "Προσθήκη σε ομάδες", + "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Μέλος αυτών των ομάδων:", + "admin.access-control.epeople.form.lastName": "Επίθετο", + "admin.access-control.epeople.form.memberOfNoGroups": "Αυτό το EPerson δεν είναι μέλος καμίας ομάδας", + "admin.access-control.epeople.form.notification.created.failure": "Αποτυχία δημιουργίας EPerson \"{{name}}\"", + "admin.access-control.epeople.form.notification.created.failure.emailInUse": "Αποτυχία δημιουργίας Eperson \"{{name}}\", email \"{{email}}\" που χρησιμοποιείται ήδη.", + "admin.access-control.epeople.form.notification.created.success": "Δημιουργήθηκε με επιτυχία το Eperson \"{{name}}\"", + "admin.access-control.epeople.form.notification.deleted.failure": "Απέτυχε η διαγραφή του EPerson \"{{name}}\"", + "admin.access-control.epeople.form.notification.deleted.success": "Διαγράφηκε επιτυχώς το Eperson \"{{name}}\"", + "admin.access-control.epeople.form.notification.edited.failure": "Απέτυχε η επεξεργασία του EPerson \"{{name}}\"", + "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Απέτυχε η επεξεργασία του EPerson \"{{name}}\", email \"{{email}}\" που χρησιμοποιείται ήδη.", + "admin.access-control.epeople.form.notification.edited.success": "Έγινε επιτυχής επεξεργασία του EPerson \"{{name}}\"", + "admin.access-control.epeople.form.requireCertificate": "Απαιτεί πιστοποιητικό", + "admin.access-control.epeople.form.return": "Επιστροφή", + "admin.access-control.epeople.form.table.collectionOrCommunity": "Συλλογή/Κοινότητα", + "admin.access-control.epeople.form.table.id": "ID", + "admin.access-control.epeople.form.table.name": "Ονομα", + "admin.access-control.epeople.head": "Χρήστες", + "admin.access-control.epeople.no-items": "Δεν υπάρχουν χρήστες για εμφάνιση.", + "admin.access-control.epeople.notification.deleted.failure": "Απέτυχε η διαγραφή του EPerson: \"{{name}}\"", + "admin.access-control.epeople.notification.deleted.success": "Διαγράφηκε επιτυχώς το EPerson: \"{{name}}\"", + "admin.access-control.epeople.search.button": "Αναζήτηση", + "admin.access-control.epeople.search.head": "Αναζήτηση", + "admin.access-control.epeople.search.placeholder": "Αναζήτηση χρηστών...", + "admin.access-control.epeople.search.scope.email": "E-mail (ακριβώς)", + "admin.access-control.epeople.search.scope.metadata": "Μεταδεδομένα", + "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.email": "E-mail (ακριβώς)", + "admin.access-control.epeople.table.id": "ID", + "admin.access-control.epeople.table.name": "Ονομα", + "admin.access-control.epeople.title": "χρήστες", + "admin.access-control.groups.addGroup.breadcrumbs": "Νέα ομάδα", + "admin.access-control.groups.breadcrumbs": "Ομάδες", + "admin.access-control.groups.button.add": "Προσθήκη ομάδας", + "admin.access-control.groups.button.see-all": "Περιήγηση σε όλα", + "admin.access-control.groups.form.actions.delete": "Διαγραφή ομάδας", + "admin.access-control.groups.form.alert.permanent": "Αυτή η ομάδα είναι μόνιμη, επομένως δεν είναι δυνατή η επεξεργασία ή η διαγραφή της. Μπορείτε ακόμα να προσθέσετε και να αφαιρέσετε μέλη ομάδας χρησιμοποιώντας αυτήν τη σελίδα.", + "admin.access-control.groups.form.alert.workflowGroup": "Αυτή η ομάδα δεν μπορεί να τροποποιηθεί ή να διαγραφεί επειδή αντιστοιχεί σε έναν ρόλο στη διαδικασία υποβολής και ροής εργασιών στο \"{{name}}\" {{comcol}}. Μπορείτε να προχωρήσετε στη διαγραφή από την καρτέλα \"εκχώρηση ρόλων\" στη σελίδα επεξεργασίας {{comcol}}. Μπορείτε ακόμα να προσθέσετε και να αφαιρέσετε μέλη ομάδας χρησιμοποιώντας αυτήν τη σελίδα.", + "admin.access-control.groups.form.delete-group.modal.cancel": "Ακύρωση", + "admin.access-control.groups.form.delete-group.modal.confirm": "Διαγραφή", + "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.groupCommunity": "Κοινότητα ή Συλλογή", + "admin.access-control.groups.form.groupDescription": "Περιγραφή", + "admin.access-control.groups.form.groupName": "Ονομα ομάδας", + "admin.access-control.groups.form.head.create": "Δημιουργία ομάδας", + "admin.access-control.groups.form.head.edit": "Επεξεργασία ομάδας", + "admin.access-control.groups.form.members-list.button.see-all": "Περιήγηση σε όλα", + "admin.access-control.groups.form.members-list.head": "Χρήστες", + "admin.access-control.groups.form.members-list.headMembers": "Τρέχοντα Μέλη", + "admin.access-control.groups.form.members-list.no-items": "Δεν βρέθηκαν χρήτες σε αυτήν την αναζήτηση", + "admin.access-control.groups.form.members-list.no-members-yet": "Δεν υπάρχουν ακόμη μέλη στην ομάδα, αναζητήστε και προσθέστε.", + "admin.access-control.groups.form.members-list.notification.failure.addMember": "Αποτυχία προσθήκης μέλους: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Αποτυχία διαγραφής μέλους: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "Δεν υπάρχει τρέχουσα ενεργή ομάδα, υποβάλετε πρώτα ένα όνομα.", + "admin.access-control.groups.form.members-list.notification.success.addMember": "Προστέθηκε με επιτυχία μέλος: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.success.deleteMember": "Το μέλος διαγράφηκε επιτυχώς: \"{{name}}\"", + "admin.access-control.groups.form.members-list.search.button": "Αναζήτηση", + "admin.access-control.groups.form.members-list.search.head": "Προσθήκη EPeople", + "admin.access-control.groups.form.members-list.search.scope.email": "E-mail (ακριβώς)", + "admin.access-control.groups.form.members-list.search.scope.metadata": "Μεταδεδομένα", + "admin.access-control.groups.form.members-list.table.edit": "Αφαίρεση / Προσθήκη", + "admin.access-control.groups.form.members-list.table.edit.buttons.add": "Προσθήκη μέλους με όνομα \"{{name}}\"", + "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "Κατάργηση μέλους με όνομα \"{{name}}\"", + "admin.access-control.groups.form.members-list.table.email": "Ηλεκτρονική διεύθυνση", + "admin.access-control.groups.form.members-list.table.id": "ID", + "admin.access-control.groups.form.members-list.table.identity": "ID", + "admin.access-control.groups.form.members-list.table.name": "Ονομα", + "admin.access-control.groups.form.members-list.table.netid": "NetID", + "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.success": "Η ομάδα \"{{name}}\" δημιουργήθηκε με επιτυχία", + "admin.access-control.groups.form.notification.deleted.failure.content": "Αιτία: \"{{ cause }}\"", + "admin.access-control.groups.form.notification.deleted.failure.title": "Απέτυχε η διαγραφή της ομάδας \"{{ name }}\"", + "admin.access-control.groups.form.notification.deleted.success": "Η ομάδα \"{{ 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.return": "Επιστροφή", + "admin.access-control.groups.form.subgroups-list.button.see-all": "Περιήγηση σε όλα", + "admin.access-control.groups.form.subgroups-list.head": "Ομάδες", + "admin.access-control.groups.form.subgroups-list.headSubgroups": "Τρέχουσες υποομάδες", + "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.subgroups-list.notification.failure": "Κάτι πήγε στραβά: \"{{cause}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Αποτυχία προσθήκης υποομάδας: \"{{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.notification.success.addSubgroup": "Η υποομάδα προστέθηκε με επιτυχία: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Η υποομάδα διαγράφηκε επιτυχώς: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.search.button": "Αναζήτηση", + "admin.access-control.groups.form.subgroups-list.search.head": "Προσθήκη υποομάδας", + "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.add": "Προσθήκη υποομάδας με όνομα \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "Κατάργηση υποομάδας με όνομα \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.table.edit.currentGroup": "Τρέχουσα ομάδα", + "admin.access-control.groups.form.subgroups-list.table.id": "ID", + "admin.access-control.groups.form.subgroups-list.table.name": "Ονομα", + "admin.access-control.groups.head": "Ομάδες", + "admin.access-control.groups.no-items": "Δεν βρέθηκαν ομάδες με αυτό στο όνομά τους ή αυτό ως UUID", + "admin.access-control.groups.notification.deleted.failure.content": "Αιτία: \"{{cause}}\"", + "admin.access-control.groups.notification.deleted.failure.title": "Απέτυχε η διαγραφή της ομάδας \"{{name}}\"", + "admin.access-control.groups.notification.deleted.success": "Η ομάδα \"{{name}}\" διαγράφηκε επιτυχώς", + "admin.access-control.groups.search.button": "Αναζήτηση", + "admin.access-control.groups.search.head": "Αναζήτηση ομάδων", + "admin.access-control.groups.search.placeholder": "Αναζήτηση ομάδων...", + "admin.access-control.groups.singleGroup.breadcrumbs": "Επεξεργασία ομάδας", + "admin.access-control.groups.table.collectionOrCommunity": "Συλλογή/Κοινότητα", + "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.table.id": "ID", + "admin.access-control.groups.table.members": "Μέλη", + "admin.access-control.groups.table.name": "Ονομα", + "admin.access-control.groups.title": "Ομάδες", + "admin.access-control.groups.title.addGroup": "Νέα ομάδα", + "admin.access-control.groups.title.singleGroup": "Επεξεργασία ομάδας", + "admin.curation-tasks.breadcrumbs": "Εργασίες επιμέλειας συστήματος", + "admin.curation-tasks.header": "Εργασίες επιμέλειας συστήματος", + "admin.curation-tasks.title": "Εργασίες επιμέλειας συστήματος", + "admin.metadata-import.breadcrumbs": "Εισαγωγή μεταδεδομένων", + "admin.metadata-import.page.button.proceed": "Συνέχεια", + "admin.metadata-import.page.button.return": "Επιστροφή", + "admin.metadata-import.page.dropMsg": "Αποθέστε ένα CSV μεταδεδομένων για εισαγωγή", + "admin.metadata-import.page.dropMsgReplace": "Αποθέστε για να αντικαταστήσετε το CSV μεταδεδομένων για εισαγωγή", + "admin.metadata-import.page.error.addFile": "Επιλέξτε πρώτα το αρχείο!", + "admin.metadata-import.page.header": "Εισαγωγή μεταδεδομένων", + "admin.metadata-import.page.help": "Μπορείτε να αποθέσετε ή να περιηγηθείτε σε αρχεία CSV που περιέχουν λειτουργίες μαζικών μεταδεδομένων σε αρχεία εδώ", + "admin.metadata-import.page.validateOnly": "Μόνο επικύρωση", + "admin.metadata-import.title": "Εισαγωγή μεταδεδομένων", + "admin.registries.bitstream-formats.breadcrumbs": "Μορφοποίηση μητρώου", + "admin.registries.bitstream-formats.create.breadcrumbs": "Μορφότυπο bitstream", + "admin.registries.bitstream-formats.create.failure.content": "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του νέου μορφοτύπου bitstream.", + "admin.registries.bitstream-formats.create.failure.head": "Αποτυχία", + "admin.registries.bitstream-formats.create.head": "Δημιουργήστε μορφότυπο Bitstream", + "admin.registries.bitstream-formats.create.new": "Προσθέστε μορφότυπο bitstream", + "admin.registries.bitstream-formats.create.success.content": "Το νέο μορφότυπο bitstream δημιουργήθηκε με επιτυχία.", + "admin.registries.bitstream-formats.create.success.head": "Επιτυχία", + "admin.registries.bitstream-formats.delete.failure.amount": "Αποτυχία κατάργησης {{ amount }} μορφότυπου(ών)", + "admin.registries.bitstream-formats.delete.failure.head": "Αποτυχία", + "admin.registries.bitstream-formats.delete.success.amount": "Καταργήθηκαν με επιτυχία {{ amount }} μορφότυπα", + "admin.registries.bitstream-formats.delete.success.head": "Επιτυχία", + "admin.registries.bitstream-formats.description": "Αυτή η λίστα μορφοτύπων bitstream παρέχει πληροφορίες σχετικά με γνωστά μορφότυπα και το επίπεδο υποστήριξής τους.", + "admin.registries.bitstream-formats.edit.breadcrumbs": "Μορφότυπο bitstream", + "admin.registries.bitstream-formats.edit.description.label": "Περιγραφή", + "admin.registries.bitstream-formats.edit.extensions.hint": "Οι επεκτάσεις είναι επεκτάσεις αρχείων που χρησιμοποιούνται για την αυτόματη αναγνώριση του μορφοτύπου των μεταφορτωμένων αρχείων. Μπορείτε να εισαγάγετε πολλές επεκτάσεις για κάθε μορφότυπο.", + "admin.registries.bitstream-formats.edit.extensions.label": "Επεκτάσεις αρχείων", + "admin.registries.bitstream-formats.edit.extensions.placeholder": "Εισαγάγετε μια επέκταση αρχείου χωρίς την τελεία", + "admin.registries.bitstream-formats.edit.failure.content": "Παρουσιάστηκε σφάλμα κατά την επεξεργασία του μορφότυπου bitstream.", + "admin.registries.bitstream-formats.edit.failure.head": "Αποτυχία", + "admin.registries.bitstream-formats.edit.head": "Μορφότυπο: {{ format }}", + "admin.registries.bitstream-formats.edit.internal.hint": "Οι μορφές που επισημαίνονται ως εσωτερικές αποκρύπτονται από τον χρήστη και χρησιμοποιούνται για διαχειριστικούς σκοπούς.", + "admin.registries.bitstream-formats.edit.internal.label": "Εσωτερική", + "admin.registries.bitstream-formats.edit.mimetype.hint": "Ο τύπος MIME που σχετίζεται με αυτό το μορφότυπο, δεν χρειάζεται να είναι μοναδικός.", + "admin.registries.bitstream-formats.edit.mimetype.label": "Τύπος MIME", + "admin.registries.bitstream-formats.edit.shortDescription.hint": "Ένα μοναδικό όνομα μορφότυπου, (π.χ. Microsoft Word XP ή Microsoft Word 2000)", + "admin.registries.bitstream-formats.edit.shortDescription.label": "Ονομα", + "admin.registries.bitstream-formats.edit.success.content": "Το μορφότυπο bitstream επεξεργάστηκε με επιτυχία.", + "admin.registries.bitstream-formats.edit.success.head": "Επιτυχία", + "admin.registries.bitstream-formats.edit.supportLevel.hint": "Το επίπεδο υποστήριξης που παρέχεται για αυτόν τον μορφότυπο.", + "admin.registries.bitstream-formats.edit.supportLevel.label": "Επίπεδο υποστήριξης", + "admin.registries.bitstream-formats.head": "Μητρώο μορφότυπων", + "admin.registries.bitstream-formats.no-items": "Δεν υπάρχουν μορφότυπα bitstream για εμφάνιση.", + "admin.registries.bitstream-formats.table.delete": "Διαγραφή επιλεγμένων", + "admin.registries.bitstream-formats.table.deselect-all": "Αποεπιλογή όλων", + "admin.registries.bitstream-formats.table.internal": "εσωτερικός", + "admin.registries.bitstream-formats.table.mimetype": "mimetype", + "admin.registries.bitstream-formats.table.name": "Ονομα", + "admin.registries.bitstream-formats.table.return": "Επιστροφή", + "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Γνωστός", + "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Υποστηρίζεται", + "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Αγνωστος", + "admin.registries.bitstream-formats.table.supportLevel.head": "Επίπεδο Υποστήριξης", + "admin.registries.bitstream-formats.title": "Μητρώο μορφότυπων", + "admin.registries.metadata.breadcrumbs": "Μητρώο μεταδεδομένων", + "admin.registries.metadata.description": "Το μητρώο μεταδεδομένων διατηρεί μια λίστα με όλα τα πεδία μεταδεδομένων που είναι διαθέσιμα στο χώρο αποθήκευσης. Αυτά τα πεδία μπορούν να χωριστούν σε πολλαπλά σχήματα. Ωστόσο, το DSpace απαιτεί το πιστοποιημένο σχήμα Dublin Core.", + "admin.registries.metadata.form.create": "Δημιουργία σχήματος μεταδεδομένων", + "admin.registries.metadata.form.edit": "Επεξεργασία σχήματος μεταδεδομένων", + "admin.registries.metadata.form.name": "Ονομα", + "admin.registries.metadata.form.namespace": "namespace", + "admin.registries.metadata.head": "Μητρώο μεταδεδομένων", + "admin.registries.metadata.schemas.no-items": "Δεν υπάρχουν σχήματα μεταδεδομένων για εμφάνιση.", + "admin.registries.metadata.schemas.table.delete": "Διαγραφή επιλεγμένων", + "admin.registries.metadata.schemas.table.id": "ID", + "admin.registries.metadata.schemas.table.name": "Ονομα", + "admin.registries.metadata.schemas.table.namespace": "namespace", + "admin.registries.metadata.title": "Μητρώο μεταδεδομένων", + "admin.registries.schema.breadcrumbs": "Σχήμα μεταδεδομένων", + "admin.registries.schema.description": "Αυτό είναι το σχήμα μεταδεδομένων για το \"{{namespace}}\".", + "admin.registries.schema.fields.head": "Πεδία μεταδεδομένων σχήματος", + "admin.registries.schema.fields.no-items": "Δεν υπάρχουν πεδία μεταδεδομένων για εμφάνιση.", + "admin.registries.schema.fields.table.delete": "Διαγραφή επιλεγμένων", + "admin.registries.schema.fields.table.field": "Πεδίο", + "admin.registries.schema.fields.table.scopenote": "Πεδίο εφαρμογής", + "admin.registries.schema.form.create": "Δημιουργία πεδίου μεταδεδομένων", + "admin.registries.schema.form.edit": "Επεξεργασία πεδίου μεταδεδομένων", + "admin.registries.schema.form.element": "Element", + "admin.registries.schema.form.qualifier": "Qualifier", + "admin.registries.schema.form.scopenote": "Πεδίο εφαρμογής", + "admin.registries.schema.head": "Σχήμα Μεταδεδομένων", + "admin.registries.schema.notification.created": "Δημιουργήθηκε με επιτυχία σχήμα μεταδεδομένων \"{{prefix}}\"", + "admin.registries.schema.notification.deleted.failure": "Αποτυχία διαγραφής {{amount}} σχημάτων μεταδεδομένων", + "admin.registries.schema.notification.deleted.success": "Διαγράφηκαν με επιτυχία {{amount}} σχήματα μεταδεδομένων", + "admin.registries.schema.notification.edited": "Το σχήμα μεταδεδομένων \"{{prefix}}\" επεξεργάστηκε με επιτυχία", + "admin.registries.schema.notification.failure": "Αποτυχία", + "admin.registries.schema.notification.field.created": "Δημιουργήθηκε με επιτυχία το πεδίο μεταδεδομένων \"{{field}}\"", + "admin.registries.schema.notification.field.deleted.failure": "Απέτυχε η διαγραφή {{amount}} πεδίων μεταδεδομένων", + "admin.registries.schema.notification.field.deleted.success": "Διαγράφηκαν με επιτυχία {{amount}} πεδία μεταδεδομένων", + "admin.registries.schema.notification.field.edited": "Το πεδίο μεταδεδομένων \"{{field}}\" επεξεργάστηκε με επιτυχία", + "admin.registries.schema.notification.success": "Επιτυχία", + "admin.registries.schema.return": "Επιστροφή", + "admin.registries.schema.title": "Μητρώο σχήματος μεταδεδομένων", + "admin.search.breadcrumbs": "Αναζήτηση Διαχειριστή", + "admin.search.collection.edit": "Επεξεργασία", + "admin.search.community.edit": "Επεξεργασία", + "admin.search.item.delete": "Διαγραφή", + "admin.search.item.edit": "Επεξεργασία", + "admin.search.item.make-private": "Μετατροπή σε ιδιωτικό", + "admin.search.item.make-public": "Μετατροπή σε δημόσιο", + "admin.search.item.move": "Μετακίνηση", + "admin.search.item.reinstate": "Επαναφορά", + "admin.search.item.withdraw": "Απόσυρση", + "admin.search.title": "Αναζήτηση", + "admin.workflow.breadcrumbs": "Διαχείριση ροής εργασιών", + "admin.workflow.item.delete": "Διαγραφή", + "admin.workflow.item.send-back": "Επιστροφή", + "admin.workflow.item.workflow": "Ροή εργασιών", + "admin.workflow.title": "Διαχείριση ροής εργασιών", + "administrativeView.search.results.head": "Αναζήτηση Διαχειριστή", + "auth.errors.invalid-user": "Μη έγκυρη διεύθυνση ηλ. ταχυδρομείου ή κωδικός πρόσβασης.", + "auth.messages.expired": "Η συνεδρία (session) σας έχει λήξει. Παρακαλούμε συνδεθείτε ξανά.", + "auth.messages.token-refresh-failed": "Η ανανέωση της συνεδρίας (session) απέτυχε. Παρακαλούμε συνδεθείτε ξανά.", + "bitstream-request-a-copy.alert.canDownload1": "Έχετε ήδη πρόσβαση σε αυτό το αρχείο. Εάν θέλετε να κατεβάσετε το αρχείο, κάντε κλικ", + "bitstream-request-a-copy.alert.canDownload2": "εδώ", + "bitstream-request-a-copy.allfiles.label": "Αρχεία", + "bitstream-request-a-copy.email.error": "Παρακαλώ εισάγετε μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου.", + "bitstream-request-a-copy.email.hint": "Αυτή η διεύθυνση email χρησιμοποιείται για την αποστολή του αρχείου.", + "bitstream-request-a-copy.email.label": "Η ηλεκτρονική σου διεύθυνση *", + "bitstream-request-a-copy.files-all-false.label": "Μόνο το αρχείο που ζητήθηκε", + "bitstream-request-a-copy.files-all-true.label": "Όλα τα αρχεία (του τεκμηρίου αυτού) σε περιορισμένη πρόσβαση", + "bitstream-request-a-copy.header": "Ζητήστε ένα αντίγραφο του αρχείου", + "bitstream-request-a-copy.intro": "Εισαγάγετε τις ακόλουθες πληροφορίες για να ζητήσετε αντίγραφο για το ακόλουθο τεκμήριο:", + "bitstream-request-a-copy.intro.bitstream.all": "Αίτημα όλων των αρχείων.", + "bitstream-request-a-copy.intro.bitstream.one": "Ζητώντας το ακόλουθο αρχείο:", + "bitstream-request-a-copy.message.label": "Μήνυμα", + "bitstream-request-a-copy.name.error": "Το όνομα είναι υποχρεωτικό", + "bitstream-request-a-copy.name.label": "Ονομα *", + "bitstream-request-a-copy.return": "Επιστροφή", + "bitstream-request-a-copy.submit": "Ζητήστε αντίγραφο", + "bitstream-request-a-copy.submit.error": "Παρουσιάστηκε κάποιο πρόβλημα με την υποβολή του αιτήματος για το τεκμήριο.", + "bitstream-request-a-copy.submit.success": "Το αίτημα τεκμηρίου υποβλήθηκε με επιτυχία.", + "bitstream.download.page": "Τώρα γίνεται λήψη του {{bitstream}}...", + "bitstream.download.page.back": "Επιστροφή", + "bitstream.edit.authorizations.link": "Επεξεργαστείτε τις πολιτικές του αρχείου", + "bitstream.edit.authorizations.title": "Επεξεργαστείτε τις πολιτικές του αρχείου", + "bitstream.edit.bitstream": "Αρχείο:", + "bitstream.edit.form.description.hint": "Προαιρετικά, δώστε μια σύντομη περιγραφή του αρχείου, για παράδειγμα \"Κύριο άρθρο\" ή \"Αναγνώσεις δεδομένων πειράματος\".", + "bitstream.edit.form.description.label": "Περιγραφή", + "bitstream.edit.form.embargo.hint": "Η πρώτη ημέρα από την οποία επιτρέπεται η πρόσβαση. Αυτή η ημερομηνία δεν μπορεί να τροποποιηθεί σε αυτήν τη φόρμα. Για να ορίσετε μια ημερομηνία embargo για ένα αρχείο, μεταβείτε στην καρτέλα Κατάσταση τεκμηρίου, κάντε κλικ στην επιλογή Εξουσιοδοτήσεις..., δημιουργήστε ή επεξεργαστείτε την πολιτική READ του αρχείου και ορίστε την Ημερομηνία έναρξης όπως επιθυμείτε.", + "bitstream.edit.form.embargo.label": "Εμπάργκο (embargo) μέχρι συγκεκριμένη ημερομηνία", + "bitstream.edit.form.fileName.hint": "Αλλάξτε το όνομα αρχείου για το αρχείο. Λάβετε υπόψη ότι αυτό θα αλλάξει τη διεύθυνση URL του αρχείου, αλλά οι παλιοί σύνδεσμοι θα εξακολουθούν να ισχύουν όσο το αναγνωριστικό ακολουθίας (sequence) δεν αλλάζει.", + "bitstream.edit.form.fileName.label": "Ονομα αρχείου", + "bitstream.edit.form.iiifHeight.hint": "Το ύψος του καμβά πρέπει συνήθως να ταιριάζει με το ύψος της εικόνας.", + "bitstream.edit.form.iiifHeight.label": "Ύψος καμβά IIIF", + "bitstream.edit.form.iiifLabel.hint": "Ετικέτα καμβά για αυτήν την εικόνα. Εάν δεν παρέχεται, θα χρησιμοποιηθεί η προεπιλεγμένη ετικέτα.", + "bitstream.edit.form.iiifLabel.label": "Ετικέτα IIIF", + "bitstream.edit.form.iiifToc.hint": "Η προσθήκη κειμένου εδώ καθιστά την αρχή ενός νέου εύρους πίνακα περιεχομένων.", + "bitstream.edit.form.iiifToc.label": "IIIF Πίνακας περιεχομένων", + "bitstream.edit.form.iiifWidth.hint": "Το πλάτος του καμβά πρέπει συνήθως να ταιριάζει με το πλάτος της εικόνας.", + "bitstream.edit.form.iiifWidth.label": "Πλάτος καμβά IIIF", + "bitstream.edit.form.newFormat.hint": "Η εφαρμογή που χρησιμοποιήσατε για τη δημιουργία του αρχείου και ο αριθμός έκδοσης (για παράδειγμα, \"ACMESoft SuperApp έκδοση 1.5\").", + "bitstream.edit.form.newFormat.label": "Περιγράψτε το νέο μορφότυπο", + "bitstream.edit.form.primaryBitstream.label": "Κύριο αρχείο", + "bitstream.edit.form.selectedFormat.hint": "Εάν το μορφότυπο δεν βρίσκεται στην παραπάνω λίστα, επιλέξτε \"μορφότυπο που δεν είναι στη λίστα\" παραπάνω και περιγράψτε την στην ενότητα \"Περιγραφή νέου μορφότυπο\".", + "bitstream.edit.form.selectedFormat.label": "Επιλεγμένο μορφότυπο", + "bitstream.edit.form.selectedFormat.unknown": "Το μορφότυπο δεν είναι στη λίστα", + "bitstream.edit.notifications.error.format.title": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του μορφότυπου του αρχείου", + "bitstream.edit.notifications.saved.content": "Οι αλλαγές σας σε αυτό το αρχείο αποθηκεύτηκαν.", + "bitstream.edit.notifications.saved.title": "το αρχείο αποθηκεύτηκε", + "bitstream.edit.return": "Επιστροφή", + "bitstream.edit.title": "Επεξεργασία αρχείου", + "browse.back.all-results": "Όλα τα αποτελέσματα περιήγησης", + "browse.comcol.by.author": "Από Συγγραφέα", + "browse.comcol.by.dateissued": "Κατά Ημερομηνία Έκδοσης", + "browse.comcol.by.subject": "Κατά θέμα", + "browse.comcol.by.title": "Με τίτλο", + "browse.comcol.head": "Περιηγούμαι", + "browse.empty": "Δεν υπάρχουν τεκμήρια για εμφάνιση.", + "browse.metadata.author": "Συγγραφέας", + "browse.metadata.author.breadcrumbs": "Πλοήγηση ανά συγγραφέα", + "browse.metadata.dateissued": "Ημερομηνία έκδοσης", + "browse.metadata.dateissued.breadcrumbs": "Πλοήγηση ανά ημερομηνία", + "browse.metadata.subject": "Θέμα", + "browse.metadata.subject.breadcrumbs": "Πλοήγηση ανά θέμα", + "browse.metadata.title": "Τίτλος", + "browse.metadata.title.breadcrumbs": "Πλοήγηση ανά τίτλο", + "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.title": "Πλοήγηση στη {{ collection }} ανά {{ field }}{{ startsWith }} {{ value }}", + "browse.title.page": "Πλοήγηση στη {{ collection }} ανά {{ field }} {{ value }}", + "chips.remove": "Remove chip", + "collection.create.head": "Δημιουργήστε μια Συλλογή", + "collection.create.notifications.success": "Δημιουργήθηκε με επιτυχία η Συλλογή", + "collection.create.sub-head": "Δημιουργήστε μια συλλογή για την κοινότητα {{ parent }}", + "collection.curate.header": "Επιμέλεια συλλογής: {{collection}}", + "collection.delete.cancel": "Ακύρωση", + "collection.delete.confirm": "Επιβεβαίωση", + "collection.delete.head": "Διαγραφή συλλογής", + "collection.delete.notification.fail": "Δεν ήταν δυνατή η διαγραφή της συλλογής", + "collection.delete.notification.success": "Η συλλογή διαγράφηκε με επιτυχία", + "collection.delete.processing": "Διαγραφή", + "collection.delete.text": "Είστε βέβαιοι ότι θέλετε να διαγράψετε τη συλλογή \"{{ dso }}\"", + "collection.edit.breadcrumbs": "Επεξεργασία συλλογής", + "collection.edit.delete": "Διαγραφή αυτής της συλλογής", + "collection.edit.head": "Επεξεργασία συλλογής", + "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.item.authorizations.load-bundle-button": "Φορτώστε περισσότερα πακέτα", + "collection.edit.item.authorizations.load-more-button": "Φόρτωσε περισσότερα", + "collection.edit.item.authorizations.show-bitstreams-button": "Εμφάνιση πολιτικών αρχείου για το πακέτο", + "collection.edit.logo.delete-undo.title": "Αναίρεση διαγραφή", + "collection.edit.logo.delete.title": "Διαγραφή λογότυπου", + "collection.edit.logo.label": "Λογότυπο συλλογής", + "collection.edit.logo.notifications.add.error": "Η μεταφόρτωση του λογότυπου της Συλλογής απέτυχε. Επαληθεύστε το περιεχόμενο πριν προσπαθήσετε ξανά.", + "collection.edit.logo.notifications.add.success": "Επιτυχής μεταφόρτωση λογότυπου συλλογής.", + "collection.edit.logo.notifications.delete.error.title": "Σφάλμα κατά τη διαγραφή του λογότυπου", + "collection.edit.logo.notifications.delete.success.content": "Το λογότυπο της συλλογής διαγράφηκε με επιτυχία", + "collection.edit.logo.notifications.delete.success.title": "Το λογότυπο διαγράφηκε", + "collection.edit.logo.upload": "Σύρετε ένα λογότυπο συλλογής για μεταφόρτωση", + "collection.edit.notifications.success": "Έγινε επιτυχής επεξεργασία της Συλλογής", + "collection.edit.return": "Επιστροφή", + "collection.edit.tabs.authorizations.head": "Εξουσιοδοτήσεις", + "collection.edit.tabs.authorizations.title": "Επεξεργασία συλλογής - Εξουσιοδοτήσεις", + "collection.edit.tabs.curate.head": "Βοηθός ιερέα", + "collection.edit.tabs.curate.title": "Επεξεργασία συλλογής - Επιμέλεια", + "collection.edit.tabs.item-mapper.title": "Επεξεργασία συλλογής - Αντιστοίχιση τεκμηρίων", + "collection.edit.tabs.mapper.head": "Αντιστοίχιση τεκμηρίων", + "collection.edit.tabs.metadata.head": "Επεξεργασία Μεταδεδομένων", + "collection.edit.tabs.metadata.title": "Επεξεργασία συλλογής - Μεταδεδομένα", + "collection.edit.tabs.roles.head": "Αναθέστε ρόλους", + "collection.edit.tabs.roles.title": "Επεξεργασία συλλογής - Ρόλοι", + "collection.edit.tabs.source.external": "Αυτή η συλλογή συλλέγει το περιεχόμενό της από εξωτερική πηγή", + "collection.edit.tabs.source.form.errors.oaiSource.required": "Πρέπει να παρέχετε ένα αναγνωριστικό συνόλου της συλλογής προορισμού.", + "collection.edit.tabs.source.form.harvestType": "Συγκομιδή περιεχομένου", + "collection.edit.tabs.source.form.head": "Διαμόρφωση εξωτερικής πηγής", + "collection.edit.tabs.source.form.metadataConfigId": "Μορφή μεταδεδομένων", + "collection.edit.tabs.source.form.oaiSetId": "Αναγνωριστικό συγκεκριμένου συνόλου OAI", + "collection.edit.tabs.source.form.oaiSource": "Πάροχος ΟΑΙ", + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Συγκομιδή μεταδεδομένων και αρχείων (απαιτείται υποστήριξη ORE)", + "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Συγκομιδή μεταδεδομένων και αναφορές σε αρχεία (απαιτείται υποστήριξη ORE)", + "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Συγκομιδή μόνο μεταδεδομένων", + "collection.edit.tabs.source.head": "Πηγή περιεχομένου", + "collection.edit.tabs.source.notifications.discarded.content": "Οι αλλαγές σας απορρίφθηκαν. Για να επαναφέρετε τις αλλαγές σας, κάντε κλικ στο κουμπί «Αναίρεση».", + "collection.edit.tabs.source.notifications.discarded.title": "Άλλαξε απορρίφθηκε", + "collection.edit.tabs.source.notifications.invalid.content": "Οι αλλαγές σας δεν αποθηκεύτηκαν. Βεβαιωθείτε ότι όλα τα πεδία είναι έγκυρα προτού αποθηκεύσετε.", + "collection.edit.tabs.source.notifications.invalid.title": "Μη έγκυρα μεταδεδομένα", + "collection.edit.tabs.source.notifications.saved.content": "Οι αλλαγές σας στην πηγή περιεχομένου αυτής της συλλογής αποθηκεύτηκαν.", + "collection.edit.tabs.source.notifications.saved.title": "Η πηγή περιεχομένου αποθηκεύτηκε", + "collection.edit.tabs.source.title": "Επεξεργασία συλλογής - Πηγή περιεχομένου", + "collection.edit.template.add-button": "Προσθήκη", + "collection.edit.template.breadcrumbs": "πρότυπο τεκμηρίου", + "collection.edit.template.cancel": "Ακύρωση", + "collection.edit.template.delete-button": "Διαγραφή", + "collection.edit.template.edit-button": "Επεξεργασία", + "collection.edit.template.error": "Παρουσιάστηκε σφάλμα κατά την ανάκτηση του προτύπου του τεκμηρίου", + "collection.edit.template.head": "Επεξεργασία προτύπου τεκμηρίου για τη συλλογή \"{{ collection }}\"", + "collection.edit.template.label": "Πρότυπο τεκμηρίου", + "collection.edit.template.loading": "Φόρτωση προτύπου τεκμηρίου...", + "collection.edit.template.notifications.delete.error": "Η διαγραφή του προτύπου τεκμηρίου απέτυχε", + "collection.edit.template.notifications.delete.success": "Το πρότυπο τεκμηρίου διαγράφηκε με επιτυχία", + "collection.edit.template.title": "Επεξεργασία προτύπου τεκμηρίου", + "collection.form.abstract": "Σύντομη περιγραφή", + "collection.form.description": "Εισαγωγικό κείμενο (HTML)", + "collection.form.entityType": "Τύπος οντότητας", + "collection.form.errors.title.required": "Εισαγάγετε ένα όνομα συλλογής", + "collection.form.license": "Αδεια", + "collection.form.provenance": "Προέλευση", + "collection.form.rights": "Κείμενο πνευματικών δικαιωμάτων (HTML)", + "collection.form.tableofcontents": "Ειδήσεις (HTML)", + "collection.form.title": "Ονομα", + "collection.listelement.badge": "Συλλογή", + "collection.page.browse.recent.empty": "Δεν υπάρχουν τεκμήρια για εμφάνιση", + "collection.page.browse.recent.head": "Πρόσφατες Υποβολές", + "collection.page.edit": "Επεξεργαστείτε αυτήν τη συλλογή", + "collection.page.handle": "Μόνιμο URI για αυτήν τη συλλογή", + "collection.page.license": "Αδεια", + "collection.page.news": "Νέα", + "collection.select.confirm": "Επιβεβαιώστε την επιλογή", + "collection.select.empty": "Δεν υπάρχουν συλλογές προς εμφάνιση", + "collection.select.table.title": "Τίτλος", + "collection.source.controls.harvest.last": "Τελευταία συγκομιδή:", + "collection.source.controls.harvest.message": "Πληροφορίες συγκομιδής:", + "collection.source.controls.harvest.no-information": "N/A", + "collection.source.controls.harvest.start": "Ώρα έναρξης συγκομιδής:", + "collection.source.controls.harvest.status": "Κατάσταση συγκομιδής:", + "collection.source.controls.head": "Έλεγχοι συγκομιδής", + "collection.source.controls.import.completed": "Η εισαγωγή ολοκληρώθηκε", + "collection.source.controls.import.failed": "Παρουσιάστηκε σφάλμα κατά την εισαγωγή", + "collection.source.controls.import.running": "Εισαγωγή...", + "collection.source.controls.import.submit": "Εισαγωγή τώρα", + "collection.source.controls.import.submit.error": "Κάτι πήγε στραβά με την έναρξη της εισαγωγής", + "collection.source.controls.import.submit.success": "Η εισαγωγή ξεκίνησε με επιτυχία", + "collection.source.controls.reset.completed": "Η επαναφορά και η επανεισαγωγή ολοκληρώθηκαν", + "collection.source.controls.reset.failed": "Παρουσιάστηκε σφάλμα κατά την επαναφορά και την επανεισαγωγή", + "collection.source.controls.reset.running": "Επαναφορά και επανεισαγωγή...", + "collection.source.controls.reset.submit": "Επαναφορά και επανεισαγωγή", + "collection.source.controls.reset.submit.error": "Κάτι πήγε στραβά με την εκκίνηση της επαναφοράς και της επανεισαγωγής", + "collection.source.controls.reset.submit.success": "Η επαναφορά και η επανεισαγωγή ξεκίνησαν με επιτυχία", + "collection.source.controls.test.completed": "Το σενάριο για τη δοκιμή των ρυθμίσεων ολοκληρώθηκε με επιτυχία", + "collection.source.controls.test.failed": "Το σενάριο για τον έλεγχο των ρυθμίσεων απέτυχε", + "collection.source.controls.test.running": "Έλεγχος παραμετροποίησης...", + "collection.source.controls.test.submit": "Η παραμετροποίηση ελέγχεται", + "collection.source.controls.test.submit.error": "Κάτι πήγε στραβά με την έναρξη του ελέγχου των ρυθμίσεων", + "collection.source.update.notifications.error.content": "Οι παρεχόμενες ρυθμίσεις έχουν ελεχθεί και δεν λειτούργησαν.", + "collection.source.update.notifications.error.title": "Σφάλμα Διακομιστή", + "comcol-role.edit.bitstream_read.anonymous-group": "Η προεπιλεγμένη ανάγνωση για εισερχόμενα αρχεία έχει οριστεί αυτήν τη στιγμή σε Ανώνυμη.", + "comcol-role.edit.bitstream_read.description": "Οι διαχειριστές της κοινότητας μπορούν να δημιουργήσουν υποκοινότητες ή συλλογές και να διαχειρίζονται ή να αναθέτουν διαχείριση για αυτές τις υποκοινότητες ή συλλογές. Επιπλέον, αποφασίζουν ποιος μπορεί να υποβάλει τεκμήρια σε οποιεσδήποτε υποσυλλογές, να επεξεργαστεί τα μεταδεδομένα των τεκμηρίων (μετά την υποβολή) και να προσθέσει (αντιστοιχίσει) υπάρχοντα τεκμήρια από άλλες συλλογές (υπόκειται σε εξουσιοδότηση).", + "comcol-role.edit.bitstream_read.name": "Προεπιλεγμένη πρόσβαση ανάγνωσης αρχείου", + "comcol-role.edit.collection-admin.description": "Οι διαχειριστές της συλλογής αποφασίζουν ποιος μπορεί να υποβάλει τεκμήρια στη συλλογή, να επεξεργαστεί τα μεταδεδομένα των τεκμηρίων (μετά την υποβολή) και να προσθέσει (αντιστοιχίσει) υπάρχοντα τεκμήρια από άλλες συλλογές σε αυτήν τη συλλογή (με την επιφύλαξη εξουσιοδότησης για αυτήν τη συλλογή).", + "comcol-role.edit.collection-admin.name": "Διαχειριστές", + "comcol-role.edit.community-admin.description": "Οι διαχειριστές της κοινότητας μπορούν να δημιουργήσουν υποκοινότητες ή συλλογές και να διαχειρίζονται ή να αναθέτουν διαχείριση για αυτές τις υποκοινότητες ή συλλογές. Επιπλέον, αποφασίζουν ποιος μπορεί να υποβάλει τεκμήρια σε οποιεσδήποτε υποσυλλογές, να επεξεργαστεί τα μεταδεδομένα των τεκμηρίων (μετά την υποβολή) και να προσθέσει (αντιστοιχίσει) υπάρχοντα τεκμήρια από άλλες συλλογές (υπόκειται σε εξουσιοδότηση).", + "comcol-role.edit.community-admin.name": "Διαχειριστές", + "comcol-role.edit.create": "Δημιουργώ", + "comcol-role.edit.create.error.title": "Αποτυχία δημιουργίας ομάδας για τον ρόλο \"{{ role }}\".", + "comcol-role.edit.delete": "Διαγραφή", + "comcol-role.edit.delete.error.title": "Απέτυχε η διαγραφή της ομάδας ρόλων \"{{ role }}\".", + "comcol-role.edit.editor.description": "Οι συντάκτες μπορούν να επεξεργαστούν τα μεταδεδομένα των εισερχόμενων υποβολών και, στη συνέχεια, να τις αποδεχτούν ή να τις απορρίψουν.", + "comcol-role.edit.editor.name": "Συντάκτες", + "comcol-role.edit.finaleditor.description": "Οι τελικοί συντάκτες μπορούν να επεξεργαστούν τα μεταδεδομένα των εισερχόμενων υποβολών, αλλά δεν θα μπορούν να τα απορρίψουν.", + "comcol-role.edit.finaleditor.name": "Τελικοί συντάκτες", + "comcol-role.edit.item_read.anonymous-group": "Η προεπιλεγμένη ανάγνωση για τα εισερχόμενα τεκμήρια έχει οριστεί σε Ανώνυμο.", + "comcol-role.edit.item_read.description": "Οι χρήστες και οι ομάδες με δικαίωμα read σε νέα τεκμήρια που υποβάλλονται στη συλλογή. Οι αλλαγές σε αυτόν τον ρόλο δεν έχουν αναδρομική ισχύ. Τα υπάρχοντα τεκμήρια στο σύστημα θα εξακολουθούν να είναι ορατά από όσους είχαν πρόσβαση ανάγνωσης τη στιγμή της προσθήκης τους.", + "comcol-role.edit.item_read.name": "Προεπιλεγμένη πρόσβαση για ανάγνωση τεκμηρίων", + "comcol-role.edit.no-group": "Κανένας", + "comcol-role.edit.restrict": "Περιορίζω", + "comcol-role.edit.reviewer.description": "Οι αξιολογητές μπορούν να αποδεχτούν ή να απορρίψουν εισερχόμενες υποβολές. Ωστόσο, δεν είναι σε θέση να επεξεργαστούν τα μεταδεδομένα της υποβολής.", + "comcol-role.edit.reviewer.name": "Αναθεωρητές", + "comcol-role.edit.submitters.description": "Οι χρήστες και οι ομάδες που έχουν άδεια να υποβάλουν νέα τεκμήρια σε αυτήν τη συλλογή.", + "comcol-role.edit.submitters.name": "Υποβολείς", + "community.all-lists.head": "Υποκοινότητες και Συλλογές", + "community.create.head": "Δημιουργήστε μια Κοινότητα", + "community.create.notifications.success": "Δημιουργήθηκε με επιτυχία η Κοινότητα", + "community.create.sub-head": "Δημιουργία υποκοινότητας για την κοινότητα {{ parent }}", + "community.curate.header": "Επιμέλεια κοινότητας: {{community}}", + "community.delete.cancel": "Ακύρωση", + "community.delete.confirm": "Επιβεβαίωση", + "community.delete.head": "Διαγραφή Κοινότητας", + "community.delete.notification.fail": "Δεν ήταν δυνατή η διαγραφή της κοινότητας", + "community.delete.notification.success": "Η κοινότητα διαγράφηκε με επιτυχία", + "community.delete.processing": "Διαγραφή...", + "community.delete.text": "Είστε βέβαιοι ότι θέλετε να διαγράψετε την κοινότητα \"{{ dso }}\"", + "community.edit.breadcrumbs": "Επεξεργασία Κοινότητας", + "community.edit.delete": "Διαγραφή αυτής της κοινότητας", + "community.edit.head": "Επεξεργασία Κοινότητας", + "community.edit.logo.delete-undo.title": "Αναίρεση διαγραφής", + "community.edit.logo.delete.title": "Διαγραφή λογότυπου", + "community.edit.logo.label": "Λογότυπο κοινότητας", + "community.edit.logo.notifications.add.error": "Η μεταφόρτωση του λογότυπου της Κοινότητας απέτυχε. Επαληθεύστε το περιεχόμενο πριν προσπαθήσετε ξανά.", + "community.edit.logo.notifications.add.success": "Επιτυχής μεταφόρτωση λογότυπου Κοινότητας.", + "community.edit.logo.notifications.delete.error.title": "Σφάλμα κατά τη διαγραφή του λογότυπου", + "community.edit.logo.notifications.delete.success.content": "Το λογότυπο της κοινότητας διαγράφηκε με επιτυχία", + "community.edit.logo.notifications.delete.success.title": "Το λογότυπο διαγράφηκε", + "community.edit.logo.upload": "Σύρετε ένα λογότυπο κοινότητας για μεταφόρτωση", + "community.edit.notifications.error": "Παρουσιάστηκε σφάλμα κατά την επεξεργασία της Κοινότητας", + "community.edit.notifications.success": "Έγινε επιτυχής επεξεργασία της Κοινότητας", + "community.edit.notifications.unauthorized": "Δεν έχετε τα προνόμια να κάνετε αυτήν την αλλαγή", + "community.edit.return": "Επιστροφή", + "community.edit.tabs.authorizations.head": "Εξουσιοδοτήσεις", + "community.edit.tabs.authorizations.title": "Επεξεργασία κοινότητας - Εξουσιοδοτήσεις", + "community.edit.tabs.curate.head": "Βοηθός ιερέα", + "community.edit.tabs.curate.title": "Επεξεργασία κοινότητας - Επιμέλεια", + "community.edit.tabs.metadata.head": "Επεξεργασία Μεταδεδομένων", + "community.edit.tabs.metadata.title": "Επεξεργασία κοινότητας - Μεταδεδομένα", + "community.edit.tabs.roles.head": "Αναθέστε ρόλους", + "community.edit.tabs.roles.title": "Επεξεργασία κοινότητας - Ρόλοι", + "community.form.abstract": "Σύντομη περιγραφή", + "community.form.description": "Εισαγωγικό κείμενο (HTML)", + "community.form.errors.title.required": "Εισαγάγετε ένα όνομα κοινότητας", + "community.form.rights": "Κείμενο πνευματικών δικαιωμάτων (HTML)", + "community.form.tableofcontents": "Ειδήσεις (HTML)", + "community.form.title": "Ονομα", + "community.listelement.badge": "Κοινότητα", + "community.page.edit": "Επεξεργαστείτε αυτήν την κοινότητα", + "community.page.handle": "Μόνιμο URI για αυτήν την κοινότητα", + "community.page.license": "Αδεια", + "community.page.news": "Νέα", + "community.sub-collection-list.head": "Συλλογές αυτής της Κοινότητας", + "community.sub-community-list.head": "Κοινότητες αυτής της Κοινότητας", + "communityList.breadcrumbs": "Λίστα κοινότητας", + "communityList.showMore": "Δείτε περισσότερα", + "communityList.tabTitle": "Λίστα κοινότητας", + "communityList.title": "Κατάλογος Κοινοτήτων", + "confirmation-modal.delete-eperson.cancel": "Ακύρωση", + "confirmation-modal.delete-eperson.confirm": "Διαγραφή", + "confirmation-modal.delete-eperson.header": "Διαγραφή EPerson \"{{ dsoName }}\"", + "confirmation-modal.delete-eperson.info": "Είστε βέβαιοι ότι θέλετε να διαγράψετε το EPerson \"{{ dsoName }}\"", + "confirmation-modal.delete-profile.cancel": "Ακύρωση", + "confirmation-modal.delete-profile.confirm": "Διαγραφή", + "confirmation-modal.delete-profile.header": "Διαγραφή προφίλ", + "confirmation-modal.delete-profile.info": "Είστε βέβαιοι ότι θέλετε να διαγράψετε το προφίλ σας", + "confirmation-modal.export-metadata.cancel": "Ακύρωση", + "confirmation-modal.export-metadata.confirm": "Εξαγωγή", + "confirmation-modal.export-metadata.header": "Εξαγωγή μεταδεδομένων για {{ dsoName }}", + "confirmation-modal.export-metadata.info": "Είστε βέβαιοι ότι θέλετε να εξαγάγετε μεταδεδομένα για το {{ dsoName }}", + "cookies.consent.accept-all": "Αποδοχή όλων", + "cookies.consent.accept-selected": "Αποδοχή επιλεγμένων", + "cookies.consent.app.description.acknowledgement": "Απαιτείται για την αποθήκευση των επιβεβαιώσεων και των συγκατάθεσών σας", + "cookies.consent.app.description.authentication": "Απαιτείται για τη σύνδεσή σας", + "cookies.consent.app.description.google-analytics": "Μας επιτρέπει να παρακολουθούμε στατιστικά δεδομένα", + "cookies.consent.app.description.preferences": "Απαιτείται για την αποθήκευση των προτιμήσεών σας", + "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.app.title.acknowledgement": "Αναγνώριση", + "cookies.consent.app.title.authentication": "Αυθεντικοποίηση", + "cookies.consent.app.title.google-analytics": "Google Analytics", + "cookies.consent.app.title.preferences": "Προτιμήσεις", + "cookies.consent.close": "Κλείσε", + "cookies.consent.content-modal.description": "Εδώ μπορείτε να δείτε και να προσαρμόσετε τις πληροφορίες που συλλέγουμε για εσάς.", + "cookies.consent.content-modal.privacy-policy.name": "πολιτική απορρήτου", + "cookies.consent.content-modal.privacy-policy.text": "Για να μάθετε περισσότερα, διαβάστε την {Πολιτική απορρήτου} μας.", + "cookies.consent.content-modal.title": "Πληροφορίες που συλλέγουμε", + "cookies.consent.content-notice.description": "Συλλέγουμε και επεξεργαζόμαστε τα προσωπικά σας στοιχεία για τους ακόλουθους σκοπούς: Έλεγχος ταυτότητας, Προτιμήσεις, Αναγνώριση και Στατιστικά.
Για να μάθετε περισσότερα, διαβάστε την {privacyPolicy} μας.", + "cookies.consent.content-notice.description.no-privacy": "Συλλέγουμε και επεξεργαζόμαστε τα προσωπικά σας στοιχεία για τους ακόλουθους σκοπούς: Έλεγχος ταυτότητας, Προτιμήσεις, Αναγνώριση και Στατιστικά.", + "cookies.consent.content-notice.learnMore": "Προσαρμογή", + "cookies.consent.decline": "Απόρριψη", + "cookies.consent.purpose.functional": "Λειτουργικός", + "cookies.consent.purpose.statistical": "Στατιστικός", + "cookies.consent.update": "Υπήρξαν αλλαγές από την τελευταία σας επίσκεψη, ενημερώστε τη συγκατάθεσή σας.", + "curation-task.task.checklinks.label": "Ελέγξτε τους συνδέσμους στα μεταδεδομένα", + "curation-task.task.noop.label": "ΝΟΟΠ", + "curation-task.task.profileformats.label": "Προφίλ Μορφοτύπων Αρχείων", + "curation-task.task.requiredmetadata.label": "Ελέγξτε για Απαιτούμενα Μεταδεδομένα", + "curation-task.task.translate.label": "Μεταφραστής της Microsoft", + "curation-task.task.vscan.label": "Ελεγχος για ιούς", + "curation.form.handle.hint": "Συμβουλή: Εισαγάγετε [your-handle-prefix]/0 για να εκτελέσετε μια εργασία σε ολόκληρο τον ιστότοπο (μπορεί να μην υποστηρίζουν όλες οι εργασίες αυτήν τη δυνατότητα)", + "curation.form.handle.label": "Handle:", + "curation.form.submit": "Αρχή", + "curation.form.submit.error.content": "Παρουσιάστηκε σφάλμα κατά την προσπάθεια έναρξης της εργασίας επιμέλειας.", + "curation.form.submit.error.head": "Η εκτέλεση της εργασίας επιμέλειας απέτυχε", + "curation.form.submit.error.invalid-handle": "Δεν ήταν δυνατός ο προσδιορισμός Handle για αυτό το τεκμήριο", + "curation.form.submit.success.content": "Θα ανακατευθυνθείτε στην αντίστοιχη σελίδα διαδικασίας.", + "curation.form.submit.success.head": "Η εργασία επιμέλειας ξεκίνησε με επιτυχία", + "curation.form.task-select.label": "Εργο:", + "default-relationships.search.results.head": "Αποτελέσματα αναζήτησης", + "default.search.results.head": "Αποτελέσματα αναζήτησης", + "deny-request-copy.email.message": "Αγαπητέ {{ recipientName }},\nΩς απάντηση στο αίτημά σας, με λύπη σας ενημερώνω ότι δεν είναι δυνατό να σας αποσταλεί αντίγραφο των αρχείων που ζητήσατε, σχετικά με το έγγραφο: \"{{ itemUrl }}\" ({{ itemName }}), εκ των οποίων Είμαι συγγραφέας.\n\nΤις καλύτερες ευχές,\n{{ authorName }} <{{ authorEmail }}>", + "deny-request-copy.email.subject": "Ζητήστε αντίγραφο εγγράφου", + "deny-request-copy.error": "Παρουσιάστηκε σφάλμα", + "deny-request-copy.header": "Απόρριψη αιτήματος αντιγραφής εγγράφου", + "deny-request-copy.intro": "Αυτό το μήνυμα θα σταλεί στον αιτούντα του αιτήματος", + "deny-request-copy.success": "Απορρίφθηκε επιτυχώς το αίτημα τεκμηρίου", + "dso-selector.claim.item.body": "Αυτά είναι υπάρχοντα προφίλ που μπορεί να σχετίζονται με εσάς. Εάν αναγνωρίζετε τον εαυτό σας σε ένα από αυτά τα προφίλ, επιλέξτε το και στη σελίδα λεπτομερειών, ανάμεσα στις επιλογές, επιλέξτε να το διεκδικήσετε. Διαφορετικά, μπορείτε να δημιουργήσετε ένα νέο προφίλ από την αρχή χρησιμοποιώντας το παρακάτω κουμπί.", + "dso-selector.claim.item.create-from-scratch": "Δημιουργήστε ένα νέο", + "dso-selector.claim.item.head": "Συμβουλές προφίλ", + "dso-selector.claim.item.not-mine-label": "Κανένα από αυτά δεν είναι δικό μου", + "dso-selector.create.collection.head": "Νέα συλλογή", + "dso-selector.create.collection.sub-level": "Δημιουργήστε μια νέα συλλογή στο", + "dso-selector.create.community.head": "Νέα κοινότητα", + "dso-selector.create.community.sub-level": "Δημιουργήστε μια νέα κοινότητα στο", + "dso-selector.create.community.top-level": "Δημιουργήστε μια νέα κοινότητα ανώτατου επιπέδου", + "dso-selector.create.item.head": "Νέο τεκμήριο", + "dso-selector.create.item.sub-level": "Δημιουργήστε ένα νέο τεκμήριο στο", + "dso-selector.create.submission.head": "Νέα υποβολή", + "dso-selector.edit.collection.head": "Επεξεργασία συλλογής", + "dso-selector.edit.community.head": "Επεξεργασία κοινότητας", + "dso-selector.edit.item.head": "Επεξεργασία τεκμηρίου", + "dso-selector.error.title": "Παρουσιάστηκε σφάλμα κατά την αναζήτηση ενός {{ type }}", + "dso-selector.export-metadata.dspaceobject.head": "Εξαγωγή μεταδεδομένων από", + "dso-selector.no-results": "Δεν βρέθηκε {{ type }}", + "dso-selector.placeholder": "Αναζήτηση για ένα {{ type }}", + "dso-selector.select.collection.head": "Επιλέξτε μια συλλογή", + "dso-selector.set-scope.community.button": "Αναζήτηση σε όλο το DSpace", + "dso-selector.set-scope.community.head": "Επιλέξτε ένα εύρος αναζήτησης", + "dso-selector.set-scope.community.input-header": "Αναζήτηση κοινότητας ή συλλογής", + "dso.name.untitled": "Χωρίς τίτλο", + "error-page.description.401": "ανεξουσιοδότητος", + "error-page.description.403": "απαγορευμένος", + "error-page.description.404": "Η σελίδα δεν βρέθηκε", + "error-page.description.500": "Μη διαθέσιμη υπηρεσία", + "error-page.orcid.generic-error": "Παρουσιάστηκε σφάλμα κατά τη σύνδεση μέσω ORCID. Βεβαιωθείτε ότι έχετε μοιραστεί τη διεύθυνση email του λογαριασμού σας ORCID με το DSpace. Εάν το σφάλμα παραμένει, επικοινωνήστε με τον διαχειριστή", + "error.bitstream": "Σφάλμα κατά την ανάκτηση αρχείου", + "error.browse-by": "Σφάλμα κατά την ανάκτηση τεκμηρίων", + "error.collection": "Σφάλμα κατά την ανάκτηση της συλλογής", + "error.collections": "Σφάλμα κατά την ανάκτηση συλλογών", + "error.community": "Σφάλμα κατά την ανάκτηση της κοινότητας", + "error.default": "Λάθος", + "error.identifier": "Δεν βρέθηκε τεκμήριο για το αναγνωριστικό", + "error.invalid-search-query": "Το ερώτημα αναζήτησης δεν είναι έγκυρο. Ελέγξτε τις βέλτιστες πρακτικές Σύνταξη ερωτήματος Solr για περισσότερες πληροφορίες σχετικά με αυτό το σφάλμα .", + "error.item": "Σφάλμα κατά την ανάκτηση του τεκμηρίου", + "error.items": "Σφάλμα κατά την ανάκτηση τεκμηρίων", + "error.objects": "Σφάλμα κατά την ανάκτηση αντικειμένων", + "error.recent-submissions": "Σφάλμα κατά την ανάκτηση πρόσφατων υποβολών", + "error.search-results": "Σφάλμα κατά την ανάκτηση των αποτελεσμάτων αναζήτησης", + "error.sub-collections": "Σφάλμα κατά την ανάκτηση υποσυλλογών", + "error.sub-communities": "Σφάλμα κατά την ανάκτηση υποκοινοτήτων", + "error.submission.sections.init-form-error": "Παρουσιάστηκε σφάλμα κατά την προετοιμασία ενότητας, ελέγξτε τη διαμόρφωση της φόρμας εισαγωγής. Λεπτομέρειες είναι παρακάτω:

", + "error.top-level-communities": "Σφάλμα κατά την ανάκτηση κοινοτήτων ανώτατου επιπέδου", + "error.validation.NotValidEmail": "Αυτό το e-mail δεν είναι έγκυρο email", + "error.validation.emailTaken": "Αυτό το e-mail έχει ήδη ληφθεί", + "error.validation.filerequired": "Η αποστολή του αρχείου είναι υποχρεωτική", + "error.validation.groupExists": "Αυτή η ομάδα υπάρχει ήδη", + "error.validation.license.notgranted": "Πρέπει να χορηγήσετε αυτήν την άδεια για να ολοκληρώσετε την υποβολή σας. Εάν δεν μπορείτε να εκχωρήσετε αυτήν την άδεια αυτήν τη στιγμή, μπορείτε να αποθηκεύσετε την εργασία σας και να επιστρέψετε αργότερα ή να καταργήσετε την υποβολή.", + "error.validation.pattern": "Αυτή η είσοδος περιορίζεται από το τρέχον μοτίβο: {{ pattern }}.", + "error.validation.required": "Αυτό το πεδίο είναι υποχρεωτικό", + "feed.description": "Συνδικάτο τροφοδοσία", + "file-section.error.header": "Σφάλμα κατά τη λήψη αρχείων για αυτό το τεκμήριο", + "footer.copyright": "πνευματικά δικαιώματα © 2002-{{ year }}", + "footer.link.cookies": "Ρυθμίσεις cookie", + "footer.link.dspace": "Λογισμικό DSpace", + "footer.link.end-user-agreement": "Συμφωνία Τελικού Χρήστη", + "footer.link.feedback": "Στείλετε τα σχόλιά σας", + "footer.link.lyrasis": "LYRASIS", + "footer.link.privacy-policy": "Πολιτική απορρήτου", + "forgot-email.form.email": "Διεύθυνση ηλεκτρονικού ταχυδρομείου *", + "forgot-email.form.email.error.pattern": "Συμπληρώστε μια έγκυρη διεύθυνση email", + "forgot-email.form.email.error.required": "Συμπληρώστε μια διεύθυνση email", + "forgot-email.form.email.hint": "Θα σταλεί ένα email σε αυτή τη διεύθυνση με περαιτέρω οδηγίες.", + "forgot-email.form.error.content": "Παρουσιάστηκε σφάλμα κατά την προσπάθεια επαναφοράς του κωδικού πρόσβασης για τον λογαριασμό που σχετίζεται με την ακόλουθη διεύθυνση ηλεκτρονικού ταχυδρομείου: {{ email }}", + "forgot-email.form.error.head": "Σφάλμα κατά την προσπάθεια επαναφοράς του κωδικού πρόσβασης", + "forgot-email.form.header": "Ξεχάσατε τον κωδικό", + "forgot-email.form.info": "Εισαγάγετε τη διεύθυνση email που σχετίζεται με τον λογαριασμό.", + "forgot-email.form.submit": "Επαναφέρετε τον κωδικό πρόσβασης", + "forgot-email.form.success.content": "Έχει σταλεί ένα μήνυμα ηλεκτρονικού ταχυδρομείου στη διεύθυνση {{ email }} που περιέχει μια ειδική διεύθυνση URL και περαιτέρω οδηγίες.", + "forgot-email.form.success.head": "Στάλθηκε email επαναφοράς κωδικού πρόσβασης", + "forgot-password.form.card.security": "Ασφάλεια", + "forgot-password.form.error.empty-password": "Εισαγάγετε έναν κωδικό πρόσβασης στο παρακάτω πλαίσιο.", + "forgot-password.form.error.matching-passwords": "Οι κωδικοί δεν ταιριάζουν.", + "forgot-password.form.error.password-length": "Ο κωδικός πρόσβασης πρέπει να αποτελείται από τουλάχιστον 6 χαρακτήρες.", + "forgot-password.form.head": "Ξεχάσατε τον κωδικό", + "forgot-password.form.identification.email": "Διεύθυνση ηλεκτρονικού ταχυδρομείου:", + "forgot-password.form.identification.header": "Αναγνωρίζω", + "forgot-password.form.info": "Εισαγάγετε έναν νέο κωδικό πρόσβασης στο παρακάτω πλαίσιο και επιβεβαιώστε τον πληκτρολογώντας τον ξανά στο δεύτερο πλαίσιο. Θα πρέπει να αποτελείται από τουλάχιστον έξι χαρακτήρες.", + "forgot-password.form.label.password": "Κωδικός πρόσβασης", + "forgot-password.form.label.passwordrepeat": "Πληκτρολογήστε ξανά για επιβεβαίωση", + "forgot-password.form.notification.error.title": "Σφάλμα κατά την προσπάθεια υποβολής νέου κωδικού πρόσβασης", + "forgot-password.form.notification.success.content": "Η επαναφορά του κωδικού πρόσβασης ήταν επιτυχής. Έχετε συνδεθεί ως ο χρήστης που δημιουργήθηκε.", + "forgot-password.form.notification.success.title": "Η επαναφορά του κωδικού πρόσβασης ολοκληρώθηκε", + "forgot-password.form.submit": "Υποβολή κωδικού πρόσβασης", + "forgot-password.title": "Ξεχάσατε τον κωδικό", + "form.add": "Πρόσθεσε περισσότερα", + "form.add-help": "Κάντε κλικ εδώ για να προσθέσετε την τρέχουσα καταχώρηση και για να προσθέσετε μια άλλη", + "form.cancel": "Ακύρωση", + "form.clear": "Καθαρισμός", + "form.clear-help": "Κάντε κλικ εδώ για να αφαιρέσετε την επιλεγμένη τιμή", + "form.discard": "Απόρριψη", + "form.drag": "Σέρνω", + "form.edit": "Επεξεργασία", + "form.edit-help": "Κάντε κλικ εδώ για να επεξεργαστείτε την επιλεγμένη τιμή", + "form.first-name": "Ονομα", + "form.group-collapse": "Σύμπτηξη", + "form.group-collapse-help": "Κάντε κλικ εδώ για σύμπτυξη", + "form.group-expand": "Επεκτείνουν", + "form.group-expand-help": "Κάντε κλικ εδώ για επέκταση και προσθήκη περισσότερων τεκμηρίων", + "form.last-name": "Επίθετο", + "form.loading": "Φόρτωση...", + "form.lookup": "Αναζήτηση", + "form.lookup-help": "Κάντε κλικ εδώ για να αναζητήσετε μια υπάρχουσα σχέση", + "form.no-results": "Δεν βρέθηκαν αποτελέσματα", + "form.no-value": "Δεν έχει καταχωρηθεί τιμή", + "form.remove": "Αφαίρεση", + "form.repeatable.sort.tip": "Σύρετε το τεκμήριο στη νέα θέση", + "form.save": "Αποθήκευση", + "form.save-help": "Αποθήκευσε τις αλλαγές", + "form.search": "Αναζήτηση", + "form.search-help": "Κάντε κλικ εδώ για να αναζητήσετε μια υπάρχουσα αλληλογραφία", + "form.submit": "Αποθήκευση", + "grant-deny-request-copy.deny": "Μη αποστολή αντιγράφου", + "grant-deny-request-copy.email.back": "Επιστροφή", + "grant-deny-request-copy.email.message": "Μήνυμα", + "grant-deny-request-copy.email.message.empty": "Παρακαλώ εισάγετε ένα μήνυμα", + "grant-deny-request-copy.email.permissions.info": "Μπορείτε να χρησιμοποιήσετε αυτήν την ευκαιρία για να επανεξετάσετε τους περιορισμούς πρόσβασης στο έγγραφο, για να αποφύγετε να απαντήσετε σε αυτά τα αιτήματα. Εάν θέλετε να ζητήσετε από τους διαχειριστές του αποθετηρίου να καταργήσουν αυτούς τους περιορισμούς, επιλέξτε το παρακάτω πλαίσιο.", + "grant-deny-request-copy.email.permissions.label": "Αλλαγή σε ανοιχτή πρόσβαση", + "grant-deny-request-copy.email.send": "Στείλετε", + "grant-deny-request-copy.email.subject": "Θέμα", + "grant-deny-request-copy.email.subject.empty": "Εισαγάγετε ένα θέμα", + "grant-deny-request-copy.grant": "Αποστολή αντιγράφου", + "grant-deny-request-copy.header": "Αίτημα αντιγραφής εγγράφου", + "grant-deny-request-copy.home-page": "Μετάβαση στην αρχική σελίδα", + "grant-deny-request-copy.intro1": "Εάν είστε ένας από τους συντάκτες του εγγράφου {{ name }}, χρησιμοποιήστε μία από τις παρακάτω επιλογές για να απαντήσετε στο αίτημα του χρήστη.", + "grant-deny-request-copy.intro2": "Αφού επιλέξετε μια επιλογή, θα σας παρουσιαστεί μια προτεινόμενη απάντηση μέσω email την οποία μπορείτε να επεξεργαστείτε.", + "grant-deny-request-copy.processed": "Αυτό το αίτημα έχει ήδη διεκπεραιωθεί. Μπορείτε να χρησιμοποιήσετε το παρακάτω κουμπί για να επιστρέψετε στην αρχική σελίδα.", + "grant-request-copy.email.message": "Αγαπητέ {{ recipientName }},\nΩς απάντηση στο αίτημά σας, έχω τη χαρά να σας στείλω επισυναπτόμενο αντίγραφο του αρχείου(ων) που αφορά το έγγραφο: \"{{ itemUrl }}\" ({{ itemName }}), του οποίου είμαι συντάκτης.\n\nΤις καλύτερες ευχές,\n{{ authorName }} <{{ authorEmail }}>", + "grant-request-copy.email.subject": "Ζητήστε αντίγραφο εγγράφου", + "grant-request-copy.error": "Παρουσιάστηκε σφάλμα", + "grant-request-copy.header": "Αίτημα αντιγραφής παραχώρησης εγγράφου", + "grant-request-copy.intro": "Αυτό το μήνυμα θα σταλεί στον αιτούντα του αιτήματος. Το(τα) έγγραφο(α) που ζητήθηκαν θα επισυναφθούν.", + "grant-request-copy.success": "Το αίτημα τεκμηρίου εγκρίθηκε με επιτυχία", + "health-page.error.msg": "Η υπηρεσία ελέγχου υγείας δεν είναι διαθέσιμη προσωρινά", + "health-page.heading": "Υγεία", + "health-page.info-tab": "Πληροφορίες", + "health-page.property.status": "Κωδικός κατάστασης", + "health-page.section-info.app.title": "Εφαρμογή Backend", + "health-page.section-info.java.title": "Java", + "health-page.section.db.title": "Βάση δεδομένων", + "health-page.section.geoIp.title": "GeoIp", + "health-page.section.no-issues": "Δεν εντοπίστηκαν προβλήματα", + "health-page.section.solrAuthorityCore.title": "Solr: πυρήνας authority", + "health-page.section.solrOaiCore.title": "Solr: πυρήνας oai", + "health-page.section.solrSearchCore.title": "Solr: πυρήνας search", + "health-page.section.solrStatisticsCore.title": "Solr: πυρήνας statistics", + "health-page.status": "Κατάσταση", + "health-page.status-tab": "Κατάσταση", + "health-page.status.error.info": "Εντοπίστηκαν προβλήματα", + "health-page.status.ok.info": "Λειτουργικό", + "health-page.status.warning.info": "Εντοπίστηκαν πιθανά προβλήματα", + "health-page.title": "Υγεία", + "health.breadcrumbs": "Υγεία", + "home.breadcrumbs": "Αρχική", + "home.description": "", + "home.search-form.placeholder": "Αναζήτηση στο αποθετήριο...", + "home.title": "Αρχική", + "home.top-level-communities.head": "Κοινότητες στο DSpace", + "home.top-level-communities.help": "Επιλέξτε μια κοινότητα για να περιηγηθείτε στις συλλογές της.", + "idle-modal.extend-session": "Επέκταση συνεδρίας", + "idle-modal.header": "Η συνεδρία θα λήξει σύντομα", + "idle-modal.info": "Για λόγους ασφαλείας, οι περίοδοι σύνδεσης χρήστη λήγουν μετά από {{ timeToExpire }} λεπτά αδράνειας. Η συνεδρία σας θα λήξει σύντομα. Θέλετε να το επεκτείνετε ή να αποσυνδεθείτε;", + "idle-modal.log-out": "Αποσύνδεση", + "iiif.listelement.badge": "Μέσα εικόνας", + "iiif.page.description": "Περιγραφή:", + "iiif.page.doi": "Μόνιμος σύνδεσμος:", + "iiif.page.issue": "Θέμα:", + "iiif.page.titleprefix": "Εικόνα:", + "iiifsearchable.listelement.badge": "Μέσα εγγράφων", + "iiifsearchable.page.description": "Περιγραφή:", + "iiifsearchable.page.doi": "Μόνιμος σύνδεσμος:", + "iiifsearchable.page.issue": "Θέμα:", + "iiifsearchable.page.titleprefix": "Εγγραφο:", + "iiifviewer.fullscreen.notice": "Χρησιμοποιήστε πλήρη οθόνη για καλύτερη προβολή.", + "info.end-user-agreement.accept": "Έχω διαβάσει και συμφωνώ με τη Συμφωνία Τελικού Χρήστη", + "info.end-user-agreement.accept.error": "Παρουσιάστηκε σφάλμα κατά την αποδοχή της Συμφωνίας Τελικού Χρήστη", + "info.end-user-agreement.accept.success": "Η συμφωνία τελικού χρήστη ενημερώθηκε με επιτυχία", + "info.end-user-agreement.breadcrumbs": "Συμφωνία Τελικού Χρήστη", + "info.end-user-agreement.buttons.cancel": "Ακύρωση", + "info.end-user-agreement.buttons.save": "Αποθήκευση", + "info.end-user-agreement.head": "Συμφωνία Τελικού Χρήστη", + "info.end-user-agreement.title": "Συμφωνία Τελικού Χρήστη", + "info.feedback.breadcrumbs": "Ανατροφοδότηση", + "info.feedback.comments": "Σχόλια", + "info.feedback.create.success": "Τα σχόλια εστάλησαν με επιτυχία!", + "info.feedback.email-label": "Το ηλεκτρονικό σου ταχυδρομείο", + "info.feedback.email_help": "Αυτή η διεύθυνση θα χρησιμοποιηθεί για την παρακολούθηση των σχολίων σας.", + "info.feedback.error.email.required": "Μια έγκυρη διεύθυνση email απαιτείται", + "info.feedback.error.message.required": "Απαιτείται σχόλιο", + "info.feedback.head": "Ανατροφοδότηση", + "info.feedback.info": "Ευχαριστούμε που μοιραστήκατε τα σχόλιά σας σχετικά με το σύστημα DSpace. Τα σχόλιά σας εκτιμώνται!", + "info.feedback.page-label": "Σελίδα", + "info.feedback.page_help": "Αυτή η σελίδα σχετίζεται με τα σχόλιά σας", + "info.feedback.send": "Στείλετε τα σχόλιά σας", + "info.feedback.title": "Επικοινωνία", + "info.privacy.breadcrumbs": "Δήλωση προστασίας προσωπικών δεδομένων", + "info.privacy.head": "Δήλωση προστασίας προσωπικών δεδομένων", + "info.privacy.title": "Δήλωση προστασίας προσωπικών δεδομένων", + "item.alerts.private": "Αυτό το τεκμήριο δεν μπορεί να ανακαλυφθεί", + "item.alerts.withdrawn": "Αυτό το τεκμήριο έχει αποσυρθεί", + "item.badge.private": "Μη ανακαλυπτόμενο", + "item.badge.withdrawn": "Αποτραβηγμένος", + "item.bitstreams.upload.bundle": "Φάκελος/Πακέτο", + "item.bitstreams.upload.bundle.new": "Δημιουργία φακέλου/πακέτου", + "item.bitstreams.upload.bundle.placeholder": "Επιλέξτε ένα φάκελο/πακέτο ή εισαγάγετε νέο όνομα φακέλου/πακέτου", + "item.bitstreams.upload.bundles.empty": "Αυτό το τεκμήριο δεν περιέχει φακέλους/πακέτα για μεταφόρτωση αρχείων.", + "item.bitstreams.upload.cancel": "Ακύρωση", + "item.bitstreams.upload.drop-message": "Σύρετε ένα αρχείο για μεταφόρτωση", + "item.bitstreams.upload.item": "Τεκμήριο:", + "item.bitstreams.upload.notifications.bundle.created.content": "Ο νέος φάκελος/πακέτο δημιουργήθηκε με επιτυχία.", + "item.bitstreams.upload.notifications.bundle.created.title": "Δημιουργηθέν πακέτο", + "item.bitstreams.upload.notifications.upload.failed": "Η μεταφόρτωση απέτυχε. Επαληθεύστε το περιεχόμενο πριν προσπαθήσετε ξανά.", + "item.bitstreams.upload.title": "Μεταφόρτωση αρχείου", + "item.edit.authorizations.heading": "Με αυτό το πρόγραμμα επεξεργασίας μπορείτε να προβάλετε και να τροποποιήσετε τις πολιτικές μιας εγγραφής, καθώς και να τροποποιήσετε τις πολιτικές για μεμονωμένα τεκμήρια εγγραφών: φάκελους/πακέτα και αρχεία. Εν συντομία, μια εγγραφή είναι ένα κοντέινερ με φακέλους/πακέτα και οι φάκελοι/πακέτα είναι συλλέκτες αρχείων. Οι φάκελοι/πακέτα έχουν συνήθως πολιτικές ADD/REMOVE/READ/WRITE, ενώ τα αρχεία έχουν μόνο πολιτικές READ/WRITE.", + "item.edit.authorizations.title": "Επεξεργασία των πολιτικών του τεκμηρίου", + "item.edit.bitstreams.bundle.displaying": "Αυτήν τη στιγμή εμφανίζονται {{ amount }} αρχεία από {{ total }}.", + "item.edit.bitstreams.bundle.edit.buttons.upload": "Μεταφόρτωση", + "item.edit.bitstreams.bundle.load.all": "Φόρτωση όλων ({{ total }})", + "item.edit.bitstreams.bundle.load.more": "Φόρτωσε περισσότερα", + "item.edit.bitstreams.bundle.name": "Πακέτο/Φάκελος: {{ name }}", + "item.edit.bitstreams.discard-button": "Απορρίπτω", + "item.edit.bitstreams.edit.buttons.download": "Κατεβάστε", + "item.edit.bitstreams.edit.buttons.drag": "Σύρσιμο", + "item.edit.bitstreams.edit.buttons.edit": "Επεξεργασία", + "item.edit.bitstreams.edit.buttons.remove": "Αφαίρεση", + "item.edit.bitstreams.edit.buttons.undo": "Αναίρεση αλλαγών", + "item.edit.bitstreams.empty": "Αυτό το τεκμήριο δεν περιέχει αρχεία. Κάντε κλικ στο κουμπί αποστολής για να δημιουργήσετε ένα.", + "item.edit.bitstreams.headers.actions": "Ενέργειες", + "item.edit.bitstreams.headers.bundle": "Φάκελος/Πακέτο", + "item.edit.bitstreams.headers.description": "Περιγραφή", + "item.edit.bitstreams.headers.format": "Μορφότυπο", + "item.edit.bitstreams.headers.name": "Ονομα", + "item.edit.bitstreams.notifications.discarded.content": "Οι αλλαγές σας απορρίφθηκαν. Για να επαναφέρετε τις αλλαγές σας, κάντε κλικ στο κουμπί «Αναίρεση».", + "item.edit.bitstreams.notifications.discarded.title": "Οι αλλαγές απορρίφθηκαν", + "item.edit.bitstreams.notifications.move.failed.title": "Σφάλμα μετακίνησης αρχείων", + "item.edit.bitstreams.notifications.move.saved.content": "Οι αλλαγές μετακίνησής σας στα αρχεία και στους φακέλους/πακέτα αυτού του τεκμηρίου έχουν αποθηκευτεί.", + "item.edit.bitstreams.notifications.move.saved.title": "Η μετακίνηση αλλαγών αποθηκεύτηκε", + "item.edit.bitstreams.notifications.outdated.content": "Το τεκμήριο στο οποία εργάζεστε αυτήν τη στιγμή έχει αλλάξει από άλλον χρήστη. Οι τρέχουσες αλλαγές σας απορρίπτονται για την αποφυγή αντικρουόμενων αλλαγών", + "item.edit.bitstreams.notifications.outdated.title": "Οι αλλαγές είναι ξεπερασμένες (outdated)", + "item.edit.bitstreams.notifications.remove.failed.title": "Σφάλμα κατά τη διαγραφή bitstream", + "item.edit.bitstreams.notifications.remove.saved.content": "Οι αλλαγές κατάργησής σας στα αρχεία αυτού του τεκμηρίου έχουν αποθηκευτεί.", + "item.edit.bitstreams.notifications.remove.saved.title": "Οι αλλαγές κατάργησης αποθηκεύτηκαν", + "item.edit.bitstreams.reinstate-button": "Αναίρεση", + "item.edit.bitstreams.save-button": "Αποθήκευση", + "item.edit.bitstreams.upload-button": "Μεταφόρτωση", + "item.edit.breadcrumbs": "Επεξεργασία τεκμηρίου", + "item.edit.delete.cancel": "Ακύρωση", + "item.edit.delete.confirm": "Διαγραφή", + "item.edit.delete.description": "Είστε βέβαιοι ότι αυτό το τεκμήριο πρέπει να διαγραφεί πλήρως; Προσοχή: Η ενέργεια αυτή είναι μη αντιστρέψιμη.", + "item.edit.delete.error": "Παρουσιάστηκε σφάλμα κατά τη διαγραφή του τεκμηρίου", + "item.edit.delete.header": "Διαγραφή τεκμηρίου: {{ id }}", + "item.edit.delete.success": "Το τεκμήριο έχει διαγραφεί", + "item.edit.head": "Επεξεργασία τεκμηρίου", + "item.edit.item-mapper.buttons.add": "Αντιστοιχίστε το τεκμήριο σε επιλεγμένες συλλογές", + "item.edit.item-mapper.buttons.remove": "Καταργήστε την αντιστοίχιση του τεκμηρίου σε επιλεγμένες συλλογές", + "item.edit.item-mapper.cancel": "Ακύρωση", + "item.edit.item-mapper.description": "Αυτό είναι το εργαλείο αντιστοίχισης τεκμηρίων που επιτρέπει στους διαχειριστές να αντιστοιχίσουν αυτό το τεκμήριο σε άλλες συλλογές. Μπορείτε να αναζητήσετε συλλογές και να τις αντιστοιχίσετε ή να περιηγηθείτε στη λίστα των συλλογών στις οποίες έχει αντιστοιχιστεί η εγγραφή αυτήν τη στιγμή.", + "item.edit.item-mapper.head": "Αντιστοίχιση τεκμηρίων - Αντιστοίχιση τεκμηρίων σε συλλογές", + "item.edit.item-mapper.item": "Τεκμήριο: \"{{name}}\"", + "item.edit.item-mapper.no-search": "Εισαγάγετε ένα ερώτημα για αναζήτηση", + "item.edit.item-mapper.notifications.add.error.content": "Παρουσιάστηκαν σφάλματα για την αντιστοίχιση του τεκμηρίου σε συλλογές {{amount}}.", + "item.edit.item-mapper.notifications.add.error.head": "Σφάλματα αντιστοίχησης", + "item.edit.item-mapper.notifications.add.success.content": "Αντιστοιχίστηκε με επιτυχία το τεκμήριο σε {{amount}} συλλογές.", + "item.edit.item-mapper.notifications.add.success.head": "Η αντιστοίχηση ολοκληρώθηκε", + "item.edit.item-mapper.notifications.remove.error.content": "Παρουσιάστηκαν σφάλματα κατά την κατάργηση της αντιστοίχισης σε {{amount}} συλλογές.", + "item.edit.item-mapper.notifications.remove.error.head": "Αφαίρεση σφαλμάτων αντιστοίχησης", + "item.edit.item-mapper.notifications.remove.success.content": "Καταργήθηκε με επιτυχία η αντιστοίχιση του τεκμηρίου σε συλλογές {{amount}}.", + "item.edit.item-mapper.notifications.remove.success.head": "Ολοκληρώθηκε η αφαίρεση της αντιστοίχησης", + "item.edit.item-mapper.search-form.placeholder": "Αναζήτηση συλλογών...", + "item.edit.item-mapper.tabs.browse": "Περιηγηθείτε στις αντιστοιχισμένες συλλογές", + "item.edit.item-mapper.tabs.map": "Αντιστοίχιση νέων συλλογών", + "item.edit.metadata.add-button": "Προσθήκη", + "item.edit.metadata.discard-button": "Απόρριψη", + "item.edit.metadata.edit.buttons.edit": "Επεξεργασία", + "item.edit.metadata.edit.buttons.remove": "Αφαίρεση", + "item.edit.metadata.edit.buttons.undo": "Αναίρεση αλλαγών", + "item.edit.metadata.edit.buttons.unedit": "Σταματήστε την επεξεργασία", + "item.edit.metadata.empty": "Το τεκμήριο προς το παρόν δεν περιέχει μεταδεδομένα. Κάντε κλικ στην Προσθήκη για να αρχίσετε να προσθέτετε μια τιμή μεταδεδομένων.", + "item.edit.metadata.headers.edit": "Επεξεργασία", + "item.edit.metadata.headers.field": "Πεδίο", + "item.edit.metadata.headers.language": "Γλώσσα", + "item.edit.metadata.headers.value": "Τιμή", + "item.edit.metadata.metadatafield.invalid": "Επιλέξτε ένα έγκυρο πεδίο μεταδεδομένων", + "item.edit.metadata.notifications.discarded.content": "Οι αλλαγές σας απορρίφθηκαν. Για να επαναφέρετε τις αλλαγές σας, κάντε κλικ στο κουμπί «Αναίρεση».", + "item.edit.metadata.notifications.discarded.title": "Οι αλλαγές απορρίφθηκαν", + "item.edit.metadata.notifications.error.title": "Παρουσιάστηκε σφάλμα", + "item.edit.metadata.notifications.invalid.content": "Οι αλλαγές σας δεν αποθηκεύτηκαν. Βεβαιωθείτε ότι όλα τα πεδία είναι έγκυρα προτού αποθηκεύσετε.", + "item.edit.metadata.notifications.invalid.title": "Μη έγκυρα μεταδεδομένα", + "item.edit.metadata.notifications.outdated.content": "Το τεκμήριο στο οποίο εργάζεστε αυτήν τη στιγμή έχει αλλάξει από άλλον χρήστη. Οι τρέχουσες αλλαγές σας απορρίπτονται για την αποφυγή διενέξεων", + "item.edit.metadata.notifications.outdated.title": "Τροποποιήθηκε (outdated)", + "item.edit.metadata.notifications.saved.content": "Οι αλλαγές σας στα μεταδεδομένα αυτού του τεκμηρίου αποθηκεύτηκαν.", + "item.edit.metadata.notifications.saved.title": "Τα μεταδεδομένα αποθηκεύτηκαν", + "item.edit.metadata.reinstate-button": "Επαναφορά", + "item.edit.metadata.save-button": "Αποθήκευση", + "item.edit.modify.overview.field": "Πεδίο", + "item.edit.modify.overview.language": "Γλώσσα", + "item.edit.modify.overview.value": "Τιμή", + "item.edit.move.cancel": "Επιστροφή", + "item.edit.move.description": "Επιλέξτε τη συλλογή στην οποία θέλετε να μετακινήσετε αυτό το τεκμήριο. Για να περιορίσετε τη λίστα των εμφανιζόμενων συλλογών, μπορείτε να εισαγάγετε ένα ερώτημα αναζήτησης στο πλαίσιο.", + "item.edit.move.discard-button": "Απόρριψη", + "item.edit.move.error": "Παρουσιάστηκε σφάλμα κατά την προσπάθεια μετακίνησης του τεκμηρίου", + "item.edit.move.head": "Μετακίνηση τεκμηρίου: {{id}}", + "item.edit.move.inheritpolicies.checkbox": "Inherited πολιτικές", + "item.edit.move.inheritpolicies.description": "Μεταβιβάστε τις προεπιλεγμένες πολιτικές της συλλογής προορισμού", + "item.edit.move.move": "Μετακίνηση", + "item.edit.move.processing": "Μετακίνηση...", + "item.edit.move.save-button": "Αποθήκευση", + "item.edit.move.search.placeholder": "Εισαγάγετε ένα ερώτημα αναζήτησης για να ψάξετε συλλογές", + "item.edit.move.success": "Το τεκμήριο έχει μετακινηθεί με επιτυχία", + "item.edit.move.title": "Μετακίνηση τεκμηρίου", + "item.edit.private.cancel": "Ακύρωση", + "item.edit.private.confirm": "Κάντε το ιδιωτικό", + "item.edit.private.description": "Είστε βέβαιοι ότι αυτό το τεκμήριο πρέπει να είναι μη ανακαλύψιμο στο αποθετήριο;", + "item.edit.private.error": "Παρουσιάστηκε σφάλμα κατά τη μετατροπή του τεκμηρίου σε ιδιωτικό", + "item.edit.private.header": "Κάντε το τεκμήριο ιδιωτικό: {{ id }}", + "item.edit.private.success": "Το τεκμήριο δεν μπορεί πλέον να ανακαλυφθεί", + "item.edit.public.cancel": "Ακύρωση", + "item.edit.public.confirm": "Κάντε το ανακαλύψιμο", + "item.edit.public.description": "Είστε βέβαιοι ότι αυτό το τεκμήριο πρέπει να γίνει δημόσιο στο αρχείο;", + "item.edit.public.error": "Παρουσιάστηκε σφάλμα κατά την μετατροπή του τεκμηρίου σε δημόσιο", + "item.edit.public.header": "Κάντε το τεκμήριο δημόσιο: {{ id }}", + "item.edit.public.success": "Το τεκμήριο είναι πλέον δημόσιο", + "item.edit.reinstate.cancel": "Ακύρωση", + "item.edit.reinstate.confirm": "Επαναφορά", + "item.edit.reinstate.description": "Είστε βέβαιοι ότι αυτό το τεκμήριο πρέπει να επαναφερθεί στο αρχείο;", + "item.edit.reinstate.error": "Παρουσιάστηκε σφάλμα κατά την επαναφορά του τεκμηρίου", + "item.edit.reinstate.header": "Επαναφορά τεκμηρίου: {{ id }}", + "item.edit.reinstate.success": "Το τεκμήριο επαναφέρθηκε με επιτυχία", + "item.edit.relationships.discard-button": "Απόρριψη", + "item.edit.relationships.edit.buttons.add": "Προσθήκη", + "item.edit.relationships.edit.buttons.remove": "Αφαίρεση", + "item.edit.relationships.edit.buttons.undo": "Αναίρεση αλλαγών", + "item.edit.relationships.no-entity-type": "Προσθέστε μεταδεδομένα 'dspace.entity.type' για να ενεργοποιήσετε τις σχέσεις για αυτό το τεκμήριο", + "item.edit.relationships.no-relationships": "Χωρίς σχέσεις", + "item.edit.relationships.notifications.discarded.content": "Οι αλλαγές σας απορρίφθηκαν. Για να επαναφέρετε τις αλλαγές σας, κάντε κλικ στο κουμπί «Αναίρεση».", + "item.edit.relationships.notifications.discarded.title": "Οι αλλαγές απορρίφθηκαν", + "item.edit.relationships.notifications.failed.title": "Σφάλμα επεξεργασίας σχέσεων", + "item.edit.relationships.notifications.outdated.content": "Το τεκμήριο στο οποίο εργάζεστε αυτήν τη στιγμή έχει αλλάξει από άλλον χρήστη. Οι τρέχουσες αλλαγές σας απορρίπτονται για την αποφυγή διενέξεων", + "item.edit.relationships.notifications.outdated.title": "Οι αλλαγές είναι ξεπερασμένες (outdated)", + "item.edit.relationships.notifications.saved.content": "Οι αλλαγές σας στις σχέσεις αυτού του τεκμηρίου αποθηκεύτηκαν.", + "item.edit.relationships.notifications.saved.title": "Οι σχέσεις σώθηκαν", + "item.edit.relationships.reinstate-button": "Αναίρεση", + "item.edit.relationships.save-button": "Αποθήκευση", + "item.edit.return": "Επιστροφή", + "item.edit.tabs.bitstreams.head": "`αρχεία", + "item.edit.tabs.bitstreams.title": "Επεξεργασία τεκμηρίου - Αρχε'ια", + "item.edit.tabs.curate.head": "Εργασίες Επιμέλειας", + "item.edit.tabs.curate.title": "Επεξεργασία - Επιμέλεια", + "item.edit.tabs.disabled.tooltip": "Δεν έχετε εξουσιοδότηση πρόσβασης σε αυτήν την καρτέλα", + "item.edit.tabs.item-mapper.title": "Επεξεργασία τεκμηρίου - αντιστοίχηση συλλογής", + "item.edit.tabs.mapper.head": "αντιστοίχηση συλλογής", + "item.edit.tabs.metadata.head": "Metadata", + "item.edit.tabs.metadata.title": "Επεξεργασία τεκμηρίου - Μεταδεδομένα", + "item.edit.tabs.relationships.head": "Σχέσεις", + "item.edit.tabs.relationships.title": "Επεξεργασία τεκμηρίου - Σχέσεις", + "item.edit.tabs.status.buttons.authorizations.button": "Εξουσιοδοτήσεις...", + "item.edit.tabs.status.buttons.authorizations.label": "Επεξεργαστείτε τις πολιτικές εξουσιοδότησης του τεκμηρίου", + "item.edit.tabs.status.buttons.delete.button": "Οριστική διαγραφή", + "item.edit.tabs.status.buttons.delete.label": "Διαγράψτε εντελώς το τεκμήριο", + "item.edit.tabs.status.buttons.mappedCollections.button": "Αντιστοιχισμένες συλλογές", + "item.edit.tabs.status.buttons.mappedCollections.label": "Διαχείριση αντιστοιχισμένων συλλογών", + "item.edit.tabs.status.buttons.move.button": "Κίνηση...", + "item.edit.tabs.status.buttons.move.label": "Μετακίνηση τεκμηρίου σε άλλη συλλογή", + "item.edit.tabs.status.buttons.private.button": "Κάντε το ιδιωτικό...", + "item.edit.tabs.status.buttons.private.label": "Κάντε το τεκμήριο ιδιωτικό", + "item.edit.tabs.status.buttons.public.button": "Κάντε το δημόσειο...", + "item.edit.tabs.status.buttons.public.label": "Κάντε το τεκμήριο δημόσιο", + "item.edit.tabs.status.buttons.reinstate.button": "Επανφορά...", + "item.edit.tabs.status.buttons.reinstate.label": "Επαναφέρετε το τεκμήριο στο αποθετήριο", + "item.edit.tabs.status.buttons.unauthorized": "Δεν είστε εξουσιοδοτημένοι να εκτελέσετε αυτήν την ενέργεια", + "item.edit.tabs.status.buttons.withdraw.button": "Απόσυρση...", + "item.edit.tabs.status.buttons.withdraw.label": "Αποσύρετε το τεκμήριο από το αποθετήριο", + "item.edit.tabs.status.description": "Καλώς ήρθατε στη σελίδα διαχείρισης αντικειμένων. Από εδώ μπορείτε να αποσύρετε, να επαναφέρετε, να μετακινήσετε ή να διαγράψετε το τεκμήριο. Μπορείτε επίσης να ενημερώσετε ή να προσθέσετε νέα μεταδεδομένα / αρχεία στις άλλες καρτέλες.", + "item.edit.tabs.status.head": "Κατάσταση", + "item.edit.tabs.status.labels.handle": "Handle", + "item.edit.tabs.status.labels.id": "Εσωτερικό αναγνωριστικό τεκμηρίου", + "item.edit.tabs.status.labels.itemPage": "Σελίδα αντικειμένου", + "item.edit.tabs.status.labels.lastModified": "Τελευταία τροποποίηση", + "item.edit.tabs.status.title": "τεκμήριο Επεξεργασία - Κατάσταση", + "item.edit.tabs.versionhistory.head": "Ιστορικό έκδοσης", + "item.edit.tabs.versionhistory.title": "Επεξεργασία τεκμηρίου - Ιστορικό εκδόσεων", + "item.edit.tabs.versionhistory.under-construction": "Η επεξεργασία ή η προσθήκη νέων εκδόσεων δεν είναι ακόμη δυνατή σε αυτήν τη διεπαφή χρήστη.", + "item.edit.tabs.view.head": "Προβολή αντικειμένου", + "item.edit.tabs.view.title": "τεκμήριο Επεξεργασία - Προβολή", + "item.edit.withdraw.cancel": "Ακύρωση", + "item.edit.withdraw.confirm": "Αποσύρω", + "item.edit.withdraw.description": "Είστε βέβαιοι ότι αυτό το τεκμήριο πρέπει να αποσυρθεί από το αρχείο;", + "item.edit.withdraw.error": "Παρουσιάστηκε σφάλμα κατά την απόσυρση του τεκμηρίου", + "item.edit.withdraw.header": "Ανάληψη τεκμηρίου: {{ id }}", + "item.edit.withdraw.success": "Το τεκμήριο αποσύρθηκε με επιτυχία", + "item.listelement.badge": "Τεκμήριο", + "item.orcid.return": "Επιστροφή", + "item.page.abstract": "Περίληψη", + "item.page.author": "Συγγραφείς", + "item.page.bitstreams.collapse": "Σύμπτηξη", + "item.page.bitstreams.view-more": "Δείτε περισσότερα", + "item.page.citation": "Παραπομπή", + "item.page.claim.button": "Απαίτηση", + "item.page.claim.tooltip": "Διεκδικήστε αυτό το τεκμήριο ως προφίλ", + "item.page.collections": "Συλλογές", + "item.page.collections.load-more": "Φόρτωσε περισσότερα", + "item.page.collections.loading": "Φόρτωση...", + "item.page.date": "Ημερομηνία", + "item.page.description": "Περιγραφή", + "item.page.edit": "Επεξεργαστείτε αυτό το τεκμήριο", + "item.page.files": "Αρχεία", + "item.page.filesection.description": "Περιγραφή:", + "item.page.filesection.download": "Κατεβάστε", + "item.page.filesection.format": "Μορφότυπο:", + "item.page.filesection.license.bundle": "Φάκελος/Πακέτο αδειών", + "item.page.filesection.name": "Ονομα:", + "item.page.filesection.original.bundle": "Πρωτότυπος φάκελος/πακέτο", + "item.page.filesection.size": "Μέγεθος:", + "item.page.journal-issn": "Περιοδικό ISSN", + "item.page.journal-title": "Τίτλος Εφημερίδας", + "item.page.journal.search.title": "Άρθρα σε αυτό το περιοδικό", + "item.page.link.full": "Πλήρης σελίδα τεκμηρίου", + "item.page.link.simple": "Απλή σελίδα τεκμηρίου", + "item.page.orcid.title": "ORCID", + "item.page.orcid.tooltip": "Ανοίξτε τη σελίδα ρύθμισης ORCID", + "item.page.person.search.title": "Άρθρα αυτού του συγγραφέα", + "item.page.publisher": "Εκδότης", + "item.page.related-items.view-less": "Απόκρυψη τελευταίου {{ amount }}", + "item.page.related-items.view-more": "Εμφάνιση {{ amount }} ακόμη", + "item.page.relationships.isAuthorOfPublication": "Δημοσιεύσεις", + "item.page.relationships.isJournalOfPublication": "Δημοσιεύσεις", + "item.page.relationships.isOrgUnitOfPerson": "Συγγραφείς", + "item.page.relationships.isOrgUnitOfProject": "Ερευνητικά έργα", + "item.page.return": "Επιστροφή", + "item.page.subject": "Λέξεις-κλειδιά", + "item.page.titleprefix": "Είδος:", + "item.page.uri": "URI", + "item.page.version.create": "Δημιουργία νέας έκδοσης", + "item.page.version.hasDraft": "Δεν είναι δυνατή η δημιουργία νέας έκδοσης επειδή υπάρχει μια υποβολή σε εξέλιξη στο ιστορικό εκδόσεων", + "item.page.volume-title": "Τίτλος τόμου", + "item.preview.dc.contributor.author": "Συγγραφείς:", + "item.preview.dc.coverage.spatial": "Τοπική κάλυψη:", + "item.preview.dc.date.issued": "Ημερομηνία δημοσίευσης:", + "item.preview.dc.description.abstract": "Περίληψη:", + "item.preview.dc.identifier": "Αναγνωριστικό:", + "item.preview.dc.identifier.doi": "DOI", + "item.preview.dc.identifier.isbn": "ISBN", + "item.preview.dc.identifier.other": "Άλλο αναγνωριστικό:", + "item.preview.dc.identifier.uri": "Αναγνωριστικό URI:", + "item.preview.dc.language.iso": "Γλώσσα:", + "item.preview.dc.relation.ispartof": "Περιοδικό ή Σειρά", + "item.preview.dc.relation.issn": "ISSN", + "item.preview.dc.subject": "Μαθήματα:", + "item.preview.dc.title": "Τίτλος:", + "item.preview.dc.title.alternative": "Αρκτικόλεξο:", + "item.preview.dc.type": "Τύπος:", + "item.preview.oaire.awardNumber": "Αναγνωριστικό χρηματοδότησης:", + "item.preview.oaire.citation.issue": "Θέμα", + "item.preview.oaire.citation.volume": "Τόμος", + "item.preview.oaire.fundingStream": "Ροή χρηματοδότησης:", + "item.preview.person.familyName": "Επώνυμο:", + "item.preview.person.givenName": "Ονομα:", + "item.preview.person.identifier.orcid": "ORCID:", + "item.preview.project.funder.identifier": "Αναγνωριστικό χρηματοδότη:", + "item.preview.project.funder.name": "Χρηματοδότης:", + "item.search.results.head": "Αποτελέσματα αναζήτησης τεκμηρίων", + "item.search.title": "Αναζήτηση τεκμηρ'ιου", + "item.select.confirm": "Επιβεβαιώστε την επιλογή", + "item.select.empty": "Δεν υπάρχουν τεκμήρια για εμφάνιση", + "item.select.table.author": "Συγγραφέας", + "item.select.table.collection": "Συλλογή", + "item.select.table.title": "Τίτλος", + "item.truncatable-part.show-less": "Σύμπτηξη", + "item.truncatable-part.show-more": "Δείτε περισσότερα", + "item.version.create.modal.button.cancel": "Ακύρωση", + "item.version.create.modal.button.cancel.tooltip": "Μην δημιουργήσετε νέα έκδοση", + "item.version.create.modal.button.confirm": "Δημιουργώ", + "item.version.create.modal.button.confirm.tooltip": "Δημιουργία νέας έκδοσης", + "item.version.create.modal.form.summary.label": "Περίληψη", + "item.version.create.modal.form.summary.placeholder": "Εισαγάγετε τη σύνοψη για τη νέα έκδοση", + "item.version.create.modal.header": "Νέα έκδοση", + "item.version.create.modal.submitted.header": "Δημιουργία νέας έκδοσης...", + "item.version.create.modal.submitted.text": "Η νέα έκδοση δημιουργείται. Αυτό μπορεί να πάρει κάποιο χρόνο εάν το τεκμήριο έχει πολλές σχέσεις.", + "item.version.create.modal.text": "Δημιουργήστε μια νέα έκδοση για αυτό το τεκμήριο", + "item.version.create.modal.text.startingFrom": "ξεκινώντας από την έκδοση {{version}}", + "item.version.create.notification.failure": "Δεν έχει δημιουργηθεί νέα έκδοση", + "item.version.create.notification.inProgress": "Δεν είναι δυνατή η δημιουργία νέας έκδοσης επειδή υπάρχει μια υποβολή σε εξέλιξη στο ιστορικό εκδόσεων", + "item.version.create.notification.success": "Δημιουργήθηκε νέα έκδοση με αριθμό έκδοσης {{version}}", + "item.version.delete.modal.button.cancel": "Ακύρωση", + "item.version.delete.modal.button.cancel.tooltip": "Μην διαγράψετε αυτήν την έκδοση", + "item.version.delete.modal.button.confirm": "Διαγραφή", + "item.version.delete.modal.button.confirm.tooltip": "Διαγράψτε αυτήν την έκδοση", + "item.version.delete.modal.header": "Διαγραφή έκδοσης", + "item.version.delete.modal.text": "Θέλετε να διαγράψετε την έκδοση {{version}};", + "item.version.delete.notification.failure": "Ο αριθμός έκδοσης {{version}} δεν έχει διαγραφεί", + "item.version.delete.notification.success": "Ο αριθμός έκδοσης {{version}} έχει διαγραφεί", + "item.version.edit.notification.failure": "Η περίληψη του αριθμού έκδοσης {{version}} δεν έχει αλλάξει", + "item.version.edit.notification.success": "Η σύνοψη του αριθμού έκδοσης {{version}} έχει αλλάξει", + "item.version.history.empty": "Δεν υπάρχουν ακόμα άλλες εκδόσεις για αυτό το τεκμήριο.", + "item.version.history.head": "Ιστορικό έκδοσης", + "item.version.history.return": "Επιστροφή", + "item.version.history.selected": "Επιλεγμένη έκδοση", + "item.version.history.selected.alert": "Αυτήν τη στιγμή βλέπετε την έκδοση {{version}} του αντικειμένου.", + "item.version.history.table.action.deleteVersion": "Διαγραφή έκδοσης", + "item.version.history.table.action.discardSummary": "Απόρριψη συνοπτικών επεξεργασιών", + "item.version.history.table.action.editSummary": "Επεξεργασία περίληψης", + "item.version.history.table.action.editWorkspaceItem": "Επεξεργασία workspace τεκμηρίου", + "item.version.history.table.action.hasDraft": "Δεν είναι δυνατή η δημιουργία νέας έκδοσης επειδή υπάρχει μια υποβολή σε εξέλιξη στο ιστορικό εκδόσεων", + "item.version.history.table.action.newVersion": "Δημιουργήστε νέα έκδοση από αυτήν", + "item.version.history.table.action.saveSummary": "Αποθήκευση συνοπτικών επεξεργασιών", + "item.version.history.table.actions": "Ενέργεια", + "item.version.history.table.date": "Ημερομηνία", + "item.version.history.table.editor": "Συντάκτης", + "item.version.history.table.item": "Τεκμήριο", + "item.version.history.table.summary": "Περίληψη", + "item.version.history.table.version": "Εκδοχή", + "item.version.history.table.workflowItem": "τεκμήριο ροής εργασιών", + "item.version.history.table.workspaceItem": "τεκμήριο χώρου εργασίας", + "item.version.notice": "Αυτή δεν είναι η πιο πρόσφατη έκδοση αυτού του τεκμηρίου. Μπορείτε να βρείτε την πιο πρόσφατη έκδοση εδώ.", + "journal-relationships.search.results.head": "Αποτελέσματα αναζήτησης περιοδικών", + "journal.listelement.badge": "Εφημερίδα", + "journal.page.description": "Περιγραφή", + "journal.page.edit": "Επεξεργαστείτε αυτό το τεκμήριο", + "journal.page.editor": "Αρχισυντάκτης", + "journal.page.issn": "ISSN", + "journal.page.publisher": "Εκδότης", + "journal.page.titleprefix": "Περιοδικό:", + "journal.search.results.head": "Αποτελέσματα αναζήτησης περιοδικών", + "journal.search.title": "Αναζήτηση περιοδικού", + "journalissue.listelement.badge": "Τεύχος Περιοδικού", + "journalissue.page.description": "Περιγραφή", + "journalissue.page.edit": "Επεξεργαστείτε αυτό το τεκμήριο", + "journalissue.page.issuedate": "Ημερομηνία έκδοσης", + "journalissue.page.journal-issn": "ISSN περιοδικού", + "journalissue.page.journal-title": "Τίτλος περιοδικού", + "journalissue.page.keyword": "Λέξεις-κλειδιά", + "journalissue.page.number": "Αριθμός", + "journalissue.page.titleprefix": "Τεύχος περιοδικού:", + "journalvolume.listelement.badge": "Τόμος περιοδικού", + "journalvolume.page.description": "Περιγραφή", + "journalvolume.page.edit": "Επεξεργαστείτε αυτό το τεκμήριο", + "journalvolume.page.issuedate": "Ημερομηνία έκδοσης", + "journalvolume.page.titleprefix": "Τόμος περιοδικού:", + "journalvolume.page.volume": "Τομος", + "loading.bitstream": "Φόρτωση αρχείου...", + "loading.bitstreams": "Φόρτωση αρχείων...", + "loading.browse-by": "Φόρτωση τεκμηρίων...", + "loading.browse-by-page": "Φόρτωση σελίδας...", + "loading.collection": "Φόρτωση συλλογής...", + "loading.collections": "Φόρτωση συλλογών...", + "loading.community": "Φόρτωση κοινότητας...", + "loading.content-source": "Φόρτωση πηγής περιεχομένου...", + "loading.default": "Φόρτωση...", + "loading.item": "Φόρτωση τεκμηρίου...", + "loading.items": "Φόρτωση τεκμηρίων...", + "loading.mydspace-results": "Φόρτωση τεκμηρίων...", + "loading.objects": "Φόρτωση...", + "loading.recent-submissions": "Φόρτωση πρόσφατων υποβολών...", + "loading.search-results": "Φόρτωση αποτελεσμάτων αναζήτησης...", + "loading.sub-collections": "Φόρτωση υποσυλλογών...", + "loading.sub-communities": "Φόρτωση υποκοινοτήτων...", + "loading.top-level-communities": "Φόρτωση κοινοτήτων ανώτατου επιπέδου...", + "login.breadcrumbs": "Σύνδεση", + "login.form.email": "Διεύθυνση ηλεκτρονικού ταχυδρομείου", + "login.form.forgot-password": "Έχετε ξεχάσει τον κωδικό σας;", + "login.form.header": "Παρακαλούμε συνδεθείτε στο DSpace", + "login.form.new-user": "Νέος χρήστης? Κάντε κλικ εδώ για να εγγραφείτε.", + "login.form.oidc": "Συνδεθείτε με το OIDC", + "login.form.or-divider": "ή", + "login.form.orcid": "Συνδεθείτε με το ORCID", + "login.form.password": "Κωδικός πρόσβασης", + "login.form.shibboleth": "Συνδεθείτε με το Shibboleth", + "login.form.submit": "Σύνδεση", + "login.title": "Σύνδεση", + "logout.form.header": "Αποσυνδεθείτε από το DSpace", + "logout.form.submit": "Αποσύνδεση", + "logout.title": "Αποσύνδεση", + "media-viewer.next": "Επόμενο", + "media-viewer.playlist": "Λίστα αναπαραγωγής", + "media-viewer.previous": "Προηγούμενο", + "menu.header.admin": "Διαχείριση", + "menu.header.admin.description": "Μενού διαχείρισης", + "menu.header.image.logo": "Λογότυπο αποθετηρίου", + "menu.section.access_control": "Έλεγχος πρόσβασης", + "menu.section.access_control_authorizations": "Εξουσιοδοτήσεις", + "menu.section.access_control_groups": "Ομάδες", + "menu.section.access_control_people": "Ανθρωποι", + "menu.section.admin_search": "Αναζήτηση διαχειριστή", + "menu.section.browse_community": "Αυτή η Κοινότητα", + "menu.section.browse_community_by_author": "Από Συγγραφέα", + "menu.section.browse_community_by_issue_date": "Κατά Ημερομηνία Έκδοσης", + "menu.section.browse_community_by_title": "Με τίτλο", + "menu.section.browse_global": "Όλο το DSpace", + "menu.section.browse_global_by_author": "Ανά Συγγραφέα", + "menu.section.browse_global_by_dateissued": "Ανά Ημερομηνία Έκδοσης", + "menu.section.browse_global_by_subject": "Ανά θέμα", + "menu.section.browse_global_by_title": "Ανά τίτλο", + "menu.section.browse_global_communities_and_collections": "Κοινότητες & Συλλογές", + "menu.section.control_panel": "Πίνακας Ελέγχου", + "menu.section.curation_task": "Εργασία επιμέλειας", + "menu.section.edit": "Επεξεργασία", + "menu.section.edit_collection": "Συλλογή", + "menu.section.edit_community": "Κοινότητα", + "menu.section.edit_item": "Τεκμήριο", + "menu.section.export": "Εξαγωγή", + "menu.section.export_collection": "Συλλογή", + "menu.section.export_community": "Κοινότητα", + "menu.section.export_item": "Τεκμήριο", + "menu.section.export_metadata": "Μεταδεδομένα", + "menu.section.health": "Υγεία", + "menu.section.icon.access_control": "Ενότητα μενού ελέγχου πρόσβασης", + "menu.section.icon.admin_search": "Ενότητα μενού αναζήτησης διαχειριστή", + "menu.section.icon.control_panel": "Ενότητα μενού Πίνακας Ελέγχου", + "menu.section.icon.curation_tasks": "Ενότητα μενού Εργασίας Επιμέλειας", + "menu.section.icon.edit": "Επεξεργασία ενότητας μενού", + "menu.section.icon.export": "Ενότητα μενού εξαγωγής", + "menu.section.icon.find": "Εύρεση ενότητας μενού", + "menu.section.icon.health": "Ενότητα μενού ελέγχου υγείας", + "menu.section.icon.import": "Ενότητα μενού εισαγωγής", + "menu.section.icon.new": "Νέα ενότητα μενού", + "menu.section.icon.pin": "Καρφιτσώστε την πλαϊνή γραμμή", + "menu.section.icon.processes": "Διαδικασίες Υγεία", + "menu.section.icon.registries": "Ενότητα μενού Μητρώων", + "menu.section.icon.statistics_task": "Ενότητα μενού εργασιών Statistics", + "menu.section.icon.unpin": "Ξεκαρφιτσώστε την πλαϊνή γραμμή", + "menu.section.icon.workflow": "Διαχείριση ενότητας μενού ροής εργασιών", + "menu.section.import": "Εισαγωγή", + "menu.section.import_batch": "Μαζική εισαγωγή (ZIP)", + "menu.section.import_metadata": "Μεταδεδομένα", + "menu.section.new": "Νέο", + "menu.section.new_collection": "Συλλογή", + "menu.section.new_community": "Κοινότητα", + "menu.section.new_item": "Τεκμήριο", + "menu.section.new_item_version": "Έκδοση τεκμηρίου", + "menu.section.new_process": "Επεξεργάζομαι, διαδικασία", + "menu.section.pin": "Καρφιτσώστε την πλαϊνή γραμμή", + "menu.section.processes": "Διαδικασίες", + "menu.section.registries": "Μητρώα", + "menu.section.registries_format": "Μορφότυπο", + "menu.section.registries_metadata": "Μεταδεδομένα", + "menu.section.statistics": "Στατιστικά", + "menu.section.statistics_task": "Εργασία Στατιστικών", + "menu.section.toggle.access_control": "Εναλλαγή ενότητας Ελέγχου πρόσβασης", + "menu.section.toggle.control_panel": "Εναλλαγή ενότητας Πίνακας Ελέγχου", + "menu.section.toggle.curation_task": "Εναλλαγή ενότητας Εργασία Επιμέλειας", + "menu.section.toggle.edit": "Εναλλαγή ενότητας Επεξεργασία", + "menu.section.toggle.export": "Εναλλαγή ενότητας Εξαγωγή", + "menu.section.toggle.find": "Εναλλαγή ενότητας Εύρεση", + "menu.section.toggle.import": "Εναλλαγή ενότητας Εισαγωγή", + "menu.section.toggle.new": "Εναλλαγή Νέα ενότητα", + "menu.section.toggle.registries": "Εναλλαγή ενότητας Μητρώα", + "menu.section.toggle.statistics_task": "Εναλλαγή ενότητας Εργασίας Στατιστικά", + "menu.section.unpin": "Ξεκαρφιτσώστε το πλαϊνό μενού", + "menu.section.workflow": "Διαχείριση ροής εργασιών", + "metadata-export-search.submit.error": "Η έναρξη της εξαγωγής απέτυχε", + "metadata-export-search.submit.success": "Η εξαγωγή ξεκίνησε με επιτυχία", + "metadata-export-search.tooltip": "Εξαγωγή αποτελεσμάτων αναζήτησης ως CSV", + "mydspace.breadcrumbs": "MyDSpace", + "mydspace.description": "", + "mydspace.general.text-here": "εδώ", + "mydspace.messages.controller-help": "Επιλέξτε εδώ για να στείλετε ένα μήνυμα στον υποβάλλοντα του τεκμηρίου.", + "mydspace.messages.description-placeholder": "Εισαγάγετε το μήνυμά σας εδώ...", + "mydspace.messages.hide-msg": "Απόκρυψη μηνύματος", + "mydspace.messages.mark-as-read": "Επισήμανση ως διαβασμένο", + "mydspace.messages.mark-as-unread": "Επισήμανση ως μη αναγνωσμένα", + "mydspace.messages.no-content": "Χωρίς περιεχόμενο.", + "mydspace.messages.no-messages": "Δεν υπάρχουν ακόμα μηνύματα.", + "mydspace.messages.send-btn": "Αποστολή", + "mydspace.messages.show-msg": "Εμφάνιση μηνύματος", + "mydspace.messages.subject-placeholder": "Θέμα...", + "mydspace.messages.submitter-help": "Επιλέξτε εδώ για να στείλετε ένα μήνυμα στον ελεγκτή.", + "mydspace.messages.title": "Μηνύματα", + "mydspace.messages.to": "Προς", + "mydspace.new-submission": "Νέα υποβολή", + "mydspace.new-submission-external": "Εισαγωγή μεταδεδομένων από εξωτερική πηγή", + "mydspace.new-submission-external-short": "Εισαγωγή μεταδεδομένων", + "mydspace.results.head": "Οι υποβολές σας", + "mydspace.results.no-abstract": "Χωρίς περίληψη", + "mydspace.results.no-authors": "Χωρίς Συγγραφείς", + "mydspace.results.no-collections": "Δεν υπάρχουν συλλογές", + "mydspace.results.no-date": "Χωρίς ημερομηνία", + "mydspace.results.no-files": "Χωρίς αρχεία", + "mydspace.results.no-results": "Δεν υπάρχουν τεκμήρια για εμφάνιση", + "mydspace.results.no-title": "Χωρίς τίτλο", + "mydspace.results.no-uri": "Χωρίς URI", + "mydspace.search-form.placeholder": "Αναζήτηση στο mydspace...", + "mydspace.show.workflow": "Εργασίες ροής εργασιών", + "mydspace.show.workspace": "Οι Υποβολές σας", + "mydspace.status.archived": "Αρχειοθετημένα", + "mydspace.status.validation": "Επικύρωση", + "mydspace.status.waiting-for-controller": "Αναμονή για τον ελεγκτή", + "mydspace.status.workflow": "Ροή εργασιών", + "mydspace.status.workspace": "Χώρος εργασίας", + "mydspace.title": "MyDSpace", + "mydspace.upload.upload-failed": "Σφάλμα κατά τη δημιουργία νέου χώρου εργασίας. Επαληθεύστε το περιεχόμενο που ανεβάσατε πριν δοκιμάσετε ξανά.", + "mydspace.upload.upload-failed-manyentries": "Μη επεξεργάσιμο αρχείο. Εντοπίστηκαν πάρα πολλές καταχωρίσεις, αλλά επιτρέπεται μόνο μία για αρχείο.", + "mydspace.upload.upload-failed-moreonefile": "Μη διεκπεραιώσιμο αίτημα. Επιτρέπεται μόνο ένα αρχείο.", + "mydspace.upload.upload-multiple-successful": "Δημιουργήθηκαν {{qty}} νέα τεκμήρια χώρου εργασίας.", + "mydspace.upload.upload-successful": "Δημιουργήθηκε νέο τεκμήριο χώρου εργασίας. Κάντε κλικ {{here}} για να το επεξεργαστείτε.", + "mydspace.view-btn": "Προβολή", + "nav.browse.header": "Όλο το DSpace", + "nav.community-browse.header": "Ανά Κοινότητα", + "nav.language": "Εναλλαγή γλώσσας", + "nav.login": "Σύνδεση", + "nav.logout": "Μενού προφίλ χρήστη και Αποσύνδεση", + "nav.main.description": "Κύρια γραμμή πλοήγησης", + "nav.mydspace": "MyDSpace", + "nav.profile": "Προφίλ", + "nav.search": "Αναζήτηση", + "nav.statistics.header": "Στατιστικά", + "nav.stop-impersonating": "Σταματήστε να υποδύεστε το EPerson", + "nav.toggle": "Εναλλαγή πλοήγησης", + "nav.user.description": "Γραμμή προφίλ χρήστη", + "none.listelement.badge": "Τεκμήριο", + "orgunit.listelement.badge": "Οργανωτική Μονάδα", + "orgunit.page.city": "Πόλη", + "orgunit.page.country": "Χώρα", + "orgunit.page.dateestablished": "Ημερομηνία καθορισμού", + "orgunit.page.description": "Περιγραφή", + "orgunit.page.edit": "Επεξεργαστείτε αυτό το τεκμήριο", + "orgunit.page.id": "ID", + "orgunit.page.titleprefix": "Μονάδα οργανισμού:", + "pagination.next.button": "Επόμενο", + "pagination.next.button.disabled.tooltip": "Δεν υπάρχουν άλλες σελίδες αποτελεσμάτων", + "pagination.options.description": "Επιλογές σελιδοποίησης", + "pagination.previous.button": "Προηγούμενος", + "pagination.results-per-page": "Αποτελέσματα ανά σελίδα", + "pagination.showing.detail": "{{ range }} of {{ total }}", + "pagination.showing.label": "Τώρα δείχνει", + "pagination.sort-direction": "Επιλογές ταξινόμησης", + "person-relationships.search.results.head": "Αποτελέσματα αναζήτησης ατόμων", + "person.listelement.badge": "Πρόσωπο", + "person.listelement.no-title": "Δεν βρέθηκε όνομα", + "person.orcid.registry.auth": "Εξουσιοδοτήσεις ORCID", + "person.orcid.registry.queue": "Ουρά μητρώου ORCID", + "person.orcid.sync.setting": "ORCID Ρυθμίσεις συγχρονισμού", + "person.page.birthdate": "Ημερομηνία γέννησης", + "person.page.edit": "Επεξεργαστείτε αυτό το τεκμήριο", + "person.page.email": "Διεύθυνση ηλεκτρονικού ταχυδρομείου", + "person.page.firstname": "Ονομα", + "person.page.jobtitle": "Τίτλος εργασίας", + "person.page.lastname": "Επίθετο", + "person.page.link.full": "Εμφάνιση όλων των μεταδεδομένων", + "person.page.name": "Ονομα", + "person.page.orcid": "ORCID", + "person.page.orcid.create": "Δημιουργήστε ένα αναγνωριστικό ORCID", + "person.page.orcid.funding-preferences": "Προτιμήσεις χρηματοδότησης", + "person.page.orcid.grant-authorizations": "Χορήγηση εξουσιοδοτήσεων", + "person.page.orcid.granted-authorizations": "Χορηγημένες εξουσιοδοτήσεις", + "person.page.orcid.link": "Συνδεθείτε στο ORCID ID", + "person.page.orcid.link.error.message": "Κάτι πήγε στραβά κατά τη σύνδεση του προφίλ με το ORCID. Εάν το πρόβλημα παραμένει, επικοινωνήστε με τον διαχειριστή.", + "person.page.orcid.link.processing": "Σύνδεση προφίλ με ORCID...", + "person.page.orcid.missing-authorizations": "Λείπουν εξουσιοδοτήσεις", + "person.page.orcid.missing-authorizations-message": "Λείπουν οι ακόλουθες εξουσιοδοτήσεις:", + "person.page.orcid.no-missing-authorizations-message": "Θαυμάσια! Αυτό το πλαίσιο είναι κενό, επομένως έχετε εκχωρήσει όλα τα δικαιώματα πρόσβασης για τη χρήση όλων των λειτουργιών που προσφέρει το ίδρυμά σας.", + "person.page.orcid.no-orcid-message": "Δεν υπάρχει ακόμη συσχετισμένο αναγνωριστικό ORCID. Κάνοντας κλικ στο κουμπί παρακάτω, μπορείτε να συνδέσετε αυτό το προφίλ με έναν λογαριασμό ORCID.", + "person.page.orcid.orcid-not-linked-message": "Το αναγνωριστικό ORCID αυτού του προφίλ ({{ orcid }}) δεν έχει συνδεθεί ακόμη σε λογαριασμό στο μητρώο ORCID ή η σύνδεση έχει λήξει.", + "person.page.orcid.profile-preferences": "Προτιμήσεις προφίλ", + "person.page.orcid.publications-preferences": "Προτιμήσεις δημοσίευσης", + "person.page.orcid.remove-orcid-message": "Εάν πρέπει να καταργήσετε το ORCID σας, επικοινωνήστε με τον διαχειριστή του αποθετηρίου", + "person.page.orcid.save.preference.changes": "Ρυθμίσεις ενημέρωσης", + "person.page.orcid.scope.activities-update": "Προσθέστε/ενημερώστε τις ερευνητικές σας δραστηριότητες", + "person.page.orcid.scope.authenticate": "Λάβετε το αναγνωριστικό ORCID σας", + "person.page.orcid.scope.person-update": "Προσθέστε/ενημερώστε άλλες πληροφορίες για εσάς", + "person.page.orcid.scope.read-limited": "Διαβάστε τις πληροφορίες σας με ορατότητα σε Αξιόπιστα μέρη", + "person.page.orcid.sync-fundings.all": "Όλες οι χρηματοδοτήσεις", + "person.page.orcid.sync-fundings.disabled": "χρήστες με ειδικές ανάγκες", + "person.page.orcid.sync-fundings.mine": "Οι χρηματοδοτήσεις μου", + "person.page.orcid.sync-fundings.my_selected": "Επιλεγμένες χρηματοδοτήσεις", + "person.page.orcid.sync-profile.affiliation": "Δεσμός", + "person.page.orcid.sync-profile.biographical": "Βιογραφικά στοιχεία", + "person.page.orcid.sync-profile.education": "Εκπαίδευση", + "person.page.orcid.sync-profile.identifiers": "Αναγνωριστικά", + "person.page.orcid.sync-publications.all": "Όλες οι δημοσιεύσεις", + "person.page.orcid.sync-publications.disabled": "χρήστες με ειδικές ανάγκες", + "person.page.orcid.sync-publications.mine": "Οι δημοσιεύσεις μου", + "person.page.orcid.sync-publications.my_selected": "Επιλεγμένες δημοσιεύσεις", + "person.page.orcid.sync-queue.description.affiliation": "Συνεταιρισμοί", + "person.page.orcid.sync-queue.description.country": "Χώρα", + "person.page.orcid.sync-queue.description.education": "Επίπεδα εκπαιδεύσης", + "person.page.orcid.sync-queue.description.external_ids": "Εξωτερικά αναγνωριστικά", + "person.page.orcid.sync-queue.description.keywords": "Λέξεις-κλειδιά", + "person.page.orcid.sync-queue.description.other_names": "Αλλα ονόματα", + "person.page.orcid.sync-queue.description.qualification": "Προσόντα", + "person.page.orcid.sync-queue.description.researcher_urls": "Διεύθυνση URL ερευνητή", + "person.page.orcid.sync-queue.discard": "Απορρίψτε την αλλαγή και μην κάνετε συγχρονισμό με το μητρώο ORCID", + "person.page.orcid.sync-queue.discard.error": "Η απόρριψη της εγγραφής ουράς ORCID απέτυχε", + "person.page.orcid.sync-queue.discard.success": "Η εγγραφή ουράς ORCID έχει απορριφθεί με επιτυχία", + "person.page.orcid.sync-queue.empty-message": "Το μητρώο ουράς ORCID είναι κενό", + "person.page.orcid.sync-queue.send": "Συγχρονισμός με το μητρώο ORCID", + "person.page.orcid.sync-queue.send.bad-request-error": "Η υποβολή στο ORCID απέτυχε επειδή ο πόρος που στάλθηκε στο μητρώο ORCID δεν είναι έγκυρος", + "person.page.orcid.sync-queue.send.conflict-error": "Η υποβολή στο ORCID απέτυχε επειδή ο πόρος υπάρχει ήδη στο μητρώο ORCID", + "person.page.orcid.sync-queue.send.error": "Η υποβολή στο ORCID απέτυχε", + "person.page.orcid.sync-queue.send.not-found-warning": "Ο πόρος δεν υπάρχει πλέον στο μητρώο ORCID.", + "person.page.orcid.sync-queue.send.success": "Η υποβολή στο ORCID ολοκληρώθηκε με επιτυχία", + "person.page.orcid.sync-queue.send.unauthorized-error.content": "Κάντε κλικ εδώ για να εκχωρήσετε ξανά τα απαιτούμενα δικαιώματα. Εάν το πρόβλημα παραμένει, επικοινωνήστε με τον διαχειριστή", + "person.page.orcid.sync-queue.send.unauthorized-error.title": "Η υποβολή στο ORCID απέτυχε λόγω έλλειψης εξουσιοδοτήσεων.", + "person.page.orcid.sync-queue.send.validation-error": "Τα δεδομένα που θέλετε να συγχρονίσετε με το ORCID δεν είναι έγκυρα", + "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "Απαιτείται το νόμισμα του ποσού", + "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Μη έγκυρη 2ψήφια χώρα ISO 3166", + "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "Απαιτείται ένα αναγνωριστικό για την αποσαφήνιση των οργανισμών. Τα υποστηριζόμενα αναγνωριστικά είναι αναγνωριστικά GRID, Ringgold, Legal Entity identifiers (LEI) και Crossref Funder Registry", + "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "Τα αναγνωριστικά του οργανισμού απαιτούν μια τιμή", + "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "Η πηγή ενός από τα αναγνωριστικά οργανισμού δεν είναι έγκυρη. Οι υποστηριζόμενες πηγές είναι οι RINGGOLD, GRID, LEI και FUNDREF", + "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "Τα αναγνωριστικά του οργανισμού απαιτούν πηγή", + "person.page.orcid.sync-queue.send.validation-error.external-id.required": "Ο πόρος που θα σταλεί απαιτεί τουλάχιστον ένα αναγνωριστικό", + "person.page.orcid.sync-queue.send.validation-error.funder.required": "Ζητείται ο χρηματοδότης", + "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "Ο οργανισμός που θα σταλεί απαιτεί διεύθυνση", + "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "Η διεύθυνση του οργανισμού που θα σταλεί απαιτεί πόλη", + "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "Η διεύθυνση του οργανισμού που θα σταλεί απαιτεί μια έγκυρη 2ψήφια χώρα ISO 3166", + "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "Το όνομα του οργανισμού είναι υποχρεωτικό", + "person.page.orcid.sync-queue.send.validation-error.organization.required": "Η οργάνωση απαιτείται", + "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "Η ημερομηνία δημοσίευσης πρέπει να είναι ένα έτος μετά το 1900", + "person.page.orcid.sync-queue.send.validation-error.start-date.required": "Απαιτείται η ημερομηνία έναρξης", + "person.page.orcid.sync-queue.send.validation-error.title.required": "Ο τίτλος είναι υποχρεωτικός", + "person.page.orcid.sync-queue.send.validation-error.type.required": "Απαιτείται το πεδίο dc.type", + "person.page.orcid.sync-queue.table.header.action": "Ενέργεια", + "person.page.orcid.sync-queue.table.header.description": "Περιγραφή", + "person.page.orcid.sync-queue.table.header.type": "Τύπος", + "person.page.orcid.sync-queue.tooltip.affiliation": "Σχετιζόμενος οργανισμός", + "person.page.orcid.sync-queue.tooltip.country": "Χώρα", + "person.page.orcid.sync-queue.tooltip.delete": "Καταργήστε αυτήν την καταχώρηση από το μητρώο ORCID", + "person.page.orcid.sync-queue.tooltip.education": "Επίπεδο εκπαίδευσης", + "person.page.orcid.sync-queue.tooltip.external_ids": "Εξωτερικό αναγνωριστικό", + "person.page.orcid.sync-queue.tooltip.insert": "Προσθέστε μια νέα καταχώρηση στο μητρώο ORCID", + "person.page.orcid.sync-queue.tooltip.keywords": "Λέξη-κλειδί", + "person.page.orcid.sync-queue.tooltip.other_names": "Αλλο όνομα", + "person.page.orcid.sync-queue.tooltip.project": "Εργο", + "person.page.orcid.sync-queue.tooltip.publication": "Δημοσίευση", + "person.page.orcid.sync-queue.tooltip.qualification": "Προσόν", + "person.page.orcid.sync-queue.tooltip.researcher_urls": "Διεύθυνση URL ερευνητή", + "person.page.orcid.sync-queue.tooltip.update": "Ενημερώστε αυτήν την καταχώρηση στο μητρώο ORCID", + "person.page.orcid.synchronization-mode": "Λειτουργία συγχρονισμού", + "person.page.orcid.synchronization-mode-funding-message": "Επιλέξτε εάν θα στείλετε τις συνδεδεμένες οντότητες του Έργου στη λίστα πληροφοριών χρηματοδότησης της εγγραφής σας ORCID.", + "person.page.orcid.synchronization-mode-message": "Επιλέξτε πώς θέλετε να γίνει ο συγχρονισμός με το ORCID. Οι επιλογές περιλαμβάνουν \"Μη αυτόματα\" (πρέπει να στείλετε τα δεδομένα σας στο ORCID με μη αυτόματο τρόπο) ή \"Μαζί\" (το σύστημα θα στείλει τα δεδομένα σας στο ORCID μέσω προγραμματισμένου σεναρίου).", + "person.page.orcid.synchronization-mode-profile-message": "Επιλέξτε εάν θα στείλετε τα βιογραφικά σας δεδομένα ή τα προσωπικά σας αναγνωριστικά στο αρχείο ORCID.", + "person.page.orcid.synchronization-mode-publication-message": "Επιλέξτε εάν θα στείλετε τις συνδεδεμένες οντότητες Δημοσιεύσεών σας στη λίστα έργων της εγγραφής σας ORCID.", + "person.page.orcid.synchronization-mode.batch": "Σύνολο παραγωγής", + "person.page.orcid.synchronization-mode.label": "Λειτουργία συγχρονισμού", + "person.page.orcid.synchronization-mode.manual": "Εγχειρίδιο", + "person.page.orcid.synchronization-settings-update.error": "Η ενημέρωση των ρυθμίσεων συγχρονισμού απέτυχε", + "person.page.orcid.synchronization-settings-update.success": "Οι ρυθμίσεις συγχρονισμού ενημερώθηκαν με επιτυχία", + "person.page.orcid.unlink": "Αποσύνδεση από το ORCID", + "person.page.orcid.unlink.error": "Παρουσιάστηκε σφάλμα κατά την αποσύνδεση μεταξύ του προφίλ και του μητρώου ORCID. Προσπάθησε ξανά", + "person.page.orcid.unlink.processing": "Επεξεργασία...", + "person.page.orcid.unlink.success": "Η αποσύνδεση μεταξύ του προφίλ και του μητρώου ORCID ήταν επιτυχής", + "person.page.staffid": "Ταυτότητα προσωπικού", + "person.page.titleprefix": "Πρόσωπο:", + "person.search.results.head": "Αποτελέσματα αναζήτησης ατόμων", + "person.search.title": "Αναζήτηση Προσώπων", + "process.detail.arguments": "Παράμετροι", + "process.detail.arguments.empty": "Αυτή η διαδικασία δεν περιέχει παραμέτρους", + "process.detail.back": "Επιστροφή", + "process.detail.create": "Δημιουργήστε παρόμοια διαδικασία", + "process.detail.end-time": "Ώρα λήξης", + "process.detail.logs.button": "Ανάκτηση εξόδου διαδικασίας", + "process.detail.logs.loading": "Ανάκτηση", + "process.detail.logs.none": "Αυτή η διαδικασία δεν έχει κάποιο αποτέλεσμα εξόδου", + "process.detail.output": "Έξοδος διαδικασίας", + "process.detail.output-files": "Αρχεία εξόδου", + "process.detail.output-files.empty": "Αυτή η διαδικασία δεν περιέχει αρχεία εξόδου", + "process.detail.script": "Γραφή", + "process.detail.start-time": "Ωρα έναρξης", + "process.detail.status": "Κατάσταση", + "process.detail.title": "Διαδικασία: {{ id }} - {{ name }}", + "process.new.breadcrumbs": "Δημιουργήστε μια νέα διαδικασία", + "process.new.cancel": "Ακύρωση", + "process.new.header": "Δημιουργήστε μια νέα διαδικασία", + "process.new.notification.error.content": "Παρουσιάστηκε σφάλμα κατά τη δημιουργία αυτής της διαδικασίας", + "process.new.notification.error.title": "Λάθος", + "process.new.notification.success.content": "Η διαδικασία δημιουργήθηκε με επιτυχία", + "process.new.notification.success.title": "Επιτυχία", + "process.new.parameter.file.required": "Επιλέξτε ένα αρχείο", + "process.new.parameter.file.upload-button": "Επιλογή αρχείου...", + "process.new.parameter.required.missing": "Απαιτούνται οι ακόλουθες παράμετροι αλλά εξακολουθούν να λείπουν:", + "process.new.parameter.string.required": "Απαιτείται τιμή παραμέτρου", + "process.new.parameter.type.file": "αρχείο", + "process.new.parameter.type.value": "τιμή", + "process.new.select-parameters": "Παράμετροι", + "process.new.select-script": "Script", + "process.new.select-script.placeholder": "Επιλέξτε ένα Script...", + "process.new.select-script.required": "Απαιτείται Script", + "process.new.submit": "Αποθήκευση", + "process.new.title": "Δημιουργήστε μια νέα διαδικασία", + "process.overview.breadcrumbs": "Επισκόπηση διαδικασιών", + "process.overview.new": "Νέο", + "process.overview.table.finish": "Ώρα λήξης (UTC)", + "process.overview.table.id": "Αναγνωριστικό διαδικασίας", + "process.overview.table.name": "Ονομα", + "process.overview.table.start": "Ώρα έναρξης (UTC)", + "process.overview.table.status": "Κατάσταση", + "process.overview.table.user": "Χρήστης", + "process.overview.title": "Επισκόπηση διαδικασιών", + "profile.breadcrumbs": "Ανανέωση προφίλ", + "profile.card.identify": "Αναγνωρίζω", + "profile.card.researcher": "Προφίλ ερευνητή", + "profile.card.security": "Ασφάλεια", + "profile.form.submit": "Αποθήκευση", + "profile.groups.head": "Ομάδες εξουσιοδότησης στις οποίες ανήκετε", + "profile.head": "Ανανέωση προφίλ", + "profile.metadata.form.error.firstname.required": "Απαιτείται Όνομα", + "profile.metadata.form.error.lastname.required": "Το επώνυμο είναι υποχρεωτικό", + "profile.metadata.form.label.email": "Διεύθυνση ηλεκτρονικού ταχυδρομείου", + "profile.metadata.form.label.firstname": "Ονομα", + "profile.metadata.form.label.language": "Γλώσσα", + "profile.metadata.form.label.lastname": "Επίθετο", + "profile.metadata.form.label.phone": "Τηλέφωνο Επικοινωνίας", + "profile.metadata.form.notifications.success.content": "Οι αλλαγές σας στο προφίλ αποθηκεύτηκαν.", + "profile.metadata.form.notifications.success.title": "Το προφίλ αποθηκεύτηκε", + "profile.notifications.warning.no-changes.content": "Δεν έγιναν αλλαγές στο Προφίλ.", + "profile.notifications.warning.no-changes.title": "Χωρίς αλλαγές", + "profile.security.form.error.matching-passwords": "Οι κωδικοί δεν ταιριάζουν.", + "profile.security.form.error.password-length": "Ο κωδικός πρόσβασης πρέπει να αποτελείται από τουλάχιστον 6 χαρακτήρες.", + "profile.security.form.info": "Προαιρετικά, μπορείτε να εισαγάγετε έναν νέο κωδικό πρόσβασης στο παρακάτω πλαίσιο και να τον επιβεβαιώσετε πληκτρολογώντας τον ξανά στο δεύτερο πλαίσιο. Θα πρέπει να αποτελείται από τουλάχιστον έξι χαρακτήρες.", + "profile.security.form.label.password": "Κωδικός πρόσβασης", + "profile.security.form.label.passwordrepeat": "Πληκτρολογήστε ξανά για επιβεβαίωση", + "profile.security.form.notifications.error.not-long-enough": "Ο κωδικός πρόσβασης πρέπει να αποτελείται από τουλάχιστον 6 χαρακτήρες.", + "profile.security.form.notifications.error.not-same": "Οι παρεχόμενοι κωδικοί πρόσβασης δεν είναι οι ίδιοι.", + "profile.security.form.notifications.error.title": "Σφάλμα αλλαγής κωδικών πρόσβασης", + "profile.security.form.notifications.success.content": "Οι αλλαγές σας στον κωδικό πρόσβασης αποθηκεύτηκαν.", + "profile.security.form.notifications.success.title": "Ο κωδικός πρόσβασης αποθηκεύτηκε", + "profile.special.groups.head": "Εξουσιοδότηση ειδικών ομάδων στις οποίες ανήκετε", + "profile.title": "Ανανέωση προφίλ", + "project-relationships.search.results.head": "Αποτελέσματα αναζήτησης έργου", + "project.listelement.badge": "Ερευνητικό πρόγραμμα", + "project.page.contributor": "Συνεισφέροντες", + "project.page.description": "Περιγραφή", + "project.page.edit": "Επεξεργαστείτε αυτό το τεκμήριο", + "project.page.expectedcompletion": "Αναμενόμενη Ολοκλήρωση", + "project.page.funder": "Χρηματοδότες", + "project.page.id": "ID", + "project.page.keyword": "Λέξεις-κλειδιά", + "project.page.status": "Κατάσταση", + "project.page.titleprefix": "Ερευνητικό πρόγραμμα:", + "project.search.results.head": "Αποτελέσματα αναζήτησης έργου", + "publication-relationships.search.results.head": "Αποτελέσματα αναζήτησης δημοσιεύσεων", + "publication.listelement.badge": "Δημοσίευση", + "publication.page.description": "Περιγραφή", + "publication.page.edit": "Επεξεργαστείτε αυτό το τεκμήριο", + "publication.page.journal-issn": "Περιοδικό ISSN", + "publication.page.journal-title": "Τίτλος Εφημερίδας", + "publication.page.publisher": "Εκδότης", + "publication.page.titleprefix": "Δημοσίευση:", + "publication.page.volume-title": "Τίτλος τόμου", + "publication.search.results.head": "Αποτελέσματα αναζήτησης δημοσιεύσεων", + "publication.search.title": "Αναζήτηση δημοσιεύσεων", + "register-email.title": "Εγγραφή νέου χρήστη", + "register-page.create-profile.header": "Δημιουργία Προφίλ", + "register-page.create-profile.identification.contact": "Τηλέφωνο Επικοινωνίας", + "register-page.create-profile.identification.email": "Διεύθυνση ηλεκτρονικού ταχυδρομείου", + "register-page.create-profile.identification.first-name": "Ονομα *", + "register-page.create-profile.identification.first-name.error": "Παρακαλώ συμπληρώστε ένα Όνομα", + "register-page.create-profile.identification.header": "Αναγνωριστικό", + "register-page.create-profile.identification.language": "Γλώσσα", + "register-page.create-profile.identification.last-name": "Επίθετο *", + "register-page.create-profile.identification.last-name.error": "Παρακαλώ συμπληρώστε ένα Επώνυμο", + "register-page.create-profile.security.error.empty-password": "Εισαγάγετε έναν κωδικό πρόσβασης στο παρακάτω πλαίσιο.", + "register-page.create-profile.security.error.matching-passwords": "Οι κωδικοί δεν ταιριάζουν.", + "register-page.create-profile.security.error.password-length": "Ο κωδικός πρόσβασης πρέπει να αποτελείται από τουλάχιστον 6 χαρακτήρες.", + "register-page.create-profile.security.header": "Ασφάλεια", + "register-page.create-profile.security.info": "Εισαγάγετε έναν κωδικό πρόσβασης στο παρακάτω πλαίσιο και επιβεβαιώστε τον πληκτρολογώντας τον ξανά στο δεύτερο πλαίσιο. Θα πρέπει να αποτελείται από τουλάχιστον έξι χαρακτήρες.", + "register-page.create-profile.security.label.password": "Κωδικός πρόσβασης *", + "register-page.create-profile.security.label.passwordrepeat": "Πληκτρολογήστε ξανά για επιβεβαίωση *", + "register-page.create-profile.submit": "Ολοκλήρωση εγγραφής", + "register-page.create-profile.submit.error.content": "Κάτι πήγε στραβά κατά την εγγραφή νέου χρήστη.", + "register-page.create-profile.submit.error.head": "Η εγγραφή απέτυχε", + "register-page.create-profile.submit.success.content": "Η εγγραφή ήταν επιτυχής. Έχετε συνδεθεί ως ο χρήστης που δημιουργήθηκε.", + "register-page.create-profile.submit.success.head": "Η εγγραφή ολοκληρώθηκε", + "register-page.registration.email": "Διεύθυνση ηλεκτρονικού ταχυδρομείου *", + "register-page.registration.email.error.pattern": "Συμπληρώστε μια έγκυρη διεύθυνση email", + "register-page.registration.email.error.required": "Συμπληρώστε μια διεύθυνση email", + "register-page.registration.email.hint": "Αυτή η διεύθυνση θα επαληθευτεί και θα χρησιμοποιηθεί ως το όνομα σύνδεσής σας.", + "register-page.registration.error.content": "Παρουσιάστηκε σφάλμα κατά την εγγραφή της ακόλουθης διεύθυνσης email: {{ email }}", + "register-page.registration.error.head": "Σφάλμα κατά την προσπάθεια εγγραφής email", + "register-page.registration.header": "Εγγραφή νέου χρήστη", + "register-page.registration.info": "Καταχωρίστε έναν λογαριασμό για να εγγραφείτε σε συλλογές για ενημερώσεις email και υποβάλετε νέα τεκμήρια στο DSpace.", + "register-page.registration.submit": "Εγγραφή", + "register-page.registration.success.content": "Έχει σταλεί ένα μήνυμα ηλεκτρονικού ταχυδρομείου στη διεύθυνση {{ email }} που περιέχει μια ειδική διεύθυνση URL και περαιτέρω οδηγίες.", + "register-page.registration.success.head": "Το email επαλήθευσης στάλθηκε", + "relationships.add.error.relationship-type.content": "Δεν βρέθηκε κατάλληλη αντιστοίχιση για τον τύπο σχέσης {{ type }} μεταξύ των δύο τεκμηρίων", + "relationships.add.error.server.content": "Ο διακομιστής επέστρεψε ένα σφάλμα", + "relationships.add.error.title": "Δεν είναι δυνατή η προσθήκη σχέσης", + "relationships.isAuthorOf": "Συγγραφείς", + "relationships.isAuthorOf.OrgUnit": "Συγγραφείς (οργανωτικές μονάδες)", + "relationships.isAuthorOf.Person": "Συγγραφείς (πρόσωπα)", + "relationships.isContributorOf": "Συντελεστής", + "relationships.isContributorOf.OrgUnit": "Συντελεστής (Οργανωτική Μονάδα)", + "relationships.isContributorOf.Person": "Συντελεστής", + "relationships.isFundingAgencyOf.OrgUnit": "Χρηματοδότης", + "relationships.isIssueOf": "Θέματα περιοδικών", + "relationships.isJournalIssueOf": "Τεύχος περιοδικού", + "relationships.isJournalOf": "περιοδικά", + "relationships.isOrgUnitOf": "Μονάδες οργανισμού", + "relationships.isPersonOf": "Συγγραφείς", + "relationships.isProjectOf": "Ερευνητικά έργα", + "relationships.isPublicationOf": "Δημοσιεύσεις", + "relationships.isPublicationOfJournalIssue": "Άρθρα", + "relationships.isSingleJournalOf": "Εφημερίδα", + "relationships.isSingleVolumeOf": "Τόμος περιοδικού", + "relationships.isVolumeOf": "Τόμοι περιοδικών", + "repository.image.logo": "Λογότυπο αποθετηρίου", + "repository.title.prefix": "DSpace Angular ::", + "repository.title.prefixDSpace": "DSpace Angular ::", + "researcher.profile.action.processing": "Επεξεργασία...", + "researcher.profile.associated": "Σχετικό προφίλ ερευνητή", + "researcher.profile.change-visibility.fail": "Παρουσιάστηκε ένα μη αναμενόμενο σφάλμα κατά την αλλαγή της προβολής του προφίλ", + "researcher.profile.create.fail": "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του προφίλ ερευνητή", + "researcher.profile.create.new": "Δημιουργία νέου", + "researcher.profile.create.success": "Το προφίλ ερευνητή δημιουργήθηκε με επιτυχία", + "researcher.profile.delete": "Διαγραφή", + "researcher.profile.expose": "Εκθέτω", + "researcher.profile.hide": "Κρύβω", + "researcher.profile.not.associated": "Το προφίλ ερευνητή δεν έχει συσχετιστεί ακόμη", + "researcher.profile.private.visibility": "ΙΔΙΩΤΙΚΟ", + "researcher.profile.public.visibility": "ΔΗΜΟΣΙΟ", + "researcher.profile.status": "Κατάσταση:", + "researcher.profile.view": "Προβολή", + "researcherprofile.claim.not-authorized": "Δεν είστε εξουσιοδοτημένοι να διεκδικήσετε αυτό το τεκμήριο. Για περισσότερες λεπτομέρειες επικοινωνήστε με τους διαχειριστές.", + "researcherprofile.error.claim.body": "Παρουσιάστηκε σφάλμα κατά την αξίωση του προφίλ, δοκιμάστε ξανά αργότερα", + "researcherprofile.error.claim.title": "Λάθος", + "researcherprofile.success.claim.body": "Το προφίλ διεκδικήθηκε με επιτυχία", + "researcherprofile.success.claim.title": "Επιτυχία", + "resource-policies.add.button": "Προσθήκη", + "resource-policies.add.for.": "Προσθέστε μια νέα πολιτική", + "resource-policies.add.for.bitstream": "Προσθέστε μια νέα πολιτική αρχείου", + "resource-policies.add.for.bundle": "Προσθέστε μια νέα πολιτική φακέλου/πακέτου", + "resource-policies.add.for.collection": "Προσθέστε μια νέα πολιτική συλλογής", + "resource-policies.add.for.community": "Προσθέστε μια νέα πολιτική Κοινότητας", + "resource-policies.add.for.item": "Προσθέστε μια νέα πολιτική αντικειμένου", + "resource-policies.create.page.failure.content": "Παρουσιάστηκε σφάλμα κατά τη δημιουργία της πολιτικής πόρων.", + "resource-policies.create.page.heading": "Δημιουργία νέας πολιτικής πόρων για", + "resource-policies.create.page.success.content": "Επιτυχής λειτουργία", + "resource-policies.create.page.title": "Δημιουργία νέας πολιτικής πόρων", + "resource-policies.delete.btn": "Διαγραφή επιλεγμένων", + "resource-policies.delete.btn.title": "Διαγραφή επιλεγμένων πολιτικών πόρων", + "resource-policies.delete.failure.content": "Παρουσιάστηκε σφάλμα κατά τη διαγραφή επιλεγμένων πολιτικών πόρων.", + "resource-policies.delete.success.content": "Επιτυχής λειτουργία", + "resource-policies.edit.page.failure.content": "Παρουσιάστηκε σφάλμα κατά την επεξεργασία της πολιτικής πόρων.", + "resource-policies.edit.page.heading": "Επεξεργασία πολιτικής πόρων", + "resource-policies.edit.page.other-failure.content": "Παρουσιάστηκε σφάλμα κατά την επεξεργασία της πολιτικής πόρων. Ο στόχος (ePerson ή ομάδα) ενημερώθηκε με επιτυχία.", + "resource-policies.edit.page.success.content": "Επιτυχής λειτουργία", + "resource-policies.edit.page.target-failure.content": "Παρουσιάστηκε σφάλμα κατά την επεξεργασία του στόχου (ePerson ή ομάδα) της πολιτικής πόρων.", + "resource-policies.edit.page.title": "Επεξεργασία πολιτικής πόρων", + "resource-policies.form.action-type.label": "Επιλέξτε τον τύπο ενέργειας", + "resource-policies.form.action-type.required": "Πρέπει να επιλέξετε την ενέργεια της πολιτικής πόρων.", + "resource-policies.form.date.end.label": "Ημερομηνία λήξης", + "resource-policies.form.date.start.label": "Ημερομηνία έναρξης", + "resource-policies.form.description.label": "Περιγραφή", + "resource-policies.form.eperson-group-list.label": "Το άτομο ή η ομάδα που θα λάβει την άδεια", + "resource-policies.form.eperson-group-list.modal.close": "Εντάξει", + "resource-policies.form.eperson-group-list.modal.header": "Δεν είναι δυνατή η αλλαγή τύπου", + "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "Δεν είναι δυνατή η αντικατάσταση μιας ομάδας με ένα ePerson.", + "resource-policies.form.eperson-group-list.modal.text1.toGroup": "Δεν είναι δυνατή η αντικατάσταση ενός ePerson με μια ομάδα.", + "resource-policies.form.eperson-group-list.modal.text2": "Διαγράψτε την τρέχουσα πολιτική πόρων και δημιουργήστε μια νέα με τον επιθυμητό τύπο.", + "resource-policies.form.eperson-group-list.select.btn": "Επιλέγω", + "resource-policies.form.eperson-group-list.tab.eperson": "Αναζητήστε ένα ePerson", + "resource-policies.form.eperson-group-list.tab.group": "Αναζήτηση για μια ομάδα", + "resource-policies.form.eperson-group-list.table.headers.action": "Δράση", + "resource-policies.form.eperson-group-list.table.headers.id": "ID", + "resource-policies.form.eperson-group-list.table.headers.name": "Ονομα", + "resource-policies.form.name.label": "Ονομα", + "resource-policies.form.policy-type.label": "Επιλέξτε τον τύπο πολιτικής", + "resource-policies.form.policy-type.required": "Πρέπει να επιλέξετε τον τύπο πολιτικής πόρων.", + "resource-policies.table.headers.action": "Δράση", + "resource-policies.table.headers.date.end": "Ημερομηνία λήξης", + "resource-policies.table.headers.date.start": "Ημερομηνία έναρξης", + "resource-policies.table.headers.edit": "Επεξεργασία", + "resource-policies.table.headers.edit.group": "Επεξεργασία ομάδας", + "resource-policies.table.headers.edit.policy": "Επεξεργασία πολιτικής", + "resource-policies.table.headers.eperson": "EPson", + "resource-policies.table.headers.group": "Ομάδα", + "resource-policies.table.headers.id": "ID", + "resource-policies.table.headers.name": "Ονομα", + "resource-policies.table.headers.policyType": "τύπος", + "resource-policies.table.headers.title.for.bitstream": "Πολιτικές για το αρχείο", + "resource-policies.table.headers.title.for.bundle": "Πολιτικές για το φάκελο/πακέτο", + "resource-policies.table.headers.title.for.collection": "Πολιτικές για τη συλλογή", + "resource-policies.table.headers.title.for.community": "Πολιτικές για την Κοινότητα", + "resource-policies.table.headers.title.for.item": "Πολιτικές για το τεκμήριο", + "search.breadcrumbs": "Αναζήτηση", + "search.description": null, + "search.filters.applied.f.author": "Συγγραφέας", + "search.filters.applied.f.birthDate.max": "Ημερομηνία λήξης γέννησης", + "search.filters.applied.f.birthDate.min": "Ημερομηνία γέννησης", + "search.filters.applied.f.dateIssued.max": "Ημερομηνία λήξης", + "search.filters.applied.f.dateIssued.min": "Ημερομηνία έναρξης", + "search.filters.applied.f.dateSubmitted": "Ημερομηνία υποβολής", + "search.filters.applied.f.discoverable": "Μη ανακαλυπτόμενο", + "search.filters.applied.f.entityType": "Τύπος αντικειμένου", + "search.filters.applied.f.has_content_in_original_bundle": "Έχει αρχεία", + "search.filters.applied.f.itemtype": "Τύπος", + "search.filters.applied.f.jobTitle": "Τίτλος εργασίας", + "search.filters.applied.f.namedresourcetype": "Κατάσταση", + "search.filters.applied.f.subject": "Θέμα", + "search.filters.applied.f.submitter": "Αναρτητής", + "search.filters.applied.f.withdrawn": "Διαγραμμένο", + "search.filters.discoverable.false": "Ναί", + "search.filters.discoverable.true": "Οχι", + "search.filters.entityType.JournalIssue": "Τεύχος περιοδικού", + "search.filters.entityType.JournalVolume": "Τόμος περιοδικού", + "search.filters.entityType.OrgUnit": "Οργανωτική Μονάδα", + "search.filters.filter.author.head": "Συγγραφέας", + "search.filters.filter.author.label": "Αναζήτηση ονόματος συγγραφέα", + "search.filters.filter.author.placeholder": "Όνομα συγγραφέα", + "search.filters.filter.birthDate.head": "Ημερομηνία γέννησης", + "search.filters.filter.birthDate.label": "Αναζήτηση ημερομηνίας γέννησης", + "search.filters.filter.birthDate.placeholder": "Ημερομηνία γέννησης", + "search.filters.filter.collapse": "Σύμπτυξη φίλτρου", + "search.filters.filter.creativeDatePublished.head": "Ημερομηνία δημοσίευσης", + "search.filters.filter.creativeDatePublished.label": "Δημοσίευση ημερομηνίας αναζήτησης", + "search.filters.filter.creativeDatePublished.placeholder": "Ημερομηνία δημοσίευσης", + "search.filters.filter.creativeWorkEditor.head": "Συντάκτης", + "search.filters.filter.creativeWorkEditor.label": "Επεξεργαστής αναζήτησης", + "search.filters.filter.creativeWorkEditor.placeholder": "Συντάκτης", + "search.filters.filter.creativeWorkKeywords.head": "Θέμα", + "search.filters.filter.creativeWorkKeywords.label": "Αναζήτηση θέματος", + "search.filters.filter.creativeWorkKeywords.placeholder": "Θέμα", + "search.filters.filter.creativeWorkPublisher.head": "Εκδότης", + "search.filters.filter.creativeWorkPublisher.label": "Αναζήτηση εκδότη", + "search.filters.filter.creativeWorkPublisher.placeholder": "Εκδότης", + "search.filters.filter.dateIssued.head": "Ημερομηνία", + "search.filters.filter.dateIssued.max.label": "Τέλος", + "search.filters.filter.dateIssued.max.placeholder": "Μέγιστη ημερομηνία", + "search.filters.filter.dateIssued.min.label": "Αρχή", + "search.filters.filter.dateIssued.min.placeholder": "Ελάχιστη ημερομηνία", + "search.filters.filter.dateSubmitted.head": "Ημερομηνία υποβολής", + "search.filters.filter.dateSubmitted.label": "Ημερομηνία υποβολής αναζήτησης", + "search.filters.filter.dateSubmitted.placeholder": "Ημερομηνία υποβολής", + "search.filters.filter.discoverable.head": "Μη ανακαλύψιμο", + "search.filters.filter.entityType.head": "Τύπος αντικειμένου", + "search.filters.filter.entityType.label": "Αναζήτηση τύπου αντικειμένου", + "search.filters.filter.entityType.placeholder": "Τύπος αντικειμένου", + "search.filters.filter.expand": "Αναπτύξτε το φίλτρο", + "search.filters.filter.has_content_in_original_bundle.head": "Έχει αρχεία", + "search.filters.filter.itemtype.head": "Τύπος", + "search.filters.filter.itemtype.label": "Τύπος αναζήτησης", + "search.filters.filter.itemtype.placeholder": "Τύπος", + "search.filters.filter.jobTitle.head": "Τίτλος εργασίας", + "search.filters.filter.jobTitle.label": "Αναζήτηση τίτλου εργασίας", + "search.filters.filter.jobTitle.placeholder": "Τίτλος εργασίας", + "search.filters.filter.knowsLanguage.head": "Γνωστή γλώσσα", + "search.filters.filter.knowsLanguage.label": "Αναζήτηση γνωστής γλώσσας", + "search.filters.filter.knowsLanguage.placeholder": "Γνωστή γλώσσα", + "search.filters.filter.namedresourcetype.head": "Κατάσταση", + "search.filters.filter.namedresourcetype.label": "Κατάσταση αναζήτησης", + "search.filters.filter.namedresourcetype.placeholder": "Κατάσταση", + "search.filters.filter.objectpeople.head": "Ανθρωποι", + "search.filters.filter.objectpeople.label": "Αναζήτηση ατόμων", + "search.filters.filter.objectpeople.placeholder": "Ανθρωποι", + "search.filters.filter.organizationAddressCountry.head": "Χώρα", + "search.filters.filter.organizationAddressCountry.label": "Αναζήτηση χώρας", + "search.filters.filter.organizationAddressCountry.placeholder": "Χώρα", + "search.filters.filter.organizationAddressLocality.head": "Πόλη", + "search.filters.filter.organizationAddressLocality.label": "Αναζήτηση πόλης", + "search.filters.filter.organizationAddressLocality.placeholder": "Πόλη", + "search.filters.filter.organizationFoundingDate.head": "Ημερομηνία ίδρυσης", + "search.filters.filter.organizationFoundingDate.label": "Ημερομηνία ίδρυσης αναζήτησης", + "search.filters.filter.organizationFoundingDate.placeholder": "Ημερομηνία ίδρυσης", + "search.filters.filter.scope.head": "Πεδίο εφαρμογής", + "search.filters.filter.scope.label": "Φίλτρο εύρους αναζήτησης", + "search.filters.filter.scope.placeholder": "Φίλτρο εύρους", + "search.filters.filter.show-less": "Δείτε λιγότερα", + "search.filters.filter.show-more": "Δείτε περισσότερα", + "search.filters.filter.subject.head": "Θέμα", + "search.filters.filter.subject.label": "Αναζήτηση θέματος", + "search.filters.filter.subject.placeholder": "Θέμα", + "search.filters.filter.submitter.head": "Υποβάλλων", + "search.filters.filter.submitter.label": "Αναζήτηση υποβάλλοντος", + "search.filters.filter.submitter.placeholder": "Υποβάλλων", + "search.filters.filter.withdrawn.head": "Διαγραμμένο", + "search.filters.has_content_in_original_bundle.false": "Οχι", + "search.filters.has_content_in_original_bundle.true": "Ναί", + "search.filters.head": "Φίλτρα", + "search.filters.reset": "Επαναφορά φίλτρων", + "search.filters.search.submit": "υποβάλλουν", + "search.filters.withdrawn.false": "Οχι", + "search.filters.withdrawn.true": "Ναί", + "search.form.scope.all": "Όλο το DSpace", + "search.form.search": "Αναζήτηση", + "search.form.search_dspace": "Όλο το αποθετήριο", + "search.results.empty": "Η αναζήτηση δεν επέστρεψε κανένα αποτέλεσμα.", + "search.results.head": "Αποτελέσματα αναζήτησης", + "search.results.no-results": "Η αναζήτηση δεν επέστρεψε κανένα αποτέλεσμα. Δυσκολεύεστε να βρείτε αυτό που ψάχνετε; Δοκιμάστε να βάλετε", + "search.results.no-results-link": "κάποια αποσπάσματα", + "search.results.view-result": "Προβολή", + "search.search-form.placeholder": "Αναζήτηση στο αποθετήριο...", + "search.sidebar.close": "Επιστροφή στα αποτελέσματα", + "search.sidebar.filters.title": "Φίλτρα", + "search.sidebar.open": "Εργαλεία αναζήτησης", + "search.sidebar.results": "Αποτελέσματα", + "search.sidebar.settings.rpp": "Αποτελέσματα ανά σελίδα", + "search.sidebar.settings.sort-by": "Ταξινόμηση κατά", + "search.sidebar.settings.title": "Ρυθμίσεις", + "search.switch-configuration.title": "προβολή", + "search.title": "Αναζήτηση", + "search.view-switch.show-detail": "Δείξε λεπτομέρεια", + "search.view-switch.show-grid": "Εμφάνιση ως πλέγμα", + "search.view-switch.show-list": "Εμφάνιση ως λίστα", + "sorting.ASC": "Αύξουσα", + "sorting.DESC": "Φθίνων", + "sorting.dc.date.accessioned.ASC": "Ημερομηνία πρόσβασης Αύξουσα", + "sorting.dc.date.accessioned.DESC": "Ημερομηνία πρόσβασης Φθίνουσα", + "sorting.dc.date.issued.ASC": "Ημερομηνία Διάθεσης Αύξουσα", + "sorting.dc.date.issued.DESC": "Ημερομηνία Διάθεσης Φθίνουσα", + "sorting.dc.title.ASC": "Τίτλος Αύξουσα", + "sorting.dc.title.DESC": "Τίτλος Φθίνουσα", + "sorting.lastModified.ASC": "Τελευταία τροποποίηση Αύξουσα", + "sorting.lastModified.DESC": "Τελευταία τροποποίηση Φθίνουσα", + "sorting.score.ASC": "Λιγότερο σχετικό", + "sorting.score.DESC": "Το πιο σχετικό", + "statistics.breadcrumbs": "Στατιστικά", + "statistics.header": "Στατιστικά στοιχεία για {{ range }}", + "statistics.page.no-data": "Δεν υπάρχουν διαθέσιμα δεδομένα", + "statistics.table.header.views": "Προβολές", + "statistics.table.no-data": "Δεν υπάρχουν διαθέσιμα δεδομένα", + "statistics.table.title.TopCities": "Κορυφαίες προβολές ανά πόλη", + "statistics.table.title.TopCountries": "Κορυφαίες προβολές ανά χώρα", + "statistics.table.title.TotalDownloads": "Λήψεις αρχείων", + "statistics.table.title.TotalVisits": "Συνολικές επισκέψεις", + "statistics.table.title.TotalVisitsPerMonth": "Συνολικές επισκέψεις ανά μήνα", + "statistics.title": "Στατιστικά", + "submission.edit.breadcrumbs": "Επεξεργασία υποβολής", + "submission.edit.title": "Επεξεργασία υποβολής", + "submission.general.cancel": "Ακύρωση", + "submission.general.cannot_submit": "Δεν έχετε το προνόμιο να υποβάλετε νέα υποβολή.", + "submission.general.deposit": "Κατάθεση", + "submission.general.discard.confirm.cancel": "Ακύρωση", + "submission.general.discard.confirm.info": "Αυτή η λειτουργία δεν μπορεί να αναιρεθεί. Είσαι σίγουρος?", + "submission.general.discard.confirm.submit": "Ναι είμαι σίγουρος", + "submission.general.discard.confirm.title": "Απόρριψη υποβολής", + "submission.general.discard.submit": "Απορρίπτω", + "submission.general.info.pending-changes": "Μη αποθηκευμένες αλλαγές", + "submission.general.info.saved": "Αποθηκεύτηκε", + "submission.general.save": "Αποθήκευση", + "submission.general.save-later": "Αποθήκευση για αργότερα", + "submission.import-external.back-to-my-dspace": "Επιστροφή στο χώρο μου", + "submission.import-external.page.hint": "Εισαγάγετε ένα ερώτημα παραπάνω για να βρείτε τεκμήρια από τον ιστό για εισαγωγή στο DSpace.", + "submission.import-external.page.title": "Εισαγωγή μεταδεδομένων από εξωτερική πηγή", + "submission.import-external.preview.button.import": "Έναρξη υποβολής", + "submission.import-external.preview.error.import.body": "Παρουσιάζεται σφάλμα κατά τη διαδικασία εισαγωγής εισαγωγής εξωτερικής πηγής.", + "submission.import-external.preview.error.import.title": "Σφάλμα υποβολής", + "submission.import-external.preview.subtitle": "Τα παρακάτω μεταδεδομένα εισήχθησαν από εξωτερική πηγή. Θα είναι προσυμπληρωμένο όταν ξεκινήσετε την υποβολή.", + "submission.import-external.preview.title": "Προεπισκόπηση τεκμηρίου", + "submission.import-external.preview.title.Journal": "Προεπισκόπηση περιοδικού", + "submission.import-external.preview.title.OrgUnit": "Προεπισκόπηση οργανωτικής μονάδας", + "submission.import-external.preview.title.Person": "Προεπισκόπηση ατόμου", + "submission.import-external.preview.title.Project": "Προεπισκόπηση έργου", + "submission.import-external.preview.title.Publication": "Προεπισκόπηση δημοσίευσης", + "submission.import-external.preview.title.none": "Προεπισκόπηση τεκμηρίου", + "submission.import-external.search.button": "Αναζήτηση", + "submission.import-external.search.button.hint": "Γράψτε μερικές λέξεις για αναζήτηση", + "submission.import-external.search.placeholder": "Αναζήτηση στην εξωτερική πηγή", + "submission.import-external.search.source.hint": "Επιλέξτε μια εξωτερική πηγή", + "submission.import-external.source.ads": "NASA/ADS", + "submission.import-external.source.arxiv": "arXiv", + "submission.import-external.source.cinii": "CiNii", + "submission.import-external.source.crossref": "CrossRef", + "submission.import-external.source.epo": "Ευρωπαϊκό Γραφείο Διπλωμάτων Ευρεσιτεχνίας (EPO)", + "submission.import-external.source.lcname": "Βιβλιοθήκη Ονομάτων του Κογκρέσου (Library of Congress Names)", + "submission.import-external.source.loading": "Φόρτωση ...", + "submission.import-external.source.openAIREFunding": "Χρηματοδότηση OpenAIRE API", + "submission.import-external.source.orcid": "ORCID", + "submission.import-external.source.orcidWorks": "ORCID", + "submission.import-external.source.pubmed": "Δημοσιεύτηκε", + "submission.import-external.source.pubmedeu": "Pubmed Europe", + "submission.import-external.source.scielo": "SciELO", + "submission.import-external.source.scopus": "Scopus", + "submission.import-external.source.sherpaJournal": "Περιοδικά SHERPA", + "submission.import-external.source.sherpaJournalIssn": "Περιοδικά SHERPA από το ISSN", + "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", + "submission.import-external.source.vufind": "VuFind", + "submission.import-external.source.wos": "Web Of Science", + "submission.import-external.title": "Εισαγωγή μεταδεδομένων από εξωτερική πηγή", + "submission.import-external.title.Journal": "Εισαγάγετε ένα ημερολόγιο από εξωτερική πηγή", + "submission.import-external.title.JournalIssue": "Εισαγάγετε ένα τεύχος περιοδικού από εξωτερική πηγή", + "submission.import-external.title.JournalVolume": "Εισαγωγή τόμου περιοδικού από εξωτερική πηγή", + "submission.import-external.title.OrgUnit": "Εισαγάγετε έναν εκδότη από εξωτερική πηγή", + "submission.import-external.title.Person": "Εισαγάγετε ένα άτομο από εξωτερική πηγή", + "submission.import-external.title.Project": "Εισαγωγή έργου από εξωτερική πηγή", + "submission.import-external.title.Publication": "Εισαγάγετε μια δημοσίευση από εξωτερική πηγή", + "submission.import-external.title.none": "Εισαγωγή μεταδεδομένων από εξωτερική πηγή", + "submission.sections.accesses.form.access-condition-hint": "Επιλέξτε μια συνθήκη πρόσβασης που θα εφαρμοστεί στο τεκμήριο μετά την κατάθεσή του", + "submission.sections.accesses.form.access-condition-label": "Τύπος συνθήκης πρόσβασης", + "submission.sections.accesses.form.date-required": "Απαιτείται ημερομηνία.", + "submission.sections.accesses.form.date-required-from": "Απαιτείται πρόσβαση επιχορήγησης από την ημερομηνία.", + "submission.sections.accesses.form.date-required-until": "Απαιτείται παραχώρηση πρόσβασης μέχρι την ημερομηνία.", + "submission.sections.accesses.form.discoverable-description": "Όταν είναι επιλεγμένο, αυτό το τεκμήριο θα μπορεί να εντοπιστεί στην αναζήτηση/περιήγηση. Όταν δεν είναι επιλεγμένο, το τεκμήριο θα είναι διαθέσιμο μόνο μέσω απευθείας συνδέσμου και δεν θα εμφανίζεται ποτέ στην αναζήτηση/περιήγηση.", + "submission.sections.accesses.form.discoverable-label": "Ανακαλύψιμο", + "submission.sections.accesses.form.from-hint": "Επιλέξτε την ημερομηνία από την οποία εφαρμόζεται η σχετική συνθήκη πρόσβασης", + "submission.sections.accesses.form.from-label": "Παραχώρηση πρόσβασης από", + "submission.sections.accesses.form.from-placeholder": "Από", + "submission.sections.accesses.form.group-label": "Ομάδα", + "submission.sections.accesses.form.group-required": "Απαιτείται ομάδα.", + "submission.sections.accesses.form.until-hint": "Επιλέξτε την ημερομηνία μέχρι την οποία εφαρμόζεται η σχετική συνθήκη πρόσβασης", + "submission.sections.accesses.form.until-label": "Παραχώρηση πρόσβασης μέχρι", + "submission.sections.accesses.form.until-placeholder": "Μέχρι", + "submission.sections.ccLicense.change": "Αλλάξτε τον τύπο της άδειας σας…", + "submission.sections.ccLicense.confirmation": "Παραχωρώ την παραπάνω άδεια", + "submission.sections.ccLicense.link": "Έχετε επιλέξει την ακόλουθη άδεια χρήσης:", + "submission.sections.ccLicense.none": "Δεν υπάρχουν διαθέσιμες άδειες", + "submission.sections.ccLicense.option.select": "Επιλέξτε μια επιλογή…", + "submission.sections.ccLicense.select": "Επιλέξτε έναν τύπο άδειας…", + "submission.sections.ccLicense.type": "Τύπος άδειας", + "submission.sections.describe.relationship-lookup.close": "Κλείσιμο", + "submission.sections.describe.relationship-lookup.external-source.added": "Προστέθηκε με επιτυχία η τοπική καταχώριση στην επιλογή", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Εισαγωγή απομακρυσμένου εξοπλισμού", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Εισαγωγή απομακρυσμένης εκδήλωσης", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "Εισαγωγή απομακρυσμένης χρηματοδότησης", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Εισαγωγή απομακρυσμένου τεύχους περιοδικού", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Εισαγωγή τόμου απομακρυσμένου περιοδικού", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Εισαγωγή απομακρυσμένου περιοδικού", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "Εισαγωγή απομακρυσμένης μονάδας οργανισμού", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Εισαγωγή απομακρυσμένου διπλώματος ευρεσιτεχνίας", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Εισαγωγή απομακρυσμένου ατόμου", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Εισαγωγή απομακρυσμένου προϊόντος", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Εισαγωγή απομακρυσμένου έργου", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Εισαγωγή απομακρυσμένης δημοσίευσης", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Εισαγωγή απομακρυσμένου συγγραφέα", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Εργο", + "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Εισαγωγή απομακρυσμένου τεκμηρίου", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Προστέθηκε με επιτυχία τεύχος τοπικού περιοδικού στην επιλογή", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Έγινε επιτυχής εισαγωγή και προσθήκη εξωτερικού τεύχους περιοδικού στην επιλογή", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Εισαγωγή Τεύχους απομακρυσμένου περιοδικού", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Προστέθηκε με επιτυχία ο τόμος τοπικού περιοδικού στην επιλογή", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Έγινε επιτυχής εισαγωγή και προσθήκη εξωτερικού τόμου ημερολογίου στην επιλογή", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Εισαγωγή τόμου απομακρυσμένου περιοδικού", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Προστέθηκε με επιτυχία τοπικό περιοδικό στην επιλογή", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Έγινε επιτυχής εισαγωγή και προσθήκη εξωτερικού ημερολογίου στην επιλογή", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Εισαγωγή απομακρυσμένου περιοδικού", + "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Authority", + "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Εισαγωγή authority", + "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Ακύρωση", + "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Επιλέξτε μια συλλογή στην οποία θα εισαγάγετε νέες καταχωρήσεις", + "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "οντότητες", + "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Εισαγωγή ως νέα τοπική οντότητα", + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Εισαγωγή από το arXiv", + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Εισαγωγή από LC Name", + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openAIREFunding": "Χρηματοδότηση OpenAIRE API", + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Εισαγωγή από ORCID", + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Εισαγωγή από το PubMed", + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Εισαγωγή από το Sherpa Journal", + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Εισαγωγή από τον Sherpa Publisher", + "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Εισαγωγή", + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Προστέθηκε με επιτυχία τοπικός συγγραφέας στην επιλογή", + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Έγινε επιτυχής εισαγωγή και προσθήκη εξωτερικού συντάκτη στην επιλογή", + "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Εισαγωγή απομακρυσμένου συντάκτη", + "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "Προστέθηκε νέα οντότητα!", + "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Εργο", + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Επιλέξτε ένα τοπικό αποτέλεσμα (ταίριασμα):", + "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Αποθηκεύστε μια νέα παραλλαγή ονόματος", + "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Θέλετε να αποθηκεύσετε το \"{{ value }}\" ως παραλλαγή ονόματος για αυτό το άτομο, ώστε εσείς και άλλοι να το χρησιμοποιήσετε ξανά για μελλοντικές υποβολές; Εάν δεν το κάνετε, μπορείτε ακόμα να το χρησιμοποιήσετε για αυτήν την υποβολή.", + "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Χρησιμοποιήστε μόνο για αυτήν την υποβολή", + "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Αποεπιλογή όλων", + "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Αποεπιλογή σελίδας", + "submission.sections.describe.relationship-lookup.search-tab.loading": "Φόρτωση...", + "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Ερώτημα αναζήτησης", + "submission.sections.describe.relationship-lookup.search-tab.search": "Πηγαίνω", + "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Αναζήτηση...", + "submission.sections.describe.relationship-lookup.search-tab.select-all": "Επιλογή όλων", + "submission.sections.describe.relationship-lookup.search-tab.select-page": "Επιλέξτε σελίδα", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Αρχεία τοπικών δεδομένων ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Τοπικά πακέτα δεδομένων ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Τοπικά περιοδικά ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Θέματα τοπικών περιοδικών ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Τόμοι τοπικών περιοδικών ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Τοπικές οργανωτικές μονάδες ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Τοπικοί συντάκτες ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Τοπικά έργα ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Τοπικές εκδόσεις ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Τοπικοί συντάκτες ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Αναζήτηση για Οργανωτικές Μονάδες", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Χρηματοδότης του Έργου", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Αναζήτηση για Φορείς Χρηματοδότησης", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Αναζήτηση για χρηματοδότηση", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Θέματα τοπικών περιοδικών ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Τοπικά περιοδικά ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Τόμοι τοπικών περιοδικών ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Εργα", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "Ονόματα LC ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openAIREFunding": "Χρηματοδότηση OpenAIRE API", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Περιοδικά Sherpa ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})", + "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Εναλλαγή αναπτυσσόμενου μενού", + "submission.sections.describe.relationship-lookup.selected": "Επιλεγμένα {{ size }} τεκμήρια", + "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Η επιλογή σας αυτή τη στιγμή είναι κενή.", + "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Αναζήτηση...", + "submission.sections.describe.relationship-lookup.selection-tab.settings": "Ρυθμίσεις", + "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Τρέχουσα επιλογή ({{ count }})", + "submission.sections.describe.relationship-lookup.selection-tab.title": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Επιλεγμένα Αρχεία Δεδομένων", + "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Επιλεγμένα πακέτα δεδομένων", + "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Επιλεγμένα περιοδικά", + "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Επιλεγμένο θέμα", + "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Επιλεγμένος τόμος περιοδικού", + "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Επιλεγμένες μονάδες οργανισμού", + "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Επιλεγμένοι Συγγραφείς", + "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Επιλεγμένα Έργα", + "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Επιλεγμένες δημοσιεύσεις", + "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Επιλεγμένοι Συγγραφείς", + "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Επιλεγμένη Μονάδα Οργανισμού", + "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Επιλεγμένος Φορέας Χρηματοδότησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Επιλεγμένη χρηματοδότηση", + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Επιλεγμένος τομος", + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Επιλεγμένα περιοδικά", + "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Επιλεγμένος τόμος περιοδικού", + "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Εργο", + "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.openAIREFunding": "Χρηματοδότηση OpenAIRE API", + "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "Αποτελέσματα αναζήτησης", + "submission.sections.describe.relationship-lookup.title.DataFile": "Αρχεία δεδομένων", + "submission.sections.describe.relationship-lookup.title.DataPackage": "Πακέτα δεδομένων", + "submission.sections.describe.relationship-lookup.title.Funding Agency": "Οργανισμός Χρηματοδότησης", + "submission.sections.describe.relationship-lookup.title.JournalIssue": "Θέματα περιοδικών", + "submission.sections.describe.relationship-lookup.title.JournalVolume": "Τόμοι περιοδικών", + "submission.sections.describe.relationship-lookup.title.OrgUnit": "Οργανωτικές Μονάδες", + "submission.sections.describe.relationship-lookup.title.Person": "Συγγραφείς", + "submission.sections.describe.relationship-lookup.title.Project": "Εργα", + "submission.sections.describe.relationship-lookup.title.Publication": "Δημοσιεύσεις", + "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Συγγραφείς", + "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Οργανωτική Μονάδα Γονέων", + "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Χρηματοδότης του Έργου", + "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Οργανισμός Χρηματοδότησης", + "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Χρηματοδότηση", + "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Θέματα περιοδικών", + "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "περιοδικά", + "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Τόμοι περιοδικών", + "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Εργα", + "submission.sections.general.add-more": "Πρόσθεσε περισσότερα", + "submission.sections.general.cannot_deposit": "Η κατάθεση δεν μπορεί να ολοκληρωθεί λόγω σφαλμάτων στη φόρμα.
Συμπληρώστε όλα τα απαιτούμενα πεδία για να ολοκληρώσετε την κατάθεση.", + "submission.sections.general.collection": "Συλλογή", + "submission.sections.general.deposit_error_notice": "Παρουσιάστηκε πρόβλημα κατά την υποβολή του τεκμηρίου, δοκιμάστε ξανά αργότερα.", + "submission.sections.general.deposit_success_notice": "Η υποβολή κατατέθηκε με επιτυχία.", + "submission.sections.general.discard_error_notice": "Παρουσιάστηκε πρόβλημα κατά την απόρριψη του τεκμηρίου, δοκιμάστε ξανά αργότερα.", + "submission.sections.general.discard_success_notice": "Η υποβολή απορρίφθηκε με επιτυχία.", + "submission.sections.general.metadata-extracted": "Έχουν εξαχθεί νέα μεταδεδομένα και προστέθηκαν στην ενότητα {{sectionId}}.", + "submission.sections.general.metadata-extracted-new-section": "Η νέα ενότητα {{sectionId}} προστέθηκε στην υποβολή.", + "submission.sections.general.no-collection": "Δεν βρέθηκε συλλογή", + "submission.sections.general.no-sections": "Δεν υπάρχουν διαθέσιμες επιλογές", + "submission.sections.general.save_error_notice": "Παρουσιάστηκε πρόβλημα κατά την αποθήκευση του τεκμηρίου, δοκιμάστε ξανά αργότερα.", + "submission.sections.general.save_success_notice": "Η υποβολή αποθηκεύτηκε με επιτυχία.", + "submission.sections.general.search-collection": "Αναζήτηση για μια συλλογή", + "submission.sections.general.sections_not_valid": "Υπάρχουν ημιτελείς ενότητες.", + "submission.sections.license.granted-label": "Επιβεβαιώνω την παραπάνω άδεια", + "submission.sections.license.notgranted": "Πρέπει να αποδεχτείτε την άδεια", + "submission.sections.license.required": "Πρέπει να αποδεχτείτε την άδεια", + "submission.sections.sherpa-policy.title-empty": "Δεν υπάρχουν διαθέσιμες πληροφορίες πολιτικής εκδότη. Εάν η εργασία σας έχει συσχετισμένο ISSN, καταχωρίστε το παραπάνω για να δείτε τυχόν σχετικές πολιτικές ανοιχτής πρόσβασης εκδότη.", + "submission.sections.sherpa.error.message": "Παρουσιάστηκε σφάλμα κατά την ανάκτηση των πληροφοριών σέρπα", + "submission.sections.sherpa.publication.information": "Πληροφορίες δημοσίευσης", + "submission.sections.sherpa.publication.information.issns": "ISSN", + "submission.sections.sherpa.publication.information.publishers": "Εκδότης", + "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", + "submission.sections.sherpa.publication.information.title": "Τίτλος", + "submission.sections.sherpa.publication.information.url": "URL", + "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", + "submission.sections.sherpa.publisher.policy": "Πολιτική εκδότη", + "submission.sections.sherpa.publisher.policy.conditions": "Συνθήκες", + "submission.sections.sherpa.publisher.policy.description": "Οι παρακάτω πληροφορίες βρέθηκαν μέσω του Sherpa Romeo. Βάσει των πολιτικών του εκδότη σας, παρέχει συμβουλές σχετικά με το εάν μπορεί να είναι απαραίτητο ένα εμπάργκο ή/και ποια αρχεία επιτρέπεται να ανεβάσετε. Εάν έχετε ερωτήσεις, επικοινωνήστε με τον διαχειριστή του ιστότοπού σας μέσω της φόρμας σχολίων στο υποσέλιδο.", + "submission.sections.sherpa.publisher.policy.embargo": "Απαγόρευση", + "submission.sections.sherpa.publisher.policy.license": "Αδεια", + "submission.sections.sherpa.publisher.policy.location": "Τοποθεσία", + "submission.sections.sherpa.publisher.policy.more.information": "Για περισσότερες πληροφορίες, δείτε τους παρακάτω συνδέσμους:", + "submission.sections.sherpa.publisher.policy.noembargo": "Χωρίς εμπάργκο", + "submission.sections.sherpa.publisher.policy.nolocation": "Κανένας", + "submission.sections.sherpa.publisher.policy.openaccess": "Οι διαδρομές ανοιχτής πρόσβασης που επιτρέπονται από την πολιτική αυτού του περιοδικού παρατίθενται παρακάτω ανά έκδοση άρθρου. Κάντε κλικ σε μια διαδρομή για μια πιο λεπτομερή προβολή", + "submission.sections.sherpa.publisher.policy.prerequisites": "Προαπαιτούμενα", + "submission.sections.sherpa.publisher.policy.refresh": "Ανανέωση", + "submission.sections.sherpa.publisher.policy.version": "Εκδοχή", + "submission.sections.sherpa.record.information": "Πληροφορίες εγγραφής", + "submission.sections.sherpa.record.information.date.created": "Ημερομηνία Δημιουργίας", + "submission.sections.sherpa.record.information.date.modified": "Τελευταία τροποποίηση", + "submission.sections.sherpa.record.information.id": "ID", + "submission.sections.sherpa.record.information.uri": "URI", + "submission.sections.status.errors.aria": "έχει λάθη", + "submission.sections.status.errors.title": "Σφάλματα", + "submission.sections.status.info.aria": "Επιπλέον πληροφορίες", + "submission.sections.status.info.title": "Επιπλέον πληροφορίες", + "submission.sections.status.valid.aria": "είναι έγκυρο", + "submission.sections.status.valid.title": "Εγκυρος", + "submission.sections.status.warnings.aria": "έχει προειδοποιήσεις", + "submission.sections.status.warnings.title": "Προειδοποιήσεις", + "submission.sections.submit.progressbar.CClicense": "Άδεια Creative Commons", + "submission.sections.submit.progressbar.accessCondition": "Συνθήκες πρόσβασης σε είδη", + "submission.sections.submit.progressbar.describe.recycle": "Ανακυκλωνω", + "submission.sections.submit.progressbar.describe.stepcustom": "Περιγράφω", + "submission.sections.submit.progressbar.describe.stepone": "Περιγράφω", + "submission.sections.submit.progressbar.describe.steptwo": "Περιγράφω", + "submission.sections.submit.progressbar.detect-duplicate": "Πιθανά διπλότυπα", + "submission.sections.submit.progressbar.license": "Άδεια κατάθεσης", + "submission.sections.submit.progressbar.sherpaPolicies": "Πληροφορίες πολιτικής ανοιχτής πρόσβασης εκδότη", + "submission.sections.submit.progressbar.sherpapolicy": "Πολιτικές Σέρπα", + "submission.sections.submit.progressbar.upload": "Μεταφόρτωση αρχείων", + "submission.sections.toggle.aria.close": "Σύμπτυξη ενότητας {{sectionHeader}}", + "submission.sections.toggle.aria.open": "Αναπτύξτε την ενότητα {{sectionHeader}}", + "submission.sections.toggle.close": "Κλείσιμο ενότητας", + "submission.sections.toggle.open": "Ανοίξτε την ενότητα", + "submission.sections.upload.delete.confirm.cancel": "Ακύρωση", + "submission.sections.upload.delete.confirm.info": "Αυτή η λειτουργία δεν μπορεί να αναιρεθεί. Είσαι σίγουρος?", + "submission.sections.upload.delete.confirm.submit": "Ναι είμαι σίγουρος", + "submission.sections.upload.delete.confirm.title": "Διαγραφή bitstream", + "submission.sections.upload.delete.submit": "Διαγραφή", + "submission.sections.upload.download.title": "Λήψη αρχείου", + "submission.sections.upload.drop-message": "Αποθέστε αρχεία για να τα επισυνάψετε στο τεκμήριο", + "submission.sections.upload.edit.title": "Επεξεργασία bitstream", + "submission.sections.upload.form.access-condition-hint": "Επιλέξτε μια συνθήκη πρόσβασης που θα εφαρμοστεί στη ροή bit μόλις κατατεθεί το τεκμήριο", + "submission.sections.upload.form.access-condition-label": "Τύπος συνθήκης πρόσβασης", + "submission.sections.upload.form.date-required": "Απαιτείται ημερομηνία.", + "submission.sections.upload.form.date-required-from": "Απαιτείται πρόσβαση επιχορήγησης από την ημερομηνία.", + "submission.sections.upload.form.date-required-until": "Απαιτείται παραχώρηση πρόσβασης μέχρι την ημερομηνία.", + "submission.sections.upload.form.from-hint": "Επιλέξτε την ημερομηνία από την οποία εφαρμόζεται η σχετική συνθήκη πρόσβασης", + "submission.sections.upload.form.from-label": "Παραχώρηση πρόσβασης από", + "submission.sections.upload.form.from-placeholder": "Από", + "submission.sections.upload.form.group-label": "Ομάδα", + "submission.sections.upload.form.group-required": "Απαιτείται ομάδα.", + "submission.sections.upload.form.until-hint": "Επιλέξτε την ημερομηνία μέχρι την οποία εφαρμόζεται η σχετική συνθήκη πρόσβασης", + "submission.sections.upload.form.until-label": "Παραχώρηση πρόσβασης μέχρι", + "submission.sections.upload.form.until-placeholder": "Μέχρι", + "submission.sections.upload.header.policy.default.nolist": "Τα μεταφορτωμένα αρχεία στη συλλογή {{collectionName}} θα είναι προσβάσιμα σύμφωνα με τις ακόλουθες ομάδες:", + "submission.sections.upload.header.policy.default.withlist": "Λάβετε υπόψη ότι τα μεταφορτωμένα αρχεία στη συλλογή {{collectionName}} θα είναι προσβάσιμα, επιπλέον των όσων έχουν αποφασιστεί ρητά για το μεμονωμένο αρχείο, με τις ακόλουθες ομάδες:", + "submission.sections.upload.info": "Εδώ θα βρείτε όλα τα αρχεία που βρίσκονται αυτήν τη στιγμή στο τεκμήριο. Μπορείτε να ενημερώσετε τα μεταδεδομένα του αρχείου και τις συνθήκες πρόσβασης ή να ανεβάσετε πρόσθετα αρχεία απλώς σύροντάς τα και αποθέτοντάς τα παντού στη σελίδα", + "submission.sections.upload.no-entry": "Οχι", + "submission.sections.upload.no-file-uploaded": "Δεν έχει μεταφορτωθεί ακόμα αρχείο.", + "submission.sections.upload.save-metadata": "Αποθήκευση μεταδεδομένων", + "submission.sections.upload.undo": "Ακύρωση", + "submission.sections.upload.upload-failed": "Η μεταφόρτωση απέτυχε", + "submission.sections.upload.upload-successful": "Επιτυχής μεταφόρτωση", + "submission.submit.breadcrumbs": "Νέα υποβολή", + "submission.submit.title": "Νέα υποβολή", + "submission.workflow.generic.delete": "Διαγραφή", + "submission.workflow.generic.delete-help": "Εάν θέλετε να απορρίψετε αυτό το τεκμήριο, επιλέξτε \"Διαγραφή\". Στη συνέχεια θα σας ζητηθεί να το επιβεβαιώσετε.", + "submission.workflow.generic.edit": "Επεξεργασία", + "submission.workflow.generic.edit-help": "Επιλέξτε αυτήν την επιλογή για να αλλάξετε τα μεταδεδομένα του τεκμηρίου.", + "submission.workflow.generic.view": "Προβολή", + "submission.workflow.generic.view-help": "Ορίστε αυτήν την επιλογή για να προβάλετε τα μεταδεδομένα του τεκμηρίου.", + "submission.workflow.tasks.claimed.approve": "Εγκρίνω", + "submission.workflow.tasks.claimed.approve_help": "Εάν έχετε ελέγξει το τεκμήριο και είναι κατάλληλο για συμπερίληψη στη συλλογή, επιλέξτε \"Έγκριση\".", + "submission.workflow.tasks.claimed.edit": "Επεξεργασία", + "submission.workflow.tasks.claimed.edit_help": "Επιλέξτε αυτήν την επιλογή για να αλλάξετε τα μεταδεδομένα του τεκμηρίου.", + "submission.workflow.tasks.claimed.reject.reason.info": "Εισαγάγετε τον λόγο απόρριψης της υποβολής στο παρακάτω πλαίσιο, υποδεικνύοντας εάν ο υποβάλλων μπορεί να διορθώσει ένα πρόβλημα και να το υποβάλει εκ νέου.", + "submission.workflow.tasks.claimed.reject.reason.placeholder": "Περιγράψτε τον λόγο απόρριψης", + "submission.workflow.tasks.claimed.reject.reason.submit": "Απόρριψη τεκμηρίου", + "submission.workflow.tasks.claimed.reject.reason.title": "Λόγος", + "submission.workflow.tasks.claimed.reject.submit": "Απορρίπτω", + "submission.workflow.tasks.claimed.reject_help": "Εάν έχετε ελέγξει το τεκμήριο και διαπιστώσατε ότι δεν είναι κατάλληλο για συμπερίληψη στη συλλογή, επιλέξτε \"Απόρριψη\". Στη συνέχεια, θα σας ζητηθεί να εισαγάγετε ένα μήνυμα που θα υποδεικνύει γιατί το τεκμήριο είναι ακατάλληλο και εάν ο υποβάλλων πρέπει να αλλάξει κάτι και να το υποβάλει ξανά.", + "submission.workflow.tasks.claimed.return": "Επιστροφή στο pool", + "submission.workflow.tasks.claimed.return_help": "Επιστρέψτε την εργασία στο pool έτσι ώστε ένας άλλος χρήστης να μπορεί να εκτελέσει την εργασία.", + "submission.workflow.tasks.generic.error": "Παρουσιάστηκε σφάλμα κατά τη λειτουργία...", + "submission.workflow.tasks.generic.processing": "Επεξεργασία...", + "submission.workflow.tasks.generic.submitter": "Υποβάλλων", + "submission.workflow.tasks.generic.success": "Επιτυχής λειτουργία", + "submission.workflow.tasks.pool.claim": "Απαίτηση", + "submission.workflow.tasks.pool.claim_help": "Αναθέστε αυτή την εργασία στον εαυτό σας.", + "submission.workflow.tasks.pool.hide-detail": "Απόκρυψη λεπτομέρειας", + "submission.workflow.tasks.pool.show-detail": "Λεπτομέρειες", + "submission.workspace.generic.view": "Προβολή", + "submission.workspace.generic.view-help": "Ορίστε αυτήν την επιλογή για να προβάλετε τα μεταδεδομένα του τεκμηρίου.", + "thumbnail.default.alt": "Μικρογραφία εικόνας", + "thumbnail.default.placeholder": "Δεν υπάρχει διαθέσιμη μικρογραφία", + "thumbnail.orgunit.alt": "Λογότυπο OrgUnit", + "thumbnail.orgunit.placeholder": "Εικόνα μονάδας οργανισμού", + "thumbnail.person.alt": "Εικόνα προφίλ", + "thumbnail.person.placeholder": "Δεν υπάρχει διαθέσιμη εικόνα προφίλ", + "thumbnail.project.alt": "Λογότυπο Έργου", + "thumbnail.project.placeholder": "Εικόνα θέσης κράτησης έργου", + "title": "DSpace", + "uploader.browse": "Πλοήγηση", + "uploader.delete.btn-title": "Διαγραφή", + "uploader.drag-message": "Σύρετε και αποθέστε τα αρχεία σας εδώ", + "uploader.or": ", ή", + "uploader.processing": "Επεξεργασία", + "uploader.queue-length": "Μέγεθος ουράς", + "virtual-metadata.delete-item.info": "Επιλέξτε τους τύπους για τους οποίους θέλετε να αποθηκεύσετε τα εικονικά μεταδεδομένα ως πραγματικά μεταδεδομένα", + "virtual-metadata.delete-item.modal-head": "Τα εικονικά μεταδεδομένα αυτής της σχέσης", + "virtual-metadata.delete-relationship.modal-head": "Επιλέξτε τα τεκμήρια για τα οποία θέλετε να αποθηκεύσετε τα εικονικά μεταδεδομένα ως πραγματικά μεταδεδομένα", + "vocabulary-treeview.header": "Ιεραρχική όψη δέντρου", + "vocabulary-treeview.load-more": "Φόρτωσε περισσότερα", + "vocabulary-treeview.search.form.reset": "Επαναφορά", + "vocabulary-treeview.search.form.search": "Αναζήτηση", + "vocabulary-treeview.search.no-result": "Δεν υπήρχαν τεκμήρια για εμφάνιση", + "vocabulary-treeview.tree.description.nsi": "Ο Νορβηγικός Δείκτης Επιστήμης", + "vocabulary-treeview.tree.description.srsc": "Ερευνητικές Θεματικές Κατηγορίες", + "workflow-item.delete.button.cancel": "Ακύρωση", + "workflow-item.delete.button.confirm": "Διαγραφή", + "workflow-item.delete.header": "Διαγραφή τεκμηρίου ροής εργασίας", + "workflow-item.delete.notification.error.content": "Δεν ήταν δυνατή η διαγραφή του τεκμηρίου ροής εργασίας", + "workflow-item.delete.notification.error.title": "Κάτι πήγε στραβά", + "workflow-item.delete.notification.success.content": "Αυτό το τεκμήριο ροής εργασίας διαγράφηκε με επιτυχία", + "workflow-item.delete.notification.success.title": "Διαγράφηκε", + "workflow-item.delete.title": "Διαγραφή τεκμηρίου ροής εργασίας", + "workflow-item.edit.breadcrumbs": "Επεξεργασία τεκμηρίου ροής εργασίας", + "workflow-item.edit.title": "Επεξεργασία τεκμηρίου ροής εργασίας", + "workflow-item.send-back.button.cancel": "Ακύρωση", + "workflow-item.send-back.button.confirm": "Αποστολή πίσω", + "workflow-item.send-back.header": "Αποστολή τεκμηρίου ροής εργασίας πίσω στον υποβάλλοντα", + "workflow-item.send-back.notification.error.content": "Δεν ήταν δυνατή η αποστολή του τεκμηρίου ροής εργασίας στον υποβάλλοντα", + "workflow-item.send-back.notification.error.title": "Κάτι πήγε στραβά", + "workflow-item.send-back.notification.success.content": "Αυτό το τεκμήριο ροής εργασίας στάλθηκε με επιτυχία στον υποβάλλοντα", + "workflow-item.send-back.notification.success.title": "Στάλθηκε πίσω στον υποβάλλοντα", + "workflow-item.send-back.title": "Αποστολή τεκμηρίου ροής εργασίας πίσω στον υποβάλλοντα", + "workflow-item.view.breadcrumbs": "Προβολή ροής εργασίας", + "workflow.search.results.head": "Εργασίες ροής εργασιών", + "workflowAdmin.search.results.head": "Διαχείριση ροής εργασιών", + "workspace-item.view.breadcrumbs": "Προβολή χώρου εργασίας", + "workspace-item.view.title": "Προβολή χώρου εργασίας", + "workspace.search.results.head": "Οι υποβολές σας" +} diff --git a/src/assets/i18n/kk.json5 b/src/assets/i18n/kk.json5 new file mode 100644 index 0000000000..56651ceaae --- /dev/null +++ b/src/assets/i18n/kk.json5 @@ -0,0 +1,7745 @@ +{ + + // "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": "unauthorized", + + // "error-page.description.403": "forbidden", + "error-page.description.403": "forbidden", + + // "error-page.description.500": "Service Unavailable", + "error-page.description.500": "Service Unavailable", + + // "error-page.description.404": "page not found", + "error-page.description.404": "page not found", + + // "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 есептік жазбаңыздың электрондық пошта мекенжайын бергеніңізге көз жеткізіңіз. Егер қате қайталанса, әкімшіге хабарласыңыз", + + // "access-status.embargo.listelement.badge": "Embargo", + "access-status.embargo.listelement.badge": "Эмбарго", + + // "access-status.metadata.only.listelement.badge": "Metadata only", + "access-status.metadata.only.listelement.badge": "Тек метадерек", + + // "access-status.open.access.listelement.badge": "Open Access", + "access-status.open.access.listelement.badge": "Ашық Қолжетімділік", + + // "access-status.restricted.listelement.badge": "Restricted", + "access-status.restricted.listelement.badge": "Шектеулі", + + // "access-status.unknown.listelement.badge": "Unknown", + "access-status.unknown.listelement.badge": "Белгісіз", + + // "admin.curation-tasks.breadcrumbs": "System curation tasks", + "admin.curation-tasks.breadcrumbs": "Тапсырмаларға жетекшілік ету жүйесі", + + // "admin.curation-tasks.title": "System curation tasks", + "admin.curation-tasks.title": "Тапсырмаларға жетекшілік ету жүйесі", + + // "admin.curation-tasks.header": "System curation tasks", + "admin.curation-tasks.header": "Тапсырмаларға жетекшілік ету жүйесі", + + // "admin.registries.bitstream-formats.breadcrumbs": "Format registry", + "admin.registries.bitstream-formats.breadcrumbs": "Тізілім форматы", + + // "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format", + "admin.registries.bitstream-formats.create.breadcrumbs": "Бит ағынының форматы", + + // "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.", + "admin.registries.bitstream-formats.create.failure.content": "Бит ағынының жаңа форматын құру қатесі.", + + // "admin.registries.bitstream-formats.create.failure.head": "Failure", + "admin.registries.bitstream-formats.create.failure.head": "Ақау", + + // "admin.registries.bitstream-formats.create.head": "Create Bitstream format", + "admin.registries.bitstream-formats.create.head": "Бит ағынының форматын жасау", + + // "admin.registries.bitstream-formats.create.new": "Add a new bitstream format", + "admin.registries.bitstream-formats.create.new": "Бит ағынының жаңа форматын қосыңыз", + + // "admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.", + "admin.registries.bitstream-formats.create.success.content": "Жаңа бит ағынының форматы сәтті жасалды.", + + // "admin.registries.bitstream-formats.create.success.head": "Success", + "admin.registries.bitstream-formats.create.success.head": "Сәтті", + + // "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)", + "admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} пішімін (лерін) жою мүмкін емес", + + // "admin.registries.bitstream-formats.delete.failure.head": "Failure", + "admin.registries.bitstream-formats.delete.failure.head": "Сәтсіздік", + + // "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)", + "admin.registries.bitstream-formats.delete.success.amount":"{{ amount }} пішімі (лері) сәтті жойылды", + + // "admin.registries.bitstream-formats.delete.success.head": "Success", + "admin.registries.bitstream-formats.delete.success.head": "Сәтті", + + // "admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.", + "admin.registries.bitstream-formats.description": "Бит ағынының форматтарының бұл тізімінде белгілі форматтар және оларды қолдау деңгейі туралы ақпарат бар.", + + // "admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format", + "admin.registries.bitstream-formats.edit.breadcrumbs": "Бит ағынының форматы", + + // "admin.registries.bitstream-formats.edit.description.hint": "", + "admin.registries.bitstream-formats.edit.description.hint": "", + + // "admin.registries.bitstream-formats.edit.description.label": "Description", + "admin.registries.bitstream-formats.edit.description.label": "Сипаттама", + + // "admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.", + "admin.registries.bitstream-formats.edit.extensions.hint": "Кеңейтімдер-бұл жүктелетін файл пішімін автоматты түрде анықтау үшін қолданылатын файл кеңейтімдері. Әр формат үшін бірнеше кеңейтімдерді енгізуге болады.", + + // "admin.registries.bitstream-formats.edit.extensions.label": "File extensions", + "admin.registries.bitstream-formats.edit.extensions.label": "Файл кеңейтімдері", + + // "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot", + "admin.registries.bitstream-formats.edit.extensions.placeholder": "Файл кеңейтімін нүктесіз енгізіңіз", + + // "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.", + "admin.registries.bitstream-formats.edit.failure.content": "Бит ағынының форматын өңдеу кезінде қате пайда болды.", + + // "admin.registries.bitstream-formats.edit.failure.head": "Failure", + "admin.registries.bitstream-formats.edit.failure.head": "Сәтсіздік", + + // "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}", + "admin.registries.bitstream-formats.edit.head": "Бит ағынының пішімі: {{ format }}", + + // "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.", + "admin.registries.bitstream-formats.edit.internal.hint": "Ішкі деп белгіленген форматтар қолданушыдан жасырылған және әкімшілік мақсатта қолданылады", + + // "admin.registries.bitstream-formats.edit.internal.label": "Internal", + "admin.registries.bitstream-formats.edit.internal.label": "Ішкі", + + // "admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.", + "admin.registries.bitstream-formats.edit.mimetype.hint": "Осы форматпен байланысты MIME түрі ерекше болуы міндетті емес.", + + // "admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type", + "admin.registries.bitstream-formats.edit.mimetype.label": "Пантомима түрі", + + // "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":"Бұл форматтың ерекше атауы,(e.g. Microsoft Word XP or 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": "Cәтті", + + // "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.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", + // TODO Source message changed - Revise the translation + "admin.registries.bitstream-formats.title": "DSpace Angular ::Бит ағыны форматтарының тізілімі", + + + + // "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": "Аттар кеңістігі", + + // "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.table.delete": "Delete selected", + "admin.registries.metadata.schemas.table.delete": "Жою таңдалған", + + // "admin.registries.metadata.schemas.table.id": "ID", + "admin.registries.metadata.schemas.table.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", + // TODO Source message changed - Revise the translation + "admin.registries.metadata.title": "DSpace Angular :: Метадеректер тізілімі", + + + + // "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": "Бұл \" {{аттар кеңістігі}} \" үшін метадеректер схемасы.", + + // "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.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", + // TODO Source message changed - Revise the translation + "admin.registries.schema.return": "Қайтару", + + // "admin.registries.schema.title": "Metadata Schema Registry", + // TODO Source message changed - Revise the translation + "admin.registries.schema.title": "DSpace Angular:: метадеректер тізбегінің тізілімі", + + + + // "admin.access-control.epeople.actions.delete": "Delete EPerson", + "admin.access-control.epeople.actions.delete": "Адамды жою", + + // "admin.access-control.epeople.actions.impersonate": "Impersonate EPerson", + "admin.access-control.epeople.actions.impersonate": "Өзіңді басқа адам ретінде көрсету", + + // "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": "Адам туралы ойлауды доғарыңыз", + + // "admin.access-control.epeople.breadcrumbs": "EPeople", + // TODO New key - Add a translation + "admin.access-control.epeople.breadcrumbs": "EPeople", + + // "admin.access-control.epeople.title": "EPeople", + // TODO Source message changed - Revise the translation + "admin.access-control.epeople.title": "DSpace Angular :: Адамдар", + + // "admin.access-control.epeople.head": "EPeople", + "admin.access-control.epeople.head": "Адамдар", + + // "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": "E-mail (exact)", + "admin.access-control.epeople.search.scope.email": "Электрондық пошта (exact)", + + // "admin.access-control.epeople.search.button": "Search", + "admin.access-control.epeople.search.button": "Іздеу", + + // "admin.access-control.epeople.search.placeholder": "Search people...", + // TODO New key - Add a translation + "admin.access-control.epeople.search.placeholder": "Search people...", + + // "admin.access-control.epeople.button.add": "Add EPerson", + "admin.access-control.epeople.button.add": "Адамды қосу", + + // "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": "E-mail (exact)", + "admin.access-control.epeople.table.email": "Электрондық пошта (exact)", + + // "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", + // TODO New key - Add a translation + "admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group", + + // "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": "No EPeople to show.", + "admin.access-control.epeople.no-items": "Көрсетуге болатын адамдар жоқ", + + // "admin.access-control.epeople.form.create": "Create EPerson", + "admin.access-control.epeople.form.create": "Адамды құру", + + // "admin.access-control.epeople.form.edit": "Edit EPerson", + "admin.access-control.epeople.form.edit": "Адамды редакциялау", + + // "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": "E-mail", + "admin.access-control.epeople.form.email": "Электрондық пошта", + + // "admin.access-control.epeople.form.emailHint": "Must be valid e-mail 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", + // TODO New key - Add a translation + "admin.access-control.epeople.form.return": "Back", + + // "admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"", + "admin.access-control.epeople.form.notification.created.success": "Сәтті құрылған Эпперсон \"{{name}}\"", + + // "admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"", + "admin.access-control.epeople.form.notification.created.failure": "Адамды құру мүмкін емес \"{{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": "Адамды құру мүмкін емес\"{{name}}\", email \"{{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": "Адамды өңдеу мүмкін емес\"{{name}}\", email \"{{email}}\" қазірдің өзінде қолданылады.", + + // "admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"", + "admin.access-control.epeople.form.notification.edited.success": "Сәтті өңделген адам \"{{name}}\"", + + // "admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"", + "admin.access-control.epeople.form.notification.edited.failure":"Адамды өңдеу мүмкін емес\"{{name}}\"", + + // "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"", + "admin.access-control.epeople.form.notification.deleted.success": "Сәтті жойылған тұлға \"{{name}}\"", + + // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", + "admin.access-control.epeople.form.notification.deleted.failure": "Пайдаланушыны жою мүмкін емес\"{{name}}\"", + + // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", + "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Осы топтардың мүшесі:", + + // "admin.access-control.epeople.form.table.id": "ID", + "admin.access-control.epeople.form.table.id": "Жеке куәлік", + + // "admin.access-control.epeople.form.table.name": "Name", + "admin.access-control.epeople.form.table.name": "Аты", + + // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", + // TODO New key - Add a translation + "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", + + // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", + "admin.access-control.epeople.form.memberOfNoGroups": "Бұл адам ешқандай топтың мүшесі емес", + + // "admin.access-control.epeople.form.goToGroups": "Add to groups", + "admin.access-control.epeople.form.goToGroups": "Топтарға қосу", + + // "admin.access-control.epeople.notification.deleted.failure": "Failed to delete EPerson: \"{{name}}\"", + "admin.access-control.epeople.notification.deleted.failure": "Пайдаланушыны өшіру мүмкін емес: \"{{name}}\"", + + // "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"", + "admin.access-control.epeople.notification.deleted.success": "Сәтті жойылған тұлға: \"{{name}}\"", + + + + // "admin.access-control.groups.title": "Groups", + // TODO Source message changed - Revise the translation + "admin.access-control.groups.title": "DSpace Angular :: Топтар", + + // "admin.access-control.groups.breadcrumbs": "Groups", + // TODO New key - Add a translation + "admin.access-control.groups.breadcrumbs": "Groups", + + // "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group", + // TODO New key - Add a translation + "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group", + + // "admin.access-control.groups.title.singleGroup": "Edit Group", + // TODO Source message changed - Revise the translation + "admin.access-control.groups.title.singleGroup": "DSpace Angular:: редакциялау тобы", + + // "admin.access-control.groups.title.addGroup": "New Group", + // TODO Source message changed - Revise the translation + "admin.access-control.groups.title.addGroup": "DSpace Angular :: Жаңа топ", + + // "admin.access-control.groups.addGroup.breadcrumbs": "New Group", + // TODO New key - Add a translation + "admin.access-control.groups.addGroup.breadcrumbs": "New Group", + + // "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...", + // TODO New key - Add a translation + "admin.access-control.groups.search.placeholder": "Search groups...", + + // "admin.access-control.groups.table.id": "ID", + "admin.access-control.groups.table.id": "Жеке куәлік", + + // "admin.access-control.groups.table.name": "Name", + "admin.access-control.groups.table.name": "Аты", + + // "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community", + // TODO New key - Add a translation + "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community", + + // "admin.access-control.groups.table.members": "Members", + "admin.access-control.groups.table.members": "Қатысушылар", + + // "admin.access-control.groups.table.edit": "Edit", + "admin.access-control.groups.table.edit": "Өңдеу", + + // "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"", + "admin.access-control.groups.table.edit.buttons.edit": "Редакциялау \"{{name}}\"", + + // "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"", + "admin.access-control.groups.table.edit.buttons.remove": "Өшіру \"{{name}}\"", + + // "admin.access-control.groups.no-items": "No groups found with this in their name or this as UUID", + "admin.access-control.groups.no-items": "Бұл атаумен немесе UUID сияқты топтар табылған жоқ", + + // "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"", + "admin.access-control.groups.notification.deleted.success": "Сәтті қашықтағы топ \"{{name}}\"", + + // "admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"", + "admin.access-control.groups.notification.deleted.failure.title": "Топты жою мүмкін емес \"{{name}}\"", + + // "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"", + "admin.access-control.groups.notification.deleted.failure.content": "Себебі: \"{{cause}}\"", + + + + // "admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.", + "admin.access-control.groups.form.alert.permanent": "Бұл топ тұрақты, сондықтан оны өңдеуге немесе жоюға болмайды. Осы бетті қолдана отырып, топ мүшелерін қосуға және жоюға болады.", + + // "admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the \"assign roles\" tab on the edit {{comcol}} page. You can still add and remove group members using this page.", + "admin.access-control.groups.form.alert.workflowGroup": "Бұл топты өзгерту немесе жою мүмкін емес, өйткені ол жіберу және жұмыс процесінің рөліне сәйкес келеді \"{{name}}\" {{comcol}}. Сіз оны \"рөлдерді тағайындау\" өңдеу қойындысы {{comcol}} page. You can still add and remove group members using this page.", + + // "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", + // TODO New key - Add a translation + "admin.access-control.groups.form.groupCommunity": "Community or Collection", + + // "admin.access-control.groups.form.groupDescription": "Description", + "admin.access-control.groups.form.groupDescription":"Сипаттама", + + // "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"", + "admin.access-control.groups.form.notification.created.success": "Сәтті құрылған топ \"{{name}}\"", + + // "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"", + "admin.access-control.groups.form.notification.created.failure": "Топ құру мүмкін емес \"{{name}}\"", + + // "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "Failed to create Group with name: \"{{name}}\", make sure the name is not already in use.", + "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "Аты бар топ құру мүмкін емес: \"{{name}}\", бұл атау әлі қолданылмағанына көз жеткізіңіз.", + + // "admin.access-control.groups.form.notification.edited.failure": "Failed to edit Group \"{{name}}\"", + "admin.access-control.groups.form.notification.edited.failure": "Топты өңдеу мүмкін емес\"{{name}}\"", + + // "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!", + "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Аты \"{{name}}\" қазірдің өзінде қолданылады", + + // "admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"", + "admin.access-control.groups.form.notification.edited.success": "Сәтті өңделген топ \"{{name}}\"", + + // "admin.access-control.groups.form.actions.delete": "Delete Group", + "admin.access-control.groups.form.actions.delete": "Топты өшіру", + + // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"", + "admin.access-control.groups.form.delete-group.modal.header": "Топты жою \"{{ dsoName }}\"", + + // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\"", + "admin.access-control.groups.form.delete-group.modal.info": "Сіз топты жойғыңыз келетініне сенімдісіз \"{{ dsoName }}\"", + + // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel", + "admin.access-control.groups.form.delete-group.modal.cancel": "Болдырмау", + + // "admin.access-control.groups.form.delete-group.modal.confirm": "Delete", + "admin.access-control.groups.form.delete-group.modal.confirm": "Жою", + + // "admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"", + "admin.access-control.groups.form.notification.deleted.success": "Сәтті қашықтағы топ \"{{ name }}\"", + + // "admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"", + "admin.access-control.groups.form.notification.deleted.failure.title": "Топты жою мүмкін емес\"{{ name }}\"", + + // "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"", + "admin.access-control.groups.form.notification.deleted.failure.content": "Өйткені: \"{{ cause }}\"", + + // "admin.access-control.groups.form.members-list.head": "EPeople", + "admin.access-control.groups.form.members-list.head": "Адамдар", + + // "admin.access-control.groups.form.members-list.search.head": "Add EPeople", + "admin.access-control.groups.form.members-list.search.head": "Адамдарды қосу", + + // "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.scope.metadata": "Metadata", + "admin.access-control.groups.form.members-list.search.scope.metadata": "Метадеректер", + + // "admin.access-control.groups.form.members-list.search.scope.email": "E-mail (exact)", + "admin.access-control.groups.form.members-list.search.scope.email": "Электрондық пошта (exact)", + + // "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": "Жеке куәлік", + + // "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", + // TODO New key - Add a translation + "admin.access-control.groups.form.members-list.table.identity": "Identity", + + // "admin.access-control.groups.form.members-list.table.email": "Email", + // TODO New key - Add a translation + "admin.access-control.groups.form.members-list.table.email": "Email", + + // "admin.access-control.groups.form.members-list.table.netid": "NetID", + // TODO New key - Add a translation + "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": "Жою/ Add", + + // "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"", + "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "Қатысушыны аты-жөнімен жою \"{{name}}\"", + + // "admin.access-control.groups.form.members-list.notification.success.addMember": "Successfully added member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.success.addMember":"Сәтті қосылған мүше: \"{{name}}\"", + + // "admin.access-control.groups.form.members-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.addMember":"Қатысушыны қосу мүмкін емес: \"{{name}}\"", + + // "admin.access-control.groups.form.members-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.success.deleteMember": "Сәтті қашықтағы мүше: \"{{name}}\"", + + // "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"", + "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Қатысушыны жою мүмкін емес: \"{{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": "Бұл іздеу барысында бірде-бір адам табылған жоқ", + + // "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure": "Бір нәрсе дұрыс болмады: \"{{cause}}\"", + + // "admin.access-control.groups.form.subgroups-list.head": "Groups", + "admin.access-control.groups.form.subgroups-list.head": "Топтар", + + // "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup", + "admin.access-control.groups.form.subgroups-list.search.head":"Кіші топты қосу", + + // "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All", + "admin.access-control.groups.form.subgroups-list.button.see-all": "Барлығын Қарау", + + // "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups", + "admin.access-control.groups.form.subgroups-list.headSubgroups": "Ағымдағы кіші топтар", + + // "admin.access-control.groups.form.subgroups-list.search.button": "Search", + "admin.access-control.groups.form.subgroups-list.search.button": "Іздеу", + + // "admin.access-control.groups.form.subgroups-list.table.id": "ID", + "admin.access-control.groups.form.subgroups-list.table.id": "Жеке куәлік", + + // "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", + // TODO New key - Add a translation + "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community", + + // "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}}\"", + // TODO Source message changed - Revise the translation + "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "Атауы бар кіші топты қосыңыз \"{{name}}\"", + + // "admin.access-control.groups.form.subgroups-list.table.edit.currentGroup": "Current group", + "admin.access-control.groups.form.subgroups-list.table.edit.currentGroup": "Ағымдағы топ", + + // "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "Successfully added subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "Successfully added subgroup: \"{{name}}\"", + + // "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Failed to add subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Кіші топ қосу мүмкін емес: \"{{name}}\"", + + // "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Successfully deleted subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Сәтті жойылған кіші топ: \"{{name}}\"", + + // "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "Failed to delete subgroup: \"{{name}}\"", + "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "Кіші топты жою мүмкін емес: \"{{name}}\"", + + // "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "No current active group, submit a name first.", + "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "Ағымдағы белсенді топ жоқ, алдымен атын енгізіңіз.", + + // "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "This is the current group, can't be added.", + "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "Бұл қазіргі топ, оны қосу мүмкін емес.", + + // "admin.access-control.groups.form.subgroups-list.no-items": "No groups found with this in their name or this as UUID", + "admin.access-control.groups.form.subgroups-list.no-items": "Бұл атаумен немесе UUID сияқты топтар табылған жоқ", + + // "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "No subgroups in group yet.", + "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "Топта әлі кіші топтар жоқ.", + + // "admin.access-control.groups.form.return": "Back", + // TODO Source message changed - Revise the translation + "admin.access-control.groups.form.return": "Топтарға оралу", + + + + // "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", + // TODO Source message changed - Revise the translation + "admin.search.item.make-private": "Жеке ету", + + // "admin.search.item.make-public": "Make discoverable", + // TODO Source message changed - Revise the translation + "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.delete": "Delete", + "admin.workflow.item.delete": "Жою", + + // "admin.workflow.item.send-back": "Send back", + "admin.workflow.item.send-back": "Кері жіберу", + + + + // "admin.metadata-import.breadcrumbs": "Import Metadata", + "admin.metadata-import.breadcrumbs": "Метадеректерді импорттау", + + // "admin.metadata-import.title": "Import Metadata", + "admin.metadata-import.title": "Метадеректерді импорттау", + + // "admin.metadata-import.page.header": "Import Metadata", + "admin.metadata-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.metadata-import.page.dropMsg": "Drop a metadata CSV to import", + "admin.metadata-import.page.dropMsg": "Импорттау үшін метадеректердің CSV файлын сүйреңіз", + + // "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import", + "admin.metadata-import.page.dropMsgReplace": "Импорттау үшін CSV метадеректерін ауыстыру үшін тастаңыз", + + // "admin.metadata-import.page.button.return": "Back", + // TODO Source message changed - Revise the translation + "admin.metadata-import.page.button.return": "Қайтару", + + // "admin.metadata-import.page.button.proceed": "Proceed", + "admin.metadata-import.page.button.proceed": "Жалғастыра беріңіз", + + // "admin.metadata-import.page.error.addFile": "Select file first!", + "admin.metadata-import.page.error.addFile": "Алдымен файлды таңдаңыз!", + + // "admin.metadata-import.page.validateOnly": "Validate Only", + // TODO New key - Add a translation + "admin.metadata-import.page.validateOnly": "Validate Only", + + // "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.", + // TODO New key - Add a translation + "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.", + + + + + // "auth.errors.invalid-user": "Invalid email address or password.", + // TODO New key - Add a translation + "auth.errors.invalid-user": "Invalid email address or password.", + + // "auth.messages.expired": "Your session has expired. Please log in again.", + // TODO New key - Add a translation + "auth.messages.expired": "Your session has expired. Please log in again.", + + // "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.", + // TODO New key - Add a translation + "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.", + + + + // "bitstream.download.page": "Now downloading {{bitstream}}..." , + // TODO New key - Add a translation + "bitstream.download.page": "Now downloading {{bitstream}}..." , + + // "bitstream.download.page.back": "Back" , + // TODO New key - Add a translation + "bitstream.download.page.back": "Back" , + + + // "bitstream.edit.authorizations.link": "Edit bitstream's Policies", + // TODO New key - Add a translation + "bitstream.edit.authorizations.link": "Edit bitstream's Policies", + + // "bitstream.edit.authorizations.title": "Edit bitstream's Policies", + // TODO New key - Add a translation + "bitstream.edit.authorizations.title": "Edit bitstream's Policies", + + // "bitstream.edit.return": "Back", + // TODO New key - Add a translation + "bitstream.edit.return": "Back", + + // "bitstream.edit.bitstream": "Bitstream: ", + "bitstream.edit.bitstream": "Битстрим: ", + + // "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".", + "bitstream.edit.form.description.hint": "Қажет болса, файлдың қысқаша сипаттамасын беріңіз, мысалы \"Негізгі мақала\" немесе \"Тәжірибелік деректер көрсеткіштері\".", + + // "bitstream.edit.form.description.label": "Description", + "bitstream.edit.form.description.label": "Сипаттамасы", + + // "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.", + "bitstream.edit.form.embargo.hint": "Кіруге рұқсат етілген бірінші күн. Бұл күнді осы формада өзгерту мүмкін емес. Бит ағынына тыйым салу күнін белгілеу үшін, мына жерге өтіңіз элемент дәрежесі қойындысын басыңыз Тіркелу..., бит ағынын жасау немесе өңдеу ОҚУ ереже және орнату Басталу Күні қалауы бойынша.", + + // "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 мекенжайын өзгертетініне назар аударыңыз, бірақ бірізділік идентификаторы өзгергенге дейін ескі сілтемелер әлі де жарамды болады.", + + // "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 bitstream", + "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.form.iiifLabel.label": "IIIF Label", + // TODO New key - Add a translation + "bitstream.edit.form.iiifLabel.label": "IIIF Label", + + // "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.", + // TODO New key - Add a translation + "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.", + + // "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents", + // TODO New key - Add a translation + "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents", + + // "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.", + // TODO New key - Add a translation + "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.", + + // "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width", + // TODO New key - Add a translation + "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width", + + // "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.", + // TODO New key - Add a translation + "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.", + + // "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height", + // TODO New key - Add a translation + "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height", + + // "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.", + // TODO New key - Add a translation + "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.", + + + // "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 ", + // TODO New key - Add a translation + "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.canDownload2": "here", + // TODO New key - Add a translation + "bitstream-request-a-copy.alert.canDownload2": "here", + + // "bitstream-request-a-copy.header": "Request a copy of the file", + // TODO New key - Add a translation + "bitstream-request-a-copy.header": "Request a copy of the file", + + // "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": "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. ", + // TODO New key - Add a translation + "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ", + + // "bitstream-request-a-copy.name.label": "Name *", + // TODO New key - Add a translation + "bitstream-request-a-copy.name.label": "Name *", + + // "bitstream-request-a-copy.name.error": "The name is required", + // TODO New key - Add a translation + "bitstream-request-a-copy.name.error": "The name is required", + + // "bitstream-request-a-copy.email.label": "Your e-mail address *", + // TODO New key - Add a translation + "bitstream-request-a-copy.email.label": "Your e-mail address *", + + // "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.", + // TODO New key - Add a translation + "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.", + + // "bitstream-request-a-copy.email.error": "Please enter a valid email address.", + // TODO New key - Add a translation + "bitstream-request-a-copy.email.error": "Please enter a valid email address.", + + // "bitstream-request-a-copy.allfiles.label": "Files", + // TODO New key - Add a translation + "bitstream-request-a-copy.allfiles.label": "Files", + + // "bitstream-request-a-copy.files-all-false.label": "Only the requested file", + // TODO New key - Add a translation + "bitstream-request-a-copy.files-all-false.label": "Only the requested file", + + // "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access", + // TODO New key - Add a translation + "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access", + + // "bitstream-request-a-copy.message.label": "Message", + // TODO New key - Add a translation + "bitstream-request-a-copy.message.label": "Message", + + // "bitstream-request-a-copy.return": "Back", + // TODO New key - Add a translation + "bitstream-request-a-copy.return": "Back", + + // "bitstream-request-a-copy.submit": "Request copy", + // TODO New key - Add a translation + "bitstream-request-a-copy.submit": "Request copy", + + // "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.", + // TODO New key - Add a translation + "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.", + + // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", + // TODO New key - Add a translation + "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.", + + + + // "browse.back.all-results": "All browse results", + // TODO New key - Add a translation + "browse.back.all-results": "All browse 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.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.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.title.breadcrumbs": "Browse by Title", + "browse.metadata.title.breadcrumbs": "Тақырыбы бойынша қарау", + + // "pagination.next.button": "Next", + // TODO New key - Add a translation + "pagination.next.button": "Next", + + // "pagination.previous.button": "Previous", + // TODO New key - Add a translation + "pagination.previous.button": "Previous", + + // "pagination.next.button.disabled.tooltip": "No more pages of results", + // TODO New key - Add a translation + "pagination.next.button.disabled.tooltip": "No more pages of results", + + // "browse.startsWith": ", starting with {{ startsWith }}", + // TODO New key - Add a translation + "browse.startsWith": ", starting with {{ 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", + // TODO New key - Add a translation + "browse.startsWith.choose_year.label": "Choose the issue year", + + // "browse.startsWith.jump": "Filter results by year or month", + // TODO Source message changed - Revise the translation + "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", + // TODO New key - Add a translation + "browse.startsWith.months.none.label": "Choose the issue month", + + // "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", + // TODO Source message changed - Revise the translation + "browse.startsWith.submit": "Go", + + // "browse.startsWith.type_date": "Filter results by date", + // TODO Source message changed - Revise the translation + "browse.startsWith.type_date": "Немесе күнді енгізіңіз (жыл-ай):", + + // "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button", + // TODO New key - Add a translation + "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button", + + // "browse.startsWith.type_text": "Filter results by typing the first few letters", + // TODO Source message changed - Revise the translation + "browse.startsWith.type_text": "Немесе алғашқы бірнеше әріптерді енгізіңіз:", + + // "browse.title": "Browsing {{ collection }} by {{ field }}{{ startsWith }} {{ value }}", + // TODO Source message changed - Revise the translation + "browse.title": "{{collection}} {{field}} {{value}} бойынша қараңыз", + + // "browse.title.page": "Browsing {{ collection }} by {{ field }} {{ value }}", + // TODO New key - Add a translation + "browse.title.page": "Browsing {{ collection }} by {{ field }} {{ value }}", + + + // "chips.remove": "Remove chip", + "chips.remove": "Чипті жою", + + + + // "collection.create.head": "Create a Collection", + "collection.create.head": "Топтама Жасау", + + // "collection.create.notifications.success": "Successfully created the Collection", + "collection.create.notifications.success": "Топтама сәтті жасалды", + + // "collection.create.sub-head": "Create a Collection for Community {{ parent }}", + "collection.create.sub-head": "Қауымдастық үшін Топтама жасау {{ parent }}", + + // "collection.curate.header": "Curate Collection: {{collection}}", + "collection.curate.header": "Кураторлық Топтама: {{collection}}", + + // "collection.delete.cancel": "Cancel", + "collection.delete.cancel": "Бас тарту", + + // "collection.delete.confirm": "Confirm", + "collection.delete.confirm": "Растау", + + // "collection.delete.processing": "Deleting", + // TODO New key - Add a translation + "collection.delete.processing": "Deleting", + + // "collection.delete.head": "Delete Collection", + "collection.delete.head": "Топтаманы жою", + + // "collection.delete.notification.fail": "Collection could not be deleted", + "collection.delete.notification.fail": "Топтаманы жою мүмкін емес", + + // "collection.delete.notification.success": "Successfully deleted collection", + "collection.delete.notification.success": "Топтама сәтті жойылды", + + // "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"", + "collection.delete.text": "Сіз шынымен топтаманы жойғыңыз келеді ме\"{{ dso }}\"", + + + + // "collection.edit.delete": "Delete this collection", + "collection.edit.delete": "Осы топтаманы жою", + + // "collection.edit.head": "Edit Collection", + "collection.edit.head": "Топтаманы Өңдеу", + + // "collection.edit.breadcrumbs": "Edit Collection", + "collection.edit.breadcrumbs": "Топтаманы Өңдеу", + + + + // "collection.edit.tabs.mapper.head": "Item Mapper", + "collection.edit.tabs.mapper.head": "Элементті Түрлендіру", + + // "collection.edit.tabs.item-mapper.title": "Collection Edit - Item Mapper", + "collection.edit.tabs.item-mapper.title": "Топтаманы Өңдеу - Элементті Түрлендіру", + + // "collection.edit.item-mapper.cancel": "Cancel", + "collection.edit.item-mapper.cancel": "Бас тарту", + + // "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"", + "collection.edit.item-mapper.collection": "Топтама: \"{{name}}\"", + + // "collection.edit.item-mapper.confirm": "Map selected items", + "collection.edit.item-mapper.confirm": "Таңдалған элементтерді көрсету", + + // "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.", + "collection.edit.item-mapper.description": "Бұл топтама әкімшілеріне басқа топтамалардан осы топтамаға элементтерді көрсетуге мүмкіндік беретін элементтерді көрсету құралы. Сіз басқа топтамалардандан заттарды іздей аласыз және оларды картаға түсіре аласыз немесе ағымдағы көрсетілген элементтердің тізімін көре аласыз.", + + // "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections", + "collection.edit.item-mapper.head": "Элементті Түрлендіру - Басқа топтамалардан элементтерді көрсету", + + // "collection.edit.item-mapper.no-search": "Please enter a query to search", + "collection.edit.item-mapper.no-search": "Іздеу үшін ақпаратты енгізіңіз", + + // "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.", + "collection.edit.item-mapper.notifications.map.error.content": "Элементтерді салыстыру кезінде қателер орын алды {{amount}}.", + + // "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors", + "collection.edit.item-mapper.notifications.map.error.head": "Түрлендіру қателері", + + // "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.", + "collection.edit.item-mapper.notifications.map.success.content": "Элементтер сәтті салыстырылды {{amount}} .", + + // "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed", + "collection.edit.item-mapper.notifications.map.success.head": "Салыстыру аяқталды", + + // "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.", + "collection.edit.item-mapper.notifications.unmap.error.content": "Элементтердің салыстыруларын жою кезінде қателер орын алды {{amount}} .", + + // "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors", + "collection.edit.item-mapper.notifications.unmap.error.head": "Салыстыру қателерін жою", + + // "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.", + "collection.edit.item-mapper.notifications.unmap.success.content": "Элементтердің салыстырулары сәтті жойылды {{amount}} .", + + // "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed", + "collection.edit.item-mapper.notifications.unmap.success.head": "Салыстыруды жою аяқталды", + + // "collection.edit.item-mapper.remove": "Remove selected item mappings", + "collection.edit.item-mapper.remove": "Таңдалған элементтердің салыстыруларын жою", + + // "collection.edit.item-mapper.search-form.placeholder": "Search items...", + // TODO New key - Add a translation + "collection.edit.item-mapper.search-form.placeholder": "Search items...", + + // "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", + // TODO New key - Add a translation + "collection.edit.logo.delete.title": "Delete logo", + + // "collection.edit.logo.delete-undo.title": "Undo delete", + // TODO New key - Add a translation + "collection.edit.logo.delete-undo.title": "Undo delete", + + // "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": "Upload 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", + // TODO Source message changed - Revise the translation + "collection.edit.return": "Қайтару", + + + + // "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", + // TODO New key - Add a translation + "collection.edit.item.authorizations.load-bundle-button": "Load more bundles", + + // "collection.edit.item.authorizations.load-more-button": "Load more", + // TODO New key - Add a translation + "collection.edit.item.authorizations.load-more-button": "Load more", + + // "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle", + // TODO New key - Add a translation + "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle", + + // "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": "Метадеректер мен бит ағындарын жинау (requires ORE support)(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": "Метадеректер мен биттік ағындарға сілтемелерді жинау (requires ORE support)(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": "Changed 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", + // TODO New key - Add a translation + "collection.edit.template.error": "An error occurred retrieving the template item", + + // "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...", + // TODO New key - Add a translation + "collection.edit.template.loading": "Loading template item...", + + // "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", + // TODO New key - Add a translation + "collection.form.entityType": "Entity Type", + + + + // "collection.listelement.badge": "Collection", + "collection.listelement.badge": "Топтама", + + + + // "collection.page.browse.recent.head": "Recent Submissions", + "collection.page.browse.recent.head": "Соңғы Материалдар", + + // "collection.page.browse.recent.empty": "No items to show", + "collection.page.browse.recent.empty": "Көрсету үшін элементтер жоқ", + + // "collection.page.edit": "Edit this collection", + "collection.page.edit": "Жинақты өңдеңіз", + + // "collection.page.handle": "Permanent URI for this collection", + // TODO New key - Add a translation + "collection.page.handle": "Permanent URI for this collection", + + // "collection.page.license": "License", + "collection.page.license": "Лицензия", + + // "collection.page.news": "News", + "collection.page.news": "Жаңалықтар", + + + + // "collection.select.confirm": "Confirm selected", + "collection.select.confirm": "Таңдалғанды растау", + + // "collection.select.empty": "No collections to show", + "collection.select.empty": "Көрсету үшін топтамалар жоқ", + + // "collection.select.table.title": "Title", + "collection.select.table.title": "Тақырыбы", + + + // "collection.source.controls.head": "Harvest Controls", + // TODO New key - Add a translation + "collection.source.controls.head": "Harvest Controls", + // "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings", + // TODO New key - Add a translation + "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings", + // "collection.source.controls.test.failed": "The script to test the settings has failed", + // TODO New key - Add a translation + "collection.source.controls.test.failed": "The script to test the settings has failed", + // "collection.source.controls.test.completed": "The script to test the settings has successfully finished", + // TODO New key - Add a translation + "collection.source.controls.test.completed": "The script to test the settings has successfully finished", + // "collection.source.controls.test.submit": "Test configuration", + // TODO New key - Add a translation + "collection.source.controls.test.submit": "Test configuration", + // "collection.source.controls.test.running": "Testing configuration...", + // TODO New key - Add a translation + "collection.source.controls.test.running": "Testing configuration...", + // "collection.source.controls.import.submit.success": "The import has been successfully initiated", + // TODO New key - Add a translation + "collection.source.controls.import.submit.success": "The import has been successfully initiated", + // "collection.source.controls.import.submit.error": "Something went wrong with initiating the import", + // TODO New key - Add a translation + "collection.source.controls.import.submit.error": "Something went wrong with initiating the import", + // "collection.source.controls.import.submit": "Import now", + // TODO New key - Add a translation + "collection.source.controls.import.submit": "Import now", + // "collection.source.controls.import.running": "Importing...", + // TODO New key - Add a translation + "collection.source.controls.import.running": "Importing...", + // "collection.source.controls.import.failed": "An error occurred during the import", + // TODO New key - Add a translation + "collection.source.controls.import.failed": "An error occurred during the import", + // "collection.source.controls.import.completed": "The import completed", + // TODO New key - Add a translation + "collection.source.controls.import.completed": "The import completed", + // "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated", + // TODO New key - Add a translation + "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated", + // "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport", + // TODO New key - Add a translation + "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport", + // "collection.source.controls.reset.failed": "An error occurred during the reset and reimport", + // TODO New key - Add a translation + "collection.source.controls.reset.failed": "An error occurred during the reset and reimport", + // "collection.source.controls.reset.completed": "The reset and reimport completed", + // TODO New key - Add a translation + "collection.source.controls.reset.completed": "The reset and reimport completed", + // "collection.source.controls.reset.submit": "Reset and reimport", + // TODO New key - Add a translation + "collection.source.controls.reset.submit": "Reset and reimport", + // "collection.source.controls.reset.running": "Resetting and reimporting...", + // TODO New key - Add a translation + "collection.source.controls.reset.running": "Resetting and reimporting...", + // "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": "Harvest start time:", + // TODO New key - Add a translation + "collection.source.controls.harvest.start": "Harvest start time:", + // "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": "Harvest info:", + // TODO New key - Add a translation + "collection.source.controls.harvest.message": "Harvest info:", + // "collection.source.controls.harvest.no-information": "N/A", + // TODO New key - Add a translation + "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", + // TODO New key - Add a translation + "communityList.breadcrumbs": "Community List", + + // "communityList.tabTitle": "Community List", + // TODO Source message changed - Revise the translation + "communityList.tabTitle": "DSpace - Қауымдастық Тізімі", + + // "communityList.title": "List of Communities", + "communityList.title": "Қауымдастықтар Тізімі", + + // "communityList.showMore": "Show More", + "communityList.showMore": "Көбірек Көрсету", + + + + // "community.create.head": "Create a Community", + "community.create.head": "Қауымдастық Құру", + + // "community.create.notifications.success": "Successfully created the Community", + "community.create.notifications.success": "Қауымдастық Сәтті құрылды", + + // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", + "community.create.sub-head": "Қауымдастық үшін Қосалқы Қауымдастық Жасаңыз {{ parent }}", + + // "community.curate.header": "Curate Community: {{community}}", + "community.curate.header": "Кураторлық Қауымдастық: {{community}}", + + // "community.delete.cancel": "Cancel", + "community.delete.cancel": "Бас тарту", + + // "community.delete.confirm": "Confirm", + "community.delete.confirm": "Растау", + + // "community.delete.processing": "Deleting...", + // TODO New key - Add a translation + "community.delete.processing": "Deleting...", + + // "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": "Edit Community", + + + // "community.edit.logo.delete.title": "Delete logo", + // TODO New key - Add a translation + "community.edit.logo.delete.title": "Delete logo", + + // "community.edit.logo.delete-undo.title": "Undo delete", + // TODO New key - Add a translation + "community.edit.logo.delete-undo.title": "Undo delete", + + // "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 occured while editing the Community", + "community.edit.notifications.error": "Қауымдастықты өзгерту кезінде қате орын алды", + + // "community.edit.return": "Back", + // TODO Source message changed - Revise the translation + "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.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": "Қауымдастық", + + + + // "comcol-role.edit.no-group": "None", + // TODO New key - Add a translation + "comcol-role.edit.no-group": "None", + + // "comcol-role.edit.create": "Create", + // TODO New key - Add a translation + "comcol-role.edit.create": "Create", + + // "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role", + // TODO New key - Add a translation + "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role", + + // "comcol-role.edit.restrict": "Restrict", + // TODO New key - Add a translation + "comcol-role.edit.restrict": "Restrict", + + // "comcol-role.edit.delete": "Delete", + // TODO New key - Add a translation + "comcol-role.edit.delete": "Delete", + + // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", + // TODO New key - Add a translation + "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group", + + + // "comcol-role.edit.community-admin.name": "Administrators", + // TODO New key - Add a translation + "comcol-role.edit.community-admin.name": "Administrators", + + // "comcol-role.edit.collection-admin.name": "Administrators", + // TODO New key - Add a translation + "comcol-role.edit.collection-admin.name": "Administrators", + + + // "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).", + // TODO New key - Add a translation + "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.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).", + // TODO New key - Add a translation + "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.submitters.name": "Submitters", + // TODO New key - Add a translation + "comcol-role.edit.submitters.name": "Submitters", + + // "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.", + // TODO New key - Add a translation + "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.", + + + // "comcol-role.edit.item_read.name": "Default item read access", + // TODO New key - Add a translation + "comcol-role.edit.item_read.name": "Default item read access", + + // "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.", + // TODO New key - Add a translation + "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.anonymous-group": "Default read for incoming items is currently set to Anonymous.", + // TODO New key - Add a translation + "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.", + + + // "comcol-role.edit.bitstream_read.name": "Default bitstream read access", + // TODO New key - Add a translation + "comcol-role.edit.bitstream_read.name": "Default bitstream read access", + + // "comcol-role.edit.bitstream_read.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).", + // TODO New key - Add a translation + "comcol-role.edit.bitstream_read.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.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.", + // TODO New key - Add a translation + "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.", + + + // "comcol-role.edit.editor.name": "Editors", + // TODO New key - Add a translation + "comcol-role.edit.editor.name": "Editors", + + // "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.", + // TODO New key - Add a translation + "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.", + + + // "comcol-role.edit.finaleditor.name": "Final editors", + // TODO New key - Add a translation + "comcol-role.edit.finaleditor.name": "Final editors", + + // "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.", + // TODO New key - Add a translation + "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.reviewer.name": "Reviewers", + // TODO New key - Add a translation + "comcol-role.edit.reviewer.name": "Reviewers", + + // "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.", + // TODO New key - Add a translation + "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.", + + + + // "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.all-lists.head": "Subcommunities and Collections", + "community.all-lists.head": "Қосалқы қауымдамтықтар мен топтамалар", + + // "community.sub-collection-list.head": "Collections of this Community", + "community.sub-collection-list.head": "Қауымдастық Топтамалары", + + // "community.sub-community-list.head": "Communities of this Community", + "community.sub-community-list.head": "Осы қоғамдастық шеңберіндегі қауымдастықтар", + + + + // "cookies.consent.accept-all": "Accept all", + // TODO New key - Add a translation + "cookies.consent.accept-all": "Accept all", + + // "cookies.consent.accept-selected": "Accept selected", + // TODO New key - Add a translation + "cookies.consent.accept-selected": "Accept selected", + + // "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)", + // TODO New key - Add a translation + "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)", + + // "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.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", + "cookies.consent.content-notice.description": "Біз сіздің жеке ақпаратыңызды келесі мақсаттарда жинаймыз және өңдейміз: Аутентификация, Параметрлері, Растау және Статистикалар.
Көбірек білу үшін, біздің {privacyPolicy} оқуыңызды өтінеміз.", + + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + // TODO New key - Add a translation + "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.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.title": "Information that we collect", + "cookies.consent.content-modal.title": "Біз жинайтын ақпарат", + + + + // "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.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 Аналитикасы", + + // "cookies.consent.app.description.google-analytics": "Allows us to track statistical data", + "cookies.consent.app.description.google-analytics": "Бізге статистикалық мәліметтерді бақылауға мүмкіндік береді", + + + + // "cookies.consent.purpose.functional": "Functional", + "cookies.consent.purpose.functional": "Функционалды", + + // "cookies.consent.purpose.statistical": "Statistical", + "cookies.consent.purpose.statistical": "Статистикалық", + + + // "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 Аудармашысы", + + // "curation-task.task.vscan.label": "Virus Scan", + "curation-task.task.vscan.label": "Вирустарды тексеру", + + + + // "curation.form.task-select.label": "Task:", + "curation.form.task-select.label": "Міндет(Тапсырма):", + + // "curation.form.submit": "Start", + "curation.form.submit": "Бастау", + + // "curation.form.submit.success.head": "The curation task has been started successfully", + "curation.form.submit.success.head": "Кураторлық(Жетекшілік) міндет сәтті басталды", + + // "curation.form.submit.success.content": "You will be redirected to the corresponding process page.", + "curation.form.submit.success.content": "Сіз процестің тиісті бетіне қайта бағытталасыз.", + + // "curation.form.submit.error.head": "Running the curation task failed", + "curation.form.submit.error.head": "Кураторлық(Жетекшілік) тапсырманы орындау мүмкін емес", + + // "curation.form.submit.error.content": "An error occured 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", + // TODO New key - Add a translation + "curation.form.submit.error.invalid-handle": "Couldn't determine the handle for this object", + + // "curation.form.handle.label": "Handle:", + "curation.form.handle.label": "Қалам:", + + // "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)", + "curation.form.handle.hint": "Кеңес: Енгізіңіз [your-handle-prefix]/0 бүкіл сайт бойынша тапсырманы орындау үшін(барлық тапсырмалар бұл мүмкіндікті қолдамауы мүмкін)", + + + + // "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + // TODO New key - Add a translation + "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + + // "deny-request-copy.email.subject": "Request copy of document", + // TODO New key - Add a translation + "deny-request-copy.email.subject": "Request copy of document", + + // "deny-request-copy.error": "An error occurred", + // TODO New key - Add a translation + "deny-request-copy.error": "An error occurred", + + // "deny-request-copy.header": "Deny document copy request", + // TODO New key - Add a translation + "deny-request-copy.header": "Deny document copy request", + + // "deny-request-copy.intro": "This message will be sent to the applicant of the request", + // TODO New key - Add a translation + "deny-request-copy.intro": "This message will be sent to the applicant of the request", + + // "deny-request-copy.success": "Successfully denied item request", + // TODO New key - Add a translation + "deny-request-copy.success": "Successfully denied item request", + + + + // "dso.name.untitled": "Untitled", + // TODO New key - Add a translation + "dso.name.untitled": "Untitled", + + + + // "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.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 }}", + // TODO New key - Add a translation + "dso-selector.error.title": "An error occurred searching for a {{ type }}", + + // "dso-selector.export-metadata.dspaceobject.head": "Export metadata from", + "dso-selector.export-metadata.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.select.collection.head": "Select a collection", + // TODO New key - Add a translation + "dso-selector.select.collection.head": "Select a collection", + + // "dso-selector.set-scope.community.head": "Select a search scope", + // TODO New key - Add a translation + "dso-selector.set-scope.community.head": "Select a search scope", + + // "dso-selector.set-scope.community.button": "Search all of DSpace", + // TODO New key - Add a translation + "dso-selector.set-scope.community.button": "Search all of DSpace", + + // "dso-selector.set-scope.community.input-header": "Search for a community or collection", + // TODO New key - Add a translation + "dso-selector.set-scope.community.input-header": "Search for a community or collection", + + // "dso-selector.claim.item.head": "Profile tips", + // TODO New key - Add a translation + "dso-selector.claim.item.head": "Profile tips", + + // "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.", + // TODO New key - Add a translation + "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.not-mine-label": "None of these are mine", + // TODO New key - Add a translation + "dso-selector.claim.item.not-mine-label": "None of these are mine", + + // "dso-selector.claim.item.create-from-scratch": "Create a new one", + // TODO New key - Add a translation + "dso-selector.claim.item.create-from-scratch": "Create a new one", + + // "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.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-profile.header": "Delete Profile", + // TODO New key - Add a translation + "confirmation-modal.delete-profile.header": "Delete Profile", + + // "confirmation-modal.delete-profile.info": "Are you sure you want to delete your profile", + // TODO New key - Add a translation + "confirmation-modal.delete-profile.info": "Are you sure you want to delete your profile", + + // "confirmation-modal.delete-profile.cancel": "Cancel", + // TODO New key - Add a translation + "confirmation-modal.delete-profile.cancel": "Cancel", + + // "confirmation-modal.delete-profile.confirm": "Delete", + // TODO New key - Add a translation + "confirmation-modal.delete-profile.confirm": "Delete", + + + // "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.search-results": "Error fetching search results", + "error.search-results": "Іздеу нәтижелерін алу қатесі", + + // "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + // TODO New key - Add a translation + "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.", + + // "error.sub-collections": "Error fetching sub-collections", + "error.sub-collections":"Ішкі жинақтарды алу қатесі", + + // "error.sub-communities": "Error fetching sub-communities", + "error.sub-communities": "Қосымша қауымдастықтарды алу қатесі", + + // "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", + "error.submission.sections.init-form-error":"Бөлімді инициализациялау кезінде қате орын алды, енгізу пішінінің конфигурациясын тексеріңіз. Мәліметтер төменде берілген:

", + + // "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.pattern": "This input is restricted by the current pattern: {{ pattern }}.", + "error.validation.pattern": "Бұл енгізу ағымдағы үлгімен шектелген: {{ pattern }}.", + + // "error.validation.filerequired": "The file upload is mandatory", + "error.validation.filerequired": "Файлды жүктеп салу міндетті", + + // "error.validation.required": "This field is required", + // TODO New key - Add a translation + "error.validation.required": "This field is required", + + // "error.validation.NotValidEmail": "This E-mail is not a valid email", + // TODO New key - Add a translation + "error.validation.NotValidEmail": "This E-mail is not a valid email", + + // "error.validation.emailTaken": "This E-mail is already taken", + // TODO New key - Add a translation + "error.validation.emailTaken": "This E-mail is already taken", + + // "error.validation.groupExists": "This group already exists", + // TODO New key - Add a translation + "error.validation.groupExists": "This group already exists", + + + // "feed.description": "Syndication feed", + // TODO New key - Add a translation + "feed.description": "Syndication feed", + + + // "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.dspace": "DSpace software", + "footer.link.dspace": "DSpace бағдарламалық құралы", + + // "footer.link.lyrasis": "LYRASIS", + "footer.link.lyrasis": "LYRASIS", + + // "footer.link.cookies": "Cookie settings", + "footer.link.cookies": "Cookie параметрлері", + + // "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", + // TODO New key - Add a translation + "footer.link.feedback":"Send Feedback", + + + + // "forgot-email.form.header": "Forgot Password", + "forgot-email.form.header": "Парольді Ұмыттыңыз Ба", + + // "forgot-email.form.info": "Enter the email address associated with the account.", + // TODO Source message changed - Revise the translation + "forgot-email.form.info": "Электрондық пошта жаңартуларына арналған жинақтарға жазылу және DSpace қызметіне жаңа элементтерді жіберу үшін тіркелгіні тіркеңіз.", + + // "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.pattern": "Please fill in a valid email address", + "forgot-email.form.email.error.pattern": "Жарамды электрондық пошта мекенжайын толтырыңыз", + + // "forgot-email.form.email.hint": "An email will be sent to this address with a further instructions.", + // TODO Source message changed - Revise the translation + "forgot-email.form.email.hint": "Бұл мекенжай тексеріледі және сіздің логин атыңыз ретінде пайдаланылады.", + + // "forgot-email.form.submit": "Reset password", + // TODO Source message changed - Revise the translation + "forgot-email.form.submit": "Жіберу", + + // "forgot-email.form.success.head": "Password reset email sent", + // TODO Source message changed - Revise the translation + "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": "Арнайы URL мекенжайы және қосымша нұсқаулары бар электрондық пошта {{ email }} мекенжайына жіберілді.", + + // "forgot-email.form.error.head": "Error when trying to reset password", + // TODO Source message changed - Revise the translation + "forgot-email.form.error.head": "Электрондық поштаны тіркеу кезіндегі қате", + + // "forgot-email.form.error.content": "An error occured 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 occured 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. It should be at least six characters long.", + "forgot-password.form.info": "Төмендегі жолаққа жаңа құпия сөзді енгізіп, оны екінші жолаққа қайта теру арқылы растаңыз. Оның ұзындығы кемінде алты таңба болуы керек.", + + // "forgot-password.form.card.security": "Security", + "forgot-password.form.card.security": "Қауіпсіздік", + + // "forgot-password.form.identification.header": "Identify", + "forgot-password.form.identification.header": "Анықтау", + + // "forgot-password.form.identification.email": "Email address: ", + "forgot-password.form.identification.email": "Электрондық пошта: ", + + // "forgot-password.form.label.password": "Password", + "forgot-password.form.label.password": "Құпия сөз", + + // "forgot-password.form.label.passwordrepeat": "Retype to confirm", + "forgot-password.form.label.passwordrepeat": "Растау үшін қайта теріңіз", + + // "forgot-password.form.error.empty-password": "Please enter a password in the box below.", + "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.error.password-length": "The password should be at least 6 characters long.", + "forgot-password.form.error.password-length":"Құпия сөз кемінде 6 таңбадан тұруы керек.", + + // "forgot-password.form.notification.error.title": "Error when trying to submit new password", + "forgot-password.form.notification.error.title": "Жаңа құпия сөзді жіберу әрекеті кезіндегі қате", + + // "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", + // TODO Source message changed - Revise the translation + "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", + // TODO New key - Add a translation + "form.discard": "Discard", + + // "form.drag": "Drag", + // TODO New key - Add a translation + "form.drag": "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": {}, + "form.other-information": {}, + + // "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", + // TODO Source message changed - Revise the translation + "form.submit": "Жіберу", + + // "form.repeatable.sort.tip": "Drop the item in the new position", + // TODO New key - Add a translation + "form.repeatable.sort.tip": "Drop the item in the new position", + + + + // "grant-deny-request-copy.deny": "Don't send copy", + // TODO New key - Add a translation + "grant-deny-request-copy.deny": "Don't send copy", + + // "grant-deny-request-copy.email.back": "Back", + // TODO New key - Add a translation + "grant-deny-request-copy.email.back": "Back", + + // "grant-deny-request-copy.email.message": "Message", + // TODO New key - Add a translation + "grant-deny-request-copy.email.message": "Message", + + // "grant-deny-request-copy.email.message.empty": "Please enter a message", + // TODO New key - Add a translation + "grant-deny-request-copy.email.message.empty": "Please enter a message", + + // "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.", + // TODO New key - Add a translation + "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.label": "Change to open access", + // TODO New key - Add a translation + "grant-deny-request-copy.email.permissions.label": "Change to open access", + + // "grant-deny-request-copy.email.send": "Send", + // TODO New key - Add a translation + "grant-deny-request-copy.email.send": "Send", + + // "grant-deny-request-copy.email.subject": "Subject", + // TODO New key - Add a translation + "grant-deny-request-copy.email.subject": "Subject", + + // "grant-deny-request-copy.email.subject.empty": "Please enter a subject", + // TODO New key - Add a translation + "grant-deny-request-copy.email.subject.empty": "Please enter a subject", + + // "grant-deny-request-copy.grant": "Send copy", + // TODO New key - Add a translation + "grant-deny-request-copy.grant": "Send copy", + + // "grant-deny-request-copy.header": "Document copy request", + // TODO New key - Add a translation + "grant-deny-request-copy.header": "Document copy request", + + // "grant-deny-request-copy.home-page": "Take me to the home page", + // TODO New key - Add a translation + "grant-deny-request-copy.home-page": "Take me to the 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.", + // TODO New key - Add a translation + "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.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.", + // TODO New key - Add a translation + "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.processed": "This request has already been processed. You can use the button below to get back to the home page.", + // TODO New key - Add a translation + "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-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I have the pleasure to send you in attachment a copy of the file(s) concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + // TODO New key - Add a translation + "grant-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I have the pleasure to send you in attachment a copy of the file(s) concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>", + + // "grant-request-copy.email.subject": "Request copy of document", + // TODO New key - Add a translation + "grant-request-copy.email.subject": "Request copy of document", + + // "grant-request-copy.error": "An error occurred", + // TODO New key - Add a translation + "grant-request-copy.error": "An error occurred", + + // "grant-request-copy.header": "Grant document copy request", + // TODO New key - Add a translation + "grant-request-copy.header": "Grant document copy request", + + // "grant-request-copy.intro": "This 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": "This message will be sent to the applicant of the request. The requested document(s) will be attached.", + + // "grant-request-copy.success": "Successfully granted item request", + // TODO New key - Add a translation + "grant-request-copy.success": "Successfully granted item request", + + + // "health.breadcrumbs": "Health", + // TODO New key - Add a translation + "health.breadcrumbs": "Health", + + // "health-page.heading" : "Health", + // TODO New key - Add a translation + "health-page.heading" : "Health", + + // "health-page.info-tab" : "Info", + // TODO New key - Add a translation + "health-page.info-tab" : "Info", + + // "health-page.status-tab" : "Status", + // TODO New key - Add a translation + "health-page.status-tab" : "Status", + + // "health-page.error.msg": "The health check service is temporarily unavailable", + // TODO New key - Add a translation + "health-page.error.msg": "The health check service is temporarily unavailable", + + // "health-page.property.status": "Status code", + // TODO New key - Add a translation + "health-page.property.status": "Status code", + + // "health-page.section.db.title": "Database", + // TODO New key - Add a translation + "health-page.section.db.title": "Database", + + // "health-page.section.geoIp.title": "GeoIp", + // TODO New key - Add a translation + "health-page.section.geoIp.title": "GeoIp", + + // "health-page.section.solrAuthorityCore.title": "Sor: authority core", + // TODO New key - Add a translation + "health-page.section.solrAuthorityCore.title": "Sor: authority core", + + // "health-page.section.solrOaiCore.title": "Sor: oai core", + // TODO New key - Add a translation + "health-page.section.solrOaiCore.title": "Sor: oai core", + + // "health-page.section.solrSearchCore.title": "Sor: search core", + // TODO New key - Add a translation + "health-page.section.solrSearchCore.title": "Sor: search core", + + // "health-page.section.solrStatisticsCore.title": "Sor: statistics core", + // TODO New key - Add a translation + "health-page.section.solrStatisticsCore.title": "Sor: statistics core", + + // "health-page.section-info.app.title": "Application Backend", + // TODO New key - Add a translation + "health-page.section-info.app.title": "Application Backend", + + // "health-page.section-info.java.title": "Java", + // TODO New key - Add a translation + "health-page.section-info.java.title": "Java", + + // "health-page.status": "Status", + // TODO New key - Add a translation + "health-page.status": "Status", + + // "health-page.status.ok.info": "Operational", + // TODO New key - Add a translation + "health-page.status.ok.info": "Operational", + + // "health-page.status.error.info": "Problems detected", + // TODO New key - Add a translation + "health-page.status.error.info": "Problems detected", + + // "health-page.status.warning.info": "Possible issues detected", + // TODO New key - Add a translation + "health-page.status.warning.info": "Possible issues detected", + + // "health-page.title": "Health", + // TODO New key - Add a translation + "health-page.title": "Health", + + // "health-page.section.no-issues": "No issues detected", + // TODO New key - Add a translation + "health-page.section.no-issues": "No issues detected", + + + // "home.description": "", + "home.description": "", + + // "home.breadcrumbs": "Home", + "home.breadcrumbs": "Басты", + + // "home.search-form.placeholder": "Search the repository ...", + // TODO New key - Add a translation + "home.search-form.placeholder": "Search the repository ...", + + // "home.title": "Home", + // TODO Source message changed - Revise the translation + "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.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.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", + // TODO New key - Add a translation + "info.feedback.breadcrumbs": "Feedback", + + // "info.feedback.head": "Feedback", + // TODO New key - Add a translation + "info.feedback.head": "Feedback", + + // "info.feedback.title": "Feedback", + // TODO New key - Add a translation + "info.feedback.title": "Feedback", + + // "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!", + // TODO New key - Add a translation + "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!", + + // "info.feedback.email_help": "This address will be used to follow up on your feedback.", + // TODO New key - Add a translation + "info.feedback.email_help": "This address will be used to follow up on your feedback.", + + // "info.feedback.send": "Send Feedback", + // TODO New key - Add a translation + "info.feedback.send": "Send Feedback", + + // "info.feedback.comments": "Comments", + // TODO New key - Add a translation + "info.feedback.comments": "Comments", + + // "info.feedback.email-label": "Your Email", + // TODO New key - Add a translation + "info.feedback.email-label": "Your Email", + + // "info.feedback.create.success" : "Feedback Sent Successfully!", + // TODO New key - Add a translation + "info.feedback.create.success" : "Feedback Sent Successfully!", + + // "info.feedback.error.email.required" : "A valid email address is required", + // TODO New key - Add a translation + "info.feedback.error.email.required" : "A valid email address is required", + + // "info.feedback.error.message.required" : "A comment is required", + // TODO New key - Add a translation + "info.feedback.error.message.required" : "A comment is required", + + // "info.feedback.page-label" : "Page", + // TODO New key - Add a translation + "info.feedback.page-label" : "Page", + + // "info.feedback.page_help" : "Tha page related to your feedback", + // TODO New key - Add a translation + "info.feedback.page_help" : "Tha page related to your feedback", + + + + // "item.alerts.private": "This item is non-discoverable", + // TODO Source message changed - Revise the translation + "item.alerts.private": "Бұл элемент жеке", + + // "item.alerts.withdrawn": "This item has been withdrawn", + "item.alerts.withdrawn": "Бұл тармақ алынып тасталды", + + + + // "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.", + "item.edit.authorizations.heading": "Осы өңдегіштің көмегімен элементтің саясаттарын көруге және өзгертуге, сонымен қатар жеке элемент құрамдастарының саясаттарын өзгертуге болады: байламдар және бит ағындары. Қысқаша айтқанда, элемент - бумалардың контейнері, ал бумалар - биттік ағындардың контейнерлері. Контейнерлерде әдетте ҚОСУ/ЖОЮ мүмкіндігі болады. /READ/WRITE саясаттары, ал биттік ағындарда тек ОҚУ/ЖАЗУ саясаттары бар.", + + // "item.edit.authorizations.title": "Edit item's Policies", + "item.edit.authorizations.title": "Элемент саясаттарын өңдеу", + + + + // "item.badge.private": "Non-discoverable", + // TODO Source message changed - Revise the translation + "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", + // TODO Source message changed - Revise the translation + "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: ", + "item.bitstreams.upload.item":"Элемент:", + + // "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.", + "item.bitstreams.upload.notifications.bundle.created.content": "Жаңа топтама сәтті жасалды.", + + // "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle", + "item.bitstreams.upload.notifications.bundle.created.title": "Жасалған топтама", + + // "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.", + "item.bitstreams.upload.notifications.upload.failed": "Жүктеп салу сәтсіз аяқталды. Әрекетті қайталаудан бұрын мазмұнды тексеріңіз.", + + // "item.bitstreams.upload.title": "Upload bitstream", + "item.bitstreams.upload.title": "Бақыттық ағынды жүктеп салу", + + + + // "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload", + "item.edit.bitstreams.bundle.edit.buttons.upload": "Жүктеп салу", + + // "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.", + "item.edit.bitstreams.bundle.displaying": "Қазір {{ amount }} {{ total }} бит ағыны көрсетілуде.", + + // "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})", + "item.edit.bitstreams.bundle.load.all": "Барлығын жүктеу ({{ total }})", + + // "item.edit.bitstreams.bundle.load.more": "Load more", + "item.edit.bitstreams.bundle.load.more":"Көбірек жүктеңіз", + + // "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}", + "item.edit.bitstreams.bundle.name": "БАНДЛ: {{ name }}", + + // "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.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.", + "item.edit.bitstreams.empty":"Бұл элементте биттік ағындар жоқ. Біреуін жасау үшін жүктеп салу түймесін басыңыз.", + + // "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.delete.cancel": "Cancel", + "item.edit.delete.cancel": "Болдырмау", + + // "item.edit.delete.confirm": "Delete", + "item.edit.delete.confirm": "Жою", + + // "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.", + "item.edit.delete.description": "Бұл элемент толығымен жойылуы керек екеніне сенімдісіз бе? Абайлаңыз: Қазіргі уақытта құлпытас қалмас еді.", + + // "item.edit.delete.error": "An error occurred while deleting the item", + "item.edit.delete.error": "Элементті жою кезінде қате орын алды", + + // "item.edit.delete.header": "Delete item: {{ id }}", + "item.edit.delete.header": "Элементті жою: {{ id }}", + + // "item.edit.delete.success": "The item has been deleted", + "item.edit.delete.success": "Элемент жойылды", + + // "item.edit.head": "Edit Item", + "item.edit.head": "Элементті өңдеу", + + // "item.edit.breadcrumbs": "Edit Item", + "item.edit.breadcrumbs": "Элементті өңдеу", + + // "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab", + // TODO New key - Add a translation + "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab", + + + // "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 - Коллекция картасы", + + // "item.edit.item-mapper.buttons.add": "Map item to selected collections", + "item.edit.item-mapper.buttons.add": "Таңдалған жинақтарға элементті картаға салу", + + // "item.edit.item-mapper.buttons.remove": "Remove item's mapping for selected collections", + "item.edit.item-mapper.buttons.remove": "Таңдалған жинақтар үшін элементтің салыстыруын жою", + + // "item.edit.item-mapper.cancel": "Cancel", + "item.edit.item-mapper.cancel":"Болдырмау", + + // "item.edit.item-mapper.description": "This is the item mapper tool that allows administrators to map this item to other collections. You can search for collections and map them, or browse the list of collections the item is currently mapped to.", + "item.edit.item-mapper.description": "Бұл әкімшілерге осы элементті басқа жинақтармен салыстыруға мүмкіндік беретін элементті салыстыру құралы. Жинақтарды іздеуге және оларды салыстыруға немесе элемент қазіргі уақытта салыстырылған жинақтар тізімін шолуға болады.", + + // "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections", + "item.edit.item-mapper.head":"Элемент салыстырушы - Элементті коллекциялармен салыстыру", + + // "item.edit.item-mapper.item": "Item: \"{{name}}\"", + "item.edit.item-mapper.item": "Элемент: \"{{name}}\"", + + // "item.edit.item-mapper.no-search": "Please enter a query to search", + "item.edit.item-mapper.no-search": "Іздеу үшін сұрауды енгізіңіз", + + // "item.edit.item-mapper.notifications.add.error.content": "Errors occurred for mapping of item to {{amount}} collections.", + "item.edit.item-mapper.notifications.add.error.content": "Элементті {{amount}} жинаққа салыстыру кезінде қателер орын алды.", + + // "item.edit.item-mapper.notifications.add.error.head": "Mapping errors", + "item.edit.item-mapper.notifications.add.error.head": "Карталау қателері", + + // "item.edit.item-mapper.notifications.add.success.content": "Successfully mapped item to {{amount}} collections.", + "item.edit.item-mapper.notifications.add.success.content": "Элемент {{amount}} жинаққа сәтті салыстырылды.", + + // "item.edit.item-mapper.notifications.add.success.head": "Mapping completed", + "item.edit.item-mapper.notifications.add.success.head":"Карталау аяқталды", + + // "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.", + "item.edit.item-mapper.notifications.remove.error.content": "{{amount}} жинаққа салыстыруды жою кезінде қателер орын алды.", + + // "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors", + "item.edit.item-mapper.notifications.remove.error.head": "Карталау қателерін жою", + + // "item.edit.item-mapper.notifications.remove.success.content": "Successfully removed mapping of item to {{amount}} collections.", + "item.edit.item-mapper.notifications.remove.success.content": "Элементтің {{amount}} жинаққа салыстыруы сәтті жойылды.", + + // "item.edit.item-mapper.notifications.remove.success.head": "Removal of mapping completed", + "item.edit.item-mapper.notifications.remove.success.head": "Карталауды жою аяқталды", + + // "item.edit.item-mapper.search-form.placeholder": "Search collections...", + // TODO New key - Add a translation + "item.edit.item-mapper.search-form.placeholder": "Search collections...", + + // "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.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.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.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": "Changed 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": "Changed 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.save-button": "Save", + "item.edit.metadata.save-button":"Сақтау", + + + + // "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", + // TODO Source message changed - Revise the translation + "item.edit.move.cancel": "Cancel", + + // "item.edit.move.save-button": "Save", + // TODO New key - Add a translation + "item.edit.move.save-button": "Save", + + // "item.edit.move.discard-button": "Discard", + // TODO New key - Add a translation + "item.edit.move.discard-button": "Discard", + + // "item.edit.move.description": "Select the collection you wish to move this item to. To narrow down the list of displayed collections, you can enter a search query in the box.", + "item.edit.move.description": "Осы элементті жылжытқыңыз келетін коллекцияны таңдаңыз. Көрсетілген жинақтардың тізімін тарылту үшін өріске іздеу сұрауын енгізуге болады.", + + // "item.edit.move.error": "An error occurred when attempting to move the item", + "item.edit.move.error": "Элементті жылжыту кезінде қате пайда болды", + + // "item.edit.move.head": "Move item: {{id}}", + "item.edit.move.head": "Элементті жылжыту: {{id}}", + + // "item.edit.move.inheritpolicies.checkbox": "Inherit policies", + "item.edit.move.inheritpolicies.checkbox": "Мұрагерлік саясат", + + // "item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection", + "item.edit.move.inheritpolicies.description": "Мақсатты жинақтың әдепкі саясатын мұра ету", + + // "item.edit.move.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", + // TODO Source message changed - Revise the translation + "item.edit.private.confirm": "Мұны жеке жаса", + + // "item.edit.private.description": "Are you sure this item should be made non-discoverable in the archive?", + // TODO Source message changed - Revise the translation + "item.edit.private.description": "Сіз бұл затты мұрағатта жабу керек екеніне сенімдісіз бе?", + + // "item.edit.private.error": "An error occurred while making the item non-discoverable", + // TODO Source message changed - Revise the translation + "item.edit.private.error": "Элементті жабу кезінде қате пайда болды", + + // "item.edit.private.header": "Make item non-discoverable: {{ id }}", + // TODO New key - Add a translation + "item.edit.private.header": "Make item non-discoverable: {{ id }}", + + // "item.edit.private.success": "The item is now non-discoverable", + // TODO Source message changed - Revise the translation + "item.edit.private.success": "Тауар қазір жеке", + + + + // "item.edit.public.cancel": "Cancel", + "item.edit.public.cancel": "Болдырмау", + + // "item.edit.public.confirm": "Make it discoverable", + // TODO Source message changed - Revise the translation + "item.edit.public.confirm": "Мұны көпшілікке жария ету", + + // "item.edit.public.description": "Are you sure this item should be made discoverable in the archive?", + // TODO Source message changed - Revise the translation + "item.edit.public.description": "Сіз бұл материалды мұрағатта жариялау керек екеніне сенімдісіз бе?", + + // "item.edit.public.error": "An error occurred while making the item discoverable", + // TODO Source message changed - Revise the translation + "item.edit.public.error": "Элементті жариялау кезінде қате пайда болды", + + // "item.edit.public.header": "Make item discoverable: {{ id }}", + // TODO New key - Add a translation + "item.edit.public.header": "Make item discoverable: {{ id }}", + + // "item.edit.public.success": "The item is now discoverable", + // TODO Source message changed - Revise the translation + "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?", + // TODO Source message changed - Revise the translation + "item.edit.reinstate.description": "Сіз бұл элементті мұрағатта қалпына келтіру керек екеніне сенімдісіз бе?", + + // "item.edit.reinstate.error": "An error occurred while reinstating the item", + "item.edit.reinstate.error": "Элементті қалпына келтіру кезінде қате пайда болды", + + // "item.edit.reinstate.header": "Reinstate item: {{ id }}", + "item.edit.reinstate.header": "Элементті қалпына келтіру: {{ id }}", + + // "item.edit.reinstate.success": "The item was reinstated successfully", + "item.edit.reinstate.success": "Элемент сәтті қалпына келтірілді", + + + + // "item.edit.relationships.discard-button": "Discard", + "item.edit.relationships.discard-button": "Тастау", + + // "item.edit.relationships.edit.buttons.add": "Add", + "item.edit.relationships.edit.buttons.add":"Қосу", + + // "item.edit.relationships.edit.buttons.remove": "Remove", + "item.edit.relationships.edit.buttons.remove": "Жою", + + // "item.edit.relationships.edit.buttons.undo": "Undo changes", + "item.edit.relationships.edit.buttons.undo": "Өзгерістерді болдырмау", + + // "item.edit.relationships.no-relationships": "No relationships", + "item.edit.relationships.no-relationships": "Қарым-қатынас жоқ", + + // "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", + "item.edit.relationships.notifications.discarded.content": "Сіздің өзгертулеріңіз жойылды. Енгізілген өзгертулерді қалпына келтіру үшін 'Болдырмау' түймесін басыңыз", + + // "item.edit.relationships.notifications.discarded.title": "Changes discarded", + "item.edit.relationships.notifications.discarded.title": "Өзгерістер жойылды", + + // "item.edit.relationships.notifications.failed.title": "Error editing relationships", + "item.edit.relationships.notifications.failed.title": "Қарым-қатынасты өңдеу қатесі", + + // "item.edit.relationships.notifications.outdated.content": "The item you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", + "item.edit.relationships.notifications.outdated.content": "Сіз қазір жұмыс істеп жатқан элементті басқа пайдаланушы өзгертті. Қақтығыстардың алдын алу үшін сіздің қазіргі өзгерістеріңіз жойылады", + + // "item.edit.relationships.notifications.outdated.title": "Changes outdated", + "item.edit.relationships.notifications.outdated.title": "Өзгерістер ескірген", + + // "item.edit.relationships.notifications.saved.content": "Your changes to this item's relationships were saved.", + "item.edit.relationships.notifications.saved.content": "Осы элементтің қарым-қатынасындағы өзгерістер сақталды.", + + // "item.edit.relationships.notifications.saved.title": "Relationships saved", + "item.edit.relationships.notifications.saved.title": "Сақталған қатынастар", + + // "item.edit.relationships.reinstate-button": "Undo", + "item.edit.relationships.reinstate-button":"Болдырмау", + + // "item.edit.relationships.save-button": "Save", + "item.edit.relationships.save-button": "Сақтау", + + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Метадеректерін элемент үшін байланыстарды қосу үшін 'dspace.entity.type' басыныз", + + + // "item.edit.return": "Back", + // TODO New key - Add a translation + "item.edit.return": "Back", + + + // "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 - Бит ағындары", + + // "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.tabs.metadata.head": "Metadata", + "item.edit.tabs.metadata.head": "Метадеректер", + + // "item.edit.tabs.metadata.title": "Item Edit - Metadata", + "item.edit.tabs.metadata.title": "Item Edit - Метадеректер", + + // "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...", + "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...", + // TODO Source message changed - Revise the translation + "item.edit.tabs.status.buttons.private.button": "Мұны жеке етіңіз...", + + // "item.edit.tabs.status.buttons.private.label": "Make item non-discoverable", + // TODO Source message changed - Revise the translation + "item.edit.tabs.status.buttons.private.label": "Затты жеке ету", + + // "item.edit.tabs.status.buttons.public.button": "Make it discoverable...", + // TODO Source message changed - Revise the translation + "item.edit.tabs.status.buttons.public.button": "Мұны көпшілікке жария етіңіз...", + + // "item.edit.tabs.status.buttons.public.label": "Make item discoverable", + // TODO Source message changed - Revise the translation + "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", + // TODO New key - Add a translation + "item.edit.tabs.status.buttons.unauthorized": "You're not authorized to perform this action", + + // "item.edit.tabs.status.buttons.withdraw.button": "Withdraw...", + "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 - Мәртебесі", + + // "item.edit.tabs.versionhistory.head": "Version History", + "item.edit.tabs.versionhistory.head": "Нұсқа тарихы", + + // "item.edit.tabs.versionhistory.title": "Item Edit - Version History", + "item.edit.tabs.versionhistory.title": "Элементті өңдеу-нұсқа тарихы", + + // "item.edit.tabs.versionhistory.under-construction": "Editing or adding new versions is not yet possible in this user interface.", + "item.edit.tabs.versionhistory.under-construction": "Бұл пайдаланушы интерфейсінде жаңа нұсқаларды өңдеу немесе қосу әлі мүмкін емес.", + + // "item.edit.tabs.view.head": "View Item", + "item.edit.tabs.view.head": "Элементті қарау", + + // "item.edit.tabs.view.title": "Item Edit - View", + "item.edit.tabs.view.title": "Элементті өңдеу-қарау", + + + + // "item.edit.withdraw.cancel": "Cancel", + "item.edit.withdraw.cancel": "Болдырмау", + + // "item.edit.withdraw.confirm": "Withdraw", + "item.edit.withdraw.confirm": "Шақыру", + + // "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?", + "item.edit.withdraw.description": "Сіз бұл затты мұрағаттан алып тастау керек деп ойлайсыз ба?", + + // "item.edit.withdraw.error": "An error occurred while withdrawing the item", + "item.edit.withdraw.error": "Тауарды алып қою кезінде қате кетті", + + // "item.edit.withdraw.header": "Withdraw item: {{ id }}", + "item.edit.withdraw.header": "Өнім шығару: {{ id }}", + + // "item.edit.withdraw.success": "The item was withdrawn successfully", + "item.edit.withdraw.success": "Тауар сәтті алынды", + + // "item.orcid.return": "Back", + // TODO New key - Add a translation + "item.orcid.return": "Back", + + + // "item.listelement.badge": "Item", + "item.listelement.badge": "Пән", + + // "item.page.description": "Description", + "item.page.description": "Сипаттама", + + // "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: ", + "item.page.titleprefix": "Пән:", + + // "item.page.volume-title": "Volume Title", + "item.page.volume-title": "Томның атауы", + + // "item.search.results.head": "Item Search Results", + "item.search.results.head": "Өнімді іздеу нәтижелері", + + // "item.search.title": "Item Search", + // TODO Source message changed - Revise the translation + "item.search.title": "DSpace Angular :: элементтерді іздеу", + + // "item.truncatable-part.show-more": "Show more", + // TODO New key - Add a translation + "item.truncatable-part.show-more": "Show more", + + // "item.truncatable-part.show-less": "Collapse", + // TODO New key - Add a translation + "item.truncatable-part.show-less": "Collapse", + + + + // "item.page.abstract": "Abstract", + "item.page.abstract": "Дерексіз", + + // "item.page.author": "Authors", + "item.page.author": "Авторлар", + + // "item.page.citation": "Citation", + "item.page.citation":"Дәйексөз", + + // "item.page.collections": "Collections", + "item.page.collections": "Жинақтар", + + // "item.page.collections.loading": "Loading...", + // TODO New key - Add a translation + "item.page.collections.loading": "Loading...", + + // "item.page.collections.load-more": "Load more", + // TODO New key - Add a translation + "item.page.collections.load-more": "Load more", + + // "item.page.date": "Date", + "item.page.date": "Кездесуге", + + // "item.page.edit": "Edit this item", + "item.page.edit": "Бұл элементті өңдеу", + + // "item.page.files": "Files", + "item.page.files": "Файлдар", + + // "item.page.filesection.description": "Description:", + "item.page.filesection.description": "Сипаттама:", + + // "item.page.filesection.download": "Download", + "item.page.filesection.download": "Жүктеу", + + // "item.page.filesection.format": "Format:", + "item.page.filesection.format": "Формат:", + + // "item.page.filesection.name": "Name:", + "item.page.filesection.name": "Аты:", + + // "item.page.filesection.size": "Size:", + "item.page.filesection.size": "Көлемі:", + + // "item.page.journal.search.title": "Articles in this journal", + "item.page.journal.search.title": "Осы журналдағы мақалалар", + + // "item.page.link.full": "Full item page", + "item.page.link.full": "Өнімнің толық беті", + + // "item.page.link.simple": "Simple item page", + "item.page.link.simple": "Тауардың қарапайым беті", + + // "item.page.orcid.title": "ORCID", + // TODO New key - Add a translation + "item.page.orcid.title": "ORCID", + + // "item.page.orcid.tooltip": "Open ORCID setting page", + // TODO New key - Add a translation + "item.page.orcid.tooltip": "Open ORCID setting page", + + // "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.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", + // TODO New key - Add a translation + "item.page.return": "Back", + + // "item.page.version.create": "Create new version", + // TODO New key - Add a translation + "item.page.version.create": "Create new version", + + // "item.page.version.hasDraft": "A new version cannot be created because there is an inprogress submission in the version history", + // TODO New key - Add a translation + "item.page.version.hasDraft": "A new version cannot be created because there is an inprogress submission in the version history", + + // "item.page.claim.button": "Claim", + // TODO New key - Add a translation + "item.page.claim.button": "Claim", + + // "item.page.claim.tooltip": "Claim this item as profile", + // TODO New key - Add a translation + "item.page.claim.tooltip": "Claim this item as profile", + + // "item.preview.dc.identifier.uri": "Identifier:", + "item.preview.dc.identifier.uri": "Идентификатор:", + + // "item.preview.dc.contributor.author": "Authors:", + "item.preview.dc.contributor.author":"Авторлар:", + + // "item.preview.dc.date.issued": "Published date:", + "item.preview.dc.date.issued": "Жарияланған күні:", + + // "item.preview.dc.description.abstract": "Abstract:", + "item.preview.dc.description.abstract": "Аннотация:", + + // "item.preview.dc.identifier.other": "Other identifier:", + "item.preview.dc.identifier.other": "Басқа идентификатор:", + + // "item.preview.dc.language.iso": "Language:", + "item.preview.dc.language.iso": "Тіл:", + + // "item.preview.dc.subject": "Subjects:", + "item.preview.dc.subject": "Тақырыбы:", + + // "item.preview.dc.title": "Title:", + "item.preview.dc.title": "Атауы:", + + // "item.preview.dc.type": "Type:", + // TODO New key - Add a translation + "item.preview.dc.type": "Type:", + + // "item.preview.oaire.citation.issue" : "Issue", + // TODO New key - Add a translation + "item.preview.oaire.citation.issue" : "Issue", + + // "item.preview.oaire.citation.volume" : "Volume", + // TODO New key - Add a translation + "item.preview.oaire.citation.volume" : "Volume", + + // "item.preview.dc.relation.issn" : "ISSN", + // TODO New key - Add a translation + "item.preview.dc.relation.issn" : "ISSN", + + // "item.preview.dc.identifier.isbn" : "ISBN", + // TODO New key - Add a translation + "item.preview.dc.identifier.isbn" : "ISBN", + + // "item.preview.dc.identifier": "Identifier:", + // TODO New key - Add a translation + "item.preview.dc.identifier": "Identifier:", + + // "item.preview.dc.relation.ispartof" : "Journal or Serie", + // TODO New key - Add a translation + "item.preview.dc.relation.ispartof" : "Journal or Serie", + + // "item.preview.dc.identifier.doi" : "DOI", + // TODO New key - Add a translation + "item.preview.dc.identifier.doi" : "DOI", + + // "item.preview.person.familyName": "Surname:", + "item.preview.person.familyName": "Тегі:", + + // "item.preview.person.givenName": "Name:", + "item.preview.person.givenName": "Аты:", + + // "item.preview.person.identifier.orcid": "ORCID:", + "item.preview.person.identifier.orcid": "ORCID:", + + // "item.preview.project.funder.name": "Funder:", + // TODO New key - Add a translation + "item.preview.project.funder.name": "Funder:", + + // "item.preview.project.funder.identifier": "Funder Identifier:", + // TODO New key - Add a translation + "item.preview.project.funder.identifier": "Funder Identifier:", + + // "item.preview.oaire.awardNumber": "Funding ID:", + // TODO New key - Add a translation + "item.preview.oaire.awardNumber": "Funding ID:", + + // "item.preview.dc.title.alternative": "Acronym:", + // TODO New key - Add a translation + "item.preview.dc.title.alternative": "Acronym:", + + // "item.preview.dc.coverage.spatial": "Jurisdiction:", + // TODO New key - Add a translation + "item.preview.dc.coverage.spatial": "Jurisdiction:", + + // "item.preview.oaire.fundingStream": "Funding Stream:", + // TODO New key - Add a translation + "item.preview.oaire.fundingStream": "Funding Stream:", + + + + // "item.select.confirm": "Confirm selected", + "item.select.confirm": "Таңдауды растау", + + // "item.select.empty": "No items to show", + "item.select.empty":"Көрсету үшін элементтер жоқ", + + // "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", + // TODO Source message changed - Revise the translation + "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.", + // TODO New key - Add a translation + "item.version.history.selected.alert": "You are currently viewing version {{version}} of the item.", + + // "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", + // TODO New key - Add a translation + "item.version.history.table.workspaceItem": "Workspace item", + + // "item.version.history.table.workflowItem": "Workflow item", + // TODO New key - Add a translation + "item.version.history.table.workflowItem": "Workflow item", + + // "item.version.history.table.actions": "Action", + // TODO New key - Add a translation + "item.version.history.table.actions": "Action", + + // "item.version.history.table.action.editWorkspaceItem": "Edit workspace item", + // TODO New key - Add a translation + "item.version.history.table.action.editWorkspaceItem": "Edit workspace item", + + // "item.version.history.table.action.editSummary": "Edit summary", + // TODO New key - Add a translation + "item.version.history.table.action.editSummary": "Edit summary", + + // "item.version.history.table.action.saveSummary": "Save summary edits", + // TODO New key - Add a translation + "item.version.history.table.action.saveSummary": "Save summary edits", + + // "item.version.history.table.action.discardSummary": "Discard summary edits", + // TODO New key - Add a translation + "item.version.history.table.action.discardSummary": "Discard summary edits", + + // "item.version.history.table.action.newVersion": "Create new version from this one", + // TODO New key - Add a translation + "item.version.history.table.action.newVersion": "Create new version from this one", + + // "item.version.history.table.action.deleteVersion": "Delete version", + // TODO New key - Add a translation + "item.version.history.table.action.deleteVersion": "Delete version", + + // "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an inprogress submission in the version history", + // TODO New key - Add a translation + "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an inprogress submission in the version history", + + + // "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", + // TODO New key - Add a translation + "item.version.create.modal.header": "New version", + + // "item.version.create.modal.text": "Create a new version for this item", + // TODO New key - Add a translation + "item.version.create.modal.text": "Create a new version for this item", + + // "item.version.create.modal.text.startingFrom": "starting from version {{version}}", + // TODO New key - Add a translation + "item.version.create.modal.text.startingFrom": "starting from version {{version}}", + + // "item.version.create.modal.button.confirm": "Create", + // TODO New key - Add a translation + "item.version.create.modal.button.confirm": "Create", + + // "item.version.create.modal.button.confirm.tooltip": "Create new version", + // TODO New key - Add a translation + "item.version.create.modal.button.confirm.tooltip": "Create new version", + + // "item.version.create.modal.button.cancel": "Cancel", + // TODO New key - Add a translation + "item.version.create.modal.button.cancel": "Cancel", + + // "item.version.create.modal.button.cancel.tooltip": "Do not create new version", + // TODO New key - Add a translation + "item.version.create.modal.button.cancel.tooltip": "Do not create new version", + + // "item.version.create.modal.form.summary.label": "Summary", + // TODO New key - Add a translation + "item.version.create.modal.form.summary.label": "Summary", + + // "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version", + // TODO New key - Add a translation + "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version", + + // "item.version.create.modal.submitted.header": "Creating new version...", + // TODO New key - Add a translation + "item.version.create.modal.submitted.header": "Creating new version...", + + // "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.", + // TODO New key - Add a translation + "item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.", + + // "item.version.create.notification.success" : "New version has been created with version number {{version}}", + // TODO New key - Add a translation + "item.version.create.notification.success" : "New version has been created with version number {{version}}", + + // "item.version.create.notification.failure" : "New version has not been created", + // TODO New key - Add a translation + "item.version.create.notification.failure" : "New version has not been created", + + // "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history", + // TODO New key - Add a translation + "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history", + + + // "item.version.delete.modal.header": "Delete version", + // TODO New key - Add a translation + "item.version.delete.modal.header": "Delete version", + + // "item.version.delete.modal.text": "Do you want to delete version {{version}}?", + // TODO New key - Add a translation + "item.version.delete.modal.text": "Do you want to delete version {{version}}?", + + // "item.version.delete.modal.button.confirm": "Delete", + // TODO New key - Add a translation + "item.version.delete.modal.button.confirm": "Delete", + + // "item.version.delete.modal.button.confirm.tooltip": "Delete this version", + // TODO New key - Add a translation + "item.version.delete.modal.button.confirm.tooltip": "Delete this version", + + // "item.version.delete.modal.button.cancel": "Cancel", + // TODO New key - Add a translation + "item.version.delete.modal.button.cancel": "Cancel", + + // "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version", + // TODO New key - Add a translation + "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version", + + // "item.version.delete.notification.success" : "Version number {{version}} has been deleted", + // TODO New key - Add a translation + "item.version.delete.notification.success" : "Version number {{version}} has been deleted", + + // "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted", + // TODO New key - Add a translation + "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted", + + + // "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed", + // TODO New key - Add a translation + "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed", + + // "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed", + // TODO New key - Add a translation + "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed", + + + + // "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.titleprefix": "Journal: ", + "journal.page.titleprefix": "Күнделік:", + + // "journal.search.results.head": "Journal Search Results", + "journal.search.results.head":"Журналдағы іздеу нәтижелері", + + // "journal-relationships.search.results.head": "Journal Search Results", + // TODO New key - Add a translation + "journal-relationships.search.results.head": "Journal Search Results", + + // "journal.search.title": "Journal Search", + // TODO Source message changed - Revise the translation + "journal.search.title": "DSpace Angular :: Журналдағы іздеу", + + + + // "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.titleprefix": "Journal Issue: ", + "journalissue.page.titleprefix": "Журнал нөмірі:", + + + + // "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.titleprefix": "Journal Volume: ", + "journalvolume.page.titleprefix":"Журнал көлемі:", + + // "journalvolume.page.volume": "Volume", + "journalvolume.page.volume": "Көлемі", + + + // "iiifsearchable.listelement.badge": "Document Media", + // TODO New key - Add a translation + "iiifsearchable.listelement.badge": "Document Media", + + // "iiifsearchable.page.titleprefix": "Document: ", + // TODO New key - Add a translation + "iiifsearchable.page.titleprefix": "Document: ", + + // "iiifsearchable.page.doi": "Permanent Link: ", + // TODO New key - Add a translation + "iiifsearchable.page.doi": "Permanent Link: ", + + // "iiifsearchable.page.issue": "Issue: ", + // TODO New key - Add a translation + "iiifsearchable.page.issue": "Issue: ", + + // "iiifsearchable.page.description": "Description: ", + // TODO New key - Add a translation + "iiifsearchable.page.description": "Description: ", + + // "iiifviewer.fullscreen.notice": "Use full screen for better viewing.", + // TODO New key - Add a translation + "iiifviewer.fullscreen.notice": "Use full screen for better viewing.", + + // "iiif.listelement.badge": "Image Media", + // TODO New key - Add a translation + "iiif.listelement.badge": "Image Media", + + // "iiif.page.titleprefix": "Image: ", + // TODO New key - Add a translation + "iiif.page.titleprefix": "Image: ", + + // "iiif.page.doi": "Permanent Link: ", + // TODO New key - Add a translation + "iiif.page.doi": "Permanent Link: ", + + // "iiif.page.issue": "Issue: ", + // TODO New key - Add a translation + "iiif.page.issue": "Issue: ", + + // "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.or-divider": "or", + "login.form.or-divider": "немесе", + + // "login.form.oidc": "Log in with OIDC", + // TODO New key - Add a translation + "login.form.oidc": "Log in with OIDC", + + // "login.form.orcid": "Log in with ORCID", + // TODO New key - Add a translation + "login.form.orcid": "Log in with ORCID", + + // "login.form.password": "Password", + "login.form.password":"Пароль", + + // "login.form.shibboleth": "Log in with Shibboleth", + "login.form.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.admin": "Management", + // TODO Source message changed - Revise the translation + "menu.header.admin": "Әкімші", + + // "menu.header.image.logo": "Repository logo", + "menu.header.image.logo": "Репозиторий логотипі", + + // "menu.header.admin.description": "Management menu", + // TODO New key - Add a translation + "menu.header.admin.description": "Management menu", + + + + // "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_groups": "Groups", + "menu.section.access_control_groups": "Топтар", + + // "menu.section.access_control_people": "People", + "menu.section.access_control_people": "Адамдар", + + + + // "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_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.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.icon.access_control": "Access Control menu section", + "menu.section.icon.access_control": "Қатынасты басқару мәзірі бөлімі", + + // "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", + // TODO New key - Add a translation + "menu.section.icon.curation_tasks": "Curation Task menu section", + + // "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", + // TODO New key - Add a translation + "menu.section.icon.health": "Health check menu section", + + // "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.processes": "Processes Health", + // TODO Source message changed - Revise the translation + "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", + // TODO New key - Add a translation + "menu.section.icon.workflow": "Administer workflow menu section", + + // "menu.section.icon.unpin": "Unpin sidebar", + "menu.section.icon.unpin": "Бүйірлік тақтаны босату", + + + + // "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.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", + // TODO New key - Add a translation + "menu.section.health": "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.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", + // TODO New key - Add a translation + "metadata-export-search.tooltip": "Export search results as CSV", + // "metadata-export-search.submit.success": "The export was started successfully", + // TODO New key - Add a translation + "metadata-export-search.submit.success": "The export was started successfully", + // "metadata-export-search.submit.error": "Starting the export has failed", + // TODO New key - Add a translation + "metadata-export-search.submit.error": "Starting the export has failed", + + + // "mydspace.breadcrumbs": "MyDSpace", + // TODO New key - Add a translation + "mydspace.breadcrumbs": "MyDSpace", + + // "mydspace.description": "", + "mydspace.description": "", + + // "mydspace.general.text-here": "here", + "mydspace.general.text-here":"Мұнда", + + // "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...", + // TODO New key - Add a translation + "mydspace.search-form.placeholder": "Search in mydspace...", + + // "mydspace.show.workflow": "Workflow tasks", + // TODO Source message changed - Revise the translation + "mydspace.show.workflow": "Барлық тапсырмалар", + + // "mydspace.show.workspace": "Your Submissions", + "mydspace.show.workspace":"Сіздің өтініштеріңіз", + + // "mydspace.status.archived": "Archived", + "mydspace.status.archived": "Мұрағатталған", + + // "mydspace.status.validation": "Validation", + "mydspace.status.validation": "Валидация", + + // "mydspace.status.waiting-for-controller": "Waiting for controller", + "mydspace.status.waiting-for-controller": "Контроллерді күтуде", + + // "mydspace.status.workflow": "Workflow", + "mydspace.status.workflow":"Жұмыс барысы", + + // "mydspace.status.workspace": "Workspace", + "mydspace.status.workspace": "Жұмыс кеңістігі", + + // "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.upload.upload-successful": "New workspace item created. Click {{here}} for edit it.", + "mydspace.upload.upload-successful": "Жаңа жұмыс кеңістігі элементі жасалды. Оны өңдеу үшін {{осында}} басыңыз.", + + // "mydspace.view-btn": "View", + "mydspace.view-btn": "Көру", + + + + // "nav.browse.header": "All of DSpace", + "nav.browse.header": "Барлық DSpace", + + // "nav.community-browse.header": "By Community", + "nav.community-browse.header": "Қауымдастық бойынша", + + // "nav.language": "Language switch", + "nav.language": "Тілді ауыстыру", + + // "nav.login": "Log In", + "nav.login": "Кіру", + + // "nav.logout": "User profile menu and Log Out", + // TODO Source message changed - Revise the translation + "nav.logout": "Шығу", + + // "nav.main.description": "Main navigation bar", + // TODO New key - Add a translation + "nav.main.description": "Main navigation bar", + + // "nav.mydspace": "MyDSpace", + "nav.mydspace": "MyDSpace", + + // "nav.profile": "Profile", + "nav.profile": "Профиль", + + // "nav.search": "Search", + "nav.search": "Іздеу", + + // "nav.statistics.header": "Statistics", + "nav.statistics.header": "Статистика", + + // "nav.stop-impersonating": "Stop impersonating EPerson", + "nav.stop-impersonating": "Eperson атын шығаруды тоқтатыңыз", + + // "nav.toggle" : "Toggle navigation", + // TODO New key - Add a translation + "nav.toggle" : "Toggle navigation", + + // "nav.user.description" : "User profile bar", + // TODO New key - Add a translation + "nav.user.description" : "User profile bar", + + // "none.listelement.badge": "Item", + // TODO New key - Add a translation + "none.listelement.badge": "Item", + + + // "orgunit.listelement.badge": "Organizational Unit", + "orgunit.listelement.badge": "Ұйымдық бөлімше", + + // "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.titleprefix": "Organizational Unit: ", + "orgunit.page.titleprefix": "Ұйымдық бөлімше:", + + + + // "pagination.options.description": "Pagination options", + // TODO New key - Add a translation + "pagination.options.description": "Pagination options", + + // "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", + // TODO New key - Add a translation + "person.page.name": "Name", + + // "person.page.link.full": "Show all metadata", + "person.page.link.full": "Барлық метамәліметті көрсету", + + // "person.page.orcid": "ORCID", + "person.page.orcid": "ORCID", + + // "person.page.staffid": "Staff ID", + "person.page.staffid": "Қызметкерлердің жеке куәлігі", + + // "person.page.titleprefix": "Person: ", + "person.page.titleprefix":"Адам: ", + + // "person.search.results.head": "Person Search Results", + "person.search.results.head": "Тұлға іздеу нәтижелері", + + // "person-relationships.search.results.head": "Person Search Results", + // TODO New key - Add a translation + "person-relationships.search.results.head": "Person Search Results", + + // "person.search.title": "Person Search", + // TODO Source message changed - Revise the translation + "person.search.title": "DSpace Angular :: Адамды іздеу", + + + + // "process.new.select-parameters": "Parameters", + "process.new.select-parameters":"Параметрлер", + + // "process.new.cancel": "Cancel", + "process.new.cancel": "Болдырмау", + + // "process.new.submit": "Save", + // TODO Source message changed - Revise the translation + "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.string.required": "Parameter value is required", + "process.new.parameter.string.required": "Параметр мәні қажет", + + // "process.new.parameter.type.value": "value", + "process.new.parameter.type.value": "құны", + + // "process.new.parameter.type.file": "file", + "process.new.parameter.type.file": "файл", + + // "process.new.parameter.required.missing": "The following parameters are required but still missing:", + "process.new.parameter.required.missing": "Келесі параметрлер қажет, бірақ әлі жоқ:", + + // "process.new.notification.success.title": "Success", + "process.new.notification.success.title": "Жетістік", + + // "process.new.notification.success.content": "The process was successfully created", + "process.new.notification.success.content": "Процесс сәтті құрылды", + + // "process.new.notification.error.title": "Error", + "process.new.notification.error.title": "Қате", + + // "process.new.notification.error.content": "An error occurred while creating this process", + "process.new.notification.error.content": "Бұл процесті жасау кезінде қате орын алды", + + // "process.new.header": "Create a new process", + "process.new.header": "Жаңа процесс жасау", + + // "process.new.title": "Create a new process", + "process.new.title": "Жаңа процесс жасау", + + // "process.new.breadcrumbs": "Create a new process", + "process.new.breadcrumbs": "Жаңа процесс жасау", + + + + // "process.detail.arguments" : "Arguments", + "process.detail.arguments" :"Аргументтер", + + // "process.detail.arguments.empty" : "This process doesn't contain any arguments", + "process.detail.arguments.empty" : "Бұл процесс ешқандай аргументтерді қамтымайды", + + // "process.detail.back" : "Back", + "process.detail.back" : "Артқа", + + // "process.detail.output" : "Process Output", + "process.detail.output" : "Процесс шығысы", + + // "process.detail.logs.button": "Retrieve process output", + "process.detail.logs.button": "Процесс шығысын шығарып алу", + + // "process.detail.logs.loading": "Retrieving", + "process.detail.logs.loading": "Алу", + + // "process.detail.logs.none": "This process has no output", + "process.detail.logs.none": "Бұл процесте нәтиже жоқ", + + // "process.detail.output-files" : "Output Files", + "process.detail.output-files" : "Шығару файлдары", + + // "process.detail.output-files.empty" : "This process doesn't contain any output files", + "process.detail.output-files.empty" : "Бұл процесте ешқандай шығыс файлдары жоқ", + + // "process.detail.script" : "Script", + "process.detail.script" : "Сценарий", + + // "process.detail.title" : "Process: {{ id }} - {{ name }}", + "process.detail.title" :"Процесс: {{ id }} - {{ name }}", + + // "process.detail.start-time" : "Start time", + "process.detail.start-time" : "Бастау уақыты", + + // "process.detail.end-time" : "Finish time", + "process.detail.end-time" : "Аяқтау уақыты", + + // "process.detail.status" : "Status", + "process.detail.status" : "Мәртебе", + + // "process.detail.create" : "Create similar process", + "process.detail.create" : "Ұқсас процесті жасау", + + // "process.detail.actions": "Actions", + // TODO New key - Add a translation + "process.detail.actions": "Actions", + + // "process.detail.delete.button": "Delete process", + // TODO New key - Add a translation + "process.detail.delete.button": "Delete process", + + // "process.detail.delete.header": "Delete process", + // TODO New key - Add a translation + "process.detail.delete.header": "Delete process", + + // "process.detail.delete.body": "Are you sure you want to delete the current process?", + // TODO New key - Add a translation + "process.detail.delete.body": "Are you sure you want to delete the current process?", + + // "process.detail.delete.cancel": "Cancel", + // TODO New key - Add a translation + "process.detail.delete.cancel": "Cancel", + + // "process.detail.delete.confirm": "Delete process", + // TODO New key - Add a translation + "process.detail.delete.confirm": "Delete process", + + // "process.detail.delete.success": "The process was successfully deleted.", + // TODO New key - Add a translation + "process.detail.delete.success": "The process was successfully deleted.", + + // "process.detail.delete.error": "Something went wrong when deleting the process", + // TODO New key - Add a translation + "process.detail.delete.error": "Something went wrong when deleting the process", + + + + // "process.overview.table.finish" : "Finish time (UTC)", + // TODO Source message changed - Revise the translation + "process.overview.table.finish" :"Аяқтау уақыты", + + // "process.overview.table.id" : "Process ID", + "process.overview.table.id" :"Процесс идентификаторы", + + // "process.overview.table.name" : "Name", + "process.overview.table.name" :"Аты", + + // "process.overview.table.start" : "Start time (UTC)", + // TODO Source message changed - Revise the translation + "process.overview.table.start" : "Бастау уақыты", + + // "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", + // TODO New key - Add a translation + "process.overview.table.actions": "Actions", + + // "process.overview.delete": "Delete {{count}} processes", + // TODO New key - Add a translation + "process.overview.delete": "Delete {{count}} processes", + + // "process.overview.delete.clear": "Clear delete selection", + // TODO New key - Add a translation + "process.overview.delete.clear": "Clear delete selection", + + // "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.", + // TODO New key - Add a translation + "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.body": "Are you sure you want to delete {{count}} process(es)?", + // TODO New key - Add a translation + "process.overview.delete.body": "Are you sure you want to delete {{count}} process(es)?", + + // "process.overview.delete.header": "Delete processes", + // TODO New key - Add a translation + "process.overview.delete.header": "Delete processes", + + // "process.bulk.delete.error.head": "Error on deleteing process", + // TODO New key - Add a translation + "process.bulk.delete.error.head": "Error on deleteing process", + + // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ", + // TODO New key - Add a translation + "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ", + + // "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted", + // TODO New key - Add a translation + "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted", + + + + // "profile.breadcrumbs": "Update Profile", + "profile.breadcrumbs": "Профильді жаңарту", + + // "profile.card.identify": "Identify", + "profile.card.identify":"Анықтау", + + // "profile.card.security": "Security", + "profile.card.security": "Қауіпсіздік", + + // "profile.form.submit": "Save", + // TODO Source message changed - Revise the translation + "profile.form.submit": "Профильді жаңарту", + + // "profile.groups.head": "Authorization groups you belong to", + "profile.groups.head": "Сіз тиесілі авторизация топтары", + + // "profile.special.groups.head": "Authorization special groups you belong to", + // TODO New key - Add a translation + "profile.special.groups.head": "Authorization special groups you belong to", + + // "profile.head": "Update Profile", + "profile.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.error.password-length": "The password should be at least 6 characters long.", + "profile.security.form.error.password-length": "Құпия сөздің ұзындығы кемінде 6 таңба болуы керек.", + + // "profile.security.form.info": "Optionally, you can enter a new password in the box below, and confirm it by typing it again into the second box. It should be at least six characters long.", + "profile.security.form.info": "Қосымша, төмендегі жолаққа жаңа құпия сөзді енгізіп, оны екінші жолаққа қайта теру арқылы растай аласыз. Оның ұзындығы кемінде алты таңба болуы керек.", + + // "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.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.not-long-enough": "The password has to be at least 6 characters long.", + "profile.security.form.notifications.error.not-long-enough": "Құпия сөз кемінде 6 таңбадан тұруы керек.", + + // "profile.security.form.notifications.error.not-same": "The provided passwords are not the same.", + "profile.security.form.notifications.error.not-same": "Берілген құпия сөздер бірдей емес.", + + // "profile.title": "Update Profile", + "profile.title":"Профильді жаңарту", + + // "profile.card.researcher": "Researcher Profile", + // TODO New key - Add a translation + "profile.card.researcher": "Researcher Profile", + + // "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.status": "Status", + "project.page.status": "Мәртебе", + + // "project.page.titleprefix": "Research Project: ", + "project.page.titleprefix": "Зерттеу жобасы:", + + // "project.search.results.head": "Project Search Results", + "project.search.results.head": "Жобаны іздеу нәтижелері", + + // "project-relationships.search.results.head": "Project Search Results", + // TODO New key - Add a translation + "project-relationships.search.results.head": "Project Search Results", + + + + // "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.titleprefix": "Publication: ", + "publication.page.titleprefix": "Басылым: ", + + // "publication.page.volume-title": "Volume Title", + "publication.page.volume-title": "Том атауы", + + // "publication.search.results.head": "Publication Search Results", + "publication.search.results.head": "Жарияланымдарды іздеу нәтижелері", + + // "publication-relationships.search.results.head": "Publication Search Results", + // TODO New key - Add a translation + "publication-relationships.search.results.head": "Publication Search Results", + + // "publication.search.title": "Publication Search", + // TODO Source message changed - Revise the translation + "publication.search.title": "DSpace Angular :: Жарияланымдарды іздеу", + + + // "media-viewer.next": "Next", + // TODO New key - Add a translation + "media-viewer.next": "Next", + + // "media-viewer.previous": "Previous", + // TODO New key - Add a translation + "media-viewer.previous": "Previous", + + // "media-viewer.playlist": "Playlist", + // TODO New key - Add a translation + "media-viewer.playlist": "Playlist", + + + // "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. It should be at least six characters long.", + "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.security.error.password-length": "The password should be at least 6 characters long.", + "register-page.create-profile.security.error.password-length": "Пароль кем дегенде 6 таңбадан тұруы керек.", + + // "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.pattern": "Please fill in a valid email address", + "register-page.registration.email.error.pattern": "Жарамды электрондық пошта мекенжайын енгізіңіз", + + // "register-page.registration.email.hint": "This address will be verified and used as your login name.", + "register-page.registration.email.hint":"Бұл мекен-жай тексеріліп, сіздің логиніңіз ретінде пайдаланылады.", + + // "register-page.registration.submit": "Register", + "register-page.registration.submit": "Тіркелу", + + // "register-page.registration.success.head": "Verification email sent", + "register-page.registration.success.head": "Растау электрондық поштасы жіберілді", + + // "register-page.registration.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", + "register-page.registration.success.content": "{{ email }} мекен-жайына арнайы URL мекен-жайы мен қосымша нұсқаулары бар электрондық пошта жіберіледі.", + + // "register-page.registration.error.head": "Error when trying to register email", + "register-page.registration.error.head": "Электрондық поштаны тіркеу кезінде қате", + + // "register-page.registration.error.content": "An error occured when registering the following email address: {{ email }}", + "register-page.registration.error.content":"Келесі электрондық пошта мекенжайын тіркеу кезінде қате пайда болды: {{ email }}", + + + + // "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": "Authors", + "relationships.isAuthorOf":"Авторлар", + + // "relationships.isAuthorOf.Person": "Authors (persons)", + "relationships.isAuthorOf.Person": "Авторлар (тұлғалар)", + + // "relationships.isAuthorOf.OrgUnit": "Authors (organizational units)", + "relationships.isAuthorOf.OrgUnit": "Авторлар (ұйымдастыру бөлімшелері)", + + // "relationships.isIssueOf": "Journal Issues", + "relationships.isIssueOf": "Журналдың шығарылымдары", + + // "relationships.isJournalIssueOf": "Journal Issue", + "relationships.isJournalIssueOf":"Журнал шығару", + + // "relationships.isJournalOf": "Journals", + "relationships.isJournalOf": "Күнделіктер", + + // "relationships.isOrgUnitOf": "Organizational Units", + "relationships.isOrgUnitOf": "Ұйымдастыру бөлімшелері", + + // "relationships.isPersonOf": "Authors", + "relationships.isPersonOf": "Авторлары", + + // "relationships.isProjectOf": "Research Projects", + "relationships.isProjectOf": "Зерттеу жобалары", + + // "relationships.isPublicationOf": "Publications", + "relationships.isPublicationOf": "Жарияланымдар", + + // "relationships.isPublicationOfJournalIssue": "Articles", + "relationships.isPublicationOfJournalIssue": "Мақалалар", + + // "relationships.isSingleJournalOf": "Journal", + "relationships.isSingleJournalOf":"Күнделік", + + // "relationships.isSingleVolumeOf": "Journal Volume", + "relationships.isSingleVolumeOf": "Журнал көлемі", + + // "relationships.isVolumeOf": "Journal Volumes", + "relationships.isVolumeOf": "Журнал томдары", + + // "relationships.isContributorOf": "Contributors", + "relationships.isContributorOf": "Қатысушылар", + + // "relationships.isContributorOf.OrgUnit": "Contributor (Organizational Unit)", + "relationships.isContributorOf.OrgUnit": "Қатысушылар (Мекемелер)", + + // "relationships.isContributorOf.Person": "Contributor", + "relationships.isContributorOf.Person": "Қатысушы", + + // "relationships.isFundingAgencyOf.OrgUnit": "Funder", + "relationships.isFundingAgencyOf.OrgUnit": "Жасаушы", + + + // "repository.image.logo": "Repository logo", + "repository.image.logo": "Repository logo", + + // "repository.title.prefix": "DSpace Angular :: ", + // TODO New key - Add a translation + "repository.title.prefix": "DSpace Angular :: ", + + // "repository.title.prefixDSpace": "DSpace Angular ::", + // TODO New key - Add a translation + "repository.title.prefixDSpace": "DSpace Angular ::", + + + // "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.", + // TODO New key - Add a translation + "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.other-failure.content": "An error occurred while editing the resource policy. The target (ePerson or group) has been successfully updated.", + // TODO New key - Add a translation + "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.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": "Рұқсат берілетін тұлға немесе топ", + + // "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": "Адамды іздеу", + + // "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", + // TODO New key - Add a translation + "resource-policies.form.eperson-group-list.modal.header": "Cannot change type", + + // "resource-policies.form.eperson-group-list.modal.text1.toGroup": "It is not possible to replace an ePerson with a group.", + // TODO New key - Add a translation + "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.toEPerson": "It is not possible to replace a group with an ePerson.", + // TODO New key - Add a translation + "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.text2": "Delete the current resource policy and create a new one with the desired type.", + // TODO New key - Add a translation + "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.close": "Ok", + // TODO New key - Add a translation + "resource-policies.form.eperson-group-list.modal.close": "Ok", + + // "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.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": "Адам", + + // "resource-policies.table.headers.group": "Group", + "resource-policies.table.headers.group": "Топ", + + // "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": "Деректерді жинау саясаты", + + + + // "search.description": "", + "search.description": "", + + // "search.switch-configuration.title": "Show", + "search.switch-configuration.title": "Көрсету", + + // "search.title": "Search", + // TODO Source message changed - Revise the translation + "search.title": "DSpace Angular :: Іздеу", + + // "search.breadcrumbs": "Search", + "search.breadcrumbs": "Іздеу", + + // "search.search-form.placeholder": "Search the repository ...", + // TODO New key - Add a translation + "search.search-form.placeholder": "Search the repository ...", + + + // "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", + // TODO Source message changed - Revise the translation + "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.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.withdrawn": "Withdrawn", + "search.filters.applied.f.withdrawn": "Алып тасталынды", + + + + // "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", + // TODO New key - Add a translation + "search.filters.filter.author.label": "Search author name", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.birthDate.label": "Search birth date", + + // "search.filters.filter.collapse": "Collapse filter", + // TODO New key - Add a translation + "search.filters.filter.collapse": "Collapse filter", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.creativeDatePublished.label": "Search date published", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.creativeWorkEditor.label": "Search editor", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.creativeWorkKeywords.label": "Search subject", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.creativeWorkPublisher.label": "Search publisher", + + // "search.filters.filter.dateIssued.head": "Date", + "search.filters.filter.dateIssued.head": "Кездесуге", + + // "search.filters.filter.dateIssued.max.placeholder": "Maximum Date", + // TODO Source message changed - Revise the translation + "search.filters.filter.dateIssued.max.placeholder": "Ең төменгі күн", + + // "search.filters.filter.dateIssued.max.label": "End", + // TODO New key - Add a translation + "search.filters.filter.dateIssued.max.label": "End", + + // "search.filters.filter.dateIssued.min.placeholder": "Minimum Date", + // TODO Source message changed - Revise the translation + "search.filters.filter.dateIssued.min.placeholder":"Максималды күн", + + // "search.filters.filter.dateIssued.min.label": "Start", + // TODO New key - Add a translation + "search.filters.filter.dateIssued.min.label": "Start", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.dateSubmitted.label": "Search date submitted", + + // "search.filters.filter.discoverable.head": "Non-discoverable", + // TODO Source message changed - Revise the translation + "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", + // TODO New key - Add a translation + "search.filters.filter.entityType.label": "Search item type", + + // "search.filters.filter.expand": "Expand filter", + // TODO New key - Add a translation + "search.filters.filter.expand": "Expand filter", + + // "search.filters.filter.has_content_in_original_bundle.head": "Has files", + "search.filters.filter.has_content_in_original_bundle.head": "Файлдар бар", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.itemtype.label": "Search type", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.jobTitle.label": "Search job title", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.knowsLanguage.label": "Search known language", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.namedresourcetype.label": "Search status", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.objectpeople.label": "Search people", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.organizationAddressCountry.label": "Search country", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.organizationAddressLocality.label": "Search city", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.organizationFoundingDate.label": "Search date founded", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.scope.label": "Search scope filter", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.subject.label": "Search subject", + + // "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", + // TODO New key - Add a translation + "search.filters.filter.submitter.label": "Search submitter", + + + + // "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.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.discoverable.true": "No", + "search.filters.discoverable.true": "Жоқ", + + // "search.filters.discoverable.false": "Yes", + "search.filters.discoverable.false": "Иә", + + // "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", + // TODO New key - Add a translation + "search.filters.search.submit": "Submit", + + + + // "search.form.search": "Search", + "search.form.search":"Іздеу", + + // "search.form.search_dspace": "All repository", + // TODO Source message changed - Revise the translation + "search.form.search_dspace": "Іздеу кеңістігі", + + // "search.form.scope.all": "All of DSpace", + // TODO New key - Add a translation + "search.form.scope.all": "All of 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.view-result": "View", + // TODO New key - Add a translation + "search.results.view-result": "View", + + // "search.results.response.500": "An error occurred during query execution, please try again later", + // TODO New key - Add a translation + "search.results.response.500": "An error occurred during query execution, please try again later", + + // "default.search.results.head": "Search Results", + // TODO New key - Add a translation + "default.search.results.head": "Search Results", + + // "default-relationships.search.results.head": "Search Results", + // TODO New key - Add a translation + "default-relationships.search.results.head": "Search Results", + + + // "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.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": "Тізім ретінде көрсету", + + + + // "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", + // TODO New key - Add a translation + "sorting.score.ASC": "Least Relevant", + + // "sorting.score.DESC": "Most Relevant", + // TODO Source message changed - Revise the translation + "sorting.score.DESC": "Өзектілігі", + + // "sorting.dc.date.issued.ASC": "Date Issued Ascending", + // TODO New key - Add a translation + "sorting.dc.date.issued.ASC": "Date Issued Ascending", + + // "sorting.dc.date.issued.DESC": "Date Issued Descending", + // TODO New key - Add a translation + "sorting.dc.date.issued.DESC": "Date Issued Descending", + + // "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending", + // TODO New key - Add a translation + "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending", + + // "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending", + // TODO New key - Add a translation + "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending", + + // "sorting.lastModified.ASC": "Last modified Ascending", + // TODO New key - Add a translation + "sorting.lastModified.ASC": "Last modified Ascending", + + // "sorting.lastModified.DESC": "Last modified Descending", + // TODO New key - Add a translation + "sorting.lastModified.DESC": "Last modified Descending", + + + // "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": "Түрлері", + + + + // "submission.edit.breadcrumbs": "Edit Submission", + // TODO New key - Add a translation + "submission.edit.breadcrumbs": "Edit Submission", + + // "submission.edit.title": "Edit Submission", + "submission.edit.title": "Жіберуді өңдеу", + + // "submission.general.cancel": "Cancel", + // TODO New key - Add a translation + "submission.general.cancel": "Cancel", + + // "submission.general.cannot_submit": "You have not the privilege 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.info.saved": "Saved", + // TODO New key - Add a translation + "submission.general.info.saved": "Saved", + + // "submission.general.info.pending-changes": "Unsaved changes", + // TODO New key - Add a translation + "submission.general.info.pending-changes": "Unsaved 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", + // TODO New key - Add a translation + "submission.import-external.title.Journal": "Import a journal from an external source", + + // "submission.import-external.title.JournalIssue": "Import a journal issue from an external source", + // TODO New key - Add a translation + "submission.import-external.title.JournalIssue": "Import a journal issue from an external source", + + // "submission.import-external.title.JournalVolume": "Import a journal volume from an external source", + // TODO New key - Add a translation + "submission.import-external.title.JournalVolume": "Import a journal volume from an external source", + + // "submission.import-external.title.OrgUnit": "Import a publisher from an external source", + // TODO New key - Add a translation + "submission.import-external.title.OrgUnit": "Import a publisher from an external source", + + // "submission.import-external.title.Person": "Import a person from an external source", + // TODO New key - Add a translation + "submission.import-external.title.Person": "Import a person from an external source", + + // "submission.import-external.title.Project": "Import a project from an external source", + // TODO New key - Add a translation + "submission.import-external.title.Project": "Import a project from an external source", + + // "submission.import-external.title.Publication": "Import a publication from an external source", + // TODO New key - Add a translation + "submission.import-external.title.Publication": "Import a publication from an external source", + + // "submission.import-external.title.none": "Import metadata from an external source", + // TODO New key - Add a translation + "submission.import-external.title.none": "Import metadata from an external source", + + // "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": "Ғарышқа импорттау үшін интернеттен элементтерді табу үшін жоғарыдағы сұрауды енгізіңіз.", + + // "submission.import-external.back-to-my-dspace": "Back to MyDSpace", + "submission.import-external.back-to-my-dspace": "Myspace-ке оралу", + + // "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", + // TODO New key - Add a translation + "submission.import-external.source.ads": "NASA/ADS", + + // "submission.import-external.source.cinii": "CiNii", + // TODO New key - Add a translation + "submission.import-external.source.cinii": "CiNii", + + // "submission.import-external.source.crossref": "CrossRef", + // TODO New key - Add a translation + "submission.import-external.source.crossref": "CrossRef", + + // "submission.import-external.source.scielo": "SciELO", + // TODO New key - Add a translation + "submission.import-external.source.scielo": "SciELO", + + // "submission.import-external.source.scopus": "Scopus", + // TODO New key - Add a translation + "submission.import-external.source.scopus": "Scopus", + + // "submission.import-external.source.vufind": "VuFind", + // TODO New key - Add a translation + "submission.import-external.source.vufind": "VuFind", + + // "submission.import-external.source.wos": "Web Of Science", + // TODO New key - Add a translation + "submission.import-external.source.wos": "Web Of Science", + + // "submission.import-external.source.orcidWorks": "ORCID", + // TODO New key - Add a translation + "submission.import-external.source.orcidWorks": "ORCID", + + // "submission.import-external.source.epo": "European Patent Office (EPO)", + // TODO New key - Add a translation + "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": "ШЕРПА күнделіктері", + + // "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", + // TODO New key - Add a translation + "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN", + + // "submission.import-external.source.sherpaPublisher": "SHERPA Publishers", + "submission.import-external.source.sherpaPublisher": "ШЕРПА баспасы", + + // "submission.import-external.source.openAIREFunding": "Funding OpenAIRE API", + // TODO New key - Add a translation + "submission.import-external.source.openAIREFunding": "Funding OpenAIRE API", + + // "submission.import-external.source.orcid": "ORCID", + "submission.import-external.source.orcid": "ОРКИД", + + // "submission.import-external.source.pubmed": "Pubmed", + "submission.import-external.source.pubmed": "Pubmed", + + // "submission.import-external.source.pubmedeu": "Pubmed Europe", + // TODO New key - Add a translation + "submission.import-external.source.pubmedeu": "Pubmed Europe", + + // "submission.import-external.source.lcname": "Library of Congress Names", + "submission.import-external.source.lcname": "Конгресс Кітапханасының Атаулары", + + // "submission.import-external.preview.title": "Item Preview", + "submission.import-external.preview.title": "Элементті алдын-ала қарау", + + // "submission.import-external.preview.title.Publication": "Publication Preview", + // TODO New key - Add a translation + "submission.import-external.preview.title.Publication": "Publication Preview", + + // "submission.import-external.preview.title.none": "Item Preview", + // TODO New key - Add a translation + "submission.import-external.preview.title.none": "Item Preview", + + // "submission.import-external.preview.title.Journal": "Journal Preview", + // TODO New key - Add a translation + "submission.import-external.preview.title.Journal": "Journal Preview", + + // "submission.import-external.preview.title.OrgUnit": "Organizational Unit Preview", + // TODO New key - Add a translation + "submission.import-external.preview.title.OrgUnit": "Organizational Unit Preview", + + // "submission.import-external.preview.title.Person": "Person Preview", + // TODO New key - Add a translation + "submission.import-external.preview.title.Person": "Person Preview", + + // "submission.import-external.preview.title.Project": "Project Preview", + // TODO New key - Add a translation + "submission.import-external.preview.title.Project": "Project Preview", + + // "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", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project", + + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Import remote item", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Import remote item", + + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Import remote event", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Import remote event", + + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Import remote product", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Import remote product", + + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Import remote equipment", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Import remote equipment", + + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "Import remote organizational unit", + // TODO New key - Add a translation + "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.Funding": "Import remote fund", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "Import remote fund", + + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Import remote person", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Import remote person", + + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Import remote patent", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Import remote patent", + + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Import remote project", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Import remote project", + + // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Import remote publication", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Import remote publication", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!", + // TODO New key - Add a translation + "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.title": "Project", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openAIREFunding": "Funding OpenAIRE API", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openAIREFunding": "Funding OpenAIRE API", + + // "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.sherpaJournal": "Importing from Sherpa Journal", + "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Шерпа журналынан импорттау", + + // "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.import": "Import", + "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Импорт", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Import Remote Journal", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Қашықтағы журналды импорттау", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Successfully added local journal to the selection", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Үлгіге жергілікті журнал сәтті қосылды", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Successfully imported and added external journal to the selection", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Үлгіге сыртқы журнал сәтті импортталды және қосылды", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Import Remote Journal Issue", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Журналдың қашықтан шығарылымын импорттау", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Successfully added local journal issue to the selection", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Іріктемеге жергілікті журналдың шығарылымы сәтті қосылды", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Successfully imported and added external journal issue to the selection", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Үлгіге сыртқы журналдың шығарылымы сәтті импортталды және қосылды", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Import Remote Journal Volume", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Журналдың қашықтағы томын импорттау", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Successfully added local journal volume to the selection", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Үлгіге журналдың жергілікті көлемі сәтті қосылды", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Successfully imported and added external journal volume to the selection", + "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Үлгіге журналдың сыртқы көлемі сәтті импортталды және қосылды", + + // "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:", + "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Жергілікті сәйкестікті таңдаңыз:", + + // "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...", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...", + + // "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.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 журналдары ({{ 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 атаулары ({{ 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.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.openAIREFunding": "Funding OpenAIRE API", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.openAIREFunding": "Funding OpenAIRE API", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects", + + // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.openAIREFunding": "Funding OpenAIRE API", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.openAIREFunding": "Funding OpenAIRE API", + + // "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project", + + // "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects", + + // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project", + + + + + // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", + // TODO New key - Add a translation + "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...", + + // "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.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.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.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.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.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": "Search Results", + "submission.sections.describe.relationship-lookup.selection-tab.title": "Іздеу нәтижелері", + + // "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.", + "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Сіз \"{{ value }}\" сол адамға арналған атау опциясы ретінде сақтағыңыз келе ме, сондықтан сіз және басқалар оны болашақ жіберу үшін қайта пайдалана аласыз ба? Егер жоқ болса, сіз оны осы жіберу үшін пайдалана аласыз.", + + // "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant", + "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Атаудың жаңа нұсқасын сақтау", + + // "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Use only for this submission", + "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Тек осы жіберу үшін пайдаланыңыз", + + // "submission.sections.ccLicense.type": "License Type", + "submission.sections.ccLicense.type": "Лицензияның типі", + + // "submission.sections.ccLicense.select": "Select a license type…", + "submission.sections.ccLicense.select": "Лицензия түрін таңдаңыз...", + + // "submission.sections.ccLicense.change": "Change your license type…", + "submission.sections.ccLicense.change": "Лицензия түрін өзгертіңіз...", + + // "submission.sections.ccLicense.none": "No licenses available", + "submission.sections.ccLicense.none": "Лицензиялар жоқ", + + // "submission.sections.ccLicense.option.select": "Select an option…", + "submission.sections.ccLicense.option.select": "Опцияны таңдаңыз...", + + // "submission.sections.ccLicense.link": "You’ve selected the following license:", + "submission.sections.ccLicense.link": "Сіз келесі лицензияны таңдадыңыз:", + + // "submission.sections.ccLicense.confirmation": "I grant the license above", + "submission.sections.ccLicense.confirmation": "Мен жоғарыда аталған лицензияны беремін", + + // "submission.sections.general.add-more": "Add more", + "submission.sections.general.add-more": "Тағы қосу", + + // "submission.sections.general.cannot_deposit": "Deposit cannot be completed due to errors in the form.
Please fill out all required fields to complete the deposit.", + // TODO New key - Add a translation + "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.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-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.submit.progressbar.accessCondition": "Item access conditions", + "submission.sections.submit.progressbar.accessCondition": "Элементке кіру шарттары", + + // "submission.sections.submit.progressbar.CClicense": "Creative commons license", + "submission.sections.submit.progressbar.CClicense": "Creative commons лицензиясы", + + // "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.detect-duplicate": "Potential duplicates", + "submission.sections.submit.progressbar.detect-duplicate": "Ықтимал телнұсқалар", + + // "submission.sections.submit.progressbar.license": "Deposit license", + "submission.sections.submit.progressbar.license": "Депозиттік лицензия", + + // "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies", + + // "submission.sections.submit.progressbar.upload": "Upload files", + "submission.sections.submit.progressbar.upload": "Файлдарды жүктеу", + + // "submission.sections.submit.progressbar.sherpaPolicies": "Publisher open access policy information", + // TODO New key - Add a translation + "submission.sections.submit.progressbar.sherpaPolicies": "Publisher open access policy information", + + + // "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.", + // TODO New key - Add a translation + "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.status.errors.title": "Errors", + "submission.sections.status.errors.title": "Қателер", + + // "submission.sections.status.valid.title": "Valid", + // TODO New key - Add a translation + "submission.sections.status.valid.title": "Valid", + + // "submission.sections.status.warnings.title": "Warnings", + // TODO New key - Add a translation + "submission.sections.status.warnings.title": "Warnings", + + // "submission.sections.status.errors.aria": "has errors", + // TODO New key - Add a translation + "submission.sections.status.errors.aria": "has errors", + + // "submission.sections.status.valid.aria": "is valid", + // TODO New key - Add a translation + "submission.sections.status.valid.aria": "is valid", + + // "submission.sections.status.warnings.aria": "has warnings", + // TODO New key - Add a translation + "submission.sections.status.warnings.aria": "has warnings", + + // "submission.sections.status.info.title": "Additional Information", + // TODO New key - Add a translation + "submission.sections.status.info.title": "Additional Information", + + // "submission.sections.status.info.aria": "Additional Information", + // TODO New key - Add a translation + "submission.sections.status.info.aria": "Additional Information", + + // "submission.sections.toggle.open": "Open section", + // TODO New key - Add a translation + "submission.sections.toggle.open": "Open section", + + // "submission.sections.toggle.close": "Close section", + // TODO New key - Add a translation + "submission.sections.toggle.close": "Close section", + + // "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section", + // TODO New key - Add a translation + "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section", + + // "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section", + // TODO New key - Add a translation + "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section", + + // "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", + // TODO New key - Add a translation + "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.date-required": "Date is required.", + "submission.sections.upload.form.date-required": "Күні міндетті.", + + // "submission.sections.upload.form.date-required-from": "Grant access from date is required.", + // TODO New key - Add a translation + "submission.sections.upload.form.date-required-from": "Grant access from date is required.", + + // "submission.sections.upload.form.date-required-until": "Grant access until date is required.", + // TODO New key - Add a translation + "submission.sections.upload.form.date-required-until": "Grant access until date is required.", + + // "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", + // TODO New key - Add a translation + "submission.sections.upload.form.from-hint": "Select the date from which the related access condition is applied", + + // "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", + // TODO New key - Add a translation + "submission.sections.upload.form.until-hint": "Select the date until which the related access condition is applied", + + // "submission.sections.upload.form.until-placeholder": "Until", + "submission.sections.upload.form.until-placeholder":"Әзірге", + + // "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", + "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} жинағына жүктелген файлдар келесі топқа (топтарға) сәйкес қол жетімді болады:", + + // "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", + "submission.sections.upload.header.policy.default.withlist": "{{collectionName}} жинағына жүктелген файлдар жеке файл үшін нақты анықталғаннан басқа, келесі топпен (топтармен) қол жетімді болатындығын ескеріңіз:", + + // "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or upload additional files just dragging & dropping them everywhere in 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.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.", + + // "submission.sections.accesses.form.discoverable-label": "Discoverable", + // TODO New key - Add a translation + "submission.sections.accesses.form.discoverable-label": "Discoverable", + + // "submission.sections.accesses.form.access-condition-label": "Access condition type", + // TODO New key - Add a translation + "submission.sections.accesses.form.access-condition-label": "Access condition type", + + // "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited", + // TODO New key - Add a translation + "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited", + + // "submission.sections.accesses.form.date-required": "Date is required.", + // TODO New key - Add a translation + "submission.sections.accesses.form.date-required": "Date is required.", + + // "submission.sections.accesses.form.date-required-from": "Grant access from date is required.", + // TODO New key - Add a translation + "submission.sections.accesses.form.date-required-from": "Grant access from date is required.", + + // "submission.sections.accesses.form.date-required-until": "Grant access until date is required.", + // TODO New key - Add a translation + "submission.sections.accesses.form.date-required-until": "Grant access until date is required.", + + // "submission.sections.accesses.form.from-label": "Grant access from", + // TODO New key - Add a translation + "submission.sections.accesses.form.from-label": "Grant access from", + + // "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied", + // TODO New key - Add a translation + "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied", + + // "submission.sections.accesses.form.from-placeholder": "From", + // TODO New key - Add a translation + "submission.sections.accesses.form.from-placeholder": "From", + + // "submission.sections.accesses.form.group-label": "Group", + // TODO New key - Add a translation + "submission.sections.accesses.form.group-label": "Group", + + // "submission.sections.accesses.form.group-required": "Group is required.", + // TODO New key - Add a translation + "submission.sections.accesses.form.group-required": "Group is required.", + + // "submission.sections.accesses.form.until-label": "Grant access until", + // TODO New key - Add a translation + "submission.sections.accesses.form.until-label": "Grant access until", + + // "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied", + // TODO New key - Add a translation + "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied", + + // "submission.sections.accesses.form.until-placeholder": "Until", + // TODO New key - Add a translation + "submission.sections.accesses.form.until-placeholder": "Until", + + // "submission.sections.license.granted-label": "I confirm the license above", + // TODO New key - Add a translation + "submission.sections.license.granted-label": "I confirm the license above", + + // "submission.sections.license.required": "You must accept the license", + // TODO New key - Add a translation + "submission.sections.license.required": "You must accept the license", + + // "submission.sections.license.notgranted": "You must accept the license", + // TODO New key - Add a translation + "submission.sections.license.notgranted": "You must accept the license", + + + // "submission.sections.sherpa.publication.information": "Publication information", + // TODO New key - Add a translation + "submission.sections.sherpa.publication.information": "Publication information", + + // "submission.sections.sherpa.publication.information.title": "Title", + // TODO New key - Add a translation + "submission.sections.sherpa.publication.information.title": "Title", + + // "submission.sections.sherpa.publication.information.issns": "ISSNs", + // TODO New key - Add a translation + "submission.sections.sherpa.publication.information.issns": "ISSNs", + + // "submission.sections.sherpa.publication.information.url": "URL", + // TODO New key - Add a translation + "submission.sections.sherpa.publication.information.url": "URL", + + // "submission.sections.sherpa.publication.information.publishers": "Publisher", + // TODO New key - Add a translation + "submission.sections.sherpa.publication.information.publishers": "Publisher", + + // "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", + // TODO New key - Add a translation + "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub", + + // "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", + // TODO New key - Add a translation + "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub", + + // "submission.sections.sherpa.publisher.policy": "Publisher Policy", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy": "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.", + // TODO New key - Add a translation + "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.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", + // TODO New key - Add a translation + "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.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", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.version": "Version", + + // "submission.sections.sherpa.publisher.policy.embargo": "Embargo", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.embargo": "Embargo", + + // "submission.sections.sherpa.publisher.policy.noembargo": "No Embargo", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.noembargo": "No Embargo", + + // "submission.sections.sherpa.publisher.policy.nolocation": "None", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.nolocation": "None", + + // "submission.sections.sherpa.publisher.policy.license": "License", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.license": "License", + + // "submission.sections.sherpa.publisher.policy.prerequisites": "Prerequisites", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.prerequisites": "Prerequisites", + + // "submission.sections.sherpa.publisher.policy.location": "Location", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.location": "Location", + + // "submission.sections.sherpa.publisher.policy.conditions": "Conditions", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.conditions": "Conditions", + + // "submission.sections.sherpa.publisher.policy.refresh": "Refresh", + // TODO New key - Add a translation + "submission.sections.sherpa.publisher.policy.refresh": "Refresh", + + // "submission.sections.sherpa.record.information": "Record Information", + // TODO New key - Add a translation + "submission.sections.sherpa.record.information": "Record Information", + + // "submission.sections.sherpa.record.information.id": "ID", + // TODO New key - Add a translation + "submission.sections.sherpa.record.information.id": "ID", + + // "submission.sections.sherpa.record.information.date.created": "Date Created", + // TODO New key - Add a translation + "submission.sections.sherpa.record.information.date.created": "Date Created", + + // "submission.sections.sherpa.record.information.date.modified": "Last Modified", + // TODO New key - Add a translation + "submission.sections.sherpa.record.information.date.modified": "Last Modified", + + // "submission.sections.sherpa.record.information.uri": "URI", + // TODO New key - Add a translation + "submission.sections.sherpa.record.information.uri": "URI", + + // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations", + // TODO New key - Add a translation + "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations", + + + + // "submission.submit.breadcrumbs": "New submission", + // TODO New key - Add a translation + "submission.submit.breadcrumbs": "New submission", + + // "submission.submit.title": "New submission", + // TODO Source message changed - Revise the translation + "submission.submit.title":"Бағыну", + + + + // "submission.workflow.generic.delete": "Delete", + "submission.workflow.generic.delete": "Өшіру", + + // "submission.workflow.generic.delete-help": "If you would to discard this item, select \"Delete\". You will then be asked to confirm it.", + "submission.workflow.generic.delete-help": "Егер сіз осы элементтен бас тартқыңыз келсе, жою таңдаңыз. Содан кейін сізден оны растау сұралады.", + + // "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.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.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.workspace.generic.view": "View", + // TODO New key - Add a translation + "submission.workspace.generic.view": "View", + + // "submission.workspace.generic.view-help": "Select this option to view the item's metadata.", + // TODO New key - Add a translation + "submission.workspace.generic.view-help": "Select this option to view the item's metadata.", + + + // "thumbnail.default.alt": "Thumbnail Image", + // TODO New key - Add a translation + "thumbnail.default.alt": "Thumbnail Image", + + // "thumbnail.default.placeholder": "No Thumbnail Available", + // TODO New key - Add a translation + "thumbnail.default.placeholder": "No Thumbnail Available", + + // "thumbnail.project.alt": "Project Logo", + // TODO New key - Add a translation + "thumbnail.project.alt": "Project Logo", + + // "thumbnail.project.placeholder": "Project Placeholder Image", + // TODO New key - Add a translation + "thumbnail.project.placeholder": "Project Placeholder Image", + + // "thumbnail.orgunit.alt": "OrgUnit Logo", + // TODO New key - Add a translation + "thumbnail.orgunit.alt": "OrgUnit Logo", + + // "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image", + // TODO New key - Add a translation + "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image", + + // "thumbnail.person.alt": "Profile Picture", + // TODO New key - Add a translation + "thumbnail.person.alt": "Profile Picture", + + // "thumbnail.person.placeholder": "No Profile Picture Available", + // TODO New key - Add a translation + "thumbnail.person.placeholder": "No Profile Picture Available", + + + + // "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.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": "Зерттеудің пәндік санаттары", + + + + // "uploader.browse": "browse", + "uploader.browse": "көру", + + // "uploader.drag-message": "Drag & Drop your files here", + "uploader.drag-message": "Файлдарды осында сүйреңіз", + + // "uploader.delete.btn-title": "Delete", + // TODO New key - Add a translation + "uploader.delete.btn-title": "Delete", + + // "uploader.or": ", or ", + "uploader.or": ", немесе ", + + // "uploader.processing": "Processing", + "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": "Виртуалды метадеректерді нақты метадеректер ретінде сақтағыңыз келетін элементтерді таңдаңыз", + + + + // "workspace.search.results.head": "Your submissions", + // TODO New key - Add a translation + "workspace.search.results.head": "Your submissions", + + // "workflowAdmin.search.results.head": "Administer Workflow", + "workflowAdmin.search.results.head": "Жұмыс процесін басқару", + + // "workflow.search.results.head": "Workflow tasks", + // TODO New key - Add a translation + "workflow.search.results.head": "Workflow tasks", + + + + // "workflow-item.edit.breadcrumbs": "Edit workflowitem", + // TODO New key - Add a translation + "workflow-item.edit.breadcrumbs": "Edit workflowitem", + + // "workflow-item.edit.title": "Edit workflowitem", + // TODO New key - Add a translation + "workflow-item.edit.title": "Edit workflowitem", + + // "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", + // TODO Source message changed - Revise the translation + "workflow-item.send-back.button.confirm": "Кері жіберу", + + // "workflow-item.view.breadcrumbs": "Workflow View", + // TODO New key - Add a translation + "workflow-item.view.breadcrumbs": "Workflow View", + + // "workspace-item.view.breadcrumbs": "Workspace View", + // TODO New key - Add a translation + "workspace-item.view.breadcrumbs": "Workspace View", + + // "workspace-item.view.title": "Workspace View", + // TODO New key - Add a translation + "workspace-item.view.title": "Workspace View", + + // "idle-modal.header": "Session will expire soon", + // TODO New key - Add a translation + "idle-modal.header": "Session will expire soon", + + // "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?", + // TODO New key - Add a translation + "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.log-out": "Log out", + // TODO New key - Add a translation + "idle-modal.log-out": "Log out", + + // "idle-modal.extend-session": "Extend session", + // TODO New key - Add a translation + "idle-modal.extend-session": "Extend session", + + // "researcher.profile.action.processing" : "Processing...", + // TODO New key - Add a translation + "researcher.profile.action.processing" : "Processing...", + + // "researcher.profile.associated": "Researcher profile associated", + // TODO New key - Add a translation + "researcher.profile.associated": "Researcher profile associated", + + // "researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility", + // TODO New key - Add a translation + "researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility", + + // "researcher.profile.create.new": "Create new", + // TODO New key - Add a translation + "researcher.profile.create.new": "Create new", + + // "researcher.profile.create.success": "Researcher profile created successfully", + // TODO New key - Add a translation + "researcher.profile.create.success": "Researcher profile created successfully", + + // "researcher.profile.create.fail": "An error occurs during the researcher profile creation", + // TODO New key - Add a translation + "researcher.profile.create.fail": "An error occurs during the researcher profile creation", + + // "researcher.profile.delete": "Delete", + // TODO New key - Add a translation + "researcher.profile.delete": "Delete", + + // "researcher.profile.expose": "Expose", + // TODO New key - Add a translation + "researcher.profile.expose": "Expose", + + // "researcher.profile.hide": "Hide", + // TODO New key - Add a translation + "researcher.profile.hide": "Hide", + + // "researcher.profile.not.associated": "Researcher profile not yet associated", + // TODO New key - Add a translation + "researcher.profile.not.associated": "Researcher profile not yet associated", + + // "researcher.profile.view": "View", + // TODO New key - Add a translation + "researcher.profile.view": "View", + + // "researcher.profile.private.visibility" : "PRIVATE", + // TODO New key - Add a translation + "researcher.profile.private.visibility" : "PRIVATE", + + // "researcher.profile.public.visibility" : "PUBLIC", + // TODO New key - Add a translation + "researcher.profile.public.visibility" : "PUBLIC", + + // "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).", + // TODO New key - Add a translation + "researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).", + + // "researcherprofile.error.claim.body" : "An error occurred while claiming the profile, please try again later", + // TODO New key - Add a translation + "researcherprofile.error.claim.body" : "An error occurred while claiming the profile, please try again later", + + // "researcherprofile.error.claim.title" : "Error", + // TODO New key - Add a translation + "researcherprofile.error.claim.title" : "Error", + + // "researcherprofile.success.claim.body" : "Profile claimed with success", + // TODO New key - Add a translation + "researcherprofile.success.claim.body" : "Profile claimed with success", + + // "researcherprofile.success.claim.title" : "Success", + // TODO New key - Add a translation + "researcherprofile.success.claim.title" : "Success", + + // "person.page.orcid.create": "Create an ORCID ID", + // TODO New key - Add a translation + "person.page.orcid.create": "Create an ORCID ID", + + // "person.page.orcid.granted-authorizations": "Granted authorizations", + // TODO New key - Add a translation + "person.page.orcid.granted-authorizations": "Granted authorizations", + + // "person.page.orcid.grant-authorizations" : "Grant authorizations", + // TODO New key - Add a translation + "person.page.orcid.grant-authorizations" : "Grant authorizations", + + // "person.page.orcid.link": "Connect to ORCID ID", + // TODO New key - Add a translation + "person.page.orcid.link": "Connect to ORCID ID", + + // "person.page.orcid.link.processing": "Linking profile to ORCID...", + // TODO New key - Add a translation + "person.page.orcid.link.processing": "Linking profile to ORCID...", + + // "person.page.orcid.link.error.message": "Something went wrong while connecting the profile with ORCID. If the problem persists, contact the administrator.", + // TODO New key - Add a translation + "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.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.", + // TODO New key - Add a translation + "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.unlink": "Disconnect from ORCID", + // TODO New key - Add a translation + "person.page.orcid.unlink": "Disconnect from ORCID", + + // "person.page.orcid.unlink.processing": "Processing...", + "person.page.orcid.unlink.processing": "Процессте...", + + // "person.page.orcid.missing-authorizations": "Missing authorizations", + // TODO New key - Add a translation + "person.page.orcid.missing-authorizations": "Missing authorizations", + + // "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + // TODO New key - Add a translation + "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", + + // "person.page.orcid.no-missing-authorizations-message": "Great! This box is empty, so you have granted all access rights to use all functions offers by your institution.", + // TODO New key - Add a translation + "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-orcid-message": "No ORCID iD associated yet. By clicking on the button below it is possible to link this profile with an ORCID account.", + // TODO New key - Add a translation + "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.profile-preferences": "Profile preferences", + // TODO New key - Add a translation + "person.page.orcid.profile-preferences": "Profile preferences", + + // "person.page.orcid.funding-preferences": "Funding preferences", + // TODO New key - Add a translation + "person.page.orcid.funding-preferences": "Funding preferences", + + // "person.page.orcid.publications-preferences": "Publication preferences", + // TODO New key - Add a translation + "person.page.orcid.publications-preferences": "Publication preferences", + + // "person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator", + // TODO New key - Add a translation + "person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator", + + // "person.page.orcid.save.preference.changes": "Update settings", + // TODO New key - Add a translation + "person.page.orcid.save.preference.changes": "Update settings", + + // "person.page.orcid.sync-profile.affiliation" : "Affiliation", + // TODO New key - Add a translation + "person.page.orcid.sync-profile.affiliation" : "Affiliation", + + // "person.page.orcid.sync-profile.biographical" : "Biographical data", + // TODO New key - Add a translation + "person.page.orcid.sync-profile.biographical" : "Biographical data", + + // "person.page.orcid.sync-profile.education" : "Education", + // TODO New key - Add a translation + "person.page.orcid.sync-profile.education" : "Education", + + // "person.page.orcid.sync-profile.identifiers" : "Identifiers", + // TODO New key - Add a translation + "person.page.orcid.sync-profile.identifiers" : "Identifiers", + + // "person.page.orcid.sync-fundings.all" : "All fundings", + // TODO New key - Add a translation + "person.page.orcid.sync-fundings.all" : "All fundings", + + // "person.page.orcid.sync-fundings.mine" : "My fundings", + // TODO New key - Add a translation + "person.page.orcid.sync-fundings.mine" : "My fundings", + + // "person.page.orcid.sync-fundings.my_selected" : "Selected fundings", + // TODO New key - Add a translation + "person.page.orcid.sync-fundings.my_selected" : "Selected fundings", + + // "person.page.orcid.sync-fundings.disabled" : "Disabled", + // TODO New key - Add a translation + "person.page.orcid.sync-fundings.disabled" : "Disabled", + + // "person.page.orcid.sync-publications.all" : "All publications", + // TODO New key - Add a translation + "person.page.orcid.sync-publications.all" : "All publications", + + // "person.page.orcid.sync-publications.mine" : "My publications", + // TODO New key - Add a translation + "person.page.orcid.sync-publications.mine" : "My publications", + + // "person.page.orcid.sync-publications.my_selected" : "Selected publications", + // TODO New key - Add a translation + "person.page.orcid.sync-publications.my_selected" : "Selected publications", + + // "person.page.orcid.sync-publications.disabled" : "Disabled", + // TODO New key - Add a translation + "person.page.orcid.sync-publications.disabled" : "Disabled", + + // "person.page.orcid.sync-queue.discard" : "Discard the change and do not synchronize with the ORCID registry", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.discard" : "Discard the change and do not synchronize with the ORCID registry", + + // "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed", + + // "person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully", + + // "person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty", + + // "person.page.orcid.sync-queue.table.header.type" : "Type", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.table.header.type" : "Type", + + // "person.page.orcid.sync-queue.table.header.description" : "Description", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.table.header.description" : "Description", + + // "person.page.orcid.sync-queue.table.header.action" : "Action", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.table.header.action" : "Action", + + // "person.page.orcid.sync-queue.description.affiliation": "Affiliations", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.description.affiliation": "Affiliations", + + // "person.page.orcid.sync-queue.description.country": "Country", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.description.country": "Country", + + // "person.page.orcid.sync-queue.description.education": "Educations", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.description.education": "Educations", + + // "person.page.orcid.sync-queue.description.external_ids": "External ids", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.description.external_ids": "External ids", + + // "person.page.orcid.sync-queue.description.other_names": "Other names", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.description.other_names": "Other names", + + // "person.page.orcid.sync-queue.description.qualification": "Qualifications", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.description.qualification": "Qualifications", + + // "person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls", + + // "person.page.orcid.sync-queue.description.keywords": "Keywords", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.description.keywords": "Keywords", + + // "person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry", + + // "person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry", + + // "person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry", + + // "person.page.orcid.sync-queue.tooltip.publication": "Publication", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.publication": "Publication", + + // "person.page.orcid.sync-queue.tooltip.project": "Project", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.project": "Project", + + // "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", + + // "person.page.orcid.sync-queue.tooltip.education": "Education", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.education": "Education", + + // "person.page.orcid.sync-queue.tooltip.qualification": "Qualification", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.qualification": "Qualification", + + // "person.page.orcid.sync-queue.tooltip.other_names": "Other name", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.other_names": "Other name", + + // "person.page.orcid.sync-queue.tooltip.country": "Country", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.country": "Country", + + // "person.page.orcid.sync-queue.tooltip.keywords": "Keyword", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.keywords": "Keyword", + + // "person.page.orcid.sync-queue.tooltip.external_ids": "External identifier", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.external_ids": "External identifier", + + // "person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url", + + // "person.page.orcid.sync-queue.send" : "Synchronize with ORCID registry", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.send" : "Synchronize with ORCID registry", + + // "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.", + // TODO New key - Add a translation + "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.content": "Click here to grant again the required permissions. If the problem persists, contact the administrator", + // TODO New key - Add a translation + "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.bad-request-error": "The submission to ORCID failed because the resource sent to ORCID registry is not valid", + // TODO New key - Add a translation + "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.error": "The submission to ORCID failed", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.send.error": "The submission to ORCID failed", + + // "person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry", + // TODO New key - Add a translation + "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.not-found-warning": "The resource does not exists anymore on the ORCID registry.", + // TODO New key - Add a translation + "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.success": "The submission to ORCID was completed successfully", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.send.success": "The submission to ORCID was completed successfully", + + // "person.page.orcid.sync-queue.send.validation-error": "The data that you want to synchronize with ORCID is not valid", + // TODO New key - Add a translation + "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.amount-currency.required": "The amount's currency is required", + // TODO New key - Add a translation + "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.external-id.required": "The resource to be sent requires at least one identifier", + // TODO New key - Add a translation + "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.title.required": "The title is required", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.send.validation-error.title.required": "The title is required", + + // "person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required", + + // "person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required", + + // "person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required", + + // "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country", + + // "person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required", + + // "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required", + + // "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "The publication date must be one year after 1900", + // TODO New key - Add a translation + "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "The publication date must be one year after 1900", + + // "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address", + // TODO New key - Add a translation + "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.city-required": "The address of the organization to be sent requires a city", + // TODO New key - Add a translation + "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.country-required": "The address of the organization to be sent requires a valid 2 digits ISO 3166 country", + // TODO New key - Add a translation + "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.disambiguated-organization.required": "An identifier to disambiguate organizations is required. Supported ids are GRID, Ringgold, Legal Entity identifiers (LEIs) and Crossref Funder Registry identifiers", + // TODO New key - Add a translation + "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.value-required": "The organization's identifiers requires a value", + // TODO New key - Add a translation + "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.disambiguation-source.required": "The organization's identifiers requires a source", + // TODO New key - Add a translation + "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.invalid": "The source of one of the organization identifiers is invalid. Supported sources are RINGGOLD, GRID, LEI and FUNDREF", + // TODO New key - Add a translation + "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.synchronization-mode": "Synchronization mode", + // TODO New key - Add a translation + "person.page.orcid.synchronization-mode": "Synchronization mode", + + // "person.page.orcid.synchronization-mode.batch": "Batch", + // TODO New key - Add a translation + "person.page.orcid.synchronization-mode.batch": "Batch", + + // "person.page.orcid.synchronization-mode.label": "Synchronization mode", + // TODO New key - Add a translation + "person.page.orcid.synchronization-mode.label": "Synchronization mode", + + // "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).", + // TODO New key - Add a translation + "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-funding-message": "Select whether to send your linked Project entities to your ORCID record's list of funding information.", + // TODO New key - Add a translation + "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-publication-message": "Select whether to send your linked Publication entities to your ORCID record's list of works.", + // TODO New key - Add a translation + "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-profile-message": "Select whether to send your biographical data or personal identifiers to your ORCID record.", + // TODO New key - Add a translation + "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-settings-update.success": "The synchronization settings have been updated successfully", + // TODO New key - Add a translation + "person.page.orcid.synchronization-settings-update.success": "The synchronization settings have been updated successfully", + + // "person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed", + // TODO New key - Add a translation + "person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed", + + // "person.page.orcid.synchronization-mode.manual": "Manual", + "person.page.orcid.synchronization-mode.manual": "Қолмен", + + // "person.page.orcid.scope.authenticate": "Get your ORCID iD", + // TODO New key - Add a translation + "person.page.orcid.scope.authenticate": "Get your ORCID iD", + + // "person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties", + // TODO New key - Add a translation + "person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties", + + // "person.page.orcid.scope.activities-update": "Add/update your research activities", + // TODO New key - Add a translation + "person.page.orcid.scope.activities-update": "Add/update your research activities", + + // "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", + // TODO New key - Add a translation + "person.page.orcid.unlink.success": "The disconnection between the profile and the ORCID registry was successful", + + // "person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again", + // TODO New key - Add a translation + "person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again", + + // "person.orcid.sync.setting": "ORCID Synchronization settings", + // TODO New key - Add a translation + "person.orcid.sync.setting": "ORCID Synchronization settings", + + // "person.orcid.registry.queue": "ORCID Registry Queue", + // TODO New key - Add a translation + "person.orcid.registry.queue": "ORCID Registry Queue", + + // "person.orcid.registry.auth": "ORCID Authorizations", + // TODO New key - Add a translation + "person.orcid.registry.auth": "ORCID Authorizations", + + // "home.recent-submissions.head": "Recent Submissions", + // TODO New key - Add a translation + "home.recent-submissions.head": "Recent Submissions", + + + +} diff --git a/src/config/app-config.interface.ts b/src/config/app-config.interface.ts index 6bca828a91..6fe55aa328 100644 --- a/src/config/app-config.interface.ts +++ b/src/config/app-config.interface.ts @@ -17,7 +17,9 @@ import { BrowseByConfig } from './browse-by-config.interface'; import { BundleConfig } from './bundle-config.interface'; import { ActuatorsConfig } from './actuators.config'; import { InfoConfig } from './info-config.interface'; +import { CommunityListConfig } from './community-list-config.interface'; import { HomeConfig } from './homepage-config.interface'; + interface AppConfig extends Config { ui: UIServerConfig; rest: ServerConfig; @@ -31,6 +33,8 @@ interface AppConfig extends Config { defaultLanguage: string; languages: LangConfig[]; browseBy: BrowseByConfig; + communityList: CommunityListConfig; + homePage: HomeConfig; item: ItemConfig; collection: CollectionPageConfig; themes: ThemeConfig[]; @@ -38,7 +42,6 @@ interface AppConfig extends Config { bundle: BundleConfig; actuators: ActuatorsConfig info: InfoConfig; - homePage: HomeConfig; } /** diff --git a/src/config/community-list-config.interface.ts b/src/config/community-list-config.interface.ts new file mode 100644 index 0000000000..5263e9e748 --- /dev/null +++ b/src/config/community-list-config.interface.ts @@ -0,0 +1,5 @@ +import { Config } from './config.interface'; + +export interface CommunityListConfig extends Config { + pageSize: number; +} diff --git a/src/config/config.server.ts b/src/config/config.server.ts index 69da1a02b2..278cf4f1d5 100644 --- a/src/config/config.server.ts +++ b/src/config/config.server.ts @@ -54,14 +54,28 @@ const getEnvironment = (): Environment => { return environment; }; -const getLocalConfigPath = (env: Environment) => { - // default to config/config.yml - let localConfigPath = join(CONFIG_PATH, 'config.yml'); +/** + * Get the path of the default config file. + */ +const getDefaultConfigPath = () => { - if (!fs.existsSync(localConfigPath)) { - localConfigPath = join(CONFIG_PATH, 'config.yaml'); + // default to config/config.yml + let defaultConfigPath = join(CONFIG_PATH, 'config.yml'); + + if (!fs.existsSync(defaultConfigPath)) { + defaultConfigPath = join(CONFIG_PATH, 'config.yaml'); } + return defaultConfigPath; +}; + +/** + * Get the path of an environment-specific config file. + * + * @param env the environment to get the config file for + */ +const getEnvConfigFilePath = (env: Environment) => { + // determine app config filename variations let envVariations; switch (env) { @@ -76,22 +90,21 @@ const getLocalConfigPath = (env: Environment) => { envVariations = ['dev', 'development']; } + let envLocalConfigPath; + // check if any environment variations of app config exist for (const envVariation of envVariations) { - let envLocalConfigPath = join(CONFIG_PATH, `config.${envVariation}.yml`); + envLocalConfigPath = join(CONFIG_PATH, `config.${envVariation}.yml`); + if (fs.existsSync(envLocalConfigPath)) { + break; + } + envLocalConfigPath = join(CONFIG_PATH, `config.${envVariation}.yaml`); if (fs.existsSync(envLocalConfigPath)) { - localConfigPath = envLocalConfigPath; break; - } else { - envLocalConfigPath = join(CONFIG_PATH, `config.${envVariation}.yaml`); - if (fs.existsSync(envLocalConfigPath)) { - localConfigPath = envLocalConfigPath; - break; - } } } - return localConfigPath; + return envLocalConfigPath; }; const overrideWithConfig = (config: Config, pathToConfig: string) => { @@ -174,12 +187,20 @@ export const buildAppConfig = (destConfigPath?: string): AppConfig => { console.log(`Building ${colors.green.bold(`development`)} app config`); } - // override with dist config - const localConfigPath = getLocalConfigPath(env); + // override with default config + const defaultConfigPath = getDefaultConfigPath(); + if (fs.existsSync(defaultConfigPath)) { + overrideWithConfig(appConfig, defaultConfigPath); + } else { + console.warn(`Unable to find default config file at ${defaultConfigPath}`); + } + + // override with env config + const localConfigPath = getEnvConfigFilePath(env); if (fs.existsSync(localConfigPath)) { overrideWithConfig(appConfig, localConfigPath); } else { - console.warn(`Unable to find dist config file at ${localConfigPath}`); + console.warn(`Unable to find env config file at ${localConfigPath}`); } // override with external config if specified by environment variable `DSPACE_APP_CONFIG_PATH` diff --git a/src/config/default-app-config.ts b/src/config/default-app-config.ts index c6926cb005..7250bb1489 100644 --- a/src/config/default-app-config.ts +++ b/src/config/default-app-config.ts @@ -17,7 +17,9 @@ import { UIServerConfig } from './ui-server-config.interface'; import { BundleConfig } from './bundle-config.interface'; import { ActuatorsConfig } from './actuators.config'; import { InfoConfig } from './info-config.interface'; +import { CommunityListConfig } from './community-list-config.interface'; import { HomeConfig } from './homepage-config.interface'; + export class DefaultAppConfig implements AppConfig { production = false; @@ -195,7 +197,9 @@ export class DefaultAppConfig implements AppConfig { { code: 'fi', label: 'Suomi', active: true }, { code: 'sv', label: 'Svenska', active: true }, { code: 'tr', label: 'Türkçe', active: true }, - { code: 'bn', label: 'বাংলা', active: true } + { code: 'kk', label: 'Қазақ', active: true }, + { code: 'bn', label: 'বাংলা', active: true }, + { code: 'el', label: 'Ελληνικά', active: true } ]; // Browse-By Pages @@ -210,6 +214,22 @@ export class DefaultAppConfig implements AppConfig { showThumbnails: true }; + communityList: CommunityListConfig = { + pageSize: 20 + }; + + homePage: HomeConfig = { + recentSubmissions: { + //The number of item showing in recent submission components + pageSize: 5, + //sort record of recent submission + sortField: 'dc.date.accessioned', + }, + topLevelCommunityList: { + pageSize: 5 + } + }; + // Item Config item: ItemConfig = { edit: { @@ -340,13 +360,4 @@ export class DefaultAppConfig implements AppConfig { enableEndUserAgreement: true, enablePrivacyStatement: true }; - // Home Pages - homePage: HomeConfig = { - recentSubmissions: { - //The number of item showing in recent submission components - pageSize: 5, - //sort record of recent submission - sortField: 'dc.date.accessioned', - } - }; } diff --git a/src/config/homepage-config.interface.ts b/src/config/homepage-config.interface.ts index 1f955358e0..df5d29cfe0 100644 --- a/src/config/homepage-config.interface.ts +++ b/src/config/homepage-config.interface.ts @@ -16,5 +16,7 @@ export interface HomeConfig extends Config { sortField: string; } - + topLevelCommunityList: { + pageSize: number; + }; } diff --git a/src/environments/environment.test.ts b/src/environments/environment.test.ts index 438eb970f1..0e08f849aa 100644 --- a/src/environments/environment.test.ts +++ b/src/environments/environment.test.ts @@ -189,6 +189,10 @@ export const environment: BuildConfig = { code: 'bn', label: 'বাংলা', active: true, + }, { + code: 'el', + label: 'Ελληνικά', + active: true, }], // Browse-By Pages @@ -202,7 +206,19 @@ export const environment: BuildConfig = { // Whether to add item thumbnail images to BOTH browse and search result lists. showThumbnails: true }, - + communityList: { + pageSize: 20 + }, + homePage: { + recentSubmissions: { + pageSize: 5, + //sort record of recent submission + sortField: 'dc.date.accessioned', + }, + topLevelCommunityList: { + pageSize: 5 + } + }, item: { edit: { undoTimeout: 10000 // 10 seconds @@ -251,12 +267,4 @@ export const environment: BuildConfig = { enableEndUserAgreement: true, enablePrivacyStatement: true, }, - //Home Page - homePage: { - recentSubmissions: { - pageSize: 5, - //sort record of recent submission - sortField: 'dc.date.accessioned', - } - } }; diff --git a/src/modules/app/browser-init.service.ts b/src/modules/app/browser-init.service.ts index 05c591b0c6..1135de5e93 100644 --- a/src/modules/app/browser-init.service.ts +++ b/src/modules/app/browser-init.service.ts @@ -28,6 +28,7 @@ import { StoreAction, StoreActionTypes } from '../../app/store.actions'; import { coreSelector } from '../../app/core/core.selectors'; import { find, map } from 'rxjs/operators'; import { isNotEmpty } from '../../app/shared/empty.util'; +import { logStartupMessage } from '../../../startup-message'; /** * Performs client-side initialization. @@ -79,6 +80,7 @@ export class BrowserInitService extends InitService { this.initCorrelationId(); this.checkEnvironment(); + logStartupMessage(environment); this.initI18n(); this.initAngulartics(); diff --git a/startup-message.ts b/startup-message.ts new file mode 100644 index 0000000000..d87a239ec8 --- /dev/null +++ b/startup-message.ts @@ -0,0 +1,19 @@ +import PACKAGE_JSON from './package.json'; +import { BuildConfig } from './src/config/build-config.interface'; + +/** + * Log a message at the start of the application containing the version number and the environment. + * + * @param environment the environment configuration + */ +export const logStartupMessage = (environment: Partial) => { + const env: string = environment.production ? 'Production' : 'Development'; + const color: string = environment.production ? 'red' : 'green'; + + console.info(''); + console.info(`%cdspace-angular`, `font-weight: bold;`); + console.info(`Version: %c${PACKAGE_JSON.version}`, `font-weight: bold;`); + console.info(`Environment: %c${env}`, `color: ${color}; font-weight: bold;`); + console.info(''); + +}