Version Description
(2017-11-17) =
* Compatibility update for WPML 3.8
* Added filter black_studio_tinymce_widget_additional_fields
* Fixed issue on Page Builder Widgets being inadvertently translated
* Updated translations
Download this release
Release Info
Developer | marcochiesi |
Plugin | Black Studio TinyMCE Widget |
Version | 2.6.0 |
Comparing to | |
See all releases |
Code changes from version 2.5.1 to 2.6.0
- black-studio-tinymce-widget.php +3 -3
- includes/class-admin.php +2 -2
- includes/class-compatibility-plugins.php +72 -13
- includes/class-widget.php +9 -3
- languages/black-studio-tinymce-widget-cs_CZ.mo +0 -0
- languages/black-studio-tinymce-widget-cs_CZ.po +16 -3
- languages/black-studio-tinymce-widget-da_DK.mo +0 -0
- languages/black-studio-tinymce-widget-da_DK.po +16 -3
- languages/black-studio-tinymce-widget-de_DE.mo +0 -0
- languages/black-studio-tinymce-widget-de_DE.po +16 -3
- languages/black-studio-tinymce-widget-el.mo +0 -0
- languages/black-studio-tinymce-widget-el.po +16 -3
- languages/black-studio-tinymce-widget-en_GB.mo +0 -0
- languages/black-studio-tinymce-widget-en_GB.po +16 -3
- languages/black-studio-tinymce-widget-es_ES.mo +0 -0
- languages/black-studio-tinymce-widget-es_ES.po +16 -3
- languages/black-studio-tinymce-widget-es_MX.mo +0 -0
- languages/black-studio-tinymce-widget-es_MX.po +16 -3
- languages/black-studio-tinymce-widget-fa_IR.mo +0 -0
- languages/black-studio-tinymce-widget-fa_IR.po +16 -3
- languages/black-studio-tinymce-widget-fi.mo +0 -0
- languages/black-studio-tinymce-widget-fi.po +16 -3
- languages/black-studio-tinymce-widget-fr_FR.mo +0 -0
- languages/black-studio-tinymce-widget-fr_FR.po +17 -4
- languages/black-studio-tinymce-widget-id_ID.mo +0 -0
- languages/black-studio-tinymce-widget-id_ID.po +16 -3
- languages/black-studio-tinymce-widget-it_IT.mo +0 -0
- languages/black-studio-tinymce-widget-it_IT.po +23 -24
- languages/black-studio-tinymce-widget-lt_LT.mo +0 -0
- languages/black-studio-tinymce-widget-lt_LT.po +16 -3
- languages/black-studio-tinymce-widget-nl_NL.mo +0 -0
- languages/black-studio-tinymce-widget-nl_NL.po +16 -3
- languages/black-studio-tinymce-widget-oc.mo +0 -0
- languages/black-studio-tinymce-widget-oc.po +16 -3
- languages/black-studio-tinymce-widget-pl_PL.mo +0 -0
- languages/black-studio-tinymce-widget-pl_PL.po +16 -3
- languages/black-studio-tinymce-widget-pt_BR.mo +0 -0
- languages/black-studio-tinymce-widget-pt_BR.po +16 -3
- languages/black-studio-tinymce-widget-ru_RU.mo +0 -0
- languages/black-studio-tinymce-widget-ru_RU.po +16 -3
- languages/black-studio-tinymce-widget-sk_SK.mo +0 -0
- languages/black-studio-tinymce-widget-sk_SK.po +16 -3
- languages/black-studio-tinymce-widget-sv_SE.mo +0 -0
- languages/black-studio-tinymce-widget-sv_SE.po +20 -6
- languages/black-studio-tinymce-widget-uk.mo +0 -0
- languages/black-studio-tinymce-widget-uk.po +16 -3
- languages/black-studio-tinymce-widget.pot +119 -106
- readme.txt +56 -50
black-studio-tinymce-widget.php
CHANGED
@@ -3,9 +3,9 @@
|
|
3 |
Plugin Name: Black Studio TinyMCE Widget
|
4 |
Plugin URI: https://wordpress.org/plugins/black-studio-tinymce-widget/
|
5 |
Description: Adds a new "Visual Editor" widget type based on the native WordPress TinyMCE editor.
|
6 |
-
Version: 2.
|
7 |
Author: Black Studio
|
8 |
-
Author URI:
|
9 |
Requires at least: 3.1
|
10 |
Tested up to: 4.8
|
11 |
License: GPLv3
|
@@ -35,7 +35,7 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Plugin' ) ) {
|
|
35 |
* @var string
|
36 |
* @since 2.0.0
|
37 |
*/
|
38 |
-
public static $version = '2.
|
39 |
|
40 |
/**
|
41 |
* The single instance of the plugin class
|
3 |
Plugin Name: Black Studio TinyMCE Widget
|
4 |
Plugin URI: https://wordpress.org/plugins/black-studio-tinymce-widget/
|
5 |
Description: Adds a new "Visual Editor" widget type based on the native WordPress TinyMCE editor.
|
6 |
+
Version: 2.6.0
|
7 |
Author: Black Studio
|
8 |
+
Author URI: https://www.blackstudio.it
|
9 |
Requires at least: 3.1
|
10 |
Tested up to: 4.8
|
11 |
License: GPLv3
|
35 |
* @var string
|
36 |
* @since 2.0.0
|
37 |
*/
|
38 |
+
public static $version = '2.6.0';
|
39 |
|
40 |
/**
|
41 |
* The single instance of the plugin class
|
includes/class-admin.php
CHANGED
@@ -345,7 +345,7 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Admin' ) ) {
|
|
345 |
/* translators: text used for follow on twitter link */
|
346 |
'https://twitter.com/blackstudioita' => __( 'Follow', 'black-studio-tinymce-widget' ),
|
347 |
/* translators: text used for donation link */
|
348 |
-
'
|
349 |
);
|
350 |
}
|
351 |
|
@@ -461,7 +461,7 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Admin' ) ) {
|
|
461 |
echo '</div>';
|
462 |
}
|
463 |
}
|
464 |
-
|
465 |
/**
|
466 |
* Store dismission of the "Visual Editor disabled" notice for the current user
|
467 |
*
|
345 |
/* translators: text used for follow on twitter link */
|
346 |
'https://twitter.com/blackstudioita' => __( 'Follow', 'black-studio-tinymce-widget' ),
|
347 |
/* translators: text used for donation link */
|
348 |
+
'https://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce-widget/' => __( 'Donate', 'black-studio-tinymce-widget' ),
|
349 |
);
|
350 |
}
|
351 |
|
461 |
echo '</div>';
|
462 |
}
|
463 |
}
|
464 |
+
|
465 |
/**
|
466 |
* Store dismission of the "Visual Editor disabled" notice for the current user
|
467 |
*
|
includes/class-compatibility-plugins.php
CHANGED
@@ -74,13 +74,27 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
|
|
74 |
* @since 2.0.0
|
75 |
*/
|
76 |
public function wpml() {
|
77 |
-
add_action( '
|
78 |
add_action( 'black_studio_tinymce_before_widget', array( $this, 'wpml_widget_before' ), 10, 2 );
|
79 |
add_action( 'black_studio_tinymce_after_widget', array( $this, 'wpml_widget_after' ), 10, 2 );
|
80 |
add_filter( 'black_studio_tinymce_widget_update', array( $this, 'wpml_widget_update' ), 10, 2 );
|
|
|
81 |
add_filter( 'widget_text', array( $this, 'wpml_widget_text' ), 2, 3 );
|
82 |
}
|
83 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
/**
|
85 |
* Initialize compatibility with WPML and WPML Widgets plugins
|
86 |
*
|
@@ -111,20 +125,20 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
|
|
111 |
*/
|
112 |
public function wpml_widget_before( $args, $instance ) {
|
113 |
if ( is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' ) ) {
|
114 |
-
// Avoid native WPML string translation of widget titles
|
115 |
// For widgets inserted in pages built with Page Builder (SiteOrigin panels) and also when WPML Widgets is active
|
116 |
if ( false !== has_filter( 'widget_title', 'icl_sw_filters_widget_title' ) ) {
|
117 |
-
if ( isset( $instance['panels_info'] ) || isset( $instance['wp_page_widget'] ) || is_plugin_active( 'wpml-widgets/wpml-widgets.php' ) ) {
|
118 |
remove_filter( 'widget_title', 'icl_sw_filters_widget_title', 0 );
|
119 |
}
|
120 |
}
|
121 |
-
// Avoid native WPML string translation of widget texts (for all widgets)
|
122 |
// Black Studio TinyMCE Widget already supports WPML string translation, so this is needed to prevent duplicate translations
|
123 |
if ( false !== has_filter( 'widget_text', 'icl_sw_filters_widget_text' ) ) {
|
124 |
remove_filter( 'widget_text', 'icl_sw_filters_widget_text', 0 );
|
125 |
}
|
126 |
}
|
127 |
-
|
128 |
}
|
129 |
|
130 |
/**
|
@@ -140,11 +154,11 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
|
|
140 |
public function wpml_widget_after( $args, $instance ) {
|
141 |
if ( is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' ) ) {
|
142 |
if ( false === has_filter( 'widget_title', 'icl_sw_filters_widget_title' ) && function_exists( 'icl_sw_filters_widget_title' ) ) {
|
143 |
-
if ( isset( $instance['panels_info'] ) || isset( $instance['wp_page_widget'] ) || is_plugin_active( 'wpml-widgets/wpml-widgets.php' ) ) {
|
144 |
add_filter( 'widget_title', 'icl_sw_filters_widget_title', 0 );
|
145 |
}
|
146 |
}
|
147 |
-
if ( false === has_filter( 'widget_text', 'icl_sw_filters_widget_text' ) && function_exists( 'icl_sw_filters_widget_text' ) ) {
|
148 |
add_filter( 'widget_text', 'icl_sw_filters_widget_text', 0 );
|
149 |
}
|
150 |
}
|
@@ -162,7 +176,10 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
|
|
162 |
* @since 2.0.0
|
163 |
*/
|
164 |
public function wpml_widget_update( $instance, $widget ) {
|
165 |
-
if ( is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' ) &&
|
|
|
|
|
|
|
166 |
if ( function_exists( 'icl_register_string' ) && ! empty( $widget->number ) ) {
|
167 |
// Avoid translation of Page Builder (SiteOrigin panels) and WP Page Widget widgets
|
168 |
if ( ! isset( $instance['panels_info'] ) && ! isset( $instance['wp_page_widget'] ) ) {
|
@@ -178,6 +195,7 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
|
|
178 |
*
|
179 |
* @uses is_plugin_active()
|
180 |
* @uses icl_t() Part of WPML
|
|
|
181 |
*
|
182 |
* @param string $text
|
183 |
* @param mixed[]|null $instance
|
@@ -188,10 +206,12 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
|
|
188 |
public function wpml_widget_text( $text, $instance = null, $widget = null ) {
|
189 |
if ( is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' ) && ! is_plugin_active( 'wpml-widgets/wpml-widgets.php' ) ) {
|
190 |
if ( bstw()->check_widget( $widget ) && ! empty( $instance ) ) {
|
191 |
-
if ( function_exists( 'icl_t' ) ) {
|
192 |
-
// Avoid translation of Page Builder (SiteOrigin panels) and WP Page Widget widgets
|
193 |
-
if ( ! isset( $instance['panels_info'] ) && ! isset( $instance['wp_page_widget'] ) ) {
|
194 |
-
|
|
|
|
|
195 |
}
|
196 |
}
|
197 |
}
|
@@ -199,6 +219,32 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
|
|
199 |
return $text;
|
200 |
}
|
201 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
/**
|
203 |
* Compatibility for WP Page Widget plugin
|
204 |
*
|
@@ -322,6 +368,7 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
|
|
322 |
add_filter( 'black_studio_tinymce_activate_events', array( $this, 'siteorigin_panels_activate_events' ) );
|
323 |
add_filter( 'black_studio_tinymce_deactivate_events', array( $this, 'siteorigin_panels_deactivate_events' ) );
|
324 |
add_filter( 'black_studio_tinymce_enable_pages', array( $this, 'siteorigin_panels_enable_pages' ) );
|
|
|
325 |
remove_filter( 'widget_text', array( bstw()->text_filters(), 'wpautop' ), 8 );
|
326 |
}
|
327 |
}
|
@@ -392,6 +439,18 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
|
|
392 |
return $pages;
|
393 |
}
|
394 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
/**
|
396 |
* Disable old compatibility code provided by Page Builder (SiteOrigin Panels)
|
397 |
*
|
@@ -441,7 +500,7 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
|
|
441 |
add_action( 'widgets_init', array( $this, 'elementor_unregister_widget' ), 20 );
|
442 |
}
|
443 |
}
|
444 |
-
|
445 |
/**
|
446 |
* Unregister Widget for Elementor plugin
|
447 |
*
|
74 |
* @since 2.0.0
|
75 |
*/
|
76 |
public function wpml() {
|
77 |
+
add_action( 'plugins_loaded', array( $this, 'wpml_init', 20 ) );
|
78 |
add_action( 'black_studio_tinymce_before_widget', array( $this, 'wpml_widget_before' ), 10, 2 );
|
79 |
add_action( 'black_studio_tinymce_after_widget', array( $this, 'wpml_widget_after' ), 10, 2 );
|
80 |
add_filter( 'black_studio_tinymce_widget_update', array( $this, 'wpml_widget_update' ), 10, 2 );
|
81 |
+
add_action( 'black_studio_tinymce_before_editor', array( $this, 'wpml_check_deprecated_translations' ), 5, 2 );
|
82 |
add_filter( 'widget_text', array( $this, 'wpml_widget_text' ), 2, 3 );
|
83 |
}
|
84 |
|
85 |
+
/**
|
86 |
+
* Helper function to get WPML version
|
87 |
+
*
|
88 |
+
* @uses get_plugin_data()
|
89 |
+
*
|
90 |
+
* @return string
|
91 |
+
* @since 2.6.0
|
92 |
+
*/
|
93 |
+
public function wpml_get_version() {
|
94 |
+
$wpml_data = get_plugin_data( WP_PLUGIN_DIR . '/sitepress-multilingual-cms/sitepress.php', false, false );
|
95 |
+
return $wpml_data['Version'];
|
96 |
+
}
|
97 |
+
|
98 |
/**
|
99 |
* Initialize compatibility with WPML and WPML Widgets plugins
|
100 |
*
|
125 |
*/
|
126 |
public function wpml_widget_before( $args, $instance ) {
|
127 |
if ( is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' ) ) {
|
128 |
+
// Avoid native WPML string translation of widget titles
|
129 |
// For widgets inserted in pages built with Page Builder (SiteOrigin panels) and also when WPML Widgets is active
|
130 |
if ( false !== has_filter( 'widget_title', 'icl_sw_filters_widget_title' ) ) {
|
131 |
+
if ( isset( $instance['panels_info'] ) || isset( $instance['wp_page_widget'] ) || is_plugin_active( 'wpml-widgets/wpml-widgets.php' ) || version_compare( $this->wpml_get_version(), '3.8.0' ) >= 0 ) {
|
132 |
remove_filter( 'widget_title', 'icl_sw_filters_widget_title', 0 );
|
133 |
}
|
134 |
}
|
135 |
+
// Avoid native WPML string translation of widget texts (for all widgets)
|
136 |
// Black Studio TinyMCE Widget already supports WPML string translation, so this is needed to prevent duplicate translations
|
137 |
if ( false !== has_filter( 'widget_text', 'icl_sw_filters_widget_text' ) ) {
|
138 |
remove_filter( 'widget_text', 'icl_sw_filters_widget_text', 0 );
|
139 |
}
|
140 |
}
|
141 |
+
|
142 |
}
|
143 |
|
144 |
/**
|
154 |
public function wpml_widget_after( $args, $instance ) {
|
155 |
if ( is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' ) ) {
|
156 |
if ( false === has_filter( 'widget_title', 'icl_sw_filters_widget_title' ) && function_exists( 'icl_sw_filters_widget_title' ) ) {
|
157 |
+
if ( isset( $instance['panels_info'] ) || isset( $instance['wp_page_widget'] ) || is_plugin_active( 'wpml-widgets/wpml-widgets.php' ) || version_compare( $this->wpml_get_version(), '3.8.0' ) >= 0 ) {
|
158 |
add_filter( 'widget_title', 'icl_sw_filters_widget_title', 0 );
|
159 |
}
|
160 |
}
|
161 |
+
if ( false === has_filter( 'widget_text', 'icl_sw_filters_widget_text' ) && function_exists( 'icl_sw_filters_widget_text' ) || version_compare( $this->wpml_get_version(), '3.8.0' ) >= 0 ) {
|
162 |
add_filter( 'widget_text', 'icl_sw_filters_widget_text', 0 );
|
163 |
}
|
164 |
}
|
176 |
* @since 2.0.0
|
177 |
*/
|
178 |
public function wpml_widget_update( $instance, $widget ) {
|
179 |
+
if ( is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' ) &&
|
180 |
+
version_compare( $this->wpml_get_version(), '3.8.0' ) < 0 &&
|
181 |
+
! is_plugin_active( 'wpml-widgets/wpml-widgets.php' )
|
182 |
+
) {
|
183 |
if ( function_exists( 'icl_register_string' ) && ! empty( $widget->number ) ) {
|
184 |
// Avoid translation of Page Builder (SiteOrigin panels) and WP Page Widget widgets
|
185 |
if ( ! isset( $instance['panels_info'] ) && ! isset( $instance['wp_page_widget'] ) ) {
|
195 |
*
|
196 |
* @uses is_plugin_active()
|
197 |
* @uses icl_t() Part of WPML
|
198 |
+
* @uses icl_st_is_registered_string() Part of WPML
|
199 |
*
|
200 |
* @param string $text
|
201 |
* @param mixed[]|null $instance
|
206 |
public function wpml_widget_text( $text, $instance = null, $widget = null ) {
|
207 |
if ( is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' ) && ! is_plugin_active( 'wpml-widgets/wpml-widgets.php' ) ) {
|
208 |
if ( bstw()->check_widget( $widget ) && ! empty( $instance ) ) {
|
209 |
+
if ( function_exists( 'icl_t' ) && function_exists( 'icl_st_is_registered_string' ) ) {
|
210 |
+
// Avoid translation of Page Builder (SiteOrigin panels) and WP Page Widget widgets
|
211 |
+
if ( ! isset( $instance['panels_info'] ) && ! isset( $instance['wp_page_widget'] ) ) {
|
212 |
+
if ( icl_st_is_registered_string( 'Widgets', 'widget body - ' . $widget->id_base . '-' . $widget->number ) ) {
|
213 |
+
$text = icl_t( 'Widgets', 'widget body - ' . $widget->id_base . '-' . $widget->number, $text );
|
214 |
+
}
|
215 |
}
|
216 |
}
|
217 |
}
|
219 |
return $text;
|
220 |
}
|
221 |
|
222 |
+
/**
|
223 |
+
* Check for existing deprecated translations (made with WPML String Translations plugin) and display warning
|
224 |
+
*
|
225 |
+
* @uses is_plugin_active()
|
226 |
+
* @uses icl_st_is_registered_string() Part of WPML
|
227 |
+
* @uses admin_url()
|
228 |
+
*
|
229 |
+
* @param mixed[]|null $instance
|
230 |
+
* @param object|null $widget
|
231 |
+
* @return void
|
232 |
+
* @since 2.6.0
|
233 |
+
*/
|
234 |
+
public function wpml_check_deprecated_translations( $instance, $widget ) {
|
235 |
+
if ( is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' ) && version_compare( $this->wpml_get_version(), '3.8.0' ) >= 0 ) {
|
236 |
+
if ( function_exists( 'icl_st_is_registered_string' ) ) {
|
237 |
+
if ( icl_st_is_registered_string( 'Widgets', 'widget body - ' . $widget->id_base . '-' . $widget->number ) ) {
|
238 |
+
$wpml_st_url = admin_url( 'admin.php?page=wpml-string-translation%2Fmenu%2Fstring-translation.php&context=Widgets' );
|
239 |
+
echo '<div class="notice notice-warning"><p>';
|
240 |
+
/* translators: Warning displayed when deprecated translations of the current widget are detected */
|
241 |
+
echo sprintf( __( 'WARNING: This widget has one or more translations made using WPML String Translation plugin, which is now a deprecated method of translating widgets, in favor of the "Display on language" dropdown introduced with WPML 3.8. Please migrate your existing translations by creating new widgets and selecting the language of this widget and the new ones accordingly. Finally delete the existing translations from <a href="%s">WPML String Translation interface</a>.', 'black-studio-tinymce-widget' ), esc_url( $wpml_st_url ) );
|
242 |
+
echo '</p></div>';
|
243 |
+
}
|
244 |
+
}
|
245 |
+
}
|
246 |
+
}
|
247 |
+
|
248 |
/**
|
249 |
* Compatibility for WP Page Widget plugin
|
250 |
*
|
368 |
add_filter( 'black_studio_tinymce_activate_events', array( $this, 'siteorigin_panels_activate_events' ) );
|
369 |
add_filter( 'black_studio_tinymce_deactivate_events', array( $this, 'siteorigin_panels_deactivate_events' ) );
|
370 |
add_filter( 'black_studio_tinymce_enable_pages', array( $this, 'siteorigin_panels_enable_pages' ) );
|
371 |
+
add_filter( 'black_studio_tinymce_widget_additional_fields', array( $this, 'siteorigin_panels_additional_fields' ) );
|
372 |
remove_filter( 'widget_text', array( bstw()->text_filters(), 'wpautop' ), 8 );
|
373 |
}
|
374 |
}
|
439 |
return $pages;
|
440 |
}
|
441 |
|
442 |
+
/**
|
443 |
+
* Add widget field for Page Builder (SiteOrigin Panels)
|
444 |
+
*
|
445 |
+
* @param string[] fields
|
446 |
+
* @return string[]
|
447 |
+
* @since 2.6.0
|
448 |
+
*/
|
449 |
+
public function siteorigin_panels_additional_fields( $fields ) {
|
450 |
+
$fields[] = 'panels_info';
|
451 |
+
return $fields;
|
452 |
+
}
|
453 |
+
|
454 |
/**
|
455 |
* Disable old compatibility code provided by Page Builder (SiteOrigin Panels)
|
456 |
*
|
500 |
add_action( 'widgets_init', array( $this, 'elementor_unregister_widget' ), 20 );
|
501 |
}
|
502 |
}
|
503 |
+
|
504 |
/**
|
505 |
* Unregister Widget for Elementor plugin
|
506 |
*
|
includes/class-widget.php
CHANGED
@@ -89,7 +89,13 @@ if ( ! class_exists( 'WP_Widget_Black_Studio_TinyMCE' ) ) {
|
|
89 |
}
|
90 |
$instance['type'] = strip_tags( $new_instance['type'] );
|
91 |
$instance['filter'] = strip_tags( $new_instance['filter'] );
|
92 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
return $instance;
|
94 |
}
|
95 |
|
@@ -122,14 +128,14 @@ if ( ! class_exists( 'WP_Widget_Black_Studio_TinyMCE' ) ) {
|
|
122 |
$instance['filter'] = $instance['type'] == 'visual' && substr( $instance['text'], 0, 3 ) != '<p>' ? 1 : 0;
|
123 |
}
|
124 |
$title = strip_tags( $instance['title'] );
|
125 |
-
do_action( 'black_studio_tinymce_before_editor' );
|
126 |
?>
|
127 |
<input id="<?php echo esc_attr( $this->get_field_id( 'type' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'type' ) ); ?>" type="hidden" value="<?php echo esc_attr( $instance['type'] ); ?>" />
|
128 |
<p><label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title:' ); ?></label>
|
129 |
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /></p>
|
130 |
<?php
|
131 |
do_action( 'black_studio_tinymce_editor', $instance['text'], $this->get_field_id( 'text' ), $this->get_field_name( 'text' ), $instance['type'] );
|
132 |
-
do_action( 'black_studio_tinymce_after_editor' );
|
133 |
?>
|
134 |
<input id="<?php echo esc_attr( $this->get_field_id( 'filter' ) ); ?>-hidden" name="<?php echo esc_attr( $this->get_field_name( 'filter' ) ); ?>" type="hidden" value="0" />
|
135 |
<p><input id="<?php echo esc_attr( $this->get_field_id( 'filter' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'filter' ) ); ?>" type="checkbox" value="1" <?php checked( $instance['filter'] ); ?> /> <label for="<?php echo esc_attr( $this->get_field_id( 'filter' ) ); ?>"><?php _e( 'Automatically add paragraphs' ); ?></label></p>
|
89 |
}
|
90 |
$instance['type'] = strip_tags( $new_instance['type'] );
|
91 |
$instance['filter'] = strip_tags( $new_instance['filter'] );
|
92 |
+
$additional_fields = apply_filters( 'black_studio_tinymce_widget_additional_fields', array() );
|
93 |
+
if ( ! empty( $additional_fields ) ) {
|
94 |
+
foreach ( $additional_fields as $additional_field ) {
|
95 |
+
$instance[ $additional_field ] = $new_instance[ $additional_field ];
|
96 |
+
}
|
97 |
+
}
|
98 |
+
$instance = apply_filters( 'black_studio_tinymce_widget_update', $instance, $this );
|
99 |
return $instance;
|
100 |
}
|
101 |
|
128 |
$instance['filter'] = $instance['type'] == 'visual' && substr( $instance['text'], 0, 3 ) != '<p>' ? 1 : 0;
|
129 |
}
|
130 |
$title = strip_tags( $instance['title'] );
|
131 |
+
do_action( 'black_studio_tinymce_before_editor', $instance, $this );
|
132 |
?>
|
133 |
<input id="<?php echo esc_attr( $this->get_field_id( 'type' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'type' ) ); ?>" type="hidden" value="<?php echo esc_attr( $instance['type'] ); ?>" />
|
134 |
<p><label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title:' ); ?></label>
|
135 |
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /></p>
|
136 |
<?php
|
137 |
do_action( 'black_studio_tinymce_editor', $instance['text'], $this->get_field_id( 'text' ), $this->get_field_name( 'text' ), $instance['type'] );
|
138 |
+
do_action( 'black_studio_tinymce_after_editor', $instance, $this );
|
139 |
?>
|
140 |
<input id="<?php echo esc_attr( $this->get_field_id( 'filter' ) ); ?>-hidden" name="<?php echo esc_attr( $this->get_field_name( 'filter' ) ); ?>" type="hidden" value="0" />
|
141 |
<p><input id="<?php echo esc_attr( $this->get_field_id( 'filter' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'filter' ) ); ?>" type="checkbox" value="1" <?php checked( $instance['filter'] ); ?> /> <label for="<?php echo esc_attr( $this->get_field_id( 'filter' ) ); ?>"><?php _e( 'Automatically add paragraphs' ); ?></label></p>
|
languages/black-studio-tinymce-widget-cs_CZ.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-cs_CZ.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
-
"POT-Creation-Date: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/cs_CZ/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -85,12 +85,25 @@ msgstr "O pluginu Black Studio TinyMCE Widget"
|
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
-
#: includes/class-admin.php:
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
#. translators: title of the widget
|
95 |
#: includes/class-widget.php:27
|
96 |
msgid "Visual Editor"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
+
"POT-Creation-Date: 2017-11-17 00:51:01+00:00\n"
|
11 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/cs_CZ/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
+
#: includes/class-admin.php:460
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#. translators: Warning displayed when deprecated translations of the current
|
95 |
+
#. widget are detected
|
96 |
+
#: includes/class-compatibility-plugins.php:241
|
97 |
+
msgid ""
|
98 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
99 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
100 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
101 |
+
"Please migrate your existing translations by creating new widgets and "
|
102 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
103 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
104 |
+
" interface</a>."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
#. translators: title of the widget
|
108 |
#: includes/class-widget.php:27
|
109 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-da_DK.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-da_DK.po
CHANGED
@@ -6,8 +6,8 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
-
"POT-Creation-Date: 2017-
|
10 |
-
"PO-Revision-Date: 2017-
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Danish (Denmark) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/da_DK/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -84,12 +84,25 @@ msgstr ""
|
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
-
#: includes/class-admin.php:
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
#. translators: title of the widget
|
94 |
#: includes/class-widget.php:27
|
95 |
msgid "Visual Editor"
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
10 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Danish (Denmark) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/da_DK/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
+
#: includes/class-admin.php:460
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#. translators: Warning displayed when deprecated translations of the current
|
94 |
+
#. widget are detected
|
95 |
+
#: includes/class-compatibility-plugins.php:241
|
96 |
+
msgid ""
|
97 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
98 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
99 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
100 |
+
"Please migrate your existing translations by creating new widgets and "
|
101 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
102 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
103 |
+
" interface</a>."
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
#. translators: title of the widget
|
107 |
#: includes/class-widget.php:27
|
108 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-de_DE.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-de_DE.po
CHANGED
@@ -9,8 +9,8 @@ msgid ""
|
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
11 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
12 |
-
"POT-Creation-Date: 2017-
|
13 |
-
"PO-Revision-Date: 2017-
|
14 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
15 |
"Language-Team: German (Germany) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/de_DE/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
@@ -87,12 +87,25 @@ msgstr "Über das Black Studio TinyMCE Widget Plugin"
|
|
87 |
|
88 |
#. translators: warning message shown when when visual editor is disabled in
|
89 |
#. current user's profile settings
|
90 |
-
#: includes/class-admin.php:
|
91 |
msgid ""
|
92 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
93 |
" order to use the Visual Editor widget at its full potential."
|
94 |
msgstr ""
|
95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
#. translators: title of the widget
|
97 |
#: includes/class-widget.php:27
|
98 |
msgid "Visual Editor"
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
11 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
12 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
13 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
14 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
15 |
"Language-Team: German (Germany) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/de_DE/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
87 |
|
88 |
#. translators: warning message shown when when visual editor is disabled in
|
89 |
#. current user's profile settings
|
90 |
+
#: includes/class-admin.php:460
|
91 |
msgid ""
|
92 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
93 |
" order to use the Visual Editor widget at its full potential."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#. translators: Warning displayed when deprecated translations of the current
|
97 |
+
#. widget are detected
|
98 |
+
#: includes/class-compatibility-plugins.php:241
|
99 |
+
msgid ""
|
100 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
101 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
102 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
103 |
+
"Please migrate your existing translations by creating new widgets and "
|
104 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
105 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
106 |
+
" interface</a>."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
#. translators: title of the widget
|
110 |
#: includes/class-widget.php:27
|
111 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-el.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-el.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
-
"POT-Creation-Date: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Greek (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/el/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -85,12 +85,25 @@ msgstr "Σχετικά με την προσθήκη Black Studio TinyMCE Widget"
|
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
-
#: includes/class-admin.php:
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
#. translators: title of the widget
|
95 |
#: includes/class-widget.php:27
|
96 |
msgid "Visual Editor"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
11 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Greek (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/el/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
+
#: includes/class-admin.php:460
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#. translators: Warning displayed when deprecated translations of the current
|
95 |
+
#. widget are detected
|
96 |
+
#: includes/class-compatibility-plugins.php:241
|
97 |
+
msgid ""
|
98 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
99 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
100 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
101 |
+
"Please migrate your existing translations by creating new widgets and "
|
102 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
103 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
104 |
+
" interface</a>."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
#. translators: title of the widget
|
108 |
#: includes/class-widget.php:27
|
109 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-en_GB.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-en_GB.po
CHANGED
@@ -6,8 +6,8 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
-
"POT-Creation-Date: 2017-
|
10 |
-
"PO-Revision-Date: 2017-
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: English (United Kingdom) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/en_GB/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -84,12 +84,25 @@ msgstr "About Black Studio TinyMCE Widget plugin"
|
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
-
#: includes/class-admin.php:
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
#. translators: title of the widget
|
94 |
#: includes/class-widget.php:27
|
95 |
msgid "Visual Editor"
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
+
"POT-Creation-Date: 2017-11-17 00:51:01+00:00\n"
|
10 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: English (United Kingdom) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/en_GB/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
+
#: includes/class-admin.php:460
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#. translators: Warning displayed when deprecated translations of the current
|
94 |
+
#. widget are detected
|
95 |
+
#: includes/class-compatibility-plugins.php:241
|
96 |
+
msgid ""
|
97 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
98 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
99 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
100 |
+
"Please migrate your existing translations by creating new widgets and "
|
101 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
102 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
103 |
+
" interface</a>."
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
#. translators: title of the widget
|
107 |
#: includes/class-widget.php:27
|
108 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-es_ES.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-es_ES.po
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
10 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
11 |
-
"POT-Creation-Date: 2017-
|
12 |
-
"PO-Revision-Date: 2017-
|
13 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
14 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/es_ES/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -86,12 +86,25 @@ msgstr "Acerca del plugin Black Studio TinyMCE Widget"
|
|
86 |
|
87 |
#. translators: warning message shown when when visual editor is disabled in
|
88 |
#. current user's profile settings
|
89 |
-
#: includes/class-admin.php:
|
90 |
msgid ""
|
91 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
92 |
" order to use the Visual Editor widget at its full potential."
|
93 |
msgstr ""
|
94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
#. translators: title of the widget
|
96 |
#: includes/class-widget.php:27
|
97 |
msgid "Visual Editor"
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
10 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
11 |
+
"POT-Creation-Date: 2017-11-17 00:51:01+00:00\n"
|
12 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
13 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
14 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/es_ES/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
86 |
|
87 |
#. translators: warning message shown when when visual editor is disabled in
|
88 |
#. current user's profile settings
|
89 |
+
#: includes/class-admin.php:460
|
90 |
msgid ""
|
91 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
92 |
" order to use the Visual Editor widget at its full potential."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#. translators: Warning displayed when deprecated translations of the current
|
96 |
+
#. widget are detected
|
97 |
+
#: includes/class-compatibility-plugins.php:241
|
98 |
+
msgid ""
|
99 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
100 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
101 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
102 |
+
"Please migrate your existing translations by creating new widgets and "
|
103 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
104 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
105 |
+
" interface</a>."
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
#. translators: title of the widget
|
109 |
#: includes/class-widget.php:27
|
110 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-es_MX.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-es_MX.po
CHANGED
@@ -6,8 +6,8 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
-
"POT-Creation-Date: 2017-
|
10 |
-
"PO-Revision-Date: 2017-
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Spanish (Mexico) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/es_MX/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -84,12 +84,25 @@ msgstr "Acerca de Black Studio TinyMCE Widget"
|
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
-
#: includes/class-admin.php:
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
#. translators: title of the widget
|
94 |
#: includes/class-widget.php:27
|
95 |
msgid "Visual Editor"
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
10 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Spanish (Mexico) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/es_MX/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
+
#: includes/class-admin.php:460
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#. translators: Warning displayed when deprecated translations of the current
|
94 |
+
#. widget are detected
|
95 |
+
#: includes/class-compatibility-plugins.php:241
|
96 |
+
msgid ""
|
97 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
98 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
99 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
100 |
+
"Please migrate your existing translations by creating new widgets and "
|
101 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
102 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
103 |
+
" interface</a>."
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
#. translators: title of the widget
|
107 |
#: includes/class-widget.php:27
|
108 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-fa_IR.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-fa_IR.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
-
"POT-Creation-Date: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Persian (Iran) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/fa_IR/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -85,12 +85,25 @@ msgstr "درباره افزونه Black Studio TinyMCE Widget"
|
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
-
#: includes/class-admin.php:
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
#. translators: title of the widget
|
95 |
#: includes/class-widget.php:27
|
96 |
msgid "Visual Editor"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
+
"POT-Creation-Date: 2017-11-17 00:51:01+00:00\n"
|
11 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Persian (Iran) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/fa_IR/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
+
#: includes/class-admin.php:460
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#. translators: Warning displayed when deprecated translations of the current
|
95 |
+
#. widget are detected
|
96 |
+
#: includes/class-compatibility-plugins.php:241
|
97 |
+
msgid ""
|
98 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
99 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
100 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
101 |
+
"Please migrate your existing translations by creating new widgets and "
|
102 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
103 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
104 |
+
" interface</a>."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
#. translators: title of the widget
|
108 |
#: includes/class-widget.php:27
|
109 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-fi.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-fi.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
-
"POT-Creation-Date: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Finnish (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/fi/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -85,12 +85,25 @@ msgstr ""
|
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
-
#: includes/class-admin.php:
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
#. translators: title of the widget
|
95 |
#: includes/class-widget.php:27
|
96 |
msgid "Visual Editor"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
+
"POT-Creation-Date: 2017-11-17 00:51:01+00:00\n"
|
11 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Finnish (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/fi/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
+
#: includes/class-admin.php:460
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#. translators: Warning displayed when deprecated translations of the current
|
95 |
+
#. widget are detected
|
96 |
+
#: includes/class-compatibility-plugins.php:241
|
97 |
+
msgid ""
|
98 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
99 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
100 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
101 |
+
"Please migrate your existing translations by creating new widgets and "
|
102 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
103 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
104 |
+
" interface</a>."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
#. translators: title of the widget
|
108 |
#: includes/class-widget.php:27
|
109 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-fr_FR.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-fr_FR.po
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
# Copyright (C) 2017 Black Studio
|
2 |
# This file is distributed under the GPLv3.
|
3 |
# Translators:
|
4 |
-
# FX Bénard <fxb@wp-translations.org>, 2016
|
5 |
# FX Bénard <fxb@wp-translations.org>, 2014
|
6 |
# marcochiesi <marco@blackstudio.it>, 2014
|
7 |
# marcochiesi <marco@blackstudio.it>, 2014
|
@@ -11,8 +11,8 @@ msgid ""
|
|
11 |
msgstr ""
|
12 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
13 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
14 |
-
"POT-Creation-Date: 2017-
|
15 |
-
"PO-Revision-Date: 2017-
|
16 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
17 |
"Language-Team: French (France) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/fr_FR/)\n"
|
18 |
"MIME-Version: 1.0\n"
|
@@ -89,10 +89,23 @@ msgstr "À propos de l’extension Black Studio TinyMCE Widget"
|
|
89 |
|
90 |
#. translators: warning message shown when when visual editor is disabled in
|
91 |
#. current user's profile settings
|
92 |
-
#: includes/class-admin.php:
|
93 |
msgid ""
|
94 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
95 |
" order to use the Visual Editor widget at its full potential."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
msgstr ""
|
97 |
|
98 |
#. translators: title of the widget
|
1 |
# Copyright (C) 2017 Black Studio
|
2 |
# This file is distributed under the GPLv3.
|
3 |
# Translators:
|
4 |
+
# FX Bénard <fxb@wp-translations.org>, 2016-2017
|
5 |
# FX Bénard <fxb@wp-translations.org>, 2014
|
6 |
# marcochiesi <marco@blackstudio.it>, 2014
|
7 |
# marcochiesi <marco@blackstudio.it>, 2014
|
11 |
msgstr ""
|
12 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
13 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
14 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
15 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
16 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
17 |
"Language-Team: French (France) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/fr_FR/)\n"
|
18 |
"MIME-Version: 1.0\n"
|
89 |
|
90 |
#. translators: warning message shown when when visual editor is disabled in
|
91 |
#. current user's profile settings
|
92 |
+
#: includes/class-admin.php:460
|
93 |
msgid ""
|
94 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
95 |
" order to use the Visual Editor widget at its full potential."
|
96 |
+
msgstr "L’éditeur visuel est désactivé dans les réglages de votre profil. Vous devez l’activer afin de pouvoir utiliser le widget à son plein potentiel."
|
97 |
+
|
98 |
+
#. translators: Warning displayed when deprecated translations of the current
|
99 |
+
#. widget are detected
|
100 |
+
#: includes/class-compatibility-plugins.php:241
|
101 |
+
msgid ""
|
102 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
103 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
104 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
105 |
+
"Please migrate your existing translations by creating new widgets and "
|
106 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
107 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
108 |
+
" interface</a>."
|
109 |
msgstr ""
|
110 |
|
111 |
#. translators: title of the widget
|
languages/black-studio-tinymce-widget-id_ID.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-id_ID.po
CHANGED
@@ -10,8 +10,8 @@ msgid ""
|
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
12 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
13 |
-
"POT-Creation-Date: 2017-
|
14 |
-
"PO-Revision-Date: 2017-
|
15 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
16 |
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/id_ID/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
@@ -88,12 +88,25 @@ msgstr "Black Studio TinyMCE Widget Plugin"
|
|
88 |
|
89 |
#. translators: warning message shown when when visual editor is disabled in
|
90 |
#. current user's profile settings
|
91 |
-
#: includes/class-admin.php:
|
92 |
msgid ""
|
93 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
94 |
" order to use the Visual Editor widget at its full potential."
|
95 |
msgstr ""
|
96 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
#. translators: title of the widget
|
98 |
#: includes/class-widget.php:27
|
99 |
msgid "Visual Editor"
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
12 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
13 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
14 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
15 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
16 |
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/id_ID/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
88 |
|
89 |
#. translators: warning message shown when when visual editor is disabled in
|
90 |
#. current user's profile settings
|
91 |
+
#: includes/class-admin.php:460
|
92 |
msgid ""
|
93 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
94 |
" order to use the Visual Editor widget at its full potential."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#. translators: Warning displayed when deprecated translations of the current
|
98 |
+
#. widget are detected
|
99 |
+
#: includes/class-compatibility-plugins.php:241
|
100 |
+
msgid ""
|
101 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
102 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
103 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
104 |
+
"Please migrate your existing translations by creating new widgets and "
|
105 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
106 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
107 |
+
" interface</a>."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
#. translators: title of the widget
|
111 |
#: includes/class-widget.php:27
|
112 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-it_IT.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-it_IT.po
CHANGED
@@ -6,8 +6,8 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
-
"POT-Creation-Date: 2017-
|
10 |
-
"PO-Revision-Date: 2017-
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Italian (Italy) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/it_IT/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -15,36 +15,27 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"Language: it_IT\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
-
"X-Generator:
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
-
"X-Poedit-
|
21 |
-
"X-Poedit-Country: United States\n"
|
22 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
23 |
-
"X-Poedit-Language: English\n"
|
24 |
-
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SourceCharset: utf-8\n"
|
26 |
"X-Textdomain-Support: yes\n"
|
|
|
27 |
|
28 |
#. translators: error message shown when multiple instance of the plugin are
|
29 |
#. detected
|
30 |
#: black-studio-tinymce-widget.php:279
|
31 |
-
msgid ""
|
32 |
-
"ERROR: Multiple instances of the Black Studio TinyMCE Widget plugin were "
|
33 |
-
"detected. Please activate only one instance at a time."
|
34 |
msgstr "ERRORE: Rilevate istanze multiple del plugin Black Studio TinyMCE Widget. Si raccomanda di attivare una sola istanza del plugin per volta."
|
35 |
|
36 |
#. translators: text for the dismissable admin pointer tooltip
|
37 |
#: includes/class-admin-pointer.php:167
|
38 |
-
msgid ""
|
39 |
-
"The Visual Editor widget allows you to insert rich text and media objects in"
|
40 |
-
" your sidebars"
|
41 |
msgstr "Il widget Editor Visuale vi permette di inserire testo formattato e oggetti multimediali nelle vostre sidebar"
|
42 |
|
43 |
#. translators: error message shown when a duplicated widget ID is detected
|
44 |
#: includes/class-admin.php:250
|
45 |
-
msgid ""
|
46 |
-
"ERROR: Duplicate widget ID detected. To avoid content loss, please create a "
|
47 |
-
"new widget with the same content and then delete this one."
|
48 |
msgstr "ERRORE: Rilevato un widget con ID duplicato. Per evitare perdite di dati, si consiglia di creare un nuovo widget con il medesimo contenuto e successivamente cancellare questo."
|
49 |
|
50 |
#. translators: text used for plugin home link
|
@@ -84,12 +75,22 @@ msgstr "Info sul plugin Black Studio TinyMCE Widget"
|
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
-
#: includes/class-admin.php:
|
88 |
-
msgid ""
|
89 |
-
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
-
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr "L'editor visuale è disabilitato nelle impostazioni del tuo profilo. Devi abilitarlo per poter utilizzare il widget \"Editor Visuale\" al massimo delle sue potenzialità."
|
92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
#. translators: title of the widget
|
94 |
#: includes/class-widget.php:27
|
95 |
msgid "Visual Editor"
|
@@ -101,7 +102,5 @@ msgid "Arbitrary text or HTML with visual editor"
|
|
101 |
msgstr "Testo o HTML libero con editor visuale"
|
102 |
|
103 |
#. Description of the plugin/theme
|
104 |
-
msgid ""
|
105 |
-
"Adds a new \"Visual Editor\" widget type based on the native WordPress "
|
106 |
-
"TinyMCE editor."
|
107 |
msgstr "Aggiunge un nuovo tipo di widget \"Editor Visuale\" basato sull'editor TinyMCE standard di WordPress."
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
+
"POT-Creation-Date: 2017-11-17 00:51:01+00:00\n"
|
10 |
+
"PO-Revision-Date: 2017-11-17 02:07+0100\n"
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Italian (Italy) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/it_IT/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"Language: it_IT\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"X-Generator: Poedit 1.8.7\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
|
|
|
|
|
|
|
|
21 |
"X-Poedit-SourceCharset: utf-8\n"
|
22 |
"X-Textdomain-Support: yes\n"
|
23 |
+
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
#. translators: error message shown when multiple instance of the plugin are
|
26 |
#. detected
|
27 |
#: black-studio-tinymce-widget.php:279
|
28 |
+
msgid "ERROR: Multiple instances of the Black Studio TinyMCE Widget plugin were detected. Please activate only one instance at a time."
|
|
|
|
|
29 |
msgstr "ERRORE: Rilevate istanze multiple del plugin Black Studio TinyMCE Widget. Si raccomanda di attivare una sola istanza del plugin per volta."
|
30 |
|
31 |
#. translators: text for the dismissable admin pointer tooltip
|
32 |
#: includes/class-admin-pointer.php:167
|
33 |
+
msgid "The Visual Editor widget allows you to insert rich text and media objects in your sidebars"
|
|
|
|
|
34 |
msgstr "Il widget Editor Visuale vi permette di inserire testo formattato e oggetti multimediali nelle vostre sidebar"
|
35 |
|
36 |
#. translators: error message shown when a duplicated widget ID is detected
|
37 |
#: includes/class-admin.php:250
|
38 |
+
msgid "ERROR: Duplicate widget ID detected. To avoid content loss, please create a new widget with the same content and then delete this one."
|
|
|
|
|
39 |
msgstr "ERRORE: Rilevato un widget con ID duplicato. Per evitare perdite di dati, si consiglia di creare un nuovo widget con il medesimo contenuto e successivamente cancellare questo."
|
40 |
|
41 |
#. translators: text used for plugin home link
|
75 |
|
76 |
#. translators: warning message shown when when visual editor is disabled in
|
77 |
#. current user's profile settings
|
78 |
+
#: includes/class-admin.php:460
|
79 |
+
msgid "Visual Editor is disabled in your Profile settings. You need to enable it in order to use the Visual Editor widget at its full potential."
|
|
|
|
|
80 |
msgstr "L'editor visuale è disabilitato nelle impostazioni del tuo profilo. Devi abilitarlo per poter utilizzare il widget \"Editor Visuale\" al massimo delle sue potenzialità."
|
81 |
|
82 |
+
#. translators: Warning displayed when deprecated translations of the current
|
83 |
+
#. widget are detected
|
84 |
+
#: includes/class-compatibility-plugins.php:241
|
85 |
+
msgid ""
|
86 |
+
"WARNING: This widget has one or more translations made using WPML String Translation plugin, which is now a deprecated method of translating widgets, in favor of the \"Display on "
|
87 |
+
"language\" dropdown introduced with WPML 3.8. Please migrate your existing translations by creating new widgets and selecting the language of this widget and the new ones "
|
88 |
+
"accordingly. Finally delete the existing translations from <a href=\"%s\">WPML String Translation interface</a>."
|
89 |
+
msgstr ""
|
90 |
+
"ATTENZIONE: Questo widget ha una o più traduzioni effettuate con il plugin WPML String Translation, metodo di traduzione dei widget attualmente deprecato in favore del selettore "
|
91 |
+
"\"Visualizzazione nella lingua\" introdotto con WPML 3.8. Converti le traduzioni esistenti in nuovi widget selezionando la lingua appropriata per questo widget e per le relative "
|
92 |
+
"traduzioni. Infine elimina le traduzioni dall'interfaccia di <a href=\"%s\">WPML String Translation interface</a>."
|
93 |
+
|
94 |
#. translators: title of the widget
|
95 |
#: includes/class-widget.php:27
|
96 |
msgid "Visual Editor"
|
102 |
msgstr "Testo o HTML libero con editor visuale"
|
103 |
|
104 |
#. Description of the plugin/theme
|
105 |
+
msgid "Adds a new \"Visual Editor\" widget type based on the native WordPress TinyMCE editor."
|
|
|
|
|
106 |
msgstr "Aggiunge un nuovo tipo di widget \"Editor Visuale\" basato sull'editor TinyMCE standard di WordPress."
|
languages/black-studio-tinymce-widget-lt_LT.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-lt_LT.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
-
"POT-Creation-Date: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/lt_LT/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -85,12 +85,25 @@ msgstr "Apie Black Studio TinyMCE Valdiklio įskiepį"
|
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
-
#: includes/class-admin.php:
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
#. translators: title of the widget
|
95 |
#: includes/class-widget.php:27
|
96 |
msgid "Visual Editor"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
11 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/lt_LT/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
+
#: includes/class-admin.php:460
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#. translators: Warning displayed when deprecated translations of the current
|
95 |
+
#. widget are detected
|
96 |
+
#: includes/class-compatibility-plugins.php:241
|
97 |
+
msgid ""
|
98 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
99 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
100 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
101 |
+
"Please migrate your existing translations by creating new widgets and "
|
102 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
103 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
104 |
+
" interface</a>."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
#. translators: title of the widget
|
108 |
#: includes/class-widget.php:27
|
109 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-nl_NL.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-nl_NL.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
-
"POT-Creation-Date: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/nl_NL/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -85,12 +85,25 @@ msgstr ""
|
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
-
#: includes/class-admin.php:
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
#. translators: title of the widget
|
95 |
#: includes/class-widget.php:27
|
96 |
msgid "Visual Editor"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
11 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/nl_NL/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
+
#: includes/class-admin.php:460
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#. translators: Warning displayed when deprecated translations of the current
|
95 |
+
#. widget are detected
|
96 |
+
#: includes/class-compatibility-plugins.php:241
|
97 |
+
msgid ""
|
98 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
99 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
100 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
101 |
+
"Please migrate your existing translations by creating new widgets and "
|
102 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
103 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
104 |
+
" interface</a>."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
#. translators: title of the widget
|
108 |
#: includes/class-widget.php:27
|
109 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-oc.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-oc.po
CHANGED
@@ -6,8 +6,8 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
-
"POT-Creation-Date: 2017-
|
10 |
-
"PO-Revision-Date: 2017-
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Occitan (post 1500) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/oc/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -84,12 +84,25 @@ msgstr "A prepaus de l’extension Black Studio TinyMCE Widget"
|
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
-
#: includes/class-admin.php:
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
#. translators: title of the widget
|
94 |
#: includes/class-widget.php:27
|
95 |
msgid "Visual Editor"
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
+
"POT-Creation-Date: 2017-11-17 00:51:01+00:00\n"
|
10 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Occitan (post 1500) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/oc/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
+
#: includes/class-admin.php:460
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#. translators: Warning displayed when deprecated translations of the current
|
94 |
+
#. widget are detected
|
95 |
+
#: includes/class-compatibility-plugins.php:241
|
96 |
+
msgid ""
|
97 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
98 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
99 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
100 |
+
"Please migrate your existing translations by creating new widgets and "
|
101 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
102 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
103 |
+
" interface</a>."
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
#. translators: title of the widget
|
107 |
#: includes/class-widget.php:27
|
108 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-pl_PL.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-pl_PL.po
CHANGED
@@ -6,8 +6,8 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
-
"POT-Creation-Date: 2017-
|
10 |
-
"PO-Revision-Date: 2017-
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Polish (Poland) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/pl_PL/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -84,12 +84,25 @@ msgstr ""
|
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
-
#: includes/class-admin.php:
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
#. translators: title of the widget
|
94 |
#: includes/class-widget.php:27
|
95 |
msgid "Visual Editor"
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
10 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Polish (Poland) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/pl_PL/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
+
#: includes/class-admin.php:460
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#. translators: Warning displayed when deprecated translations of the current
|
94 |
+
#. widget are detected
|
95 |
+
#: includes/class-compatibility-plugins.php:241
|
96 |
+
msgid ""
|
97 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
98 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
99 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
100 |
+
"Please migrate your existing translations by creating new widgets and "
|
101 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
102 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
103 |
+
" interface</a>."
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
#. translators: title of the widget
|
107 |
#: includes/class-widget.php:27
|
108 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-pt_BR.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-pt_BR.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
-
"POT-Creation-Date: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/pt_BR/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -85,12 +85,25 @@ msgstr "Sobre o Plugin Black Studio TinyMCE Widget"
|
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
-
#: includes/class-admin.php:
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
#. translators: title of the widget
|
95 |
#: includes/class-widget.php:27
|
96 |
msgid "Visual Editor"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
+
"POT-Creation-Date: 2017-11-17 00:51:01+00:00\n"
|
11 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/pt_BR/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
+
#: includes/class-admin.php:460
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#. translators: Warning displayed when deprecated translations of the current
|
95 |
+
#. widget are detected
|
96 |
+
#: includes/class-compatibility-plugins.php:241
|
97 |
+
msgid ""
|
98 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
99 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
100 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
101 |
+
"Please migrate your existing translations by creating new widgets and "
|
102 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
103 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
104 |
+
" interface</a>."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
#. translators: title of the widget
|
108 |
#: includes/class-widget.php:27
|
109 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-ru_RU.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-ru_RU.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
-
"POT-Creation-Date: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Russian (Russia) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/ru_RU/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -85,12 +85,25 @@ msgstr "О плагине Black Studio TinyMCE Widget"
|
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
-
#: includes/class-admin.php:
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
#. translators: title of the widget
|
95 |
#: includes/class-widget.php:27
|
96 |
msgid "Visual Editor"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
+
"POT-Creation-Date: 2017-11-17 00:51:01+00:00\n"
|
11 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Russian (Russia) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/ru_RU/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
+
#: includes/class-admin.php:460
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#. translators: Warning displayed when deprecated translations of the current
|
95 |
+
#. widget are detected
|
96 |
+
#: includes/class-compatibility-plugins.php:241
|
97 |
+
msgid ""
|
98 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
99 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
100 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
101 |
+
"Please migrate your existing translations by creating new widgets and "
|
102 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
103 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
104 |
+
" interface</a>."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
#. translators: title of the widget
|
108 |
#: includes/class-widget.php:27
|
109 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-sk_SK.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-sk_SK.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
-
"POT-Creation-Date: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/sk_SK/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -85,12 +85,25 @@ msgstr ""
|
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
-
#: includes/class-admin.php:
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
#. translators: title of the widget
|
95 |
#: includes/class-widget.php:27
|
96 |
msgid "Visual Editor"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
11 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/sk_SK/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
+
#: includes/class-admin.php:460
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#. translators: Warning displayed when deprecated translations of the current
|
95 |
+
#. widget are detected
|
96 |
+
#: includes/class-compatibility-plugins.php:241
|
97 |
+
msgid ""
|
98 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
99 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
100 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
101 |
+
"Please migrate your existing translations by creating new widgets and "
|
102 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
103 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
104 |
+
" interface</a>."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
#. translators: title of the widget
|
108 |
#: includes/class-widget.php:27
|
109 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget-sv_SE.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-sv_SE.po
CHANGED
@@ -2,12 +2,13 @@
|
|
2 |
# This file is distributed under the GPLv3.
|
3 |
# Translators:
|
4 |
# marcochiesi <marco@blackstudio.it>, 2014
|
|
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
-
"POT-Creation-Date: 2017-
|
10 |
-
"PO-Revision-Date: 2017-
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/sv_SE/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -31,7 +32,7 @@ msgstr ""
|
|
31 |
msgid ""
|
32 |
"ERROR: Multiple instances of the Black Studio TinyMCE Widget plugin were "
|
33 |
"detected. Please activate only one instance at a time."
|
34 |
-
msgstr ""
|
35 |
|
36 |
#. translators: text for the dismissable admin pointer tooltip
|
37 |
#: includes/class-admin-pointer.php:167
|
@@ -55,7 +56,7 @@ msgstr "Hem"
|
|
55 |
#. translators: text used for support faq link
|
56 |
#: includes/class-admin.php:340
|
57 |
msgid "FAQ"
|
58 |
-
msgstr "
|
59 |
|
60 |
#. translators: text used for support forum link
|
61 |
#: includes/class-admin.php:342
|
@@ -84,12 +85,25 @@ msgstr ""
|
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
-
#: includes/class-admin.php:
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
#. translators: title of the widget
|
94 |
#: includes/class-widget.php:27
|
95 |
msgid "Visual Editor"
|
@@ -98,7 +112,7 @@ msgstr "Visuell redigerare"
|
|
98 |
#. translators: description of the widget, shown in available widgets
|
99 |
#: includes/class-widget.php:29
|
100 |
msgid "Arbitrary text or HTML with visual editor"
|
101 |
-
msgstr "Godtycklig text eller HTML med visuell redigerare
|
102 |
|
103 |
#. Description of the plugin/theme
|
104 |
msgid ""
|
2 |
# This file is distributed under the GPLv3.
|
3 |
# Translators:
|
4 |
# marcochiesi <marco@blackstudio.it>, 2014
|
5 |
+
# Tor-Bjorn Fjellner, 2017
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
10 |
+
"POT-Creation-Date: 2017-11-17 00:51:01+00:00\n"
|
11 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
12 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
13 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/sv_SE/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
32 |
msgid ""
|
33 |
"ERROR: Multiple instances of the Black Studio TinyMCE Widget plugin were "
|
34 |
"detected. Please activate only one instance at a time."
|
35 |
+
msgstr "FEL: Flera instanser av tillägget Black Studio TinyMCE upptäcktes. Aktivera bara en instans åt gången."
|
36 |
|
37 |
#. translators: text for the dismissable admin pointer tooltip
|
38 |
#: includes/class-admin-pointer.php:167
|
56 |
#. translators: text used for support faq link
|
57 |
#: includes/class-admin.php:340
|
58 |
msgid "FAQ"
|
59 |
+
msgstr "Vanliga frågor"
|
60 |
|
61 |
#. translators: text used for support forum link
|
62 |
#: includes/class-admin.php:342
|
85 |
|
86 |
#. translators: warning message shown when when visual editor is disabled in
|
87 |
#. current user's profile settings
|
88 |
+
#: includes/class-admin.php:460
|
89 |
msgid ""
|
90 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
91 |
" order to use the Visual Editor widget at its full potential."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#. translators: Warning displayed when deprecated translations of the current
|
95 |
+
#. widget are detected
|
96 |
+
#: includes/class-compatibility-plugins.php:241
|
97 |
+
msgid ""
|
98 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
99 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
100 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
101 |
+
"Please migrate your existing translations by creating new widgets and "
|
102 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
103 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
104 |
+
" interface</a>."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
#. translators: title of the widget
|
108 |
#: includes/class-widget.php:27
|
109 |
msgid "Visual Editor"
|
112 |
#. translators: description of the widget, shown in available widgets
|
113 |
#: includes/class-widget.php:29
|
114 |
msgid "Arbitrary text or HTML with visual editor"
|
115 |
+
msgstr "Godtycklig text eller HTML med visuell redigerare"
|
116 |
|
117 |
#. Description of the plugin/theme
|
118 |
msgid ""
|
languages/black-studio-tinymce-widget-uk.mo
CHANGED
Binary file
|
languages/black-studio-tinymce-widget-uk.po
CHANGED
@@ -6,8 +6,8 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
-
"POT-Creation-Date: 2017-
|
10 |
-
"PO-Revision-Date: 2017-
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Ukrainian (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/uk/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -84,12 +84,25 @@ msgstr ""
|
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
-
#: includes/class-admin.php:
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
#. translators: title of the widget
|
94 |
#: includes/class-widget.php:27
|
95 |
msgid "Visual Editor"
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Black Studio TinyMCE Widget\n"
|
8 |
"Report-Msgid-Bugs-To: https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
9 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
10 |
+
"PO-Revision-Date: 2017-11-17 00:51+0000\n"
|
11 |
"Last-Translator: marcochiesi <marco@blackstudio.it>\n"
|
12 |
"Language-Team: Ukrainian (http://www.transifex.com/wp-translations/black-studio-tinymce-widget/language/uk/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
84 |
|
85 |
#. translators: warning message shown when when visual editor is disabled in
|
86 |
#. current user's profile settings
|
87 |
+
#: includes/class-admin.php:460
|
88 |
msgid ""
|
89 |
"Visual Editor is disabled in your Profile settings. You need to enable it in"
|
90 |
" order to use the Visual Editor widget at its full potential."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#. translators: Warning displayed when deprecated translations of the current
|
94 |
+
#. widget are detected
|
95 |
+
#: includes/class-compatibility-plugins.php:241
|
96 |
+
msgid ""
|
97 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
98 |
+
"Translation plugin, which is now a deprecated method of translating widgets,"
|
99 |
+
" in favor of the \"Display on language\" dropdown introduced with WPML 3.8. "
|
100 |
+
"Please migrate your existing translations by creating new widgets and "
|
101 |
+
"selecting the language of this widget and the new ones accordingly. Finally "
|
102 |
+
"delete the existing translations from <a href=\"%s\">WPML String Translation"
|
103 |
+
" interface</a>."
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
#. translators: title of the widget
|
107 |
#: includes/class-widget.php:27
|
108 |
msgid "Visual Editor"
|
languages/black-studio-tinymce-widget.pot
CHANGED
@@ -1,107 +1,120 @@
|
|
1 |
-
# Copyright (C) 2017 Black Studio
|
2 |
-
# This file is distributed under the GPLv3.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"Project-Id-Version: Black Studio TinyMCE Widget 2.
|
6 |
-
"Report-Msgid-Bugs-To: "
|
7 |
-
"https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
8 |
-
"POT-Creation-Date: 2017-
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
|
13 |
-
"Last-Translator: Black Studio <info@blackstudio.it>\n"
|
14 |
-
"Language-Team: Black Studio <info@blackstudio.it>\n"
|
15 |
-
"X-Generator: grunt-wp-i18n 0.4.9\n"
|
16 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-Language: English\n"
|
19 |
-
"X-Poedit-Country: United States\n"
|
20 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
21 |
-
"X-Poedit-KeywordsList: "
|
22 |
-
"__;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_"
|
23 |
-
"x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
24 |
-
"X-Poedit-Bookmarks: \n"
|
25 |
-
"X-Poedit-SearchPath-0: .\n"
|
26 |
-
"X-Textdomain-Support: yes\n"
|
27 |
-
|
28 |
-
#: black-studio-tinymce-widget.php:
|
29 |
-
#. translators: error message shown when multiple instance of the plugin are
|
30 |
-
#. detected
|
31 |
-
msgid ""
|
32 |
-
"ERROR: Multiple instances of the Black Studio TinyMCE Widget plugin were "
|
33 |
-
"detected. Please activate only one instance at a time."
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: includes/class-admin-pointer.php:167
|
37 |
-
#. translators: text for the dismissable admin pointer tooltip
|
38 |
-
msgid ""
|
39 |
-
"The Visual Editor widget allows you to insert rich text and media objects "
|
40 |
-
"in your sidebars"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: includes/class-admin.php:250
|
44 |
-
#. translators: error message shown when a duplicated widget ID is detected
|
45 |
-
msgid ""
|
46 |
-
"ERROR: Duplicate widget ID detected. To avoid content loss, please create a "
|
47 |
-
"new widget with the same content and then delete this one."
|
48 |
-
msgstr ""
|
49 |
-
|
50 |
-
#: includes/class-admin.php:338
|
51 |
-
#. translators: text used for plugin home link
|
52 |
-
msgid "Home"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: includes/class-admin.php:340
|
56 |
-
#. translators: text used for support faq link
|
57 |
-
msgid "FAQ"
|
58 |
-
msgstr ""
|
59 |
-
|
60 |
-
#: includes/class-admin.php:342
|
61 |
-
#. translators: text used for support forum link
|
62 |
-
msgid "Support"
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: includes/class-admin.php:344
|
66 |
-
#. translators: text used for reviews link
|
67 |
-
msgid "Rate"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: includes/class-admin.php:346
|
71 |
-
#. translators: text used for follow on twitter link
|
72 |
-
msgid "Follow"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: includes/class-admin.php:348
|
76 |
-
#. translators: text used for donation link
|
77 |
-
msgid "Donate"
|
78 |
-
msgstr ""
|
79 |
-
|
80 |
-
#: includes/class-admin.php:368
|
81 |
-
#. translators: text used for the icon that shows the plugin links
|
82 |
-
msgid "About Black Studio TinyMCE Widget plugin"
|
83 |
-
msgstr ""
|
84 |
-
|
85 |
-
#: includes/class-admin.php:460
|
86 |
-
#. translators: warning message shown when when visual editor is disabled in
|
87 |
-
#. current user's profile settings
|
88 |
-
msgid ""
|
89 |
-
"Visual Editor is disabled in your Profile settings. You need to enable it "
|
90 |
-
"in order to use the Visual Editor widget at its full potential."
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: includes/class-
|
94 |
-
#. translators:
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
msgstr ""
|
1 |
+
# Copyright (C) 2017 Black Studio
|
2 |
+
# This file is distributed under the GPLv3.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Black Studio TinyMCE Widget 2.6.0\n"
|
6 |
+
"Report-Msgid-Bugs-To: "
|
7 |
+
"https://github.com/black-studio/black-studio-tinymce-widget/issues\n"
|
8 |
+
"POT-Creation-Date: 2017-11-17 00:53:22+00:00\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
|
13 |
+
"Last-Translator: Black Studio <info@blackstudio.it>\n"
|
14 |
+
"Language-Team: Black Studio <info@blackstudio.it>\n"
|
15 |
+
"X-Generator: grunt-wp-i18n 0.4.9\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Poedit-Language: English\n"
|
19 |
+
"X-Poedit-Country: United States\n"
|
20 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
21 |
+
"X-Poedit-KeywordsList: "
|
22 |
+
"__;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_"
|
23 |
+
"x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
24 |
+
"X-Poedit-Bookmarks: \n"
|
25 |
+
"X-Poedit-SearchPath-0: .\n"
|
26 |
+
"X-Textdomain-Support: yes\n"
|
27 |
+
|
28 |
+
#: black-studio-tinymce-widget.php:279
|
29 |
+
#. translators: error message shown when multiple instance of the plugin are
|
30 |
+
#. detected
|
31 |
+
msgid ""
|
32 |
+
"ERROR: Multiple instances of the Black Studio TinyMCE Widget plugin were "
|
33 |
+
"detected. Please activate only one instance at a time."
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: includes/class-admin-pointer.php:167
|
37 |
+
#. translators: text for the dismissable admin pointer tooltip
|
38 |
+
msgid ""
|
39 |
+
"The Visual Editor widget allows you to insert rich text and media objects "
|
40 |
+
"in your sidebars"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: includes/class-admin.php:250
|
44 |
+
#. translators: error message shown when a duplicated widget ID is detected
|
45 |
+
msgid ""
|
46 |
+
"ERROR: Duplicate widget ID detected. To avoid content loss, please create a "
|
47 |
+
"new widget with the same content and then delete this one."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: includes/class-admin.php:338
|
51 |
+
#. translators: text used for plugin home link
|
52 |
+
msgid "Home"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: includes/class-admin.php:340
|
56 |
+
#. translators: text used for support faq link
|
57 |
+
msgid "FAQ"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: includes/class-admin.php:342
|
61 |
+
#. translators: text used for support forum link
|
62 |
+
msgid "Support"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-admin.php:344
|
66 |
+
#. translators: text used for reviews link
|
67 |
+
msgid "Rate"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: includes/class-admin.php:346
|
71 |
+
#. translators: text used for follow on twitter link
|
72 |
+
msgid "Follow"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: includes/class-admin.php:348
|
76 |
+
#. translators: text used for donation link
|
77 |
+
msgid "Donate"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: includes/class-admin.php:368
|
81 |
+
#. translators: text used for the icon that shows the plugin links
|
82 |
+
msgid "About Black Studio TinyMCE Widget plugin"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-admin.php:460
|
86 |
+
#. translators: warning message shown when when visual editor is disabled in
|
87 |
+
#. current user's profile settings
|
88 |
+
msgid ""
|
89 |
+
"Visual Editor is disabled in your Profile settings. You need to enable it "
|
90 |
+
"in order to use the Visual Editor widget at its full potential."
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-compatibility-plugins.php:241
|
94 |
+
#. translators: Warning displayed when deprecated translations of the current
|
95 |
+
#. widget are detected
|
96 |
+
msgid ""
|
97 |
+
"WARNING: This widget has one or more translations made using WPML String "
|
98 |
+
"Translation plugin, which is now a deprecated method of translating "
|
99 |
+
"widgets, in favor of the \"Display on language\" dropdown introduced with "
|
100 |
+
"WPML 3.8. Please migrate your existing translations by creating new widgets "
|
101 |
+
"and selecting the language of this widget and the new ones accordingly. "
|
102 |
+
"Finally delete the existing translations from <a href=\"%s\">WPML String "
|
103 |
+
"Translation interface</a>."
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/class-widget.php:27
|
107 |
+
#. translators: title of the widget
|
108 |
+
msgid "Visual Editor"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: includes/class-widget.php:29
|
112 |
+
#. translators: description of the widget, shown in available widgets
|
113 |
+
msgid "Arbitrary text or HTML with visual editor"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#. Description of the plugin/theme
|
117 |
+
msgid ""
|
118 |
+
"Adds a new \"Visual Editor\" widget type based on the native WordPress "
|
119 |
+
"TinyMCE editor."
|
120 |
msgstr ""
|
readme.txt
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
=== Black Studio TinyMCE Widget ===
|
2 |
Contributors: black-studio, marcochiesi, thedarkmist
|
3 |
-
Donate link:
|
4 |
-
Tags:
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv3
|
9 |
-
License URI:
|
10 |
|
11 |
-
The visual editor widget for
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
This plugin adds a new `Visual Editor` widget type that allows you to insert rich text and media objects in your sidebars with no hassle. With Black Studio TinyMCE Widget you will be able to edit your widgets in a WYSIWYG manner using the native WordPress TinyMCE editor, just like you do in posts and pages. And if you are a developer you may still switch back and forth from Visual to HTML mode. For years the default WordPress text widget lacked
|
16 |
|
17 |
= Features =
|
18 |
|
@@ -31,8 +31,8 @@ This plugin adds a new `Visual Editor` widget type that allows you to insert ric
|
|
31 |
|
32 |
= Links =
|
33 |
|
34 |
-
* [Author's web site](
|
35 |
-
* [Plugin's page](
|
36 |
* [FAQ](https://wordpress.org/plugins/black-studio-tinymce-widget/faq/)
|
37 |
* [Support forum](https://wordpress.org/support/plugin/black-studio-tinymce-widget)
|
38 |
* Follow us on [Twitter](https://twitter.com/blackstudioita), [Facebook](https://www.facebook.com/blackstudiocomunicazione) and [LinkedIn](https://www.linkedin.com/company/black-studio)
|
@@ -41,7 +41,7 @@ This plugin adds a new `Visual Editor` widget type that allows you to insert ric
|
|
41 |
|
42 |
* Developers can contribute to the source code on our [GitHub repository](https://github.com/black-studio/black-studio-tinymce-widget).
|
43 |
* Translators can contribute through [Transifex](https://www.transifex.com/projects/p/black-studio-tinymce-widget/).
|
44 |
-
* Users can contribute by leaving a 5 stars [review](https://wordpress.org/support/view/plugin-reviews/black-studio-tinymce-widget#postform) or making a [donation](
|
45 |
|
46 |
== Installation ==
|
47 |
|
@@ -63,53 +63,53 @@ This section describes how to install and use the plugin.
|
|
63 |
|
64 |
= Troubleshooting =
|
65 |
|
66 |
-
If you are experiencing issues with the plugin please read entirely these FAQ before posting a new topic in our [support forum](
|
67 |
|
68 |
-
1. First, ensure you have understood the purpose of the plugin. What this plugin does is to give you the ability to use the WordPress visual editor (TinyMCE) in widgets as you do in posts and pages, but it doesn't alter the editor behavior itself or its functionalities. So if you are experiencing issues with the editor even when editing posts or pages, they're definitely not related to our plugin (unless you're using some additional plugins that
|
69 |
2. Ensure that you are running the latest versions of both WordPress and the plugin.
|
70 |
-
3. Search in our [support forum](
|
71 |
-
4. Disable all other plugins and check if the problem is fixed. In that case enable the other plugins one by one and figure out which one is causing the issue. Please see [Conflict Diagnosis Guide for WordPress plugins](https://rtcamp.com/rtmedia/docs/troubleshooting/conflict-diagnosis-guide-wordpress-plugins/) for further info.
|
72 |
5. If the problem persists even with all other plugins disabled, try to switch to a WordPress default theme (i.e. Twenty Fifteen) and check if that fixes the issue.
|
73 |
|
74 |
-
If you found a conflict with a plugin or theme, or if your problem is still present after the steps above, open a topic in the [support forum](
|
75 |
|
76 |
* Detailed description of the problem, including the steps to reproduce it
|
77 |
* Location(s) where the problem occurs (Appearance -> Widgets, Theme Customizer, Accessibility mode, Page Builder, etc)
|
78 |
-
* Error messages, if any, in particular in [browser's javascript console](
|
79 |
* Browser and Operating System in use
|
80 |
* Plugin version in use
|
81 |
* WordPress version in use
|
82 |
* WordPress theme in use
|
83 |
-
* WordPress language in use, if other than
|
84 |
* WordPress plugins causing conflicts, if any
|
85 |
* A link to a screenshot, if it can be useful to understand the problem
|
86 |
* A link to your website, if it can be useful to show the problem
|
87 |
|
88 |
= Can't find it in my available widgets =
|
89 |
|
90 |
-
Since version 1.3.1 the name of the widget changed from `Black Studio TinyMCE Widget` to `Visual Editor` to enhance user
|
91 |
|
92 |
= Widgets disappeared after migrating or changing the site URL =
|
93 |
|
94 |
-
When dealing with a WordPress site URL change it is necessary to face the serialized fields issue: data may become corrupted if using a simple search/replace (see the [Codex](
|
95 |
|
96 |
= How to translate widgets using WPML =
|
97 |
|
98 |
[WPML](https://wpml.org) is the leading commercial plugin for WordPress multi-language sites.
|
99 |
-
If you're using WPML
|
100 |
-
|
101 |
|
102 |
= How to embed video and other contents =
|
103 |
|
104 |
-
WordPress has a nice [autoembed feature](
|
105 |
-
If you are using a version of WordPress prior to 4.0 or a version of Black Studio TinyMCE Widget prior to 2.0, for best results it is recommended to put the URL inside an `[embed]` shortcode. Example:
|
106 |
-
`[embed]
|
107 |
-
Ensure that the URL has not
|
108 |
Alternatively, if you don't want to use `[embed]` shortcode, ensure that the URL is not surrounded by a `<p>` tag.
|
109 |
|
110 |
= How to customize widget appearance =
|
111 |
|
112 |
-
The appearance of widgets in the frontend depends on both CSS and HTML. This plugin does not insert any additional CSS to your website frontend, so if you need to customize the styling you'll have to do at theme level, or you have to insert explicitly insert `<style>` in your widget using the
|
113 |
As for the HTML, most of the markup is controlled by WordPress and by the theme.
|
114 |
The HTML output of a widget includes the following parts:
|
115 |
`
|
@@ -125,7 +125,7 @@ The HTML output of a widget includes the following parts:
|
|
125 |
which can be customized as following:
|
126 |
|
127 |
* The `{title}` and `{text}` are the values that you insert in Widgets administration panel.
|
128 |
-
* The markup of `{before_widget}`, `{after_widget}`, `{before_title}`, `{after_title}` is usually defined by your theme when registering a sidebar with the [`register_sidebar`](
|
129 |
* The `{before_text}` and `{after_text}` are the only piece of HTML markup added by the plugin. The default markup is the same as native WordPress text widgets to ensure visual compatibility with styles created for text widgets: `<div class="textwidget"> {text} </div>`. You may customize the markup using the `black_studio_tinymce_before_text` and `black_studio_tinymce_after_text` filter hooks. They both take two parameters, the first is the default text and the second is the widget instance. See examples below.
|
130 |
|
131 |
Example 1: Custom markup for `{before_text}` and `{after_text}`
|
@@ -153,14 +153,14 @@ add_filter( 'black_studio_tinymce_hide_empty', '__return_true' );
|
|
153 |
|
154 |
= How to customize widget contents (using hooks) =
|
155 |
|
156 |
-
You may alter widget title and text via code using the `widget_title` and `widget_text` filter hooks (see [Codex](
|
157 |
The plugin also internally uses `widget_text` filter to apply specific features:
|
158 |
|
159 |
-
* [icl_t](
|
160 |
-
* [autoembed](
|
161 |
-
* [convert_smilies](
|
162 |
-
* [wpautop](
|
163 |
-
* [do_shortcode](
|
164 |
|
165 |
If for any reason you need to remove the filters above, you may use the following code snippet (or a custom version of it):
|
166 |
|
@@ -179,7 +179,7 @@ function remove_bstw_widget_text_filters() {
|
|
179 |
|
180 |
= Plugin's data location and cleanup =
|
181 |
|
182 |
-
The widgets data are stored in serialized format inside a record in the `wp_options` table having `option_name` = `'widget_black-studio-tinymce'`. Widget data storage is handled by WordPress and not directly by the plugin. The widgets data are intentionally kept in the database upon plugin deactivation
|
183 |
If you want to totally remove the plugin including its data, just uninstall it and then remove the above records from the database.
|
184 |
You may use the following SQL queries for removal (Note: adjust table prefix according to your database settings):
|
185 |
`
|
@@ -189,8 +189,14 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
189 |
|
190 |
== Changelog ==
|
191 |
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
= 2.5.1 (2017-10-01) =
|
193 |
-
*Hotfix for Page Builder / Elementor compatibility
|
194 |
|
195 |
= 2.5.0 (2017-10-01) =
|
196 |
* Fixed compatibility issue with Elementor Page Builder plugin (auto-disabled when editing a page with Elementor)
|
@@ -291,7 +297,7 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
291 |
|
292 |
= 2.1.3 (2014-10-18) =
|
293 |
* Added ability to disable automatic addition of paragraphs when editing (i.e. using TinyMCE Advanced plugin option)
|
294 |
-
* Enhanced real
|
295 |
* Fixed compatibility issue with Page Builder related to comment reply in admin
|
296 |
* Fixed compatibility issue with Styles plugin related to plugins_loaded hook
|
297 |
|
@@ -299,14 +305,14 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
299 |
* Hotfix for full screen mode when using Page Builder
|
300 |
|
301 |
= 2.1.1 (2014-10-13) =
|
302 |
-
* Hotfix for CSS compatibility with Page Builder
|
303 |
|
304 |
= 2.1.0 (2014-10-13) =
|
305 |
* Added option to automatically add paragraphs
|
306 |
* Added admin pointer to help new users identify the widget
|
307 |
* Added loading overlay when saving widget
|
308 |
* Added check for multiple instances of the plugin
|
309 |
-
* Fixed issue related to multiple line
|
310 |
* Fixed issues with RTL locales
|
311 |
* Enhanced compatibility for widgets created with 1.x versions of the plugin
|
312 |
* Updated documentation about widget customization
|
@@ -330,10 +336,10 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
330 |
* Added support for mobile devices (responsive width in widgets administration page)
|
331 |
* Added project to [GitHub](https://github.com/black-studio/black-studio-tinymce-widget)
|
332 |
* Added project to [Transifex](https://www.transifex.com/projects/p/black-studio-tinymce-widget/) translation platform
|
333 |
-
* Added many new translations thanks to [WP-Translation.org](
|
334 |
* Added several filter and action hooks
|
335 |
* Improved code quality and security thanks to [Scrutinizer](https://scrutinizer-ci.com/g/black-studio/black-studio-tinymce-widget/) service
|
336 |
-
* Improved development workflow thanks to [Grunt](
|
337 |
* Improved performance and user experience
|
338 |
* A huge Thanks to [@cfoellmann](https://github.com/cfoellmann) for his precious support and contributions
|
339 |
|
@@ -356,7 +362,7 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
356 |
* Added filter hooks to modify the markup before and after the widget text
|
357 |
* Fixed z-index issue in fullscreen mode
|
358 |
* Added widget icon for theme customizer
|
359 |
-
* Updated
|
360 |
* Updated FAQ and readme.txt
|
361 |
|
362 |
= 1.4.2 (2014-07-07) =
|
@@ -376,7 +382,7 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
376 |
* Duplicated widget IDs detection
|
377 |
* Added Rate link
|
378 |
* Added compatibility with WordPress Language packs
|
379 |
-
* Added ukrainian translation (Contributor: Michael Yunat
|
380 |
* Fixed notice on theme_advanced_buttons1 parameter
|
381 |
* Fixed z-index issue with WordPress 3.9 admin menu on small screens
|
382 |
|
@@ -392,7 +398,7 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
392 |
* Updated FAQ
|
393 |
|
394 |
= 1.3.1 (2014-03-06) =
|
395 |
-
* Renamed the widget to `Visual Editor` for better user
|
396 |
* Fixed compatibility issue with FirmaSite Theme Enhancer plugin
|
397 |
|
398 |
= 1.3.0 (2014-01-29) =
|
@@ -403,7 +409,7 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
403 |
* Fixed compatibility issue with Jetpack / After the Deadline plugin
|
404 |
* Fixed editor behavior on widget title clicks
|
405 |
* Fixed CSS issue affecting Firefox on WordPress 3.8
|
406 |
-
* Added
|
407 |
* Better handling of More tag button
|
408 |
* Included JS dev version
|
409 |
|
@@ -411,7 +417,7 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
411 |
* Fixed issue with WordPress widgets accessibility mode
|
412 |
* Fixed compatibility issue with WPML plugin generating an error in debug mode
|
413 |
* Fixed compatibility issue with WP Page Widget plugin
|
414 |
-
* Added slovak translation (Contributor: Branco Radenovich
|
415 |
* Tested compatibility with Worpdress 3.6 beta
|
416 |
|
417 |
= 1.1.1 (2012-12-31) =
|
@@ -424,9 +430,9 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
424 |
|
425 |
= 1.0.0 (2012-10-19) =
|
426 |
* Added full image options when adding content from media library
|
427 |
-
* Added
|
428 |
-
* Overall
|
429 |
-
* Better
|
430 |
* Fixed editor background color
|
431 |
* Fixed compatibility issue with WP Page Widget plugin
|
432 |
* Fixed issue about editor partially hidden on narrow screens
|
@@ -465,7 +471,7 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
465 |
* Optimization/compression of javascript code
|
466 |
|
467 |
= 0.6.5 (2011-11-17) =
|
468 |
-
* Forced TinyMCE editor to not automatically add/remove paragraph tags when switching to HTML mode (you may need to re-edit your widgets to adjust line
|
469 |
|
470 |
= 0.6.4 (2011-11-14) =
|
471 |
* Fixed compatibility issue with Jetpack / After the Deadline plugin
|
@@ -488,5 +494,5 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
488 |
|
489 |
== Upgrade Notice ==
|
490 |
|
491 |
-
= 2.
|
492 |
Version 2.x is a major update. If you are upgrading from version 1.x please ensure to backup your database before upgrading.
|
1 |
=== Black Studio TinyMCE Widget ===
|
2 |
Contributors: black-studio, marcochiesi, thedarkmist
|
3 |
+
Donate link: https://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce-widget/
|
4 |
+
Tags: widget, visual, editor, wysiwyg, html, text, tinymce, image, media, gallery, embed, wpml
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 4.9
|
7 |
+
Stable tag: 2.6.0
|
8 |
License: GPLv3
|
9 |
+
License URI: https://www.gnu.org/licenses/gpl.html
|
10 |
|
11 |
+
The visual editor widget for WordPress.
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
This plugin adds a new `Visual Editor` widget type that allows you to insert rich text and media objects in your sidebars with no hassle. With Black Studio TinyMCE Widget you will be able to edit your widgets in a WYSIWYG manner using the native WordPress TinyMCE editor, just like you do in posts and pages. And if you are a developer you may still switch back and forth from Visual to HTML mode. For years the default WordPress text widget lacked functionalities and it required HTML knowledge, this plugin was born to overcome these limitations. The recent releases of WordPress (starting from version 4.8 released in June 2017), finally included a native visual text widget, but it's pretty minimal and it doesn't provide all the features available with Black Studio TinyMCE Widget, which still remains a must-have for advanced users.
|
16 |
|
17 |
= Features =
|
18 |
|
31 |
|
32 |
= Links =
|
33 |
|
34 |
+
* [Author's web site](https://www.blackstudio.it/en/)
|
35 |
+
* [Plugin's page](https://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce-widget/)
|
36 |
* [FAQ](https://wordpress.org/plugins/black-studio-tinymce-widget/faq/)
|
37 |
* [Support forum](https://wordpress.org/support/plugin/black-studio-tinymce-widget)
|
38 |
* Follow us on [Twitter](https://twitter.com/blackstudioita), [Facebook](https://www.facebook.com/blackstudiocomunicazione) and [LinkedIn](https://www.linkedin.com/company/black-studio)
|
41 |
|
42 |
* Developers can contribute to the source code on our [GitHub repository](https://github.com/black-studio/black-studio-tinymce-widget).
|
43 |
* Translators can contribute through [Transifex](https://www.transifex.com/projects/p/black-studio-tinymce-widget/).
|
44 |
+
* Users can contribute by leaving a 5 stars [review](https://wordpress.org/support/view/plugin-reviews/black-studio-tinymce-widget#postform) or making a [donation](https://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce-widget/).
|
45 |
|
46 |
== Installation ==
|
47 |
|
63 |
|
64 |
= Troubleshooting =
|
65 |
|
66 |
+
If you are experiencing issues with the plugin please read entirely these FAQ before posting a new topic in our [support forum](https://wordpress.org/support/plugin/black-studio-tinymce-widget). Most of the times issues are caused by incompatibility with other plugins or themes, which may prevent our plugin from working as expected. In order to troubleshoot issues please complete the following steps:
|
67 |
|
68 |
+
1. First, ensure you have understood the purpose of the plugin. What this plugin does is to give you the ability to use the WordPress visual editor (TinyMCE) in widgets as you do in posts and pages, but it doesn't alter the editor behavior itself or its functionalities. So if you are experiencing issues with the editor even when editing posts or pages, they're definitely not related to our plugin (unless you're using some additional plugins that provide widgets support for pages, i.e. Page Builder).
|
69 |
2. Ensure that you are running the latest versions of both WordPress and the plugin.
|
70 |
+
3. Search in our [support forum](https://wordpress.org/support/plugin/black-studio-tinymce-widget) for threads with similar issues.
|
71 |
+
4. Disable all other plugins and check if the problem is fixed. In that case, enable the other plugins one by one and figure out which one is causing the issue. Please see [Conflict Diagnosis Guide for WordPress plugins](https://rtcamp.com/rtmedia/docs/troubleshooting/conflict-diagnosis-guide-wordpress-plugins/) for further info.
|
72 |
5. If the problem persists even with all other plugins disabled, try to switch to a WordPress default theme (i.e. Twenty Fifteen) and check if that fixes the issue.
|
73 |
|
74 |
+
If you found a conflict with a plugin or theme, or if your problem is still present after the steps above, open a topic in the [support forum](https://wordpress.org/support/plugin/black-studio-tinymce-widget) and provide the following information:
|
75 |
|
76 |
* Detailed description of the problem, including the steps to reproduce it
|
77 |
* Location(s) where the problem occurs (Appearance -> Widgets, Theme Customizer, Accessibility mode, Page Builder, etc)
|
78 |
+
* Error messages, if any, in particular in [browser's javascript console](https://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers)
|
79 |
* Browser and Operating System in use
|
80 |
* Plugin version in use
|
81 |
* WordPress version in use
|
82 |
* WordPress theme in use
|
83 |
+
* WordPress language in use, if other than English
|
84 |
* WordPress plugins causing conflicts, if any
|
85 |
* A link to a screenshot, if it can be useful to understand the problem
|
86 |
* A link to your website, if it can be useful to show the problem
|
87 |
|
88 |
= Can't find it in my available widgets =
|
89 |
|
90 |
+
Since version 1.3.1 the name of the widget changed from `Black Studio TinyMCE Widget` to `Visual Editor` to enhance user-friendliness. `Black Studio TinyMCE Widget` is still the name of the plugin, but it was a bit too long and not very intuitive for inexperienced users. You may find references to the old name in articles and videos on the web, so don't panic if you don't see the `Black Studio TinyMCE Widget` in your available widgets, just look for `Visual Editor`. Note: if you are using WordPress in a language other than English you may have a corresponding name translated into your language.
|
91 |
|
92 |
= Widgets disappeared after migrating or changing the site URL =
|
93 |
|
94 |
+
When dealing with a WordPress site URL change it is necessary to face the serialized fields issue: data may become corrupted if using a simple search/replace (see the [Codex](https://codex.wordpress.org/Moving_WordPress#When_Your_Domain_Name_or_URLs_Change) for further info). This is not an issue specifically related to our plugin, but it affects all the parts (plugins, themes and WordPress core files too) that use serialized data archiving. When changing the site URL, the recommended way is to use the [Search and Replace for WordPress Databases Script](https://interconnectit.com/products/search-and-replace-for-wordpress-databases/), as suggested by the Codex.
|
95 |
|
96 |
= How to translate widgets using WPML =
|
97 |
|
98 |
[WPML](https://wpml.org) is the leading commercial plugin for WordPress multi-language sites.
|
99 |
+
If you're using WPML v3.8 or newer and you need to translate a widget, we recommend to create a separate widget for each language of your site and assign the language to each widget accordingly using the selector "Display on language" provided by WPML. This way you will be able to work with the visual editor also for translations.
|
100 |
+
For older versions of WPML (up to 3.7.x), we recommend to install the 3rd party [WPML Widgets](https://wordpress.org/plugins/wpml-widgets/) plugin, which provides the same feature described above, that was not available natively on WPML. In the past, we also suggested to translate the widgets using the official WPML String Translation plugin, but this method is now deprecated as it was not very friendly due to the inability of using the visual editor for translations. If you were using WPML String Translation, we recommend to switch to the aforementioned translation method and remove the entries in WPML String Translation list after you moved them to be real widgets. Starting from version 2.6.0 of Black Studio TinyMCE Widget, a warning will be displayed if any deprecated translation is detected.
|
101 |
|
102 |
= How to embed video and other contents =
|
103 |
|
104 |
+
WordPress has a nice [autoembed feature](https://codex.wordpress.org/Embeds) that allows you to embed videos and other stuff in an easy way, by just putting the URL in the content area. This is also possible for widgets created with this plugin.
|
105 |
+
If you are using a version of WordPress prior to 4.0 or a version of Black Studio TinyMCE Widget prior to 2.0, for best results it is recommended to put the URL inside an `[embed]` shortcode. Example:
|
106 |
+
`[embed]https://www.youtube.com/watch?v=XXXXXXXXXXX[/embed]`
|
107 |
+
Ensure that the URL has not a hyperlink.
|
108 |
Alternatively, if you don't want to use `[embed]` shortcode, ensure that the URL is not surrounded by a `<p>` tag.
|
109 |
|
110 |
= How to customize widget appearance =
|
111 |
|
112 |
+
The appearance of widgets in the frontend depends on both CSS and HTML. This plugin does not insert any additional CSS to your website frontend, so if you need to customize the styling you'll have to do at theme level, or you have to insert explicitly insert `<style>` in your widget using the Text / HTML mode (this option is not recommended though).
|
113 |
As for the HTML, most of the markup is controlled by WordPress and by the theme.
|
114 |
The HTML output of a widget includes the following parts:
|
115 |
`
|
125 |
which can be customized as following:
|
126 |
|
127 |
* The `{title}` and `{text}` are the values that you insert in Widgets administration panel.
|
128 |
+
* The markup of `{before_widget}`, `{after_widget}`, `{before_title}`, `{after_title}` is usually defined by your theme when registering a sidebar with the [`register_sidebar`](https://codex.wordpress.org/Function_Reference/register_sidebar) function.
|
129 |
* The `{before_text}` and `{after_text}` are the only piece of HTML markup added by the plugin. The default markup is the same as native WordPress text widgets to ensure visual compatibility with styles created for text widgets: `<div class="textwidget"> {text} </div>`. You may customize the markup using the `black_studio_tinymce_before_text` and `black_studio_tinymce_after_text` filter hooks. They both take two parameters, the first is the default text and the second is the widget instance. See examples below.
|
130 |
|
131 |
Example 1: Custom markup for `{before_text}` and `{after_text}`
|
153 |
|
154 |
= How to customize widget contents (using hooks) =
|
155 |
|
156 |
+
You may alter widget title and text via code using the `widget_title` and `widget_text` filter hooks (see [Codex](https://codex.wordpress.org/Plugin_API/Filter_Reference#Widgets) for details).
|
157 |
The plugin also internally uses `widget_text` filter to apply specific features:
|
158 |
|
159 |
+
* [icl_t](https://wpml.org/documentation/support/translation-for-texts-by-other-plugins-and-themes/) (priority 2): applies WPML translation (called only if WPML is activated on the site).
|
160 |
+
* [autoembed](https://codex.wordpress.org/Embeds) (priority 4): converts embed urls to relevant embed codes.
|
161 |
+
* [convert_smilies](https://codex.wordpress.org/Function_Reference/convert_smilies) (priority 6): converts text equivalent of smilies to images.
|
162 |
+
* [wpautop](https://codex.wordpress.org/Function_Reference/wpautop) (priority 8): applies paragraphs automatically (if the relevant option is selected).
|
163 |
+
* [do_shortcode](https://codex.wordpress.org/Function_Reference/do_shortcode) (priority 10): processes the shortcodes.
|
164 |
|
165 |
If for any reason you need to remove the filters above, you may use the following code snippet (or a custom version of it):
|
166 |
|
179 |
|
180 |
= Plugin's data location and cleanup =
|
181 |
|
182 |
+
The widgets data are stored in serialized format inside a record in the `wp_options` table having `option_name` = `'widget_black-studio-tinymce'`. Widget data storage is handled by WordPress and not directly by the plugin. The widgets data are intentionally kept in the database upon plugin deactivation/deletion to avoid content loss. Additionally, the plugin may save some user preferences in the `wp_usermeta` table, in particular, the records having s key with the prefix `_bstw`.
|
183 |
If you want to totally remove the plugin including its data, just uninstall it and then remove the above records from the database.
|
184 |
You may use the following SQL queries for removal (Note: adjust table prefix according to your database settings):
|
185 |
`
|
189 |
|
190 |
== Changelog ==
|
191 |
|
192 |
+
= 2.6.0 (2017-11-17) =
|
193 |
+
* Compatibility update for WPML 3.8
|
194 |
+
* Added filter `black_studio_tinymce_widget_additional_fields`
|
195 |
+
* Fixed issue on Page Builder Widgets being inadvertently translated
|
196 |
+
* Updated translations
|
197 |
+
|
198 |
= 2.5.1 (2017-10-01) =
|
199 |
+
* Hotfix for Page Builder / Elementor compatibility
|
200 |
|
201 |
= 2.5.0 (2017-10-01) =
|
202 |
* Fixed compatibility issue with Elementor Page Builder plugin (auto-disabled when editing a page with Elementor)
|
297 |
|
298 |
= 2.1.3 (2014-10-18) =
|
299 |
* Added ability to disable automatic addition of paragraphs when editing (i.e. using TinyMCE Advanced plugin option)
|
300 |
+
* Enhanced real-time rendering in theme customizer
|
301 |
* Fixed compatibility issue with Page Builder related to comment reply in admin
|
302 |
* Fixed compatibility issue with Styles plugin related to plugins_loaded hook
|
303 |
|
305 |
* Hotfix for full screen mode when using Page Builder
|
306 |
|
307 |
= 2.1.1 (2014-10-13) =
|
308 |
+
* Hotfix for CSS compatibility with Page Builder
|
309 |
|
310 |
= 2.1.0 (2014-10-13) =
|
311 |
* Added option to automatically add paragraphs
|
312 |
* Added admin pointer to help new users identify the widget
|
313 |
* Added loading overlay when saving widget
|
314 |
* Added check for multiple instances of the plugin
|
315 |
+
* Fixed issue related to multiple line-breaks not being saved
|
316 |
* Fixed issues with RTL locales
|
317 |
* Enhanced compatibility for widgets created with 1.x versions of the plugin
|
318 |
* Updated documentation about widget customization
|
336 |
* Added support for mobile devices (responsive width in widgets administration page)
|
337 |
* Added project to [GitHub](https://github.com/black-studio/black-studio-tinymce-widget)
|
338 |
* Added project to [Transifex](https://www.transifex.com/projects/p/black-studio-tinymce-widget/) translation platform
|
339 |
+
* Added many new translations thanks to [WP-Translation.org](https://wp-translations.org/) team
|
340 |
* Added several filter and action hooks
|
341 |
* Improved code quality and security thanks to [Scrutinizer](https://scrutinizer-ci.com/g/black-studio/black-studio-tinymce-widget/) service
|
342 |
+
* Improved development workflow thanks to [Grunt](https://gruntjs.com/)
|
343 |
* Improved performance and user experience
|
344 |
* A huge Thanks to [@cfoellmann](https://github.com/cfoellmann) for his precious support and contributions
|
345 |
|
362 |
* Added filter hooks to modify the markup before and after the widget text
|
363 |
* Fixed z-index issue in fullscreen mode
|
364 |
* Added widget icon for theme customizer
|
365 |
+
* Updated Danish translation
|
366 |
* Updated FAQ and readme.txt
|
367 |
|
368 |
= 1.4.2 (2014-07-07) =
|
382 |
* Duplicated widget IDs detection
|
383 |
* Added Rate link
|
384 |
* Added compatibility with WordPress Language packs
|
385 |
+
* Added ukrainian translation (Contributor: Michael Yunat)
|
386 |
* Fixed notice on theme_advanced_buttons1 parameter
|
387 |
* Fixed z-index issue with WordPress 3.9 admin menu on small screens
|
388 |
|
398 |
* Updated FAQ
|
399 |
|
400 |
= 1.3.1 (2014-03-06) =
|
401 |
+
* Renamed the widget to `Visual Editor` for better user-friendliness
|
402 |
* Fixed compatibility issue with FirmaSite Theme Enhancer plugin
|
403 |
|
404 |
= 1.3.0 (2014-01-29) =
|
409 |
* Fixed compatibility issue with Jetpack / After the Deadline plugin
|
410 |
* Fixed editor behavior on widget title clicks
|
411 |
* Fixed CSS issue affecting Firefox on WordPress 3.8
|
412 |
+
* Added Finnish translation (Contributor: Timo Leiniö)
|
413 |
* Better handling of More tag button
|
414 |
* Included JS dev version
|
415 |
|
417 |
* Fixed issue with WordPress widgets accessibility mode
|
418 |
* Fixed compatibility issue with WPML plugin generating an error in debug mode
|
419 |
* Fixed compatibility issue with WP Page Widget plugin
|
420 |
+
* Added slovak translation (Contributor: Branco Radenovich)
|
421 |
* Tested compatibility with Worpdress 3.6 beta
|
422 |
|
423 |
= 1.1.1 (2012-12-31) =
|
430 |
|
431 |
= 1.0.0 (2012-10-19) =
|
432 |
* Added full image options when adding content from media library
|
433 |
+
* Added German translation (Contributor: Christian Foellmann)
|
434 |
+
* Overall JavaScript code optimization
|
435 |
+
* Better JavaScript compression
|
436 |
* Fixed editor background color
|
437 |
* Fixed compatibility issue with WP Page Widget plugin
|
438 |
* Fixed issue about editor partially hidden on narrow screens
|
471 |
* Optimization/compression of javascript code
|
472 |
|
473 |
= 0.6.5 (2011-11-17) =
|
474 |
+
* Forced TinyMCE editor to not automatically add/remove paragraph tags when switching to HTML mode (you may need to re-edit your widgets to adjust line-breaks, if you were using multiple paragraphs)
|
475 |
|
476 |
= 0.6.4 (2011-11-14) =
|
477 |
* Fixed compatibility issue with Jetpack / After the Deadline plugin
|
494 |
|
495 |
== Upgrade Notice ==
|
496 |
|
497 |
+
= 2.6.0 =
|
498 |
Version 2.x is a major update. If you are upgrading from version 1.x please ensure to backup your database before upgrading.
|