at path:
ROOT
/
wp-content
/
plugins
/
tutor
/
includes
/
tinymce_translate.php
run:
R
W
Run
droip
DIR
2026-04-14 05:34:27
R
W
Run
theme-compatibility
DIR
2026-04-14 05:34:26
R
W
Run
country.php
1 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
ecommerce-functions.php
3.76 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
tinymce_translate.php
1.38 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
translate-text.php
6.72 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
tutor-general-functions.php
53.21 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
tutor-template-functions.php
40.36 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
tutor-template-hook.php
907 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
error_log
up
📄
tinymce_translate.php
Save
<?php /** * Add translation support for external tinyMCE button * * Containing all translate able strings * * @since 1.9.7 */ if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! class_exists( '_WP_Editors' ) ) { require ABSPATH . WPINC . '/class-wp-editor.php'; } function tutor_tinymce_plugin_translation() { $strings = array( 'tutor_shortcode' => __( 'Tutor ShortCode', 'tutor' ), 'student_registration_form' => __( 'Student Registration Form', 'tutor' ), 'instructor_registration_form' => __( 'Instructor Registration Form', 'tutor' ), 'courses' => _x( 'Courses', 'tinyMCE button courses', 'tutor' ), 'courses_shortcode' => __( 'Courses Shortcode', 'tutor' ), 'courses_separate_by' => __( 'Course id, separate by (,) comma', 'tutor' ), 'exclude_course_ids' => __( 'Exclude Course IDS', 'tutor' ), 'category_ids' => __( 'Category IDS', 'tutor' ), 'order_by' => _x( 'Order By :', 'tinyMCE button order by', 'tutor' ), 'order' => _x( 'Order :', 'tinyMCE button order', 'tutor' ), 'count' => __( 'Count', 'tutor' ), ); $locale = _WP_Editors::$mce_locale; $translated = 'tinyMCE.addI18n("' . $locale . '.tutor_button", ' . json_encode( $strings ) . ");\n"; return $translated; } $strings = tutor_tinymce_plugin_translation();