| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* displays the content of the About metabox |
| 5 |
*/ |
| 6 |
|
| 7 |
if ( ! defined( 'ABSPATH' ) ) { |
| 8 |
exit; // don't access directly |
| 9 |
}; |
| 10 |
?> |
| 11 |
<p><?php |
| 12 |
printf( |
| 13 |
/* translators: %s are html tags */ |
| 14 |
esc_html__( 'Polylang is provided with an extensive %sdocumentation%s (in English only). It includes information on how to set up your multilingual site and use it on a daily basis, a FAQ, as well as a documentation for developers to adapt their plugins and themes.', 'polylang' ), |
| 15 |
'<a href="https://polylang.pro/doc/">', |
| 16 |
'</a>' |
| 17 |
); |
| 18 |
if ( ! defined( 'POLYLANG_PRO' ) ) { |
| 19 |
echo ' '; |
| 20 |
printf( |
| 21 |
/* translators: %s are html tags */ |
| 22 |
esc_html__( 'Support and extra features are available to %sPolylang Pro%s users.' ), |
| 23 |
'<a href="https://polylang.pro">', |
| 24 |
'</a>' |
| 25 |
); |
| 26 |
}?> |
| 27 |
</p> |
| 28 |
<p><?php |
| 29 |
printf( |
| 30 |
/* translators: %s are html tags */ |
| 31 |
esc_html__( 'Polylang is released under the same license as WordPress, the %sGPL%s.', 'polylang' ), |
| 32 |
'<a href="http://wordpress.org/about/gpl/">', |
| 33 |
'</a>' |
| 34 |
); |
| 35 |
|
| 36 |
|