diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-01-13 14:25:59 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-01-13 14:25:59 +0000 |
commit | 1e05ca59fa6644d874c76111d27c1d72b86c4112 (patch) | |
tree | f0482911c5b63adab2e6efe0a81403db396a638b /modules/update/update.manager.inc | |
parent | d2fc4b69f7d5be2b620851f8618935b291812ef2 (diff) | |
download | brdo-1e05ca59fa6644d874c76111d27c1d72b86c4112.tar.gz brdo-1e05ca59fa6644d874c76111d27c1d72b86c4112.tar.bz2 |
- Patch #682870 by jhodgdon, asimmonds: fixed UI spelling typos.
Diffstat (limited to 'modules/update/update.manager.inc')
-rw-r--r-- | modules/update/update.manager.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/update/update.manager.inc b/modules/update/update.manager.inc index 5e80d6953..25bd7f0bd 100644 --- a/modules/update/update.manager.inc +++ b/modules/update/update.manager.inc @@ -554,7 +554,7 @@ function update_manager_install_form_submit($form, &$form_state) { $field = 'project_url'; $local_cache = update_manager_file_get($form_state['values']['project_url']); if (!$local_cache) { - form_set_error($field, t('Unable to retreive Drupal project from %url.', array('%url' => $form_state['values']['project_url']))); + form_set_error($field, t('Unable to retrieve Drupal project from %url.', array('%url' => $form_state['values']['project_url']))); return; } } @@ -703,7 +703,7 @@ function update_manager_archive_extract($file, $directory) { function update_manager_archive_verify($project, $archive_file, $directory) { $failures = module_invoke_all('verify_update_archive', $project, $archive_file, $directory); if (!empty($failures)) { - throw new Exception(t('Unable to extact %file', array('%file' => $file))); + throw new Exception(t('Unable to extract %file', array('%file' => $file))); } } |