@@ -114,12 +114,12 @@ class Sms77 extends Process implements ConfigurableModule {
114114 $info = self::getModuleInfo();
115115
116116 $this->config->js('Sms77', array(
117- 'prompt_text' => __ ('Please enter the message content.'),
118- 'text_missing' => __ ('Not sending SMS: Missing text!'),
117+ 'prompt_text' => $this->_ ('Please enter the message content.'),
118+ 'text_missing' => $this->_ ('Not sending SMS: Missing text!'),
119119 ));
120120
121121 $this->config->scripts->add(
122- $this->config->urls->Sms77 . 'Sms77.js?v=' . $info['version'] . '' );
122+ $this->config->urls->Sms77 . 'Sms77.js?v=' . $info['version']);
123123
124124 $this->addHookAfter('ProcessPageEdit::buildForm', $this, 'buildForm');
125125
@@ -148,7 +148,7 @@ class Sms77 extends Process implements ConfigurableModule {
148148 'singular' => true,
149149 'summary' => __('Send SMS via Sms77.io.'),
150150 'title' => 'Sms77',
151- 'version' => 120 ,
151+ 'version' => 130 ,
152152 );
153153 }
154154
@@ -157,11 +157,11 @@ class Sms77 extends Process implements ConfigurableModule {
157157 <dl class="uk-description-list uk-description-list-divider">
158158 <dt>
159159 <a href="/processwire/sms77/bulk-sms/">
160- <i style="float: right;" class="fa fa-3x fa-fw fa-envelope ui-priority-secondary"></i>
161- Bulk SMS
160+ <i style="float: right;" class="fa fa-3x fa-fw fa-envelope ui-priority-secondary"></i>
161+ ' . $this->_(' Bulk SMS') . '
162162 </a>
163163 </dt>
164- <dd>Send bulk SMS to all of your users</dd>
164+ <dd>' . $this->_(' Send bulk SMS to all of your users') . ' </dd>
165165 </dl>
166166 ';
167167 }
@@ -287,7 +287,7 @@ class Sms77 extends Process implements ConfigurableModule {
287287
288288 $e->return = array_merge($actions, array('sms' => array(
289289 'icon' => 'envelope',
290- 'label' => 'SMS',
290+ 'label' => $this->_( 'SMS') ,
291291 'value' => 'sms77_sms_user',
292292 )));
293293 }
0 commit comments