Plugin Directory

Changeset 3111534


Ignore:
Timestamp:
07/03/2024 09:04:11 AM (21 months ago)
Author:
writetextai
Message:

temporary removal of language files
and minor text updates

Location:
writetext-ai
Files:
146 added
1 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • writetext-ai/trunk/CHANGELOG.md

    r3111055 r3111534  
    99The format is based on [Keep a Changelog](http://keepachangelog.com/)
    1010and this project adheres to [Semantic Versioning](http://semver.org/).
     11
     12## [1.30.5] - 2024-07-03
     13
     14### Changed
     15
     16- Various help text updates for the keyword analysis and remove translation files.
    1117
    1218## [1.30.4] - 2024-07-02
  • writetext-ai/trunk/assets/css/admin-installed.css

    r3110406 r3111534  
    1164111641    font-weight: 400;
    1164211642    line-height: 1.2;
    11643     text-align: right;
     11643    text-align: left;
     11644    margin-top: 5px;
    1164411645}
    1164511646
     
    1179911800
    1180011801.wtai-keyword-serp-wrap.tooltiptext .wtai-keyword-serp-header-wrap .wtai-keyword-serp-header-title{
    11801     margin-bottom: 0
     11802    margin-bottom: 0;
     11803    width: calc(100% - 60px);
    1180211804}
    1180311805
    1180411806.wtai-keyword-serp-header-ranked-wrap .wtai-keyword-serp-date{
    11805     width: 40%;
     11807    width: 100%;
    1180611808    flex: 1;
    1180711809}
     
    1226012262        text-align: left;
    1226112263        margin-bottom: 10px;
     12264    }
     12265
     12266    .wta-keyword-tooltip.tooltip .tooltiptext{
     12267        right: 0!important;
     12268        z-index: 99999999;
     12269    }
     12270
     12271    .wta-keyword-analysis-content-wrap.selected-keywords .wta-keyword-tooltip.tooltip .tooltiptext{
     12272        right: -60px!important
     12273    }
     12274
     12275    .wta-keyword-analysis-content-wrap.your-keywords .wta-keyword-tooltip.tooltip .tooltiptext{
     12276        right: -60px!important
     12277    }
     12278
     12279    .wta-keyword-analysis-content-wrap.suggested-keywords .wta-keyword-tooltip.tooltip .tooltiptext{
     12280        right: -130px!important
    1226212281    }
    1226312282}
  • writetext-ai/trunk/assets/js/admin-installed.js

    r3111055 r3111534  
    1754417544            }
    1754517545
     17546            if( isNaN( progress ) ){
     17547                progress = 0;
     17548            }
     17549
     17550            if( isNaN( max_progress ) ){
     17551                if( refresh_type == 'selected-keywords' || refresh_type == 'competitor-keywords' ){
     17552                    max_progress = 7;
     17553                }
     17554                else{
     17555                    max_progress = 4;
     17556                }
     17557            }
     17558
    1754617559            var per = ( parseInt( progress ) / parseInt( max_progress ) ) * 100;
     17560
    1754717561            if( per > 100 || force_done ){
    1754817562                per = 100;
  • writetext-ai/trunk/includes/class-wtai-product-dashboard.php

    r3111012 r3111534  
    121121        add_action( 'wp_head', array( $this, 'add_product_custom_body_class' ) );
    122122        add_action( 'wtai_admin_mobile_footer', array( $this, 'render_wtai_admin_mobile_footer' ), 10, 1 );
     123        add_action( 'wtai_render_intent_tooltip', array( $this, 'render_intent_tooltip' ), 10, 1 );
    123124    }
    124125
     
    40814082        }
    40824083    }
     4084
     4085    /**
     4086     * Render intent tooltip.
     4087     */
     4088    public function render_intent_tooltip() {
     4089        include WTAI_ABSPATH . 'templates/admin/intent-tooltip.php';
     4090    }
    40834091}
    40844092global $wtai_product_dashboard;
  • writetext-ai/trunk/readme.txt

    r3111055 r3111534  
    55Requires at least: 6.0
    66Tested up to: 6.5.2
    7 Stable tag: 1.30.4
     7Stable tag: 1.30.5
    88Requires PHP: 7.4
    99License: GPLv3 or later
     
    157157
    158158== Changelog ==
     159
     160= 1.30.5 2024-07-03 =
     161
     162* Update - Various help text updates for the keyword analysis and remove translation files.
    159163
    160164= 1.30.4 2024-07-02 =
     
    586590== Upgrade Notice ==
    587591
    588 = 1.30.4 =
     592= 1.30.5 =
    589593
    590594Please upgrade, to ensure all plugin features works as expected.
  • writetext-ai/trunk/templates/admin/dashboard.php

    r3110204 r3111534  
    242242            <input type="checkbox" name="wtai-use-ranking-keywords" id="wtai-use-ranking-keywords" value="1"  />
    243243            <?php
    244                 echo wp_kses_post( __( "Use keywords you're currently ranking on", 'writetext-ai' ) );
     244                echo wp_kses_post( __( "Use keywords you're currently ranking for", 'writetext-ai' ) );
    245245            ?>
    246246        </label>
  • writetext-ai/trunk/templates/admin/metabox/keywords-serp.php

    r3110204 r3111534  
    1212$serp_header_title = '';
    1313if ( 'ranked' === $keyword_type ) {
    14     $serp_header_title = __( 'SERP Overview', 'writetext-ai' );
     14    $serp_header_title = __( 'Search Engine Results Page (SERP) Overview', 'writetext-ai' );
    1515} elseif ( 'competitor' === $keyword_type ) {
    1616    $serp_header_title = __( 'Competitors', 'writetext-ai' );
     
    4242                if ( $serp_header_title ) {
    4343                    ?>
    44                     <div class="wtai-keyword-serp-header-title"><?php echo wp_kses_post( $serp_header_title ); ?></div>
    45                     <?php
    46                 }
    47                 if ( $serp_date ) {
    48                     $serp_date_timestamp = strtotime( get_date_from_gmt( $serp_date, 'Y-m-d H:i:s' ) );
    49                     $serp_date_formatted = sprintf(
    50                         /* translators: %1$s: date, %2$s: time */
    51                         __( '%1$s at %2$s' ),
    52                         date_i18n( get_option( 'date_format' ), $serp_date_timestamp ),
    53                         date_i18n( get_option( 'time_format' ), $serp_date_timestamp )
    54                     );
    55                     ?>
    56                     <div class="wtai-keyword-serp-date"><?php echo wp_kses_post( __( 'SERP data as of ', 'writetext-ai' ) . $serp_date_formatted ); ?></div>
     44                    <div class="wtai-keyword-serp-header-title">
     45                        <?php echo wp_kses_post( $serp_header_title ); ?>
     46                        <?php
     47                        if ( $serp_date ) {
     48                            $serp_date_timestamp = strtotime( get_date_from_gmt( $serp_date, 'Y-m-d H:i:s' ) );
     49                            $serp_date_formatted = sprintf(
     50                                /* translators: %1$s: date, %2$s: time */
     51                                __( '%1$s at %2$s' ),
     52                                date_i18n( get_option( 'date_format' ), $serp_date_timestamp ),
     53                                date_i18n( get_option( 'time_format' ), $serp_date_timestamp )
     54                            );
     55                            ?>
     56                            <div class="wtai-keyword-serp-date"><?php echo wp_kses_post( __( 'SERP data as of ', 'writetext-ai' ) . $serp_date_formatted ); ?></div>
     57                            <?php
     58                        }
     59                        ?>
     60                    </div>
    5761                    <?php
    5862                }
  • writetext-ai/trunk/templates/admin/metabox/popin-keyword.php

    r3111012 r3111534  
    134134                                <div class="tooltiptext"><div class="tooltip__arrow"></div>
    135135                                    <?php
    136                                     echo wp_kses_post( __( 'If you have selected any, WriteText.ai will retrieve the SERP data for each keyword (which you can preview upon clicking the keyword) along with intent, search volume, and difficulty.', 'writetext-ai' ) );
     136                                    echo '<p>' . wp_kses_post( __( 'If you have selected any, WriteText.ai will retrieve the SERP data for each keyword (which you can preview upon clicking the keyword) along with intent, search volume, and difficulty.', 'writetext-ai' ) ) . '</p>';
     137                                    do_action( 'wtai_render_intent_tooltip' );
    137138                                    ?>
    138139                                </div> 
     
    170171                        <div class="wta-keyword-analysis-api-data hidden" ></div>
    171172                        <div class="wta-keyword-analysis-empty-label hidden" >
    172                             <?php echo wp_kses_post( __( 'Keywords you select to be included in your text will be displayed here. To start, click the + sign for the keyword you want to add from the sections below or manually type your desired target keyword in the “Your own keywords” section.', 'writetext-ai' ) ); ?>
     173                            <?php echo wp_kses_post( __( 'Keywords you select to be included in your text will be displayed here.', 'writetext-ai' ) ); ?>
    173174                        </div>
    174175                    </div>
     
    183184                        <div class="wta-keyword-analysis-content-title has-toggle" >
    184185                            <span class="wta-keyword-title-icon star" ></span>
    185                             <span class="wta-keyword-title-label" ><?php echo wp_kses_post( __( "Keywords you're currently ranking on", 'writetext-ai' ) ); ?></span>
     186                            <span class="wta-keyword-title-label" ><?php echo wp_kses_post( __( "Keywords you're currently ranking for", 'writetext-ai' ) ); ?></span>
    186187                            <div class="wta-keyword-tooltip tooltip">
    187188                                <span class="icon-tooltip dashicons dashicons-editor-help"></span>
    188189                                <div class="tooltiptext"><div class="tooltip__arrow"></div>
    189190                                    <?php
    190                                     echo wp_kses_post( __( 'If it’s the first time you’re doing an AI-powered keyword analysis on the site, WriteText.ai will retrieve ranking data for the whole domain (i.e., this page and your other product pages). If your page is ranking on any keyword/s, they will show here along with data on intent, search volume, and difficulty. Click the + sign to select a keyword to be included in your text.', 'writetext-ai' ) );
     191                                    echo '<p>' . wp_kses_post( __( ' If it’s the first time you’re doing an AI-powered keyword analysis on the site, WriteText.ai will retrieve ranking data for the whole domain (i.e., this page and your other product pages). If your page is ranking for any keyword/s, they will show here along with data on intent, search volume, and difficulty.', 'writetext-ai' ) ) . '</p>';
     192                                    do_action( 'wtai_render_intent_tooltip' );
    191193                                    ?>
    192194                                </div> 
     
    216218                        <div class="wta-keyword-analysis-content-title has-toggle" >
    217219                            <span class="wta-keyword-title-icon rank" ></span>
    218                             <span class="wta-keyword-title-label" ><?php echo wp_kses_post( __( 'Keywords your competitors are ranking on', 'writetext-ai' ) ); ?></span>
     220                            <span class="wta-keyword-title-label" ><?php echo wp_kses_post( __( 'Keywords your competitors are ranking for', 'writetext-ai' ) ); ?></span>
    219221                            <div class="wta-keyword-tooltip tooltip">
    220222                                <span class="icon-tooltip dashicons dashicons-editor-help"></span>
    221223                                <div class="tooltiptext"><div class="tooltip__arrow"></div>
    222224                                    <?php
    223                                     echo wp_kses_post( __( 'Competitors are pages that are ranking on either the same keywords you’re currently ranking on or the keywords you selected to be included in your text. You can check which competitors are ranking for which keyword by clicking on the keyword. The keywords shown in this section are ones that your competing pages are ranking on but this product page is not. Data on search volume, intent, and difficulty are also displayed here. Click the + sign to select a keyword to be included in your text.', 'writetext-ai' ) );
     225                                    echo '<p>' . wp_kses_post( __( 'Competitors are pages that are ranking for either the same keywords you’re currently ranking for or the keywords you selected to be included in your text. You can check which competitors are ranking for which keyword by clicking on the keyword. The keywords shown in this section are ones that your competing pages are ranking for but this product page is not. Data on search volume, intent, and difficulty are also displayed here.', 'writetext-ai' ) ) . '</p>';
     226                                    do_action( 'wtai_render_intent_tooltip' );
    224227                                    ?>
    225228                                </div> 
     
    339342                                    <div class="tooltiptext"><div class="tooltip__arrow"></div>
    340343                                        <?php
    341                                         echo wp_kses_post( __( 'Keyword ideas based on the keywords you selected to be included in the text or your own manually-added keywords. Click the + sign to select a keyword to be included in your text.', 'writetext-ai' ) );
     344                                        echo wp_kses_post( __( 'Keyword ideas based on the keywords you selected to be included in the text or your own manually-added keywords.', 'writetext-ai' ) );
    342345                                        ?>
    343346                                    </div> 
  • writetext-ai/trunk/writetext-ai.php

    r3111055 r3111534  
    44 * Plugin URI: https://writetext.ai/woocommerce
    55 * Description: Let AI automatically generate product descriptions and other content from your product data.
    6  * Version: 1.30.4
     6 * Version: 1.30.5
    77 * Author:  1902 Software
    88 * Author URI: https://writetext.ai/
     
    5656
    5757    if ( ! defined( 'WTAI_VERSION' ) ) {
    58         define( 'WTAI_VERSION', '1.30.4' );
     58        define( 'WTAI_VERSION', '1.30.5' );
    5959    }
    6060
Note: See TracChangeset for help on using the changeset viewer.