Commit c1d93721 authored by Phil Hughes's avatar Phil Hughes

Merge branch 'patch-58' into 'master'

Externalize strings in activity calendar

See merge request gitlab-org/gitlab-ce!27685
parents 5f8383fd 532040f4
...@@ -65,18 +65,18 @@ export default class ActivityCalendar { ...@@ -65,18 +65,18 @@ export default class ActivityCalendar {
this.daySize = 15; this.daySize = 15;
this.daySizeWithSpace = this.daySize + this.daySpace * 2; this.daySizeWithSpace = this.daySize + this.daySpace * 2;
this.monthNames = [ this.monthNames = [
'Jan', __('Jan'),
'Feb', __('Feb'),
'Mar', __('Mar'),
'Apr', __('Apr'),
'May', __('May'),
'Jun', __('Jun'),
'Jul', __('Jul'),
'Aug', __('Aug'),
'Sep', __('Sep'),
'Oct', __('Oct'),
'Nov', __('Nov'),
'Dec', __('Dec'),
]; ];
this.months = []; this.months = [];
this.firstDayOfWeek = firstDayOfWeek; this.firstDayOfWeek = firstDayOfWeek;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment