From 72b7b550ff1d4ce1bf56f110866132f7bec2a34d Mon Sep 17 00:00:00 2001 From: Joe Huss Date: Sat, 17 Nov 2018 22:31:29 -0500 Subject: [PATCH] update going back to standard translation function --- src/Plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugin.php b/src/Plugin.php index d7e5432..b409250 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -119,6 +119,6 @@ public static function getSettings(GenericEvent $event) * @var \MyAdmin\Settings $settings **/ $settings = $event->getSubject(); - $settings->add_text_setting(self::$module, __('Addon Costs'), 'vps_da_cost', __('VPS DirectAdmin License'), __('This is the cost for purchasing a direct admin license on top of a VPS.'), $settings->get_setting('VPS_DA_COST')); + $settings->add_text_setting(self::$module, _('Addon Costs'), 'vps_da_cost', _('VPS DirectAdmin License'), _('This is the cost for purchasing a direct admin license on top of a VPS.'), $settings->get_setting('VPS_DA_COST')); } }