@@ -215,7 +215,7 @@ recurrence.Rule.prototype = {
215215 parts . push (
216216 interpolate (
217217 recurrence . display . tokens . until ,
218- { 'date' : recurrence . date . format ( this . until , pgettext ( 'Until date format' , '%Y-%m-%d' ) ) } , true ) ) ;
218+ { 'date' : recurrence . date . format ( this . until , gettext ( 'Until date format' , '%Y-%m-%d' ) ) } , true ) ) ;
219219 }
220220
221221 return parts . join ( ', ' ) ;
@@ -1035,13 +1035,13 @@ recurrence.display.weekdays_short = [
10351035 gettext ( 'Fri' ) , gettext ( 'Sat' ) , gettext ( 'Sun' )
10361036] ;
10371037recurrence . display . weekdays_oneletter = [
1038- pgettext ( 'Monday first letter' , 'M' ) ,
1039- pgettext ( 'Tuesday first letter' , 'T' ) ,
1040- pgettext ( 'Wednesday first letter' , 'W' ) ,
1041- pgettext ( 'Thursday first letter' , 'T' ) ,
1042- pgettext ( 'Friday first letter' , 'F' ) ,
1043- pgettext ( 'Saturday first letter' , 'S' ) ,
1044- pgettext ( 'Sunday first letter' , 'S' )
1038+ gettext ( 'Monday first letter' , 'M' ) ,
1039+ gettext ( 'Tuesday first letter' , 'T' ) ,
1040+ gettext ( 'Wednesday first letter' , 'W' ) ,
1041+ gettext ( 'Thursday first letter' , 'T' ) ,
1042+ gettext ( 'Friday first letter' , 'F' ) ,
1043+ gettext ( 'Saturday first letter' , 'S' ) ,
1044+ gettext ( 'Sunday first letter' , 'S' )
10451045] ;
10461046recurrence . display . weekdays_position = {
10471047 '1' : gettext ( 'first %(weekday)s' ) ,
@@ -1075,27 +1075,27 @@ recurrence.display.last_of_month_short = {
10751075}
10761076recurrence . display . months = [
10771077 gettext ( 'January' ) , gettext ( 'February' ) , gettext ( 'March' ) ,
1078- gettext ( 'April' ) , pgettext ( 'month name' , 'May' ) , gettext ( 'June' ) ,
1078+ gettext ( 'April' ) , gettext ( 'month name' , 'May' ) , gettext ( 'June' ) ,
10791079 gettext ( 'July' ) , gettext ( 'August' ) , gettext ( 'September' ) ,
10801080 gettext ( 'October' ) , gettext ( 'November' ) , gettext ( 'December' )
10811081] ;
10821082recurrence . display . months_short = [
10831083 gettext ( 'Jan' ) , gettext ( 'Feb' ) , gettext ( 'Mar' ) ,
1084- gettext ( 'Apr' ) , pgettext ( 'month name' , 'May' ) , gettext ( 'Jun' ) ,
1084+ gettext ( 'Apr' ) , gettext ( 'month name' , 'May' ) , gettext ( 'Jun' ) ,
10851085 gettext ( 'Jul' ) , gettext ( 'Aug' ) , gettext ( 'Sep' ) ,
10861086 gettext ( 'Oct' ) , gettext ( 'Nov' ) , gettext ( 'Dec' )
10871087] ;
10881088recurrence . display . months_ap = [
10891089 gettext ( 'Jan.' ) , gettext ( 'Feb.' ) , gettext ( 'March' ) ,
1090- gettext ( 'April' ) , pgettext ( 'month name' , 'May' ) , gettext ( 'June' ) ,
1090+ gettext ( 'April' ) , gettext ( 'month name' , 'May' ) , gettext ( 'June' ) ,
10911091 gettext ( 'July' ) , gettext ( 'Aug.' ) , gettext ( 'Sept.' ) ,
10921092 gettext ( 'Oct.' ) , gettext ( 'Nov.' ) , gettext ( 'Dec.' )
10931093] ;
10941094recurrence . display . ampm = {
10951095 'am' : gettext ( 'a.m.' ) , 'pm' : gettext ( 'p.m.' ) ,
10961096 'AM' : gettext ( 'AM' ) , 'PM' : gettext ( 'PM' )
10971097} ;
1098- recurrence . display . month_day = pgettext ( 'Day of month' , '%j%S' ) ;
1098+ recurrence . display . month_day = gettext ( 'Day of month' , '%j%S' ) ;
10991099
11001100recurrence . display . ordinal_indicator = {
11011101 'en' : function ( day ) {
0 commit comments