CRM/Contribute/Form/Contribution/Main.php: Fix ts() usage for PCP string.
authorMathieu Lutfy <mathieu@bidon.ca>
Tue, 11 Feb 2014 18:59:12 +0000 (13:59 -0500)
committerMathieu Lutfy <mathieu@bidon.ca>
Tue, 11 Feb 2014 18:59:12 +0000 (13:59 -0500)
CRM/Contribute/Form/Contribution/Main.php

index 9027acf6796d40f3648dc6510b4d1b91411aece6..c6a13d20749c4db538338be617646ca294a1118a 100644 (file)
@@ -514,11 +514,11 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
     }
     if ($this->_pcpId) {
       if ($pcpSupporter = CRM_PCP_BAO_PCP::displayName($this->_pcpId)) {
-        $pcp_supporter_text = ts('This contribution is being made thanks to effort of <strong>%1</strong>, who supports our campaign. ', array(1 => $pcpSupporter));
+        $pcp_supporter_text = ts('This contribution is being made thanks to the effort of <strong>%1</strong>, who supports our campaign.', array(1 => $pcpSupporter));
         // Only tell people that can also create a PCP if the contribution page has a non-empty value in the "Create Personal Campaign Page link" field.
         $text = CRM_PCP_BAO_PCP::getPcpBlockStatus($this->_id, 'contribute');
         if(!empty($text)) {
-          $pcp_supporter_text .= "You can support it as well - once you complete the donation, you will be able to create your own Personal Campaign Page!";
+          $pcp_supporter_text .= ts("You can support it as well - once you complete the donation, you will be able to create your own Personal Campaign Page!");
         }
         $this->assign('pcpSupporterText', $pcp_supporter_text);
       }