Index: drupal-org.make
===================================================================
RCS file: /cvs/drupal-contrib/contributions/profiles/l10n_install/Attic/drupal-org.make,v
retrieving revision 1.1.2.1.2.3
diff -u -p -r1.1.2.1.2.3 drupal-org.make
--- drupal-org.make	7 Oct 2010 13:56:30 -0000	1.1.2.1.2.3
+++ drupal-org.make	13 Oct 2010 12:41:26 -0000
@@ -1 +1,2 @@
 core = 7.0-beta1
+projects[l10n_client] = 1.0-beta1
Index: l10n_install.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/profiles/l10n_install/Attic/l10n_install.info,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 l10n_install.info
--- l10n_install.info	15 Sep 2010 16:09:57 -0000	1.1.2.1
+++ l10n_install.info	13 Oct 2010 12:41:26 -0000
@@ -21,4 +21,8 @@ dependencies[] = overlay
 dependencies[] = field_ui
 dependencies[] = file
 dependencies[] = rdf
+
+; ships with l10n_client
+dependencies[] = l10n_client
+
 files[] = l10n_install.profile
Index: l10n_install.profile
===================================================================
RCS file: /cvs/drupal-contrib/contributions/profiles/l10n_install/Attic/l10n_install.profile,v
retrieving revision 1.1.2.3.2.2
diff -u -p -r1.1.2.3.2.2 l10n_install.profile
--- l10n_install.profile	7 Oct 2010 13:56:30 -0000	1.1.2.3.2.2
+++ l10n_install.profile	13 Oct 2010 12:41:27 -0000
@@ -87,9 +87,14 @@ function l10n_install_import_translation
     else {
       drupal_set_message(t('Downloaded translation import failed.'), 'error');
     }
-    return;
   }
   else {
     drupal_set_message(t('Unable to download translations from @url.', array('@url' => $po_url)), 'error');
   }
+
+  // Set up l10n_client and inform the admin about it.
+  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'))));
 }
