Changeset 10767 for trunk/wp-includes/formatting.php
- Timestamp:
- 03/10/2009 11:02:29 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/formatting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r10702 r10767 2215 2215 // Translate and filter the delimiter set (avoid ampersands and entities here) 2216 2216 $l = apply_filters('wp_sprintf_l', array( 2217 'between' => _c(', |between list items'), 2218 'between_last_two' => _c(', and |between last two list items'), 2219 'between_only_two' => _c(' and |between only two list items'), 2217 /* translators: used between list items, there is a space after the coma */ 2218 'between' => __(', '), 2219 /* translators: used between list items, there is a space after the and */ 2220 'between_last_two' => __(', and '), 2221 /* translators: used between only two list items, there is a space after the and */ 2222 'between_only_two' => __(' and '), 2220 2223 )); 2221 2224
Note: See TracChangeset
for help on using the changeset viewer.