diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-10-19 18:02:31 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-10-19 18:02:31 +0000 |
commit | 10f329c0579c24a23f9345a21aa00e56f6755a40 (patch) | |
tree | 70420d6c4543136ccd6b37479522458b9776d9f2 /includes/locale.inc | |
parent | b2f8787c90ae7dae020337aaaa2987dcd78a7b9b (diff) | |
download | brdo-10f329c0579c24a23f9345a21aa00e56f6755a40.tar.gz brdo-10f329c0579c24a23f9345a21aa00e56f6755a40.tar.bz2 |
- Patch #11728 by Uwe Hermann: fixed some typos in the code comments, Doxygen documentation and screen output.
Uwe: I dropped the 'iff' chunks as 'iff' stands for 'if and only if'.
Diffstat (limited to 'includes/locale.inc')
-rw-r--r-- | includes/locale.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/locale.inc b/includes/locale.inc index ec6884935..ad8521fe2 100644 --- a/includes/locale.inc +++ b/includes/locale.inc @@ -77,7 +77,7 @@ function _locale_admin_manage_add_screen() { $edit = &$_POST['edit']; $output .= '<h2>'. t('Custom language') .'</h2>'; $form = form_textfield(t('Language code'), 'langcode', $edit['langcode'], 70, 12, t("Commonly this is an <a href=\"%iso-codes\">ISO 639 language code</a> with an optional country code for regional variants. Examples include 'en', 'en-US' and 'zh-cn'.", array('%iso-codes' => 'http://www.w3.org/WAI/ER/IG/ert/iso639.htm'))); - $form .= form_textfield(t('Language name in English'), 'langname', $edit['langname'], 70, 64, t('Name of the language. Will be availabale for translation in all languages.')); + $form .= form_textfield(t('Language name in English'), 'langname', $edit['langname'], 70, 64, t('Name of the language. Will be available for translation in all languages.')); $form .= form_submit(t('Add language')); $output .= form($form); @@ -249,7 +249,7 @@ function _locale_import_po($file, $lang, $mode) { } } - // Successfull import + // Successful import // rebuild locale cache cache_clear_all("locale:$lang"); |