| @@ -1,9 +1,8 @@ | ||
| 1 | 1 | <?php |
| 2 | + | |
| 2 | 3 | /** |
| 3 | 4 | * Displays the content of the About metabox |
| 4 | - * | |
| 5 | - * @package Polylang | |
| 6 | 5 | */ |
| 7 | 6 | |
| 8 | 7 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | 8 | exit; // Don't access directly |
| @@ -12,9 +11,9 @@ | ||
| 12 | 11 | <p> |
| 13 | 12 | <?php |
| 14 | 13 | printf( |
| 15 | 14 | /* 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' ), | |
| 15 | + esc_html__( 'Polylang is provided with an extensive %1$sdocumentation%2$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' ), | |
| 17 | 16 | '<a href="https://polylang.pro/doc/">', |
| 18 | 17 | '</a>' |
| 19 | 18 | ); |
| 20 | 19 | if ( ! defined( 'POLYLANG_PRO' ) ) { |
| @@ -27,4 +26,15 @@ | ||
| 27 | 26 | ); |
| 28 | 27 | } |
| 29 | 28 | ?> |
| 30 | 29 | </p> |
| 30 | +<p> | |
| 31 | + <?php | |
| 32 | + printf( | |
| 33 | + /* translators: %1$s is link start tag, %2$s is link end tag. */ | |
| 34 | + esc_html__( 'Polylang is released under the same license as WordPress, the %1$sGPL%2$s.', 'polylang' ), | |
| 35 | + '<a href="http://wordpress.org/about/gpl/">', | |
| 36 | + '</a>' | |
| 37 | + ); | |
| 38 | + ?> | |
| 39 | +</p> | |
| 40 | + | |