Index: drupal-org.make
===================================================================
RCS file: /cvs/drupal-contrib/contributions/profiles/l10n_install/Attic/drupal-org.make,v
retrieving revision 1.1.2.2
diff -u -p -r1.1.2.2 drupal-org.make
--- drupal-org.make	22 Sep 2010 16:56:57 -0000	1.1.2.2
+++ drupal-org.make	14 Oct 2010 12:04:43 -0000
@@ -1,2 +1,3 @@
 core = 6.19
 projects[l10n_update] = 1.0-alpha2
+projects[l10n_client] = 1.8
Index: l10n_install.profile
===================================================================
RCS file: /cvs/drupal-contrib/contributions/profiles/l10n_install/Attic/l10n_install.profile,v
retrieving revision 1.1.2.4
diff -u -p -r1.1.2.4 l10n_install.profile
--- l10n_install.profile	22 Sep 2010 16:56:57 -0000	1.1.2.4
+++ l10n_install.profile	14 Oct 2010 12:04:43 -0000
@@ -22,7 +22,7 @@ function l10n_install_profile_details() 
  * Implementation of hook_profile_modules().
  */
 function l10n_install_profile_modules() {
-  $modules = array('color', 'comment', 'help', 'menu', 'taxonomy', 'dblog', 'locale', 'l10n_update');
+  $modules = array('color', 'comment', 'help', 'menu', 'taxonomy', 'dblog', 'locale', 'l10n_client', 'l10n_update');
   return $modules;
 }
 
@@ -106,4 +106,11 @@ function _l10n_install_batch_finished($s
   }
   // Invoke default batch finish function too.
   _l10n_update_batch_finished();
+
+  // Set up l10n_client and inform the admin about it.
+  // @todo This message will not show up for some reason.
+  global $user;
+  variable_set('l10n_client_use_server', 1);
+  variable_set('l10n_client_server', 'http://localize.drupal.org');
+  drupal_set_message(t('Localization client is set up to share your translations with <a href="@localize">localize.drupal.org</a>. Each participating user should have a localize.drupal.org account and set up their API key on their user profile page. <a href="@edit-profile">Set up yours</a>.', array('@localize' => 'http://localize.drupal.org', '@edit-profile' => url('user/' . $user->uid . '/edit'))));
 }
