forked from Hexlet/hexlet-sicp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Hexlet#1611 from canekg/activityChart
[Hexlet#1610] Activity chart improved
- Loading branch information
Showing
4 changed files
with
137 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
return [ | ||
'month' => [ | ||
'january' => 'Jan', | ||
'february' => 'Feb', | ||
'march' => 'Mar', | ||
'april' => 'Apr', | ||
'may' => 'May', | ||
'june' => 'Jun', | ||
'july' => 'Jul', | ||
'august' => 'Aug', | ||
'september' => 'Sep', | ||
'october' => 'Oct', | ||
'november' => 'Nov', | ||
'december' => 'Dec', | ||
], | ||
'days' => [ | ||
'monday' => 'Mon', | ||
'tuesday' => 'Tue', | ||
'wednesday' => 'Wed', | ||
'thursday' => 'Thu', | ||
'friday' => 'Fri', | ||
'saturday' => 'Sat', | ||
'sunday' => 'Sun', | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
return [ | ||
'month' => [ | ||
'january' => 'Янв', | ||
'february' => 'Февр', | ||
'march' => 'Март', | ||
'april' => 'Апр', | ||
'may' => 'Май', | ||
'june' => 'Июнь', | ||
'july' => 'Июль', | ||
'august' => 'Авг', | ||
'september' => 'Сент', | ||
'october' => 'Окт', | ||
'november' => 'Нояб', | ||
'december' => 'Дек', | ||
], | ||
'days' => [ | ||
'monday' => 'Пн', | ||
'tuesday' => 'Вт', | ||
'wednesday' => 'Ср', | ||
'thursday' => 'Чт', | ||
'friday' => 'Пт', | ||
'saturday' => 'Сб', | ||
'sunday' => 'Вс', | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters