Skip to content

Commit

Permalink
Fixed more typos
Browse files Browse the repository at this point in the history
  • Loading branch information
eclipsesrl committed Aug 19, 2019
1 parent b4fe501 commit 8f54b3a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.udesly.com/
Tags: webflow to wordpress, editor, page builder, layout design, udesly, webflow
Requires at least: 5.0
Tested up to: 5.2.2
Stable tag: 2.0.0.10
Stable tag: 2.0.0.11
License: GPLv3 or later
License URI: https://www.udesly.com/terms-conditions-of-use/#udesly-wordpress-plugin
Requires PHP: 5.6.0
Expand Down Expand Up @@ -81,6 +81,9 @@ Thats' all!
Absolutely! You can use the Udesly Adapter to create more than one website.
== Changelog ==

= 2.0.0.11 =
* Fixed more typos in Webflow data view.

= 2.0.0.10 =
* Fixed typos in Webflow data view.

Expand Down
4 changes: 2 additions & 2 deletions includes/Dashboard/Views/WebflowData.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,15 +249,15 @@ private static function theme_report_tab()
</ul>
<?php endif; ?>
<?php if ($page_report->custom_fields) : ?>
<p><strong><?php _e('Boxes', UDESLY_TEXT_DOMAIN); ?></strong></p>
<p><strong><?php _e('Custom Fields', UDESLY_TEXT_DOMAIN); ?></strong></p>
<ul style="list-style: disc; margin-left: 20px;">
<?php foreach ($page_report->custom_field as $cf) : ?>
<li> <?php echo $cf; ?></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
<?php if ($page_report->menus) : ?>
<p><strong><?php _e('Boxes', UDESLY_TEXT_DOMAIN); ?></strong></p>
<p><strong><?php _e('Menus', UDESLY_TEXT_DOMAIN); ?></strong></p>
<ul style="list-style: disc; margin-left: 20px;">
<?php foreach ($page_report->menus as $menu) : ?>
<li> <?php echo $menu; ?></li>
Expand Down
4 changes: 2 additions & 2 deletions udesly-adapter-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Udesly Adapter
* Plugin URI: https://www.udesly.com
* Description: This is a support plugin for Udesly (Webflow to WordPress converter) that allows you to enable additional features for your theme.
* Version: 2.0.0.10
* Version: 2.0.0.11
* Author: Udesly
* Author URI: https://www.udesly.com
* License: GPL-2.0+
Expand All @@ -29,7 +29,7 @@
// Constants
defined('UDESLY_ADAPTER_PLUGIN_DIRECTORY_PATH') ?: define('UDESLY_ADAPTER_PLUGIN_DIRECTORY_PATH', plugin_dir_path(__FILE__));
defined('UDESLY_ADAPTER_PLUGIN_DIRECTORY_URL') ?: define('UDESLY_ADAPTER_PLUGIN_DIRECTORY_URL', plugin_dir_url(__FILE__));
defined('UDESLY_ADAPTER_VERSION') ?: define('UDESLY_ADAPTER_VERSION', "2.0.0.10");
defined('UDESLY_ADAPTER_VERSION') ?: define('UDESLY_ADAPTER_VERSION', "2.0.0.11");
defined('UDESLY_TEXT_DOMAIN') ?: define('UDESLY_TEXT_DOMAIN', "udesly-adapter-plugin");

defined('UDESLY_ADAPTER_PLUGIN_MISC_PATH') ?: define('UDESLY_ADAPTER_PLUGIN_MISC_PATH', plugin_dir_path(__FILE__) . 'includes/misc/');
Expand Down

0 comments on commit 8f54b3a

Please sign in to comment.