From: Matthew Wire Date: Tue, 24 Oct 2017 20:58:52 +0000 (+0100) Subject: Translateable strings (#11191) X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=0027597288ef1568c83006b8c8c951544f649e49;p=civicrm-core.git Translateable strings (#11191) --- diff --git a/CRM/Event/Cart/BAO/EventInCart.php b/CRM/Event/Cart/BAO/EventInCart.php index 457b12dcac..05872c0395 100644 --- a/CRM/Event/Cart/BAO/EventInCart.php +++ b/CRM/Event/Cart/BAO/EventInCart.php @@ -291,14 +291,14 @@ class CRM_Event_Cart_BAO_EventInCart extends CRM_Event_Cart_DAO_EventInCart impl if ($event_in_cart) { return array( - 'label' => "Remove from Cart", + 'label' => ts("Remove from Cart"), 'path' => 'civicrm/event/remove_from_cart', 'query' => "reset=1&id={$event_id}", ); } else { return array( - 'label' => "Add to Cart", + 'label' => ts("Add to Cart"), 'path' => 'civicrm/event/add_to_cart', 'query' => "reset=1&id={$event_id}", );