Index: l10n_community/l10n_community.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/l10n_server/l10n_community/Attic/l10n_community.module,v
retrieving revision 1.1.2.23.2.30
diff -u -r1.1.2.23.2.30 l10n_community.module
--- l10n_community/l10n_community.module	16 Aug 2009 15:00:51 -0000	1.1.2.23.2.30
+++ l10n_community/l10n_community.module	16 Aug 2009 22:55:31 -0000
@@ -376,7 +376,10 @@
     case 'view':
       switch ($delta) {
         case 'help':
-          return l10n_community_block_help();
+          if (user_access('access localization community')) {
+              return l10n_community_block_help();
+          }
+          return;
       }
   }
 }
@@ -394,7 +397,8 @@
 
   switch ($_GET['q']) {
     case 'translate':
-      $block['content'] = '<p>'. t('Welcome to the translation server. This block will show you tips and advice throughout the application.') . ($user->uid ? ' '. t('Once you are familiar with the system, feel free to disable help in <a href="@user-page">your user settings</a>.', array('@user-page' => url('user/'. $user->uid .'/edit'))) : '') .'</p>';
+      $blockcustom = db_result(db_query("SELECT custom FROM {blocks} WHERE module = 'l10n_community' AND delta = 'help'"));
+      $block['content'] = '<p>'. t('Welcome to the translation server. This block will show you tips and advice throughout the application.') . (($user->uid && $blockcustom) ? ' '. t('Once you are familiar with the system, feel free to disable help in <a href="@user-page">your user settings</a>.', array('@user-page' => url('user/'. $user->uid .'/edit'))) : '') .'</p>';
       return $block;
 
     // Help text for language overview page.
