diff --git a/README.md b/README.md
index 9b61e55b54..15fcb55177 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ yarn build:i18n
2- Run the application on the language you want using one of the following options
```
-yarn start:aot ## Runs the application in using the english properties
+yarn start:en ## Runs the application in using the english properties
yarn start:fr ## Runs the application in using the french properties
yarn start:ar ## Runs the application in using the arabic properties
yarn start:es ## Runs the application in using the spanish properties
diff --git a/package.json b/package.json
index e7e481fe8e..f200bf27f2 100644
--- a/package.json
+++ b/package.json
@@ -3,6 +3,7 @@
"version": "0.0.0",
"scripts": {
"start": "ng serve --disable-host-check --host 0.0.0.0",
+ "start:en": "ng serve --configuration=local,en --disable-host-check",
"start:fr": "ng serve --configuration=local,fr --disable-host-check",
"start:ar": "ng serve --configuration=local,ar --disable-host-check",
"start:ca": "ng serve --configuration=local,ca --disable-host-check",
diff --git a/src/app/cdk/side-bar/modals/modal-country/modal-country.component.html b/src/app/cdk/side-bar/modals/modal-country/modal-country.component.html
index a57f28a5b7..fb5cd0d196 100644
--- a/src/app/cdk/side-bar/modals/modal-country/modal-country.component.html
+++ b/src/app/cdk/side-bar/modals/modal-country/modal-country.component.html
@@ -29,18 +29,21 @@
- Add countries to your ORCID record to highlight where you conduct your
- research or where your research is focused. You can add as many
- countries as you want.
+ Add countries or locations to your ORCID record to highlight where you
+ conduct your research or where your research is focused. You can add
+ as many countries or locations as you want.
0">
-
- My countries
+
+ My countries/locations
@@ -80,6 +83,7 @@
#countrySelect
id="cy-country-select-{{ i }}"
formControlName="country"
+ placeholder=" {{ ngOrcidCountry }}"
>
add_circle_outline
Add a country or location
- Add a country
-
Add another country or location
- Add another country
-
diff --git a/src/app/cdk/side-bar/modals/modal-country/modal-country.component.spec.ts b/src/app/cdk/side-bar/modals/modal-country/modal-country.component.spec.ts
index 4f3cb2ae6d..d657de928e 100644
--- a/src/app/cdk/side-bar/modals/modal-country/modal-country.component.spec.ts
+++ b/src/app/cdk/side-bar/modals/modal-country/modal-country.component.spec.ts
@@ -1,26 +1,169 @@
-import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'
+import { ComponentFixture, TestBed } from '@angular/core/testing'
import { ModalCountryComponent } from './modal-country.component'
+import { HttpClientTestingModule } from '@angular/common/http/testing'
+import { RouterTestingModule } from '@angular/router/testing'
+import { WINDOW_PROVIDERS } from '../../../window'
+import { PlatformInfoService } from '../../../platform-info'
+import { ErrorHandlerService } from '../../../../core/error-handler/error-handler.service'
+import { SnackbarService } from '../../../snackbar/snackbar.service'
+import { MatSnackBar } from '@angular/material/snack-bar'
+import {
+ MAT_DIALOG_DATA,
+ MatDialog,
+ MatDialogRef,
+} from '@angular/material/dialog'
+import { Overlay } from '@angular/cdk/overlay'
+import { RecordCountriesService } from '../../../../core/record-countries/record-countries.service'
+import { HarnessLoader, parallel } from '@angular/cdk/testing'
+import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed'
+import { ModalModule } from '../../../modal/modal.module'
+import { MatIconModule } from '@angular/material/icon'
+import { FormsModule, ReactiveFormsModule } from '@angular/forms'
+import { By } from '@angular/platform-browser'
+import { MatSelectModule } from '@angular/material/select'
+import { NoopAnimationsModule } from '@angular/platform-browser/animations'
+import { Address, CountriesEndpoint } from '../../../../types'
+import { PrivacySelectorModule } from '../../../privacy-selector/privacy-selector.module'
+import { SideBarModule } from '../../side-bar.module'
+import { MatButtonModule } from '@angular/material/button'
+import { Observable, of } from 'rxjs'
+import { ChangeDetectorRef } from '@angular/core'
+import { MatSelectHarness } from '@angular/material/select/testing'
describe('ModalCountryComponent', () => {
let component: ModalCountryComponent
let fixture: ComponentFixture
+ let recordCountriesService: RecordCountriesService
+ let loader: HarnessLoader
- beforeEach(
- waitForAsync(() => {
- TestBed.configureTestingModule({
- declarations: [ModalCountryComponent],
- }).compileComponents()
- })
- )
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ imports: [
+ FormsModule,
+ HttpClientTestingModule,
+ MatButtonModule,
+ MatIconModule,
+ MatSelectModule,
+ ModalModule,
+ NoopAnimationsModule,
+ PrivacySelectorModule,
+ ReactiveFormsModule,
+ RouterTestingModule,
+ SideBarModule,
+ ],
+ declarations: [ModalCountryComponent],
+ providers: [
+ { provide: MatDialogRef, useValue: {} },
+ { provide: MAT_DIALOG_DATA, useValue: {} },
+ WINDOW_PROVIDERS,
+ ChangeDetectorRef,
+ RecordCountriesService,
+ PlatformInfoService,
+ ErrorHandlerService,
+ SnackbarService,
+ MatSnackBar,
+ MatDialog,
+ Overlay,
+ ],
+ }).compileComponents()
+ })
beforeEach(() => {
fixture = TestBed.createComponent(ModalCountryComponent)
component = fixture.componentInstance
+
+ recordCountriesService = TestBed.inject(RecordCountriesService)
+ const adressesResponse: Observable = of({
+ errors: [],
+ addresses: [],
+ visibility: { visibility: 'PUBLIC' },
+ })
+ spyOn(recordCountriesService, 'getAddresses').and.returnValue(
+ adressesResponse
+ )
+ loader = TestbedHarnessEnvironment.loader(fixture)
+
fixture.detectChanges()
})
- it('should create', () => {
+ it('should create country modal with title and button with text `Add a country or location`', () => {
expect(component).toBeTruthy()
+ expect(
+ fixture.debugElement.nativeElement.querySelector('p').textContent
+ ).not.toBeNull()
+ expect(
+ fixture.debugElement.query(By.css('#add-link')).childNodes[1].nativeNode
+ .textContent
+ ).toBe('Add a country or location')
+ })
+
+ it('should add a country and the button text must update', () => {
+ const addCountryButton = fixture.debugElement.query(By.css('#add-link'))
+ addCountryButton.nativeElement.click()
+
+ fixture.detectChanges()
+
+ expect(
+ fixture.debugElement.query(By.css('#add-link')).childNodes[1].nativeNode
+ .textContent
+ ).toBe('Add another country or location')
+ })
+
+ it('should display three countries with the next status disabled (source is not user), enabled and enabled', async () => {
+ const adressesResponse: Observable = of({
+ errors: [],
+ addresses: getAddresses(),
+ visibility: { visibility: 'PUBLIC' },
+ })
+ recordCountriesService.getAddresses = jasmine
+ .createSpy()
+ .and.returnValue(adressesResponse)
+
+ component.id = '0000-0000-0000-000X'
+ component.ngOnInit()
+
+ const countriesForm = component.countryForm
+
+ const addCountryButton = fixture.debugElement.query(By.css('#add-link'))
+ await addCountryButton.nativeElement.click()
+
+ fixture.detectChanges()
+
+ const countriesSelects = await loader.getAllHarnesses(MatSelectHarness)
+ await countriesSelects[2].open()
+ await countriesSelects[2].clickOptions({ text: 'Mexico' })
+
+ const disabledStates = await parallel(() =>
+ countriesSelects.map((select) => select.isDisabled())
+ )
+
+ expect(countriesForm.controls[1].value.country).toBe('Albania')
+ expect(countriesForm.controls['new-0'].value.country).toBe('Mexico')
+ expect(disabledStates.filter((value) => value).length).toBe(1)
+ expect(countriesSelects.length).toBe(3)
})
})
+
+function getAddresses(): Address[] {
+ return [
+ {
+ putCode: '1',
+ countryName: 'Albania',
+ source: '0000-0000-0000-000X',
+ sourceName: 'Test Record',
+ visibility: {
+ visibility: 'PUBLIC',
+ },
+ } as Address,
+ {
+ putCode: '2',
+ countryName: 'United States',
+ source: '0000-0000-0000-000Z',
+ sourceName: 'ORCID',
+ visibility: {
+ visibility: 'PRIVATE',
+ },
+ } as Address,
+ ]
+}
diff --git a/src/app/cdk/side-bar/modals/modal-country/modal-country.component.ts b/src/app/cdk/side-bar/modals/modal-country/modal-country.component.ts
index 053ddb9e1f..f03ff00d94 100644
--- a/src/app/cdk/side-bar/modals/modal-country/modal-country.component.ts
+++ b/src/app/cdk/side-bar/modals/modal-country/modal-country.component.ts
@@ -54,6 +54,8 @@ export class ModalCountryComponent implements OnInit, OnDestroy {
loadingCountryCodes = true
@ViewChildren('countrySelect') inputs: QueryList
+ ngOrcidCountry = $localize`:@@shared.selectACountryOrLocation:Select a country or location`
+
ngOnInit(): void {
this._recordCountryService
.getAddresses()
diff --git a/src/app/record/components/affiliation-stacks-groups/modals/modal-affiliations/modal-affiliations.component.html b/src/app/record/components/affiliation-stacks-groups/modals/modal-affiliations/modal-affiliations.component.html
index e3c48e3fe4..286c9a5c05 100644
--- a/src/app/record/components/affiliation-stacks-groups/modals/modal-affiliations/modal-affiliations.component.html
+++ b/src/app/record/components/affiliation-stacks-groups/modals/modal-affiliations/modal-affiliations.component.html
@@ -300,7 +300,7 @@
affiliationForm.get('country').touched)
}"
>
- Country
+ Country/Location
*
@@ -311,7 +311,11 @@
class="mat-form-field-min"
[ngClass]="{ 'two-line-hint': isMobile }"
>
-
+
- Country
+ Country/Location
*
@@ -732,7 +732,11 @@
class="mat-form-field-min"
[ngClass]="{ 'two-line-hint': isMobile }"
>
-
+
-
- Select a citation type
-
-
- Country of publication Country/Location of publication
@@ -677,7 +673,7 @@
>
diff --git a/src/app/record/components/work-form/work-form/work-form.component.ts b/src/app/record/components/work-form/work-form/work-form.component.ts
index 9ff0013c3b..ade90f6003 100644
--- a/src/app/record/components/work-form/work-form/work-form.component.ts
+++ b/src/app/record/components/work-form/work-form/work-form.component.ts
@@ -95,7 +95,8 @@ export class WorkFormComponent implements OnInit {
ngOrcidMonth = $localize`:@@shared.month:Month`
ngOrcidDay = $localize`:@@shared.day:Day`
ngOrcidSelectLanguage = $localize`:@@shared.selectLanguage:Select a language`
- ngOrcidSelectACountry = $localize`:@@shared.selectACountry:Select a country`
+ ngOrcidSelectACitationType = $localize`:@@works.selectACitationType:Select a citation type`
+ ngOrcidSelectACountryOrLocation = $localize`:@@shared.selectACountryOrLocation:Select a country or location`
ngOrcidDefaultVisibilityLabel = $localize`:@@shared.visibilityDescription:Control who can see this information by setting the visibility. Your default visibility is`
defaultVisibility: VisibilityStrings
@@ -118,7 +119,6 @@ export class WorkFormComponent implements OnInit {
private _recordCountryService: RecordCountriesService,
private _snackBar: SnackbarService,
private _record: RecordService,
-
@Inject(WINDOW) private _window: Window,
@Inject(MAT_DIALOG_DATA) public data: UserRecord
) {}
@@ -419,6 +419,7 @@ export class WorkFormComponent implements OnInit {
this.workIdentifiersFormArray
)
}
+
deleteWorkId(id: number) {
this.workIdentifiersFormArrayDisplayState.splice(id, 1)
this.workIdentifiersFormArray.removeAt(id)
diff --git a/src/locale/properties/shared/shared.ar.properties b/src/locale/properties/shared/shared.ar.properties
index 1d491e67fd..8770b5ff34 100644
--- a/src/locale/properties/shared/shared.ar.properties
+++ b/src/locale/properties/shared/shared.ar.properties
@@ -100,7 +100,6 @@ shared.department=القسم
shared.city=مدينة
shared.cityError=يرجى إدخال مدينة
shared.region=المنطقة، أو الولاية، أو المقاطعة
-shared.country=الدولة
shared.countryError=يُرجى إدخال دولة
shared.employmentDetails=تفاصيل التوظيف
shared.qualificationDetails=معلومات المؤهلات
@@ -167,7 +166,6 @@ shared.pleaseReview=يرجى مراجعة المشكلة وإصلاحها
shared.youHaveNotSelected=لم تقم بتحديد أي مواد للحذف.
shared.youHaveNotSelectedImport=لم تحدد أي عناصر لاستيرادها.
shared.publicationDate=التاريخ العام
-shared.selectACountry=تحديد بلد
shared.translatedTitleLanguageError=يرجى تحديد لغة
shared.translatedTitleError=الرجاء إدخال عنوان مترجم
shared.moreInformationOn=المزيد من المعلومات حول
diff --git a/src/locale/properties/shared/shared.cs.properties b/src/locale/properties/shared/shared.cs.properties
index e08f875842..76b06d7941 100644
--- a/src/locale/properties/shared/shared.cs.properties
+++ b/src/locale/properties/shared/shared.cs.properties
@@ -100,7 +100,6 @@ shared.department=Oddělení
shared.city=Město
shared.cityError=Prosím, zadejte město
shared.region=Region, stát nebo hrabství
-shared.country=Země
shared.countryError=Zadejte zemi
shared.employmentDetails=Podrobnosti zaměstnání
shared.qualificationDetails=Podrobnosti kvalifikace
@@ -167,7 +166,6 @@ shared.pleaseReview=Prosím zkontrolujte a opravte problém
shared.youHaveNotSelected=Nevybrali jste žádné položky ke smazání.
shared.youHaveNotSelectedImport=Nevybrali jste žádné položky k importu.
shared.publicationDate=Zdroj díla
-shared.selectACountry=Vyberte zemi
shared.translatedTitleLanguageError=Prosím, vyberte jazyk
shared.translatedTitleError=Zadejte prosím přeložený název
shared.moreInformationOn=Další informace na
diff --git a/src/locale/properties/shared/shared.en.properties b/src/locale/properties/shared/shared.en.properties
index fd6c280681..c1807b4f84 100644
--- a/src/locale/properties/shared/shared.en.properties
+++ b/src/locale/properties/shared/shared.en.properties
@@ -100,7 +100,6 @@ shared.department=Department
shared.city=City
shared.cityError=Please enter a city
shared.region=Region, State or County
-shared.country=Country
shared.countryError=Please enter a country
shared.employmentDetails=Employment details
shared.qualificationDetails=Qualification details
@@ -167,7 +166,6 @@ shared.pleaseReview=Please review and fix the issue
shared.youHaveNotSelected=You haven’t selected any items to delete.
shared.youHaveNotSelectedImport=You haven’t selected any items to import.
shared.publicationDate=Publication date
-shared.selectACountry=Select a country
shared.translatedTitleLanguageError=Please select a language
shared.translatedTitleError=Please enter a translated title
shared.moreInformationOn=More information on
@@ -432,3 +430,5 @@ share.YE=Yemen
share.ZM=Zambia
share.ZW=Zimbabwe
share.AX=Åland Islands
+shared.countryOrLocation=Country/Location
+shared.selectACountryOrLocation=Select a country or location
diff --git a/src/locale/properties/shared/shared.es.properties b/src/locale/properties/shared/shared.es.properties
index 71b0c0aef5..54860f64ca 100644
--- a/src/locale/properties/shared/shared.es.properties
+++ b/src/locale/properties/shared/shared.es.properties
@@ -100,7 +100,6 @@ shared.department=Departamento
shared.city=Ciudad
shared.cityError=Introduzca una ciudad
shared.region=Región, estado o condado
-shared.country=País
shared.countryError=Introduzca un país
shared.employmentDetails=Datos de empleo
shared.qualificationDetails=Información de cualificación
@@ -167,7 +166,6 @@ shared.pleaseReview=Revise y solucione el problema
shared.youHaveNotSelected=No ha seleccionado ningún elemento para eliminar.
shared.youHaveNotSelectedImport=No ha seleccionado ningún elemento para importar.
shared.publicationDate=Fecha de publicación
-shared.selectACountry=Seleccionar un país
shared.translatedTitleLanguageError=Seleccione un idioma
shared.translatedTitleError=Introduzca un título traducido
shared.moreInformationOn=Más información sobre
diff --git a/src/locale/properties/shared/shared.fr.properties b/src/locale/properties/shared/shared.fr.properties
index 5e53cc91b5..8fba3877f8 100644
--- a/src/locale/properties/shared/shared.fr.properties
+++ b/src/locale/properties/shared/shared.fr.properties
@@ -100,7 +100,6 @@ shared.department=Département
shared.city=Ville
shared.cityError=Veuillez saisir une ville
shared.region=Région, État ou département
-shared.country=Pays
shared.countryError=Veuillez saisir un pays
shared.employmentDetails=Détails de l'emploi
shared.qualificationDetails=Détails des qualifications
@@ -167,7 +166,6 @@ shared.pleaseReview=Veuillez examiner et régler le problème.
shared.youHaveNotSelected=Vous n'avez sélectionné aucun élément à supprimer.
shared.youHaveNotSelectedImport=Vous n'avez sélectionné aucun élément à importer.
shared.publicationDate=Date de publication
-shared.selectACountry=Sélectionnez un pays
shared.translatedTitleLanguageError=Veuillez sélectionner une langue.
shared.translatedTitleError=Veuillez entrer un titre traduit.
shared.moreInformationOn=Plus d'informations sur
diff --git a/src/locale/properties/shared/shared.it.properties b/src/locale/properties/shared/shared.it.properties
index 8d7f2dda2c..93fb3aab38 100644
--- a/src/locale/properties/shared/shared.it.properties
+++ b/src/locale/properties/shared/shared.it.properties
@@ -100,7 +100,6 @@ shared.department=Dipartimento
shared.city=Città
shared.cityError=Inserire la città
shared.region=Regione, Stato o provincia
-shared.country=Stato
shared.countryError=Inserisci un paese\n
shared.employmentDetails=Dettagli sull'impiego
shared.qualificationDetails=Dettagli delle qualifiche\n
@@ -167,7 +166,6 @@ shared.pleaseReview=Controlla e risolvi il problema
shared.youHaveNotSelected=Non hai selezionato nessun elemento da eliminare.
shared.youHaveNotSelectedImport=Non hai selezionato nessun elemento da importare.
shared.publicationDate=Data di pubblicazione
-shared.selectACountry=Seleziona un Paese
shared.translatedTitleLanguageError=Seleziona una lingua
shared.translatedTitleError=Inserisci un titolo tradotto
shared.moreInformationOn=Maggiori informazioni su
diff --git a/src/locale/properties/shared/shared.ja.properties b/src/locale/properties/shared/shared.ja.properties
index 71699d2c38..e40c34eac0 100644
--- a/src/locale/properties/shared/shared.ja.properties
+++ b/src/locale/properties/shared/shared.ja.properties
@@ -100,7 +100,6 @@ shared.department=部門
shared.city=市区町村
shared.cityError=市区町村を入力してください
shared.region=地域、州、または郡
-shared.country=国
shared.countryError=国を入力してください
shared.employmentDetails=雇用の詳細
shared.qualificationDetails=資格の詳細
@@ -167,7 +166,6 @@ shared.pleaseReview=問題を確認して修正してください
shared.youHaveNotSelected=削除するアイテムを選択していません。
shared.youHaveNotSelectedImport=インポートするアイテムを選択していません。
shared.publicationDate=出版日
-shared.selectACountry=国の選択
shared.translatedTitleLanguageError=言語を選択してください
shared.translatedTitleError=翻訳されたタイトルを入力してください
shared.moreInformationOn=詳細について
diff --git a/src/locale/properties/shared/shared.ko.properties b/src/locale/properties/shared/shared.ko.properties
index 98d3d89fbe..c2b7402b91 100644
--- a/src/locale/properties/shared/shared.ko.properties
+++ b/src/locale/properties/shared/shared.ko.properties
@@ -100,7 +100,6 @@ shared.department=과
shared.city=시/군
shared.cityError=시/군을 입력해 주십시오
shared.region=지역, 주 또는 국가
-shared.country=국가
shared.countryError=국가를 입력하십시오
shared.employmentDetails=고용 세부정보
shared.qualificationDetails=자격 세부정보
@@ -167,7 +166,6 @@ shared.pleaseReview=검토 후 잘못된 부분을 수정하세요
shared.youHaveNotSelected=삭제할 항목을 선택하지 않았습니다.
shared.youHaveNotSelectedImport=가져올 항목을 선택하지 않았습니다.
shared.publicationDate=발행일
-shared.selectACountry=국가를 선택하세요.
shared.translatedTitleLanguageError=언어를 선택해 주세요
shared.translatedTitleError=번역된 제목을 입력하세요
shared.moreInformationOn=더 많은 정보는
diff --git a/src/locale/properties/shared/shared.lr.properties b/src/locale/properties/shared/shared.lr.properties
index 7b2728bfec..cd1b41bcb1 100644
--- a/src/locale/properties/shared/shared.lr.properties
+++ b/src/locale/properties/shared/shared.lr.properties
@@ -95,7 +95,6 @@ shared.organization=LR
shared.organizationName=LR
shared.department=LR
shared.city=LR
-shared.country=LR
shared.role=LR
shared.degree=LR
shared.membershipType=LR
@@ -175,7 +174,6 @@ shared.publicationDate=LR
shared.translatedTitleLanguageError=LR
shared.translatedTitleError=LR
shared.exportAllWorks=LR
-shared.selectACountry=LR
shared.moreInformationOn=LR
shared.visibilitySettings=LR
shared.trustedParties=LR
@@ -444,3 +442,5 @@ share.AX=LR
share.MZ=LR
share.TM=LR
share.CI=LR
+shared.countryOrLocation=LR
+shared.selectACountryOrLocation=LR
diff --git a/src/locale/properties/shared/shared.pt.properties b/src/locale/properties/shared/shared.pt.properties
index d2dcb315d9..a28892ef95 100644
--- a/src/locale/properties/shared/shared.pt.properties
+++ b/src/locale/properties/shared/shared.pt.properties
@@ -100,7 +100,6 @@ shared.department=Departamento
shared.city=Cidade
shared.cityError=Insira uma cidade
shared.region=Região, Estado ou Distrito
-shared.country=País
shared.countryError=Introduza um país
shared.employmentDetails=Detalhes sobre emprego
shared.qualificationDetails=Detalhes sobre qualificações
@@ -167,7 +166,6 @@ shared.pleaseReview=Por favor, analise e corrija o problema
shared.youHaveNotSelected=Não selecionou nenhum item para eliminar.
shared.youHaveNotSelectedImport=Ainda não selecionou itens para importar.
shared.publicationDate=Data de publicação
-shared.selectACountry=Selecione um país
shared.translatedTitleLanguageError=Selecione um idioma
shared.translatedTitleError=Introduza um título traduzido
shared.moreInformationOn=Mais informações sobre
diff --git a/src/locale/properties/shared/shared.rl.properties b/src/locale/properties/shared/shared.rl.properties
index 785c3ca131..22fd05d781 100644
--- a/src/locale/properties/shared/shared.rl.properties
+++ b/src/locale/properties/shared/shared.rl.properties
@@ -95,7 +95,6 @@ shared.organization=RL
shared.organizationName=RL
shared.department=RL
shared.city=RL
-shared.country=RL
shared.role=RL
shared.degree=RL
shared.membershipType=RL
@@ -171,7 +170,6 @@ shared.publicationDate=RL
shared.translatedTitleLanguageError=RL
shared.translatedTitleError=RL
shared.exportAllWorks=RL
-shared.selectACountry=RL
shared.moreInformationOn=RL
shared.visibilitySettings=RL
shared.trustedParties=RL
@@ -440,3 +438,5 @@ share.AX=RL
share.MZ=RL
share.TM=RL
share.CI=RL
+shared.countryOrLocation=RL
+shared.selectACountryOrLocation=RL
diff --git a/src/locale/properties/shared/shared.ru.properties b/src/locale/properties/shared/shared.ru.properties
index 3a6ab2009d..8d39be2917 100644
--- a/src/locale/properties/shared/shared.ru.properties
+++ b/src/locale/properties/shared/shared.ru.properties
@@ -100,7 +100,6 @@ shared.department=Подразделение
shared.city=Город
shared.cityError=Введите город
shared.region=Регион, штат или округ
-shared.country=Страна
shared.countryError=Укажите страну
shared.employmentDetails=Сведения о трудовой деятельности
shared.qualificationDetails=Сведения о квалификации
@@ -167,7 +166,6 @@ shared.pleaseReview=Проверьте и устраните проблему
shared.youHaveNotSelected=Вы не выбрали ни одного элемента для удаления.
shared.youHaveNotSelectedImport=Вы не выбрали позиции для импорта.
shared.publicationDate=Дата публикации
-shared.selectACountry=Выберите страну
shared.translatedTitleLanguageError=Выберите язык
shared.translatedTitleError=Введите переведенный заголовок
shared.moreInformationOn=Дополнительная информация о
diff --git a/src/locale/properties/shared/shared.xx.properties b/src/locale/properties/shared/shared.xx.properties
index c36922ca3d..ff6296dd26 100644
--- a/src/locale/properties/shared/shared.xx.properties
+++ b/src/locale/properties/shared/shared.xx.properties
@@ -95,7 +95,6 @@ shared.organization=X
shared.organizationName=X
shared.department=X
shared.city=X
-shared.country=X
shared.role=X
shared.degree=X
shared.membershipType=X
@@ -171,7 +170,6 @@ shared.publicationDate=X
shared.translatedTitleLanguageError=X
shared.translatedTitleError=X
shared.exportAllWorks=X
-shared.selectACountry=X
shared.moreInformationOn=X
shared.visibilitySettings=X
shared.trustedParties=X
@@ -440,3 +438,5 @@ share.AX=X
share.MZ=X
share.TM=X
share.CI=X
+shared.countryOrLocation=X
+shared.selectACountryOrLocation=X
diff --git a/src/locale/properties/shared/shared.zh_CN.properties b/src/locale/properties/shared/shared.zh_CN.properties
index 303239d798..9761897d90 100644
--- a/src/locale/properties/shared/shared.zh_CN.properties
+++ b/src/locale/properties/shared/shared.zh_CN.properties
@@ -100,7 +100,6 @@ shared.department=部门
shared.city=城市
shared.cityError=请输入城市
shared.region=省/市/自治区
-shared.country=国家/地区
shared.countryError=请输入国家/地区
shared.employmentDetails=就业详细信息
shared.qualificationDetails=资质详细信息
@@ -167,7 +166,6 @@ shared.pleaseReview=请检查并修复此问题
shared.youHaveNotSelected=您未选择任何待删除的项目。
shared.youHaveNotSelectedImport=您未选择任何待导入的项目。
shared.publicationDate=出版日期
-shared.selectACountry=选择国家/地区
shared.translatedTitleLanguageError=选择语言
shared.translatedTitleError=请输入已翻译的标题
shared.moreInformationOn=更多信息
diff --git a/src/locale/properties/shared/shared.zh_TW.properties b/src/locale/properties/shared/shared.zh_TW.properties
index 020be3693b..80d236c277 100644
--- a/src/locale/properties/shared/shared.zh_TW.properties
+++ b/src/locale/properties/shared/shared.zh_TW.properties
@@ -100,7 +100,6 @@ shared.department=部門
shared.city=城市
shared.cityError=請輸入城市
shared.region=省/市/自治區
-shared.country=國家/地區
shared.countryError=請輸入國別
shared.employmentDetails=就業詳情
shared.qualificationDetails=資格詳情
@@ -167,7 +166,6 @@ shared.pleaseReview=請重新檢視並修正問題
shared.youHaveNotSelected=您尚未選擇欲刪除的物件。
shared.youHaveNotSelectedImport=您尚未選取任何進口的物品。
shared.publicationDate=出版日期
-shared.selectACountry=選擇國家/地區
shared.translatedTitleLanguageError=敬請選擇語言
shared.translatedTitleError=請輸入標題翻譯
shared.moreInformationOn=的其他資訊
diff --git a/src/locale/properties/side-bar/side-bar.ar.properties b/src/locale/properties/side-bar/side-bar.ar.properties
index 653943c5a1..89aebb7912 100644
--- a/src/locale/properties/side-bar/side-bar.ar.properties
+++ b/src/locale/properties/side-bar/side-bar.ar.properties
@@ -1,8 +1,4 @@
side-bar.countries=البلدان
-side-bar.myCountries=بلداني
-side-bar.countriesModalDescription=أضف بلداناً إلى سجلك على ORCID لتسليط الضوء على المكان الذي تجري فيه بحثك أو المنطقة التي يركز عليها بحثك. يمكنك إضافة العدد الذي تريده من البلدان.
-side-bar.addCountry=أضف دولة
-side-bar.addAnotherCountry=أضف دولة أخرى
side-bar.OrcidWorkBest=تعمل ORCID بشكل أفضل عندما يكون لديك عدة عناوين بريد إلكتروني.
side-bar.termOfUse=شروط الاستخدام
side-bar.youMayOnly=لا يمكنك إضافة عناوين بريد إلكتروني إلا التي تستطيع التحكم فيها فحسب. في كل مرة تضيف فيها عنوان بريد إلكتروني، سنرسل إليك بريداً إلكترونياً نطلب منك التحقق من هذا العنوان.
diff --git a/src/locale/properties/side-bar/side-bar.cs.properties b/src/locale/properties/side-bar/side-bar.cs.properties
index f6f934307d..2383f4fd34 100644
--- a/src/locale/properties/side-bar/side-bar.cs.properties
+++ b/src/locale/properties/side-bar/side-bar.cs.properties
@@ -1,8 +1,4 @@
side-bar.countries=Země
-side-bar.myCountries=Mé země
-side-bar.countriesModalDescription=Přidejte země do svého záznamu ORCID, abyste zdůraznili, kde provádíte svůj výzkum nebo kam se váš výzkum zaměřuje. Můžete přidat tolik zemí, kolik chcete.
-side-bar.addCountry=Přidat zemi
-side-bar.addAnotherCountry=Přidat další zemi
side-bar.OrcidWorkBest=ORCID funguje nejlépe, když máte více e-mailových adres.
side-bar.termOfUse=Podmínek užití ORCID
side-bar.youMayOnly=můžete přidat pouze e-mailové adresy, které máte pod kontrolou. Pokaždé, když přidáte e-mailovou adresu, zašleme vám e-mail s žádostí o její ověření.
diff --git a/src/locale/properties/side-bar/side-bar.en.properties b/src/locale/properties/side-bar/side-bar.en.properties
index 87865d8c57..7fad2496fe 100644
--- a/src/locale/properties/side-bar/side-bar.en.properties
+++ b/src/locale/properties/side-bar/side-bar.en.properties
@@ -1,8 +1,4 @@
side-bar.countries=Countries
-side-bar.myCountries=My countries
-side-bar.countriesModalDescription=Add countries to your ORCID record to highlight where you conduct your research or where your research is focused. You can add as many countries as you want.
-side-bar.addCountry=Add a country
-side-bar.addAnotherCountry=Add another country
side-bar.OrcidWorkBest=ORCID works best when you have multiple email addresses.
side-bar.termOfUse=ORCID terms of use
side-bar.youMayOnly=you may only add email addresses that you have control over. Each time you add an email address we will send you an email asking you to verify it.
@@ -35,3 +31,7 @@ side-bar.personIdentifiersSupport=Other identifiers support page.
sideBar.onlyVerifiedEmail=Only verified email addresses can be displayed publicly or shared with trusted parties. Please verify your email
sideBar.primaryEmailRequired=An email is required
side-bar.weHaveSentAEmail=We’ve sent a verification email to
+side-bar.myCountriesAndLocations=My countries/locations
+side-bar.addCountryOrLocation=Add a country or location
+side-bar.addAnotherCountryOrLocation=Add another country or location
+side-bar.countriesOrLocationsDescription=Add countries or locations to your ORCID record to highlight where you conduct your research or where your research is focused. You can add as many countries or locations as you want.
diff --git a/src/locale/properties/side-bar/side-bar.es.properties b/src/locale/properties/side-bar/side-bar.es.properties
index acdd885170..9ad640cdd5 100644
--- a/src/locale/properties/side-bar/side-bar.es.properties
+++ b/src/locale/properties/side-bar/side-bar.es.properties
@@ -1,8 +1,4 @@
side-bar.countries=Países
-side-bar.myCountries=Mis países
-side-bar.countriesModalDescription=Añada países a su registro ORCID para mostrar dónde realiza su investigación o dónde se centra. Puede añadir tantos países como desee.
-side-bar.addCountry=Añadir un país
-side-bar.addAnotherCountry=Añadir otro país
side-bar.OrcidWorkBest=ORCID funciona mejor cuando tiene varias direcciones de correo electrónico.
side-bar.termOfUse=términos de uso de ORCID
side-bar.youMayOnly=solo puede añadir direcciones de correo electrónico a las que tenga acceso. Cada vez que añada una dirección, le enviaremos un correo de verificación.
diff --git a/src/locale/properties/side-bar/side-bar.fr.properties b/src/locale/properties/side-bar/side-bar.fr.properties
index eab94e8d25..b394b49751 100644
--- a/src/locale/properties/side-bar/side-bar.fr.properties
+++ b/src/locale/properties/side-bar/side-bar.fr.properties
@@ -1,8 +1,4 @@
side-bar.countries=Pays
-side-bar.myCountries=Mes pays
-side-bar.countriesModalDescription=Ajoutez des pays à votre dossier ORCID pour mettre en avant les lieux où vous effectuez vos recherches ou ceux où elles se concentrent. Vous pouvez ajouter autant de pays que vous le souhaitez.
-side-bar.addCountry=Ajouter un pays
-side-bar.addAnotherCountry=Ajouter un autre pays
side-bar.OrcidWorkBest=ORCID fonctionne mieux lorsque vous avez plusieurs adresses e-mails.
side-bar.termOfUse=conditions d'utilisation d'ORCID
side-bar.youMayOnly=vous ne pouvez ajouter que les adresses e-mails que vous contrôlez. À chaque fois que vous en ajouterez une, nous vous enverrons un e-mail vous demandant de procéder à sa vérification.
diff --git a/src/locale/properties/side-bar/side-bar.it.properties b/src/locale/properties/side-bar/side-bar.it.properties
index 99250aff80..d992525649 100644
--- a/src/locale/properties/side-bar/side-bar.it.properties
+++ b/src/locale/properties/side-bar/side-bar.it.properties
@@ -1,8 +1,4 @@
side-bar.countries=Paesi
-side-bar.myCountries=I miei paesi
-side-bar.countriesModalDescription=Aggiungi dei paesi al tuo record ORCID per evidenziare i luoghi dove effettui le tue ricerche o dove si concentrano le tue ricerche. Puoi aggiungere tutti i paesi che desideri.
-side-bar.addCountry=Aggiungi un paese
-side-bar.addAnotherCountry=Aggiungi un altro paese
side-bar.OrcidWorkBest=ORCID funziona meglio quando hai più di un indirizzo email.
side-bar.termOfUse=Termini di uso di ORCID
side-bar.youMayOnly=puoi aggiungere solo gli indirizzi email che gestisci tu. Ogni volta che aggiungi un indirizzo email ti invieremo un'email per verificarlo.
diff --git a/src/locale/properties/side-bar/side-bar.ja.properties b/src/locale/properties/side-bar/side-bar.ja.properties
index 3cafc3e01b..57c8c55125 100644
--- a/src/locale/properties/side-bar/side-bar.ja.properties
+++ b/src/locale/properties/side-bar/side-bar.ja.properties
@@ -1,8 +1,4 @@
side-bar.countries=国
-side-bar.myCountries=私の国々
-side-bar.countriesModalDescription=ORCIDレコードに国を追加して、研究を行う場所や研究の焦点を当てる場所を強調します。好きなだけ国を追加することができます。
-side-bar.addCountry=国を追加する
-side-bar.addAnotherCountry=別の国を追加する
side-bar.OrcidWorkBest=ORCIDは、複数のメールアドレスがある場合に最も適切に機能します。
side-bar.termOfUse=利用規約により
side-bar.youMayOnly=自分で管理できるメールアドレスのみを追加できます。メールアドレスを追加するたびに、確認を求めるメールが送信されます。
diff --git a/src/locale/properties/side-bar/side-bar.ko.properties b/src/locale/properties/side-bar/side-bar.ko.properties
index d32f0786d0..a4ae53f320 100644
--- a/src/locale/properties/side-bar/side-bar.ko.properties
+++ b/src/locale/properties/side-bar/side-bar.ko.properties
@@ -1,8 +1,4 @@
side-bar.countries=국가
-side-bar.myCountries=내 국가
-side-bar.countriesModalDescription=ORCID 기록에 국가를 추가하고 연구를 수행했거나 연구가 집중된 곳에 강조 표시를 하세요. 국가의 수는 원하는 만큼 추가 가능합니다.
-side-bar.addCountry=국가 추가
-side-bar.addAnotherCountry=다른 국가 추가하기
side-bar.OrcidWorkBest=ORCID는 이메일 주소가 여러 개일 때 가장 잘 작동합니다.
side-bar.termOfUse=이용 약관에 따라
side-bar.youMayOnly=본인이 실제로 관리 중인 이메일 주소만 추가 가능합니다. 이메일 주소를 하나 추가할 때마다 메일을 전송해 인증 절차를 요청할 것입니다.
diff --git a/src/locale/properties/side-bar/side-bar.lr.properties b/src/locale/properties/side-bar/side-bar.lr.properties
index 8f3fcfdb4c..ebfccb2296 100644
--- a/src/locale/properties/side-bar/side-bar.lr.properties
+++ b/src/locale/properties/side-bar/side-bar.lr.properties
@@ -1,7 +1,4 @@
side-bar.countries=LR
-side-bar.myCountries=LR
-side-bar.countriesModalDescription=LR
-side-bar.addAnotherCountry=LR
side-bar.termOfUse=LR
side-bar.orContact=LR
side-bar.resendVerification=LR
@@ -28,10 +25,13 @@ side-bar.personalIdentifiers=LR
side-bar.myOtherIdentifiers=LR
side-bar.personIdentifiersDescription=LR
side-bar.personIdentifiersSupport=LR
-side-bar.addCountry=LR
side-bar.otherEmail=LR
side-bar.noOtherEmails=LR
side-bar.findOutMore=LR
sideBar.onlyVerifiedEmail=LR
sideBar.primaryEmailRequired=LR
side-bar.weHaveSentAEmail=LR
+side-bar.myCountriesAndLocations=LR
+side-bar.addCountryOrLocation=LR
+side-bar.addAnotherCountryOrLocation=LR
+side-bar.countriesOrLocationsDescription=LR
diff --git a/src/locale/properties/side-bar/side-bar.pt.properties b/src/locale/properties/side-bar/side-bar.pt.properties
index 593f407c0c..e93e8c9dc6 100644
--- a/src/locale/properties/side-bar/side-bar.pt.properties
+++ b/src/locale/properties/side-bar/side-bar.pt.properties
@@ -1,8 +1,4 @@
side-bar.countries=Países
-side-bar.myCountries=Meus países
-side-bar.countriesModalDescription=Adicione países ao seu registro ORCID para destacar onde você faz a sua pesquisa ou onde a sua pesquisa está focada. Você pode adicionar quantos países quiser.
-side-bar.addCountry=Adicionar um país
-side-bar.addAnotherCountry=Adicionar outro país
side-bar.OrcidWorkBest=Sua conta ORCID funciona melhor quando tem vários endereços de e-mail associados.
side-bar.termOfUse=Termos de uso da ORCID
side-bar.youMayOnly=você só pode adicionar endereços de e-mail sobre os quais tenha controle. Cada vez que adicionar um endereço de e-mail, enviaremos um e-mail solicitando que o verifique.
diff --git a/src/locale/properties/side-bar/side-bar.rl.properties b/src/locale/properties/side-bar/side-bar.rl.properties
index e850df7229..734d33116a 100644
--- a/src/locale/properties/side-bar/side-bar.rl.properties
+++ b/src/locale/properties/side-bar/side-bar.rl.properties
@@ -1,7 +1,4 @@
side-bar.countries=RL
-side-bar.myCountries=RL
-side-bar.countriesModalDescription=RL
-side-bar.addAnotherCountry=RL
side-bar.termOfUse=RL
side-bar.orContact=RL
side-bar.resendVerification=RL
@@ -28,10 +25,13 @@ side-bar.personalIdentifiers=RL
side-bar.myOtherIdentifiers=RL
side-bar.personIdentifiersDescription=RL
side-bar.personIdentifiersSupport=RL
-side-bar.addCountry=RL
side-bar.otherEmail=RL
side-bar.noOtherEmails=RL
side-bar.findOutMore=RL
sideBar.onlyVerifiedEmail=RL
sideBar.primaryEmailRequired=RL
side-bar.weHaveSentAEmail=RL
+side-bar.myCountriesAndLocations=RL
+side-bar.addCountryOrLocation=RL
+side-bar.addAnotherCountryOrLocation=RL
+side-bar.countriesOrLocationsDescription=RL
diff --git a/src/locale/properties/side-bar/side-bar.ru.properties b/src/locale/properties/side-bar/side-bar.ru.properties
index 5bb930112f..0dec3f69a7 100644
--- a/src/locale/properties/side-bar/side-bar.ru.properties
+++ b/src/locale/properties/side-bar/side-bar.ru.properties
@@ -1,8 +1,4 @@
side-bar.countries=Страны
-side-bar.myCountries=Мои страны
-side-bar.countriesModalDescription=Добавьте страны в свою запись ORCID, чтобы указать, где Вы проводите свое исследование или на чем сосредоточено ваше исследование. Вы можете добавить столько стран, сколько захотите.
-side-bar.addCountry=Добавить страну
-side-bar.addAnotherCountry=Добавить другую страну
side-bar.OrcidWorkBest=ORCID работает лучше всего, когда у Вас несколько адресов электронной почты.
side-bar.termOfUse=условиям использования ORCID
side-bar.youMayOnly=Вы можете добавлять только те адреса электронной почты, которые Вы контролируете. Каждый раз, когда Вы добавляете адрес электронной почты, мы будем отправлять Вам электронное письмо с просьбой подтвердить его.
diff --git a/src/locale/properties/side-bar/side-bar.xx.properties b/src/locale/properties/side-bar/side-bar.xx.properties
index cf62938fd8..129870e61a 100644
--- a/src/locale/properties/side-bar/side-bar.xx.properties
+++ b/src/locale/properties/side-bar/side-bar.xx.properties
@@ -1,7 +1,4 @@
side-bar.countries=X
-side-bar.myCountries=X
-side-bar.countriesModalDescription=X
-side-bar.addAnotherCountry=X
side-bar.termOfUse=X
side-bar.orContact=X
side-bar.resendVerification=X
@@ -29,10 +26,13 @@ side-bar.personalIdentifiers=X
side-bar.myOtherIdentifiers=X
side-bar.personIdentifiersDescription=X
side-bar.personIdentifiersSupport=X
-side-bar.addCountry=X
side-bar.otherEmail=X
side-bar.noOtherEmails=X
side-bar.findOurMore=X
side-bar.findOutMore=X
sideBar.onlyVerifiedEmail=X
sideBar.primaryEmailRequired=X
+side-bar.myCountriesAndLocations=X
+side-bar.addCountryOrLocation=X
+side-bar.addAnotherCountryOrLocation=X
+side-bar.countriesOrLocationsDescription=X
diff --git a/src/locale/properties/side-bar/side-bar.zh_CN.properties b/src/locale/properties/side-bar/side-bar.zh_CN.properties
index 29ba95a5c0..b1d2fe4525 100644
--- a/src/locale/properties/side-bar/side-bar.zh_CN.properties
+++ b/src/locale/properties/side-bar/side-bar.zh_CN.properties
@@ -1,8 +1,4 @@
side-bar.countries=国家/地区
-side-bar.myCountries=我的国家/地区
-side-bar.countriesModalDescription=在 ORCID 记录中添加国家/地区信息,以强调您展开研究的地区,或者您研究的对象地区。添加数量不设限。
-side-bar.addCountry=添加国家信息
-side-bar.addAnotherCountry=添加其他国家信息
side-bar.OrcidWorkBest=若您拥有多个电子邮箱地址, ORCID 将能发挥其最大功效。
side-bar.termOfUse=使用条款
side-bar.youMayOnly=您仅能新增由您使用的电子邮箱地址。我们将在您新增电子邮箱地址时,发送验证邮件,要求您验证该邮箱地址。
diff --git a/src/locale/properties/side-bar/side-bar.zh_TW.properties b/src/locale/properties/side-bar/side-bar.zh_TW.properties
index c5cf7e6c6a..139ab62668 100644
--- a/src/locale/properties/side-bar/side-bar.zh_TW.properties
+++ b/src/locale/properties/side-bar/side-bar.zh_TW.properties
@@ -1,8 +1,4 @@
side-bar.countries=國家
-side-bar.myCountries=我的國家
-side-bar.countriesModalDescription=於您的 ORCID 紀錄新增國家名稱,強調您進行研究的區域,或您的研究對象區域。能新增的數量並無上限。
-side-bar.addCountry=新增國家
-side-bar.addAnotherCountry=新增國家名稱
side-bar.OrcidWorkBest=若您擁有複數個電子郵件地址,ORCID 將能發揮其最大功效。
side-bar.termOfUse=使用條款
side-bar.youMayOnly=您僅能新增由您使用的電子郵件地址。我們將會於您新增電子郵件地址時,寄送驗證郵件請您驗證該電子郵件地址。
diff --git a/src/locale/properties/works/works.ar.properties b/src/locale/properties/works/works.ar.properties
index c5c84367a0..5cd170e807 100644
--- a/src/locale/properties/works/works.ar.properties
+++ b/src/locale/properties/works/works.ar.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=ينطبق المعرف على تمويل العمل.
works.conference=مؤتمر
works.intellectual=ملكية فكرية
works.publication=منشور
-works.countryPublication=بلد النشر
works.whoCanSeeWorks=من يمكنه رؤية أعمالك. إعداد إمكانية الرؤية الافتراضي هو "خاص".
works.selectedWorksVisibility=الأعمال المحددة لضبط إعداد إمكانية رؤيتها
works.setVisibility=تعيين إعداد إمكانية رؤية الأعمال المحددة
diff --git a/src/locale/properties/works/works.cs.properties b/src/locale/properties/works/works.cs.properties
index 8b12eb00a0..a5ed6d3078 100644
--- a/src/locale/properties/works/works.cs.properties
+++ b/src/locale/properties/works/works.cs.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=Identifikátor se vztahuje na financování díla.
works.conference=Konference
works.intellectual=Duševní vlastnictví
works.publication=Publikace
-works.countryPublication=Země publikace
works.whoCanSeeWorks=Kdo může vidět vaše díla. Výchozí nastavení viditelnosti je Soukromé.
works.selectedWorksVisibility=Vybraná díla k nastavení viditelnosti
works.setVisibility=Nastavit viditelnost vybraných děl
diff --git a/src/locale/properties/works/works.en.properties b/src/locale/properties/works/works.en.properties
index 47e607de3c..1f17604c22 100644
--- a/src/locale/properties/works/works.en.properties
+++ b/src/locale/properties/works/works.en.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=The identifier applies to the funding for the work.
works.conference=Conference
works.intellectual=Intellectual property
works.publication=Publication
-works.countryPublication=Country of publication
works.whoCanSeeWorks=Who can see your works. The default visibility setting is Private.
works.selectedWorksVisibility=Selected works to set visibility
works.setVisibility=Set visibility selected works
@@ -176,3 +175,4 @@ works.showCitation=Show citation
works.hideCitation=Hide citation
works.expandedFormatBibtex=Switch to expanded formatting
works.compactFormatBibtex=Switch to compact formatting
+works.countryOrLocationOfPublication=Country/Location of publication
diff --git a/src/locale/properties/works/works.es.properties b/src/locale/properties/works/works.es.properties
index 92d0c13696..d94f4aa46f 100644
--- a/src/locale/properties/works/works.es.properties
+++ b/src/locale/properties/works/works.es.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=El identificador se aplica a la financiación del trab
works.conference=Conferencia
works.intellectual=Propiedad intelectual
works.publication=Publicación
-works.countryPublication=País de publicación
works.whoCanSeeWorks=Quién puede ver sus trabajos. La configuración de visibilidad predeterminada es "Privado".
works.selectedWorksVisibility=Trabajos seleccionadas para establecer visibilidad
works.setVisibility=Establecer visibilidad en los trabajos seleccionadas
diff --git a/src/locale/properties/works/works.fr.properties b/src/locale/properties/works/works.fr.properties
index 34a86f8850..c847039957 100644
--- a/src/locale/properties/works/works.fr.properties
+++ b/src/locale/properties/works/works.fr.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=L'identifiant s'applique au financement du travail.
works.conference=Conférence
works.intellectual=Propriété intellectuelle
works.publication=Publication
-works.countryPublication=Pays de publication
works.whoCanSeeWorks=Qui peut voir vos travaux. La visibilité est réglée par défaut sur Privé.
works.selectedWorksVisibility=Travaux sélectionnés pour définir la visibilité
works.setVisibility=Définir la visibilité des travaux sélectionnées
diff --git a/src/locale/properties/works/works.it.properties b/src/locale/properties/works/works.it.properties
index 8169d65262..aa4a8ee20b 100644
--- a/src/locale/properties/works/works.it.properties
+++ b/src/locale/properties/works/works.it.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=L'identificatore è valido per il finanziamento del la
works.conference=Conferenza
works.intellectual=Proprietà intellettuale
works.publication=Pubblicazione
-works.countryPublication=Paese di pubblicazione
works.whoCanSeeWorks=Chi può vedere i tuoi lavori. L'impostazione di visibilità predefinita è Privata.
works.selectedWorksVisibility=Lavori selezionati per impostare la visibilità
works.setVisibility=Imposta la visibilità dei lavori selezionati
diff --git a/src/locale/properties/works/works.ja.properties b/src/locale/properties/works/works.ja.properties
index 7e5566c01d..a19074dd87 100644
--- a/src/locale/properties/works/works.ja.properties
+++ b/src/locale/properties/works/works.ja.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=識別子は、作品の資金調達に適用されま
works.conference=学会
works.intellectual=知的財産
works.publication=出版
-works.countryPublication=出版国
works.whoCanSeeWorks=誰があなたの作品を見ることができるか。デフォルトの表示設定は「非公開」です。
works.selectedWorksVisibility=表示設定するために選択された作品
works.setVisibility=選択された作品の表示設定
diff --git a/src/locale/properties/works/works.ko.properties b/src/locale/properties/works/works.ko.properties
index 94e12c9992..366ad1757d 100644
--- a/src/locale/properties/works/works.ko.properties
+++ b/src/locale/properties/works/works.ko.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=이 식별자는 작업에 대한 펀딩에 적용됩
works.conference=컨퍼런스
works.intellectual=지적소유권
works.publication=출판물
-works.countryPublication=발행국
works.whoCanSeeWorks=당신의 작업은 누가 볼 수 있나요? 공개 범위 설정의 기본값은 '나만 보기'입니다.
works.selectedWorksVisibility=작업을 선택하고 공개 범위 설정
works.setVisibility=선택된 작업에 대한 공개 범위 선택
diff --git a/src/locale/properties/works/works.lr.properties b/src/locale/properties/works/works.lr.properties
index 4483cdb737..37739bc68e 100644
--- a/src/locale/properties/works/works.lr.properties
+++ b/src/locale/properties/works/works.lr.properties
@@ -85,7 +85,6 @@ works.selfDescription=LR
works.partOfDescription=LR
works.versionOfDescription=LR
works.fundedByDescription=LR
-works.countryPublication=LR
works.whoCanSeeWorks=LR
works.selectedWorksVisibility=LR
works.setVisibility=LR
@@ -179,3 +178,4 @@ works.hideCitation=LR
works.expandedFormatBibtex=LR
works.compactFormatBibtex=LR
works.reviewPublication=LR
+works.countryOrLocationOfPublication=LR
diff --git a/src/locale/properties/works/works.pt.properties b/src/locale/properties/works/works.pt.properties
index 40e269574e..edf7bb695b 100644
--- a/src/locale/properties/works/works.pt.properties
+++ b/src/locale/properties/works/works.pt.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=O identificador aplica-se ao financiamento para a obra
works.conference=Conferência
works.intellectual=Propriedade intelectual
works.publication=Publicação
-works.countryPublication=País de publicação
works.whoCanSeeWorks=Quem pode ver as suas obras. A configuração de visibilidade padrão é Privada.
works.selectedWorksVisibility=Obras selecionadas para definir a visibilidade
works.setVisibility=Defina a visibilidade das obras selecionadas
diff --git a/src/locale/properties/works/works.rl.properties b/src/locale/properties/works/works.rl.properties
index 892e782887..c06ec39c7a 100644
--- a/src/locale/properties/works/works.rl.properties
+++ b/src/locale/properties/works/works.rl.properties
@@ -85,7 +85,6 @@ works.selfDescription=RL
works.partOfDescription=RL
works.versionOfDescription=RL
works.fundedByDescription=RL
-works.countryPublication=RL
works.addFromDOI=RL
works.youCanUseFullDOI=RL
works.doiIdentifier=RL
@@ -179,3 +178,4 @@ works.hideCitation=RL
works.expandedFormatBibtex=RL
works.compactFormatBibtex=RL
works.reviewPublication=RL
+works.countryOrLocationOfPublication=RL
diff --git a/src/locale/properties/works/works.ru.properties b/src/locale/properties/works/works.ru.properties
index 5c9cde6487..9ded7aee3d 100644
--- a/src/locale/properties/works/works.ru.properties
+++ b/src/locale/properties/works/works.ru.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=Идентификатор относится к фи
works.conference=Конференция
works.intellectual=Интеллектуальная собственность
works.publication=Публикация
-works.countryPublication=Страна публикации
works.whoCanSeeWorks=Кто может видеть Ваши работы. По умолчанию видимость приватная.
works.selectedWorksVisibility=Выбранные работы для установления видимости
works.setVisibility=Установить видимость выбранных работ
diff --git a/src/locale/properties/works/works.xx.properties b/src/locale/properties/works/works.xx.properties
index 79f1de81fa..f444f79d9e 100644
--- a/src/locale/properties/works/works.xx.properties
+++ b/src/locale/properties/works/works.xx.properties
@@ -85,7 +85,6 @@ works.selfDescription=X
works.partOfDescription=X
works.versionOfDescription=X
works.fundedByDescription=X
-works.countryPublication=X
works.whoCanSeeWorks=X
works.selectedWorksVisibility=X
works.setVisibility=X
@@ -179,3 +178,4 @@ works.hideCitation=X
works.expandedFormatBibtex=X
works.compactFormatBibtex=X
works.reviewPublication=X
+works.countryOrLocationOfPublication=X
diff --git a/src/locale/properties/works/works.zh_CN.properties b/src/locale/properties/works/works.zh_CN.properties
index 9f02cad3fb..a83ea5e182 100644
--- a/src/locale/properties/works/works.zh_CN.properties
+++ b/src/locale/properties/works/works.zh_CN.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=该识别码适用于该成果的基金。
works.conference=会议
works.intellectual=知识产权
works.publication=出版物
-works.countryPublication=出版物所属国家/地区
works.whoCanSeeWorks=谁可以看见您的成果。默认仅自己可见。
works.selectedWorksVisibility=设置已选成果的可见性
works.setVisibility=设置已选择成果的可见性
diff --git a/src/locale/properties/works/works.zh_TW.properties b/src/locale/properties/works/works.zh_TW.properties
index 301a891096..c1cf5ab7b1 100644
--- a/src/locale/properties/works/works.zh_TW.properties
+++ b/src/locale/properties/works/works.zh_TW.properties
@@ -87,7 +87,6 @@ works.fundedByDescription=此識別碼適用於該工作的補助。
works.conference=會議
works.intellectual=智慧財產
works.publication=出版物
-works.countryPublication=出版物所屬國家/地區
works.whoCanSeeWorks=誰可以看到您的工作。預設可見性為私人。
works.selectedWorksVisibility=欲設定可見性的已選擇工作
works.setVisibility=設定已選擇工作的可見性