summaryrefslogtreecommitdiff
path: root/app/Module/FamilyNavigatorModule.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Module/FamilyNavigatorModule.php')
-rw-r--r--app/Module/FamilyNavigatorModule.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Module/FamilyNavigatorModule.php b/app/Module/FamilyNavigatorModule.php
index ffd751f7fc..697c688531 100644
--- a/app/Module/FamilyNavigatorModule.php
+++ b/app/Module/FamilyNavigatorModule.php
@@ -207,13 +207,13 @@ class FamilyNavigatorModule extends Module implements ModuleSidebarInterface {
}
if ($stepParents) {
$relationship = $father instanceof Individual ?
- I18N::translate_c("father’s wife", "step-mother") : I18N::translate_c("mother’s husband", "step-father");
+ I18N::translateContext("father’s wife", "step-mother") : I18N::translateContext("mother’s husband", "step-father");
$html .= sprintf(self::TTL, $relationship) . $stepParents;
}
}
}
if (!($father instanceof Individual || $mother instanceof Individual)) {
- $html .= sprintf(self::MSG, I18N::translate_c('unknown family', 'unknown'));
+ $html .= sprintf(self::MSG, I18N::translateContext('unknown family', 'unknown'));
}
return $html;
}