From bbb98b086a3ec893a0592ffb5db9dc60bd9a8938 Mon Sep 17 00:00:00 2001 From: Mathieu Lutfy Date: Mon, 16 Mar 2015 15:19:16 -0400 Subject: [PATCH] CRM-16119: Fix Contact custom data multiple save/more buttons translation. --- CRM/Contact/Form/CustomData.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Contact/Form/CustomData.php b/CRM/Contact/Form/CustomData.php index 80e8abfcee..d42b7f0e84 100644 --- a/CRM/Contact/Form/CustomData.php +++ b/CRM/Contact/Form/CustomData.php @@ -185,11 +185,11 @@ class CRM_Contact_Form_CustomData extends CRM_Core_Form { ); if ($isMultiple) { $this->assign('multiRecordDisplay', $this->_multiRecordDisplay); - $saveButtonName = $this->_copyValueId ? 'Save a Copy' : 'Save'; + $saveButtonName = $this->_copyValueId ? ts('Save a Copy') : ts('Save'); $this->addButtons(array( array( 'type' => 'upload', - 'name' => ts('%1', array(1 => $saveButtonName)), + 'name' => $saveButtonName, 'isDefault' => TRUE, ), array( -- 2.25.1