private function render_translator_note()
    {
        if ($translators_note = get_post_meta($this->job_instance->get_original_element_id(), '_icl_translator_note', true)) {
            ?>
			<i><?php 
            _e('Note for translator', 'wpml-translation-management');
            ?>
</i>
			<br/>
			<div class="icl_cyan_box">
				<?php 
            echo $translators_note;
            ?>
			</div>
			<?php 
        }
    }
    private function output_editor_form()
    {
        ?>
		<form id="icl_tm_editor" method="post" action="">
			<input type="hidden" name="job_post_type" value="<?php 
        echo esc_attr($this->job->original_post_type);
        ?>
"/>
			<input type="hidden" name="job_post_id" value="<?php 
        echo esc_attr($this->job->original_doc_id);
        ?>
"/>
			<input type="hidden" name="job_id" value="<?php 
        echo esc_attr($this->job_instance->get_id());
        ?>
"/>

			<div id="wpml-translation-editor-wrapper"></div>
		</form>
	<?php 
    }
    /**
     * @return string[]
     */
    private function get_translation_editor_strings()
    {
        return array('dontShowAgain' => __("Don't show this again.", 'wpml-translation-management'), 'learnMore' => __('<p>The administrator has disabled term translation from the translation editor. </p>
<p>If your access permissions allow you can change this under "Translation Management" - "Multilingual Content Setup" - "Block translating taxonomy terms that already got translated". </p>
<p>Please note that editing terms from the translation editor will affect all posts that have the respective terms associated.</p>', 'wpml-translation-management'), 'warning' => __("Please be advised that editing this term's translation here will change the value of the term in general. The changes made here, will not only affect this post!", 'wpml-translation-management'), 'title' => __("Terms translation is disabled", 'wpml-translation-management'), 'confirm' => __('You have unsaved work. Are you sure you want to close without saving?', 'wpml-translation-management'), 'cancel' => __('Cancel', 'wpml-translation-management'), 'save' => __('Save', 'wpml-translation-management'), 'save_and_close' => __('Save & Close', 'wpml-translation-management'), 'loading_url' => ICL_PLUGIN_URL . '/res/img/ajax-loader.gif', 'saving' => __('Saving...', 'wpml-translation-management'), 'translation_complete' => __('Translation is complete', 'wpml-translation-management'), 'contentNonce' => wp_create_nonce('wpml_save_job_nonce', 'wpml_save_job_nonce'), 'source_lang' => __('Original', 'wpml-translation-management'), 'target_lang' => __('Translation to', 'wpml-translation-management'), 'copy_all' => __('Copy all fields from original', 'wpml-translation-management'), 'resign' => __('Resign', 'wpml-translation-management'), 'resign_translation' => __('Are you sure you want to resign from this job?', 'wpml-translation-management'), 'resign_url' => admin_url('admin.php?page=' . WPML_TM_FOLDER . '/menu/translations-queue.php&icl_tm_action=save_translation&resign=1&job_id=' . $this->job->get_id()), 'confirmNavigate' => __('You have unsaved changes!', 'wpml-translation-management'), 'copy_from_original' => __('Copy from original', 'wpml-translation-management'));
    }