I18N: Merge two similar "An unexpected error occurred" strings.
Props ramiy. Fixes #47035. git-svn-id: https://develop.svn.wordpress.org/trunk@45395 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c725e9f0d8
commit
069ecb0292
@ -81,7 +81,17 @@ class WP_Customize_Themes_Section extends WP_Customize_Section {
|
||||
<?php $this->filter_bar_content_template(); ?>
|
||||
</div>
|
||||
<?php $this->filter_drawer_content_template(); ?>
|
||||
<div class="error unexpected-error" style="display: none; "><p><?php _e( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ); ?></p></div>
|
||||
<div class="error unexpected-error" style="display: none; ">
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: support forums URL */
|
||||
__( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ),
|
||||
__( 'https://wordpress.org/support/' )
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
</div>
|
||||
<ul class="themes">
|
||||
</ul>
|
||||
<p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p>
|
||||
|
Loading…
Reference in New Issue
Block a user