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:
Sergey Biryukov 2019-05-24 01:13:44 +00:00
parent c725e9f0d8
commit 069ecb0292
1 changed files with 11 additions and 1 deletions

View File

@ -81,7 +81,17 @@ class WP_Customize_Themes_Section extends WP_Customize_Section {
<?php $this->filter_bar_content_template(); ?> <?php $this->filter_bar_content_template(); ?>
</div> </div>
<?php $this->filter_drawer_content_template(); ?> <?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&#8217;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&#8217;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 class="themes">
</ul> </ul>
<p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p> <p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p>