Changeset 45932 for trunk/src/wp-admin/includes/file.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r45926 r45932 88 88 $template_data = implode( '', file( $file_path ) ); 89 89 if ( preg_match( '|Template Name:(.*)$|mi', $template_data, $name ) ) { 90 /* translators: %s: template name*/90 /* translators: %s: Template name. */ 91 91 return sprintf( __( '%s Page Template' ), _cleanup_header_comment( $name[1] ) ); 92 92 } … … 303 303 <?php 304 304 printf( 305 /* translators: 1: line number, 2: file path*/305 /* translators: 1: Line number, 2: File path. */ 306 306 __( 'Your PHP code changes were rolled back due to an error on line %1$s of file %2$s. Please fix and try saving again.' ), 307 307 '{{ data.line }}', … … 315 315 <?php 316 316 printf( 317 /* translators: %s: Documentation URL */317 /* translators: %s: Documentation URL. */ 318 318 __( 'You need to make this file writable before you can save your changes. See <a href="%s">Changing File Permissions</a> for more information.' ), 319 319 __( 'https://wordpress.org/support/article/changing-file-permissions/' ) … … 876 876 $file, 877 877 sprintf( 878 /* translators: %s: destination file path*/878 /* translators: %s: Destination file path. */ 879 879 __( 'The uploaded file could not be moved to %s.' ), 880 880 $error_path … … 1166 1166 'md5_mismatch', 1167 1167 sprintf( 1168 /* translators: 1: file checksum, 2: expected checksum value*/1168 /* translators: 1: File checksum, 2: Expected checksum value. */ 1169 1169 __( 'The checksum of the file (%1$s) does not match the expected checksum value (%2$s).' ), 1170 1170 bin2hex( $file_md5 ),
Note: See TracChangeset
for help on using the changeset viewer.