From: JKingsnorth Date: Fri, 23 May 2014 08:27:59 +0000 (+0100) Subject: CRM-14696 - Fix translate string X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=9821de7dca7759776137007bd0cb72bfa475eb04;p=civicrm-core.git CRM-14696 - Fix translate string --- 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'];