File: //proc/thread-self/cwd/wp-content/plugins/wpml-string-translation/menu/string-translation.php
<?php
/** @var WPML_String_Translation $WPML_String_Translation */
global $sitepress, $WPML_String_Translation, $wpdb, $wpml_st_string_factory;
$string_settings = $WPML_String_Translation->get_strings_settings();
icl_st_reset_current_translator_notifications();
if((!isset($sitepress_settings['existing_content_language_verified']) || !$sitepress_settings['existing_content_language_verified']) /*|| 2 > count($sitepress->get_active_languages())*/){
return;
}
if ( filter_input( INPUT_GET, 'trop', FILTER_SANITIZE_NUMBER_INT ) > 0 ) {
include dirname(__FILE__) . '/string-translation-translate-options.php';
return;
} elseif ( filter_input( INPUT_GET, 'download_mo', FILTER_SANITIZE_FULL_SPECIAL_CHARS ) ) {
include dirname(__FILE__) . '/auto-download-mo.php';
return;
}
$status_filter = filter_input( INPUT_GET, 'status', FILTER_SANITIZE_FULL_SPECIAL_CHARS, FILTER_NULL_ON_FAILURE );
$status_filter_text = $status_filter;
$status_filter_lang = false;
if ( preg_match(
"#" . ICL_STRING_TRANSLATION_WAITING_FOR_TRANSLATOR . "-(.+)#",
$status_filter_text,
$matches
)
) {
$status_filter = ICL_STRING_TRANSLATION_WAITING_FOR_TRANSLATOR;
$status_filter_lang = $matches[1];
}else{
$status_filter = filter_input( INPUT_GET, 'status', FILTER_SANITIZE_NUMBER_INT, FILTER_NULL_ON_FAILURE );
}
//$status_filter = $status_filter !== false ? (int) $status_filter : null;
$context_filter = filter_input( INPUT_GET, 'context', FILTER_SANITIZE_FULL_SPECIAL_CHARS );
$search_filter = filter_input( INPUT_GET, 'search', FILTER_SANITIZE_FULL_SPECIAL_CHARS );
$exact_match = filter_input( INPUT_GET, 'em', FILTER_VALIDATE_BOOLEAN );
$active_languages = $sitepress->get_active_languages();
$icl_contexts = icl_st_get_contexts( $status_filter );
$unfiltered_context_counts = $status_filter !== false ? icl_st_get_contexts( false ) : $icl_contexts;
function context_array( $contexts ) {
$count_array = array();
$contexts = $contexts ? array_filter( $contexts ) : array();
foreach ( $contexts as $c ) {
$count_array[ $c->context ] = $c->c;
}
return $count_array;
}
$available_contexts = array_keys( context_array( $icl_contexts ) );
$unfiltered_contexts = context_array( $unfiltered_context_counts );
function _icl_string_translation_rtl_div($language) {
if (in_array($language, array('ar','he','fa'))) {
echo ' dir="rtl" style="text-align:right;direction:rtl;"';
} else {
echo ' dir="ltr" style="text-align:left;direction:ltr;"';
}
}
function _icl_string_translation_rtl_textarea($language) {
if (in_array($language, array('ar','he','fa'))) {
echo ' dir="rtl" style="text-align:right;direction:rtl;width:100%"';
} else {
echo ' dir="ltr" style="text-align:left;direction:ltr;width:100%"';
}
}
$po_importer = apply_filters( 'wpml_st_get_po_importer', null );
?>
<div class="wrap">
<h2><?php echo __('String translation', 'wpml-string-translation') ?></h2>
<?php
do_action( 'display_basket_notification', 'st_dashboard_top' );
?>
<?php if( isset( $po_importer ) && $po_importer->has_strings() ): ?>
<p><?php printf(__("These are the strings that we found in your .po file. Please carefully review them. Then, click on the 'add' or 'cancel' buttons at the %sbottom of this screen%s. You can exclude individual strings by clearing the check boxes next to them.", 'wpml-string-translation'), '<a href="#add_po_strings_confirm">', '</a>'); ?></p>
<form method="post" id="wpml_add_strings" action="<?php echo admin_url("admin.php?page=" . WPML_ST_FOLDER . "/menu/string-translation.php");?>">
<input type="hidden" id="strings_json" name="strings_json">
<?php wp_nonce_field('add_po_strings') ?>
<?php $use_po_translations = filter_input(INPUT_POST, 'icl_st_po_translations', FILTER_VALIDATE_BOOLEAN); ?>
<?php if ( $use_po_translations == true ): ?>
<input type="hidden" name="action" value="icl_st_save_strings" />
<input
type="hidden"
name="icl_st_po_language"
value="<?php echo filter_input(INPUT_POST, 'icl_st_po_language', FILTER_SANITIZE_FULL_SPECIAL_CHARS); ?>"
/>
<?php endif; ?>
<?php
$icl_st_domain = filter_input(INPUT_POST, 'icl_st_i_context_new', FILTER_SANITIZE_FULL_SPECIAL_CHARS);
$icl_st_domain = $icl_st_domain ? $icl_st_domain : filter_input(INPUT_POST, 'icl_st_i_context', FILTER_SANITIZE_FULL_SPECIAL_CHARS);
?>
<input
type="hidden"
name="icl_st_domain_name"
value="<?php echo $icl_st_domain ?>"
/>
<table id="icl_po_strings" class="widefat" cellspacing="0">
<thead>
<tr>
<th scope="col" class="manage-column column-cb check-column"><input type="checkbox" checked="checked" name="" /></th>
<th><?php echo __('String', 'wpml-string-translation') ?></th>
</tr>
</thead>
<tfoot>
<tr>
<th scope="col" class="manage-column column-cb check-column"><input type="checkbox" checked="checked" name="" /></th>
<th><?php echo __('String', 'wpml-string-translation') ?></th>
</tr>
</tfoot>
<tbody>
<?php $k = -1; foreach( $po_importer->get_strings( ) as $str ): $k++; ?>
<tr>
<td><input class="icl_st_row_cb" type="checkbox" name="icl_strings_selected[]"
<?php if($str['exists'] || $use_po_translations !== true): ?>checked="checked"<?php endif;?> value="<?php echo $k ?>" /></td>
<td>
<input type="text" name="icl_strings[]" value="<?php echo esc_attr($str['string']) ?>" readonly="readonly" style="width:100%;" size="100" />
<?php if( $use_po_translations === true ):?>
<input type="text" name="icl_translations[]" value="<?php echo esc_attr($str['translation']) ?>" readonly="readonly" style="width:100%;<?php if($str['fuzzy']):?>;background-color:#ffecec<?php endif; ?>" size="100" />
<input type="hidden" name="icl_fuzzy[]" value="<?php echo $str['fuzzy'] ?>" />
<input type="hidden" name="icl_name[]" value="<?php echo $str['name'] ?>" />
<input type="hidden" name="icl_context[]" value="<?php echo $str['context'] ?>" />
<?php endif; ?>
<?php if($str['name'] != md5($str['string'])): ?>
<i><?php printf(__('Name: %s', 'wpml-string-translation'), $str['name']) ?></i><br />
<?php endif ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<a name="add_po_strings_confirm"></a>
<p><span style="float: left"><input class="js-wpml-btn-cancel button" type="button" value="<?php echo __( 'Cancel', 'wpml-string-translation' ); ?>" onclick="location.href='admin.php?page=<?php echo htmlspecialchars( $_GET['page'], ENT_QUOTES ) ?>'"/>
<input class="js-wpml-btn-add-strings button-primary" type="submit" value="<?php echo __('Add selected strings', 'wpml-string-translation'); ?>" /></span><span class="spinner" style="float: left"></span>
</p>
</form>
<?php else: ?>
<p style="line-height:220%;">
<?php echo __('Select which strings to display:', 'wpml-string-translation'); ?>
<select name="icl_st_filter_status">
<?php
$selected = selected(false, $status_filter, false);
?>
<option value="" <?php echo $selected;?>>
<?php echo __('All strings', 'wpml-string-translation') ?>
</option>
<?php
$selected = selected(ICL_TM_COMPLETE, $status_filter, false);
?>
<option value="<?php echo ICL_TM_COMPLETE ?>" <?php echo $selected;?>>
<?php echo WPML_ST_String_Statuses::get_status( ICL_TM_COMPLETE ) ?>
</option>
<?php
if ( icl_st_is_translator() ) {
if ( $icl_st_pending = icl_st_get_pending_string_translations_stats() ) {
foreach ( $icl_st_pending as $lang => $count ) {
$lang_details = $sitepress->get_language_details( $lang );
$selected = '';
if ( isset( $status_filter_lang ) ) {
$selected = selected( $lang, $status_filter_lang, false );
}
?>
<option value="<?php echo ICL_TM_WAITING_FOR_TRANSLATOR . '-' . $lang ?>" <?php echo $selected; ?>>
<?php printf( __( 'Pending %s translation (%d)', 'wpml-string-translation' ), $lang_details[ 'display_name' ], $count ) ?>
</option>
<?php
}
}
} else {
$selected = selected(ICL_TM_NOT_TRANSLATED, $status_filter, false);
?>
<option value="<?php echo ICL_TM_NOT_TRANSLATED ?>" <?php echo $selected; ?>>
<?php echo __( 'Translation needed', 'wpml-string-translation' ) ?>
</option>
<?php
$selected = selected(ICL_TM_WAITING_FOR_TRANSLATOR, $status_filter, false);
?>
<option value="<?php echo ICL_TM_WAITING_FOR_TRANSLATOR ?>" <?php echo $selected; ?>>
<?php echo __( 'Waiting for translator', 'wpml-string-translation' ) ?>
</option>
<?php
}
?>
</select>
<?php if ( ! empty( $icl_contexts ) ): ?>
<span style="white-space:nowrap">
<?php echo __( 'Select strings within domain:', 'wpml-string-translation' ) ?>
<select name="icl_st_filter_context">
<option value=""
<?php if ( $context_filter === false ): ?>selected="selected"<?php endif; ?>><?php echo __( 'All domains', 'wpml-string-translation' ) ?></option>
<?php foreach ( $icl_contexts as $v ): ?>
<?php
if ( ! $v->context ) {
$v->context = WPML_ST_Strings::EMPTY_CONTEXT_LABEL;
}
?>
<option value="<?php echo esc_attr( $v->context ) ?>"
data-unfiltered-count="<?php echo( isset( $unfiltered_contexts[ $v->context ] ) ? $unfiltered_contexts[ $v->context ] : 0 ) ?>"
<?php if ( $context_filter == filter_var( $v->context, FILTER_SANITIZE_FULL_SPECIAL_CHARS ) ): ?>selected="selected"<?php endif; ?>><?php echo esc_html( $v->context ) . ' (' . $v->c . ')'; ?></option>
<?php endforeach; ?>
</select>
</span>
<?php endif; ?>
<span style="white-space:nowrap">
<label>
<?php echo __('Search for:', 'wpml-string-translation')?>
<input type="text" id="icl_st_filter_search" value="<?php echo $search_filter ?>" />
</label>
<label>
<input type="checkbox" id="icl_st_filter_search_em" value="1" <?php if($exact_match):?>checked="checked"<?php endif;?> />
<?php echo __('Exact match', 'wpml-string-translation')?>
</label>
<input class="button" type="button" value="<?php _e('Search', 'wpml-string-translation')?>" id="icl_st_filter_search_sb" />
</span>
<?php if($search_filter): ?>
<span style="white-space:nowrap">
<?php printf(__('Showing only strings that contain %s', 'wpml-string-translation'), '<i>' . esc_html($search_filter). '</i>') ; ?>
<input class="button" type="button" value="<?php _e('Exit search', 'wpml-string-translation')?>" id="icl_st_filter_search_remove" />
</span>
<?php endif; ?>
</p>
<?php if( ! empty( $icl_contexts ) ): ?>
<p><a href="#" id="wpml-language-of-domains-link"><?php _e( 'Languages of domains', 'wpml-string-translation' ); ?></a></p>
<?php endif; ?>
<?php
$string_translation_table_ui = new WPML_String_Translation_Table( icl_get_string_translations() );
$string_translation_table_ui->render( );
$change_string_language_dialog = new WPML_Change_String_Language_Dialog( $wpdb, $sitepress );
$change_string_language_dialog->render( );
if( ! empty( $icl_contexts ) ) {
$string_factory = new WPML_ST_String_Factory( $wpdb );
$change_string_domain_language_dialog = new WPML_Change_String_Domain_Language_Dialog( $wpdb, $sitepress, $string_factory );
$change_string_domain_language_dialog->render( $icl_contexts );
}
$get_show_results = filter_input( INPUT_GET, 'show_results', FILTER_SANITIZE_FULL_SPECIAL_CHARS );
$get_page = filter_input( INPUT_GET, 'page', FILTER_SANITIZE_URL );
?>
<?php if($wp_query->found_posts > 10): ?>
<div class="tablenav">
<?php
$paged = filter_input( INPUT_GET, 'paged', FILTER_SANITIZE_NUMBER_INT );
$paged = $paged && $get_show_results !== 'all' ? $paged : 1;
$page_links = paginate_links( array(
'base' => add_query_arg('paged', '%#%' ),
'format' => '',
'prev_text' => '«',
'next_text' => '»',
'total' => $wp_query->max_num_pages,
'current' => $paged,
'add_args' => isset($icl_translation_filter)?$icl_translation_filter:array()
)
);
$query_url_params = '?page=' . $get_page;
$query_url_params .= '&paged=';
$query_url_params .= $paged;
$query_url_params .= ( $context_filter !== null ? ( '&context=' . $context_filter ) : '' );
$query_url_params .= ( $status_filter !== null ? ( '&status=' . $status_filter ) : '' );
?>
<?php if( $get_show_results === 'all' ): ?>
<div class="tablenav-pages">
<a href="admin.php<?php echo $query_url_params ?>"><?php printf(__('Display %d results per page', 'wpml-string-translation'), $sitepress_settings['st']['strings_per_page']); ?></a>
</div>
<?php endif; ?>
<div class="tablenav-pages">
<?php if ( $page_links ): ?>
<?php $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s', 'wpml-string-translation' ) . '</span>%s',
number_format_i18n( ( $paged - 1 ) * $wp_query->query_vars['posts_per_page'] + 1 ),
number_format_i18n( min( $paged * $wp_query->query_vars['posts_per_page'], $wp_query->found_posts ) ),
number_format_i18n( $wp_query->found_posts ),
$page_links
); echo $page_links_text;
?>
<?php endif; ?>
<?php if( !$get_show_results ): ?>
<?php echo __('Strings per page:', 'wpml-string-translation')?>
<?php
$spp_qsa = '';
$params = array_filter(
array(
'&context=' => $context_filter,
'&status=' => $status_filter,
'&search=' => $search_filter,
'&em=' => $exact_match
)
);
foreach ( $params as $key => $p ) {
$spp_qsa .= $key . $p;
}
$strings_per_page = $wp_query->query_vars['posts_per_page'];
?>
<select name="icl_st_per_page"
onchange="location.href='admin.php?page=<?php echo $get_page ?><?php echo $spp_qsa ?>&strings_per_page='+this.value">
<option value="10"<?php if ( $strings_per_page == 10 ) {
echo ' selected="selected"';
} ?>>10
</option>
<option value="20"<?php if ( $strings_per_page == 20 ) {
echo ' selected="selected"';
} ?>>20
</option>
<option value="50"<?php if ( $strings_per_page == 50 ) {
echo ' selected="selected"';
} ?>>50
</option>
<option value="100"<?php if ( $strings_per_page == 100 ) {
echo ' selected="selected"';
} ?>>100
</option>
</select>
<?php
$url = 'admin.php?page=' . $_GET['page'] . '&show_results=all';
if (isset( $_GET['context'] )) {
$url .= '&context=' . $_GET['context'];
}
if ( isset( $_GET[ 'status' ] ) ) {
$url .= '&status=' . $_GET['status'];
}
$url = esc_url( $url );
?>
<a href="<?php echo $url; ?>"><?php echo __( 'Display all results', 'wpml-string-translation' ); ?></a>
<?php endif; ?>
</div>
</div>
<?php endif; ?>
<?php if(current_user_can('manage_options')): // the rest is only for admins. not for editors ?>
<span class="subsubsub">
<input type="hidden" id="_icl_nonce_dstr"
value="<?php echo wp_create_nonce( 'icl_st_delete_strings_nonce' ) ?>"/>
<div id="wpml-st-package-incomplete" style="display:none;color:red;"><?php echo __( "You have selected strings belonging to a package. Please select all strings from the affected package or unselect these strings.", 'wpml-string-translation' ) ?></div>
<input type="button" class="button-secondary" id="icl_st_delete_selected"
value="<?php echo __( 'Delete selected strings', 'wpml-string-translation' ) ?>"
data-confirm="<?php echo __( "Are you sure you want to delete these strings?\nTheir translations will be deleted too.", 'wpml-string-translation' ) ?>"
disabled="disabled"/>
<input type="button" class="button-secondary" id="icl_st_change_lang_selected"
value="<?php echo __( 'Change language of selected strings', 'wpml-string-translation' ) ?>"
disabled="disabled"/>
</span>
<br clear="all" />
<br />
<?php do_action( 'wpml_st_below_menu', $status_filter_lang, 10, 2 ) ?>
<br style="clear:both;" />
<div id="dashboard-widgets-wrap">
<div id="dashboard-widgets" class="metabox-holder">
<div class="postbox-container" style="width: 49%;">
<div id="normal-sortables-stsel" class="meta-box-sortables ui-sortable">
<div id="dashboard_wpml_stsel_1" class="postbox">
<div class="handlediv" title="<?php echo __('Click to toggle', 'wpml-string-translation'); ?>">
<br/>
</div>
<h3 class="hndle">
<span><?php echo __('Track where strings appear on the site', 'wpml-string-translation')?></span>
</h3>
<div class="inside">
<p class="sub"><?php echo __("WPML can keep track of where strings are used on the public pages. Activating this feature will enable the 'view in page' functionality and make translation easier.", 'wpml-string-translation')?></p>
<form id="icl_st_track_strings" name="icl_st_track_strings" action="">
<?php wp_nonce_field('icl_st_track_strings_nonce', '_icl_nonce'); ?>
<p class="icl_form_errors" style="display:none"></p>
<ul>
<li>
<input type="hidden" name="icl_st[track_strings]" value="0" />
<?php
$track_strings = array_key_exists( 'track_strings', $string_settings ) && $string_settings['track_strings'];
$track_strings_checked = checked( true, $track_strings, false );
$track_strings_display = ' style="color: red;' . (! $track_strings ? 'display: none;' : '') . '""';
$url = 'https://wpml.org/documentation/getting-started-guide/string-translation/#track-strings';
$message_sentences = array();
$anchor_text = _x( 'String Tracking', 'String Tracking warning: sentence 1, anchor text', 'wpml-string-translation' );
$message_sentences[] = _x( '%s allows you to see where strings come from, so you can translate them accurately.', 'String Tracking warning: sentence 1', 'wpml-string-translation' );
$message_sentences[] = _x( 'It needs to parse the PHP source files and the output HTML.', 'String Tracking warning: sentence 2', 'wpml-string-translation' );
$message_sentences[] = _x( 'This feature is CPU-intensive and should only be used while you are developing sites.', 'String Tracking warning: sentence 3', 'wpml-string-translation' );
$message_sentences[] = _x( 'Remember to turn it off before going to production, to avoid performance problems.', 'String Tracking warning: sentence 4', 'wpml-string-translation' );
$anchor = '<a href="' . $url . '" target="_blank">' . $anchor_text . '</a>';
$message = sprintf( implode( ' ', $message_sentences ), $anchor );
?>
<input type="checkbox" id="track_strings" name="icl_st[track_strings]" value="1" <?php echo $track_strings_checked; ?> />
<label for="track_strings"><?php _e( 'Track where strings appear on the site', 'wpml-string-translation' ); ?></label>
<p class="js-track-strings-note" <?php echo $track_strings_display; ?>>
<?php echo $message; ?>
</p>
<p><a href="https://wpml.org/?p=9073" target="_blank"><?php _e('Performance considerations', 'wpml-string-translation') ?> »</a></p>
</li>
<li>
<?php
$hl_color_default = '#FFFF00';
$hl_color = !empty($string_settings['hl_color']) ? $string_settings['hl_color'] : $hl_color_default;
$hl_color_label = __( 'Highlight color for strings', 'wpml-string-translation' );
$color_picker_args = array(
'input_name_group' => 'icl_st',
'input_name_id' => 'hl_color',
'default' => $hl_color_default,
'value' => $hl_color,
'label' => $hl_color_label,
);
$wpml_color_picker = new WPML_Color_Picker($color_picker_args);
echo $wpml_color_picker->get_current_language_color_selector_control();
?>
</li>
</ul>
<p>
<input class="button-secondary" type="submit" name="iclt_st_save" value="<?php _e('Apply', 'wpml-string-translation')?>" />
<span class="icl_ajx_response" id="icl_ajx_response2" style="display:inline"></span>
</p>
</form>
</div>
</div>
<div id="dashboard_wpml_stsel_1.5" class="postbox wpml-st-exclude-contexts">
<div class="handlediv" title="<?php echo esc_attr__('Click to toggle', 'wpml-string-translation'); ?>">
<br/>
</div>
<h3 class="hndle">
<span><?php echo esc_html__('Auto register strings for translation', 'wpml-string-translation')?></span>
</h3>
<div class="inside">
<p class="sub"><?php echo esc_html__('WPML can automatically register strings for translation. This allows you to translate user-generated content with minimal PHP code.', 'wpml-string-translation')?></p>
<p class="wpml-st-excluded-info"
data-all-included="<?php echo esc_attr__('Strings from all text domains will be auto-registered', 'wpml-string-translation') ?>"
data-all-excluded="<?php echo esc_attr__('Strings from all text domains are excluded', 'wpml-string-translation') ?>"
data-excluded-preview="<?php echo esc_attr__('You excluded: ', 'wpml-string-translation') ?>"
data-included-preview="<?php echo esc_attr__('You included: ', 'wpml-string-translation') ?>"
data-preview-suffix="<?php echo esc_attr__('and others', 'wpml-string-translation') ?>"
>
</p>
<p>
<input type="button"
class="button-secondary js-wpml-autoregister-edit-contexts"
value="<?php echo esc_attr__('Edit', 'wpml-string-translation')?>"
/>
</p>
<div class="wpml-st-exclude-contexts-box"
style="display:none;"
title="<?php echo esc_attr__('Auto-register strings from these text domains', 'wpml-string-translation');?>"
>
<form method="post" action="" data-nonce="<?php echo wp_create_nonce( 'wpml-st-cancel-button' ); ?>" >
<?php
$exclude = new WPML_Autoregister_Context_Exclude( $wpdb, new WPML_ST_Settings() );
$excluded = $exclude->get_excluded_contexts();
$has_excluded = count($excluded) > 0;
?>
<div id="wpml-st-filter-and-select-all-box">
<input type="input" name="search" placeholder="<?php echo esc_attr__('Search', 'wpml-string-translation')?>" />
<br/>
<p>
<input type="checkbox" name="select_all" <?php checked( false, $has_excluded); ?> />
<span><?php esc_html__('Select all', 'wpml-string-translation')?></span>
</p>
</div>
<div class="contexts">
<?php foreach ($exclude->get_contexts_and_their_exclude_status() as $context => $status): ?>
<?php if(strlen($context)): ?>
<p>
<input
type="checkbox"
name="<?php echo WPML_Autoregister_Context_Exclude::SETTING_KEY ?>[]"
value="<?php echo $context ?>"
<?php checked(false, $status); ?>
/>
<span><?php echo $context; ?></span>
</p>
<?php endif; ?>
<?php endforeach; ?>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="postbox-container" style="width: 49%;">
<div id="normal-sortables-poie" class="meta-box-sortables ui-sortable">
<div id="dashboard_wpml_st_poie" class="postbox">
<div class="handlediv" title="<?php echo __('Click to toggle', 'wpml-string-translation'); ?>">
<br/>
</div>
<h3 class="hndle">
<span><?php echo __('Import / export .po', 'wpml-string-translation')?></span>
</h3>
<div class="inside">
<h5><?php echo __('Import', 'wpml-string-translation')?></h5>
<form id="icl_st_po_form" action="" name="icl_st_po_form" method="post" enctype="multipart/form-data">
<?php wp_nonce_field('icl_po_form') ?>
<p class="sub">
<label for="icl_po_file"><?php echo __('.po file:', 'wpml-string-translation')?></label>
<input id="icl_po_file" class="button primary" type="file" name="icl_po_file" />
</p>
<p class="sub" style="line-height:2.3em">
<input type="checkbox" name="icl_st_po_translations" id="icl_st_po_translations" />
<label for="icl_st_po_translations"><?php echo __('Also create translations according to the .po file', 'wpml-string-translation')?></label>
<select name="icl_st_po_language" id="icl_st_po_language" style="display:none">
<?php foreach($active_languages as $al): if($al['code']==$string_settings['strings_language']) continue; ?>
<option value="<?php echo esc_attr( $al['code'] ); ?>"><?php echo esc_html( $al['display_name'] ); ?></option>
<?php endforeach; ?>
</select>
</p>
<p class="sub" style="line-height:2.3em" >
<?php echo __('Select what the strings are for:', 'wpml-string-translation');?>
<?php if(!empty($available_contexts)): ?>
<span>
<select name="icl_st_i_context">
<option value="">-------</option>
<?php foreach($available_contexts as $v):?>
<option value="<?php echo esc_attr($v)?>" <?php if($context_filter == $v ):?>selected="selected"<?php endif;?>><?php echo $v; ?></option>
<?php endforeach; ?>
</select>
<a href="#" onclick="var __nxt = jQuery(this).parent().next(); jQuery(this).prev().val(''); jQuery(this).parent().fadeOut('fast',function(){__nxt.fadeIn('fast')});return false;"><?php echo __('new','wpml-string-translation')?></a>
</span>
<?php endif; ?>
<span <?php if(!empty($available_contexts)):?>style="display:none"<?php endif ?>>
<input type="text" name="icl_st_i_context_new" />
<?php if(!empty($available_contexts)):?>
<a href="#" onclick="var __prv = jQuery(this).parent().prev(); jQuery(this).prev().val(''); jQuery(this).parent().fadeOut('fast',function(){__prv.fadeIn('fast')});return false;"><?php echo __('select from existing','wpml-string-translation')?></a>
<?php endif ?>
</span>
</p>
<p>
<input class="button" name="icl_po_upload" id="icl_po_upload" type="submit" value="<?php echo __('Submit', 'wpml-string-translation')?>" />
<span id="icl_st_err_domain" class="icl_error_text" style="display:none"><?php echo __('Please enter a domain!', 'wpml-string-translation')?></span>
<span id="icl_st_err_po" class="icl_error_text" style="display:none"><?php echo __('Please select the .po file to upload!', 'wpml-string-translation')?></span>
</p>
</form>
<?php if(!empty($icl_contexts)):?>
<h5><?php echo __('Export strings into .po/.pot file', 'wpml-string-translation')?></h5>
<?php
if ( version_compare( WPML_ST_VERSION, '2.2', '<=' ) ) {
?>
<div class="below-h2 error">
<?php echo __( 'PO export may be glitchy. We are working to fix it.', 'wpml-string-translation' ); ?>
</div>
<?php
}
?>
<form method="post" action="">
<?php wp_nonce_field('icl_po_export') ?>
<p>
<?php echo __('Select domain:', 'wpml-string-translation')?>
<select name="icl_st_e_context" id="icl_st_e_context">
<?php foreach($icl_contexts as $v):?>
<option value="<?php echo esc_attr($v->context)?>" <?php if($context_filter == $v->context ):?>selected="selected"<?php endif;?>><?php echo $v->context . ' ('.$v->c.')'; ?></option>
<?php endforeach; ?>
</select>
</p>
<p style="line-height:2.3em">
<input type="checkbox" name="icl_st_pe_translations" id="icl_st_pe_translations" checked="checked" value="1" onchange="if(jQuery(this).attr('checked'))jQuery('#icl_st_e_language').fadeIn('fast'); else jQuery('#icl_st_e_language').fadeOut('fast')" />
<label for="icl_st_pe_translations"><?php echo __('Also include translations', 'wpml-string-translation')?></label>
<select name="icl_st_e_language" id="icl_st_e_language">
<?php foreach($active_languages as $al): if($al['code']==$string_settings['strings_language']) continue; ?>
<option value="<?php echo esc_attr( $al['code'] ); ?>"><?php echo esc_html( $al['display_name'] ); ?></option>
<?php endforeach; ?>
</select>
</p>
<p><input type="submit" class="button-secondary" name="icl_st_pie_e" value="<?php echo __('Submit', 'wpml-string-translation')?>" /></p>
<?php endif ?>
</form>
</div>
</div>
</div>
</div>
<div class="postbox-container" style="width: 49%;">
<div id="normal-sortables-moreoptions" class="meta-box-sortables ui-sortable">
<div id="dashboard_wpml_st_poie" class="postbox">
<div class="handlediv" title="<?php echo __('Click to toggle', 'wpml-string-translation'); ?>">
<br/>
</div>
<h3 class="hndle">
<span><?php echo __('More options', 'wpml-string-translation')?></span>
</h3>
<div class="inside">
<form id="icl_st_more_options" name="icl_st_more_options" method="post">
<?php wp_nonce_field('icl_st_more_options_nonce', '_icl_nonce') ?>
<div>
<?php
$editable_roles = get_editable_roles();
if(!isset($string_settings['translated-users'])) $string_settings['translated-users'] = array();
$tnames = array();
foreach($editable_roles as $role => $details){
if(in_array($role, $string_settings['translated-users'])){
$tnames[] = translate_user_role($details['name'] );
}
}
$tustr = '<span id="icl_st_tusers_list">';
if(!empty($tnames)){
$tustr .= join(', ' , array_map('translate_user_role', $tnames));
}else{
$tustr = __('none', 'wpml-string-translation');
}
$tustr .= '</span>';
$tustr .= ' <a href="#" onclick="jQuery(\'#icl_st_tusers\').slideToggle();return false;">' . __('edit', 'wpml-string-translation') . '</a>';
?>
<?php printf(__('Translating users of types: %s', 'wpml-string-translation'), $tustr); ?>
<div id="icl_st_tusers" style="padding:6px;display: none;">
<?php
foreach ( $editable_roles as $role => $details ) {
$name = translate_user_role($details['name'] );
$checked = in_array($role, (array)$string_settings['translated-users']) ? ' checked="checked"' : '';
?>
<label><input type="checkbox" name="users[<?php echo $role ?>]" value="1"<?php echo $checked ?>/> <span><?php echo $name ?></span></label>
<?php
}
?>
</div>
</div>
<p class="submit">
<input class="button-secondary" type="submit" value="<?php esc_attr_e('Apply', 'wpml-string-translation') ?>" />
<span class="icl_ajx_response" id="icl_ajx_response4" style="display:inline"></span>
</p>
</form>
</div>
</div>
</div>
</div>
</div>
<br clear="all" /><br />
<a href="admin.php?page=<?php echo WPML_ST_FOLDER ?>/menu/string-translation.php&trop=1"><?php _e('Translate texts in admin screens »', 'wpml-string-translation'); ?></a>
<?php endif; //if(current_user_can('manage_options') ?>
<?php endif; ?>
<?php do_action('icl_menu_footer'); ?>
</div>