From 3709190a5231695e4c000e223b0b633c0fc51834 Mon Sep 17 00:00:00 2001 From: Brian Shaughnessy Date: Mon, 31 Aug 2015 22:14:06 -0400 Subject: [PATCH] CRM-17122: fix button label text in merge interface --- CRM/Contact/Form/Merge.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Contact/Form/Merge.php b/CRM/Contact/Form/Merge.php index 4c7cf41c46..dad41bc467 100644 --- a/CRM/Contact/Form/Merge.php +++ b/CRM/Contact/Form/Merge.php @@ -269,7 +269,7 @@ class CRM_Contact_Form_Merge extends CRM_Core_Form { $buttons[] = array( 'type' => 'next', - 'name' => $this->next ? ts('Merge and Goto Next Pair') : ts('Merge'), + 'name' => $this->next ? ts('Merge and go to Next Pair') : ts('Merge'), 'isDefault' => TRUE, 'icon' => $this->next ? 'circle-triangle-e' : 'check', ); @@ -277,7 +277,7 @@ class CRM_Contact_Form_Merge extends CRM_Core_Form { if ($this->next || $this->prev) { $buttons[] = array( 'type' => 'submit', - 'name' => ts('Merge and Goto Listing'), + 'name' => ts('Merge and go to Listing'), ); $buttons[] = array( 'type' => 'done', -- 2.25.1