Files
gustavoo-me/wp-content/plugins/fluent-crm/app/Services/TransStringsGuten.php
T
2026-07-23 22:56:30 -03:00

28 lines
1.1 KiB
PHP

<?php
namespace FluentCrm\App\Services;
/**
* Gutenberg iframe specific translation map for custom-editor React helpers.
*/
class TransStringsGuten
{
public static function getStrings()
{
return [
'Saving...' => __('Saving...', 'fluent-crm'),
'Save' => __('Save', 'fluent-crm'),
'Saved' => __('Saved', 'fluent-crm'),
'Save Draft' => __('Save Draft', 'fluent-crm'),
'Back to campaign title and layout' => __('Back to campaign title and layout', 'fluent-crm'),
'Email Preview' => __('Email Preview', 'fluent-crm'),
'Open smartcodes' => __('Open smartcodes', 'fluent-crm'),
'Smartcodes' => __('Smartcodes', 'fluent-crm'),
'Next' => __('Next', 'fluent-crm'),
'Next step' => __('Next step', 'fluent-crm'),
'Preview' => __('Preview', 'fluent-crm'),
];
}
}