| 305 | | /* translators: 1: plugin name, 2: plugin author */ |
| 306 | | echo '<li>', sprintf( __( '<strong>%1$s</strong> by <em>%2$s</em> (will also <strong>delete its data</strong>)' ), $plugin['Name'], $plugin['AuthorName'] ), '</li>'; |
| | 305 | echo '<li>'; |
| | 306 | printf( |
| | 307 | /* translators: 1: plugin name, 2: plugin author */ |
| | 308 | __( '%1$s by %2$s (will also <strong>delete its data</strong>)' ), |
| | 309 | '<strong>' . $plugin['Name'] . '</strong>', |
| | 310 | '<em>' . $plugin['AuthorName'] . '</em>' |
| | 311 | ); |
| | 312 | echo '</li>'; |
| 309 | | /* translators: 1: plugin name, 2: plugin author */ |
| 310 | | echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), $plugin['Name'], $plugin['AuthorName'] ), '</li>'; |
| | 315 | echo '<li>'; |
| | 316 | printf( |
| | 317 | /* translators: 1: plugin name, 2: plugin author */ |
| | 318 | __( '%1$s by %2$s' ), |
| | 319 | '<strong>' . $plugin['Name'] . '</strong>', |
| | 320 | '<em>' . $plugin['AuthorName'] . '</em>' |
| | 321 | ); |
| | 322 | echo '</li>'; |