|
|
@@ -672,15 +672,18 @@ class String {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Creates a comma separated list where the last two items are joined with 'and', forming natural English
|
|
|
+ * Creates a comma separated list where the last two items are joined with 'and', forming natural language.
|
|
|
*
|
|
|
- * @param array $list The list to be joined
|
|
|
- * @param string $and The word used to join the last and second last items together with. Defaults to 'and'
|
|
|
- * @param string $separator The separator used to join all the other items together. Defaults to ', '
|
|
|
+ * @param array $list The list to be joined.
|
|
|
+ * @param string $and The word used to join the last and second last items together with. Defaults to 'and'.
|
|
|
+ * @param string $separator The separator used to join all the other items together. Defaults to ', '.
|
|
|
* @return string The glued together string.
|
|
|
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/text.html#TextHelper::toList
|
|
|
*/
|
|
|
- public static function toList($list, $and = 'and', $separator = ', ') {
|
|
|
+ public static function toList($list, $and = null, $separator = ', ') {
|
|
|
+ if ($and === null) {
|
|
|
+ $and = __d('cake', 'and');
|
|
|
+ }
|
|
|
if (count($list) > 1) {
|
|
|
return implode($separator, array_slice($list, null, -1)) . ' ' . $and . ' ' . array_pop($list);
|
|
|
}
|