Plugin Directory

Changeset 2907070


Ignore:
Timestamp:
05/02/2023 03:10:18 PM (3 years ago)
Author:
speedify
Message:

Updating GenerateSSLmanually.php and HomeOptions.php with some minor changes

Location:
auto-install-free-ssl
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • auto-install-free-ssl/tags/3.4.2/FreeSSLAuto/src/Admin/GenerateSSLmanually.php

    r2905766 r2907070  
    231231                        <td class="card block-body" style="padding-left: 1.5%;">
    232232                            <?php if(isset($this->appConfig['is_cpanel']) && $this->appConfig['is_cpanel']){ ?>
    233                                 <h3><?= __( "cPanel: How to Install SSL Certificate", 'auto-install-free-ssl' ) ?></h3>
     233                                <h3>
     234                                    <?php
     235                                    /* translators: 'cPanel' is web hosting control panel software developed by cPanel, LLC. */
     236                                    echo __( "cPanel: How to Install SSL Certificate", 'auto-install-free-ssl' ) ?>
     237                                </h3>
    234238
    235239                                <!-- <iframe width="100%" height="251" src="https://www.youtube.com/embed/9x-kMz6Eo1E?rel=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> -->
     
    239243
    240244                            <?php if($this->factory->is_plesk()){ ?>
    241                                 <h3 id="plesk"><?= __( "Plesk: How to Install SSL Certificate", 'auto-install-free-ssl' ) ?></h3>
     245                                <h3 id="plesk">
     246                                    <?php
     247                                    /* translators: 'Plesk' is a web hosting control panel software developed by Plesk International GmbH. */
     248                                    echo __( "Plesk: How to Install SSL Certificate", 'auto-install-free-ssl' ) ?>
     249                                </h3>
    242250
    243251                                <!-- <iframe width="100%" height="251" src="https://www.youtube.com/embed/o4_N4QRVd48?rel=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> -->
  • auto-install-free-ssl/tags/3.4.2/FreeSSLAuto/src/Admin/HomeOptions.php

    r2905766 r2907070  
    111111            if ( aifs_is_free_version() ) {
    112112                $days = __( "30", 'auto-install-free-ssl' );
    113                 /* translators: %s: Number of days */
     113                /* translators: %s: A plural number, e.g., 30 */
    114114                $text_display .= '<br /><strong><s>' . sprintf( __( "This plugin will renew & install the SSL automatically %s days before the expiry.", 'auto-install-free-ssl' ), $days ) . '</s></strong>';
    115115                /* translators: %s: placeholders for HTML code create a hyperlink with the word 'Premium'. */
     
    255255            $multisite_support_single_domain = __( "Yes", 'auto-install-free-ssl' );
    256256        } else {
     257            /* translators: 'cPanel' is web hosting control panel software developed by cPanel, LLC. */
    257258            $intro_text .= __( "you have cPanel! 100% automation is possible with premium!!", 'auto-install-free-ssl' ) . " ";
    258259            $intro_text .= '<span style="color: #77c401;">' . __( "Otherwise, we'll issue you a full refund.", 'auto-install-free-ssl' ) . '</span>';
     
    261262            $nine = __( "9", 'auto-install-free-ssl' );
    262263            $ten = __( "10", 'auto-install-free-ssl' );
    263             /* translators: %1$s: A technical word ('cPanel' or 'hosting'; based on a condition); %2$s: Number of minutes */
     264            /* translators: %1$s: Name of the web hosting control panel ('cPanel' or 'hosting'; based on a condition); %2$s: A plural number, e.g., 10 */
    264265            $time_required_more_info_unlimited_license = sprintf( __( 'If you need the plugin to work on all websites in the same %1$s, you need %2$s minutes (once).', 'auto-install-free-ssl' ), ( isset( $app_settings['is_cpanel'] ) && $app_settings['is_cpanel'] ? $cpanel : $hosting ), ( isset( $app_settings['is_cpanel'] ) && $app_settings['is_cpanel'] ? $nine : $ten ) );
    265266            $wildcard_ssl_single_domain = __( "No", 'auto-install-free-ssl' );
  • auto-install-free-ssl/trunk/FreeSSLAuto/src/Admin/GenerateSSLmanually.php

    r2905766 r2907070  
    231231                        <td class="card block-body" style="padding-left: 1.5%;">
    232232                            <?php if(isset($this->appConfig['is_cpanel']) && $this->appConfig['is_cpanel']){ ?>
    233                                 <h3><?= __( "cPanel: How to Install SSL Certificate", 'auto-install-free-ssl' ) ?></h3>
     233                                <h3>
     234                                    <?php
     235                                    /* translators: 'cPanel' is web hosting control panel software developed by cPanel, LLC. */
     236                                    echo __( "cPanel: How to Install SSL Certificate", 'auto-install-free-ssl' ) ?>
     237                                </h3>
    234238
    235239                                <!-- <iframe width="100%" height="251" src="https://www.youtube.com/embed/9x-kMz6Eo1E?rel=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> -->
     
    239243
    240244                            <?php if($this->factory->is_plesk()){ ?>
    241                                 <h3 id="plesk"><?= __( "Plesk: How to Install SSL Certificate", 'auto-install-free-ssl' ) ?></h3>
     245                                <h3 id="plesk">
     246                                    <?php
     247                                    /* translators: 'Plesk' is a web hosting control panel software developed by Plesk International GmbH. */
     248                                    echo __( "Plesk: How to Install SSL Certificate", 'auto-install-free-ssl' ) ?>
     249                                </h3>
    242250
    243251                                <!-- <iframe width="100%" height="251" src="https://www.youtube.com/embed/o4_N4QRVd48?rel=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> -->
  • auto-install-free-ssl/trunk/FreeSSLAuto/src/Admin/HomeOptions.php

    r2905766 r2907070  
    111111            if ( aifs_is_free_version() ) {
    112112                $days = __( "30", 'auto-install-free-ssl' );
    113                 /* translators: %s: Number of days */
     113                /* translators: %s: A plural number, e.g., 30 */
    114114                $text_display .= '<br /><strong><s>' . sprintf( __( "This plugin will renew & install the SSL automatically %s days before the expiry.", 'auto-install-free-ssl' ), $days ) . '</s></strong>';
    115115                /* translators: %s: placeholders for HTML code create a hyperlink with the word 'Premium'. */
     
    255255            $multisite_support_single_domain = __( "Yes", 'auto-install-free-ssl' );
    256256        } else {
     257            /* translators: 'cPanel' is web hosting control panel software developed by cPanel, LLC. */
    257258            $intro_text .= __( "you have cPanel! 100% automation is possible with premium!!", 'auto-install-free-ssl' ) . " ";
    258259            $intro_text .= '<span style="color: #77c401;">' . __( "Otherwise, we'll issue you a full refund.", 'auto-install-free-ssl' ) . '</span>';
     
    261262            $nine = __( "9", 'auto-install-free-ssl' );
    262263            $ten = __( "10", 'auto-install-free-ssl' );
    263             /* translators: %1$s: A technical word ('cPanel' or 'hosting'; based on a condition); %2$s: Number of minutes */
     264            /* translators: %1$s: Name of the web hosting control panel ('cPanel' or 'hosting'; based on a condition); %2$s: A plural number, e.g., 10 */
    264265            $time_required_more_info_unlimited_license = sprintf( __( 'If you need the plugin to work on all websites in the same %1$s, you need %2$s minutes (once).', 'auto-install-free-ssl' ), ( isset( $app_settings['is_cpanel'] ) && $app_settings['is_cpanel'] ? $cpanel : $hosting ), ( isset( $app_settings['is_cpanel'] ) && $app_settings['is_cpanel'] ? $nine : $ten ) );
    265266            $wildcard_ssl_single_domain = __( "No", 'auto-install-free-ssl' );
Note: See TracChangeset for help on using the changeset viewer.