Skip to content

Commit

Permalink
Done for english german italian spanish and dutch what is mentioned in
Browse files Browse the repository at this point in the history
…#60, dutch should be checked
  • Loading branch information
leokim-l committed Aug 29, 2024
1 parent 951adea commit e495f5a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public String probandWasAMale() {

@Override
public String probandWasAnIndividual() {
return "De proband was een persoon";
return "De proband was een persoon van onbepaald geslacht en leeftijd";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public String probandWasAMale() {

@Override
public String probandWasAnIndividual() {
return "The proband was an individual";
return "The proband was an individual of unspecified sex and age";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public String getIndividualDescription(PpktIndividual individual) {


private String iso8601onsetDescription(Iso8601Age isoAge) {
return String.format("Disease onset occurred when the proband was %s",
return String.format("Disease onset occurred when the proband was a %s",
buildBlocks.yearsMonthsDaysOld(isoAge.getYears(), isoAge.getMonths(), isoAge.getDays()));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public String probandWasAFemale() {

@Override
public String probandWasAnIndividual() {
return "Der Proband war ein Individuum ohne angegebenes Geschlecht";
return "Der Proband war ein Individuum ohne angegebenes Geschlecht und Alter";
}

@Override
Expand Down

1 comment on commit e495f5a

@leokim-l
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Languages that use BuildingBlocks such as German or English should edit probandWasAnIndividual() therein, the others should edit

default -> individualDescription = "Il paziente era di sesso e di età non specificati";

Please sign in to comment.