Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#1343 | Reference translation additions
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Sep 5, 2022
1 parent 3414152 commit 2dbbebe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/collections/translators.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ def translate(self): # pylint: disable=too-many-branches
english += 'latest version of '
english += f'{entity} "{self.reference.code}" from '
else:
english += f'{entity}s from '
english += f'{entity}s '
if self.reference.system or self.reference.valueset:
english += 'from '
if self.reference.system:
if self.reference.version:
english += f'version "{self.reference.version}" of '
Expand Down

0 comments on commit 2dbbebe

Please sign in to comment.