mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-02 22:36:21 -04:00
- Reword docblock to remove 'Example' - it's a functioning plugin - Rename 'Mailchimp Integration' to 'Mailchimp' (context makes it clear) - Use lang() method for translatable strings with self-contained language file - Use log_message() instead of log() for PSR-12 consistency - Add missing language strings: mailchimp_description, mailchimp_api_key_required - Add getPluginDir() method for language helper
13 lines
652 B
PHP
13 lines
652 B
PHP
<?php
|
|
|
|
return [
|
|
'mailchimp' => 'Mailchimp',
|
|
'mailchimp_description' => 'Integrate with Mailchimp to sync customers to mailing lists when they are created or updated.',
|
|
'mailchimp_api_key' => 'Mailchimp API Key',
|
|
'mailchimp_api_key_required' => 'API key not configured',
|
|
'mailchimp_configuration' => 'Mailchimp Configuration',
|
|
'mailchimp_key_successfully' => 'API Key is valid.',
|
|
'mailchimp_key_unsuccessfully' => 'API Key is invalid.',
|
|
'mailchimp_lists' => 'Mailchimp List(s)',
|
|
'mailchimp_tooltip' => 'Click the icon for an API Key.',
|
|
]; |