| @@ -20,9 +20,9 @@ | ||
| 20 | 20 | public static function externally_hosted( $file_url ) { |
| 21 | 21 | $message = sprintf( |
| 22 | 22 | /* translators: %1$s expands to the requested url */ |
| 23 | 23 | __( 'Cannot get the size of %1$s because it is hosted externally.', 'wordpress-seo' ), |
| 24 | - $file_url | |
| 24 | + $file_url, | |
| 25 | 25 | ); |
| 26 | 26 | |
| 27 | 27 | return new self( $message ); |
| 28 | 28 | } |
| @@ -37,9 +37,9 @@ | ||
| 37 | 37 | public static function unknown_error( $file_url ) { |
| 38 | 38 | $message = sprintf( |
| 39 | 39 | /* translators: %1$s expands to the requested url */ |
| 40 | 40 | __( 'Cannot get the size of %1$s because of unknown reasons.', 'wordpress-seo' ), |
| 41 | - $file_url | |
| 41 | + $file_url, | |
| 42 | 42 | ); |
| 43 | 43 | |
| 44 | 44 | return new self( $message ); |
| 45 | 45 | } |