| 1 |
<?php |
| 2 |
/** |
| 3 |
* Displays the content of the About metabox |
| 4 |
* |
| 5 |
* @package Polylang |
| 6 |
*/ |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
exit; // Don't access directly |
| 10 |
}; |
| 11 |
?> |
| 12 |
<p> |
| 13 |
<?php |
| 14 |
printf( |
| 15 |
/* translators: %1$s is link start tag, %2$s is link end tag. */ |
| 16 |
esc_html__( 'Polylang is provided with an extensive %1$sdocumentation%2$s (in English). It includes information on how to set up your multilingual site and use it on a daily basis; FAQs, and documentation for developers to adapt their plugins and themes.', 'polylang' ), |
| 17 |
'<a href="https://polylang.pro/doc/">', |
| 18 |
'</a>' |
| 19 |
); |
| 20 |
if ( ! defined( 'POLYLANG_PRO' ) ) { |
| 21 |
echo ' '; |
| 22 |
printf( |
| 23 |
/* translators: %1$s is link start tag, %2$s is link end tag. */ |
| 24 |
esc_html__( 'Support and extra features are available to %1$sPolylang Pro%2$s users.', 'polylang' ), |
| 25 |
'<a href="https://polylang.pro">', |
| 26 |
'</a>' |
| 27 |
); |
| 28 |
} |
| 29 |
?> |
| 30 |
</p> |
| 31 |
|