diff --git a/core/profiles/standard/standard.info.yml b/core/profiles/standard/standard.info.yml
index 2dfadbb..2b2140a 100644
--- a/core/profiles/standard/standard.info.yml
+++ b/core/profiles/standard/standard.info.yml
@@ -36,3 +36,5 @@ dependencies:
   - views
   - views_ui
   - tour
+exclusive: TRUE
+distribution_name: Some Distro
diff --git a/core/profiles/standard/standard.profile b/core/profiles/standard/standard.profile
index d554c93..a05707f 100644
--- a/core/profiles/standard/standard.profile
+++ b/core/profiles/standard/standard.profile
@@ -13,3 +13,21 @@ function standard_form_install_configure_form_alter(&$form, $form_state) {
   // Pre-populate the site name with the server name.
   $form['site_information']['site_name']['#default_value'] = $_SERVER['SERVER_NAME'];
 }
+
+/**
+ * Implements hook_install_tasks_alter().
+ */
+function standard_install_tasks_alter(&$tasks, $install_state) {
+  $tasks['install_select_language']['display_name'] = t("What's your language?");
+  $tasks['install_select_language']['function'] = 'standard_language_selection';
+}
+
+/**
+ * Replacement for the core language selection profile step.
+ */
+function standard_language_selection(&$install_state) {
+  // Use the standard callback, but override the page title that is set there.
+  $result = install_select_language($install_state);
+  drupal_set_title(t("What's your language?"));
+  return $result;
+}
