diff --git a/bbb.module b/bbb.module
index 7bacc30..85a112f 100644
--- a/bbb.module
+++ b/bbb.module
@@ -541,14 +541,14 @@ function bbb_get_meeting($nid, $account = NULL, $cached = TRUE) {
       $meeting->url = array(
         'attend' => bbb_api_join(
           array(
-            'fullName' => property_exists($account,'name') ? $account->name : t('Anonymous'),
+            'fullName' => property_exists($account, 'name') ? $account->name : t('Anonymous'),
             'meetingID' => $meeting->meetingID,
             'password' => $meeting->attendeePW,
           )
         ),
         'moderate' => bbb_api_join(
           array(
-            'fullName' => property_exists($account,'name') ? $account->name : t('Anonymous'),
+            'fullName' => property_exists($account, 'name') ? $account->name : t('Anonymous'),
             'meetingID' => $meeting->meetingID,
             'password' => $meeting->moderatorPW,
           )
@@ -656,7 +656,7 @@ function bbb_meeting_attend($node) {
 
   $status = bbb_api_getMeetingInfo($params);
   if ($status && property_exists($status, 'hasBeenForciblyEnded') && $status->hasBeenForciblyEnded == 'true') {
-    drupal_set_message('The meeting has been terminated and is not available for attending.');
+    drupal_set_message(t('The meeting has been terminated and is not available for attending.'));
     drupal_goto('node/' . $node->nid);
   }
 
@@ -713,7 +713,7 @@ function bbb_meeting_moderate($node) {
 
   $status = bbb_api_getMeetingInfo($params);
   if ($status && property_exists($status, 'hasBeenForciblyEnded') && $status->hasBeenForciblyEnded == 'true') {
-    drupal_set_message('The meeting has been terminated and is not available for reopening.');
+    drupal_set_message(t('The meeting has been terminated and is not available for reopening.'));
     drupal_goto('node/' . $node->nid);
   }
 
