diff options
author | 2014-03-28 17:19:03 +0100 | |
---|---|---|
committer | 2014-03-28 17:19:03 +0100 | |
commit | c985b018a7c8bd356416bb19d0e201c185030ed4 (patch) | |
tree | 07fb94bdb96d39c32953d6a2ece81e751778de9b /phpBB/docs/coding-guidelines.html | |
parent | [ticket/12286] Correctly capitalize PHP (diff) | |
download | phpbb-c985b018a7c8bd356416bb19d0e201c185030ed4.tar.gz phpbb-c985b018a7c8bd356416bb19d0e201c185030ed4.tar.bz2 phpbb-c985b018a7c8bd356416bb19d0e201c185030ed4.zip |
[ticket/12286] Fix spelling of elephant(s) in the sample
PHPBB3-12286
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r-- | phpBB/docs/coding-guidelines.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html index ad5c5dc107..d5fde0fbc9 100644 --- a/phpBB/docs/coding-guidelines.html +++ b/phpBB/docs/coding-guidelines.html @@ -2388,7 +2388,7 @@ if (utf8_case_fold_nfc($string1) == utf8_case_fold_nfc($string2)) <div class="codebox"><pre> ... - $user->lang('NUMBER_OF_ELEFANTS', $number_of_elefants); + $user->lang('NUMBER_OF_ELEPHANTS', $number_of_elephants); ... </pre></div> @@ -2396,10 +2396,10 @@ if (utf8_case_fold_nfc($string1) == utf8_case_fold_nfc($string2)) <div class="codebox"><pre> ... - 'NUMBER_OF_ELEFANTS' => array( - 0 => 'You have no elephant', // Optional special case for 0 + 'NUMBER_OF_ELEPHANTS' => array( + 0 => 'You have no elephants', // Optional special case for 0 1 => 'You have 1 elephant', // Singular - 2 => 'You have %d elephant', // Plural + 2 => 'You have %d elephants', // Plural ), ... </pre></div> @@ -2408,7 +2408,7 @@ if (utf8_case_fold_nfc($string1) == utf8_case_fold_nfc($string2)) <div class="codebox"><pre> ... - 'NUMBER_OF_ELEFANTS' => array( + 'NUMBER_OF_ELEPHANTS' => array( 0 => 'You have no slonova', // Optional special case for 0 1 => 'You have %d slon', // Used for 1, 21, 31, .. 2 => 'You have %d slona', // Used for 5, 6, |