onaio / fhir-tooling

A command line utility to support FHIR Core content authoring
Other
2 stars 1 forks source link

Multi Language Support - Merge #72

Closed lincmba closed 11 months ago

lincmba commented 11 months ago

Merge translated properties back to fhir_content resources (questionnaires) in the proper format.

Fixes https://github.com/onaio/fhir-tooling/issues/70

Engineer Checklist

ndegwamartin commented 11 months ago

For this IF statement here, I think we can turn it into an if else since it is a mutually exclusive condition with the previous one i.e.

        if (fieldValue.isTextual()) {
           ...
        } else if (fieldValue.isObject() || fieldValue.isArray()) {

        } else {