Index: src/wp-admin/user-edit.php
===================================================================
--- src/wp-admin/user-edit.php	(revision 39304)
+++ src/wp-admin/user-edit.php	(working copy)
@@ -295,7 +295,7 @@
 			'selected'                    => $user_locale,
 			'languages'                   => $languages,
 			'show_available_translations' => false,
-			'show_site_locale_default'    => true
+			'show_option_site_default'    => true
 		) );
 		?>
 	</td>
Index: src/wp-includes/l10n.php
===================================================================
--- src/wp-includes/l10n.php	(revision 39304)
+++ src/wp-includes/l10n.php	(working copy)
@@ -1058,7 +1058,7 @@
  *
  * @since 4.0.0
  * @since 4.3.0 Introduced the `echo` argument.
- * @since 4.7.0 Introduced the `show_site_locale_default` argument.
+ * @since 4.7.0 Introduced the `show_option_site_default` argument.
  *
  * @see get_available_languages()
  * @see wp_get_available_translations()
@@ -1076,7 +1076,7 @@
  *     @type bool|int $echo                         Whether to echo the generated markup. Accepts 0, 1, or their
  *                                                  boolean equivalents. Default 1.
  *     @type bool     $show_available_translations  Whether to show available translations. Default true.
- *     @type bool     $show_site_locale_default     Whether to show an option to fall back to the site's locale. Default false.
+ *     @type bool     $show_option_site_default     Whether to show an option to fall back to the site's locale. Default false.
  * }
  * @return string HTML content
  */
@@ -1090,7 +1090,7 @@
 		'selected'     => '',
 		'echo'         => 1,
 		'show_available_translations' => true,
-		'show_site_locale_default'    => false,
+		'show_option_site_default'    => false,
 	) );
 
 	// English (United States) uses an empty string for the value attribute.
@@ -1141,7 +1141,7 @@
 		$structure[] = '<optgroup label="' . esc_attr_x( 'Installed', 'translations' ) . '">';
 	}
 
-	if ( $args['show_site_locale_default'] ) {
+	if ( $args['show_option_site_default'] ) {
 		$structure[] = sprintf(
 			'<option value="site-default" data-installed="1"%s>%s</option>',
 			selected( 'site-default', $args['selected'], false ),
