diff --git a/core/INSTALL.txt b/core/INSTALL.txt index f7ee23c..23f7b50 100644 --- a/core/INSTALL.txt +++ b/core/INSTALL.txt @@ -89,11 +89,14 @@ INSTALLATION - Download a translation file for the correct Drupal version and language from the translation server: http://localize.drupal.org/translate/downloads - - Place the file into your installation profile's translations - directory. For instance, if you are using the Standard install profile, - move the .po file into the directory: + - Place the file into the dedicated translations directory. By default this + directory is: - profiles/standard/translations/ + sites/default/files/translations/ + + If the directory doesn't exist you should create it. Make sure your file + is named drupal-x.x.xx.po. (For example the German + translation should be named drupal-8.0.de.po). For detailed instructions, visit http://drupal.org/localize diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index cf8f1ed..81f825e 100644 --- a/core/includes/install.core.inc +++ b/core/includes/install.core.inc @@ -1336,7 +1336,6 @@ function install_select_language_form($form, &$form_state, $files) { '#options' => $select_options, // Use the browser detected language as default or English if nothing found. '#default_value' => !empty($browser_langcode) ? $browser_langcode : 'en', - '#size' => min(count($select_options), 10), ); if (count($files) == 1) { diff --git a/core/profiles/minimal/translations/README.txt b/core/profiles/minimal/translations/README.txt deleted file mode 100644 index a0afa51..0000000 --- a/core/profiles/minimal/translations/README.txt +++ /dev/null @@ -1,3 +0,0 @@ - -This directory should be used to place downloaded translations -for installing Drupal core. diff --git a/core/profiles/standard/translations/README.txt b/core/profiles/standard/translations/README.txt deleted file mode 100644 index a0afa51..0000000 --- a/core/profiles/standard/translations/README.txt +++ /dev/null @@ -1,3 +0,0 @@ - -This directory should be used to place downloaded translations -for installing Drupal core.