trypost/lang/en/common.php
Paulo Castellano 9a692b4608 Enhance automation functionality: Introduce workflow variables and improve node validation
- Added support for workflow variables in automations, allowing users to define reusable values.
- Implemented validation for Generate nodes to ensure intended image counts align with selected accounts.
- Updated automation models and requests to handle new variables, including encryption for sensitive data.
- Enhanced UI to display variables and their management within the automation editor.
- Improved error handling for webhook and HTTP nodes to prevent requests to invalid URLs.
- Refactored various components for better context resolution during automation runs.
2026-06-11 15:47:29 -03:00

58 lines
1.5 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',
'copy_failed' => 'Failed to copy to clipboard',
],
];