Changeset 29703
- Timestamp:
- 09/04/2014 02:21:13 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r29671 r29703 1703 1703 1704 1704 if ( ! _device_can_upload() ) { 1705 echo '<p>' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'http s://wordpress.org/mobile/' ) . '</p>';1705 echo '<p>' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'http://apps.wordpress.org/' ) . '</p>'; 1706 1706 return; 1707 1707 } -
trunk/src/wp-includes/class-wp-customize-control.php
r29156 r29703 743 743 public function tab_upload_new() { 744 744 if ( ! _device_can_upload() ) { 745 echo '<p>' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'http s://wordpress.org/mobile/' ) . '</p>';745 echo '<p>' . sprintf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'http://apps.wordpress.org/' ) . '</p>'; 746 746 } else { 747 747 ?> -
trunk/src/wp-includes/media-template.php
r29683 r29703 177 177 <# } #> 178 178 <?php if ( ! _device_can_upload() ) : ?> 179 <h3 class="upload-instructions"><?php printf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'http s://wordpress.org/mobile/' ); ?></h3>179 <h3 class="upload-instructions"><?php printf( __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="%s">native app for your device</a> instead.'), 'http://apps.wordpress.org/' ); ?></h3> 180 180 <?php elseif ( is_multisite() && ! is_upload_space_available() ) : ?> 181 181 <h3 class="upload-instructions"><?php _e( 'Upload Limit Exceeded' ); ?></h3>
Note: See TracChangeset
for help on using the changeset viewer.