Skip to content

Commit

Permalink
Merge pull request #321 from prolificinteractive/ec/month_formatter
Browse files Browse the repository at this point in the history
Change DateFormatTitleFormatter for other languages
  • Loading branch information
ekchang committed May 26, 2016
2 parents 1f5953d + b456670 commit a02418a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ public class DateFormatTitleFormatter implements TitleFormatter {
private final DateFormat dateFormat;

/**
* Format using "MMMM yyyy" for formatting
* Format using "LLLL yyyy" for formatting
*/
public DateFormatTitleFormatter() {
this.dateFormat = new SimpleDateFormat(
"MMMM yyyy", Locale.getDefault()
"LLLL yyyy", Locale.getDefault()
);
}

Expand Down

0 comments on commit a02418a

Please sign in to comment.