From c985b018a7c8bd356416bb19d0e201c185030ed4 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 28 Mar 2014 17:19:03 +0100 Subject: [PATCH] [ticket/12286] Fix spelling of elephant(s) in the sample PHPBB3-12286 --- phpBB/docs/coding-guidelines.html | 10 +++++----- 1 file 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))
 	...
-	$user->lang('NUMBER_OF_ELEFANTS', $number_of_elefants);
+	$user->lang('NUMBER_OF_ELEPHANTS', $number_of_elephants);
 	...
 	
@@ -2396,10 +2396,10 @@ if (utf8_case_fold_nfc($string1) == utf8_case_fold_nfc($string2))
 	...
-	'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
 	),
 	...
 	
@@ -2408,7 +2408,7 @@ if (utf8_case_fold_nfc($string1) == utf8_case_fold_nfc($string2))
 	...
-	'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,