- Added new automation-related routes and controllers for managing automations. - Introduced automation nodes in the UI with distinct styles and interactions. - Updated sidebar to include navigation for automations. - Enhanced post creation logic to support automation metadata. - Refactored content type and platform enums into types for better type safety. - Added localization for automation-related terms in English, Spanish, and Portuguese. - Improved error handling in various components to accommodate new features.
57 lines
1.4 KiB
PHP
57 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'back' => 'Back',
|
|
|
|
'confirm_modal' => [
|
|
'cannot_be_undone' => 'This cannot be undone.',
|
|
'type' => 'Type',
|
|
'to_confirm' => 'to confirm.',
|
|
'copy_to_clipboard' => 'Copy to clipboard',
|
|
'delete_keyword' => 'delete',
|
|
],
|
|
|
|
'photo_upload' => [
|
|
'upload' => 'Upload',
|
|
'uploading' => 'Uploading...',
|
|
'remove' => 'Remove photo',
|
|
'hint' => 'Recommended: square image, max 2 MB.',
|
|
],
|
|
|
|
'timezone' => [
|
|
'select' => 'Select timezone',
|
|
'search' => 'Search timezone...',
|
|
'empty' => 'No timezone found',
|
|
],
|
|
|
|
'date_picker' => [
|
|
'select' => 'Select date',
|
|
],
|
|
|
|
'date_range_picker' => [
|
|
'placeholder' => 'Pick a date range',
|
|
'today' => 'Today',
|
|
'yesterday' => 'Yesterday',
|
|
'last_7_days' => 'Last 7 days',
|
|
'last_30_days' => 'Last 30 days',
|
|
'last_3_months' => 'Last 3 months',
|
|
'last_6_months' => 'Last 6 months',
|
|
'last_12_months' => 'Last 12 months',
|
|
'this_month' => 'This month',
|
|
'last_month' => 'Last month',
|
|
'year_to_date' => 'Year to date',
|
|
'last_year' => 'Last year',
|
|
],
|
|
|
|
'cancel' => 'Cancel',
|
|
'clear' => 'Clear',
|
|
'close' => 'Close',
|
|
'loading_more' => 'Loading more...',
|
|
|
|
'actions' => [
|
|
'copy' => 'Copy',
|
|
'copied' => 'Copied',
|
|
],
|
|
];
|