You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* translators: 1: URL to browser uploader, 2: Additional link attributes. */
3049
-
__( 'You are using the multi-file uploader. Problems? Try the <a href="%1$s" %2$s>browser uploader</a> instead.' ),
3050
-
$browser_uploader,
3051
-
'target="_blank"'
3037
+
/* translators: %s: HTML attributes for button. */
3038
+
__( 'You are using the multi-file uploader. Problems? Try the <button %s>browser uploader</button> instead.' ),
3039
+
'type="button" class="button-link"'
3052
3040
);
3053
3041
?>
3054
3042
</p>
@@ -3063,7 +3051,13 @@ function media_upload_flash_bypass() {
3063
3051
functionmedia_upload_html_bypass() {
3064
3052
?>
3065
3053
<p class="upload-html-bypass hide-if-no-js">
3066
-
<?php_e( 'You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. <a href="#">Switch to the multi-file uploader</a>.' ); ?>
3054
+
<?php
3055
+
printf(
3056
+
/* translators: %s: HTML attributes for button. */
3057
+
__( 'You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. <button %s>Switch to the multi-file uploader</button>.' ),
3058
+
'type="button" class="button-link"'
3059
+
);
3060
+
?>
3067
3061
</p>
3068
3062
<?php
3069
3063
}
@@ -3534,7 +3528,7 @@ function wp_add_id3_tag_data( &$metadata, $data ) {
0 commit comments