diff --git a/ui/src/app/affiliation/affiliation-update.component.html b/ui/src/app/affiliation/affiliation-update.component.html index 2c822b3ea..034f496e4 100644 --- a/ui/src/app/affiliation/affiliation-update.component.html +++ b/ui/src/app/affiliation/affiliation-update.component.html @@ -248,12 +248,8 @@ (editForm.get('departmentName')?.dirty || editForm.get('departmentName')?.touched) " > - - This field cannot be longer than 4000 characters. + + {{ maxChars4000 }} @@ -271,12 +267,8 @@ (editForm.get('roleTitle')?.dirty || editForm.get('roleTitle')?.touched) " > - - This field cannot be longer than 4000 characters. + + {{ maxChars4000 }} @@ -286,12 +278,8 @@ >
- - This field cannot be longer than 8000 characters. + + {{ maxChars8000 }}
diff --git a/ui/src/app/affiliation/affiliation-update.component.spec.ts b/ui/src/app/affiliation/affiliation-update.component.spec.ts index c18b7d4b9..5052e0802 100644 --- a/ui/src/app/affiliation/affiliation-update.component.spec.ts +++ b/ui/src/app/affiliation/affiliation-update.component.spec.ts @@ -3,11 +3,10 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { AffiliationUpdateComponent } from './affiliation-update.component' import { HttpClientModule } from '@angular/common/http' import { RouterTestingModule } from '@angular/router/testing' -import { NO_ERRORS_SCHEMA } from '@angular/core' +import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core' import { LocalizePipe } from '../shared/pipe/localize' import { AffiliationService } from './service/affiliation.service' import { ReactiveFormsModule } from '@angular/forms' -import { of } from 'rxjs' import { DateUtilService } from '../shared/service/date-util.service' describe('AffiliationUpdateComponent', () => { @@ -33,7 +32,7 @@ describe('AffiliationUpdateComponent', () => { { provide: AffiliationService, useValue: affiliationServiceSpy }, { provide: DateUtilService, useValue: dateUtilServiceSpy }, ], - schemas: [NO_ERRORS_SCHEMA], + schemas: [CUSTOM_ELEMENTS_SCHEMA], }).compileComponents() affiliationService = TestBed.inject(AffiliationService) as jasmine.SpyObj dateUtilService = TestBed.inject(DateUtilService) as jasmine.SpyObj diff --git a/ui/src/app/affiliation/affiliation-update.component.ts b/ui/src/app/affiliation/affiliation-update.component.ts index 36ff0ed7f..669291ba3 100644 --- a/ui/src/app/affiliation/affiliation-update.component.ts +++ b/ui/src/app/affiliation/affiliation-update.component.ts @@ -129,6 +129,8 @@ export class AffiliationUpdateComponent implements OnInit { ngbDate: any faBan = faBan faSave = faSave + maxChars4000 = '' + maxChars8000 = '' editForm = this.fb.group( { @@ -174,6 +176,7 @@ export class AffiliationUpdateComponent implements OnInit { ) {} ngOnInit() { + this.localizeString() this.startYearsList = this.dateUtilService.getYearsList(0) this.endYearsList = this.dateUtilService.getYearsList(DEFAULT_LATEST_YEAR_INCREMENT) this.monthsList = this.dateUtilService.getMonthsList() @@ -187,6 +190,13 @@ export class AffiliationUpdateComponent implements OnInit { this.onChanges() } + localizeString() { + let maxCharLimit = 4000 + this.maxChars4000 = $localize`:@@entity.validation.maxlength.string:This field cannot be longer than ${maxCharLimit} characters.` + maxCharLimit = 8000 + this.maxChars8000 = $localize`:@@entity.validation.maxlength.string:This field cannot be longer than ${maxCharLimit} characters.` + } + onChanges(): void { this.editForm.get('startMonth')?.valueChanges.subscribe((val) => { this.startDaysList = this.dateUtilService.getDaysList( diff --git a/ui/src/app/app.constants.ts b/ui/src/app/app.constants.ts index b9510acca..ca18715e8 100644 --- a/ui/src/app/app.constants.ts +++ b/ui/src/app/app.constants.ts @@ -17,6 +17,8 @@ export enum AlertType { USER_CREATED = 'User created. Invite sent.', USER_UPDATED = 'User updated successfully', USER_DELETED = 'User deleted successfully', + MEMBER_CREATED = 'Member created', + MEMBER_UPDATED = 'Member updated successfully', NOTIFICATION_IN_PROGRESS = 'Notification in progress', AFFILIATION_CREATED = 'Affiliation created', AFFILIATION_UPDATED = 'Affiliation updated', @@ -42,6 +44,7 @@ export function emailValidator(control: FormControl): { [key: string]: any } | n } const environment = window.location.hostname.replace('member-portal.', '').replace('.orcid.org', '') export const ORCID_BASE_URL = 'https://' + environment + '.orcid.org' +export const BASE_URL = window.location.origin // eslint-disable-next-line export const EMAIL_REGEXP = /^([^@\s]|(".+"))+@([^@\s\."'\(\)\[\]\{\}\\/,:;]+\.)+([^@\s\."'\(\)\[\]\{\}\\/,:;]{2,})+$/ diff --git a/ui/src/app/landing-page/landing-page.component.ts b/ui/src/app/landing-page/landing-page.component.ts index 494ef5c5c..49e069fd4 100644 --- a/ui/src/app/landing-page/landing-page.component.ts +++ b/ui/src/app/landing-page/landing-page.component.ts @@ -75,7 +75,7 @@ export class LandingPageComponent implements OnInit { '&scope=/read-limited /activities/update /person/update openid&prompt=login&state=' + state_param - this.incorrectDataMessage = $localize`:@@landingPage.success.ifYouFind:If you find that data added to your ORCID record is incorrect, please contact ${this.clientName}` + this.incorrectDataMessage = $localize`:@@landingPage.success.ifYouFind.string:If you find that data added to your ORCID record is incorrect, please contact ${this.clientName}` this.linkAlreadyUsedMessage = $localize`:@@landingPage.connectionExists.differentUser.string:This authorization link has already been used. Please contact ${this.clientName} for a new authorization link.` this.allowToUpdateRecordMessage = $localize`:@@landingPage.denied.grantAccess.string:Allow ${this.clientName} to update my ORCID record.` this.successfullyGrantedMessage = $localize`:@@landingPage.success.youHaveSuccessfully.string:You have successfully granted ${this.clientName} permission to update your ORCID record, and your record has been updated with affiliation information.` diff --git a/ui/src/app/member/member-update.component.html b/ui/src/app/member/member-update.component.html new file mode 100644 index 000000000..6395082ac --- /dev/null +++ b/ui/src/app/member/member-update.component.html @@ -0,0 +1,194 @@ +
+
+
+

+ Add or edit member +

+
+ + +
+ + +
+ + This field is required. + +
+
+
+ + +
+
+ + +
+ + This field is required. + +
+
+
+ +

+ Note: Client ID must have User OBO enabled AND + {{ baseUrl }} + added as a Redirect URI in + {{ orcidBaseUrl }}/manage-members +

+ +
+ + This field is required. + + + Client Id should be in the format XXXX-XXXX-XXXX-XXXX or APP-XXXXXXXXXXXXXXXX. X can be a digit or an + uppercase character." + +
+
+
+ + +
+
+ + +
+
+
+
+
+
+
+ + +
+
+
+
diff --git a/ui/src/app/member/member-update.component.spec.ts b/ui/src/app/member/member-update.component.spec.ts new file mode 100644 index 000000000..500f77c8f --- /dev/null +++ b/ui/src/app/member/member-update.component.spec.ts @@ -0,0 +1,101 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing' + +import { MemberUpdateComponent } from './member-update.component' +import { MemberService } from './service/member.service' +import { RouterTestingModule } from '@angular/router/testing' +import { IMember } from './model/member.model' +import { ActivatedRoute, Router } from '@angular/router' +import { of } from 'rxjs' +import { AlertService } from '../shared/service/alert.service' +import { AlertType } from '../app.constants' +import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core' + +describe('MemberUpdateComponent', () => { + let component: MemberUpdateComponent + let fixture: ComponentFixture + let memberService: jasmine.SpyObj + let alertService: jasmine.SpyObj + let activatedRoute: jasmine.SpyObj + let router: jasmine.SpyObj + + beforeEach(() => { + const memberServiceSpy = jasmine.createSpyObj('MemberService', ['validate', 'update', 'create']) + const alertServiceSpy = jasmine.createSpyObj('AlertService', ['broadcast']) + + TestBed.configureTestingModule({ + declarations: [MemberUpdateComponent], + imports: [RouterTestingModule.withRoutes([])], + providers: [ + { provide: MemberService, useValue: memberServiceSpy }, + { provide: AlertService, useValue: alertServiceSpy }, + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA], + }) + memberService = TestBed.inject(MemberService) as jasmine.SpyObj + activatedRoute = TestBed.inject(ActivatedRoute) as jasmine.SpyObj + alertService = TestBed.inject(AlertService) as jasmine.SpyObj + router = TestBed.inject(Router) as jasmine.SpyObj + + fixture = TestBed.createComponent(MemberUpdateComponent) + component = fixture.componentInstance + memberService.validate.and.returnValue(of({ valid: true })) + spyOn(router, 'navigate').and.returnValue(Promise.resolve(true)) + }) + + it('should create', () => { + expect(component).toBeTruthy() + }) + + it('should update an existing member', () => { + activatedRoute.data = of({ member: { salesforceId: 'test', id: 'id' } as IMember }) + memberService.update.and.returnValue(of({ id: 'id', salesforceId: 'test' } as IMember)) + fixture.detectChanges() + component.save() + expect(memberService.update).toHaveBeenCalled() + expect(memberService.create).toHaveBeenCalledTimes(0) + expect(alertService.broadcast).toHaveBeenCalledWith(AlertType.MEMBER_UPDATED) + expect(router.navigate).toHaveBeenCalledWith(['/members']) + }) + + it('should create a new member', () => { + activatedRoute.data = of({}) + memberService.create.and.returnValue(of({ id: 'test' } as IMember)) + component.save() + expect(memberService.create).toHaveBeenCalled() + expect(memberService.update).toHaveBeenCalledTimes(0) + expect(alertService.broadcast).toHaveBeenCalledWith(AlertType.MEMBER_CREATED) + expect(router.navigate).toHaveBeenCalledWith(['/members']) + }) + + it('test invalid client id validator', () => { + component.editForm.get('clientId')?.setValue('test') + expect(component.editForm.get('clientId')?.valid).toBeFalsy() + }) + + it('test valid client id validator', () => { + component.editForm.get('clientId')?.setValue('APP-0000000000000000') + expect(component.editForm.get('clientId')?.valid).toBeTruthy() + }) + + it('test consortium lead parent sfid validator', () => { + component.editForm.get('isConsortiumLead')?.setValue(true) + component.editForm.get('salesforceId')?.setValue('sfid') + component.editForm.get('parentSalesforceId')?.setValue('sfid2') + expect(component.editForm.get('parentSalesforceId')?.errors).toBeInstanceOf(Object) + }) + + it('test consortium lead parent sfid validator', () => { + component.editForm.get('isConsortiumLead')?.setValue(true) + component.editForm.get('salesforceId')?.setValue('sfid') + component.editForm.get('parentSalesforceId')?.setValue('sfid') + + expect(component.editForm.get('parentSalesforceId')?.errors).toBeNull() + }) + + it('test consortium lead parent sfid validator', () => { + component.editForm.get('salesforceId')?.setValue('sfid') + component.editForm.get('parentSalesforceId')?.setValue('sfid2') + component.editForm.get('isConsortiumLead')?.setValue(false) + expect(component.editForm.get('parentSalesforceId')?.errors).toBeNull() + }) +}) diff --git a/ui/src/app/member/member-update.component.ts b/ui/src/app/member/member-update.component.ts new file mode 100644 index 000000000..c77420ec7 --- /dev/null +++ b/ui/src/app/member/member-update.component.ts @@ -0,0 +1,229 @@ +import { Component, OnInit } from '@angular/core' +import { AbstractControl, FormBuilder, FormControl, ValidatorFn, Validators } from '@angular/forms' +import { ActivatedRoute, Router } from '@angular/router' +import { Observable } from 'rxjs' +import * as moment from 'moment' +import { MemberService } from './service/member.service' +import { AlertService } from '../shared/service/alert.service' +import { AlertType, BASE_URL, DATE_TIME_FORMAT, ORCID_BASE_URL } from '../app.constants' +import { IMember, Member } from './model/member.model' +import { faBan, faSave } from '@fortawesome/free-solid-svg-icons' + +function parentSalesforceIdValidator(): ValidatorFn { + return (control: AbstractControl): { [key: string]: boolean } | null => { + if (control.parent !== undefined && control.value !== undefined && isNaN(control.value)) { + const parentSalesforceId = control.value + const isConsortiumLead = control.parent?.get('isConsortiumLead')?.value + const salesforceId = control.parent?.get('salesforceId')?.value + + if (isConsortiumLead && parentSalesforceId !== salesforceId) { + return { validParentSalesforceIdValue: false } + } + } + return null + } +} + +function clientIdValidator(): ValidatorFn { + return (control: AbstractControl): { [key: string]: boolean } | null => { + if (control.parent !== undefined && control.value !== undefined && isNaN(control.value)) { + const clientIdValue = control.value + const isConsortiumLead = control.parent?.get('isConsortiumLead')?.value + const assertionServiceEnabled = control.parent?.get('assertionServiceEnabled')?.value + if (!isConsortiumLead && clientIdValue === '') { + const clientIdControl = control.parent?.get('clientId') + if (clientIdControl) { + return Validators.required(clientIdControl) + } + } + if (isConsortiumLead && (!clientIdValue || clientIdValue === '')) { + return null + } + if (!assertionServiceEnabled && (!clientIdValue || clientIdValue === '')) { + return null + } + if (clientIdValue.startsWith('APP-') && clientIdValue.match(/APP-[A-Z0-9]{16}$/)) { + return null + } else if (clientIdValue.match(/[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}$/)) { + return null + } + return { validClientId: false } + } + if (control.parent !== undefined) { + if (control.parent?.get('isConsortiumLead')?.value) { + return null + } + } + if (control.parent !== undefined) { + if (!control.parent?.get('assertionServiceEnabled')?.value) { + return null + } + } + return { validClientId: false } + } +} + +@Component({ + selector: 'app-member-update', + templateUrl: './member-update.component.html', +}) +export class MemberUpdateComponent implements OnInit { + orcidBaseUrl: string = ORCID_BASE_URL + baseUrl: string = BASE_URL + isSaving = false + validation: any + faBan = faBan + faSave = faSave + + editForm = this.fb.group({ + id: new FormControl(null), + clientId: new FormControl(null, [clientIdValidator()]), + clientName: new FormControl(null, [Validators.required]), + salesforceId: new FormControl(null, [Validators.required]), + parentSalesforceId: new FormControl(null, [parentSalesforceIdValidator()]), + isConsortiumLead: new FormControl(null, [Validators.required]), + assertionServiceEnabled: new FormControl(false), + createdBy: new FormControl(null), + createdDate: new FormControl(null), + lastModifiedBy: new FormControl(null), + lastModifiedDate: new FormControl(null), + }) + + constructor( + protected activatedRoute: ActivatedRoute, + protected router: Router, + protected memberService: MemberService, + private fb: FormBuilder, + private alertService: AlertService + ) { + this.validation = {} + } + + ngOnInit() { + this.isSaving = false + this.activatedRoute.data.subscribe(({ member }) => { + this.updateForm(member) + }) + + this.onChanges() + } + + onChanges(): void { + this.editForm.get('isConsortiumLead')?.valueChanges.subscribe((value) => { + this.editForm.get('parentSalesforceId')?.updateValueAndValidity() + this.editForm.get('clientId')?.markAsTouched() + this.editForm.get('clientId')?.updateValueAndValidity() + }) + + this.editForm.get('clientId')?.valueChanges.subscribe((value) => { + if (!value || (value && value === '')) { + if (this.editForm.get('assertionServiceEnabled')?.value) { + this.editForm.get('assertionServiceEnabled')?.reset() + this.editForm.get('clientId')?.updateValueAndValidity() + } + if (!this.editForm.get('assertionServiceEnabled')?.disabled) { + this.editForm.get('assertionServiceEnabled')?.disable() + } + } else { + this.editForm.get('assertionServiceEnabled')?.enable() + } + }) + } + + updateForm(member: IMember) { + this.editForm.patchValue({ + id: member.id, + clientId: member.clientId, + clientName: member.clientName, + salesforceId: member.salesforceId, + parentSalesforceId: member.parentSalesforceId, + isConsortiumLead: member.isConsortiumLead, + assertionServiceEnabled: member.assertionServiceEnabled ? true : false, + createdBy: member.createdBy, + createdDate: member.createdDate != null ? member.createdDate.format(DATE_TIME_FORMAT) : null, + lastModifiedBy: member.lastModifiedBy, + lastModifiedDate: member.lastModifiedDate != null ? member.lastModifiedDate.format(DATE_TIME_FORMAT) : null, + }) + const clientId = this.editForm.get('clientId')?.value + if (!clientId || (clientId && clientId === '')) { + this.editForm.get('assertionServiceEnabled')?.reset() + this.editForm.get('assertionServiceEnabled')?.disable() + } else { + this.editForm.get('assertionServiceEnabled')?.enable() + } + } + + navigateToMembersList() { + this.router.navigate(['/members']) + } + + save() { + this.isSaving = true + const member = this.createFromForm() + this.memberService.validate(member).subscribe((data) => { + if (data.valid) { + if (member.id !== undefined) { + this.subscribeToUpdateResponse(this.memberService.update(member)) + } else { + this.subscribeToSaveResponse(this.memberService.create(member)) + } + } else { + this.isSaving = false + this.validation = data + } + }) + } + + private createFromForm(): IMember { + return { + ...new Member(), + id: this.editForm.get(['id'])?.value || undefined, + clientId: this.editForm.get(['clientId'])?.value, + clientName: this.editForm.get(['clientName'])?.value, + salesforceId: this.editForm.get(['salesforceId'])?.value, + parentSalesforceId: this.editForm.get(['parentSalesforceId'])?.value, + isConsortiumLead: this.editForm.get(['isConsortiumLead'])?.value, + assertionServiceEnabled: this.editForm.get(['assertionServiceEnabled'])?.value ? true : false, + createdBy: this.editForm.get(['createdBy'])?.value, + createdDate: + this.editForm.get(['createdDate'])?.value != null + ? moment(this.editForm.get(['createdDate'])?.value, DATE_TIME_FORMAT) + : undefined, + lastModifiedBy: this.editForm.get(['lastModifiedBy'])?.value, + lastModifiedDate: + this.editForm.get(['lastModifiedDate'])?.value != null + ? moment(this.editForm.get(['lastModifiedDate'])?.value, DATE_TIME_FORMAT) + : undefined, + } + } + + protected subscribeToSaveResponse(result: Observable) { + result.subscribe({ + next: () => this.onSaveSuccess(), + error: () => this.onSaveError(), + }) + } + + protected onSaveSuccess() { + this.isSaving = false + this.navigateToMembersList() + this.alertService.broadcast(AlertType.MEMBER_CREATED) + } + + protected subscribeToUpdateResponse(result: Observable) { + result.subscribe({ + next: () => this.onUpdateSuccess(), + error: () => this.onSaveError(), + }) + } + + protected onUpdateSuccess() { + this.isSaving = false + this.navigateToMembersList() + this.alertService.broadcast(AlertType.MEMBER_UPDATED) + } + + protected onSaveError() { + this.isSaving = false + } +} diff --git a/ui/src/app/member/member.module.ts b/ui/src/app/member/member.module.ts index 8cb4f2211..71bdee116 100644 --- a/ui/src/app/member/member.module.ts +++ b/ui/src/app/member/member.module.ts @@ -5,7 +5,8 @@ import { memberRoutes } from './member.route' import { SharedModule } from '../shared/shared.module' import { FontAwesomeModule } from '@fortawesome/angular-fontawesome' import { FormsModule, ReactiveFormsModule } from '@angular/forms' -import { MembersComponent } from './members.component'; +import { MembersComponent } from './members.component' +import { MemberUpdateComponent } from './member-update.component' import { MemberDetailComponent } from './member-detail.component' @NgModule({ @@ -17,6 +18,6 @@ import { MemberDetailComponent } from './member-detail.component' FormsModule, ReactiveFormsModule, ], - declarations: [MembersComponent, MemberDetailComponent], + declarations: [MembersComponent, MemberUpdateComponent, MemberDetailComponent], }) export class MemberModule {} diff --git a/ui/src/app/member/member.route.ts b/ui/src/app/member/member.route.ts index db8376f07..8c5ac7160 100644 --- a/ui/src/app/member/member.route.ts +++ b/ui/src/app/member/member.route.ts @@ -5,6 +5,7 @@ import { inject } from '@angular/core' import { IMember, Member } from './model/member.model' import { MemberService } from './service/member.service' import { MembersComponent } from './members.component' +import { MemberUpdateComponent } from './member-update.component' import { MemberDetailComponent } from './member-detail.component' export const MemberResolver: ResolveFn = ( @@ -33,6 +34,30 @@ export const memberRoutes: Routes = [ }, canActivate: [AuthGuard], }, + { + path: 'new', + component: MemberUpdateComponent, + resolve: { + member: MemberResolver, + }, + data: { + authorities: ['ROLE_ADMIN'], + pageTitle: 'gatewayApp.msUserServiceMSMember.home.title.string', + }, + canActivate: [AuthGuard], + }, + { + path: ':id/edit', + component: MemberUpdateComponent, + resolve: { + member: MemberResolver, + }, + data: { + authorities: ['ROLE_ADMIN'], + pageTitle: 'gatewayApp.msUserServiceMSMember.home.title.string', + }, + canActivate: [AuthGuard], + }, { path: ':id/view', component: MemberDetailComponent, diff --git a/ui/src/app/member/members.component.html b/ui/src/app/member/members.component.html index bafaf3a2a..abfdec74e 100644 --- a/ui/src/app/member/members.component.html +++ b/ui/src/app/member/members.component.html @@ -1,89 +1,175 @@
-

Manage members

-
-
- - +

Manage members

+
+
+ + +
+
+
+
+
+
+ +
+ +
-
-
-
-
- - -
- -
-
+
+
+
+ +
+ No members to show +
-
-
- -
- No members to show +
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+ Salesforce Id + + + Member Name + + + Consortium Lead + + + Parent Salesforce Id + + + Assertions Enabled + + + Last Modified + +
+ {{ member.salesforceId }} + {{ member.clientName }} + {{ member.isConsortiumLead }} + + + {{ member.parentSalesforceId }} + {{ member.assertionServiceEnabled }} + + + {{ member.lastModifiedDate?.toString() | date: 'medium' }} +
+
- - -
- - - - - - - - - - - - - - - - - - - - - - - -
Salesforce Id Member Name Consortium Lead Parent Salesforce Id Assertions Enabled Last Modified
{{member.salesforceId}}{{member.clientName}} - {{member.isConsortiumLead}} - - - {{member.parentSalesforceId}} - {{member.assertionServiceEnabled}} - - - {{member.lastModifiedDate?.toString() | date:'medium'}} -
- -
-
+
+
+
+
+

{{ itemCount }}

-
-
-

{{ itemCount }}

-
-
- -
+
+
+
diff --git a/ui/src/app/member/members.component.scss b/ui/src/app/member/members.component.scss deleted file mode 100644 index e69de29bb..000000000 diff --git a/ui/src/app/member/members.component.ts b/ui/src/app/member/members.component.ts index 031e56d65..26fb0574c 100644 --- a/ui/src/app/member/members.component.ts +++ b/ui/src/app/member/members.component.ts @@ -22,7 +22,6 @@ import { IMemberPage } from './model/member-page.model' @Component({ selector: 'app-members', templateUrl: './members.component.html', - styleUrls: ['./members.component.scss'], }) export class MembersComponent implements OnInit { currentAccount: any diff --git a/ui/src/app/member/service/member.service.ts b/ui/src/app/member/service/member.service.ts index 8a9b42a37..33b5e06a4 100644 --- a/ui/src/app/member/service/member.service.ts +++ b/ui/src/app/member/service/member.service.ts @@ -6,9 +6,6 @@ import * as moment from 'moment' import { createRequestOption } from 'src/app/shared/request-util' import { IMemberPage, MemberPage } from '../model/member-page.model' -type EntityResponseType = HttpResponse -type EntityArrayResponseType = HttpResponse - @Injectable({ providedIn: 'root' }) export class MemberService { constructor(protected http: HttpClient) {} @@ -25,6 +22,25 @@ export class MemberService { ) } + create(msMember: IMember): Observable { + const copy = this.convertDateFromClient(msMember) + return this.http + .post(`${this.resourceUrl}/members`, copy) + .pipe(map((res: IMember) => this.convertDateFromServer(res))) + } + + update(msMember: IMember): Observable { + const copy = this.convertDateFromClient(msMember) + return this.http + .put(`${this.resourceUrl}/members`, copy) + .pipe(map((res: IMember) => this.convertDateFromServer(res))) + } + + validate(member: IMember): Observable<{ valid: boolean; errors?: string[] }> { + const copy = this.convertDateFromClient(member) + return this.http.post<{ valid: boolean; errors: string[] }>(`${this.resourceUrl}/members/validate`, copy) + } + getAllMembers(): Observable { return this.http .get(`${this.resourceUrl}/members/list/all`) @@ -46,6 +62,15 @@ export class MemberService { this.managedMember.next(value) } + protected convertDateFromClient(member: IMember): IMember { + const copy: IMember = Object.assign({}, member, { + createdDate: member.createdDate != null && member.createdDate.isValid() ? member.createdDate.toJSON() : null, + lastModifiedDate: + member.lastModifiedDate != null && member.lastModifiedDate.isValid() ? member.lastModifiedDate.toJSON() : null, + }) + return copy + } + protected convertDateFromServer(member: IMember): IMember { if (member) { member.createdDate = member.createdDate != null ? moment(member.createdDate) : undefined diff --git a/ui/src/app/shared/pipe/localize.ts b/ui/src/app/shared/pipe/localize.ts index 29b4178f2..37296b941 100644 --- a/ui/src/app/shared/pipe/localize.ts +++ b/ui/src/app/shared/pipe/localize.ts @@ -17,6 +17,10 @@ export class LocalizePipe implements PipeTransform { return $localize`:@@userServiceApp.user.updated.string:User updated successfully` case AlertType.USER_DELETED: return $localize`:@@userServiceApp.user.deleted.string:User deleted successfully` + case AlertType.MEMBER_CREATED: + return $localize`:@@memberServiceApp.member.created.string:Member created` + case AlertType.MEMBER_UPDATED: + return $localize`:@@memberServiceApp.member.updated.string:Member updated successfully` case AlertType.NOTIFICATION_IN_PROGRESS: return $localize`:@@gatewayApp.assertionServiceAssertion.notifications.notificationInProgress.string:Notification process has now started. We will email you as soon as the process has completed.` case AlertType.AFFILIATION_CREATED: diff --git a/ui/src/app/user/user-update.component.spec.ts b/ui/src/app/user/user-update.component.spec.ts index b4c954cd9..68cfdaea2 100644 --- a/ui/src/app/user/user-update.component.spec.ts +++ b/ui/src/app/user/user-update.component.spec.ts @@ -11,7 +11,7 @@ import { IUser, User } from './model/user.model' import { Member } from '../member/model/member.model' import { UserValidation } from './model/user-validation.model' import { FontAwesomeModule } from '@fortawesome/angular-fontawesome' -import { NO_ERRORS_SCHEMA } from '@angular/core' +import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core' import { RouterTestingModule } from '@angular/router/testing' import { of } from 'rxjs' @@ -54,7 +54,7 @@ describe('UserUpdateComponent', () => { { provide: AlertService, useValue: alertServiceSpy }, { provide: ErrorService, useValue: {} }, ], - schemas: [NO_ERRORS_SCHEMA], + schemas: [CUSTOM_ELEMENTS_SCHEMA], }).compileComponents() fixture = TestBed.createComponent(UserUpdateComponent) diff --git a/ui/src/i18n/messages.cs.xlf b/ui/src/i18n/messages.cs.xlf index 541d48864..3e68bfe22 100644 --- a/ui/src/i18n/messages.cs.xlf +++ b/ui/src/i18n/messages.cs.xlf @@ -70,8 +70,10 @@ - Slide of - Slide of + Slide of + + Slide of + Currently selected slide number read by screen reader node_modules/src/ngb-config.ts @@ -287,8 +289,12 @@ - Failed to sign in! Please check your credentials and try again. - Přihlášení se nezdařilo! Zkontrolujte prosím své přihlašovací údaje a zkuste to znovu. + Failed to + sign in! Please + check your credentials and try again. + Přihlášení + se nezdařilo! + Zkontrolujte prosím své přihlašovací údaje a zkuste to znovu. src/app/account/login/login.component.html 6 @@ -302,7 +308,8 @@ 10 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 22 @@ -318,7 +325,8 @@ 16 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 28 @@ -386,15 +394,21 @@ Reset your password Obnovit vaše heslo - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 4 - Email address isn't registered! Please check and try again. - E-mailová adresa není zaregistrovaná! Zkontrolujte ji prosím a zkuste to znovu - - src/app/account/password/password-reset-init.component.html + Email + address isn't registered! Please check and try again. + E-mailová + adresa není zaregistrovaná! Zkontrolujte ji prosím a zkuste to znovu + + + src/app/account/password/password-reset-init.component.html 7 @@ -402,7 +416,8 @@ Enter the email address you used to register. Vložte e-mailovou adresu, kterou jste použili při registraci - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 11 @@ -410,7 +425,8 @@ Check your emails for details on how to reset your password. Podrobnosti o tom, jak obnovit heslo, najdete v e-mailu. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 15 @@ -418,7 +434,8 @@ Your email is required. Váš e-mail je povinný. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 42 @@ -426,7 +443,8 @@ Your email is invalid. Váš email je neplatný. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 49 @@ -434,7 +452,8 @@ Your email is required to be at least 5 characters. Váš email musí mít alespoň 5 znaků. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 56 @@ -442,7 +461,8 @@ Your email cannot be longer than 100 characters. Váš e-mail nesmí být delší než 50 znaků. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 64 @@ -450,7 +470,8 @@ Reset Obnovit heslo - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 75 @@ -463,8 +484,10 @@ - Settings saved! - Nastavení uloženo! + Settings + saved! + Nastavení + uloženo! src/app/account/settings/settings.component.html 8 @@ -579,8 +602,12 @@ - Add extra security to your ORCID member portal account by enabling two-factor authentication. Each time you sign in, you'll be prompted to enter a six-digit code we send to your preferred authentication application. - Přidejte další stupeň zabezpečení do svého účtu členského portálu ORCID povolením dvoufázového ověření. Při každém přihlášení budete vyzváni k zadání šestimístného kódu, který zašleme do vámi preferované ověřovací aplikace. + Add extra security to your ORCID member portal account by enabling two-factor + authentication. Each time you sign in, you'll be prompted to enter a six-digit code + we send to your preferred authentication application. + Přidejte další stupeň zabezpečení do svého účtu členského portálu ORCID + povolením dvoufázového ověření. Při každém přihlášení budete vyzváni k zadání + šestimístného kódu, který zašleme do vámi preferované ověřovací aplikace. src/app/account/settings/settings.component.html 146 @@ -603,16 +630,40 @@ - Install a two-factor authentication appA 2FA app is required to create the six-digit code you need to access your account each time you sign in. Most apps are for mobile devices; some are also available as desktop or web-based apps. Download and install your preferred 2FA app, such as Google Authenticator, FreeOTP, or Authy. - Nainstalujte si aplikaci pro dvoufázové ověřeníAplikace pro dvoufázové ověření je vyžadována, abyste vytvořili šestimístní kód a pomocí něj získali přístup ke svému účtu pokaždé, když se přihlásíte. Většina aplikací je pro mobilní zařízení. Některé jsou také dostupné jako desktopové a prohlížečové aplikace. Stáhněte a nainstalujte si vámi preferovanou aplikaci pro dvoufázové ověření jako například Google Authenticator, FreeOTP nebo Authy. + Install a two-factor authentication appA 2FA app is required to create the six-digit code you + need to access your account each time you sign in. Most apps are for mobile devices; some + are also available as desktop or web-based apps. Download and install your preferred 2FA + app, such as Google + Authenticator, + FreeOTP, or Authy. + Nainstalujte si aplikaci pro dvoufázové ověřeníAplikace pro dvoufázové ověření je vyžadována, + abyste vytvořili šestimístní kód a pomocí něj získali přístup ke svému účtu pokaždé, když + se přihlásíte. Většina aplikací je pro mobilní zařízení. Některé jsou také dostupné jako + desktopové a prohlížečové aplikace. Stáhněte a nainstalujte si vámi preferovanou aplikaci + pro dvoufázové ověření jako například Google + Authenticator, + FreeOTP nebo Authy. src/app/account/settings/settings.component.html 166 - Scan this QR code with your deviceOpen your 2FA app and scan the image below. - Naskenujte tento QR kód vaším zařízenímOtěvřete svou aplikaci pro dvoufázové ověření a naskenujte obrázek níže. + Scan this QR code with your deviceOpen your 2FA app and scan the image below. + Naskenujte tento QR kód vaším zařízenímOtěvřete svou aplikaci pro dvoufázové ověření a naskenujte + obrázek níže. src/app/account/settings/settings.component.html 174 @@ -643,8 +694,14 @@ - Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, your 2FA app will display a six-digit code. Enter this code in the box below and click Save. - Vložte šestimístní kód z aplikacePo naskenování QR kódu nebo vložení kódu z SMS se v aplikaci pro dvoufázové ověření zobrazí šestimístní kód. Vložte tento kód do pole níže a klikněte na tlačítko Uložit. + Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, + your 2FA app will display a six-digit code. Enter this code in the box below and click + Save. + Vložte šestimístní kód z aplikacePo naskenování QR kódu nebo vložení kódu z SMS se v + aplikaci pro dvoufázové ověření zobrazí šestimístní kód. Vložte tento kód do pole níže a + klikněte na tlačítko Uložit. src/app/account/settings/settings.component.html 205 @@ -667,8 +724,10 @@ - Make a note of the following backup codes, this is the only time they will be shown. - Poznamenejte si následující záložní kódy, toto je jediný případ, kdy se zobrazí. + Make a note of the following backup codes, this is the only time they will be + shown. + Poznamenejte si následující záložní kódy, toto je jediný případ, kdy se + zobrazí. src/app/account/settings/settings.component.html 228 @@ -875,16 +934,22 @@ - Password changed! - Heslo změněno! + Password + changed! + Heslo + změněno! src/app/account/password/password.component.html 7 - An error has occurred! The password could not be changed. - Došlo k chybě! Heslo nelze změnit. + An error + has occurred! + The password could not be changed. + Došlo + k chybě! Heslo + nelze změnit. src/app/account/password/password.component.html 10 @@ -894,7 +959,8 @@ The password and its confirmation do not match! Heslo a jeho potvrzení nesouhlasí - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 62 @@ -922,7 +988,8 @@ Your password is required. Je potřeba vaše heslo - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 91 @@ -938,7 +1005,8 @@ New password Nové heslo - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 70 @@ -950,7 +1018,8 @@ New password Nové heslo - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 77 @@ -962,7 +1031,8 @@ Your password is required to be at least 4 characters. Vaše heslo musí mít alespoň 4 znaky. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 98 @@ -974,7 +1044,8 @@ Your password cannot be longer than 50 characters. Vaše heslo nesmí být delší než 50 znaků. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 105 @@ -986,7 +1057,8 @@ New password confirmation Potvrzení nového hesla - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 114 @@ -998,7 +1070,8 @@ Confirm the new password Potvrďte nové heslo - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 121 @@ -1010,7 +1083,8 @@ Your password confirmation is required. Musíte uvést potvrzovací heslo. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 135 @@ -1022,7 +1096,8 @@ Your password confirmation is required to be at least 4 characters. Vaše potvrzovací heslo musí mít alespoň 4 znaky. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 142 @@ -1034,7 +1109,8 @@ Your password confirmation cannot be longer than 50 characters. Vaše potvrzovací heslo nesmí být delší než 50 znaků. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 149 @@ -1062,55 +1138,79 @@ Reset password Znovu nastavit heslo - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 4 - The activation key is missing. - Chybí aktivační klíč. - - src/app/account/password/password-reset-finish.component.html + The + activation key is missing. + Chybí + aktivační klíč. + + + src/app/account/password/password-reset-finish.component.html 7 - This activation key is invalid. - Aktivační klíč je neplatný. - - src/app/account/password/password-reset-finish.component.html + This + activation key is invalid. + Aktivační + klíč je neplatný. + + + src/app/account/password/password-reset-finish.component.html 11 - This activation has expired. - Vypršela platnost aktivačního klíče. - - src/app/account/password/password-reset-finish.component.html + This + activation has expired. + Vypršela + platnost aktivačního klíče. + + + src/app/account/password/password-reset-finish.component.html 15 - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It looks like this + link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It + looks like this link has expired. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 20 - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a new + activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a + new activation link to your registered email address. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 26 - If you are still having problems activating your account or have not received your new activation link please contact our support team please contact us at membership@orcid.org. - If you are still having problems activating your account or have not received your new activation link, please contact us at membership@orcid.org. - - src/app/account/password/password-reset-finish.component.html + If you are still having problems activating your account or have not received your + new activation link please contact our support team please contact us at + membership@orcid.org. + If you are still having problems activating your account or have not + received your new activation link, please contact us at membership@orcid.org. + + + src/app/account/password/password-reset-finish.component.html 32 @@ -1118,23 +1218,32 @@ Choose a new password Vyberte nové heslo - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 39 - Your password couldn't be reset. Remember a password request is only valid for 24 hours. - Heslo nelze znovu nastavit. Nezapomeňte, že žádost o heslo platí pouze 24 hodin. + Your password couldn't be reset. Remember a password request is only valid for + 24 hours. + Heslo nelze znovu nastavit. Nezapomeňte, že žádost o heslo platí pouze + 24 hodin. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 43 - Your password has been reset. Please - Vaše heslo bylo obnoveno. Prosím - - src/app/account/password/password-reset-finish.component.html + Your + password has been reset. Please + Vaše + heslo bylo obnoveno. + Prosím + + + src/app/account/password/password-reset-finish.component.html 50 @@ -1142,7 +1251,8 @@ sign in přihlásit se - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 58 @@ -1150,7 +1260,8 @@ Reset Password Ověřte nové heslo - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 159 @@ -1182,7 +1293,8 @@ Password strength: Síla hesla: - src/app/account/password/password-strength.component.html + + src/app/account/password/password-strength.component.html 2 @@ -1365,6 +1477,14 @@ src/app/affiliation/affiliation-detail.component.html 143 + + src/app/member/member-detail.component.html + 47 + + + src/app/member/member-detail.component.html + 51 + src/app/user/user-detail.component.html 81 @@ -1393,6 +1513,10 @@ src/app/affiliation/affiliation-detail.component.html 230 + + src/app/member/member-detail.component.html + 61 + src/app/user/user-detail.component.html 95 @@ -1409,6 +1533,14 @@ src/app/affiliation/affiliations.component.html 220 + + src/app/member/member-detail.component.html + 66 + + + src/app/member/members.component.html + 151 + src/app/user/user-detail.component.html 103 @@ -1450,17 +1582,23 @@ 17 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 34 src/app/affiliation/affiliation-update.component.html - 465 + 453 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 20 + + src/app/member/member-update.component.html + 186 + src/app/user/user-delete.component.html 14 @@ -1479,7 +1617,11 @@ Uložit src/app/affiliation/affiliation-update.component.html - 468 + 456 + + + src/app/member/member-update.component.html + 189 src/app/user/user-update.component.html @@ -1521,6 +1663,10 @@ src/app/affiliation/affiliations.component.html 104 + + src/app/member/members.component.html + 32 + src/app/user/users.component.html 32 @@ -1555,20 +1701,31 @@ - Showing - of items. - Zobrazují se položky z + Showing - + of items. + Zobrazují se položky z src/app/affiliation/affiliations.component.ts - 228 + 227 + + + src/app/member/members.component.ts + 160 src/app/user/users.component.ts 230 - - Are you sure you want to transfer ownership? You are about to transfer ownership of this organization account. If you are the organization owner after transferring ownership, you will no longer have access to administrative functions, such as managing users. - Opravdu chcete převést vlastnictví? Chystáte se převést vlastnictví tohoto účtu organizace. Jste-li vlastníkem organizace, po převodu vlastnictví již nebudete mít přístup k administrátorským funkcím, jako je správa uživatelů. + + Are you sure you want to transfer ownership? You are about to transfer ownership of + this organization account. If you are the organization owner after transferring ownership, + you will no longer have access to administrative functions, such as managing users. + Opravdu chcete převést vlastnictví? Chystáte se převést vlastnictví + tohoto účtu organizace. Jste-li vlastníkem organizace, po převodu vlastnictví již nebudete + mít přístup k administrátorským funkcím, jako je správa uživatelů. src/app/user/user-update.component.ts 215 @@ -1576,7 +1733,7 @@ User created. Invite sent. - Uživatel vytvořen. Pozvánka odeslána. + Uživatel vytvořen. Pozvánka odeslána. src/app/shared/pipe/localize.ts 15 @@ -1592,10 +1749,11 @@ Are you sure you want to delete user ? - Opravdu chcete smazat uživatele ? + Opravdu chcete smazat uživatele + ? src/app/user/user-delete.component.ts - 47 + 44 @@ -1627,8 +1785,10 @@ - Oops! There was a problem processing your data. Pleases fix the errors below and try again - Jejda! Při zpracování vašich údajů došlo k problému. Opravte prosím níže uvedené chyby a zkuste to znovu + Oops! There was a problem processing your data. Pleases fix the errors below and + try again + Jejda! Při zpracování vašich údajů došlo k problému. Opravte prosím níže + uvedené chyby a zkuste to znovu src/app/user/user-import-dialog.component.html 16 @@ -1654,7 +1814,8 @@ Upload Nahrát - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 37 @@ -1679,7 +1840,8 @@ 2 - + Send permission notifications Odeslat oznámení oprávnění @@ -1687,7 +1849,8 @@ 11 - + Request permission links Vyžádejte si odkazy na oprávnění @@ -1695,7 +1858,8 @@ 21 - + Request affiliation status report Vyžádejte si zprávu o stavu přidružení @@ -1703,7 +1867,9 @@ 31 - + Request affiliations for edit Vyžádejte si přidružení k úpravě @@ -1727,25 +1893,36 @@ 61 - - Your affiliations for edit file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Vaše přidružení k úpravě souboru vám budou brzy zaslány e-mailem. Pokud svůj soubor neobdržíte, kontaktujte nás prosím na adrese membership@orcid.org. + + Your affiliations for edit file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + Vaše přidružení k úpravě souboru vám budou brzy zaslány e-mailem. Pokud + svůj soubor neobdržíte, kontaktujte nás prosím na adrese membership@orcid.org. src/app/affiliation/affiliations.component.html 73 - - Your affiliation status report file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Soubor zprávy o stavu přidružení vám bude brzy zaslán e-mailem. Pokud svůj soubor neobdržíte, kontaktujte nás prosím na adrese membership@orcid.org. + + Your affiliation status report file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + Soubor zprávy o stavu přidružení vám bude brzy zaslán e-mailem. Pokud + svůj soubor neobdržíte, kontaktujte nás prosím na adrese membership@orcid.org. src/app/affiliation/affiliations.component.html 82 - - Your permission links file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Váš soubor odkazů na oprávnění vám bude brzy zaslán e-mailem. Pokud svůj soubor neobdržíte, kontaktujte nás prosím na adrese membership@orcid.org. + + Your permission links file will be mailed to you shortly. If you do not receive + your file then please contact us at membership@orcid.org. + Váš soubor odkazů na oprávnění vám bude brzy zaslán e-mailem. Pokud svůj + soubor neobdržíte, kontaktujte nás prosím na adrese membership@orcid.org. src/app/affiliation/affiliations.component.html 91 @@ -1823,7 +2000,9 @@ 150 - + @@ -1855,9 +2034,13 @@ 190 - - For help troubleshooting, please contact the Member Portal Team and copy/paste or include a screenshot of the error message below. - Pokud potřebujete pomoc s řešením této chyby, obraťte se prosím na své vedení konsorcia nebo na member@orcid.org. Níže přiložte snímek obrazovky s chybovou zprávou. + + For help troubleshooting, please contact the Member Portal Team and copy/paste or + include a screenshot of the error message below. + Pokud potřebujete pomoc s řešením této chyby, obraťte se prosím na své + vedení konsorcia nebo na member@orcid.org. Níže přiložte snímek obrazovky s chybovou + zprávou. src/app/affiliation/affiliations.component.html 203 @@ -1868,7 +2051,7 @@ Uživatel odepřel přístup src/app/shared/pipe/localize.ts - 34 + 38 @@ -1876,7 +2059,7 @@ Čeká na vyřízení src/app/shared/pipe/localize.ts - 36 + 40 @@ -1884,7 +2067,7 @@ V ORCID src/app/shared/pipe/localize.ts - 38 + 42 @@ -1892,7 +2075,7 @@ Uživatel udělil přístup src/app/shared/pipe/localize.ts - 40 + 44 @@ -1900,7 +2083,7 @@ User deleted from ORCID src/app/shared/pipe/localize.ts - 42 + 46 @@ -1908,7 +2091,7 @@ Uživatel odvolal přístup src/app/shared/pipe/localize.ts - 44 + 48 @@ -1916,7 +2099,7 @@ Chyba při přidávání do ORCID src/app/shared/pipe/localize.ts - 46 + 50 @@ -1924,7 +2107,7 @@ Chyba při aktualizaci v ORCID src/app/shared/pipe/localize.ts - 48 + 52 @@ -1932,7 +2115,7 @@ Čeká na opakování v ORCID src/app/shared/pipe/localize.ts - 50 + 54 @@ -1940,7 +2123,7 @@ Chyba při odstraňování v ORCID src/app/shared/pipe/localize.ts - 52 + 56 @@ -1948,7 +2131,7 @@ Oznámení požadováno src/app/shared/pipe/localize.ts - 54 + 58 @@ -1956,7 +2139,7 @@ Oznámení bylo odesláno src/app/shared/pipe/localize.ts - 56 + 60 @@ -1964,7 +2147,7 @@ Odeslání oznámení selhalo src/app/shared/pipe/localize.ts - 58 + 62 @@ -1972,7 +2155,7 @@ Čeká na aktualizaci v ORCID src/app/shared/pipe/localize.ts - 60 + 64 @@ -2007,7 +2190,8 @@ 36 - + Affiliation Section Typ přidružení @@ -2048,7 +2232,7 @@ src/app/affiliation/affiliation-update.component.html - 265 + 261 @@ -2060,7 +2244,7 @@ src/app/affiliation/affiliation-update.component.html - 285 + 277 @@ -2088,7 +2272,7 @@ src/app/affiliation/affiliation-update.component.html - 426 + 414 @@ -2131,7 +2315,8 @@ 145 - + Notification First Sent Oznámení odeslané jako první @@ -2143,7 +2328,8 @@ 175 - + Notification Last Sent Oznámení naposledy odesláno @@ -2167,15 +2353,20 @@ Import affiliations from CSV Importovat přidružení - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 3 - - Your CSV has been uploaded for processing. We will let you know via email once the file has been processed. - Váš soubor CSV byl nahrán ke zpracování. Jakmile bude soubor zpracován, dáme vám vědět e-mailem. + + Your CSV has been uploaded for processing. We will let you know via email once the + file has been processed. + Váš soubor CSV byl nahrán ke zpracování. Jakmile bude soubor zpracován, + dáme vám vědět e-mailem. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 10 @@ -2183,7 +2374,8 @@ There was a problem uploading your CSV for processing. Při nahrávání vašeho CSV souboru ke zpracování došlo k problému. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 17 @@ -2191,7 +2383,8 @@ Please select the CSV file to upload Zvolte prosím soubor CSV, který se nahraje - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 20 @@ -2199,15 +2392,19 @@ File Path Cesta k souboru - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 22 - Please do not forget to download and send permission links to your researchers once the upload has completed. - Poznámka: Po dokončení nahrávání si nezapomeňte stáhnout a odeslat odkazy na povolení svým výzkumníkům. + Please do not forget to download and send permission links to your researchers once + the upload has completed. + Poznámka: Po dokončení nahrávání si nezapomeňte stáhnout a odeslat + odkazy na povolení svým výzkumníkům. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 26 @@ -2215,7 +2412,8 @@ Close Zavřít - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 40 @@ -2223,7 +2421,8 @@ There is no file to upload. Please select one. Neexistuje žádný soubor k nahrání. Prosím vyberte jej. - src/app/affiliation/affiliation-import-dialog.component.ts + + src/app/affiliation/affiliation-import-dialog.component.ts 60 @@ -2232,7 +2431,7 @@ VZDĚLÁNÍ src/app/shared/pipe/localize.ts - 65 + 69 @@ -2240,7 +2439,7 @@ ZAMĚSTNÁNÍ src/app/shared/pipe/localize.ts - 67 + 71 @@ -2248,7 +2447,7 @@ ODLIŠENÍ src/app/shared/pipe/localize.ts - 69 + 73 @@ -2256,7 +2455,7 @@ POZVANÁ_POZICE src/app/shared/pipe/localize.ts - 71 + 75 @@ -2264,7 +2463,7 @@ KVALIFIKACE src/app/shared/pipe/localize.ts - 73 + 77 @@ -2272,7 +2471,7 @@ SLUŽBA src/app/shared/pipe/localize.ts - 75 + 79 @@ -2280,7 +2479,7 @@ ČLENSTVÍ src/app/shared/pipe/localize.ts - 77 + 81 @@ -2288,7 +2487,7 @@ leden src/app/shared/pipe/localize.ts - 82 + 86 @@ -2296,7 +2495,7 @@ únor src/app/shared/pipe/localize.ts - 84 + 88 @@ -2304,7 +2503,7 @@ březen src/app/shared/pipe/localize.ts - 86 + 90 @@ -2312,7 +2511,7 @@ duben src/app/shared/pipe/localize.ts - 88 + 92 @@ -2320,7 +2519,7 @@ květen src/app/shared/pipe/localize.ts - 90 + 94 @@ -2328,7 +2527,7 @@ červen src/app/shared/pipe/localize.ts - 92 + 96 @@ -2336,7 +2535,7 @@ červenec src/app/shared/pipe/localize.ts - 94 + 98 @@ -2344,7 +2543,7 @@ srpen src/app/shared/pipe/localize.ts - 96 + 100 @@ -2352,7 +2551,7 @@ září src/app/shared/pipe/localize.ts - 98 + 102 @@ -2360,7 +2559,7 @@ říjen src/app/shared/pipe/localize.ts - 100 + 104 @@ -2368,7 +2567,7 @@ listopad src/app/shared/pipe/localize.ts - 102 + 106 @@ -2376,7 +2575,7 @@ prosinec src/app/shared/pipe/localize.ts - 104 + 108 @@ -2384,7 +2583,7 @@ Andorra src/app/shared/pipe/localize.ts - 109 + 113 @@ -2392,7 +2591,7 @@ Spojené arabské emiráty src/app/shared/pipe/localize.ts - 111 + 115 @@ -2400,7 +2599,7 @@ Afghánistán src/app/shared/pipe/localize.ts - 113 + 117 @@ -2408,7 +2607,7 @@ Antigua a Barbuda src/app/shared/pipe/localize.ts - 115 + 119 @@ -2416,7 +2615,7 @@ Anguilla src/app/shared/pipe/localize.ts - 117 + 121 @@ -2424,7 +2623,7 @@ Albánie src/app/shared/pipe/localize.ts - 119 + 123 @@ -2432,7 +2631,7 @@ Arménie src/app/shared/pipe/localize.ts - 121 + 125 @@ -2440,7 +2639,7 @@ Angola src/app/shared/pipe/localize.ts - 123 + 127 @@ -2448,7 +2647,7 @@ Antarktida src/app/shared/pipe/localize.ts - 125 + 129 @@ -2456,7 +2655,7 @@ Argentina src/app/shared/pipe/localize.ts - 127 + 131 @@ -2464,7 +2663,7 @@ Americká Samoa src/app/shared/pipe/localize.ts - 129 + 133 @@ -2472,7 +2671,7 @@ Rakousko src/app/shared/pipe/localize.ts - 131 + 135 @@ -2480,7 +2679,7 @@ Austrálie src/app/shared/pipe/localize.ts - 133 + 137 @@ -2488,7 +2687,7 @@ Aruba src/app/shared/pipe/localize.ts - 135 + 139 @@ -2496,7 +2695,7 @@ Alandské ostrovy src/app/shared/pipe/localize.ts - 137 + 141 @@ -2504,7 +2703,7 @@ Ázerbajdžán src/app/shared/pipe/localize.ts - 139 + 143 @@ -2512,7 +2711,7 @@ Bosna a Hercegovina src/app/shared/pipe/localize.ts - 141 + 145 @@ -2520,7 +2719,7 @@ Barbados src/app/shared/pipe/localize.ts - 143 + 147 @@ -2528,7 +2727,7 @@ Bangladéš src/app/shared/pipe/localize.ts - 145 + 149 @@ -2536,7 +2735,7 @@ Belgie src/app/shared/pipe/localize.ts - 147 + 151 @@ -2544,7 +2743,7 @@ Burkina Faso src/app/shared/pipe/localize.ts - 149 + 153 @@ -2552,7 +2751,7 @@ Bulharsko src/app/shared/pipe/localize.ts - 151 + 155 @@ -2560,7 +2759,7 @@ Bahrajn src/app/shared/pipe/localize.ts - 153 + 157 @@ -2568,7 +2767,7 @@ Burundi src/app/shared/pipe/localize.ts - 155 + 159 @@ -2576,7 +2775,7 @@ Benin src/app/shared/pipe/localize.ts - 157 + 161 @@ -2584,7 +2783,7 @@ Svatý Bartoloměj src/app/shared/pipe/localize.ts - 159 + 163 @@ -2592,7 +2791,7 @@ Bermudy src/app/shared/pipe/localize.ts - 161 + 165 @@ -2600,7 +2799,7 @@ Brunej src/app/shared/pipe/localize.ts - 163 + 167 @@ -2608,7 +2807,7 @@ Bolívie src/app/shared/pipe/localize.ts - 165 + 169 @@ -2616,7 +2815,7 @@ Britské antarktické území src/app/shared/pipe/localize.ts - 167 + 171 @@ -2624,7 +2823,7 @@ Brazílie src/app/shared/pipe/localize.ts - 169 + 173 @@ -2632,7 +2831,7 @@ Bahamy src/app/shared/pipe/localize.ts - 171 + 175 @@ -2640,7 +2839,7 @@ Bhútán src/app/shared/pipe/localize.ts - 173 + 177 @@ -2648,7 +2847,7 @@ Bouvetův ostrov src/app/shared/pipe/localize.ts - 175 + 179 @@ -2656,7 +2855,7 @@ Botswana src/app/shared/pipe/localize.ts - 177 + 181 @@ -2664,7 +2863,7 @@ Bělorusko src/app/shared/pipe/localize.ts - 179 + 183 @@ -2672,7 +2871,7 @@ Belize src/app/shared/pipe/localize.ts - 181 + 185 @@ -2680,7 +2879,7 @@ Kanada src/app/shared/pipe/localize.ts - 183 + 187 @@ -2688,7 +2887,7 @@ Kokosové ostrovy {Keelingovy ostrovy} src/app/shared/pipe/localize.ts - 185 + 189 @@ -2696,7 +2895,7 @@ Kongo - Kinshasa src/app/shared/pipe/localize.ts - 187 + 191 @@ -2704,7 +2903,7 @@ Středoafrická republika src/app/shared/pipe/localize.ts - 189 + 193 @@ -2712,7 +2911,7 @@ Kongo - Brazzaville src/app/shared/pipe/localize.ts - 191 + 195 @@ -2720,7 +2919,7 @@ Švýcarsko src/app/shared/pipe/localize.ts - 193 + 197 @@ -2728,7 +2927,7 @@ Pobřeží slonoviny src/app/shared/pipe/localize.ts - 195 + 199 @@ -2736,7 +2935,7 @@ Cookovy ostrovy src/app/shared/pipe/localize.ts - 197 + 201 @@ -2744,7 +2943,7 @@ Chile src/app/shared/pipe/localize.ts - 199 + 203 @@ -2752,7 +2951,7 @@ Kamerun src/app/shared/pipe/localize.ts - 201 + 205 @@ -2760,7 +2959,7 @@ Čína src/app/shared/pipe/localize.ts - 203 + 207 @@ -2768,7 +2967,7 @@ Kolumbie src/app/shared/pipe/localize.ts - 205 + 209 @@ -2776,7 +2975,7 @@ Kostarika src/app/shared/pipe/localize.ts - 207 + 211 @@ -2784,7 +2983,7 @@ Kuba src/app/shared/pipe/localize.ts - 209 + 213 @@ -2792,7 +2991,7 @@ Kapverdy src/app/shared/pipe/localize.ts - 211 + 215 @@ -2800,7 +2999,7 @@ Curaçao src/app/shared/pipe/localize.ts - 213 + 217 @@ -2808,7 +3007,7 @@ Vánoční ostrov src/app/shared/pipe/localize.ts - 215 + 219 @@ -2816,7 +3015,7 @@ Kypr src/app/shared/pipe/localize.ts - 217 + 221 @@ -2824,7 +3023,7 @@ Česká republika src/app/shared/pipe/localize.ts - 219 + 223 @@ -2832,7 +3031,7 @@ Německo src/app/shared/pipe/localize.ts - 221 + 225 @@ -2840,7 +3039,7 @@ Džibutsko src/app/shared/pipe/localize.ts - 223 + 227 @@ -2848,7 +3047,7 @@ Dánsko src/app/shared/pipe/localize.ts - 225 + 229 @@ -2856,7 +3055,7 @@ Dominika src/app/shared/pipe/localize.ts - 227 + 231 @@ -2864,7 +3063,7 @@ Dominikánská republika src/app/shared/pipe/localize.ts - 229 + 233 @@ -2872,7 +3071,7 @@ Alžírsko src/app/shared/pipe/localize.ts - 231 + 235 @@ -2880,7 +3079,7 @@ Ekvádor src/app/shared/pipe/localize.ts - 233 + 237 @@ -2888,7 +3087,7 @@ Estonsko src/app/shared/pipe/localize.ts - 235 + 239 @@ -2896,7 +3095,7 @@ Egypt src/app/shared/pipe/localize.ts - 237 + 241 @@ -2904,7 +3103,7 @@ Západní Sahara src/app/shared/pipe/localize.ts - 239 + 243 @@ -2912,7 +3111,7 @@ Eritrea src/app/shared/pipe/localize.ts - 241 + 245 @@ -2920,7 +3119,7 @@ Španělsko src/app/shared/pipe/localize.ts - 243 + 247 @@ -2928,7 +3127,7 @@ Etiopie src/app/shared/pipe/localize.ts - 245 + 249 @@ -2936,7 +3135,7 @@ Finsko src/app/shared/pipe/localize.ts - 247 + 251 @@ -2944,7 +3143,7 @@ Fidži src/app/shared/pipe/localize.ts - 249 + 253 @@ -2952,7 +3151,7 @@ Falklandy src/app/shared/pipe/localize.ts - 251 + 255 @@ -2960,7 +3159,7 @@ Mikronésie src/app/shared/pipe/localize.ts - 253 + 257 @@ -2968,7 +3167,7 @@ Faerské ostrovy src/app/shared/pipe/localize.ts - 255 + 259 @@ -2976,7 +3175,7 @@ Francie src/app/shared/pipe/localize.ts - 257 + 261 @@ -2984,7 +3183,7 @@ Gabon src/app/shared/pipe/localize.ts - 259 + 263 @@ -2992,7 +3191,7 @@ Spojené království src/app/shared/pipe/localize.ts - 261 + 265 @@ -3000,7 +3199,7 @@ Grenada src/app/shared/pipe/localize.ts - 263 + 267 @@ -3008,7 +3207,7 @@ Gruzie src/app/shared/pipe/localize.ts - 265 + 269 @@ -3016,7 +3215,7 @@ Francouzská Guyana src/app/shared/pipe/localize.ts - 267 + 271 @@ -3024,7 +3223,7 @@ Guernsey src/app/shared/pipe/localize.ts - 269 + 273 @@ -3032,7 +3231,7 @@ Ghana src/app/shared/pipe/localize.ts - 271 + 275 @@ -3040,7 +3239,7 @@ Gibraltar src/app/shared/pipe/localize.ts - 273 + 277 @@ -3048,7 +3247,7 @@ Grónsko src/app/shared/pipe/localize.ts - 275 + 279 @@ -3056,7 +3255,7 @@ Gambie src/app/shared/pipe/localize.ts - 277 + 281 @@ -3064,7 +3263,7 @@ Guinea src/app/shared/pipe/localize.ts - 279 + 283 @@ -3072,7 +3271,7 @@ Guadeloupe src/app/shared/pipe/localize.ts - 281 + 285 @@ -3080,7 +3279,7 @@ Rovníková Guinea src/app/shared/pipe/localize.ts - 283 + 287 @@ -3088,7 +3287,7 @@ Řecko src/app/shared/pipe/localize.ts - 285 + 289 @@ -3096,7 +3295,7 @@ Jižní Georgie a Jižní Sandwichovy ostrovy src/app/shared/pipe/localize.ts - 287 + 291 @@ -3104,7 +3303,7 @@ Guatemala src/app/shared/pipe/localize.ts - 289 + 293 @@ -3112,7 +3311,7 @@ Guam src/app/shared/pipe/localize.ts - 291 + 295 @@ -3120,7 +3319,7 @@ Guinea-Bissau src/app/shared/pipe/localize.ts - 293 + 297 @@ -3128,7 +3327,7 @@ Guyana src/app/shared/pipe/localize.ts - 295 + 299 @@ -3136,7 +3335,7 @@ Hongkong src/app/shared/pipe/localize.ts - 297 + 301 @@ -3144,7 +3343,7 @@ Heardův ostrov a McDonaldovy ostrovy src/app/shared/pipe/localize.ts - 299 + 303 @@ -3152,7 +3351,7 @@ Honduras src/app/shared/pipe/localize.ts - 301 + 305 @@ -3160,7 +3359,7 @@ Chorvatsko src/app/shared/pipe/localize.ts - 303 + 307 @@ -3168,7 +3367,7 @@ Haiti src/app/shared/pipe/localize.ts - 305 + 309 @@ -3176,7 +3375,7 @@ Maďarsko src/app/shared/pipe/localize.ts - 307 + 311 @@ -3184,7 +3383,7 @@ Indonésie src/app/shared/pipe/localize.ts - 309 + 313 @@ -3192,7 +3391,7 @@ Irsko src/app/shared/pipe/localize.ts - 311 + 315 @@ -3200,7 +3399,7 @@ Izrael src/app/shared/pipe/localize.ts - 313 + 317 @@ -3208,7 +3407,7 @@ Ostrov Man src/app/shared/pipe/localize.ts - 315 + 319 @@ -3216,7 +3415,7 @@ Indie src/app/shared/pipe/localize.ts - 317 + 321 @@ -3224,7 +3423,7 @@ Britské indickooceánské území src/app/shared/pipe/localize.ts - 319 + 323 @@ -3232,7 +3431,7 @@ Irák src/app/shared/pipe/localize.ts - 321 + 325 @@ -3240,7 +3439,7 @@ Írán src/app/shared/pipe/localize.ts - 323 + 327 @@ -3248,7 +3447,7 @@ Island src/app/shared/pipe/localize.ts - 325 + 329 @@ -3256,7 +3455,7 @@ Itálie src/app/shared/pipe/localize.ts - 327 + 331 @@ -3264,7 +3463,7 @@ Jersey src/app/shared/pipe/localize.ts - 329 + 333 @@ -3272,7 +3471,7 @@ Jamajka src/app/shared/pipe/localize.ts - 331 + 335 @@ -3280,7 +3479,7 @@ Jordán src/app/shared/pipe/localize.ts - 333 + 337 @@ -3288,7 +3487,7 @@ Japonsko src/app/shared/pipe/localize.ts - 335 + 339 @@ -3296,7 +3495,7 @@ Keňa src/app/shared/pipe/localize.ts - 337 + 341 @@ -3304,7 +3503,7 @@ Kyrgyzstán src/app/shared/pipe/localize.ts - 339 + 343 @@ -3312,7 +3511,7 @@ Kambodža src/app/shared/pipe/localize.ts - 341 + 345 @@ -3320,7 +3519,7 @@ Kiribati src/app/shared/pipe/localize.ts - 343 + 347 @@ -3328,7 +3527,7 @@ Komory src/app/shared/pipe/localize.ts - 345 + 349 @@ -3336,7 +3535,7 @@ Svatý Kryštof a Nevis src/app/shared/pipe/localize.ts - 347 + 351 @@ -3344,7 +3543,7 @@ Severní Korea src/app/shared/pipe/localize.ts - 349 + 353 @@ -3352,7 +3551,7 @@ Jižní Korea src/app/shared/pipe/localize.ts - 351 + 355 @@ -3360,7 +3559,7 @@ Kuvajt src/app/shared/pipe/localize.ts - 353 + 357 @@ -3368,7 +3567,7 @@ Kajmanské ostrovy src/app/shared/pipe/localize.ts - 355 + 359 @@ -3376,7 +3575,7 @@ Kazachstán src/app/shared/pipe/localize.ts - 357 + 361 @@ -3384,7 +3583,7 @@ Laos src/app/shared/pipe/localize.ts - 359 + 363 @@ -3392,7 +3591,7 @@ Libanon src/app/shared/pipe/localize.ts - 361 + 365 @@ -3400,7 +3599,7 @@ Svatá Lucie src/app/shared/pipe/localize.ts - 363 + 367 @@ -3408,7 +3607,7 @@ Lichtenštejnsko src/app/shared/pipe/localize.ts - 365 + 369 @@ -3416,7 +3615,7 @@ Srí Lanka src/app/shared/pipe/localize.ts - 367 + 371 @@ -3424,7 +3623,7 @@ Libérie src/app/shared/pipe/localize.ts - 369 + 373 @@ -3432,7 +3631,7 @@ Lesotho src/app/shared/pipe/localize.ts - 371 + 375 @@ -3440,7 +3639,7 @@ Litva src/app/shared/pipe/localize.ts - 373 + 377 @@ -3448,7 +3647,7 @@ Lucembursko src/app/shared/pipe/localize.ts - 375 + 379 @@ -3456,7 +3655,7 @@ Lotyšsko src/app/shared/pipe/localize.ts - 377 + 381 @@ -3464,7 +3663,7 @@ Libye src/app/shared/pipe/localize.ts - 379 + 383 @@ -3472,7 +3671,7 @@ Maroko src/app/shared/pipe/localize.ts - 381 + 385 @@ -3480,7 +3679,7 @@ Monako src/app/shared/pipe/localize.ts - 383 + 387 @@ -3488,7 +3687,7 @@ Moldavsko src/app/shared/pipe/localize.ts - 385 + 389 @@ -3496,7 +3695,7 @@ Černá Hora src/app/shared/pipe/localize.ts - 387 + 391 @@ -3504,7 +3703,7 @@ Svatý Martin src/app/shared/pipe/localize.ts - 389 + 393 @@ -3512,7 +3711,7 @@ Madagaskar src/app/shared/pipe/localize.ts - 391 + 395 @@ -3520,7 +3719,7 @@ Marshallovy ostrovy src/app/shared/pipe/localize.ts - 393 + 397 @@ -3528,7 +3727,7 @@ Severní Makedonie src/app/shared/pipe/localize.ts - 395 + 399 @@ -3536,7 +3735,7 @@ Mali src/app/shared/pipe/localize.ts - 397 + 401 @@ -3544,7 +3743,7 @@ Myanmar {Burma} src/app/shared/pipe/localize.ts - 399 + 403 @@ -3552,7 +3751,7 @@ Mongolsko src/app/shared/pipe/localize.ts - 401 + 405 @@ -3560,7 +3759,7 @@ Makao src/app/shared/pipe/localize.ts - 403 + 407 @@ -3568,7 +3767,7 @@ Severní Mariany src/app/shared/pipe/localize.ts - 405 + 409 @@ -3576,7 +3775,7 @@ Martinik src/app/shared/pipe/localize.ts - 407 + 411 @@ -3584,7 +3783,7 @@ Mauretánie src/app/shared/pipe/localize.ts - 409 + 413 @@ -3592,7 +3791,7 @@ Montserrat src/app/shared/pipe/localize.ts - 411 + 415 @@ -3600,7 +3799,7 @@ Malta src/app/shared/pipe/localize.ts - 413 + 417 @@ -3608,7 +3807,7 @@ Mauricius src/app/shared/pipe/localize.ts - 415 + 419 @@ -3616,7 +3815,7 @@ Maledivy src/app/shared/pipe/localize.ts - 417 + 421 @@ -3624,7 +3823,7 @@ Malawi src/app/shared/pipe/localize.ts - 419 + 423 @@ -3632,7 +3831,7 @@ Mexiko src/app/shared/pipe/localize.ts - 421 + 425 @@ -3640,7 +3839,7 @@ Malajsie src/app/shared/pipe/localize.ts - 423 + 427 @@ -3648,7 +3847,7 @@ Mosambik src/app/shared/pipe/localize.ts - 425 + 429 @@ -3656,7 +3855,7 @@ Namibie src/app/shared/pipe/localize.ts - 427 + 431 @@ -3664,7 +3863,7 @@ Nová Kaledonie src/app/shared/pipe/localize.ts - 429 + 433 @@ -3672,7 +3871,7 @@ Niger src/app/shared/pipe/localize.ts - 431 + 435 @@ -3680,7 +3879,7 @@ Ostrov Norfolk src/app/shared/pipe/localize.ts - 433 + 437 @@ -3688,7 +3887,7 @@ Nigérie src/app/shared/pipe/localize.ts - 435 + 439 @@ -3696,7 +3895,7 @@ Nikaragua src/app/shared/pipe/localize.ts - 437 + 441 @@ -3704,7 +3903,7 @@ Holandsko src/app/shared/pipe/localize.ts - 439 + 443 @@ -3712,7 +3911,7 @@ Norsko src/app/shared/pipe/localize.ts - 441 + 445 @@ -3720,7 +3919,7 @@ Nepál src/app/shared/pipe/localize.ts - 443 + 447 @@ -3728,7 +3927,7 @@ Nauru src/app/shared/pipe/localize.ts - 445 + 449 @@ -3736,7 +3935,7 @@ Niue src/app/shared/pipe/localize.ts - 447 + 451 @@ -3744,7 +3943,7 @@ Nový Zéland src/app/shared/pipe/localize.ts - 449 + 453 @@ -3752,7 +3951,7 @@ Omán src/app/shared/pipe/localize.ts - 451 + 455 @@ -3760,7 +3959,7 @@ Panama src/app/shared/pipe/localize.ts - 453 + 457 @@ -3768,7 +3967,7 @@ Peru src/app/shared/pipe/localize.ts - 455 + 459 @@ -3776,7 +3975,7 @@ Francouzská Polynésie src/app/shared/pipe/localize.ts - 457 + 461 @@ -3784,7 +3983,7 @@ Papua Nová Guinea src/app/shared/pipe/localize.ts - 459 + 463 @@ -3792,7 +3991,7 @@ Filipíny src/app/shared/pipe/localize.ts - 461 + 465 @@ -3800,7 +3999,7 @@ Pákistán src/app/shared/pipe/localize.ts - 463 + 467 @@ -3808,7 +4007,7 @@ Polsko src/app/shared/pipe/localize.ts - 465 + 469 @@ -3816,7 +4015,7 @@ Saint Pierre a Miquelon src/app/shared/pipe/localize.ts - 467 + 471 @@ -3824,7 +4023,7 @@ Pitcairnovy ostrovy src/app/shared/pipe/localize.ts - 469 + 473 @@ -3832,7 +4031,7 @@ Portoriko src/app/shared/pipe/localize.ts - 471 + 475 @@ -3840,7 +4039,7 @@ Palestinská území src/app/shared/pipe/localize.ts - 473 + 477 @@ -3848,7 +4047,7 @@ Portugalsko src/app/shared/pipe/localize.ts - 475 + 479 @@ -3856,7 +4055,7 @@ Palau src/app/shared/pipe/localize.ts - 477 + 481 @@ -3864,7 +4063,7 @@ Paraguay src/app/shared/pipe/localize.ts - 479 + 483 @@ -3872,7 +4071,7 @@ Katar src/app/shared/pipe/localize.ts - 481 + 485 @@ -3880,7 +4079,7 @@ Réunion src/app/shared/pipe/localize.ts - 483 + 487 @@ -3888,7 +4087,7 @@ Rumunsko src/app/shared/pipe/localize.ts - 485 + 489 @@ -3896,7 +4095,7 @@ Srbsko src/app/shared/pipe/localize.ts - 487 + 491 @@ -3904,7 +4103,7 @@ Rusko src/app/shared/pipe/localize.ts - 489 + 493 @@ -3912,7 +4111,7 @@ Rwanda src/app/shared/pipe/localize.ts - 491 + 495 @@ -3920,7 +4119,7 @@ Saúdská Arábie src/app/shared/pipe/localize.ts - 493 + 497 @@ -3928,7 +4127,7 @@ Šalamounovy ostrovy src/app/shared/pipe/localize.ts - 495 + 499 @@ -3936,7 +4135,7 @@ Seychely src/app/shared/pipe/localize.ts - 497 + 501 @@ -3944,7 +4143,7 @@ Súdán src/app/shared/pipe/localize.ts - 499 + 503 @@ -3952,7 +4151,7 @@ Švédsko src/app/shared/pipe/localize.ts - 501 + 505 @@ -3960,7 +4159,7 @@ Singapur src/app/shared/pipe/localize.ts - 503 + 507 @@ -3968,7 +4167,7 @@ Svatá Helena src/app/shared/pipe/localize.ts - 505 + 509 @@ -3976,7 +4175,7 @@ Slovinsko src/app/shared/pipe/localize.ts - 507 + 511 @@ -3984,7 +4183,7 @@ Svalbard a Jan Mayen src/app/shared/pipe/localize.ts - 509 + 513 @@ -3992,7 +4191,7 @@ Slovensko src/app/shared/pipe/localize.ts - 511 + 515 @@ -4000,7 +4199,7 @@ Sierra Leone src/app/shared/pipe/localize.ts - 513 + 517 @@ -4008,7 +4207,7 @@ San Marino src/app/shared/pipe/localize.ts - 515 + 519 @@ -4016,7 +4215,7 @@ Senegal src/app/shared/pipe/localize.ts - 517 + 521 @@ -4024,7 +4223,7 @@ Somálsko src/app/shared/pipe/localize.ts - 519 + 523 @@ -4032,7 +4231,7 @@ Surinam src/app/shared/pipe/localize.ts - 521 + 525 @@ -4040,7 +4239,7 @@ Jižní Súdán src/app/shared/pipe/localize.ts - 523 + 527 @@ -4048,7 +4247,7 @@ Svatý Tomáš a Princův ostrov src/app/shared/pipe/localize.ts - 525 + 529 @@ -4056,7 +4255,7 @@ El Salvador src/app/shared/pipe/localize.ts - 527 + 531 @@ -4064,7 +4263,7 @@ Svatý Martin (holandská část) src/app/shared/pipe/localize.ts - 529 + 533 @@ -4072,7 +4271,7 @@ Sýrie src/app/shared/pipe/localize.ts - 531 + 535 @@ -4080,7 +4279,7 @@ Svazijsko src/app/shared/pipe/localize.ts - 533 + 537 @@ -4088,7 +4287,7 @@ Turks a Cacois src/app/shared/pipe/localize.ts - 535 + 539 @@ -4096,7 +4295,7 @@ Čad src/app/shared/pipe/localize.ts - 537 + 541 @@ -4104,7 +4303,7 @@ Francouzská jižní území src/app/shared/pipe/localize.ts - 539 + 543 @@ -4112,7 +4311,7 @@ Togo src/app/shared/pipe/localize.ts - 541 + 545 @@ -4120,7 +4319,7 @@ Thajsko src/app/shared/pipe/localize.ts - 543 + 547 @@ -4128,7 +4327,7 @@ Tádžikistán src/app/shared/pipe/localize.ts - 545 + 549 @@ -4136,7 +4335,7 @@ Tokelau src/app/shared/pipe/localize.ts - 547 + 551 @@ -4144,7 +4343,7 @@ Východní Timor src/app/shared/pipe/localize.ts - 549 + 553 @@ -4152,7 +4351,7 @@ Turkmenistán src/app/shared/pipe/localize.ts - 551 + 555 @@ -4160,7 +4359,7 @@ Tunis src/app/shared/pipe/localize.ts - 553 + 557 @@ -4168,7 +4367,7 @@ Tonga src/app/shared/pipe/localize.ts - 555 + 559 @@ -4176,7 +4375,7 @@ Turecko src/app/shared/pipe/localize.ts - 557 + 561 @@ -4184,7 +4383,7 @@ Trinidad a Tobago src/app/shared/pipe/localize.ts - 559 + 563 @@ -4192,7 +4391,7 @@ Tuvalu src/app/shared/pipe/localize.ts - 561 + 565 @@ -4200,7 +4399,7 @@ Tchaj-wan src/app/shared/pipe/localize.ts - 563 + 567 @@ -4208,7 +4407,7 @@ Tanzánie src/app/shared/pipe/localize.ts - 565 + 569 @@ -4216,7 +4415,7 @@ Ukrajina src/app/shared/pipe/localize.ts - 567 + 571 @@ -4224,7 +4423,7 @@ Uganda src/app/shared/pipe/localize.ts - 569 + 573 @@ -4232,7 +4431,7 @@ Malé odlehlé ostrovy USA src/app/shared/pipe/localize.ts - 571 + 575 @@ -4240,7 +4439,7 @@ Spojené státy src/app/shared/pipe/localize.ts - 573 + 577 @@ -4248,7 +4447,7 @@ Uruguay src/app/shared/pipe/localize.ts - 575 + 579 @@ -4256,7 +4455,7 @@ Uzbekistán src/app/shared/pipe/localize.ts - 577 + 581 @@ -4264,7 +4463,7 @@ Vatikán src/app/shared/pipe/localize.ts - 579 + 583 @@ -4272,7 +4471,7 @@ Svatý Vincent a Grenadiny src/app/shared/pipe/localize.ts - 581 + 585 @@ -4280,7 +4479,7 @@ Venezuela src/app/shared/pipe/localize.ts - 583 + 587 @@ -4288,7 +4487,7 @@ Britské Panenské ostrovy src/app/shared/pipe/localize.ts - 585 + 589 @@ -4296,7 +4495,7 @@ Americké Panenské ostrovy src/app/shared/pipe/localize.ts - 587 + 591 @@ -4304,7 +4503,7 @@ Vietnam src/app/shared/pipe/localize.ts - 589 + 593 @@ -4312,7 +4511,7 @@ Vanuatu src/app/shared/pipe/localize.ts - 591 + 595 @@ -4320,7 +4519,7 @@ Wallis a Futuna src/app/shared/pipe/localize.ts - 593 + 597 @@ -4328,7 +4527,7 @@ Samoa src/app/shared/pipe/localize.ts - 595 + 599 @@ -4336,7 +4535,7 @@ Kosovo src/app/shared/pipe/localize.ts - 597 + 601 @@ -4344,7 +4543,7 @@ Jemen src/app/shared/pipe/localize.ts - 599 + 603 @@ -4352,7 +4551,7 @@ Mayotte src/app/shared/pipe/localize.ts - 601 + 605 @@ -4360,7 +4559,7 @@ Jižní Afrika src/app/shared/pipe/localize.ts - 603 + 607 @@ -4368,7 +4567,7 @@ Zambie src/app/shared/pipe/localize.ts - 605 + 609 @@ -4376,10 +4575,11 @@ Zimbabwe src/app/shared/pipe/localize.ts - 607 + 611 - + Add or edit affiliation Přidat nebo upravit přidružení @@ -4389,7 +4589,7 @@ This field should follow pattern for "Email". - Toto pole musí být ve tvaru pro {{ pattern }}. + Toto pole musí být ve tvaru pro Email. src/app/affiliation/affiliation-update.component.html 25 @@ -4426,9 +4626,21 @@ src/app/affiliation/affiliation-update.component.html 188 + + src/app/member/member-update.component.html + 61 + + + src/app/member/member-update.component.html + 105 + + + src/app/member/member-update.component.html + 140 + - Org Name + Organization Name Jméno organizace src/app/affiliation/affiliation-update.component.html @@ -4436,7 +4648,7 @@ - Org City + City Město src/app/affiliation/affiliation-update.component.html @@ -4444,7 +4656,7 @@ - Org Region + State/Region Stát/region src/app/affiliation/affiliation-update.component.html @@ -4452,23 +4664,25 @@ - Org Country + Country Země src/app/affiliation/affiliation-update.component.html 141 - - Disambiguation Source + + Organization ID Source Zdroj ID organizace src/app/affiliation/affiliation-update.component.html 170 - - Disambiguated Org Id + + Organization ID ID organizace src/app/affiliation/affiliation-update.component.html @@ -4476,27 +4690,29 @@ - This field is required. GRID Organization ID should start with "grid.", RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with 0 - Toto pole je povinné. Identifikace organizace GRID musí začínat frází grid, například grid.12344 nebo to musí být platná URL, identifikace organizace RINGGOLD musí být číslo. Identifkace ROR musejí mít 9 znaků a začínat 0. + This field is required. GRID Organization ID should start with "grid.", + RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with + 0 + Toto pole je povinné. Identifikace organizace GRID musí začínat frází + grid, například grid.12344 nebo to musí být platná URL, identifikace organizace RINGGOLD + musí být číslo. Identifkace ROR musejí mít 9 znaků a začínat 0. src/app/affiliation/affiliation-update.component.html 223 - This field cannot be longer than 4000 characters. - Toto pole nemůže být delší než {{ max }} znaků. - - src/app/affiliation/affiliation-update.component.html - 255 - + This field cannot be longer than + characters. + Toto pole nemůže být delší než + znaků. - src/app/affiliation/affiliation-update.component.html - 278 + src/app/affiliation/affiliation-update.component.ts + 195 - src/app/affiliation/affiliation-update.component.html - 293 + src/app/affiliation/affiliation-update.component.ts + 197 @@ -4504,7 +4720,7 @@ Počáteční rok src/app/affiliation/affiliation-update.component.html - 305 + 293 @@ -4512,11 +4728,11 @@ Rok src/app/affiliation/affiliation-update.component.html - 314 + 302 src/app/affiliation/affiliation-update.component.html - 364 + 352 @@ -4524,7 +4740,7 @@ Počáteční měsíc src/app/affiliation/affiliation-update.component.html - 323 + 311 @@ -4532,11 +4748,11 @@ Měsíc src/app/affiliation/affiliation-update.component.html - 332 + 320 src/app/affiliation/affiliation-update.component.html - 382 + 370 @@ -4544,7 +4760,7 @@ Počáteční den src/app/affiliation/affiliation-update.component.html - 341 + 329 @@ -4552,11 +4768,11 @@ Den src/app/affiliation/affiliation-update.component.html - 344 + 332 src/app/affiliation/affiliation-update.component.html - 394 + 382 @@ -4564,7 +4780,7 @@ Rok ukončení src/app/affiliation/affiliation-update.component.html - 355 + 343 @@ -4572,7 +4788,7 @@ Konec měsíce src/app/affiliation/affiliation-update.component.html - 373 + 361 @@ -4580,7 +4796,7 @@ Den konce src/app/affiliation/affiliation-update.component.html - 391 + 379 @@ -4588,7 +4804,7 @@ Datum zahájení nemůže být pozdější než datum ukončení. src/app/affiliation/affiliation-update.component.html - 400 + 388 @@ -4596,7 +4812,7 @@ Typ externího ID src/app/affiliation/affiliation-update.component.html - 411 + 399 @@ -4604,15 +4820,17 @@ Adresa URL externího ID src/app/affiliation/affiliation-update.component.html - 441 + 429 - Please do not forget to download and send permission links to your researcher once the assertion has been saved. - Poznámka: Po uložení tvrzení si prosím nezapomeňte stáhnout a odeslat odkazy na povolení vašemu výzkumníkovi. + Please do not forget to download and send permission links to your researcher once + the assertion has been saved. + Poznámka: Po uložení tvrzení si prosím nezapomeňte stáhnout a odeslat + odkazy na povolení vašemu výzkumníkovi. src/app/affiliation/affiliation-update.component.html - 457 + 445 @@ -4623,9 +4841,14 @@ 8 - - Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the portal and the user's ORCID record - Jste si jisti, že chcete zrušit toto přidružení pro ? Přidružení bude odstraněno z portálu a uživatelského záznamu ORCID. + + Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the + portal and the user's ORCID record + Jste si jisti, že chcete zrušit toto přidružení pro ? Přidružení bude odstraněno z portálu a + uživatelského záznamu ORCID. src/app/affiliation/affiliation-delete.component.ts 40 @@ -4636,7 +4859,7 @@ Přidružení vytvořeno src/app/shared/pipe/localize.ts - 23 + 27 @@ -4644,7 +4867,7 @@ Přidružení aktualizováno src/app/shared/pipe/localize.ts - 25 + 29 @@ -4652,7 +4875,7 @@ Afiliace smazána src/app/shared/pipe/localize.ts - 27 + 31 @@ -4660,65 +4883,396 @@ Při odstraňování tohoto přidružení se vyskytl problém src/app/shared/pipe/localize.ts - 29 + 33 - + Send permission notifications Odeslat oznámení povolení - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 3 - - A request to send notifications to your users is already in progress. Please try again later. - Žádost zasílat oznámení vašim uživatelům už se zpracovává. Zkuste to znovu později + + A request to send notifications to your users is already in progress. Please try + again later. + Žádost zasílat oznámení vašim uživatelům už se zpracovává. Zkuste to + znovu později - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 7 - - Are you sure that you would like ORCID to send permission links to your researchers for the affiliations that are pending? - Oznámení souhlasu budou zaslána všem vašim výzkumníkům, kteří disponují položkou přidružení se stavem „Čeká na vyřízení“. + + Are you sure that you would like ORCID to send permission links to your researchers + for the affiliations that are pending? + Oznámení souhlasu budou zaslána všem vašim výzkumníkům, kteří disponují + položkou přidružení se stavem „Čeká na vyřízení“. - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 10 - + Notification language Jazyk oznámení - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 11 - + What language should the notification be sent in? V jakém jazyce by měla být oznámení odeslána? - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 12 - + Send notifications Odeslat oznámení - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 23 - - Notification process has now started. We will email you as soon as the process has completed. + + Notification process has now started. We will email you as soon as the process has + completed. Proces oznámení byl zahájen. Jakmile bude dokončen, zašleme vám e-mail. + + src/app/shared/pipe/localize.ts + 25 + + + + You have already granted + Již jste udělili + + src/app/landing-page/landing-page.component.html + 13 + + + + permission to update your ORCID record + povolení k aktualizaci vašeho záznamu ORCID + + src/app/landing-page/landing-page.component.html + 16 + + + + Oops, something went wrong and we were not able to fetch your ORCID iD + Jejda, něco se pokazilo, a proto jsme nedokázali předat vaši + identifikaci ORCID + + src/app/landing-page/landing-page.component.html + 33 + + + + Oops, you have denied access. + Jejda, přístup byl odepřen. + + src/app/landing-page/landing-page.component.html + 39 + + + + will not be able to update your ORCID record. + nebude moci aktualizovat váš záznam ORCID + + src/app/landing-page/landing-page.component.html + 42 + + + + If this was a mistake, click the button below to grant access. + Pokud se jedná o chybu, udělte přístup kliknutím na tlačítko níže. + + src/app/landing-page/landing-page.component.html + 45 + + + + If you find that data added to your ORCID record is incorrect, please contact + Pokud zjistíte, že údaje přidané do vašich záznamů ORCID jsou chybné, + kontaktujte prosím + + src/app/landing-page/landing-page.component.ts + 78 + + + + This authorization link has already been used. Please contact for a new authorization link. + Tento autorizační odkaz byl již využit. Pro získání nového autorizačního + odkazu kontaktujte prosím . + + src/app/landing-page/landing-page.component.ts + 79 + + + + Allow to update my ORCID record. + Povolit aktualizace mého + záznamu ORCID + + src/app/landing-page/landing-page.component.ts + 80 + + + + You have successfully granted + permission to update your ORCID record, and your record has been updated with affiliation + information. + Úspěšně jste udělili + oprávnění k aktualizaci vašeho záznamu ORCID a váš záznam bude aktualizován o informace o + přidružení. + + src/app/landing-page/landing-page.component.ts + 81 + + + + Thanks, ! + Díky, + + + src/app/landing-page/landing-page.component.ts + 172 + + + + Member details + Podrobnosti člena + + src/app/member/member-detail.component.html + 4 + + + + Salesforce Id + Salesforce ID + + src/app/member/member-detail.component.html + 9 + + + src/app/member/member-update.component.html + 41 + + + src/app/member/members.component.html + 59 + + + + Parent Salesforce Id + Nadřazené Salesforce ID + + src/app/member/member-detail.component.html + 13 + + + src/app/member/member-update.component.html + 71 + + + src/app/member/members.component.html + 83 + + + + Member Name + Jméno člena + + src/app/member/member-detail.component.html + 17 + + + src/app/member/member-update.component.html + 86 + + + src/app/member/members.component.html + 67 + + + + Client ID + Id klienta + + src/app/member/member-detail.component.html + 21 + + + src/app/member/member-update.component.html + 115 + + + + Type + Typ + + src/app/member/member-detail.component.html + 25 + + + + Is Consortium Lead + Vedení konsorcia + + src/app/member/member-detail.component.html + 29 + + + src/app/member/member-update.component.html + 154 + + + src/app/member/members.component.html + 75 + + + + Assertion Service Enabled + Aserce aktivovány + + src/app/member/member-detail.component.html + 35 + + + src/app/member/member-update.component.html + 169 + + + src/app/member/members.component.html + 91 + + + + Status + Stav + + src/app/member/member-detail.component.html + 41 + + + + Created Date + Vytvořeno + + src/app/member/member-detail.component.html + 45 + + + + Last Modified Date + Naposledy upraveno + + src/app/member/member-detail.component.html + 49 + + + src/app/member/members.component.html + 99 + + + + Add or edit member + Přidat nebo upravit člena + + src/app/member/member-update.component.html + 8 + + + + Note: Client ID must have User OBO enabled AND + Poznámka: ID klienta musí mít povoleno Member OBO A + + src/app/member/member-update.component.html + 120 + + + + added as a Redirect URI in + přidáno jako URI přesměrování do + + src/app/member/member-update.component.html + 124 + + + + Manage members + Spravovat členy + + src/app/member/members.component.html + 2 + + + + Add member + Přidat člena + + src/app/member/members.component.html + 11 + + + + Import members from CSV + Importovat členy z CSV + + src/app/member/members.component.html + 19 + + + + No members to show + Žádní členové k zobrazení + + src/app/member/members.component.html + 50 + + + + Member created + Člen vytvořen src/app/shared/pipe/localize.ts 21 + + Member updated successfully + Člen byl úspěšně aktualizován + + src/app/shared/pipe/localize.ts + 23 + + \ No newline at end of file diff --git a/ui/src/i18n/messages.es.xlf b/ui/src/i18n/messages.es.xlf index 45ef2fe9d..79d750d32 100644 --- a/ui/src/i18n/messages.es.xlf +++ b/ui/src/i18n/messages.es.xlf @@ -70,8 +70,10 @@ - Slide of - Slide of + Slide of + + Slide of + Currently selected slide number read by screen reader node_modules/src/ngb-config.ts @@ -287,8 +289,12 @@ - Failed to sign in! Please check your credentials and try again. - ¡No se ha podido iniciar sesión! Compruebe sus credenciales y vuelva a intentarlo. + Failed to + sign in! Please + check your credentials and try again. + ¡No + se ha podido iniciar sesión! Compruebe sus credenciales y vuelva a intentarlo. src/app/account/login/login.component.html 6 @@ -302,7 +308,8 @@ 10 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 22 @@ -318,7 +325,8 @@ 16 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 28 @@ -383,8 +391,10 @@ - Settings saved! - ¡Ajustes guardados! + Settings + saved! + ¡Ajustes + guardados! src/app/account/settings/settings.component.html 8 @@ -483,8 +493,13 @@ - Add extra security to your ORCID member portal account by enabling two-factor authentication. Each time you sign in, you'll be prompted to enter a six-digit code we send to your preferred authentication application. - Añada seguridad adicional a su cuenta del portal de miembros de ORCID activando la autenticación de dos factores. Cada vez que inicie sesión, se le pedirá que introduzca un código de seis dígitos que le enviaremos a su aplicación de autenticación preferida. + Add extra security to your ORCID member portal account by enabling two-factor + authentication. Each time you sign in, you'll be prompted to enter a six-digit code + we send to your preferred authentication application. + Añada seguridad adicional a su cuenta del portal de miembros de ORCID + activando la autenticación de dos factores. Cada vez que inicie sesión, se le pedirá que + introduzca un código de seis dígitos que le enviaremos a su aplicación de autenticación + preferida. src/app/account/settings/settings.component.html 146 @@ -507,16 +522,39 @@ - Install a two-factor authentication appA 2FA app is required to create the six-digit code you need to access your account each time you sign in. Most apps are for mobile devices; some are also available as desktop or web-based apps. Download and install your preferred 2FA app, such as Google Authenticator, FreeOTP, or Authy. - Instale una aplicación de autenticación de dos factoresEs necesaria una aplicación 2FA que genere un código de seis dígitos para acceder a su cuenta cada vez que inicie sesión. La mayoría de estas aplicaciones son para dispositivos móviles, aunque también las hay para escritorio o basadas en la web. Descargue e instale su aplicación 2FA preferida, por ejemplo: Google Authenticator, FreeOTP, o Authy. + Install a two-factor authentication appA 2FA app is required to create the six-digit code you + need to access your account each time you sign in. Most apps are for mobile devices; some + are also available as desktop or web-based apps. Download and install your preferred 2FA + app, such as Google + Authenticator, + FreeOTP, or Authy. + Instale una aplicación de autenticación de dos factoresEs necesaria una aplicación 2FA + que genere un código de seis dígitos para acceder a su cuenta cada vez que inicie sesión. + La mayoría de estas aplicaciones son para dispositivos móviles, aunque también las hay + para escritorio o basadas en la web. Descargue e instale su aplicación 2FA preferida, por + ejemplo: Google + Authenticator, + FreeOTP, o Authy. src/app/account/settings/settings.component.html 166 - Scan this QR code with your deviceOpen your 2FA app and scan the image below. - Escanee este código QR en su dispositivoAbra su aplicación 2FA y escanee la siguiente imagen. + Scan this QR code with your deviceOpen your 2FA app and scan the image below. + Escanee este código QR en su dispositivoAbra su aplicación 2FA y escanee la siguiente imagen. src/app/account/settings/settings.component.html 174 @@ -547,8 +585,14 @@ - Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, your 2FA app will display a six-digit code. Enter this code in the box below and click Save. - Introduzca el código de seis dígitos de la aplicaciónTras escanear el código QR o introducir el código de texto, su aplicación 2FA le mostrará un código de seis dígitos. Introdúzcalo en el cuadro siguiente y haga clic en Guardar. + Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, + your 2FA app will display a six-digit code. Enter this code in the box below and click + Save. + Introduzca el código de seis dígitos de la aplicaciónTras escanear el código QR o introducir el + código de texto, su aplicación 2FA le mostrará un código de seis dígitos. Introdúzcalo en + el cuadro siguiente y haga clic en Guardar. src/app/account/settings/settings.component.html 205 @@ -563,8 +607,10 @@ - Make a note of the following backup codes, this is the only time they will be shown. - Tome nota de los siguientes códigos de respaldo; solo se mostrarán esta vez. + Make a note of the following backup codes, this is the only time they will be + shown. + Tome nota de los siguientes códigos de respaldo; solo se mostrarán esta + vez. src/app/account/settings/settings.component.html 228 @@ -582,31 +628,41 @@ Reset your password Restablezca su contraseña - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 4 - Email address isn't registered! Please check and try again. - ¡La dirección de correo electrónico no está registrada! Compruébalo e inténtalo de nuevo. - - src/app/account/password/password-reset-init.component.html + Email + address isn't registered! Please check and try again. + ¡La + dirección de correo electrónico no está registrada! Compruébalo e inténtalo de nuevo. + + + src/app/account/password/password-reset-init.component.html 7 Enter the email address you used to register. - Introduzca la dirección de correo electrónico que utilizó para registrarse + Introduzca la dirección de correo electrónico que utilizó para + registrarse - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 11 Check your emails for details on how to reset your password. - Consulte sus correos electrónicos para consultar información para restablecer su contraseña. + Consulte sus correos electrónicos para consultar información para + restablecer su contraseña. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 15 @@ -614,7 +670,8 @@ Your email is required. Su correo electrónico es necesario. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 42 @@ -622,7 +679,8 @@ Your email is invalid. Tu correo electrónico no es válido. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 49 @@ -630,7 +688,8 @@ Your email is required to be at least 5 characters. Su correo electrónico debe tener al menos 5 caracteres. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 56 @@ -638,7 +697,8 @@ Your email cannot be longer than 100 characters. El correo electrónico no puede tener más de 50 caracteres. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 64 @@ -646,7 +706,8 @@ Reset Repetir contraseña - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 75 @@ -875,16 +936,23 @@ - Password changed! - ¡Se ha cambiado la contraseña! + Password + changed! + ¡Se + ha cambiado la contraseña! src/app/account/password/password.component.html 7 - An error has occurred! The password could not be changed. - ¡Ha ocurrido un error! No se ha podido cambiar la contraseña. + An error + has occurred! + The password could not be changed. + ¡Ha + ocurrido un error! + No se ha podido cambiar la contraseña. src/app/account/password/password.component.html 10 @@ -894,7 +962,8 @@ The password and its confirmation do not match! La contraseña y su confirmación no coinciden - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 62 @@ -922,7 +991,8 @@ Your password is required. Tu contraseña es necesaria. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 91 @@ -938,7 +1008,8 @@ New password Nueva contraseña - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 70 @@ -950,7 +1021,8 @@ New password Nueva contraseña - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 77 @@ -962,7 +1034,8 @@ Your password is required to be at least 4 characters. Su contraseña debe tener al menos 4 caracteres. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 98 @@ -974,7 +1047,8 @@ Your password cannot be longer than 50 characters. Su contraseña no puede tener más de 50 caracteres. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 105 @@ -986,7 +1060,8 @@ New password confirmation Confirmación de la nueva contraseña - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 114 @@ -998,7 +1073,8 @@ Confirm the new password Confirme la nueva contraseña - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 121 @@ -1010,7 +1086,8 @@ Your password confirmation is required. Se requiere su contraseña de confirmación. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 135 @@ -1022,7 +1099,8 @@ Your password confirmation is required to be at least 4 characters. La contraseña de confirmación tiene que contener al menos 4 caracteres. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 142 @@ -1034,7 +1112,8 @@ Your password confirmation cannot be longer than 50 characters. Su contraseña de confirmación no puede tener más de 50 caracteres. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 149 @@ -1062,55 +1141,81 @@ Reset password Restablecer la contraseña - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 4 - The activation key is missing. - Falta la clave de activación. - - src/app/account/password/password-reset-finish.component.html + The + activation key is missing. + Falta + la clave de activación. + + + src/app/account/password/password-reset-finish.component.html 7 - This activation key is invalid. - La clave de activación no es válida. - - src/app/account/password/password-reset-finish.component.html + This + activation key is invalid. + La + clave de activación no es válida. + + + src/app/account/password/password-reset-finish.component.html 11 - This activation has expired. - La clave de activación ha caducado. - - src/app/account/password/password-reset-finish.component.html + This + activation has expired. + La + clave de activación ha caducado. + + + src/app/account/password/password-reset-finish.component.html 15 - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It looks like this + link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It + looks like this link has expired. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 20 - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a new + activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a + new activation link to your registered email address. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 26 - If you are still having problems activating your account or have not received your new activation link please contact our support team please contact us at membership@orcid.org. - If you are still having problems activating your account or have not received your new activation link, please contact us at membership@orcid.org. - - src/app/account/password/password-reset-finish.component.html + If you are still having problems activating your account or have not received your + new activation link please contact our support team please contact us at + membership@orcid.org. + If you are still having problems activating your account or have not + received your new activation link, please contact us at membership@orcid.org. + + + src/app/account/password/password-reset-finish.component.html 32 @@ -1118,23 +1223,32 @@ Choose a new password Elija una nueva contraseña - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 39 - Your password couldn't be reset. Remember a password request is only valid for 24 hours. - No se ha podido restablecer tu contraseña. Recuerde que una solicitud de contraseña solo es válida por 24 horas. + Your password couldn't be reset. Remember a password request is only valid for + 24 hours. + No se ha podido restablecer tu contraseña. Recuerde que una solicitud de + contraseña solo es válida por 24 horas. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 43 - Your password has been reset. Please - Se ha restablecido su contraseña. Por favor, - - src/app/account/password/password-reset-finish.component.html + Your + password has been reset. Please + Se + ha restablecido su contraseña. Por favor, + + + src/app/account/password/password-reset-finish.component.html 50 @@ -1142,7 +1256,8 @@ sign in iniciar sesión - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 58 @@ -1150,7 +1265,8 @@ Reset Password Validar la nueva contraseña - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 159 @@ -1182,7 +1298,8 @@ Password strength: Seguridad de la contraseña: - src/app/account/password/password-strength.component.html + + src/app/account/password/password-strength.component.html 2 @@ -1365,6 +1482,14 @@ src/app/affiliation/affiliation-detail.component.html 143 + + src/app/member/member-detail.component.html + 47 + + + src/app/member/member-detail.component.html + 51 + src/app/user/user-detail.component.html 81 @@ -1393,6 +1518,10 @@ src/app/affiliation/affiliation-detail.component.html 230 + + src/app/member/member-detail.component.html + 61 + src/app/user/user-detail.component.html 95 @@ -1409,6 +1538,14 @@ src/app/affiliation/affiliations.component.html 220 + + src/app/member/member-detail.component.html + 66 + + + src/app/member/members.component.html + 151 + src/app/user/user-detail.component.html 103 @@ -1450,17 +1587,23 @@ 17 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 34 src/app/affiliation/affiliation-update.component.html - 465 + 453 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 20 + + src/app/member/member-update.component.html + 186 + src/app/user/user-delete.component.html 14 @@ -1479,7 +1622,11 @@ Guardar src/app/affiliation/affiliation-update.component.html - 468 + 456 + + + src/app/member/member-update.component.html + 189 src/app/user/user-update.component.html @@ -1521,6 +1668,10 @@ src/app/affiliation/affiliations.component.html 104 + + src/app/member/members.component.html + 32 + src/app/user/users.component.html 32 @@ -1555,20 +1706,32 @@ - Showing - of items. - Mostrando - de elementos. + Showing - + of items. + Mostrando - de elementos. src/app/affiliation/affiliations.component.ts - 228 + 227 + + + src/app/member/members.component.ts + 160 src/app/user/users.component.ts 230 - - Are you sure you want to transfer ownership? You are about to transfer ownership of this organization account. If you are the organization owner after transferring ownership, you will no longer have access to administrative functions, such as managing users. - ¿Está seguro de que desea transferir la propiedad? Está a punto de transferir la propiedad de esta cuenta de organización. Si es el propietario de la organización, tenga en cuenta que, tras transferir la propiedad, ya no tendrá acceso a las funciones administrativas, como la gestión de usuarios. + + Are you sure you want to transfer ownership? You are about to transfer ownership of + this organization account. If you are the organization owner after transferring ownership, + you will no longer have access to administrative functions, such as managing users. + ¿Está seguro de que desea transferir la propiedad? Está a punto de + transferir la propiedad de esta cuenta de organización. Si es el propietario de la + organización, tenga en cuenta que, tras transferir la propiedad, ya no tendrá acceso a las + funciones administrativas, como la gestión de usuarios. src/app/user/user-update.component.ts 215 @@ -1592,10 +1755,11 @@ Are you sure you want to delete user ? - ¿Está seguro de que desea eliminar al usuario ? + ¿Está seguro de que desea eliminar al usuario ? src/app/user/user-delete.component.ts - 47 + 44 @@ -1627,8 +1791,10 @@ - Oops! There was a problem processing your data. Pleases fix the errors below and try again - ¡Vaya! Ha habido un problema al procesar sus datos. Corrija los siguientes errores e inténtelo de nuevo + Oops! There was a problem processing your data. Pleases fix the errors below and + try again + ¡Vaya! Ha habido un problema al procesar sus datos. Corrija los + siguientes errores e inténtelo de nuevo src/app/user/user-import-dialog.component.html 16 @@ -1654,7 +1820,8 @@ Upload Subir - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 37 @@ -1679,7 +1846,8 @@ 2 - + Send permission notifications Enviar notificaciones de permiso @@ -1687,7 +1855,8 @@ 11 - + Request permission links Solicitar enlaces de permiso @@ -1695,7 +1864,8 @@ 21 - + Request affiliation status report Solicitar informe de situación de afiliación @@ -1703,7 +1873,9 @@ 31 - + Request affiliations for edit Solicitar asignaciones para editar @@ -1727,25 +1899,36 @@ 61 - - Your affiliations for edit file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - En breve se le enviará por correo el archivo de afiliaciones para editar. Si no lo recibe, póngase en contacto con nosotros en membership@orcid.org. + + Your affiliations for edit file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + En breve se le enviará por correo el archivo de afiliaciones para + editar. Si no lo recibe, póngase en contacto con nosotros en membership@orcid.org. src/app/affiliation/affiliations.component.html 73 - - Your affiliation status report file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - En breve se le enviará por correo el archivo de informe de situación de afiliación. Si no lo recibe, póngase en contacto con nosotros en membership@orcid.org. + + Your affiliation status report file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + En breve se le enviará por correo el archivo de informe de situación de + afiliación. Si no lo recibe, póngase en contacto con nosotros en membership@orcid.org. src/app/affiliation/affiliations.component.html 82 - - Your permission links file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - En breve se le enviará por correo el archivo de enlaces de permiso. Si no lo recibe, póngase en contacto con nosotros en membership@orcid.org. + + Your permission links file will be mailed to you shortly. If you do not receive + your file then please contact us at membership@orcid.org. + En breve se le enviará por correo el archivo de enlaces de permiso. Si + no lo recibe, póngase en contacto con nosotros en membership@orcid.org. src/app/affiliation/affiliations.component.html 91 @@ -1823,7 +2006,9 @@ 150 - + @@ -1855,9 +2040,13 @@ 190 - - For help troubleshooting, please contact the Member Portal Team and copy/paste or include a screenshot of the error message below. - Si necesita ayuda para solucionar un problema, póngase en contacto con el equipo del portal para miembros e incluya una captura de pantalla del mensaje de error que le aparece. + + For help troubleshooting, please contact the Member Portal Team and copy/paste or + include a screenshot of the error message below. + Si necesita ayuda para solucionar un problema, póngase en contacto con + el equipo del portal para miembros e incluya una captura de pantalla del mensaje de error + que le aparece. src/app/affiliation/affiliations.component.html 203 @@ -1868,7 +2057,7 @@ Acceso denegado por el usuario src/app/shared/pipe/localize.ts - 34 + 38 @@ -1876,7 +2065,7 @@ Pendiente src/app/shared/pipe/localize.ts - 36 + 40 @@ -1884,7 +2073,7 @@ En ORCID src/app/shared/pipe/localize.ts - 38 + 42 @@ -1892,7 +2081,7 @@ Acceso otorgado por el usuario src/app/shared/pipe/localize.ts - 40 + 44 @@ -1900,7 +2089,7 @@ User deleted from ORCID src/app/shared/pipe/localize.ts - 42 + 46 @@ -1908,7 +2097,7 @@ Acceso revocado por el usuario src/app/shared/pipe/localize.ts - 44 + 48 @@ -1916,7 +2105,7 @@ Error al añadir a ORCID src/app/shared/pipe/localize.ts - 46 + 50 @@ -1924,7 +2113,7 @@ Error al actualizar en ORCID src/app/shared/pipe/localize.ts - 48 + 52 @@ -1932,7 +2121,7 @@ Pendiente de reintentar en ORCID src/app/shared/pipe/localize.ts - 50 + 54 @@ -1940,7 +2129,7 @@ Error al eliminar en ORCID src/app/shared/pipe/localize.ts - 52 + 56 @@ -1948,7 +2137,7 @@ Notificación solicitada src/app/shared/pipe/localize.ts - 54 + 58 @@ -1956,7 +2145,7 @@ Notificación enviada src/app/shared/pipe/localize.ts - 56 + 60 @@ -1964,7 +2153,7 @@ Error de notificación src/app/shared/pipe/localize.ts - 58 + 62 @@ -1972,7 +2161,7 @@ Pendiente de actualizar en ORCID src/app/shared/pipe/localize.ts - 60 + 64 @@ -2008,7 +2197,8 @@ 36 - + Affiliation Section Tipo de afiliación @@ -2049,7 +2239,7 @@ src/app/affiliation/affiliation-update.component.html - 265 + 261 @@ -2061,7 +2251,7 @@ src/app/affiliation/affiliation-update.component.html - 285 + 277 @@ -2089,7 +2279,7 @@ src/app/affiliation/affiliation-update.component.html - 426 + 414 @@ -2132,7 +2322,8 @@ 145 - + Notification First Sent Primera notificación enviada @@ -2144,7 +2335,8 @@ 175 - + Notification Last Sent Última notificación enviada @@ -2168,15 +2360,20 @@ Import affiliations from CSV Importar afiliaciones - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 3 - - Your CSV has been uploaded for processing. We will let you know via email once the file has been processed. - Se ha cargado el CSV para su procesamiento. En cuanto esté procesado, se le notificará por correo. + + Your CSV has been uploaded for processing. We will let you know via email once the + file has been processed. + Se ha cargado el CSV para su procesamiento. En cuanto esté procesado, se + le notificará por correo. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 10 @@ -2184,7 +2381,8 @@ There was a problem uploading your CSV for processing. Hubo un problema al subir su CSV para procesarlo. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 17 @@ -2192,7 +2390,8 @@ Please select the CSV file to upload Seleccione un archivo CSV para subir - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 20 @@ -2200,15 +2399,19 @@ File Path Ruta de archivo - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 22 - Please do not forget to download and send permission links to your researchers once the upload has completed. - Nota: no olvide descargar y enviar enlaces de permiso a sus investigadores cuando se haya completado la carga. + Please do not forget to download and send permission links to your researchers once + the upload has completed. + Nota: no olvide descargar y enviar enlaces de permiso a sus + investigadores cuando se haya completado la carga. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 26 @@ -2216,7 +2419,8 @@ Close Cerrar - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 40 @@ -2224,7 +2428,8 @@ There is no file to upload. Please select one. No hay ningún archivo para cargar. Seleccione uno. - src/app/affiliation/affiliation-import-dialog.component.ts + + src/app/affiliation/affiliation-import-dialog.component.ts 60 @@ -2233,7 +2438,7 @@ EDUCACIÓN src/app/shared/pipe/localize.ts - 65 + 69 @@ -2241,7 +2446,7 @@ EMPLEO src/app/shared/pipe/localize.ts - 67 + 71 @@ -2249,7 +2454,7 @@ DISTINCIÓN src/app/shared/pipe/localize.ts - 69 + 73 @@ -2257,7 +2462,7 @@ POSICIÓN_INVITADA src/app/shared/pipe/localize.ts - 71 + 75 @@ -2265,7 +2470,7 @@ CALIFICACIÓN src/app/shared/pipe/localize.ts - 73 + 77 @@ -2273,7 +2478,7 @@ SERVICIO src/app/shared/pipe/localize.ts - 75 + 79 @@ -2281,7 +2486,7 @@ AFILIACIÓN src/app/shared/pipe/localize.ts - 77 + 81 @@ -2289,7 +2494,7 @@ Enero src/app/shared/pipe/localize.ts - 82 + 86 @@ -2297,7 +2502,7 @@ Febrero src/app/shared/pipe/localize.ts - 84 + 88 @@ -2305,7 +2510,7 @@ Marzo src/app/shared/pipe/localize.ts - 86 + 90 @@ -2313,7 +2518,7 @@ Abril src/app/shared/pipe/localize.ts - 88 + 92 @@ -2321,7 +2526,7 @@ Mayo src/app/shared/pipe/localize.ts - 90 + 94 @@ -2329,7 +2534,7 @@ Junio src/app/shared/pipe/localize.ts - 92 + 96 @@ -2337,7 +2542,7 @@ Julio src/app/shared/pipe/localize.ts - 94 + 98 @@ -2345,7 +2550,7 @@ Agosto src/app/shared/pipe/localize.ts - 96 + 100 @@ -2353,7 +2558,7 @@ Septiembre src/app/shared/pipe/localize.ts - 98 + 102 @@ -2361,7 +2566,7 @@ Octubre src/app/shared/pipe/localize.ts - 100 + 104 @@ -2369,7 +2574,7 @@ Noviembre src/app/shared/pipe/localize.ts - 102 + 106 @@ -2377,7 +2582,7 @@ Diciembre src/app/shared/pipe/localize.ts - 104 + 108 @@ -2385,7 +2590,7 @@ Andorra src/app/shared/pipe/localize.ts - 109 + 113 @@ -2393,7 +2598,7 @@ Emiratos Árabes Unidos src/app/shared/pipe/localize.ts - 111 + 115 @@ -2401,7 +2606,7 @@ Afganistán src/app/shared/pipe/localize.ts - 113 + 117 @@ -2409,7 +2614,7 @@ Antigua y Barbuda src/app/shared/pipe/localize.ts - 115 + 119 @@ -2417,7 +2622,7 @@ Anguilla src/app/shared/pipe/localize.ts - 117 + 121 @@ -2425,7 +2630,7 @@ Albania src/app/shared/pipe/localize.ts - 119 + 123 @@ -2433,7 +2638,7 @@ Armenia src/app/shared/pipe/localize.ts - 121 + 125 @@ -2441,7 +2646,7 @@ Angola src/app/shared/pipe/localize.ts - 123 + 127 @@ -2449,7 +2654,7 @@ Antártida src/app/shared/pipe/localize.ts - 125 + 129 @@ -2457,7 +2662,7 @@ Argentina src/app/shared/pipe/localize.ts - 127 + 131 @@ -2465,7 +2670,7 @@ Samoa Americana src/app/shared/pipe/localize.ts - 129 + 133 @@ -2473,7 +2678,7 @@ Austria src/app/shared/pipe/localize.ts - 131 + 135 @@ -2481,7 +2686,7 @@ Australia src/app/shared/pipe/localize.ts - 133 + 137 @@ -2489,7 +2694,7 @@ Aruba src/app/shared/pipe/localize.ts - 135 + 139 @@ -2497,7 +2702,7 @@ Åland src/app/shared/pipe/localize.ts - 137 + 141 @@ -2505,7 +2710,7 @@ Azerbaiyán src/app/shared/pipe/localize.ts - 139 + 143 @@ -2513,7 +2718,7 @@ Bosnia y Herzegovina src/app/shared/pipe/localize.ts - 141 + 145 @@ -2521,7 +2726,7 @@ Barbados src/app/shared/pipe/localize.ts - 143 + 147 @@ -2529,7 +2734,7 @@ Bangladesh src/app/shared/pipe/localize.ts - 145 + 149 @@ -2537,7 +2742,7 @@ Bélgica src/app/shared/pipe/localize.ts - 147 + 151 @@ -2545,7 +2750,7 @@ Burkina Faso src/app/shared/pipe/localize.ts - 149 + 153 @@ -2553,7 +2758,7 @@ Bulgaria src/app/shared/pipe/localize.ts - 151 + 155 @@ -2561,7 +2766,7 @@ Baréin src/app/shared/pipe/localize.ts - 153 + 157 @@ -2569,7 +2774,7 @@ Burundi src/app/shared/pipe/localize.ts - 155 + 159 @@ -2577,7 +2782,7 @@ Benín src/app/shared/pipe/localize.ts - 157 + 161 @@ -2585,7 +2790,7 @@ San Bartolomé src/app/shared/pipe/localize.ts - 159 + 163 @@ -2593,7 +2798,7 @@ Bermudas src/app/shared/pipe/localize.ts - 161 + 165 @@ -2601,7 +2806,7 @@ Brunéi src/app/shared/pipe/localize.ts - 163 + 167 @@ -2609,7 +2814,7 @@ Bolivia src/app/shared/pipe/localize.ts - 165 + 169 @@ -2617,7 +2822,7 @@ Territorio Antártico Británico src/app/shared/pipe/localize.ts - 167 + 171 @@ -2625,7 +2830,7 @@ Brasil src/app/shared/pipe/localize.ts - 169 + 173 @@ -2633,7 +2838,7 @@ Bahamas src/app/shared/pipe/localize.ts - 171 + 175 @@ -2641,7 +2846,7 @@ Bután src/app/shared/pipe/localize.ts - 173 + 177 @@ -2649,7 +2854,7 @@ Isla Bouvet src/app/shared/pipe/localize.ts - 175 + 179 @@ -2657,7 +2862,7 @@ Botsuana src/app/shared/pipe/localize.ts - 177 + 181 @@ -2665,7 +2870,7 @@ Bielorrusia src/app/shared/pipe/localize.ts - 179 + 183 @@ -2673,7 +2878,7 @@ Belize src/app/shared/pipe/localize.ts - 181 + 185 @@ -2681,7 +2886,7 @@ Canadá src/app/shared/pipe/localize.ts - 183 + 187 @@ -2689,7 +2894,7 @@ Islas Cocos {Keeling} src/app/shared/pipe/localize.ts - 185 + 189 @@ -2697,7 +2902,7 @@ República Democrática del Congo src/app/shared/pipe/localize.ts - 187 + 191 @@ -2705,7 +2910,7 @@ República Centroafricana src/app/shared/pipe/localize.ts - 189 + 193 @@ -2713,7 +2918,7 @@ Congo src/app/shared/pipe/localize.ts - 191 + 195 @@ -2721,7 +2926,7 @@ Suiza src/app/shared/pipe/localize.ts - 193 + 197 @@ -2729,7 +2934,7 @@ Costa de Marfil src/app/shared/pipe/localize.ts - 195 + 199 @@ -2737,7 +2942,7 @@ Islas Cook src/app/shared/pipe/localize.ts - 197 + 201 @@ -2745,7 +2950,7 @@ Chile src/app/shared/pipe/localize.ts - 199 + 203 @@ -2753,7 +2958,7 @@ Camerún src/app/shared/pipe/localize.ts - 201 + 205 @@ -2761,7 +2966,7 @@ China src/app/shared/pipe/localize.ts - 203 + 207 @@ -2769,7 +2974,7 @@ Colombia src/app/shared/pipe/localize.ts - 205 + 209 @@ -2777,7 +2982,7 @@ Costa Rica src/app/shared/pipe/localize.ts - 207 + 211 @@ -2785,7 +2990,7 @@ Cuba src/app/shared/pipe/localize.ts - 209 + 213 @@ -2793,7 +2998,7 @@ Cabo Verde src/app/shared/pipe/localize.ts - 211 + 215 @@ -2801,7 +3006,7 @@ Curazao src/app/shared/pipe/localize.ts - 213 + 217 @@ -2809,7 +3014,7 @@ Isla de Navidad src/app/shared/pipe/localize.ts - 215 + 219 @@ -2817,7 +3022,7 @@ Chipre src/app/shared/pipe/localize.ts - 217 + 221 @@ -2825,7 +3030,7 @@ República checa src/app/shared/pipe/localize.ts - 219 + 223 @@ -2833,7 +3038,7 @@ Alemania src/app/shared/pipe/localize.ts - 221 + 225 @@ -2841,7 +3046,7 @@ Yibuti src/app/shared/pipe/localize.ts - 223 + 227 @@ -2849,7 +3054,7 @@ Dinamarca src/app/shared/pipe/localize.ts - 225 + 229 @@ -2857,7 +3062,7 @@ Dominica src/app/shared/pipe/localize.ts - 227 + 231 @@ -2865,7 +3070,7 @@ República Dominicana src/app/shared/pipe/localize.ts - 229 + 233 @@ -2873,7 +3078,7 @@ Argelia src/app/shared/pipe/localize.ts - 231 + 235 @@ -2881,7 +3086,7 @@ Ecuador src/app/shared/pipe/localize.ts - 233 + 237 @@ -2889,7 +3094,7 @@ Estonia src/app/shared/pipe/localize.ts - 235 + 239 @@ -2897,7 +3102,7 @@ Egipto src/app/shared/pipe/localize.ts - 237 + 241 @@ -2905,7 +3110,7 @@ Sahara Occidental src/app/shared/pipe/localize.ts - 239 + 243 @@ -2913,7 +3118,7 @@ Eritrea src/app/shared/pipe/localize.ts - 241 + 245 @@ -2921,7 +3126,7 @@ España src/app/shared/pipe/localize.ts - 243 + 247 @@ -2929,7 +3134,7 @@ Etiopía src/app/shared/pipe/localize.ts - 245 + 249 @@ -2937,7 +3142,7 @@ Finlandia src/app/shared/pipe/localize.ts - 247 + 251 @@ -2945,7 +3150,7 @@ Fiji src/app/shared/pipe/localize.ts - 249 + 253 @@ -2953,7 +3158,7 @@ Islas Malvinas src/app/shared/pipe/localize.ts - 251 + 255 @@ -2961,7 +3166,7 @@ Micronesia src/app/shared/pipe/localize.ts - 253 + 257 @@ -2969,7 +3174,7 @@ Islas Feroe src/app/shared/pipe/localize.ts - 255 + 259 @@ -2977,7 +3182,7 @@ Francia src/app/shared/pipe/localize.ts - 257 + 261 @@ -2985,7 +3190,7 @@ Gabón src/app/shared/pipe/localize.ts - 259 + 263 @@ -2993,7 +3198,7 @@ Reino Unido src/app/shared/pipe/localize.ts - 261 + 265 @@ -3001,7 +3206,7 @@ Granada src/app/shared/pipe/localize.ts - 263 + 267 @@ -3009,7 +3214,7 @@ Georgia src/app/shared/pipe/localize.ts - 265 + 269 @@ -3017,7 +3222,7 @@ Guayana Francesa src/app/shared/pipe/localize.ts - 267 + 271 @@ -3025,7 +3230,7 @@ Guernsey src/app/shared/pipe/localize.ts - 269 + 273 @@ -3033,7 +3238,7 @@ Ghana src/app/shared/pipe/localize.ts - 271 + 275 @@ -3041,7 +3246,7 @@ Gibraltar src/app/shared/pipe/localize.ts - 273 + 277 @@ -3049,7 +3254,7 @@ Groenlandia src/app/shared/pipe/localize.ts - 275 + 279 @@ -3057,7 +3262,7 @@ Gambia src/app/shared/pipe/localize.ts - 277 + 281 @@ -3065,7 +3270,7 @@ Guinea src/app/shared/pipe/localize.ts - 279 + 283 @@ -3073,7 +3278,7 @@ Guadalupe src/app/shared/pipe/localize.ts - 281 + 285 @@ -3081,7 +3286,7 @@ Guinea Ecuatorial src/app/shared/pipe/localize.ts - 283 + 287 @@ -3089,7 +3294,7 @@ Grecia src/app/shared/pipe/localize.ts - 285 + 289 @@ -3097,7 +3302,7 @@ Islas Georgias del Sur y Sandwich del Sur src/app/shared/pipe/localize.ts - 287 + 291 @@ -3105,7 +3310,7 @@ Guatemala src/app/shared/pipe/localize.ts - 289 + 293 @@ -3113,7 +3318,7 @@ Guam src/app/shared/pipe/localize.ts - 291 + 295 @@ -3121,7 +3326,7 @@ Guinea-Bisáu src/app/shared/pipe/localize.ts - 293 + 297 @@ -3129,7 +3334,7 @@ Guyana src/app/shared/pipe/localize.ts - 295 + 299 @@ -3137,7 +3342,7 @@ Hong Kong src/app/shared/pipe/localize.ts - 297 + 301 @@ -3145,7 +3350,7 @@ Islas Heard y McDonald src/app/shared/pipe/localize.ts - 299 + 303 @@ -3153,7 +3358,7 @@ Honduras src/app/shared/pipe/localize.ts - 301 + 305 @@ -3161,7 +3366,7 @@ Croacia src/app/shared/pipe/localize.ts - 303 + 307 @@ -3169,7 +3374,7 @@ Haití src/app/shared/pipe/localize.ts - 305 + 309 @@ -3177,7 +3382,7 @@ Hungría src/app/shared/pipe/localize.ts - 307 + 311 @@ -3185,7 +3390,7 @@ Indonesia src/app/shared/pipe/localize.ts - 309 + 313 @@ -3193,7 +3398,7 @@ Irlanda src/app/shared/pipe/localize.ts - 311 + 315 @@ -3201,7 +3406,7 @@ Israel src/app/shared/pipe/localize.ts - 313 + 317 @@ -3209,7 +3414,7 @@ Isla de Man src/app/shared/pipe/localize.ts - 315 + 319 @@ -3217,7 +3422,7 @@ India src/app/shared/pipe/localize.ts - 317 + 321 @@ -3225,7 +3430,7 @@ Territorio Británico del Océano Índico src/app/shared/pipe/localize.ts - 319 + 323 @@ -3233,7 +3438,7 @@ Irak src/app/shared/pipe/localize.ts - 321 + 325 @@ -3241,7 +3446,7 @@ Irán src/app/shared/pipe/localize.ts - 323 + 327 @@ -3249,7 +3454,7 @@ Islandia src/app/shared/pipe/localize.ts - 325 + 329 @@ -3257,7 +3462,7 @@ Italia src/app/shared/pipe/localize.ts - 327 + 331 @@ -3265,7 +3470,7 @@ Jersey src/app/shared/pipe/localize.ts - 329 + 333 @@ -3273,7 +3478,7 @@ Jamaica src/app/shared/pipe/localize.ts - 331 + 335 @@ -3281,7 +3486,7 @@ Jordania src/app/shared/pipe/localize.ts - 333 + 337 @@ -3289,7 +3494,7 @@ Japón src/app/shared/pipe/localize.ts - 335 + 339 @@ -3297,7 +3502,7 @@ Kenia src/app/shared/pipe/localize.ts - 337 + 341 @@ -3305,7 +3510,7 @@ Kirguistán src/app/shared/pipe/localize.ts - 339 + 343 @@ -3313,7 +3518,7 @@ Camboya src/app/shared/pipe/localize.ts - 341 + 345 @@ -3321,7 +3526,7 @@ Kiribati src/app/shared/pipe/localize.ts - 343 + 347 @@ -3329,7 +3534,7 @@ Comoras src/app/shared/pipe/localize.ts - 345 + 349 @@ -3337,7 +3542,7 @@ San Cristóbal y Nieves src/app/shared/pipe/localize.ts - 347 + 351 @@ -3345,7 +3550,7 @@ Corea del Norte src/app/shared/pipe/localize.ts - 349 + 353 @@ -3353,7 +3558,7 @@ Corea del Sur src/app/shared/pipe/localize.ts - 351 + 355 @@ -3361,7 +3566,7 @@ Kuwait src/app/shared/pipe/localize.ts - 353 + 357 @@ -3369,7 +3574,7 @@ Islas Caimán src/app/shared/pipe/localize.ts - 355 + 359 @@ -3377,7 +3582,7 @@ Kazajistán src/app/shared/pipe/localize.ts - 357 + 361 @@ -3385,7 +3590,7 @@ Laos src/app/shared/pipe/localize.ts - 359 + 363 @@ -3393,7 +3598,7 @@ Líbano src/app/shared/pipe/localize.ts - 361 + 365 @@ -3401,7 +3606,7 @@ Santa Lucía src/app/shared/pipe/localize.ts - 363 + 367 @@ -3409,7 +3614,7 @@ Liechtenstein src/app/shared/pipe/localize.ts - 365 + 369 @@ -3417,7 +3622,7 @@ Sri Lanka src/app/shared/pipe/localize.ts - 367 + 371 @@ -3425,7 +3630,7 @@ Liberia src/app/shared/pipe/localize.ts - 369 + 373 @@ -3433,7 +3638,7 @@ Lesoto src/app/shared/pipe/localize.ts - 371 + 375 @@ -3441,7 +3646,7 @@ Lituania src/app/shared/pipe/localize.ts - 373 + 377 @@ -3449,7 +3654,7 @@ Luxemburgo src/app/shared/pipe/localize.ts - 375 + 379 @@ -3457,7 +3662,7 @@ Letonia src/app/shared/pipe/localize.ts - 377 + 381 @@ -3465,7 +3670,7 @@ Libia src/app/shared/pipe/localize.ts - 379 + 383 @@ -3473,7 +3678,7 @@ Marruecos src/app/shared/pipe/localize.ts - 381 + 385 @@ -3481,7 +3686,7 @@ Mónaco src/app/shared/pipe/localize.ts - 383 + 387 @@ -3489,7 +3694,7 @@ Moldavia src/app/shared/pipe/localize.ts - 385 + 389 @@ -3497,7 +3702,7 @@ Montenegro src/app/shared/pipe/localize.ts - 387 + 391 @@ -3505,7 +3710,7 @@ Isla de San Martín src/app/shared/pipe/localize.ts - 389 + 393 @@ -3513,7 +3718,7 @@ Madagascar src/app/shared/pipe/localize.ts - 391 + 395 @@ -3521,7 +3726,7 @@ Islas Marshall src/app/shared/pipe/localize.ts - 393 + 397 @@ -3529,7 +3734,7 @@ Macedonia del Norte src/app/shared/pipe/localize.ts - 395 + 399 @@ -3537,7 +3742,7 @@ Malí src/app/shared/pipe/localize.ts - 397 + 401 @@ -3545,7 +3750,7 @@ Myanmar (Birmania) src/app/shared/pipe/localize.ts - 399 + 403 @@ -3553,7 +3758,7 @@ Mongolia src/app/shared/pipe/localize.ts - 401 + 405 @@ -3561,7 +3766,7 @@ Macao src/app/shared/pipe/localize.ts - 403 + 407 @@ -3569,7 +3774,7 @@ Islas Marianas del Norte src/app/shared/pipe/localize.ts - 405 + 409 @@ -3577,7 +3782,7 @@ Martinica src/app/shared/pipe/localize.ts - 407 + 411 @@ -3585,7 +3790,7 @@ Mauritania src/app/shared/pipe/localize.ts - 409 + 413 @@ -3593,7 +3798,7 @@ Montserrat src/app/shared/pipe/localize.ts - 411 + 415 @@ -3601,7 +3806,7 @@ Malta src/app/shared/pipe/localize.ts - 413 + 417 @@ -3609,7 +3814,7 @@ Mauricio src/app/shared/pipe/localize.ts - 415 + 419 @@ -3617,7 +3822,7 @@ Maldivas src/app/shared/pipe/localize.ts - 417 + 421 @@ -3625,7 +3830,7 @@ Malaui src/app/shared/pipe/localize.ts - 419 + 423 @@ -3633,7 +3838,7 @@ México src/app/shared/pipe/localize.ts - 421 + 425 @@ -3641,7 +3846,7 @@ Malasia src/app/shared/pipe/localize.ts - 423 + 427 @@ -3649,7 +3854,7 @@ Mozambique src/app/shared/pipe/localize.ts - 425 + 429 @@ -3657,7 +3862,7 @@ Namibia src/app/shared/pipe/localize.ts - 427 + 431 @@ -3665,7 +3870,7 @@ Nueva Caledonia src/app/shared/pipe/localize.ts - 429 + 433 @@ -3673,7 +3878,7 @@ Níger src/app/shared/pipe/localize.ts - 431 + 435 @@ -3681,7 +3886,7 @@ Isla Norfolk src/app/shared/pipe/localize.ts - 433 + 437 @@ -3689,7 +3894,7 @@ Nigeria src/app/shared/pipe/localize.ts - 435 + 439 @@ -3697,7 +3902,7 @@ Nicaragua src/app/shared/pipe/localize.ts - 437 + 441 @@ -3705,7 +3910,7 @@ Países Bajos src/app/shared/pipe/localize.ts - 439 + 443 @@ -3713,7 +3918,7 @@ Noruega src/app/shared/pipe/localize.ts - 441 + 445 @@ -3721,7 +3926,7 @@ Nepal src/app/shared/pipe/localize.ts - 443 + 447 @@ -3729,7 +3934,7 @@ Nauru src/app/shared/pipe/localize.ts - 445 + 449 @@ -3737,7 +3942,7 @@ Niue src/app/shared/pipe/localize.ts - 447 + 451 @@ -3745,7 +3950,7 @@ Nueva Zelanda src/app/shared/pipe/localize.ts - 449 + 453 @@ -3753,7 +3958,7 @@ Omán src/app/shared/pipe/localize.ts - 451 + 455 @@ -3761,7 +3966,7 @@ Panamá src/app/shared/pipe/localize.ts - 453 + 457 @@ -3769,7 +3974,7 @@ Perú src/app/shared/pipe/localize.ts - 455 + 459 @@ -3777,7 +3982,7 @@ Polinesia Francesa src/app/shared/pipe/localize.ts - 457 + 461 @@ -3785,7 +3990,7 @@ Papua Nueva Guinea src/app/shared/pipe/localize.ts - 459 + 463 @@ -3793,7 +3998,7 @@ Filipinas src/app/shared/pipe/localize.ts - 461 + 465 @@ -3801,7 +4006,7 @@ Pakistán src/app/shared/pipe/localize.ts - 463 + 467 @@ -3809,7 +4014,7 @@ Polonia src/app/shared/pipe/localize.ts - 465 + 469 @@ -3817,7 +4022,7 @@ San Pedro y Miquelón src/app/shared/pipe/localize.ts - 467 + 471 @@ -3825,7 +4030,7 @@ Islas Pitcairn src/app/shared/pipe/localize.ts - 469 + 473 @@ -3833,7 +4038,7 @@ Puerto Rico src/app/shared/pipe/localize.ts - 471 + 475 @@ -3841,7 +4046,7 @@ Territorios Palestinos src/app/shared/pipe/localize.ts - 473 + 477 @@ -3849,7 +4054,7 @@ Portugal src/app/shared/pipe/localize.ts - 475 + 479 @@ -3857,7 +4062,7 @@ Palaos src/app/shared/pipe/localize.ts - 477 + 481 @@ -3865,7 +4070,7 @@ Paraguay src/app/shared/pipe/localize.ts - 479 + 483 @@ -3873,7 +4078,7 @@ Catar src/app/shared/pipe/localize.ts - 481 + 485 @@ -3881,7 +4086,7 @@ Reunión src/app/shared/pipe/localize.ts - 483 + 487 @@ -3889,7 +4094,7 @@ Rumanía src/app/shared/pipe/localize.ts - 485 + 489 @@ -3897,7 +4102,7 @@ Serbia src/app/shared/pipe/localize.ts - 487 + 491 @@ -3905,7 +4110,7 @@ Rusia src/app/shared/pipe/localize.ts - 489 + 493 @@ -3913,7 +4118,7 @@ Ruanda src/app/shared/pipe/localize.ts - 491 + 495 @@ -3921,7 +4126,7 @@ Arabia Saudita src/app/shared/pipe/localize.ts - 493 + 497 @@ -3929,7 +4134,7 @@ Islas Salomón src/app/shared/pipe/localize.ts - 495 + 499 @@ -3937,7 +4142,7 @@ Seychelles src/app/shared/pipe/localize.ts - 497 + 501 @@ -3945,7 +4150,7 @@ Sudán src/app/shared/pipe/localize.ts - 499 + 503 @@ -3953,7 +4158,7 @@ Suecia src/app/shared/pipe/localize.ts - 501 + 505 @@ -3961,7 +4166,7 @@ Singapur src/app/shared/pipe/localize.ts - 503 + 507 @@ -3969,7 +4174,7 @@ Santa Elena src/app/shared/pipe/localize.ts - 505 + 509 @@ -3977,7 +4182,7 @@ Eslovenia src/app/shared/pipe/localize.ts - 507 + 511 @@ -3985,7 +4190,7 @@ Svalbard y Jan Mayen src/app/shared/pipe/localize.ts - 509 + 513 @@ -3993,7 +4198,7 @@ Eslovaquia src/app/shared/pipe/localize.ts - 511 + 515 @@ -4001,7 +4206,7 @@ Sierra Leona src/app/shared/pipe/localize.ts - 513 + 517 @@ -4009,7 +4214,7 @@ San Marino src/app/shared/pipe/localize.ts - 515 + 519 @@ -4017,7 +4222,7 @@ Senegal src/app/shared/pipe/localize.ts - 517 + 521 @@ -4025,7 +4230,7 @@ Somalia src/app/shared/pipe/localize.ts - 519 + 523 @@ -4033,7 +4238,7 @@ Surinam src/app/shared/pipe/localize.ts - 521 + 525 @@ -4041,7 +4246,7 @@ Sudán del Sur src/app/shared/pipe/localize.ts - 523 + 527 @@ -4049,7 +4254,7 @@ Santo Tomé y Príncipe src/app/shared/pipe/localize.ts - 525 + 529 @@ -4057,7 +4262,7 @@ El Salvador src/app/shared/pipe/localize.ts - 527 + 531 @@ -4065,7 +4270,7 @@ Sint Maarten src/app/shared/pipe/localize.ts - 529 + 533 @@ -4073,7 +4278,7 @@ Siria src/app/shared/pipe/localize.ts - 531 + 535 @@ -4081,7 +4286,7 @@ Esuatini src/app/shared/pipe/localize.ts - 533 + 537 @@ -4089,7 +4294,7 @@ Islas Turcas y Caicos src/app/shared/pipe/localize.ts - 535 + 539 @@ -4097,7 +4302,7 @@ Chad src/app/shared/pipe/localize.ts - 537 + 541 @@ -4105,7 +4310,7 @@ Territorios Australes Franceses src/app/shared/pipe/localize.ts - 539 + 543 @@ -4113,7 +4318,7 @@ Togo src/app/shared/pipe/localize.ts - 541 + 545 @@ -4121,7 +4326,7 @@ Tailandia src/app/shared/pipe/localize.ts - 543 + 547 @@ -4129,7 +4334,7 @@ Tayikistán src/app/shared/pipe/localize.ts - 545 + 549 @@ -4137,7 +4342,7 @@ Tokelau src/app/shared/pipe/localize.ts - 547 + 551 @@ -4145,7 +4350,7 @@ Timor Oriental src/app/shared/pipe/localize.ts - 549 + 553 @@ -4153,7 +4358,7 @@ Turkmenistán src/app/shared/pipe/localize.ts - 551 + 555 @@ -4161,7 +4366,7 @@ Túnez src/app/shared/pipe/localize.ts - 553 + 557 @@ -4169,7 +4374,7 @@ Tonga src/app/shared/pipe/localize.ts - 555 + 559 @@ -4177,7 +4382,7 @@ Turquía src/app/shared/pipe/localize.ts - 557 + 561 @@ -4185,7 +4390,7 @@ Trinidad y Tobago src/app/shared/pipe/localize.ts - 559 + 563 @@ -4193,7 +4398,7 @@ Tuvalu src/app/shared/pipe/localize.ts - 561 + 565 @@ -4201,7 +4406,7 @@ Taiwán src/app/shared/pipe/localize.ts - 563 + 567 @@ -4209,7 +4414,7 @@ Tanzania src/app/shared/pipe/localize.ts - 565 + 569 @@ -4217,7 +4422,7 @@ Ucrania src/app/shared/pipe/localize.ts - 567 + 571 @@ -4225,7 +4430,7 @@ Uganda src/app/shared/pipe/localize.ts - 569 + 573 @@ -4233,7 +4438,7 @@ Islas Ultramarinas Menores de Estados Unidos src/app/shared/pipe/localize.ts - 571 + 575 @@ -4241,7 +4446,7 @@ Estados Unidos src/app/shared/pipe/localize.ts - 573 + 577 @@ -4249,7 +4454,7 @@ Uruguay src/app/shared/pipe/localize.ts - 575 + 579 @@ -4257,7 +4462,7 @@ Uzbekistán src/app/shared/pipe/localize.ts - 577 + 581 @@ -4265,7 +4470,7 @@ Ciudad del Vaticano src/app/shared/pipe/localize.ts - 579 + 583 @@ -4273,7 +4478,7 @@ San Vicente y las Granadinas src/app/shared/pipe/localize.ts - 581 + 585 @@ -4281,7 +4486,7 @@ Venezuela src/app/shared/pipe/localize.ts - 583 + 587 @@ -4289,7 +4494,7 @@ Islas Vírgenes Británicas src/app/shared/pipe/localize.ts - 585 + 589 @@ -4297,7 +4502,7 @@ Islas Vírgenes de los Estados Unidos src/app/shared/pipe/localize.ts - 587 + 591 @@ -4305,7 +4510,7 @@ Vietnam src/app/shared/pipe/localize.ts - 589 + 593 @@ -4313,7 +4518,7 @@ Vanuatu src/app/shared/pipe/localize.ts - 591 + 595 @@ -4321,7 +4526,7 @@ Wallis y Futuna src/app/shared/pipe/localize.ts - 593 + 597 @@ -4329,7 +4534,7 @@ Samoa src/app/shared/pipe/localize.ts - 595 + 599 @@ -4337,7 +4542,7 @@ Kosovo src/app/shared/pipe/localize.ts - 597 + 601 @@ -4345,7 +4550,7 @@ Yemen src/app/shared/pipe/localize.ts - 599 + 603 @@ -4353,7 +4558,7 @@ Mayotte src/app/shared/pipe/localize.ts - 601 + 605 @@ -4361,7 +4566,7 @@ Sudáfrica src/app/shared/pipe/localize.ts - 603 + 607 @@ -4369,7 +4574,7 @@ Zambia src/app/shared/pipe/localize.ts - 605 + 609 @@ -4377,10 +4582,11 @@ Zimbabue src/app/shared/pipe/localize.ts - 607 + 611 - + Add or edit affiliation Agregar o editar afiliación @@ -4390,7 +4596,7 @@ This field should follow pattern for "Email". - Este campo debe seguir el patrón de {{ pattern }}. + Este campo debe seguir el patrón de Email. src/app/affiliation/affiliation-update.component.html 25 @@ -4427,9 +4633,21 @@ src/app/affiliation/affiliation-update.component.html 188 + + src/app/member/member-update.component.html + 61 + + + src/app/member/member-update.component.html + 105 + + + src/app/member/member-update.component.html + 140 + - Org Name + Organization Name Nombre de la Organización src/app/affiliation/affiliation-update.component.html @@ -4437,7 +4655,7 @@ - Org City + City Ciudad src/app/affiliation/affiliation-update.component.html @@ -4445,7 +4663,7 @@ - Org Region + State/Region Estado/región src/app/affiliation/affiliation-update.component.html @@ -4453,23 +4671,25 @@ - Org Country + Country País src/app/affiliation/affiliation-update.component.html 141 - - Disambiguation Source + + Organization ID Source Fuente de Identificación de la organización src/app/affiliation/affiliation-update.component.html 170 - - Disambiguated Org Id + + Organization ID ID de la organización src/app/affiliation/affiliation-update.component.html @@ -4477,27 +4697,29 @@ - This field is required. GRID Organization ID should start with "grid.", RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with 0 - Este campo es necesario. La Identificación de organización de GRID debe comenzar con "grid" (por ejemplo: grid.12344) o debe ser una URL grid válida. La Identificación de organización de RINGGOLD debe ser un número. + This field is required. GRID Organization ID should start with "grid.", + RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with + 0 + Este campo es necesario. La Identificación de organización de GRID debe + comenzar con "grid" (por ejemplo: grid.12344) o debe ser una URL grid válida. La + Identificación de organización de RINGGOLD debe ser un número. src/app/affiliation/affiliation-update.component.html 223 - This field cannot be longer than 4000 characters. - Este campo no puede tener más de {{ max }} caracteres. + This field cannot be longer than + characters. + Este campo no puede tener más de + caracteres. - src/app/affiliation/affiliation-update.component.html - 255 - - - src/app/affiliation/affiliation-update.component.html - 278 + src/app/affiliation/affiliation-update.component.ts + 195 - src/app/affiliation/affiliation-update.component.html - 293 + src/app/affiliation/affiliation-update.component.ts + 197 @@ -4505,7 +4727,7 @@ Año de inicio src/app/affiliation/affiliation-update.component.html - 305 + 293 @@ -4513,11 +4735,11 @@ Año src/app/affiliation/affiliation-update.component.html - 314 + 302 src/app/affiliation/affiliation-update.component.html - 364 + 352 @@ -4525,7 +4747,7 @@ Mes de inicio src/app/affiliation/affiliation-update.component.html - 323 + 311 @@ -4533,11 +4755,11 @@ Mes src/app/affiliation/affiliation-update.component.html - 332 + 320 src/app/affiliation/affiliation-update.component.html - 382 + 370 @@ -4545,7 +4767,7 @@ Día de inicio src/app/affiliation/affiliation-update.component.html - 341 + 329 @@ -4553,11 +4775,11 @@ Día src/app/affiliation/affiliation-update.component.html - 344 + 332 src/app/affiliation/affiliation-update.component.html - 394 + 382 @@ -4565,7 +4787,7 @@ Año de término src/app/affiliation/affiliation-update.component.html - 355 + 343 @@ -4573,7 +4795,7 @@ Mes de término src/app/affiliation/affiliation-update.component.html - 373 + 361 @@ -4581,7 +4803,7 @@ Final del día src/app/affiliation/affiliation-update.component.html - 391 + 379 @@ -4589,7 +4811,7 @@ La fecha de inicio no puede ser mayor que la fecha de finalización. src/app/affiliation/affiliation-update.component.html - 400 + 388 @@ -4597,7 +4819,7 @@ Tipo de ID externo src/app/affiliation/affiliation-update.component.html - 411 + 399 @@ -4605,15 +4827,17 @@ Url de ID externo src/app/affiliation/affiliation-update.component.html - 441 + 429 - Please do not forget to download and send permission links to your researcher once the assertion has been saved. - Nota: no olvide descargar y enviar enlaces de permisos a su investigador cuando se haya guardado la confirmación. + Please do not forget to download and send permission links to your researcher once + the assertion has been saved. + Nota: no olvide descargar y enviar enlaces de permisos a su investigador + cuando se haya guardado la confirmación. src/app/affiliation/affiliation-update.component.html - 457 + 445 @@ -4624,9 +4848,14 @@ 8 - - Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the portal and the user's ORCID record - ¿Está seguro de que desea eliminar esta afiliación de ? La afiliación se eliminará del portal y del registro ORCID del usuario. + + Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the + portal and the user's ORCID record + ¿Está seguro de que desea eliminar esta afiliación de ? La afiliación se eliminará del portal y del + registro ORCID del usuario. src/app/affiliation/affiliation-delete.component.ts 40 @@ -4637,7 +4866,7 @@ Afiliación creada src/app/shared/pipe/localize.ts - 23 + 27 @@ -4645,7 +4874,7 @@ Afiliación actualizada src/app/shared/pipe/localize.ts - 25 + 29 @@ -4653,7 +4882,7 @@ Afiliación eliminada src/app/shared/pipe/localize.ts - 27 + 31 @@ -4661,65 +4890,395 @@ Se ha producido un problema al eliminar la afiliación src/app/shared/pipe/localize.ts - 29 + 33 - + Send permission notifications Enviar notificaciones de permiso - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 3 - - A request to send notifications to your users is already in progress. Please try again later. - Ya hay una solicitud en progreso para enviar notificaciones a sus usuarios. Vuelva a intentarlo más tarde. + + A request to send notifications to your users is already in progress. Please try + again later. + Ya hay una solicitud en progreso para enviar notificaciones a sus + usuarios. Vuelva a intentarlo más tarde. - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 7 - - Are you sure that you would like ORCID to send permission links to your researchers for the affiliations that are pending? - Las notificaciones de permisos se enviarán a todos los investigadores que tengan algún elemento de afiliación con el estado 'Pendiente'. + + Are you sure that you would like ORCID to send permission links to your researchers + for the affiliations that are pending? + Las notificaciones de permisos se enviarán a todos los investigadores + que tengan algún elemento de afiliación con el estado 'Pendiente'. - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 10 - + Notification language Idioma de la notificación - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 11 - + What language should the notification be sent in? ¿En qué idioma deberían enviarse las notificaciones? - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 12 - + Send notifications Enviar notificaciones - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 23 - - Notification process has now started. We will email you as soon as the process has completed. - Se ha iniciado el proceso de notificación. Le enviaremos un correo electrónico tan pronto como se haya completado. + + Notification process has now started. We will email you as soon as the process has + completed. + Se ha iniciado el proceso de notificación. Le enviaremos un correo + electrónico tan pronto como se haya completado. + + src/app/shared/pipe/localize.ts + 25 + + + + You have already granted + Ya has otorgado + + src/app/landing-page/landing-page.component.html + 13 + + + + permission to update your ORCID record + permiso para actualizar su registro ORCID + + src/app/landing-page/landing-page.component.html + 16 + + + + Oops, something went wrong and we were not able to fetch your ORCID iD + ¡Ups! Algo salió mal y no pudimos obtener su ID de ORCID + + src/app/landing-page/landing-page.component.html + 33 + + + + Oops, you have denied access. + Vaya, se ha denegado el acceso. + + src/app/landing-page/landing-page.component.html + 39 + + + + will not be able to update your ORCID record. + no podrá actualizar su registro ORCID. + + src/app/landing-page/landing-page.component.html + 42 + + + + If this was a mistake, click the button below to grant access. + Si ha sido un error, haga clic en el botón de abajo para otorgar acceso. + + src/app/landing-page/landing-page.component.html + 45 + + + + If you find that data added to your ORCID record is incorrect, please contact + Si nota que los datos agregados a su registro ORCID son incorrectos, + comuníquese con + + src/app/landing-page/landing-page.component.ts + 78 + + + + This authorization link has already been used. Please contact for a new authorization link. + Este enlace de autorización ya se ha utilizado. Póngase en contacto con para recibir un nuevo enlace de autorización. + + src/app/landing-page/landing-page.component.ts + 79 + + + + Allow to update my ORCID record. + Permitir que actualice mi + registro ORCID + + src/app/landing-page/landing-page.component.ts + 80 + + + + You have successfully granted + permission to update your ORCID record, and your record has been updated with affiliation + information. + Le ha concedido a los + permisos necesarios para actualizar su registro ORCID, y su registro se ha actualizado con + la información de afiliación. + + src/app/landing-page/landing-page.component.ts + 81 + + + + Thanks, ! + Gracias, + + src/app/landing-page/landing-page.component.ts + 172 + + + + Member details + Datos del miembro + + src/app/member/member-detail.component.html + 4 + + + + Salesforce Id + ID de Salesforce + + src/app/member/member-detail.component.html + 9 + + + src/app/member/member-update.component.html + 41 + + + src/app/member/members.component.html + 59 + + + + Parent Salesforce Id + ID de Parent Salesforce + + src/app/member/member-detail.component.html + 13 + + + src/app/member/member-update.component.html + 71 + + + src/app/member/members.component.html + 83 + + + + Member Name + Nombre de miembro + + src/app/member/member-detail.component.html + 17 + + + src/app/member/member-update.component.html + 86 + + + src/app/member/members.component.html + 67 + + + + Client ID + ID del cliente + + src/app/member/member-detail.component.html + 21 + + + src/app/member/member-update.component.html + 115 + + + + Type + Tipo + + src/app/member/member-detail.component.html + 25 + + + + Is Consortium Lead + Líder del consorcio + + src/app/member/member-detail.component.html + 29 + + + src/app/member/member-update.component.html + 154 + + + src/app/member/members.component.html + 75 + + + + Assertion Service Enabled + Aseveraciones habilitadas + + src/app/member/member-detail.component.html + 35 + + + src/app/member/member-update.component.html + 169 + + + src/app/member/members.component.html + 91 + + + + Status + Estado + + src/app/member/member-detail.component.html + 41 + + + + Created Date + Creado + + src/app/member/member-detail.component.html + 45 + + + + Last Modified Date + Última modificación + + src/app/member/member-detail.component.html + 49 + + + src/app/member/members.component.html + 99 + + + + Add or edit member + Agregar o editar miembro + + src/app/member/member-update.component.html + 8 + + + + Note: Client ID must have User OBO enabled AND + Nota: la ID de cliente debe tener activado el OBO de miembro Y + + src/app/member/member-update.component.html + 120 + + + + added as a Redirect URI in + añadido como un URI de redirección en + + src/app/member/member-update.component.html + 124 + + + + Manage members + Gestionar miembros + + src/app/member/members.component.html + 2 + + + + Add member + Añadir miembro + + src/app/member/members.component.html + 11 + + + + Import members from CSV + Importar miembros desde CSV + + src/app/member/members.component.html + 19 + + + + No members to show + No hay miembros para mostrar + + src/app/member/members.component.html + 50 + + + + Member created + Se ha creado el miembro src/app/shared/pipe/localize.ts 21 + + Member updated successfully + Se ha actualizado el miembro con éxito + + src/app/shared/pipe/localize.ts + 23 + + \ No newline at end of file diff --git a/ui/src/i18n/messages.fr.xlf b/ui/src/i18n/messages.fr.xlf index c3c84f564..3fa0d0695 100644 --- a/ui/src/i18n/messages.fr.xlf +++ b/ui/src/i18n/messages.fr.xlf @@ -70,8 +70,10 @@ - Slide of - Slide of + Slide of + + Slide of + Currently selected slide number read by screen reader node_modules/src/ngb-config.ts @@ -287,8 +289,12 @@ - Failed to sign in! Please check your credentials and try again. - Échec de la connexion ! Veuillez vérifier vos identifiants et réessayer. + Failed to + sign in! Please + check your credentials and try again. + Échec + de la connexion ! + Veuillez vérifier vos identifiants et réessayer. src/app/account/login/login.component.html 6 @@ -302,7 +308,8 @@ 10 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 22 @@ -318,7 +325,8 @@ 16 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 28 @@ -387,31 +395,41 @@ Reset your password Réinitialiser votre mot de passe - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 4 - Email address isn't registered! Please check and try again. - L'adresse e-mail n'est pas enregistrée ! Veuillez vérifier et réessayer - - src/app/account/password/password-reset-init.component.html + Email + address isn't registered! Please check and try again. + L'adresse + e-mail n'est pas enregistrée ! Veuillez vérifier et réessayer + + + src/app/account/password/password-reset-init.component.html 7 Enter the email address you used to register. - Saisissez l'adresse e-mail que vous avez utilisée pour vous inscrire + Saisissez l'adresse e-mail que vous avez utilisée pour vous + inscrire - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 11 Check your emails for details on how to reset your password. - Vérifiez vos e-mails pour plus d'informations sur la réinitialisation de votre mot de passe. + Vérifiez vos e-mails pour plus d'informations sur la + réinitialisation de votre mot de passe. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 15 @@ -419,7 +437,8 @@ Your email is required. Votre adresse e-mail est obligatoire. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 42 @@ -427,7 +446,8 @@ Your email is invalid. Votre adresse e-mail n'est pas valide. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 49 @@ -435,7 +455,8 @@ Your email is required to be at least 5 characters. Votre adresse e-mail doit compter au moins cinq caractères. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 56 @@ -443,7 +464,8 @@ Your email cannot be longer than 100 characters. Votre e-mail ne peut pas dépasser 50 caractères. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 64 @@ -451,7 +473,8 @@ Reset Réinitialiser le mot de passe - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 75 @@ -464,8 +487,10 @@ - Settings saved! - Réglages enregistrés ! + Settings + saved! + Réglages + enregistrés ! src/app/account/settings/settings.component.html 8 @@ -580,8 +605,13 @@ - Add extra security to your ORCID member portal account by enabling two-factor authentication. Each time you sign in, you'll be prompted to enter a six-digit code we send to your preferred authentication application. - Ajoutez une sécurité supplémentaire à votre compte du portail des membres ORCID en activant l'authentification à deux facteurs. Chaque fois que vous vous connecterez, vous serez invité à saisir un code à six chiffres que nous enverrons à votre application d'authentification préférée. + Add extra security to your ORCID member portal account by enabling two-factor + authentication. Each time you sign in, you'll be prompted to enter a six-digit code + we send to your preferred authentication application. + Ajoutez une sécurité supplémentaire à votre compte du portail des + membres ORCID en activant l'authentification à deux facteurs. Chaque fois que vous + vous connecterez, vous serez invité à saisir un code à six chiffres que nous enverrons à + votre application d'authentification préférée. src/app/account/settings/settings.component.html 146 @@ -605,16 +635,41 @@ - Install a two-factor authentication appA 2FA app is required to create the six-digit code you need to access your account each time you sign in. Most apps are for mobile devices; some are also available as desktop or web-based apps. Download and install your preferred 2FA app, such as Google Authenticator, FreeOTP, or Authy. - Installer une application d'authentification à deux facteursUne application A2F est nécessaire pour créer le code à six chiffres dont vous avez besoin pour accéder à votre compte à chaque fois que vous vous connectez. La plupart des applications sont destinées aux appareils mobiles ; certaines sont également disponibles en tant qu'applications de bureau ou web. Téléchargez et installez votre application A2F préférée, telle que Google Authenticator, FreeOTP, ou Authy. + Install a two-factor authentication appA 2FA app is required to create the six-digit code you + need to access your account each time you sign in. Most apps are for mobile devices; some + are also available as desktop or web-based apps. Download and install your preferred 2FA + app, such as Google + Authenticator, + FreeOTP, or Authy. + Installer une application d'authentification à deux facteursUne application A2F est + nécessaire pour créer le code à six chiffres dont vous avez besoin pour accéder à votre + compte à chaque fois que vous vous connectez. La plupart des applications sont destinées + aux appareils mobiles ; certaines sont également disponibles en tant qu'applications + de bureau ou web. Téléchargez et installez votre application A2F préférée, telle que Google + Authenticator, + FreeOTP, ou Authy. src/app/account/settings/settings.component.html 166 - Scan this QR code with your deviceOpen your 2FA app and scan the image below. - Scannez ce code QR avec votre appareilOuvrez votre application A2F et scannez l'image ci-dessous. + Scan this QR code with your deviceOpen your 2FA app and scan the image below. + Scannez ce code QR avec votre appareilOuvrez votre application A2F et scannez l'image + ci-dessous. src/app/account/settings/settings.component.html 174 @@ -645,8 +700,14 @@ - Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, your 2FA app will display a six-digit code. Enter this code in the box below and click Save. - Saisissez le code à six chiffres dans l'applicationAprès avoir scanné le code QR ou saisi le code texte, votre application A2F affiche un code à six chiffres. Saisissez ce code dans la case ci-dessous et cliquez sur Enregistrer. + Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, + your 2FA app will display a six-digit code. Enter this code in the box below and click + Save. + Saisissez le code à six chiffres dans l'applicationAprès avoir scanné le code QR + ou saisi le code texte, votre application A2F affiche un code à six chiffres. Saisissez ce + code dans la case ci-dessous et cliquez sur Enregistrer. src/app/account/settings/settings.component.html 205 @@ -669,8 +730,10 @@ - Make a note of the following backup codes, this is the only time they will be shown. - Notez les codes de sauvegarde suivants, c'est la seule fois qu'ils seront affichés. + Make a note of the following backup codes, this is the only time they will be + shown. + Notez les codes de sauvegarde suivants, c'est la seule fois + qu'ils seront affichés. src/app/account/settings/settings.component.html 228 @@ -877,16 +940,22 @@ - Password changed! - Mot de passe modifié ! + Password + changed! + Mot + de passe modifié ! src/app/account/password/password.component.html 7 - An error has occurred! The password could not be changed. - Une erreur s'est produite ! Le mot de passe n'a pas pu être modifié. + An error + has occurred! + The password could not be changed. + Une + erreur s'est produite ! Le mot de passe n'a pas pu être modifié. src/app/account/password/password.component.html 10 @@ -896,7 +965,8 @@ The password and its confirmation do not match! Le mot de passe et sa confirmation ne correspondent pas ! - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 62 @@ -924,7 +994,8 @@ Your password is required. Votre mot de passe est requis. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 91 @@ -940,7 +1011,8 @@ New password Nouveau mot de passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 70 @@ -952,7 +1024,8 @@ New password Nouveau mot de passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 77 @@ -964,7 +1037,8 @@ Your password is required to be at least 4 characters. Votre mot de passe doit contenir au moins 4 caractères. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 98 @@ -976,7 +1050,8 @@ Your password cannot be longer than 50 characters. Votre mot de passe ne doit pas compter plus de 50 caractères. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 105 @@ -988,7 +1063,8 @@ New password confirmation Confirmation du nouveau mot de passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 114 @@ -1000,7 +1076,8 @@ Confirm the new password Confirmer le nouveau mot de passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 121 @@ -1012,7 +1089,8 @@ Your password confirmation is required. Votre mot de passe de confirmation est obligatoire. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 135 @@ -1022,9 +1100,11 @@ Your password confirmation is required to be at least 4 characters. - Votre confirmation de mot de passe doit compter au moins quatre caractères. + Votre confirmation de mot de passe doit compter au moins quatre + caractères. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 142 @@ -1034,9 +1114,11 @@ Your password confirmation cannot be longer than 50 characters. - Votre mot de passe de confirmation ne peut pas comporter plus de 50 caractères. + Votre mot de passe de confirmation ne peut pas comporter plus de + 50 caractères. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 149 @@ -1064,55 +1146,81 @@ Reset password Réinitialiser le mot de passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 4 - The activation key is missing. - La clé d'activation est manquante. - - src/app/account/password/password-reset-finish.component.html + The + activation key is missing. + La + clé d'activation est manquante. + + + src/app/account/password/password-reset-finish.component.html 7 - This activation key is invalid. - La clé d'activation est invalide. - - src/app/account/password/password-reset-finish.component.html + This + activation key is invalid. + La + clé d'activation est invalide. + + + src/app/account/password/password-reset-finish.component.html 11 - This activation has expired. - La clé d'activation est expirée. - - src/app/account/password/password-reset-finish.component.html + This + activation has expired. + La + clé d'activation est expirée. + + + src/app/account/password/password-reset-finish.component.html 15 - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It looks like this + link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It + looks like this link has expired. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 20 - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a new + activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a + new activation link to your registered email address. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 26 - If you are still having problems activating your account or have not received your new activation link please contact our support team please contact us at membership@orcid.org. - If you are still having problems activating your account or have not received your new activation link, please contact us at membership@orcid.org. - - src/app/account/password/password-reset-finish.component.html + If you are still having problems activating your account or have not received your + new activation link please contact our support team please contact us at + membership@orcid.org. + If you are still having problems activating your account or have not + received your new activation link, please contact us at membership@orcid.org. + + + src/app/account/password/password-reset-finish.component.html 32 @@ -1120,23 +1228,33 @@ Choose a new password Choisissez un nouveau mot de passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 39 - Your password couldn't be reset. Remember a password request is only valid for 24 hours. - Votre mot de passe n'a pas pu être réinitialisé. N'oubliez pas qu'une demande de réinitialisation de mot de passe n'est valide que pendant 24 heures. - - src/app/account/password/password-reset-finish.component.html + Your password couldn't be reset. Remember a password request is only valid for + 24 hours. + Votre mot de passe n'a pas pu être réinitialisé. N'oubliez pas + qu'une demande de réinitialisation de mot de passe n'est valide que pendant + 24 heures. + + + src/app/account/password/password-reset-finish.component.html 43 - Your password has been reset. Please - Votre mot de passe a été réinitialisé. Veuillez - - src/app/account/password/password-reset-finish.component.html + Your + password has been reset. Please + Votre + mot de passe a été réinitialisé. Veuillez + + + src/app/account/password/password-reset-finish.component.html 50 @@ -1144,7 +1262,8 @@ sign in s'identifier - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 58 @@ -1152,7 +1271,8 @@ Reset Password Validez le nouveau mot de passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 159 @@ -1184,7 +1304,8 @@ Password strength: Robustesse du mot de passe : - src/app/account/password/password-strength.component.html + + src/app/account/password/password-strength.component.html 2 @@ -1367,6 +1488,14 @@ src/app/affiliation/affiliation-detail.component.html 143 + + src/app/member/member-detail.component.html + 47 + + + src/app/member/member-detail.component.html + 51 + src/app/user/user-detail.component.html 81 @@ -1395,6 +1524,10 @@ src/app/affiliation/affiliation-detail.component.html 230 + + src/app/member/member-detail.component.html + 61 + src/app/user/user-detail.component.html 95 @@ -1411,6 +1544,14 @@ src/app/affiliation/affiliations.component.html 220 + + src/app/member/member-detail.component.html + 66 + + + src/app/member/members.component.html + 151 + src/app/user/user-detail.component.html 103 @@ -1452,17 +1593,23 @@ 17 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 34 src/app/affiliation/affiliation-update.component.html - 465 + 453 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 20 + + src/app/member/member-update.component.html + 186 + src/app/user/user-delete.component.html 14 @@ -1481,7 +1628,11 @@ Enregistrer src/app/affiliation/affiliation-update.component.html - 468 + 456 + + + src/app/member/member-update.component.html + 189 src/app/user/user-update.component.html @@ -1523,6 +1674,10 @@ src/app/affiliation/affiliations.component.html 104 + + src/app/member/members.component.html + 32 + src/app/user/users.component.html 32 @@ -1557,20 +1712,32 @@ - Showing - of items. - Montrer entre et éléments sur . + Showing - + of items. + Montrer entre et éléments sur . src/app/affiliation/affiliations.component.ts - 228 + 227 + + + src/app/member/members.component.ts + 160 src/app/user/users.component.ts 230 - - Are you sure you want to transfer ownership? You are about to transfer ownership of this organization account. If you are the organization owner after transferring ownership, you will no longer have access to administrative functions, such as managing users. - Êtes-vous sûr(e) de vouloir transférer la propriété ? Vous êtes sur le point de transférer la propriété de ce compte d'organisation. Si vous êtes le propriétaire de l'organisation après le transfert de propriété, vous n'aurez plus accès aux fonctions d'administrateur, telles que la gestion des utilisateurs. + + Are you sure you want to transfer ownership? You are about to transfer ownership of + this organization account. If you are the organization owner after transferring ownership, + you will no longer have access to administrative functions, such as managing users. + Êtes-vous sûr(e) de vouloir transférer la propriété ? Vous êtes sur le + point de transférer la propriété de ce compte d'organisation. Si vous êtes le + propriétaire de l'organisation après le transfert de propriété, vous n'aurez + plus accès aux fonctions d'administrateur, telles que la gestion des utilisateurs. src/app/user/user-update.component.ts 215 @@ -1594,10 +1761,11 @@ Are you sure you want to delete user ? - Êtes-vous sûr(e) de vouloir supprimer l'utilisateur ? + Êtes-vous sûr(e) de vouloir supprimer l'utilisateur ? src/app/user/user-delete.component.ts - 47 + 44 @@ -1629,8 +1797,10 @@ - Oops! There was a problem processing your data. Pleases fix the errors below and try again - Oups ! Une erreur s'est produite dans le traitement de vos données. Veuillez corriger les erreurs ci-dessous et réessayer + Oops! There was a problem processing your data. Pleases fix the errors below and + try again + Oups ! Une erreur s'est produite dans le traitement de vos données. + Veuillez corriger les erreurs ci-dessous et réessayer src/app/user/user-import-dialog.component.html 16 @@ -1656,7 +1826,8 @@ Upload Transférer - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 37 @@ -1681,7 +1852,8 @@ 2 - + Send permission notifications Envoyer des notifications d'autorisation @@ -1689,7 +1861,8 @@ 11 - + Request permission links Demander des liens d'autorisation @@ -1697,7 +1870,8 @@ 21 - + Request affiliation status report Demander un rapport sur l'état de l'affiliation @@ -1705,7 +1879,9 @@ 31 - + Request affiliations for edit Demander des affiliations pour modification @@ -1729,25 +1905,38 @@ 61 - - Your affiliations for edit file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Vos affiliations pour le fichier d'édition vous seront envoyées sous peu. Si vous ne recevez pas votre fichier, veuillez nous contacter à membership@orcid.org. + + Your affiliations for edit file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + Vos affiliations pour le fichier d'édition vous seront envoyées + sous peu. Si vous ne recevez pas votre fichier, veuillez nous contacter à + membership@orcid.org. src/app/affiliation/affiliations.component.html 73 - - Your affiliation status report file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Votre fichier de rapport d'état d'affiliation vous sera envoyé sous peu. Si vous ne recevez pas votre fichier, veuillez nous contacter à membership@orcid.org. + + Your affiliation status report file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + Votre fichier de rapport d'état d'affiliation vous sera envoyé + sous peu. Si vous ne recevez pas votre fichier, veuillez nous contacter à + membership@orcid.org. src/app/affiliation/affiliations.component.html 82 - - Your permission links file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Votre fichier de liens d'autorisation vous sera envoyé sous peu. Si vous ne recevez pas votre fichier, veuillez nous contacter à membership@orcid.org. + + Your permission links file will be mailed to you shortly. If you do not receive + your file then please contact us at membership@orcid.org. + Votre fichier de liens d'autorisation vous sera envoyé sous peu. Si + vous ne recevez pas votre fichier, veuillez nous contacter à membership@orcid.org. src/app/affiliation/affiliations.component.html 91 @@ -1825,7 +2014,9 @@ 150 - + @@ -1857,9 +2048,13 @@ 190 - - For help troubleshooting, please contact the Member Portal Team and copy/paste or include a screenshot of the error message below. - Pour obtenir de l'aide en cas de problème, veuillez contacter l'équipe du portail des membres et copier-coller ci-dessous le message d'erreur ou en joindre une capture d'écran. + + For help troubleshooting, please contact the Member Portal Team and copy/paste or + include a screenshot of the error message below. + Pour obtenir de l'aide en cas de problème, veuillez contacter + l'équipe du portail des membres et copier-coller ci-dessous le message d'erreur + ou en joindre une capture d'écran. src/app/affiliation/affiliations.component.html 203 @@ -1870,7 +2065,7 @@ L'utilisateur a refusé l'accès src/app/shared/pipe/localize.ts - 34 + 38 @@ -1878,7 +2073,7 @@ En attente src/app/shared/pipe/localize.ts - 36 + 40 @@ -1886,7 +2081,7 @@ Dans ORCID src/app/shared/pipe/localize.ts - 38 + 42 @@ -1894,7 +2089,7 @@ L'utilisateur a accordé l'accès src/app/shared/pipe/localize.ts - 40 + 44 @@ -1902,7 +2097,7 @@ User deleted from ORCID src/app/shared/pipe/localize.ts - 42 + 46 @@ -1910,7 +2105,7 @@ L'utilisateur a revoqué l'accès src/app/shared/pipe/localize.ts - 44 + 48 @@ -1918,7 +2113,7 @@ Erreur lors de l'ajout à ORCID src/app/shared/pipe/localize.ts - 46 + 50 @@ -1926,7 +2121,7 @@ Erreur lors de la mise à jour dans ORCID src/app/shared/pipe/localize.ts - 48 + 52 @@ -1934,7 +2129,7 @@ En attente d'une nouvelle tentative dans ORCID src/app/shared/pipe/localize.ts - 50 + 54 @@ -1942,7 +2137,7 @@ Erreur lors de la suppression dans ORCID src/app/shared/pipe/localize.ts - 52 + 56 @@ -1950,7 +2145,7 @@ Notification demandée src/app/shared/pipe/localize.ts - 54 + 58 @@ -1958,7 +2153,7 @@ Notification envoyée src/app/shared/pipe/localize.ts - 56 + 60 @@ -1966,7 +2161,7 @@ Échec de la notification src/app/shared/pipe/localize.ts - 58 + 62 @@ -1974,7 +2169,7 @@ En attente de mise à jour dans ORCID src/app/shared/pipe/localize.ts - 60 + 64 @@ -2009,7 +2204,8 @@ 36 - + Affiliation Section Type d'affiliation @@ -2050,7 +2246,7 @@ src/app/affiliation/affiliation-update.component.html - 265 + 261 @@ -2062,7 +2258,7 @@ src/app/affiliation/affiliation-update.component.html - 285 + 277 @@ -2090,7 +2286,7 @@ src/app/affiliation/affiliation-update.component.html - 426 + 414 @@ -2133,7 +2329,8 @@ 145 - + Notification First Sent Première notification envoyée @@ -2145,7 +2342,8 @@ 175 - + Notification Last Sent Dernière notification envoyée @@ -2169,15 +2367,20 @@ Import affiliations from CSV Importer les affiliations - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 3 - - Your CSV has been uploaded for processing. We will let you know via email once the file has been processed. - Votre CSV a été téléchargé pour traitement. Nous vous informerons par e-mail une fois le dossier traité. + + Your CSV has been uploaded for processing. We will let you know via email once the + file has been processed. + Votre CSV a été téléchargé pour traitement. Nous vous informerons par + e-mail une fois le dossier traité. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 10 @@ -2185,7 +2388,8 @@ There was a problem uploading your CSV for processing. Problème lors du téléchargement de votre CSV pour traitement. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 17 @@ -2193,7 +2397,8 @@ Please select the CSV file to upload Veuillez sélectionner un fichier CSV à télécharger. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 20 @@ -2201,15 +2406,19 @@ File Path Chemin du fichier - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 22 - Please do not forget to download and send permission links to your researchers once the upload has completed. - Remarque : veuillez penser à télécharger et envoyer les liens d'autorisation à vos chercheurs une fois que le téléchargement sera terminé. + Please do not forget to download and send permission links to your researchers once + the upload has completed. + Remarque : veuillez penser à télécharger et envoyer les liens + d'autorisation à vos chercheurs une fois que le téléchargement sera terminé. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 26 @@ -2217,7 +2426,8 @@ Close Fermer - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 40 @@ -2225,7 +2435,8 @@ There is no file to upload. Please select one. Il n'y a aucun fichier à transférer. Veuillez en sélectionner un. - src/app/affiliation/affiliation-import-dialog.component.ts + + src/app/affiliation/affiliation-import-dialog.component.ts 60 @@ -2234,7 +2445,7 @@ ÉDUCATION src/app/shared/pipe/localize.ts - 65 + 69 @@ -2242,7 +2453,7 @@ EMPLOI src/app/shared/pipe/localize.ts - 67 + 71 @@ -2250,7 +2461,7 @@ DISTINCTION src/app/shared/pipe/localize.ts - 69 + 73 @@ -2258,7 +2469,7 @@ POSITION INVITÉE src/app/shared/pipe/localize.ts - 71 + 75 @@ -2266,7 +2477,7 @@ DIPLÔME src/app/shared/pipe/localize.ts - 73 + 77 @@ -2274,7 +2485,7 @@ SERVICE src/app/shared/pipe/localize.ts - 75 + 79 @@ -2282,7 +2493,7 @@ ADHÉSION src/app/shared/pipe/localize.ts - 77 + 81 @@ -2290,7 +2501,7 @@ Janvier src/app/shared/pipe/localize.ts - 82 + 86 @@ -2298,7 +2509,7 @@ Février src/app/shared/pipe/localize.ts - 84 + 88 @@ -2306,7 +2517,7 @@ Mars src/app/shared/pipe/localize.ts - 86 + 90 @@ -2314,7 +2525,7 @@ Avril src/app/shared/pipe/localize.ts - 88 + 92 @@ -2322,7 +2533,7 @@ Mai src/app/shared/pipe/localize.ts - 90 + 94 @@ -2330,7 +2541,7 @@ Juin src/app/shared/pipe/localize.ts - 92 + 96 @@ -2338,7 +2549,7 @@ Juillet src/app/shared/pipe/localize.ts - 94 + 98 @@ -2346,7 +2557,7 @@ Août src/app/shared/pipe/localize.ts - 96 + 100 @@ -2354,7 +2565,7 @@ Septembre src/app/shared/pipe/localize.ts - 98 + 102 @@ -2362,7 +2573,7 @@ Octobre src/app/shared/pipe/localize.ts - 100 + 104 @@ -2370,7 +2581,7 @@ Novembre src/app/shared/pipe/localize.ts - 102 + 106 @@ -2378,7 +2589,7 @@ Décembre src/app/shared/pipe/localize.ts - 104 + 108 @@ -2386,7 +2597,7 @@ Andorre src/app/shared/pipe/localize.ts - 109 + 113 @@ -2394,7 +2605,7 @@ Émirats arabes unis src/app/shared/pipe/localize.ts - 111 + 115 @@ -2402,7 +2613,7 @@ Afghanistan src/app/shared/pipe/localize.ts - 113 + 117 @@ -2410,7 +2621,7 @@ Antigua-et-Barbuda src/app/shared/pipe/localize.ts - 115 + 119 @@ -2418,7 +2629,7 @@ Anguilla src/app/shared/pipe/localize.ts - 117 + 121 @@ -2426,7 +2637,7 @@ Albanie src/app/shared/pipe/localize.ts - 119 + 123 @@ -2434,7 +2645,7 @@ Arménie src/app/shared/pipe/localize.ts - 121 + 125 @@ -2442,7 +2653,7 @@ Angola src/app/shared/pipe/localize.ts - 123 + 127 @@ -2450,7 +2661,7 @@ Antarctique src/app/shared/pipe/localize.ts - 125 + 129 @@ -2458,7 +2669,7 @@ Argentine src/app/shared/pipe/localize.ts - 127 + 131 @@ -2466,7 +2677,7 @@ Samoa américaines src/app/shared/pipe/localize.ts - 129 + 133 @@ -2474,7 +2685,7 @@ Autriche src/app/shared/pipe/localize.ts - 131 + 135 @@ -2482,7 +2693,7 @@ Australie src/app/shared/pipe/localize.ts - 133 + 137 @@ -2490,7 +2701,7 @@ Aruba src/app/shared/pipe/localize.ts - 135 + 139 @@ -2498,7 +2709,7 @@ Åland (Îles) src/app/shared/pipe/localize.ts - 137 + 141 @@ -2506,7 +2717,7 @@ Azerbaïdjan src/app/shared/pipe/localize.ts - 139 + 143 @@ -2514,7 +2725,7 @@ Bosnie-Herzégovine src/app/shared/pipe/localize.ts - 141 + 145 @@ -2522,7 +2733,7 @@ Barbade src/app/shared/pipe/localize.ts - 143 + 147 @@ -2530,7 +2741,7 @@ Bangladesh src/app/shared/pipe/localize.ts - 145 + 149 @@ -2538,7 +2749,7 @@ Belgique src/app/shared/pipe/localize.ts - 147 + 151 @@ -2546,7 +2757,7 @@ Burkina Faso src/app/shared/pipe/localize.ts - 149 + 153 @@ -2554,7 +2765,7 @@ Bulgarie src/app/shared/pipe/localize.ts - 151 + 155 @@ -2562,7 +2773,7 @@ Bahreïn src/app/shared/pipe/localize.ts - 153 + 157 @@ -2570,7 +2781,7 @@ Burundi src/app/shared/pipe/localize.ts - 155 + 159 @@ -2578,7 +2789,7 @@ Bénin src/app/shared/pipe/localize.ts - 157 + 161 @@ -2586,7 +2797,7 @@ Saint-Barthélemy src/app/shared/pipe/localize.ts - 159 + 163 @@ -2594,7 +2805,7 @@ Bermudes src/app/shared/pipe/localize.ts - 161 + 165 @@ -2602,7 +2813,7 @@ Brunei src/app/shared/pipe/localize.ts - 163 + 167 @@ -2610,7 +2821,7 @@ Bolivie src/app/shared/pipe/localize.ts - 165 + 169 @@ -2618,7 +2829,7 @@ Territoire antarctique britannique src/app/shared/pipe/localize.ts - 167 + 171 @@ -2626,7 +2837,7 @@ Brésil src/app/shared/pipe/localize.ts - 169 + 173 @@ -2634,7 +2845,7 @@ Bahamas src/app/shared/pipe/localize.ts - 171 + 175 @@ -2642,7 +2853,7 @@ Bhoutan src/app/shared/pipe/localize.ts - 173 + 177 @@ -2650,7 +2861,7 @@ Bouvet (Île) src/app/shared/pipe/localize.ts - 175 + 179 @@ -2658,7 +2869,7 @@ Botswana src/app/shared/pipe/localize.ts - 177 + 181 @@ -2666,7 +2877,7 @@ Bélarus src/app/shared/pipe/localize.ts - 179 + 183 @@ -2674,7 +2885,7 @@ Bélize src/app/shared/pipe/localize.ts - 181 + 185 @@ -2682,7 +2893,7 @@ Canada src/app/shared/pipe/localize.ts - 183 + 187 @@ -2690,7 +2901,7 @@ Îles Cocos {Keeling} src/app/shared/pipe/localize.ts - 185 + 189 @@ -2698,7 +2909,7 @@ République démocratique du Congo - Kinshasa src/app/shared/pipe/localize.ts - 187 + 191 @@ -2706,7 +2917,7 @@ République centrafricaine src/app/shared/pipe/localize.ts - 189 + 193 @@ -2714,7 +2925,7 @@ Congo-Brazzaville src/app/shared/pipe/localize.ts - 191 + 195 @@ -2722,7 +2933,7 @@ Suisse src/app/shared/pipe/localize.ts - 193 + 197 @@ -2730,7 +2941,7 @@ Côte d'Ivoire src/app/shared/pipe/localize.ts - 195 + 199 @@ -2738,7 +2949,7 @@ Cook (Îles) src/app/shared/pipe/localize.ts - 197 + 201 @@ -2746,7 +2957,7 @@ Chili src/app/shared/pipe/localize.ts - 199 + 203 @@ -2754,7 +2965,7 @@ Cameroun src/app/shared/pipe/localize.ts - 201 + 205 @@ -2762,7 +2973,7 @@ Chine src/app/shared/pipe/localize.ts - 203 + 207 @@ -2770,7 +2981,7 @@ Colombie src/app/shared/pipe/localize.ts - 205 + 209 @@ -2778,7 +2989,7 @@ Costa Rica src/app/shared/pipe/localize.ts - 207 + 211 @@ -2786,7 +2997,7 @@ Cuba src/app/shared/pipe/localize.ts - 209 + 213 @@ -2794,7 +3005,7 @@ Cap Vert src/app/shared/pipe/localize.ts - 211 + 215 @@ -2802,7 +3013,7 @@ Curaçao src/app/shared/pipe/localize.ts - 213 + 217 @@ -2810,7 +3021,7 @@ Christmas (Île) src/app/shared/pipe/localize.ts - 215 + 219 @@ -2818,7 +3029,7 @@ Chypre src/app/shared/pipe/localize.ts - 217 + 221 @@ -2826,7 +3037,7 @@ République tchèque src/app/shared/pipe/localize.ts - 219 + 223 @@ -2834,7 +3045,7 @@ Allemagne src/app/shared/pipe/localize.ts - 221 + 225 @@ -2842,7 +3053,7 @@ Djibouti src/app/shared/pipe/localize.ts - 223 + 227 @@ -2850,7 +3061,7 @@ Danemark src/app/shared/pipe/localize.ts - 225 + 229 @@ -2858,7 +3069,7 @@ Dominique src/app/shared/pipe/localize.ts - 227 + 231 @@ -2866,7 +3077,7 @@ République Dominicaine src/app/shared/pipe/localize.ts - 229 + 233 @@ -2874,7 +3085,7 @@ Algérie src/app/shared/pipe/localize.ts - 231 + 235 @@ -2882,7 +3093,7 @@ Équateur src/app/shared/pipe/localize.ts - 233 + 237 @@ -2890,7 +3101,7 @@ Estonie src/app/shared/pipe/localize.ts - 235 + 239 @@ -2898,7 +3109,7 @@ Égypte src/app/shared/pipe/localize.ts - 237 + 241 @@ -2906,7 +3117,7 @@ Sahara occidental src/app/shared/pipe/localize.ts - 239 + 243 @@ -2914,7 +3125,7 @@ Érythrée src/app/shared/pipe/localize.ts - 241 + 245 @@ -2922,7 +3133,7 @@ Espagne src/app/shared/pipe/localize.ts - 243 + 247 @@ -2930,7 +3141,7 @@ Éthiopie src/app/shared/pipe/localize.ts - 245 + 249 @@ -2938,7 +3149,7 @@ Finlande src/app/shared/pipe/localize.ts - 247 + 251 @@ -2946,7 +3157,7 @@ Fidji src/app/shared/pipe/localize.ts - 249 + 253 @@ -2954,7 +3165,7 @@ Malouines (Îles) src/app/shared/pipe/localize.ts - 251 + 255 @@ -2962,7 +3173,7 @@ Micronésie src/app/shared/pipe/localize.ts - 253 + 257 @@ -2970,7 +3181,7 @@ Féroé (Îles) src/app/shared/pipe/localize.ts - 255 + 259 @@ -2978,7 +3189,7 @@ France src/app/shared/pipe/localize.ts - 257 + 261 @@ -2986,7 +3197,7 @@ Gabon src/app/shared/pipe/localize.ts - 259 + 263 @@ -2994,7 +3205,7 @@ Royaume-Uni src/app/shared/pipe/localize.ts - 261 + 265 @@ -3002,7 +3213,7 @@ Grenade src/app/shared/pipe/localize.ts - 263 + 267 @@ -3010,7 +3221,7 @@ Géorgie src/app/shared/pipe/localize.ts - 265 + 269 @@ -3018,7 +3229,7 @@ Guyane française src/app/shared/pipe/localize.ts - 267 + 271 @@ -3026,7 +3237,7 @@ Guernesey src/app/shared/pipe/localize.ts - 269 + 273 @@ -3034,7 +3245,7 @@ Ghana src/app/shared/pipe/localize.ts - 271 + 275 @@ -3042,7 +3253,7 @@ Gibraltar src/app/shared/pipe/localize.ts - 273 + 277 @@ -3050,7 +3261,7 @@ Groenland src/app/shared/pipe/localize.ts - 275 + 279 @@ -3058,7 +3269,7 @@ Gambie src/app/shared/pipe/localize.ts - 277 + 281 @@ -3066,7 +3277,7 @@ Guinée src/app/shared/pipe/localize.ts - 279 + 283 @@ -3074,7 +3285,7 @@ Guadeloupe src/app/shared/pipe/localize.ts - 281 + 285 @@ -3082,7 +3293,7 @@ Guinée équatoriale src/app/shared/pipe/localize.ts - 283 + 287 @@ -3090,7 +3301,7 @@ Grèce src/app/shared/pipe/localize.ts - 285 + 289 @@ -3098,7 +3309,7 @@ Géorgie du Sud-et-les îles Sandwich du Sud src/app/shared/pipe/localize.ts - 287 + 291 @@ -3106,7 +3317,7 @@ Guatemala src/app/shared/pipe/localize.ts - 289 + 293 @@ -3114,7 +3325,7 @@ Guam src/app/shared/pipe/localize.ts - 291 + 295 @@ -3122,7 +3333,7 @@ Guinée-Bissau src/app/shared/pipe/localize.ts - 293 + 297 @@ -3130,7 +3341,7 @@ Guyana src/app/shared/pipe/localize.ts - 295 + 299 @@ -3138,7 +3349,7 @@ Hong Kong (RAS de la Chine) src/app/shared/pipe/localize.ts - 297 + 301 @@ -3146,7 +3357,7 @@ Heard-et-MacDonald (Îles) src/app/shared/pipe/localize.ts - 299 + 303 @@ -3154,7 +3365,7 @@ Honduras src/app/shared/pipe/localize.ts - 301 + 305 @@ -3162,7 +3373,7 @@ Croatie src/app/shared/pipe/localize.ts - 303 + 307 @@ -3170,7 +3381,7 @@ Haïti src/app/shared/pipe/localize.ts - 305 + 309 @@ -3178,7 +3389,7 @@ Hongrie src/app/shared/pipe/localize.ts - 307 + 311 @@ -3186,7 +3397,7 @@ Indonésie src/app/shared/pipe/localize.ts - 309 + 313 @@ -3194,7 +3405,7 @@ Irlande src/app/shared/pipe/localize.ts - 311 + 315 @@ -3202,7 +3413,7 @@ Israël src/app/shared/pipe/localize.ts - 313 + 317 @@ -3210,7 +3421,7 @@ Man (Île de) src/app/shared/pipe/localize.ts - 315 + 319 @@ -3218,7 +3429,7 @@ Inde src/app/shared/pipe/localize.ts - 317 + 321 @@ -3226,7 +3437,7 @@ Territoire britannique de l'océan Indien src/app/shared/pipe/localize.ts - 319 + 323 @@ -3234,7 +3445,7 @@ Irak src/app/shared/pipe/localize.ts - 321 + 325 @@ -3242,7 +3453,7 @@ Iran src/app/shared/pipe/localize.ts - 323 + 327 @@ -3250,7 +3461,7 @@ Islande src/app/shared/pipe/localize.ts - 325 + 329 @@ -3258,7 +3469,7 @@ Italie src/app/shared/pipe/localize.ts - 327 + 331 @@ -3266,7 +3477,7 @@ Jersey src/app/shared/pipe/localize.ts - 329 + 333 @@ -3274,7 +3485,7 @@ Jamaïque src/app/shared/pipe/localize.ts - 331 + 335 @@ -3282,7 +3493,7 @@ Jordanie src/app/shared/pipe/localize.ts - 333 + 337 @@ -3290,7 +3501,7 @@ Japon src/app/shared/pipe/localize.ts - 335 + 339 @@ -3298,7 +3509,7 @@ Kenya src/app/shared/pipe/localize.ts - 337 + 341 @@ -3306,7 +3517,7 @@ Kyrgyzstan src/app/shared/pipe/localize.ts - 339 + 343 @@ -3314,7 +3525,7 @@ Cambodge src/app/shared/pipe/localize.ts - 341 + 345 @@ -3322,7 +3533,7 @@ Kiribati src/app/shared/pipe/localize.ts - 343 + 347 @@ -3330,7 +3541,7 @@ Comores src/app/shared/pipe/localize.ts - 345 + 349 @@ -3338,7 +3549,7 @@ Saint-Kitts-et-Nevis src/app/shared/pipe/localize.ts - 347 + 351 @@ -3346,7 +3557,7 @@ Corée du Nord src/app/shared/pipe/localize.ts - 349 + 353 @@ -3354,7 +3565,7 @@ Corée du Sud src/app/shared/pipe/localize.ts - 351 + 355 @@ -3362,7 +3573,7 @@ Koweït src/app/shared/pipe/localize.ts - 353 + 357 @@ -3370,7 +3581,7 @@ Caïmans (Îles) src/app/shared/pipe/localize.ts - 355 + 359 @@ -3378,7 +3589,7 @@ Kazakhstan src/app/shared/pipe/localize.ts - 357 + 361 @@ -3386,7 +3597,7 @@ Laos src/app/shared/pipe/localize.ts - 359 + 363 @@ -3394,7 +3605,7 @@ Liban src/app/shared/pipe/localize.ts - 361 + 365 @@ -3402,7 +3613,7 @@ Sainte-Lucie src/app/shared/pipe/localize.ts - 363 + 367 @@ -3410,7 +3621,7 @@ Liechtenstein src/app/shared/pipe/localize.ts - 365 + 369 @@ -3418,7 +3629,7 @@ Sri Lanka src/app/shared/pipe/localize.ts - 367 + 371 @@ -3426,7 +3637,7 @@ Libéria src/app/shared/pipe/localize.ts - 369 + 373 @@ -3434,7 +3645,7 @@ Lesotho src/app/shared/pipe/localize.ts - 371 + 375 @@ -3442,7 +3653,7 @@ Lituanie src/app/shared/pipe/localize.ts - 373 + 377 @@ -3450,7 +3661,7 @@ Luxembourg src/app/shared/pipe/localize.ts - 375 + 379 @@ -3458,7 +3669,7 @@ Lettonie src/app/shared/pipe/localize.ts - 377 + 381 @@ -3466,7 +3677,7 @@ Libye src/app/shared/pipe/localize.ts - 379 + 383 @@ -3474,7 +3685,7 @@ Maroc src/app/shared/pipe/localize.ts - 381 + 385 @@ -3482,7 +3693,7 @@ Monaco src/app/shared/pipe/localize.ts - 383 + 387 @@ -3490,7 +3701,7 @@ Moldavie src/app/shared/pipe/localize.ts - 385 + 389 @@ -3498,7 +3709,7 @@ Monténégro src/app/shared/pipe/localize.ts - 387 + 391 @@ -3506,7 +3717,7 @@ Saint Martin src/app/shared/pipe/localize.ts - 389 + 393 @@ -3514,7 +3725,7 @@ Madagascar src/app/shared/pipe/localize.ts - 391 + 395 @@ -3522,7 +3733,7 @@ Marshall (Îles) src/app/shared/pipe/localize.ts - 393 + 397 @@ -3530,7 +3741,7 @@ Macédoine du Nord src/app/shared/pipe/localize.ts - 395 + 399 @@ -3538,7 +3749,7 @@ Mali src/app/shared/pipe/localize.ts - 397 + 401 @@ -3546,7 +3757,7 @@ Myanmar {Birmanie} src/app/shared/pipe/localize.ts - 399 + 403 @@ -3554,7 +3765,7 @@ Mongolie src/app/shared/pipe/localize.ts - 401 + 405 @@ -3562,7 +3773,7 @@ Macao (RAS de la Chine) src/app/shared/pipe/localize.ts - 403 + 407 @@ -3570,7 +3781,7 @@ Mariannes du Nord (Îles) src/app/shared/pipe/localize.ts - 405 + 409 @@ -3578,7 +3789,7 @@ Martinique src/app/shared/pipe/localize.ts - 407 + 411 @@ -3586,7 +3797,7 @@ Mauritanie src/app/shared/pipe/localize.ts - 409 + 413 @@ -3594,7 +3805,7 @@ Montserrat src/app/shared/pipe/localize.ts - 411 + 415 @@ -3602,7 +3813,7 @@ Malte src/app/shared/pipe/localize.ts - 413 + 417 @@ -3610,7 +3821,7 @@ Mauritius src/app/shared/pipe/localize.ts - 415 + 419 @@ -3618,7 +3829,7 @@ Maldives src/app/shared/pipe/localize.ts - 417 + 421 @@ -3626,7 +3837,7 @@ Malawi src/app/shared/pipe/localize.ts - 419 + 423 @@ -3634,7 +3845,7 @@ Méxique src/app/shared/pipe/localize.ts - 421 + 425 @@ -3642,7 +3853,7 @@ Malaisie src/app/shared/pipe/localize.ts - 423 + 427 @@ -3650,7 +3861,7 @@ Mozambique src/app/shared/pipe/localize.ts - 425 + 429 @@ -3658,7 +3869,7 @@ Namibie src/app/shared/pipe/localize.ts - 427 + 431 @@ -3666,7 +3877,7 @@ Nouvelle-Calédonie src/app/shared/pipe/localize.ts - 429 + 433 @@ -3674,7 +3885,7 @@ Niger src/app/shared/pipe/localize.ts - 431 + 435 @@ -3682,7 +3893,7 @@ Norfolk (Île) src/app/shared/pipe/localize.ts - 433 + 437 @@ -3690,7 +3901,7 @@ Nigéria src/app/shared/pipe/localize.ts - 435 + 439 @@ -3698,7 +3909,7 @@ Nicaragua src/app/shared/pipe/localize.ts - 437 + 441 @@ -3706,7 +3917,7 @@ Pays-Bas src/app/shared/pipe/localize.ts - 439 + 443 @@ -3714,7 +3925,7 @@ Norvège src/app/shared/pipe/localize.ts - 441 + 445 @@ -3722,7 +3933,7 @@ Népal src/app/shared/pipe/localize.ts - 443 + 447 @@ -3730,7 +3941,7 @@ Nauru src/app/shared/pipe/localize.ts - 445 + 449 @@ -3738,7 +3949,7 @@ Niue src/app/shared/pipe/localize.ts - 447 + 451 @@ -3746,7 +3957,7 @@ Nouvelle Zélande src/app/shared/pipe/localize.ts - 449 + 453 @@ -3754,7 +3965,7 @@ Oman src/app/shared/pipe/localize.ts - 451 + 455 @@ -3762,7 +3973,7 @@ Panama src/app/shared/pipe/localize.ts - 453 + 457 @@ -3770,7 +3981,7 @@ Pérou src/app/shared/pipe/localize.ts - 455 + 459 @@ -3778,7 +3989,7 @@ Polynésie française src/app/shared/pipe/localize.ts - 457 + 461 @@ -3786,7 +3997,7 @@ Papouasie-Nouvelle-Guinée src/app/shared/pipe/localize.ts - 459 + 463 @@ -3794,7 +4005,7 @@ Philippines src/app/shared/pipe/localize.ts - 461 + 465 @@ -3802,7 +4013,7 @@ Pakistan src/app/shared/pipe/localize.ts - 463 + 467 @@ -3810,7 +4021,7 @@ Pologne src/app/shared/pipe/localize.ts - 465 + 469 @@ -3818,7 +4029,7 @@ Saint-Pierre-et-Miquelon src/app/shared/pipe/localize.ts - 467 + 471 @@ -3826,7 +4037,7 @@ Pitcairn (Îles) src/app/shared/pipe/localize.ts - 469 + 473 @@ -3834,7 +4045,7 @@ Porto Rico src/app/shared/pipe/localize.ts - 471 + 475 @@ -3842,7 +4053,7 @@ Territoires palestiniens src/app/shared/pipe/localize.ts - 473 + 477 @@ -3850,7 +4061,7 @@ Portugal src/app/shared/pipe/localize.ts - 475 + 479 @@ -3858,7 +4069,7 @@ Palau src/app/shared/pipe/localize.ts - 477 + 481 @@ -3866,7 +4077,7 @@ Paraguay src/app/shared/pipe/localize.ts - 479 + 483 @@ -3874,7 +4085,7 @@ Qatar src/app/shared/pipe/localize.ts - 481 + 485 @@ -3882,7 +4093,7 @@ Réunion src/app/shared/pipe/localize.ts - 483 + 487 @@ -3890,7 +4101,7 @@ Roumanie src/app/shared/pipe/localize.ts - 485 + 489 @@ -3898,7 +4109,7 @@ Serbie src/app/shared/pipe/localize.ts - 487 + 491 @@ -3906,7 +4117,7 @@ Russie src/app/shared/pipe/localize.ts - 489 + 493 @@ -3914,7 +4125,7 @@ Rwanda src/app/shared/pipe/localize.ts - 491 + 495 @@ -3922,7 +4133,7 @@ Arabie Saoudite src/app/shared/pipe/localize.ts - 493 + 497 @@ -3930,7 +4141,7 @@ Salomon (Îles) src/app/shared/pipe/localize.ts - 495 + 499 @@ -3938,7 +4149,7 @@ Seychelles src/app/shared/pipe/localize.ts - 497 + 501 @@ -3946,7 +4157,7 @@ Soudan src/app/shared/pipe/localize.ts - 499 + 503 @@ -3954,7 +4165,7 @@ Suède src/app/shared/pipe/localize.ts - 501 + 505 @@ -3962,7 +4173,7 @@ Singapour src/app/shared/pipe/localize.ts - 503 + 507 @@ -3970,7 +4181,7 @@ Sainte-Hélène src/app/shared/pipe/localize.ts - 505 + 509 @@ -3978,7 +4189,7 @@ Slovénie src/app/shared/pipe/localize.ts - 507 + 511 @@ -3986,7 +4197,7 @@ Svalbard et Jan Mayen src/app/shared/pipe/localize.ts - 509 + 513 @@ -3994,7 +4205,7 @@ Slovaquie src/app/shared/pipe/localize.ts - 511 + 515 @@ -4002,7 +4213,7 @@ Sierra Leone src/app/shared/pipe/localize.ts - 513 + 517 @@ -4010,7 +4221,7 @@ Saint-Marin src/app/shared/pipe/localize.ts - 515 + 519 @@ -4018,7 +4229,7 @@ Sénégal src/app/shared/pipe/localize.ts - 517 + 521 @@ -4026,7 +4237,7 @@ Somalie src/app/shared/pipe/localize.ts - 519 + 523 @@ -4034,7 +4245,7 @@ Suriname src/app/shared/pipe/localize.ts - 521 + 525 @@ -4042,7 +4253,7 @@ Soudan du Sud src/app/shared/pipe/localize.ts - 523 + 527 @@ -4050,7 +4261,7 @@ São Tomé-et-Príncipe src/app/shared/pipe/localize.ts - 525 + 529 @@ -4058,7 +4269,7 @@ El Salvador src/app/shared/pipe/localize.ts - 527 + 531 @@ -4066,7 +4277,7 @@ Saint-Martin (royaume des Pays-Bas) src/app/shared/pipe/localize.ts - 529 + 533 @@ -4074,7 +4285,7 @@ Syrie src/app/shared/pipe/localize.ts - 531 + 535 @@ -4082,7 +4293,7 @@ Eswatini src/app/shared/pipe/localize.ts - 533 + 537 @@ -4090,7 +4301,7 @@ Turques-et-Caïques (Îles) src/app/shared/pipe/localize.ts - 535 + 539 @@ -4098,7 +4309,7 @@ Tchad src/app/shared/pipe/localize.ts - 537 + 541 @@ -4106,7 +4317,7 @@ Terres australes françaises src/app/shared/pipe/localize.ts - 539 + 543 @@ -4114,7 +4325,7 @@ Togo src/app/shared/pipe/localize.ts - 541 + 545 @@ -4122,7 +4333,7 @@ Thaïlande src/app/shared/pipe/localize.ts - 543 + 547 @@ -4130,7 +4341,7 @@ Tadjikistan src/app/shared/pipe/localize.ts - 545 + 549 @@ -4138,7 +4349,7 @@ Tokelau src/app/shared/pipe/localize.ts - 547 + 551 @@ -4146,7 +4357,7 @@ Timor-Leste src/app/shared/pipe/localize.ts - 549 + 553 @@ -4154,7 +4365,7 @@ Turkménistan src/app/shared/pipe/localize.ts - 551 + 555 @@ -4162,7 +4373,7 @@ Tunisie src/app/shared/pipe/localize.ts - 553 + 557 @@ -4170,7 +4381,7 @@ Tonga src/app/shared/pipe/localize.ts - 555 + 559 @@ -4178,7 +4389,7 @@ Turquie src/app/shared/pipe/localize.ts - 557 + 561 @@ -4186,7 +4397,7 @@ Trinité-et-Tobago src/app/shared/pipe/localize.ts - 559 + 563 @@ -4194,7 +4405,7 @@ Tuvalu src/app/shared/pipe/localize.ts - 561 + 565 @@ -4202,7 +4413,7 @@ Taïwan src/app/shared/pipe/localize.ts - 563 + 567 @@ -4210,7 +4421,7 @@ Tanzanie src/app/shared/pipe/localize.ts - 565 + 569 @@ -4218,7 +4429,7 @@ Ukraine src/app/shared/pipe/localize.ts - 567 + 571 @@ -4226,7 +4437,7 @@ Ouganda src/app/shared/pipe/localize.ts - 569 + 573 @@ -4234,7 +4445,7 @@ Îles mineures éloignées des États-Unis src/app/shared/pipe/localize.ts - 571 + 575 @@ -4242,7 +4453,7 @@ États-Unis src/app/shared/pipe/localize.ts - 573 + 577 @@ -4250,7 +4461,7 @@ Uruguay src/app/shared/pipe/localize.ts - 575 + 579 @@ -4258,7 +4469,7 @@ Ouzbékistan src/app/shared/pipe/localize.ts - 577 + 581 @@ -4266,7 +4477,7 @@ Cité du Vatican src/app/shared/pipe/localize.ts - 579 + 583 @@ -4274,7 +4485,7 @@ Saint-Vincent-et-les-Grenadines src/app/shared/pipe/localize.ts - 581 + 585 @@ -4282,7 +4493,7 @@ Vénézuéla src/app/shared/pipe/localize.ts - 583 + 587 @@ -4290,7 +4501,7 @@ Îles Vierges britanniques src/app/shared/pipe/localize.ts - 585 + 589 @@ -4298,7 +4509,7 @@ Îles Vierges américaines src/app/shared/pipe/localize.ts - 587 + 591 @@ -4306,7 +4517,7 @@ Vietnam src/app/shared/pipe/localize.ts - 589 + 593 @@ -4314,7 +4525,7 @@ Vanuatu src/app/shared/pipe/localize.ts - 591 + 595 @@ -4322,7 +4533,7 @@ Wallis-et-Futuna src/app/shared/pipe/localize.ts - 593 + 597 @@ -4330,7 +4541,7 @@ Samoa src/app/shared/pipe/localize.ts - 595 + 599 @@ -4338,7 +4549,7 @@ Kosovo src/app/shared/pipe/localize.ts - 597 + 601 @@ -4346,7 +4557,7 @@ Yémen src/app/shared/pipe/localize.ts - 599 + 603 @@ -4354,7 +4565,7 @@ Mayotte src/app/shared/pipe/localize.ts - 601 + 605 @@ -4362,7 +4573,7 @@ Afrique du Sud src/app/shared/pipe/localize.ts - 603 + 607 @@ -4370,7 +4581,7 @@ Zambie src/app/shared/pipe/localize.ts - 605 + 609 @@ -4378,10 +4589,11 @@ Zimbabwe src/app/shared/pipe/localize.ts - 607 + 611 - + Add or edit affiliation Ajouter ou modifier une affiliation @@ -4391,7 +4603,7 @@ This field should follow pattern for "Email". - Ce champ doit suivre le modèle de {{ pattern }}. + Ce champ doit suivre le modèle de Email. src/app/affiliation/affiliation-update.component.html 25 @@ -4428,9 +4640,21 @@ src/app/affiliation/affiliation-update.component.html 188 + + src/app/member/member-update.component.html + 61 + + + src/app/member/member-update.component.html + 105 + + + src/app/member/member-update.component.html + 140 + - Org Name + Organization Name Nom de l'organisation src/app/affiliation/affiliation-update.component.html @@ -4438,7 +4662,7 @@ - Org City + City Ville src/app/affiliation/affiliation-update.component.html @@ -4446,7 +4670,7 @@ - Org Region + State/Region État/région src/app/affiliation/affiliation-update.component.html @@ -4454,23 +4678,25 @@ - Org Country + Country Pays src/app/affiliation/affiliation-update.component.html 141 - - Disambiguation Source + + Organization ID Source Source de l'identifiant de l'organisation src/app/affiliation/affiliation-update.component.html 170 - - Disambiguated Org Id + + Organization ID Identifiant de l'organisation src/app/affiliation/affiliation-update.component.html @@ -4478,27 +4704,29 @@ - This field is required. GRID Organization ID should start with "grid.", RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with 0 - Ce champ est obligatoire. L'identifiant d'organisation GRID doit commencer par « grid » (par ex., grid.12344) ou doit être une URL GRID valide. L'identifiant d'organisation RINGGOLD doit être un numéro. + This field is required. GRID Organization ID should start with "grid.", + RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with + 0 + Ce champ est obligatoire. L'identifiant d'organisation GRID + doit commencer par « grid » (par ex., grid.12344) ou doit être une URL GRID valide. + L'identifiant d'organisation RINGGOLD doit être un numéro. src/app/affiliation/affiliation-update.component.html 223 - This field cannot be longer than 4000 characters. - Ce champ ne peut pas comporter plus de {{ max }} caractères. - - src/app/affiliation/affiliation-update.component.html - 255 - + This field cannot be longer than + characters. + Ce champ ne peut pas comporter plus de caractères. - src/app/affiliation/affiliation-update.component.html - 278 + src/app/affiliation/affiliation-update.component.ts + 195 - src/app/affiliation/affiliation-update.component.html - 293 + src/app/affiliation/affiliation-update.component.ts + 197 @@ -4506,7 +4734,7 @@ Année de début src/app/affiliation/affiliation-update.component.html - 305 + 293 @@ -4514,11 +4742,11 @@ Année src/app/affiliation/affiliation-update.component.html - 314 + 302 src/app/affiliation/affiliation-update.component.html - 364 + 352 @@ -4526,7 +4754,7 @@ Mois de début src/app/affiliation/affiliation-update.component.html - 323 + 311 @@ -4534,11 +4762,11 @@ Mois src/app/affiliation/affiliation-update.component.html - 332 + 320 src/app/affiliation/affiliation-update.component.html - 382 + 370 @@ -4546,7 +4774,7 @@ Jour de début src/app/affiliation/affiliation-update.component.html - 341 + 329 @@ -4554,11 +4782,11 @@ Jour src/app/affiliation/affiliation-update.component.html - 344 + 332 src/app/affiliation/affiliation-update.component.html - 394 + 382 @@ -4566,7 +4794,7 @@ De fin d'année src/app/affiliation/affiliation-update.component.html - 355 + 343 @@ -4574,7 +4802,7 @@ Mois de la fin src/app/affiliation/affiliation-update.component.html - 373 + 361 @@ -4582,7 +4810,7 @@ Jour de fin src/app/affiliation/affiliation-update.component.html - 391 + 379 @@ -4590,7 +4818,7 @@ La date de début ne peut être postérieure à la date de fin. src/app/affiliation/affiliation-update.component.html - 400 + 388 @@ -4598,7 +4826,7 @@ Type d'identifiant externe src/app/affiliation/affiliation-update.component.html - 411 + 399 @@ -4606,15 +4834,17 @@ URL d'identifiant externe src/app/affiliation/affiliation-update.component.html - 441 + 429 - Please do not forget to download and send permission links to your researcher once the assertion has been saved. - Remarque : veuillez penser à télécharger et envoyer les liens d'autorisation à votre chercheur une fois que l'assertion aura été enregistrée. + Please do not forget to download and send permission links to your researcher once + the assertion has been saved. + Remarque : veuillez penser à télécharger et envoyer les liens + d'autorisation à votre chercheur une fois que l'assertion aura été enregistrée. src/app/affiliation/affiliation-update.component.html - 457 + 445 @@ -4625,9 +4855,14 @@ 8 - - Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the portal and the user's ORCID record - Voulez-vous vraiment supprimer cette affiliation pour ? L'affiliation sera supprimée du portail et du dossier ORCID de l'utilisateur. + + Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the + portal and the user's ORCID record + Voulez-vous vraiment supprimer cette affiliation pour ? L'affiliation sera supprimée du portail + et du dossier ORCID de l'utilisateur. src/app/affiliation/affiliation-delete.component.ts 40 @@ -4638,7 +4873,7 @@ Affiliation créée src/app/shared/pipe/localize.ts - 23 + 27 @@ -4646,7 +4881,7 @@ Affiliation mise à jour src/app/shared/pipe/localize.ts - 25 + 29 @@ -4654,7 +4889,7 @@ Affiliation supprimée src/app/shared/pipe/localize.ts - 27 + 31 @@ -4662,64 +4897,398 @@ Il y a eu un problème lors de la suppression de l'affiliation src/app/shared/pipe/localize.ts - 29 + 33 - + Send permission notifications Envoyer des notifications d'autorisation - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 3 - - A request to send notifications to your users is already in progress. Please try again later. - Une demande pour envoyer des notifications à vos utilisateurs est déjà en cours. Veuillez réessayer ultérieurement. + + A request to send notifications to your users is already in progress. Please try + again later. + Une demande pour envoyer des notifications à vos utilisateurs est déjà + en cours. Veuillez réessayer ultérieurement. - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 7 - - Are you sure that you would like ORCID to send permission links to your researchers for the affiliations that are pending? - Des notifications d'autorisation seront envoyées à tous vos chercheurs ayant un élément d'affiliation avec comme statut « En attente ». + + Are you sure that you would like ORCID to send permission links to your researchers + for the affiliations that are pending? + Des notifications d'autorisation seront envoyées à tous vos + chercheurs ayant un élément d'affiliation avec comme statut « En attente ». - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 10 - + Notification language Langue des notifications - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 11 - + What language should the notification be sent in? Dans quelle langue les notifications doivent-elles être envoyées ? - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 12 - + Send notifications Envoyer des notifications - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 23 - - Notification process has now started. We will email you as soon as the process has completed. - Le processus de notification a démarré. Nous vous enverrons un e-mail dès que le processus sera terminé. + + Notification process has now started. We will email you as soon as the process has + completed. + Le processus de notification a démarré. Nous vous enverrons un e-mail + dès que le processus sera terminé. src/app/shared/pipe/localize.ts + 25 + + + + You have already granted + Vous avez déjà accordé + + src/app/landing-page/landing-page.component.html + 13 + + + + permission to update your ORCID record + permission de mettre à jour votre dossier ORCID + + src/app/landing-page/landing-page.component.html + 16 + + + + Oops, something went wrong and we were not able to fetch your ORCID iD + Oups, une erreur s'est produite, et nous n'avons pas été + mesure de récupérer votre identifiant ORCID. + + src/app/landing-page/landing-page.component.html + 33 + + + + Oops, you have denied access. + Oups, vous avez refusé l'accès. + + src/app/landing-page/landing-page.component.html + 39 + + + + will not be able to update your ORCID record. + ne pourra pas mettre à jour votre dossier ORCID. + + src/app/landing-page/landing-page.component.html + 42 + + + + If this was a mistake, click the button below to grant access. + Si c'est une erreur, cliquez sur le bouton ci-dessous pour + autoriser l'accès. + + src/app/landing-page/landing-page.component.html + 45 + + + + If you find that data added to your ORCID record is incorrect, please contact + Si vous trouvez que les données ajoutées à votre dossier ORCID sont + incorrectes, veuillez contacter + + src/app/landing-page/landing-page.component.ts + 78 + + + + This authorization link has already been used. Please contact for a new authorization link. + Ce lien d'autorisation a déjà été utilisé. Veuillez contacter pour obtenir un nouveau lien + d'autorisation. + + src/app/landing-page/landing-page.component.ts + 79 + + + + Allow to update my ORCID record. + Autoriser à mettre à jour + mon dossier ORCID + + src/app/landing-page/landing-page.component.ts + 80 + + + + You have successfully granted + permission to update your ORCID record, and your record has been updated with affiliation + information. + Vous avez accordé avec succès à + l'autorisation de mettre à jour votre dossier ORCID, et votre dossier a été mis à + jour avec les données d'affiliation. + + src/app/landing-page/landing-page.component.ts + 81 + + + + Thanks, ! + Merci, + + + src/app/landing-page/landing-page.component.ts + 172 + + + + Member details + Données du membre + + src/app/member/member-detail.component.html + 4 + + + + Salesforce Id + Identifiant Salesforce + + src/app/member/member-detail.component.html + 9 + + + src/app/member/member-update.component.html + 41 + + + src/app/member/members.component.html + 59 + + + + Parent Salesforce Id + Identifiant Salesforce parent + + src/app/member/member-detail.component.html + 13 + + + src/app/member/member-update.component.html + 71 + + + src/app/member/members.component.html + 83 + + + + Member Name + Nom du membre + + src/app/member/member-detail.component.html + 17 + + + src/app/member/member-update.component.html + 86 + + + src/app/member/members.component.html + 67 + + + + Client ID + ID client + + src/app/member/member-detail.component.html 21 + + src/app/member/member-update.component.html + 115 + + + + Type + Type + + src/app/member/member-detail.component.html + 25 + + + + Is Consortium Lead + Chef de consortium + + src/app/member/member-detail.component.html + 29 + + + src/app/member/member-update.component.html + 154 + + + src/app/member/members.component.html + 75 + + + + Assertion Service Enabled + Assertions activées + + src/app/member/member-detail.component.html + 35 + + + src/app/member/member-update.component.html + 169 + + + src/app/member/members.component.html + 91 + + + + Status + Statut + + src/app/member/member-detail.component.html + 41 + + + + Created Date + Créé + + src/app/member/member-detail.component.html + 45 + + + + Last Modified Date + Dernière modification + + src/app/member/member-detail.component.html + 49 + + + src/app/member/members.component.html + 99 + + + + Add or edit member + Ajouter ou modifier un membre + + src/app/member/member-update.component.html + 8 + + + + Note: Client ID must have User OBO enabled AND + Note : l'ID client doit avoir l'OBO membre activé ET + + src/app/member/member-update.component.html + 120 + + + + added as a Redirect URI in + ajouté comme URI de redirection dans + + src/app/member/member-update.component.html + 124 + + + + Manage members + Gérer les membres + + src/app/member/members.component.html + 2 + + + + Add member + Ajouter un membre + + src/app/member/members.component.html + 11 + + + + Import members from CSV + Importer des membres depuis un fichier CSV + + src/app/member/members.component.html + 19 + + + + No members to show + Aucun membre à afficher + + src/app/member/members.component.html + 50 + + + + Member created + Membre créé + + src/app/shared/pipe/localize.ts + 21 + + + + Member updated successfully + Le membre a bien été mis à jour + + src/app/shared/pipe/localize.ts + 23 + diff --git a/ui/src/i18n/messages.it.xlf b/ui/src/i18n/messages.it.xlf index 72775aee0..7e7ce88c0 100644 --- a/ui/src/i18n/messages.it.xlf +++ b/ui/src/i18n/messages.it.xlf @@ -70,8 +70,10 @@ - Slide of - Slide of + Slide of + + Slide of + Currently selected slide number read by screen reader node_modules/src/ngb-config.ts @@ -287,8 +289,12 @@ - Failed to sign in! Please check your credentials and try again. - Accesso non riuscito! Controlla le credenziali e riprova. + Failed to + sign in! Please + check your credentials and try again. + Accesso + non riuscito! + Controlla le credenziali e riprova. src/app/account/login/login.component.html 6 @@ -302,7 +308,8 @@ 10 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 22 @@ -318,7 +325,8 @@ 16 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 28 @@ -386,15 +394,21 @@ Reset your password Reimposta la tua password - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 4 - Email address isn't registered! Please check and try again. - L'indirizzo e-mail non è registrato! Controlla e riprova - - src/app/account/password/password-reset-init.component.html + Email + address isn't registered! Please check and try again. + L'indirizzo + e-mail non è registrato! Controlla e riprova + + + src/app/account/password/password-reset-init.component.html 7 @@ -403,15 +417,18 @@ Inserisci l'indirizzo e-mail che hai usato per registrarti - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 11 Check your emails for details on how to reset your password. - Controlla la tua email per tutti i dettagli su come ripristinare la tua password. + Controlla la tua email per tutti i dettagli su come ripristinare la tua + password. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 15 @@ -419,7 +436,8 @@ Your email is required. La tua email è obbligatoria. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 42 @@ -427,7 +445,8 @@ Your email is invalid. La tua email non è valida. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 49 @@ -435,7 +454,8 @@ Your email is required to be at least 5 characters. La tua email deve contenere almeno 5 caratteri. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 56 @@ -443,7 +463,8 @@ Your email cannot be longer than 100 characters. La tua e-mail non può superare i 50 caratteri. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 64 @@ -451,7 +472,8 @@ Reset Ripristina la password - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 75 @@ -464,8 +486,10 @@ - Settings saved! - Impostazioni salvate! + Settings + saved! + Impostazioni + salvate! src/app/account/settings/settings.component.html 8 @@ -582,8 +606,13 @@ - Add extra security to your ORCID member portal account by enabling two-factor authentication. Each time you sign in, you'll be prompted to enter a six-digit code we send to your preferred authentication application. - Aggiungi ulteriore sicurezza al tuo account del portale membri ORCID abilitando l'autenticazione a due fattori. Ogni volta che accedi, ti verrà chiesto di inserire un codice a sei cifre che verrà inviato all'applicazione di autenticazione preferita. + Add extra security to your ORCID member portal account by enabling two-factor + authentication. Each time you sign in, you'll be prompted to enter a six-digit code + we send to your preferred authentication application. + Aggiungi ulteriore sicurezza al tuo account del portale membri ORCID + abilitando l'autenticazione a due fattori. Ogni volta che accedi, ti verrà chiesto di + inserire un codice a sei cifre che verrà inviato all'applicazione di autenticazione + preferita. src/app/account/settings/settings.component.html 146 @@ -606,16 +635,40 @@ - Install a two-factor authentication appA 2FA app is required to create the six-digit code you need to access your account each time you sign in. Most apps are for mobile devices; some are also available as desktop or web-based apps. Download and install your preferred 2FA app, such as Google Authenticator, FreeOTP, or Authy. - Installa un'app di autenticazione a due fattoriÈ necessaria un'app 2FA per creare il codice a sei cifre necessario per aprire il tuo account ogni volta che effettui l'accesso. La maggior parte di queste app sono per dispositivi mobili, ma alcune di esse sono disponibili anche come applicazione per desktop o web app. Scarica e installa la tua app 2FA preferita, come Google Authenticator, FreeOTP o Authy. + Install a two-factor authentication appA 2FA app is required to create the six-digit code you + need to access your account each time you sign in. Most apps are for mobile devices; some + are also available as desktop or web-based apps. Download and install your preferred 2FA + app, such as Google + Authenticator, + FreeOTP, or Authy. + Installa un'app di autenticazione a due fattoriÈ necessaria un'app 2FA per creare il + codice a sei cifre necessario per aprire il tuo account ogni volta che effettui + l'accesso. La maggior parte di queste app sono per dispositivi mobili, ma alcune di + esse sono disponibili anche come applicazione per desktop o web app. Scarica e installa la + tua app 2FA preferita, come Google + Authenticator, + FreeOTP o Authy. src/app/account/settings/settings.component.html 166 - Scan this QR code with your deviceOpen your 2FA app and scan the image below. - Scansiona questo codice QR con il tuo dispositivoApri la tua app 2FA e scansiona l'immagine qui sotto. + Scan this QR code with your deviceOpen your 2FA app and scan the image below. + Scansiona questo codice QR con il tuo dispositivoApri la tua app 2FA e scansiona l'immagine + qui sotto. src/app/account/settings/settings.component.html 174 @@ -646,8 +699,14 @@ - Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, your 2FA app will display a six-digit code. Enter this code in the box below and click Save. - Inserisci il codice a sei cifre fornito dalla appDopo aver scansionato il codice QR o inserito il codice di testo, l'app 2FA visualizzerà un codice a sei cifre. Inserisci questo codice nella casella sottostante e fai clic su Salva. + Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, + your 2FA app will display a six-digit code. Enter this code in the box below and click + Save. + Inserisci il codice a sei cifre fornito dalla appDopo aver scansionato il codice QR o inserito + il codice di testo, l'app 2FA visualizzerà un codice a sei cifre. Inserisci questo + codice nella casella sottostante e fai clic su Salva. src/app/account/settings/settings.component.html 205 @@ -670,8 +729,10 @@ - Make a note of the following backup codes, this is the only time they will be shown. - Annota i seguenti codici di backup, questa è l'unica volta in cui verranno mostrati. + Make a note of the following backup codes, this is the only time they will be + shown. + Annota i seguenti codici di backup, questa è l'unica volta in cui + verranno mostrati. src/app/account/settings/settings.component.html 228 @@ -879,16 +940,22 @@ - Password changed! - Password modificata! + Password + changed! + Password + modificata! src/app/account/password/password.component.html 7 - An error has occurred! The password could not be changed. - Si è verificato un errore! Non è stato possibile modificare la password. + An error + has occurred! + The password could not be changed. + Si + è verificato un errore! Non è stato possibile modificare la password. src/app/account/password/password.component.html 10 @@ -898,7 +965,8 @@ The password and its confirmation do not match! La password e la sua conferma non combaciano! - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 62 @@ -927,7 +995,8 @@ Your password is required. La tua password è obbligatoria. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 91 @@ -943,7 +1012,8 @@ New password Nuova password - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 70 @@ -955,7 +1025,8 @@ New password Nuova password - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 77 @@ -968,7 +1039,8 @@ La tua password deve contenere almeno 4 caratteri. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 98 @@ -980,7 +1052,8 @@ Your password cannot be longer than 50 characters. La password non può essere più lunga di 50 caratteri. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 105 @@ -992,7 +1065,8 @@ New password confirmation Conferma nuova password - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 114 @@ -1004,7 +1078,8 @@ Confirm the new password Conferma la nuova password - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 121 @@ -1017,7 +1092,8 @@ La tua password di conferma è obbligatoria. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 135 @@ -1029,7 +1105,8 @@ Your password confirmation is required to be at least 4 characters. La password di conferma deve contenere almeno 4 caratteri - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 142 @@ -1041,7 +1118,8 @@ Your password confirmation cannot be longer than 50 characters. La password di conferma non può contenere più di 50 caratteri. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 149 @@ -1070,55 +1148,81 @@ Reset password Ripristina la password - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 4 - The activation key is missing. - Manca la chiave di attivazione. - - src/app/account/password/password-reset-finish.component.html + The + activation key is missing. + Manca + la chiave di attivazione. + + + src/app/account/password/password-reset-finish.component.html 7 - This activation key is invalid. - La chiave di attivazione non è valida. - - src/app/account/password/password-reset-finish.component.html + This + activation key is invalid. + La + chiave di attivazione non è valida. + + + src/app/account/password/password-reset-finish.component.html 11 - This activation has expired. - La chiave di attivazione è scaduta. - - src/app/account/password/password-reset-finish.component.html + This + activation has expired. + La + chiave di attivazione è scaduta. + + + src/app/account/password/password-reset-finish.component.html 15 - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It looks like this + link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It + looks like this link has expired. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 20 - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a new + activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a + new activation link to your registered email address. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 26 - If you are still having problems activating your account or have not received your new activation link please contact our support team please contact us at membership@orcid.org. - If you are still having problems activating your account or have not received your new activation link, please contact us at membership@orcid.org. - - src/app/account/password/password-reset-finish.component.html + If you are still having problems activating your account or have not received your + new activation link please contact our support team please contact us at + membership@orcid.org. + If you are still having problems activating your account or have not + received your new activation link, please contact us at membership@orcid.org. + + + src/app/account/password/password-reset-finish.component.html 32 @@ -1127,25 +1231,32 @@ Scegli una nuova password - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 39 - Your password couldn't be reset. Remember a password request is only valid for 24 hours. - Impossibile ripristinare la tua password. Ti ricordiamo che la richiesta della password è valida solo per 24 ore. + Your password couldn't be reset. Remember a password request is only valid for + 24 hours. + Impossibile ripristinare la tua password. Ti ricordiamo che la richiesta + della password è valida solo per 24 ore. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 43 - Your password has been reset. Please - La tua password è stata reimpostata. Per favore - - - - src/app/account/password/password-reset-finish.component.html + Your + password has been reset. Please + La + tua password è stata reimpostata. Per favore + + + src/app/account/password/password-reset-finish.component.html 50 @@ -1153,7 +1264,8 @@ sign in accedi - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 58 @@ -1161,7 +1273,8 @@ Reset Password Convalida la nuova password - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 159 @@ -1194,7 +1307,8 @@ Sicurezza della password: - src/app/account/password/password-strength.component.html + + src/app/account/password/password-strength.component.html 2 @@ -1379,6 +1493,14 @@ src/app/affiliation/affiliation-detail.component.html 143 + + src/app/member/member-detail.component.html + 47 + + + src/app/member/member-detail.component.html + 51 + src/app/user/user-detail.component.html 81 @@ -1407,6 +1529,10 @@ src/app/affiliation/affiliation-detail.component.html 230 + + src/app/member/member-detail.component.html + 61 + src/app/user/user-detail.component.html 95 @@ -1423,6 +1549,14 @@ src/app/affiliation/affiliations.component.html 220 + + src/app/member/member-detail.component.html + 66 + + + src/app/member/members.component.html + 151 + src/app/user/user-detail.component.html 103 @@ -1465,17 +1599,23 @@ 17 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 34 src/app/affiliation/affiliation-update.component.html - 465 + 453 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 20 + + src/app/member/member-update.component.html + 186 + src/app/user/user-delete.component.html 14 @@ -1495,7 +1635,11 @@ src/app/affiliation/affiliation-update.component.html - 468 + 456 + + + src/app/member/member-update.component.html + 189 src/app/user/user-update.component.html @@ -1538,6 +1682,10 @@ src/app/affiliation/affiliations.component.html 104 + + src/app/member/members.component.html + 32 + src/app/user/users.component.html 32 @@ -1572,20 +1720,32 @@ - Showing - of items. - Visualizzazione - di elementi. + Showing - + of items. + Visualizzazione - di elementi. src/app/affiliation/affiliations.component.ts - 228 + 227 + + + src/app/member/members.component.ts + 160 src/app/user/users.component.ts 230 - - Are you sure you want to transfer ownership? You are about to transfer ownership of this organization account. If you are the organization owner after transferring ownership, you will no longer have access to administrative functions, such as managing users. - Sei sicuro di voler trasferire la proprietà? Stai per trasferire la proprietà di questo account dell'organizzazione. Se sei il proprietario dell'organizzazione dopo aver trasferito la proprietà, non avrai più accesso alle funzioni di amministrazione, come la gestione degli utenti. + + Are you sure you want to transfer ownership? You are about to transfer ownership of + this organization account. If you are the organization owner after transferring ownership, + you will no longer have access to administrative functions, such as managing users. + Sei sicuro di voler trasferire la proprietà? Stai per trasferire la + proprietà di questo account dell'organizzazione. Se sei il proprietario + dell'organizzazione dopo aver trasferito la proprietà, non avrai più accesso alle + funzioni di amministrazione, come la gestione degli utenti. src/app/user/user-update.component.ts 215 @@ -1609,10 +1769,11 @@ Are you sure you want to delete user ? - Sei sicuro di voler eliminare l'utente ? + Sei sicuro di voler eliminare l'utente ? src/app/user/user-delete.component.ts - 47 + 44 @@ -1645,8 +1806,10 @@ - Oops! There was a problem processing your data. Pleases fix the errors below and try again - Oops! Si è verificato un problema durante l'elaborazione dei dati. Correggi gli errori indicati qui di seguito e riprova + Oops! There was a problem processing your data. Pleases fix the errors below and + try again + Oops! Si è verificato un problema durante l'elaborazione dei dati. + Correggi gli errori indicati qui di seguito e riprova src/app/user/user-import-dialog.component.html 16 @@ -1673,7 +1836,8 @@ Carica - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 37 @@ -1698,7 +1862,8 @@ 2 - + Send permission notifications Invia le notifiche dei permessi @@ -1706,7 +1871,8 @@ 11 - + Request permission links Link richiesta di autorizzazione @@ -1714,7 +1880,8 @@ 21 - + Request affiliation status report Richiedi report stato di affiliazione @@ -1722,7 +1889,9 @@ 31 - + Request affiliations for edit Richiedi affiliazioni da modificare @@ -1746,25 +1915,36 @@ 61 - - Your affiliations for edit file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Ti verrà inviato a breve il tuo file affiliazioni da modificare. Se non ricevi il file contattaci a membership@orcid.org. + + Your affiliations for edit file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + Ti verrà inviato a breve il tuo file affiliazioni da modificare. Se non + ricevi il file contattaci a membership@orcid.org. src/app/affiliation/affiliations.component.html 73 - - Your affiliation status report file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Ti verrà inviato a breve il file di report del tuo stato di affiliazione. Se non lo ricevi contattaci a membership@orcid.org. + + Your affiliation status report file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + Ti verrà inviato a breve il file di report del tuo stato di + affiliazione. Se non lo ricevi contattaci a membership@orcid.org. src/app/affiliation/affiliations.component.html 82 - - Your permission links file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Ti verrà inviato a breve il file dei link di autorizzazione. Se non lo ricevi contattaci a membership@orcid.org. + + Your permission links file will be mailed to you shortly. If you do not receive + your file then please contact us at membership@orcid.org. + Ti verrà inviato a breve il file dei link di autorizzazione. Se non lo + ricevi contattaci a membership@orcid.org. src/app/affiliation/affiliations.component.html 91 @@ -1842,7 +2022,9 @@ 150 - + @@ -1874,9 +2056,13 @@ 190 - - For help troubleshooting, please contact the Member Portal Team and copy/paste or include a screenshot of the error message below. - Se hai bisogno di aiuto per risolvere questo problema, contatta il tuo responsabile di consorzio oppure usa l'indirizzo membership@orcid.org. Allega uno screenshot del messaggio di errore qui sotto. + + For help troubleshooting, please contact the Member Portal Team and copy/paste or + include a screenshot of the error message below. + Se hai bisogno di aiuto per risolvere questo problema, contatta il tuo + responsabile di consorzio oppure usa l'indirizzo membership@orcid.org. Allega uno + screenshot del messaggio di errore qui sotto. src/app/affiliation/affiliations.component.html 203 @@ -1887,7 +2073,7 @@ L’utente non ha concesso l’accesso src/app/shared/pipe/localize.ts - 34 + 38 @@ -1895,7 +2081,7 @@ In sospeso src/app/shared/pipe/localize.ts - 36 + 40 @@ -1903,7 +2089,7 @@ Su ORCID src/app/shared/pipe/localize.ts - 38 + 42 @@ -1911,7 +2097,7 @@ L’utente ha concesso l’accesso src/app/shared/pipe/localize.ts - 40 + 44 @@ -1919,7 +2105,7 @@ User deleted from ORCID src/app/shared/pipe/localize.ts - 42 + 46 @@ -1927,7 +2113,7 @@ L’utente ha revocato l’accesso src/app/shared/pipe/localize.ts - 44 + 48 @@ -1935,7 +2121,7 @@ Errore nell’aggiunta su ORCID src/app/shared/pipe/localize.ts - 46 + 50 @@ -1943,7 +2129,7 @@ Errore nell’aggiornamento su ORCID src/app/shared/pipe/localize.ts - 48 + 52 @@ -1951,7 +2137,7 @@ Nuovo tentativo in attesa su ORCID src/app/shared/pipe/localize.ts - 50 + 54 @@ -1959,7 +2145,7 @@ Errore nell’eliminazione su ORCID src/app/shared/pipe/localize.ts - 52 + 56 @@ -1967,7 +2153,7 @@ Notifica richiesta src/app/shared/pipe/localize.ts - 54 + 58 @@ -1975,7 +2161,7 @@ Notifica inviata src/app/shared/pipe/localize.ts - 56 + 60 @@ -1983,7 +2169,7 @@ Notifica non riuscita src/app/shared/pipe/localize.ts - 58 + 62 @@ -1991,7 +2177,7 @@ In attesa di aggiornamento su ORCID src/app/shared/pipe/localize.ts - 60 + 64 @@ -2026,7 +2212,8 @@ 36 - + Affiliation Section Tipo di affiliazione @@ -2067,7 +2254,7 @@ src/app/affiliation/affiliation-update.component.html - 265 + 261 @@ -2079,7 +2266,7 @@ src/app/affiliation/affiliation-update.component.html - 285 + 277 @@ -2108,7 +2295,7 @@ src/app/affiliation/affiliation-update.component.html - 426 + 414 @@ -2152,7 +2339,8 @@ 145 - + Notification First Sent Prima notifica inviata @@ -2164,7 +2352,8 @@ 175 - + Notification Last Sent Ultima notifica inviata @@ -2189,23 +2378,30 @@ Importa affiliazioni - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 3 - - Your CSV has been uploaded for processing. We will let you know via email once the file has been processed. - Il tuo CSV è stato caricato per l'elaborazione. Ti comunicheremo via email l'avvenuta elaborazione. + + Your CSV has been uploaded for processing. We will let you know via email once the + file has been processed. + Il tuo CSV è stato caricato per l'elaborazione. Ti comunicheremo + via email l'avvenuta elaborazione. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 10 There was a problem uploading your CSV for processing. - Si è verificato un problema nel caricamento del tuo CSV che deve essere elaborato. + Si è verificato un problema nel caricamento del tuo CSV che deve essere + elaborato. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 17 @@ -2213,7 +2409,8 @@ Please select the CSV file to upload Seleziona un file CSV da caricare - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 20 @@ -2221,16 +2418,20 @@ File Path Percorso del file - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 22 - Please do not forget to download and send permission links to your researchers once the upload has completed. - Nota: per favore, non dimenticare di scaricare e inviare i link di autorizzazione ai tuoi ricercatori una volta completato il caricamento. + Please do not forget to download and send permission links to your researchers once + the upload has completed. + Nota: per favore, non dimenticare di scaricare e inviare i link di + autorizzazione ai tuoi ricercatori una volta completato il caricamento. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 26 @@ -2238,7 +2439,8 @@ Close Chiudi - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 40 @@ -2246,7 +2448,8 @@ There is no file to upload. Please select one. Non ci sono file da caricare. Selezionane uno. - src/app/affiliation/affiliation-import-dialog.component.ts + + src/app/affiliation/affiliation-import-dialog.component.ts 60 @@ -2255,7 +2458,7 @@ TITOLI DI STUDIO src/app/shared/pipe/localize.ts - 65 + 69 @@ -2264,7 +2467,7 @@ src/app/shared/pipe/localize.ts - 67 + 71 @@ -2272,7 +2475,7 @@ RICONOSCIMENTO src/app/shared/pipe/localize.ts - 69 + 73 @@ -2280,7 +2483,7 @@ INVITED_POSITION src/app/shared/pipe/localize.ts - 71 + 75 @@ -2288,7 +2491,7 @@ QUALIFICA src/app/shared/pipe/localize.ts - 73 + 77 @@ -2296,7 +2499,7 @@ SERVIZIO src/app/shared/pipe/localize.ts - 75 + 79 @@ -2304,7 +2507,7 @@ ISCRIZIONE src/app/shared/pipe/localize.ts - 77 + 81 @@ -2312,7 +2515,7 @@ Gennaio src/app/shared/pipe/localize.ts - 82 + 86 @@ -2320,7 +2523,7 @@ Febbraio src/app/shared/pipe/localize.ts - 84 + 88 @@ -2328,7 +2531,7 @@ Marzo src/app/shared/pipe/localize.ts - 86 + 90 @@ -2336,7 +2539,7 @@ Aprile src/app/shared/pipe/localize.ts - 88 + 92 @@ -2344,7 +2547,7 @@ Maggio src/app/shared/pipe/localize.ts - 90 + 94 @@ -2352,7 +2555,7 @@ Giugno src/app/shared/pipe/localize.ts - 92 + 96 @@ -2360,7 +2563,7 @@ Luglio src/app/shared/pipe/localize.ts - 94 + 98 @@ -2368,7 +2571,7 @@ Agosto src/app/shared/pipe/localize.ts - 96 + 100 @@ -2376,7 +2579,7 @@ Settembre src/app/shared/pipe/localize.ts - 98 + 102 @@ -2384,7 +2587,7 @@ Ottobre src/app/shared/pipe/localize.ts - 100 + 104 @@ -2392,7 +2595,7 @@ Novembre src/app/shared/pipe/localize.ts - 102 + 106 @@ -2400,7 +2603,7 @@ Dicembre src/app/shared/pipe/localize.ts - 104 + 108 @@ -2408,7 +2611,7 @@ Andorra src/app/shared/pipe/localize.ts - 109 + 113 @@ -2416,7 +2619,7 @@ Emirati Arabi Uniti src/app/shared/pipe/localize.ts - 111 + 115 @@ -2424,7 +2627,7 @@ Afghanistan src/app/shared/pipe/localize.ts - 113 + 117 @@ -2432,7 +2635,7 @@ Antigua e Barbuda src/app/shared/pipe/localize.ts - 115 + 119 @@ -2440,7 +2643,7 @@ Anguilla src/app/shared/pipe/localize.ts - 117 + 121 @@ -2448,7 +2651,7 @@ Albania src/app/shared/pipe/localize.ts - 119 + 123 @@ -2456,7 +2659,7 @@ Armenia src/app/shared/pipe/localize.ts - 121 + 125 @@ -2464,7 +2667,7 @@ Angola src/app/shared/pipe/localize.ts - 123 + 127 @@ -2472,7 +2675,7 @@ Antartide src/app/shared/pipe/localize.ts - 125 + 129 @@ -2480,7 +2683,7 @@ Argentina src/app/shared/pipe/localize.ts - 127 + 131 @@ -2488,7 +2691,7 @@ Samoa Americane src/app/shared/pipe/localize.ts - 129 + 133 @@ -2496,7 +2699,7 @@ Austria src/app/shared/pipe/localize.ts - 131 + 135 @@ -2504,7 +2707,7 @@ Australia src/app/shared/pipe/localize.ts - 133 + 137 @@ -2512,7 +2715,7 @@ Aruba src/app/shared/pipe/localize.ts - 135 + 139 @@ -2520,7 +2723,7 @@ Isole Åland src/app/shared/pipe/localize.ts - 137 + 141 @@ -2528,7 +2731,7 @@ Azerbaigian src/app/shared/pipe/localize.ts - 139 + 143 @@ -2536,7 +2739,7 @@ Bosnia ed Erzegovina src/app/shared/pipe/localize.ts - 141 + 145 @@ -2544,7 +2747,7 @@ Barbados src/app/shared/pipe/localize.ts - 143 + 147 @@ -2552,7 +2755,7 @@ Bangladesh src/app/shared/pipe/localize.ts - 145 + 149 @@ -2560,7 +2763,7 @@ Belgio src/app/shared/pipe/localize.ts - 147 + 151 @@ -2568,7 +2771,7 @@ Burkina Faso src/app/shared/pipe/localize.ts - 149 + 153 @@ -2576,7 +2779,7 @@ Bulgaria src/app/shared/pipe/localize.ts - 151 + 155 @@ -2584,7 +2787,7 @@ Bahrein src/app/shared/pipe/localize.ts - 153 + 157 @@ -2592,7 +2795,7 @@ Burundi src/app/shared/pipe/localize.ts - 155 + 159 @@ -2600,7 +2803,7 @@ Benin src/app/shared/pipe/localize.ts - 157 + 161 @@ -2608,7 +2811,7 @@ Saint-Barthélemy src/app/shared/pipe/localize.ts - 159 + 163 @@ -2616,7 +2819,7 @@ Bermuda src/app/shared/pipe/localize.ts - 161 + 165 @@ -2624,7 +2827,7 @@ Brunei src/app/shared/pipe/localize.ts - 163 + 167 @@ -2632,7 +2835,7 @@ Bolivia src/app/shared/pipe/localize.ts - 165 + 169 @@ -2640,7 +2843,7 @@ Territorio Antartico Britannico src/app/shared/pipe/localize.ts - 167 + 171 @@ -2648,7 +2851,7 @@ Brasile src/app/shared/pipe/localize.ts - 169 + 173 @@ -2656,7 +2859,7 @@ Bahamas src/app/shared/pipe/localize.ts - 171 + 175 @@ -2664,7 +2867,7 @@ Bhutan src/app/shared/pipe/localize.ts - 173 + 177 @@ -2672,7 +2875,7 @@ Isola Bouvet src/app/shared/pipe/localize.ts - 175 + 179 @@ -2680,7 +2883,7 @@ Botswana src/app/shared/pipe/localize.ts - 177 + 181 @@ -2688,7 +2891,7 @@ Bielorussia src/app/shared/pipe/localize.ts - 179 + 183 @@ -2696,7 +2899,7 @@ Belize src/app/shared/pipe/localize.ts - 181 + 185 @@ -2704,7 +2907,7 @@ Canada src/app/shared/pipe/localize.ts - 183 + 187 @@ -2712,7 +2915,7 @@ Isole Cocos (Keeling) src/app/shared/pipe/localize.ts - 185 + 189 @@ -2720,7 +2923,7 @@ Congo-Kinshasa (Repubblica Democratica del Congo) src/app/shared/pipe/localize.ts - 187 + 191 @@ -2728,7 +2931,7 @@ Repubblica Centrafricana src/app/shared/pipe/localize.ts - 189 + 193 @@ -2736,7 +2939,7 @@ Congo-Brazzaville (Repubblica del Congo) src/app/shared/pipe/localize.ts - 191 + 195 @@ -2744,7 +2947,7 @@ Svizzera src/app/shared/pipe/localize.ts - 193 + 197 @@ -2752,7 +2955,7 @@ Costa d’Avorio src/app/shared/pipe/localize.ts - 195 + 199 @@ -2760,7 +2963,7 @@ Isole Cook src/app/shared/pipe/localize.ts - 197 + 201 @@ -2768,7 +2971,7 @@ Cile src/app/shared/pipe/localize.ts - 199 + 203 @@ -2776,7 +2979,7 @@ Camerun src/app/shared/pipe/localize.ts - 201 + 205 @@ -2784,7 +2987,7 @@ Cina src/app/shared/pipe/localize.ts - 203 + 207 @@ -2792,7 +2995,7 @@ Colombia src/app/shared/pipe/localize.ts - 205 + 209 @@ -2800,7 +3003,7 @@ Costa Rica src/app/shared/pipe/localize.ts - 207 + 211 @@ -2808,7 +3011,7 @@ Cuba src/app/shared/pipe/localize.ts - 209 + 213 @@ -2816,7 +3019,7 @@ Capo Verde src/app/shared/pipe/localize.ts - 211 + 215 @@ -2824,7 +3027,7 @@ Curaçao src/app/shared/pipe/localize.ts - 213 + 217 @@ -2832,7 +3035,7 @@ Isola di Natale src/app/shared/pipe/localize.ts - 215 + 219 @@ -2840,7 +3043,7 @@ Cipro src/app/shared/pipe/localize.ts - 217 + 221 @@ -2848,7 +3051,7 @@ Repubblica Ceca src/app/shared/pipe/localize.ts - 219 + 223 @@ -2856,7 +3059,7 @@ Germania src/app/shared/pipe/localize.ts - 221 + 225 @@ -2864,7 +3067,7 @@ Gibuti src/app/shared/pipe/localize.ts - 223 + 227 @@ -2872,7 +3075,7 @@ Danimarca src/app/shared/pipe/localize.ts - 225 + 229 @@ -2880,7 +3083,7 @@ Dominica src/app/shared/pipe/localize.ts - 227 + 231 @@ -2888,7 +3091,7 @@ Repubblica Dominicana src/app/shared/pipe/localize.ts - 229 + 233 @@ -2896,7 +3099,7 @@ Algeria src/app/shared/pipe/localize.ts - 231 + 235 @@ -2904,7 +3107,7 @@ Ecuador src/app/shared/pipe/localize.ts - 233 + 237 @@ -2912,7 +3115,7 @@ Estonia src/app/shared/pipe/localize.ts - 235 + 239 @@ -2920,7 +3123,7 @@ Egitto src/app/shared/pipe/localize.ts - 237 + 241 @@ -2928,7 +3131,7 @@ Sahara Occidentale src/app/shared/pipe/localize.ts - 239 + 243 @@ -2936,7 +3139,7 @@ Eritrea src/app/shared/pipe/localize.ts - 241 + 245 @@ -2944,7 +3147,7 @@ Spagna src/app/shared/pipe/localize.ts - 243 + 247 @@ -2952,7 +3155,7 @@ Etiopia src/app/shared/pipe/localize.ts - 245 + 249 @@ -2960,7 +3163,7 @@ Finlandia src/app/shared/pipe/localize.ts - 247 + 251 @@ -2968,7 +3171,7 @@ Figi src/app/shared/pipe/localize.ts - 249 + 253 @@ -2976,7 +3179,7 @@ Isole Falkland src/app/shared/pipe/localize.ts - 251 + 255 @@ -2984,7 +3187,7 @@ Micronesia src/app/shared/pipe/localize.ts - 253 + 257 @@ -2992,7 +3195,7 @@ Isole Faroe src/app/shared/pipe/localize.ts - 255 + 259 @@ -3000,7 +3203,7 @@ Francia src/app/shared/pipe/localize.ts - 257 + 261 @@ -3008,7 +3211,7 @@ Gabon src/app/shared/pipe/localize.ts - 259 + 263 @@ -3016,7 +3219,7 @@ Regno Unito src/app/shared/pipe/localize.ts - 261 + 265 @@ -3024,7 +3227,7 @@ Grenada src/app/shared/pipe/localize.ts - 263 + 267 @@ -3032,7 +3235,7 @@ Georgia src/app/shared/pipe/localize.ts - 265 + 269 @@ -3040,7 +3243,7 @@ Guyana Francese src/app/shared/pipe/localize.ts - 267 + 271 @@ -3048,7 +3251,7 @@ Guernsey src/app/shared/pipe/localize.ts - 269 + 273 @@ -3056,7 +3259,7 @@ Ghana src/app/shared/pipe/localize.ts - 271 + 275 @@ -3064,7 +3267,7 @@ Gibilterra src/app/shared/pipe/localize.ts - 273 + 277 @@ -3072,7 +3275,7 @@ Groenlandia src/app/shared/pipe/localize.ts - 275 + 279 @@ -3080,7 +3283,7 @@ Gambia src/app/shared/pipe/localize.ts - 277 + 281 @@ -3088,7 +3291,7 @@ Guinea src/app/shared/pipe/localize.ts - 279 + 283 @@ -3096,7 +3299,7 @@ Guadalupa src/app/shared/pipe/localize.ts - 281 + 285 @@ -3104,7 +3307,7 @@ Guinea Equatoriale src/app/shared/pipe/localize.ts - 283 + 287 @@ -3112,7 +3315,7 @@ Grecia src/app/shared/pipe/localize.ts - 285 + 289 @@ -3120,7 +3323,7 @@ Georgia del Sud e Isole Sandwich Australi src/app/shared/pipe/localize.ts - 287 + 291 @@ -3128,7 +3331,7 @@ Guatemala src/app/shared/pipe/localize.ts - 289 + 293 @@ -3136,7 +3339,7 @@ Guam src/app/shared/pipe/localize.ts - 291 + 295 @@ -3144,7 +3347,7 @@ Guinea-Bissau src/app/shared/pipe/localize.ts - 293 + 297 @@ -3152,7 +3355,7 @@ Guyana src/app/shared/pipe/localize.ts - 295 + 299 @@ -3160,7 +3363,7 @@ Hong Kong src/app/shared/pipe/localize.ts - 297 + 301 @@ -3168,7 +3371,7 @@ Isola Heard e isole McDonald src/app/shared/pipe/localize.ts - 299 + 303 @@ -3176,7 +3379,7 @@ Honduras src/app/shared/pipe/localize.ts - 301 + 305 @@ -3184,7 +3387,7 @@ Croazia src/app/shared/pipe/localize.ts - 303 + 307 @@ -3192,7 +3395,7 @@ Haiti src/app/shared/pipe/localize.ts - 305 + 309 @@ -3200,7 +3403,7 @@ Ungheria src/app/shared/pipe/localize.ts - 307 + 311 @@ -3208,7 +3411,7 @@ Indonesia src/app/shared/pipe/localize.ts - 309 + 313 @@ -3216,7 +3419,7 @@ Irlanda src/app/shared/pipe/localize.ts - 311 + 315 @@ -3224,7 +3427,7 @@ Israele src/app/shared/pipe/localize.ts - 313 + 317 @@ -3232,7 +3435,7 @@ Isola di Man src/app/shared/pipe/localize.ts - 315 + 319 @@ -3240,7 +3443,7 @@ India src/app/shared/pipe/localize.ts - 317 + 321 @@ -3248,7 +3451,7 @@ Territorio Britannico dell’Oceano Indiano src/app/shared/pipe/localize.ts - 319 + 323 @@ -3256,7 +3459,7 @@ Iraq src/app/shared/pipe/localize.ts - 321 + 325 @@ -3264,7 +3467,7 @@ Iran src/app/shared/pipe/localize.ts - 323 + 327 @@ -3272,7 +3475,7 @@ Islanda src/app/shared/pipe/localize.ts - 325 + 329 @@ -3280,7 +3483,7 @@ Italia src/app/shared/pipe/localize.ts - 327 + 331 @@ -3288,7 +3491,7 @@ Jersey src/app/shared/pipe/localize.ts - 329 + 333 @@ -3296,7 +3499,7 @@ Giamaica src/app/shared/pipe/localize.ts - 331 + 335 @@ -3304,7 +3507,7 @@ Giordania src/app/shared/pipe/localize.ts - 333 + 337 @@ -3312,7 +3515,7 @@ Giappone src/app/shared/pipe/localize.ts - 335 + 339 @@ -3320,7 +3523,7 @@ Kenya src/app/shared/pipe/localize.ts - 337 + 341 @@ -3328,7 +3531,7 @@ Kirghizistan src/app/shared/pipe/localize.ts - 339 + 343 @@ -3336,7 +3539,7 @@ Cambogia src/app/shared/pipe/localize.ts - 341 + 345 @@ -3344,7 +3547,7 @@ Kiribati src/app/shared/pipe/localize.ts - 343 + 347 @@ -3352,7 +3555,7 @@ Comoros src/app/shared/pipe/localize.ts - 345 + 349 @@ -3360,7 +3563,7 @@ Saint Kitts e Nevis src/app/shared/pipe/localize.ts - 347 + 351 @@ -3368,7 +3571,7 @@ Corea del Nord src/app/shared/pipe/localize.ts - 349 + 353 @@ -3376,7 +3579,7 @@ Corea del Sud src/app/shared/pipe/localize.ts - 351 + 355 @@ -3384,7 +3587,7 @@ Kuwait src/app/shared/pipe/localize.ts - 353 + 357 @@ -3392,7 +3595,7 @@ Isole Cayman src/app/shared/pipe/localize.ts - 355 + 359 @@ -3400,7 +3603,7 @@ Kazakistan src/app/shared/pipe/localize.ts - 357 + 361 @@ -3408,7 +3611,7 @@ Laos src/app/shared/pipe/localize.ts - 359 + 363 @@ -3416,7 +3619,7 @@ Libano src/app/shared/pipe/localize.ts - 361 + 365 @@ -3424,7 +3627,7 @@ Saint Lucia src/app/shared/pipe/localize.ts - 363 + 367 @@ -3432,7 +3635,7 @@ Liechtenstein src/app/shared/pipe/localize.ts - 365 + 369 @@ -3440,7 +3643,7 @@ Sri Lanka src/app/shared/pipe/localize.ts - 367 + 371 @@ -3448,7 +3651,7 @@ Liberia src/app/shared/pipe/localize.ts - 369 + 373 @@ -3456,7 +3659,7 @@ Lesotho src/app/shared/pipe/localize.ts - 371 + 375 @@ -3464,7 +3667,7 @@ Lituania src/app/shared/pipe/localize.ts - 373 + 377 @@ -3472,7 +3675,7 @@ Lussemburgo src/app/shared/pipe/localize.ts - 375 + 379 @@ -3480,7 +3683,7 @@ Lettonia src/app/shared/pipe/localize.ts - 377 + 381 @@ -3488,7 +3691,7 @@ Libia src/app/shared/pipe/localize.ts - 379 + 383 @@ -3496,7 +3699,7 @@ Marocco src/app/shared/pipe/localize.ts - 381 + 385 @@ -3504,7 +3707,7 @@ Principato di Monaco src/app/shared/pipe/localize.ts - 383 + 387 @@ -3512,7 +3715,7 @@ Moldavia src/app/shared/pipe/localize.ts - 385 + 389 @@ -3520,7 +3723,7 @@ Montenegro src/app/shared/pipe/localize.ts - 387 + 391 @@ -3528,7 +3731,7 @@ Saint-Martin (parte francese) src/app/shared/pipe/localize.ts - 389 + 393 @@ -3536,7 +3739,7 @@ Madagascar src/app/shared/pipe/localize.ts - 391 + 395 @@ -3544,7 +3747,7 @@ Isole Marshall src/app/shared/pipe/localize.ts - 393 + 397 @@ -3552,7 +3755,7 @@ Macedonia del Nord src/app/shared/pipe/localize.ts - 395 + 399 @@ -3560,7 +3763,7 @@ Mali src/app/shared/pipe/localize.ts - 397 + 401 @@ -3568,7 +3771,7 @@ Myanmar src/app/shared/pipe/localize.ts - 399 + 403 @@ -3576,7 +3779,7 @@ Mongolia src/app/shared/pipe/localize.ts - 401 + 405 @@ -3584,7 +3787,7 @@ Macao src/app/shared/pipe/localize.ts - 403 + 407 @@ -3592,7 +3795,7 @@ Isole Marianne Settentrionali src/app/shared/pipe/localize.ts - 405 + 409 @@ -3600,7 +3803,7 @@ Martinica src/app/shared/pipe/localize.ts - 407 + 411 @@ -3608,7 +3811,7 @@ Mauritania src/app/shared/pipe/localize.ts - 409 + 413 @@ -3616,7 +3819,7 @@ Montserrat src/app/shared/pipe/localize.ts - 411 + 415 @@ -3624,7 +3827,7 @@ Malta src/app/shared/pipe/localize.ts - 413 + 417 @@ -3632,7 +3835,7 @@ Mauritius src/app/shared/pipe/localize.ts - 415 + 419 @@ -3640,7 +3843,7 @@ Maldive src/app/shared/pipe/localize.ts - 417 + 421 @@ -3648,7 +3851,7 @@ Malawi src/app/shared/pipe/localize.ts - 419 + 423 @@ -3656,7 +3859,7 @@ Messico src/app/shared/pipe/localize.ts - 421 + 425 @@ -3664,7 +3867,7 @@ Malaysia src/app/shared/pipe/localize.ts - 423 + 427 @@ -3672,7 +3875,7 @@ Mozambico src/app/shared/pipe/localize.ts - 425 + 429 @@ -3680,7 +3883,7 @@ Namibia src/app/shared/pipe/localize.ts - 427 + 431 @@ -3688,7 +3891,7 @@ Nuova Caledonia src/app/shared/pipe/localize.ts - 429 + 433 @@ -3696,7 +3899,7 @@ Niger src/app/shared/pipe/localize.ts - 431 + 435 @@ -3704,7 +3907,7 @@ Isola Norfolk src/app/shared/pipe/localize.ts - 433 + 437 @@ -3712,7 +3915,7 @@ Nigeria src/app/shared/pipe/localize.ts - 435 + 439 @@ -3720,7 +3923,7 @@ Nicaragua src/app/shared/pipe/localize.ts - 437 + 441 @@ -3728,7 +3931,7 @@ Paesi Bassi src/app/shared/pipe/localize.ts - 439 + 443 @@ -3736,7 +3939,7 @@ Norvegia src/app/shared/pipe/localize.ts - 441 + 445 @@ -3744,7 +3947,7 @@ Nepal src/app/shared/pipe/localize.ts - 443 + 447 @@ -3752,7 +3955,7 @@ Nauru src/app/shared/pipe/localize.ts - 445 + 449 @@ -3760,7 +3963,7 @@ Niue src/app/shared/pipe/localize.ts - 447 + 451 @@ -3768,7 +3971,7 @@ Nuova Zelanda src/app/shared/pipe/localize.ts - 449 + 453 @@ -3776,7 +3979,7 @@ Oman src/app/shared/pipe/localize.ts - 451 + 455 @@ -3784,7 +3987,7 @@ Panama src/app/shared/pipe/localize.ts - 453 + 457 @@ -3792,7 +3995,7 @@ Perù src/app/shared/pipe/localize.ts - 455 + 459 @@ -3800,7 +4003,7 @@ Polinesia Francese src/app/shared/pipe/localize.ts - 457 + 461 @@ -3808,7 +4011,7 @@ Papua Nuova Guinea src/app/shared/pipe/localize.ts - 459 + 463 @@ -3816,7 +4019,7 @@ Filippine src/app/shared/pipe/localize.ts - 461 + 465 @@ -3824,7 +4027,7 @@ Pakistan src/app/shared/pipe/localize.ts - 463 + 467 @@ -3832,7 +4035,7 @@ Polonia src/app/shared/pipe/localize.ts - 465 + 469 @@ -3840,7 +4043,7 @@ Saint-Pierre e Miquelon src/app/shared/pipe/localize.ts - 467 + 471 @@ -3848,7 +4051,7 @@ Isole Pitcairn src/app/shared/pipe/localize.ts - 469 + 473 @@ -3856,7 +4059,7 @@ Porto Rico src/app/shared/pipe/localize.ts - 471 + 475 @@ -3864,7 +4067,7 @@ Territori Palestinesi src/app/shared/pipe/localize.ts - 473 + 477 @@ -3872,7 +4075,7 @@ Portogallo src/app/shared/pipe/localize.ts - 475 + 479 @@ -3880,7 +4083,7 @@ Palau src/app/shared/pipe/localize.ts - 477 + 481 @@ -3888,7 +4091,7 @@ Paraguay src/app/shared/pipe/localize.ts - 479 + 483 @@ -3896,7 +4099,7 @@ Qatar src/app/shared/pipe/localize.ts - 481 + 485 @@ -3904,7 +4107,7 @@ Réunion src/app/shared/pipe/localize.ts - 483 + 487 @@ -3912,7 +4115,7 @@ Romania src/app/shared/pipe/localize.ts - 485 + 489 @@ -3920,7 +4123,7 @@ Serbia src/app/shared/pipe/localize.ts - 487 + 491 @@ -3928,7 +4131,7 @@ Russia src/app/shared/pipe/localize.ts - 489 + 493 @@ -3936,7 +4139,7 @@ Ruanda src/app/shared/pipe/localize.ts - 491 + 495 @@ -3944,7 +4147,7 @@ Arabia Saudita src/app/shared/pipe/localize.ts - 493 + 497 @@ -3952,7 +4155,7 @@ Isole Salomone src/app/shared/pipe/localize.ts - 495 + 499 @@ -3960,7 +4163,7 @@ Seychelles src/app/shared/pipe/localize.ts - 497 + 501 @@ -3968,7 +4171,7 @@ Sudan src/app/shared/pipe/localize.ts - 499 + 503 @@ -3976,7 +4179,7 @@ Svezia src/app/shared/pipe/localize.ts - 501 + 505 @@ -3984,7 +4187,7 @@ Singapore src/app/shared/pipe/localize.ts - 503 + 507 @@ -3992,7 +4195,7 @@ Sant’Elena src/app/shared/pipe/localize.ts - 505 + 509 @@ -4000,7 +4203,7 @@ Slovenia src/app/shared/pipe/localize.ts - 507 + 511 @@ -4008,7 +4211,7 @@ Svalbard e Jan Mayen src/app/shared/pipe/localize.ts - 509 + 513 @@ -4016,7 +4219,7 @@ Slovacchia src/app/shared/pipe/localize.ts - 511 + 515 @@ -4024,7 +4227,7 @@ Sierra Leone src/app/shared/pipe/localize.ts - 513 + 517 @@ -4032,7 +4235,7 @@ San Marino src/app/shared/pipe/localize.ts - 515 + 519 @@ -4040,7 +4243,7 @@ Senegal src/app/shared/pipe/localize.ts - 517 + 521 @@ -4048,7 +4251,7 @@ Somalia src/app/shared/pipe/localize.ts - 519 + 523 @@ -4056,7 +4259,7 @@ Suriname src/app/shared/pipe/localize.ts - 521 + 525 @@ -4064,7 +4267,7 @@ Sudan del Sud src/app/shared/pipe/localize.ts - 523 + 527 @@ -4072,7 +4275,7 @@ São Tomé e Príncipe src/app/shared/pipe/localize.ts - 525 + 529 @@ -4080,7 +4283,7 @@ El Salvador src/app/shared/pipe/localize.ts - 527 + 531 @@ -4088,7 +4291,7 @@ Sint Maarten (parte olandese) src/app/shared/pipe/localize.ts - 529 + 533 @@ -4096,7 +4299,7 @@ Siria src/app/shared/pipe/localize.ts - 531 + 535 @@ -4104,7 +4307,7 @@ eSwatini src/app/shared/pipe/localize.ts - 533 + 537 @@ -4112,7 +4315,7 @@ Isole Turks e Caicos src/app/shared/pipe/localize.ts - 535 + 539 @@ -4120,7 +4323,7 @@ Ciad src/app/shared/pipe/localize.ts - 537 + 541 @@ -4128,7 +4331,7 @@ Terre Australi Francesi src/app/shared/pipe/localize.ts - 539 + 543 @@ -4136,7 +4339,7 @@ Togo src/app/shared/pipe/localize.ts - 541 + 545 @@ -4144,7 +4347,7 @@ Thailandia src/app/shared/pipe/localize.ts - 543 + 547 @@ -4152,7 +4355,7 @@ Tagikistan src/app/shared/pipe/localize.ts - 545 + 549 @@ -4160,7 +4363,7 @@ Tokelau src/app/shared/pipe/localize.ts - 547 + 551 @@ -4168,7 +4371,7 @@ Timor Est src/app/shared/pipe/localize.ts - 549 + 553 @@ -4176,7 +4379,7 @@ Turkmenistan src/app/shared/pipe/localize.ts - 551 + 555 @@ -4184,7 +4387,7 @@ Tunisia src/app/shared/pipe/localize.ts - 553 + 557 @@ -4192,7 +4395,7 @@ Tonga src/app/shared/pipe/localize.ts - 555 + 559 @@ -4200,7 +4403,7 @@ Turchia src/app/shared/pipe/localize.ts - 557 + 561 @@ -4208,7 +4411,7 @@ Trinidad e Tobago src/app/shared/pipe/localize.ts - 559 + 563 @@ -4216,7 +4419,7 @@ Tuvalu src/app/shared/pipe/localize.ts - 561 + 565 @@ -4224,7 +4427,7 @@ Taiwan src/app/shared/pipe/localize.ts - 563 + 567 @@ -4232,7 +4435,7 @@ Tanzania src/app/shared/pipe/localize.ts - 565 + 569 @@ -4240,7 +4443,7 @@ Ucraina src/app/shared/pipe/localize.ts - 567 + 571 @@ -4248,7 +4451,7 @@ Uganda src/app/shared/pipe/localize.ts - 569 + 573 @@ -4256,7 +4459,7 @@ Isole Minori Esterne degli Stati Uniti src/app/shared/pipe/localize.ts - 571 + 575 @@ -4264,7 +4467,7 @@ Stati Uniti src/app/shared/pipe/localize.ts - 573 + 577 @@ -4272,7 +4475,7 @@ Uruguay src/app/shared/pipe/localize.ts - 575 + 579 @@ -4280,7 +4483,7 @@ Uzbekistan src/app/shared/pipe/localize.ts - 577 + 581 @@ -4288,7 +4491,7 @@ Città del Vaticano src/app/shared/pipe/localize.ts - 579 + 583 @@ -4296,7 +4499,7 @@ Saint Vincent e Grenadine src/app/shared/pipe/localize.ts - 581 + 585 @@ -4304,7 +4507,7 @@ Venezuela src/app/shared/pipe/localize.ts - 583 + 587 @@ -4312,7 +4515,7 @@ Isole Vergini Britanniche src/app/shared/pipe/localize.ts - 585 + 589 @@ -4320,7 +4523,7 @@ Isole Vergini Americane src/app/shared/pipe/localize.ts - 587 + 591 @@ -4328,7 +4531,7 @@ Vietnam src/app/shared/pipe/localize.ts - 589 + 593 @@ -4336,7 +4539,7 @@ Vanuatu src/app/shared/pipe/localize.ts - 591 + 595 @@ -4344,7 +4547,7 @@ Wallis e Futuna src/app/shared/pipe/localize.ts - 593 + 597 @@ -4352,7 +4555,7 @@ Samoa src/app/shared/pipe/localize.ts - 595 + 599 @@ -4360,7 +4563,7 @@ Kosovo src/app/shared/pipe/localize.ts - 597 + 601 @@ -4368,7 +4571,7 @@ Yemen src/app/shared/pipe/localize.ts - 599 + 603 @@ -4376,7 +4579,7 @@ Mayotte src/app/shared/pipe/localize.ts - 601 + 605 @@ -4384,7 +4587,7 @@ Sudafrica src/app/shared/pipe/localize.ts - 603 + 607 @@ -4392,7 +4595,7 @@ Zambia src/app/shared/pipe/localize.ts - 605 + 609 @@ -4400,10 +4603,11 @@ Zimbabwe src/app/shared/pipe/localize.ts - 607 + 611 - + Add or edit affiliation Aggiungi o modifica affiliazione @@ -4413,7 +4617,7 @@ This field should follow pattern for "Email". - Questo campo dovrebbe seguire lo schema {{ pattern }}. + Questo campo dovrebbe seguire lo schema Email. src/app/affiliation/affiliation-update.component.html 25 @@ -4450,9 +4654,21 @@ src/app/affiliation/affiliation-update.component.html 188 + + src/app/member/member-update.component.html + 61 + + + src/app/member/member-update.component.html + 105 + + + src/app/member/member-update.component.html + 140 + - Org Name + Organization Name Nome dell'organizzazione src/app/affiliation/affiliation-update.component.html @@ -4460,7 +4676,7 @@ - Org City + City Città src/app/affiliation/affiliation-update.component.html @@ -4468,7 +4684,7 @@ - Org Region + State/Region Stato/Regione src/app/affiliation/affiliation-update.component.html @@ -4476,23 +4692,25 @@ - Org Country + Country Paese src/app/affiliation/affiliation-update.component.html 141 - - Disambiguation Source + + Organization ID Source Origine ID organizzazione src/app/affiliation/affiliation-update.component.html 170 - - Disambiguated Org Id + + Organization ID ID organizzazione src/app/affiliation/affiliation-update.component.html @@ -4500,28 +4718,30 @@ - This field is required. GRID Organization ID should start with "grid.", RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with 0 - Questo campo è obbligatorio. L'ID organizzazione GRID deve iniziare con grid., ad esempio grid.12344, o deve essere un URL grid valido, l'ID organizzazione RINGGOLD deve essere un numero. Gli ID ROR devono essere composti da 9 caratteri e iniziare con 0. + This field is required. GRID Organization ID should start with "grid.", + RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with + 0 + Questo campo è obbligatorio. L'ID organizzazione GRID deve iniziare + con grid., ad esempio grid.12344, o deve essere un URL grid valido, l'ID + organizzazione RINGGOLD deve essere un numero. Gli ID ROR devono essere composti da 9 + caratteri e iniziare con 0. src/app/affiliation/affiliation-update.component.html 223 - This field cannot be longer than 4000 characters. - Questo campo non può superare i {{ max }} caratteri. - + This field cannot be longer than + characters. + Questo campo non può superare i + caratteri. - src/app/affiliation/affiliation-update.component.html - 255 - - - src/app/affiliation/affiliation-update.component.html - 278 + src/app/affiliation/affiliation-update.component.ts + 195 - src/app/affiliation/affiliation-update.component.html - 293 + src/app/affiliation/affiliation-update.component.ts + 197 @@ -4529,7 +4749,7 @@ Anno di inizio src/app/affiliation/affiliation-update.component.html - 305 + 293 @@ -4537,11 +4757,11 @@ Anno src/app/affiliation/affiliation-update.component.html - 314 + 302 src/app/affiliation/affiliation-update.component.html - 364 + 352 @@ -4549,7 +4769,7 @@ Mese di inizio src/app/affiliation/affiliation-update.component.html - 323 + 311 @@ -4557,11 +4777,11 @@ Mese src/app/affiliation/affiliation-update.component.html - 332 + 320 src/app/affiliation/affiliation-update.component.html - 382 + 370 @@ -4569,7 +4789,7 @@ Giorno di inizio src/app/affiliation/affiliation-update.component.html - 341 + 329 @@ -4577,11 +4797,11 @@ Giorno src/app/affiliation/affiliation-update.component.html - 344 + 332 src/app/affiliation/affiliation-update.component.html - 394 + 382 @@ -4589,7 +4809,7 @@ Anno di fine src/app/affiliation/affiliation-update.component.html - 355 + 343 @@ -4597,7 +4817,7 @@ Mese di fine src/app/affiliation/affiliation-update.component.html - 373 + 361 @@ -4605,7 +4825,7 @@ Giornata di fine src/app/affiliation/affiliation-update.component.html - 391 + 379 @@ -4613,7 +4833,7 @@ La data di inizio non può essere successiva alla data di fine. src/app/affiliation/affiliation-update.component.html - 400 + 388 @@ -4621,7 +4841,7 @@ Tipo ID esterno src/app/affiliation/affiliation-update.component.html - 411 + 399 @@ -4630,15 +4850,17 @@ src/app/affiliation/affiliation-update.component.html - 441 + 429 - Please do not forget to download and send permission links to your researcher once the assertion has been saved. - Nota: non dimenticare di scaricare e inviare i collegamenti di autorizzazione al tuo ricercatore una volta che l'asserzione è stata salvata. + Please do not forget to download and send permission links to your researcher once + the assertion has been saved. + Nota: non dimenticare di scaricare e inviare i collegamenti di + autorizzazione al tuo ricercatore una volta che l'asserzione è stata salvata. src/app/affiliation/affiliation-update.component.html - 457 + 445 @@ -4649,9 +4871,14 @@ 8 - - Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the portal and the user's ORCID record - Vuoi davvero eliminare questa affiliazione per ? L’affiliazione verrà eliminata dal portale e dal record ORCID dell’utente. + + Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the + portal and the user's ORCID record + Vuoi davvero eliminare questa affiliazione per ? L’affiliazione verrà eliminata dal portale e + dal record ORCID dell’utente. src/app/affiliation/affiliation-delete.component.ts 40 @@ -4663,7 +4890,7 @@ src/app/shared/pipe/localize.ts - 23 + 27 @@ -4671,7 +4898,7 @@ Affiliazione aggiornata src/app/shared/pipe/localize.ts - 25 + 29 @@ -4679,7 +4906,7 @@ Affiliazione eliminata src/app/shared/pipe/localize.ts - 27 + 31 @@ -4687,64 +4914,401 @@ C'è stato un problema nella cancellazione dell'affiliazione src/app/shared/pipe/localize.ts - 29 + 33 - + Send permission notifications Invia le notifiche dei permessi - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 3 - - A request to send notifications to your users is already in progress. Please try again later. - È già in corso una richiesta per inviare notifiche agli utenti. Riprova più tardi. + + A request to send notifications to your users is already in progress. Please try + again later. + È già in corso una richiesta per inviare notifiche agli utenti. Riprova + più tardi. - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 7 - - Are you sure that you would like ORCID to send permission links to your researchers for the affiliations that are pending? - Verranno inviate delle notifiche di autorizzazione per tutti i ricercatori che hanno un elemento di affiliazione con stato “In attesa”. + + Are you sure that you would like ORCID to send permission links to your researchers + for the affiliations that are pending? + Verranno inviate delle notifiche di autorizzazione per tutti i + ricercatori che hanno un elemento di affiliazione con stato “In attesa”. - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 10 - + Notification language Lingua delle notifiche - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 11 - + What language should the notification be sent in? In quale lingua vanno inviate le notifiche? - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 12 - + Send notifications Invia le notifiche - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 23 - - Notification process has now started. We will email you as soon as the process has completed. - La procedura di notifica è stata avviata. Ti scriveremo non appena sarà completata. + + Notification process has now started. We will email you as soon as the process has + completed. + La procedura di notifica è stata avviata. Ti scriveremo non appena sarà + completata. src/app/shared/pipe/localize.ts + 25 + + + + You have already granted + Hai già concesso + + + src/app/landing-page/landing-page.component.html + 13 + + + + permission to update your ORCID record + permesso per aggiornare il tuo record ORCID + + src/app/landing-page/landing-page.component.html + 16 + + + + Oops, something went wrong and we were not able to fetch your ORCID iD + Ops, qualcosa è andato storto e non siamo riusciti a recuperare il tuo + iD ORCID + + src/app/landing-page/landing-page.component.html + 33 + + + + Oops, you have denied access. + Ops, l'accesso ti è stato negato. + + src/app/landing-page/landing-page.component.html + 39 + + + + will not be able to update your ORCID record. + non potrai aggiornare il tuo record ORCID. + + src/app/landing-page/landing-page.component.html + 42 + + + + If this was a mistake, click the button below to grant access. + Se si è trattato di un errore, fai clic sul pulsante in basso per + concedere l'accesso. + + src/app/landing-page/landing-page.component.html + 45 + + + + If you find that data added to your ORCID record is incorrect, please contact + Se noti che i dati aggiunti al tuo record ORCID sono sbagliati, contatta + + src/app/landing-page/landing-page.component.ts + 78 + + + + This authorization link has already been used. Please contact for a new authorization link. + Questo collegamento di autorizzazione è già stato utilizzato. Contatta per un nuovo collegamento di autorizzazione. + + src/app/landing-page/landing-page.component.ts + 79 + + + + Allow to update my ORCID record. + Permetti a di aggiornare il + mio record ORCID + + src/app/landing-page/landing-page.component.ts + 80 + + + + You have successfully granted + permission to update your ORCID record, and your record has been updated with affiliation + information. + Hai concesso correttamente l'autorizzazione a per aggiornare il tuo archivio ORCID e + quest'ultimo sarà aggiornato con le informazioni di affiliazione. + + src/app/landing-page/landing-page.component.ts + 81 + + + + Thanks, ! + Grazie, + + src/app/landing-page/landing-page.component.ts + 172 + + + + Member details + Dettagli del membro + + src/app/member/member-detail.component.html + 4 + + + + Salesforce Id + Salesforce Id + + + src/app/member/member-detail.component.html + 9 + + + src/app/member/member-update.component.html + 41 + + + src/app/member/members.component.html + 59 + + + + Parent Salesforce Id + ID Salesforce Genitore + + src/app/member/member-detail.component.html + 13 + + + src/app/member/member-update.component.html + 71 + + + src/app/member/members.component.html + 83 + + + + Member Name + Nome del membro + + src/app/member/member-detail.component.html + 17 + + + src/app/member/member-update.component.html + 86 + + + src/app/member/members.component.html + 67 + + + + Client ID + Id cliente + + src/app/member/member-detail.component.html 21 + + src/app/member/member-update.component.html + 115 + + + + Type + Tipo + + src/app/member/member-detail.component.html + 25 + + + + Is Consortium Lead + Capogruppo + + + src/app/member/member-detail.component.html + 29 + + + src/app/member/member-update.component.html + 154 + + + src/app/member/members.component.html + 75 + + + + Assertion Service Enabled + Asserzioni abilitate + + src/app/member/member-detail.component.html + 35 + + + src/app/member/member-update.component.html + 169 + + + src/app/member/members.component.html + 91 + + + + Status + Stato + + src/app/member/member-detail.component.html + 41 + + + + Created Date + Creato + + src/app/member/member-detail.component.html + 45 + + + + Last Modified Date + Ultima modifica + + src/app/member/member-detail.component.html + 49 + + + src/app/member/members.component.html + 99 + + + + Add or edit member + Aggiungi o modifica un membro + + src/app/member/member-update.component.html + 8 + + + + Note: Client ID must have User OBO enabled AND + Nota: l'ID cliente deve avere Membro OBO abilitato E + + src/app/member/member-update.component.html + 120 + + + + added as a Redirect URI in + aggiunto come URI di reindirizzamento in + + src/app/member/member-update.component.html + 124 + + + + Manage members + Gestisci membri + + + src/app/member/members.component.html + 2 + + + + Add member + Aggiungi membro + + src/app/member/members.component.html + 11 + + + + Import members from CSV + Importa membri da CSV + + src/app/member/members.component.html + 19 + + + + No members to show + Nessun membro da mostrare + + + src/app/member/members.component.html + 50 + + + + Member created + Membro creato + + src/app/shared/pipe/localize.ts + 21 + + + + Member updated successfully + Membro aggiornato correttamente + + src/app/shared/pipe/localize.ts + 23 + diff --git a/ui/src/i18n/messages.ja.xlf b/ui/src/i18n/messages.ja.xlf index d4b6e5903..4f3d5a568 100644 --- a/ui/src/i18n/messages.ja.xlf +++ b/ui/src/i18n/messages.ja.xlf @@ -70,8 +70,10 @@ - Slide of - Slide of + Slide of + + Slide of + Currently selected slide number read by screen reader node_modules/src/ngb-config.ts @@ -287,8 +289,12 @@ - Failed to sign in! Please check your credentials and try again. - サインインに失敗しました。 認証情報をご確認の上、再度お試し下さい。 + Failed to + sign in! Please + check your credentials and try again. + + サインインに失敗しました。 + 認証情報をご確認の上、再度お試し下さい。 src/app/account/login/login.component.html 6 @@ -302,7 +308,8 @@ 10 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 22 @@ -318,7 +325,8 @@ 16 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 28 @@ -386,15 +394,21 @@ Reset your password パスワードをリセット - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 4 - Email address isn't registered! Please check and try again. - Eメールアドレスが登録されていません!確認して、もう一度やり直してください - - src/app/account/password/password-reset-init.component.html + Email + address isn't registered! Please check and try again. + + Eメールアドレスが登録されていません! + 確認して、もう一度やり直してください + + + src/app/account/password/password-reset-init.component.html 7 @@ -402,7 +416,8 @@ Enter the email address you used to register. 登録に使用した e メールアドレスを入力する - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 11 @@ -410,7 +425,8 @@ Check your emails for details on how to reset your password. お客様のパスワードをどのようにリセットするかにつきましては、詳細は e メールにてご確認ください。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 15 @@ -418,7 +434,8 @@ Your email is required. あなたのEメールが必要です。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 42 @@ -426,7 +443,8 @@ Your email is invalid. Eメールが無効です。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 49 @@ -434,7 +452,8 @@ Your email is required to be at least 5 characters. e メールには少なくとも 5 文字必要です。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 56 @@ -442,7 +461,8 @@ Your email cannot be longer than 100 characters. Eメールを50文字超にはできません。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 64 @@ -450,7 +470,8 @@ Reset パスワードのリセット - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 75 @@ -463,8 +484,10 @@ - Settings saved! - 設定が保存されました! + Settings + saved! + + 設定が保存されました! src/app/account/settings/settings.component.html 8 @@ -579,8 +602,11 @@ - Add extra security to your ORCID member portal account by enabling two-factor authentication. Each time you sign in, you'll be prompted to enter a six-digit code we send to your preferred authentication application. - 2段階認証を有効にして、ORCIDメンバーポータルアカウントにさらなるセキュリティ対策を追加しましょう。サインインをするたびに、ご希望の認証アプリケーションに送信される6桁のコードを入力するように要求されます。 + Add extra security to your ORCID member portal account by enabling two-factor + authentication. Each time you sign in, you'll be prompted to enter a six-digit code + we send to your preferred authentication application. + + 2段階認証を有効にして、ORCIDメンバーポータルアカウントにさらなるセキュリティ対策を追加しましょう。サインインをするたびに、ご希望の認証アプリケーションに送信される6桁のコードを入力するように要求されます。 src/app/account/settings/settings.component.html 146 @@ -603,17 +629,37 @@ - Install a two-factor authentication appA 2FA app is required to create the six-digit code you need to access your account each time you sign in. Most apps are for mobile devices; some are also available as desktop or web-based apps. Download and install your preferred 2FA app, such as Google Authenticator, FreeOTP, or Authy. - 2段階認証アプリをインストールサインインをする度にアカウントへのアクセスに必要となる6桁のコードを作成するために、2段階認証アプリが必須となります。多くのアプリはモバイルデバイス向けですが、デスクトップやウェブ上のアプリとして使用可能なものもあります。Google AuthenticatorFreeOTPAuthyなどのお好きな2段階認証アプリをダウンロードして、インストールしてください。 + Install a two-factor authentication appA 2FA app is required to create the six-digit code you + need to access your account each time you sign in. Most apps are for mobile devices; some + are also available as desktop or web-based apps. Download and install your preferred 2FA + app, such as Google + Authenticator, + FreeOTP, or Authy. + 2段階認証アプリをインストール + サインインをする度にアカウントへのアクセスに必要となる6桁のコードを作成するために、2段階認証アプリが必須となります。多くのアプリはモバイルデバイス向けですが、デスクトップやウェブ上のアプリとして使用可能なものもあります。Google + Authenticator + FreeOTPAuthyなどのお好きな2段階認証アプリをダウンロードして、インストールしてください。 src/app/account/settings/settings.component.html 166 - Scan this QR code with your deviceOpen your 2FA app and scan the image below. - ご使用のデバイスでこちらのQRコードをスキャンしてください - + Scan this QR code with your deviceOpen your 2FA app and scan the image below. + ご使用のデバイスでこちらのQRコードをスキャンしてください + src/app/account/settings/settings.component.html 174 @@ -644,8 +690,13 @@ - Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, your 2FA app will display a six-digit code. Enter this code in the box below and click Save. - アプリで受け取った6桁のコードを入力してくださいQRコードをスキャンまたはテキストコードを入力した後に、2段階認証アプリに6桁のコードが表示されます。このコードを以下のボックスに入力して、保存をクリックしてください。 + Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, + your 2FA app will display a six-digit code. Enter this code in the box below and click + Save. + アプリで受け取った6桁のコードを入力してください + QRコードをスキャンまたはテキストコードを入力した後に、2段階認証アプリに6桁のコードが表示されます。このコードを以下のボックスに入力して、保存をクリックしてください。 src/app/account/settings/settings.component.html 205 @@ -668,7 +719,8 @@ - Make a note of the following backup codes, this is the only time they will be shown. + Make a note of the following backup codes, this is the only time they will be + shown. 次のバックアップコードを控えておいてください。バックアップコードが表示されるのは今回のみになります。 src/app/account/settings/settings.component.html @@ -876,16 +928,22 @@ - Password changed! - パスワードが変更されました! + Password + changed! + + パスワードが変更されました! src/app/account/password/password.component.html 7 - An error has occurred! The password could not be changed. - エラーが発生しました。 パスワードが変更できません。 + An error + has occurred! + The password could not be changed. + + エラーが発生しました。 + パスワードが変更できません。 src/app/account/password/password.component.html 10 @@ -895,7 +953,8 @@ The password and its confirmation do not match! パスワードとその確認が一致しません! - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 62 @@ -923,7 +982,8 @@ Your password is required. パスワードが必要です。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 91 @@ -939,7 +999,8 @@ New password 新しいパスワード - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 70 @@ -951,7 +1012,8 @@ New password 新しいパスワード - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 77 @@ -963,7 +1025,8 @@ Your password is required to be at least 4 characters. パスワードは4文字以上である必要があります。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 98 @@ -975,7 +1038,8 @@ Your password cannot be longer than 50 characters. パスワードは 50 文字より長くすることはできません - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 105 @@ -987,7 +1051,8 @@ New password confirmation 新しいパスワードの確認 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 114 @@ -999,7 +1064,8 @@ Confirm the new password 新しいパスワードの確認 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 121 @@ -1011,7 +1077,8 @@ Your password confirmation is required. 確認パスワードが必要です。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 135 @@ -1023,7 +1090,8 @@ Your password confirmation is required to be at least 4 characters. 確認用パスワード には少なくとも 4 文字が必要です。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 142 @@ -1035,7 +1103,8 @@ Your password confirmation cannot be longer than 50 characters. 確認パスワードは50文字を超えることはできません。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 149 @@ -1063,55 +1132,79 @@ Reset password パスワードをリセット - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 4 - The activation key is missing. - 有効化キーがありません。 - - src/app/account/password/password-reset-finish.component.html + The + activation key is missing. + + 有効化キーがありません。 + + + src/app/account/password/password-reset-finish.component.html 7 - This activation key is invalid. - 有効化キーが無効です。 - - src/app/account/password/password-reset-finish.component.html + This + activation key is invalid. + + 有効化キーが無効です。 + + + src/app/account/password/password-reset-finish.component.html 11 - This activation has expired. - アクティベーションキーの有効期限が切れています。 - - src/app/account/password/password-reset-finish.component.html + This + activation has expired. + + アクティベーションキーの有効期限が切れています。 + + + src/app/account/password/password-reset-finish.component.html 15 - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It looks like this + link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It + looks like this link has expired. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 20 - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a new + activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a + new activation link to your registered email address. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 26 - If you are still having problems activating your account or have not received your new activation link please contact our support team please contact us at membership@orcid.org. - If you are still having problems activating your account or have not received your new activation link, please contact us at membership@orcid.org. - - src/app/account/password/password-reset-finish.component.html + If you are still having problems activating your account or have not received your + new activation link please contact our support team please contact us at + membership@orcid.org. + If you are still having problems activating your account or have not + received your new activation link, please contact us at membership@orcid.org. + + + src/app/account/password/password-reset-finish.component.html 32 @@ -1119,23 +1212,31 @@ Choose a new password 新しいパスワードを選んでください - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 39 - Your password couldn't be reset. Remember a password request is only valid for 24 hours. + Your password couldn't be reset. Remember a password request is only valid for + 24 hours. パスワードがリセットできませんでした。パスワードの要求は 24 時間に限り有効であることにご留意ください。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 43 - Your password has been reset. Please - お客様のパスワードが変更されました。 行って下さい。 - - src/app/account/password/password-reset-finish.component.html + Your + password has been reset. Please + + お客様のパスワードが変更されました。 + 行って下さい。 + + + src/app/account/password/password-reset-finish.component.html 50 @@ -1143,7 +1244,8 @@ sign in サインイン - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 58 @@ -1151,7 +1253,8 @@ Reset Password 新しいパスワードを有効にする - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 159 @@ -1183,7 +1286,8 @@ Password strength: パスワードの強度: - src/app/account/password/password-strength.component.html + + src/app/account/password/password-strength.component.html 2 @@ -1366,6 +1470,14 @@ src/app/affiliation/affiliation-detail.component.html 143 + + src/app/member/member-detail.component.html + 47 + + + src/app/member/member-detail.component.html + 51 + src/app/user/user-detail.component.html 81 @@ -1394,6 +1506,10 @@ src/app/affiliation/affiliation-detail.component.html 230 + + src/app/member/member-detail.component.html + 61 + src/app/user/user-detail.component.html 95 @@ -1410,6 +1526,14 @@ src/app/affiliation/affiliations.component.html 220 + + src/app/member/member-detail.component.html + 66 + + + src/app/member/members.component.html + 151 + src/app/user/user-detail.component.html 103 @@ -1451,17 +1575,23 @@ 17 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 34 src/app/affiliation/affiliation-update.component.html - 465 + 453 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 20 + + src/app/member/member-update.component.html + 186 + src/app/user/user-delete.component.html 14 @@ -1480,7 +1610,11 @@ 保存する src/app/affiliation/affiliation-update.component.html - 468 + 456 + + + src/app/member/member-update.component.html + 189 src/app/user/user-update.component.html @@ -1522,6 +1656,10 @@ src/app/affiliation/affiliations.component.html 104 + + src/app/member/members.component.html + 32 + src/app/user/users.component.html 32 @@ -1556,20 +1694,30 @@ - Showing - of items. - アイテムの - を表示しています。 + Showing - + of items. + アイテムの - を表示しています。 src/app/affiliation/affiliations.component.ts - 228 + 227 + + + src/app/member/members.component.ts + 160 src/app/user/users.component.ts 230 - - Are you sure you want to transfer ownership? You are about to transfer ownership of this organization account. If you are the organization owner after transferring ownership, you will no longer have access to administrative functions, such as managing users. - 所有権を本当に移転しますか。こちらの組織アカウントの所有権を移転しようとしています。所有権移転後にも組織の所有者である場合には、ユーザー管理といった管理機能にアクセスすることはもうできなくなります。 + + Are you sure you want to transfer ownership? You are about to transfer ownership of + this organization account. If you are the organization owner after transferring ownership, + you will no longer have access to administrative functions, such as managing users. + + 所有権を本当に移転しますか。こちらの組織アカウントの所有権を移転しようとしています。所有権移転後にも組織の所有者である場合には、ユーザー管理といった管理機能にアクセスすることはもうできなくなります。 src/app/user/user-update.component.ts 215 @@ -1596,7 +1744,7 @@ 本当にユーザー を削除しますか? src/app/user/user-delete.component.ts - 47 + 44 @@ -1628,7 +1776,8 @@ - Oops! There was a problem processing your data. Pleases fix the errors below and try again + Oops! There was a problem processing your data. Pleases fix the errors below and + try again おっと!あなたのデータの処理で問題がありました。以下のエラーを修正して、もう一度やり直してください src/app/user/user-import-dialog.component.html @@ -1655,7 +1804,8 @@ Upload アップロード - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 37 @@ -1680,7 +1830,8 @@ 2 - + Send permission notifications 許可通知を送信 @@ -1688,7 +1839,8 @@ 11 - + Request permission links 許可リンクをリクエスト @@ -1696,7 +1848,8 @@ 21 - + Request affiliation status report アフィリエーションステータスレポートをリクエスト @@ -1704,7 +1857,9 @@ 31 - + Request affiliations for edit 編集用アフィリエーションをリクエスト @@ -1728,24 +1883,33 @@ 61 - - Your affiliations for edit file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. + + Your affiliations for edit file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. 編集用アフィリエーションファイルが間もなく届きます。ファイルが届かない場合は、membership@orcid.orgまでご連絡ください。 src/app/affiliation/affiliations.component.html 73 - - Your affiliation status report file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - アフィリエーションステータスレポートファイルが間もなく届きます。ファイルが届かない場合は、membership@orcid.orgまでご連絡ください。 + + Your affiliation status report file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + + アフィリエーションステータスレポートファイルが間もなく届きます。ファイルが届かない場合は、membership@orcid.orgまでご連絡ください。 src/app/affiliation/affiliations.component.html 82 - - Your permission links file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. + + Your permission links file will be mailed to you shortly. If you do not receive + your file then please contact us at membership@orcid.org. 許可リンクファイルが間もなく届きます。ファイルが届かない場合は、membership@orcid.orgまでご連絡ください。 src/app/affiliation/affiliations.component.html @@ -1824,7 +1988,9 @@ 150 - + @@ -1856,9 +2022,12 @@ 190 - - For help troubleshooting, please contact the Member Portal Team and copy/paste or include a screenshot of the error message below. - このエラーのトラブルシューティングについてサポートが必要な場合は、コンソーシアムの責任者またはmembership@orcid.orgにお問い合わせください。以下のエラーメッセージのスクリーンショットを含めてください。 + + For help troubleshooting, please contact the Member Portal Team and copy/paste or + include a screenshot of the error message below. + + このエラーのトラブルシューティングについてサポートが必要な場合は、コンソーシアムの責任者またはmembership@orcid.orgにお問い合わせください。以下のエラーメッセージのスクリーンショットを含めてください。 src/app/affiliation/affiliations.component.html 203 @@ -1869,7 +2038,7 @@ ユーザーがアクセスを拒否しました src/app/shared/pipe/localize.ts - 34 + 38 @@ -1877,7 +2046,7 @@ 保留中 src/app/shared/pipe/localize.ts - 36 + 40 @@ -1885,7 +2054,7 @@ ORCID内 src/app/shared/pipe/localize.ts - 38 + 42 @@ -1893,7 +2062,7 @@ ユーザーがアクセスを許可しました src/app/shared/pipe/localize.ts - 40 + 44 @@ -1901,7 +2070,7 @@ User deleted from ORCID src/app/shared/pipe/localize.ts - 42 + 46 @@ -1909,7 +2078,7 @@ ユーザーがアクセスを取り消しました src/app/shared/pipe/localize.ts - 44 + 48 @@ -1917,7 +2086,7 @@ ORCIDへの追加時にエラーが発生しました src/app/shared/pipe/localize.ts - 46 + 50 @@ -1925,7 +2094,7 @@ ORCIDの更新中にエラーが発生しました src/app/shared/pipe/localize.ts - 48 + 52 @@ -1933,7 +2102,7 @@ ORCIDでの再試行を待機中です src/app/shared/pipe/localize.ts - 50 + 54 @@ -1941,7 +2110,7 @@ ORCIDでの削除時にエラーが発生しました src/app/shared/pipe/localize.ts - 52 + 56 @@ -1949,7 +2118,7 @@ 通知をリクエストしました src/app/shared/pipe/localize.ts - 54 + 58 @@ -1957,7 +2126,7 @@ 通知を送信しました src/app/shared/pipe/localize.ts - 56 + 60 @@ -1965,7 +2134,7 @@ 通知の送信に失敗しました src/app/shared/pipe/localize.ts - 58 + 62 @@ -1973,7 +2142,7 @@ ORCIDでの更新を待機中です src/app/shared/pipe/localize.ts - 60 + 64 @@ -2008,7 +2177,8 @@ 36 - + Affiliation Section アフィリエーションタイプ @@ -2049,7 +2219,7 @@ src/app/affiliation/affiliation-update.component.html - 265 + 261 @@ -2061,7 +2231,7 @@ src/app/affiliation/affiliation-update.component.html - 285 + 277 @@ -2089,7 +2259,7 @@ src/app/affiliation/affiliation-update.component.html - 426 + 414 @@ -2132,7 +2302,8 @@ 145 - + Notification First Sent 初回通知を送信しました @@ -2144,7 +2315,8 @@ 175 - + Notification Last Sent 最終送信通知 @@ -2168,15 +2340,19 @@ Import affiliations from CSV 所属をインポート - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 3 - - Your CSV has been uploaded for processing. We will let you know via email once the file has been processed. + + Your CSV has been uploaded for processing. We will let you know via email once the + file has been processed. あなたのCSVが処理用にアップロードされました。ファイルの処理が完了次第、メールでお知らせします。 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 10 @@ -2184,7 +2360,8 @@ There was a problem uploading your CSV for processing. 処理するためにCSVをアップロードする際に問題が発生しました。 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 17 @@ -2192,7 +2369,8 @@ Please select the CSV file to upload アップロードするCSVファイルを選択してください - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 20 @@ -2200,15 +2378,18 @@ File Path ファイルパス - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 22 - Please do not forget to download and send permission links to your researchers once the upload has completed. + Please do not forget to download and send permission links to your researchers once + the upload has completed. ご注意:アップロードが完了したら、許可リンクをダウンロードして研究者に送信することを忘れないでください。 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 26 @@ -2216,7 +2397,8 @@ Close 閉じる - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 40 @@ -2224,7 +2406,8 @@ There is no file to upload. Please select one. アップロードするファイルがありません。ファイルを 1 つ選択してください。 - src/app/affiliation/affiliation-import-dialog.component.ts + + src/app/affiliation/affiliation-import-dialog.component.ts 60 @@ -2233,7 +2416,7 @@ 教育 src/app/shared/pipe/localize.ts - 65 + 69 @@ -2241,7 +2424,7 @@ 雇用 src/app/shared/pipe/localize.ts - 67 + 71 @@ -2249,7 +2432,7 @@ 区別 src/app/shared/pipe/localize.ts - 69 + 73 @@ -2257,7 +2440,7 @@ 招待状況 src/app/shared/pipe/localize.ts - 71 + 75 @@ -2265,7 +2448,7 @@ 資格 src/app/shared/pipe/localize.ts - 73 + 77 @@ -2273,7 +2456,7 @@ サービス src/app/shared/pipe/localize.ts - 75 + 79 @@ -2281,7 +2464,7 @@ メンバーシップ src/app/shared/pipe/localize.ts - 77 + 81 @@ -2289,7 +2472,7 @@ 1月 src/app/shared/pipe/localize.ts - 82 + 86 @@ -2297,7 +2480,7 @@ 2月 src/app/shared/pipe/localize.ts - 84 + 88 @@ -2305,7 +2488,7 @@ 3月 src/app/shared/pipe/localize.ts - 86 + 90 @@ -2313,7 +2496,7 @@ 4月 src/app/shared/pipe/localize.ts - 88 + 92 @@ -2321,7 +2504,7 @@ 5月 src/app/shared/pipe/localize.ts - 90 + 94 @@ -2329,7 +2512,7 @@ 6月 src/app/shared/pipe/localize.ts - 92 + 96 @@ -2337,7 +2520,7 @@ 7月 src/app/shared/pipe/localize.ts - 94 + 98 @@ -2345,7 +2528,7 @@ 8月 src/app/shared/pipe/localize.ts - 96 + 100 @@ -2353,7 +2536,7 @@ 9月 src/app/shared/pipe/localize.ts - 98 + 102 @@ -2361,7 +2544,7 @@ 10月 src/app/shared/pipe/localize.ts - 100 + 104 @@ -2369,7 +2552,7 @@ 11月 src/app/shared/pipe/localize.ts - 102 + 106 @@ -2377,7 +2560,7 @@ 12月 src/app/shared/pipe/localize.ts - 104 + 108 @@ -2385,7 +2568,7 @@ アンドラ src/app/shared/pipe/localize.ts - 109 + 113 @@ -2393,7 +2576,7 @@ アラブ首長国連邦 src/app/shared/pipe/localize.ts - 111 + 115 @@ -2401,7 +2584,7 @@ アフガニスタン src/app/shared/pipe/localize.ts - 113 + 117 @@ -2409,7 +2592,7 @@ アンティグア・バーブーダ src/app/shared/pipe/localize.ts - 115 + 119 @@ -2417,7 +2600,7 @@ アンギラ src/app/shared/pipe/localize.ts - 117 + 121 @@ -2425,7 +2608,7 @@ アルバニア src/app/shared/pipe/localize.ts - 119 + 123 @@ -2433,7 +2616,7 @@ アルメニア src/app/shared/pipe/localize.ts - 121 + 125 @@ -2441,7 +2624,7 @@ アンゴラ src/app/shared/pipe/localize.ts - 123 + 127 @@ -2449,7 +2632,7 @@ 南極大陸 src/app/shared/pipe/localize.ts - 125 + 129 @@ -2457,7 +2640,7 @@ アルゼンチン src/app/shared/pipe/localize.ts - 127 + 131 @@ -2465,7 +2648,7 @@ アメリカ領サモア src/app/shared/pipe/localize.ts - 129 + 133 @@ -2473,7 +2656,7 @@ オーストリア src/app/shared/pipe/localize.ts - 131 + 135 @@ -2481,7 +2664,7 @@ オーストラリア src/app/shared/pipe/localize.ts - 133 + 137 @@ -2489,7 +2672,7 @@ アルバ src/app/shared/pipe/localize.ts - 135 + 139 @@ -2497,7 +2680,7 @@ オーランド諸島 src/app/shared/pipe/localize.ts - 137 + 141 @@ -2505,7 +2688,7 @@ アゼルバイジャン src/app/shared/pipe/localize.ts - 139 + 143 @@ -2513,7 +2696,7 @@ ボスニア・ヘルツェゴビナ src/app/shared/pipe/localize.ts - 141 + 145 @@ -2521,7 +2704,7 @@ バルバドス src/app/shared/pipe/localize.ts - 143 + 147 @@ -2529,7 +2712,7 @@ バングラデシュ src/app/shared/pipe/localize.ts - 145 + 149 @@ -2537,7 +2720,7 @@ ベルギー src/app/shared/pipe/localize.ts - 147 + 151 @@ -2545,7 +2728,7 @@ ブルキナファソ src/app/shared/pipe/localize.ts - 149 + 153 @@ -2553,7 +2736,7 @@ ブルガリア src/app/shared/pipe/localize.ts - 151 + 155 @@ -2561,7 +2744,7 @@ バーレーン src/app/shared/pipe/localize.ts - 153 + 157 @@ -2569,7 +2752,7 @@ ブルンジ src/app/shared/pipe/localize.ts - 155 + 159 @@ -2577,7 +2760,7 @@ ベナン src/app/shared/pipe/localize.ts - 157 + 161 @@ -2585,7 +2768,7 @@ サン・バルテルミー島 src/app/shared/pipe/localize.ts - 159 + 163 @@ -2593,7 +2776,7 @@ バミューダ src/app/shared/pipe/localize.ts - 161 + 165 @@ -2601,7 +2784,7 @@ ブルネイ src/app/shared/pipe/localize.ts - 163 + 167 @@ -2609,7 +2792,7 @@ ボリビア src/app/shared/pipe/localize.ts - 165 + 169 @@ -2617,7 +2800,7 @@ イギリス領南極地域 src/app/shared/pipe/localize.ts - 167 + 171 @@ -2625,7 +2808,7 @@ ブラジル src/app/shared/pipe/localize.ts - 169 + 173 @@ -2633,7 +2816,7 @@ バハマ src/app/shared/pipe/localize.ts - 171 + 175 @@ -2641,7 +2824,7 @@ ブータン src/app/shared/pipe/localize.ts - 173 + 177 @@ -2649,7 +2832,7 @@ ブーベ島 src/app/shared/pipe/localize.ts - 175 + 179 @@ -2657,7 +2840,7 @@ ボツワナ src/app/shared/pipe/localize.ts - 177 + 181 @@ -2665,7 +2848,7 @@ ベラルーシ src/app/shared/pipe/localize.ts - 179 + 183 @@ -2673,7 +2856,7 @@ ベリーズ src/app/shared/pipe/localize.ts - 181 + 185 @@ -2681,7 +2864,7 @@ カナダ src/app/shared/pipe/localize.ts - 183 + 187 @@ -2689,7 +2872,7 @@ ココス(キーリング)諸島 src/app/shared/pipe/localize.ts - 185 + 189 @@ -2697,7 +2880,7 @@ コンゴ民主共和国 src/app/shared/pipe/localize.ts - 187 + 191 @@ -2705,7 +2888,7 @@ 中央アフリカ共和国 src/app/shared/pipe/localize.ts - 189 + 193 @@ -2713,7 +2896,7 @@ コンゴ共和国(首都:ブラザビル) src/app/shared/pipe/localize.ts - 191 + 195 @@ -2721,7 +2904,7 @@ スイス src/app/shared/pipe/localize.ts - 193 + 197 @@ -2729,7 +2912,7 @@ コートジボワール src/app/shared/pipe/localize.ts - 195 + 199 @@ -2737,7 +2920,7 @@ クック諸島 src/app/shared/pipe/localize.ts - 197 + 201 @@ -2745,7 +2928,7 @@ チリ src/app/shared/pipe/localize.ts - 199 + 203 @@ -2753,7 +2936,7 @@ カメルーン src/app/shared/pipe/localize.ts - 201 + 205 @@ -2761,7 +2944,7 @@ 中国 src/app/shared/pipe/localize.ts - 203 + 207 @@ -2769,7 +2952,7 @@ コロンビア src/app/shared/pipe/localize.ts - 205 + 209 @@ -2777,7 +2960,7 @@ キューバ src/app/shared/pipe/localize.ts - 207 + 211 @@ -2785,7 +2968,7 @@ キューバ src/app/shared/pipe/localize.ts - 209 + 213 @@ -2793,7 +2976,7 @@ カーボベルデ src/app/shared/pipe/localize.ts - 211 + 215 @@ -2801,7 +2984,7 @@ キュラソー src/app/shared/pipe/localize.ts - 213 + 217 @@ -2809,7 +2992,7 @@ クリスマス島 src/app/shared/pipe/localize.ts - 215 + 219 @@ -2817,7 +3000,7 @@ キプロス src/app/shared/pipe/localize.ts - 217 + 221 @@ -2825,7 +3008,7 @@ チェコ共和国 src/app/shared/pipe/localize.ts - 219 + 223 @@ -2833,7 +3016,7 @@ ドイツ src/app/shared/pipe/localize.ts - 221 + 225 @@ -2841,7 +3024,7 @@ ジブチ src/app/shared/pipe/localize.ts - 223 + 227 @@ -2849,7 +3032,7 @@ デンマーク src/app/shared/pipe/localize.ts - 225 + 229 @@ -2857,7 +3040,7 @@ ドミニカ src/app/shared/pipe/localize.ts - 227 + 231 @@ -2865,7 +3048,7 @@ ドミニカ共和国 src/app/shared/pipe/localize.ts - 229 + 233 @@ -2873,7 +3056,7 @@ アルジェリア src/app/shared/pipe/localize.ts - 231 + 235 @@ -2881,7 +3064,7 @@ エクアドル src/app/shared/pipe/localize.ts - 233 + 237 @@ -2889,7 +3072,7 @@ エストニア src/app/shared/pipe/localize.ts - 235 + 239 @@ -2897,7 +3080,7 @@ エジプト src/app/shared/pipe/localize.ts - 237 + 241 @@ -2905,7 +3088,7 @@ 西サハラ src/app/shared/pipe/localize.ts - 239 + 243 @@ -2913,7 +3096,7 @@ エリトリア src/app/shared/pipe/localize.ts - 241 + 245 @@ -2921,7 +3104,7 @@ スペイン src/app/shared/pipe/localize.ts - 243 + 247 @@ -2929,7 +3112,7 @@ エチオピア src/app/shared/pipe/localize.ts - 245 + 249 @@ -2937,7 +3120,7 @@ フィンランド src/app/shared/pipe/localize.ts - 247 + 251 @@ -2945,7 +3128,7 @@ フィジー src/app/shared/pipe/localize.ts - 249 + 253 @@ -2953,7 +3136,7 @@ フォークランド諸島 src/app/shared/pipe/localize.ts - 251 + 255 @@ -2961,7 +3144,7 @@ ミクロネシア src/app/shared/pipe/localize.ts - 253 + 257 @@ -2969,7 +3152,7 @@ フェロー諸島 src/app/shared/pipe/localize.ts - 255 + 259 @@ -2977,7 +3160,7 @@ フランス src/app/shared/pipe/localize.ts - 257 + 261 @@ -2985,7 +3168,7 @@ ガボン src/app/shared/pipe/localize.ts - 259 + 263 @@ -2993,7 +3176,7 @@ イギリス src/app/shared/pipe/localize.ts - 261 + 265 @@ -3001,7 +3184,7 @@ グレナダ src/app/shared/pipe/localize.ts - 263 + 267 @@ -3009,7 +3192,7 @@ ジョージア src/app/shared/pipe/localize.ts - 265 + 269 @@ -3017,7 +3200,7 @@ フランス領ギアナ src/app/shared/pipe/localize.ts - 267 + 271 @@ -3025,7 +3208,7 @@ ガーンジー src/app/shared/pipe/localize.ts - 269 + 273 @@ -3033,7 +3216,7 @@ ガーナ src/app/shared/pipe/localize.ts - 271 + 275 @@ -3041,7 +3224,7 @@ ジブラルタル src/app/shared/pipe/localize.ts - 273 + 277 @@ -3049,7 +3232,7 @@ グリーンランド src/app/shared/pipe/localize.ts - 275 + 279 @@ -3057,7 +3240,7 @@ ガンビア src/app/shared/pipe/localize.ts - 277 + 281 @@ -3065,7 +3248,7 @@ ギニア src/app/shared/pipe/localize.ts - 279 + 283 @@ -3073,7 +3256,7 @@ グアドループ src/app/shared/pipe/localize.ts - 281 + 285 @@ -3081,7 +3264,7 @@ 赤道ギニア src/app/shared/pipe/localize.ts - 283 + 287 @@ -3089,7 +3272,7 @@ ギリシャ src/app/shared/pipe/localize.ts - 285 + 289 @@ -3097,7 +3280,7 @@ サウスジョージア・サウスサンドウィッチ諸島 src/app/shared/pipe/localize.ts - 287 + 291 @@ -3105,7 +3288,7 @@ グアテマラ src/app/shared/pipe/localize.ts - 289 + 293 @@ -3113,7 +3296,7 @@ グアム src/app/shared/pipe/localize.ts - 291 + 295 @@ -3121,7 +3304,7 @@ ギニアビサウ src/app/shared/pipe/localize.ts - 293 + 297 @@ -3129,7 +3312,7 @@ ガイアナ src/app/shared/pipe/localize.ts - 295 + 299 @@ -3137,7 +3320,7 @@ 香港 src/app/shared/pipe/localize.ts - 297 + 301 @@ -3145,7 +3328,7 @@ ハード島とマクドナルド諸島 src/app/shared/pipe/localize.ts - 299 + 303 @@ -3153,7 +3336,7 @@ ホンジュラス src/app/shared/pipe/localize.ts - 301 + 305 @@ -3161,7 +3344,7 @@ クロアチア src/app/shared/pipe/localize.ts - 303 + 307 @@ -3169,7 +3352,7 @@ ハイチ src/app/shared/pipe/localize.ts - 305 + 309 @@ -3177,7 +3360,7 @@ ハンガリー src/app/shared/pipe/localize.ts - 307 + 311 @@ -3185,7 +3368,7 @@ インドネシア src/app/shared/pipe/localize.ts - 309 + 313 @@ -3193,7 +3376,7 @@ アイルランド src/app/shared/pipe/localize.ts - 311 + 315 @@ -3201,7 +3384,7 @@ イスラエル src/app/shared/pipe/localize.ts - 313 + 317 @@ -3209,7 +3392,7 @@ マン島 src/app/shared/pipe/localize.ts - 315 + 319 @@ -3217,7 +3400,7 @@ インド src/app/shared/pipe/localize.ts - 317 + 321 @@ -3225,7 +3408,7 @@ イギリス領インド洋地域 src/app/shared/pipe/localize.ts - 319 + 323 @@ -3233,7 +3416,7 @@ イラク src/app/shared/pipe/localize.ts - 321 + 325 @@ -3241,7 +3424,7 @@ イラン src/app/shared/pipe/localize.ts - 323 + 327 @@ -3249,7 +3432,7 @@ アイスランド src/app/shared/pipe/localize.ts - 325 + 329 @@ -3257,7 +3440,7 @@ イタリア src/app/shared/pipe/localize.ts - 327 + 331 @@ -3265,7 +3448,7 @@ ジャージー src/app/shared/pipe/localize.ts - 329 + 333 @@ -3273,7 +3456,7 @@ ジャマイカ src/app/shared/pipe/localize.ts - 331 + 335 @@ -3281,7 +3464,7 @@ ヨルダン src/app/shared/pipe/localize.ts - 333 + 337 @@ -3289,7 +3472,7 @@ 日本 src/app/shared/pipe/localize.ts - 335 + 339 @@ -3297,7 +3480,7 @@ ケニア src/app/shared/pipe/localize.ts - 337 + 341 @@ -3305,7 +3488,7 @@ キルギス src/app/shared/pipe/localize.ts - 339 + 343 @@ -3313,7 +3496,7 @@ カンボジア src/app/shared/pipe/localize.ts - 341 + 345 @@ -3321,7 +3504,7 @@ キリバス src/app/shared/pipe/localize.ts - 343 + 347 @@ -3329,7 +3512,7 @@ コモロ連合 src/app/shared/pipe/localize.ts - 345 + 349 @@ -3337,7 +3520,7 @@ セントクリストファー・ネイビス src/app/shared/pipe/localize.ts - 347 + 351 @@ -3345,7 +3528,7 @@ 北朝鮮 src/app/shared/pipe/localize.ts - 349 + 353 @@ -3353,7 +3536,7 @@ 韓国 src/app/shared/pipe/localize.ts - 351 + 355 @@ -3361,7 +3544,7 @@ クウェート src/app/shared/pipe/localize.ts - 353 + 357 @@ -3369,7 +3552,7 @@ ケイマン諸島 src/app/shared/pipe/localize.ts - 355 + 359 @@ -3377,7 +3560,7 @@ カザフスタン src/app/shared/pipe/localize.ts - 357 + 361 @@ -3385,7 +3568,7 @@ ラオス src/app/shared/pipe/localize.ts - 359 + 363 @@ -3393,7 +3576,7 @@ レバノン src/app/shared/pipe/localize.ts - 361 + 365 @@ -3401,7 +3584,7 @@ セントルシア src/app/shared/pipe/localize.ts - 363 + 367 @@ -3409,7 +3592,7 @@ リヒテンシュタイン src/app/shared/pipe/localize.ts - 365 + 369 @@ -3417,7 +3600,7 @@ スリランカ src/app/shared/pipe/localize.ts - 367 + 371 @@ -3425,7 +3608,7 @@ リベリア src/app/shared/pipe/localize.ts - 369 + 373 @@ -3433,7 +3616,7 @@ レソト src/app/shared/pipe/localize.ts - 371 + 375 @@ -3441,7 +3624,7 @@ リトアニア src/app/shared/pipe/localize.ts - 373 + 377 @@ -3449,7 +3632,7 @@ ルクセンブルク src/app/shared/pipe/localize.ts - 375 + 379 @@ -3457,7 +3640,7 @@ ラトビア src/app/shared/pipe/localize.ts - 377 + 381 @@ -3465,7 +3648,7 @@ リビア src/app/shared/pipe/localize.ts - 379 + 383 @@ -3473,7 +3656,7 @@ モロッコ src/app/shared/pipe/localize.ts - 381 + 385 @@ -3481,7 +3664,7 @@ モナコ src/app/shared/pipe/localize.ts - 383 + 387 @@ -3489,7 +3672,7 @@ モルドバ src/app/shared/pipe/localize.ts - 385 + 389 @@ -3497,7 +3680,7 @@ モンテネグロ src/app/shared/pipe/localize.ts - 387 + 391 @@ -3505,7 +3688,7 @@ サン・マルタン src/app/shared/pipe/localize.ts - 389 + 393 @@ -3513,7 +3696,7 @@ マダガスカル src/app/shared/pipe/localize.ts - 391 + 395 @@ -3521,7 +3704,7 @@ マーシャル諸島 src/app/shared/pipe/localize.ts - 393 + 397 @@ -3529,7 +3712,7 @@ 北マケドニア src/app/shared/pipe/localize.ts - 395 + 399 @@ -3537,7 +3720,7 @@ マリ src/app/shared/pipe/localize.ts - 397 + 401 @@ -3545,7 +3728,7 @@ ミャンマー(ビルマ) src/app/shared/pipe/localize.ts - 399 + 403 @@ -3553,7 +3736,7 @@ モンゴル src/app/shared/pipe/localize.ts - 401 + 405 @@ -3561,7 +3744,7 @@ マカオ src/app/shared/pipe/localize.ts - 403 + 407 @@ -3569,7 +3752,7 @@ 北マリアナ諸島 src/app/shared/pipe/localize.ts - 405 + 409 @@ -3577,7 +3760,7 @@ マルティニーク src/app/shared/pipe/localize.ts - 407 + 411 @@ -3585,7 +3768,7 @@ モーリタニア src/app/shared/pipe/localize.ts - 409 + 413 @@ -3593,7 +3776,7 @@ モントセラト src/app/shared/pipe/localize.ts - 411 + 415 @@ -3601,7 +3784,7 @@ マルタ src/app/shared/pipe/localize.ts - 413 + 417 @@ -3609,7 +3792,7 @@ モーリシャス src/app/shared/pipe/localize.ts - 415 + 419 @@ -3617,7 +3800,7 @@ モルディブ src/app/shared/pipe/localize.ts - 417 + 421 @@ -3625,7 +3808,7 @@ マラウイ src/app/shared/pipe/localize.ts - 419 + 423 @@ -3633,7 +3816,7 @@ メキシコ src/app/shared/pipe/localize.ts - 421 + 425 @@ -3641,7 +3824,7 @@ マレーシア src/app/shared/pipe/localize.ts - 423 + 427 @@ -3649,7 +3832,7 @@ モザンビーク src/app/shared/pipe/localize.ts - 425 + 429 @@ -3657,7 +3840,7 @@ ナミビア src/app/shared/pipe/localize.ts - 427 + 431 @@ -3665,7 +3848,7 @@ ニューカレドニア src/app/shared/pipe/localize.ts - 429 + 433 @@ -3673,7 +3856,7 @@ ニジェール src/app/shared/pipe/localize.ts - 431 + 435 @@ -3681,7 +3864,7 @@ ノーフォーク島 src/app/shared/pipe/localize.ts - 433 + 437 @@ -3689,7 +3872,7 @@ ナイジェリア src/app/shared/pipe/localize.ts - 435 + 439 @@ -3697,7 +3880,7 @@ ニカラグア src/app/shared/pipe/localize.ts - 437 + 441 @@ -3705,7 +3888,7 @@ オランダ src/app/shared/pipe/localize.ts - 439 + 443 @@ -3713,7 +3896,7 @@ ノルウェー src/app/shared/pipe/localize.ts - 441 + 445 @@ -3721,7 +3904,7 @@ ネパール src/app/shared/pipe/localize.ts - 443 + 447 @@ -3729,7 +3912,7 @@ ナウル src/app/shared/pipe/localize.ts - 445 + 449 @@ -3737,7 +3920,7 @@ ニウエ src/app/shared/pipe/localize.ts - 447 + 451 @@ -3745,7 +3928,7 @@ ニュージーランド src/app/shared/pipe/localize.ts - 449 + 453 @@ -3753,7 +3936,7 @@ オマーン src/app/shared/pipe/localize.ts - 451 + 455 @@ -3761,7 +3944,7 @@ パナマ src/app/shared/pipe/localize.ts - 453 + 457 @@ -3769,7 +3952,7 @@ ペルー src/app/shared/pipe/localize.ts - 455 + 459 @@ -3777,7 +3960,7 @@ フランス領ポリネシア src/app/shared/pipe/localize.ts - 457 + 461 @@ -3785,7 +3968,7 @@ パプアニューギニア src/app/shared/pipe/localize.ts - 459 + 463 @@ -3793,7 +3976,7 @@ フィリピン src/app/shared/pipe/localize.ts - 461 + 465 @@ -3801,7 +3984,7 @@ パキスタン src/app/shared/pipe/localize.ts - 463 + 467 @@ -3809,7 +3992,7 @@ ポーランド src/app/shared/pipe/localize.ts - 465 + 469 @@ -3817,7 +4000,7 @@ サンピエール島およびミクロン島 src/app/shared/pipe/localize.ts - 467 + 471 @@ -3825,7 +4008,7 @@ ピトケアン諸島 src/app/shared/pipe/localize.ts - 469 + 473 @@ -3833,7 +4016,7 @@ プエルトリコ src/app/shared/pipe/localize.ts - 471 + 475 @@ -3841,7 +4024,7 @@ パレスチナ自治区 src/app/shared/pipe/localize.ts - 473 + 477 @@ -3849,7 +4032,7 @@ ポルトガル src/app/shared/pipe/localize.ts - 475 + 479 @@ -3857,7 +4040,7 @@ パラオ src/app/shared/pipe/localize.ts - 477 + 481 @@ -3865,7 +4048,7 @@ パラグアイ src/app/shared/pipe/localize.ts - 479 + 483 @@ -3873,7 +4056,7 @@ カタール src/app/shared/pipe/localize.ts - 481 + 485 @@ -3881,7 +4064,7 @@ レユニオン src/app/shared/pipe/localize.ts - 483 + 487 @@ -3889,7 +4072,7 @@ ルーマニア src/app/shared/pipe/localize.ts - 485 + 489 @@ -3897,7 +4080,7 @@ セルビア src/app/shared/pipe/localize.ts - 487 + 491 @@ -3905,7 +4088,7 @@ ロシア src/app/shared/pipe/localize.ts - 489 + 493 @@ -3913,7 +4096,7 @@ ルワンダ src/app/shared/pipe/localize.ts - 491 + 495 @@ -3921,7 +4104,7 @@ サウジアラビア src/app/shared/pipe/localize.ts - 493 + 497 @@ -3929,7 +4112,7 @@ ソロモン諸島 src/app/shared/pipe/localize.ts - 495 + 499 @@ -3937,7 +4120,7 @@ セーシェル src/app/shared/pipe/localize.ts - 497 + 501 @@ -3945,7 +4128,7 @@ スーダン src/app/shared/pipe/localize.ts - 499 + 503 @@ -3953,7 +4136,7 @@ スウェーデン src/app/shared/pipe/localize.ts - 501 + 505 @@ -3961,7 +4144,7 @@ シンガポール src/app/shared/pipe/localize.ts - 503 + 507 @@ -3969,7 +4152,7 @@ セントヘレナ src/app/shared/pipe/localize.ts - 505 + 509 @@ -3977,7 +4160,7 @@ スロベニア src/app/shared/pipe/localize.ts - 507 + 511 @@ -3985,7 +4168,7 @@ スヴァールバル諸島およびヤンマイエン島 src/app/shared/pipe/localize.ts - 509 + 513 @@ -3993,7 +4176,7 @@ スロバキア src/app/shared/pipe/localize.ts - 511 + 515 @@ -4001,7 +4184,7 @@ シエラレオネ src/app/shared/pipe/localize.ts - 513 + 517 @@ -4009,7 +4192,7 @@ サンマリノ src/app/shared/pipe/localize.ts - 515 + 519 @@ -4017,7 +4200,7 @@ セネガル src/app/shared/pipe/localize.ts - 517 + 521 @@ -4025,7 +4208,7 @@ ソマリア src/app/shared/pipe/localize.ts - 519 + 523 @@ -4033,7 +4216,7 @@ スリナム src/app/shared/pipe/localize.ts - 521 + 525 @@ -4041,7 +4224,7 @@ 南スーダン src/app/shared/pipe/localize.ts - 523 + 527 @@ -4049,7 +4232,7 @@ サントメ・プリンシペ src/app/shared/pipe/localize.ts - 525 + 529 @@ -4057,7 +4240,7 @@ エルサルバドル src/app/shared/pipe/localize.ts - 527 + 531 @@ -4065,7 +4248,7 @@ シント・マールテン(オランダ領) src/app/shared/pipe/localize.ts - 529 + 533 @@ -4073,7 +4256,7 @@ シリア src/app/shared/pipe/localize.ts - 531 + 535 @@ -4081,7 +4264,7 @@ スワジランド src/app/shared/pipe/localize.ts - 533 + 537 @@ -4089,7 +4272,7 @@ タークス・カイコス諸島 src/app/shared/pipe/localize.ts - 535 + 539 @@ -4097,7 +4280,7 @@ チャド src/app/shared/pipe/localize.ts - 537 + 541 @@ -4105,7 +4288,7 @@ フランス領南方・南極地域 src/app/shared/pipe/localize.ts - 539 + 543 @@ -4113,7 +4296,7 @@ トーゴ src/app/shared/pipe/localize.ts - 541 + 545 @@ -4121,7 +4304,7 @@ タイ src/app/shared/pipe/localize.ts - 543 + 547 @@ -4129,7 +4312,7 @@ タジキスタン src/app/shared/pipe/localize.ts - 545 + 549 @@ -4137,7 +4320,7 @@ トケラウ src/app/shared/pipe/localize.ts - 547 + 551 @@ -4145,7 +4328,7 @@ 東ティモール src/app/shared/pipe/localize.ts - 549 + 553 @@ -4153,7 +4336,7 @@ トルクメニスタン src/app/shared/pipe/localize.ts - 551 + 555 @@ -4161,7 +4344,7 @@ チュニジア src/app/shared/pipe/localize.ts - 553 + 557 @@ -4169,7 +4352,7 @@ トンガ src/app/shared/pipe/localize.ts - 555 + 559 @@ -4177,7 +4360,7 @@ トルコ src/app/shared/pipe/localize.ts - 557 + 561 @@ -4185,7 +4368,7 @@ トリニダード・トバゴ src/app/shared/pipe/localize.ts - 559 + 563 @@ -4193,7 +4376,7 @@ ツバル src/app/shared/pipe/localize.ts - 561 + 565 @@ -4201,7 +4384,7 @@ 台湾 src/app/shared/pipe/localize.ts - 563 + 567 @@ -4209,7 +4392,7 @@ タンザニア src/app/shared/pipe/localize.ts - 565 + 569 @@ -4217,7 +4400,7 @@ ウクライナ src/app/shared/pipe/localize.ts - 567 + 571 @@ -4225,7 +4408,7 @@ ウガンダ src/app/shared/pipe/localize.ts - 569 + 573 @@ -4233,7 +4416,7 @@ 合衆国領有小離島 src/app/shared/pipe/localize.ts - 571 + 575 @@ -4241,7 +4424,7 @@ アメリカ src/app/shared/pipe/localize.ts - 573 + 577 @@ -4249,7 +4432,7 @@ ウルグアイ src/app/shared/pipe/localize.ts - 575 + 579 @@ -4257,7 +4440,7 @@ ウズベキスタン src/app/shared/pipe/localize.ts - 577 + 581 @@ -4265,7 +4448,7 @@ バチカン市国 src/app/shared/pipe/localize.ts - 579 + 583 @@ -4273,7 +4456,7 @@ セントビンセント及びグレナディーン諸島 src/app/shared/pipe/localize.ts - 581 + 585 @@ -4281,7 +4464,7 @@ ベネズエラ src/app/shared/pipe/localize.ts - 583 + 587 @@ -4289,7 +4472,7 @@ イギリス領ヴァージン諸島 src/app/shared/pipe/localize.ts - 585 + 589 @@ -4297,7 +4480,7 @@ アメリカ領ヴァージン諸島 src/app/shared/pipe/localize.ts - 587 + 591 @@ -4305,7 +4488,7 @@ ベトナム src/app/shared/pipe/localize.ts - 589 + 593 @@ -4313,7 +4496,7 @@ バヌアツ src/app/shared/pipe/localize.ts - 591 + 595 @@ -4321,7 +4504,7 @@ ウォリス・フツナ src/app/shared/pipe/localize.ts - 593 + 597 @@ -4329,7 +4512,7 @@ サモア src/app/shared/pipe/localize.ts - 595 + 599 @@ -4337,7 +4520,7 @@ Kosovo src/app/shared/pipe/localize.ts - 597 + 601 @@ -4345,7 +4528,7 @@ イエメン src/app/shared/pipe/localize.ts - 599 + 603 @@ -4353,7 +4536,7 @@ マヨット src/app/shared/pipe/localize.ts - 601 + 605 @@ -4361,7 +4544,7 @@ 南アフリカ src/app/shared/pipe/localize.ts - 603 + 607 @@ -4369,7 +4552,7 @@ ザンビア src/app/shared/pipe/localize.ts - 605 + 609 @@ -4377,10 +4560,11 @@ ジンバブエ src/app/shared/pipe/localize.ts - 607 + 611 - + Add or edit affiliation 所属を追加または編集 @@ -4390,7 +4574,7 @@ This field should follow pattern for "Email". - この欄は、{{ pattern }}のパターンに従う必要があります。 + この欄は、Emailのパターンに従う必要があります。 src/app/affiliation/affiliation-update.component.html 25 @@ -4427,9 +4611,21 @@ src/app/affiliation/affiliation-update.component.html 188 + + src/app/member/member-update.component.html + 61 + + + src/app/member/member-update.component.html + 105 + + + src/app/member/member-update.component.html + 140 + - Org Name + Organization Name 組織名 src/app/affiliation/affiliation-update.component.html @@ -4437,7 +4633,7 @@ - Org City + City src/app/affiliation/affiliation-update.component.html @@ -4445,7 +4641,7 @@ - Org Region + State/Region 州/地域 src/app/affiliation/affiliation-update.component.html @@ -4453,23 +4649,25 @@ - Org Country + Country src/app/affiliation/affiliation-update.component.html 141 - - Disambiguation Source + + Organization ID Source 組織IDソース src/app/affiliation/affiliation-update.component.html 170 - - Disambiguated Org Id + + Organization ID 組織ID src/app/affiliation/affiliation-update.component.html @@ -4477,27 +4675,27 @@ - This field is required. GRID Organization ID should start with "grid.", RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with 0 - こちらのフィールドが必要です。GRID 組織 ID は、grid.12344 のように grid. で始まる必要があります。あるいは有効な grid URL である必要があります。RINGGOLD 組織 ID は数字である必要があります。ROR ID は 0 から始まり、9 文字である必要があります。 + This field is required. GRID Organization ID should start with "grid.", + RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with + 0 + こちらのフィールドが必要です。GRID 組織 ID は、grid.12344 のように grid. で始まる必要があります。あるいは有効な + grid URL である必要があります。RINGGOLD 組織 ID は数字である必要があります。ROR ID は 0 から始まり、9 文字である必要があります。 src/app/affiliation/affiliation-update.component.html 223 - This field cannot be longer than 4000 characters. - この欄は、{{ max }}文字より長くすることはできません。 + This field cannot be longer than + characters. + この欄は、文字より長くすることはできません。 - src/app/affiliation/affiliation-update.component.html - 255 - - - src/app/affiliation/affiliation-update.component.html - 278 + src/app/affiliation/affiliation-update.component.ts + 195 - src/app/affiliation/affiliation-update.component.html - 293 + src/app/affiliation/affiliation-update.component.ts + 197 @@ -4505,7 +4703,7 @@ 開始年 src/app/affiliation/affiliation-update.component.html - 305 + 293 @@ -4513,11 +4711,11 @@ src/app/affiliation/affiliation-update.component.html - 314 + 302 src/app/affiliation/affiliation-update.component.html - 364 + 352 @@ -4525,7 +4723,7 @@ 月を開始する src/app/affiliation/affiliation-update.component.html - 323 + 311 @@ -4533,11 +4731,11 @@ src/app/affiliation/affiliation-update.component.html - 332 + 320 src/app/affiliation/affiliation-update.component.html - 382 + 370 @@ -4545,7 +4743,7 @@ 開始日 src/app/affiliation/affiliation-update.component.html - 341 + 329 @@ -4553,11 +4751,11 @@ src/app/affiliation/affiliation-update.component.html - 344 + 332 src/app/affiliation/affiliation-update.component.html - 394 + 382 @@ -4565,7 +4763,7 @@ 終了年 src/app/affiliation/affiliation-update.component.html - 355 + 343 @@ -4573,7 +4771,7 @@ 終了月 src/app/affiliation/affiliation-update.component.html - 373 + 361 @@ -4581,7 +4779,7 @@ 終了日 src/app/affiliation/affiliation-update.component.html - 391 + 379 @@ -4589,7 +4787,7 @@ 開始日を終了日より後にすることはできません。 src/app/affiliation/affiliation-update.component.html - 400 + 388 @@ -4597,7 +4795,7 @@ 外部IDタイプ src/app/affiliation/affiliation-update.component.html - 411 + 399 @@ -4605,15 +4803,17 @@ 外部 ID の Url src/app/affiliation/affiliation-update.component.html - 441 + 429 - Please do not forget to download and send permission links to your researcher once the assertion has been saved. - 注 : アサーションがいったん保存された際には、ダウンロードして、許可用リンクをお客様のリサーチャーに送信することを忘れないようお願いいたします。 + Please do not forget to download and send permission links to your researcher once + the assertion has been saved. + 注 : + アサーションがいったん保存された際には、ダウンロードして、許可用リンクをお客様のリサーチャーに送信することを忘れないようお願いいたします。 src/app/affiliation/affiliation-update.component.html - 457 + 445 @@ -4624,9 +4824,13 @@ 8 - - Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the portal and the user's ORCID record - のこのアフィリエーション を削除しますか?ポータルとユーザーのORCIDレコードからアフィリエーション が削除されます。 + + Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the + portal and the user's ORCID record + のこのアフィリエーション + を削除しますか?ポータルとユーザーのORCIDレコードからアフィリエーション が削除されます。 src/app/affiliation/affiliation-delete.component.ts 40 @@ -4637,7 +4841,7 @@ アフィリエーションが作成されました src/app/shared/pipe/localize.ts - 23 + 27 @@ -4645,7 +4849,7 @@ アフィリエーションが更新されました src/app/shared/pipe/localize.ts - 25 + 29 @@ -4653,7 +4857,7 @@ アフィリエーションが削除されました src/app/shared/pipe/localize.ts - 27 + 31 @@ -4661,65 +4865,390 @@ アフィリエーションの削除中に問題が発生しました src/app/shared/pipe/localize.ts - 29 + 33 - + Send permission notifications 許可通知を送信 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 3 - - A request to send notifications to your users is already in progress. Please try again later. + + A request to send notifications to your users is already in progress. Please try + again later. ユーザーへの通知送信リクエストを実行中です。後でもう一度お試しください。 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 7 - - Are you sure that you would like ORCID to send permission links to your researchers for the affiliations that are pending? + + Are you sure that you would like ORCID to send permission links to your researchers + for the affiliations that are pending? ステータスが「保留中」のアフィリエーションアイテムを持つすべての研究者に許可通知が送信されます。 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 10 - + Notification language 通知の言語 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 11 - + What language should the notification be sent in? どの言語で通知を送信しますか? - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 12 - + Send notifications 通知を送信 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 23 - - Notification process has now started. We will email you as soon as the process has completed. + + Notification process has now started. We will email you as soon as the process has + completed. 現在、通知処理を開始しています。手続きが完了し次第、メールでお知らせします。 + + src/app/shared/pipe/localize.ts + 25 + + + + You have already granted + お客様は既に許可されています + + src/app/landing-page/landing-page.component.html + 13 + + + + permission to update your ORCID record + ORCIDレコードを更新する権限 + + src/app/landing-page/landing-page.component.html + 16 + + + + Oops, something went wrong and we were not able to fetch your ORCID iD + おっと、なにか問題が発生し、ORCID iDを取得できませんでした + + src/app/landing-page/landing-page.component.html + 33 + + + + Oops, you have denied access. + おっと、アクセスを拒否しました。 + + src/app/landing-page/landing-page.component.html + 39 + + + + will not be able to update your ORCID record. + では ORCID の記録を更新できません。 + + src/app/landing-page/landing-page.component.html + 42 + + + + If this was a mistake, click the button below to grant access. + こちらが間違いである場合には、以下のボタンをクリックして、アクセスを許可してください。 + + src/app/landing-page/landing-page.component.html + 45 + + + + If you find that data added to your ORCID record is incorrect, please contact + ORCIDレコードに追加されたデータが正しくないことを発見した場合は、にご連絡ください。 + + src/app/landing-page/landing-page.component.ts + 78 + + + + This authorization link has already been used. Please contact for a new authorization link. + こちらの承認用リンクはすでに使用されています。 + に連絡して、新しい承認用リンクを入手してください。 + + src/app/landing-page/landing-page.component.ts + 79 + + + + Allow to update my ORCID record. + が私のORCIDレコードを更新できるようにする + + src/app/landing-page/landing-page.component.ts + 80 + + + + You have successfully granted + permission to update your ORCID record, and your record has been updated with affiliation + information. + + にあなたのORCIDレコードを更新する権限が正常に付与されました。あなたのレコードは、アフィリエーション情報で更新されます。 + + src/app/landing-page/landing-page.component.ts + 81 + + + + Thanks, ! + さん、ありがとうございます + + src/app/landing-page/landing-page.component.ts + 172 + + + + Member details + メンバーの詳細 + + src/app/member/member-detail.component.html + 4 + + + + Salesforce Id + Salesforce ID + + src/app/member/member-detail.component.html + 9 + + + src/app/member/member-update.component.html + 41 + + + src/app/member/members.component.html + 59 + + + + Parent Salesforce Id + 親SalesforceID + + src/app/member/member-detail.component.html + 13 + + + src/app/member/member-update.component.html + 71 + + + src/app/member/members.component.html + 83 + + + + Member Name + メンバー名 + + src/app/member/member-detail.component.html + 17 + + + src/app/member/member-update.component.html + 86 + + + src/app/member/members.component.html + 67 + + + + Client ID + クライアントID + + src/app/member/member-detail.component.html + 21 + + + src/app/member/member-update.component.html + 115 + + + + Type + タイプ + + src/app/member/member-detail.component.html + 25 + + + + Is Consortium Lead + コンソーシアムリード + + src/app/member/member-detail.component.html + 29 + + + src/app/member/member-update.component.html + 154 + + + src/app/member/members.component.html + 75 + + + + Assertion Service Enabled + アサーションが有効化されました + + src/app/member/member-detail.component.html + 35 + + + src/app/member/member-update.component.html + 169 + + + src/app/member/members.component.html + 91 + + + + Status + ステータス + + src/app/member/member-detail.component.html + 41 + + + + Created Date + 作成されました + + src/app/member/member-detail.component.html + 45 + + + + Last Modified Date + 最終更新 + + src/app/member/member-detail.component.html + 49 + + + src/app/member/members.component.html + 99 + + + + Add or edit member + メンバーを追加または編集する + + src/app/member/member-update.component.html + 8 + + + + Note: Client ID must have User OBO enabled AND + 注: クライアントIDはメンバーOBOが有効になっている必要があり、および + + src/app/member/member-update.component.html + 120 + + + + added as a Redirect URI in + にリダイレクトURIとして追加されました + + src/app/member/member-update.component.html + 124 + + + + Manage members + メンバーを管理する + + src/app/member/members.component.html + 2 + + + + Add member + メンバーを追加する + + src/app/member/members.component.html + 11 + + + + Import members from CSV + CSVからメンバーをインポート + + src/app/member/members.component.html + 19 + + + + No members to show + 表示するメンバーはいません + + src/app/member/members.component.html + 50 + + + + Member created + メンバーが作成されました src/app/shared/pipe/localize.ts 21 + + Member updated successfully + メンバーを更新できました + + src/app/shared/pipe/localize.ts + 23 + + \ No newline at end of file diff --git a/ui/src/i18n/messages.ko.xlf b/ui/src/i18n/messages.ko.xlf index 2453a1d5d..137b9e4d4 100644 --- a/ui/src/i18n/messages.ko.xlf +++ b/ui/src/i18n/messages.ko.xlf @@ -70,8 +70,10 @@ - Slide of - Slide of + Slide of + + Slide of + Currently selected slide number read by screen reader node_modules/src/ngb-config.ts @@ -287,8 +289,12 @@ - Failed to sign in! Please check your credentials and try again. - 로그인에 실패했습니다! 사용자 자격 증명을 확인하여 다시 시도해 주세요. + Failed to + sign in! Please + check your credentials and try again. + 로그인에 + 실패했습니다! 사용자 자격 + 증명을 확인하여 다시 시도해 주세요. src/app/account/login/login.component.html 6 @@ -302,7 +308,8 @@ 10 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 22 @@ -318,7 +325,8 @@ 16 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 28 @@ -386,15 +394,21 @@ Reset your password 비밀번호 재설정 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 4 - Email address isn't registered! Please check and try again. - 이메일 주소가 등록되지 않았습니다! 확인하여 다시 시도해 주세요. - - src/app/account/password/password-reset-init.component.html + Email + address isn't registered! Please check and try again. + 이메일 + 주소가 등록되지 않았습니다! + 확인하여 다시 시도해 주세요. + + + src/app/account/password/password-reset-init.component.html 7 @@ -402,7 +416,8 @@ Enter the email address you used to register. 등록할 때 사용한 이메일 주소를 입력하세요 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 11 @@ -410,7 +425,8 @@ Check your emails for details on how to reset your password. 비밀번호 재설정 방법에 대한 자세한 내용은 이메일을 확인하세요. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 15 @@ -418,7 +434,8 @@ Your email is required. 이메일은 필수 항목입니다. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 42 @@ -426,7 +443,8 @@ Your email is invalid. 이메일이 잘못되었습니다. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 49 @@ -434,7 +452,8 @@ Your email is required to be at least 5 characters. 이메일은 최소 5자여야 합니다. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 56 @@ -442,7 +461,8 @@ Your email cannot be longer than 100 characters. 이메일은 50자 이하여야 합니다. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 64 @@ -450,7 +470,8 @@ Reset 비밀번호 재설정 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 75 @@ -463,8 +484,10 @@ - Settings saved! - 설정이 저장되었습니다! + Settings + saved! + 설정이 + 저장되었습니다! src/app/account/settings/settings.component.html 8 @@ -579,8 +602,11 @@ - Add extra security to your ORCID member portal account by enabling two-factor authentication. Each time you sign in, you'll be prompted to enter a six-digit code we send to your preferred authentication application. - 2단계 인증을 활성화해 ORCID 회원 포털 계정의 보안을 강화하세요. 로그인할 때마다 선택하신 인증 어플리케이션에 전송된 6자리 코드를 입력해야 합니다. + Add extra security to your ORCID member portal account by enabling two-factor + authentication. Each time you sign in, you'll be prompted to enter a six-digit code + we send to your preferred authentication application. + 2단계 인증을 활성화해 ORCID 회원 포털 계정의 보안을 강화하세요. 로그인할 때마다 선택하신 인증 어플리케이션에 전송된 6자리 + 코드를 입력해야 합니다. src/app/account/settings/settings.component.html 146 @@ -603,16 +629,36 @@ - Install a two-factor authentication appA 2FA app is required to create the six-digit code you need to access your account each time you sign in. Most apps are for mobile devices; some are also available as desktop or web-based apps. Download and install your preferred 2FA app, such as Google Authenticator, FreeOTP, or Authy. - 2단계 인증 앱 설치2단계 인증 앱은 로그인할 때마다 계정에 접근하는 데 필요한 6자리 코드를 생성합니다. 대부분 모바일 기기용 앱이며, 데스크톱이나 웹 기반 앱을 이용할 수도 있습니다. Google Authenticator, FreeOTP, Authy와 같은 2단계 인증 앱 중 하나를 다운로드하고 설치하세요. + Install a two-factor authentication appA 2FA app is required to create the six-digit code you + need to access your account each time you sign in. Most apps are for mobile devices; some + are also available as desktop or web-based apps. Download and install your preferred 2FA + app, such as Google + Authenticator, + FreeOTP, or Authy. + 2단계 인증 앱 설치2단계 + 인증 앱은 로그인할 때마다 계정에 접근하는 데 필요한 6자리 코드를 생성합니다. 대부분 모바일 기기용 앱이며, 데스크톱이나 웹 기반 앱을 이용할 수도 있습니다. Google + Authenticator, + FreeOTP, Authy와 같은 2단계 인증 앱 중 하나를 다운로드하고 설치하세요. src/app/account/settings/settings.component.html 166 - Scan this QR code with your deviceOpen your 2FA app and scan the image below. - 사용 중인 기기로 이 QR 코드 스캔2단계 인증 앱을 열고 아래 이미지를 스캔하세요. + Scan this QR code with your deviceOpen your 2FA app and scan the image below. + 사용 중인 기기로 이 QR 코드 스캔2단계 인증 앱을 열고 아래 이미지를 스캔하세요. src/app/account/settings/settings.component.html 174 @@ -643,8 +689,12 @@ - Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, your 2FA app will display a six-digit code. Enter this code in the box below and click Save. - 앱의 6자리 코드 입력QR 코드를 스캔하거나 텍스트 코드를 입력하시면 2단계 인증 앱에 6자리 코드가 표시됩니다. 아래 상자에 이 코드를 입력하고 저장을 클릭하세요. + Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, + your 2FA app will display a six-digit code. Enter this code in the box below and click + Save. + 앱의 6자리 코드 입력QR + 코드를 스캔하거나 텍스트 코드를 입력하시면 2단계 인증 앱에 6자리 코드가 표시됩니다. 아래 상자에 이 코드를 입력하고 저장을 클릭하세요. src/app/account/settings/settings.component.html 205 @@ -667,7 +717,8 @@ - Make a note of the following backup codes, this is the only time they will be shown. + Make a note of the following backup codes, this is the only time they will be + shown. 다음 백업 코드를 기록해 두세요. 해당 코드는 이번만 표시됩니다. src/app/account/settings/settings.component.html @@ -875,16 +926,22 @@ - Password changed! - 비밀번호가 변경되었습니다! + Password + changed! + 비밀번호가 + 변경되었습니다! src/app/account/password/password.component.html 7 - An error has occurred! The password could not be changed. - 오류가 발생했습니다! 비밀번호를 변경할 수 없습니다. + An error + has occurred! + The password could not be changed. + 오류가 + 발생했습니다! 비밀번호를 + 변경할 수 없습니다. src/app/account/password/password.component.html 10 @@ -894,7 +951,8 @@ The password and its confirmation do not match! 비밀번호와 비밀번호 확인이 일치하지 않습니다! - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 62 @@ -922,7 +980,8 @@ Your password is required. 비밀번호가 필요합니다. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 91 @@ -938,7 +997,8 @@ New password 새 비밀번호 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 70 @@ -950,7 +1010,8 @@ New password 새 비밀번호 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 77 @@ -962,7 +1023,8 @@ Your password is required to be at least 4 characters. 비밀번호는 4자 이상이어야 합니다. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 98 @@ -974,7 +1036,8 @@ Your password cannot be longer than 50 characters. 비밀번호는 50자를 초과할 수 없습니다. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 105 @@ -986,7 +1049,8 @@ New password confirmation 새 비밀번호 확인 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 114 @@ -998,7 +1062,8 @@ Confirm the new password 새 비밀번호 확인 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 121 @@ -1010,7 +1075,8 @@ Your password confirmation is required. 확인 비밀번호가 필요합니다. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 135 @@ -1022,7 +1088,8 @@ Your password confirmation is required to be at least 4 characters. 확인 비밀번호는 4자 이상이어야 합니다. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 142 @@ -1034,7 +1101,8 @@ Your password confirmation cannot be longer than 50 characters. 확인 비밀번호는 50자를 초과할 수 없습니다. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 149 @@ -1062,55 +1130,78 @@ Reset password 비밀번호 재설정 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 4 - The activation key is missing. - 활성화 키가 없습니다. - - src/app/account/password/password-reset-finish.component.html + The + activation key is missing. + 활성화 + 키가 없습니다. + + + src/app/account/password/password-reset-finish.component.html 7 - This activation key is invalid. - 활성화 키가 잘못되었습니다. - - src/app/account/password/password-reset-finish.component.html + This + activation key is invalid. + 활성화 + 키가 잘못되었습니다. + + + src/app/account/password/password-reset-finish.component.html 11 - This activation has expired. - 활성화 키가 만료되었습니다. - - src/app/account/password/password-reset-finish.component.html + This + activation has expired. + 활성화 + 키가 만료되었습니다. + + + src/app/account/password/password-reset-finish.component.html 15 - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It looks like this + link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It + looks like this link has expired. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 20 - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a new + activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a + new activation link to your registered email address. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 26 - If you are still having problems activating your account or have not received your new activation link please contact our support team please contact us at membership@orcid.org. - If you are still having problems activating your account or have not received your new activation link, please contact us at membership@orcid.org. - - src/app/account/password/password-reset-finish.component.html + If you are still having problems activating your account or have not received your + new activation link please contact our support team please contact us at + membership@orcid.org. + If you are still having problems activating your account or have not + received your new activation link, please contact us at membership@orcid.org. + + + src/app/account/password/password-reset-finish.component.html 32 @@ -1118,23 +1209,30 @@ Choose a new password 새 비밀번호 선택 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 39 - Your password couldn't be reset. Remember a password request is only valid for 24 hours. + Your password couldn't be reset. Remember a password request is only valid for + 24 hours. 비밀번호를 초기화할 수 없습니다. 비밀번호 요청은 24시간 동안만 유효합니다. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 43 - Your password has been reset. Please - 비밀번호가 재설정되었습니다. - - src/app/account/password/password-reset-finish.component.html + Your + password has been reset. Please + 비밀번호가 + 재설정되었습니다. + + + src/app/account/password/password-reset-finish.component.html 50 @@ -1142,7 +1240,8 @@ sign in 로그인 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 58 @@ -1150,7 +1249,8 @@ Reset Password 새 비밀번호 인증 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 159 @@ -1182,7 +1282,8 @@ Password strength: 비밀번호 강도: - src/app/account/password/password-strength.component.html + + src/app/account/password/password-strength.component.html 2 @@ -1365,6 +1466,14 @@ src/app/affiliation/affiliation-detail.component.html 143 + + src/app/member/member-detail.component.html + 47 + + + src/app/member/member-detail.component.html + 51 + src/app/user/user-detail.component.html 81 @@ -1393,6 +1502,10 @@ src/app/affiliation/affiliation-detail.component.html 230 + + src/app/member/member-detail.component.html + 61 + src/app/user/user-detail.component.html 95 @@ -1409,6 +1522,14 @@ src/app/affiliation/affiliations.component.html 220 + + src/app/member/member-detail.component.html + 66 + + + src/app/member/members.component.html + 151 + src/app/user/user-detail.component.html 103 @@ -1450,17 +1571,23 @@ 17 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 34 src/app/affiliation/affiliation-update.component.html - 465 + 453 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 20 + + src/app/member/member-update.component.html + 186 + src/app/user/user-delete.component.html 14 @@ -1479,7 +1606,11 @@ 저장 src/app/affiliation/affiliation-update.component.html - 468 + 456 + + + src/app/member/member-update.component.html + 189 src/app/user/user-update.component.html @@ -1521,6 +1652,10 @@ src/app/affiliation/affiliations.component.html 104 + + src/app/member/members.component.html + 32 + src/app/user/users.component.html 32 @@ -1555,20 +1690,30 @@ - Showing - of items. - 항목 중 - 항목 표시. + Showing - + of items. + 항목 중 - 항목 표시. src/app/affiliation/affiliations.component.ts - 228 + 227 + + + src/app/member/members.component.ts + 160 src/app/user/users.component.ts 230 - - Are you sure you want to transfer ownership? You are about to transfer ownership of this organization account. If you are the organization owner after transferring ownership, you will no longer have access to administrative functions, such as managing users. - 소유권을 정말 이전하시겠습니까? 이 조직 계정의 소유권을 이전하려고 합니다. 소유권 이전 후 조직 소유자인 경우 더 이상 사용자 관리와 같은 관리 기능에 액세스할 수 없습니다. + + Are you sure you want to transfer ownership? You are about to transfer ownership of + this organization account. If you are the organization owner after transferring ownership, + you will no longer have access to administrative functions, such as managing users. + 소유권을 정말 이전하시겠습니까? 이 조직 계정의 소유권을 이전하려고 합니다. 소유권 이전 후 조직 소유자인 경우 더 이상 사용자 + 관리와 같은 관리 기능에 액세스할 수 없습니다. src/app/user/user-update.component.ts 215 @@ -1595,7 +1740,7 @@ 사용자를 정말 삭제하시겠습니까? src/app/user/user-delete.component.ts - 47 + 44 @@ -1627,7 +1772,8 @@ - Oops! There was a problem processing your data. Pleases fix the errors below and try again + Oops! There was a problem processing your data. Pleases fix the errors below and + try again 이런! 데이터 처리 중에 문제가 발생했습니다. 아래 오류를 수정한 후 다시 시도해 주세요 src/app/user/user-import-dialog.component.html @@ -1654,7 +1800,8 @@ Upload 업로드 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 37 @@ -1679,7 +1826,8 @@ 2 - + Send permission notifications 권한 알림 전송 @@ -1687,7 +1835,8 @@ 11 - + Request permission links 권한 링크 요청 @@ -1695,7 +1844,8 @@ 21 - + Request affiliation status report 제휴 현황 보고서 요청 @@ -1703,7 +1853,9 @@ 31 - + Request affiliations for edit 편집에 대한 제휴 요청 @@ -1727,25 +1879,36 @@ 61 - - Your affiliations for edit file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - 파일 편집에 대한 제휴를 곧 우편으로 발송해 드립니다. 파일을 받지 못하셨다면 membership@orcid.org로 연락하여 문의해 주세요. + + Your affiliations for edit file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + 파일 편집에 대한 제휴를 곧 우편으로 발송해 드립니다. 파일을 받지 못하셨다면 membership@orcid.org로 연락하여 + 문의해 주세요. src/app/affiliation/affiliations.component.html 73 - - Your affiliation status report file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - 제휴 현황 보고서 파일을 곧 우편으로 발송해 드립니다. 파일을 받지 못하셨다면 membership@orcid.org로 연락하여 문의해 주세요. + + Your affiliation status report file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + 제휴 현황 보고서 파일을 곧 우편으로 발송해 드립니다. 파일을 받지 못하셨다면 membership@orcid.org로 연락하여 + 문의해 주세요. src/app/affiliation/affiliations.component.html 82 - - Your permission links file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - 권한 링크 파일을 곧 우편으로 발송해 드립니다. 파일을 받지 못하셨다면 membership@orcid.org로 연락하여 문의해 주세요. + + Your permission links file will be mailed to you shortly. If you do not receive + your file then please contact us at membership@orcid.org. + 권한 링크 파일을 곧 우편으로 발송해 드립니다. 파일을 받지 못하셨다면 membership@orcid.org로 연락하여 문의해 + 주세요. src/app/affiliation/affiliations.component.html 91 @@ -1823,7 +1986,9 @@ 150 - + @@ -1855,9 +2020,12 @@ 190 - - For help troubleshooting, please contact the Member Portal Team and copy/paste or include a screenshot of the error message below. - 이 오류를 해결하는 데 도움이 필요한 경우 컨소시엄 리드 또는 membership@orcid.org에 문의해 주세요. 아래 오류 메시지 스크린샷을 포함해 주세요. + + For help troubleshooting, please contact the Member Portal Team and copy/paste or + include a screenshot of the error message below. + 이 오류를 해결하는 데 도움이 필요한 경우 컨소시엄 리드 또는 membership@orcid.org에 문의해 주세요. 아래 오류 + 메시지 스크린샷을 포함해 주세요. src/app/affiliation/affiliations.component.html 203 @@ -1868,7 +2036,7 @@ 사용자가 액세스 거부함 src/app/shared/pipe/localize.ts - 34 + 38 @@ -1876,7 +2044,7 @@ 대기 중 src/app/shared/pipe/localize.ts - 36 + 40 @@ -1884,7 +2052,7 @@ ORCID 내 src/app/shared/pipe/localize.ts - 38 + 42 @@ -1892,7 +2060,7 @@ 사용자가 액세스 부여함 src/app/shared/pipe/localize.ts - 40 + 44 @@ -1900,7 +2068,7 @@ User deleted from ORCID src/app/shared/pipe/localize.ts - 42 + 46 @@ -1908,7 +2076,7 @@ 사용자가 액세스 철회함 src/app/shared/pipe/localize.ts - 44 + 48 @@ -1916,7 +2084,7 @@ ORCID로 추가 중 오류 src/app/shared/pipe/localize.ts - 46 + 50 @@ -1924,7 +2092,7 @@ ORCID에서 업데이트 중 오류 src/app/shared/pipe/localize.ts - 48 + 52 @@ -1932,7 +2100,7 @@ ORCID에서 재시도 대기 중 src/app/shared/pipe/localize.ts - 50 + 54 @@ -1940,7 +2108,7 @@ ORCID에서 삭제 중 오류 src/app/shared/pipe/localize.ts - 52 + 56 @@ -1948,7 +2116,7 @@ 알림 요청됨 src/app/shared/pipe/localize.ts - 54 + 58 @@ -1956,7 +2124,7 @@ 알림 전송됨 src/app/shared/pipe/localize.ts - 56 + 60 @@ -1964,7 +2132,7 @@ 알림 실패 src/app/shared/pipe/localize.ts - 58 + 62 @@ -1972,7 +2140,7 @@ ORCID에서 업데이트 대기 중 src/app/shared/pipe/localize.ts - 60 + 64 @@ -2007,7 +2175,8 @@ 36 - + Affiliation Section 제휴 유형 @@ -2048,7 +2217,7 @@ src/app/affiliation/affiliation-update.component.html - 265 + 261 @@ -2060,7 +2229,7 @@ src/app/affiliation/affiliation-update.component.html - 285 + 277 @@ -2088,7 +2257,7 @@ src/app/affiliation/affiliation-update.component.html - 426 + 414 @@ -2131,7 +2300,8 @@ 145 - + Notification First Sent 알림 처음 전송됨 @@ -2143,7 +2313,8 @@ 175 - + Notification Last Sent 알림 마지막으로 전송됨 @@ -2167,15 +2338,19 @@ Import affiliations from CSV 제휴 가져오기 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 3 - - Your CSV has been uploaded for processing. We will let you know via email once the file has been processed. + + Your CSV has been uploaded for processing. We will let you know via email once the + file has been processed. 처리를 위해 CSV를 업로드했습니다. 파일을 처리한 후 이메일로 알려 드리겠습니다. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 10 @@ -2183,7 +2358,8 @@ There was a problem uploading your CSV for processing. 처리를 위해 CSV를 업로드하는 중에 문제가 발생했습니다. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 17 @@ -2191,7 +2367,8 @@ Please select the CSV file to upload 업로드할 CSV 파일을 선택해 주세요 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 20 @@ -2199,15 +2376,18 @@ File Path 파일 경로 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 22 - Please do not forget to download and send permission links to your researchers once the upload has completed. - 참고: 업로드가 완료되면 권한 링크를 다운로드하여 연구원에게 보내는 것을 잊지 마세요. + Please do not forget to download and send permission links to your researchers once + the upload has completed. + 참고: 업로드가 완료되면 권한 링크를 다운로드하여 연구원에게 보내는 것을 잊지 마세요. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 26 @@ -2215,7 +2395,8 @@ Close 닫기 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 40 @@ -2223,7 +2404,8 @@ There is no file to upload. Please select one. 업로드할 파일이 없습니다. 하나를 선택해 주세요. - src/app/affiliation/affiliation-import-dialog.component.ts + + src/app/affiliation/affiliation-import-dialog.component.ts 60 @@ -2232,7 +2414,7 @@ 교육 src/app/shared/pipe/localize.ts - 65 + 69 @@ -2240,7 +2422,7 @@ 고용 src/app/shared/pipe/localize.ts - 67 + 71 @@ -2248,7 +2430,7 @@ 구별 src/app/shared/pipe/localize.ts - 69 + 73 @@ -2256,7 +2438,7 @@ 초대된 포지션 src/app/shared/pipe/localize.ts - 71 + 75 @@ -2264,7 +2446,7 @@ 자격 src/app/shared/pipe/localize.ts - 73 + 77 @@ -2272,7 +2454,7 @@ 서비스 src/app/shared/pipe/localize.ts - 75 + 79 @@ -2280,7 +2462,7 @@ 멤버십 src/app/shared/pipe/localize.ts - 77 + 81 @@ -2288,7 +2470,7 @@ 1월 src/app/shared/pipe/localize.ts - 82 + 86 @@ -2296,7 +2478,7 @@ 2월 src/app/shared/pipe/localize.ts - 84 + 88 @@ -2304,7 +2486,7 @@ 3월 src/app/shared/pipe/localize.ts - 86 + 90 @@ -2312,7 +2494,7 @@ 4월 src/app/shared/pipe/localize.ts - 88 + 92 @@ -2320,7 +2502,7 @@ 5월 src/app/shared/pipe/localize.ts - 90 + 94 @@ -2328,7 +2510,7 @@ 6월 src/app/shared/pipe/localize.ts - 92 + 96 @@ -2336,7 +2518,7 @@ 7월 src/app/shared/pipe/localize.ts - 94 + 98 @@ -2344,7 +2526,7 @@ 8월 src/app/shared/pipe/localize.ts - 96 + 100 @@ -2352,7 +2534,7 @@ 9월 src/app/shared/pipe/localize.ts - 98 + 102 @@ -2360,7 +2542,7 @@ 10월 src/app/shared/pipe/localize.ts - 100 + 104 @@ -2368,7 +2550,7 @@ 11월 src/app/shared/pipe/localize.ts - 102 + 106 @@ -2376,7 +2558,7 @@ 12월 src/app/shared/pipe/localize.ts - 104 + 108 @@ -2384,7 +2566,7 @@ 안도라 src/app/shared/pipe/localize.ts - 109 + 113 @@ -2392,7 +2574,7 @@ 아랍에미리트 연합 src/app/shared/pipe/localize.ts - 111 + 115 @@ -2400,7 +2582,7 @@ 아프가니스탄 src/app/shared/pipe/localize.ts - 113 + 117 @@ -2408,7 +2590,7 @@ 앤티가바부다 src/app/shared/pipe/localize.ts - 115 + 119 @@ -2416,7 +2598,7 @@ 앵귈라 src/app/shared/pipe/localize.ts - 117 + 121 @@ -2424,7 +2606,7 @@ 알바니아 src/app/shared/pipe/localize.ts - 119 + 123 @@ -2432,7 +2614,7 @@ 아르메니아 src/app/shared/pipe/localize.ts - 121 + 125 @@ -2440,7 +2622,7 @@ 앙골라 src/app/shared/pipe/localize.ts - 123 + 127 @@ -2448,7 +2630,7 @@ 남극 src/app/shared/pipe/localize.ts - 125 + 129 @@ -2456,7 +2638,7 @@ 아르헨티나 src/app/shared/pipe/localize.ts - 127 + 131 @@ -2464,7 +2646,7 @@ 미국령 사모아 src/app/shared/pipe/localize.ts - 129 + 133 @@ -2472,7 +2654,7 @@ 오스트리아 src/app/shared/pipe/localize.ts - 131 + 135 @@ -2480,7 +2662,7 @@ 호주 src/app/shared/pipe/localize.ts - 133 + 137 @@ -2488,7 +2670,7 @@ 아루바 src/app/shared/pipe/localize.ts - 135 + 139 @@ -2496,7 +2678,7 @@ 올란드 제도 src/app/shared/pipe/localize.ts - 137 + 141 @@ -2504,7 +2686,7 @@ 아제르바이잔 src/app/shared/pipe/localize.ts - 139 + 143 @@ -2512,7 +2694,7 @@ 보스니아-헤르체고비나 src/app/shared/pipe/localize.ts - 141 + 145 @@ -2520,7 +2702,7 @@ 바베이도스 src/app/shared/pipe/localize.ts - 143 + 147 @@ -2528,7 +2710,7 @@ 방글라데시 src/app/shared/pipe/localize.ts - 145 + 149 @@ -2536,7 +2718,7 @@ 벨기에 src/app/shared/pipe/localize.ts - 147 + 151 @@ -2544,7 +2726,7 @@ 부르키나파소 src/app/shared/pipe/localize.ts - 149 + 153 @@ -2552,7 +2734,7 @@ 불가리아 src/app/shared/pipe/localize.ts - 151 + 155 @@ -2560,7 +2742,7 @@ 바레인 src/app/shared/pipe/localize.ts - 153 + 157 @@ -2568,7 +2750,7 @@ 부룬디 src/app/shared/pipe/localize.ts - 155 + 159 @@ -2576,7 +2758,7 @@ 베냉 src/app/shared/pipe/localize.ts - 157 + 161 @@ -2584,7 +2766,7 @@ 생바르텔레미 src/app/shared/pipe/localize.ts - 159 + 163 @@ -2592,7 +2774,7 @@ 버뮤다 src/app/shared/pipe/localize.ts - 161 + 165 @@ -2600,7 +2782,7 @@ 브루나이 src/app/shared/pipe/localize.ts - 163 + 167 @@ -2608,7 +2790,7 @@ 볼리비아 src/app/shared/pipe/localize.ts - 165 + 169 @@ -2616,7 +2798,7 @@ 영국령 남극 지역 src/app/shared/pipe/localize.ts - 167 + 171 @@ -2624,7 +2806,7 @@ 브라질 src/app/shared/pipe/localize.ts - 169 + 173 @@ -2632,7 +2814,7 @@ 바하마 src/app/shared/pipe/localize.ts - 171 + 175 @@ -2640,7 +2822,7 @@ 부탄 src/app/shared/pipe/localize.ts - 173 + 177 @@ -2648,7 +2830,7 @@ 부베 섬 src/app/shared/pipe/localize.ts - 175 + 179 @@ -2656,7 +2838,7 @@ 보츠와나 src/app/shared/pipe/localize.ts - 177 + 181 @@ -2664,7 +2846,7 @@ 벨라루스 src/app/shared/pipe/localize.ts - 179 + 183 @@ -2672,7 +2854,7 @@ 벨리즈 src/app/shared/pipe/localize.ts - 181 + 185 @@ -2680,7 +2862,7 @@ 캐나다 src/app/shared/pipe/localize.ts - 183 + 187 @@ -2688,7 +2870,7 @@ 코코스 {킬링} 제도 src/app/shared/pipe/localize.ts - 185 + 189 @@ -2696,7 +2878,7 @@ 콩고 민주공화국 src/app/shared/pipe/localize.ts - 187 + 191 @@ -2704,7 +2886,7 @@ 중앙아프리카 공화국 src/app/shared/pipe/localize.ts - 189 + 193 @@ -2712,7 +2894,7 @@ 콩고 공화국 src/app/shared/pipe/localize.ts - 191 + 195 @@ -2720,7 +2902,7 @@ 스위스 src/app/shared/pipe/localize.ts - 193 + 197 @@ -2728,7 +2910,7 @@ 코트디부아르 src/app/shared/pipe/localize.ts - 195 + 199 @@ -2736,7 +2918,7 @@ 쿡 제도 src/app/shared/pipe/localize.ts - 197 + 201 @@ -2744,7 +2926,7 @@ 칠레 src/app/shared/pipe/localize.ts - 199 + 203 @@ -2752,7 +2934,7 @@ 카메룬 src/app/shared/pipe/localize.ts - 201 + 205 @@ -2760,7 +2942,7 @@ 중국 src/app/shared/pipe/localize.ts - 203 + 207 @@ -2768,7 +2950,7 @@ 콜롬비아 src/app/shared/pipe/localize.ts - 205 + 209 @@ -2776,7 +2958,7 @@ 코스타리카 src/app/shared/pipe/localize.ts - 207 + 211 @@ -2784,7 +2966,7 @@ 쿠바 src/app/shared/pipe/localize.ts - 209 + 213 @@ -2792,7 +2974,7 @@ 카보베르데 src/app/shared/pipe/localize.ts - 211 + 215 @@ -2800,7 +2982,7 @@ 퀴라소 src/app/shared/pipe/localize.ts - 213 + 217 @@ -2808,7 +2990,7 @@ 크리스마스 섬 src/app/shared/pipe/localize.ts - 215 + 219 @@ -2816,7 +2998,7 @@ 키프로스 src/app/shared/pipe/localize.ts - 217 + 221 @@ -2824,7 +3006,7 @@ 체코 공화국 src/app/shared/pipe/localize.ts - 219 + 223 @@ -2832,7 +3014,7 @@ 독일 src/app/shared/pipe/localize.ts - 221 + 225 @@ -2840,7 +3022,7 @@ 지부티 src/app/shared/pipe/localize.ts - 223 + 227 @@ -2848,7 +3030,7 @@ 덴마크 src/app/shared/pipe/localize.ts - 225 + 229 @@ -2856,7 +3038,7 @@ 도미니카 src/app/shared/pipe/localize.ts - 227 + 231 @@ -2864,7 +3046,7 @@ 도미니카 공화국 src/app/shared/pipe/localize.ts - 229 + 233 @@ -2872,7 +3054,7 @@ 알제리 src/app/shared/pipe/localize.ts - 231 + 235 @@ -2880,7 +3062,7 @@ 에콰도르 src/app/shared/pipe/localize.ts - 233 + 237 @@ -2888,7 +3070,7 @@ 에스토니아 src/app/shared/pipe/localize.ts - 235 + 239 @@ -2896,7 +3078,7 @@ 이집트 src/app/shared/pipe/localize.ts - 237 + 241 @@ -2904,7 +3086,7 @@ 서사하라 src/app/shared/pipe/localize.ts - 239 + 243 @@ -2912,7 +3094,7 @@ 에리트레아 src/app/shared/pipe/localize.ts - 241 + 245 @@ -2920,7 +3102,7 @@ 스페인 src/app/shared/pipe/localize.ts - 243 + 247 @@ -2928,7 +3110,7 @@ 에티오피아 src/app/shared/pipe/localize.ts - 245 + 249 @@ -2936,7 +3118,7 @@ 핀란드 src/app/shared/pipe/localize.ts - 247 + 251 @@ -2944,7 +3126,7 @@ 피지 src/app/shared/pipe/localize.ts - 249 + 253 @@ -2952,7 +3134,7 @@ 포클랜드 제도 src/app/shared/pipe/localize.ts - 251 + 255 @@ -2960,7 +3142,7 @@ 미크로네시아 src/app/shared/pipe/localize.ts - 253 + 257 @@ -2968,7 +3150,7 @@ 페로 제도 src/app/shared/pipe/localize.ts - 255 + 259 @@ -2976,7 +3158,7 @@ 프랑스 src/app/shared/pipe/localize.ts - 257 + 261 @@ -2984,7 +3166,7 @@ 가봉 src/app/shared/pipe/localize.ts - 259 + 263 @@ -2992,7 +3174,7 @@ 영국 src/app/shared/pipe/localize.ts - 261 + 265 @@ -3000,7 +3182,7 @@ 그레나다 src/app/shared/pipe/localize.ts - 263 + 267 @@ -3008,7 +3190,7 @@ 조지아 src/app/shared/pipe/localize.ts - 265 + 269 @@ -3016,7 +3198,7 @@ 프랑스령 기아나 src/app/shared/pipe/localize.ts - 267 + 271 @@ -3024,7 +3206,7 @@ 건지 src/app/shared/pipe/localize.ts - 269 + 273 @@ -3032,7 +3214,7 @@ 가나 src/app/shared/pipe/localize.ts - 271 + 275 @@ -3040,7 +3222,7 @@ 지브롤터 src/app/shared/pipe/localize.ts - 273 + 277 @@ -3048,7 +3230,7 @@ 그린란드 src/app/shared/pipe/localize.ts - 275 + 279 @@ -3056,7 +3238,7 @@ 감비아 src/app/shared/pipe/localize.ts - 277 + 281 @@ -3064,7 +3246,7 @@ 기니 src/app/shared/pipe/localize.ts - 279 + 283 @@ -3072,7 +3254,7 @@ 과들루프 src/app/shared/pipe/localize.ts - 281 + 285 @@ -3080,7 +3262,7 @@ 적도 기니 src/app/shared/pipe/localize.ts - 283 + 287 @@ -3088,7 +3270,7 @@ 그리스 src/app/shared/pipe/localize.ts - 285 + 289 @@ -3096,7 +3278,7 @@ 사우스조지아 사우스샌드위치 제도 src/app/shared/pipe/localize.ts - 287 + 291 @@ -3104,7 +3286,7 @@ 과테말라 src/app/shared/pipe/localize.ts - 289 + 293 @@ -3112,7 +3294,7 @@ src/app/shared/pipe/localize.ts - 291 + 295 @@ -3120,7 +3302,7 @@ 기니비사우 src/app/shared/pipe/localize.ts - 293 + 297 @@ -3128,7 +3310,7 @@ 가이아나 src/app/shared/pipe/localize.ts - 295 + 299 @@ -3136,7 +3318,7 @@ 중국 홍콩 특별행정구 src/app/shared/pipe/localize.ts - 297 + 301 @@ -3144,7 +3326,7 @@ 허드 맥도널드 제도 src/app/shared/pipe/localize.ts - 299 + 303 @@ -3152,7 +3334,7 @@ 온두라스 src/app/shared/pipe/localize.ts - 301 + 305 @@ -3160,7 +3342,7 @@ 크로아티아 src/app/shared/pipe/localize.ts - 303 + 307 @@ -3168,7 +3350,7 @@ 아이티 src/app/shared/pipe/localize.ts - 305 + 309 @@ -3176,7 +3358,7 @@ 헝가리 src/app/shared/pipe/localize.ts - 307 + 311 @@ -3184,7 +3366,7 @@ 인도네시아 src/app/shared/pipe/localize.ts - 309 + 313 @@ -3192,7 +3374,7 @@ 아일랜드 src/app/shared/pipe/localize.ts - 311 + 315 @@ -3200,7 +3382,7 @@ 이스라엘 src/app/shared/pipe/localize.ts - 313 + 317 @@ -3208,7 +3390,7 @@ 맨 섬 src/app/shared/pipe/localize.ts - 315 + 319 @@ -3216,7 +3398,7 @@ 인도 src/app/shared/pipe/localize.ts - 317 + 321 @@ -3224,7 +3406,7 @@ 영국령 인도양 지역 src/app/shared/pipe/localize.ts - 319 + 323 @@ -3232,7 +3414,7 @@ 이라크 src/app/shared/pipe/localize.ts - 321 + 325 @@ -3240,7 +3422,7 @@ 이란 src/app/shared/pipe/localize.ts - 323 + 327 @@ -3248,7 +3430,7 @@ 아이슬란드 src/app/shared/pipe/localize.ts - 325 + 329 @@ -3256,7 +3438,7 @@ 이탈리아 src/app/shared/pipe/localize.ts - 327 + 331 @@ -3264,7 +3446,7 @@ 저지 src/app/shared/pipe/localize.ts - 329 + 333 @@ -3272,7 +3454,7 @@ 자메이카 src/app/shared/pipe/localize.ts - 331 + 335 @@ -3280,7 +3462,7 @@ 요르단 src/app/shared/pipe/localize.ts - 333 + 337 @@ -3288,7 +3470,7 @@ 일본 src/app/shared/pipe/localize.ts - 335 + 339 @@ -3296,7 +3478,7 @@ 케냐 src/app/shared/pipe/localize.ts - 337 + 341 @@ -3304,7 +3486,7 @@ 키르기스스탄 src/app/shared/pipe/localize.ts - 339 + 343 @@ -3312,7 +3494,7 @@ 캄보디아 src/app/shared/pipe/localize.ts - 341 + 345 @@ -3320,7 +3502,7 @@ 키리바시 src/app/shared/pipe/localize.ts - 343 + 347 @@ -3328,7 +3510,7 @@ 코모로 src/app/shared/pipe/localize.ts - 345 + 349 @@ -3336,7 +3518,7 @@ 세인트키츠네비스 src/app/shared/pipe/localize.ts - 347 + 351 @@ -3344,7 +3526,7 @@ 조선 민주주의인민공화국 src/app/shared/pipe/localize.ts - 349 + 353 @@ -3352,7 +3534,7 @@ 대한민국 src/app/shared/pipe/localize.ts - 351 + 355 @@ -3360,7 +3542,7 @@ 쿠웨이트 src/app/shared/pipe/localize.ts - 353 + 357 @@ -3368,7 +3550,7 @@ 케이맨 제도 src/app/shared/pipe/localize.ts - 355 + 359 @@ -3376,7 +3558,7 @@ 카자흐스탄 src/app/shared/pipe/localize.ts - 357 + 361 @@ -3384,7 +3566,7 @@ 라오스 src/app/shared/pipe/localize.ts - 359 + 363 @@ -3392,7 +3574,7 @@ 레바논 src/app/shared/pipe/localize.ts - 361 + 365 @@ -3400,7 +3582,7 @@ 세인트루시아 src/app/shared/pipe/localize.ts - 363 + 367 @@ -3408,7 +3590,7 @@ 리히텐슈타인 src/app/shared/pipe/localize.ts - 365 + 369 @@ -3416,7 +3598,7 @@ 스리랑카 src/app/shared/pipe/localize.ts - 367 + 371 @@ -3424,7 +3606,7 @@ 라이베리아 src/app/shared/pipe/localize.ts - 369 + 373 @@ -3432,7 +3614,7 @@ 레소토 src/app/shared/pipe/localize.ts - 371 + 375 @@ -3440,7 +3622,7 @@ 리투아니아 src/app/shared/pipe/localize.ts - 373 + 377 @@ -3448,7 +3630,7 @@ 룩셈부르크 src/app/shared/pipe/localize.ts - 375 + 379 @@ -3456,7 +3638,7 @@ 라트비아 src/app/shared/pipe/localize.ts - 377 + 381 @@ -3464,7 +3646,7 @@ 리비아 src/app/shared/pipe/localize.ts - 379 + 383 @@ -3472,7 +3654,7 @@ 모로코 src/app/shared/pipe/localize.ts - 381 + 385 @@ -3480,7 +3662,7 @@ 모나코 src/app/shared/pipe/localize.ts - 383 + 387 @@ -3488,7 +3670,7 @@ 몰도바 src/app/shared/pipe/localize.ts - 385 + 389 @@ -3496,7 +3678,7 @@ 몬테네그로 src/app/shared/pipe/localize.ts - 387 + 391 @@ -3504,7 +3686,7 @@ 생마르탱 src/app/shared/pipe/localize.ts - 389 + 393 @@ -3512,7 +3694,7 @@ 마다가스카르 src/app/shared/pipe/localize.ts - 391 + 395 @@ -3520,7 +3702,7 @@ 마셜 제도 src/app/shared/pipe/localize.ts - 393 + 397 @@ -3528,7 +3710,7 @@ 북마케도니아 src/app/shared/pipe/localize.ts - 395 + 399 @@ -3536,7 +3718,7 @@ 말리 src/app/shared/pipe/localize.ts - 397 + 401 @@ -3544,7 +3726,7 @@ 미얀마 {버마} src/app/shared/pipe/localize.ts - 399 + 403 @@ -3552,7 +3734,7 @@ 몽골 src/app/shared/pipe/localize.ts - 401 + 405 @@ -3560,7 +3742,7 @@ 중국 마카오 특별행정구 src/app/shared/pipe/localize.ts - 403 + 407 @@ -3568,7 +3750,7 @@ 북마리아나 제도 src/app/shared/pipe/localize.ts - 405 + 409 @@ -3576,7 +3758,7 @@ 마르티니크 src/app/shared/pipe/localize.ts - 407 + 411 @@ -3584,7 +3766,7 @@ 모리타니아 src/app/shared/pipe/localize.ts - 409 + 413 @@ -3592,7 +3774,7 @@ 몬트세랫 src/app/shared/pipe/localize.ts - 411 + 415 @@ -3600,7 +3782,7 @@ 몰타 src/app/shared/pipe/localize.ts - 413 + 417 @@ -3608,7 +3790,7 @@ 모리셔스 src/app/shared/pipe/localize.ts - 415 + 419 @@ -3616,7 +3798,7 @@ 몰디브 src/app/shared/pipe/localize.ts - 417 + 421 @@ -3624,7 +3806,7 @@ 말라위 src/app/shared/pipe/localize.ts - 419 + 423 @@ -3632,7 +3814,7 @@ 멕시코 src/app/shared/pipe/localize.ts - 421 + 425 @@ -3640,7 +3822,7 @@ 말레이시아 src/app/shared/pipe/localize.ts - 423 + 427 @@ -3648,7 +3830,7 @@ 모잠비크 src/app/shared/pipe/localize.ts - 425 + 429 @@ -3656,7 +3838,7 @@ 나미비아 src/app/shared/pipe/localize.ts - 427 + 431 @@ -3664,7 +3846,7 @@ 뉴칼레도니아 src/app/shared/pipe/localize.ts - 429 + 433 @@ -3672,7 +3854,7 @@ 니제르 src/app/shared/pipe/localize.ts - 431 + 435 @@ -3680,7 +3862,7 @@ 노퍽 섬 src/app/shared/pipe/localize.ts - 433 + 437 @@ -3688,7 +3870,7 @@ 나이지리아 src/app/shared/pipe/localize.ts - 435 + 439 @@ -3696,7 +3878,7 @@ 니카라과 src/app/shared/pipe/localize.ts - 437 + 441 @@ -3704,7 +3886,7 @@ 네덜란드 src/app/shared/pipe/localize.ts - 439 + 443 @@ -3712,7 +3894,7 @@ 노르웨이 src/app/shared/pipe/localize.ts - 441 + 445 @@ -3720,7 +3902,7 @@ 네팔 src/app/shared/pipe/localize.ts - 443 + 447 @@ -3728,7 +3910,7 @@ 나우루 src/app/shared/pipe/localize.ts - 445 + 449 @@ -3736,7 +3918,7 @@ 니우에 src/app/shared/pipe/localize.ts - 447 + 451 @@ -3744,7 +3926,7 @@ 뉴질랜드 src/app/shared/pipe/localize.ts - 449 + 453 @@ -3752,7 +3934,7 @@ 오만 src/app/shared/pipe/localize.ts - 451 + 455 @@ -3760,7 +3942,7 @@ 파나마 src/app/shared/pipe/localize.ts - 453 + 457 @@ -3768,7 +3950,7 @@ 페루 src/app/shared/pipe/localize.ts - 455 + 459 @@ -3776,7 +3958,7 @@ 프랑스령 폴리네시아 src/app/shared/pipe/localize.ts - 457 + 461 @@ -3784,7 +3966,7 @@ 파푸아뉴기니 src/app/shared/pipe/localize.ts - 459 + 463 @@ -3792,7 +3974,7 @@ 필리핀 src/app/shared/pipe/localize.ts - 461 + 465 @@ -3800,7 +3982,7 @@ 파키스탄 src/app/shared/pipe/localize.ts - 463 + 467 @@ -3808,7 +3990,7 @@ 폴란드 src/app/shared/pipe/localize.ts - 465 + 469 @@ -3816,7 +3998,7 @@ 생피에르미클롱 src/app/shared/pipe/localize.ts - 467 + 471 @@ -3824,7 +4006,7 @@ 핏케언 제도 src/app/shared/pipe/localize.ts - 469 + 473 @@ -3832,7 +4014,7 @@ 푸에르토리코 src/app/shared/pipe/localize.ts - 471 + 475 @@ -3840,7 +4022,7 @@ 팔레스타인 영토 src/app/shared/pipe/localize.ts - 473 + 477 @@ -3848,7 +4030,7 @@ 포르투갈 src/app/shared/pipe/localize.ts - 475 + 479 @@ -3856,7 +4038,7 @@ 팔라우 src/app/shared/pipe/localize.ts - 477 + 481 @@ -3864,7 +4046,7 @@ 파라과이 src/app/shared/pipe/localize.ts - 479 + 483 @@ -3872,7 +4054,7 @@ 카타르 src/app/shared/pipe/localize.ts - 481 + 485 @@ -3880,7 +4062,7 @@ 레위니옹 src/app/shared/pipe/localize.ts - 483 + 487 @@ -3888,7 +4070,7 @@ 루마니아 src/app/shared/pipe/localize.ts - 485 + 489 @@ -3896,7 +4078,7 @@ 세르비아 src/app/shared/pipe/localize.ts - 487 + 491 @@ -3904,7 +4086,7 @@ 러시아 src/app/shared/pipe/localize.ts - 489 + 493 @@ -3912,7 +4094,7 @@ 르완다 src/app/shared/pipe/localize.ts - 491 + 495 @@ -3920,7 +4102,7 @@ 사우디아라비아 src/app/shared/pipe/localize.ts - 493 + 497 @@ -3928,7 +4110,7 @@ 솔로몬 제도 src/app/shared/pipe/localize.ts - 495 + 499 @@ -3936,7 +4118,7 @@ 세이셸 src/app/shared/pipe/localize.ts - 497 + 501 @@ -3944,7 +4126,7 @@ 수단 src/app/shared/pipe/localize.ts - 499 + 503 @@ -3952,7 +4134,7 @@ 스웨덴 src/app/shared/pipe/localize.ts - 501 + 505 @@ -3960,7 +4142,7 @@ 싱가포르 src/app/shared/pipe/localize.ts - 503 + 507 @@ -3968,7 +4150,7 @@ 세인트헬레나 src/app/shared/pipe/localize.ts - 505 + 509 @@ -3976,7 +4158,7 @@ 슬로베니아 src/app/shared/pipe/localize.ts - 507 + 511 @@ -3984,7 +4166,7 @@ 스발바르얀마옌 src/app/shared/pipe/localize.ts - 509 + 513 @@ -3992,7 +4174,7 @@ 슬로바키아 src/app/shared/pipe/localize.ts - 511 + 515 @@ -4000,7 +4182,7 @@ 시에라리온 src/app/shared/pipe/localize.ts - 513 + 517 @@ -4008,7 +4190,7 @@ 산마리노 src/app/shared/pipe/localize.ts - 515 + 519 @@ -4016,7 +4198,7 @@ 세네갈 src/app/shared/pipe/localize.ts - 517 + 521 @@ -4024,7 +4206,7 @@ 소말리아 src/app/shared/pipe/localize.ts - 519 + 523 @@ -4032,7 +4214,7 @@ 수리남 src/app/shared/pipe/localize.ts - 521 + 525 @@ -4040,7 +4222,7 @@ 남수단 src/app/shared/pipe/localize.ts - 523 + 527 @@ -4048,7 +4230,7 @@ 상투메프린시페 src/app/shared/pipe/localize.ts - 525 + 529 @@ -4056,7 +4238,7 @@ 엘살바도르 src/app/shared/pipe/localize.ts - 527 + 531 @@ -4064,7 +4246,7 @@ 신트마르턴(네덜란드령) src/app/shared/pipe/localize.ts - 529 + 533 @@ -4072,7 +4254,7 @@ 시리아 src/app/shared/pipe/localize.ts - 531 + 535 @@ -4080,7 +4262,7 @@ 에스와티니 src/app/shared/pipe/localize.ts - 533 + 537 @@ -4088,7 +4270,7 @@ 터크스케이커스 제도 src/app/shared/pipe/localize.ts - 535 + 539 @@ -4096,7 +4278,7 @@ 차드 src/app/shared/pipe/localize.ts - 537 + 541 @@ -4104,7 +4286,7 @@ 프랑스령 남방 src/app/shared/pipe/localize.ts - 539 + 543 @@ -4112,7 +4294,7 @@ 토고 src/app/shared/pipe/localize.ts - 541 + 545 @@ -4120,7 +4302,7 @@ 태국 src/app/shared/pipe/localize.ts - 543 + 547 @@ -4128,7 +4310,7 @@ 타지키스탄 src/app/shared/pipe/localize.ts - 545 + 549 @@ -4136,7 +4318,7 @@ 토켈라우 src/app/shared/pipe/localize.ts - 547 + 551 @@ -4144,7 +4326,7 @@ 동티모르 src/app/shared/pipe/localize.ts - 549 + 553 @@ -4152,7 +4334,7 @@ 투르크메니스탄 src/app/shared/pipe/localize.ts - 551 + 555 @@ -4160,7 +4342,7 @@ 튀니지 src/app/shared/pipe/localize.ts - 553 + 557 @@ -4168,7 +4350,7 @@ 통가 src/app/shared/pipe/localize.ts - 555 + 559 @@ -4176,7 +4358,7 @@ 튀르키예 src/app/shared/pipe/localize.ts - 557 + 561 @@ -4184,7 +4366,7 @@ 트리니다드토바고 src/app/shared/pipe/localize.ts - 559 + 563 @@ -4192,7 +4374,7 @@ 투발루 src/app/shared/pipe/localize.ts - 561 + 565 @@ -4200,7 +4382,7 @@ 대만 src/app/shared/pipe/localize.ts - 563 + 567 @@ -4208,7 +4390,7 @@ 탄자니아 src/app/shared/pipe/localize.ts - 565 + 569 @@ -4216,7 +4398,7 @@ 우크라이나 src/app/shared/pipe/localize.ts - 567 + 571 @@ -4224,7 +4406,7 @@ 우간다 src/app/shared/pipe/localize.ts - 569 + 573 @@ -4232,7 +4414,7 @@ 미국령 군소 제도 src/app/shared/pipe/localize.ts - 571 + 575 @@ -4240,7 +4422,7 @@ 미국 src/app/shared/pipe/localize.ts - 573 + 577 @@ -4248,7 +4430,7 @@ 우루과이 src/app/shared/pipe/localize.ts - 575 + 579 @@ -4256,7 +4438,7 @@ 우즈베키스탄 src/app/shared/pipe/localize.ts - 577 + 581 @@ -4264,7 +4446,7 @@ 바티칸 시국 src/app/shared/pipe/localize.ts - 579 + 583 @@ -4272,7 +4454,7 @@ 세인트빈센트그레나딘 src/app/shared/pipe/localize.ts - 581 + 585 @@ -4280,7 +4462,7 @@ 베네수엘라 src/app/shared/pipe/localize.ts - 583 + 587 @@ -4288,7 +4470,7 @@ 영국령 버진 제도 src/app/shared/pipe/localize.ts - 585 + 589 @@ -4296,7 +4478,7 @@ 미국령 버진 제도 src/app/shared/pipe/localize.ts - 587 + 591 @@ -4304,7 +4486,7 @@ 베트남 src/app/shared/pipe/localize.ts - 589 + 593 @@ -4312,7 +4494,7 @@ 바누아투 src/app/shared/pipe/localize.ts - 591 + 595 @@ -4320,7 +4502,7 @@ 왈리스푸투나 src/app/shared/pipe/localize.ts - 593 + 597 @@ -4328,7 +4510,7 @@ 사모아 src/app/shared/pipe/localize.ts - 595 + 599 @@ -4336,7 +4518,7 @@ Kosovo src/app/shared/pipe/localize.ts - 597 + 601 @@ -4344,7 +4526,7 @@ 예멘 src/app/shared/pipe/localize.ts - 599 + 603 @@ -4352,7 +4534,7 @@ 마요트 src/app/shared/pipe/localize.ts - 601 + 605 @@ -4360,7 +4542,7 @@ 남아프리카 공화국 src/app/shared/pipe/localize.ts - 603 + 607 @@ -4368,7 +4550,7 @@ 잠비아 src/app/shared/pipe/localize.ts - 605 + 609 @@ -4376,10 +4558,11 @@ 짐바브웨 src/app/shared/pipe/localize.ts - 607 + 611 - + Add or edit affiliation 제휴 추가 또는 편집 @@ -4389,7 +4572,7 @@ This field should follow pattern for "Email". - 이 필드는 {{ pattern }}의 패턴을 따라야 합니다. + 이 필드는 Email의 패턴을 따라야 합니다. src/app/affiliation/affiliation-update.component.html 25 @@ -4426,9 +4609,21 @@ src/app/affiliation/affiliation-update.component.html 188 + + src/app/member/member-update.component.html + 61 + + + src/app/member/member-update.component.html + 105 + + + src/app/member/member-update.component.html + 140 + - Org Name + Organization Name 조직 이름 src/app/affiliation/affiliation-update.component.html @@ -4436,7 +4631,7 @@ - Org City + City src/app/affiliation/affiliation-update.component.html @@ -4444,7 +4639,7 @@ - Org Region + State/Region 주/지역 src/app/affiliation/affiliation-update.component.html @@ -4452,23 +4647,25 @@ - Org Country + Country 국가 src/app/affiliation/affiliation-update.component.html 141 - - Disambiguation Source + + Organization ID Source 조직 ID 소스 src/app/affiliation/affiliation-update.component.html 170 - - Disambiguated Org Id + + Organization ID 조직 ID src/app/affiliation/affiliation-update.component.html @@ -4476,27 +4673,27 @@ - This field is required. GRID Organization ID should start with "grid.", RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with 0 - 이 필드는 필수입니다. GRID 조직 ID는 grid로 시작해야 하거나(예: grid.12344) 유효한 grid URL이어야 합니다. RINGGOLD 조직 ID는 숫자여야 합니다. ROR ID는 0으로 시작하는 9자여야 합니다. + This field is required. GRID Organization ID should start with "grid.", + RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with + 0 + 이 필드는 필수입니다. GRID 조직 ID는 grid로 시작해야 하거나(예: grid.12344) 유효한 grid URL이어야 + 합니다. RINGGOLD 조직 ID는 숫자여야 합니다. ROR ID는 0으로 시작하는 9자여야 합니다. src/app/affiliation/affiliation-update.component.html 223 - This field cannot be longer than 4000 characters. - 이 필드는 {{ max }}자를 초과할 수 없습니다. + This field cannot be longer than + characters. + 이 필드는 자를 초과할 수 없습니다. - src/app/affiliation/affiliation-update.component.html - 255 - - - src/app/affiliation/affiliation-update.component.html - 278 + src/app/affiliation/affiliation-update.component.ts + 195 - src/app/affiliation/affiliation-update.component.html - 293 + src/app/affiliation/affiliation-update.component.ts + 197 @@ -4504,7 +4701,7 @@ 시작 연도 src/app/affiliation/affiliation-update.component.html - 305 + 293 @@ -4512,11 +4709,11 @@ 연도 src/app/affiliation/affiliation-update.component.html - 314 + 302 src/app/affiliation/affiliation-update.component.html - 364 + 352 @@ -4524,7 +4721,7 @@ 시작 월 src/app/affiliation/affiliation-update.component.html - 323 + 311 @@ -4532,11 +4729,11 @@ src/app/affiliation/affiliation-update.component.html - 332 + 320 src/app/affiliation/affiliation-update.component.html - 382 + 370 @@ -4544,7 +4741,7 @@ 시작일 src/app/affiliation/affiliation-update.component.html - 341 + 329 @@ -4552,11 +4749,11 @@ src/app/affiliation/affiliation-update.component.html - 344 + 332 src/app/affiliation/affiliation-update.component.html - 394 + 382 @@ -4564,7 +4761,7 @@ 종료 연도 src/app/affiliation/affiliation-update.component.html - 355 + 343 @@ -4572,7 +4769,7 @@ 종료 월 src/app/affiliation/affiliation-update.component.html - 373 + 361 @@ -4580,7 +4777,7 @@ 종료일 src/app/affiliation/affiliation-update.component.html - 391 + 379 @@ -4588,7 +4785,7 @@ 시작 날짜는 종료 날짜 이후일 수 없습니다. src/app/affiliation/affiliation-update.component.html - 400 + 388 @@ -4596,7 +4793,7 @@ 외부 ID 유형 src/app/affiliation/affiliation-update.component.html - 411 + 399 @@ -4604,15 +4801,16 @@ 외부 ID URL src/app/affiliation/affiliation-update.component.html - 441 + 429 - Please do not forget to download and send permission links to your researcher once the assertion has been saved. + Please do not forget to download and send permission links to your researcher once + the assertion has been saved. 참고: 어설션이 저장되면 권한 링크를 다운로드하여 연구원에게 보내는 것을 잊지 마세요. src/app/affiliation/affiliation-update.component.html - 457 + 445 @@ -4623,9 +4821,13 @@ 8 - - Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the portal and the user's ORCID record - 에 대한 이 제휴를 정말 삭제하시겠습니까? 포털 및 사용자의 ORCID 기록에서 제휴가 삭제됩니다. + + Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the + portal and the user's ORCID record + 에 대한 이 제휴를 정말 + 삭제하시겠습니까? 포털 및 사용자의 ORCID 기록에서 제휴가 삭제됩니다. src/app/affiliation/affiliation-delete.component.ts 40 @@ -4636,7 +4838,7 @@ 제휴 생성됨 src/app/shared/pipe/localize.ts - 23 + 27 @@ -4644,7 +4846,7 @@ 제휴 업데이트됨 src/app/shared/pipe/localize.ts - 25 + 29 @@ -4652,7 +4854,7 @@ 제휴 삭제됨 src/app/shared/pipe/localize.ts - 27 + 31 @@ -4660,65 +4862,390 @@ 제휴를 삭제하는 동안 문제가 발생했습니다. src/app/shared/pipe/localize.ts - 29 + 33 - + Send permission notifications 권한 알림 전송 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 3 - - A request to send notifications to your users is already in progress. Please try again later. + + A request to send notifications to your users is already in progress. Please try + again later. 귀하의 사용자에게 알림 전송 요청이 이미 진행 중입니다. 나중에 다시 시도해 주세요. - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 7 - - Are you sure that you would like ORCID to send permission links to your researchers for the affiliations that are pending? + + Are you sure that you would like ORCID to send permission links to your researchers + for the affiliations that are pending? '대기 중' 상태인 제휴 항목이 있는 모든 연구원에게 권한 알림이 전송됩니다. - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 10 - + Notification language 알림 언어 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 11 - + What language should the notification be sent in? 알림을 어떤 언어로 전송하시겠습니까? - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 12 - + Send notifications 알림 전송 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 23 - - Notification process has now started. We will email you as soon as the process has completed. + + Notification process has now started. We will email you as soon as the process has + completed. 지금 알림 프로세스가 시작되었습니다. 프로세스가 완료되면 이메일을 보내 드리겠습니다. + + src/app/shared/pipe/localize.ts + 25 + + + + You have already granted + 이미 부여했습니다 + + src/app/landing-page/landing-page.component.html + 13 + + + + permission to update your ORCID record + ORCID 기록 업데이트 권한 + + src/app/landing-page/landing-page.component.html + 16 + + + + Oops, something went wrong and we were not able to fetch your ORCID iD + 문제가 발생하여 ORCID ID를 가져오지 못했습니다 + + src/app/landing-page/landing-page.component.html + 33 + + + + Oops, you have denied access. + 이런, 액세스를 거부했습니다. + + src/app/landing-page/landing-page.component.html + 39 + + + + will not be able to update your ORCID record. + ORCID 기록을 업데이트할 수 없습니다. + + src/app/landing-page/landing-page.component.html + 42 + + + + If this was a mistake, click the button below to grant access. + 이 작업이 실수였다면 아래 버튼을 클릭하여 액세스 권한을 부여하세요. + + src/app/landing-page/landing-page.component.html + 45 + + + + If you find that data added to your ORCID record is incorrect, please contact + ORCID 기록에 추가된 데이터가 잘못되었다면 에 + 문의해 주세요 + + src/app/landing-page/landing-page.component.ts + 78 + + + + This authorization link has already been used. Please contact for a new authorization link. + 이 승인 링크는 이미 사용되었습니다. 새 승인 링크를 위해 + 님에게 문의해 주세요. + + src/app/landing-page/landing-page.component.ts + 79 + + + + Allow to update my ORCID record. + 님이 내 ORCID 기록을 업데이트하도록 허용 + + src/app/landing-page/landing-page.component.ts + 80 + + + + You have successfully granted + permission to update your ORCID record, and your record has been updated with affiliation + information. + 님에게 ORCID 기록을 업데이트할 수 있는 + 권한을 성공적으로 부여했으며, 기록이 제휴 정보로 업데이트됩니다. + + src/app/landing-page/landing-page.component.ts + 81 + + + + Thanks, ! + 감사합니다, + + src/app/landing-page/landing-page.component.ts + 172 + + + + Member details + 회원 세부 정보 + + src/app/member/member-detail.component.html + 4 + + + + Salesforce Id + Salesforce ID + + src/app/member/member-detail.component.html + 9 + + + src/app/member/member-update.component.html + 41 + + + src/app/member/members.component.html + 59 + + + + Parent Salesforce Id + 상위 Salesforce ID + + src/app/member/member-detail.component.html + 13 + + + src/app/member/member-update.component.html + 71 + + + src/app/member/members.component.html + 83 + + + + Member Name + 회원 이름 + + src/app/member/member-detail.component.html + 17 + + + src/app/member/member-update.component.html + 86 + + + src/app/member/members.component.html + 67 + + + + Client ID + 클라이언트 ID + + src/app/member/member-detail.component.html + 21 + + + src/app/member/member-update.component.html + 115 + + + + Type + 유형 + + src/app/member/member-detail.component.html + 25 + + + + Is Consortium Lead + 컨소시엄 리드 + + src/app/member/member-detail.component.html + 29 + + + src/app/member/member-update.component.html + 154 + + + src/app/member/members.component.html + 75 + + + + Assertion Service Enabled + 어설션 활서화됨 + + src/app/member/member-detail.component.html + 35 + + + src/app/member/member-update.component.html + 169 + + + src/app/member/members.component.html + 91 + + + + Status + 상태 + + src/app/member/member-detail.component.html + 41 + + + + Created Date + 생성됨 + + src/app/member/member-detail.component.html + 45 + + + + Last Modified Date + 마지막 수정 + + src/app/member/member-detail.component.html + 49 + + + src/app/member/members.component.html + 99 + + + + Add or edit member + 회원 추가 또는 편집 + + src/app/member/member-update.component.html + 8 + + + + Note: Client ID must have User OBO enabled AND + 참고: 클라이언트 ID에는 회원 OBO가 활성화되어 있어야 하며 + + src/app/member/member-update.component.html + 120 + + + + added as a Redirect URI in + 다음에 리디렉션 URI로 추가됨: + + src/app/member/member-update.component.html + 124 + + + + Manage members + 회원 관리 + + src/app/member/members.component.html + 2 + + + + Add member + 회원 추가 + + src/app/member/members.component.html + 11 + + + + Import members from CSV + CSV에서 회원 가져오기 + + src/app/member/members.component.html + 19 + + + + No members to show + 표시할 회원이 없습니다 + + src/app/member/members.component.html + 50 + + + + Member created + 회원 생성됨 src/app/shared/pipe/localize.ts 21 + + Member updated successfully + 회원이 성공적으로 업데이트되었습니다 + + src/app/shared/pipe/localize.ts + 23 + + \ No newline at end of file diff --git a/ui/src/i18n/messages.pt.xlf b/ui/src/i18n/messages.pt.xlf index a5f6d954c..cf3991b1e 100644 --- a/ui/src/i18n/messages.pt.xlf +++ b/ui/src/i18n/messages.pt.xlf @@ -70,8 +70,10 @@ - Slide of - Slide of + Slide of + + Slide of + Currently selected slide number read by screen reader node_modules/src/ngb-config.ts @@ -287,8 +289,12 @@ - Failed to sign in! Please check your credentials and try again. - Erro ao iniciar sessão! Por favor verifique as suas credenciais e tente novamente. + Failed to + sign in! Please + check your credentials and try again. + Erro + ao iniciar sessão! + Por favor verifique as suas credenciais e tente novamente. src/app/account/login/login.component.html 6 @@ -302,7 +308,8 @@ 10 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 22 @@ -318,7 +325,8 @@ 16 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 28 @@ -386,15 +394,21 @@ Reset your password Redefina a sua palavra-passe - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 4 - Email address isn't registered! Please check and try again. - O endereço de e-mail não está registado! Verifique e tente novamente - - src/app/account/password/password-reset-init.component.html + Email + address isn't registered! Please check and try again. + O + endereço de e-mail não está registado! Verifique e tente novamente + + + src/app/account/password/password-reset-init.component.html 7 @@ -402,15 +416,18 @@ Enter the email address you used to register. Insira o endereço de e-mail que usou para se registar - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 11 Check your emails for details on how to reset your password. - Verifique os seus emails para mais detalhes sobre como redefinir a sua palavra-passe. + Verifique os seus emails para mais detalhes sobre como redefinir a sua + palavra-passe. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 15 @@ -418,7 +435,8 @@ Your email is required. O seu e-mail é obrigatório. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 42 @@ -426,7 +444,8 @@ Your email is invalid. O seu e-mail é inválido. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 49 @@ -434,7 +453,8 @@ Your email is required to be at least 5 characters. É necessário que o seu email tenha pelo menos 5 caractéres. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 56 @@ -442,7 +462,8 @@ Your email cannot be longer than 100 characters. O seu email não pode ter mais que 50 caractéres. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 64 @@ -450,7 +471,8 @@ Reset Redefinir palavra-passe - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 75 @@ -463,8 +485,10 @@ - Settings saved! - Configurações gravadas! + Settings + saved! + Configurações + gravadas! src/app/account/settings/settings.component.html 8 @@ -579,8 +603,12 @@ - Add extra security to your ORCID member portal account by enabling two-factor authentication. Each time you sign in, you'll be prompted to enter a six-digit code we send to your preferred authentication application. - Adicione mais segurança à sua conta permitindo a autenticação de dois fatores. De cada vez que iniciar sessão, ser-lhe-à solicitado que introduza um código de seis dígitos que enviaremos para a sua aplicação de autenticação preferida. + Add extra security to your ORCID member portal account by enabling two-factor + authentication. Each time you sign in, you'll be prompted to enter a six-digit code + we send to your preferred authentication application. + Adicione mais segurança à sua conta permitindo a autenticação de dois + fatores. De cada vez que iniciar sessão, ser-lhe-à solicitado que introduza um código de + seis dígitos que enviaremos para a sua aplicação de autenticação preferida. src/app/account/settings/settings.component.html 146 @@ -603,16 +631,40 @@ - Install a two-factor authentication appA 2FA app is required to create the six-digit code you need to access your account each time you sign in. Most apps are for mobile devices; some are also available as desktop or web-based apps. Download and install your preferred 2FA app, such as Google Authenticator, FreeOTP, or Authy. - Instale uma aplicação de autenticação de dois fatoresUma aplicação de 2FA é requerida para criar o código de seis dígitos de que necessita para aceder à sua conta de cada vez que iniciar sessão. A maioria das aplicações são para dispositivos móveis; algumas estão disponíveis para PC, ou são baseadas na rede. Transfira e instale a sua aplicação de 2FA favorita, tal como a Google Authenticator, a FreeOTP, ou a Authy. + Install a two-factor authentication appA 2FA app is required to create the six-digit code you + need to access your account each time you sign in. Most apps are for mobile devices; some + are also available as desktop or web-based apps. Download and install your preferred 2FA + app, such as Google + Authenticator, + FreeOTP, or Authy. + Instale uma aplicação de autenticação de dois fatoresUma aplicação de 2FA é requerida para criar o + código de seis dígitos de que necessita para aceder à sua conta de cada vez que iniciar + sessão. A maioria das aplicações são para dispositivos móveis; algumas estão disponíveis + para PC, ou são baseadas na rede. Transfira e instale a sua aplicação de 2FA favorita, tal + como a Google + Authenticator, a + FreeOTP, ou a Authy. src/app/account/settings/settings.component.html 166 - Scan this QR code with your deviceOpen your 2FA app and scan the image below. - Digitalize este código QR com o seu dispositivoAbra a sua aplicação de 2FA e digitalize a imagem abaixo. + Scan this QR code with your deviceOpen your 2FA app and scan the image below. + Digitalize este código QR com o seu dispositivoAbra a sua aplicação de 2FA e digitalize a + imagem abaixo. src/app/account/settings/settings.component.html 174 @@ -643,8 +695,14 @@ - Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, your 2FA app will display a six-digit code. Enter this code in the box below and click Save. - Introduza o código de seis dígitos na aplicaçãoApós digitalizar o código QR ou introduzir o código de texto, a sua aplicação de 2FA exibirá um código de seis dígitos. Introduza este código na caixa abaixo e clique em Guardar. + Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, + your 2FA app will display a six-digit code. Enter this code in the box below and click + Save. + Introduza o código de seis dígitos na aplicaçãoApós digitalizar o código QR ou introduzir o + código de texto, a sua aplicação de 2FA exibirá um código de seis dígitos. Introduza este + código na caixa abaixo e clique em Guardar. src/app/account/settings/settings.component.html 205 @@ -667,8 +725,10 @@ - Make a note of the following backup codes, this is the only time they will be shown. - Anote os seguintes códigos da cópia de segurança, esta é a única vez que serão exibidos. + Make a note of the following backup codes, this is the only time they will be + shown. + Anote os seguintes códigos da cópia de segurança, esta é a única vez que + serão exibidos. src/app/account/settings/settings.component.html 228 @@ -875,17 +935,22 @@ - Password changed! - Palavra-passe alterada! + Password + changed! + Palavra-passe + alterada! src/app/account/password/password.component.html 7 - An error has occurred! The password could not be changed. - Ocorreu um erro! Não foi possível alterar a palavra-passe. - + An error + has occurred! + The password could not be changed. + Ocorreu + um erro! Não + foi possível alterar a palavra-passe. src/app/account/password/password.component.html 10 @@ -895,7 +960,8 @@ The password and its confirmation do not match! A palavra-chave e a sua confirmação não coincidem! - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 62 @@ -923,7 +989,8 @@ Your password is required. É necessária a sua palavra-passe. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 91 @@ -939,7 +1006,8 @@ New password Nova palavra-passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 70 @@ -951,7 +1019,8 @@ New password Nova palavra-passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 77 @@ -963,7 +1032,8 @@ Your password is required to be at least 4 characters. A sua palavra-passe deverá ter pelo menos 4 caracteres - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 98 @@ -975,7 +1045,8 @@ Your password cannot be longer than 50 characters. Esta palavra-passe não pode ter mais de 50 caractéres. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 105 @@ -987,7 +1058,8 @@ New password confirmation Confirmação da nova palavra-passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 114 @@ -999,7 +1071,8 @@ Confirm the new password Confirme a nova palavra-passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 121 @@ -1011,7 +1084,8 @@ Your password confirmation is required. É necessária a sua palavra-passe de confirmação. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 135 @@ -1021,9 +1095,11 @@ Your password confirmation is required to be at least 4 characters. - A sua palavra-passe de confirmação precisa de ter pelo menos 4 caracteres. + A sua palavra-passe de confirmação precisa de ter pelo menos 4 + caracteres. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 142 @@ -1035,7 +1111,8 @@ Your password confirmation cannot be longer than 50 characters. A sua palavra-passe de confirmação não pode ter mais de 50 caracteres. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 149 @@ -1063,55 +1140,81 @@ Reset password Redefinir palavra-passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 4 - The activation key is missing. - Falta o código de ativação. - - src/app/account/password/password-reset-finish.component.html + The + activation key is missing. + Falta + o código de ativação. + + + src/app/account/password/password-reset-finish.component.html 7 - This activation key is invalid. - A chave de ativação é inválida. - - src/app/account/password/password-reset-finish.component.html + This + activation key is invalid. + A + chave de ativação é inválida. + + + src/app/account/password/password-reset-finish.component.html 11 - This activation has expired. - Esta chave de ativação expirou. - - src/app/account/password/password-reset-finish.component.html + This + activation has expired. + Esta + chave de ativação expirou. + + + src/app/account/password/password-reset-finish.component.html 15 - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It looks like this + link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It + looks like this link has expired. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 20 - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a new + activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a + new activation link to your registered email address. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 26 - If you are still having problems activating your account or have not received your new activation link please contact our support team please contact us at membership@orcid.org. - If you are still having problems activating your account or have not received your new activation link, please contact us at membership@orcid.org. - - src/app/account/password/password-reset-finish.component.html + If you are still having problems activating your account or have not received your + new activation link please contact our support team please contact us at + membership@orcid.org. + If you are still having problems activating your account or have not + received your new activation link, please contact us at membership@orcid.org. + + + src/app/account/password/password-reset-finish.component.html 32 @@ -1119,23 +1222,32 @@ Choose a new password Escolha uma nova palavra-passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 39 - Your password couldn't be reset. Remember a password request is only valid for 24 hours. - Não foi possível redefinir a sua palavra-passe. Lembre-se que um pedido de palavra-passe é apenas válido por 24 horas. + Your password couldn't be reset. Remember a password request is only valid for + 24 hours. + Não foi possível redefinir a sua palavra-passe. Lembre-se que um pedido + de palavra-passe é apenas válido por 24 horas. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 43 - Your password has been reset. Please - A sua palavra-passe foi redefinida. Por favor - - src/app/account/password/password-reset-finish.component.html + Your + password has been reset. Please + A + sua palavra-passe foi redefinida. Por favor + + + src/app/account/password/password-reset-finish.component.html 50 @@ -1143,7 +1255,8 @@ sign in iniciar sessão - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 58 @@ -1151,7 +1264,8 @@ Reset Password Validar nova palavra-passe - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 159 @@ -1183,7 +1297,8 @@ Password strength: Força da palavra-passe: - src/app/account/password/password-strength.component.html + + src/app/account/password/password-strength.component.html 2 @@ -1366,6 +1481,14 @@ src/app/affiliation/affiliation-detail.component.html 143 + + src/app/member/member-detail.component.html + 47 + + + src/app/member/member-detail.component.html + 51 + src/app/user/user-detail.component.html 81 @@ -1394,6 +1517,10 @@ src/app/affiliation/affiliation-detail.component.html 230 + + src/app/member/member-detail.component.html + 61 + src/app/user/user-detail.component.html 95 @@ -1410,6 +1537,14 @@ src/app/affiliation/affiliations.component.html 220 + + src/app/member/member-detail.component.html + 66 + + + src/app/member/members.component.html + 151 + src/app/user/user-detail.component.html 103 @@ -1451,17 +1586,23 @@ 17 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 34 src/app/affiliation/affiliation-update.component.html - 465 + 453 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 20 + + src/app/member/member-update.component.html + 186 + src/app/user/user-delete.component.html 14 @@ -1480,7 +1621,11 @@ Guardar src/app/affiliation/affiliation-update.component.html - 468 + 456 + + + src/app/member/member-update.component.html + 189 src/app/user/user-update.component.html @@ -1522,6 +1667,10 @@ src/app/affiliation/affiliations.component.html 104 + + src/app/member/members.component.html + 32 + src/app/user/users.component.html 32 @@ -1556,20 +1705,32 @@ - Showing - of items. - A mostrar - de itens. + Showing - + of items. + A mostrar - de itens. src/app/affiliation/affiliations.component.ts - 228 + 227 + + + src/app/member/members.component.ts + 160 src/app/user/users.component.ts 230 - - Are you sure you want to transfer ownership? You are about to transfer ownership of this organization account. If you are the organization owner after transferring ownership, you will no longer have access to administrative functions, such as managing users. - Tem a certeza que quer transferir a propriedade? Está prestes a transferir a propriedade da conta desta organização. Se for o proprietário da conta depois de transferir a propriedade, não terá mais acesso a a funções administrativas, tais como a gestão de utilizadores. + + Are you sure you want to transfer ownership? You are about to transfer ownership of + this organization account. If you are the organization owner after transferring ownership, + you will no longer have access to administrative functions, such as managing users. + Tem a certeza que quer transferir a propriedade? Está prestes a + transferir a propriedade da conta desta organização. Se for o proprietário da conta depois + de transferir a propriedade, não terá mais acesso a a funções administrativas, tais como a + gestão de utilizadores. src/app/user/user-update.component.ts 215 @@ -1593,10 +1754,11 @@ Are you sure you want to delete user ? - Tem a certeza de que quer eliminar o utilizador ? + Tem a certeza de que quer eliminar o utilizador ? src/app/user/user-delete.component.ts - 47 + 44 @@ -1628,8 +1790,10 @@ - Oops! There was a problem processing your data. Pleases fix the errors below and try again - Ups! Ocorreu um problema com o processamento dos seus dados. Corrija os erros abaixo e tente novamente. + Oops! There was a problem processing your data. Pleases fix the errors below and + try again + Ups! Ocorreu um problema com o processamento dos seus dados. Corrija os + erros abaixo e tente novamente. src/app/user/user-import-dialog.component.html 16 @@ -1655,7 +1819,8 @@ Upload Carregar - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 37 @@ -1680,7 +1845,8 @@ 2 - + Send permission notifications Enviar notificações de permissão @@ -1688,7 +1854,8 @@ 11 - + Request permission links Solicitar hiperligações de permissão @@ -1696,7 +1863,8 @@ 21 - + Request affiliation status report Solicitar relatório de estado de afiliação @@ -1704,7 +1872,9 @@ 31 - + Request affiliations for edit Solicitar afiliações para editar @@ -1728,25 +1898,39 @@ 61 - - Your affiliations for edit file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - As suas afiliações para editar o ficheiro ser-lhe-ão enviadas por e-mail brevemente. Se não receber o seu ficheiro, contacte-nos através do e-mail membership@orcid.org. + + Your affiliations for edit file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + As suas afiliações para editar o ficheiro ser-lhe-ão enviadas por e-mail + brevemente. Se não receber o seu ficheiro, contacte-nos através do e-mail + membership@orcid.org. src/app/affiliation/affiliations.component.html 73 - - Your affiliation status report file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - O seu ficheiro de relatório de estado de afiliação ser-lhe-á enviado por e-mail brevemente. Se não receber o seu ficheiro, contacte-nos através do e-mail membership@orcid.org. + + Your affiliation status report file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + O seu ficheiro de relatório de estado de afiliação ser-lhe-á enviado por + e-mail brevemente. Se não receber o seu ficheiro, contacte-nos através do e-mail + membership@orcid.org. src/app/affiliation/affiliations.component.html 82 - - Your permission links file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - O seu ficheiro de hiperligações de permissão ser-lhe-á enviado por e-mail brevemente. Se não receber o seu ficheiro, contacte-nos através do e-mail membership@orcid.org. + + Your permission links file will be mailed to you shortly. If you do not receive + your file then please contact us at membership@orcid.org. + O seu ficheiro de hiperligações de permissão ser-lhe-á enviado por + e-mail brevemente. Se não receber o seu ficheiro, contacte-nos através do e-mail + membership@orcid.org. src/app/affiliation/affiliations.component.html 91 @@ -1824,7 +2008,9 @@ 150 - + @@ -1856,9 +2042,13 @@ 190 - - For help troubleshooting, please contact the Member Portal Team and copy/paste or include a screenshot of the error message below. - Se precisar de ajuda a resolver este erro, por favor contacte o seu líder de consórcio ou membership@orcid.org. Por favor inclua uma captura de ecrã da mensagem de erro em baixo. + + For help troubleshooting, please contact the Member Portal Team and copy/paste or + include a screenshot of the error message below. + Se precisar de ajuda a resolver este erro, por favor contacte o seu + líder de consórcio ou membership@orcid.org. Por favor inclua uma captura de ecrã da + mensagem de erro em baixo. src/app/affiliation/affiliations.component.html 203 @@ -1869,7 +2059,7 @@ Acesso negado ao utilzador src/app/shared/pipe/localize.ts - 34 + 38 @@ -1877,7 +2067,7 @@ Pendente src/app/shared/pipe/localize.ts - 36 + 40 @@ -1885,7 +2075,7 @@ Em ORCID src/app/shared/pipe/localize.ts - 38 + 42 @@ -1893,7 +2083,7 @@ Acesso concedido ao utilizador src/app/shared/pipe/localize.ts - 40 + 44 @@ -1901,7 +2091,7 @@ User deleted from ORCID src/app/shared/pipe/localize.ts - 42 + 46 @@ -1909,7 +2099,7 @@ Acesso revogado do utilizador src/app/shared/pipe/localize.ts - 44 + 48 @@ -1917,7 +2107,7 @@ Erro ao adicionar ao ORCID src/app/shared/pipe/localize.ts - 46 + 50 @@ -1925,7 +2115,7 @@ Erro ao atualizar no ORCID src/app/shared/pipe/localize.ts - 48 + 52 @@ -1933,7 +2123,7 @@ Nova tentativa pendente em ORCID src/app/shared/pipe/localize.ts - 50 + 54 @@ -1941,7 +2131,7 @@ Erro ao eliminar no ORCID src/app/shared/pipe/localize.ts - 52 + 56 @@ -1949,7 +2139,7 @@ Notificação solicitada src/app/shared/pipe/localize.ts - 54 + 58 @@ -1957,7 +2147,7 @@ Notificação enviada src/app/shared/pipe/localize.ts - 56 + 60 @@ -1965,7 +2155,7 @@ Notificação falhada src/app/shared/pipe/localize.ts - 58 + 62 @@ -1973,7 +2163,7 @@ Atualização pendente no ORCID src/app/shared/pipe/localize.ts - 60 + 64 @@ -2008,7 +2198,8 @@ 36 - + Affiliation Section Tipo de Afiliação @@ -2049,7 +2240,7 @@ src/app/affiliation/affiliation-update.component.html - 265 + 261 @@ -2061,7 +2252,7 @@ src/app/affiliation/affiliation-update.component.html - 285 + 277 @@ -2089,7 +2280,7 @@ src/app/affiliation/affiliation-update.component.html - 426 + 414 @@ -2132,7 +2323,8 @@ 145 - + Notification First Sent Primeira notificação enviada @@ -2144,7 +2336,8 @@ 175 - + Notification Last Sent Última notificação enviada @@ -2168,15 +2361,20 @@ Import affiliations from CSV Importar afiliações - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 3 - - Your CSV has been uploaded for processing. We will let you know via email once the file has been processed. - O seu CSV foi carregado para processamento. Avisá-lo-emos por e-mail assim que o ficheiro tiver sido processado. + + Your CSV has been uploaded for processing. We will let you know via email once the + file has been processed. + O seu CSV foi carregado para processamento. Avisá-lo-emos por e-mail + assim que o ficheiro tiver sido processado. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 10 @@ -2184,7 +2382,8 @@ There was a problem uploading your CSV for processing. Ocorreu um problema ao carregar o seu CSV para processamento. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 17 @@ -2192,7 +2391,8 @@ Please select the CSV file to upload Selecione um ficheiro CRV para carregar - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 20 @@ -2200,15 +2400,19 @@ File Path Caminho de ficheiro - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 22 - Please do not forget to download and send permission links to your researchers once the upload has completed. - Nota: Não se esqueça de descarregar e enviar. as ligações de permissão para os seus investigadores quando o upload estiver completo. + Please do not forget to download and send permission links to your researchers once + the upload has completed. + Nota: Não se esqueça de descarregar e enviar. as ligações de permissão + para os seus investigadores quando o upload estiver completo. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 26 @@ -2216,7 +2420,8 @@ Close Fechar - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 40 @@ -2224,7 +2429,8 @@ There is no file to upload. Please select one. Não existe nenhum ficheiro para carregar. Selecione um. - src/app/affiliation/affiliation-import-dialog.component.ts + + src/app/affiliation/affiliation-import-dialog.component.ts 60 @@ -2233,7 +2439,7 @@ EDUCAÇÃO src/app/shared/pipe/localize.ts - 65 + 69 @@ -2241,7 +2447,7 @@ EMPREGO src/app/shared/pipe/localize.ts - 67 + 71 @@ -2249,7 +2455,7 @@ DISTINÇÃO src/app/shared/pipe/localize.ts - 69 + 73 @@ -2257,7 +2463,7 @@ POSIÇÃO_CONVIDADA src/app/shared/pipe/localize.ts - 71 + 75 @@ -2265,7 +2471,7 @@ QUALIFICAÇÃO src/app/shared/pipe/localize.ts - 73 + 77 @@ -2273,7 +2479,7 @@ SERVIÇO src/app/shared/pipe/localize.ts - 75 + 79 @@ -2281,7 +2487,7 @@ MEMBROS src/app/shared/pipe/localize.ts - 77 + 81 @@ -2289,7 +2495,7 @@ Janeiro src/app/shared/pipe/localize.ts - 82 + 86 @@ -2297,7 +2503,7 @@ Fevereiro src/app/shared/pipe/localize.ts - 84 + 88 @@ -2305,7 +2511,7 @@ Março src/app/shared/pipe/localize.ts - 86 + 90 @@ -2313,7 +2519,7 @@ Abril src/app/shared/pipe/localize.ts - 88 + 92 @@ -2321,7 +2527,7 @@ Maio src/app/shared/pipe/localize.ts - 90 + 94 @@ -2329,7 +2535,7 @@ Junho src/app/shared/pipe/localize.ts - 92 + 96 @@ -2337,7 +2543,7 @@ Julho src/app/shared/pipe/localize.ts - 94 + 98 @@ -2345,7 +2551,7 @@ Agosto src/app/shared/pipe/localize.ts - 96 + 100 @@ -2353,7 +2559,7 @@ Setembro src/app/shared/pipe/localize.ts - 98 + 102 @@ -2361,7 +2567,7 @@ Outubro src/app/shared/pipe/localize.ts - 100 + 104 @@ -2369,7 +2575,7 @@ Novembro src/app/shared/pipe/localize.ts - 102 + 106 @@ -2377,7 +2583,7 @@ Dezembro src/app/shared/pipe/localize.ts - 104 + 108 @@ -2385,7 +2591,7 @@ Andorra src/app/shared/pipe/localize.ts - 109 + 113 @@ -2393,7 +2599,7 @@ Emirados Árabes Unidos src/app/shared/pipe/localize.ts - 111 + 115 @@ -2401,7 +2607,7 @@ Afeganistão src/app/shared/pipe/localize.ts - 113 + 117 @@ -2409,7 +2615,7 @@ Antígua e Barbuda src/app/shared/pipe/localize.ts - 115 + 119 @@ -2417,7 +2623,7 @@ Anguila src/app/shared/pipe/localize.ts - 117 + 121 @@ -2425,7 +2631,7 @@ Albânia src/app/shared/pipe/localize.ts - 119 + 123 @@ -2433,7 +2639,7 @@ Arménia src/app/shared/pipe/localize.ts - 121 + 125 @@ -2441,7 +2647,7 @@ Angola src/app/shared/pipe/localize.ts - 123 + 127 @@ -2449,7 +2655,7 @@ Antártida src/app/shared/pipe/localize.ts - 125 + 129 @@ -2457,7 +2663,7 @@ Argentina src/app/shared/pipe/localize.ts - 127 + 131 @@ -2465,7 +2671,7 @@ Samoa Americana src/app/shared/pipe/localize.ts - 129 + 133 @@ -2473,7 +2679,7 @@ Áustria src/app/shared/pipe/localize.ts - 131 + 135 @@ -2481,7 +2687,7 @@ Austrália src/app/shared/pipe/localize.ts - 133 + 137 @@ -2489,7 +2695,7 @@ Aruba src/app/shared/pipe/localize.ts - 135 + 139 @@ -2497,7 +2703,7 @@ Alanda src/app/shared/pipe/localize.ts - 137 + 141 @@ -2505,7 +2711,7 @@ Azerbaijão src/app/shared/pipe/localize.ts - 139 + 143 @@ -2513,7 +2719,7 @@ Bósnia-Herzegovina src/app/shared/pipe/localize.ts - 141 + 145 @@ -2521,7 +2727,7 @@ Barbados src/app/shared/pipe/localize.ts - 143 + 147 @@ -2529,7 +2735,7 @@ Bangladexe src/app/shared/pipe/localize.ts - 145 + 149 @@ -2537,7 +2743,7 @@ Bélgica src/app/shared/pipe/localize.ts - 147 + 151 @@ -2545,7 +2751,7 @@ Burquina Fasso src/app/shared/pipe/localize.ts - 149 + 153 @@ -2553,7 +2759,7 @@ Bulgária src/app/shared/pipe/localize.ts - 151 + 155 @@ -2561,7 +2767,7 @@ Barém src/app/shared/pipe/localize.ts - 153 + 157 @@ -2569,7 +2775,7 @@ Burundi src/app/shared/pipe/localize.ts - 155 + 159 @@ -2577,7 +2783,7 @@ Benim src/app/shared/pipe/localize.ts - 157 + 161 @@ -2585,7 +2791,7 @@ São Bartolomeu src/app/shared/pipe/localize.ts - 159 + 163 @@ -2593,7 +2799,7 @@ Bermudas src/app/shared/pipe/localize.ts - 161 + 165 @@ -2601,7 +2807,7 @@ Brunei src/app/shared/pipe/localize.ts - 163 + 167 @@ -2609,7 +2815,7 @@ Bolívia src/app/shared/pipe/localize.ts - 165 + 169 @@ -2617,7 +2823,7 @@ Território Antártico Britânico src/app/shared/pipe/localize.ts - 167 + 171 @@ -2625,7 +2831,7 @@ Brasil src/app/shared/pipe/localize.ts - 169 + 173 @@ -2633,7 +2839,7 @@ Baamas src/app/shared/pipe/localize.ts - 171 + 175 @@ -2641,7 +2847,7 @@ Butão src/app/shared/pipe/localize.ts - 173 + 177 @@ -2649,7 +2855,7 @@ Ilha Bouvet src/app/shared/pipe/localize.ts - 175 + 179 @@ -2657,7 +2863,7 @@ Botsuana src/app/shared/pipe/localize.ts - 177 + 181 @@ -2665,7 +2871,7 @@ Bielorrússia src/app/shared/pipe/localize.ts - 179 + 183 @@ -2673,7 +2879,7 @@ Belize src/app/shared/pipe/localize.ts - 181 + 185 @@ -2681,7 +2887,7 @@ Canadá src/app/shared/pipe/localize.ts - 183 + 187 @@ -2689,7 +2895,7 @@ Ilhas dos Cocos src/app/shared/pipe/localize.ts - 185 + 189 @@ -2697,7 +2903,7 @@ Congo – Quinxassa src/app/shared/pipe/localize.ts - 187 + 191 @@ -2705,7 +2911,7 @@ República Centro-Africana src/app/shared/pipe/localize.ts - 189 + 193 @@ -2713,7 +2919,7 @@ Congo – Brazzaville src/app/shared/pipe/localize.ts - 191 + 195 @@ -2721,7 +2927,7 @@ Suíça src/app/shared/pipe/localize.ts - 193 + 197 @@ -2729,7 +2935,7 @@ Costa do Marfim src/app/shared/pipe/localize.ts - 195 + 199 @@ -2737,7 +2943,7 @@ Ilhas Cook src/app/shared/pipe/localize.ts - 197 + 201 @@ -2745,7 +2951,7 @@ Chile src/app/shared/pipe/localize.ts - 199 + 203 @@ -2753,7 +2959,7 @@ Camarões src/app/shared/pipe/localize.ts - 201 + 205 @@ -2761,7 +2967,7 @@ China src/app/shared/pipe/localize.ts - 203 + 207 @@ -2769,7 +2975,7 @@ Colômbia src/app/shared/pipe/localize.ts - 205 + 209 @@ -2777,7 +2983,7 @@ Costa Rica src/app/shared/pipe/localize.ts - 207 + 211 @@ -2785,7 +2991,7 @@ Cuba src/app/shared/pipe/localize.ts - 209 + 213 @@ -2793,7 +2999,7 @@ Cabo Verde src/app/shared/pipe/localize.ts - 211 + 215 @@ -2801,7 +3007,7 @@ Curaçau src/app/shared/pipe/localize.ts - 213 + 217 @@ -2809,7 +3015,7 @@ Ilha do Natal src/app/shared/pipe/localize.ts - 215 + 219 @@ -2817,7 +3023,7 @@ Chipre src/app/shared/pipe/localize.ts - 217 + 221 @@ -2825,7 +3031,7 @@ República Checa src/app/shared/pipe/localize.ts - 219 + 223 @@ -2833,7 +3039,7 @@ Alemanha src/app/shared/pipe/localize.ts - 221 + 225 @@ -2841,7 +3047,7 @@ Jibuti src/app/shared/pipe/localize.ts - 223 + 227 @@ -2849,7 +3055,7 @@ Dinamarca src/app/shared/pipe/localize.ts - 225 + 229 @@ -2857,7 +3063,7 @@ Domínica src/app/shared/pipe/localize.ts - 227 + 231 @@ -2865,7 +3071,7 @@ República Dominicana src/app/shared/pipe/localize.ts - 229 + 233 @@ -2873,7 +3079,7 @@ Argélia src/app/shared/pipe/localize.ts - 231 + 235 @@ -2881,7 +3087,7 @@ Equador src/app/shared/pipe/localize.ts - 233 + 237 @@ -2889,7 +3095,7 @@ Estónia src/app/shared/pipe/localize.ts - 235 + 239 @@ -2897,7 +3103,7 @@ Egito src/app/shared/pipe/localize.ts - 237 + 241 @@ -2905,7 +3111,7 @@ Sara Ocidental src/app/shared/pipe/localize.ts - 239 + 243 @@ -2913,7 +3119,7 @@ Eritreia src/app/shared/pipe/localize.ts - 241 + 245 @@ -2921,7 +3127,7 @@ Espanha src/app/shared/pipe/localize.ts - 243 + 247 @@ -2929,7 +3135,7 @@ Etiópia src/app/shared/pipe/localize.ts - 245 + 249 @@ -2937,7 +3143,7 @@ Finlândia src/app/shared/pipe/localize.ts - 247 + 251 @@ -2945,7 +3151,7 @@ Fiji src/app/shared/pipe/localize.ts - 249 + 253 @@ -2953,7 +3159,7 @@ Ilhas Falkland src/app/shared/pipe/localize.ts - 251 + 255 @@ -2961,7 +3167,7 @@ Micronésia src/app/shared/pipe/localize.ts - 253 + 257 @@ -2969,7 +3175,7 @@ Ilhas Faroé src/app/shared/pipe/localize.ts - 255 + 259 @@ -2977,7 +3183,7 @@ França src/app/shared/pipe/localize.ts - 257 + 261 @@ -2985,7 +3191,7 @@ Gabão src/app/shared/pipe/localize.ts - 259 + 263 @@ -2993,7 +3199,7 @@ Reino Unido src/app/shared/pipe/localize.ts - 261 + 265 @@ -3001,7 +3207,7 @@ Granada src/app/shared/pipe/localize.ts - 263 + 267 @@ -3009,7 +3215,7 @@ Geórgia src/app/shared/pipe/localize.ts - 265 + 269 @@ -3017,7 +3223,7 @@ Guiana Francesa src/app/shared/pipe/localize.ts - 267 + 271 @@ -3025,7 +3231,7 @@ Guernesey src/app/shared/pipe/localize.ts - 269 + 273 @@ -3033,7 +3239,7 @@ Gana src/app/shared/pipe/localize.ts - 271 + 275 @@ -3041,7 +3247,7 @@ Gibraltar src/app/shared/pipe/localize.ts - 273 + 277 @@ -3049,7 +3255,7 @@ Gronelândia src/app/shared/pipe/localize.ts - 275 + 279 @@ -3057,7 +3263,7 @@ Gâmbia src/app/shared/pipe/localize.ts - 277 + 281 @@ -3065,7 +3271,7 @@ Guiné src/app/shared/pipe/localize.ts - 279 + 283 @@ -3073,7 +3279,7 @@ Guadalupe src/app/shared/pipe/localize.ts - 281 + 285 @@ -3081,7 +3287,7 @@ Guiné Equatorial src/app/shared/pipe/localize.ts - 283 + 287 @@ -3089,7 +3295,7 @@ Grécia src/app/shared/pipe/localize.ts - 285 + 289 @@ -3097,7 +3303,7 @@ Ilhas Geórgia do Sul e Sandwich do Sul src/app/shared/pipe/localize.ts - 287 + 291 @@ -3105,7 +3311,7 @@ Guatemala src/app/shared/pipe/localize.ts - 289 + 293 @@ -3113,7 +3319,7 @@ Guame src/app/shared/pipe/localize.ts - 291 + 295 @@ -3121,7 +3327,7 @@ Guiné-Bissau src/app/shared/pipe/localize.ts - 293 + 297 @@ -3129,7 +3335,7 @@ Guiana src/app/shared/pipe/localize.ts - 295 + 299 @@ -3137,7 +3343,7 @@ RAE de Hong Kong src/app/shared/pipe/localize.ts - 297 + 301 @@ -3145,7 +3351,7 @@ Ilha Heard e Ilhas McDonald src/app/shared/pipe/localize.ts - 299 + 303 @@ -3153,7 +3359,7 @@ Honduras src/app/shared/pipe/localize.ts - 301 + 305 @@ -3161,7 +3367,7 @@ Croácia src/app/shared/pipe/localize.ts - 303 + 307 @@ -3169,7 +3375,7 @@ Haiti src/app/shared/pipe/localize.ts - 305 + 309 @@ -3177,7 +3383,7 @@ Hungria src/app/shared/pipe/localize.ts - 307 + 311 @@ -3185,7 +3391,7 @@ Indonésia src/app/shared/pipe/localize.ts - 309 + 313 @@ -3193,7 +3399,7 @@ Irlanda src/app/shared/pipe/localize.ts - 311 + 315 @@ -3201,7 +3407,7 @@ Israel src/app/shared/pipe/localize.ts - 313 + 317 @@ -3209,7 +3415,7 @@ Ilha de Man src/app/shared/pipe/localize.ts - 315 + 319 @@ -3217,7 +3423,7 @@ Índia src/app/shared/pipe/localize.ts - 317 + 321 @@ -3225,7 +3431,7 @@ Território Britânico do Oceano Índico src/app/shared/pipe/localize.ts - 319 + 323 @@ -3233,7 +3439,7 @@ Iraque src/app/shared/pipe/localize.ts - 321 + 325 @@ -3241,7 +3447,7 @@ Irão src/app/shared/pipe/localize.ts - 323 + 327 @@ -3249,7 +3455,7 @@ Islândia src/app/shared/pipe/localize.ts - 325 + 329 @@ -3257,7 +3463,7 @@ Itália src/app/shared/pipe/localize.ts - 327 + 331 @@ -3265,7 +3471,7 @@ Jersey src/app/shared/pipe/localize.ts - 329 + 333 @@ -3273,7 +3479,7 @@ Jamaica src/app/shared/pipe/localize.ts - 331 + 335 @@ -3281,7 +3487,7 @@ Jordânia src/app/shared/pipe/localize.ts - 333 + 337 @@ -3289,7 +3495,7 @@ Japão src/app/shared/pipe/localize.ts - 335 + 339 @@ -3297,7 +3503,7 @@ Quénia src/app/shared/pipe/localize.ts - 337 + 341 @@ -3305,7 +3511,7 @@ Quirguistão src/app/shared/pipe/localize.ts - 339 + 343 @@ -3313,7 +3519,7 @@ Camboja src/app/shared/pipe/localize.ts - 341 + 345 @@ -3321,7 +3527,7 @@ Quiribáti src/app/shared/pipe/localize.ts - 343 + 347 @@ -3329,7 +3535,7 @@ Comores src/app/shared/pipe/localize.ts - 345 + 349 @@ -3337,7 +3543,7 @@ São Cristóvão e Neves src/app/shared/pipe/localize.ts - 347 + 351 @@ -3345,7 +3551,7 @@ Coreia do Norte src/app/shared/pipe/localize.ts - 349 + 353 @@ -3353,7 +3559,7 @@ Coreia do Sul src/app/shared/pipe/localize.ts - 351 + 355 @@ -3361,7 +3567,7 @@ Koweit src/app/shared/pipe/localize.ts - 353 + 357 @@ -3369,7 +3575,7 @@ Ilhas Caimão src/app/shared/pipe/localize.ts - 355 + 359 @@ -3377,7 +3583,7 @@ Cazaquistão src/app/shared/pipe/localize.ts - 357 + 361 @@ -3385,7 +3591,7 @@ Laos src/app/shared/pipe/localize.ts - 359 + 363 @@ -3393,7 +3599,7 @@ Líbano src/app/shared/pipe/localize.ts - 361 + 365 @@ -3401,7 +3607,7 @@ Santa Lúcia src/app/shared/pipe/localize.ts - 363 + 367 @@ -3409,7 +3615,7 @@ Listenstaine src/app/shared/pipe/localize.ts - 365 + 369 @@ -3417,7 +3623,7 @@ Seri Lanca src/app/shared/pipe/localize.ts - 367 + 371 @@ -3425,7 +3631,7 @@ Libéria src/app/shared/pipe/localize.ts - 369 + 373 @@ -3433,7 +3639,7 @@ Lesoto src/app/shared/pipe/localize.ts - 371 + 375 @@ -3441,7 +3647,7 @@ Lituânia src/app/shared/pipe/localize.ts - 373 + 377 @@ -3449,7 +3655,7 @@ Luxemburgo src/app/shared/pipe/localize.ts - 375 + 379 @@ -3457,7 +3663,7 @@ Letónia src/app/shared/pipe/localize.ts - 377 + 381 @@ -3465,7 +3671,7 @@ Líbia src/app/shared/pipe/localize.ts - 379 + 383 @@ -3473,7 +3679,7 @@ Marrocos src/app/shared/pipe/localize.ts - 381 + 385 @@ -3481,7 +3687,7 @@ Mónaco src/app/shared/pipe/localize.ts - 383 + 387 @@ -3489,7 +3695,7 @@ Moldávia src/app/shared/pipe/localize.ts - 385 + 389 @@ -3497,7 +3703,7 @@ Montenegro src/app/shared/pipe/localize.ts - 387 + 391 @@ -3505,7 +3711,7 @@ São Martinho (Saint-Martin) src/app/shared/pipe/localize.ts - 389 + 393 @@ -3513,7 +3719,7 @@ Madagáscar src/app/shared/pipe/localize.ts - 391 + 395 @@ -3521,7 +3727,7 @@ Ilhas Marshall src/app/shared/pipe/localize.ts - 393 + 397 @@ -3529,7 +3735,7 @@ Macedónia do Norte src/app/shared/pipe/localize.ts - 395 + 399 @@ -3537,7 +3743,7 @@ Mali src/app/shared/pipe/localize.ts - 397 + 401 @@ -3545,7 +3751,7 @@ Mianmar {Birmânia} src/app/shared/pipe/localize.ts - 399 + 403 @@ -3553,7 +3759,7 @@ Mongólia src/app/shared/pipe/localize.ts - 401 + 405 @@ -3561,7 +3767,7 @@ RAE de Macau src/app/shared/pipe/localize.ts - 403 + 407 @@ -3569,7 +3775,7 @@ Ilhas Marianas do Norte src/app/shared/pipe/localize.ts - 405 + 409 @@ -3577,7 +3783,7 @@ Martinica src/app/shared/pipe/localize.ts - 407 + 411 @@ -3585,7 +3791,7 @@ Mauritânia src/app/shared/pipe/localize.ts - 409 + 413 @@ -3593,7 +3799,7 @@ Monserrate src/app/shared/pipe/localize.ts - 411 + 415 @@ -3601,7 +3807,7 @@ Malta src/app/shared/pipe/localize.ts - 413 + 417 @@ -3609,7 +3815,7 @@ Maurícia src/app/shared/pipe/localize.ts - 415 + 419 @@ -3617,7 +3823,7 @@ Maldivas src/app/shared/pipe/localize.ts - 417 + 421 @@ -3625,7 +3831,7 @@ Maláui src/app/shared/pipe/localize.ts - 419 + 423 @@ -3633,7 +3839,7 @@ México src/app/shared/pipe/localize.ts - 421 + 425 @@ -3641,7 +3847,7 @@ Malásia src/app/shared/pipe/localize.ts - 423 + 427 @@ -3649,7 +3855,7 @@ Moçambique src/app/shared/pipe/localize.ts - 425 + 429 @@ -3657,7 +3863,7 @@ Namíbia src/app/shared/pipe/localize.ts - 427 + 431 @@ -3665,7 +3871,7 @@ Nova Caledónia src/app/shared/pipe/localize.ts - 429 + 433 @@ -3673,7 +3879,7 @@ Níger src/app/shared/pipe/localize.ts - 431 + 435 @@ -3681,7 +3887,7 @@ Ilha Norfolk src/app/shared/pipe/localize.ts - 433 + 437 @@ -3689,7 +3895,7 @@ Nigéria src/app/shared/pipe/localize.ts - 435 + 439 @@ -3697,7 +3903,7 @@ Nicarágua src/app/shared/pipe/localize.ts - 437 + 441 @@ -3705,7 +3911,7 @@ Países Baixos src/app/shared/pipe/localize.ts - 439 + 443 @@ -3713,7 +3919,7 @@ Noruega src/app/shared/pipe/localize.ts - 441 + 445 @@ -3721,7 +3927,7 @@ Nepal src/app/shared/pipe/localize.ts - 443 + 447 @@ -3729,7 +3935,7 @@ Nauru src/app/shared/pipe/localize.ts - 445 + 449 @@ -3737,7 +3943,7 @@ Niuê src/app/shared/pipe/localize.ts - 447 + 451 @@ -3745,7 +3951,7 @@ Nova Zelândia src/app/shared/pipe/localize.ts - 449 + 453 @@ -3753,7 +3959,7 @@ Omã src/app/shared/pipe/localize.ts - 451 + 455 @@ -3761,7 +3967,7 @@ Panamá src/app/shared/pipe/localize.ts - 453 + 457 @@ -3769,7 +3975,7 @@ Peru src/app/shared/pipe/localize.ts - 455 + 459 @@ -3777,7 +3983,7 @@ Polinésia Francesa src/app/shared/pipe/localize.ts - 457 + 461 @@ -3785,7 +3991,7 @@ Papua-Nova Guiné src/app/shared/pipe/localize.ts - 459 + 463 @@ -3793,7 +3999,7 @@ Filipinas src/app/shared/pipe/localize.ts - 461 + 465 @@ -3801,7 +4007,7 @@ Paquistão src/app/shared/pipe/localize.ts - 463 + 467 @@ -3809,7 +4015,7 @@ Polónia src/app/shared/pipe/localize.ts - 465 + 469 @@ -3817,7 +4023,7 @@ São Pedro e Miquelão src/app/shared/pipe/localize.ts - 467 + 471 @@ -3825,7 +4031,7 @@ Ilhas Pitcairn src/app/shared/pipe/localize.ts - 469 + 473 @@ -3833,7 +4039,7 @@ Porto Rico src/app/shared/pipe/localize.ts - 471 + 475 @@ -3841,7 +4047,7 @@ Territórios Palestinianos src/app/shared/pipe/localize.ts - 473 + 477 @@ -3849,7 +4055,7 @@ Portugal src/app/shared/pipe/localize.ts - 475 + 479 @@ -3857,7 +4063,7 @@ Palau src/app/shared/pipe/localize.ts - 477 + 481 @@ -3865,7 +4071,7 @@ Paraguai src/app/shared/pipe/localize.ts - 479 + 483 @@ -3873,7 +4079,7 @@ Catar src/app/shared/pipe/localize.ts - 481 + 485 @@ -3881,7 +4087,7 @@ Reunião src/app/shared/pipe/localize.ts - 483 + 487 @@ -3889,7 +4095,7 @@ Roménia src/app/shared/pipe/localize.ts - 485 + 489 @@ -3897,7 +4103,7 @@ Sérvia src/app/shared/pipe/localize.ts - 487 + 491 @@ -3905,7 +4111,7 @@ Rússia src/app/shared/pipe/localize.ts - 489 + 493 @@ -3913,7 +4119,7 @@ Ruanda src/app/shared/pipe/localize.ts - 491 + 495 @@ -3921,7 +4127,7 @@ Arábia Saudita src/app/shared/pipe/localize.ts - 493 + 497 @@ -3929,7 +4135,7 @@ Ilhas Salomão src/app/shared/pipe/localize.ts - 495 + 499 @@ -3937,7 +4143,7 @@ Seicheles src/app/shared/pipe/localize.ts - 497 + 501 @@ -3945,7 +4151,7 @@ Sudão src/app/shared/pipe/localize.ts - 499 + 503 @@ -3953,7 +4159,7 @@ Suécia src/app/shared/pipe/localize.ts - 501 + 505 @@ -3961,7 +4167,7 @@ Singapura src/app/shared/pipe/localize.ts - 503 + 507 @@ -3969,7 +4175,7 @@ Santa Helena src/app/shared/pipe/localize.ts - 505 + 509 @@ -3977,7 +4183,7 @@ Eslovénia src/app/shared/pipe/localize.ts - 507 + 511 @@ -3985,7 +4191,7 @@ Svalbard e Jan Mayen src/app/shared/pipe/localize.ts - 509 + 513 @@ -3993,7 +4199,7 @@ Eslováquia src/app/shared/pipe/localize.ts - 511 + 515 @@ -4001,7 +4207,7 @@ Serra Leoa src/app/shared/pipe/localize.ts - 513 + 517 @@ -4009,7 +4215,7 @@ São Marinho src/app/shared/pipe/localize.ts - 515 + 519 @@ -4017,7 +4223,7 @@ Senegal src/app/shared/pipe/localize.ts - 517 + 521 @@ -4025,7 +4231,7 @@ Somália src/app/shared/pipe/localize.ts - 519 + 523 @@ -4033,7 +4239,7 @@ Suriname src/app/shared/pipe/localize.ts - 521 + 525 @@ -4041,7 +4247,7 @@ Sudão do Sul src/app/shared/pipe/localize.ts - 523 + 527 @@ -4049,7 +4255,7 @@ São Tomé e Príncipe src/app/shared/pipe/localize.ts - 525 + 529 @@ -4057,7 +4263,7 @@ Salvador src/app/shared/pipe/localize.ts - 527 + 531 @@ -4065,7 +4271,7 @@ São Martinho (Sint Maarten) src/app/shared/pipe/localize.ts - 529 + 533 @@ -4073,7 +4279,7 @@ Síria src/app/shared/pipe/localize.ts - 531 + 535 @@ -4081,7 +4287,7 @@ Essuatíni src/app/shared/pipe/localize.ts - 533 + 537 @@ -4089,7 +4295,7 @@ Ilhas Turcas e Caicos src/app/shared/pipe/localize.ts - 535 + 539 @@ -4097,7 +4303,7 @@ Chade src/app/shared/pipe/localize.ts - 537 + 541 @@ -4105,7 +4311,7 @@ Territórios Franceses do Sul src/app/shared/pipe/localize.ts - 539 + 543 @@ -4113,7 +4319,7 @@ Togo src/app/shared/pipe/localize.ts - 541 + 545 @@ -4121,7 +4327,7 @@ Tailândia src/app/shared/pipe/localize.ts - 543 + 547 @@ -4129,7 +4335,7 @@ Tajiquistão src/app/shared/pipe/localize.ts - 545 + 549 @@ -4137,7 +4343,7 @@ Toquelau src/app/shared/pipe/localize.ts - 547 + 551 @@ -4145,7 +4351,7 @@ Timor-Leste src/app/shared/pipe/localize.ts - 549 + 553 @@ -4153,7 +4359,7 @@ Turquemenistão src/app/shared/pipe/localize.ts - 551 + 555 @@ -4161,7 +4367,7 @@ Tunísia src/app/shared/pipe/localize.ts - 553 + 557 @@ -4169,7 +4375,7 @@ Tonga src/app/shared/pipe/localize.ts - 555 + 559 @@ -4177,7 +4383,7 @@ Turquia src/app/shared/pipe/localize.ts - 557 + 561 @@ -4185,7 +4391,7 @@ Trindade e Tobago src/app/shared/pipe/localize.ts - 559 + 563 @@ -4193,7 +4399,7 @@ Tuvalu src/app/shared/pipe/localize.ts - 561 + 565 @@ -4201,7 +4407,7 @@ Taiwan src/app/shared/pipe/localize.ts - 563 + 567 @@ -4209,7 +4415,7 @@ Tanzânia src/app/shared/pipe/localize.ts - 565 + 569 @@ -4217,7 +4423,7 @@ Ucrânia src/app/shared/pipe/localize.ts - 567 + 571 @@ -4225,7 +4431,7 @@ Uganda src/app/shared/pipe/localize.ts - 569 + 573 @@ -4233,7 +4439,7 @@ Ilhas Menores Afastadas dos Estados Unidos src/app/shared/pipe/localize.ts - 571 + 575 @@ -4241,7 +4447,7 @@ Estados Unidos src/app/shared/pipe/localize.ts - 573 + 577 @@ -4249,7 +4455,7 @@ Uruguai src/app/shared/pipe/localize.ts - 575 + 579 @@ -4257,7 +4463,7 @@ Usbequistão src/app/shared/pipe/localize.ts - 577 + 581 @@ -4265,7 +4471,7 @@ Cidade do Vaticano src/app/shared/pipe/localize.ts - 579 + 583 @@ -4273,7 +4479,7 @@ São Vicente e Granadinas src/app/shared/pipe/localize.ts - 581 + 585 @@ -4281,7 +4487,7 @@ Venezuela src/app/shared/pipe/localize.ts - 583 + 587 @@ -4289,7 +4495,7 @@ Ilhas Virgens Britânicas src/app/shared/pipe/localize.ts - 585 + 589 @@ -4297,7 +4503,7 @@ Ilhas Virgens dos Estados Unidos src/app/shared/pipe/localize.ts - 587 + 591 @@ -4305,7 +4511,7 @@ Vietname src/app/shared/pipe/localize.ts - 589 + 593 @@ -4313,7 +4519,7 @@ Vanuatu src/app/shared/pipe/localize.ts - 591 + 595 @@ -4321,7 +4527,7 @@ Wallis e Futuna src/app/shared/pipe/localize.ts - 593 + 597 @@ -4329,7 +4535,7 @@ Samoa src/app/shared/pipe/localize.ts - 595 + 599 @@ -4337,7 +4543,7 @@ Kosovo src/app/shared/pipe/localize.ts - 597 + 601 @@ -4345,7 +4551,7 @@ Iémen src/app/shared/pipe/localize.ts - 599 + 603 @@ -4353,7 +4559,7 @@ Maiote src/app/shared/pipe/localize.ts - 601 + 605 @@ -4361,7 +4567,7 @@ África do Sul src/app/shared/pipe/localize.ts - 603 + 607 @@ -4369,7 +4575,7 @@ Zâmbia src/app/shared/pipe/localize.ts - 605 + 609 @@ -4377,10 +4583,11 @@ Zimbabué src/app/shared/pipe/localize.ts - 607 + 611 - + Add or edit affiliation Adicionar ou editar afiliação @@ -4390,7 +4597,7 @@ This field should follow pattern for "Email". - Este campo deve seguir um padrão para {{ pattern }}. + Este campo deve seguir um padrão para Email. src/app/affiliation/affiliation-update.component.html 25 @@ -4427,9 +4634,21 @@ src/app/affiliation/affiliation-update.component.html 188 + + src/app/member/member-update.component.html + 61 + + + src/app/member/member-update.component.html + 105 + + + src/app/member/member-update.component.html + 140 + - Org Name + Organization Name Nome da Organização src/app/affiliation/affiliation-update.component.html @@ -4437,7 +4656,7 @@ - Org City + City Cidade src/app/affiliation/affiliation-update.component.html @@ -4445,7 +4664,7 @@ - Org Region + State/Region Estado/Região src/app/affiliation/affiliation-update.component.html @@ -4453,23 +4672,25 @@ - Org Country + Country País src/app/affiliation/affiliation-update.component.html 141 - - Disambiguation Source + + Organization ID Source Fonte da ID da Organização src/app/affiliation/affiliation-update.component.html 170 - - Disambiguated Org Id + + Organization ID ID da Organização src/app/affiliation/affiliation-update.component.html @@ -4477,27 +4698,29 @@ - This field is required. GRID Organization ID should start with "grid.", RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with 0 - Este campo é obrigatório. O ID de Organização GRID deve começar com grid, como grid.12344, ou ser um URL de grid válido. O ID de Organização RINGGOLD deve ser um número. Os IDs ROR devem ter 9 caracteres, a começar com 0. + This field is required. GRID Organization ID should start with "grid.", + RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with + 0 + Este campo é obrigatório. O ID de Organização GRID deve começar com + grid, como grid.12344, ou ser um URL de grid válido. O ID de Organização RINGGOLD deve ser + um número. Os IDs ROR devem ter 9 caracteres, a começar com 0. src/app/affiliation/affiliation-update.component.html 223 - This field cannot be longer than 4000 characters. - Este campo não pode ter mais do que {{ max }} caracteres. - - src/app/affiliation/affiliation-update.component.html - 255 - + This field cannot be longer than + characters. + Este campo não pode ter mais do que + caracteres. - src/app/affiliation/affiliation-update.component.html - 278 + src/app/affiliation/affiliation-update.component.ts + 195 - src/app/affiliation/affiliation-update.component.html - 293 + src/app/affiliation/affiliation-update.component.ts + 197 @@ -4505,7 +4728,7 @@ Ano de Início src/app/affiliation/affiliation-update.component.html - 305 + 293 @@ -4513,11 +4736,11 @@ Ano src/app/affiliation/affiliation-update.component.html - 314 + 302 src/app/affiliation/affiliation-update.component.html - 364 + 352 @@ -4525,7 +4748,7 @@ Mês de Início src/app/affiliation/affiliation-update.component.html - 323 + 311 @@ -4533,11 +4756,11 @@ Mês src/app/affiliation/affiliation-update.component.html - 332 + 320 src/app/affiliation/affiliation-update.component.html - 382 + 370 @@ -4545,7 +4768,7 @@ Dia de Início src/app/affiliation/affiliation-update.component.html - 341 + 329 @@ -4553,11 +4776,11 @@ Dia src/app/affiliation/affiliation-update.component.html - 344 + 332 src/app/affiliation/affiliation-update.component.html - 394 + 382 @@ -4565,7 +4788,7 @@ Ano de Término src/app/affiliation/affiliation-update.component.html - 355 + 343 @@ -4573,7 +4796,7 @@ Último Mês src/app/affiliation/affiliation-update.component.html - 373 + 361 @@ -4581,7 +4804,7 @@ Data de Término src/app/affiliation/affiliation-update.component.html - 391 + 379 @@ -4589,7 +4812,7 @@ A data de início não pode ser maior que a data de fim. src/app/affiliation/affiliation-update.component.html - 400 + 388 @@ -4597,7 +4820,7 @@ Tipo de ID Externo src/app/affiliation/affiliation-update.component.html - 411 + 399 @@ -4605,15 +4828,17 @@ ID do URL externo src/app/affiliation/affiliation-update.component.html - 441 + 429 - Please do not forget to download and send permission links to your researcher once the assertion has been saved. - Nota: Não se esqueça de descarregar e enviar as ligações de permissão para o seu investigador assim que a asserção for guardada. + Please do not forget to download and send permission links to your researcher once + the assertion has been saved. + Nota: Não se esqueça de descarregar e enviar as ligações de permissão + para o seu investigador assim que a asserção for guardada. src/app/affiliation/affiliation-update.component.html - 457 + 445 @@ -4624,9 +4849,14 @@ 8 - - Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the portal and the user's ORCID record - Tem a certeza de que quer eliminar esta afiliação para ? A afiliação será eliminada do portal e do registo ORCID do utilizador. + + Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the + portal and the user's ORCID record + Tem a certeza de que quer eliminar esta afiliação para ? A afiliação será eliminada do portal e do + registo ORCID do utilizador. src/app/affiliation/affiliation-delete.component.ts 40 @@ -4637,7 +4867,7 @@ Afiliação criada src/app/shared/pipe/localize.ts - 23 + 27 @@ -4645,7 +4875,7 @@ Afiliação atualizada src/app/shared/pipe/localize.ts - 25 + 29 @@ -4653,7 +4883,7 @@ Afiliação excluída src/app/shared/pipe/localize.ts - 27 + 31 @@ -4661,65 +4891,395 @@ Ocorreu um problema ao eliminar a afiliação src/app/shared/pipe/localize.ts - 29 + 33 - + Send permission notifications Enviar notificações de permissão - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 3 - - A request to send notifications to your users is already in progress. Please try again later. - Um pedido para enviar notificações para os seus utilizadores está em curso. Tente novamente mais tarde. + + A request to send notifications to your users is already in progress. Please try + again later. + Um pedido para enviar notificações para os seus utilizadores está em + curso. Tente novamente mais tarde. - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 7 - - Are you sure that you would like ORCID to send permission links to your researchers for the affiliations that are pending? - As notificações de permissão serão enviadas a todos os investigadores com um item de afiliação no estado "Pendente". + + Are you sure that you would like ORCID to send permission links to your researchers + for the affiliations that are pending? + As notificações de permissão serão enviadas a todos os investigadores + com um item de afiliação no estado "Pendente". - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 10 - + Notification language Idioma da notificação - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 11 - + What language should the notification be sent in? Em que idioma devem ser enviadas as notificações? - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 12 - + Send notifications Enviar notificações - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 23 - - Notification process has now started. We will email you as soon as the process has completed. - O processo de notificação foi iniciado. Enviaremos um e-mail para você assim que esse processo for concluído. + + Notification process has now started. We will email you as soon as the process has + completed. + O processo de notificação foi iniciado. Enviaremos um e-mail para você + assim que esse processo for concluído. + + src/app/shared/pipe/localize.ts + 25 + + + + You have already granted + Já concedeu + + src/app/landing-page/landing-page.component.html + 13 + + + + permission to update your ORCID record + permissão para atualizar o seu registo ORCID + + src/app/landing-page/landing-page.component.html + 16 + + + + Oops, something went wrong and we were not able to fetch your ORCID iD + Ups, ocorreu um erro e não foi possível obter o seu ID ORCID + + src/app/landing-page/landing-page.component.html + 33 + + + + Oops, you have denied access. + Ups, foi-lhe negado o acesso. + + src/app/landing-page/landing-page.component.html + 39 + + + + will not be able to update your ORCID record. + não será capaz de atualizar o seu registo ORCID. + + src/app/landing-page/landing-page.component.html + 42 + + + + If this was a mistake, click the button below to grant access. + Se isto for um erro, clique no botão abaixo para permitir o acesso. + + src/app/landing-page/landing-page.component.html + 45 + + + + If you find that data added to your ORCID record is incorrect, please contact + Se notar que os dados associados ao seu registo ORCID estão incorretos, + por favor contacte f + + src/app/landing-page/landing-page.component.ts + 78 + + + + This authorization link has already been used. Please contact for a new authorization link. + Esta ligação de autorização já foi enviada. Por favor contacte para uma nova ligação de autorização. + + src/app/landing-page/landing-page.component.ts + 79 + + + + Allow to update my ORCID record. + Permitir que atualize o meu + registo ORCID + + src/app/landing-page/landing-page.component.ts + 80 + + + + You have successfully granted + permission to update your ORCID record, and your record has been updated with affiliation + information. + Concedeu com sucesso permissão ao utilizador para atualizar o registo ORCID, e o seu registo será + atualizado com a informação de afiliação. + + src/app/landing-page/landing-page.component.ts + 81 + + + + Thanks, ! + Obrigado, + + src/app/landing-page/landing-page.component.ts + 172 + + + + Member details + Detalhes do membro + + src/app/member/member-detail.component.html + 4 + + + + Salesforce Id + ID da Equipa de Vendas + + src/app/member/member-detail.component.html + 9 + + + src/app/member/member-update.component.html + 41 + + + src/app/member/members.component.html + 59 + + + + Parent Salesforce Id + ID da Equipa de Vendas Matriz + + src/app/member/member-detail.component.html + 13 + + + src/app/member/member-update.component.html + 71 + + + src/app/member/members.component.html + 83 + + + + Member Name + Nome do Membro + + src/app/member/member-detail.component.html + 17 + + + src/app/member/member-update.component.html + 86 + + + src/app/member/members.component.html + 67 + + + + Client ID + ID de cliente + + src/app/member/member-detail.component.html + 21 + + + src/app/member/member-update.component.html + 115 + + + + Type + Tipo + + src/app/member/member-detail.component.html + 25 + + + + Is Consortium Lead + Líder de Consórcio + + src/app/member/member-detail.component.html + 29 + + + src/app/member/member-update.component.html + 154 + + + src/app/member/members.component.html + 75 + + + + Assertion Service Enabled + Afirmações Ativas + + src/app/member/member-detail.component.html + 35 + + + src/app/member/member-update.component.html + 169 + + + src/app/member/members.component.html + 91 + + + + Status + Estado + + src/app/member/member-detail.component.html + 41 + + + + Created Date + Criado + + src/app/member/member-detail.component.html + 45 + + + + Last Modified Date + Última Modificação + + src/app/member/member-detail.component.html + 49 + + + src/app/member/members.component.html + 99 + + + + Add or edit member + Adicionar ou editar membro + + src/app/member/member-update.component.html + 8 + + + + Note: Client ID must have User OBO enabled AND + Nota: O ID de cliente deve ter o OBO de Membro ativado E + + src/app/member/member-update.component.html + 120 + + + + added as a Redirect URI in + adicionado como um URI de reencaminhamento em + + src/app/member/member-update.component.html + 124 + + + + Manage members + Gerir membros + + src/app/member/members.component.html + 2 + + + + Add member + Adicionar membro + + src/app/member/members.component.html + 11 + + + + Import members from CSV + Importar membros de CSV + + src/app/member/members.component.html + 19 + + + + No members to show + Nenhum membro a mostrar + + src/app/member/members.component.html + 50 + + + + Member created + Membro criado src/app/shared/pipe/localize.ts 21 + + Member updated successfully + Membro atualizado com sucesso + + src/app/shared/pipe/localize.ts + 23 + + \ No newline at end of file diff --git a/ui/src/i18n/messages.ru.xlf b/ui/src/i18n/messages.ru.xlf index 79c82b318..66776e301 100644 --- a/ui/src/i18n/messages.ru.xlf +++ b/ui/src/i18n/messages.ru.xlf @@ -70,8 +70,10 @@ - Slide of - Slide of + Slide of + + Slide of + Currently selected slide number read by screen reader node_modules/src/ngb-config.ts @@ -287,8 +289,12 @@ - Failed to sign in! Please check your credentials and try again. - Не удалось войти! Проверьте свои учетные данные и повторите попытку. + Failed to + sign in! Please + check your credentials and try again. + Не + удалось войти! + Проверьте свои учетные данные и повторите попытку. src/app/account/login/login.component.html 6 @@ -302,7 +308,8 @@ 10 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 22 @@ -318,7 +325,8 @@ 16 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 28 @@ -386,15 +394,21 @@ Reset your password Сбросить ваш пароль - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 4 - Email address isn't registered! Please check and try again. - Электронный адрес не зарегистрирован!Пожалуйста, проверьте и попробуйте ещё раз - - src/app/account/password/password-reset-init.component.html + Email + address isn't registered! Please check and try again. + Электронный + адрес не зарегистрирован!Пожалуйста, проверьте и попробуйте ещё раз + + + src/app/account/password/password-reset-init.component.html 7 @@ -402,7 +416,8 @@ Enter the email address you used to register. Введите адрес электронной почты, который вы использовали для регистрации - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 11 @@ -410,7 +425,8 @@ Check your emails for details on how to reset your password. На вашу электронную почту были отправлены инструкции по сбросу пароля. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 15 @@ -418,7 +434,8 @@ Your email is required. Ваш адрес электронной почты необходим. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 42 @@ -426,7 +443,8 @@ Your email is invalid. Ваш электронный адрес недействителен. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 49 @@ -434,7 +452,8 @@ Your email is required to be at least 5 characters. Ваш адрес электронной почты должен содержать не менее 5 символов. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 56 @@ -442,7 +461,8 @@ Your email cannot be longer than 100 characters. Адрес вашей эл. почты не может состоять из более чем 50 символов. - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 64 @@ -450,7 +470,8 @@ Reset Сбросить пароль - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 75 @@ -463,8 +484,10 @@ - Settings saved! - Настройки сохранены! + Settings + saved! + Настройки + сохранены! src/app/account/settings/settings.component.html 8 @@ -579,8 +602,12 @@ - Add extra security to your ORCID member portal account by enabling two-factor authentication. Each time you sign in, you'll be prompted to enter a six-digit code we send to your preferred authentication application. - Повысьте безопасность своей учетной записи на портале участника ORCID, включив двухфакторную аутентификацию. Каждый раз, когда вы входите в систему, вам будет нужно ввести шестизначный код, который мы отправим в ваше приложение для аутентификации. + Add extra security to your ORCID member portal account by enabling two-factor + authentication. Each time you sign in, you'll be prompted to enter a six-digit code + we send to your preferred authentication application. + Повысьте безопасность своей учетной записи на портале участника ORCID, + включив двухфакторную аутентификацию. Каждый раз, когда вы входите в систему, вам будет + нужно ввести шестизначный код, который мы отправим в ваше приложение для аутентификации. src/app/account/settings/settings.component.html 146 @@ -603,16 +630,40 @@ - Install a two-factor authentication appA 2FA app is required to create the six-digit code you need to access your account each time you sign in. Most apps are for mobile devices; some are also available as desktop or web-based apps. Download and install your preferred 2FA app, such as Google Authenticator, FreeOTP, or Authy. - Установите приложение двухфакторной аутентификацииДля создания шестизначного кода, необходимого для доступа к аккаунту при каждом входе в него, требуется приложение двухфакторной аутентификации. Большинство приложений предназначены для мобильных устройств; некоторые также доступны в виде настольных или веб-приложений. Загрузите и установите ваше приложение двухфакторной аутентификации, например Google Authenticator, FreeOTP или Authy. + Install a two-factor authentication appA 2FA app is required to create the six-digit code you + need to access your account each time you sign in. Most apps are for mobile devices; some + are also available as desktop or web-based apps. Download and install your preferred 2FA + app, such as Google + Authenticator, + FreeOTP, or Authy. + Установите приложение двухфакторной аутентификацииДля создания шестизначного кода, необходимого + для доступа к аккаунту при каждом входе в него, требуется приложение двухфакторной + аутентификации. Большинство приложений предназначены для мобильных устройств; некоторые + также доступны в виде настольных или веб-приложений. Загрузите и установите ваше + приложение двухфакторной аутентификации, например Google + Authenticator, + FreeOTP или Authy. src/app/account/settings/settings.component.html 166 - Scan this QR code with your deviceOpen your 2FA app and scan the image below. - Отсканируйте этот QR-код на своем устройствеОткройте приложение двухфакторной аутентификации и отсканируйте изображение ниже. + Scan this QR code with your deviceOpen your 2FA app and scan the image below. + Отсканируйте этот QR-код на своем устройствеОткройте приложение двухфакторной + аутентификации и отсканируйте изображение ниже. src/app/account/settings/settings.component.html 174 @@ -643,8 +694,14 @@ - Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, your 2FA app will display a six-digit code. Enter this code in the box below and click Save. - Введите шестизначный код из приложенияПосле сканирования QR-кода или ввода кода из СМС ваше приложение двухфакторной аутентификации покажет шестизначный код. Введите этот код в поле ниже и нажмите "Сохранить". + Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, + your 2FA app will display a six-digit code. Enter this code in the box below and click + Save. + Введите шестизначный код из приложенияПосле сканирования QR-кода или ввода кода из СМС ваше + приложение двухфакторной аутентификации покажет шестизначный код. Введите этот код в поле + ниже и нажмите "Сохранить". src/app/account/settings/settings.component.html 205 @@ -667,7 +724,8 @@ - Make a note of the following backup codes, this is the only time they will be shown. + Make a note of the following backup codes, this is the only time they will be + shown. Запишите следующие резервные коды, они будут показаны только в этот раз. src/app/account/settings/settings.component.html @@ -875,16 +933,22 @@ - Password changed! - Пароль изменен! + Password + changed! + Пароль + изменен! src/app/account/password/password.component.html 7 - An error has occurred! The password could not be changed. - Произошла ошибка! Не удалось изменить пароль. + An error + has occurred! + The password could not be changed. + Произошла + ошибка! Не + удалось изменить пароль. src/app/account/password/password.component.html 10 @@ -894,7 +958,8 @@ The password and its confirmation do not match! Пароль и его подтверждение не совпадают! - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 62 @@ -922,7 +987,8 @@ Your password is required. Ваш пароль необходим. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 91 @@ -938,7 +1004,8 @@ New password Новый пароль - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 70 @@ -950,7 +1017,8 @@ New password Новый пароль - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 77 @@ -962,7 +1030,8 @@ Your password is required to be at least 4 characters. Ваш пароль должен состоять из минимум 4 символов. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 98 @@ -974,7 +1043,8 @@ Your password cannot be longer than 50 characters. Ваш пароль не может состоять из более чем 50 символов. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 105 @@ -986,7 +1056,8 @@ New password confirmation Новый пароль-подтверждение - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 114 @@ -998,7 +1069,8 @@ Confirm the new password Подтвердить новый пароль - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 121 @@ -1010,7 +1082,8 @@ Your password confirmation is required. Необходимо подтверждение пароля. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 135 @@ -1022,7 +1095,8 @@ Your password confirmation is required to be at least 4 characters. Ваш пароль-подтверждение должен состоять из минимум 4 символов. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 142 @@ -1034,7 +1108,8 @@ Your password confirmation cannot be longer than 50 characters. Ваш пароль-подтверждение не может состоять из более чем 50 символов. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 149 @@ -1062,55 +1137,80 @@ Reset password Сбросить пароль - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 4 - The activation key is missing. - Отсутствует ключ активации. - - src/app/account/password/password-reset-finish.component.html + The + activation key is missing. + Отсутствует + ключ активации. + + + src/app/account/password/password-reset-finish.component.html 7 - This activation key is invalid. - Ключ активации недействителен. - - src/app/account/password/password-reset-finish.component.html + This + activation key is invalid. + Ключ + активации недействителен. + + + src/app/account/password/password-reset-finish.component.html 11 - This activation has expired. - Срок действия ключа активации истек. - - src/app/account/password/password-reset-finish.component.html + This + activation has expired. + Срок + действия ключа активации истек. + + + src/app/account/password/password-reset-finish.component.html 15 - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It looks like this + link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It + looks like this link has expired. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 20 - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a new + activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a + new activation link to your registered email address. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 26 - If you are still having problems activating your account or have not received your new activation link please contact our support team please contact us at membership@orcid.org. - If you are still having problems activating your account or have not received your new activation link, please contact us at membership@orcid.org. - - src/app/account/password/password-reset-finish.component.html + If you are still having problems activating your account or have not received your + new activation link please contact our support team please contact us at + membership@orcid.org. + If you are still having problems activating your account or have not + received your new activation link, please contact us at membership@orcid.org. + + + src/app/account/password/password-reset-finish.component.html 32 @@ -1118,23 +1218,32 @@ Choose a new password Выберите новый пароль - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 39 - Your password couldn't be reset. Remember a password request is only valid for 24 hours. - Ваш пароль не может быть сброшен. Помните, что запрос пароля действителен только в течение 24 часов. + Your password couldn't be reset. Remember a password request is only valid for + 24 hours. + Ваш пароль не может быть сброшен. Помните, что запрос пароля + действителен только в течение 24 часов. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 43 - Your password has been reset. Please - Ваш пароль сброшен. Пожалуйста, - - src/app/account/password/password-reset-finish.component.html + Your + password has been reset. Please + Ваш + пароль сброшен. + Пожалуйста, + + + src/app/account/password/password-reset-finish.component.html 50 @@ -1142,7 +1251,8 @@ sign in войти - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 58 @@ -1150,7 +1260,8 @@ Reset Password Подтвердить новый пароль - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 159 @@ -1182,7 +1293,8 @@ Password strength: Надежность пароля: - src/app/account/password/password-strength.component.html + + src/app/account/password/password-strength.component.html 2 @@ -1365,6 +1477,14 @@ src/app/affiliation/affiliation-detail.component.html 143 + + src/app/member/member-detail.component.html + 47 + + + src/app/member/member-detail.component.html + 51 + src/app/user/user-detail.component.html 81 @@ -1393,6 +1513,10 @@ src/app/affiliation/affiliation-detail.component.html 230 + + src/app/member/member-detail.component.html + 61 + src/app/user/user-detail.component.html 95 @@ -1409,6 +1533,14 @@ src/app/affiliation/affiliations.component.html 220 + + src/app/member/member-detail.component.html + 66 + + + src/app/member/members.component.html + 151 + src/app/user/user-detail.component.html 103 @@ -1450,17 +1582,23 @@ 17 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 34 src/app/affiliation/affiliation-update.component.html - 465 + 453 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 20 + + src/app/member/member-update.component.html + 186 + src/app/user/user-delete.component.html 14 @@ -1479,7 +1617,11 @@ Сохранить src/app/affiliation/affiliation-update.component.html - 468 + 456 + + + src/app/member/member-update.component.html + 189 src/app/user/user-update.component.html @@ -1521,6 +1663,10 @@ src/app/affiliation/affiliations.component.html 104 + + src/app/member/members.component.html + 32 + src/app/user/users.component.html 32 @@ -1555,20 +1701,32 @@ - Showing - of items. - Показаны - из элементов. + Showing - + of items. + Показаны - из элементов. src/app/affiliation/affiliations.component.ts - 228 + 227 + + + src/app/member/members.component.ts + 160 src/app/user/users.component.ts 230 - - Are you sure you want to transfer ownership? You are about to transfer ownership of this organization account. If you are the organization owner after transferring ownership, you will no longer have access to administrative functions, such as managing users. - Вы уверены, что хотите передать право собственности? Вы собираетесь передать право собственности на аккаунт этой организации. Если вы будете владельцем организации после передачи права собственности, у вас больше не будет доступа к административным функциям, таким как управление пользователями. + + Are you sure you want to transfer ownership? You are about to transfer ownership of + this organization account. If you are the organization owner after transferring ownership, + you will no longer have access to administrative functions, such as managing users. + Вы уверены, что хотите передать право собственности? Вы собираетесь + передать право собственности на аккаунт этой организации. Если вы будете владельцем + организации после передачи права собственности, у вас больше не будет доступа к + административным функциям, таким как управление пользователями. src/app/user/user-update.component.ts 215 @@ -1592,10 +1750,11 @@ Are you sure you want to delete user ? - Вы уверены, что хотите удалить пользователя ? + Вы уверены, что хотите удалить пользователя ? src/app/user/user-delete.component.ts - 47 + 44 @@ -1627,8 +1786,10 @@ - Oops! There was a problem processing your data. Pleases fix the errors below and try again - Ой! При обработке ваших данных возникла проблема. Пожалуйста, исправьте ошибки ниже и повторите попытку + Oops! There was a problem processing your data. Pleases fix the errors below and + try again + Ой! При обработке ваших данных возникла проблема. Пожалуйста, исправьте + ошибки ниже и повторите попытку src/app/user/user-import-dialog.component.html 16 @@ -1654,7 +1815,8 @@ Upload Загрузить - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 37 @@ -1679,7 +1841,8 @@ 2 - + Send permission notifications Отправить уведомления о разрешении @@ -1687,7 +1850,8 @@ 11 - + Request permission links Запросить ссылки для доступа @@ -1695,7 +1859,8 @@ 21 - + Request affiliation status report Запросить отчет о статусе доступа @@ -1703,7 +1868,9 @@ 31 - + Request affiliations for edit Запросить статус доступа к редактированию @@ -1727,25 +1894,37 @@ 61 - - Your affiliations for edit file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Файл со статусом доступа к редактированию будет отправлен Вам в ближайшее время. Если Вы не получили свой файл, свяжитесь с нами по адресу membership@orcid.org. + + Your affiliations for edit file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + Файл со статусом доступа к редактированию будет отправлен Вам в + ближайшее время. Если Вы не получили свой файл, свяжитесь с нами по адресу + membership@orcid.org. src/app/affiliation/affiliations.component.html 73 - - Your affiliation status report file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Файл с отчетом о статусе доступа будет отправлен Вам в ближайшее время. Если Вы не получили свой файл, свяжитесь с нами по адресу membership@orcid.org. + + Your affiliation status report file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. + Файл с отчетом о статусе доступа будет отправлен Вам в ближайшее время. + Если Вы не получили свой файл, свяжитесь с нами по адресу membership@orcid.org. src/app/affiliation/affiliations.component.html 82 - - Your permission links file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. - Файл со ссылками для доступа будет отправлен Вам в ближайшее время. Если Вы не получили свой файл, свяжитесь с нами по адресу membership@orcid.org. + + Your permission links file will be mailed to you shortly. If you do not receive + your file then please contact us at membership@orcid.org. + Файл со ссылками для доступа будет отправлен Вам в ближайшее время. Если + Вы не получили свой файл, свяжитесь с нами по адресу membership@orcid.org. src/app/affiliation/affiliations.component.html 91 @@ -1823,7 +2002,9 @@ 150 - + @@ -1855,9 +2036,13 @@ 190 - - For help troubleshooting, please contact the Member Portal Team and copy/paste or include a screenshot of the error message below. - Если вам требуется помощь в устранении этой ошибки, обратитесь к руководителю вашего консорциума либо напишите по адресу membership@orcid.org. Приложите снимок экрана с сообщением об ошибке ниже. + + For help troubleshooting, please contact the Member Portal Team and copy/paste or + include a screenshot of the error message below. + Если вам требуется помощь в устранении этой ошибки, обратитесь к + руководителю вашего консорциума либо напишите по адресу membership@orcid.org. Приложите + снимок экрана с сообщением об ошибке ниже. src/app/affiliation/affiliations.component.html 203 @@ -1868,7 +2053,7 @@ Пользователь ограничил доступ src/app/shared/pipe/localize.ts - 34 + 38 @@ -1876,7 +2061,7 @@ Ожидает src/app/shared/pipe/localize.ts - 36 + 40 @@ -1884,7 +2069,7 @@ В ORCID src/app/shared/pipe/localize.ts - 38 + 42 @@ -1892,7 +2077,7 @@ Пользователь предоставил доступ src/app/shared/pipe/localize.ts - 40 + 44 @@ -1900,7 +2085,7 @@ User deleted from ORCID src/app/shared/pipe/localize.ts - 42 + 46 @@ -1908,7 +2093,7 @@ Пользователь отменил доступ src/app/shared/pipe/localize.ts - 44 + 48 @@ -1916,7 +2101,7 @@ Ошибка при добавлении в ORCID src/app/shared/pipe/localize.ts - 46 + 50 @@ -1924,7 +2109,7 @@ Ошибка при обновлении в ORCID src/app/shared/pipe/localize.ts - 48 + 52 @@ -1932,7 +2117,7 @@ Ожидает отправки в ORCID src/app/shared/pipe/localize.ts - 50 + 54 @@ -1940,7 +2125,7 @@ Ошибка при удалении из ORCID src/app/shared/pipe/localize.ts - 52 + 56 @@ -1948,7 +2133,7 @@ Уведомление запрошено src/app/shared/pipe/localize.ts - 54 + 58 @@ -1956,7 +2141,7 @@ Уведомление отправлено src/app/shared/pipe/localize.ts - 56 + 60 @@ -1964,7 +2149,7 @@ Ошибка при отправке уведомления src/app/shared/pipe/localize.ts - 58 + 62 @@ -1972,7 +2157,7 @@ Ожидает обновления в ORCID src/app/shared/pipe/localize.ts - 60 + 64 @@ -2007,7 +2192,8 @@ 36 - + Affiliation Section Тип принадлежности @@ -2048,7 +2234,7 @@ src/app/affiliation/affiliation-update.component.html - 265 + 261 @@ -2060,7 +2246,7 @@ src/app/affiliation/affiliation-update.component.html - 285 + 277 @@ -2088,7 +2274,7 @@ src/app/affiliation/affiliation-update.component.html - 426 + 414 @@ -2131,7 +2317,8 @@ 145 - + Notification First Sent Первое отправленное уведомление @@ -2143,7 +2330,8 @@ 175 - + Notification Last Sent Последнее отправленное уведомление @@ -2167,15 +2355,20 @@ Import affiliations from CSV Импортировать принадлежности - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 3 - - Your CSV has been uploaded for processing. We will let you know via email once the file has been processed. - Ваш файл CSV загружен для обработки. Мы сообщим по электронной почте, как только файл будет обработан. + + Your CSV has been uploaded for processing. We will let you know via email once the + file has been processed. + Ваш файл CSV загружен для обработки. Мы сообщим по электронной почте, + как только файл будет обработан. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 10 @@ -2183,7 +2376,8 @@ There was a problem uploading your CSV for processing. При загрузке вашего CSV-файла для обработки возникла проблема. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 17 @@ -2191,7 +2385,8 @@ Please select the CSV file to upload Выберите CSV-файл для загрузки - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 20 @@ -2199,15 +2394,19 @@ File Path Путь к файлу - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 22 - Please do not forget to download and send permission links to your researchers once the upload has completed. - Примечание: после завершения загрузки не забудьте загрузить и отправить своим исследователям ссылки с разрешениями. + Please do not forget to download and send permission links to your researchers once + the upload has completed. + Примечание: после завершения загрузки не забудьте загрузить и отправить + своим исследователям ссылки с разрешениями. - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 26 @@ -2215,7 +2414,8 @@ Close Закрыть - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 40 @@ -2223,7 +2423,8 @@ There is no file to upload. Please select one. Нет файла для загрузки. Пожалуйста, выберите. - src/app/affiliation/affiliation-import-dialog.component.ts + + src/app/affiliation/affiliation-import-dialog.component.ts 60 @@ -2232,7 +2433,7 @@ ОБРАЗОВАНИЕ src/app/shared/pipe/localize.ts - 65 + 69 @@ -2240,7 +2441,7 @@ ТРУДОУСТРОЙСТВО src/app/shared/pipe/localize.ts - 67 + 71 @@ -2248,7 +2449,7 @@ РАЗЛИЧИЕ src/app/shared/pipe/localize.ts - 69 + 73 @@ -2256,7 +2457,7 @@ ПОЗИЦИЯ_ПРИГЛАШЕННОГО src/app/shared/pipe/localize.ts - 71 + 75 @@ -2264,7 +2465,7 @@ КВАЛИФИКАЦИЯ src/app/shared/pipe/localize.ts - 73 + 77 @@ -2272,7 +2473,7 @@ СЕРВИС src/app/shared/pipe/localize.ts - 75 + 79 @@ -2280,7 +2481,7 @@ ЧЛЕНСТВО src/app/shared/pipe/localize.ts - 77 + 81 @@ -2288,7 +2489,7 @@ Январь src/app/shared/pipe/localize.ts - 82 + 86 @@ -2296,7 +2497,7 @@ Февраль src/app/shared/pipe/localize.ts - 84 + 88 @@ -2304,7 +2505,7 @@ Март src/app/shared/pipe/localize.ts - 86 + 90 @@ -2312,7 +2513,7 @@ Апрель src/app/shared/pipe/localize.ts - 88 + 92 @@ -2320,7 +2521,7 @@ Май src/app/shared/pipe/localize.ts - 90 + 94 @@ -2328,7 +2529,7 @@ Июнь src/app/shared/pipe/localize.ts - 92 + 96 @@ -2336,7 +2537,7 @@ Июль src/app/shared/pipe/localize.ts - 94 + 98 @@ -2344,7 +2545,7 @@ Август src/app/shared/pipe/localize.ts - 96 + 100 @@ -2352,7 +2553,7 @@ Сентябрь src/app/shared/pipe/localize.ts - 98 + 102 @@ -2360,7 +2561,7 @@ Октябрь src/app/shared/pipe/localize.ts - 100 + 104 @@ -2368,7 +2569,7 @@ Ноябрь src/app/shared/pipe/localize.ts - 102 + 106 @@ -2376,7 +2577,7 @@ Декабрь src/app/shared/pipe/localize.ts - 104 + 108 @@ -2384,7 +2585,7 @@ Андорра src/app/shared/pipe/localize.ts - 109 + 113 @@ -2392,7 +2593,7 @@ Объединенные Арабские Эмираты src/app/shared/pipe/localize.ts - 111 + 115 @@ -2400,7 +2601,7 @@ Афганистан src/app/shared/pipe/localize.ts - 113 + 117 @@ -2408,7 +2609,7 @@ Антигуа и Барбуда src/app/shared/pipe/localize.ts - 115 + 119 @@ -2416,7 +2617,7 @@ Ангилья src/app/shared/pipe/localize.ts - 117 + 121 @@ -2424,7 +2625,7 @@ Албания src/app/shared/pipe/localize.ts - 119 + 123 @@ -2432,7 +2633,7 @@ Армения src/app/shared/pipe/localize.ts - 121 + 125 @@ -2440,7 +2641,7 @@ Ангола src/app/shared/pipe/localize.ts - 123 + 127 @@ -2448,7 +2649,7 @@ Антарктида src/app/shared/pipe/localize.ts - 125 + 129 @@ -2456,7 +2657,7 @@ Аргентина src/app/shared/pipe/localize.ts - 127 + 131 @@ -2464,7 +2665,7 @@ Американское Самоа src/app/shared/pipe/localize.ts - 129 + 133 @@ -2472,7 +2673,7 @@ Австрия src/app/shared/pipe/localize.ts - 131 + 135 @@ -2480,7 +2681,7 @@ Австралия src/app/shared/pipe/localize.ts - 133 + 137 @@ -2488,7 +2689,7 @@ Аруба src/app/shared/pipe/localize.ts - 135 + 139 @@ -2496,7 +2697,7 @@ Аландские острова src/app/shared/pipe/localize.ts - 137 + 141 @@ -2504,7 +2705,7 @@ Азербайджан src/app/shared/pipe/localize.ts - 139 + 143 @@ -2512,7 +2713,7 @@ Босния и Герцеговина src/app/shared/pipe/localize.ts - 141 + 145 @@ -2520,7 +2721,7 @@ Барбадос src/app/shared/pipe/localize.ts - 143 + 147 @@ -2528,7 +2729,7 @@ Бангладеш src/app/shared/pipe/localize.ts - 145 + 149 @@ -2536,7 +2737,7 @@ Бельгия src/app/shared/pipe/localize.ts - 147 + 151 @@ -2544,7 +2745,7 @@ Буркина-Фасо src/app/shared/pipe/localize.ts - 149 + 153 @@ -2552,7 +2753,7 @@ Болгария src/app/shared/pipe/localize.ts - 151 + 155 @@ -2560,7 +2761,7 @@ Бахрейн src/app/shared/pipe/localize.ts - 153 + 157 @@ -2568,7 +2769,7 @@ Бурунди src/app/shared/pipe/localize.ts - 155 + 159 @@ -2576,7 +2777,7 @@ Бенин src/app/shared/pipe/localize.ts - 157 + 161 @@ -2584,7 +2785,7 @@ Сен-Бартелеми src/app/shared/pipe/localize.ts - 159 + 163 @@ -2592,7 +2793,7 @@ Бермудские Острова src/app/shared/pipe/localize.ts - 161 + 165 @@ -2600,7 +2801,7 @@ Бруней src/app/shared/pipe/localize.ts - 163 + 167 @@ -2608,7 +2809,7 @@ Боливия src/app/shared/pipe/localize.ts - 165 + 169 @@ -2616,7 +2817,7 @@ Британская антарктическая территория src/app/shared/pipe/localize.ts - 167 + 171 @@ -2624,7 +2825,7 @@ Бразилия src/app/shared/pipe/localize.ts - 169 + 173 @@ -2632,7 +2833,7 @@ Багамские Острова src/app/shared/pipe/localize.ts - 171 + 175 @@ -2640,7 +2841,7 @@ Бутан src/app/shared/pipe/localize.ts - 173 + 177 @@ -2648,7 +2849,7 @@ Остров Буве src/app/shared/pipe/localize.ts - 175 + 179 @@ -2656,7 +2857,7 @@ Ботсвана src/app/shared/pipe/localize.ts - 177 + 181 @@ -2664,7 +2865,7 @@ Беларусь src/app/shared/pipe/localize.ts - 179 + 183 @@ -2672,7 +2873,7 @@ Белиз src/app/shared/pipe/localize.ts - 181 + 185 @@ -2680,7 +2881,7 @@ Канада src/app/shared/pipe/localize.ts - 183 + 187 @@ -2688,7 +2889,7 @@ Кокосовые Острова (Килинг) src/app/shared/pipe/localize.ts - 185 + 189 @@ -2696,7 +2897,7 @@ Конго — Киншаса src/app/shared/pipe/localize.ts - 187 + 191 @@ -2704,7 +2905,7 @@ Центральноафриканская Республика src/app/shared/pipe/localize.ts - 189 + 193 @@ -2712,7 +2913,7 @@ Конго — Браззавиль src/app/shared/pipe/localize.ts - 191 + 195 @@ -2720,7 +2921,7 @@ Швейцария src/app/shared/pipe/localize.ts - 193 + 197 @@ -2728,7 +2929,7 @@ Кот-д'Ивуар src/app/shared/pipe/localize.ts - 195 + 199 @@ -2736,7 +2937,7 @@ Острова Кука src/app/shared/pipe/localize.ts - 197 + 201 @@ -2744,7 +2945,7 @@ Чили src/app/shared/pipe/localize.ts - 199 + 203 @@ -2752,7 +2953,7 @@ Камерун src/app/shared/pipe/localize.ts - 201 + 205 @@ -2760,7 +2961,7 @@ Китай src/app/shared/pipe/localize.ts - 203 + 207 @@ -2768,7 +2969,7 @@ Колумбия src/app/shared/pipe/localize.ts - 205 + 209 @@ -2776,7 +2977,7 @@ Коста-Рика src/app/shared/pipe/localize.ts - 207 + 211 @@ -2784,7 +2985,7 @@ Куба src/app/shared/pipe/localize.ts - 209 + 213 @@ -2792,7 +2993,7 @@ Кабо-Верде src/app/shared/pipe/localize.ts - 211 + 215 @@ -2800,7 +3001,7 @@ Кюрасау src/app/shared/pipe/localize.ts - 213 + 217 @@ -2808,7 +3009,7 @@ Остров Рождества src/app/shared/pipe/localize.ts - 215 + 219 @@ -2816,7 +3017,7 @@ Кипр src/app/shared/pipe/localize.ts - 217 + 221 @@ -2824,7 +3025,7 @@ Чехия src/app/shared/pipe/localize.ts - 219 + 223 @@ -2832,7 +3033,7 @@ Германия src/app/shared/pipe/localize.ts - 221 + 225 @@ -2840,7 +3041,7 @@ Джибути src/app/shared/pipe/localize.ts - 223 + 227 @@ -2848,7 +3049,7 @@ Дания src/app/shared/pipe/localize.ts - 225 + 229 @@ -2856,7 +3057,7 @@ Доминика src/app/shared/pipe/localize.ts - 227 + 231 @@ -2864,7 +3065,7 @@ Доминиканская Республика src/app/shared/pipe/localize.ts - 229 + 233 @@ -2872,7 +3073,7 @@ Алжир src/app/shared/pipe/localize.ts - 231 + 235 @@ -2880,7 +3081,7 @@ Эквадор src/app/shared/pipe/localize.ts - 233 + 237 @@ -2888,7 +3089,7 @@ Эстония src/app/shared/pipe/localize.ts - 235 + 239 @@ -2896,7 +3097,7 @@ Египет src/app/shared/pipe/localize.ts - 237 + 241 @@ -2904,7 +3105,7 @@ Западная Сахара src/app/shared/pipe/localize.ts - 239 + 243 @@ -2912,7 +3113,7 @@ Эритрея src/app/shared/pipe/localize.ts - 241 + 245 @@ -2920,7 +3121,7 @@ Испания src/app/shared/pipe/localize.ts - 243 + 247 @@ -2928,7 +3129,7 @@ Эфиопия src/app/shared/pipe/localize.ts - 245 + 249 @@ -2936,7 +3137,7 @@ Финляндия src/app/shared/pipe/localize.ts - 247 + 251 @@ -2944,7 +3145,7 @@ Фиджи src/app/shared/pipe/localize.ts - 249 + 253 @@ -2952,7 +3153,7 @@ Фолклендские острова src/app/shared/pipe/localize.ts - 251 + 255 @@ -2960,7 +3161,7 @@ Микронезия src/app/shared/pipe/localize.ts - 253 + 257 @@ -2968,7 +3169,7 @@ Фарерские острова src/app/shared/pipe/localize.ts - 255 + 259 @@ -2976,7 +3177,7 @@ Франция src/app/shared/pipe/localize.ts - 257 + 261 @@ -2984,7 +3185,7 @@ Габон src/app/shared/pipe/localize.ts - 259 + 263 @@ -2992,7 +3193,7 @@ Великобритания src/app/shared/pipe/localize.ts - 261 + 265 @@ -3000,7 +3201,7 @@ Гренада src/app/shared/pipe/localize.ts - 263 + 267 @@ -3008,7 +3209,7 @@ Грузия src/app/shared/pipe/localize.ts - 265 + 269 @@ -3016,7 +3217,7 @@ Французская Гвиана src/app/shared/pipe/localize.ts - 267 + 271 @@ -3024,7 +3225,7 @@ Гернси src/app/shared/pipe/localize.ts - 269 + 273 @@ -3032,7 +3233,7 @@ Гана src/app/shared/pipe/localize.ts - 271 + 275 @@ -3040,7 +3241,7 @@ Гибралтар src/app/shared/pipe/localize.ts - 273 + 277 @@ -3048,7 +3249,7 @@ Гренландия src/app/shared/pipe/localize.ts - 275 + 279 @@ -3056,7 +3257,7 @@ Гамбия src/app/shared/pipe/localize.ts - 277 + 281 @@ -3064,7 +3265,7 @@ Гвинея src/app/shared/pipe/localize.ts - 279 + 283 @@ -3072,7 +3273,7 @@ Гваделупа src/app/shared/pipe/localize.ts - 281 + 285 @@ -3080,7 +3281,7 @@ Экваториальная Гвинея src/app/shared/pipe/localize.ts - 283 + 287 @@ -3088,7 +3289,7 @@ Греция src/app/shared/pipe/localize.ts - 285 + 289 @@ -3096,7 +3297,7 @@ Южная Георгия и Южные Сандвичевы острова src/app/shared/pipe/localize.ts - 287 + 291 @@ -3104,7 +3305,7 @@ Гватемала src/app/shared/pipe/localize.ts - 289 + 293 @@ -3112,7 +3313,7 @@ Гуам src/app/shared/pipe/localize.ts - 291 + 295 @@ -3120,7 +3321,7 @@ Гвинея-Бисау src/app/shared/pipe/localize.ts - 293 + 297 @@ -3128,7 +3329,7 @@ Гайана src/app/shared/pipe/localize.ts - 295 + 299 @@ -3136,7 +3337,7 @@ Гонконг (Специальный административный район Китая) src/app/shared/pipe/localize.ts - 297 + 301 @@ -3144,7 +3345,7 @@ Остров Херд и острова Макдональд src/app/shared/pipe/localize.ts - 299 + 303 @@ -3152,7 +3353,7 @@ Гондурас src/app/shared/pipe/localize.ts - 301 + 305 @@ -3160,7 +3361,7 @@ Хорватия src/app/shared/pipe/localize.ts - 303 + 307 @@ -3168,7 +3369,7 @@ Гаити src/app/shared/pipe/localize.ts - 305 + 309 @@ -3176,7 +3377,7 @@ Венгрия src/app/shared/pipe/localize.ts - 307 + 311 @@ -3184,7 +3385,7 @@ Индонезия src/app/shared/pipe/localize.ts - 309 + 313 @@ -3192,7 +3393,7 @@ Ирландия src/app/shared/pipe/localize.ts - 311 + 315 @@ -3200,7 +3401,7 @@ Израиль src/app/shared/pipe/localize.ts - 313 + 317 @@ -3208,7 +3409,7 @@ Остров Мэн src/app/shared/pipe/localize.ts - 315 + 319 @@ -3216,7 +3417,7 @@ Индия src/app/shared/pipe/localize.ts - 317 + 321 @@ -3224,7 +3425,7 @@ Британская территория в Индийском океане src/app/shared/pipe/localize.ts - 319 + 323 @@ -3232,7 +3433,7 @@ Ирак src/app/shared/pipe/localize.ts - 321 + 325 @@ -3240,7 +3441,7 @@ Иран src/app/shared/pipe/localize.ts - 323 + 327 @@ -3248,7 +3449,7 @@ Исландия src/app/shared/pipe/localize.ts - 325 + 329 @@ -3256,7 +3457,7 @@ Италия src/app/shared/pipe/localize.ts - 327 + 331 @@ -3264,7 +3465,7 @@ Джерси src/app/shared/pipe/localize.ts - 329 + 333 @@ -3272,7 +3473,7 @@ Ямайка src/app/shared/pipe/localize.ts - 331 + 335 @@ -3280,7 +3481,7 @@ Иордания src/app/shared/pipe/localize.ts - 333 + 337 @@ -3288,7 +3489,7 @@ Япония src/app/shared/pipe/localize.ts - 335 + 339 @@ -3296,7 +3497,7 @@ Кения src/app/shared/pipe/localize.ts - 337 + 341 @@ -3304,7 +3505,7 @@ Кыргызстан src/app/shared/pipe/localize.ts - 339 + 343 @@ -3312,7 +3513,7 @@ Камбоджа src/app/shared/pipe/localize.ts - 341 + 345 @@ -3320,7 +3521,7 @@ Кирибати src/app/shared/pipe/localize.ts - 343 + 347 @@ -3328,7 +3529,7 @@ Коморы src/app/shared/pipe/localize.ts - 345 + 349 @@ -3336,7 +3537,7 @@ Сент-Китс и Невис src/app/shared/pipe/localize.ts - 347 + 351 @@ -3344,7 +3545,7 @@ Северная Корея src/app/shared/pipe/localize.ts - 349 + 353 @@ -3352,7 +3553,7 @@ Южная Корея src/app/shared/pipe/localize.ts - 351 + 355 @@ -3360,7 +3561,7 @@ Кувейт src/app/shared/pipe/localize.ts - 353 + 357 @@ -3368,7 +3569,7 @@ Каймановы Острова src/app/shared/pipe/localize.ts - 355 + 359 @@ -3376,7 +3577,7 @@ Казахстан src/app/shared/pipe/localize.ts - 357 + 361 @@ -3384,7 +3585,7 @@ Лаос src/app/shared/pipe/localize.ts - 359 + 363 @@ -3392,7 +3593,7 @@ Ливан src/app/shared/pipe/localize.ts - 361 + 365 @@ -3400,7 +3601,7 @@ Сент-Люсия src/app/shared/pipe/localize.ts - 363 + 367 @@ -3408,7 +3609,7 @@ Лихтенштейн src/app/shared/pipe/localize.ts - 365 + 369 @@ -3416,7 +3617,7 @@ Шри-Ланка src/app/shared/pipe/localize.ts - 367 + 371 @@ -3424,7 +3625,7 @@ Либерия src/app/shared/pipe/localize.ts - 369 + 373 @@ -3432,7 +3633,7 @@ Лесото src/app/shared/pipe/localize.ts - 371 + 375 @@ -3440,7 +3641,7 @@ Литва src/app/shared/pipe/localize.ts - 373 + 377 @@ -3448,7 +3649,7 @@ Люксембург src/app/shared/pipe/localize.ts - 375 + 379 @@ -3456,7 +3657,7 @@ Латвия src/app/shared/pipe/localize.ts - 377 + 381 @@ -3464,7 +3665,7 @@ Ливия src/app/shared/pipe/localize.ts - 379 + 383 @@ -3472,7 +3673,7 @@ Марокко src/app/shared/pipe/localize.ts - 381 + 385 @@ -3480,7 +3681,7 @@ Монако src/app/shared/pipe/localize.ts - 383 + 387 @@ -3488,7 +3689,7 @@ Молдова src/app/shared/pipe/localize.ts - 385 + 389 @@ -3496,7 +3697,7 @@ Черногория src/app/shared/pipe/localize.ts - 387 + 391 @@ -3504,7 +3705,7 @@ Сен-Мартен src/app/shared/pipe/localize.ts - 389 + 393 @@ -3512,7 +3713,7 @@ Мадагаскар src/app/shared/pipe/localize.ts - 391 + 395 @@ -3520,7 +3721,7 @@ Маршалловы Острова src/app/shared/pipe/localize.ts - 393 + 397 @@ -3528,7 +3729,7 @@ Северная Македония src/app/shared/pipe/localize.ts - 395 + 399 @@ -3536,7 +3737,7 @@ Мали src/app/shared/pipe/localize.ts - 397 + 401 @@ -3544,7 +3745,7 @@ Мьянма (Бирма) src/app/shared/pipe/localize.ts - 399 + 403 @@ -3552,7 +3753,7 @@ Монголия src/app/shared/pipe/localize.ts - 401 + 405 @@ -3560,7 +3761,7 @@ Макао (Специальный административный район Китая) src/app/shared/pipe/localize.ts - 403 + 407 @@ -3568,7 +3769,7 @@ Северные Марианские Острова src/app/shared/pipe/localize.ts - 405 + 409 @@ -3576,7 +3777,7 @@ Мартиника src/app/shared/pipe/localize.ts - 407 + 411 @@ -3584,7 +3785,7 @@ Мавритания src/app/shared/pipe/localize.ts - 409 + 413 @@ -3592,7 +3793,7 @@ Монсеррат src/app/shared/pipe/localize.ts - 411 + 415 @@ -3600,7 +3801,7 @@ Мальта src/app/shared/pipe/localize.ts - 413 + 417 @@ -3608,7 +3809,7 @@ Маврикий src/app/shared/pipe/localize.ts - 415 + 419 @@ -3616,7 +3817,7 @@ Мальдивы src/app/shared/pipe/localize.ts - 417 + 421 @@ -3624,7 +3825,7 @@ Малави src/app/shared/pipe/localize.ts - 419 + 423 @@ -3632,7 +3833,7 @@ Мексика src/app/shared/pipe/localize.ts - 421 + 425 @@ -3640,7 +3841,7 @@ Малайзия src/app/shared/pipe/localize.ts - 423 + 427 @@ -3648,7 +3849,7 @@ Мозамбик src/app/shared/pipe/localize.ts - 425 + 429 @@ -3656,7 +3857,7 @@ Намибия src/app/shared/pipe/localize.ts - 427 + 431 @@ -3664,7 +3865,7 @@ Новая Каледония src/app/shared/pipe/localize.ts - 429 + 433 @@ -3672,7 +3873,7 @@ Нигер src/app/shared/pipe/localize.ts - 431 + 435 @@ -3680,7 +3881,7 @@ Остров Норфолк src/app/shared/pipe/localize.ts - 433 + 437 @@ -3688,7 +3889,7 @@ Нигерия src/app/shared/pipe/localize.ts - 435 + 439 @@ -3696,7 +3897,7 @@ Никарагуа src/app/shared/pipe/localize.ts - 437 + 441 @@ -3704,7 +3905,7 @@ Нидерланды src/app/shared/pipe/localize.ts - 439 + 443 @@ -3712,7 +3913,7 @@ Норвегия src/app/shared/pipe/localize.ts - 441 + 445 @@ -3720,7 +3921,7 @@ Непал src/app/shared/pipe/localize.ts - 443 + 447 @@ -3728,7 +3929,7 @@ Науру src/app/shared/pipe/localize.ts - 445 + 449 @@ -3736,7 +3937,7 @@ Ниуэ src/app/shared/pipe/localize.ts - 447 + 451 @@ -3744,7 +3945,7 @@ Новая Зеландия src/app/shared/pipe/localize.ts - 449 + 453 @@ -3752,7 +3953,7 @@ Оман src/app/shared/pipe/localize.ts - 451 + 455 @@ -3760,7 +3961,7 @@ Панама src/app/shared/pipe/localize.ts - 453 + 457 @@ -3768,7 +3969,7 @@ Перу src/app/shared/pipe/localize.ts - 455 + 459 @@ -3776,7 +3977,7 @@ Французская Полинезия src/app/shared/pipe/localize.ts - 457 + 461 @@ -3784,7 +3985,7 @@ Папуа — Новая Гвинея src/app/shared/pipe/localize.ts - 459 + 463 @@ -3792,7 +3993,7 @@ Филиппины src/app/shared/pipe/localize.ts - 461 + 465 @@ -3800,7 +4001,7 @@ Пакистан src/app/shared/pipe/localize.ts - 463 + 467 @@ -3808,7 +4009,7 @@ Польша src/app/shared/pipe/localize.ts - 465 + 469 @@ -3816,7 +4017,7 @@ Сен-Пьер и Микелон src/app/shared/pipe/localize.ts - 467 + 471 @@ -3824,7 +4025,7 @@ Острова Питкэрн src/app/shared/pipe/localize.ts - 469 + 473 @@ -3832,7 +4033,7 @@ Пуэрто-Рико src/app/shared/pipe/localize.ts - 471 + 475 @@ -3840,7 +4041,7 @@ Палестинские территории src/app/shared/pipe/localize.ts - 473 + 477 @@ -3848,7 +4049,7 @@ Португалия src/app/shared/pipe/localize.ts - 475 + 479 @@ -3856,7 +4057,7 @@ Палау src/app/shared/pipe/localize.ts - 477 + 481 @@ -3864,7 +4065,7 @@ Парагвай src/app/shared/pipe/localize.ts - 479 + 483 @@ -3872,7 +4073,7 @@ Катар src/app/shared/pipe/localize.ts - 481 + 485 @@ -3880,7 +4081,7 @@ Реюньон src/app/shared/pipe/localize.ts - 483 + 487 @@ -3888,7 +4089,7 @@ Румыния src/app/shared/pipe/localize.ts - 485 + 489 @@ -3896,7 +4097,7 @@ Сербия src/app/shared/pipe/localize.ts - 487 + 491 @@ -3904,7 +4105,7 @@ Россия src/app/shared/pipe/localize.ts - 489 + 493 @@ -3912,7 +4113,7 @@ Руанда src/app/shared/pipe/localize.ts - 491 + 495 @@ -3920,7 +4121,7 @@ Саудовская Аравия src/app/shared/pipe/localize.ts - 493 + 497 @@ -3928,7 +4129,7 @@ Соломоновы Острова src/app/shared/pipe/localize.ts - 495 + 499 @@ -3936,7 +4137,7 @@ Сейшельские Острова src/app/shared/pipe/localize.ts - 497 + 501 @@ -3944,7 +4145,7 @@ Судан src/app/shared/pipe/localize.ts - 499 + 503 @@ -3952,7 +4153,7 @@ Швеция src/app/shared/pipe/localize.ts - 501 + 505 @@ -3960,7 +4161,7 @@ Сингапур src/app/shared/pipe/localize.ts - 503 + 507 @@ -3968,7 +4169,7 @@ Остров Святой Елены src/app/shared/pipe/localize.ts - 505 + 509 @@ -3976,7 +4177,7 @@ Словения src/app/shared/pipe/localize.ts - 507 + 511 @@ -3984,7 +4185,7 @@ Шпицберген и Ян-Майен src/app/shared/pipe/localize.ts - 509 + 513 @@ -3992,7 +4193,7 @@ Словакия src/app/shared/pipe/localize.ts - 511 + 515 @@ -4000,7 +4201,7 @@ Сьерра-Леоне src/app/shared/pipe/localize.ts - 513 + 517 @@ -4008,7 +4209,7 @@ Сан-Марино src/app/shared/pipe/localize.ts - 515 + 519 @@ -4016,7 +4217,7 @@ Сенегал src/app/shared/pipe/localize.ts - 517 + 521 @@ -4024,7 +4225,7 @@ Сомали src/app/shared/pipe/localize.ts - 519 + 523 @@ -4032,7 +4233,7 @@ Суринам src/app/shared/pipe/localize.ts - 521 + 525 @@ -4040,7 +4241,7 @@ Южный Судан src/app/shared/pipe/localize.ts - 523 + 527 @@ -4048,7 +4249,7 @@ Сан-Томе и Принсипи src/app/shared/pipe/localize.ts - 525 + 529 @@ -4056,7 +4257,7 @@ Сальвадор src/app/shared/pipe/localize.ts - 527 + 531 @@ -4064,7 +4265,7 @@ Синт-Мартен src/app/shared/pipe/localize.ts - 529 + 533 @@ -4072,7 +4273,7 @@ Сирия src/app/shared/pipe/localize.ts - 531 + 535 @@ -4080,7 +4281,7 @@ Эсватини src/app/shared/pipe/localize.ts - 533 + 537 @@ -4088,7 +4289,7 @@ Острова Теркс и Кайкос src/app/shared/pipe/localize.ts - 535 + 539 @@ -4096,7 +4297,7 @@ Чад src/app/shared/pipe/localize.ts - 537 + 541 @@ -4104,7 +4305,7 @@ Французские Южные и Антарктические Территории src/app/shared/pipe/localize.ts - 539 + 543 @@ -4112,7 +4313,7 @@ Того src/app/shared/pipe/localize.ts - 541 + 545 @@ -4120,7 +4321,7 @@ Таиланд src/app/shared/pipe/localize.ts - 543 + 547 @@ -4128,7 +4329,7 @@ Таджикистан src/app/shared/pipe/localize.ts - 545 + 549 @@ -4136,7 +4337,7 @@ Токелау src/app/shared/pipe/localize.ts - 547 + 551 @@ -4144,7 +4345,7 @@ Восточный Тимор src/app/shared/pipe/localize.ts - 549 + 553 @@ -4152,7 +4353,7 @@ Туркменистан src/app/shared/pipe/localize.ts - 551 + 555 @@ -4160,7 +4361,7 @@ Тунис src/app/shared/pipe/localize.ts - 553 + 557 @@ -4168,7 +4369,7 @@ Тонга src/app/shared/pipe/localize.ts - 555 + 559 @@ -4176,7 +4377,7 @@ Турция src/app/shared/pipe/localize.ts - 557 + 561 @@ -4184,7 +4385,7 @@ Тринидад и Тобаго src/app/shared/pipe/localize.ts - 559 + 563 @@ -4192,7 +4393,7 @@ Тувалу src/app/shared/pipe/localize.ts - 561 + 565 @@ -4200,7 +4401,7 @@ Тайвань src/app/shared/pipe/localize.ts - 563 + 567 @@ -4208,7 +4409,7 @@ Танзания src/app/shared/pipe/localize.ts - 565 + 569 @@ -4216,7 +4417,7 @@ Украина src/app/shared/pipe/localize.ts - 567 + 571 @@ -4224,7 +4425,7 @@ Уганда src/app/shared/pipe/localize.ts - 569 + 573 @@ -4232,7 +4433,7 @@ Внешние малые острова США src/app/shared/pipe/localize.ts - 571 + 575 @@ -4240,7 +4441,7 @@ США src/app/shared/pipe/localize.ts - 573 + 577 @@ -4248,7 +4449,7 @@ Уругвай src/app/shared/pipe/localize.ts - 575 + 579 @@ -4256,7 +4457,7 @@ Узбекистан src/app/shared/pipe/localize.ts - 577 + 581 @@ -4264,7 +4465,7 @@ Ватикан src/app/shared/pipe/localize.ts - 579 + 583 @@ -4272,7 +4473,7 @@ Сент-Винсент и Гренадины src/app/shared/pipe/localize.ts - 581 + 585 @@ -4280,7 +4481,7 @@ Венесуэла src/app/shared/pipe/localize.ts - 583 + 587 @@ -4288,7 +4489,7 @@ Виргинские Острова (Великобритания) src/app/shared/pipe/localize.ts - 585 + 589 @@ -4296,7 +4497,7 @@ Виргинские Острова (США) src/app/shared/pipe/localize.ts - 587 + 591 @@ -4304,7 +4505,7 @@ Вьетнам src/app/shared/pipe/localize.ts - 589 + 593 @@ -4312,7 +4513,7 @@ Вануату src/app/shared/pipe/localize.ts - 591 + 595 @@ -4320,7 +4521,7 @@ Уоллис и Футуна src/app/shared/pipe/localize.ts - 593 + 597 @@ -4328,7 +4529,7 @@ Самоа src/app/shared/pipe/localize.ts - 595 + 599 @@ -4336,7 +4537,7 @@ Kosovo src/app/shared/pipe/localize.ts - 597 + 601 @@ -4344,7 +4545,7 @@ Йемен src/app/shared/pipe/localize.ts - 599 + 603 @@ -4352,7 +4553,7 @@ Майотта src/app/shared/pipe/localize.ts - 601 + 605 @@ -4360,7 +4561,7 @@ Южная Африка src/app/shared/pipe/localize.ts - 603 + 607 @@ -4368,7 +4569,7 @@ Замбия src/app/shared/pipe/localize.ts - 605 + 609 @@ -4376,10 +4577,11 @@ Зимбабве src/app/shared/pipe/localize.ts - 607 + 611 - + Add or edit affiliation Добавить или редактировать принадлежность @@ -4389,7 +4591,7 @@ This field should follow pattern for "Email". - Это поле должно следовать шаблону для {{ pattern }}. + Это поле должно следовать шаблону для Email. src/app/affiliation/affiliation-update.component.html 25 @@ -4426,9 +4628,21 @@ src/app/affiliation/affiliation-update.component.html 188 + + src/app/member/member-update.component.html + 61 + + + src/app/member/member-update.component.html + 105 + + + src/app/member/member-update.component.html + 140 + - Org Name + Organization Name Название организации src/app/affiliation/affiliation-update.component.html @@ -4436,7 +4650,7 @@ - Org City + City Город src/app/affiliation/affiliation-update.component.html @@ -4444,7 +4658,7 @@ - Org Region + State/Region Штат/регион src/app/affiliation/affiliation-update.component.html @@ -4452,23 +4666,25 @@ - Org Country + Country Страна src/app/affiliation/affiliation-update.component.html 141 - - Disambiguation Source + + Organization ID Source Источник идентификатора организации src/app/affiliation/affiliation-update.component.html 170 - - Disambiguated Org Id + + Organization ID ID организации src/app/affiliation/affiliation-update.component.html @@ -4476,27 +4692,30 @@ - This field is required. GRID Organization ID should start with "grid.", RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with 0 - Это поле обязательно к заполнению. GRID Идентификатор организации должен начинаться с grid. например, grid.12344 или должен быть действительным URL-адресом grid, RINGGOLD Идентификатор организации должен быть номером. ROR Идентификаторы должны содержать 9 символов и начинаться с 0. + This field is required. GRID Organization ID should start with "grid.", + RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with + 0 + Это поле обязательно к заполнению. GRID Идентификатор организации должен + начинаться с grid. например, grid.12344 или должен быть действительным URL-адресом grid, + RINGGOLD Идентификатор организации должен быть номером. ROR Идентификаторы должны + содержать 9 символов и начинаться с 0. src/app/affiliation/affiliation-update.component.html 223 - This field cannot be longer than 4000 characters. - Это поле не может состоять из более чем {{ max }} символов. - - src/app/affiliation/affiliation-update.component.html - 255 - + This field cannot be longer than + characters. + Это поле не может состоять из более чем символов. - src/app/affiliation/affiliation-update.component.html - 278 + src/app/affiliation/affiliation-update.component.ts + 195 - src/app/affiliation/affiliation-update.component.html - 293 + src/app/affiliation/affiliation-update.component.ts + 197 @@ -4504,7 +4723,7 @@ Год начала src/app/affiliation/affiliation-update.component.html - 305 + 293 @@ -4512,11 +4731,11 @@ Год src/app/affiliation/affiliation-update.component.html - 314 + 302 src/app/affiliation/affiliation-update.component.html - 364 + 352 @@ -4524,7 +4743,7 @@ Начать месяц src/app/affiliation/affiliation-update.component.html - 323 + 311 @@ -4532,11 +4751,11 @@ Месяц src/app/affiliation/affiliation-update.component.html - 332 + 320 src/app/affiliation/affiliation-update.component.html - 382 + 370 @@ -4544,7 +4763,7 @@ День начала src/app/affiliation/affiliation-update.component.html - 341 + 329 @@ -4552,11 +4771,11 @@ День src/app/affiliation/affiliation-update.component.html - 344 + 332 src/app/affiliation/affiliation-update.component.html - 394 + 382 @@ -4564,7 +4783,7 @@ Год окончания src/app/affiliation/affiliation-update.component.html - 355 + 343 @@ -4572,7 +4791,7 @@ Месяц окончания src/app/affiliation/affiliation-update.component.html - 373 + 361 @@ -4580,7 +4799,7 @@ День окончания src/app/affiliation/affiliation-update.component.html - 391 + 379 @@ -4588,7 +4807,7 @@ Дата начала не может быть позднее даты окончания. src/app/affiliation/affiliation-update.component.html - 400 + 388 @@ -4596,7 +4815,7 @@ Тип внешнего ID src/app/affiliation/affiliation-update.component.html - 411 + 399 @@ -4604,15 +4823,17 @@ URL внешнего идентификатора src/app/affiliation/affiliation-update.component.html - 441 + 429 - Please do not forget to download and send permission links to your researcher once the assertion has been saved. - Примечание: не забудьте загрузить и отправить ссылки разрешений вашему исследователю после сохранения утверждения. + Please do not forget to download and send permission links to your researcher once + the assertion has been saved. + Примечание: не забудьте загрузить и отправить ссылки разрешений вашему + исследователю после сохранения утверждения. src/app/affiliation/affiliation-update.component.html - 457 + 445 @@ -4623,9 +4844,14 @@ 8 - - Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the portal and the user's ORCID record - Удалить эту аффилиацию для ? Она будет удалена из портала и профиля ORCID пользователя. + + Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the + portal and the user's ORCID record + Удалить эту аффилиацию для ? Она будет удалена из портала и профиля ORCID + пользователя. src/app/affiliation/affiliation-delete.component.ts 40 @@ -4636,7 +4862,7 @@ Аффилиация создана src/app/shared/pipe/localize.ts - 23 + 27 @@ -4644,7 +4870,7 @@ Аффилиация обновлена src/app/shared/pipe/localize.ts - 25 + 29 @@ -4652,7 +4878,7 @@ Аффилиация удалена src/app/shared/pipe/localize.ts - 27 + 31 @@ -4660,65 +4886,395 @@ Возникла проблема при удалении присоединения src/app/shared/pipe/localize.ts - 29 + 33 - + Send permission notifications Отправить уведомления о разрешении - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 3 - - A request to send notifications to your users is already in progress. Please try again later. - Запрос об отправке уведомлений пользователям уже обрабатывается. Повторите попытку позже. + + A request to send notifications to your users is already in progress. Please try + again later. + Запрос об отправке уведомлений пользователям уже обрабатывается. + Повторите попытку позже. - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 7 - - Are you sure that you would like ORCID to send permission links to your researchers for the affiliations that are pending? - Уведомления о разрешении будут отправлены всем вашим научным сотрудникам со статусом аффилиации «Ожидает». + + Are you sure that you would like ORCID to send permission links to your researchers + for the affiliations that are pending? + Уведомления о разрешении будут отправлены всем вашим научным сотрудникам + со статусом аффилиации «Ожидает». - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 10 - + Notification language Язык уведомлений - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 11 - + What language should the notification be sent in? На каком языке отправлять уведомления? - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 12 - + Send notifications Отправлять уведомления - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 23 - - Notification process has now started. We will email you as soon as the process has completed. - Отправка уведомлений началась. Мы сообщим вам об окончании этого процесса по электронной почте. + + Notification process has now started. We will email you as soon as the process has + completed. + Отправка уведомлений началась. Мы сообщим вам об окончании этого + процесса по электронной почте. + + src/app/shared/pipe/localize.ts + 25 + + + + You have already granted + Вы уже предоставили + + src/app/landing-page/landing-page.component.html + 13 + + + + permission to update your ORCID record + разрешение на обновление вашей записи в ORCID + + src/app/landing-page/landing-page.component.html + 16 + + + + Oops, something went wrong and we were not able to fetch your ORCID iD + К сожалению, что-то пошло не так, и мы не смогли получить ваш ORCID iD + + src/app/landing-page/landing-page.component.html + 33 + + + + Oops, you have denied access. + Ой, вы запретили доступ. + + src/app/landing-page/landing-page.component.html + 39 + + + + will not be able to update your ORCID record. + не сможет обновить вашу запись ORCID. + + src/app/landing-page/landing-page.component.html + 42 + + + + If this was a mistake, click the button below to grant access. + Если это была ошибка, нажмите кнопку ниже, чтобы предоставить доступ. + + src/app/landing-page/landing-page.component.html + 45 + + + + If you find that data added to your ORCID record is incorrect, please contact + Если вы обнаружите, что данные, добавленные в вашу запись ORCID, + неверны, свяжитесь с + + src/app/landing-page/landing-page.component.ts + 78 + + + + This authorization link has already been used. Please contact for a new authorization link. + Эта ссылка для авторизации уже использовалась. Свяжитесь с для получения новой ссылки для авторизации. + + src/app/landing-page/landing-page.component.ts + 79 + + + + Allow to update my ORCID record. + Разрешить обновить мой + профиль ORCID + + src/app/landing-page/landing-page.component.ts + 80 + + + + You have successfully granted + permission to update your ORCID record, and your record has been updated with affiliation + information. + Вы успешно предоставили + разрешение на обновление вашей записи ORCID, и ваша запись будет обновлена с учетом + информации о аффилиации. + + src/app/landing-page/landing-page.component.ts + 81 + + + + Thanks, ! + Спасибо, + + src/app/landing-page/landing-page.component.ts + 172 + + + + Member details + Сведения об участнике + + src/app/member/member-detail.component.html + 4 + + + + Salesforce Id + Идентификатор торгового персонала + + src/app/member/member-detail.component.html + 9 + + + src/app/member/member-update.component.html + 41 + + + src/app/member/members.component.html + 59 + + + + Parent Salesforce Id + ID родительской Salesforce + + src/app/member/member-detail.component.html + 13 + + + src/app/member/member-update.component.html + 71 + + + src/app/member/members.component.html + 83 + + + + Member Name + Имя участника + + src/app/member/member-detail.component.html + 17 + + + src/app/member/member-update.component.html + 86 + + + src/app/member/members.component.html + 67 + + + + Client ID + ID клиента + + src/app/member/member-detail.component.html + 21 + + + src/app/member/member-update.component.html + 115 + + + + Type + Тип + + src/app/member/member-detail.component.html + 25 + + + + Is Consortium Lead + Руководитель Консорциума + + src/app/member/member-detail.component.html + 29 + + + src/app/member/member-update.component.html + 154 + + + src/app/member/members.component.html + 75 + + + + Assertion Service Enabled + Утверждения включены + + src/app/member/member-detail.component.html + 35 + + + src/app/member/member-update.component.html + 169 + + + src/app/member/members.component.html + 91 + + + + Status + Статус + + src/app/member/member-detail.component.html + 41 + + + + Created Date + Создано + + src/app/member/member-detail.component.html + 45 + + + + Last Modified Date + Последнее изменение + + src/app/member/member-detail.component.html + 49 + + + src/app/member/members.component.html + 99 + + + + Add or edit member + Добавить или изменить участника + + src/app/member/member-update.component.html + 8 + + + + Note: Client ID must have User OBO enabled AND + Примечание: в ID клиента должен быть включен OBO участника И + + src/app/member/member-update.component.html + 120 + + + + added as a Redirect URI in + добавлен как URI перенаправления в + + src/app/member/member-update.component.html + 124 + + + + Manage members + Управление участниками + + src/app/member/members.component.html + 2 + + + + Add member + Добавить участника + + src/app/member/members.component.html + 11 + + + + Import members from CSV + Импортировать участников из CSV + + src/app/member/members.component.html + 19 + + + + No members to show + Нет участников для отображения + + src/app/member/members.component.html + 50 + + + + Member created + Участник создан src/app/shared/pipe/localize.ts 21 + + Member updated successfully + Участник успешно обновлен + + src/app/shared/pipe/localize.ts + 23 + + \ No newline at end of file diff --git a/ui/src/i18n/messages.xlf b/ui/src/i18n/messages.xlf index 066174a7f..a528a47ec 100644 --- a/ui/src/i18n/messages.xlf +++ b/ui/src/i18n/messages.xlf @@ -1066,6 +1066,10 @@ src/app/affiliation/affiliation-detail.component.html 230 + + src/app/member/member-detail.component.html + 61 + src/app/user/user-detail.component.html 95 @@ -1083,12 +1087,16 @@ src/app/affiliation/affiliation-update.component.html - 465 + 453 src/app/affiliation/send-notifications-dialog.component.html 20 + + src/app/member/member-update.component.html + 186 + src/app/user/user-delete.component.html 14 @@ -1131,6 +1139,14 @@ src/app/affiliation/affiliations.component.html 220 + + src/app/member/member-detail.component.html + 66 + + + src/app/member/members.component.html + 151 + src/app/user/user-detail.component.html 103 @@ -1144,7 +1160,11 @@ Save src/app/affiliation/affiliation-update.component.html - 468 + 456 + + + src/app/member/member-update.component.html + 189 src/app/user/user-update.component.html @@ -1336,6 +1356,14 @@ src/app/affiliation/affiliation-detail.component.html 143 + + src/app/member/member-detail.component.html + 47 + + + src/app/member/member-detail.component.html + 51 + src/app/user/user-detail.component.html 81 @@ -1366,6 +1394,10 @@ src/app/affiliation/affiliations.component.html 104 + + src/app/member/members.component.html + 32 + src/app/user/users.component.html 32 @@ -1375,7 +1407,11 @@ Showing - of items. src/app/affiliation/affiliations.component.ts - 228 + 227 + + + src/app/member/members.component.ts + 160 src/app/user/users.component.ts @@ -1408,7 +1444,7 @@ Are you sure you want to delete user ? src/app/user/user-delete.component.ts - 47 + 44 @@ -1664,1848 +1700,1848 @@ Error adding to ORCID src/app/shared/pipe/localize.ts - 46 + 50 Error deleting in ORCID src/app/shared/pipe/localize.ts - 52 + 56 Error updating in ORCID src/app/shared/pipe/localize.ts - 48 + 52 In ORCID src/app/shared/pipe/localize.ts - 38 + 42 Notification failed src/app/shared/pipe/localize.ts - 58 + 62 Notification requested src/app/shared/pipe/localize.ts - 54 + 58 Notification sent src/app/shared/pipe/localize.ts - 56 + 60 Pending src/app/shared/pipe/localize.ts - 36 + 40 Pending retry in ORCID src/app/shared/pipe/localize.ts - 50 + 54 Pending update in ORCID src/app/shared/pipe/localize.ts - 60 + 64 User deleted from ORCID src/app/shared/pipe/localize.ts - 42 + 46 User denied access src/app/shared/pipe/localize.ts - 34 + 38 User granted access src/app/shared/pipe/localize.ts - 40 + 44 User revoked access src/app/shared/pipe/localize.ts - 44 + 48 Andorra src/app/shared/pipe/localize.ts - 109 + 113 United Arab Emirates src/app/shared/pipe/localize.ts - 111 + 115 Afghanistan src/app/shared/pipe/localize.ts - 113 + 117 Antigua and Barbuda src/app/shared/pipe/localize.ts - 115 + 119 Anguilla src/app/shared/pipe/localize.ts - 117 + 121 Albania src/app/shared/pipe/localize.ts - 119 + 123 Armenia src/app/shared/pipe/localize.ts - 121 + 125 Angola src/app/shared/pipe/localize.ts - 123 + 127 Antarctica src/app/shared/pipe/localize.ts - 125 + 129 Argentina src/app/shared/pipe/localize.ts - 127 + 131 American Samoa src/app/shared/pipe/localize.ts - 129 + 133 Austria src/app/shared/pipe/localize.ts - 131 + 135 Australia src/app/shared/pipe/localize.ts - 133 + 137 Aruba src/app/shared/pipe/localize.ts - 135 + 139 Åland Islands src/app/shared/pipe/localize.ts - 137 + 141 Azerbaijan src/app/shared/pipe/localize.ts - 139 + 143 Bosnia and Herzegovina src/app/shared/pipe/localize.ts - 141 + 145 Barbados src/app/shared/pipe/localize.ts - 143 + 147 Bangladesh src/app/shared/pipe/localize.ts - 145 + 149 Belgium src/app/shared/pipe/localize.ts - 147 + 151 Burkina Faso src/app/shared/pipe/localize.ts - 149 + 153 Bulgaria src/app/shared/pipe/localize.ts - 151 + 155 Bahrain src/app/shared/pipe/localize.ts - 153 + 157 Burundi src/app/shared/pipe/localize.ts - 155 + 159 Benin src/app/shared/pipe/localize.ts - 157 + 161 Saint Barthélemy src/app/shared/pipe/localize.ts - 159 + 163 Bermuda src/app/shared/pipe/localize.ts - 161 + 165 Brunei src/app/shared/pipe/localize.ts - 163 + 167 Bolivia src/app/shared/pipe/localize.ts - 165 + 169 British Antarctic Territory src/app/shared/pipe/localize.ts - 167 + 171 Brazil src/app/shared/pipe/localize.ts - 169 + 173 Bahamas src/app/shared/pipe/localize.ts - 171 + 175 Bhutan src/app/shared/pipe/localize.ts - 173 + 177 Bouvet Island src/app/shared/pipe/localize.ts - 175 + 179 Botswana src/app/shared/pipe/localize.ts - 177 + 181 Belarus src/app/shared/pipe/localize.ts - 179 + 183 Belize src/app/shared/pipe/localize.ts - 181 + 185 Canada src/app/shared/pipe/localize.ts - 183 + 187 Cocos {Keeling} Islands src/app/shared/pipe/localize.ts - 185 + 189 Congo - Kinshasa src/app/shared/pipe/localize.ts - 187 + 191 Central African Republic src/app/shared/pipe/localize.ts - 189 + 193 Congo - Brazzaville src/app/shared/pipe/localize.ts - 191 + 195 Switzerland src/app/shared/pipe/localize.ts - 193 + 197 Côte d’Ivoire src/app/shared/pipe/localize.ts - 195 + 199 Cook Islands src/app/shared/pipe/localize.ts - 197 + 201 Chile src/app/shared/pipe/localize.ts - 199 + 203 Cameroon src/app/shared/pipe/localize.ts - 201 + 205 China src/app/shared/pipe/localize.ts - 203 + 207 Colombia src/app/shared/pipe/localize.ts - 205 + 209 Costa Rica src/app/shared/pipe/localize.ts - 207 + 211 Cuba src/app/shared/pipe/localize.ts - 209 + 213 Cape Verde src/app/shared/pipe/localize.ts - 211 + 215 Curaçao src/app/shared/pipe/localize.ts - 213 + 217 Christmas Island src/app/shared/pipe/localize.ts - 215 + 219 Cyprus src/app/shared/pipe/localize.ts - 217 + 221 Czech Republic src/app/shared/pipe/localize.ts - 219 + 223 Germany src/app/shared/pipe/localize.ts - 221 + 225 Djibouti src/app/shared/pipe/localize.ts - 223 + 227 Denmark src/app/shared/pipe/localize.ts - 225 + 229 Dominica src/app/shared/pipe/localize.ts - 227 + 231 Dominican Republic src/app/shared/pipe/localize.ts - 229 + 233 Algeria src/app/shared/pipe/localize.ts - 231 + 235 Ecuador src/app/shared/pipe/localize.ts - 233 + 237 Estonia src/app/shared/pipe/localize.ts - 235 + 239 Egypt src/app/shared/pipe/localize.ts - 237 + 241 Western Sahara src/app/shared/pipe/localize.ts - 239 + 243 Eritrea src/app/shared/pipe/localize.ts - 241 + 245 Spain src/app/shared/pipe/localize.ts - 243 + 247 Ethiopia src/app/shared/pipe/localize.ts - 245 + 249 Finland src/app/shared/pipe/localize.ts - 247 + 251 Fiji src/app/shared/pipe/localize.ts - 249 + 253 Falkland Islands src/app/shared/pipe/localize.ts - 251 + 255 Micronesia src/app/shared/pipe/localize.ts - 253 + 257 Faroe Islands src/app/shared/pipe/localize.ts - 255 + 259 France src/app/shared/pipe/localize.ts - 257 + 261 Gabon src/app/shared/pipe/localize.ts - 259 + 263 United Kingdom src/app/shared/pipe/localize.ts - 261 + 265 Grenada src/app/shared/pipe/localize.ts - 263 + 267 Georgia src/app/shared/pipe/localize.ts - 265 + 269 French Guiana src/app/shared/pipe/localize.ts - 267 + 271 Guernsey src/app/shared/pipe/localize.ts - 269 + 273 Ghana src/app/shared/pipe/localize.ts - 271 + 275 Gibraltar src/app/shared/pipe/localize.ts - 273 + 277 Greenland src/app/shared/pipe/localize.ts - 275 + 279 Gambia src/app/shared/pipe/localize.ts - 277 + 281 Guinea src/app/shared/pipe/localize.ts - 279 + 283 Guadeloupe src/app/shared/pipe/localize.ts - 281 + 285 Equatorial Guinea src/app/shared/pipe/localize.ts - 283 + 287 Greece src/app/shared/pipe/localize.ts - 285 + 289 South Georgia and the South Sandwich Islands src/app/shared/pipe/localize.ts - 287 + 291 Guatemala src/app/shared/pipe/localize.ts - 289 + 293 Guam src/app/shared/pipe/localize.ts - 291 + 295 Guinea-Bissau src/app/shared/pipe/localize.ts - 293 + 297 Guyana src/app/shared/pipe/localize.ts - 295 + 299 Hong Kong SAR China src/app/shared/pipe/localize.ts - 297 + 301 Heard Island and McDonald Islands src/app/shared/pipe/localize.ts - 299 + 303 Honduras src/app/shared/pipe/localize.ts - 301 + 305 Croatia src/app/shared/pipe/localize.ts - 303 + 307 Haiti src/app/shared/pipe/localize.ts - 305 + 309 Hungary src/app/shared/pipe/localize.ts - 307 + 311 Indonesia src/app/shared/pipe/localize.ts - 309 + 313 Ireland src/app/shared/pipe/localize.ts - 311 + 315 Israel src/app/shared/pipe/localize.ts - 313 + 317 Isle of Man src/app/shared/pipe/localize.ts - 315 + 319 India src/app/shared/pipe/localize.ts - 317 + 321 British Indian Ocean Territory src/app/shared/pipe/localize.ts - 319 + 323 Iraq src/app/shared/pipe/localize.ts - 321 + 325 Iran src/app/shared/pipe/localize.ts - 323 + 327 Iceland src/app/shared/pipe/localize.ts - 325 + 329 Italy src/app/shared/pipe/localize.ts - 327 + 331 Jersey src/app/shared/pipe/localize.ts - 329 + 333 Jamaica src/app/shared/pipe/localize.ts - 331 + 335 Jordan src/app/shared/pipe/localize.ts - 333 + 337 Japan src/app/shared/pipe/localize.ts - 335 + 339 Kenya src/app/shared/pipe/localize.ts - 337 + 341 Kyrgyzstan src/app/shared/pipe/localize.ts - 339 + 343 Cambodia src/app/shared/pipe/localize.ts - 341 + 345 Kiribati src/app/shared/pipe/localize.ts - 343 + 347 Comoros src/app/shared/pipe/localize.ts - 345 + 349 Saint Kitts and Nevis src/app/shared/pipe/localize.ts - 347 + 351 North Korea src/app/shared/pipe/localize.ts - 349 + 353 South Korea src/app/shared/pipe/localize.ts - 351 + 355 Kuwait src/app/shared/pipe/localize.ts - 353 + 357 Cayman Islands src/app/shared/pipe/localize.ts - 355 + 359 Kazakhstan src/app/shared/pipe/localize.ts - 357 + 361 Laos src/app/shared/pipe/localize.ts - 359 + 363 Lebanon src/app/shared/pipe/localize.ts - 361 + 365 Saint Lucia src/app/shared/pipe/localize.ts - 363 + 367 Liechtenstein src/app/shared/pipe/localize.ts - 365 + 369 Sri Lanka src/app/shared/pipe/localize.ts - 367 + 371 Liberia src/app/shared/pipe/localize.ts - 369 + 373 Lesotho src/app/shared/pipe/localize.ts - 371 + 375 Lithuania src/app/shared/pipe/localize.ts - 373 + 377 Luxembourg src/app/shared/pipe/localize.ts - 375 + 379 Latvia src/app/shared/pipe/localize.ts - 377 + 381 Libya src/app/shared/pipe/localize.ts - 379 + 383 Morocco src/app/shared/pipe/localize.ts - 381 + 385 Monaco src/app/shared/pipe/localize.ts - 383 + 387 Moldova src/app/shared/pipe/localize.ts - 385 + 389 Montenegro src/app/shared/pipe/localize.ts - 387 + 391 Saint Martin src/app/shared/pipe/localize.ts - 389 + 393 Madagascar src/app/shared/pipe/localize.ts - 391 + 395 Marshall Islands src/app/shared/pipe/localize.ts - 393 + 397 North Macedonia src/app/shared/pipe/localize.ts - 395 + 399 Mali src/app/shared/pipe/localize.ts - 397 + 401 Myanmar {Burma} src/app/shared/pipe/localize.ts - 399 + 403 Mongolia src/app/shared/pipe/localize.ts - 401 + 405 Macau SAR China src/app/shared/pipe/localize.ts - 403 + 407 Northern Mariana Islands src/app/shared/pipe/localize.ts - 405 + 409 Martinique src/app/shared/pipe/localize.ts - 407 + 411 Mauritania src/app/shared/pipe/localize.ts - 409 + 413 Montserrat src/app/shared/pipe/localize.ts - 411 + 415 Malta src/app/shared/pipe/localize.ts - 413 + 417 Mauritius src/app/shared/pipe/localize.ts - 415 + 419 Maldives src/app/shared/pipe/localize.ts - 417 + 421 Malawi src/app/shared/pipe/localize.ts - 419 + 423 Mexico src/app/shared/pipe/localize.ts - 421 + 425 Malaysia src/app/shared/pipe/localize.ts - 423 + 427 Mozambique src/app/shared/pipe/localize.ts - 425 + 429 Namibia src/app/shared/pipe/localize.ts - 427 + 431 New Caledonia src/app/shared/pipe/localize.ts - 429 + 433 Niger src/app/shared/pipe/localize.ts - 431 + 435 Norfolk Island src/app/shared/pipe/localize.ts - 433 + 437 Nigeria src/app/shared/pipe/localize.ts - 435 + 439 Nicaragua src/app/shared/pipe/localize.ts - 437 + 441 Netherlands src/app/shared/pipe/localize.ts - 439 + 443 Norway src/app/shared/pipe/localize.ts - 441 + 445 Nepal src/app/shared/pipe/localize.ts - 443 + 447 Nauru src/app/shared/pipe/localize.ts - 445 + 449 Niue src/app/shared/pipe/localize.ts - 447 + 451 New Zealand src/app/shared/pipe/localize.ts - 449 + 453 Oman src/app/shared/pipe/localize.ts - 451 + 455 Panama src/app/shared/pipe/localize.ts - 453 + 457 Peru src/app/shared/pipe/localize.ts - 455 + 459 French Polynesia src/app/shared/pipe/localize.ts - 457 + 461 Papua New Guinea src/app/shared/pipe/localize.ts - 459 + 463 Philippines src/app/shared/pipe/localize.ts - 461 + 465 Pakistan src/app/shared/pipe/localize.ts - 463 + 467 Poland src/app/shared/pipe/localize.ts - 465 + 469 Saint Pierre and Miquelon src/app/shared/pipe/localize.ts - 467 + 471 Pitcairn Islands src/app/shared/pipe/localize.ts - 469 + 473 Puerto Rico src/app/shared/pipe/localize.ts - 471 + 475 Palestinian Territories src/app/shared/pipe/localize.ts - 473 + 477 Portugal src/app/shared/pipe/localize.ts - 475 + 479 Palau src/app/shared/pipe/localize.ts - 477 + 481 Paraguay src/app/shared/pipe/localize.ts - 479 + 483 Qatar src/app/shared/pipe/localize.ts - 481 + 485 Réunion src/app/shared/pipe/localize.ts - 483 + 487 Romania src/app/shared/pipe/localize.ts - 485 + 489 Serbia src/app/shared/pipe/localize.ts - 487 + 491 Russia src/app/shared/pipe/localize.ts - 489 + 493 Rwanda src/app/shared/pipe/localize.ts - 491 + 495 Saudi Arabia src/app/shared/pipe/localize.ts - 493 + 497 Solomon Islands src/app/shared/pipe/localize.ts - 495 + 499 Seychelles src/app/shared/pipe/localize.ts - 497 + 501 Sudan src/app/shared/pipe/localize.ts - 499 + 503 Sweden src/app/shared/pipe/localize.ts - 501 + 505 Singapore src/app/shared/pipe/localize.ts - 503 + 507 Saint Helena src/app/shared/pipe/localize.ts - 505 + 509 Slovenia src/app/shared/pipe/localize.ts - 507 + 511 Svalbard and Jan Mayen src/app/shared/pipe/localize.ts - 509 + 513 Slovakia src/app/shared/pipe/localize.ts - 511 + 515 Sierra Leone src/app/shared/pipe/localize.ts - 513 + 517 San Marino src/app/shared/pipe/localize.ts - 515 + 519 Senegal src/app/shared/pipe/localize.ts - 517 + 521 Somalia src/app/shared/pipe/localize.ts - 519 + 523 Suriname src/app/shared/pipe/localize.ts - 521 + 525 South Sudan src/app/shared/pipe/localize.ts - 523 + 527 São Tomé and Príncipe src/app/shared/pipe/localize.ts - 525 + 529 El Salvador src/app/shared/pipe/localize.ts - 527 + 531 Sint Maarten src/app/shared/pipe/localize.ts - 529 + 533 Syria src/app/shared/pipe/localize.ts - 531 + 535 Swaziland src/app/shared/pipe/localize.ts - 533 + 537 Turks and Caicos Islands src/app/shared/pipe/localize.ts - 535 + 539 Chad src/app/shared/pipe/localize.ts - 537 + 541 French Southern Territories src/app/shared/pipe/localize.ts - 539 + 543 Togo src/app/shared/pipe/localize.ts - 541 + 545 Thailand src/app/shared/pipe/localize.ts - 543 + 547 Tajikistan src/app/shared/pipe/localize.ts - 545 + 549 Tokelau src/app/shared/pipe/localize.ts - 547 + 551 Timor-Leste src/app/shared/pipe/localize.ts - 549 + 553 Turkmenistan src/app/shared/pipe/localize.ts - 551 + 555 Tunisia src/app/shared/pipe/localize.ts - 553 + 557 Tonga src/app/shared/pipe/localize.ts - 555 + 559 Turkey src/app/shared/pipe/localize.ts - 557 + 561 Trinidad and Tobago src/app/shared/pipe/localize.ts - 559 + 563 Tuvalu src/app/shared/pipe/localize.ts - 561 + 565 Taiwan src/app/shared/pipe/localize.ts - 563 + 567 Tanzania src/app/shared/pipe/localize.ts - 565 + 569 Ukraine src/app/shared/pipe/localize.ts - 567 + 571 Uganda src/app/shared/pipe/localize.ts - 569 + 573 U.S. Minor Outlying Islands src/app/shared/pipe/localize.ts - 571 + 575 United States src/app/shared/pipe/localize.ts - 573 + 577 Uruguay src/app/shared/pipe/localize.ts - 575 + 579 Uzbekistan src/app/shared/pipe/localize.ts - 577 + 581 Vatican City src/app/shared/pipe/localize.ts - 579 + 583 Saint Vincent and the Grenadines src/app/shared/pipe/localize.ts - 581 + 585 Venezuela src/app/shared/pipe/localize.ts - 583 + 587 British Virgin Islands src/app/shared/pipe/localize.ts - 585 + 589 U.S. Virgin Islands src/app/shared/pipe/localize.ts - 587 + 591 Vietnam src/app/shared/pipe/localize.ts - 589 + 593 Vanuatu src/app/shared/pipe/localize.ts - 591 + 595 Wallis and Futuna src/app/shared/pipe/localize.ts - 593 + 597 Samoa src/app/shared/pipe/localize.ts - 595 + 599 Kosovo src/app/shared/pipe/localize.ts - 597 + 601 Yemen src/app/shared/pipe/localize.ts - 599 + 603 Mayotte src/app/shared/pipe/localize.ts - 601 + 605 South Africa src/app/shared/pipe/localize.ts - 603 + 607 Zambia src/app/shared/pipe/localize.ts - 605 + 609 Zimbabwe src/app/shared/pipe/localize.ts - 607 + 611 @@ -3519,49 +3555,49 @@ DISTINCTION src/app/shared/pipe/localize.ts - 69 + 73 EDUCATION src/app/shared/pipe/localize.ts - 65 + 69 EMPLOYMENT src/app/shared/pipe/localize.ts - 67 + 71 INVITED_POSITION src/app/shared/pipe/localize.ts - 71 + 75 MEMBERSHIP src/app/shared/pipe/localize.ts - 77 + 81 QUALIFICATION src/app/shared/pipe/localize.ts - 73 + 77 SERVICE src/app/shared/pipe/localize.ts - 75 + 79 @@ -3650,7 +3686,7 @@ src/app/affiliation/affiliation-update.component.html - 426 + 414 @@ -3739,7 +3775,7 @@ src/app/affiliation/affiliation-update.component.html - 265 + 261 @@ -3771,91 +3807,91 @@ src/app/affiliation/affiliation-update.component.html - 285 + 277 April src/app/shared/pipe/localize.ts - 88 + 92 August src/app/shared/pipe/localize.ts - 96 + 100 December src/app/shared/pipe/localize.ts - 104 + 108 February src/app/shared/pipe/localize.ts - 84 + 88 January src/app/shared/pipe/localize.ts - 82 + 86 July src/app/shared/pipe/localize.ts - 94 + 98 June src/app/shared/pipe/localize.ts - 92 + 96 March src/app/shared/pipe/localize.ts - 86 + 90 May src/app/shared/pipe/localize.ts - 90 + 94 November src/app/shared/pipe/localize.ts - 102 + 106 October src/app/shared/pipe/localize.ts - 100 + 104 September src/app/shared/pipe/localize.ts - 98 + 102 @@ -3876,22 +3912,18 @@ Start date cannot be greater than the end date src/app/affiliation/affiliation-update.component.html - 400 + 388 - This field cannot be longer than 4000 characters. + This field cannot be longer than characters. - src/app/affiliation/affiliation-update.component.html - 255 - - - src/app/affiliation/affiliation-update.component.html - 278 + src/app/affiliation/affiliation-update.component.ts + 195 - src/app/affiliation/affiliation-update.component.html - 293 + src/app/affiliation/affiliation-update.component.ts + 197 @@ -3931,27 +3963,39 @@ src/app/affiliation/affiliation-update.component.html 188 + + src/app/member/member-update.component.html + 61 + + + src/app/member/member-update.component.html + 105 + + + src/app/member/member-update.component.html + 140 + Day src/app/affiliation/affiliation-update.component.html - 344 + 332 src/app/affiliation/affiliation-update.component.html - 394 + 382 - Disambiguated Org Id + Organization ID src/app/affiliation/affiliation-update.component.html 201 - Disambiguation Source + Organization ID Source src/app/affiliation/affiliation-update.component.html 170 @@ -3961,35 +4005,35 @@ End Day src/app/affiliation/affiliation-update.component.html - 391 + 379 End Month src/app/affiliation/affiliation-update.component.html - 373 + 361 End Year src/app/affiliation/affiliation-update.component.html - 355 + 343 External Id Type src/app/affiliation/affiliation-update.component.html - 411 + 399 External Id Url src/app/affiliation/affiliation-update.component.html - 441 + 429 @@ -4003,36 +4047,36 @@ Month src/app/affiliation/affiliation-update.component.html - 332 + 320 src/app/affiliation/affiliation-update.component.html - 382 + 370 - Org City + City src/app/affiliation/affiliation-update.component.html 96 - Org Country + Country src/app/affiliation/affiliation-update.component.html 141 - Org Name + Organization Name src/app/affiliation/affiliation-update.component.html 73 - Org Region + State/Region src/app/affiliation/affiliation-update.component.html 118 @@ -4042,67 +4086,67 @@ Start Day src/app/affiliation/affiliation-update.component.html - 341 + 329 Start Month src/app/affiliation/affiliation-update.component.html - 323 + 311 Start Year src/app/affiliation/affiliation-update.component.html - 305 + 293 Please do not forget to download and send permission links to your researcher once the assertion has been saved. src/app/affiliation/affiliation-update.component.html - 457 + 445 Year src/app/affiliation/affiliation-update.component.html - 314 + 302 src/app/affiliation/affiliation-update.component.html - 364 + 352 Affiliation created src/app/shared/pipe/localize.ts - 23 + 27 Affiliation deleted src/app/shared/pipe/localize.ts - 27 + 31 There was a problem deleting the affiliation src/app/shared/pipe/localize.ts - 29 + 33 Affiliation updated src/app/shared/pipe/localize.ts - 25 + 29 @@ -4151,7 +4195,7 @@ Notification process has now started. We will email you as soon as the process has completed. src/app/shared/pipe/localize.ts - 21 + 25 @@ -4168,6 +4212,271 @@ 3 + + Assertion Service Enabled + + src/app/member/member-detail.component.html + 35 + + + src/app/member/member-update.component.html + 169 + + + src/app/member/members.component.html + 91 + + + + added as a Redirect URI in + + src/app/member/member-update.component.html + 124 + + + + Client ID + + src/app/member/member-detail.component.html + 21 + + + src/app/member/member-update.component.html + 115 + + + + Note: Client ID must have User OBO enabled AND + + src/app/member/member-update.component.html + 120 + + + + Member Name + + src/app/member/member-detail.component.html + 17 + + + src/app/member/member-update.component.html + 86 + + + src/app/member/members.component.html + 67 + + + + Created Date + + src/app/member/member-detail.component.html + 45 + + + + Member details + + src/app/member/member-detail.component.html + 4 + + + + Add member + + src/app/member/members.component.html + 11 + + + + Add or edit member + + src/app/member/member-update.component.html + 8 + + + + No members to show + + src/app/member/members.component.html + 50 + + + + Manage members + + src/app/member/members.component.html + 2 + + + + Import members from CSV + + src/app/member/members.component.html + 19 + + + + Is Consortium Lead + + src/app/member/member-detail.component.html + 29 + + + src/app/member/member-update.component.html + 154 + + + src/app/member/members.component.html + 75 + + + + Last Modified Date + + src/app/member/member-detail.component.html + 49 + + + src/app/member/members.component.html + 99 + + + + Parent Salesforce Id + + src/app/member/member-detail.component.html + 13 + + + src/app/member/member-update.component.html + 71 + + + src/app/member/members.component.html + 83 + + + + Salesforce Id + + src/app/member/member-detail.component.html + 9 + + + src/app/member/member-update.component.html + 41 + + + src/app/member/members.component.html + 59 + + + + Status + + src/app/member/member-detail.component.html + 41 + + + + Type + + src/app/member/member-detail.component.html + 25 + + + + This authorization link has already been used. Please contact for a new authorization link. + + src/app/landing-page/landing-page.component.ts + 79 + + + + permission to update your ORCID record + + src/app/landing-page/landing-page.component.html + 16 + + + + You have already granted + + src/app/landing-page/landing-page.component.html + 13 + + + + Allow to update my ORCID record. + + src/app/landing-page/landing-page.component.ts + 80 + + + + If this was a mistake, click the button below to grant access. + + src/app/landing-page/landing-page.component.html + 45 + + + + will not be able to update your ORCID record. + + src/app/landing-page/landing-page.component.html + 42 + + + + Oops, you have denied access. + + src/app/landing-page/landing-page.component.html + 39 + + + + Oops, something went wrong and we were not able to fetch your ORCID iD + + src/app/landing-page/landing-page.component.html + 33 + + + + If you find that data added to your ORCID record is incorrect, please contact + + src/app/landing-page/landing-page.component.ts + 78 + + + + Thanks, ! + + src/app/landing-page/landing-page.component.ts + 172 + + + + You have successfully granted permission to update your ORCID record, and your record has been updated with affiliation information. + + src/app/landing-page/landing-page.component.ts + 81 + + + + Member created + + src/app/shared/pipe/localize.ts + 21 + + + + Member updated successfully + + src/app/shared/pipe/localize.ts + 23 + + \ No newline at end of file diff --git a/ui/src/i18n/messages.zh-CN.xlf b/ui/src/i18n/messages.zh-CN.xlf index afd0a57b5..d34a98efd 100644 --- a/ui/src/i18n/messages.zh-CN.xlf +++ b/ui/src/i18n/messages.zh-CN.xlf @@ -70,8 +70,10 @@ - Slide of - Slide of + Slide of + + Slide of + Currently selected slide number read by screen reader node_modules/src/ngb-config.ts @@ -287,8 +289,12 @@ - Failed to sign in! Please check your credentials and try again. - 登录失败!请检查您的凭证并重试。 + Failed to + sign in! Please + check your credentials and try again. + + 登录失败! + 请检查您的凭证并重试。 src/app/account/login/login.component.html 6 @@ -302,7 +308,8 @@ 10 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 22 @@ -318,7 +325,8 @@ 16 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 28 @@ -386,15 +394,21 @@ Reset your password 重置密码 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 4 - Email address isn't registered! Please check and try again. - 电子邮件地址尚未注册!请检查并重试 - - src/app/account/password/password-reset-init.component.html + Email + address isn't registered! Please check and try again. + + 电子邮件地址尚未注册! + 请检查并重试 + + + src/app/account/password/password-reset-init.component.html 7 @@ -402,7 +416,8 @@ Enter the email address you used to register. 输入用于注册的电子邮件地址 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 11 @@ -410,7 +425,8 @@ Check your emails for details on how to reset your password. 请查看电子邮件,了解重置密码的详细信息。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 15 @@ -418,7 +434,8 @@ Your email is required. 必须提供您的电子邮件。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 42 @@ -426,7 +443,8 @@ Your email is invalid. 您的电子邮件无效。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 49 @@ -434,7 +452,8 @@ Your email is required to be at least 5 characters. 您的电子邮件必须具有至少 5 个字符。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 56 @@ -442,7 +461,8 @@ Your email cannot be longer than 100 characters. 电子邮件长度不能超过 50 个字符。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 64 @@ -450,7 +470,8 @@ Reset 重置密码 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 75 @@ -463,8 +484,10 @@ - Settings saved! - 设置已保存! + Settings + saved! + + 设置已保存! src/app/account/settings/settings.component.html 8 @@ -579,7 +602,9 @@ - Add extra security to your ORCID member portal account by enabling two-factor authentication. Each time you sign in, you'll be prompted to enter a six-digit code we send to your preferred authentication application. + Add extra security to your ORCID member portal account by enabling two-factor + authentication. Each time you sign in, you'll be prompted to enter a six-digit code + we send to your preferred authentication application. 启用双重身份验证,为您的 ORCID 成员门户账户增加额外的安全性。每次登录时,系统都会提示您输入发送到您首选身份验证应用程序的六位数验证码。 src/app/account/settings/settings.component.html @@ -603,16 +628,36 @@ - Install a two-factor authentication appA 2FA app is required to create the six-digit code you need to access your account each time you sign in. Most apps are for mobile devices; some are also available as desktop or web-based apps. Download and install your preferred 2FA app, such as Google Authenticator, FreeOTP, or Authy. - 安装双重身份验证应用每次登录时都需要 2FA 应用程序来创建访问帐户所需的六位数代码。大多数应用程序适用于移动设备;有些还可以作为桌面或基于 Web 的应用程序使用。下载并安装您首选的 2FA 应用,例如 Google AuthenticatorFreeOTPAuthy + Install a two-factor authentication appA 2FA app is required to create the six-digit code you + need to access your account each time you sign in. Most apps are for mobile devices; some + are also available as desktop or web-based apps. Download and install your preferred 2FA + app, such as Google + Authenticator, + FreeOTP, or Authy. + 安装双重身份验证应用每次登录时都需要 + 2FA 应用程序来创建访问帐户所需的六位数代码。大多数应用程序适用于移动设备;有些还可以作为桌面或基于 Web 的应用程序使用。下载并安装您首选的 2FA 应用,例如 Google + Authenticator + FreeOTPAuthy src/app/account/settings/settings.component.html 166 - Scan this QR code with your deviceOpen your 2FA app and scan the image below. - 使用设备扫描此二维码打开 2FA 应用并扫描下方图像。 + Scan this QR code with your deviceOpen your 2FA app and scan the image below. + 使用设备扫描此二维码打开 + 2FA 应用并扫描下方图像。 src/app/account/settings/settings.component.html 174 @@ -643,8 +688,12 @@ - Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, your 2FA app will display a six-digit code. Enter this code in the box below and click Save. - 输入来自应用的六位数验证码扫描二维码或输入短信验证码后,2FA 即会显示一个六位数验证码。在下方框中输入该验证码,然后单击“保存”。 + Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, + your 2FA app will display a six-digit code. Enter this code in the box below and click + Save. + 输入来自应用的六位数验证码扫描二维码或输入短信验证码后,2FA + 即会显示一个六位数验证码。在下方框中输入该验证码,然后单击“保存”。 src/app/account/settings/settings.component.html 205 @@ -667,7 +716,8 @@ - Make a note of the following backup codes, this is the only time they will be shown. + Make a note of the following backup codes, this is the only time they will be + shown. 请记下以下备份代码,它们只会出现这一次。 src/app/account/settings/settings.component.html @@ -875,16 +925,21 @@ - Password changed! - 密码已更改! + Password + changed! + + 密码已更改! src/app/account/password/password.component.html 7 - An error has occurred! The password could not be changed. - 出现错误!密码无法更改。 + An error + has occurred! + The password could not be changed. + + 出现错误!密码无法更改。 src/app/account/password/password.component.html 10 @@ -894,7 +949,8 @@ The password and its confirmation do not match! 密码及确认密码不匹配! - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 62 @@ -922,7 +978,8 @@ Your password is required. 密码是必填字段。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 91 @@ -938,7 +995,8 @@ New password 新密码 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 70 @@ -950,7 +1008,8 @@ New password 新密码 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 77 @@ -962,7 +1021,8 @@ Your password is required to be at least 4 characters. 您的密码必须具有至少 4 个字符。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 98 @@ -974,7 +1034,8 @@ Your password cannot be longer than 50 characters. 密码长度不能超过 50 个字符。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 105 @@ -986,7 +1047,8 @@ New password confirmation 新密码确认 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 114 @@ -998,7 +1060,8 @@ Confirm the new password 确认新密码 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 121 @@ -1010,7 +1073,8 @@ Your password confirmation is required. 确认密码是必填字段。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 135 @@ -1022,7 +1086,8 @@ Your password confirmation is required to be at least 4 characters. 您的确认密码必须至少具有 4 个字符。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 142 @@ -1034,7 +1099,8 @@ Your password confirmation cannot be longer than 50 characters. 确认密码长度不能超过 50 个字符。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 149 @@ -1062,55 +1128,78 @@ Reset password 重置密码 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 4 - The activation key is missing. - 缺少激活密钥。 - - src/app/account/password/password-reset-finish.component.html + The + activation key is missing. + + 缺少激活密钥。 + + + src/app/account/password/password-reset-finish.component.html 7 - This activation key is invalid. - 激活密钥无效。 - - src/app/account/password/password-reset-finish.component.html + This + activation key is invalid. + + 激活密钥无效。 + + + src/app/account/password/password-reset-finish.component.html 11 - This activation has expired. - 激活密钥已过期。 - - src/app/account/password/password-reset-finish.component.html + This + activation has expired. + + 激活密钥已过期。 + + + src/app/account/password/password-reset-finish.component.html 15 - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It looks like this + link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It + looks like this link has expired. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 20 - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a new + activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a + new activation link to your registered email address. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 26 - If you are still having problems activating your account or have not received your new activation link please contact our support team please contact us at membership@orcid.org. - If you are still having problems activating your account or have not received your new activation link, please contact us at membership@orcid.org. - - src/app/account/password/password-reset-finish.component.html + If you are still having problems activating your account or have not received your + new activation link please contact our support team please contact us at + membership@orcid.org. + If you are still having problems activating your account or have not + received your new activation link, please contact us at membership@orcid.org. + + + src/app/account/password/password-reset-finish.component.html 32 @@ -1118,23 +1207,30 @@ Choose a new password 选择新密码 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 39 - Your password couldn't be reset. Remember a password request is only valid for 24 hours. + Your password couldn't be reset. Remember a password request is only valid for + 24 hours. 密码无法重置。请谨记,密码请求仅在 24 小时内有效。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 43 - Your password has been reset. Please - 密码已重置。 - - src/app/account/password/password-reset-finish.component.html + Your + password has been reset. Please + + 密码已重置。 + + + src/app/account/password/password-reset-finish.component.html 50 @@ -1142,7 +1238,8 @@ sign in 登录 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 58 @@ -1150,7 +1247,8 @@ Reset Password 验证新密码 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 159 @@ -1182,7 +1280,8 @@ Password strength: 密码强度: - src/app/account/password/password-strength.component.html + + src/app/account/password/password-strength.component.html 2 @@ -1365,6 +1464,14 @@ src/app/affiliation/affiliation-detail.component.html 143 + + src/app/member/member-detail.component.html + 47 + + + src/app/member/member-detail.component.html + 51 + src/app/user/user-detail.component.html 81 @@ -1393,6 +1500,10 @@ src/app/affiliation/affiliation-detail.component.html 230 + + src/app/member/member-detail.component.html + 61 + src/app/user/user-detail.component.html 95 @@ -1409,6 +1520,14 @@ src/app/affiliation/affiliations.component.html 220 + + src/app/member/member-detail.component.html + 66 + + + src/app/member/members.component.html + 151 + src/app/user/user-detail.component.html 103 @@ -1450,17 +1569,23 @@ 17 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 34 src/app/affiliation/affiliation-update.component.html - 465 + 453 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 20 + + src/app/member/member-update.component.html + 186 + src/app/user/user-delete.component.html 14 @@ -1479,7 +1604,11 @@ 保存 src/app/affiliation/affiliation-update.component.html - 468 + 456 + + + src/app/member/member-update.component.html + 189 src/app/user/user-update.component.html @@ -1521,6 +1650,10 @@ src/app/affiliation/affiliations.component.html 104 + + src/app/member/members.component.html + 32 + src/app/user/users.component.html 32 @@ -1555,19 +1688,28 @@ - Showing - of items. - 当前显示第 - 个项目,共计 个项目。 + Showing - + of items. + 当前显示第 - 个项目,共计 个项目。 src/app/affiliation/affiliations.component.ts - 228 + 227 + + + src/app/member/members.component.ts + 160 src/app/user/users.component.ts 230 - - Are you sure you want to transfer ownership? You are about to transfer ownership of this organization account. If you are the organization owner after transferring ownership, you will no longer have access to administrative functions, such as managing users. + + Are you sure you want to transfer ownership? You are about to transfer ownership of + this organization account. If you are the organization owner after transferring ownership, + you will no longer have access to administrative functions, such as managing users. 确定要转移所有权吗?您即将转移此组织账户的所有权。如果您的组织所有者,在转移完所有权后,您将无法再访问管理功能,例如管理用户。 src/app/user/user-update.component.ts @@ -1595,7 +1737,7 @@ 确定要删除用户 吗? src/app/user/user-delete.component.ts - 47 + 44 @@ -1627,7 +1769,8 @@ - Oops! There was a problem processing your data. Pleases fix the errors below and try again + Oops! There was a problem processing your data. Pleases fix the errors below and + try again 糟糕!处理数据时出现问题。请修复下方错误,然后重试 src/app/user/user-import-dialog.component.html @@ -1654,7 +1797,8 @@ Upload 上传 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 37 @@ -1679,7 +1823,8 @@ 2 - + Send permission notifications 发送权限通知 @@ -1687,7 +1832,8 @@ 11 - + Request permission links 请求权限链接 @@ -1695,7 +1841,8 @@ 21 - + Request affiliation status report 请求机构状态报告 @@ -1703,7 +1850,9 @@ 31 - + Request affiliations for edit 请求编辑机构 @@ -1727,24 +1876,32 @@ 61 - - Your affiliations for edit file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. + + Your affiliations for edit file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. 您的机构编辑文件将很快通过邮件发送给您。如果您没有收到文件,请通过 membership@orcid.org 联系我们。 src/app/affiliation/affiliations.component.html 73 - - Your affiliation status report file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. + + Your affiliation status report file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. 您的机构状态报告文件将很快通过邮件发送给您。如果您没有收到文件,请通过 membership@orcid.org 联系我们。 src/app/affiliation/affiliations.component.html 82 - - Your permission links file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. + + Your permission links file will be mailed to you shortly. If you do not receive + your file then please contact us at membership@orcid.org. 您的权限链接文件将很快通过邮件发送给您。如果您没有收到文件,请通过 membership@orcid.org 联系我们。 src/app/affiliation/affiliations.component.html @@ -1823,7 +1980,9 @@ 150 - + @@ -1855,8 +2014,10 @@ 190 - - For help troubleshooting, please contact the Member Portal Team and copy/paste or include a screenshot of the error message below. + + For help troubleshooting, please contact the Member Portal Team and copy/paste or + include a screenshot of the error message below. 如果您需要帮助诊断此错误,请联系联盟代表或 membership@orcid.org。请提供下方错误信息的截图。 src/app/affiliation/affiliations.component.html @@ -1868,7 +2029,7 @@ 用户被拒绝访问 src/app/shared/pipe/localize.ts - 34 + 38 @@ -1876,7 +2037,7 @@ 待处理 src/app/shared/pipe/localize.ts - 36 + 40 @@ -1884,7 +2045,7 @@ 在 ORCID 中 src/app/shared/pipe/localize.ts - 38 + 42 @@ -1892,7 +2053,7 @@ 用户被授予访问权限 src/app/shared/pipe/localize.ts - 40 + 44 @@ -1900,7 +2061,7 @@ User deleted from ORCID src/app/shared/pipe/localize.ts - 42 + 46 @@ -1908,7 +2069,7 @@ 用户访问权限已被撤销 src/app/shared/pipe/localize.ts - 44 + 48 @@ -1916,7 +2077,7 @@ 添加到 ORCID 时出错 src/app/shared/pipe/localize.ts - 46 + 50 @@ -1924,7 +2085,7 @@ 在 ORCID 中更新时出错 src/app/shared/pipe/localize.ts - 48 + 52 @@ -1932,7 +2093,7 @@ ORCID 中的待处理重试 src/app/shared/pipe/localize.ts - 50 + 54 @@ -1940,7 +2101,7 @@ 在 ORCID 中删除时出错 src/app/shared/pipe/localize.ts - 52 + 56 @@ -1948,7 +2109,7 @@ 已要求通知 src/app/shared/pipe/localize.ts - 54 + 58 @@ -1956,7 +2117,7 @@ 通知已发送 src/app/shared/pipe/localize.ts - 56 + 60 @@ -1964,7 +2125,7 @@ 通知失败 src/app/shared/pipe/localize.ts - 58 + 62 @@ -1972,7 +2133,7 @@ ORCID 中的待处理更新 src/app/shared/pipe/localize.ts - 60 + 64 @@ -2007,7 +2168,8 @@ 36 - + Affiliation Section 机构类型 @@ -2048,7 +2210,7 @@ src/app/affiliation/affiliation-update.component.html - 265 + 261 @@ -2060,7 +2222,7 @@ src/app/affiliation/affiliation-update.component.html - 285 + 277 @@ -2088,7 +2250,7 @@ src/app/affiliation/affiliation-update.component.html - 426 + 414 @@ -2131,7 +2293,8 @@ 145 - + Notification First Sent 首次发送的通知 @@ -2143,7 +2306,8 @@ 175 - + Notification Last Sent 最后发送的通知 @@ -2167,15 +2331,19 @@ Import affiliations from CSV 导入机构 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 3 - - Your CSV has been uploaded for processing. We will let you know via email once the file has been processed. + + Your CSV has been uploaded for processing. We will let you know via email once the + file has been processed. 您的 CSV 已上传,待处理。文件处理完成后,您将收到电子邮件通知。 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 10 @@ -2183,7 +2351,8 @@ There was a problem uploading your CSV for processing. 上传 CSV 文件以进行处理时出现问题。 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 17 @@ -2191,7 +2360,8 @@ Please select the CSV file to upload 请选择待上传的 CSV 文件 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 20 @@ -2199,15 +2369,18 @@ File Path 文件路径 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 22 - Please do not forget to download and send permission links to your researchers once the upload has completed. + Please do not forget to download and send permission links to your researchers once + the upload has completed. 注意:上传完成后,别忘了下载权限链接并将其发送给研究人员。 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 26 @@ -2215,7 +2388,8 @@ Close 关闭 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 40 @@ -2223,7 +2397,8 @@ There is no file to upload. Please select one. 没有待上传的文件。请选择一个文件。 - src/app/affiliation/affiliation-import-dialog.component.ts + + src/app/affiliation/affiliation-import-dialog.component.ts 60 @@ -2232,7 +2407,7 @@ 教育背景 src/app/shared/pipe/localize.ts - 65 + 69 @@ -2240,7 +2415,7 @@ 雇佣关系 src/app/shared/pipe/localize.ts - 67 + 71 @@ -2248,7 +2423,7 @@ 区别 src/app/shared/pipe/localize.ts - 69 + 73 @@ -2256,7 +2431,7 @@ 特邀职位 src/app/shared/pipe/localize.ts - 71 + 75 @@ -2264,7 +2439,7 @@ 资质 src/app/shared/pipe/localize.ts - 73 + 77 @@ -2272,7 +2447,7 @@ 服务 src/app/shared/pipe/localize.ts - 75 + 79 @@ -2280,7 +2455,7 @@ 会员身份 src/app/shared/pipe/localize.ts - 77 + 81 @@ -2288,7 +2463,7 @@ 一月 src/app/shared/pipe/localize.ts - 82 + 86 @@ -2296,7 +2471,7 @@ 二月 src/app/shared/pipe/localize.ts - 84 + 88 @@ -2304,7 +2479,7 @@ 三月 src/app/shared/pipe/localize.ts - 86 + 90 @@ -2312,7 +2487,7 @@ 四月 src/app/shared/pipe/localize.ts - 88 + 92 @@ -2320,7 +2495,7 @@ 五月 src/app/shared/pipe/localize.ts - 90 + 94 @@ -2328,7 +2503,7 @@ 六月 src/app/shared/pipe/localize.ts - 92 + 96 @@ -2336,7 +2511,7 @@ 七月 src/app/shared/pipe/localize.ts - 94 + 98 @@ -2344,7 +2519,7 @@ 八月 src/app/shared/pipe/localize.ts - 96 + 100 @@ -2352,7 +2527,7 @@ 九月 src/app/shared/pipe/localize.ts - 98 + 102 @@ -2360,7 +2535,7 @@ 十月 src/app/shared/pipe/localize.ts - 100 + 104 @@ -2368,7 +2543,7 @@ 十一月 src/app/shared/pipe/localize.ts - 102 + 106 @@ -2376,7 +2551,7 @@ 十二月 src/app/shared/pipe/localize.ts - 104 + 108 @@ -2384,7 +2559,7 @@ 安道尔 src/app/shared/pipe/localize.ts - 109 + 113 @@ -2392,7 +2567,7 @@ 阿拉伯联合酋长国 src/app/shared/pipe/localize.ts - 111 + 115 @@ -2400,7 +2575,7 @@ 阿富汗 src/app/shared/pipe/localize.ts - 113 + 117 @@ -2408,7 +2583,7 @@ 安提瓜和巴布达 src/app/shared/pipe/localize.ts - 115 + 119 @@ -2416,7 +2591,7 @@ 安圭拉 src/app/shared/pipe/localize.ts - 117 + 121 @@ -2424,7 +2599,7 @@ 阿尔巴尼亚 src/app/shared/pipe/localize.ts - 119 + 123 @@ -2432,7 +2607,7 @@ 亚美尼亚 src/app/shared/pipe/localize.ts - 121 + 125 @@ -2440,7 +2615,7 @@ 安哥拉 src/app/shared/pipe/localize.ts - 123 + 127 @@ -2448,7 +2623,7 @@ 南极洲 src/app/shared/pipe/localize.ts - 125 + 129 @@ -2456,7 +2631,7 @@ 阿根廷 src/app/shared/pipe/localize.ts - 127 + 131 @@ -2464,7 +2639,7 @@ 美属萨摩亚 src/app/shared/pipe/localize.ts - 129 + 133 @@ -2472,7 +2647,7 @@ 奥地利 src/app/shared/pipe/localize.ts - 131 + 135 @@ -2480,7 +2655,7 @@ 澳大利亚 src/app/shared/pipe/localize.ts - 133 + 137 @@ -2488,7 +2663,7 @@ 阿鲁巴 src/app/shared/pipe/localize.ts - 135 + 139 @@ -2496,7 +2671,7 @@ 奥兰群岛 src/app/shared/pipe/localize.ts - 137 + 141 @@ -2504,7 +2679,7 @@ 阿塞拜疆 src/app/shared/pipe/localize.ts - 139 + 143 @@ -2512,7 +2687,7 @@ 波斯尼亚和黑塞哥维那 src/app/shared/pipe/localize.ts - 141 + 145 @@ -2520,7 +2695,7 @@ 巴巴多斯 src/app/shared/pipe/localize.ts - 143 + 147 @@ -2528,7 +2703,7 @@ 孟加拉 src/app/shared/pipe/localize.ts - 145 + 149 @@ -2536,7 +2711,7 @@ 比利时 src/app/shared/pipe/localize.ts - 147 + 151 @@ -2544,7 +2719,7 @@ 布基纳法索 src/app/shared/pipe/localize.ts - 149 + 153 @@ -2552,7 +2727,7 @@ 保加利亚 src/app/shared/pipe/localize.ts - 151 + 155 @@ -2560,7 +2735,7 @@ 巴林 src/app/shared/pipe/localize.ts - 153 + 157 @@ -2568,7 +2743,7 @@ 布隆迪 src/app/shared/pipe/localize.ts - 155 + 159 @@ -2576,7 +2751,7 @@ 贝宁 src/app/shared/pipe/localize.ts - 157 + 161 @@ -2584,7 +2759,7 @@ 圣巴特尔米 src/app/shared/pipe/localize.ts - 159 + 163 @@ -2592,7 +2767,7 @@ 百慕大 src/app/shared/pipe/localize.ts - 161 + 165 @@ -2600,7 +2775,7 @@ 文莱 src/app/shared/pipe/localize.ts - 163 + 167 @@ -2608,7 +2783,7 @@ 玻利维亚 src/app/shared/pipe/localize.ts - 165 + 169 @@ -2616,7 +2791,7 @@ 英属南极领地 src/app/shared/pipe/localize.ts - 167 + 171 @@ -2624,7 +2799,7 @@ 巴西 src/app/shared/pipe/localize.ts - 169 + 173 @@ -2632,7 +2807,7 @@ 巴哈马 src/app/shared/pipe/localize.ts - 171 + 175 @@ -2640,7 +2815,7 @@ 不丹 src/app/shared/pipe/localize.ts - 173 + 177 @@ -2648,7 +2823,7 @@ 布维岛 src/app/shared/pipe/localize.ts - 175 + 179 @@ -2656,7 +2831,7 @@ 博茨瓦纳 src/app/shared/pipe/localize.ts - 177 + 181 @@ -2664,7 +2839,7 @@ 白俄罗斯 src/app/shared/pipe/localize.ts - 179 + 183 @@ -2672,7 +2847,7 @@ 伯利兹 src/app/shared/pipe/localize.ts - 181 + 185 @@ -2680,7 +2855,7 @@ 加拿大 src/app/shared/pipe/localize.ts - 183 + 187 @@ -2688,7 +2863,7 @@ 科科斯 {基灵} 群岛 src/app/shared/pipe/localize.ts - 185 + 189 @@ -2696,7 +2871,7 @@ 刚果 - 金夏沙 src/app/shared/pipe/localize.ts - 187 + 191 @@ -2704,7 +2879,7 @@ 中非共和国 src/app/shared/pipe/localize.ts - 189 + 193 @@ -2712,7 +2887,7 @@ 刚果 - 布拉柴维尔 src/app/shared/pipe/localize.ts - 191 + 195 @@ -2720,7 +2895,7 @@ 瑞士 src/app/shared/pipe/localize.ts - 193 + 197 @@ -2728,7 +2903,7 @@ 科特迪瓦 src/app/shared/pipe/localize.ts - 195 + 199 @@ -2736,7 +2911,7 @@ 库克群岛 src/app/shared/pipe/localize.ts - 197 + 201 @@ -2744,7 +2919,7 @@ 智利 src/app/shared/pipe/localize.ts - 199 + 203 @@ -2752,7 +2927,7 @@ 喀麦隆 src/app/shared/pipe/localize.ts - 201 + 205 @@ -2760,7 +2935,7 @@ 中国 src/app/shared/pipe/localize.ts - 203 + 207 @@ -2768,7 +2943,7 @@ 哥伦比亚 src/app/shared/pipe/localize.ts - 205 + 209 @@ -2776,7 +2951,7 @@ 哥斯达黎加 src/app/shared/pipe/localize.ts - 207 + 211 @@ -2784,7 +2959,7 @@ 古巴 src/app/shared/pipe/localize.ts - 209 + 213 @@ -2792,7 +2967,7 @@ 佛得角 src/app/shared/pipe/localize.ts - 211 + 215 @@ -2800,7 +2975,7 @@ 库拉索 src/app/shared/pipe/localize.ts - 213 + 217 @@ -2808,7 +2983,7 @@ 圣诞岛 src/app/shared/pipe/localize.ts - 215 + 219 @@ -2816,7 +2991,7 @@ 塞浦路斯 src/app/shared/pipe/localize.ts - 217 + 221 @@ -2824,7 +2999,7 @@ 捷克共和国 src/app/shared/pipe/localize.ts - 219 + 223 @@ -2832,7 +3007,7 @@ 德国 src/app/shared/pipe/localize.ts - 221 + 225 @@ -2840,7 +3015,7 @@ 吉布提 src/app/shared/pipe/localize.ts - 223 + 227 @@ -2848,7 +3023,7 @@ 丹麦 src/app/shared/pipe/localize.ts - 225 + 229 @@ -2856,7 +3031,7 @@ 多米尼加 src/app/shared/pipe/localize.ts - 227 + 231 @@ -2864,7 +3039,7 @@ 多米尼加共和国 src/app/shared/pipe/localize.ts - 229 + 233 @@ -2872,7 +3047,7 @@ 阿尔及利亚 src/app/shared/pipe/localize.ts - 231 + 235 @@ -2880,7 +3055,7 @@ 厄瓜多尔 src/app/shared/pipe/localize.ts - 233 + 237 @@ -2888,7 +3063,7 @@ 爱沙尼亚 src/app/shared/pipe/localize.ts - 235 + 239 @@ -2896,7 +3071,7 @@ 埃及 src/app/shared/pipe/localize.ts - 237 + 241 @@ -2904,7 +3079,7 @@ 西撒哈拉 src/app/shared/pipe/localize.ts - 239 + 243 @@ -2912,7 +3087,7 @@ 厄立特里亚国 src/app/shared/pipe/localize.ts - 241 + 245 @@ -2920,7 +3095,7 @@ 西班牙 src/app/shared/pipe/localize.ts - 243 + 247 @@ -2928,7 +3103,7 @@ 埃塞俄比亚 src/app/shared/pipe/localize.ts - 245 + 249 @@ -2936,7 +3111,7 @@ 芬兰 src/app/shared/pipe/localize.ts - 247 + 251 @@ -2944,7 +3119,7 @@ 斐济 src/app/shared/pipe/localize.ts - 249 + 253 @@ -2952,7 +3127,7 @@ 福克兰群岛 src/app/shared/pipe/localize.ts - 251 + 255 @@ -2960,7 +3135,7 @@ 密克罗尼西亚 src/app/shared/pipe/localize.ts - 253 + 257 @@ -2968,7 +3143,7 @@ 法罗群岛 src/app/shared/pipe/localize.ts - 255 + 259 @@ -2976,7 +3151,7 @@ 法国 src/app/shared/pipe/localize.ts - 257 + 261 @@ -2984,7 +3159,7 @@ 加蓬 src/app/shared/pipe/localize.ts - 259 + 263 @@ -2992,7 +3167,7 @@ 英国 src/app/shared/pipe/localize.ts - 261 + 265 @@ -3000,7 +3175,7 @@ 格林纳达 src/app/shared/pipe/localize.ts - 263 + 267 @@ -3008,7 +3183,7 @@ 格鲁吉亚 src/app/shared/pipe/localize.ts - 265 + 269 @@ -3016,7 +3191,7 @@ 法属圭亚那 src/app/shared/pipe/localize.ts - 267 + 271 @@ -3024,7 +3199,7 @@ 根西岛 src/app/shared/pipe/localize.ts - 269 + 273 @@ -3032,7 +3207,7 @@ 加纳 src/app/shared/pipe/localize.ts - 271 + 275 @@ -3040,7 +3215,7 @@ 直布罗陀 src/app/shared/pipe/localize.ts - 273 + 277 @@ -3048,7 +3223,7 @@ 格陵兰 src/app/shared/pipe/localize.ts - 275 + 279 @@ -3056,7 +3231,7 @@ 冈比亚 src/app/shared/pipe/localize.ts - 277 + 281 @@ -3064,7 +3239,7 @@ 几内亚 src/app/shared/pipe/localize.ts - 279 + 283 @@ -3072,7 +3247,7 @@ 瓜德罗普岛 src/app/shared/pipe/localize.ts - 281 + 285 @@ -3080,7 +3255,7 @@ 赤道几内亚 src/app/shared/pipe/localize.ts - 283 + 287 @@ -3088,7 +3263,7 @@ 希腊 src/app/shared/pipe/localize.ts - 285 + 289 @@ -3096,7 +3271,7 @@ 南乔治亚岛和南桑威奇群岛 src/app/shared/pipe/localize.ts - 287 + 291 @@ -3104,7 +3279,7 @@ 瓜地马拉 src/app/shared/pipe/localize.ts - 289 + 293 @@ -3112,7 +3287,7 @@ 关岛 src/app/shared/pipe/localize.ts - 291 + 295 @@ -3120,7 +3295,7 @@ 几内亚比绍 src/app/shared/pipe/localize.ts - 293 + 297 @@ -3128,7 +3303,7 @@ 圭亚那 src/app/shared/pipe/localize.ts - 295 + 299 @@ -3136,7 +3311,7 @@ 中国香港特别行政区 src/app/shared/pipe/localize.ts - 297 + 301 @@ -3144,7 +3319,7 @@ 赫德岛和麦克唐纳岛 src/app/shared/pipe/localize.ts - 299 + 303 @@ -3152,7 +3327,7 @@ 洪都拉斯 src/app/shared/pipe/localize.ts - 301 + 305 @@ -3160,7 +3335,7 @@ 克罗地亚 src/app/shared/pipe/localize.ts - 303 + 307 @@ -3168,7 +3343,7 @@ 海地 src/app/shared/pipe/localize.ts - 305 + 309 @@ -3176,7 +3351,7 @@ 匈牙利 src/app/shared/pipe/localize.ts - 307 + 311 @@ -3184,7 +3359,7 @@ 印尼 src/app/shared/pipe/localize.ts - 309 + 313 @@ -3192,7 +3367,7 @@ 爱尔兰 src/app/shared/pipe/localize.ts - 311 + 315 @@ -3200,7 +3375,7 @@ 以色列 src/app/shared/pipe/localize.ts - 313 + 317 @@ -3208,7 +3383,7 @@ 英国属地曼岛 src/app/shared/pipe/localize.ts - 315 + 319 @@ -3216,7 +3391,7 @@ 印度 src/app/shared/pipe/localize.ts - 317 + 321 @@ -3224,7 +3399,7 @@ 英属印度洋领地 src/app/shared/pipe/localize.ts - 319 + 323 @@ -3232,7 +3407,7 @@ 伊拉克 src/app/shared/pipe/localize.ts - 321 + 325 @@ -3240,7 +3415,7 @@ 伊朗 src/app/shared/pipe/localize.ts - 323 + 327 @@ -3248,7 +3423,7 @@ 冰岛 src/app/shared/pipe/localize.ts - 325 + 329 @@ -3256,7 +3431,7 @@ 意大利 src/app/shared/pipe/localize.ts - 327 + 331 @@ -3264,7 +3439,7 @@ 泽西岛 src/app/shared/pipe/localize.ts - 329 + 333 @@ -3272,7 +3447,7 @@ 牙买加 src/app/shared/pipe/localize.ts - 331 + 335 @@ -3280,7 +3455,7 @@ 约旦 src/app/shared/pipe/localize.ts - 333 + 337 @@ -3288,7 +3463,7 @@ 日本 src/app/shared/pipe/localize.ts - 335 + 339 @@ -3296,7 +3471,7 @@ 肯尼亚 src/app/shared/pipe/localize.ts - 337 + 341 @@ -3304,7 +3479,7 @@ 吉尔吉斯斯坦 src/app/shared/pipe/localize.ts - 339 + 343 @@ -3312,7 +3487,7 @@ 柬埔寨 src/app/shared/pipe/localize.ts - 341 + 345 @@ -3320,7 +3495,7 @@ 基里巴斯 src/app/shared/pipe/localize.ts - 343 + 347 @@ -3328,7 +3503,7 @@ 科摩罗 src/app/shared/pipe/localize.ts - 345 + 349 @@ -3336,7 +3511,7 @@ 圣基茨和尼维斯 src/app/shared/pipe/localize.ts - 347 + 351 @@ -3344,7 +3519,7 @@ 朝鲜 src/app/shared/pipe/localize.ts - 349 + 353 @@ -3352,7 +3527,7 @@ 南韩 src/app/shared/pipe/localize.ts - 351 + 355 @@ -3360,7 +3535,7 @@ 科威特 src/app/shared/pipe/localize.ts - 353 + 357 @@ -3368,7 +3543,7 @@ 开曼群岛 src/app/shared/pipe/localize.ts - 355 + 359 @@ -3376,7 +3551,7 @@ 哈萨克斯坦 src/app/shared/pipe/localize.ts - 357 + 361 @@ -3384,7 +3559,7 @@ 老挝 src/app/shared/pipe/localize.ts - 359 + 363 @@ -3392,7 +3567,7 @@ 黎巴嫩 src/app/shared/pipe/localize.ts - 361 + 365 @@ -3400,7 +3575,7 @@ 圣卢西亚岛 src/app/shared/pipe/localize.ts - 363 + 367 @@ -3408,7 +3583,7 @@ 列支敦斯登 src/app/shared/pipe/localize.ts - 365 + 369 @@ -3416,7 +3591,7 @@ 斯里兰卡 src/app/shared/pipe/localize.ts - 367 + 371 @@ -3424,7 +3599,7 @@ 利比里亚 src/app/shared/pipe/localize.ts - 369 + 373 @@ -3432,7 +3607,7 @@ 莱索托 src/app/shared/pipe/localize.ts - 371 + 375 @@ -3440,7 +3615,7 @@ 立陶宛 src/app/shared/pipe/localize.ts - 373 + 377 @@ -3448,7 +3623,7 @@ 卢森堡 src/app/shared/pipe/localize.ts - 375 + 379 @@ -3456,7 +3631,7 @@ 拉脱维亚 src/app/shared/pipe/localize.ts - 377 + 381 @@ -3464,7 +3639,7 @@ 利比亚 src/app/shared/pipe/localize.ts - 379 + 383 @@ -3472,7 +3647,7 @@ 摩洛哥 src/app/shared/pipe/localize.ts - 381 + 385 @@ -3480,7 +3655,7 @@ 摩纳哥 src/app/shared/pipe/localize.ts - 383 + 387 @@ -3488,7 +3663,7 @@ 摩尔多瓦 src/app/shared/pipe/localize.ts - 385 + 389 @@ -3496,7 +3671,7 @@ 黑山共和国 src/app/shared/pipe/localize.ts - 387 + 391 @@ -3504,7 +3679,7 @@ 法属圣马丁 src/app/shared/pipe/localize.ts - 389 + 393 @@ -3512,7 +3687,7 @@ 马达加斯加岛 src/app/shared/pipe/localize.ts - 391 + 395 @@ -3520,7 +3695,7 @@ 马绍尔群岛 src/app/shared/pipe/localize.ts - 393 + 397 @@ -3528,7 +3703,7 @@ 北马其顿 src/app/shared/pipe/localize.ts - 395 + 399 @@ -3536,7 +3711,7 @@ 马里 src/app/shared/pipe/localize.ts - 397 + 401 @@ -3544,7 +3719,7 @@ 缅甸 src/app/shared/pipe/localize.ts - 399 + 403 @@ -3552,7 +3727,7 @@ 蒙古 src/app/shared/pipe/localize.ts - 401 + 405 @@ -3560,7 +3735,7 @@ 中国澳门特别行政区 src/app/shared/pipe/localize.ts - 403 + 407 @@ -3568,7 +3743,7 @@ 北马里亚纳群岛 src/app/shared/pipe/localize.ts - 405 + 409 @@ -3576,7 +3751,7 @@ 马提尼克 src/app/shared/pipe/localize.ts - 407 + 411 @@ -3584,7 +3759,7 @@ 毛里塔尼亚 src/app/shared/pipe/localize.ts - 409 + 413 @@ -3592,7 +3767,7 @@ 蒙特色拉特岛 src/app/shared/pipe/localize.ts - 411 + 415 @@ -3600,7 +3775,7 @@ 马耳他 src/app/shared/pipe/localize.ts - 413 + 417 @@ -3608,7 +3783,7 @@ 毛里求斯 src/app/shared/pipe/localize.ts - 415 + 419 @@ -3616,7 +3791,7 @@ 马尔代夫 src/app/shared/pipe/localize.ts - 417 + 421 @@ -3624,7 +3799,7 @@ 马拉维 src/app/shared/pipe/localize.ts - 419 + 423 @@ -3632,7 +3807,7 @@ 墨西哥 src/app/shared/pipe/localize.ts - 421 + 425 @@ -3640,7 +3815,7 @@ 马来西亚 src/app/shared/pipe/localize.ts - 423 + 427 @@ -3648,7 +3823,7 @@ 莫桑比克 src/app/shared/pipe/localize.ts - 425 + 429 @@ -3656,7 +3831,7 @@ 纳米比亚 src/app/shared/pipe/localize.ts - 427 + 431 @@ -3664,7 +3839,7 @@ 新喀里多尼亚 src/app/shared/pipe/localize.ts - 429 + 433 @@ -3672,7 +3847,7 @@ 尼日尔 src/app/shared/pipe/localize.ts - 431 + 435 @@ -3680,7 +3855,7 @@ 诺福克岛 src/app/shared/pipe/localize.ts - 433 + 437 @@ -3688,7 +3863,7 @@ 尼日利亚 src/app/shared/pipe/localize.ts - 435 + 439 @@ -3696,7 +3871,7 @@ 尼加拉瓜 src/app/shared/pipe/localize.ts - 437 + 441 @@ -3704,7 +3879,7 @@ 荷兰 src/app/shared/pipe/localize.ts - 439 + 443 @@ -3712,7 +3887,7 @@ 挪威 src/app/shared/pipe/localize.ts - 441 + 445 @@ -3720,7 +3895,7 @@ 尼泊尔 src/app/shared/pipe/localize.ts - 443 + 447 @@ -3728,7 +3903,7 @@ 瑙鲁 src/app/shared/pipe/localize.ts - 445 + 449 @@ -3736,7 +3911,7 @@ 纽埃 src/app/shared/pipe/localize.ts - 447 + 451 @@ -3744,7 +3919,7 @@ 新西兰 src/app/shared/pipe/localize.ts - 449 + 453 @@ -3752,7 +3927,7 @@ 阿曼 src/app/shared/pipe/localize.ts - 451 + 455 @@ -3760,7 +3935,7 @@ 巴拿马 src/app/shared/pipe/localize.ts - 453 + 457 @@ -3768,7 +3943,7 @@ 秘鲁 src/app/shared/pipe/localize.ts - 455 + 459 @@ -3776,7 +3951,7 @@ 法属玻里尼西亚 src/app/shared/pipe/localize.ts - 457 + 461 @@ -3784,7 +3959,7 @@ 巴布亚新几内亚 src/app/shared/pipe/localize.ts - 459 + 463 @@ -3792,7 +3967,7 @@ 菲律宾 src/app/shared/pipe/localize.ts - 461 + 465 @@ -3800,7 +3975,7 @@ 巴基斯坦 src/app/shared/pipe/localize.ts - 463 + 467 @@ -3808,7 +3983,7 @@ 波兰 src/app/shared/pipe/localize.ts - 465 + 469 @@ -3816,7 +3991,7 @@ 圣皮埃尔和密克隆群岛 src/app/shared/pipe/localize.ts - 467 + 471 @@ -3824,7 +3999,7 @@ 皮特凯恩群岛 src/app/shared/pipe/localize.ts - 469 + 473 @@ -3832,7 +4007,7 @@ 波多黎各 src/app/shared/pipe/localize.ts - 471 + 475 @@ -3840,7 +4015,7 @@ 巴勒斯坦领土 src/app/shared/pipe/localize.ts - 473 + 477 @@ -3848,7 +4023,7 @@ 葡萄牙 src/app/shared/pipe/localize.ts - 475 + 479 @@ -3856,7 +4031,7 @@ 帕劳群岛 src/app/shared/pipe/localize.ts - 477 + 481 @@ -3864,7 +4039,7 @@ 巴拉圭 src/app/shared/pipe/localize.ts - 479 + 483 @@ -3872,7 +4047,7 @@ 卡塔尔 src/app/shared/pipe/localize.ts - 481 + 485 @@ -3880,7 +4055,7 @@ 留尼汪岛 src/app/shared/pipe/localize.ts - 483 + 487 @@ -3888,7 +4063,7 @@ 罗马尼亚 src/app/shared/pipe/localize.ts - 485 + 489 @@ -3896,7 +4071,7 @@ 塞尔维亚 src/app/shared/pipe/localize.ts - 487 + 491 @@ -3904,7 +4079,7 @@ 俄罗斯 src/app/shared/pipe/localize.ts - 489 + 493 @@ -3912,7 +4087,7 @@ 卢旺达 src/app/shared/pipe/localize.ts - 491 + 495 @@ -3920,7 +4095,7 @@ 沙特阿拉伯 src/app/shared/pipe/localize.ts - 493 + 497 @@ -3928,7 +4103,7 @@ 所罗门群岛 src/app/shared/pipe/localize.ts - 495 + 499 @@ -3936,7 +4111,7 @@ 塞舌尔 src/app/shared/pipe/localize.ts - 497 + 501 @@ -3944,7 +4119,7 @@ 苏丹 src/app/shared/pipe/localize.ts - 499 + 503 @@ -3952,7 +4127,7 @@ 瑞典 src/app/shared/pipe/localize.ts - 501 + 505 @@ -3960,7 +4135,7 @@ 新加坡 src/app/shared/pipe/localize.ts - 503 + 507 @@ -3968,7 +4143,7 @@ 圣赫勒拿 src/app/shared/pipe/localize.ts - 505 + 509 @@ -3976,7 +4151,7 @@ 斯洛文尼亚 src/app/shared/pipe/localize.ts - 507 + 511 @@ -3984,7 +4159,7 @@ 斯瓦尔巴和扬马延 src/app/shared/pipe/localize.ts - 509 + 513 @@ -3992,7 +4167,7 @@ 斯洛伐克 src/app/shared/pipe/localize.ts - 511 + 515 @@ -4000,7 +4175,7 @@ 塞拉利昂 src/app/shared/pipe/localize.ts - 513 + 517 @@ -4008,7 +4183,7 @@ 圣马力诺 src/app/shared/pipe/localize.ts - 515 + 519 @@ -4016,7 +4191,7 @@ 塞内加尔 src/app/shared/pipe/localize.ts - 517 + 521 @@ -4024,7 +4199,7 @@ 索马里 src/app/shared/pipe/localize.ts - 519 + 523 @@ -4032,7 +4207,7 @@ 苏里南 src/app/shared/pipe/localize.ts - 521 + 525 @@ -4040,7 +4215,7 @@ 南苏丹 src/app/shared/pipe/localize.ts - 523 + 527 @@ -4048,7 +4223,7 @@ 圣多美和普林西比 src/app/shared/pipe/localize.ts - 525 + 529 @@ -4056,7 +4231,7 @@ 萨尔瓦多 src/app/shared/pipe/localize.ts - 527 + 531 @@ -4064,7 +4239,7 @@ 圣马丁岛(荷兰部分) src/app/shared/pipe/localize.ts - 529 + 533 @@ -4072,7 +4247,7 @@ 叙利亚 src/app/shared/pipe/localize.ts - 531 + 535 @@ -4080,7 +4255,7 @@ 斯威士兰 src/app/shared/pipe/localize.ts - 533 + 537 @@ -4088,7 +4263,7 @@ 特克斯和凯科斯群岛 src/app/shared/pipe/localize.ts - 535 + 539 @@ -4096,7 +4271,7 @@ 乍得 src/app/shared/pipe/localize.ts - 537 + 541 @@ -4104,7 +4279,7 @@ 法属南部领土 src/app/shared/pipe/localize.ts - 539 + 543 @@ -4112,7 +4287,7 @@ 多哥 src/app/shared/pipe/localize.ts - 541 + 545 @@ -4120,7 +4295,7 @@ 泰国 src/app/shared/pipe/localize.ts - 543 + 547 @@ -4128,7 +4303,7 @@ 塔吉克斯坦 src/app/shared/pipe/localize.ts - 545 + 549 @@ -4136,7 +4311,7 @@ 托克劳 src/app/shared/pipe/localize.ts - 547 + 551 @@ -4144,7 +4319,7 @@ 东帝汶 src/app/shared/pipe/localize.ts - 549 + 553 @@ -4152,7 +4327,7 @@ 土库曼斯坦 src/app/shared/pipe/localize.ts - 551 + 555 @@ -4160,7 +4335,7 @@ 突尼斯 src/app/shared/pipe/localize.ts - 553 + 557 @@ -4168,7 +4343,7 @@ 汤加 src/app/shared/pipe/localize.ts - 555 + 559 @@ -4176,7 +4351,7 @@ 土耳其 src/app/shared/pipe/localize.ts - 557 + 561 @@ -4184,7 +4359,7 @@ 特立尼达和多巴哥 src/app/shared/pipe/localize.ts - 559 + 563 @@ -4192,7 +4367,7 @@ 图瓦卢 src/app/shared/pipe/localize.ts - 561 + 565 @@ -4200,7 +4375,7 @@ 台湾 src/app/shared/pipe/localize.ts - 563 + 567 @@ -4208,7 +4383,7 @@ 坦桑尼亚 src/app/shared/pipe/localize.ts - 565 + 569 @@ -4216,7 +4391,7 @@ 乌克兰 src/app/shared/pipe/localize.ts - 567 + 571 @@ -4224,7 +4399,7 @@ 乌干达 src/app/shared/pipe/localize.ts - 569 + 573 @@ -4232,7 +4407,7 @@ 美国外岛 src/app/shared/pipe/localize.ts - 571 + 575 @@ -4240,7 +4415,7 @@ 美国 src/app/shared/pipe/localize.ts - 573 + 577 @@ -4248,7 +4423,7 @@ 乌拉圭 src/app/shared/pipe/localize.ts - 575 + 579 @@ -4256,7 +4431,7 @@ 乌兹别克 src/app/shared/pipe/localize.ts - 577 + 581 @@ -4264,7 +4439,7 @@ 梵蒂冈 src/app/shared/pipe/localize.ts - 579 + 583 @@ -4272,7 +4447,7 @@ 圣文森特和格林纳丁斯 src/app/shared/pipe/localize.ts - 581 + 585 @@ -4280,7 +4455,7 @@ 委内瑞拉 src/app/shared/pipe/localize.ts - 583 + 587 @@ -4288,7 +4463,7 @@ 英属维尔京群岛 src/app/shared/pipe/localize.ts - 585 + 589 @@ -4296,7 +4471,7 @@ 美属维尔京群岛 src/app/shared/pipe/localize.ts - 587 + 591 @@ -4304,7 +4479,7 @@ 越南 src/app/shared/pipe/localize.ts - 589 + 593 @@ -4312,7 +4487,7 @@ 瓦努阿图 src/app/shared/pipe/localize.ts - 591 + 595 @@ -4320,7 +4495,7 @@ 瓦利斯群岛和富图纳群岛 src/app/shared/pipe/localize.ts - 593 + 597 @@ -4328,7 +4503,7 @@ 萨摩亚 src/app/shared/pipe/localize.ts - 595 + 599 @@ -4336,7 +4511,7 @@ Kosovo src/app/shared/pipe/localize.ts - 597 + 601 @@ -4344,7 +4519,7 @@ 也门 src/app/shared/pipe/localize.ts - 599 + 603 @@ -4352,7 +4527,7 @@ 马约特岛 src/app/shared/pipe/localize.ts - 601 + 605 @@ -4360,7 +4535,7 @@ 南非 src/app/shared/pipe/localize.ts - 603 + 607 @@ -4368,7 +4543,7 @@ 赞比亚 src/app/shared/pipe/localize.ts - 605 + 609 @@ -4376,10 +4551,11 @@ 津巴布韦 src/app/shared/pipe/localize.ts - 607 + 611 - + Add or edit affiliation 添加或编辑机构 @@ -4389,7 +4565,7 @@ This field should follow pattern for "Email". - 字段应遵循 {{ pattern }} 模式。 + 字段应遵循 Email 模式。 src/app/affiliation/affiliation-update.component.html 25 @@ -4426,9 +4602,21 @@ src/app/affiliation/affiliation-update.component.html 188 + + src/app/member/member-update.component.html + 61 + + + src/app/member/member-update.component.html + 105 + + + src/app/member/member-update.component.html + 140 + - Org Name + Organization Name 组织名称 src/app/affiliation/affiliation-update.component.html @@ -4436,7 +4624,7 @@ - Org City + City 城市 src/app/affiliation/affiliation-update.component.html @@ -4444,7 +4632,7 @@ - Org Region + State/Region 州/地区 src/app/affiliation/affiliation-update.component.html @@ -4452,23 +4640,25 @@ - Org Country + Country 国家/地区 src/app/affiliation/affiliation-update.component.html 141 - - Disambiguation Source + + Organization ID Source 组织 ID 源 src/app/affiliation/affiliation-update.component.html 170 - - Disambiguated Org Id + + Organization ID 组织 ID src/app/affiliation/affiliation-update.component.html @@ -4476,27 +4666,27 @@ - This field is required. GRID Organization ID should start with "grid.", RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with 0 - 此字段是必填字段。GRID 组织 ID 应以 grid. 开头,例如 grid.12344;或者应该是有效的 grid URL,RINGGOLD 组织 ID 应该是一个数字。ROR ID 必须是 9 个字符,以 0 开头。 + This field is required. GRID Organization ID should start with "grid.", + RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with + 0 + 此字段是必填字段。GRID 组织 ID 应以 grid. 开头,例如 grid.12344;或者应该是有效的 grid URL,RINGGOLD + 组织 ID 应该是一个数字。ROR ID 必须是 9 个字符,以 0 开头。 src/app/affiliation/affiliation-update.component.html 223 - This field cannot be longer than 4000 characters. - 此字段长度不能超过 {{ max }} 个字符。 + This field cannot be longer than + characters. + 此字段长度不能超过 个字符。 - src/app/affiliation/affiliation-update.component.html - 255 - - - src/app/affiliation/affiliation-update.component.html - 278 + src/app/affiliation/affiliation-update.component.ts + 195 - src/app/affiliation/affiliation-update.component.html - 293 + src/app/affiliation/affiliation-update.component.ts + 197 @@ -4504,7 +4694,7 @@ 开始年份 src/app/affiliation/affiliation-update.component.html - 305 + 293 @@ -4512,11 +4702,11 @@ src/app/affiliation/affiliation-update.component.html - 314 + 302 src/app/affiliation/affiliation-update.component.html - 364 + 352 @@ -4524,7 +4714,7 @@ 开始月份 src/app/affiliation/affiliation-update.component.html - 323 + 311 @@ -4532,11 +4722,11 @@ src/app/affiliation/affiliation-update.component.html - 332 + 320 src/app/affiliation/affiliation-update.component.html - 382 + 370 @@ -4544,7 +4734,7 @@ 开始日期 src/app/affiliation/affiliation-update.component.html - 341 + 329 @@ -4552,11 +4742,11 @@ src/app/affiliation/affiliation-update.component.html - 344 + 332 src/app/affiliation/affiliation-update.component.html - 394 + 382 @@ -4564,7 +4754,7 @@ 结束年 src/app/affiliation/affiliation-update.component.html - 355 + 343 @@ -4572,7 +4762,7 @@ 结束月份 src/app/affiliation/affiliation-update.component.html - 373 + 361 @@ -4580,7 +4770,7 @@ 结束日期 src/app/affiliation/affiliation-update.component.html - 391 + 379 @@ -4588,7 +4778,7 @@ 开始日期不能晚于结束日期。 src/app/affiliation/affiliation-update.component.html - 400 + 388 @@ -4596,7 +4786,7 @@ 外部 ID 类型 src/app/affiliation/affiliation-update.component.html - 411 + 399 @@ -4604,15 +4794,16 @@ 外部 ID URL src/app/affiliation/affiliation-update.component.html - 441 + 429 - Please do not forget to download and send permission links to your researcher once the assertion has been saved. + Please do not forget to download and send permission links to your researcher once + the assertion has been saved. 注意:断言保存后,别忘了下载权限链接并将其发送给研究人员。 src/app/affiliation/affiliation-update.component.html - 457 + 445 @@ -4623,9 +4814,13 @@ 8 - - Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the portal and the user's ORCID record - 是否确定删除 的这一附属关系?该附属关系将从门户网站和用户的 ORCID 记录中删除。 + + Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the + portal and the user's ORCID record + 是否确定删除 + 的这一附属关系?该附属关系将从门户网站和用户的 ORCID 记录中删除。 src/app/affiliation/affiliation-delete.component.ts 40 @@ -4636,7 +4831,7 @@ 机构已创建 src/app/shared/pipe/localize.ts - 23 + 27 @@ -4644,7 +4839,7 @@ 机构已更新 src/app/shared/pipe/localize.ts - 25 + 29 @@ -4652,7 +4847,7 @@ 机构已删除 src/app/shared/pipe/localize.ts - 27 + 31 @@ -4660,65 +4855,388 @@ 删除从属关系时出现问题 src/app/shared/pipe/localize.ts - 29 + 33 - + Send permission notifications 发送权限通知 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 3 - - A request to send notifications to your users is already in progress. Please try again later. + + A request to send notifications to your users is already in progress. Please try + again later. 向用户发送通知的请求已经在进行中。请稍后再试。 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 7 - - Are you sure that you would like ORCID to send permission links to your researchers for the affiliations that are pending? + + Are you sure that you would like ORCID to send permission links to your researchers + for the affiliations that are pending? 只要研究员有状态为“待处理”的从属项目,系统就会向他们发送权限通知。 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 10 - + Notification language 通知语言 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 11 - + What language should the notification be sent in? 通知应以哪种语言发送? - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 12 - + Send notifications 发送通知 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 23 - - Notification process has now started. We will email you as soon as the process has completed. + + Notification process has now started. We will email you as soon as the process has + completed. 通知流程已启动。系统将尽快通过电子邮件通知您。 + + src/app/shared/pipe/localize.ts + 25 + + + + You have already granted + 您已授予 + + src/app/landing-page/landing-page.component.html + 13 + + + + permission to update your ORCID record + 权限以更新您的 ORCID 记录 + + src/app/landing-page/landing-page.component.html + 16 + + + + Oops, something went wrong and we were not able to fetch your ORCID iD + 哎呀,出错了,我们无法获取您的 ORCID iD + + src/app/landing-page/landing-page.component.html + 33 + + + + Oops, you have denied access. + 哎呀,您的访问被拒。 + + src/app/landing-page/landing-page.component.html + 39 + + + + will not be able to update your ORCID record. + 将无法更新您的 ORCID 记录。 + + src/app/landing-page/landing-page.component.html + 42 + + + + If this was a mistake, click the button below to grant access. + 如果这是错误,请单击下方的按钮以授予权限。 + + src/app/landing-page/landing-page.component.html + 45 + + + + If you find that data added to your ORCID record is incorrect, please contact + 如果您发现添加到您的 ORCID 记录的数据错误,请联系 + + src/app/landing-page/landing-page.component.ts + 78 + + + + This authorization link has already been used. Please contact for a new authorization link. + 该授权链接已被使用。请联系 获取新的授权链接。 + + src/app/landing-page/landing-page.component.ts + 79 + + + + Allow to update my ORCID record. + 允许 更新我的 ORCID 记录 + + src/app/landing-page/landing-page.component.ts + 80 + + + + You have successfully granted + permission to update your ORCID record, and your record has been updated with affiliation + information. + 您已成功向 授予更新您的 ORCID + 记录的权限,您的记录将随机构信息一同更新。 + + src/app/landing-page/landing-page.component.ts + 81 + + + + Thanks, ! + 非常感谢, + + src/app/landing-page/landing-page.component.ts + 172 + + + + Member details + 会员详情 + + src/app/member/member-detail.component.html + 4 + + + + Salesforce Id + Salesforce ID + + src/app/member/member-detail.component.html + 9 + + + src/app/member/member-update.component.html + 41 + + + src/app/member/members.component.html + 59 + + + + Parent Salesforce Id + 父 Salesforce ID + + src/app/member/member-detail.component.html + 13 + + + src/app/member/member-update.component.html + 71 + + + src/app/member/members.component.html + 83 + + + + Member Name + 会员姓名 + + src/app/member/member-detail.component.html + 17 + + + src/app/member/member-update.component.html + 86 + + + src/app/member/members.component.html + 67 + + + + Client ID + 客户 ID + + src/app/member/member-detail.component.html + 21 + + + src/app/member/member-update.component.html + 115 + + + + Type + 类型 + + src/app/member/member-detail.component.html + 25 + + + + Is Consortium Lead + 联盟代表 + + src/app/member/member-detail.component.html + 29 + + + src/app/member/member-update.component.html + 154 + + + src/app/member/members.component.html + 75 + + + + Assertion Service Enabled + 已启用断言 + + src/app/member/member-detail.component.html + 35 + + + src/app/member/member-update.component.html + 169 + + + src/app/member/members.component.html + 91 + + + + Status + 状态 + + src/app/member/member-detail.component.html + 41 + + + + Created Date + 已创建 + + src/app/member/member-detail.component.html + 45 + + + + Last Modified Date + 上次修改时间 + + src/app/member/member-detail.component.html + 49 + + + src/app/member/members.component.html + 99 + + + + Add or edit member + 添加或编辑会员 + + src/app/member/member-update.component.html + 8 + + + + Note: Client ID must have User OBO enabled AND + 注:客户端 ID 必须会员 OBO 启用 AND + + src/app/member/member-update.component.html + 120 + + + + added as a Redirect URI in + 添加为 Redirect URI 于 + + src/app/member/member-update.component.html + 124 + + + + Manage members + 管理会员 + + src/app/member/members.component.html + 2 + + + + Add member + 添加会员 + + src/app/member/members.component.html + 11 + + + + Import members from CSV + 从 CSV 导入会员 + + src/app/member/members.component.html + 19 + + + + No members to show + 没有可显示的会员 + + src/app/member/members.component.html + 50 + + + + Member created + 会员已创建 src/app/shared/pipe/localize.ts 21 + + Member updated successfully + 会员更新成功 + + src/app/shared/pipe/localize.ts + 23 + + \ No newline at end of file diff --git a/ui/src/i18n/messages.zh-TW.xlf b/ui/src/i18n/messages.zh-TW.xlf index 4a4c43350..fe8fa9731 100644 --- a/ui/src/i18n/messages.zh-TW.xlf +++ b/ui/src/i18n/messages.zh-TW.xlf @@ -70,8 +70,10 @@ - Slide of - Slide of + Slide of + + Slide of + Currently selected slide number read by screen reader node_modules/src/ngb-config.ts @@ -287,8 +289,12 @@ - Failed to sign in! Please check your credentials and try again. - 登入失敗!請檢查您的憑證並再試一次。 + Failed to + sign in! Please + check your credentials and try again. + + 登入失敗! + 請檢查您的憑證並再試一次。 src/app/account/login/login.component.html 6 @@ -302,7 +308,8 @@ 10 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 22 @@ -318,7 +325,8 @@ 16 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 28 @@ -386,15 +394,21 @@ Reset your password 重設您的密碼 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 4 - Email address isn't registered! Please check and try again. - 電子郵件地址尚未登錄! 請在檢查後再試一次 - - src/app/account/password/password-reset-init.component.html + Email + address isn't registered! Please check and try again. + + 電子郵件地址尚未登錄! + 請在檢查後再試一次 + + + src/app/account/password/password-reset-init.component.html 7 @@ -402,7 +416,8 @@ Enter the email address you used to register. 輸入您使用的電子郵件地址以登錄 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 11 @@ -410,7 +425,8 @@ Check your emails for details on how to reset your password. 請查收您的電子郵件,以獲得重設密碼的相關資訊。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 15 @@ -418,7 +434,8 @@ Your email is required. 需要您的電子郵件。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 42 @@ -426,7 +443,8 @@ Your email is invalid. 您的電子郵件無效。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 49 @@ -434,7 +452,8 @@ Your email is required to be at least 5 characters. 您的電子郵件需至少有 5 個字元。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 56 @@ -442,7 +461,8 @@ Your email cannot be longer than 100 characters. 您的電子郵件不能超過 50 字元。 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 64 @@ -450,7 +470,8 @@ Reset 重設密碼 - src/app/account/password/password-reset-init.component.html + + src/app/account/password/password-reset-init.component.html 75 @@ -463,8 +484,10 @@ - Settings saved! - 設定已儲存! + Settings + saved! + + 設定已儲存! src/app/account/settings/settings.component.html 8 @@ -579,7 +602,9 @@ - Add extra security to your ORCID member portal account by enabling two-factor authentication. Each time you sign in, you'll be prompted to enter a six-digit code we send to your preferred authentication application. + Add extra security to your ORCID member portal account by enabling two-factor + authentication. Each time you sign in, you'll be prompted to enter a six-digit code + we send to your preferred authentication application. 透過啟用雙重認證,為您的 ORCID 成員入口帳戶增添額外的安全性。每次登入時,系統都會提示您輸入我們傳送至您首選認證應用程式的六位數代碼。 src/app/account/settings/settings.component.html @@ -603,16 +628,36 @@ - Install a two-factor authentication appA 2FA app is required to create the six-digit code you need to access your account each time you sign in. Most apps are for mobile devices; some are also available as desktop or web-based apps. Download and install your preferred 2FA app, such as Google Authenticator, FreeOTP, or Authy. - 安裝雙重認證 app您需要一個雙重認證 app 來創建您每次登入帳戶時所需的六位數代碼。多數 app 適用於行動裝置,部分 app 還能在電腦桌面使用,或是使用網頁型 app。下載並安裝您喜歡的雙重認證 app,例如 Google AuthenticatorFreeOTP,或 Authy + Install a two-factor authentication appA 2FA app is required to create the six-digit code you + need to access your account each time you sign in. Most apps are for mobile devices; some + are also available as desktop or web-based apps. Download and install your preferred 2FA + app, such as Google + Authenticator, + FreeOTP, or Authy. + 安裝雙重認證 app您需要一個雙重認證 + app 來創建您每次登入帳戶時所需的六位數代碼。多數 app 適用於行動裝置,部分 app 還能在電腦桌面使用,或是使用網頁型 app。下載並安裝您喜歡的雙重認證 app,例如 Google + Authenticator + FreeOTP,或 Authy src/app/account/settings/settings.component.html 166 - Scan this QR code with your deviceOpen your 2FA app and scan the image below. - 使用您的裝置掃描此 QR 碼開啟您的雙重認證 app 並掃描下方圖片。 + Scan this QR code with your deviceOpen your 2FA app and scan the image below. + 使用您的裝置掃描此 QR 碼開啟您的雙重認證 + app 並掃描下方圖片。 src/app/account/settings/settings.component.html 174 @@ -643,8 +688,12 @@ - Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, your 2FA app will display a six-digit code. Enter this code in the box below and click Save. - 輸入 app 中的六位數代碼掃描 QR 碼或輸入簡訊代碼後,您的雙重認證 app 便會顯示一個六位數代碼,將此代碼輸入下方選框後點擊「儲存」。 + Enter the six-digit code from the appAfter scanning the QR code or entering in the text code, + your 2FA app will display a six-digit code. Enter this code in the box below and click + Save. + 輸入 app 中的六位數代碼掃描 + QR 碼或輸入簡訊代碼後,您的雙重認證 app 便會顯示一個六位數代碼,將此代碼輸入下方選框後點擊「儲存」。 src/app/account/settings/settings.component.html 205 @@ -667,7 +716,8 @@ - Make a note of the following backup codes, this is the only time they will be shown. + Make a note of the following backup codes, this is the only time they will be + shown. 請記下以下的備份代碼,因為這個代碼只會出現一次。 src/app/account/settings/settings.component.html @@ -868,23 +918,29 @@ Password for (You) - 的密碼 (您的) + + 的密碼 (您的) src/app/account/password/password.component.ts 34 - Password changed! - 密碼已變更! + Password + changed! + + 密碼已變更! src/app/account/password/password.component.html 7 - An error has occurred! The password could not be changed. - 發生錯誤! 無法變更密碼。 + An error + has occurred! + The password could not be changed. + + 發生錯誤! 無法變更密碼。 src/app/account/password/password.component.html 10 @@ -894,7 +950,8 @@ The password and its confirmation do not match! 密碼與確認用密碼不相符! - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 62 @@ -922,7 +979,8 @@ Your password is required. 需要您的密碼。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 91 @@ -938,7 +996,8 @@ New password 新密碼 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 70 @@ -950,7 +1009,8 @@ New password 新密碼 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 77 @@ -962,7 +1022,8 @@ Your password is required to be at least 4 characters. 您的密碼至少必須有 4 個字元。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 98 @@ -974,7 +1035,8 @@ Your password cannot be longer than 50 characters. 您的密碼不能超過 50 個字元。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 105 @@ -986,7 +1048,8 @@ New password confirmation 新的確認用密碼 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 114 @@ -998,7 +1061,8 @@ Confirm the new password 確認新密碼 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 121 @@ -1010,7 +1074,8 @@ Your password confirmation is required. 需要您的確認密碼。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 135 @@ -1022,7 +1087,8 @@ Your password confirmation is required to be at least 4 characters. 您的確認用密碼必須至少為 4 個字元。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 142 @@ -1034,7 +1100,8 @@ Your password confirmation cannot be longer than 50 characters. 您的確認用密碼長度不能超過 50 個字元。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 149 @@ -1062,55 +1129,78 @@ Reset password 重設密碼 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 4 - The activation key is missing. - 缺少啟動金鑰 - - src/app/account/password/password-reset-finish.component.html + The + activation key is missing. + + 缺少啟動金鑰 + + + src/app/account/password/password-reset-finish.component.html 7 - This activation key is invalid. - 啟用金鑰無效。 - - src/app/account/password/password-reset-finish.component.html + This + activation key is invalid. + + 啟用金鑰無效。 + + + src/app/account/password/password-reset-finish.component.html 11 - This activation has expired. - 啟動金鑰已過期。 - - src/app/account/password/password-reset-finish.component.html + This + activation has expired. + + 啟動金鑰已過期。 + + + src/app/account/password/password-reset-finish.component.html 15 - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. - ORCID Member Portal activation links are only valid for 24 hours. It looks like this link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It looks like this + link has expired. + ORCID Member Portal activation links are only valid for 24 hours. It + looks like this link has expired. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 20 - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. - To make sure you can activate your Member Portal account we have sent a new activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a new + activation link to your registered email address. + To make sure you can activate your Member Portal account we have sent a + new activation link to your registered email address. - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 26 - If you are still having problems activating your account or have not received your new activation link please contact our support team please contact us at membership@orcid.org. - If you are still having problems activating your account or have not received your new activation link, please contact us at membership@orcid.org. - - src/app/account/password/password-reset-finish.component.html + If you are still having problems activating your account or have not received your + new activation link please contact our support team please contact us at + membership@orcid.org. + If you are still having problems activating your account or have not + received your new activation link, please contact us at membership@orcid.org. + + + src/app/account/password/password-reset-finish.component.html 32 @@ -1118,23 +1208,30 @@ Choose a new password 請選擇一個新密碼 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 39 - Your password couldn't be reset. Remember a password request is only valid for 24 hours. + Your password couldn't be reset. Remember a password request is only valid for + 24 hours. 無法重設您的密碼。請記得密碼要求只在 24 小時內有效。 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 43 - Your password has been reset. Please - 已重設您的密碼。 - - src/app/account/password/password-reset-finish.component.html + Your + password has been reset. Please + + 已重設您的密碼。 + + + src/app/account/password/password-reset-finish.component.html 50 @@ -1142,7 +1239,8 @@ sign in 登入 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 58 @@ -1150,7 +1248,8 @@ Reset Password 認證新密碼 - src/app/account/password/password-reset-finish.component.html + + src/app/account/password/password-reset-finish.component.html 159 @@ -1182,7 +1281,8 @@ Password strength: 密碼強度: - src/app/account/password/password-strength.component.html + + src/app/account/password/password-strength.component.html 2 @@ -1365,6 +1465,14 @@ src/app/affiliation/affiliation-detail.component.html 143 + + src/app/member/member-detail.component.html + 47 + + + src/app/member/member-detail.component.html + 51 + src/app/user/user-detail.component.html 81 @@ -1393,6 +1501,10 @@ src/app/affiliation/affiliation-detail.component.html 230 + + src/app/member/member-detail.component.html + 61 + src/app/user/user-detail.component.html 95 @@ -1409,6 +1521,14 @@ src/app/affiliation/affiliations.component.html 220 + + src/app/member/member-detail.component.html + 66 + + + src/app/member/members.component.html + 151 + src/app/user/user-detail.component.html 103 @@ -1450,17 +1570,23 @@ 17 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 34 src/app/affiliation/affiliation-update.component.html - 465 + 453 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 20 + + src/app/member/member-update.component.html + 186 + src/app/user/user-delete.component.html 14 @@ -1479,7 +1605,11 @@ 儲存 src/app/affiliation/affiliation-update.component.html - 468 + 456 + + + src/app/member/member-update.component.html + 189 src/app/user/user-update.component.html @@ -1521,6 +1651,10 @@ src/app/affiliation/affiliations.component.html 104 + + src/app/member/members.component.html + 32 + src/app/user/users.component.html 32 @@ -1555,19 +1689,28 @@ - Showing - of items. - 顯示 項物件中的 - 項。 + Showing - + of items. + 顯示 項物件中的 - 項。 src/app/affiliation/affiliations.component.ts - 228 + 227 + + + src/app/member/members.component.ts + 160 src/app/user/users.component.ts 230 - - Are you sure you want to transfer ownership? You are about to transfer ownership of this organization account. If you are the organization owner after transferring ownership, you will no longer have access to administrative functions, such as managing users. + + Are you sure you want to transfer ownership? You are about to transfer ownership of + this organization account. If you are the organization owner after transferring ownership, + you will no longer have access to administrative functions, such as managing users. 您確定要轉移所有權嗎?您即將轉移此組織帳號的所有權。如您為組織擁有者,在轉移完成後就無法繼續使用如管理用戶等行政功能。 src/app/user/user-update.component.ts @@ -1595,7 +1738,7 @@ 你確定要刪除用戶 嗎? src/app/user/user-delete.component.ts - 47 + 44 @@ -1627,7 +1770,8 @@ - Oops! There was a problem processing your data. Pleases fix the errors below and try again + Oops! There was a problem processing your data. Pleases fix the errors below and + try again 糟糕!在處理您的資料時發生了問題。請修正下列錯誤並再試一次 src/app/user/user-import-dialog.component.html @@ -1654,7 +1798,8 @@ Upload 上傳 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 37 @@ -1679,7 +1824,8 @@ 2 - + Send permission notifications 傳送權限通知 @@ -1687,7 +1833,8 @@ 11 - + Request permission links 要求權限連結 @@ -1695,7 +1842,8 @@ 21 - + Request affiliation status report 要求聯盟狀態報告 @@ -1703,7 +1851,9 @@ 31 - + Request affiliations for edit 要求編輯的聯盟關係 @@ -1727,24 +1877,32 @@ 61 - - Your affiliations for edit file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. + + Your affiliations for edit file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. 您的編輯聯盟關係檔案稍後將寄送給您。若您未收到,請透過 membership@orcid.org 與我們聯繫。 src/app/affiliation/affiliations.component.html 73 - - Your affiliation status report file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. + + Your affiliation status report file will be mailed to you shortly. If you do not + receive your file then please contact us at membership@orcid.org. 您的聯盟狀態報告檔案稍後將寄送給您。若您未收到,請透過 membership@orcid.org 與我們聯繫。 src/app/affiliation/affiliations.component.html 82 - - Your permission links file will be mailed to you shortly. If you do not receive your file then please contact us at membership@orcid.org. + + Your permission links file will be mailed to you shortly. If you do not receive + your file then please contact us at membership@orcid.org. 您的權限連結檔案稍後將寄送給您。若您未收到,請透過 membership@orcid.org 與我們聯繫。 src/app/affiliation/affiliations.component.html @@ -1823,7 +1981,9 @@ 150 - + @@ -1855,8 +2015,10 @@ 190 - - For help troubleshooting, please contact the Member Portal Team and copy/paste or include a screenshot of the error message below. + + For help troubleshooting, please contact the Member Portal Team and copy/paste or + include a screenshot of the error message below. 如果您需要協助疑難排解此錯誤,請連絡您的聯盟領導人或 membership@orcid.org。請在下方附上錯誤訊息的螢幕擷取畫面。 src/app/affiliation/affiliations.component.html @@ -1868,7 +2030,7 @@ 使用者被拒絕存取 src/app/shared/pipe/localize.ts - 34 + 38 @@ -1876,7 +2038,7 @@ 待處理 src/app/shared/pipe/localize.ts - 36 + 40 @@ -1884,7 +2046,7 @@ 在 ORCID 中 src/app/shared/pipe/localize.ts - 38 + 42 @@ -1892,7 +2054,7 @@ 已授予使用者存取權 src/app/shared/pipe/localize.ts - 40 + 44 @@ -1900,7 +2062,7 @@ User deleted from ORCID src/app/shared/pipe/localize.ts - 42 + 46 @@ -1908,7 +2070,7 @@ 使用者存取權已撤消 src/app/shared/pipe/localize.ts - 44 + 48 @@ -1916,7 +2078,7 @@ 新增到 ORCID 時發生錯誤 src/app/shared/pipe/localize.ts - 46 + 50 @@ -1924,7 +2086,7 @@ 更新到 ORCID 時發生錯誤 src/app/shared/pipe/localize.ts - 48 + 52 @@ -1932,7 +2094,7 @@ ORCID 中的待處理重試 src/app/shared/pipe/localize.ts - 50 + 54 @@ -1940,7 +2102,7 @@ 在 ORCID 中刪除時發生錯誤 src/app/shared/pipe/localize.ts - 52 + 56 @@ -1948,7 +2110,7 @@ 已要求通知 src/app/shared/pipe/localize.ts - 54 + 58 @@ -1956,7 +2118,7 @@ 通知已傳送 src/app/shared/pipe/localize.ts - 56 + 60 @@ -1964,7 +2126,7 @@ 通知失敗 src/app/shared/pipe/localize.ts - 58 + 62 @@ -1972,7 +2134,7 @@ ORCID 中的待處理更新 src/app/shared/pipe/localize.ts - 60 + 64 @@ -2007,7 +2169,8 @@ 36 - + Affiliation Section 機關類別 @@ -2048,7 +2211,7 @@ src/app/affiliation/affiliation-update.component.html - 265 + 261 @@ -2060,7 +2223,7 @@ src/app/affiliation/affiliation-update.component.html - 285 + 277 @@ -2088,7 +2251,7 @@ src/app/affiliation/affiliation-update.component.html - 426 + 414 @@ -2131,7 +2294,8 @@ 145 - + Notification First Sent 首次傳送的通知 @@ -2143,7 +2307,8 @@ 175 - + Notification Last Sent 最近一次傳送通知 @@ -2167,15 +2332,19 @@ Import affiliations from CSV 匯入機關 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 3 - - Your CSV has been uploaded for processing. We will let you know via email once the file has been processed. + + Your CSV has been uploaded for processing. We will let you know via email once the + file has been processed. 您的 CSV 已上傳進行處理。檔案處理完成後,我們將寄信告知您。 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 10 @@ -2183,7 +2352,8 @@ There was a problem uploading your CSV for processing. 在上傳您要處理的 CSV 檔案時發生問題。 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 17 @@ -2191,7 +2361,8 @@ Please select the CSV file to upload 請選擇欲上傳的 CSV 檔案 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 20 @@ -2199,15 +2370,18 @@ File Path 檔案路徑 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 22 - Please do not forget to download and send permission links to your researchers once the upload has completed. + Please do not forget to download and send permission links to your researchers once + the upload has completed. 注意:上傳完成後,請勿忘記下載並向您的研究人員傳送權限連結。 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 26 @@ -2215,7 +2389,8 @@ Close 關閉 - src/app/affiliation/affiliation-import-dialog.component.html + + src/app/affiliation/affiliation-import-dialog.component.html 40 @@ -2223,7 +2398,8 @@ There is no file to upload. Please select one. 沒有可以上傳的檔案。請選擇一個檔案。 - src/app/affiliation/affiliation-import-dialog.component.ts + + src/app/affiliation/affiliation-import-dialog.component.ts 60 @@ -2232,7 +2408,7 @@ 教育 src/app/shared/pipe/localize.ts - 65 + 69 @@ -2240,7 +2416,7 @@ 雇用 src/app/shared/pipe/localize.ts - 67 + 71 @@ -2248,7 +2424,7 @@ 區別 src/app/shared/pipe/localize.ts - 69 + 73 @@ -2256,7 +2432,7 @@ 受邀職位 src/app/shared/pipe/localize.ts - 71 + 75 @@ -2264,7 +2440,7 @@ 資格 src/app/shared/pipe/localize.ts - 73 + 77 @@ -2272,7 +2448,7 @@ 服務 src/app/shared/pipe/localize.ts - 75 + 79 @@ -2280,7 +2456,7 @@ 會籍 src/app/shared/pipe/localize.ts - 77 + 81 @@ -2288,7 +2464,7 @@ 一月 src/app/shared/pipe/localize.ts - 82 + 86 @@ -2296,7 +2472,7 @@ 二月 src/app/shared/pipe/localize.ts - 84 + 88 @@ -2304,7 +2480,7 @@ 三月 src/app/shared/pipe/localize.ts - 86 + 90 @@ -2312,7 +2488,7 @@ 四月 src/app/shared/pipe/localize.ts - 88 + 92 @@ -2320,7 +2496,7 @@ 五月 src/app/shared/pipe/localize.ts - 90 + 94 @@ -2328,7 +2504,7 @@ 六月 src/app/shared/pipe/localize.ts - 92 + 96 @@ -2336,7 +2512,7 @@ 七月 src/app/shared/pipe/localize.ts - 94 + 98 @@ -2344,7 +2520,7 @@ 八月 src/app/shared/pipe/localize.ts - 96 + 100 @@ -2352,7 +2528,7 @@ 九月 src/app/shared/pipe/localize.ts - 98 + 102 @@ -2360,7 +2536,7 @@ 十月 src/app/shared/pipe/localize.ts - 100 + 104 @@ -2368,7 +2544,7 @@ 十一月 src/app/shared/pipe/localize.ts - 102 + 106 @@ -2376,7 +2552,7 @@ 十二月 src/app/shared/pipe/localize.ts - 104 + 108 @@ -2384,7 +2560,7 @@ 安道爾 src/app/shared/pipe/localize.ts - 109 + 113 @@ -2392,7 +2568,7 @@ 阿拉伯聯合大公國 src/app/shared/pipe/localize.ts - 111 + 115 @@ -2400,7 +2576,7 @@ 阿富汗 src/app/shared/pipe/localize.ts - 113 + 117 @@ -2408,7 +2584,7 @@ 安地卡及巴布達 src/app/shared/pipe/localize.ts - 115 + 119 @@ -2416,7 +2592,7 @@ 安圭拉 src/app/shared/pipe/localize.ts - 117 + 121 @@ -2424,7 +2600,7 @@ 阿爾巴尼亞 src/app/shared/pipe/localize.ts - 119 + 123 @@ -2432,7 +2608,7 @@ 亞美尼亞 src/app/shared/pipe/localize.ts - 121 + 125 @@ -2440,7 +2616,7 @@ 安哥拉 src/app/shared/pipe/localize.ts - 123 + 127 @@ -2448,7 +2624,7 @@ 南極洲 src/app/shared/pipe/localize.ts - 125 + 129 @@ -2456,7 +2632,7 @@ 阿根廷 src/app/shared/pipe/localize.ts - 127 + 131 @@ -2464,7 +2640,7 @@ 美屬薩摩亞 src/app/shared/pipe/localize.ts - 129 + 133 @@ -2472,7 +2648,7 @@ 奧地利 src/app/shared/pipe/localize.ts - 131 + 135 @@ -2480,7 +2656,7 @@ 澳大利亞 src/app/shared/pipe/localize.ts - 133 + 137 @@ -2488,7 +2664,7 @@ 阿魯巴 src/app/shared/pipe/localize.ts - 135 + 139 @@ -2496,7 +2672,7 @@ 奧蘭群島 src/app/shared/pipe/localize.ts - 137 + 141 @@ -2504,7 +2680,7 @@ 亞塞拜然 src/app/shared/pipe/localize.ts - 139 + 143 @@ -2512,7 +2688,7 @@ 波士尼亞赫塞哥維納 src/app/shared/pipe/localize.ts - 141 + 145 @@ -2520,7 +2696,7 @@ 巴貝多 src/app/shared/pipe/localize.ts - 143 + 147 @@ -2528,7 +2704,7 @@ 孟加拉 src/app/shared/pipe/localize.ts - 145 + 149 @@ -2536,7 +2712,7 @@ 比利時 src/app/shared/pipe/localize.ts - 147 + 151 @@ -2544,7 +2720,7 @@ 布吉納法索 src/app/shared/pipe/localize.ts - 149 + 153 @@ -2552,7 +2728,7 @@ 保加利亞 src/app/shared/pipe/localize.ts - 151 + 155 @@ -2560,7 +2736,7 @@ 巴林 src/app/shared/pipe/localize.ts - 153 + 157 @@ -2568,7 +2744,7 @@ 蒲隆地 src/app/shared/pipe/localize.ts - 155 + 159 @@ -2576,7 +2752,7 @@ 貝南 src/app/shared/pipe/localize.ts - 157 + 161 @@ -2584,7 +2760,7 @@ 聖巴瑟米 src/app/shared/pipe/localize.ts - 159 + 163 @@ -2592,7 +2768,7 @@ 百慕達 src/app/shared/pipe/localize.ts - 161 + 165 @@ -2600,7 +2776,7 @@ 汶萊 src/app/shared/pipe/localize.ts - 163 + 167 @@ -2608,7 +2784,7 @@ 玻利維亞 src/app/shared/pipe/localize.ts - 165 + 169 @@ -2616,7 +2792,7 @@ 英屬南極領地 src/app/shared/pipe/localize.ts - 167 + 171 @@ -2624,7 +2800,7 @@ 巴西 src/app/shared/pipe/localize.ts - 169 + 173 @@ -2632,7 +2808,7 @@ 巴哈馬 src/app/shared/pipe/localize.ts - 171 + 175 @@ -2640,7 +2816,7 @@ 不丹 src/app/shared/pipe/localize.ts - 173 + 177 @@ -2648,7 +2824,7 @@ 布威島 src/app/shared/pipe/localize.ts - 175 + 179 @@ -2656,7 +2832,7 @@ 波札那 src/app/shared/pipe/localize.ts - 177 + 181 @@ -2664,7 +2840,7 @@ 白俄羅斯 src/app/shared/pipe/localize.ts - 179 + 183 @@ -2672,7 +2848,7 @@ 貝里斯 src/app/shared/pipe/localize.ts - 181 + 185 @@ -2680,7 +2856,7 @@ 加拿大 src/app/shared/pipe/localize.ts - 183 + 187 @@ -2688,7 +2864,7 @@ 科克斯 (基靈) 群島 src/app/shared/pipe/localize.ts - 185 + 189 @@ -2696,7 +2872,7 @@ 剛果 - 金夏沙 src/app/shared/pipe/localize.ts - 187 + 191 @@ -2704,7 +2880,7 @@ 中非共和國 src/app/shared/pipe/localize.ts - 189 + 193 @@ -2712,7 +2888,7 @@ 剛果 - 布拉薩市 src/app/shared/pipe/localize.ts - 191 + 195 @@ -2720,7 +2896,7 @@ 瑞士 src/app/shared/pipe/localize.ts - 193 + 197 @@ -2728,7 +2904,7 @@ 象牙海岸 src/app/shared/pipe/localize.ts - 195 + 199 @@ -2736,7 +2912,7 @@ 庫克群島 src/app/shared/pipe/localize.ts - 197 + 201 @@ -2744,7 +2920,7 @@ 智利 src/app/shared/pipe/localize.ts - 199 + 203 @@ -2752,7 +2928,7 @@ 喀麥隆 src/app/shared/pipe/localize.ts - 201 + 205 @@ -2760,7 +2936,7 @@ 中國 src/app/shared/pipe/localize.ts - 203 + 207 @@ -2768,7 +2944,7 @@ 哥倫比亞 src/app/shared/pipe/localize.ts - 205 + 209 @@ -2776,7 +2952,7 @@ 哥斯大黎加 src/app/shared/pipe/localize.ts - 207 + 211 @@ -2784,7 +2960,7 @@ 古巴 src/app/shared/pipe/localize.ts - 209 + 213 @@ -2792,7 +2968,7 @@ 維德角 src/app/shared/pipe/localize.ts - 211 + 215 @@ -2800,7 +2976,7 @@ 庫拉索 src/app/shared/pipe/localize.ts - 213 + 217 @@ -2808,7 +2984,7 @@ 聖誕島 src/app/shared/pipe/localize.ts - 215 + 219 @@ -2816,7 +2992,7 @@ 賽普勒斯 src/app/shared/pipe/localize.ts - 217 + 221 @@ -2824,7 +3000,7 @@ 捷克共和國 src/app/shared/pipe/localize.ts - 219 + 223 @@ -2832,7 +3008,7 @@ 德國 src/app/shared/pipe/localize.ts - 221 + 225 @@ -2840,7 +3016,7 @@ 吉布地 src/app/shared/pipe/localize.ts - 223 + 227 @@ -2848,7 +3024,7 @@ 丹麥 src/app/shared/pipe/localize.ts - 225 + 229 @@ -2856,7 +3032,7 @@ 多米尼克 src/app/shared/pipe/localize.ts - 227 + 231 @@ -2864,7 +3040,7 @@ 多明尼加共和國 src/app/shared/pipe/localize.ts - 229 + 233 @@ -2872,7 +3048,7 @@ 阿爾及利亞 src/app/shared/pipe/localize.ts - 231 + 235 @@ -2880,7 +3056,7 @@ 厄瓜多爾 src/app/shared/pipe/localize.ts - 233 + 237 @@ -2888,7 +3064,7 @@ 愛沙尼亞 src/app/shared/pipe/localize.ts - 235 + 239 @@ -2896,7 +3072,7 @@ 埃及 src/app/shared/pipe/localize.ts - 237 + 241 @@ -2904,7 +3080,7 @@ 西撒哈拉 src/app/shared/pipe/localize.ts - 239 + 243 @@ -2912,7 +3088,7 @@ 厄利垂亞 src/app/shared/pipe/localize.ts - 241 + 245 @@ -2920,7 +3096,7 @@ 西班牙 src/app/shared/pipe/localize.ts - 243 + 247 @@ -2928,7 +3104,7 @@ 衣索比亞 src/app/shared/pipe/localize.ts - 245 + 249 @@ -2936,7 +3112,7 @@ 芬蘭 src/app/shared/pipe/localize.ts - 247 + 251 @@ -2944,7 +3120,7 @@ 斐濟 src/app/shared/pipe/localize.ts - 249 + 253 @@ -2952,7 +3128,7 @@ 福克蘭群島 src/app/shared/pipe/localize.ts - 251 + 255 @@ -2960,7 +3136,7 @@ 密克羅尼西亞 src/app/shared/pipe/localize.ts - 253 + 257 @@ -2968,7 +3144,7 @@ 法羅群島 src/app/shared/pipe/localize.ts - 255 + 259 @@ -2976,7 +3152,7 @@ 法國 src/app/shared/pipe/localize.ts - 257 + 261 @@ -2984,7 +3160,7 @@ 加彭 src/app/shared/pipe/localize.ts - 259 + 263 @@ -2992,7 +3168,7 @@ 英國 src/app/shared/pipe/localize.ts - 261 + 265 @@ -3000,7 +3176,7 @@ 格瑞那達 src/app/shared/pipe/localize.ts - 263 + 267 @@ -3008,7 +3184,7 @@ 喬治亞 src/app/shared/pipe/localize.ts - 265 + 269 @@ -3016,7 +3192,7 @@ 法屬圭亞那 src/app/shared/pipe/localize.ts - 267 + 271 @@ -3024,7 +3200,7 @@ 根息 src/app/shared/pipe/localize.ts - 269 + 273 @@ -3032,7 +3208,7 @@ 迦納 src/app/shared/pipe/localize.ts - 271 + 275 @@ -3040,7 +3216,7 @@ 直布羅陀 src/app/shared/pipe/localize.ts - 273 + 277 @@ -3048,7 +3224,7 @@ 格陵蘭 src/app/shared/pipe/localize.ts - 275 + 279 @@ -3056,7 +3232,7 @@ 甘比亞 src/app/shared/pipe/localize.ts - 277 + 281 @@ -3064,7 +3240,7 @@ 幾內亞 src/app/shared/pipe/localize.ts - 279 + 283 @@ -3072,7 +3248,7 @@ 瓜地洛普 src/app/shared/pipe/localize.ts - 281 + 285 @@ -3080,7 +3256,7 @@ 赤道幾內亞 src/app/shared/pipe/localize.ts - 283 + 287 @@ -3088,7 +3264,7 @@ 希臘 src/app/shared/pipe/localize.ts - 285 + 289 @@ -3096,7 +3272,7 @@ 南喬治亞及南三明治群島 src/app/shared/pipe/localize.ts - 287 + 291 @@ -3104,7 +3280,7 @@ 瓜地馬拉 src/app/shared/pipe/localize.ts - 289 + 293 @@ -3112,7 +3288,7 @@ 關島 src/app/shared/pipe/localize.ts - 291 + 295 @@ -3120,7 +3296,7 @@ 幾內亞比索 src/app/shared/pipe/localize.ts - 293 + 297 @@ -3128,7 +3304,7 @@ 蓋亞納 src/app/shared/pipe/localize.ts - 295 + 299 @@ -3136,7 +3312,7 @@ 中國香港特別行政區 src/app/shared/pipe/localize.ts - 297 + 301 @@ -3144,7 +3320,7 @@ 赫德島及麥當勞群島 src/app/shared/pipe/localize.ts - 299 + 303 @@ -3152,7 +3328,7 @@ 宏都拉斯 src/app/shared/pipe/localize.ts - 301 + 305 @@ -3160,7 +3336,7 @@ 克羅埃西亞 src/app/shared/pipe/localize.ts - 303 + 307 @@ -3168,7 +3344,7 @@ 海地 src/app/shared/pipe/localize.ts - 305 + 309 @@ -3176,7 +3352,7 @@ 匈牙利 src/app/shared/pipe/localize.ts - 307 + 311 @@ -3184,7 +3360,7 @@ 印尼 src/app/shared/pipe/localize.ts - 309 + 313 @@ -3192,7 +3368,7 @@ 愛爾蘭 src/app/shared/pipe/localize.ts - 311 + 315 @@ -3200,7 +3376,7 @@ 以色列 src/app/shared/pipe/localize.ts - 313 + 317 @@ -3208,7 +3384,7 @@ 曼島 src/app/shared/pipe/localize.ts - 315 + 319 @@ -3216,7 +3392,7 @@ 印度 src/app/shared/pipe/localize.ts - 317 + 321 @@ -3224,7 +3400,7 @@ 英屬印度洋領土 src/app/shared/pipe/localize.ts - 319 + 323 @@ -3232,7 +3408,7 @@ 伊拉克 src/app/shared/pipe/localize.ts - 321 + 325 @@ -3240,7 +3416,7 @@ 伊朗 src/app/shared/pipe/localize.ts - 323 + 327 @@ -3248,7 +3424,7 @@ 冰島 src/app/shared/pipe/localize.ts - 325 + 329 @@ -3256,7 +3432,7 @@ 義大利 src/app/shared/pipe/localize.ts - 327 + 331 @@ -3264,7 +3440,7 @@ 澤西島 src/app/shared/pipe/localize.ts - 329 + 333 @@ -3272,7 +3448,7 @@ 牙買加 src/app/shared/pipe/localize.ts - 331 + 335 @@ -3280,7 +3456,7 @@ 約旦 src/app/shared/pipe/localize.ts - 333 + 337 @@ -3288,7 +3464,7 @@ 日本 src/app/shared/pipe/localize.ts - 335 + 339 @@ -3296,7 +3472,7 @@ 肯亞 src/app/shared/pipe/localize.ts - 337 + 341 @@ -3304,7 +3480,7 @@ 吉爾吉斯 src/app/shared/pipe/localize.ts - 339 + 343 @@ -3312,7 +3488,7 @@ 柬埔寨 src/app/shared/pipe/localize.ts - 341 + 345 @@ -3320,7 +3496,7 @@ 吉里巴斯 src/app/shared/pipe/localize.ts - 343 + 347 @@ -3328,7 +3504,7 @@ 葛摩 src/app/shared/pipe/localize.ts - 345 + 349 @@ -3336,7 +3512,7 @@ 聖克里斯多福及尼維斯 src/app/shared/pipe/localize.ts - 347 + 351 @@ -3344,7 +3520,7 @@ 北韓 src/app/shared/pipe/localize.ts - 349 + 353 @@ -3352,7 +3528,7 @@ 南韓 src/app/shared/pipe/localize.ts - 351 + 355 @@ -3360,7 +3536,7 @@ 科威特 src/app/shared/pipe/localize.ts - 353 + 357 @@ -3368,7 +3544,7 @@ 開曼群島 src/app/shared/pipe/localize.ts - 355 + 359 @@ -3376,7 +3552,7 @@ 哈薩克 src/app/shared/pipe/localize.ts - 357 + 361 @@ -3384,7 +3560,7 @@ 寮國 src/app/shared/pipe/localize.ts - 359 + 363 @@ -3392,7 +3568,7 @@ 黎巴嫩 src/app/shared/pipe/localize.ts - 361 + 365 @@ -3400,7 +3576,7 @@ 聖露西亞 src/app/shared/pipe/localize.ts - 363 + 367 @@ -3408,7 +3584,7 @@ 列支敦斯登 src/app/shared/pipe/localize.ts - 365 + 369 @@ -3416,7 +3592,7 @@ 斯里蘭卡 src/app/shared/pipe/localize.ts - 367 + 371 @@ -3424,7 +3600,7 @@ 賴比瑞亞 src/app/shared/pipe/localize.ts - 369 + 373 @@ -3432,7 +3608,7 @@ 賴索托 src/app/shared/pipe/localize.ts - 371 + 375 @@ -3440,7 +3616,7 @@ 立陶宛 src/app/shared/pipe/localize.ts - 373 + 377 @@ -3448,7 +3624,7 @@ 盧森堡 src/app/shared/pipe/localize.ts - 375 + 379 @@ -3456,7 +3632,7 @@ 拉脫維亞 src/app/shared/pipe/localize.ts - 377 + 381 @@ -3464,7 +3640,7 @@ 利比亞 src/app/shared/pipe/localize.ts - 379 + 383 @@ -3472,7 +3648,7 @@ 摩洛哥 src/app/shared/pipe/localize.ts - 381 + 385 @@ -3480,7 +3656,7 @@ 摩納哥 src/app/shared/pipe/localize.ts - 383 + 387 @@ -3488,7 +3664,7 @@ 摩爾多瓦 src/app/shared/pipe/localize.ts - 385 + 389 @@ -3496,7 +3672,7 @@ 蒙特內哥羅 src/app/shared/pipe/localize.ts - 387 + 391 @@ -3504,7 +3680,7 @@ 聖馬丁島 src/app/shared/pipe/localize.ts - 389 + 393 @@ -3512,7 +3688,7 @@ 馬達加斯加 src/app/shared/pipe/localize.ts - 391 + 395 @@ -3520,7 +3696,7 @@ 馬紹爾群島 src/app/shared/pipe/localize.ts - 393 + 397 @@ -3528,7 +3704,7 @@ 北馬其頓 src/app/shared/pipe/localize.ts - 395 + 399 @@ -3536,7 +3712,7 @@ 馬利 src/app/shared/pipe/localize.ts - 397 + 401 @@ -3544,7 +3720,7 @@ 緬甸 src/app/shared/pipe/localize.ts - 399 + 403 @@ -3552,7 +3728,7 @@ 蒙古 src/app/shared/pipe/localize.ts - 401 + 405 @@ -3560,7 +3736,7 @@ 中國澳門特別行政區 src/app/shared/pipe/localize.ts - 403 + 407 @@ -3568,7 +3744,7 @@ 北馬里安納群島 src/app/shared/pipe/localize.ts - 405 + 409 @@ -3576,7 +3752,7 @@ 馬丁尼克 src/app/shared/pipe/localize.ts - 407 + 411 @@ -3584,7 +3760,7 @@ 茅利塔尼亞 src/app/shared/pipe/localize.ts - 409 + 413 @@ -3592,7 +3768,7 @@ 蒙哲臘 src/app/shared/pipe/localize.ts - 411 + 415 @@ -3600,7 +3776,7 @@ 馬爾他 src/app/shared/pipe/localize.ts - 413 + 417 @@ -3608,7 +3784,7 @@ 模里西斯 src/app/shared/pipe/localize.ts - 415 + 419 @@ -3616,7 +3792,7 @@ 馬爾地夫 src/app/shared/pipe/localize.ts - 417 + 421 @@ -3624,7 +3800,7 @@ 馬拉威 src/app/shared/pipe/localize.ts - 419 + 423 @@ -3632,7 +3808,7 @@ 墨西哥 src/app/shared/pipe/localize.ts - 421 + 425 @@ -3640,7 +3816,7 @@ 馬來西亞 src/app/shared/pipe/localize.ts - 423 + 427 @@ -3648,7 +3824,7 @@ 莫三比克 src/app/shared/pipe/localize.ts - 425 + 429 @@ -3656,7 +3832,7 @@ 納米比亞 src/app/shared/pipe/localize.ts - 427 + 431 @@ -3664,7 +3840,7 @@ 新喀里多尼亞 src/app/shared/pipe/localize.ts - 429 + 433 @@ -3672,7 +3848,7 @@ 尼日 src/app/shared/pipe/localize.ts - 431 + 435 @@ -3680,7 +3856,7 @@ 諾福克島 src/app/shared/pipe/localize.ts - 433 + 437 @@ -3688,7 +3864,7 @@ 奈及利亞 src/app/shared/pipe/localize.ts - 435 + 439 @@ -3696,7 +3872,7 @@ 尼加拉瓜 src/app/shared/pipe/localize.ts - 437 + 441 @@ -3704,7 +3880,7 @@ 荷蘭 src/app/shared/pipe/localize.ts - 439 + 443 @@ -3712,7 +3888,7 @@ 挪威 src/app/shared/pipe/localize.ts - 441 + 445 @@ -3720,7 +3896,7 @@ 尼泊爾 src/app/shared/pipe/localize.ts - 443 + 447 @@ -3728,7 +3904,7 @@ 諾魯 src/app/shared/pipe/localize.ts - 445 + 449 @@ -3736,7 +3912,7 @@ 紐埃 src/app/shared/pipe/localize.ts - 447 + 451 @@ -3744,7 +3920,7 @@ 紐西蘭 src/app/shared/pipe/localize.ts - 449 + 453 @@ -3752,7 +3928,7 @@ 阿曼 src/app/shared/pipe/localize.ts - 451 + 455 @@ -3760,7 +3936,7 @@ 巴拿馬 src/app/shared/pipe/localize.ts - 453 + 457 @@ -3768,7 +3944,7 @@ 秘魯 src/app/shared/pipe/localize.ts - 455 + 459 @@ -3776,7 +3952,7 @@ 法屬玻里尼西亞 src/app/shared/pipe/localize.ts - 457 + 461 @@ -3784,7 +3960,7 @@ 巴布亞紐幾內亞 src/app/shared/pipe/localize.ts - 459 + 463 @@ -3792,7 +3968,7 @@ 菲律賓 src/app/shared/pipe/localize.ts - 461 + 465 @@ -3800,7 +3976,7 @@ 巴基斯坦 src/app/shared/pipe/localize.ts - 463 + 467 @@ -3808,7 +3984,7 @@ 波蘭 src/app/shared/pipe/localize.ts - 465 + 469 @@ -3816,7 +3992,7 @@ 聖皮埃與密克隆 src/app/shared/pipe/localize.ts - 467 + 471 @@ -3824,7 +4000,7 @@ 皮特肯群島 src/app/shared/pipe/localize.ts - 469 + 473 @@ -3832,7 +4008,7 @@ 波多黎各 src/app/shared/pipe/localize.ts - 471 + 475 @@ -3840,7 +4016,7 @@ 巴勒斯坦領土 src/app/shared/pipe/localize.ts - 473 + 477 @@ -3848,7 +4024,7 @@ 葡萄牙 src/app/shared/pipe/localize.ts - 475 + 479 @@ -3856,7 +4032,7 @@ 帛琉 src/app/shared/pipe/localize.ts - 477 + 481 @@ -3864,7 +4040,7 @@ 巴拉圭 src/app/shared/pipe/localize.ts - 479 + 483 @@ -3872,7 +4048,7 @@ 卡達 src/app/shared/pipe/localize.ts - 481 + 485 @@ -3880,7 +4056,7 @@ 留尼旺 src/app/shared/pipe/localize.ts - 483 + 487 @@ -3888,7 +4064,7 @@ 羅馬尼亞 src/app/shared/pipe/localize.ts - 485 + 489 @@ -3896,7 +4072,7 @@ 塞爾維亞 src/app/shared/pipe/localize.ts - 487 + 491 @@ -3904,7 +4080,7 @@ 俄羅斯 src/app/shared/pipe/localize.ts - 489 + 493 @@ -3912,7 +4088,7 @@ 盧安達 src/app/shared/pipe/localize.ts - 491 + 495 @@ -3920,7 +4096,7 @@ 沙烏地阿拉伯 src/app/shared/pipe/localize.ts - 493 + 497 @@ -3928,7 +4104,7 @@ 索羅門群島 src/app/shared/pipe/localize.ts - 495 + 499 @@ -3936,7 +4112,7 @@ 塞席爾 src/app/shared/pipe/localize.ts - 497 + 501 @@ -3944,7 +4120,7 @@ 蘇丹 src/app/shared/pipe/localize.ts - 499 + 503 @@ -3952,7 +4128,7 @@ 瑞典 src/app/shared/pipe/localize.ts - 501 + 505 @@ -3960,7 +4136,7 @@ 新加坡 src/app/shared/pipe/localize.ts - 503 + 507 @@ -3968,7 +4144,7 @@ 聖赫勒拿島 src/app/shared/pipe/localize.ts - 505 + 509 @@ -3976,7 +4152,7 @@ 斯洛維尼亞 src/app/shared/pipe/localize.ts - 507 + 511 @@ -3984,7 +4160,7 @@ 斯瓦巴和揚馬延 src/app/shared/pipe/localize.ts - 509 + 513 @@ -3992,7 +4168,7 @@ 斯洛伐克 src/app/shared/pipe/localize.ts - 511 + 515 @@ -4000,7 +4176,7 @@ 獅子山 src/app/shared/pipe/localize.ts - 513 + 517 @@ -4008,7 +4184,7 @@ 聖馬利諾 src/app/shared/pipe/localize.ts - 515 + 519 @@ -4016,7 +4192,7 @@ 塞內加爾 src/app/shared/pipe/localize.ts - 517 + 521 @@ -4024,7 +4200,7 @@ 索馬利亞 src/app/shared/pipe/localize.ts - 519 + 523 @@ -4032,7 +4208,7 @@ 蘇利南 src/app/shared/pipe/localize.ts - 521 + 525 @@ -4040,7 +4216,7 @@ 南蘇丹 src/app/shared/pipe/localize.ts - 523 + 527 @@ -4048,7 +4224,7 @@ 聖多美普林西比 src/app/shared/pipe/localize.ts - 525 + 529 @@ -4056,7 +4232,7 @@ 薩爾瓦多 src/app/shared/pipe/localize.ts - 527 + 531 @@ -4064,7 +4240,7 @@ 荷屬聖馬丁 src/app/shared/pipe/localize.ts - 529 + 533 @@ -4072,7 +4248,7 @@ 敘利亞 src/app/shared/pipe/localize.ts - 531 + 535 @@ -4080,7 +4256,7 @@ 史瓦濟蘭 src/app/shared/pipe/localize.ts - 533 + 537 @@ -4088,7 +4264,7 @@ 土克斯及開科斯群島 src/app/shared/pipe/localize.ts - 535 + 539 @@ -4096,7 +4272,7 @@ 查德 src/app/shared/pipe/localize.ts - 537 + 541 @@ -4104,7 +4280,7 @@ 法屬南部屬地 src/app/shared/pipe/localize.ts - 539 + 543 @@ -4112,7 +4288,7 @@ 多哥 src/app/shared/pipe/localize.ts - 541 + 545 @@ -4120,7 +4296,7 @@ 泰國 src/app/shared/pipe/localize.ts - 543 + 547 @@ -4128,7 +4304,7 @@ 塔吉克 src/app/shared/pipe/localize.ts - 545 + 549 @@ -4136,7 +4312,7 @@ 托克勞群島 src/app/shared/pipe/localize.ts - 547 + 551 @@ -4144,7 +4320,7 @@ 東帝汶 src/app/shared/pipe/localize.ts - 549 + 553 @@ -4152,7 +4328,7 @@ 土庫曼 src/app/shared/pipe/localize.ts - 551 + 555 @@ -4160,7 +4336,7 @@ 突尼西亞 src/app/shared/pipe/localize.ts - 553 + 557 @@ -4168,7 +4344,7 @@ 東加 src/app/shared/pipe/localize.ts - 555 + 559 @@ -4176,7 +4352,7 @@ 土耳其 src/app/shared/pipe/localize.ts - 557 + 561 @@ -4184,7 +4360,7 @@ 千里達及托巴哥 src/app/shared/pipe/localize.ts - 559 + 563 @@ -4192,7 +4368,7 @@ 吐瓦魯 src/app/shared/pipe/localize.ts - 561 + 565 @@ -4200,7 +4376,7 @@ 台灣 src/app/shared/pipe/localize.ts - 563 + 567 @@ -4208,7 +4384,7 @@ 坦尚尼亞 src/app/shared/pipe/localize.ts - 565 + 569 @@ -4216,7 +4392,7 @@ 烏克蘭 src/app/shared/pipe/localize.ts - 567 + 571 @@ -4224,7 +4400,7 @@ 烏干達 src/app/shared/pipe/localize.ts - 569 + 573 @@ -4232,7 +4408,7 @@ 美國外島 src/app/shared/pipe/localize.ts - 571 + 575 @@ -4240,7 +4416,7 @@ 美國 src/app/shared/pipe/localize.ts - 573 + 577 @@ -4248,7 +4424,7 @@ 烏拉圭 src/app/shared/pipe/localize.ts - 575 + 579 @@ -4256,7 +4432,7 @@ 烏茲別克 src/app/shared/pipe/localize.ts - 577 + 581 @@ -4264,7 +4440,7 @@ 梵蒂岡 src/app/shared/pipe/localize.ts - 579 + 583 @@ -4272,7 +4448,7 @@ 聖文森及格瑞那丁 src/app/shared/pipe/localize.ts - 581 + 585 @@ -4280,7 +4456,7 @@ 委內瑞拉 src/app/shared/pipe/localize.ts - 583 + 587 @@ -4288,7 +4464,7 @@ 英屬維爾京群島 src/app/shared/pipe/localize.ts - 585 + 589 @@ -4296,7 +4472,7 @@ 美屬維爾京群島 src/app/shared/pipe/localize.ts - 587 + 591 @@ -4304,7 +4480,7 @@ 越南 src/app/shared/pipe/localize.ts - 589 + 593 @@ -4312,7 +4488,7 @@ 萬那杜 src/app/shared/pipe/localize.ts - 591 + 595 @@ -4320,7 +4496,7 @@ 瓦利斯和富圖那 src/app/shared/pipe/localize.ts - 593 + 597 @@ -4328,7 +4504,7 @@ 薩摩亞 src/app/shared/pipe/localize.ts - 595 + 599 @@ -4336,7 +4512,7 @@ Kosovo src/app/shared/pipe/localize.ts - 597 + 601 @@ -4344,7 +4520,7 @@ 葉門 src/app/shared/pipe/localize.ts - 599 + 603 @@ -4352,7 +4528,7 @@ 馬約特島 src/app/shared/pipe/localize.ts - 601 + 605 @@ -4360,7 +4536,7 @@ 南非 src/app/shared/pipe/localize.ts - 603 + 607 @@ -4368,7 +4544,7 @@ 尚比亞 src/app/shared/pipe/localize.ts - 605 + 609 @@ -4376,10 +4552,11 @@ 辛巴威 src/app/shared/pipe/localize.ts - 607 + 611 - + Add or edit affiliation 新增或編輯機關 @@ -4389,7 +4566,7 @@ This field should follow pattern for "Email". - 此欄位應遵循 {{ pattern }} 的模式。 + 此欄位應遵循 Email 的模式。 src/app/affiliation/affiliation-update.component.html 25 @@ -4426,9 +4603,21 @@ src/app/affiliation/affiliation-update.component.html 188 + + src/app/member/member-update.component.html + 61 + + + src/app/member/member-update.component.html + 105 + + + src/app/member/member-update.component.html + 140 + - Org Name + Organization Name 組織名稱 src/app/affiliation/affiliation-update.component.html @@ -4436,7 +4625,7 @@ - Org City + City 城市 src/app/affiliation/affiliation-update.component.html @@ -4444,7 +4633,7 @@ - Org Region + State/Region 州/地區 src/app/affiliation/affiliation-update.component.html @@ -4452,23 +4641,25 @@ - Org Country + Country 國家 src/app/affiliation/affiliation-update.component.html 141 - - Disambiguation Source + + Organization ID Source 組織編碼來源 src/app/affiliation/affiliation-update.component.html 170 - - Disambiguated Org Id + + Organization ID 組織 ID src/app/affiliation/affiliation-update.component.html @@ -4476,27 +4667,27 @@ - This field is required. GRID Organization ID should start with "grid.", RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with 0 - 此為必要欄位。GRID 組織識別碼應以 grid 開頭。例如 grid.12344 或應為一個有效的 grid URL,RINGGOLD 組織識別碼應為一個數字。ROR 識別碼必須是以 0 為開頭的 9 個字元。 + This field is required. GRID Organization ID should start with "grid.", + RINGGOLD Organization ID should be a number, ROR IDs must be 9 characters, beginning with + 0 + 此為必要欄位。GRID 組織識別碼應以 grid 開頭。例如 grid.12344 或應為一個有效的 grid URL,RINGGOLD + 組織識別碼應為一個數字。ROR 識別碼必須是以 0 為開頭的 9 個字元。 src/app/affiliation/affiliation-update.component.html 223 - This field cannot be longer than 4000 characters. - 此欄位不能超過 {{ max }} 個字元。 + This field cannot be longer than + characters. + 此欄位不能超過 個字元。 - src/app/affiliation/affiliation-update.component.html - 255 - - - src/app/affiliation/affiliation-update.component.html - 278 + src/app/affiliation/affiliation-update.component.ts + 195 - src/app/affiliation/affiliation-update.component.html - 293 + src/app/affiliation/affiliation-update.component.ts + 197 @@ -4504,7 +4695,7 @@ 開始年份 src/app/affiliation/affiliation-update.component.html - 305 + 293 @@ -4512,11 +4703,11 @@ 年份 src/app/affiliation/affiliation-update.component.html - 314 + 302 src/app/affiliation/affiliation-update.component.html - 364 + 352 @@ -4524,7 +4715,7 @@ 開始月份 src/app/affiliation/affiliation-update.component.html - 323 + 311 @@ -4532,11 +4723,11 @@ 月份 src/app/affiliation/affiliation-update.component.html - 332 + 320 src/app/affiliation/affiliation-update.component.html - 382 + 370 @@ -4544,7 +4735,7 @@ 開始日 src/app/affiliation/affiliation-update.component.html - 341 + 329 @@ -4552,11 +4743,11 @@ src/app/affiliation/affiliation-update.component.html - 344 + 332 src/app/affiliation/affiliation-update.component.html - 394 + 382 @@ -4564,7 +4755,7 @@ 結束年份 src/app/affiliation/affiliation-update.component.html - 355 + 343 @@ -4572,7 +4763,7 @@ 結束月份 src/app/affiliation/affiliation-update.component.html - 373 + 361 @@ -4580,7 +4771,7 @@ 結束日 src/app/affiliation/affiliation-update.component.html - 391 + 379 @@ -4588,7 +4779,7 @@ 開始日期不能晚於結束日期。 src/app/affiliation/affiliation-update.component.html - 400 + 388 @@ -4596,7 +4787,7 @@ 外部識別碼類別 src/app/affiliation/affiliation-update.component.html - 411 + 399 @@ -4604,15 +4795,16 @@ 外部編碼網址 src/app/affiliation/affiliation-update.component.html - 441 + 429 - Please do not forget to download and send permission links to your researcher once the assertion has been saved. + Please do not forget to download and send permission links to your researcher once + the assertion has been saved. 提醒:當判定成功儲存後,請記得下載並發送許可用連結給您的研究者。 src/app/affiliation/affiliation-update.component.html - 457 + 445 @@ -4623,9 +4815,13 @@ 8 - - Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the portal and the user's ORCID record - 是否確定要為 刪除這個所屬單位?該所屬單位會從入口網站和使用者 ORCID 記錄中刪除。 + + Are you sure you want to delete this affiliation for ? The affiliation will be deleted from the + portal and the user's ORCID record + 是否確定要為 + 刪除這個所屬單位?該所屬單位會從入口網站和使用者 ORCID 記錄中刪除。 src/app/affiliation/affiliation-delete.component.ts 40 @@ -4636,7 +4832,7 @@ 已建立所屬單位 src/app/shared/pipe/localize.ts - 23 + 27 @@ -4644,7 +4840,7 @@ 已更新所屬單位 src/app/shared/pipe/localize.ts - 25 + 29 @@ -4652,7 +4848,7 @@ 已刪除所屬單位 src/app/shared/pipe/localize.ts - 27 + 31 @@ -4660,65 +4856,388 @@ 刪除隸屬關係時發生問題 src/app/shared/pipe/localize.ts - 29 + 33 - + Send permission notifications 傳送權限通知 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 3 - - A request to send notifications to your users is already in progress. Please try again later. + + A request to send notifications to your users is already in progress. Please try + again later. 您提出傳送通知給使用者的要求,系統目前已在處理中,請稍後再試。 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 7 - - Are you sure that you would like ORCID to send permission links to your researchers for the affiliations that are pending? + + Are you sure that you would like ORCID to send permission links to your researchers + for the affiliations that are pending? 只要研究員有狀態為「待處理」的隸屬物件,系統便會向他們傳送權限通知。 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 10 - + Notification language 通知語言 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 11 - + What language should the notification be sent in? 通知應以哪種語言傳送? - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 12 - + Send notifications 傳送通知 - src/app/affiliation/send-notifications-dialog.component.html + + src/app/affiliation/send-notifications-dialog.component.html 23 - - Notification process has now started. We will email you as soon as the process has completed. + + Notification process has now started. We will email you as soon as the process has + completed. 通知程序已啟動。程序完成後,系統會儘快透過電子郵件通知您。 + + src/app/shared/pipe/localize.ts + 25 + + + + You have already granted + 您已允許過 + + src/app/landing-page/landing-page.component.html + 13 + + + + permission to update your ORCID record + 更新您的 ORCID 記錄的權限 + + src/app/landing-page/landing-page.component.html + 16 + + + + Oops, something went wrong and we were not able to fetch your ORCID iD + 糟糕,發生了一些錯誤,導致我們無法取得您的 ORCID 編碼 + + src/app/landing-page/landing-page.component.html + 33 + + + + Oops, you have denied access. + 歐嗚,您已拒絕存取。 + + src/app/landing-page/landing-page.component.html + 39 + + + + will not be able to update your ORCID record. + 將無法更新您的 ORCID 紀錄。 + + src/app/landing-page/landing-page.component.html + 42 + + + + If this was a mistake, click the button below to grant access. + 如果這是錯誤的操作,請點擊以下按鈕授予存取權限。 + + src/app/landing-page/landing-page.component.html + 45 + + + + If you find that data added to your ORCID record is incorrect, please contact + 如果您發現新增至您的 ORCID 紀錄的檔案並不正確,請聯繫 + + src/app/landing-page/landing-page.component.ts + 78 + + + + This authorization link has already been used. Please contact for a new authorization link. + 此認證連結已經用過了。請聯絡 取得新的認證連結。 + + src/app/landing-page/landing-page.component.ts + 79 + + + + Allow to update my ORCID record. + 允許 更新我的 ORCID 紀錄 + + src/app/landing-page/landing-page.component.ts + 80 + + + + You have successfully granted + permission to update your ORCID record, and your record has been updated with affiliation + information. + 您已經成功給予 更新您 ORCID + 紀錄的權限,您的紀錄並會隨機關資訊更新。 + + src/app/landing-page/landing-page.component.ts + 81 + + + + Thanks, ! + 感謝您, + + src/app/landing-page/landing-page.component.ts + 172 + + + + Member details + 成員詳細資訊 + + src/app/member/member-detail.component.html + 4 + + + + Salesforce Id + 銷售人員編碼 + + src/app/member/member-detail.component.html + 9 + + + src/app/member/member-update.component.html + 41 + + + src/app/member/members.component.html + 59 + + + + Parent Salesforce Id + 母銷售人員編碼 + + src/app/member/member-detail.component.html + 13 + + + src/app/member/member-update.component.html + 71 + + + src/app/member/members.component.html + 83 + + + + Member Name + 成員姓名 + + src/app/member/member-detail.component.html + 17 + + + src/app/member/member-update.component.html + 86 + + + src/app/member/members.component.html + 67 + + + + Client ID + 客戶 ID + + src/app/member/member-detail.component.html + 21 + + + src/app/member/member-update.component.html + 115 + + + + Type + 類別 + + src/app/member/member-detail.component.html + 25 + + + + Is Consortium Lead + 聯合代表 + + src/app/member/member-detail.component.html + 29 + + + src/app/member/member-update.component.html + 154 + + + src/app/member/members.component.html + 75 + + + + Assertion Service Enabled + 判斷提示已啟用 + + src/app/member/member-detail.component.html + 35 + + + src/app/member/member-update.component.html + 169 + + + src/app/member/members.component.html + 91 + + + + Status + 狀態 + + src/app/member/member-detail.component.html + 41 + + + + Created Date + 已建立 + + src/app/member/member-detail.component.html + 45 + + + + Last Modified Date + 上次變更 + + src/app/member/member-detail.component.html + 49 + + + src/app/member/members.component.html + 99 + + + + Add or edit member + 新增或編輯會員 + + src/app/member/member-update.component.html + 8 + + + + Note: Client ID must have User OBO enabled AND + 註:客戶 ID 必須已啟用成員 OBA 和 + + src/app/member/member-update.component.html + 120 + + + + added as a Redirect URI in + 在財團報告中 + + src/app/member/member-update.component.html + 124 + + + + Manage members + 管理成員 + + src/app/member/members.component.html + 2 + + + + Add member + 新增會員 + + src/app/member/members.component.html + 11 + + + + Import members from CSV + 由 CSV 檔案匯入成員 + + src/app/member/members.component.html + 19 + + + + No members to show + 沒有可顯示的成員 + + src/app/member/members.component.html + 50 + + + + Member created + 已建立會員 src/app/shared/pipe/localize.ts 21 + + Member updated successfully + 成功更新會員 + + src/app/shared/pipe/localize.ts + 23 + + \ No newline at end of file