// shows only when translation polling is on and there are translations in progress
$ICL_Pro_Translation->get_icl_manually_tranlations_box('icl_cyan_box');
?>
        <?php 
if (count($active_languages = $sitepress->get_active_languages()) > 1) {
    ?>
            <div><a href="javascript:void(0)" onclick="jQuery(this).parent().next('.wrapper').slideToggle();" 
                style="display:block; padding:5px; border: 1px solid #eee; margin-bottom:2px; background-color: #F7F7F7;"><?php 
    _e('Content translation', 'wpml-translation-management');
    ?>
</a>
            </div>
            <div class="wrapper" style="display:none; padding: 5px 10px; border: 1px solid #eee; border-top: 0px; margin:-11px 0 2px 0;">
            <?php 
    $your_translators = TranslationManagement::get_blog_translators();
    $other_service_translators = TranslationManagement::icanlocalize_translators_list();
    if (!empty($your_translators) || !empty($other_service_translators)) {
        echo '<p><strong>' . __('Your translators', 'wpml-translation-management') . '</strong></p><ul>';
        if (!empty($your_translators)) {
            foreach ($your_translators as $your_translator) {
                echo '<li>';
                if ($current_user->ID == $your_translator->ID) {
                    $edit_link = 'profile.php';
                } else {
                    $edit_link = esc_url(add_query_arg('wp_http_referer', urlencode(esc_url(stripslashes($_SERVER['REQUEST_URI']))), "user-edit.php?user_id={$your_translator->ID}"));
                }
                echo '<a href="' . $edit_link . '"><strong>' . $your_translator->display_name . '</strong></a> - ';
                foreach ($your_translator->language_pairs as $from => $lp) {
                    $tos = array();
                    foreach ($lp as $to => $null) {
                        $tos[] = $active_languages[$to]['display_name'];