|
Server IP : 10.131.40.8 / Your IP : 216.73.216.37 Web Server : Apache System : Linux webd008.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : ludmqhh ( 137773) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/ludmqhh/www/hotel-forum/wp-content/plugins/polylang/settings/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php /** * Displays the strings translations tab in Polylang settings * * @package Polylang * * @var PLL_Table_String $string_table An object representing the translations list table. */ defined( 'ABSPATH' ) || exit; ?> <div class="form-wrap"> <form id="string-translation" method="post" action="<?php echo esc_url( add_query_arg( 'noheader', 'true' ) ); ?>"> <input type="hidden" name="pll_action" value="string-translation" /> <?php $string_table->search_box( __( 'Search translations', 'polylang' ), 'translations' ); wp_nonce_field( 'string-translation', '_wpnonce_string-translation' ); $string_table->display(); printf( '<br /><label><input name="clean" type="checkbox" value="1" /> %s</label>', esc_html__( 'Clean strings translation database', 'polylang' ) ); ?> <p><?php esc_html_e( 'Use this to remove unused strings from database, for example after a plugin has been uninstalled.', 'polylang' ); ?></p> <?php submit_button(); // Since WP 3.1 ?> </form> <div class="metabox-holder"> <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); do_meta_boxes( 'languages_page_mlang_strings', 'normal', array() ); ?> </div> </div>
