diff --git og-extras-group-info.tpl.php og-extras-group-info.tpl.php
index 6000afc..223270a 100644
--- og-extras-group-info.tpl.php
+++ og-extras-group-info.tpl.php
@@ -19,7 +19,7 @@
  */
 ?>
 <?php if (!empty($gid)): ?>
-  <h3><?php print count($manager_uids) > 1 ? 'Manager' : 'Managers'; ?></h3>
+  <h3><?php print format_plural(count($manager_uids), 'Manager', 'Managers'); ?></h3>
   <?php foreach ($managers as $manager_link): ?>
     <div><?php print $manager_link; ?></div>
   <?php endforeach; ?>
@@ -27,7 +27,7 @@
     <?php print $subscriber_link ?>
   </div>
   <div>
-    Created: <?php print $created; ?>
+    <?php print t('Created: @date', array('@date' => $created)); ?>
   </div>
   <div>
     <?php print $subscribe_link; ?>
diff --git theme.inc theme.inc
index 75b6019..71b4c0f 100644
--- theme.inc
+++ theme.inc
@@ -35,7 +35,7 @@ function og_extras_preprocess_og_extras_group_info(&$variables) {
   $variables['created'] = format_date($variables['group_node']->created, 'custom', 'M d Y');
 
   $variables['subscriber_count'] = og_extras_subscriber_count($variables['gid']);
-  $variables['subscriber_link'] = l(t("!count members", array('!count' => $variables['subscriber_count'])), 'node/ ' . $variables['gid'] . '/members');
+  $variables['subscriber_link'] = l(format_plural($variables['subscriber_count'], '@count member', '@count members'), 'node/' . $variables['gid'] . '/members');
 
   // @TODO Add a configuration form to select the 'manager' roles for the group.
   $roles = og_extras_get_roles($variables['gid']);
