From e8b5ee409353137f5c856d143ff012d1107decc2 Mon Sep 17 00:00:00 2001 From: francescbassas Date: Wed, 10 Mar 2021 00:51:14 +0100 Subject: [PATCH] Enable translation for Contribution Ordinality options on Contribution Detail Report --- CRM/Report/Form/Contribute/Detail.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Report/Form/Contribute/Detail.php b/CRM/Report/Form/Contribute/Detail.php index 4576423e1121..54afe0f96f3f 100644 --- a/CRM/Report/Form/Contribute/Detail.php +++ b/CRM/Report/Form/Contribute/Detail.php @@ -321,8 +321,8 @@ public function __construct() { 'title' => ts('Contribution Ordinality'), 'operatorType' => CRM_Report_Form::OP_MULTISELECT, 'options' => [ - 0 => 'First by Contributor', - 1 => 'Second or Later by Contributor', + 0 => ts('First by Contributor'), + 1 => ts('Second or Later by Contributor'), ], 'type' => CRM_Utils_Type::T_INT, ],