Skip to content

Commit 073ede1

Browse files
committed
Fix malformed input error
1 parent e79af03 commit 073ede1

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/build-deploy-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Build, Deploy, and Release
33
on:
44
push:
55
branches: [release]
6+
pull_request:
7+
branches: [release]
68
workflow_dispatch:
79
inputs:
810
release_version:
@@ -15,7 +17,7 @@ on:
1517
jobs:
1618
build:
1719
name: Build and Test
18-
if: github.event_name == 'push'
20+
if: github.event_name == 'push' || github.event_name == 'pull_request'
1921
uses: wikumChamith/openmrs-contrib-gha-workflows/.github/workflows/build-backend-module.yml@release
2022
with:
2123
java_versions: '[8]'

api/src/main/resources/messages_es.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -328,12 +328,12 @@ deleteSelected=Borrar lo Seleccionado
328328
@MODULE_ID@.expectedPatientIDType=Se esperaba un tipo de identificador de paciente
329329
@MODULE_ID@.expectedFamilyName=Se esperaba el apellido de un paciente
330330
@MODULE_ID@.expectedGender=Se esperaba el genero de un paciente
331-
@MODULE_ID@.moreThanOneID=Más de un paciente tiene el identificador
331+
@MODULE_ID@.moreThanOneID=Más de un paciente tiene el identificador
332332
@MODULE_ID@.expectedBirthdate=Se esperaba una fecha de nacimiento
333333
@MODULE_ID@.expectedIdentifier=Se esperaba un tipo de de identificador de paciente existente
334-
@MODULE_ID@.formShouldHaveID=El formulario deberia tener tener la selección de tipo de identificador para el identificador:
334+
@MODULE_ID@.formShouldHaveID=El formulario deberia tener tener la selección de tipo de identificador para el identificador:
335335
@MODULE_ID@.selectIdentifierType=Seleccione un tipo para el identificador:
336-
@MODULE_ID@.shouldHaveLocationType=El formulario debería tener un tipo de ubicación seleccionada para el identificador:
337-
@MODULE_ID@.selectLocationType=Seleccione un tipo de ubicación para el identificador:
336+
@MODULE_ID@.shouldHaveLocationType=El formulario debería tener un tipo de ubicación seleccionada para el identificador:
337+
@MODULE_ID@.selectLocationType=Seleccione un tipo de ubicación para el identificador:
338338
@MODULE_ID@.patientHasIdentifier=El paciente ya tiene un identificador para el tipo:
339339
@MODULE_ID@.triedCreatePatientAlreadyExists=Se trato de crear un paciente que ya existe con el identificador:

0 commit comments

Comments
 (0)