PluginProbe
Polylang / 2.1
Polylang v2.1
3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 2.7 2.7.0.1 2.7.1 2.7.2 2.7.3 2.7.4 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.9 2.9.1 2.9.2 3.0 3.0.1 3.0.2 3.0.3 All 233 releases
polylang / settings / view-about.php

view-about.php in Polylang 2.1, at settings/view-about.php

36 lines 975 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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