From 9715d8bf724798cc492ab1564eff49724a47d795 Mon Sep 17 00:00:00 2001 From: Daniel Palafox Date: Mon, 12 Feb 2024 15:41:46 -0500 Subject: [PATCH 01/24] Fix/9076-qa-unable-to-access-my-orcid-page-for-records-without-public-information (#2152) * style: Add max width to new header and info record * fix: Display my orcid if user doesnt have affiliations * fix: Add semicolon to separate other names --- .../side-bar/side-bar/side-bar.component.html | 2 +- .../side-bar/side-bar/side-bar.component.ts | 1 + .../record-header.component.html | 220 +++++++++--------- .../record-header.component.scss | 93 ++++---- .../record-header.component.scss-theme.scss | 2 +- .../record-info/record-info.component.html | 2 +- .../pages/my-orcid/my-orcid.component.html | 5 +- src/app/shared/utils/names.util.ts | 2 +- 8 files changed, 167 insertions(+), 160 deletions(-) diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.html b/src/app/cdk/side-bar/side-bar/side-bar.component.html index 8915cd0502..8d5f031c4d 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.html +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.html @@ -6,7 +6,7 @@ >

Personal information diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.ts b/src/app/cdk/side-bar/side-bar/side-bar.component.ts index 50df816161..a3e8a9490d 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.ts +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.ts @@ -41,6 +41,7 @@ export class SideBarComponent implements OnInit, OnDestroy { @Input() orcidId = false @Input() hideOrcidId = false @Input() newRecordHeaderTogglz: boolean + @Input() loadingUserRecord: boolean modalCountryComponent = ModalCountryComponent modalEmailComponent = ModalEmailComponent diff --git a/src/app/record/components/record-header/record-header.component.html b/src/app/record/components/record-header/record-header.component.html index 2f3f8e392b..8e29630f97 100644 --- a/src/app/record/components/record-header/record-header.component.html +++ b/src/app/record/components/record-header/record-header.component.html @@ -3,135 +3,137 @@ mode="indeterminate" color="accent" > -
-
-
-
+
+
+
+
+
+

+ {{ creditName }} + + {{ + givenNames + ' ' + }} + {{ familyName }} + +

+
+
+

{{ otherNames }}

+
+
+

- {{ creditName }} - - {{ - givenNames + ' ' - }} - {{ familyName }} + This record has been deactivated + This record is locked + + This record has been deprecated

-
-

{{ otherNames }}

-
-
-
-

- This record has been deactivated - - This record is locked - - This record has been deprecated -

-
-
-

- No public information available. - -

-
-
- -
-
-
- -
-

- {{ orcidId }} -

+ No public information available. + +

+ + + +
+
-
+

- content_copy - - + + +

- -
+ + diff --git a/src/app/record/components/record-header/record-header.component.scss b/src/app/record/components/record-header/record-header.component.scss index 0bf67d74ea..68e39ed168 100644 --- a/src/app/record/components/record-header/record-header.component.scss +++ b/src/app/record/components/record-header/record-header.component.scss @@ -1,71 +1,74 @@ -.record-header { +.record-header-wrapper { display: flex; box-sizing: border-box; width: 100%; padding: 32px; margin-bottom: 32px; align-items: flex-start; - gap: 16px; word-break: break-all; - h1, - p { - margin: 0; - } - - h2 { - margin: auto; - font-weight: normal; - } - - .divider { - width: 100%; - height: 2px; - } + .record-header { + gap: 16px; - .names-wrapper { - .names { - line-height: 40px; + h1, + p { + margin: 0; } - .other-names { - line-height: 24px; + h2 { + margin: auto; + font-weight: normal; } - .other-names.mobile { - justify-content: center; + .divider { + width: 100%; + height: 2px; } - } - .issue { - h1 { - font-weight: normal; - } - } + .names-wrapper { + .names { + line-height: 40px; + } - .id-wrapper { - align-items: center; + .other-names { + line-height: 24px; + } - .col { - padding: 0 !important; + .other-names.mobile { + justify-content: center; + } } - .orcid-logo { - width: 40px; - margin-right: 8px; + .issue { + h1 { + font-weight: normal; + } } - .orcid-logo.mobile { - width: 32px; - } + .id-wrapper { + align-items: center; - .buttons-wrapper { - margin-left: 16px; - } + .col { + padding: 0 !important; + } + + .orcid-logo { + width: 40px; + margin-right: 8px; + } + + .orcid-logo.mobile { + width: 32px; + } + + .buttons-wrapper { + margin-left: 16px; + } - .buttons-wrapper.mobile { - justify-content: center; - margin-left: 0; + .buttons-wrapper.mobile { + justify-content: center; + margin-left: 0; + } } } } diff --git a/src/app/record/components/record-header/record-header.component.scss-theme.scss b/src/app/record/components/record-header/record-header.component.scss-theme.scss index 0e7a8e58b5..0de5de2773 100644 --- a/src/app/record/components/record-header/record-header.component.scss-theme.scss +++ b/src/app/record/components/record-header/record-header.component.scss-theme.scss @@ -9,7 +9,7 @@ $background: map-get($theme, background); $config: mat.define-legacy-typography-config(); - .record-header { + .record-header-wrapper { color: $orcid-light-primary-text; background: mat.get-color-from-palette($primary, 900); } diff --git a/src/app/record/components/record-info/record-info.component.html b/src/app/record/components/record-info/record-info.component.html index d711ac6b99..3bca351420 100644 --- a/src/app/record/components/record-info/record-info.component.html +++ b/src/app/record/components/record-info/record-info.component.html @@ -1,5 +1,5 @@
-
+
@@ -33,6 +33,7 @@ [isPublicRecord]="publicOrcid" [orcidId]="platform.columns8 || platform.columns4" [newRecordHeaderTogglz]="newRecordHeaderTogglz" + [loadingUserRecord]="loadingUserRecord" >
diff --git a/src/app/shared/utils/names.util.ts b/src/app/shared/utils/names.util.ts index b0ab61603f..296ac4da4b 100644 --- a/src/app/shared/utils/names.util.ts +++ b/src/app/shared/utils/names.util.ts @@ -69,6 +69,6 @@ export class NamesUtil { .indexOf(item.toLowerCase().trim()) === pos ) }) - .join(', ') + .join('; ') } } From c818f2de58150c83a579f86d6c94868db4b14ec8 Mon Sep 17 00:00:00 2001 From: amontenegro Date: Mon, 12 Feb 2024 20:43:10 +0000 Subject: [PATCH 02/24] =?UTF-8?q?=F0=9F=A4=96=20GITHUB=20ACTIONS=20format?= =?UTF-8?q?=5Fprettier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/cdk/side-bar/side-bar/side-bar.component.html | 5 ++++- .../record-header/record-header.component.html | 9 +++++++-- src/app/record/pages/my-orcid/my-orcid.component.html | 6 ++++-- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.html b/src/app/cdk/side-bar/side-bar/side-bar.component.html index 8d5f031c4d..b5bc722c4a 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.html +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.html @@ -6,7 +6,10 @@ >

Personal information diff --git a/src/app/record/components/record-header/record-header.component.html b/src/app/record/components/record-header/record-header.component.html index 8e29630f97..31c9173245 100644 --- a/src/app/record/components/record-header/record-header.component.html +++ b/src/app/record/components/record-header/record-header.component.html @@ -26,7 +26,10 @@

-
+

{{ otherNames }}

@@ -38,7 +41,9 @@ }" > This record has been deactivated diff --git a/src/app/record/pages/my-orcid/my-orcid.component.html b/src/app/record/pages/my-orcid/my-orcid.component.html index bcb9173024..667bf4b9ef 100644 --- a/src/app/record/pages/my-orcid/my-orcid.component.html +++ b/src/app/record/pages/my-orcid/my-orcid.component.html @@ -12,7 +12,7 @@ > From 0b0314f63cd4f3f04ddffcaed3c23b049040dd4d Mon Sep 17 00:00:00 2001 From: github actions Date: Mon, 12 Feb 2024 20:53:03 +0000 Subject: [PATCH 03/24] v2.55.5 changelog update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 734fce14b6..e969e2b1c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.55.5 - 2024-02-12 + +[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.4...v2.55.5) + ## v2.55.4 - 2024-02-08 [Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.3...v2.55.4) From e6addac36215710d686ed542d699f819052bb80a Mon Sep 17 00:00:00 2001 From: Daniel Palafox Date: Tue, 13 Feb 2024 16:58:22 -0500 Subject: [PATCH 04/24] Fix/9077-qa-sidebar-items-not-displayed-if-there-are-no-activities-to-display-in-the-public-page (#2154) * fix: Display `no public information` only when finished loading * fix: Add new translation without full stop * fix: Display side bar if there are elements * fix: Concatenate fullName with otherNames if creditName exists --- .../side-bar/side-bar/side-bar.component.scss | 4 ++ .../side-bar/side-bar/side-bar.component.ts | 23 ++++++++- .../record-header.component.html | 7 +-- .../record-header/record-header.component.ts | 15 ++++++ .../record-info/record-info.component.html | 2 +- .../pages/my-orcid/my-orcid.component.html | 47 ++++++++++--------- .../pages/my-orcid/my-orcid.component.ts | 5 ++ .../properties/record/record.en.properties | 1 + .../properties/record/record.lr.properties | 1 + .../properties/record/record.rl.properties | 1 + .../properties/record/record.xx.properties | 1 + 11 files changed, 81 insertions(+), 26 deletions(-) diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.scss b/src/app/cdk/side-bar/side-bar/side-bar.component.scss index 78a2a73218..8396202350 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.scss +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.scss @@ -4,6 +4,10 @@ > div { width: 100%; } + + h2 { + margin: 0; + } } section { diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.ts b/src/app/cdk/side-bar/side-bar/side-bar.component.ts index a3e8a9490d..24308e180f 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.ts +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.ts @@ -1,4 +1,4 @@ -import { Component, Input, OnDestroy, OnInit } from '@angular/core' +import { Component, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core' import { Subject } from 'rxjs' import { takeUntil } from 'rxjs/operators' import { UserService } from 'src/app/core' @@ -37,6 +37,8 @@ export class SideBarComponent implements OnInit, OnDestroy { $destroy: Subject = new Subject() + @Output() isSideBarEmpty: EventEmitter = new EventEmitter() + @Input() isPublicRecord: string @Input() orcidId = false @Input() hideOrcidId = false @@ -114,6 +116,8 @@ export class SideBarComponent implements OnInit, OnDestroy { } this.userRecord = userRecord this.userInfo = userRecord?.userInfo + + this.onSideBarElementsDisplay(userRecord) }) } @@ -139,6 +143,23 @@ export class SideBarComponent implements OnInit, OnDestroy { }) } + onSideBarElementsDisplay(userRecord: UserRecord): void { + if ( + (userRecord?.emails?.emails && + (!this.isPublicRecord || userRecord.emails.emails.length > 0)) || + (userRecord?.website?.websites && + (!this.isPublicRecord || userRecord.website.websites.length > 0)) || + (userRecord?.externalIdentifier?.externalIdentifiers && + userRecord?.externalIdentifier?.externalIdentifiers.length > 0) || + (userRecord?.keyword?.keywords && + (!this.isPublicRecord || userRecord.keyword.keywords.length > 0)) || + (userRecord?.countries?.addresses && + (!this.isPublicRecord || userRecord.countries.addresses.length > 0)) + ) { + this.isSideBarEmpty.emit(true) + } + } + ngOnDestroy() { this.$destroy.next(true) this.$destroy.unsubscribe() diff --git a/src/app/record/components/record-header/record-header.component.html b/src/app/record/components/record-header/record-header.component.html index 31c9173245..445509abb8 100644 --- a/src/app/record/components/record-header/record-header.component.html +++ b/src/app/record/components/record-header/record-header.component.html @@ -65,9 +65,10 @@

- No public information available. + No public information available

diff --git a/src/app/record/components/record-header/record-header.component.ts b/src/app/record/components/record-header/record-header.component.ts index 056e9b6c92..abf25c75dc 100644 --- a/src/app/record/components/record-header/record-header.component.ts +++ b/src/app/record/components/record-header/record-header.component.ts @@ -87,10 +87,25 @@ export class RecordHeaderComponent implements OnInit { } } + let fullName = this.givenNames; + if (!isEmpty(this.familyName)) { + fullName += ` ${this.familyName}` + } + if (!isEmpty(this.userRecord.otherNames?.otherNames)) { this.otherNames = NamesUtil.getOtherNamesUnique( userRecord.otherNames?.otherNames ) + + if (!isEmpty(this.creditName)) { + if (!isEmpty(fullName)) { + this.otherNames = `${fullName}; ${this.otherNames}` + } + } + } else { + if (!isEmpty(this.creditName) && !isEmpty(fullName)) { + this.otherNames = `${fullName}` + } } }) } diff --git a/src/app/record/components/record-info/record-info.component.html b/src/app/record/components/record-info/record-info.component.html index 3bca351420..afb61af278 100644 --- a/src/app/record/components/record-info/record-info.component.html +++ b/src/app/record/components/record-info/record-info.component.html @@ -75,7 +75,7 @@

- No public information available. + No public information available

diff --git a/src/app/record/pages/my-orcid/my-orcid.component.html b/src/app/record/pages/my-orcid/my-orcid.component.html index 667bf4b9ef..eb197d5935 100644 --- a/src/app/record/pages/my-orcid/my-orcid.component.html +++ b/src/app/record/pages/my-orcid/my-orcid.component.html @@ -10,24 +10,7 @@ [isPublicRecord]="publicOrcid" [affiliations]="affiliations" > - -

+
-
+
- +
error @@ -165,6 +162,14 @@
+ diff --git a/src/app/record/pages/my-orcid/my-orcid.component.ts b/src/app/record/pages/my-orcid/my-orcid.component.ts index 6ab434490b..01dfde13e8 100644 --- a/src/app/record/pages/my-orcid/my-orcid.component.ts +++ b/src/app/record/pages/my-orcid/my-orcid.component.ts @@ -40,6 +40,7 @@ export class MyOrcidComponent implements OnInit, OnDestroy { platform: PlatformInfo publicOrcid: string affiliations: number + displaySideBar: boolean userInfo: UserInfo userRecord: UserRecord collapseAllActivitiesArialLabel = $localize`:@@shared.collapseAllActivitiesArialLabel:Collapse all activity sections` @@ -296,6 +297,10 @@ export class MyOrcidComponent implements OnInit, OnDestroy { } } + isSideBarEmpty(displaySideBar: boolean) { + this.displaySideBar = displaySideBar + } + checkLoadingState(userRecord: UserRecord) { const missingValues = Object.keys(userRecord).filter((key) => { if (key !== 'preferences' && key !== 'lastModifiedTime') { diff --git a/src/locale/properties/record/record.en.properties b/src/locale/properties/record/record.en.properties index 0a0502664b..6acde489ff 100644 --- a/src/locale/properties/record/record.en.properties +++ b/src/locale/properties/record/record.en.properties @@ -42,3 +42,4 @@ record.showAllSources=Show all sources for record.hideAllSources=Hide all sources for record.validatedSource=Validated source record.selfAssertedSource=Self-asserted source +record.noPublicInformation=No public information available diff --git a/src/locale/properties/record/record.lr.properties b/src/locale/properties/record/record.lr.properties index c1d425b556..61d3752f85 100644 --- a/src/locale/properties/record/record.lr.properties +++ b/src/locale/properties/record/record.lr.properties @@ -51,3 +51,4 @@ record.showAllSources=LR record.hideAllSources=LR record.validatedSource=LR record.selfAssertedSource=LR +record.noPublicInformation=LR diff --git a/src/locale/properties/record/record.rl.properties b/src/locale/properties/record/record.rl.properties index dc60adc8b0..1acff8d334 100644 --- a/src/locale/properties/record/record.rl.properties +++ b/src/locale/properties/record/record.rl.properties @@ -51,3 +51,4 @@ record.showAllSources=RL record.hideAllSources=RL record.validatedSource=RL record.selfAssertedSource=RL +record.noPublicInformation=RL diff --git a/src/locale/properties/record/record.xx.properties b/src/locale/properties/record/record.xx.properties index fdbc7083c1..e5b3c8c800 100644 --- a/src/locale/properties/record/record.xx.properties +++ b/src/locale/properties/record/record.xx.properties @@ -51,3 +51,4 @@ record.showAllSources=X record.hideAllSources=X record.validatedSource=X record.selfAssertedSource=X +record.noPublicInformation=X From 612cf28644375a79e10d819e8debdfbae03737c2 Mon Sep 17 00:00:00 2001 From: amontenegro Date: Tue, 13 Feb 2024 22:00:01 +0000 Subject: [PATCH 05/24] =?UTF-8?q?=F0=9F=A4=96=20GITHUB=20ACTIONS=20format?= =?UTF-8?q?=5Fprettier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../side-bar/side-bar/side-bar.component.ts | 9 ++++- .../record-header/record-header.component.ts | 2 +- .../record-info/record-info.component.html | 4 ++- .../pages/my-orcid/my-orcid.component.html | 33 ++++++++++++------- 4 files changed, 33 insertions(+), 15 deletions(-) diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.ts b/src/app/cdk/side-bar/side-bar/side-bar.component.ts index 24308e180f..ec90ee84aa 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.ts +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.ts @@ -1,4 +1,11 @@ -import { Component, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core' +import { + Component, + EventEmitter, + Input, + OnDestroy, + OnInit, + Output, +} from '@angular/core' import { Subject } from 'rxjs' import { takeUntil } from 'rxjs/operators' import { UserService } from 'src/app/core' diff --git a/src/app/record/components/record-header/record-header.component.ts b/src/app/record/components/record-header/record-header.component.ts index abf25c75dc..f391a2e38f 100644 --- a/src/app/record/components/record-header/record-header.component.ts +++ b/src/app/record/components/record-header/record-header.component.ts @@ -87,7 +87,7 @@ export class RecordHeaderComponent implements OnInit { } } - let fullName = this.givenNames; + let fullName = this.givenNames if (!isEmpty(this.familyName)) { fullName += ` ${this.familyName}` } diff --git a/src/app/record/components/record-info/record-info.component.html b/src/app/record/components/record-info/record-info.component.html index afb61af278..5a489e5204 100644 --- a/src/app/record/components/record-info/record-info.component.html +++ b/src/app/record/components/record-info/record-info.component.html @@ -75,7 +75,9 @@

- No public information available + No public information available

diff --git a/src/app/record/pages/my-orcid/my-orcid.component.html b/src/app/record/pages/my-orcid/my-orcid.component.html index eb197d5935..2794b0c44a 100644 --- a/src/app/record/pages/my-orcid/my-orcid.component.html +++ b/src/app/record/pages/my-orcid/my-orcid.component.html @@ -31,11 +31,15 @@

+ [ngClass]="{ + 'col l9 m8 s4': + !loadingUserRecord && newRecordHeaderTogglz + ? publicOrcid + ? !recordWithIssues && displaySideBar + : true + : true + }" + > - +
error + [affiliations]="affiliations" + > From a052986229bd197460d608ad5b739d93adf7cd25 Mon Sep 17 00:00:00 2001 From: github actions Date: Tue, 13 Feb 2024 22:09:47 +0000 Subject: [PATCH 06/24] v2.55.6 changelog update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e969e2b1c5..58b1e8c888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.55.6 - 2024-02-13 + +[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.5...v2.55.6) + ## v2.55.5 - 2024-02-12 [Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.4...v2.55.5) From e96791f6720ba97b9e0c536cd70bb997d4ce5107 Mon Sep 17 00:00:00 2001 From: Daniel Palafox Date: Tue, 13 Feb 2024 17:22:30 -0500 Subject: [PATCH 07/24] style: Remove padding on edge cases and add missing whitespaces (#2156) * style: Remove padding on edge cases and add missing whitespaces * fix: Add missing parenthesis --- .../side-bar/side-bar/side-bar.component.ts | 16 ++------------ .../record-header.component.html | 4 ++-- .../record-header/record-header.component.ts | 12 +++++------ .../record-info/record-info.component.html | 9 ++++++-- .../record-info/record-info.component.ts | 9 ++++++-- .../components/top-bar/top-bar.component.ts | 12 +++++------ .../utils/{names.util.ts => record.util.ts} | 21 ++++++++++++++++++- 7 files changed, 50 insertions(+), 33 deletions(-) rename src/app/shared/utils/{names.util.ts => record.util.ts} (70%) diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.ts b/src/app/cdk/side-bar/side-bar/side-bar.component.ts index ec90ee84aa..55add42620 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.ts +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.ts @@ -26,6 +26,7 @@ import { ModalKeywordComponent } from '../modals/modal-keyword/modal-keyword.com import { ModalPersonIdentifiersComponent } from '../modals/modal-person-identifiers/modal-person-identifiers.component' import { ModalWebsitesComponent } from '../modals/modal-websites/modal-websites.component' import { ActivatedRoute } from '@angular/router' +import { RecordUtil } from 'src/app/shared/utils/record.util' @Component({ selector: 'app-side-bar', @@ -151,20 +152,7 @@ export class SideBarComponent implements OnInit, OnDestroy { } onSideBarElementsDisplay(userRecord: UserRecord): void { - if ( - (userRecord?.emails?.emails && - (!this.isPublicRecord || userRecord.emails.emails.length > 0)) || - (userRecord?.website?.websites && - (!this.isPublicRecord || userRecord.website.websites.length > 0)) || - (userRecord?.externalIdentifier?.externalIdentifiers && - userRecord?.externalIdentifier?.externalIdentifiers.length > 0) || - (userRecord?.keyword?.keywords && - (!this.isPublicRecord || userRecord.keyword.keywords.length > 0)) || - (userRecord?.countries?.addresses && - (!this.isPublicRecord || userRecord.countries.addresses.length > 0)) - ) { - this.isSideBarEmpty.emit(true) - } + this.isSideBarEmpty.emit(RecordUtil.isSideBarEmpty(!!this.isPublicRecord, userRecord)) } ngOnDestroy() { diff --git a/src/app/record/components/record-header/record-header.component.html b/src/app/record/components/record-header/record-header.component.html index 445509abb8..52a22d44de 100644 --- a/src/app/record/components/record-header/record-header.component.html +++ b/src/app/record/components/record-header/record-header.component.html @@ -8,7 +8,7 @@

This record is locked diff --git a/src/app/record/components/record-header/record-header.component.ts b/src/app/record/components/record-header/record-header.component.ts index f391a2e38f..cfe8e9a9c8 100644 --- a/src/app/record/components/record-header/record-header.component.ts +++ b/src/app/record/components/record-header/record-header.component.ts @@ -6,7 +6,7 @@ import { PlatformInfo, PlatformInfoService } from 'src/app/cdk/platform-info' import { WINDOW } from 'src/app/cdk/window' import { UserService } from 'src/app/core' import { RecordService } from 'src/app/core/record/record.service' -import { NamesUtil } from 'src/app/shared/utils/names.util' +import { RecordUtil } from 'src/app/shared/utils/record.util' import { Assertion, UserInfo } from 'src/app/types' import { UserRecord } from 'src/app/types/record.local' import { environment } from 'src/environments/environment' @@ -74,10 +74,10 @@ export class RecordHeaderComponent implements OnInit { this.userInfo = userRecord?.userInfo if (!isEmpty(this.userRecord?.names)) { - this.givenNames = NamesUtil.getGivenNames(this.userRecord) - this.familyName = NamesUtil.getFamilyName(this.userRecord) - this.creditName = NamesUtil.getCreditName(this.userRecord) - this.ariaLabelName = NamesUtil.getAriaLabelName( + this.givenNames = RecordUtil.getGivenNames(this.userRecord) + this.familyName = RecordUtil.getFamilyName(this.userRecord) + this.creditName = RecordUtil.getCreditName(this.userRecord) + this.ariaLabelName = RecordUtil.getAriaLabelName( this.userRecord, this.ariaLabelName ) @@ -93,7 +93,7 @@ export class RecordHeaderComponent implements OnInit { } if (!isEmpty(this.userRecord.otherNames?.otherNames)) { - this.otherNames = NamesUtil.getOtherNamesUnique( + this.otherNames = RecordUtil.getOtherNamesUnique( userRecord.otherNames?.otherNames ) diff --git a/src/app/record/components/record-info/record-info.component.html b/src/app/record/components/record-info/record-info.component.html index 5a489e5204..a365586b27 100644 --- a/src/app/record/components/record-info/record-info.component.html +++ b/src/app/record/components/record-info/record-info.component.html @@ -1,15 +1,19 @@
-
+

We lock records when they violate conditions of our +   If you feel this record has been locked in error please +   { this.userInfo = userRecord?.userInfo - this.isNamePublic = NamesUtil.isNamePublicAndAffiliations( + this.isNamePublic = RecordUtil.isNamePublicAndAffiliations( userRecord, this.affiliations ) + + this.displaySideBar = RecordUtil.isSideBarEmpty(!!this.isPublicRecord, userRecord) + this.displayBiography = !!userRecord?.biography }) } } diff --git a/src/app/record/components/top-bar/top-bar.component.ts b/src/app/record/components/top-bar/top-bar.component.ts index b31def8bb7..f93578aa03 100644 --- a/src/app/record/components/top-bar/top-bar.component.ts +++ b/src/app/record/components/top-bar/top-bar.component.ts @@ -13,7 +13,7 @@ import { RecordEmailsService } from '../../../core/record-emails/record-emails.s import { MatLegacyDialog as MatDialog } from '@angular/material/legacy-dialog' import { VerificationEmailModalService } from '../../../core/verification-email-modal/verification-email-modal.service' import { isEmpty } from 'lodash' -import { NamesUtil } from 'src/app/shared/utils/names.util' +import { RecordUtil } from 'src/app/shared/utils/record.util' @Component({ selector: 'app-top-bar', @@ -94,17 +94,17 @@ export class TopBarComponent implements OnInit, OnDestroy { this.userInfo = userRecord?.userInfo if (!isEmpty(this.userRecord?.names)) { - this.givenNames = NamesUtil.getGivenNames(this.userRecord) - this.familyName = NamesUtil.getFamilyName(this.userRecord) - this.creditName = NamesUtil.getCreditName(this.userRecord) - this.ariaLabelName = NamesUtil.getAriaLabelName( + this.givenNames = RecordUtil.getGivenNames(this.userRecord) + this.familyName = RecordUtil.getFamilyName(this.userRecord) + this.creditName = RecordUtil.getCreditName(this.userRecord) + this.ariaLabelName = RecordUtil.getAriaLabelName( this.userRecord, this.ariaLabelName ) } if (!isEmpty(this.userRecord.otherNames?.otherNames)) { - this.otherNames = NamesUtil.getOtherNamesUnique( + this.otherNames = RecordUtil.getOtherNamesUnique( userRecord.otherNames?.otherNames ) } diff --git a/src/app/shared/utils/names.util.ts b/src/app/shared/utils/record.util.ts similarity index 70% rename from src/app/shared/utils/names.util.ts rename to src/app/shared/utils/record.util.ts index 296ac4da4b..a2793e13e0 100644 --- a/src/app/shared/utils/names.util.ts +++ b/src/app/shared/utils/record.util.ts @@ -1,7 +1,8 @@ +import { E } from '@angular/cdk/keycodes' import { Assertion } from 'src/app/types' import { UserRecord } from 'src/app/types/record.local' -export class NamesUtil { +export class RecordUtil { static getGivenNames(userRecord: UserRecord): string { return userRecord?.names?.givenNames ? userRecord.names.givenNames.value @@ -71,4 +72,22 @@ export class NamesUtil { }) .join('; ') } + + static isSideBarEmpty(isPublicRecord: boolean, userRecord: UserRecord): boolean { + if ( + (userRecord?.emails?.emails && + (!isPublicRecord || userRecord.emails.emails.length > 0)) || + (userRecord?.website?.websites && + (!isPublicRecord || userRecord.website.websites.length > 0)) || + (userRecord?.externalIdentifier?.externalIdentifiers && + userRecord?.externalIdentifier?.externalIdentifiers.length > 0) || + (userRecord?.keyword?.keywords && + (!isPublicRecord || userRecord.keyword.keywords.length > 0)) || + (userRecord?.countries?.addresses && + (!isPublicRecord || userRecord.countries.addresses.length > 0)) + ) { + return true + } + return false + } } From 6cc516536fca0d959930cac3c90fb744ef092c5e Mon Sep 17 00:00:00 2001 From: amontenegro Date: Tue, 13 Feb 2024 22:23:56 +0000 Subject: [PATCH 08/24] =?UTF-8?q?=F0=9F=A4=96=20GITHUB=20ACTIONS=20format?= =?UTF-8?q?=5Fprettier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/cdk/side-bar/side-bar/side-bar.component.ts | 4 +++- .../components/record-header/record-header.component.html | 7 +++++-- .../components/record-info/record-info.component.html | 4 ++-- .../record/components/record-info/record-info.component.ts | 5 ++++- src/app/shared/utils/record.util.ts | 5 ++++- 5 files changed, 18 insertions(+), 7 deletions(-) diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.ts b/src/app/cdk/side-bar/side-bar/side-bar.component.ts index 55add42620..a80b625d11 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.ts +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.ts @@ -152,7 +152,9 @@ export class SideBarComponent implements OnInit, OnDestroy { } onSideBarElementsDisplay(userRecord: UserRecord): void { - this.isSideBarEmpty.emit(RecordUtil.isSideBarEmpty(!!this.isPublicRecord, userRecord)) + this.isSideBarEmpty.emit( + RecordUtil.isSideBarEmpty(!!this.isPublicRecord, userRecord) + ) } ngOnDestroy() { diff --git a/src/app/record/components/record-header/record-header.component.html b/src/app/record/components/record-header/record-header.component.html index 52a22d44de..3a4de2fe71 100644 --- a/src/app/record/components/record-header/record-header.component.html +++ b/src/app/record/components/record-header/record-header.component.html @@ -8,7 +8,10 @@

This record is locked diff --git a/src/app/record/components/record-info/record-info.component.html b/src/app/record/components/record-info/record-info.component.html index a365586b27..6db0ea80a9 100644 --- a/src/app/record/components/record-info/record-info.component.html +++ b/src/app/record/components/record-info/record-info.component.html @@ -1,12 +1,12 @@

diff --git a/src/app/record/components/record-info/record-info.component.ts b/src/app/record/components/record-info/record-info.component.ts index 2afe992f25..7d8bdc9933 100644 --- a/src/app/record/components/record-info/record-info.component.ts +++ b/src/app/record/components/record-info/record-info.component.ts @@ -36,7 +36,10 @@ export class RecordInfoComponent implements OnInit { this.affiliations ) - this.displaySideBar = RecordUtil.isSideBarEmpty(!!this.isPublicRecord, userRecord) + this.displaySideBar = RecordUtil.isSideBarEmpty( + !!this.isPublicRecord, + userRecord + ) this.displayBiography = !!userRecord?.biography }) } diff --git a/src/app/shared/utils/record.util.ts b/src/app/shared/utils/record.util.ts index a2793e13e0..67b6e6b73c 100644 --- a/src/app/shared/utils/record.util.ts +++ b/src/app/shared/utils/record.util.ts @@ -73,7 +73,10 @@ export class RecordUtil { .join('; ') } - static isSideBarEmpty(isPublicRecord: boolean, userRecord: UserRecord): boolean { + static isSideBarEmpty( + isPublicRecord: boolean, + userRecord: UserRecord + ): boolean { if ( (userRecord?.emails?.emails && (!isPublicRecord || userRecord.emails.emails.length > 0)) || From 93b95f460b6ab903dfa35b7db00b5f2b8cc849ac Mon Sep 17 00:00:00 2001 From: orcid-releaser Date: Tue, 13 Feb 2024 22:25:28 +0000 Subject: [PATCH 09/24] =?UTF-8?q?=F0=9F=A4=96=20GITHUB=20ACTIONS=20format?= =?UTF-8?q?=5Fprettier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/record-header/record-header.component.html | 3 ++- .../record/components/record-info/record-info.component.html | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/record/components/record-header/record-header.component.html b/src/app/record/components/record-header/record-header.component.html index 3a4de2fe71..47d955df91 100644 --- a/src/app/record/components/record-header/record-header.component.html +++ b/src/app/record/components/record-header/record-header.component.html @@ -53,7 +53,8 @@ This record is locked diff --git a/src/app/record/components/record-info/record-info.component.html b/src/app/record/components/record-info/record-info.component.html index 6db0ea80a9..8441501efa 100644 --- a/src/app/record/components/record-info/record-info.component.html +++ b/src/app/record/components/record-info/record-info.component.html @@ -6,7 +6,8 @@

From 9b8e70fccb6827cfc94189f624eacf807b066270 Mon Sep 17 00:00:00 2001 From: github actions Date: Tue, 13 Feb 2024 22:34:55 +0000 Subject: [PATCH 10/24] v2.55.7 changelog update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58b1e8c888..ac59b32f82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.55.7 - 2024-02-13 + +[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.6...v2.55.7) + ## v2.55.6 - 2024-02-13 [Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.5...v2.55.6) From 4b124ed67ab34f7f8f8de91d9f694f75f9b97fba Mon Sep 17 00:00:00 2001 From: Daniel Palafox Date: Wed, 14 Feb 2024 21:23:39 -0500 Subject: [PATCH 11/24] Fix/9086-qa-add-placeholder-copy-in-sidebar-when-no-personal-info-is-available (#2157) * fix: Remove extra white space generate by compiler * fix: Update text in record info * fix: Remove action links for records with issues * style: Updte icon to outlined, fix missing text alignment and remove padding * fix: Displaye no personal information error message for edge cases * fix: Remove unused variables --- .../cdk/side-bar/side-bar/side-bar.component.html | 8 ++++++++ src/app/cdk/side-bar/side-bar/side-bar.component.ts | 7 ++++--- .../record-header/record-header.component.html | 7 ++++++- .../record-header/record-header.component.scss | 9 ++++++--- .../record-info/record-info.component.html | 12 +++++------- .../components/record-info/record-info.component.ts | 10 ++-------- .../record/pages/my-orcid/my-orcid.component.html | 13 ++++++++++--- .../record/pages/my-orcid/my-orcid.component.scss | 8 ++++++++ src/app/record/pages/my-orcid/my-orcid.component.ts | 8 ++++++++ src/locale/properties/record/record.en.properties | 1 + src/locale/properties/record/record.lr.properties | 1 + src/locale/properties/record/record.rl.properties | 1 + src/locale/properties/record/record.xx.properties | 1 + src/locale/properties/top-bar/top-bar.en.properties | 2 +- 14 files changed, 62 insertions(+), 26 deletions(-) diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.html b/src/app/cdk/side-bar/side-bar/side-bar.component.html index b5bc722c4a..27a76a779c 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.html +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.html @@ -14,6 +14,14 @@ > Personal information

+

+ No personal information available +

diff --git a/src/app/record/components/record-header/record-header.component.scss b/src/app/record/components/record-header/record-header.component.scss index 68e39ed168..2587a2adea 100644 --- a/src/app/record/components/record-header/record-header.component.scss +++ b/src/app/record/components/record-header/record-header.component.scss @@ -73,7 +73,10 @@ } } -.record-header.mobile { - justify-content: center; - padding: 18px; +.record-header-wrapper.mobile { + padding: 32px 16px; + text-align: center; + .names { + justify-content: center; + } } diff --git a/src/app/record/components/record-info/record-info.component.html b/src/app/record/components/record-info/record-info.component.html index 8441501efa..4e5750cc00 100644 --- a/src/app/record/components/record-info/record-info.component.html +++ b/src/app/record/components/record-info/record-info.component.html @@ -13,9 +13,8 @@

We lock records when they violate conditions of our - -   -   If you feel this record has been locked in error please - -   -   The record owner may not have added information to their record or the - visibility for items on their record may be to Trusted parties or Only + visibility for items on their record may be set to Trusted parties or Only me.

diff --git a/src/app/record/components/record-info/record-info.component.ts b/src/app/record/components/record-info/record-info.component.ts index 7d8bdc9933..7780680e7c 100644 --- a/src/app/record/components/record-info/record-info.component.ts +++ b/src/app/record/components/record-info/record-info.component.ts @@ -15,11 +15,11 @@ export class RecordInfoComponent implements OnInit { @Input() isPublicRecord: string @Input() affiliations: number + @Input() displaySideBar: boolean + @Input() displayBiography: boolean userInfo: UserInfo isNamePublic: boolean - displaySideBar: boolean - displayBiography: boolean constructor(private _record: RecordService) {} @@ -35,12 +35,6 @@ export class RecordInfoComponent implements OnInit { userRecord, this.affiliations ) - - this.displaySideBar = RecordUtil.isSideBarEmpty( - !!this.isPublicRecord, - userRecord - ) - this.displayBiography = !!userRecord?.biography }) } } diff --git a/src/app/record/pages/my-orcid/my-orcid.component.html b/src/app/record/pages/my-orcid/my-orcid.component.html index 2794b0c44a..87c5e5606c 100644 --- a/src/app/record/pages/my-orcid/my-orcid.component.html +++ b/src/app/record/pages/my-orcid/my-orcid.component.html @@ -23,7 +23,7 @@ *ngIf=" !loadingUserRecord && newRecordHeaderTogglz ? publicOrcid - ? !recordWithIssues && displaySideBar + ? !recordWithIssues && (displaySideBar || displayBiography || affiliations > 0) : true : true " @@ -35,7 +35,7 @@ 'col l9 m8 s4': !loadingUserRecord && newRecordHeaderTogglz ? publicOrcid - ? !recordWithIssues && displaySideBar + ? !recordWithIssues && (displaySideBar || displayBiography || affiliations > 0) : true : true }" @@ -48,10 +48,14 @@ [newRecordHeaderTogglz]="newRecordHeaderTogglz" > @@ -177,6 +181,9 @@ (!loadingUserRecord && affiliations === 0) : false " + [isPublicRecord]="publicOrcid" + [displaySideBar]="displaySideBar" + [displayBiography]="displayBiography" [affiliations]="affiliations" > this._togglz.getTogglz().pipe(first())), tap((togglz) => { diff --git a/src/locale/properties/record/record.en.properties b/src/locale/properties/record/record.en.properties index 6acde489ff..88b595cb2f 100644 --- a/src/locale/properties/record/record.en.properties +++ b/src/locale/properties/record/record.en.properties @@ -43,3 +43,4 @@ record.hideAllSources=Hide all sources for record.validatedSource=Validated source record.selfAssertedSource=Self-asserted source record.noPublicInformation=No public information available +record.noPersonalInformation=No personal information available diff --git a/src/locale/properties/record/record.lr.properties b/src/locale/properties/record/record.lr.properties index 61d3752f85..dc07f6cae1 100644 --- a/src/locale/properties/record/record.lr.properties +++ b/src/locale/properties/record/record.lr.properties @@ -52,3 +52,4 @@ record.hideAllSources=LR record.validatedSource=LR record.selfAssertedSource=LR record.noPublicInformation=LR +record.noPersonalInformation=X diff --git a/src/locale/properties/record/record.rl.properties b/src/locale/properties/record/record.rl.properties index 1acff8d334..f50901f86a 100644 --- a/src/locale/properties/record/record.rl.properties +++ b/src/locale/properties/record/record.rl.properties @@ -52,3 +52,4 @@ record.hideAllSources=RL record.validatedSource=RL record.selfAssertedSource=RL record.noPublicInformation=RL +record.noPersonalInformation=X diff --git a/src/locale/properties/record/record.xx.properties b/src/locale/properties/record/record.xx.properties index e5b3c8c800..70a18dd141 100644 --- a/src/locale/properties/record/record.xx.properties +++ b/src/locale/properties/record/record.xx.properties @@ -52,3 +52,4 @@ record.hideAllSources=X record.validatedSource=X record.selfAssertedSource=X record.noPublicInformation=X +record.noPersonalInformation=X diff --git a/src/locale/properties/top-bar/top-bar.en.properties b/src/locale/properties/top-bar/top-bar.en.properties index d569d4445e..c1d4a0a3ce 100644 --- a/src/locale/properties/top-bar/top-bar.en.properties +++ b/src/locale/properties/top-bar/top-bar.en.properties @@ -108,7 +108,7 @@ topBar.recordLockedInError=If you feel this record has been locked in error plea topBar.contactOrcid=contact ORCID support for further assistance. topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records -topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be set to Trusted parties or Only me. topBar.findOutVisibility=Find out more about visibility settings in ORCID topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) From f700ca3266bc17cb6514ea875934c5eabc660dd9 Mon Sep 17 00:00:00 2001 From: amontenegro Date: Thu, 15 Feb 2024 02:24:50 +0000 Subject: [PATCH 12/24] =?UTF-8?q?=F0=9F=A4=96=20GITHUB=20ACTIONS=20i18n=20?= =?UTF-8?q?generator?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locale/properties/record/record.lr.properties | 2 +- src/locale/properties/record/record.rl.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locale/properties/record/record.lr.properties b/src/locale/properties/record/record.lr.properties index dc07f6cae1..771413ef3e 100644 --- a/src/locale/properties/record/record.lr.properties +++ b/src/locale/properties/record/record.lr.properties @@ -52,4 +52,4 @@ record.hideAllSources=LR record.validatedSource=LR record.selfAssertedSource=LR record.noPublicInformation=LR -record.noPersonalInformation=X +record.noPersonalInformation=LR diff --git a/src/locale/properties/record/record.rl.properties b/src/locale/properties/record/record.rl.properties index f50901f86a..68dd929606 100644 --- a/src/locale/properties/record/record.rl.properties +++ b/src/locale/properties/record/record.rl.properties @@ -52,4 +52,4 @@ record.hideAllSources=RL record.validatedSource=RL record.selfAssertedSource=RL record.noPublicInformation=RL -record.noPersonalInformation=X +record.noPersonalInformation=RL From 12bb23de8d05be06e0a556d63b450cf33f167ddf Mon Sep 17 00:00:00 2001 From: orcid-releaser Date: Thu, 15 Feb 2024 02:26:19 +0000 Subject: [PATCH 13/24] =?UTF-8?q?=F0=9F=A4=96=20GITHUB=20ACTIONS=20format?= =?UTF-8?q?=5Fprettier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/cdk/side-bar/side-bar/side-bar.component.html | 10 +++++++--- src/app/cdk/side-bar/side-bar/side-bar.component.ts | 5 ++++- .../record-header/record-header.component.html | 4 +--- .../components/record-info/record-info.component.html | 10 ++++------ src/app/record/pages/my-orcid/my-orcid.component.html | 8 +++++--- 5 files changed, 21 insertions(+), 16 deletions(-) diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.html b/src/app/cdk/side-bar/side-bar/side-bar.component.html index 27a76a779c..63940936dd 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.html +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.html @@ -17,9 +17,13 @@

+ !loadingUserRecord && isPublicRecord + ? newRecordHeaderTogglz + ? !displaySideBar + : false + : false + " + > No personal information available

diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.ts b/src/app/cdk/side-bar/side-bar/side-bar.component.ts index 3c4f205d80..fee89fe2b4 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.ts +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.ts @@ -154,7 +154,10 @@ export class SideBarComponent implements OnInit, OnDestroy { } onSideBarElementsDisplay(userRecord: UserRecord): void { - this.displaySideBar = RecordUtil.isSideBarEmpty(!!this.isPublicRecord, userRecord) + this.displaySideBar = RecordUtil.isSideBarEmpty( + !!this.isPublicRecord, + userRecord + ) this.isSideBarEmpty.emit(this.displaySideBar) } diff --git a/src/app/record/components/record-header/record-header.component.html b/src/app/record/components/record-header/record-header.component.html index 529bb8582f..bebddf720d 100644 --- a/src/app/record/components/record-header/record-header.component.html +++ b/src/app/record/components/record-header/record-header.component.html @@ -141,9 +141,7 @@ (click)="printRecord()" > - print + print
diff --git a/src/app/record/components/record-info/record-info.component.html b/src/app/record/components/record-info/record-info.component.html index 4e5750cc00..feb00aa6ba 100644 --- a/src/app/record/components/record-info/record-info.component.html +++ b/src/app/record/components/record-info/record-info.component.html @@ -12,8 +12,7 @@ >

- We lock records when they violate conditions of our -  

- If you feel this record has been locked in error please -   The record owner may not have added information to their record or the - visibility for items on their record may be set to Trusted parties or Only - me. + visibility for items on their record may be set to Trusted parties or + Only me.

diff --git a/src/app/record/pages/my-orcid/my-orcid.component.html b/src/app/record/pages/my-orcid/my-orcid.component.html index 87c5e5606c..d3c5d04fff 100644 --- a/src/app/record/pages/my-orcid/my-orcid.component.html +++ b/src/app/record/pages/my-orcid/my-orcid.component.html @@ -23,7 +23,8 @@ *ngIf=" !loadingUserRecord && newRecordHeaderTogglz ? publicOrcid - ? !recordWithIssues && (displaySideBar || displayBiography || affiliations > 0) + ? !recordWithIssues && + (displaySideBar || displayBiography || affiliations > 0) : true : true " @@ -35,7 +36,8 @@ 'col l9 m8 s4': !loadingUserRecord && newRecordHeaderTogglz ? publicOrcid - ? !recordWithIssues && (displaySideBar || displayBiography || affiliations > 0) + ? !recordWithIssues && + (displaySideBar || displayBiography || affiliations > 0) : true : true }" @@ -52,7 +54,7 @@ [ngClass]="{ 'new-header': newRecordHeaderTogglz, 'side-bar-mobile': newRecordHeaderTogglz - }" + }" [isPublicRecord]="publicOrcid" [hideOrcidId]="true" *ngIf="platform.columns8 || platform.columns4" From a046bbb68040eef20058259c54b854cedbd68886 Mon Sep 17 00:00:00 2001 From: github actions Date: Thu, 15 Feb 2024 02:36:21 +0000 Subject: [PATCH 14/24] v2.55.8 changelog update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac59b32f82..b9c18ef08c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.55.8 - 2024-02-15 + +[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.7...v2.55.8) + ## v2.55.7 - 2024-02-13 [Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.6...v2.55.7) From bd53d42f62223cbbdf5962c2b0fba5f22b140a45 Mon Sep 17 00:00:00 2001 From: Daniel Palafox Date: Wed, 14 Feb 2024 21:37:37 -0500 Subject: [PATCH 15/24] style: Update footer size (#2158) Co-authored-by: Angel Montenegro --- src/app/record/pages/my-orcid/my-orcid.component.scss | 4 ---- src/styles.scss | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/app/record/pages/my-orcid/my-orcid.component.scss b/src/app/record/pages/my-orcid/my-orcid.component.scss index 56d5926858..6ea4f0f52a 100644 --- a/src/app/record/pages/my-orcid/my-orcid.component.scss +++ b/src/app/record/pages/my-orcid/my-orcid.component.scss @@ -35,10 +35,6 @@ app-statistics { padding-inline-start: 16px; } -.container { - margin-bottom: -140px; -} - .mobile { bottom: 400px !important; } diff --git a/src/styles.scss b/src/styles.scss index cb0060635a..a07e4db82c 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -38,7 +38,7 @@ app-root { } .router-container { - padding-bottom: 240px; //remove footer height + padding-bottom: 160px; //remove footer height .columns-8 &, .columns-4 & { From 9910494d335a206eae95db1e81ee92a911b54e52 Mon Sep 17 00:00:00 2001 From: github actions Date: Thu, 15 Feb 2024 02:47:55 +0000 Subject: [PATCH 16/24] v2.55.9 changelog update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9c18ef08c..f23ab4653e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.55.9 - 2024-02-15 + +[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.8...v2.55.9) + ## v2.55.8 - 2024-02-15 [Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.7...v2.55.8) From 03c0263d5f5c8f0b619c2843b11ba44deee76101 Mon Sep 17 00:00:00 2001 From: Daniel Palafox Date: Thu, 15 Feb 2024 21:08:24 -0500 Subject: [PATCH 17/24] Fix/9084-qa-record-header-spacing-layout-records-with-special-status (#2159) * style: Update spacing and layout on new public page * style: Remove padding from first element and add gap * fix: Add missing deprecated message * style: Aligh names in mobile version * fix: Remove whitespace and alig h2 tag --- .../side-bar/side-bar/side-bar.component.scss | 4 ---- .../record-header.component.html | 4 ++-- .../record-header.component.scss | 9 +++++++- .../record-info/record-info.component.html | 21 +++++++++++++------ .../record-info/record-info.component.scss | 8 +++++-- .../record-info/record-info.component.ts | 2 ++ 6 files changed, 33 insertions(+), 15 deletions(-) diff --git a/src/app/cdk/side-bar/side-bar/side-bar.component.scss b/src/app/cdk/side-bar/side-bar/side-bar.component.scss index 8396202350..48a6fd8232 100644 --- a/src/app/cdk/side-bar/side-bar/side-bar.component.scss +++ b/src/app/cdk/side-bar/side-bar/side-bar.component.scss @@ -19,10 +19,6 @@ app-panel { margin-top: 16px; } -app-panel:first-of-type { - margin-top: 32px; -} - .orc-font-body { margin: unset; } diff --git a/src/app/record/components/record-header/record-header.component.html b/src/app/record/components/record-header/record-header.component.html index bebddf720d..42b7937a64 100644 --- a/src/app/record/components/record-header/record-header.component.html +++ b/src/app/record/components/record-header/record-header.component.html @@ -4,10 +4,10 @@ color="accent" >

-
+
+

+ + This account has been deprecated, please see account +  {{ + 'https:' + baseUrl + userInfo.PRIMARY_RECORD + }} for the latest information + +

A deprecated record is a duplicate or unwanted ORCID record that has @@ -76,11 +87,9 @@

-

- No public information available -

+

+ No public information available +

The record owner may not have added information to their record or the diff --git a/src/app/record/components/record-info/record-info.component.scss b/src/app/record/components/record-info/record-info.component.scss index 7314b2e5e6..4b30cd357a 100644 --- a/src/app/record/components/record-info/record-info.component.scss +++ b/src/app/record/components/record-info/record-info.component.scss @@ -1,12 +1,16 @@ .record-info { display: flex; - padding: 0px 32px; + padding: 0; flex-direction: column; align-items: start; - gap: 32px; + gap: 16px; flex: 1 0 0; align-self: stretch; + h2 { + margin: 0; + } + p { margin: 0; line-height: 21px; diff --git a/src/app/record/components/record-info/record-info.component.ts b/src/app/record/components/record-info/record-info.component.ts index 7780680e7c..1725fd68be 100644 --- a/src/app/record/components/record-info/record-info.component.ts +++ b/src/app/record/components/record-info/record-info.component.ts @@ -4,6 +4,7 @@ import { takeUntil } from 'rxjs/operators' import { RecordService } from 'src/app/core/record/record.service' import { RecordUtil as RecordUtil } from 'src/app/shared/utils/record.util' import { UserInfo } from 'src/app/types' +import { environment } from 'src/environments/environment' @Component({ selector: 'app-record-info', @@ -20,6 +21,7 @@ export class RecordInfoComponent implements OnInit { userInfo: UserInfo isNamePublic: boolean + baseUrl = environment.BASE_URL constructor(private _record: RecordService) {} From 540f4aaee7c6708eca482acefa06e3e3ca371755 Mon Sep 17 00:00:00 2001 From: amontenegro Date: Fri, 16 Feb 2024 02:09:54 +0000 Subject: [PATCH 18/24] =?UTF-8?q?=F0=9F=A4=96=20GITHUB=20ACTIONS=20format?= =?UTF-8?q?=5Fprettier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/record-info/record-info.component.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/record/components/record-info/record-info.component.html b/src/app/record/components/record-info/record-info.component.html index b0244514d8..a02eb9b410 100644 --- a/src/app/record/components/record-info/record-info.component.html +++ b/src/app/record/components/record-info/record-info.component.html @@ -60,8 +60,7 @@

- This account has been deprecated, please see account -  {{ 'https:' + baseUrl + userInfo.PRIMARY_RECORD }} -

+

No public information available

From fcface9fcfc36b208b21da19b9865dbd3e3de45d Mon Sep 17 00:00:00 2001 From: github actions Date: Fri, 16 Feb 2024 02:19:39 +0000 Subject: [PATCH 19/24] v2.55.10 changelog update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f23ab4653e..84be557ffd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.55.10 - 2024-02-16 + +[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.9...v2.55.10) + ## v2.55.9 - 2024-02-15 [Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.8...v2.55.9) From c9bcf35e6239a9e6153a8ee1d48668136f4771f1 Mon Sep 17 00:00:00 2001 From: leomendoza123 Date: Fri, 16 Feb 2024 09:12:58 -0600 Subject: [PATCH 20/24] Transifex (#2160) * tx pull * tx pull * tx pull TR * tx pull PT * tx pull * Remove trailing spaces * remove spaces after = * remove spaces after = * clean SUBSKRYBUJ --------- Co-authored-by: Leonardo Mendoza Fernadez --- .../register/register.ar.properties | 43 +++++++++++++++--- .../register/register.cs.properties | 41 ++++++++++++++--- .../register/register.de.properties | 43 +++++++++++++++--- .../register/register.es.properties | 43 +++++++++++++++--- .../register/register.fr.properties | 39 ++++++++++++++-- .../register/register.it.properties | 43 +++++++++++++++--- .../register/register.ja.properties | 41 ++++++++++++++--- .../register/register.ko.properties | 41 ++++++++++++++--- .../register/register.pl.properties | 41 ++++++++++++++--- .../register/register.pt.properties | 43 +++++++++++++++--- .../register/register.ru.properties | 43 +++++++++++++++--- .../register/register.tr.properties | 45 ++++++++++++++++--- .../register/register.zh_CN.properties | 41 ++++++++++++++--- .../register/register.zh_TW.properties | 43 +++++++++++++++--- .../properties/shared/shared.de.properties | 2 +- .../properties/signin/signin.pt.properties | 2 +- .../properties/top-bar/top-bar.ar.properties | 14 ++++++ .../properties/top-bar/top-bar.cs.properties | 14 ++++++ .../properties/top-bar/top-bar.de.properties | 14 ++++++ .../properties/top-bar/top-bar.es.properties | 14 ++++++ .../properties/top-bar/top-bar.fr.properties | 14 ++++++ .../properties/top-bar/top-bar.it.properties | 14 ++++++ .../properties/top-bar/top-bar.ja.properties | 14 ++++++ .../properties/top-bar/top-bar.ko.properties | 14 ++++++ .../properties/top-bar/top-bar.pl.properties | 14 ++++++ .../properties/top-bar/top-bar.pt.properties | 14 ++++++ .../properties/top-bar/top-bar.ru.properties | 14 ++++++ .../properties/top-bar/top-bar.tr.properties | 14 ++++++ .../top-bar/top-bar.zh_CN.properties | 14 ++++++ .../top-bar/top-bar.zh_TW.properties | 14 ++++++ .../properties/works/works.de.properties | 8 ++-- 31 files changed, 714 insertions(+), 84 deletions(-) diff --git a/src/locale/properties/register/register.ar.properties b/src/locale/properties/register/register.ar.properties index 17b2743b36..529521bb2b 100644 --- a/src/locale/properties/register/register.ar.properties +++ b/src/locale/properties/register/register.ar.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=عناوين البريد الإلكترون register.thisLooksLikeAPersonalEmail=هذا يبدو وكأنه بريد إلكتروني شخصي register.asBackupSoWeCanBetter=كنسخة احتياطية حتى نتمكن من التوصية بشكل أفضل بالانتسابات والبيانات الأخرى ذات الصلة لك. register.professionalEmail=البريد الإلكتروني المهني -register.addA=إضافة -register.addAnotherEmailToSecure=إضافة بريد إلكتروني آخر لتأمين حسابك +register.addA=أدخل مزيد من الإضافات +register.addAnotherEmailToSecure=أضف بريدًا إلكترونيًا إضافيًا لتأمين حسابك register.addingAnAddiotionalEmailAsBackup=تساعد إضافة بريد إلكتروني إضافي كنسخة احتياطية في تأمين حسابك والتأكد من إمكانية تسجيل الدخول دائمًا. regiser.thisLooksLikeAProffessional=هذا يبدو وكأنه بريد إلكتروني مهني register.asBackupSoYouAlways=كنسخة احتياطية حتى تتمكن دائمًا من الوصول إلى حسابك على ORCID إذا قمت بتغيير الوظائف أو الأدوار. -register.weRecommendAdding=نوصي بإضافة +register.weRecommendAdding=نوصي بإضافة المزيد +register.youMustAccept2=يتوجب عليك الموافقة على شروط الاستخدام والموافقة على معالجة بياناتك في الولايات المتحدة register.termsOfUse2=شروط الاستخدام register.agree2=وأوافق على أن تكون بياناتي متاحة للجمهور حيث علِّمت على أنها "مرئية للجميع". register.visibilityLegend=إعدادات العرض @@ -155,12 +156,18 @@ register.everioneCanSeeThese=يمكن للجميع رؤية هذه العناص register.onlyPeopleAndOrganization=فقط الأشخاص والمنظمات التي منحتها الإذن register.itemsArePrivateAndOnly=العناصر خاصة ومرئية لك فقط register.step1.2=الخطوة 1 من 4 – الأسماء وعناوين البريد الإلكتروني +register.step2.2=الخطوة 2 من 4 – كلمة المرور +register.step3.2=الخطوة 3 من 4 – إمكانية الرؤية +register.step4.2=الخطوة 4 من 4 - الشروط والأحكام +register.step2.3=الخطوة 2 من 5 - كلمة المرور +register.step1.3=الخطوة 1 من 5 - الأسماء والبريد الإلكتروني +register.step4.3=الخطوة 4 من 5 - الرؤية +register.step3.3=الخطوة 3 من 5 - التوظيف الحالي +register.step5.3=الخطوة 5 من 5 - الشروط والأحكام register.nextStep=الخطوة التالية register.cancelRegistration=إلغاء التسجيل -register.step2.2=الخطوة 2 من 4 – كلمة المرور register.previousStep=الخطوة السابقة register.completeRegistration=إكمال التسجيل -register.step2.4=الخطوة 4 من 4 - الشروط والأحكام register.passwordRequired2=الرجاء إدخال كلمة المرور register.weOccasionallySend=نرسل أحياناً بريداً إلكترونياً يحتوي على معلومات حول الميزات الجديدة والنصائح للحصول على أقصى استفادة من تسجيلة أوركيد الخاصة بك. register.yourPasswords=كلمة المرور الخاصة بك @@ -177,7 +184,6 @@ register.labelConfirmEmail=تأكيد عنوان بريدك الألكتروني register.labelNameYouMostMost=الأسماء التي تستخدمها غالبًا register.familyNamePlaceholder=اسم العائلة أو اللقب register.ariaLabelMoreInformationOnVisibility=مزيد من المعلومات حول إعدادات الرؤية (يفتح في علامة تبويب جديدة) -register.step2.3=الخطوة 3 من 4 – إمكانية الرؤية shared.previousStep=الخطوة السابقة register.addAnAdditionalEmail=إضافة بريد إلكتروني إضافي register.personalEmail=بريد إلكتروني شخصي @@ -188,3 +194,28 @@ register.emailAreNotValid=رسائل البريد الإلكتروني الخا register.Email=بريد الكتروني register.VisibilityParties=المنظمات والأفراد الموثوق بهم register.emailPlaceholder=عنوان البريد الإلكتروني الذي تستخدمه كثيرًا +register.roleJobTitle=الدور/المسمى الوظيفي +register.department=القسم +register.weCantIdentifyThisOrganization=يتعذر علينا تحديد هذه المؤسسة. يُرجى إعادة المحاولة لإدخال اسم المؤسسة. +register.currentEmployment=الوظيفة الحالية +register.pleaseEnterAnOrganizationName=يرجى إدخال اسم المؤسسة +register.organizationPlaceholder=الرجاء كتابة اسم المؤسسة +register.departmentPlaceholder=المدرسة، أو الكلية، أو القسم +register.rolePlaceholder=دورك أو وظيفتك في المؤسسة +register.yearPlaceholder=سنة +register.monthPlaceholder=شهر +register.clearOrganization=مؤسسة واضحة +shared.skipThisStepWithoutAddingAnAffiliation=تخطي هذه الخطوة دون إضافة أي انتماء +register.isAssociatedWith=مرتبط بالفعل مع +register.anExisting=موجود +register.anUnclaimed=غير مطالب به +register.aDeactivated=معطل +register.orcidRecord=سِجِل ORCID. +register.youCannotUseThisEmail=يتعذر عليك استخدام عنوان البريد الإلكتروني الحالي عند إنشاء معرّف ORCID جديد. +register.emailIsAlreadyAssociated=تم ربط هذا البريد الإلكتروني بالفعل بسجل ORCID موجود. يرجى استخدام عنوان بريد إلكتروني آخر للاستمرار في تسجيل معرّف ORCID جديد. +register.resendClaimAddress=إعادة إرسال رسالة بريد إلكتروني للمطالبة بعنوان البريد الإلكتروني الحالي +register.reactivateOrcidAssociated=إعادة تفعيل سجل ORCID المرتبط بعنوان البريد الإلكتروني الحالي +register.affiliationFoud=لم يتم العثور على انتماء +register.basedOnYourEmailWeThink=بناءً على رسائلك الإلكترونية، نعتقد أنك مرتبط حاليًا مع +register.webePreselectedThisOrganizationForYouInTheFormBelow=لقد قمنا بتحديد هذه المؤسسة مسبقًا لك في النموذج أدناه. +register.whenYouCompleteRegistrationAnEmployment=عند الانتهاء من عملية التسجيل، سيتم إضافة تفاصيل التوظيف تلقائيًا إلى سجل ORCID الجديد الخاص بك. diff --git a/src/locale/properties/register/register.cs.properties b/src/locale/properties/register/register.cs.properties index 2ce9a84d9c..fd152ade11 100644 --- a/src/locale/properties/register/register.cs.properties +++ b/src/locale/properties/register/register.cs.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=E-mailové adresy se neshodují register.thisLooksLikeAPersonalEmail=E-mailová adresa vypadá to jako osobní register.asBackupSoWeCanBetter=jako zálohu, abychom vám mohli nabízet lepší doporučení příslušnosti a další související údaje. register.professionalEmail=profesní e-mail -register.addA=Přidejte +register.addA=Přidání další register.addAnotherEmailToSecure=Pro zabezpečení účtu přidejte další e-mail register.addingAnAddiotionalEmailAsBackup=Přidáním záložního e-mailu zvýšíte zabezpečení vašeho účtu a minimalizuje riziko ztráty přístupu. regiser.thisLooksLikeAProffessional=E-mailová adresa vypadá to jako profesní register.asBackupSoYouAlways=jako zálohu, abyste neztratili přístup ke svému účtu ORCID, pokud změníte zaměstnání nebo roli. -register.weRecommendAdding=Doporučujeme přidat +register.weRecommendAdding=Doporučujeme přidat další +register.youMustAccept2=Musíte přijmout podmínky používání a souhlasit se zpracováním vašich údajů ve Spojených státech register.termsOfUse2=podmínky používání register.agree2=a souhlasím, že moje údaje budou veřejně přístupné, pokud budou označeny jako „Viditelné pro všechny“. register.visibilityLegend=Nastavení viditelnosti @@ -155,12 +156,18 @@ register.everioneCanSeeThese=Tyto položky si může prohlédnout každý register.onlyPeopleAndOrganization=Pouze osoby a organizace, kterým jste dali svolení register.itemsArePrivateAndOnly=Položky jsou soukromé a viditelné pouze pro vás register.step1.2=Krok 1 ze 4 – Jména a e-maily +register.step2.2=Krok 2 ze 4 – Heslo +register.step3.2=Krok 3 z 4 – Viditelnost +register.step4.2=Krok 4 ze 4 – Smluvní podmínky +register.step2.3=Krok 2 z 5 – Heslo +register.step1.3=Krok 1 z 5 – Jména a e-maily +register.step4.3=Krok 4 z 5 – Viditelnost +register.step3.3=Krok 3 z 5 – Stávající zaměstnání +register.step5.3=Krok 5 z 5 – Smluvní podmínky register.nextStep=Následující krok register.cancelRegistration=Zrušit registraci -register.step2.2=Krok 2 ze 4 – Heslo register.previousStep=Předchozí krok register.completeRegistration=Dokončit registraci -register.step2.4=Krok 4 ze 4 – Smluvní podmínky register.passwordRequired2=Zadejte heslo register.weOccasionallySend=Čas od času rozesíláme e-mail, ve kterém najdete informace o nových funkcích a tipy, jak svůj záznam ORCID využít co nejlépe. register.yourPasswords=Vaše heslo @@ -177,7 +184,6 @@ register.labelConfirmEmail=Potvrďte svou e-mailovou adresu register.labelNameYouMostMost=Jména, kterými se vám nejčastěji říká register.familyNamePlaceholder=Vaše příjmení register.ariaLabelMoreInformationOnVisibility=Další informace o nastavení viditelnosti (Otevře se v nové záložce) -register.step2.3=Krok 3 z 4 – Viditelnost shared.previousStep=Předchozí krok register.addAnAdditionalEmail=Přidání další e-mailové adresy register.personalEmail=osobní e-mail @@ -188,3 +194,28 @@ register.emailAreNotValid=Vaše e-maily se neshodují register.Email=Email register.VisibilityParties=Důvěryhodné strany register.emailPlaceholder=E-mailová adresa, kterou používáte nejčastěji +register.roleJobTitle=Název role/pozice +register.department=Oddělení +register.weCantIdentifyThisOrganization=Tuto organizaci nemůžeme identifikovat. Zkuste znovu zadat jméno organizace. +register.currentEmployment=Stávající zaměstnání +register.pleaseEnterAnOrganizationName=Zadejte jméno organizace +register.organizationPlaceholder=Zadejte jméno své organizace +register.departmentPlaceholder=Škola, vysoká škola nebo obor +register.rolePlaceholder=Vaše role nebo pozice v organizaci +register.yearPlaceholder=Rok +register.monthPlaceholder=Měsíc +register.clearOrganization=Odstranit organizaci +shared.skipThisStepWithoutAddingAnAffiliation=Přeskočit tento krok bez přidání přidružení +register.isAssociatedWith=je už přidružen ke +register.anExisting=stávajícímu +register.anUnclaimed=nevyžádaném +register.aDeactivated=deaktivovanému +register.orcidRecord=záznamu ORCID. +register.youCannotUseThisEmail=Tuto e-mailovou adresu nemůžete použít při vytváření nového ORCID iD. +register.emailIsAlreadyAssociated=Tato e-mailová adresa je již spojena se stávajícím záznamem ORCID. Abyste zaregistrovali nové ORCID iD, použijte jinou e-mailovou adresu. +register.resendClaimAddress=Odeslat znovu potvrzovací e-mail na tuto e-mailovou adresu +register.reactivateOrcidAssociated=Opětovně aktivovat záznam ORCID spojený s touto e-mailovou adresou +register.affiliationFoud=Přidružení nalezeno +register.basedOnYourEmailWeThink=Na základě vašich e-mailů si myslíme, že jste momentálně přidruženi k +register.webePreselectedThisOrganizationForYouInTheFormBelow=Tuto organizaci jsme pro vás předem vybrali v níže uvedeném formuláři. +register.whenYouCompleteRegistrationAnEmployment=Když dokončíte registraci, k vašemu novému záznamu ORCID bude automaticky přidáno nové přidružení zaměstnání. diff --git a/src/locale/properties/register/register.de.properties b/src/locale/properties/register/register.de.properties index 4cb7afc184..4f63b1c67d 100644 --- a/src/locale/properties/register/register.de.properties +++ b/src/locale/properties/register/register.de.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=E-Mail-Adressen stimmen nicht überein. register.thisLooksLikeAPersonalEmail=Dies sieht nach einer privaten E-Mail-Adresse aus. register.asBackupSoWeCanBetter=als Backup hinzu, damit wir Ihnen Zugehörigkeiten und damit verbundene Daten besser empfehlen können. register.professionalEmail=berufliche E-Mail-Adresse -register.addA=Fügen Sie eine -register.addAnotherEmailToSecure=Fügen Sie eine weitere E-Mail-Adresse hinzu, um Ihr Konto zu schützen. +register.addA=Add an additional +register.addAnotherEmailToSecure=Fügen Sie eine zusätzliche E-Mail-Adresse hinzu, um Ihr Konto zu sichern register.addingAnAddiotionalEmailAsBackup=Indem Sie eine weitere E-Mail-Adresse als Backup hinzufügen, schützen Sie Ihr Konto und stellen Sie sicher, dass Sie sich immer anmelden können. regiser.thisLooksLikeAProffessional=Dies sieht nach einer beruflichen E-Mail-Adresse aus. register.asBackupSoYouAlways=als Backup hinzuzufügen, damit Sie immer Zugriff auf Ihr ORCID-Konto haben, wenn Sie Ihre Arbeit oder Position wechseln. -register.weRecommendAdding=Wir empfehlen, eine +register.weRecommendAdding=We recommend adding an additional +register.youMustAccept2=Sie müssen unsere Nutzungsbedingungen akzeptieren und der Verarbeitung Ihrer Daten in den USA zustimmen. register.termsOfUse2=Nutzungsbedingungen register.agree2=und stimme zu, dass meine Daten öffentlich zugänglich sind, wenn sie als „Für alle sichtbar“ gekennzeichnet sind. register.visibilityLegend=Sichtbarkeitseinstellungen @@ -155,12 +156,18 @@ register.everioneCanSeeThese=Jeder kann diese Elemente sehen. register.onlyPeopleAndOrganization=Nur Personen und Organisationen, denen Sie die Berechtigung erteilt haben register.itemsArePrivateAndOnly=Elemente sind privat und nur für Sie sichtbar. register.step1.2=Schritt 1 von 4 – Namen und E-Mail-Adressen +register.step2.2=Schritt 2 von 4 – Passwort +register.step3.2=Schritt 3 von 4 – Sichtbarkeit +register.step4.2=Schritt 4 von 4 – allgemeine Geschäftsbedingungen +register.step2.3=Schritt 2 von 5 – Passwort +register.step1.3=Schritt 1 von 5 – Namen und E-Mail-Adressen +register.step4.3=Schritt 4 von 5 – Sichtbarkeit +register.step3.3=Schritt 3 von 5 – Aktuelle Beschäftigung +register.step5.3=Schritt 5 von 5 – Allgemeine Geschäftsbedingungen register.nextStep=Nächster Schritt register.cancelRegistration=Registrierung abbrechen -register.step2.2=Schritt 2 von 4 – Passwort register.previousStep=Vorheriger Schritt register.completeRegistration=Registrierung abschließen -register.step2.4=Schritt 4 von 4 – allgemeine Geschäftsbedingungen register.passwordRequired2=Bitte geben Sie ein Passwort ein. register.weOccasionallySend=Wir versenden gelegentlich E-Mails mit Informationen zu neuen Funktionen und Tipps, wie Sie das Meiste aus Ihrem ORCID-Eintrag herausholen können. register.yourPasswords=Ihr Passwort @@ -177,7 +184,6 @@ register.labelConfirmEmail=Bestätigen Sie Ihre E-Mail-Adresse. register.labelNameYouMostMost=Die Namen, die Sie in der Regel verwenden register.familyNamePlaceholder=Ihr Familien- bzw. Nachname register.ariaLabelMoreInformationOnVisibility=Weitere Informationen zu den Sichtbarkeitseinstellungen (werden in einem neuen Tab geöffnet) -register.step2.3=Schritt 3 von 4 – Sichtbarkeit shared.previousStep=Vorheriger Schritt register.addAnAdditionalEmail=Zusätzliche E-Mail-Adresse hinzufügen register.personalEmail=private E-Mail-Adresse @@ -188,3 +194,28 @@ register.emailAreNotValid=Ihre E-Mail-Adressen stimmen nicht überein. register.Email=E-Mail-Adresse register.VisibilityParties=Vertrauenswürdige Parteien register.emailPlaceholder=Ihre am häufigsten verwendete E-Mail-Adresse +register.roleJobTitle=Rolle/Titel +register.department=Abteilung +register.weCantIdentifyThisOrganization=Wir konnten diese Organisation nicht identifizieren. Bitte versuchen Sie erneut, den Namen der Organisation einzugeben. +register.currentEmployment=Aktuelle Beschäftigung +register.pleaseEnterAnOrganizationName=Bitte geben Sie einen Organisationsnamen ein +register.organizationPlaceholder=Organisationsnamen eingeben +register.departmentPlaceholder=Schule, Hochschule oder Abteilung +register.rolePlaceholder=Ihre Rolle oder Stelle in der Organisation +register.yearPlaceholder=Jahr +register.monthPlaceholder=Monat +register.clearOrganization=Organisation löschen +shared.skipThisStepWithoutAddingAnAffiliation=Diesen Schritt überspringen, ohne eine Zugehörigkeit einzugeben +register.isAssociatedWith=ist bereits verbunden mit +register.anExisting=einem bestehenden +register.anUnclaimed=einem nicht beanspruchten +register.aDeactivated=einem deaktivierten +register.orcidRecord=ORCID-Eintrag. +register.youCannotUseThisEmail=Sie können diese E-Mail-Adresse nicht verwenden, um eine neue ORCID-ID zu erstellen +register.emailIsAlreadyAssociated=Diese E-Mail-Adresse ist bereits mit einem existierenden ORCID-Eintrag verknüpft. Bitte verwenden Sie eine andere E-Mail-Adresse, um eine neue ORCID-ID zu registrieren. +register.resendClaimAddress=Anspruchs-E-Mail erneut an diese E-Mail-Adresse schicken +register.reactivateOrcidAssociated=Den mit dieser E-Mail-Adresse verknüpften ORCID-Eintrag reaktivieren. +register.affiliationFoud=Zugehörigkeit gefunden +register.basedOnYourEmailWeThink=Basierend auf Ihren E-Mail-Adressen vermuten wir folgende Zugehörigkeit: +register.webePreselectedThisOrganizationForYouInTheFormBelow=Wir haben diese Organisation bereits im Formular unten für Sie ausgewählt. +register.whenYouCompleteRegistrationAnEmployment=Wenn Sie die Registrierung abschließen, wird die Beschäftigungszugehörigkeit automatisch zu Ihrem neuen ORCID-Eintrag hinzugefügt. diff --git a/src/locale/properties/register/register.es.properties b/src/locale/properties/register/register.es.properties index 53c25f4ef1..f74ed8a6c3 100644 --- a/src/locale/properties/register/register.es.properties +++ b/src/locale/properties/register/register.es.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=Las direcciones de correo electrónico no co register.thisLooksLikeAPersonalEmail=Parece un correo electrónico personal register.asBackupSoWeCanBetter=como respaldo para que podamos recomendarle afiliaciones y demás información por el estilo. register.professionalEmail=correo electrónico profesional -register.addA=Agregue un -register.addAnotherEmailToSecure=Agregue otro correo electrónico para proteger su cuenta +register.addA=Añadir otro +register.addAnotherEmailToSecure=Añada otro correo electrónico para proteger su cuenta register.addingAnAddiotionalEmailAsBackup=Al añadir un correo electrónico adicional de respaldo, será más fácil proteger su cuenta y garantizar que siempre pueda iniciar sesión. regiser.thisLooksLikeAProffessional=Parece un correo electrónico profesional register.asBackupSoYouAlways=como respaldo para tener siempre acceso a su cuenta de ORCID si cambia de puesto o función. -register.weRecommendAdding=Recomendamos agregar un +register.weRecommendAdding=Le recomendamos que añada otro +register.youMustAccept2=Tiene que aceptar los términos de uso y dar tu consentimiento para que sus datos se traten en Estados Unidos. register.termsOfUse2=términos de uso register.agree2=y acepto que mis datos sean de acceso público cuando estén marcados como «Visibles para todos». register.visibilityLegend=Ajustes de visibilidad @@ -155,12 +156,18 @@ register.everioneCanSeeThese=Todo el mundo puede ver estos artículos register.onlyPeopleAndOrganization=Solo las personas y organizaciones a las que haya dado permiso register.itemsArePrivateAndOnly=Los artículos con privados; solo usted puede verlos register.step1.2=Paso 1 de 4: Nombre y correos electrónicos +register.step2.2=Paso 2 de 4: Contraseña +register.step3.2=Paso 3 de 4: Visibilidad +register.step4.2=Paso 4 de 4: Términos y condiciones +register.step2.3=Paso 2 de 5: Contraseña +register.step1.3=Paso 1 de 5: Nombre y correos electrónicos +register.step4.3=Paso 4 de 5: Visibilidad +register.step3.3=Paso 3 de 5: Empleo actual +register.step5.3=Paso 5 de 5: Términos y condiciones register.nextStep=Siguiente paso register.cancelRegistration=Cancelar registro -register.step2.2=Paso 2 de 4: Contraseña register.previousStep=Paso anterior register.completeRegistration=Completar registro -register.step2.4=Paso 4 de 4: Términos y condiciones register.passwordRequired2=Introduzca una contraseña register.weOccasionallySend=De forma ocasional, enviaremos un correo electrónico con información sobre nuevas funcionalidades y consejos, con el fin de sacar el máximo partido a su registro ORCID. register.yourPasswords=Su contraseña @@ -177,7 +184,6 @@ register.labelConfirmEmail=Confirme su dirección de correo electrónico register.labelNameYouMostMost=El nombre que usa normalmente register.familyNamePlaceholder=Sus apellidos register.ariaLabelMoreInformationOnVisibility=Más información en los ajustes de visibilidad (se abrirá en una pestaña nueva) -register.step2.3=Paso 3 de 4: Visibilidad shared.previousStep=Paso anterior register.addAnAdditionalEmail=Añada un correo electrónico adicional register.personalEmail=correo electrónico personal @@ -188,3 +194,28 @@ register.emailAreNotValid=Sus correos electrónicos no coinciden register.Email=Correo electrónico register.VisibilityParties=Partes de confianza register.emailPlaceholder=La dirección de correo electrónico que más usa +register.roleJobTitle=Rol/Cargo laboral +register.department=Departamento +register.weCantIdentifyThisOrganization=No podemos identificar esta organización. Intente introducir de nuevo el nombre de la organización. +register.currentEmployment=Empleo actual +register.pleaseEnterAnOrganizationName=Introduzca un nombre de organización +register.organizationPlaceholder=Escriba el nombre de su organización +register.departmentPlaceholder=Colegio, universidad o departamento +register.rolePlaceholder=Su cargo o puesto en la organización +register.yearPlaceholder=Año +register.monthPlaceholder=Mes +register.clearOrganization=Eliminar organización +shared.skipThisStepWithoutAddingAnAffiliation=Omitir este paso sin añadir una afiliación +register.isAssociatedWith=ya está asociada con +register.anExisting=un registro existente +register.anUnclaimed=un registro sin reclamar +register.aDeactivated=un registro desactivado +register.orcidRecord=ORCID. +register.youCannotUseThisEmail=No puede usar esta dirección de correo electrónico para crear un ORCID iD nuevo. +register.emailIsAlreadyAssociated=Este correo electrónico ya está asociado con un registro existente ORCID. Utilice una dirección de correo electrónico diferente para seguir registrando un ORCID iD nuevo. +register.resendClaimAddress=Volver a enviar un correo electrónico de reclamación para esta dirección de correo electrónico +register.reactivateOrcidAssociated=Reactivar el registro ORCID asociado con esta dirección de correo electrónico +register.affiliationFoud=Afiliación encontrada +register.basedOnYourEmailWeThink=En función de sus correos electrónicos, consideramos que se encuentra afiliado actualmente con +register.webePreselectedThisOrganizationForYouInTheFormBelow=Hemos preseleccionado esta organización para usted en el siguiente formulario. +register.whenYouCompleteRegistrationAnEmployment=Tras completar el registro, se añadirá una afiliación de empleo automáticamente a su registro ORCID nuevo. diff --git a/src/locale/properties/register/register.fr.properties b/src/locale/properties/register/register.fr.properties index 8e3f175d57..a3ef72fe4f 100644 --- a/src/locale/properties/register/register.fr.properties +++ b/src/locale/properties/register/register.fr.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=Les adresses e-mail ne correspondent pas register.thisLooksLikeAPersonalEmail=Cela ressemble à une adresse e-mail personnelle register.asBackupSoWeCanBetter=comme adresse de secours afin que nous puissions au mieux vous recommander des affiliations et d'autres données associées. register.professionalEmail=adresse e-mail professionnelle -register.addA=Ajoutez une +register.addA=Ajoutez une autre register.addAnotherEmailToSecure=Ajoutez une autre adresse e-mail pour sécuriser votre compte register.addingAnAddiotionalEmailAsBackup=L'ajout d'une adresse e-mail supplémentaire comme adresse de secours vous permet de sécuriser votre compte et de toujours pouvoir vous connecter. regiser.thisLooksLikeAProffessional=Cela ressemble à une adresse e-mail professionnelle register.asBackupSoYouAlways=comme adresse de secours afin de toujours pouvoir accéder à votre compte ORCID si vous changez de poste. register.weRecommendAdding=Nous vous conseillons d'ajouter une +register.youMustAccept2=Vous devez accepter les conditions et consentir au traitement de vos données aux États-Unis register.termsOfUse2=conditions d'utilisation d'ORCID register.agree2=et j'accepte que mes données soient accessibles au public lorsqu'elles sont marquées comme « Visibles pour tous ». register.visibilityLegend=Paramètres de confidentialité @@ -155,12 +156,18 @@ register.everioneCanSeeThese=Tout le monde peut voir ces éléments register.onlyPeopleAndOrganization=Seules les personnes et les organisations auxquelles vous avez donné l'autorisation register.itemsArePrivateAndOnly=Les éléments sont privés et uniquement visibles par vous register.step1.2=Étape 1 sur 4 : noms et adresses e-mail +register.step2.2=Étape 2 sur 4 : mot de passe +register.step3.2=Étape 3 sur 4 : visibilité +register.step4.2=Étape 4 sur 4 : conditions générales +register.step2.3=Étape 2 sur 5 : mot de passe +register.step1.3=Étape 1 sur 5 : noms et adresses e-mail +register.step4.3=Étape 4 sur 5 : visibilité +register.step3.3=Étape 3 sur 5 : emploi actuel +register.step5.3=Étape 5 sur 5 : conditions générales register.nextStep=Étape suivante register.cancelRegistration=Annuler l'inscription -register.step2.2=Étape 2 sur 4 : mot de passe register.previousStep=Étape précédente register.completeRegistration=Terminer l'inscription -register.step2.4=Étape 4 sur 4 : conditions générales register.passwordRequired2=Saisissez un mot de passe register.weOccasionallySend=Nous envoyons de temps en temps un e-mail contenant des informations sur les nouvelles fonctionnalités et des conseils pour tirer le meilleur parti de votre enregistrement ORCID. register.yourPasswords=Votre mot de passe @@ -177,7 +184,6 @@ register.labelConfirmEmail=Confirmez votre adresse e-mail register.labelNameYouMostMost=Vos noms courants register.familyNamePlaceholder=Votre nom de famille register.ariaLabelMoreInformationOnVisibility=Plus d'informations sur les paramètres de visibilité (dans un nouvel onglet) -register.step2.3=Étape 3 sur 4 : visibilité shared.previousStep=Étape précédente register.addAnAdditionalEmail=Ajoutez une autre adresse e-mail register.personalEmail=adresse e-mail personnelle @@ -188,3 +194,28 @@ register.emailAreNotValid=Vos adresses e-mail ne correspondent pas register.Email=Email register.VisibilityParties=Parties de confiance register.emailPlaceholder=L'adresse e-mail que vous utilisez le plus +register.roleJobTitle=Titre du poste +register.department=Département +register.weCantIdentifyThisOrganization=Nous ne pouvons pas identifier cette organisation. Essayez de saisir à nouveau le nom de l'organisation. +register.currentEmployment=Emploi actuel +register.pleaseEnterAnOrganizationName=Saisissez le nom d'une organisation +register.organizationPlaceholder=Tapez le nom de votre organisation +register.departmentPlaceholder=École, université ou département +register.rolePlaceholder=Votre poste dans l'organisation +register.yearPlaceholder=Année +register.monthPlaceholder=Mois +register.clearOrganization=Effacer l'organisation +shared.skipThisStepWithoutAddingAnAffiliation=Ignorer cette étape sans ajouter d'affiliation +register.isAssociatedWith=est déjà associée à +register.anExisting=un dossier ORCID existant +register.anUnclaimed=un dossier ORCID non réclamé +register.aDeactivated=un dossier ORCID désactivé +register.orcidRecord=. +register.youCannotUseThisEmail=Vous ne pouvez pas utiliser cette adresse e-mail lors de la création d'un nouvel identifiant ORCID. +register.emailIsAlreadyAssociated=Cette adresse e-mail est déjà associée à un dossier ORCID existant. Utilisez une autre adresse e-mail pour continuer à enregistrer un nouvel iD ORCID. +register.resendClaimAddress=Renvoyer un e-mail de réclamation à cette adresse +register.reactivateOrcidAssociated=Réactiver le dossier ORCID associé à cette adresse e-mail +register.affiliationFoud=Affiliation trouvée +register.basedOnYourEmailWeThink=D'après vos e-mails, nous pensons que vous êtes actuellement affilié à +register.webePreselectedThisOrganizationForYouInTheFormBelow=Nous avons pré-sélectionné cette organisation pour vous dans le formulaire ci-dessous. +register.whenYouCompleteRegistrationAnEmployment=Lorsque vous terminez votre inscription, une affiliation professionnelle sera automatiquement ajoutée à votre nouveau dossier ORCID. diff --git a/src/locale/properties/register/register.it.properties b/src/locale/properties/register/register.it.properties index f4f53d69df..fcb1734d50 100644 --- a/src/locale/properties/register/register.it.properties +++ b/src/locale/properties/register/register.it.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=Gli indirizzi email non corrispondono register.thisLooksLikeAPersonalEmail=Questa sembra un’email personale register.asBackupSoWeCanBetter=come backup così potremo consigliarti affiliazioni e relative informazioni al meglio. register.professionalEmail=email professionale -register.addA=Aggiungi un -register.addAnotherEmailToSecure=Aggiungi un’altra email per proteggere l’account +register.addA=Aggiungi un elemento ulteriore: +register.addAnotherEmailToSecure=Aggiungi un’email ulteriore per proteggere il tuo account. register.addingAnAddiotionalEmailAsBackup=L’aggiunta di un’altra email come backup ti consente di proteggere l’account e ti assicura l’accesso in ogni momento. regiser.thisLooksLikeAProffessional=Questa sembra un’email professionale register.asBackupSoYouAlways=come backup così avrai sempre accesso all’account ORCID se cambi lavoro o ruolo. -register.weRecommendAdding=Consigliamo l’aggiunta di un +register.weRecommendAdding=Consigliamo di aggiungere un elemento ulteriore: +register.youMustAccept2=Devi accettare i termini di utilizzo e acconsentire al trattamento dei tuoi dati negli Stati Uniti. register.termsOfUse2=termini di uso register.agree2=e acconsento che i miei dati siano pubblicamente accessibili quando sono contrassegnati come "Visibili per tutti". register.visibilityLegend=Impostazioni di Visibilità @@ -155,12 +156,18 @@ register.everioneCanSeeThese=Tutti possono vedere questi elementi register.onlyPeopleAndOrganization=Solo le persone e organizzazioni che hai autorizzato register.itemsArePrivateAndOnly=Gli elementi sono privati e visibili solo a te register.step1.2=Passaggio 1 di 4 - Nomi ed email +register.step2.2=Passaggio 2 di 4 - Password +register.step3.2=Passaggio 3 di 4 - Visibilità +register.step4.2=Passaggio 4 di 4 - Termini e condizioni +register.step2.3=Passaggio 2 di 5 - Password +register.step1.3=Passaggio 1 di 5 - Nomi ed email +register.step4.3=Passaggio 4 di 5 - Visibilità +register.step3.3=Passo 3 di 5 - Occupazione attuale +register.step5.3=Passaggio 5 di 5 - Termini e condizioni register.nextStep=Passaggio successivo register.cancelRegistration=Annulla la registrazione -register.step2.2=Passaggio 2 di 4 - Password register.previousStep=Passaggio precedente register.completeRegistration=Completa la registrazione -register.step2.4=Passaggio 4 di 4 - Termini e condizioni register.passwordRequired2=Inserisci una password register.weOccasionallySend=Invieremo email saltuarie con informazioni su nuove funzionalità e suggerimenti per ottenere il meglio dal tuo record ORCID. register.yourPasswords=La tua password @@ -177,7 +184,6 @@ register.labelConfirmEmail=Conferma il tuo indirizzo email register.labelNameYouMostMost=I nomi con cui più comunemente ti identifichi register.familyNamePlaceholder=Il tuo cognome register.ariaLabelMoreInformationOnVisibility=Maggiori informazioni sulle impostazioni di visibilità (si apre una nuova scheda) -register.step2.3=Passaggio 3 di 4 - Visibilità shared.previousStep=Passaggio precedente register.addAnAdditionalEmail=Aggiungi un’altra email register.personalEmail=email personale @@ -188,3 +194,28 @@ register.emailAreNotValid=Le email non corrispondono register.Email=Indirizzo email register.VisibilityParties=Parti fidate register.emailPlaceholder=L’indirizzo email che usi di più +register.roleJobTitle=Ruolo/qualifica +register.department=Dipartimento +register.weCantIdentifyThisOrganization=Non riusciamo a identificare questa organizzazione. Prova a inserire di nuovo il nome dell’oganizzazione. +register.currentEmployment=Occupazione attuale +register.pleaseEnterAnOrganizationName=Inserisci un nome per l’organizzazione +register.organizationPlaceholder=Scrivi il nome della tua organizzazione +register.departmentPlaceholder=Scuola, università o dipartimento +register.rolePlaceholder=Il tuo ruolo o il tuo lavoro nell’organizzazione +register.yearPlaceholder=Anno +register.monthPlaceholder=Mese +register.clearOrganization=Cancella l’organizzazione +shared.skipThisStepWithoutAddingAnAffiliation=Salta questo passaggio senza aggiungere un’affiliazione +register.isAssociatedWith=ha già un’affiliazione con +register.anExisting=un tipo preesistente di +register.anUnclaimed=un tipo non utilizzato di +register.aDeactivated=un tipo disattivato di +register.orcidRecord=record ORCID. +register.youCannotUseThisEmail=Non è possibile utilizzare questo indirizzo email quando si crea un nuovo iD ORCID. +register.emailIsAlreadyAssociated=Questa email è già associata a un record ORCID esistente. Per continuare con la registrazione di un nuovo iD ORCID usa un indirizzo email diverso. +register.resendClaimAddress=Rispedisci un’email di attivazione a questo indirizzo email +register.reactivateOrcidAssociated=Riattiva il record ORCID associato a questo indirizzo email +register.affiliationFoud=Affiliazione trovata +register.basedOnYourEmailWeThink=In base alle tue email, pensiamo che attualmente tu abbia un’affiliazione con +register.webePreselectedThisOrganizationForYouInTheFormBelow=Abbiamo preselezionato questa organizzazione per te nel modulo sottostante. +register.whenYouCompleteRegistrationAnEmployment=Quando completerai la registrazione, al tuo nuovo record ORCID sarà automaticamente aggiunta un’affiliazione lavorativa. diff --git a/src/locale/properties/register/register.ja.properties b/src/locale/properties/register/register.ja.properties index b9006f6b16..3683787d25 100644 --- a/src/locale/properties/register/register.ja.properties +++ b/src/locale/properties/register/register.ja.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=メールアドレスが一致しません register.thisLooksLikeAPersonalEmail=個人的なメールのようです register.asBackupSoWeCanBetter=をバックアップとして追加することで、あなたに所属や関連するデータをより適切に推薦できるようになります。 register.professionalEmail=仕事用のメール -register.addA= +register.addA=追加 register.addAnotherEmailToSecure=アカウントを保護するために別のメールアドレスを追加してください register.addingAnAddiotionalEmailAsBackup=バックアップとして別のメールアドレスを追加することで、アカウントの保護が可能となり、いつでもサインインできます。 regiser.thisLooksLikeAProffessional=仕事用のメールのようです register.asBackupSoYouAlways=をバックアップとして追加することで、仕事や役割が変わってもORCIDアカウントにアクセスできるようになります。 -register.weRecommendAdding=私たちは +register.weRecommendAdding=追加することをおすすめします +register.youMustAccept2=当社の利用規約に同意し、米国でのデータ処理に同意する必要があります register.termsOfUse2=利用規約により register.agree2=そして、「誰でも閲覧可」にマークすると自分のデータが公開されることに同意します。 register.visibilityLegend=可視性設定 @@ -155,12 +156,18 @@ register.everioneCanSeeThese=これらのアイテムは誰でも見ることが register.onlyPeopleAndOrganization=あなたが許可を与えた人と組織のみが見ることができます register.itemsArePrivateAndOnly=アイテムは非公開で、あなただけが見ることができます register.step1.2=ステップ 1/4 - 名前とメールアドレス +register.step2.2=ステップ 2/4 - パスワード +register.step3.2=ステップ 3/4 - 可視性 +register.step4.2=ステップ 4/4 - 利用規約 +register.step2.3=ステップ 2/5 - パスワード +register.step1.3=ステップ 1/5 - 名前とメールアドレス +register.step4.3=ステップ 4/5 - 可視性 +register.step3.3=ステップ 3/5 - 現在の雇用 +register.step5.3=ステップ 5/5 - 利用規約 register.nextStep=次のステップ register.cancelRegistration=登録をキャンセル -register.step2.2=ステップ 2/4 - パスワード register.previousStep=前のステップ register.completeRegistration=登録を完了 -register.step2.4=ステップ 4/4 - 利用規約 register.passwordRequired2=パスワードを入力してください register.weOccasionallySend=新機能の情報や、ORCID記録を最大限に活用するためのヒントを、時折メールでお知らせしています。 register.yourPasswords=あなたのパスワード @@ -177,7 +184,6 @@ register.labelConfirmEmail=メールアドレスを確認してください register.labelNameYouMostMost=よく使う名前 register.familyNamePlaceholder=あなたの姓 register.ariaLabelMoreInformationOnVisibility=可視性設定の詳細 (新しいタブで開きます) -register.step2.3=ステップ 3/4 - 可視性 shared.previousStep=前のステップ register.addAnAdditionalEmail=追加のメールアドレスを追加してください register.personalEmail=個人的なメール @@ -188,3 +194,28 @@ register.emailAreNotValid=メールアドレスが一致しません register.Email=電子メール register.VisibilityParties=トラステッド・パーティー register.emailPlaceholder=最もよく使用するメールアドレス +register.roleJobTitle=役職 +register.department=部門 +register.weCantIdentifyThisOrganization=この組織を特定できません。組織名をもう一度入力してください。 +register.currentEmployment=現在の雇用 +register.pleaseEnterAnOrganizationName=組織名を入力してください +register.organizationPlaceholder=組織名を入力してください +register.departmentPlaceholder=学校、大学、学部 +register.rolePlaceholder=組織におけるあなたの役割や仕事 +register.yearPlaceholder=年 +register.monthPlaceholder=月 +register.clearOrganization=明確な組織 +shared.skipThisStepWithoutAddingAnAffiliation=所属を追加せずにこのステップをスキップする +register.isAssociatedWith=すでに関連付けられています +register.anExisting=既存 +register.anUnclaimed=未登録 +register.aDeactivated=非アクティブ +register.orcidRecord=ORCIDレコード +register.youCannotUseThisEmail=新しいORCID iDを作成する際に、このメールアドレスを使用することはできません。 +register.emailIsAlreadyAssociated=このメールアドレスはすでに既存のORCIDレコードに関連付けられています。新しいORCID iDの登録を続けるには、別のメールアドレスを使用してください。 +register.resendClaimAddress=このメールアドレスにクレームメールを再送する +register.reactivateOrcidAssociated=このメールアドレスに関連付けられているORCIDレコードを再アクティブ化する +register.affiliationFoud=所属先が判明 +register.basedOnYourEmailWeThink=あなたのメールアドレスによると、あなたは現在、以下の会社に所属しているようです +register.webePreselectedThisOrganizationForYouInTheFormBelow=以下のフォームで、この団体を事前に選択しました。 +register.whenYouCompleteRegistrationAnEmployment=登録が完了すると、あなたの新しいORCIDレコードに所属先が自動的に追加されます。 diff --git a/src/locale/properties/register/register.ko.properties b/src/locale/properties/register/register.ko.properties index cf8dbe4a85..c516ab47cc 100644 --- a/src/locale/properties/register/register.ko.properties +++ b/src/locale/properties/register/register.ko.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=이메일 주소가 일치하지 않음 register.thisLooksLikeAPersonalEmail=개인용 이메일인 것으로 보임 register.asBackupSoWeCanBetter=을 추가하면 담당기관 및 기타 관련 데이터를 더 잘 추천해드릴 수 있습니다. register.professionalEmail=업무용 이메일 -register.addA=백업용 +register.addA=추가 register.addAnotherEmailToSecure=다른 이메일 주소를 추가하여 계정 보호 register.addingAnAddiotionalEmailAsBackup=백업 이메일 주소를 추가하면 계정의 보안을 안전하게 보호하면서 언제든 로그인할 수 있습니다. regiser.thisLooksLikeAProffessional=업무용 이메일인 것으로 보임 register.asBackupSoYouAlways=을 추가하면 업무 및 역할이 변경되었을 때도 ORCID 계정에 항상 액세스할 수 있습니다. -register.weRecommendAdding=권장합니다. 백업용 +register.weRecommendAdding=추가를 권장합니다. +register.youMustAccept2=이용 약관을 수락하여 귀하의 데이터가 미국 내에서 처리되는 데에 동의하셔야 합니다. register.termsOfUse2=이용 약관에 따라 register.agree2=그리고 "모두에게 공개"로 표시된 저의 데이터를 공개적으로 사용 가능하도록 하는 것에 동의합니다. register.visibilityLegend=가시성 설정 @@ -155,12 +156,18 @@ register.everioneCanSeeThese=누구나 항목을 볼 수 있음 register.onlyPeopleAndOrganization=귀하가 권한을 부여한 사람 및 조직만 register.itemsArePrivateAndOnly=항목이 비공개되어 본인만 볼 수 있음 register.step1.2=1/4단계 - 이름 및 이메일 +register.step2.2=2/4단계 - 비밀번호 +register.step3.2=3/4단계 - 공개 여부 +register.step4.2=4/4단계 - 이용 약관 +register.step2.3=2/5단계 - 비밀번호 +register.step1.3=1/5단계 - 이름 및 이메일 +register.step4.3=4/5단계 - 공개 여부 +register.step3.3=3/5단계 - 현재 고용상태 +register.step5.3=5/5단계 - 이용 약관 register.nextStep=다음 단계 register.cancelRegistration=등록 취소 -register.step2.2=2/4단계 - 비밀번호 register.previousStep=이전 단계 register.completeRegistration=등록 완료 -register.step2.4=4/4단계 - 이용 약관 register.passwordRequired2=비밀번호 입력 register.weOccasionallySend=가끔 새로운 기능에 대한 정보와 본인 ORCID 기록을 최대한 활용할 수 있는 팁이 포함된 이메일을 보내드립니다. register.yourPasswords=비밀번호 @@ -177,7 +184,6 @@ register.labelConfirmEmail=이메일 주소 확인 register.labelNameYouMostMost=가장 흔히 사용되는 이름 register.familyNamePlaceholder=성 register.ariaLabelMoreInformationOnVisibility=공개 여부 설정에 대한 자세한 정보(새 탭에서 열림) -register.step2.3=3/4단계 - 공개 여부 shared.previousStep=이전 단계 register.addAnAdditionalEmail=다른 이메일 추가 register.personalEmail=개인용 이메일 @@ -188,3 +194,28 @@ register.emailAreNotValid=이메일 불일치 register.Email=이메일 register.VisibilityParties=제한공개 register.emailPlaceholder=가장 자주 사용하는 이메일 주소 +register.roleJobTitle=역할/직책 +register.department=과 +register.weCantIdentifyThisOrganization=이 기관을 식별할 수 없습니다. 기관 이름을 다시 입력해보십시오. +register.currentEmployment=현재 고용상태 +register.pleaseEnterAnOrganizationName=기관 이름 입력 +register.organizationPlaceholder=기관 이름 타이핑 +register.departmentPlaceholder=학교, 대학 또는 학과 +register.rolePlaceholder=기관 내 귀하의 역할 또는 직책 +register.yearPlaceholder=년 +register.monthPlaceholder=월 +register.clearOrganization=기관 지우기 +shared.skipThisStepWithoutAddingAnAffiliation=담당기관 추가 없이 이 단계 건너뛰기 +register.isAssociatedWith=이(가) 이미 +register.anExisting=기존 +register.anUnclaimed=클레임되지 않은 +register.aDeactivated=비활성화된 +register.orcidRecord=ORCID 레코드에 연결되어 있습니다. +register.youCannotUseThisEmail=새 ORCID iD를 만들 때 이 이메일 주소를 사용할 수 없습니다. +register.emailIsAlreadyAssociated=이 이메일 주소가 이미 기존 ORCID 레코드에 연결되어 있습니다. 새 ORCID iD 등록을 계속하려면 다른 이메일 주소를 사용하십시오. +register.resendClaimAddress=이 이메일 주소로 클레임 이메일 다시 보내기 +register.reactivateOrcidAssociated=이 이메일 주소에 연결된 ORCID 레코드 재활성화 +register.affiliationFoud=담당기관 찾음 +register.basedOnYourEmailWeThink=사용 중인 이메일을 근거로 현재 다음과 제휴되어 있는 것으로 판단됨 +register.webePreselectedThisOrganizationForYouInTheFormBelow=아래 양식에 이 기관이 사전 선택되었습니다. +register.whenYouCompleteRegistrationAnEmployment=고용상태 담당기관 등록을 완료하면 새 ORCID 레코드에 자동으로 추가됩니다. diff --git a/src/locale/properties/register/register.pl.properties b/src/locale/properties/register/register.pl.properties index 9d1f2f932a..f6531b83e8 100644 --- a/src/locale/properties/register/register.pl.properties +++ b/src/locale/properties/register/register.pl.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=Adresy e-mail nie pasują register.thisLooksLikeAPersonalEmail=To wygląda na osobisty adres e-mail register.asBackupSoWeCanBetter=jako kopię zapasową, abyśmy mogli polecać lepsze przynależności i inne powiązane dane. register.professionalEmail=służbowy adres e-mail -register.addA=Dodaj +register.addA=Dodaj kolejny register.addAnotherEmailToSecure=Dodaj kolejny adres e-mail, aby zabezpieczyć konto register.addingAnAddiotionalEmailAsBackup=Dodanie kolejnego adresu e-mail jako kopii zapasowej pomoże zabezpieczyć konto i upewnić się, że zawsze uda Ci się zalogować. regiser.thisLooksLikeAProffessional=To wygląda na służbowy adres e-mail register.asBackupSoYouAlways=jako kopię zapasową, aby zawsze mieć dostęp do konta ORCID, jeśli zmienisz pracę lub rolę. -register.weRecommendAdding=Zalecamy dodanie a +register.weRecommendAdding=Zalecamy dodanie kolejnego +register.youMustAccept2=Musisz zaakceptować warunki korzystania i zgodzić się na przetwarzanie Twoich danych w Stanach Zjednoczonych register.termsOfUse2=warunki korzystania register.agree2=i wyrażam zgodę na publiczne udostępnianie moich danych oznaczonych jako „Widoczne dla wszystkich”. register.visibilityLegend=Ustawienia widoczności @@ -155,12 +156,18 @@ register.everioneCanSeeThese=Wszyscy mogą zobaczyć te elementy register.onlyPeopleAndOrganization=Tylko osoby i organizacje, którym udzielono pozwolenia register.itemsArePrivateAndOnly=Elementy są prywatne i widoczne tylko dla Ciebie register.step1.2=Krok 1 z 4 – nazwy i wiadomości e-mail +register.step2.2=Krok 2 z 4 – hasło +register.step3.2=Krok 3 z 4 – widoczność +register.step4.2=Krok 4 z 4 – warunki i zasady +register.step2.3=Krok 2 z 5 – hasło +register.step1.3=Krok 1 z 5 – nazwy i wiadomości e-mail +register.step4.3=Krok 4 z 5 – widoczność +register.step3.3=Krok 3 z 5 – Obecne zatrudnienie +register.step5.3=Krok 5 z 5 – warunki i zasady register.nextStep=Kolejny krok register.cancelRegistration=Anuluj rejestrację -register.step2.2=Krok 2 z 4 – hasło register.previousStep=Poprzedni krok register.completeRegistration=Ukończ rejestrację -register.step2.4=Krok 4 z 4 – warunki i zasady register.passwordRequired2=Wprowadź hasło register.weOccasionallySend=Od czasu do czasu wysyłamy wiadomość e-mail z informacjami o nowych funkcjach i wskazówkami, jak najlepiej wykorzystać rekord ORCID. register.yourPasswords=Twoje hasło @@ -177,7 +184,6 @@ register.labelConfirmEmail=Potwierdź adres e-mail register.labelNameYouMostMost=Najczęściej używane przez Ciebie imiona register.familyNamePlaceholder=Twoje nazwisko register.ariaLabelMoreInformationOnVisibility=Więcej informacji na temat ustawień widoczności (otwiera się w nowej karcie) -register.step2.3=Krok 3 z 4 – widoczność shared.previousStep=Poprzedni krok register.addAnAdditionalEmail=Dodaj dodatkowy adres e-mail register.personalEmail=osobisty adres e-mail @@ -188,3 +194,28 @@ register.emailAreNotValid=Twoje adresy e-mail nie pasują register.Email=Adres e-mail register.VisibilityParties=Zaufane strony register.emailPlaceholder=Adresy e-mail, z których najczęściej korzystasz +register.roleJobTitle=Rola/Nazwa stanowiska +register.department=Wydział +register.weCantIdentifyThisOrganization=Nie możemy zidentyfikować tej organizacji. Spróbuj ponownie wpisać nazwę organizacji. +register.currentEmployment=Obecne zatrudnienie +register.pleaseEnterAnOrganizationName=Wpisz nazwę organizacji +register.organizationPlaceholder=Wpisz nazwę swojej organizacji +register.departmentPlaceholder=Szkoła, uczelnia lub wydział +register.rolePlaceholder=Twoja rola lub stanowisko w organizacji +register.yearPlaceholder=Rok +register.monthPlaceholder=Miesiąc +register.clearOrganization=Usuń organizację +shared.skipThisStepWithoutAddingAnAffiliation=Pomiń ten krok bez dodawania powiązań +register.isAssociatedWith=jest już powiązany z +register.anExisting=istniejącym +register.anUnclaimed=wolnym +register.aDeactivated=dezaktywowanym +register.orcidRecord=rekordem ORCID. +register.youCannotUseThisEmail=Nie możesz użyć tego adresu e-mail przy tworzeniu nowego identyfikatora ORCID. +register.emailIsAlreadyAssociated=Ten adres e-mail jest już powiązany z istniejącym rekordem ORCID. Użyj innego adresu e-mail, aby dokończyć rejestrowanie nowego identyfikatora ORCID. +register.resendClaimAddress=Ponownie wyślij e-mail ze zgłoszeniem na ten adres e-mail +register.reactivateOrcidAssociated=Ponownie aktywuj rekord ORCID powiązany z tym adresem e-mail +register.affiliationFoud=Znaleziono powiązanie +register.basedOnYourEmailWeThink=Na podstawie Twoich wiadomości e-mail sądzimy, że obecnie jesteś związany(-a) z +register.webePreselectedThisOrganizationForYouInTheFormBelow=Wybraliśmy tę organizację dla Ciebie w poniższym formularzu. +register.whenYouCompleteRegistrationAnEmployment=Gdy ukończysz rejestrację, zatrudnienie zostanie automatycznie dodane do Twojego nowego rekordu ORCID. diff --git a/src/locale/properties/register/register.pt.properties b/src/locale/properties/register/register.pt.properties index 72853130f7..f4e987a44d 100644 --- a/src/locale/properties/register/register.pt.properties +++ b/src/locale/properties/register/register.pt.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=Os endereços de e-mail não correspondem register.thisLooksLikeAPersonalEmail=Parece ser um e-mail pessoal register.asBackupSoWeCanBetter=como cópia de segurança para que possam recomendar afiliações e outros dados relacionados consigo. register.professionalEmail=e-mail profissional -register.addA=Adicionar um -register.addAnotherEmailToSecure=Adicione outro e-mail para proteger a sua conta +register.addA=Adicionar um e-mail adicional +register.addAnotherEmailToSecure=Adicione um e-mail adicional para proteger a sua conta register.addingAnAddiotionalEmailAsBackup=Adicione outro e-mail como uma cópia de segurança para ajudar a proteger a sua conta e assegurar que consegue sempre iniciar sessão. regiser.thisLooksLikeAProffessional=Parece ser um e-mail profissional register.asBackupSoYouAlways=como cópia de segurança para que possa sempre aceder à sua conta ORCID caso mude de cargos ou funções. -register.weRecommendAdding=Recomendamos adicionar um +register.weRecommendAdding=Recomendamos adicionar um e-mail adicional +register.youMustAccept2=Tem de aceitar os termos de utilização e consentir que os seus dados sejam tratados nos Estados Unidos register.termsOfUse2=termos de uso register.agree2=e concordo que os meus dados sejam de acesso público sempre que assinalados como "Visível a Todos". register.visibilityLegend=Configurações de visibilidade @@ -155,12 +156,18 @@ register.everioneCanSeeThese=Todos podem ver estes itens register.onlyPeopleAndOrganization=Apenas as pessoas e organizações a que concedeu permissão register.itemsArePrivateAndOnly=Os itens são privados e apenas visíveis para si register.step1.2=Passo 1 a 4 – Nomes e e-mails +register.step2.2=Passo 2 de 4 – Senha +register.step3.2=Passo 3 de 4 – Visibilidade +register.step4.2=Passo 4 de 4 – Termos e condições +register.step2.3=Passo 2 de 5 – Palavra-passe +register.step1.3=Passo 1 de 5 – Nomes e e-mails +register.step4.3=Passo 4 de 5 – Visibilidade +register.step3.3=Passo 3 de 5 – Emprego atual +register.step5.3=Passo 5 de 5 – Termos e condições register.nextStep=Passo seguinte register.cancelRegistration=Cancelar registo -register.step2.2=Passo 2 de 4 – Senha register.previousStep=Passo anterior register.completeRegistration=Registo concluído -register.step2.4=Passo 4 de 4 – Termos e condições register.passwordRequired2=Introduza uma senha register.weOccasionallySend=Ocasionalmente, enviamos um e-mail com informações sobre novas funcionalidades e com dicas para aproveitar o melhor possível o seu registo ORCID. register.yourPasswords=A sua senha @@ -177,7 +184,6 @@ register.labelConfirmEmail=Confirme o seu endereço de e-mail register.labelNameYouMostMost=Os nomes mais comuns que utiliza register.familyNamePlaceholder=O seu nome de família ou apelido register.ariaLabelMoreInformationOnVisibility=Mais informações sobre as definições de visibilidade (abre numa nova janela) -register.step2.3=Passo 3 de 4 – Visibilidade shared.previousStep=Passo anterior register.addAnAdditionalEmail=Adicione outro e-mail register.personalEmail=e-mail pessoal @@ -188,3 +194,28 @@ register.emailAreNotValid=Os e-mails não correspondem register.Email=E-mail register.VisibilityParties=Partes confiáveis register.emailPlaceholder=O endereço de e-mail que utiliza mais +register.roleJobTitle=Função/Título do emprego +register.department=Departamento +register.weCantIdentifyThisOrganization=Não foi possível identificar esta organização. Experimente introduzir novamente o nome da organização. +register.currentEmployment=Emprego atual +register.pleaseEnterAnOrganizationName=Introduza novamente o nome da organização +register.organizationPlaceholder=Introduza o nome da sua organização +register.departmentPlaceholder=Escola, faculdade ou departamento +register.rolePlaceholder=A sua função ou emprego na organização +register.yearPlaceholder=Ano +register.monthPlaceholder=Mês +register.clearOrganization=Remover organização +shared.skipThisStepWithoutAddingAnAffiliation=Ignorar este passo sem adicionar uma afiliação +register.isAssociatedWith=Já se encontra associado a +register.anExisting=existente. +register.anUnclaimed=não reclamado. +register.aDeactivated=desativado. +register.orcidRecord=a um registo ORCID +register.youCannotUseThisEmail=Não pode utilizar este endereço de e-mail ao criar uma nova ORCID ID. +register.emailIsAlreadyAssociated=Este e-mail já está associado a um registo ORCID existente. Utilize um endereço de e-mail diferente para prosseguir com o registo de uma nova ORCID ID. +register.resendClaimAddress=Reenviar um e-mail de reivindicação para este endereço de e-mail +register.reactivateOrcidAssociated=Reativar o registo ORCID associado a este endereço de e-mail +register.affiliationFoud=Afiliação encontrada +register.basedOnYourEmailWeThink=Com base nos seus e-mails, consideramos que tem atualmente uma afiliação com +register.webePreselectedThisOrganizationForYouInTheFormBelow=Pré-selecionámos esta organização para si no formulário abaixo. +register.whenYouCompleteRegistrationAnEmployment=Quando completar o registo, uma afiliação laboral será automaticamente adicionada ao seu novo registo ORCID. diff --git a/src/locale/properties/register/register.ru.properties b/src/locale/properties/register/register.ru.properties index 66352b72f9..f2b3a7b02c 100644 --- a/src/locale/properties/register/register.ru.properties +++ b/src/locale/properties/register/register.ru.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=Адреса электронной почт register.thisLooksLikeAPersonalEmail=Похоже, вы указали личный адрес эл. почты register.asBackupSoWeCanBetter=в качестве резервного. Это поможет нам более точно находить аффилиации и другую информацию, связанную с вами. register.professionalEmail=рабочий адрес электронной почты -register.addA=Укажите -register.addAnotherEmailToSecure=Чтобы защитить аккаунт, добавьте еще один адрес электронной почты +register.addA=Укажите дополнительный +register.addAnotherEmailToSecure=Чтобы защитить аккаунт, добавьте дополнительный адрес электронной почты register.addingAnAddiotionalEmailAsBackup=Дополнительный адрес можно использовать в качестве резервного, поэтому у вас всегда будет доступ к аккаунту. regiser.thisLooksLikeAProffessional=Похоже, вы указали рабочий адрес эл. почты register.asBackupSoYouAlways=в качестве резервного. Так вы сможете сохранить доступ к аккаунту ORCID, даже если перейдете на новую должность или место работы. -register.weRecommendAdding=Рекомендуем указать +register.weRecommendAdding=Рекомендуем указать дополнительный +register.youMustAccept2=Необходимо принять Условия использования и дать согласие на обработку ваших данных в США register.termsOfUse2=условиям использования ORCID register.agree2=и согласиться на общий доступ к моим данным, которые помечены как «видимые для всех». register.visibilityLegend=Настройки видимости @@ -155,12 +156,18 @@ register.everioneCanSeeThese=Все пользователи register.onlyPeopleAndOrganization=Только лица и организации, которым предоставлено разрешение register.itemsArePrivateAndOnly=Только я register.step1.2=Шаг 1 из 4: имена и адреса +register.step2.2=Шаг 2 из 4: пароль +register.step3.2=Шаг 3 из 4: настройки видимости +register.step4.2=Шаг 4 из 4: Условия +register.step2.3=Шаг 2 из 5: пароль +register.step1.3=Шаг 1 из 5: имена и адреса +register.step4.3=Шаг 4 из 5: настройки доступа +register.step3.3=Шаг 3 из 5: текущее место работы +register.step5.3=Шаг 5 из 5: Условия использования register.nextStep=Следующий шаг register.cancelRegistration=Отменить регистрацию -register.step2.2=Шаг 2 из 4: пароль register.previousStep=Предыдущий шаг register.completeRegistration=Завершить регистрацию -register.step2.4=Шаг 4 из 4: Условия register.passwordRequired2=Введите пароль register.weOccasionallySend=Время от времени мы рассылаем письмо с информацией о новых функциях и советами по максимально эффективному использованию вашей учетной записи ORCID. register.yourPasswords=Ваш пароль @@ -177,7 +184,6 @@ register.labelConfirmEmail=Подтвердите адрес эл. почты register.labelNameYouMostMost=Как вас зовут register.familyNamePlaceholder=Ваша фамилия register.ariaLabelMoreInformationOnVisibility=Подробнее о настройках видимости (откроется в новой вкладке) -register.step2.3=Шаг 3 из 4: настройки видимости shared.previousStep=Предыдущий шаг register.addAnAdditionalEmail=Укажите дополнительный адрес эл. почты register.personalEmail=личный адрес электронной почты @@ -188,3 +194,28 @@ register.emailAreNotValid=Адреса эл. почты не совпадают. register.Email=Адрес электронной почты register.VisibilityParties=Доверенные лица register.emailPlaceholder=Адрес эл. почты, которым вы пользуетесь чаще всего +register.roleJobTitle=Роль/должность +register.department=Подразделение +register.weCantIdentifyThisOrganization=Организация не найдена. Проверьте название и введите его еще раз. +register.currentEmployment=Текущее место работы +register.pleaseEnterAnOrganizationName=Укажите название организации +register.organizationPlaceholder=Введите название организации +register.departmentPlaceholder=Школа, другое учебное заведение или отдел +register.rolePlaceholder=Роль или должность в организации +register.yearPlaceholder=Год +register.monthPlaceholder=Месяц +register.clearOrganization=Убрать организацию +shared.skipThisStepWithoutAddingAnAffiliation=Пропустить этот шаг, не указывая аффилиацию +register.isAssociatedWith=уже привязан к +register.anExisting=существующему +register.anUnclaimed=неподтвержденному +register.aDeactivated=деактивированному +register.orcidRecord=профилю ORCID. +register.youCannotUseThisEmail=Вы не можете использовать этот адрес для создания нового ORCID iD. +register.emailIsAlreadyAssociated=Адрес электронной почты уже используется. Используйте другой для регистрации нового ORCID iD. +register.resendClaimAddress=Отправить письмо-подтверждение на этот адрес электронной почты +register.reactivateOrcidAssociated=Восстановить профиль ORCID, связанный с этим адресом электронной почты +register.affiliationFoud=Найдена аффилиация +register.basedOnYourEmailWeThink=На основе ваших писем мы полагаем, что ваше текущее место работы — +register.webePreselectedThisOrganizationForYouInTheFormBelow=Эта организация автоматически указана в поле ниже. +register.whenYouCompleteRegistrationAnEmployment=Аффилиация будет автоматически добавлена в ваш новый профиль ORCID после завершения регистрации. diff --git a/src/locale/properties/register/register.tr.properties b/src/locale/properties/register/register.tr.properties index 178d70c805..f604c0e2ba 100644 --- a/src/locale/properties/register/register.tr.properties +++ b/src/locale/properties/register/register.tr.properties @@ -134,19 +134,20 @@ register.yourEmailAddresses=E-posta adresleriniz register.primaryEmailRequired2=Lütfen e-posta adresinizi girin register.invalidEmail2=Lütfen geçerli bir e-posta girin, örneğin mehmet@kurum.edu register.isAssociatedWuthAnExisting=mevcut bir ORCID kaydıyla ilişkili. -register.theEmailAddress=E-posta adresi +register.theEmailAddress=The email address register.signInToOrcidUsingThisEmail=Bu e-posta adresini kullanarak ORCID'de oturum açın register.confirmEmailRequired2=Lütfen e-posta adresinizi onaylayın register.confirmationEmailNotMatch2=E-posta adresleri eşleşmiyor register.thisLooksLikeAPersonalEmail=Bu, kişisel bir e-posta adresine benziyor register.asBackupSoWeCanBetter=girin, böylece size iş ortaklarımızı ve diğer ilgili verileri daha iyi önerebiliriz. register.professionalEmail=profesyonel e-posta adresi -register.addA=Yedek olarak bir -register.addAnotherEmailToSecure=Hesabınızı güvenceye almak için başka bir e-posta adresi ekleyin +register.addA=Add an additional +register.addAnotherEmailToSecure=Hesabınızı güvenceye almak için ek bir e-posta adresi ekleyin register.addingAnAddiotionalEmailAsBackup=Yedek olarak ek bir e-posta adresi eklemek hesabınızı güvenceye almaya yardımcı olur ve her zaman oturum açabilmenizi garantiye alır. regiser.thisLooksLikeAProffessional=Bu, profesyonel bir e-posta adresine benziyor register.asBackupSoYouAlways=eklemenizi öneriyoruz, böylece işinizi veya mevkiinizi değiştirirseniz ORCID hesabınıza her zaman erişebilirsiniz. -register.weRecommendAdding=Yedek olarak bir +register.weRecommendAdding=We recommend adding an additional +register.youMustAccept2=Kullanım koşullarımızı kabul etmeniz ve verilerinizin Birleşik Devletler'de işlenmesine rıza göstermeniz gerekmektedir register.termsOfUse2=kullanım şartlarına göre register.agree2=ve verilerimin "Herkes Tarafından Görülebilir" olarak işaretlendiği yerlerde herkese açık olmasını kabul ediyorum. register.visibilityLegend=Görünürlük ayarları @@ -155,12 +156,18 @@ register.everioneCanSeeThese=Bu ögeleri herkes görebilir register.onlyPeopleAndOrganization=Sadece izin verdiğiniz kişiler ve kurumlar register.itemsArePrivateAndOnly=Ögeler gizlidir ve sadece sizin tarafınızdan görülebilir register.step1.2=Adım 1/4 - İsimler ve e-postalar +register.step2.2=Adım 2/4 - Parola +register.step3.2=Adım 3/4 - Görünürlük +register.step4.2=Adım 4/4 - Şartlar ve koşullar +register.step2.3=Adım 2/5 - Parola +register.step1.3=Adım 1/5 - İsimler ve e-postalar +register.step4.3=Adım 4/5 - Görünürlük +register.step3.3=Adım 3/5 - Mevcut iş +register.step5.3=Adım 5/5 - Şartlar ve koşullar register.nextStep=Sonraki Adım register.cancelRegistration=Kaydı iptal et -register.step2.2=Adım 2/4 - Parola register.previousStep=Önceki Adım register.completeRegistration=Kaydı tamamla -register.step2.4=Adım 4/4 - Şartlar ve koşullar register.passwordRequired2=Lütfen bir parola girin register.weOccasionallySend=Zaman zaman yeni özellikler hakkında bilgi ve ORCID kaydınızdan en iyi şekilde yararlanmanız için ipuçları içeren bir e-posta gönderiyoruz. register.yourPasswords=Parolanız @@ -177,7 +184,6 @@ register.labelConfirmEmail=E-posta adresinizi onaylayın register.labelNameYouMostMost=En yaygın olarak tanındığınız isimler register.familyNamePlaceholder=Aile adınız veya soyadınız register.ariaLabelMoreInformationOnVisibility=Görünürlük ayarları hakkında daha fazla bilgi (Yeni sekmede açılır) -register.step2.3=Adım 3/4 - Görünürlük shared.previousStep=Önceki Adım register.addAnAdditionalEmail=Ek bir e-posta adresi ekleyin register.personalEmail=kişisel e-posta @@ -188,3 +194,28 @@ register.emailAreNotValid=E-postalarınız eşleşmiyor register.Email=E-posta register.VisibilityParties=Güvenilen taraflar register.emailPlaceholder=En çok kullandığınız e-posta adresleri +register.roleJobTitle=Rol/İş unvanı +register.department=Bölüm +register.weCantIdentifyThisOrganization=Bu kuruluşu tanımlayamıyoruz. Lütfen kuruluş ismini tekrar girmeyi deneyin. +register.currentEmployment=Mevcut iş +register.pleaseEnterAnOrganizationName=Lütfen bir kuruluş adı girin +register.organizationPlaceholder=Kuruluş adınızı yazın +register.departmentPlaceholder=Okul, üniversite veya bölüm +register.rolePlaceholder=Kuruluştaki rolünüz veya işiniz +register.yearPlaceholder=Yıl +register.monthPlaceholder=Ay +register.clearOrganization=Kuruluşu temizle +shared.skipThisStepWithoutAddingAnAffiliation=Bir bağlantı eklemeden bu adımı atlayın +register.isAssociatedWith=is already associated with +register.anExisting=an existing +register.anUnclaimed=an unclaimed +register.aDeactivated=a deactivated +register.orcidRecord=ORCID record. +register.youCannotUseThisEmail=Yeni bir ORCID Kimliği oluştururken bu e-posta adresini kullanamazsınız. +register.emailIsAlreadyAssociated=Bu e-posta adresi zaten mevcut bir ORCID kaydıyla ilişkili durumda. Bir ORCID Kimliği kaydetmeye devam edebilmek için lütfen farklı bir e-posta adresi kullanın. +register.resendClaimAddress=Bu e-posta adresine talep e-postasını tekrar gönder +register.reactivateOrcidAssociated=Bu e-posta adresiyle ilişkili ORCID kaydını yeniden etkinleştir +register.affiliationFoud=Bağlantı bulundu +register.basedOnYourEmailWeThink=E-postalara dayanarak, şu anda bağlantılı olduğunuzu düşündüğümüz şirket: +register.webePreselectedThisOrganizationForYouInTheFormBelow=Aşağıdaki formda sizin için bu kuruluşu seçtik. +register.whenYouCompleteRegistrationAnEmployment=Kayıt işlemini tamamladığınızda, yeni ORCID kaydınıza bir iş bağlantısı otomatik olarak eklenecektir. diff --git a/src/locale/properties/register/register.zh_CN.properties b/src/locale/properties/register/register.zh_CN.properties index da3b54e85c..f98f3966f7 100644 --- a/src/locale/properties/register/register.zh_CN.properties +++ b/src/locale/properties/register/register.zh_CN.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=电子邮件地址不符 register.thisLooksLikeAPersonalEmail=这似乎是个人电子邮件 register.asBackupSoWeCanBetter=作为备份,以便我们更好地向您推荐附属机构和其他相关数据。 register.professionalEmail=工作电子邮件 -register.addA=新增一个 -register.addAnotherEmailToSecure=新增另一个电子邮件以确保账户安全 +register.addA=新增其他 +register.addAnotherEmailToSecure=新增另一个电子邮件以确保帐户安全 register.addingAnAddiotionalEmailAsBackup=新增一个额外的电子邮件作为备份有助于确保账户安全,并确保您可以随时登录。 regiser.thisLooksLikeAProffessional=这似乎是工作电子邮件 register.asBackupSoYouAlways=作为备份,这样即使您更换工作或角色,也能随时访问您的 ORCID 账户。 register.weRecommendAdding=我们建议新增一个 +register.youMustAccept2=您必须接受我们的使用条款,并同意在美国处理您的数据 register.termsOfUse2=使用条款 register.agree2=并同意我的数据在标记为“人人可见”的地方被公开访问 register.visibilityLegend=可见性设置 @@ -155,12 +156,18 @@ register.everioneCanSeeThese=所有人都能看到这些项目 register.onlyPeopleAndOrganization=仅限您已授权的个人和组织 register.itemsArePrivateAndOnly=项目是私人的,只有您可见 register.step1.2=步骤 4 之 1 - 名称和电子邮件 +register.step2.2=步骤 4 之 2 - 密码 +register.step3.2=步骤 4 之 3 - 可见性 +register.step4.2=步骤 4 之 4 - 条款与条件 +register.step2.3=步骤 2(共 5 步)- 密码 +register.step1.3=步骤 1(共 5 步)- 名称和电子邮件 +register.step4.3=步骤 4(共 5 步)- 可见性 +register.step3.3=步骤 3(共 5 步)- 当前就业状态 +register.step5.3=步骤 5(共 5 步)- 条款与条件 register.nextStep=下一步 register.cancelRegistration=取消注册 -register.step2.2=步骤 4 之 2 - 密码 register.previousStep=上一步 register.completeRegistration=完成注册 -register.step2.4=步骤 4 之 4 - 条款与条件 register.passwordRequired2=请输入密码 register.weOccasionallySend=我们偶尔会发送一封电子邮件,其中包含有关如何充分利用您的 ORCID 记录的新功能的信息和提示。 register.yourPasswords=您的密码 @@ -177,7 +184,6 @@ register.labelConfirmEmail=确认您的电子邮件地址 register.labelNameYouMostMost=您最常使用的名称 register.familyNamePlaceholder=您的姓氏 register.ariaLabelMoreInformationOnVisibility=更多关于可见性设置的信息(在新标签页中开启) -register.step2.3=步骤 4 之 3 - 可见性 shared.previousStep=上一步 register.addAnAdditionalEmail=新增其他电子邮件 register.personalEmail=个人电子邮件 @@ -188,3 +194,28 @@ register.emailAreNotValid=您的电子邮件不符 register.Email=电子邮件 register.VisibilityParties=受信任组织 register.emailPlaceholder=您最常用的电子邮件地址 +register.roleJobTitle=职务/头衔 +register.department=部门 +register.weCantIdentifyThisOrganization=无法找到这个单位,请再试一次。 +register.currentEmployment=当前就业情况 +register.pleaseEnterAnOrganizationName=请输入单位名称 +register.organizationPlaceholder=输入您单位的名称 +register.departmentPlaceholder=学校,学院或部门 +register.rolePlaceholder=您在单位承担的职务 +register.yearPlaceholder=年 +register.monthPlaceholder=月 +register.clearOrganization=清除单位 +shared.skipThisStepWithoutAddingAnAffiliation=不添加隶属机构,跳过该步骤 +register.isAssociatedWith=已关联 +register.anExisting=现有 +register.anUnclaimed=未认领 +register.aDeactivated=已停用 +register.orcidRecord=ORCID 记录。 +register.youCannotUseThisEmail=无法使用该电子邮件创建新的 ORCID iD 号。 +register.emailIsAlreadyAssociated=该电子邮件已关联现有 ORCID 记录。请使用其他电子邮件注册新的 ORCID iD 号。 +register.resendClaimAddress=再次发送认领邮件至该邮件地址 +register.reactivateOrcidAssociated=重新激活与该电子邮件关联的 ORCID 记录 +register.affiliationFoud=找到隶属机构 +register.basedOnYourEmailWeThink=基于您的电子邮件,我们认为您当前隶属于 +register.webePreselectedThisOrganizationForYouInTheFormBelow=已为您在下方表格内预选了该单位。 +register.whenYouCompleteRegistrationAnEmployment=完成注册后,雇佣隶属机构会自动添加至您新的 ORCID 记录。 diff --git a/src/locale/properties/register/register.zh_TW.properties b/src/locale/properties/register/register.zh_TW.properties index 131c04a506..e80c96d2fa 100644 --- a/src/locale/properties/register/register.zh_TW.properties +++ b/src/locale/properties/register/register.zh_TW.properties @@ -141,12 +141,13 @@ register.confirmationEmailNotMatch2=電子郵件地址不符 register.thisLooksLikeAPersonalEmail=這似乎是個人電子郵件 register.asBackupSoWeCanBetter=作為備份,以讓我們能更好地向您推薦聯營機構和其他相關資料。 register.professionalEmail=工作電子郵件 -register.addA=新增一個 -register.addAnotherEmailToSecure=新增另一個電子郵件地址以保護您的帳戶 +register.addA=新增其他的 +register.addAnotherEmailToSecure=新增其他電子郵件地址以保護您的帳戶 register.addingAnAddiotionalEmailAsBackup=新增額外的電子郵件作為備份,可以幫助保護您的帳戶並確保您總是能夠登入。 regiser.thisLooksLikeAProffessional=這似乎是工作電子郵件 register.asBackupSoYouAlways=作為備份,以在您換工作或職位時總是可以存取您的 ORCID 帳戶。 -register.weRecommendAdding=我們建議新增一個 +register.weRecommendAdding=我們建議新增其他的 +register.youMustAccept2=您必須接受使用條款,並同意您的資料於美國進行處理 register.termsOfUse2=使用條款 register.agree2=並同意我的資料在標示為「所有人都看得見」的地方可公開存取。 register.visibilityLegend=可見性設定 @@ -155,12 +156,18 @@ register.everioneCanSeeThese=所有人都可以看見這些品項 register.onlyPeopleAndOrganization=僅限您已授權的個人和組織 register.itemsArePrivateAndOnly=品項是私人的,只有您可見 register.step1.2=步驟 4 之 1 - 名稱和電子郵件 +register.step2.2=步驟 4 之 2 - 密碼 +register.step3.2=步驟 4 之 3 - 可見性 +register.step4.2=步驟 4 之 4 - 條款與條件 +register.step2.3=步驟 5 之 2 - 密碼 +register.step1.3=步驟 5 之 1 - 名稱和電子郵件 +register.step4.3=步驟 5 之 4 - 可見性 +register.step3.3=步驟 5 之 3 - 目前就業狀態 +register.step5.3=步驟 5 之 5 - 條款與條件 register.nextStep=下一步 register.cancelRegistration=取消註冊 -register.step2.2=步驟 4 之 2 - 密碼 register.previousStep=前一步 register.completeRegistration=完成註冊 -register.step2.4=步驟 4 之 4 - 條款與條件 register.passwordRequired2=請輸入密碼 register.weOccasionallySend=我們偶爾會發送電子郵件,提供新功能和提示的資訊,讓您充分運用您的 ORCID 紀錄。 register.yourPasswords=您的密碼 @@ -177,7 +184,6 @@ register.labelConfirmEmail=確認您的電子郵件地址 register.labelNameYouMostMost=您最常使用的名稱 register.familyNamePlaceholder=您的姓氏 register.ariaLabelMoreInformationOnVisibility=更多關於可見性設定的資訊(在新分頁中開啟) -register.step2.3=步驟 4 之 3 - 可見性 shared.previousStep=前一步 register.addAnAdditionalEmail=新增其他電子郵件 register.personalEmail=個人電子郵件 @@ -188,3 +194,28 @@ register.emailAreNotValid=您的電子郵件不符 register.Email=電子郵件 register.VisibilityParties=受信任組織 register.emailPlaceholder=您最常使用的電子郵件地址 +register.roleJobTitle=角色/職稱 +register.department=部門 +register.weCantIdentifyThisOrganization=無法辨識此組織。請嘗試再次輸入組織名稱。 +register.currentEmployment=目前就業情況 +register.pleaseEnterAnOrganizationName=請輸入組織名稱 +register.organizationPlaceholder=輸入貴組織的名稱 +register.departmentPlaceholder=學校、大專院校或科系 +register.rolePlaceholder=您在單位中的角色/職務 +register.yearPlaceholder=年 +register.monthPlaceholder=月 +register.clearOrganization=清除機構 +shared.skipThisStepWithoutAddingAnAffiliation=跳過此步驟,不新增附屬機構 +register.isAssociatedWith=已建立關聯的對象: +register.anExisting=現有的 +register.anUnclaimed=未認領的 +register.aDeactivated=已停用的 +register.orcidRecord=ORCID 記錄。 +register.youCannotUseThisEmail=建立新的 ORCID iD 時不能使用此電子郵件地址。 +register.emailIsAlreadyAssociated=此電子郵件已與現有的 ORCID 記錄建立關聯。請使用不同的電子郵件地址註冊新的 ORCID iD。 +register.resendClaimAddress=將認領電子郵件重新傳送至此電子郵件地址 +register.reactivateOrcidAssociated=重新啟用與此電子郵件地址建立關聯的 ORCID 記錄 +register.affiliationFoud=已找到附屬機構 +register.basedOnYourEmailWeThink=根據您的電子郵件,我們認為您目前隸屬於 +register.webePreselectedThisOrganizationForYouInTheFormBelow=我們已在下方表單為您預先選取此組織。 +register.whenYouCompleteRegistrationAnEmployment=完成註冊後,雇傭附屬機構會自動新增至您新的 ORCID 記錄。 diff --git a/src/locale/properties/shared/shared.de.properties b/src/locale/properties/shared/shared.de.properties index 78ad4cfd4a..b7bf41cedb 100644 --- a/src/locale/properties/shared/shared.de.properties +++ b/src/locale/properties/shared/shared.de.properties @@ -97,7 +97,7 @@ shared.activities=Aktivitäten shared.addToList=Zur Liste hinzufügen shared.organization=Organisation shared.organizationName=Organisationsname -shared.department=Fachbereich +shared.department=Fakultät/Abteilung shared.city=Stadt shared.cityError=Bitte geben Sie eine Stadt ein shared.region=Region, Staat oder Landkreis diff --git a/src/locale/properties/signin/signin.pt.properties b/src/locale/properties/signin/signin.pt.properties index 7def6deaed..2c9c99152f 100644 --- a/src/locale/properties/signin/signin.pt.properties +++ b/src/locale/properties/signin/signin.pt.properties @@ -49,7 +49,7 @@ ngOrcid.signin.2fa.badRecoveryCode=Código de recuperação inválido ngOrcid.signin.2fa.badRecoveryCodeLength=Comprimento do código de recuperação inválido ngOrcid.signin.2fa.verificationCodeRequired=Um código de autenticação é necessário ngOrcid.signin.2fa.badVerificationCode=Código de autenticação inválido -ngOrcid.signin.2fa.badVerificationCodeLength=Comprimento do código de autenticação inválido +ngOrcid.signin.2fa.badVerificationCodeLength=Comprimento do código de autenticação inválido  ngOrcid.signin.2fa.contactSupport=Contactar suporte ngOrcid.signin.2fa.noDevice1=Não tem seu dispositivo? ngOrcid.signin.2fa.noDevice2=Digite um código de recuperação diff --git a/src/locale/properties/top-bar/top-bar.ar.properties b/src/locale/properties/top-bar/top-bar.ar.properties index 3fa7bfb9fa..3295f2500b 100644 --- a/src/locale/properties/top-bar/top-bar.ar.properties +++ b/src/locale/properties/top-bar/top-bar.ar.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=حذف الاسم الآخر topBar.addBiography=إضافة سيرتك الذاتية topBar.weHaveSentForCredentials=لقد أرسلنا رسائل تأكيد إلى كل عنوان من عناوين البريد الإلكتروني المسجلة الخاصة بك. ستحتاج إلى تأكيد عنوان بريدك الإلكتروني الأساسي قبل أن تتمكن من تسجيل بيانات تسجيل الدخول إلى واجهة برمجة تطبيقات أوركيد العامة الخاصة بك. developerTools.ariaLabelClose=إغلاق +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.cs.properties b/src/locale/properties/top-bar/top-bar.cs.properties index 9d8836b21c..f404d9c9c4 100644 --- a/src/locale/properties/top-bar/top-bar.cs.properties +++ b/src/locale/properties/top-bar/top-bar.cs.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=Odstranit jiné jméno topBar.addBiography=Přidat životopis topBar.weHaveSentForCredentials=Na každou z vašich registrovaných e‑mailových adres jsme zaslali ověřovací zprávy. Než budete moci registrovat své přihlašovací údaje k veřejnému rozhraní API ORCID, budete muset ověřit svou primární e‑mailovou adresu. developerTools.ariaLabelClose=Zavřít +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.de.properties b/src/locale/properties/top-bar/top-bar.de.properties index 5b2721dc45..66758a16f7 100644 --- a/src/locale/properties/top-bar/top-bar.de.properties +++ b/src/locale/properties/top-bar/top-bar.de.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=Anderen Namen löschen topBar.addBiography=Fügen Sie Ihre Biografie hinzu topBar.weHaveSentForCredentials=Wir haben Bestätigungsnachrichten an alle Ihre registrierten E-Mail-Adressen gesendet. Sie müssen Ihre primäre E-Mail-Adresse bestätigen, bevor Sie Ihre Anmeldedaten für die öffentliche API von ORCID registrieren können. developerTools.ariaLabelClose=Schließen +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.es.properties b/src/locale/properties/top-bar/top-bar.es.properties index 001b511926..50d2e8cc2b 100644 --- a/src/locale/properties/top-bar/top-bar.es.properties +++ b/src/locale/properties/top-bar/top-bar.es.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=Elimine otro nombre topBar.addBiography=Añada su biografía topBar.weHaveSentForCredentials=Hemos enviado mensajes de verificación a cada una de sus direcciones de correo electrónico registradas. Deberá verificar su dirección de correo electrónico principal antes de poder registrar sus credenciales de API pública de ORCID. developerTools.ariaLabelClose=Cerrar +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.fr.properties b/src/locale/properties/top-bar/top-bar.fr.properties index ce22deca36..3e896a4ea3 100644 --- a/src/locale/properties/top-bar/top-bar.fr.properties +++ b/src/locale/properties/top-bar/top-bar.fr.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=Supprimer l'autre nom topBar.addBiography=Ajouter votre biographie topBar.weHaveSentForCredentials=Nous avons envoyé des messages de vérification à chacune de vos adresses e-mails enregistrées. Vous allez devoir procéder à la vérification de votre adresse e-mail principale avant de pouvoir enregistrer votre laisser-passer d'API publique ORCID. developerTools.ariaLabelClose=Fermer +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.it.properties b/src/locale/properties/top-bar/top-bar.it.properties index 97cce8c1b0..e2c16f2bf0 100644 --- a/src/locale/properties/top-bar/top-bar.it.properties +++ b/src/locale/properties/top-bar/top-bar.it.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=Cancella un altro nome topBar.addBiography=Aggiungi la tua biografia topBar.weHaveSentForCredentials=Abbiamo inviato un messaggio di verifica a ciascuno dei tuoi indirizzi email registrati. Devi verificare il tuo indirizzo email principale prima di poter registrare le credenziali dell’API pubblica di ORCID. developerTools.ariaLabelClose=Chiudi +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.ja.properties b/src/locale/properties/top-bar/top-bar.ja.properties index 5aab6f67d3..3a3e6aa63c 100644 --- a/src/locale/properties/top-bar/top-bar.ja.properties +++ b/src/locale/properties/top-bar/top-bar.ja.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=他の名前を削除 topBar.addBiography=バイオグラフィーを追加 topBar.weHaveSentForCredentials=ご登録いただいた各メールアドレスに確認メッセージを送信しました。ORCID Public API認証情報を登録する前に、メインのメールアドレスを確認する必要があります。 developerTools.ariaLabelClose=Close +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.ko.properties b/src/locale/properties/top-bar/top-bar.ko.properties index 5dbeb0f129..1be45099f4 100644 --- a/src/locale/properties/top-bar/top-bar.ko.properties +++ b/src/locale/properties/top-bar/top-bar.ko.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=다른 이름 삭제 topBar.addBiography=자기소개 추가 topBar.weHaveSentForCredentials=등록하신 이메일 주소로 각각 인증 메시지를 보내드렸습니다. 기본 이메일 주소를 인증해야 ORCID Public API 자격증명을 등록하실 수 있습니다. developerTools.ariaLabelClose=닫기 +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.pl.properties b/src/locale/properties/top-bar/top-bar.pl.properties index f82a0c4b65..df98a50495 100644 --- a/src/locale/properties/top-bar/top-bar.pl.properties +++ b/src/locale/properties/top-bar/top-bar.pl.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=Usuń inne imię/nazwisko topBar.addBiography=Dodaj biografię topBar.weHaveSentForCredentials=Wysłaliśmy wiadomości weryfikacyjne na każdy z zarejestrowanych adresów e-mail. Zanim zarejestrujesz swoje poświadczenia publicznego interfejsu API ORCID, musisz zweryfikować swój podstawowy adres e-mail. developerTools.ariaLabelClose=Zamknij +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.pt.properties b/src/locale/properties/top-bar/top-bar.pt.properties index b365f7758e..91df06f676 100644 --- a/src/locale/properties/top-bar/top-bar.pt.properties +++ b/src/locale/properties/top-bar/top-bar.pt.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=Eliminar outro nome topBar.addBiography=Adicione uma biografia topBar.weHaveSentForCredentials=Enviámos mensagens de verificação para todos os seus endereços de e-mail registados. É necessário efetuar a verificação no seu endereço de e-mail principal para registar as suas credenciais da API Pública do ORCID. developerTools.ariaLabelClose=Fechar +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.ru.properties b/src/locale/properties/top-bar/top-bar.ru.properties index 2e75c118cc..25877d4145 100644 --- a/src/locale/properties/top-bar/top-bar.ru.properties +++ b/src/locale/properties/top-bar/top-bar.ru.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=Удалить другое имя topBar.addBiography=Добавьте биографию topBar.weHaveSentForCredentials=Мы отправили письмо с подтверждением на каждый ваш зарегистрированный электронный адрес. Подтвердите основной адрес, прежде чем зарегистрировать данные публичного API ORCID. developerTools.ariaLabelClose=Закрыть +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.tr.properties b/src/locale/properties/top-bar/top-bar.tr.properties index 4d852c2a7e..7e5fab99e5 100644 --- a/src/locale/properties/top-bar/top-bar.tr.properties +++ b/src/locale/properties/top-bar/top-bar.tr.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=Diğer adı sil topBar.addBiography=Biyografinizi ekleyin topBar.weHaveSentForCredentials=Kayıtlı e-posta adreslerinizden her birine doğrulama mesajı gönderdik. ORCID Ortak API kimlik bilgilerinizi kaydetmek için ana e-posta adresinizi doğrulamalısınız. developerTools.ariaLabelClose=Kapat +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.zh_CN.properties b/src/locale/properties/top-bar/top-bar.zh_CN.properties index 287241800f..aa2c0c8e17 100644 --- a/src/locale/properties/top-bar/top-bar.zh_CN.properties +++ b/src/locale/properties/top-bar/top-bar.zh_CN.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=删除其他名称 topBar.addBiography=添加您的简历 topBar.weHaveSentForCredentials=我们已经向您注册的每个电子邮件地址发送了验证信息。在注册您的 ORCID 公共应用程序接口(API)凭证之前,您需要验证您的主要电子邮件地址。 developerTools.ariaLabelClose=关闭 +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/top-bar/top-bar.zh_TW.properties b/src/locale/properties/top-bar/top-bar.zh_TW.properties index 1fb9f70cde..9f37e616d5 100644 --- a/src/locale/properties/top-bar/top-bar.zh_TW.properties +++ b/src/locale/properties/top-bar/top-bar.zh_TW.properties @@ -98,3 +98,17 @@ topBar.ariaLabelDeleteOtherName=刪除其他名稱 topBar.addBiography=新增您的簡歷 topBar.weHaveSentForCredentials=我們已將驗證訊息傳送到您註冊的各個電子郵件地址。您必須先驗證主要電子郵件地址,才能註冊您的 ORCID 公開 API 認證。 developerTools.ariaLabelClose=關閉 +topBar.copyId=Copy iD +topBar.printableRecord=Printable record +topBar.whenOrcidDeactivated=When an ORCID record is deactivated all information in the record is deleted. Deactivated records are not shown in registry searches. +topBar.findOutReactivating=Find out more about reactivating an ORCID account +topBar.weLockRecords=We lock records when they violate conditions of our +topBar.termsOfService=terms of service. +topBar.recordLockedInError=If you feel this record has been locked in error please +topBar.contactOrcid=contact ORCID support for further assistance. +topBar.deprecatedRecordIsDuplicate=A deprecated record is a duplicate or unwanted ORCID record that has been merged with another owned by the same person. +topBar.findOutMoreAboutRemoving=Find out more about removing additional or duplicate ORCID records +topBar.recordOwnerNotHaveAdded=The record owner may not have added information to their record or the visibility for items on their record may be to Trusted parties or Only me. +topBar.findOutVisibility=Find out more about visibility settings in ORCID +topBar.ariaLabelCopyOrcidId=Copy your ORCID iD to the clipboard +topBar.ariaLabelViewPrintable=View a printable version of your ORCID record (Opens in new tab) diff --git a/src/locale/properties/works/works.de.properties b/src/locale/properties/works/works.de.properties index 8f6475f4f8..94d61bf13c 100644 --- a/src/locale/properties/works/works.de.properties +++ b/src/locale/properties/works/works.de.properties @@ -2,17 +2,17 @@ work.works=Werke works.workDetails=Werkdetails works.identifiers=Identifikatoren works.identifier=Kennung -works.citation=Zitat +works.citation=Zitierung works.otherInformation=Andere Informationen works.workType=Werktyp works.selectWorkType=Wählen Sie einen Werktyp aus works.setAWorkTitle=Legen Sie einen Werk fest works.translatedTitle=Übersetzter Titel der Werk -works.subtitle=Untertitel der Werk -works.subtitle-2=Untertitel der Werk +works.subtitle=Untertitel des Werkes +works.subtitle-2=Untertitel des Werkes works.invalidUrl=Ungültige URL works.linkMoreInformationAbout=Ein Link zu weiteren Informationen über die Werk. Links sollten im vollständigen URL-Format vorliegen, z. B. http://www.website.com/seite.html -works.citationType=Zitierart +works.citationType=Zitierstil works.selectACitation=Wählen Sie ein Zitat aus works.selectACitationType=Wählen Sie einen Zitationstyp aus works.describeThisCitation=Beschreiben Sie dieses Zitat From 65deed1c4ed1aefe610eb86ca38e59a37d7c6ae5 Mon Sep 17 00:00:00 2001 From: amontenegro Date: Fri, 16 Feb 2024 15:14:07 +0000 Subject: [PATCH 21/24] =?UTF-8?q?=F0=9F=A4=96=20GITHUB=20ACTIONS=20i18n=20?= =?UTF-8?q?generator?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locale/properties/signin/signin.pt.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locale/properties/signin/signin.pt.properties b/src/locale/properties/signin/signin.pt.properties index 2c9c99152f..7def6deaed 100644 --- a/src/locale/properties/signin/signin.pt.properties +++ b/src/locale/properties/signin/signin.pt.properties @@ -49,7 +49,7 @@ ngOrcid.signin.2fa.badRecoveryCode=Código de recuperação inválido ngOrcid.signin.2fa.badRecoveryCodeLength=Comprimento do código de recuperação inválido ngOrcid.signin.2fa.verificationCodeRequired=Um código de autenticação é necessário ngOrcid.signin.2fa.badVerificationCode=Código de autenticação inválido -ngOrcid.signin.2fa.badVerificationCodeLength=Comprimento do código de autenticação inválido  +ngOrcid.signin.2fa.badVerificationCodeLength=Comprimento do código de autenticação inválido ngOrcid.signin.2fa.contactSupport=Contactar suporte ngOrcid.signin.2fa.noDevice1=Não tem seu dispositivo? ngOrcid.signin.2fa.noDevice2=Digite um código de recuperação From c7e612d9d099ae6c3c78468e323e3c1c622f2606 Mon Sep 17 00:00:00 2001 From: github actions Date: Fri, 16 Feb 2024 15:24:21 +0000 Subject: [PATCH 22/24] v2.55.11 changelog update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84be557ffd..13c549d816 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.55.11 - 2024-02-16 + +[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.10...v2.55.11) + ## v2.55.10 - 2024-02-16 [Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.55.9...v2.55.10) From 10efd05558ae412b2275ef7e25acda07cd15643f Mon Sep 17 00:00:00 2001 From: Angel Montenegro Date: Mon, 19 Feb 2024 17:05:55 -0600 Subject: [PATCH 23/24] Termos of use error on registration must be displayed only after the user hit the complete registration button AND terms of use is not selected or data processing is not selected (#2151) Co-authored-by: leomendoza123 --- .../register2/components/form-terms/form-terms.component.html | 3 +-- .../register2/components/form-terms/form-terms.component.ts | 3 --- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/app/register2/components/form-terms/form-terms.component.html b/src/app/register2/components/form-terms/form-terms.component.html index bf31d66976..08c85b3441 100644 --- a/src/app/register2/components/form-terms/form-terms.component.html +++ b/src/app/register2/components/form-terms/form-terms.component.html @@ -1,7 +1,6 @@

Terms of Use

Date: Mon, 19 Feb 2024 17:06:23 -0600 Subject: [PATCH 24/24] enable-new-relic (#2153) Co-authored-by: Leonardo Mendoza Fernadez --- src/index.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/index.html b/src/index.html index 7f4de3a0a3..23aa64bdb2 100644 --- a/src/index.html +++ b/src/index.html @@ -24,6 +24,17 @@ href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,600,0,0" /> + + + +