- Add day view support in PostController with day parameter - Implement day view UI with posts list, time display, and navigation - Force day view on mobile devices (< 1024px) - Add day/week/month view selector with all three options - Use date.formatTime() from @/date.ts for consistent time formatting - Clean up unused translations (add_post, no_posts_day) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
230 B
PHP
12 lines
230 B
PHP
<?php
|
|
|
|
return [
|
|
'title' => 'Calendar',
|
|
'today' => 'Today',
|
|
'day' => 'Day',
|
|
'week' => 'Week',
|
|
'month' => 'Month',
|
|
'new_post' => 'New Post',
|
|
'no_content' => 'No content',
|
|
'more' => '+:count more',
|
|
];
|