This parameter does not work with SOQL queries; use toLabel() on the picklist field instead.
Example of SOQL query:
SELECT Payment_Frequency__c, Quantity, UnitPrice
FROM OpportunityLineItem
WHERE OpportunityId = '{pv0}' ORDER BY UnitPrice DESC
CODE
Example of the query using toLabel():
SELECT toLable(Payment_Frequency__c), Quantity, UnitPrice
FROM OpportunityLineItem
WHERE OpportunityId = '{pv0}' ORDER BY UnitPrice DESC
CODE