Plugin Directory

Changeset 3091614


Ignore:
Timestamp:
05/23/2024 02:56:19 PM (19 months ago)
Author:
tildesia
Message:

Tagging version 2.0.1

Location:
etranslation-multilingual
Files:
343 added
10 edited

Legend:

Unmodified
Added
Removed
  • etranslation-multilingual/trunk/Notice.txt

    r3023895 r3091614  
    11
    22WEB-T – eTranslation Multilingual WordPress plugin
    3 version: 2.0.0
     3version: 2.0.1
    44========================================================================================
    55
  • etranslation-multilingual/trunk/assets/css/etm-back-end-style.css

    r3023895 r3091614  
    2323#etm-url-slug{
    2424    margin-left: 5px;
    25 }
    26 
    27 .nav-tab.etm-translation-editor {
    28     background-color: #0B4093;
    29     color: #ffffff;
    30 }
    31 
    32 .nav-tab.etm-translation-editor:hover {
    33     background-color: #0B4093;
    34 }
    35 
    36 .nav-tab.etm-translation-editor:focus {
    37     -webkit-box-shadow: none;
    38     box-shadow: none;
    3925}
    4026
     
    363349    margin-bottom: -7px;
    364350}
     351
     352.external-link-icon {
     353    height: 1em;
     354    margin: 0 0 -2px 3px;
     355    filter: invert(32%) sepia(11%) saturate(377%) hue-rotate(169deg) brightness(100%) contrast(94%);
     356}
  • etranslation-multilingual/trunk/class-webt-etranslation-multilingual.php

    r3023895 r3091614  
    184184        define( 'ETM_PLUGIN_BASE', plugin_basename( __DIR__ . '/index.php' ) );
    185185        define( 'ETM_PLUGIN_SLUG', 'etranslation-multilingual' );
    186         define( 'ETM_PLUGIN_VERSION', '2.0.0' );
     186        define( 'ETM_PLUGIN_VERSION', '2.0.1' );
    187187
    188188        wp_cache_add_non_persistent_groups( array( 'etm' ) );
  • etranslation-multilingual/trunk/includes/etranslation/class-etranslation-machine-translator.php

    r3023895 r3091614  
    122122        $source_language = $this->machine_translation_codes[ $source_language_code ];
    123123        $target_language = $this->machine_translation_codes[ $target_language_code ];
    124         $domain          = $this->settings['translation-languages-domain-parameter'][ $target_language_code ] ?? 'GEN';
     124        $domain          = $this->settings['translation-languages-domain-parameter'][ $target_language_code ];
     125        if ( ! $domain || '-' === $domain ) {
     126            $domain = 'GEN';
     127        }
    125128
    126129        $xml_prefix              = '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><root>' . $this->segment_opening;
  • etranslation-multilingual/trunk/index.php

    r3023895 r3091614  
    33Plugin Name: WEB-T – eTranslation Multilingual
    44Description: Make your site multilingual in few steps with WEB-T – eTranslation Multilingual WordPress plugin.
    5 Version: 2.0.0
     5Version: 2.0.1
    66Author: Tilde
    77Author URI: https://tilde.com/
     
    1010License: GPL2
    1111WC requires at least: 2.5.0
    12 WC tested up to: 8.0.2
     12WC tested up to: 8.9.1
    1313
    1414== Copyright ==
  • etranslation-multilingual/trunk/languages/etranslation-multilingual.pot

    r3023895 r3091614  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WEB-T – eTranslation Multilingual 2.0.0\n"
     5"Project-Id-Version: WEB-T – eTranslation Multilingual 2.0.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/etranslation-multilingual\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • etranslation-multilingual/trunk/partials/settings-navigation-tabs.php

    r2875892 r3091614  
    88                $id_str = 'show-login-alert';
    99            }
    10             echo '<a href="' . esc_url( $tb['url'] ) . '" id="' . esc_attr( $id_str ) . '" ' . ( $tb['page'] == 'etm_translation_editor' ? 'target="_blank"' : '' ) . ' class="nav-tab ' . ( ( $active_tab == $tb['page'] ) ? 'nav-tab-active' : '' ) . ( ( $tb['page'] == 'etm_translation_editor' ) ? 'etm-translation-editor' : '' ) . '">' . esc_html( $tb['name'] ) . '</a>';
     10            echo '<a href="' . esc_url( $tb['url'] ) . '" id="' . esc_attr( $id_str ) . '" class="nav-tab ' . ( ( $active_tab == $tb['page'] ) ? 'nav-tab-active' : '' ) . '">' . esc_html( $tb['name'] ) . ( $tb['page'] == 'etm_translation_editor' ? '<img class="external-link-icon" src="' . esc_url( ETM_PLUGIN_URL ) . 'assets/images/external-link.svg" alt="External link"/>' : '' ) . '</a>';
    1111        }
    1212        ?>
  • etranslation-multilingual/trunk/readme.txt

    r3051117 r3091614  
    33Tags: translate, translation, multilingual, automatic translation, language
    44Requires at least: 3.1.0
    5 Tested up to: 6.3.1
     5Tested up to: 6.5.3
    66Requires PHP: 5.6.20
    7 Stable tag: 2.0.0
     7Stable tag: 2.0.1
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5858== Changelog ==
    5959
     60= 2.0.1 =
     61* Fixed invalid domain sent in MT request
     62* Small bugfixes related to 'Translate Site' tab
    6063= 2.0.0 =
    6164* Renamed to 'WEB-T – eTranslation Multilingual'
Note: See TracChangeset for help on using the changeset viewer.