From 9821de7dca7759776137007bd0cb72bfa475eb04 Mon Sep 17 00:00:00 2001 From: JKingsnorth Date: Fri, 23 May 2014 09:27:59 +0100 Subject: [PATCH] CRM-14696 - Fix translate string --- CRM/Price/BAO/PriceField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Price/BAO/PriceField.php b/CRM/Price/BAO/PriceField.php index 0c6a037f57..324692c4e1 100644 --- a/CRM/Price/BAO/PriceField.php +++ b/CRM/Price/BAO/PriceField.php @@ -441,7 +441,7 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField { } // CRM-14696 - Improve display for sold out price set options else { - $opt['label'] = 'Sold out - ' . $opt['label']; + $opt['label'] = ts('Sold out') . ' - ' . $opt['label']; } $selectOption[$opt['id']] = $opt['label']; -- 2.25.1