From 3c6f22edb606c4739b8111ef41294cf7787ae700 Mon Sep 17 00:00:00 2001 From: Tamara Slosarek Date: Wed, 14 Feb 2024 14:06:00 +0100 Subject: [PATCH] feat(app): adapt wording --- app/lib/l10n/app_en.arb | 6 +++--- app/lib/report/pages/gene.dart | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/lib/l10n/app_en.arb b/app/lib/l10n/app_en.arb index 4a92d88d..eab7779f 100644 --- a/app/lib/l10n/app_en.arb +++ b/app/lib/l10n/app_en.arb @@ -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", diff --git a/app/lib/report/pages/gene.dart b/app/lib/report/pages/gene.dart index defc5abd..132baf85 100644 --- a/app/lib/report/pages/gene.dart +++ b/app/lib/report/pages/gene.dart @@ -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) ], ), ),