diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-23 23:59:28 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-23 23:59:28 +0000 |
commit | 4bd74a00668557ce827e4c51d7c278548518aaf8 (patch) | |
tree | ba924815afcfefd259c7fddc2b7eb63ba731494b /includes/install.core.inc | |
parent | cd9a37e50dfd2aec75db08a3eac00c46082b5dbc (diff) | |
download | drupal-4bd74a00668557ce827e4c51d7c278548518aaf8.tar.gz drupal-4bd74a00668557ce827e4c51d7c278548518aaf8.zip |
#882164 follow-up by Gábor Hojtsy, reglogge: Further clarifications to localization install instructions.
Diffstat (limited to 'includes/install.core.inc')
-rw-r--r-- | includes/install.core.inc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/includes/install.core.inc b/includes/install.core.inc index 8f26a1d34ad..56f3e40918d 100644 --- a/includes/install.core.inc +++ b/includes/install.core.inc @@ -1209,7 +1209,15 @@ function install_select_locale(&$install_state) { $output = '<p>Follow these steps to translate Drupal into your language:</p>'; $output .= '<ol>'; $output .= '<li>Download a translation from the <a href="http://localize.drupal.org/download" target="_blank">translation server</a>.</li>'; - $output .= '<li>Rename the downloaded file to your language\'s <a href="http://www.gnu.org/software/gettext/manual/html_chapter/gettext_16.html#Language-Codes" target="_blank">ISO code</a> (e.g., <code>de.po</code> or <code>fr.po</code>) and place it into the following directory: + $output .= '<li>Rename the downloaded file retaining only the language code at the end of the file name and its extension. For example, if the file name is +<pre> +drupal-7.0.pt-br.po +</pre> +rename it to +<pre> +pt-br.po +</pre></li>'; + $output .= '<li>Place it into the following directory: <pre> /profiles/' . $profilename . '/translations/ </pre></li>'; |