Skip to content

Commit c037dc1

Browse files
committed
update going back to standard translation function
1 parent bf97625 commit c037dc1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Plugin.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ public static function getSettings(GenericEvent $event)
6767
* @var \MyAdmin\Settings $settings
6868
**/
6969
$settings = $event->getSubject();
70-
$settings->add_dropdown_setting(__('Accounts'), __('Sendy'), 'sendy_enable', __('Enable Sendy'), __('Enable/Disable Sendy Mailing on Account Signup'), (defined('SENDY_ENABLE') ? SENDY_ENABLE : '0'), ['0', '1'], ['No', 'Yes']);
71-
$settings->add_text_setting(__('Accounts'), __('Sendy'), 'sendy_api_key', __('API Key'), __('API Key'), (defined('SENDY_API_KEY') ? SENDY_API_KEY : ''));
72-
$settings->add_text_setting(__('Accounts'), __('Sendy'), 'sendy_list_id', __('List ID'), __('List ID'), (defined('SENDY_LIST_ID') ? SENDY_LIST_ID : ''));
73-
$settings->add_text_setting(__('Accounts'), __('Sendy'), 'sendy_apiurl', __('API URL'), __('API URL'), (defined('SENDY_APIURL') ? SENDY_APIURL : ''));
70+
$settings->add_dropdown_setting(_('Accounts'), _('Sendy'), 'sendy_enable', _('Enable Sendy'), _('Enable/Disable Sendy Mailing on Account Signup'), (defined('SENDY_ENABLE') ? SENDY_ENABLE : '0'), ['0', '1'], ['No', 'Yes']);
71+
$settings->add_text_setting(_('Accounts'), _('Sendy'), 'sendy_api_key', _('API Key'), _('API Key'), (defined('SENDY_API_KEY') ? SENDY_API_KEY : ''));
72+
$settings->add_text_setting(_('Accounts'), _('Sendy'), 'sendy_list_id', _('List ID'), _('List ID'), (defined('SENDY_LIST_ID') ? SENDY_LIST_ID : ''));
73+
$settings->add_text_setting(_('Accounts'), _('Sendy'), 'sendy_apiurl', _('API URL'), _('API URL'), (defined('SENDY_APIURL') ? SENDY_APIURL : ''));
7474
}
7575

7676
/**

0 commit comments

Comments
 (0)