Initial commit

This commit is contained in:
gustavooth
2026-07-23 22:56:30 -03:00
commit 22a1006598
1816 changed files with 410742 additions and 0 deletions
@@ -0,0 +1,27 @@
<?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'),
];
}
}