Skip to content

Commit

Permalink
Merge branch 'feature/fix-ids-buttons' of github.com:ORCID/orcid-angu…
Browse files Browse the repository at this point in the history
…lar into feature/fix-ids-buttons
  • Loading branch information
Leonardo Mendoza Fernadez authored and Leonardo Mendoza Fernadez committed Feb 6, 2024
2 parents 0fa8744 + 1163811 commit 86d0a50
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 15 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v2.54.2 - 2024-02-03

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.54.1...v2.54.2)

- [#2144](https://github.com/ORCID/orcid-angular/pull/2144): Fix/batch of fixes 2 feb

## v2.54.1 - 2024-01-31

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.54.0...v2.54.1)
Expand Down
5 changes: 4 additions & 1 deletion src/app/register2/components/step-c2/step-c2.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ <h2 class="orc-font-body-small" i18n="@@register.step3.3">
id="step-c2-back-button"
(click)="optionalNextStep()"
>
<a i18n="@@shared.skipThisStepWithoutAddingAnAffiliation" class="skip-step">
<a
i18n="@@shared.skipThisStepWithoutAddingAnAffiliation"
class="skip-step"
>
Skip this step without adding an affiliation</a
>
</button>
Expand Down
28 changes: 15 additions & 13 deletions src/app/register2/register-state.service.spec.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
import { TestBed } from '@angular/core/testing';
import { TestBed } from '@angular/core/testing'

import { RegisterStateService } from './register-state.service';
import { RegisterStateService } from './register-state.service'

describe('RegisterStateService', () => {
let service: RegisterStateService;
let service: RegisterStateService

beforeEach(() => {
TestBed.configureTestingModule({
providers: [{
provide: RegisterStateService,
useValue: {}
}]
});
service = TestBed.inject(RegisterStateService);
});
providers: [
{
provide: RegisterStateService,
useValue: {},
},
],
})
service = TestBed.inject(RegisterStateService)
})

it('should be created', () => {
expect(service).toBeTruthy();
});
});
expect(service).toBeTruthy()
})
})
2 changes: 1 addition & 1 deletion src/locale/properties/register/register.en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -217,4 +217,4 @@ register.reactivateOrcidAssociated=Reactivate the ORCID record associated with t
register.affiliationFoud=Affiliation found
register.basedOnYourEmailWeThink=Based on your emails we think you are currently affiliated with
register.webePreselectedThisOrganizationForYouInTheFormBelow=We’ve pre-selected this organization for you in the form below.
register.whenYouCompleteRegistrationAnEmployment=When you complete registration an employment affiliation will be automatically added to your new ORCID record.
register.whenYouCompleteRegistrationAnEmployment=When you complete registration an employment affiliation will be automatically added to your new ORCID record.
5 changes: 5 additions & 0 deletions src/locale/properties/register/register.lr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -218,3 +218,8 @@ register.orcidRecord=LR
register.youCannotUseThisEmail=LR
register.resendClaimAddress=LR
register.reactivateOrcidAssociated=LR
register.youMustAccept2=LR
register.affiliationFoud=LR
register.basedOnYourEmailWeThink=LR
register.webePreselectedThisOrganizationForYouInTheFormBelow=LR
register.whenYouCompleteRegistrationAnEmployment=LR
5 changes: 5 additions & 0 deletions src/locale/properties/register/register.rl.properties
Original file line number Diff line number Diff line change
Expand Up @@ -218,3 +218,8 @@ register.orcidRecord=RL
register.youCannotUseThisEmail=RL
register.resendClaimAddress=RL
register.reactivateOrcidAssociated=RL
register.youMustAccept2=RL
register.affiliationFoud=RL
register.basedOnYourEmailWeThink=RL
register.webePreselectedThisOrganizationForYouInTheFormBelow=RL
register.whenYouCompleteRegistrationAnEmployment=RL
5 changes: 5 additions & 0 deletions src/locale/properties/register/register.xx.properties
Original file line number Diff line number Diff line change
Expand Up @@ -218,3 +218,8 @@ register.orcidRecord=X
register.youCannotUseThisEmail=X
register.resendClaimAddress=X
register.reactivateOrcidAssociated=X
register.youMustAccept2=X
register.affiliationFoud=X
register.basedOnYourEmailWeThink=X
register.webePreselectedThisOrganizationForYouInTheFormBelow=X
register.whenYouCompleteRegistrationAnEmployment=X

0 comments on commit 86d0a50

Please sign in to comment.