Skip to content

Commit

Permalink
feat(app): adapt wording
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo committed Feb 14, 2024
1 parent d1f062b commit 3c6f22e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/lib/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,9 @@
"gene_page_genotype_tooltip": "The genotype is the variant you carry for this DNA segment.",
"gene_page_phenotype": "Phenotype",
"gene_page_phenotype_tooltip": "The phenotype is the observable impact that your genotype has for this protein. It often describes the gene's activity level or whether a specific variant is present.",
"gene_page_affected_drugs": "Affected drugs",
"gene_page_affected_drugs_tooltip": "The drugs listed here are influenced by your phenotype for this DNA segment.",
"gene_page_no_affected_drugs": "This gene has no known effect on any drug.",
"gene_page_relevant_drugs": "Relevant drugs",
"gene_page_relevant_drugs_tooltip": "The drugs listed here are influenced by your phenotype for this DNA segment.",
"gene_page_no_relevant_drugs": "This gene has no known effect on any drug.",
"gene_page_inhibitor_drugs": "Your results for this gene can be influenced if you are currently taking any of the following drugs:",
"gene_page_further_inhibitor_drugs": "Your results for this gene can also be influenced by taking any of the following drugs:",
"gene_page_activity_score": "Activity score",
Expand Down
6 changes: 3 additions & 3 deletions app/lib/report/pages/gene.dart
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ class GenePage extends HookWidget {
],
)),
SizedBox(height: PharMeTheme.smallToMediumSpace),
SubHeader(context.l10n.gene_page_affected_drugs,
tooltip: context.l10n.gene_page_affected_drugs_tooltip),
SubHeader(context.l10n.gene_page_relevant_drugs,
tooltip: context.l10n.gene_page_relevant_drugs_tooltip),
SizedBox(height: PharMeTheme.smallSpace),
...buildDrugList(context, state, activeDrugs,
noDrugsMessage: context.l10n.gene_page_no_affected_drugs)
noDrugsMessage: context.l10n.gene_page_no_relevant_drugs)
],
),
),
Expand Down

0 comments on commit 3c6f22e

Please sign in to comment.