LibreOffice 25.2 帮助
MonthName 函数返回指定月份数字的本地化的月份名称。
        MonthName(Month as Integer [,Abbreviate as Boolean])
    String
「Month」: 值从 1 到 12,代表一月到十二月,将返回其本地化的月份名称。
「Abbreviate」: 可选。布尔值,表示月份名称是否应该缩写。
        REM  *****  BASIC  *****
        Option VBASupport 1
        Sub Example_MonthName
         Dim mBirthday as Integer
         mBirthday = 1
         print mBirthday &" "& MonthName(mBirthday,False)
        End Sub