194 | | ?> |
| 194 | |
| 195 | if ( '' !== $locale ) : ?> |
| 196 | <div id="translation-prompt" class="notice notice-info inline"> |
| 197 | <p> |
| 198 | <?php |
| 199 | printf( |
| 200 | /* translators: 1: The native name for the locale. 2: The WordPress translation website URL. 3: Accessibility text. */ |
| 201 | __( '<strong>Translate WordPress to %1$s:</strong> It looks like you understand %1$s. Did you know you can help translate WordPress and its plugins/themes in your language? <a href="%2$s" target="_blank">Visit this page <span class="screen-reader-text">%3$s</span></a> to get started.' ), |
| 202 | $translations[$locale]['native_name'], |
| 203 | 'https://translate.wordpress.org', |
| 204 | /* translators: Accessibility text. */ |
| 205 | __( '(opens in a new tab)' ) |
| 206 | ); |
| 207 | ?> |
| 208 | </p> |
| 209 | </div> |
| 210 | <?php endif; ?> |