Index: l10n_groups/l10n_groups.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/l10n_server/l10n_groups/Attic/l10n_groups.module,v
retrieving revision 1.1.2.4.2.10.2.7
diff -u -p -r1.1.2.4.2.10.2.7 l10n_groups.module
--- l10n_groups/l10n_groups.module	16 Jun 2010 09:46:45 -0000	1.1.2.4.2.10.2.7
+++ l10n_groups/l10n_groups.module	16 Jun 2010 11:33:38 -0000
@@ -91,6 +91,29 @@ function l10n_groups_set_context($langco
   }
 }
 
+/**
+ * Implementation of hook_block().
+ */
+function l10n_groups_block($op = 'list', $delta = 0, $edit = array()) {
+  switch ($op) {
+    case 'list':
+      $blocks = array(
+        'info' => array(
+          'info' => t('Localization group information'),
+        ),
+      );
+      return $blocks;
+
+    case 'view':
+      switch ($delta) {
+        case 'info':
+          if ((arg(0) == 'translate') && (arg(1) = 'languages') && !empty($arg3 = arg(3)) && empty($arg4 = arg(4))) {
+            return module_invoke('og', 'block_details');
+          }
+      }
+  }
+}
+
 // = Organic groups node type ==================================================
 
 /**
