Changeset 57557
- Timestamp:
- 02/08/2024 07:09:50 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/script-loader.php
r57556 r57557 442 442 /* translators: One second from or to a particular datetime, e.g., "a second ago" or "a second from now". */ 443 443 's' => __( 'a second' ), 444 /* translators: % s: Duration in seconds from or to a particular datetime, e.g., "4 seconds ago" or "4 seconds from now". */444 /* translators: %d: Duration in seconds from or to a particular datetime, e.g., "4 seconds ago" or "4 seconds from now". */ 445 445 'ss' => __( '%d seconds' ), 446 446 /* translators: One minute from or to a particular datetime, e.g., "a minute ago" or "a minute from now". */ 447 447 'm' => __( 'a minute' ), 448 /* translators: % s: Duration in minutes from or to a particular datetime, e.g., "4 minutes ago" or "4 minutes from now". */448 /* translators: %d: Duration in minutes from or to a particular datetime, e.g., "4 minutes ago" or "4 minutes from now". */ 449 449 'mm' => __( '%d minutes' ), 450 /* translators: %s:One hour from or to a particular datetime, e.g., "an hour ago" or "an hour from now". */450 /* translators: One hour from or to a particular datetime, e.g., "an hour ago" or "an hour from now". */ 451 451 'h' => __( 'an hour' ), 452 /* translators: % s: Duration in hours from or to a particular datetime, e.g., "4 hours ago" or "4 hours from now". */452 /* translators: %d: Duration in hours from or to a particular datetime, e.g., "4 hours ago" or "4 hours from now". */ 453 453 'hh' => __( '%d hours' ), 454 /* translators: %s:One day from or to a particular datetime, e.g., "a day ago" or "a day from now". */454 /* translators: One day from or to a particular datetime, e.g., "a day ago" or "a day from now". */ 455 455 'd' => __( 'a day' ), 456 /* translators: % s: Duration in days from or to a particular datetime, e.g., "4 days ago" or "4 days from now". */456 /* translators: %d: Duration in days from or to a particular datetime, e.g., "4 days ago" or "4 days from now". */ 457 457 'dd' => __( '%d days' ), 458 /* translators: %s:One month from or to a particular datetime, e.g., "a month ago" or "a month from now". */458 /* translators: One month from or to a particular datetime, e.g., "a month ago" or "a month from now". */ 459 459 'M' => __( 'a month' ), 460 /* translators: % s: Duration in months from or to a particular datetime, e.g., "4 months ago" or "4 months from now". */460 /* translators: %d: Duration in months from or to a particular datetime, e.g., "4 months ago" or "4 months from now". */ 461 461 'MM' => __( '%d months' ), 462 /* translators: %s:One year from or to a particular datetime, e.g., "a year ago" or "a year from now". */462 /* translators: One year from or to a particular datetime, e.g., "a year ago" or "a year from now". */ 463 463 'y' => __( 'a year' ), 464 /* translators: % s: Duration in years from or to a particular datetime, e.g., "4 years ago" or "4 years from now". */464 /* translators: %d: Duration in years from or to a particular datetime, e.g., "4 years ago" or "4 years from now". */ 465 465 'yy' => __( '%d years' ), 466 466 ),
Note: See TracChangeset
for help on using the changeset viewer.