This function returns a text with the name of the month for a given date-time, in a certain time zone, and in a certain language.


monthToString(timestamp, timeZone, language) #Output: Text



Parser ExpressionDescription


monthToString({issue.created}, LOCAL, USER_LANG)


This example returns the month of the issue creation date as text.

Given an issue that was created on March 25th, 2020 23:15:30 and the user's Jira language being set to English, the returned value is March.




Parameters used in this function

ParameterInput (data type)Description
timestamp

The parameter must be valid timestamp. Usually this value is retrieved from a field (e.g. due date, created date).
timeZone

The time zone used for the conversion. 

language

The language used for the conversion. 



This function returns a



Use cases and examples




Status
Tech review

Style guide



Parser function cloud
Map(question)
Notes

Workaround

%{getMatchingValue(month({issue.created}, RUN_AS_LOCAL), [1,2,3,4,5,6,7,8,9,10,11,12],
["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"])}







Short description

Returns the name of the month for a given timestamp.

Output

Label